-{$localization_options}
\ No newline at end of file
+
+ {$localization_options}
+
\ No newline at end of file
diff --git a/admin-dev/themes/default/template/controllers/login/content.tpl b/admin-dev/themes/default/template/controllers/login/content.tpl
index 22c8658a8..b1cfff216 100755
--- a/admin-dev/themes/default/template/controllers/login/content.tpl
+++ b/admin-dev/themes/default/template/controllers/login/content.tpl
@@ -48,7 +48,7 @@
{/if}
';
// SHOW TIPS OF THE DAY
$content = @file_get_contents($protocol.'://api.prestashop.com/partner/tipsoftheday/?protocol='.$protocol.'&iso_country='.$isoCountry.'&iso_lang='.Tools::strtolower($isoUser), false, $stream_context);
@@ -672,7 +669,7 @@ class AdminHomeControllerCore extends AdminController
}
if (!$this->isFresh(Module::CACHE_FILE_DEFAULT_COUNTRY_MODULES_LIST, 86400))
- file_put_contents(_PS_ROOT_DIR_.Module::CACHE_FILE_DEFAULT_COUNTRY_MODULES_LIST, $this->addonsRequest('native'));
+ file_put_contents(_PS_ROOT_DIR_.Module::CACHE_FILE_DEFAULT_COUNTRY_MODULES_LIST, Tools::addonsRequest('native'));
$tpl_vars['upgrade'] = $upgrade;
diff --git a/controllers/admin/AdminImportController.php b/controllers/admin/AdminImportController.php
index d7af8bde2..2bf3a7aa5 100644
--- a/controllers/admin/AdminImportController.php
+++ b/controllers/admin/AdminImportController.php
@@ -645,7 +645,7 @@ class AdminImportControllerCore extends AdminController
do $uniqid_path = _PS_UPLOAD_DIR_.uniqid(); while (file_exists($uniqid_path));
file_put_contents($uniqid_path, $field);
$tab = '';
- if(!empty($uniqid_path))
+ if (!empty($uniqid_path))
{
$fd = fopen($uniqid_path, 'r');
$tab = fgetcsv($fd, MAX_LINE_SIZE, $separator);
@@ -1261,6 +1261,9 @@ class AdminImportControllerCore extends AdminController
foreach (Product::$definition['fields'] as $key => $array)
if ($array['type'] == Product::TYPE_FLOAT)
$product->{$key} = str_replace(',', '.', $product->{$key});
+
+ // Indexation is already 0 if it's a new product, but not if it's an update
+ $product->indexed = 0;
$res = false;
$field_error = $product->validateFields(UNFRIENDLY_ERROR, true);
diff --git a/controllers/admin/AdminLanguagesController.php b/controllers/admin/AdminLanguagesController.php
index 4193d9f34..9a00c8ca0 100644
--- a/controllers/admin/AdminLanguagesController.php
+++ b/controllers/admin/AdminLanguagesController.php
@@ -485,10 +485,10 @@ class AdminLanguagesControllerCore extends AdminController
$this->status = 'error';
$this->errors[] = '[TECHNICAL ERROR] ps_version not set or empty';
}
- if (@fsockopen('www.prestashop.com', 80))
+
+ // Get all iso code available
+ if($lang_packs = Tools::file_get_contents('http://www.prestashop.com/download/lang_packs/get_language_pack.php?version='.(string)$_GET['ps_version'].'&iso_lang='.(string)$_GET['iso_lang']))
{
- // Get all iso code available
- $lang_packs = Tools::file_get_contents('http://www.prestashop.com/download/lang_packs/get_language_pack.php?version='.(string)$_GET['ps_version'].'&iso_lang='.(string)$_GET['iso_lang']);
$result = Tools::jsonDecode($lang_packs);
if ($lang_packs !== '' && $result && !isset($result->error))
{
@@ -510,7 +510,7 @@ class AdminLanguagesControllerCore extends AdminController
$this->errors[] = '[TECHNICAL ERROR] Server unreachable';
}
}
-
+
protected function checkEmployeeIdLang($current_id_lang)
{
//update employee lang if current id lang is disabled
diff --git a/controllers/admin/AdminLoginController.php b/controllers/admin/AdminLoginController.php
index 6a12d8dc2..3329fb75a 100755
--- a/controllers/admin/AdminLoginController.php
+++ b/controllers/admin/AdminLoginController.php
@@ -69,18 +69,20 @@ class AdminLoginControllerCore extends AdminController
}
if (file_exists(_PS_ADMIN_DIR_.'/../install'))
- $this->context->smarty->assign('wrong_folder_name', true);
+ $this->context->smarty->assign('wrong_install_name', true);
if (file_exists(_PS_ADMIN_DIR_.'/../admin'))
- {
+ {
$rand = sprintf('%04d', rand(0, 9999));
if (@rename(_PS_ADMIN_DIR_.'/../admin', _PS_ADMIN_DIR_.'/../admin'.$rand))
Tools::redirectAdmin('../admin'.$rand);
else
$this->context->smarty->assign(array(
- 'randomNb' => rand(100, 999),
'wrong_folder_name' => true
));
}
+ $this->context->smarty->assign(array(
+ 'randomNb' => rand(0, 9999)
+ ));
// Redirect to admin panel
if (Tools::isSubmit('redirect') && Validate::isControllerName(Tools::getValue('redirect')))
diff --git a/controllers/admin/AdminModulesController.php b/controllers/admin/AdminModulesController.php
index ec5e2c42f..934eff0ee 100644
--- a/controllers/admin/AdminModulesController.php
+++ b/controllers/admin/AdminModulesController.php
@@ -156,7 +156,7 @@ class AdminModulesControllerCore extends AdminController
{
if (!$this->isFresh(Module::CACHE_FILE_DEFAULT_COUNTRY_MODULES_LIST, 86400))
{
- if (file_put_contents(_PS_ROOT_DIR_.Module::CACHE_FILE_DEFAULT_COUNTRY_MODULES_LIST, $this->addonsRequest('native')))
+ if (file_put_contents(_PS_ROOT_DIR_.Module::CACHE_FILE_DEFAULT_COUNTRY_MODULES_LIST, Tools::addonsRequest('native')))
$this->status = 'refresh';
else
$this->status = 'error';
@@ -166,7 +166,7 @@ class AdminModulesControllerCore extends AdminController
if (!$this->isFresh(Module::CACHE_FILE_MUST_HAVE_MODULES_LIST, 86400))
{
- if (file_put_contents(_PS_ROOT_DIR_.Module::CACHE_FILE_MUST_HAVE_MODULES_LIST, $this->addonsRequest('must-have')))
+ if (file_put_contents(_PS_ROOT_DIR_.Module::CACHE_FILE_MUST_HAVE_MODULES_LIST, Tools::addonsRequest('must-have')))
$this->status = 'refresh';
else
$this->status = 'error';
@@ -180,7 +180,7 @@ class AdminModulesControllerCore extends AdminController
{
if (!$this->isFresh(Module::CACHE_FILE_CUSTOMER_MODULES_LIST, 60))
{
- if (file_put_contents(_PS_ROOT_DIR_.Module::CACHE_FILE_CUSTOMER_MODULES_LIST, $this->addonsRequest('customer')))
+ if (file_put_contents(_PS_ROOT_DIR_.Module::CACHE_FILE_CUSTOMER_MODULES_LIST, Tools::addonsRequest('customer')))
$this->status = 'refresh';
else
$this->status = 'error';
@@ -198,7 +198,7 @@ class AdminModulesControllerCore extends AdminController
public function ajaxProcessLogOnAddonsWebservices()
{
- $content = $this->addonsRequest('check_customer', array('username_addons' => pSQL(trim(Tools::getValue('username_addons'))), 'password_addons' => pSQL(trim(Tools::getValue('password_addons')))));
+ $content = Tools::addonsRequest('check_customer', array('username_addons' => pSQL(trim(Tools::getValue('username_addons'))), 'password_addons' => pSQL(trim(Tools::getValue('password_addons')))));
$xml = @simplexml_load_string($content, null, LIBXML_NOCDATA);
if (!$xml)
die('KO');
@@ -250,11 +250,25 @@ class AdminModulesControllerCore extends AdminController
{
if (in_array($module->name, $tab_modules_list))
{
- $this->fillModuleData($module, 'select', $back);
+ $perm = true;
if ($module->id)
- $modules_list['installed'][] = $module;
+ $perm &= Module::getPermissionStatic($module->id, 'configure');
else
- $modules_list['not_installed'][] = $module;
+ {
+ $id_admin_module = Tab::getIdFromClassName('AdminModules');
+ $access = Profile::getProfileAccess($this->context->employee->id_profile, $id_admin_module);
+ if (!$access['edit'])
+ $perm &= false;
+ }
+ if ($perm)
+ {
+ $this->fillModuleData($module, 'select', $back);
+ if ($module->id)
+ $modules_list['installed'][] = $module;
+ else
+ $modules_list['not_installed'][] = $module;
+
+ }
}
}
}
@@ -615,10 +629,10 @@ class AdminModulesControllerCore extends AdminController
if ($name == $modaddons->name && isset($modaddons->id) && ($this->logged_on_addons || $f['loggedOnAddons'] == 0))
{
if ($f['loggedOnAddons'] == 0)
- if (file_put_contents('../modules/'.$modaddons->name.'.zip', $this->addonsRequest('module', array('id_module' => pSQL($modaddons->id)))))
+ if (file_put_contents('../modules/'.$modaddons->name.'.zip', Tools::addonsRequest('module', array('id_module' => pSQL($modaddons->id)))))
$this->extractArchive('../modules/'.$modaddons->name.'.zip', false);
if ($f['loggedOnAddons'] == 1 && $this->logged_on_addons)
- if (file_put_contents('../modules/'.$modaddons->name.'.zip', $this->addonsRequest('module', array('id_module' => pSQL($modaddons->id), 'username_addons' => pSQL(trim($this->context->cookie->username_addons)), 'password_addons' => pSQL(trim($this->context->cookie->password_addons))))))
+ if (file_put_contents('../modules/'.$modaddons->name.'.zip', Tools::addonsRequest('module', array('id_module' => pSQL($modaddons->id), 'username_addons' => pSQL(trim($this->context->cookie->username_addons)), 'password_addons' => pSQL(trim($this->context->cookie->password_addons))))))
$this->extractArchive('../modules/'.$modaddons->name.'.zip', false);
}
}
@@ -781,7 +795,7 @@ class AdminModulesControllerCore extends AdminController
// Call appropriate module callback
if (!isset($ppmReturn))
$this->postProcessCallback();
-
+
if ($back = Tools::getValue('back'))
Tools::redirectAdmin($back);
}
diff --git a/controllers/admin/AdminModulesPositionsController.php b/controllers/admin/AdminModulesPositionsController.php
index 38db9f42a..f614e7755 100644
--- a/controllers/admin/AdminModulesPositionsController.php
+++ b/controllers/admin/AdminModulesPositionsController.php
@@ -303,7 +303,7 @@ class AdminModulesPositionsControllerCore extends AdminController
{
$url = $this->context->shop->getBaseURL().Dispatcher::getInstance()->createUrl('index', (int)$this->context->language->id, $live_edit_params);
if (Configuration::get('PS_REWRITING_SETTINGS'))
- $url = str_replace('index.php', '', $url);
+ $url = str_replace('index.php', Language::getIsoById($this->context->employee->id_lang).'/', $url);
return $url;
}
diff --git a/controllers/admin/AdminProductsController.php b/controllers/admin/AdminProductsController.php
index 3f754c817..46bb46c56 100644
--- a/controllers/admin/AdminProductsController.php
+++ b/controllers/admin/AdminProductsController.php
@@ -126,6 +126,15 @@ class AdminProductsControllerCore extends AdminController
if (Tools::getValue('reset_filter_category'))
$this->context->cookie->id_category_products_filter = false;
+ if (Shop::isFeatureActive() && $this->context->cookie->id_category_products_filter)
+ {
+ $category = new Category((int)$this->context->cookie->id_category_products_filter);
+ if (!$category->inShop())
+ {
+ $this->context->cookie->id_category_products_filter = false;
+ Tools::redirectAdmin($this->context->link->getAdminLink('AdminProducts'));
+ }
+ }
/* Join categories table */
if ($id_category = (int)Tools::getValue('productFilter_cl!name'))
{
@@ -162,7 +171,6 @@ class AdminProductsControllerCore extends AdminController
LEFT JOIN `'._DB_PREFIX_.'category_lang` cl ON ('.$alias.'.`id_category_default` = cl.`id_category` AND b.`id_lang` = cl.`id_lang` AND cl.id_shop = '.(int)$this->context->shop->id.')
LEFT JOIN `'._DB_PREFIX_.'shop` shop ON (shop.id_shop = '.(int)$this->context->shop->id.')
LEFT JOIN `'._DB_PREFIX_.'image_shop` image_shop ON (image_shop.`id_image` = i.`id_image` AND image_shop.`cover` = 1 AND image_shop.id_shop='.(int)$this->context->shop->id.')';
- $this->_where .= 'AND (i.id_image IS NULL OR image_shop.id_shop='.(int)$this->context->shop->id.')';
}
else
{
@@ -170,7 +178,6 @@ class AdminProductsControllerCore extends AdminController
LEFT JOIN `'._DB_PREFIX_.'category_lang` cl ON ('.$alias.'.`id_category_default` = cl.`id_category` AND b.`id_lang` = cl.`id_lang` AND cl.id_shop = a.id_shop_default)
LEFT JOIN `'._DB_PREFIX_.'shop` shop ON (shop.id_shop = a.id_shop_default)
LEFT JOIN `'._DB_PREFIX_.'image_shop` image_shop ON (image_shop.`id_image` = i.`id_image` AND image_shop.`cover` = 1 AND image_shop.id_shop=a.id_shop_default)';
- $this->_where .= 'AND (i.id_image IS NULL OR image_shop.id_shop=a.id_shop_default)';
}
$this->_select .= 'shop.name as shopname, ';
}
@@ -181,11 +188,15 @@ class AdminProductsControllerCore extends AdminController
$this->_join .= 'LEFT JOIN `'._DB_PREFIX_.'category_lang` cl ON ('.$alias.'.`id_category_default` = cl.`id_category` AND b.`id_lang` = cl.`id_lang` AND cl.id_shop = 1)';
}
+ $this->_select .= 'MAX('.$alias_image.'.id_image) id_image,';
+
$this->_join .= ($join_category ? 'INNER JOIN `'._DB_PREFIX_.'category_product` cp ON (cp.`id_product` = a.`id_product` AND cp.`id_category` = '.(int)$this->_category->id.')' : '').'
LEFT JOIN `'._DB_PREFIX_.'stock_available` sav ON (sav.`id_product` = a.`id_product` AND sav.`id_product_attribute` = 0
'.StockAvailable::addSqlShopRestriction(null, null, 'sav').') ';
$this->_select .= 'cl.name `name_category` '.($join_category ? ', cp.`position`' : '').', '.$alias_image.'.`id_image`, '.$alias.'.`price`, 0 AS price_final, sav.`quantity` as sav_quantity, '.$alias.'.`active`';
-
+
+ $this->_group = 'GROUP BY '.$alias.'.id_product';
+
$this->fields_list = array();
$this->fields_list['id_product'] = array(
'title' => $this->l('ID'),
@@ -356,7 +367,16 @@ class AdminProductsControllerCore extends AdminController
{
$result = parent::loadObject($opt);
if ($result && Validate::isLoadedObject($this->object))
+ {
+ if (Shop::getContext() == Shop::CONTEXT_SHOP && !$this->object->isAssociatedToShop())
+ {
+ $default_product = new Product((int)$this->object->id, false, null, (int)$this->object->id_shop_default);
+ $def = ObjectModel::getDefinition($this->object);
+ foreach ($def['fields'] as $field_name => $row)
+ $this->object->$field_name = $default_product->$field_name;
+ }
$this->object->loadStockData();
+ }
return $result;
}
@@ -710,6 +730,8 @@ class AdminProductsControllerCore extends AdminController
}
if (!count($this->errors))
$success &= $product->delete();
+ else
+ $success = 0;
}
}
@@ -2184,10 +2206,6 @@ class AdminProductsControllerCore extends AdminController
foreach ($this->available_tabs as $product_tab => $value)
{
- // if it's the quantities tab and stock management is disabled, continue
- if ($stock_management_active == 0 && $product_tab == 'Quantities')
- continue;
-
// if it's the warehouses tab and advanced stock management is disabled, continue
if ($advanced_stock_management_active == 0 && $product_tab == 'Warehouses')
continue;
diff --git a/controllers/admin/AdminStatusesController.php b/controllers/admin/AdminStatusesController.php
index bff72073c..e1cc6f887 100644
--- a/controllers/admin/AdminStatusesController.php
+++ b/controllers/admin/AdminStatusesController.php
@@ -35,6 +35,7 @@ class AdminStatusesControllerCore extends AdminController
$this->colorOnBackground = false;
$this->bulk_actions = array('delete' => array('text' => $this->l('Delete selected'), 'confirm' => $this->l('Delete selected items?')));
$this->context = Context::getContext();
+ $this->multishop_context = Shop::CONTEXT_ALL;
$this->imageType = 'gif';
$this->fieldImageSettings = array(
'name' => 'icon',
diff --git a/controllers/admin/AdminTabsController.php b/controllers/admin/AdminTabsController.php
index d5426b536..735a41b00 100644
--- a/controllers/admin/AdminTabsController.php
+++ b/controllers/admin/AdminTabsController.php
@@ -31,6 +31,7 @@ class AdminTabsControllerCore extends AdminController
public function __construct()
{
$this->context = Context::getContext();
+ $this->multishop_context = Shop::CONTEXT_ALL;
$this->table = 'tab';
$this->className = 'Tab';
$this->lang = true;
diff --git a/controllers/admin/AdminTranslationsController.php b/controllers/admin/AdminTranslationsController.php
index 4dcebd3ee..5c8645a3d 100644
--- a/controllers/admin/AdminTranslationsController.php
+++ b/controllers/admin/AdminTranslationsController.php
@@ -687,18 +687,25 @@ class AdminTranslationsControllerCore extends AdminController
if (pathinfo($file2check['filename'], PATHINFO_BASENAME) == 'index.php' && file_put_contents(_PS_TRANSLATIONS_DIR_.'../'.$file2check['filename'], Tools::getDefaultIndexContent()))
continue;
- AdminTranslationsController::checkAndAddMailsFiles($iso_code, $files_list);
- $this->checkAndAddThemesFiles($files_list, $themes_selected);
- $tab_errors = AdminTranslationsController::addNewTabs($iso_code, $files_list);
- if (count($tab_errors))
- {
- $this->errors += $tab_errors;
- return false;
- }
if (Validate::isLanguageFileName($filename))
{
if (!Language::checkAndAddLanguage($iso_code))
$conf = 20;
+ else
+ {
+ // Reset cache
+ Language::loadLanguages();
+
+ AdminTranslationsController::checkAndAddMailsFiles($iso_code, $files_list);
+ $this->checkAndAddThemesFiles($files_list, $themes_selected);
+ $tab_errors = AdminTranslationsController::addNewTabs($iso_code, $files_list);
+
+ if (count($tab_errors))
+ {
+ $this->errors += $tab_errors;
+ return false;
+ }
+ }
}
$this->redirect(false, (isset($conf) ? $conf : '15'));
}
@@ -719,32 +726,39 @@ class AdminTranslationsControllerCore extends AdminController
@stream_context_create(array('http' => array('method' => 'GET', 'timeout' => 5)))))
{
$file = _PS_TRANSLATIONS_DIR_.$arr_import_lang[0].'.gzip';
- if (file_put_contents($file, $content))
+ if ((bool)@file_put_contents($file, $content))
{
$gz = new Archive_Tar($file, true);
$files_list = $gz->listContent();
- if ($gz->extract(_PS_TRANSLATIONS_DIR_.'../', false))
+ if ($error = $gz->extract(_PS_TRANSLATIONS_DIR_.'../', false))
{
- AdminTranslationsController::checkAndAddMailsFiles($arr_import_lang[0], $files_list);
- $tab_errors = AdminTranslationsController::addNewTabs($arr_import_lang[0], $files_list);
- if (count($tab_errors))
- $this->errors += $tab_errors;
+ if (is_object($error) && !empty($error->message))
+ $this->errors[] = Tools::displayError('The archive cannot be extracted.'). ' '.$error->message;
else
{
+
if (!Language::checkAndAddLanguage($arr_import_lang[0]))
$conf = 20;
- }
- if (!unlink($file))
- $this->errors[] = Tools::displayError('Cannot delete the archive.');
+ else
+ {
+ // Reset cache
+ Language::loadLanguages();
- $this->redirect(false, (isset($conf) ? $conf : '15'));
+ AdminTranslationsController::checkAndAddMailsFiles($arr_import_lang[0], $files_list);
+ if ($tab_errors = AdminTranslationsController::addNewTabs($arr_import_lang[0], $files_list))
+ $this->errors += $tab_errors;
+ }
+ if (!unlink($file))
+ $this->errors[] = sprintf(Tools::displayError('Cannot delete the archive %s.'), $file);
+
+ $this->redirect(false, (isset($conf) ? $conf : '15'));
+ }
}
- $this->errors[] = Tools::displayError('The archive cannot be extracted.');
- if (!unlink($file))
- $this->errors[] = Tools::displayError('Cannot delete the archive.');
+ elseif (!unlink($file))
+ $this->errors[] = sprintf(Tools::displayError('Cannot delete the archive %s.'), $file);
}
else
- $this->errors[] = Tools::displayError('The server does not have permissions for writing.');
+ $this->errors[] = Tools::displayError('The server does not have permissions for writing.'. ' '.sprintf(Tools::displayError('Please check rights for %s'), dirname($file)));
}
else
$this->errors[] = Tools::displayError('Language not found.');
diff --git a/controllers/front/AuthController.php b/controllers/front/AuthController.php
index 64f84b2bf..d9d750c27 100644
--- a/controllers/front/AuthController.php
+++ b/controllers/front/AuthController.php
@@ -379,6 +379,8 @@ class AuthControllerCore extends FrontController
$this->errors[] = Tools::displayError('An account using this email address has already been registered.', false);
// Preparing customer
$customer = new Customer();
+ $lastnameAddress = $_POST['lastname'];
+ $firstnameAddress = $_POST['firstname'];
$_POST['lastname'] = Tools::getValue('customer_lastname');
$_POST['firstname'] = Tools::getValue('customer_firstname');
@@ -387,7 +389,7 @@ class AuthControllerCore extends FrontController
{
if (Tools::isSubmit('submitGuestAccount') || !Tools::getValue('is_new_customer'))
{
- if (!Tools::getValue('phone'))
+ if (!Tools::getValue('phone') && !Tools::getValue('phone_mobile'))
$error_phone = true;
}
elseif (((Configuration::get('PS_REGISTRATION_PROCESS_TYPE') || Configuration::get('PS_ORDER_PROCESS_TYPE'))
@@ -468,8 +470,6 @@ class AuthControllerCore extends FrontController
}
else // if registration type is in one step, we save the address
{
- $lastnameAddress = $_POST['lastname'];
- $firstnameAddress = $_POST['firstname'];
// Preparing address
$address = new Address();
$_POST['lastname'] = $lastnameAddress;
diff --git a/docs/readme_de.txt b/docs/readme_de.txt
index 88046617f..06bfd2c09 100755
--- a/docs/readme_de.txt
+++ b/docs/readme_de.txt
@@ -21,8 +21,8 @@ needs please refer to http://www.prestashop.com for more information.
@license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
International Registered Trademark & Property of PrestaShop SA
-NAME: Prestashop 1.5.3.1
-VERSION: 1.5.3.1
+NAME: Prestashop 1.5.4.0
+VERSION: 1.5.4.0
VORBEREITUNG
===========
diff --git a/docs/readme_en.txt b/docs/readme_en.txt
index bad967a3c..b886bb6f3 100755
--- a/docs/readme_en.txt
+++ b/docs/readme_en.txt
@@ -21,8 +21,8 @@ needs please refer to http://www.prestashop.com for more information.
@license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
International Registered Trademark & Property of PrestaShop SA
-NAME: Prestashop 1.5.3.1
-VERSION: 1.5.3.1
+NAME: Prestashop 1.5.4.0
+VERSION: 1.5.4.0
PREPARATION
===========
diff --git a/docs/readme_es.txt b/docs/readme_es.txt
index ccfc7440e..e1baafc1e 100755
--- a/docs/readme_es.txt
+++ b/docs/readme_es.txt
@@ -21,8 +21,8 @@ needs please refer to http://www.prestashop.com for more information.
@license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
International Registered Trademark & Property of PrestaShop SA
-NAME: Prestashop 1.5.3.1
-VERSION: 1.5.3.1
+NAME: Prestashop 1.5.4.0
+VERSION: 1.5.4.0
PREPARACI�N
===========
diff --git a/docs/readme_fr.txt b/docs/readme_fr.txt
index 9237f0b27..859a5f4e7 100755
--- a/docs/readme_fr.txt
+++ b/docs/readme_fr.txt
@@ -21,8 +21,8 @@ needs please refer to http://www.prestashop.com for more information.
@license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
International Registered Trademark & Property of PrestaShop SA
-NAME: Prestashop 1.5.3.1
-VERSION: 1.5.3.1
+NAME: Prestashop 1.5.4.0
+VERSION: 1.5.4.0
PREPARATION
===========
diff --git a/docs/readme_it.txt b/docs/readme_it.txt
index 0ddc51ecb..c4c89116e 100755
--- a/docs/readme_it.txt
+++ b/docs/readme_it.txt
@@ -21,8 +21,8 @@ needs please refer to http://www.prestashop.com for more information.
@license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
International Registered Trademark & Property of PrestaShop SA
-NAME: Prestashop 1.5.3.1
-VERSION: 1.5.3.1
+NAME: Prestashop 1.5.4.0
+VERSION: 1.5.4.0
PREPARAZIONE
===========
diff --git a/install-dev/classes/xmlLoader.php b/install-dev/classes/xmlLoader.php
index 90972ce0f..2b6daad41 100644
--- a/install-dev/classes/xmlLoader.php
+++ b/install-dev/classes/xmlLoader.php
@@ -237,7 +237,7 @@ class InstallXmlLoader
$default_lang = null;
foreach ($this->languages as $id_lang => $iso)
{
- if ($iso == 'en')
+ if ($iso == $this->language->getLanguageIso())
$default_lang = $id_lang;
try
diff --git a/install-dev/controllers/http/process.php b/install-dev/controllers/http/process.php
index 1051412a1..ff63be1f0 100644
--- a/install-dev/controllers/http/process.php
+++ b/install-dev/controllers/http/process.php
@@ -109,6 +109,8 @@ class InstallControllerHttpProcess extends InstallControllerHttp
{
$this->session->process_validated = array();
$this->session->database_clear = true;
+ if (Tools::getSafeModeStatus())
+ $this->session->safe_mode = true;
}
elseif (!Tools::getValue('submitNext'))
{
diff --git a/install-dev/data/xml/carrier_group.xml b/install-dev/data/xml/carrier_group.xml
index 63ee20d09..94cce906f 100644
--- a/install-dev/data/xml/carrier_group.xml
+++ b/install-dev/data/xml/carrier_group.xml
@@ -4,5 +4,9 @@
-
+
+
+
+
+
diff --git a/install-dev/data/xml/hook.xml b/install-dev/data/xml/hook.xml
index abeb6527e..1139431f2 100644
--- a/install-dev/data/xml/hook.xml
+++ b/install-dev/data/xml/hook.xml
@@ -265,5 +265,11 @@
displayMyAccountBlockMy account blockThis hook displays extra information within the 'my account' block"
+
+ actionModuleInstallBeforeactionModuleInstallBefore
+
+
+ actionModuleInstallAfteractionModuleInstallAfter
+
diff --git a/install-dev/fixtures/apple/langs/pl/data/attribute.xml b/install-dev/fixtures/apple/langs/pl/data/attribute.xml
new file mode 100644
index 000000000..c4ab0ab77
--- /dev/null
+++ b/install-dev/fixtures/apple/langs/pl/data/attribute.xml
@@ -0,0 +1,63 @@
+
+
+
+ 2GB
+
+
+ 4GB
+
+
+ Metaliczny
+
+
+ Niebieski
+
+
+ Różowy
+
+
+ Zielony
+
+
+ Pomarańczowy
+
+
+ Opcjonalnie Dysk SSD - 64GB
+
+
+ 80GB Dysk ATA @ 4200 rpm
+
+
+ 1.60GHz Intel Core 2 Duo
+
+
+ 1.80GHz Intel Core 2 Duo
+
+
+ 80GB: 20,000 Songs
+
+
+ 160GB: 40,000 Songs
+
+
+ Czarny
+
+
+ 8GB
+
+
+ 16GB
+
+
+ 32GB
+
+
+ Fioletowy
+
+
+ Żółty
+
+
+ Czerwony
+
+
diff --git a/install-dev/fixtures/apple/langs/pl/data/attribute_group.xml b/install-dev/fixtures/apple/langs/pl/data/attribute_group.xml
new file mode 100644
index 000000000..7d1aa61ec
--- /dev/null
+++ b/install-dev/fixtures/apple/langs/pl/data/attribute_group.xml
@@ -0,0 +1,15 @@
+
+
+
+ Pojemność dysku
+ Pojemność dysku
+
+
+ Kolor
+ Kolor
+
+
+ Procesor
+ Procesor
+
+
diff --git a/install-dev/fixtures/apple/langs/pl/data/attributegroup.xml b/install-dev/fixtures/apple/langs/pl/data/attributegroup.xml
new file mode 100644
index 000000000..1e119a887
--- /dev/null
+++ b/install-dev/fixtures/apple/langs/pl/data/attributegroup.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/install-dev/fixtures/apple/langs/pl/data/carrier.xml b/install-dev/fixtures/apple/langs/pl/data/carrier.xml
new file mode 100644
index 000000000..1af15b9ac
--- /dev/null
+++ b/install-dev/fixtures/apple/langs/pl/data/carrier.xml
@@ -0,0 +1,6 @@
+
+
+
+ Dostawa następnego dnia!
+
+
diff --git a/install-dev/fixtures/apple/langs/pl/data/category.xml b/install-dev/fixtures/apple/langs/pl/data/category.xml
new file mode 100644
index 000000000..570af0293
--- /dev/null
+++ b/install-dev/fixtures/apple/langs/pl/data/category.xml
@@ -0,0 +1,27 @@
+
+
+
+ iPod
+ Teraz możesz kupić filmy na ITunes, a następnie zsynchronizować je ze swoim iPod, cały świat to Twój wielki teatr.
+ muzyczne-ipod
+
+
+
+
+
+ Akcesoria
+ Fantastyczne akcesoria dla Twojego iPod
+ akcesoria-ipod
+
+
+
+
+
+ Laptopy
+ Najnowocześniejsze laptopy od Apple
+ laptopy
+ Laptoty Apple
+ Apple Laptopy MacBook Air
+ Piękne i szybkie laptopy Apple Mac Book Air
+
+
diff --git a/install-dev/fixtures/apple/langs/pl/data/feature.xml b/install-dev/fixtures/apple/langs/pl/data/feature.xml
new file mode 100644
index 000000000..a99bdecd4
--- /dev/null
+++ b/install-dev/fixtures/apple/langs/pl/data/feature.xml
@@ -0,0 +1,18 @@
+
+
+
+ Wysokość
+
+
+ Szerokość
+
+
+ Głębokość
+
+
+ Waga
+
+
+ Słuchawki
+
+
diff --git a/install-dev/fixtures/apple/langs/pl/data/feature_value.xml b/install-dev/fixtures/apple/langs/pl/data/feature_value.xml
new file mode 100644
index 000000000..d3a824d22
--- /dev/null
+++ b/install-dev/fixtures/apple/langs/pl/data/feature_value.xml
@@ -0,0 +1,45 @@
+
+
+
+ Jack stereo
+
+
+ Mini-jack stereo
+
+
+ 2.75 in
+
+
+ 2.06 in
+
+
+ 49.2 g
+
+
+ 0.26 in
+
+
+ 1.07 in
+
+
+ 1.62 in
+
+
+ 15.5 g
+
+
+ 0.41 in (clip included)
+
+
+ 4.33 in
+
+
+ 2.76 in
+
+
+ 120g
+
+
+ 0.31 in
+
+
diff --git a/install-dev/fixtures/apple/langs/pl/data/featurevalue.xml b/install-dev/fixtures/apple/langs/pl/data/featurevalue.xml
new file mode 100644
index 000000000..d101bed96
--- /dev/null
+++ b/install-dev/fixtures/apple/langs/pl/data/featurevalue.xml
@@ -0,0 +1,45 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/install-dev/fixtures/apple/langs/pl/data/image.xml b/install-dev/fixtures/apple/langs/pl/data/image.xml
new file mode 100644
index 000000000..49a836dc3
--- /dev/null
+++ b/install-dev/fixtures/apple/langs/pl/data/image.xml
@@ -0,0 +1,81 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/mails/de/index.php b/install-dev/fixtures/apple/langs/pl/data/index.php
similarity index 74%
rename from mails/de/index.php
rename to install-dev/fixtures/apple/langs/pl/data/index.php
index d8c3ebafb..fcb7f5c2b 100644
--- a/mails/de/index.php
+++ b/install-dev/fixtures/apple/langs/pl/data/index.php
@@ -1,35 +1,35 @@
-
-* @copyright 2007-2013 PrestaShop SA
-* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
-* International Registered Trademark & Property of PrestaShop SA
-*/
-
-header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
-header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
-
-header("Cache-Control: no-store, no-cache, must-revalidate");
-header("Cache-Control: post-check=0, pre-check=0", false);
-header("Pragma: no-cache");
-
-header("Location: ../");
+
+* @copyright 2007-2013 PrestaShop SA
+* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
+* International Registered Trademark & Property of PrestaShop SA
+*/
+
+header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
+header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
+
+header('Cache-Control: no-store, no-cache, must-revalidate');
+header('Cache-Control: post-check=0, pre-check=0', false);
+header('Pragma: no-cache');
+
+header('Location: ../../../../../../');
exit;
\ No newline at end of file
diff --git a/install-dev/fixtures/apple/langs/pl/data/manufacturer.xml b/install-dev/fixtures/apple/langs/pl/data/manufacturer.xml
new file mode 100644
index 000000000..f06ff9661
--- /dev/null
+++ b/install-dev/fixtures/apple/langs/pl/data/manufacturer.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/install-dev/fixtures/apple/langs/pl/data/order_message.xml b/install-dev/fixtures/apple/langs/pl/data/order_message.xml
new file mode 100644
index 000000000..05e5b55b9
--- /dev/null
+++ b/install-dev/fixtures/apple/langs/pl/data/order_message.xml
@@ -0,0 +1,11 @@
+
+
+
+ Opóźnienie
+ Witamy,
+Niestety jeden z produktów wybranych przez Ciebie w zamówieniu aktualnie nie jest dostępny. To może opóźnić odrobinę dostawę Twojego zamówienia.
+Przepraszamy za zaistniałą sytuację i zrobimy wszystko co w naszej mocy by zamówienie dotarło do Państwa jak najszybciej.
+
+Pozdrawiamy,
+
+
diff --git a/install-dev/fixtures/apple/langs/pl/data/ordermessage.xml b/install-dev/fixtures/apple/langs/pl/data/ordermessage.xml
new file mode 100644
index 000000000..049aacf22
--- /dev/null
+++ b/install-dev/fixtures/apple/langs/pl/data/ordermessage.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
diff --git a/install-dev/fixtures/apple/langs/pl/data/product.xml b/install-dev/fixtures/apple/langs/pl/data/product.xml
new file mode 100644
index 000000000..e3cf89c89
--- /dev/null
+++ b/install-dev/fixtures/apple/langs/pl/data/product.xml
@@ -0,0 +1,135 @@
+
+
+
+ <p><strong><span style="font-size: small;">Curved ahead of the curve.</span></strong></p>
+<p>For those about to rock, we give you nine amazing colors. But that's only part of the story. Feel the curved, all-aluminum and glass design and you won't want to put iPod nano down.</p>
+<p><strong><span style="font-size: small;">Great looks. And brains, too.</span></strong></p>
+<p>The new Genius feature turns iPod nano into your own highly intelligent, personal DJ. It creates playlists by finding songs in your library that go great together.</p>
+<p><strong><span style="font-size: small;">Made to move with your moves.</span></strong></p>
+<p>The accelerometer comes to iPod nano. Give it a shake to shuffle your music. Turn it sideways to view Cover Flow. And play games designed with your moves in mind.</p>
+ <p>New design. New features. Now in 8GB and 16GB. iPod nano rocks like never before.</p>
+ ipod-nano
+
+
+
+ iPod Nano
+ Dostępny
+
+
+
+ <p><span style="font-size: small;"><strong>Instant attachment.</strong></span></p>
+<p>Wear up to 500 songs on your sleeve. Or your belt. Or your gym shorts. iPod shuffle is a badge of musical devotion. Now in new, more brilliant colors.</p>
+<p><span style="font-size: small;"><strong>Feed your iPod shuffle.</strong></span></p>
+<p>iTunes is your entertainment superstore. It’s your ultra-organized music collection and jukebox. And it’s how you load up your iPod shuffle in one click.</p>
+<p><span style="font-size: small;"><strong>Beauty and the beat.</strong></span></p>
+<p>Intensely colorful anodized aluminum complements the simple design of iPod shuffle. Now in blue, green, pink, red, and original silver.</p>
+ <p>iPod shuffle, the world’s most wearable music player, now clips on in more vibrant blue, green, pink, and red.</p>
+ ipod-shuffle
+
+
+
+ iPod shuffle
+ Dostępny
+
+
+
+ <p>MacBook Air is nearly as thin as your index finger. Practically every detail that could be streamlined has been. Yet it still has a 13.3-inch widescreen LED display, full-size keyboard, and large multi-touch trackpad. It’s incomparably portable without the usual ultraportable screen and keyboard compromises.</p><p>The incredible thinness of MacBook Air is the result of numerous size- and weight-shaving innovations. From a slimmer hard drive to strategically hidden I/O ports to a lower-profile battery, everything has been considered and reconsidered with thinness in mind.</p><p>MacBook Air is designed and engineered to take full advantage of the wireless world. A world in which 802.11n Wi-Fi is now so fast and so available, people are truly living untethered — buying and renting movies online, downloading software, and sharing and storing files on the web. </p>
+ MacBook Air is ultrathin, ultraportable, and ultra unlike anything else. But you don’t lose inches and pounds overnight. It’s the result of rethinking conventions. Of multiple wireless innovations. And of breakthrough design. With MacBook Air, mobile computing suddenly has a new standard.
+ macbook-air
+
+
+
+ MacBook Air
+
+
+
+
+ Every MacBook has a larger hard drive, up to 250GB, to store growing media collections and valuable data.<br /><br />The 2.4GHz MacBook models now include 2GB of memory standard — perfect for running more of your favorite applications smoothly.
+ MacBook makes it easy to hit the road thanks to its tough polycarbonate case, built-in wireless technologies, and innovative MagSafe Power Adapter that releases automatically if someone accidentally trips on the cord.
+ macbook
+
+
+
+ MacBook
+
+
+
+
+ <h3>Five new hands-on applications</h3>
+<p>View rich HTML email with photos as well as PDF, Word, and Excel attachments. Get maps, directions, and real-time traffic information. Take notes and read stock and weather reports.</p>
+<h3>Touch your music, movies, and more</h3>
+<p>The revolutionary Multi-Touch technology built into the gorgeous 3.5-inch display lets you pinch, zoom, scroll, and flick with your fingers.</p>
+<h3>Internet in your pocket</h3>
+<p>With the Safari web browser, see websites the way they were designed to be seen and zoom in and out with a tap.<sup>2</sup> And add Web Clips to your Home screen for quick access to favorite sites.</p>
+<h3>What's in the box</h3>
+<ul>
+<li><span></span>iPod touch</li>
+<li><span></span>Earphones</li>
+<li><span></span>USB 2.0 cable</li>
+<li><span></span>Dock adapter</li>
+<li><span></span>Polishing cloth</li>
+<li><span></span>Stand</li>
+<li><span></span>Quick Start guide</li>
+</ul>
+ <ul>
+<li>Revolutionary Multi-Touch interface</li>
+<li>3.5-inch widescreen color display</li>
+<li>Wi-Fi (802.11b/g)</li>
+<li>8 mm thin</li>
+<li>Safari, YouTube, Mail, Stocks, Weather, Notes, iTunes Wi-Fi Music Store, Maps</li>
+</ul>
+ ipod-touch
+
+
+
+ iPod touch
+
+
+
+
+ <p>Lorem ipsum</p>
+ <p>Lorem ipsum</p>
+ belkin-leather-folio-for-ipod-nano-black-chocolate
+
+
+
+ Belkin Leather Folio for iPod nano - Black / Chocolate
+
+
+
+
+ <div class="product-overview-full">Using Hi-Definition MicroSpeakers to deliver full-range audio, the ergonomic and lightweight design of the SE210 earphones is ideal for premium on-the-go listening on your iPod or iPhone. They offer the most accurate audio reproduction from both portable and home stereo audio sources--for the ultimate in precision highs and rich low end. In addition, the flexible design allows you to choose the most comfortable fit from a variety of wearing positions. <br /> <br /> <strong>Features </strong> <br />
+<ul>
+<li>Sound-isolating design </li>
+<li> Hi-Definition MicroSpeaker with a single balanced armature driver </li>
+<li> Detachable, modular cable so you can make the cable longer or shorter depending on your activity </li>
+<li> Connector compatible with earphone ports on both iPod and iPhone </li>
+</ul>
+<strong>Specifications </strong><br />
+<ul>
+<li>Speaker type: Hi-Definition MicroSpeaker </li>
+<li> Frequency range: 25Hz-18.5kHz </li>
+<li> Impedance (1kHz): 26 Ohms </li>
+<li> Sensitivity (1mW): 114 dB SPL/mW </li>
+<li> Cable length (with extension): 18.0 in./45.0 cm (54.0 in./137.1 cm) </li>
+</ul>
+<strong>In the box</strong><br />
+<ul>
+<li>Shure SE210 earphones </li>
+<li> Extension cable (36.0 in./91.4 cm) </li>
+<li> Three pairs foam earpiece sleeves (small, medium, large) </li>
+<li> Three pairs soft flex earpiece sleeves (small, medium, large) </li>
+<li> One pair triple-flange earpiece sleeves </li>
+<li> Carrying case </li>
+</ul>
+Warranty<br /> Two-year limited <br />(For details, please visit <br />www.shure.com/PersonalAudio/CustomerSupport/ProductReturnsAndWarranty/index.htm.) <br /><br /> Mfr. Part No.: SE210-A-EFS <br /><br />Note: Products sold through this website that do not bear the Apple Brand name are serviced and supported exclusively by their manufacturers in accordance with terms and conditions packaged with the products. Apple's Limited Warranty does not apply to products that are not Apple-branded, even if packaged or sold with Apple products. Please contact the manufacturer directly for technical support and customer service.</div>
+ <p>Evolved from personal monitor technology road-tested by pro musicians and perfected by Shure engineers, the lightweight and stylish SE210 delivers full-range audio that's free from outside noise.</p>
+ ecouteurs-a-isolation-sonore-shure-se210-blanc
+
+
+
+ Shure SE210 Sound-Isolating Earphones for iPod and iPhone
+
+
+
+
diff --git a/install-dev/fixtures/apple/langs/pl/data/profile.xml b/install-dev/fixtures/apple/langs/pl/data/profile.xml
new file mode 100644
index 000000000..7ace46cf1
--- /dev/null
+++ b/install-dev/fixtures/apple/langs/pl/data/profile.xml
@@ -0,0 +1,15 @@
+
+
+
+ Administrator
+
+
+ Logistyk
+
+
+ Tłumacz
+
+
+ Sprzedawca
+
+
diff --git a/install-dev/fixtures/apple/langs/pl/data/scene.xml b/install-dev/fixtures/apple/langs/pl/data/scene.xml
new file mode 100644
index 000000000..f7270d3ff
--- /dev/null
+++ b/install-dev/fixtures/apple/langs/pl/data/scene.xml
@@ -0,0 +1,12 @@
+
+
+
+ The iPods Nano
+
+
+ The iPods
+
+
+ The MacBooks
+
+
diff --git a/install-dev/fixtures/apple/langs/pl/data/supplier.xml b/install-dev/fixtures/apple/langs/pl/data/supplier.xml
new file mode 100644
index 000000000..e9db64034
--- /dev/null
+++ b/install-dev/fixtures/apple/langs/pl/data/supplier.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/install-dev/fixtures/apple/langs/pl/data/tag.xml b/install-dev/fixtures/apple/langs/pl/data/tag.xml
new file mode 100644
index 000000000..b781c0ed2
--- /dev/null
+++ b/install-dev/fixtures/apple/langs/pl/data/tag.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/mails/fr/index.php b/install-dev/fixtures/apple/langs/pl/index.php
similarity index 74%
rename from mails/fr/index.php
rename to install-dev/fixtures/apple/langs/pl/index.php
index 195fab225..67d9932bf 100644
--- a/mails/fr/index.php
+++ b/install-dev/fixtures/apple/langs/pl/index.php
@@ -1,35 +1,35 @@
-
-* @copyright 2007-2013 PrestaShop SA
-* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
-* International Registered Trademark & Property of PrestaShop SA
-*/
-
-header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
-header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
-
-header("Cache-Control: no-store, no-cache, must-revalidate");
-header("Cache-Control: post-check=0, pre-check=0", false);
-header("Pragma: no-cache");
-
-header("Location: ../");
-exit;
+
+* @copyright 2007-2013 PrestaShop SA
+* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
+* International Registered Trademark & Property of PrestaShop SA
+*/
+
+header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
+header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
+
+header('Cache-Control: no-store, no-cache, must-revalidate');
+header('Cache-Control: post-check=0, pre-check=0', false);
+header('Pragma: no-cache');
+
+header('Location: ../../../../../');
+exit;
\ No newline at end of file
diff --git a/install-dev/install_version.php b/install-dev/install_version.php
index be2f5f221..144b75cf7 100644
--- a/install-dev/install_version.php
+++ b/install-dev/install_version.php
@@ -24,4 +24,4 @@
* International Registered Trademark & Property of PrestaShop SA
*/
-define('_PS_INSTALL_VERSION_', '1.5.3.1');
+define('_PS_INSTALL_VERSION_', '1.5.4.0');
diff --git a/install-dev/langs/br/install.php b/install-dev/langs/br/install.php
index 21517c185..7fcacdf9b 100644
--- a/install-dev/langs/br/install.php
+++ b/install-dev/langs/br/install.php
@@ -214,5 +214,28 @@ return array(
'The installation of PrestaShop is quick and easy. In just a few moments, you will become part of a community consisting of more than 130,000 merchants. You are on the way to creating your own unique online store that you can manage easily every day.' => 'A instalação do PrestaShop é rápida e fácil. Em alguns minutos, você vai se tornar parte de uma comunidade composta por mais de 130 mil comerciantes. Você está no caminho certo para criar sua própria loja virtual original que você pode gerenciar facilmente todos os dias.',
'Continue the installation in:' => 'Continue a instalação em:',
'The language selection above only applies to the Installation Assistant. Once your store is installed, you can choose the language of your store from over %d translations, all for free!' => 'A seleção de idioma acima é válida somente para o Assistente de Instalação. Uma vez que a loja for instalada, você pode escolher o idioma da sua loja entre mais de %d traduções disponíveis, totalmente grátis!',
+ 'The field %s is limited to %d characters' => 'O campo %s está limitado a %d caractéres',
+ 'An error occurred during logo copy.' => 'Um erro ocorreu durante a cópia da logo',
+ 'An error occurred during logo upload.' => 'Um erro ocorreu durante o carregamento da logo',
+ 'PHP 5.1.2 or later is not enabled' => 'PHP 5.1.2 ou acima não está ativada',
+ 'Cannot upload files' => 'Não é possível carregar arquivos',
+ 'Cannot create new files and folders' => 'Nâo é possível criar novos arquivos e pastas',
+ 'GD Library is not installed' => 'Biblioteca GD não está instalada',
+ 'MySQL support is not activated' => 'Suporte MySQL não está ativado',
+ 'Cannot open external URLs' => 'Não é possível abri URLs externas',
+ 'PHP register global option is on' => 'Opção de Registro global PHP está ativada',
+ 'GZIP compression is not activated' => 'Compressão GZIP não está ativada',
+ 'Mcrypt extension is not enabled' => 'Extensão Mcrypt não está habilitada',
+ 'Mbstring extension is not enabled' => 'Extensão Mbstring não está habilitada',
+ 'PHP magic quotes option is enabled' => 'Opção PHP magic quotes está habilitada',
+ 'Dom extension is not loaded' => 'Extensão Dom não está carregada',
+ 'PDO MySQL extension is not loaded' => 'Extensão PDO MySQL não está carregada',
+ 'Cannot copy flag language "%s"' => 'Não é possível copiar a bandeira do idioma "%s" ',
+ 'Sign-up to the newsletter' => 'Inscreva-se para a newsletter',
+ 'If you are experiencing problems during the installation process, please call our team at %s and one of our experts will be happy to help.' => 'Se você está tendo problemas durante o processo de instalação, por favor ligue para o nosso time no %s e um de nossos especialistas lhe ajudará.',
+ 'Contact us!' => 'Contate-nos!',
+ 'E-mail:' => 'E-mail:',
+ 'PrestaShop requires at least 32M of memory to run, please check the memory_limit directive in php.ini or contact your host provider' => 'PrestaShop requer pelo menos 32M de memória para funcionar, por favor verifique memory_limit no php.ini ou contate seu provedor de hospedagem.',
+ 'Your PHP sessions path is not writable - check with your hosting provider:' => 'O caminho para sessão PHP não pode ser escrito - verifique com o seu provedor de hospedagem',
),
);
\ No newline at end of file
diff --git a/install-dev/langs/de/install.php b/install-dev/langs/de/install.php
index c1658e982..12d9451a5 100644
--- a/install-dev/langs/de/install.php
+++ b/install-dev/langs/de/install.php
@@ -102,11 +102,11 @@ return array(
'Database server address:' => 'Datenbank-Adresse',
'If you want to use a different port, add :XX after your server address where XX is your port number.' => 'Möchten Sie einen anderen Port verwenden, fügen Sie hinter der Datenbank-Adresse :XX hinzu. XX steht für die Port-Nummer',
'Database name:' => 'Name der Datenbank:',
- 'Database login:' => 'Datenbank Benutzer',
- 'Database password:' => 'Datenbank Kennwort',
- 'Database Engine:' => 'Datenbank-Engine',
+ 'Database login:' => 'Datenbank Benutzer:',
+ 'Database password:' => 'Datenbank Kennwort:',
+ 'Database Engine:' => 'Datenbank-Engine:',
'Tables prefix:' => 'Tabellen-Präfixe:',
- 'Drop existing tables (mode dev):' => 'Vorhandene Tabellen löschen',
+ 'Drop existing tables (mode dev):' => 'Vorhandene Tabellen löschen:',
'Verify now!' => 'Jetz prüfen',
'E-mail delivery set-up' => 'E-Mail Einstellungen',
'Configure SMTP manually (advanced users only)' => 'Konfigurieren des SMTP-Mailversandes (nur für Fortgeschrittene Nutzer)',
@@ -147,7 +147,7 @@ return array(
'Refresh these settings' => 'Einstellungen aktualisieren',
'Welcome to the PrestaShop %s Installer.' => 'Herzlich Willkommen beim PrestaShop Installationsassistenten',
'The installation process should take only few minutes!' => 'Der Installationsprozess dauert nur ein paar Minuten!',
- 'If you need help, do not hesitate to check our documentation or to contact our support team: %2$s' => 'Falls Sie Hilfe benötigen, haben Sie folgende Möglichkeiten: unsere Dokumentation einsehenoder unser Support-Team zu kontaktieren: %2$s',
+ 'If you need help, do not hesitate to check our documentation or to contact our support team: %2$s' => 'Falls Sie Hilfe benötigen, haben Sie folgende Möglichkeiten: unsere Dokumentation einsehen oder unser Support-Team zu kontaktieren: %2$s',
'Did you know?' => 'Wussten Sie schon?',
'PrestaShop and its community offers over %d different languages for free, directly accessible from your Back Office on the Localization tab.' => 'PrestaShop und Community bietet Ihnen den kostenlosen Zugang zu über %d verschiedenen Sprachen direkt aus Ihrem Back-office im Tabreiter "Tools"',
'License Agreements' => 'Validierung der Lizenzverträge',
@@ -232,5 +232,6 @@ return array(
'Display' => 'Anzeige',
'PrestaShop compatibility with your system environment has been verified!' => 'Die Kompatibilität von PrestaShop mit Ihrem System wurde überprüft!',
'PrestaShop requires at least 32M of memory to run, please check the memory_limit directive in php.ini or contact your host provider' => 'Damit PrestaShop einwandfrei funktionieren kann, werden mindestens 32M Speicher benötigt. Bitte überprüfen Sie die memory_limit directive in php.in oder kontaktieren Sie Ihrem Provider.',
+ 'Your PHP sessions path is not writable - check with your hosting provider:' => 'Der Speicherungsordner ist nicht beschreibbar - bitte kontaktieren Sie Ihren Provider',
),
);
\ No newline at end of file
diff --git a/install-dev/langs/es/install.php b/install-dev/langs/es/install.php
index 8fcbd383f..128022863 100644
--- a/install-dev/langs/es/install.php
+++ b/install-dev/langs/es/install.php
@@ -11,13 +11,13 @@ return array(
'menu_configure' => 'Información de la tienda',
'menu_process' => 'Instalación de la tienda',
'Choose the installer language:' => '',
- 'Field required' => 'Campos requeridos',
+ 'Field required' => 'Campo obligatorio',
'Invalid shop name' => 'Nombre de la tienda no válido',
- 'Your firstname contains some invalid characters' => 'Su nombre contiene caracteres no válidos',
- 'Your lastname contains some invalid characters' => 'Su apellido contiene caracteres no válidos',
- 'The password is incorrect (alphanumeric string with at least 8 characters)' => '',
- 'Password and its confirmation are different' => '',
- 'This e-mail address is invalid' => '',
+ 'Your firstname contains some invalid characters' => 'Tu nombre contiene algunos caracteres no válidos',
+ 'Your lastname contains some invalid characters' => 'Tu apellido contiene algunos caracteres no válidos',
+ 'The password is incorrect (alphanumeric string with at least 8 characters)' => 'La contraseña no es válida (de ser una cadena alfanumérica de al menos 8 caracteres)',
+ 'Password and its confirmation are different' => 'La contraseña y la confirmación de la contraseña no son iguales',
+ 'This e-mail address is invalid' => 'Esta dirección de correo electrónico no es válida',
'The uploaded file exceeds the upload_max_filesize directive in php.ini' => 'El archivo enviado supera el tamaño máximo permitido.',
'The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form' => 'El archivo enviado supera el tamaño máximo permitido.',
'The uploaded file was only partially uploaded' => 'El archivo fue parcialmente enviado.',
@@ -28,45 +28,45 @@ return array(
'No error code available' => '',
'This is not a valid image file' => '',
'Image type is not supported' => '',
- 'Image folder %s is not writable' => '',
+ 'Image folder %s is not writable' => 'No se puede escribir en el directorio de imágenes %s',
'Cannot upload the file' => '',
- 'Lingerie and Adult' => '',
- 'Animals and Pets' => 'Animales',
- 'Art and Culture' => 'Cultura y ocio',
- 'Babies' => 'Artículos para bebés',
- 'Beauty and Personal Care' => 'Salud y belleza',
- 'Cars' => 'Automóvil y motos',
- 'Computer Hardware and Software' => 'Informática y programas',
+ 'Lingerie and Adult' => 'Lencería y Adultos',
+ 'Animals and Pets' => 'Animales y Mascotas',
+ 'Art and Culture' => 'Arte, Cultura y Ocio',
+ 'Babies' => 'Bebés',
+ 'Beauty and Personal Care' => 'Belleza, Salud y Cuidado Personal',
+ 'Cars' => 'Coches y Motos',
+ 'Computer Hardware and Software' => 'Informática (Hardware y Software)',
'Download' => 'Descargas',
- 'Fashion and accessories' => 'Ropa y complementos',
- 'Flowers, Gifts and Crafts' => 'Flores y regalos',
- 'Food and beverage' => 'Alimentación y gastronomía',
- 'HiFi, Photo and Video' => 'Hifi, foto y vídeo',
- 'Home and Garden' => 'Casa y jardín',
+ 'Fashion and accessories' => 'Moda y Complementos',
+ 'Flowers, Gifts and Crafts' => 'Flores, Regalos y Manualidades',
+ 'Food and beverage' => 'Gastronomía, Comida y Bebida',
+ 'HiFi, Photo and Video' => 'Equipos de alta fidelidad, Foto y Vídeo',
+ 'Home and Garden' => 'Hogar y Jardín',
'Home Appliances' => 'Electrodomésticos',
'Jewelry' => 'Joyería',
- 'Mobile and Telecom' => 'Telefonía y comunicación',
+ 'Mobile and Telecom' => 'Móviles y Telecomunicaciones',
'Services' => 'Servicios',
- 'Shoes and accessories' => 'Calzado y complementos',
- 'Sports and Entertainment' => 'Deporte y ocio',
- 'Travel' => 'Viajes y turismo',
- 'Database is connected' => '',
- 'A test e-mail has been sent to %s' => '',
- 'An error occurred while sending email, please verify your parameters' => '',
- 'Create settings.inc file' => '',
- 'Create database tables' => '',
- 'Populate database tables' => '',
- 'Configure shop information' => '',
- 'Install modules' => '',
- 'Install demonstration data' => '',
- 'Install theme' => '',
- 'PHP parameters:' => '',
+ 'Shoes and accessories' => 'Calzado y Complementos',
+ 'Sports and Entertainment' => 'Deportes y Entretenimiento',
+ 'Travel' => 'Viajes y Turismo',
+ 'Database is connected' => 'La base de datos está conectada',
+ 'A test e-mail has been sent to %s' => 'El mensaje de prueba ha sido correctamente enviado a %s',
+ 'An error occurred while sending email, please verify your parameters' => 'Se ha producido un error al enviar el mensaje, por favor revise los parámetros introducidos',
+ 'Create settings.inc file' => 'Crear fichero settings.inc',
+ 'Create database tables' => 'Crear tablas de la base de datos',
+ 'Populate database tables' => 'Rellenar las tablas de la base de datos',
+ 'Configure shop information' => 'Configurar la información de la tienda',
+ 'Install modules' => 'Instalar módulos',
+ 'Install demonstration data' => 'Instalar datos de prueba (DEMO)',
+ 'Install theme' => 'Instalar plantilla',
+ 'PHP parameters:' => 'Parámetros PHP:',
'Is PHP 5.1.2 or later installed ?' => '',
'Can upload files ?' => '',
'Can create new files and folders ?' => '',
'Is GD Library installed ?' => '',
'Is MySQL support is on ?' => '',
- 'Recursive write permissions on files and folders:' => '',
+ 'Recursive write permissions on files and folders:' => 'Permisos de escritura recursivos en ficheros y directorios:',
'Can open external URLs ?' => '',
'Is PHP register global option off (recommended) ?' => '',
'Is GZIP compression activated (recommended) ?' => '',
@@ -76,136 +76,162 @@ return array(
'Is PDO MySQL extension loaded ?' => '',
'Shop settings and merchant account information' => 'Información sobre el vendedor',
'Shop name:' => 'Nombre de la tienda:',
- 'Main activity:' => 'Actividad principal',
- 'Please choose your main activity' => '',
+ 'Main activity:' => 'Actividad principal:',
+ 'Please choose your main activity' => 'Por favor, selecciona tu actividad principal',
'Other activity...' => 'Otra actividad...',
'This information is not required, it will only be used for statistical purposes. This information does not change anything in your store.' => 'Esta información no es obligatoria, solo se utilizará para estadísticas. Proporcionarla o no, no cambiará nada en su tienda.',
- 'Install demo products:' => '',
+ 'Install demo products:' => 'Instalar productos de prueba (DEMO):',
'Yes' => 'Sí',
'No' => 'No',
- 'Demo products are a good way to learn how to use PrestaShop. You should install them if you are not familiar with it.' => '',
+ 'Demo products are a good way to learn how to use PrestaShop. You should install them if you are not familiar with it.' => 'Los productos de prueba son una buena forma de aprender a utilizar PrestaShop. Te recomendamos instalarlo si todavía no estás familiarizado con él.',
'Default country:' => 'País por defecto:',
- 'Select your country' => '',
+ 'Select your country' => 'Selecciona tu país',
'Shop timezone:' => 'Zona horaria de la tienda:',
- 'Select your timezone' => '',
+ 'Select your timezone' => 'Selecciona tu zona horaria',
'Shop logo:' => 'Logo de la tienda:',
'Recommended dimensions:' => 'Dimensiones recomendadas:',
'First name:' => 'Nombre:',
'Last name:' => 'Apellido:',
- 'E-mail address:' => 'Dirección de email:',
+ 'E-mail address:' => 'Dirección de correo electrónico:',
'Shop password:' => 'Contraseña de la tienda:',
'Re-type to confirm:' => 'Confirmar la contraseña:',
'Receive this information by e-mail' => 'Recibe estos datos por email',
'Warning: You will receive this information only if your e-mail configuration is correct.' => '',
- 'Configure your database by filling out the following fields:' => 'Configure su base de datos llenando los siguientes campos:',
+ 'Configure your database by filling out the following fields:' => 'Configura tu base de datos rellenando los siguientes campos:',
'You have to create a database, help available in our online documentation.' => '',
- 'Database server address:' => '',
+ 'Database server address:' => 'Dirección del servidor de base de datos:',
'If you want to use a different port, add :XX after your server address where XX is your port number.' => '',
'Database name:' => 'Nombre de la base de datos:',
- 'Database login:' => 'Inicio de la base de datos',
- 'Database password:' => 'Contraseña de la base de datos',
- 'Database Engine:' => 'Tipo de base de datos:',
+ 'Database login:' => 'Usuario de la base de datos:',
+ 'Database password:' => 'Contraseña de la base de datos:',
+ 'Database Engine:' => 'Motor de la base de datos:',
'Tables prefix:' => 'Prefijo de las tablas:',
- 'Drop existing tables (mode dev):' => '',
+ 'Drop existing tables (mode dev):' => 'Eliminar las tablas existentes (sólo para modo desarrollo):',
'Verify now!' => '',
- 'E-mail delivery set-up' => '',
- 'Configure SMTP manually (advanced users only)' => 'Configurar el envío SMTP (expertos únicamente)',
- 'By default, the PHP mail() function is used' => '',
- 'SMTP server address:' => '',
- 'Encryption:' => 'Encriptación:',
+ 'E-mail delivery set-up' => 'Configuración de la entrega del correo electrónico',
+ 'Configure SMTP manually (advanced users only)' => 'Configurar SMTP manualmente (sólo para usuarios avanzados)',
+ 'By default, the PHP mail() function is used' => 'Por defecto, la función PHP mail() es la que se utiliza',
+ 'SMTP server address:' => 'Dirección del servidor SMTP:',
+ 'Encryption:' => 'Cifrado:',
'None' => 'Ninguno',
'Port:' => 'Puerto:',
- 'Login:' => 'Nombre de usuario:',
+ 'Login:' => 'Usuario:',
'Password:' => 'Contraseña:',
- 'enter@your.email' => 'introduzca@su.email',
- 'Send me a test email!' => '¡Envíeme un email de prueba!',
+ 'enter@your.email' => 'introduce@tu.email',
+ 'Send me a test email!' => '¡Enviar correo electrónico de prueba!',
'Next' => 'Siguiente',
'Back' => 'Anterior',
- 'Official forum' => '',
- 'Support' => '',
- 'Documentation' => '',
- 'Contact us' => 'Contacte con nosotros',
- 'Forum' => '',
- 'Blog' => 'El blog',
- 'Done!' => '',
- 'An error occured during installation...' => '',
- 'You can use the links on the left column to go back to the previous steps, or restart the installation process by clicking here.' => '',
- 'Your installation is finished!' => '¡La instalación está terminada!',
- 'You have just finished installing your shop. Thank you for using PrestaShop!' => '',
- 'Please remember your login information:' => '',
- 'WARNING: For security purposes, you must delete the "install" folder.' => 'ATENCION : para más seguridad, por favor borre la carpeta \'/install\'.',
- 'Back Office' => 'Back Office',
- 'Manage your store using your Back Office. Manage your orders and customers, add modules, change themes, etc.' => 'Administre su tienda con su back office. Maneja sus pedidos y clientes, agregue módulos, cambie su tema, etc ...',
- 'Manage your store' => 'Administre su tienda',
- 'Front Office' => 'Front Office',
- 'Discover your store as your future customers will see it!' => '¡Descubra su tienda tal como la verán sus clientes!',
- 'Discover your store' => 'Descubra su tienda',
+ 'Official forum' => 'Foro oficial',
+ 'Support' => 'Soporte',
+ 'Documentation' => 'Documentación',
+ 'Contact us' => 'Contáctenos',
+ 'Forum' => 'Foro',
+ 'Blog' => 'Blog',
+ 'Done!' => '¡Ya está!',
+ 'An error occured during installation...' => 'Ha ocurrido un error durante la instalación...',
+ 'You can use the links on the left column to go back to the previous steps, or restart the installation process by clicking here.' => 'Puedes utilizar los enlaces que se encuentran en la columna de la izquierda para volver a los pasos anteriores, o también reiniciar el proceso de instalación haciendo clic aquí.',
+ 'Your installation is finished!' => '¡Tu instalación ha finalizado!',
+ 'You have just finished installing your shop. Thank you for using PrestaShop!' => 'Acabas de finalizar la instalación de tu tienda. ¡Gracias por utilizar PrestaShop!',
+ 'Please remember your login information:' => 'Por favor, recuerda la información de inicio de sesión:',
+ 'WARNING: For security purposes, you must delete the "install" folder.' => 'ATENCION: Por motivos de seguridad, debe borrar el directorio "install".',
+ 'Back Office' => 'Interfaz de administración (Back Office)',
+ 'Manage your store using your Back Office. Manage your orders and customers, add modules, change themes, etc.' => 'Administra tu tienda utilizando el interfaz de administración. Gestiona los pedidos y clientes, añade módulos, cambia plantillas, etc.',
+ 'Manage your store' => 'Administra tu tienda',
+ 'Front Office' => 'Interfaz de usuario (Front Office)',
+ 'Discover your store as your future customers will see it!' => '¡Descubre tu tienda tal y cómo la verán tus clientes!',
+ 'Discover your store' => 'Visita tu tienda',
'Required set-up. Please verify the following checklist items are true.' => '',
'Your configuration is valid, click next to continue!' => '',
'Your configuration is invalid. Please fix the issues below:' => 'Su configuración no es válida, gracias por corregir la configuración:',
'Optional set-up' => 'Parámetros opcionales',
- 'Refresh these settings' => '',
- 'Welcome to the PrestaShop %s Installer.' => 'Bienvenido al asistente de instalación de PrestaShop',
+ 'Refresh these settings' => 'Actualizar esta información',
+ 'Welcome to the PrestaShop %s Installer.' => 'Bienvenido al %s de Instalación de PrestaShop.',
'The installation process should take only few minutes!' => 'El proceso de instalación tardará solo unos minutos.',
- 'If you need help, do not hesitate to check our documentation or to contact our support team: %2$s' => '',
+ 'If you need help, do not hesitate to check our documentation or to contact our support team: %2$s' => 'Si usted necesita ayuda, no dude en consultar nuestra documentación o contactar nuestro equipo de soporte: %2$s',
'Did you know?' => '¿Sabía que?',
'PrestaShop and its community offers over %d different languages for free, directly accessible from your Back Office on the Localization tab.' => '',
- 'License Agreements' => 'Validación de los contratos de licencia',
+ 'License Agreements' => 'Validación de los contratos de licencias',
'PrestaShop core is released under the OSL 3.0 while PrestaShop modules and themes are released under the AFL 3.0.' => '',
- 'I agree to the above terms and conditions.' => 'Acepto los términos y condiciones del contrato arriba indicados.',
- 'I agree to participate in improving the solution by sending anonymous information about my configuration.' => 'Acepto participar en la mejora de PrestaShop enviando información anónima de mi configuración.',
- 'If you have any questions, please visit our documentation and community forum.' => '',
- 'Test message from PrestaShop' => 'Instalación Prestashop - Prueba del servidor de correo',
- 'This is a test message, your server is now available to send email' => 'Este es un mensaje de prueba, el servidor de correo funciona correctamente.',
- '%s - Login information' => '',
- 'An SQL error occured for entity %1$s: %2$s' => '',
- 'Cannot create image "%1$s" for entity "%2$s"' => '',
- 'Cannot create image "%1$s" (bad permissions on folder "%2$s")' => '',
- 'Cannot create image "%s"' => '',
- 'SQL error on query %s' => '',
- 'Server name is not valid' => '',
- 'You must enter a database name' => '',
- 'You must enter a database login' => '',
- 'Tables prefix is invalid' => '',
- 'Wrong engine chosen for MySQL' => '',
- 'Cannot convert database data to utf-8' => '',
- 'At least one table with same prefix was already found, please change your prefix or drop your database' => '',
- 'Database Server is not found. Please verify the login, password and server fields' => '',
- 'Connection to MySQL server succeeded, but database "%s" not found' => '',
- 'Engine innoDB is not supported by your MySQL server, please use MyISAM' => '',
- '%s file is not writable (check permissions)' => '',
- '%s folder is not writable (check permissions)' => '',
- 'Cannot write settings file' => '',
- 'Database structure file not found' => '',
- 'Cannot create group shop' => '',
- 'Cannot create shop' => '',
- 'Cannot create shop URL' => '',
- 'File "language.xml" not found for language iso "%s"' => '',
- 'File "language.xml" not valid for language iso "%s"' => '',
- 'Cannot install language "%s"' => '',
- 'Cannot create admin account' => '',
- 'Cannot install module "%s"' => '',
- 'Fixtures class "%s" not found' => '',
- '"%s" must be an instane of "InstallXmlLoader"' => '',
- 'Information about your Store' => 'Información sobre tu tienda Online',
- 'Help us learn more about your store so we can offer you optimal guidance and the best features for your business!' => 'Ayúdanos a conocer mejor tu negocio para que podamos orientarte y ¡proponerte funcionalidades que se adapten a tu actividad!',
- 'Optional - You can add you logo at a later time.' => 'Opcional – Puedes añadir esta información más tarde',
- 'Your Account' => 'Tu información personal',
- 'This email address will be your username to access your store\'s back office.' => 'Nota: esta dirección de correo electrónico te servirá como identificador en la administración de tu tienda Online',
- 'PrestaShop can provide you with guidance on a regular basis by sending you tips on how to optimize the management of your store which will help you grow your business. If you do not wish to receive these tips, please uncheck this box.' => 'PrestaShop puede ayudarte de forma regular con el envío de consejos con el fin de optimizar la administración de tu tienda Online y desarrollar tu actividad. Si no deseas recibir estos consejos, puedes desmarcar esta casilla.',
- 'To use PrestaShop, you must create a database to collect all of your store’s data-related activities.' => 'Para utilizar PrestaShop, debes crear una base de datos para que contenga el conjunto de datos relacionados con la actividad de tu tienda Online.',
- 'Please complete the fields below in order for PrestaShop to connect to your database. ' => 'Por favor rellena los datos aquí indicados como obligatorios para que PrestaShop pueda conectarse a tu base de datos.',
- 'The default port is 3306. To use a different port, add the port number at the end of your server’s address i.e ":4242".' => 'Si deseas utilizar un puerto diferente del puerto indicado por defecto (3306), añada ":4242" en la dirección de tu servidor, siendo XX el número de tu puerto.',
- 'Test your database connection now!' => 'Con este botón puedes testear la conexión a tu base de datos',
- 'PrestaShop Installation Assistant' => 'Asistente de instalación de PrestaShop',
+ 'I agree to the above terms and conditions.' => 'Acepto los términos y condiciones arriba indicados.',
+ 'I agree to participate in improving the solution by sending anonymous information about my configuration.' => 'Acepto participar en la mejora de la solución enviando información anónima sobre mi configuración.',
+ 'If you have any questions, please visit our documentation and community forum.' => 'Si tienes alguna pregunta, por favor visítanos en documentación y foro de la comunidad .',
+ 'Test message from PrestaShop' => 'Mensaje de prueba desde PrestaShop',
+ 'This is a test message, your server is now available to send email' => 'Este es un mensaje de prueba, tu servidor se encuentra disponible para enviar correos electrónicos',
+ '%s - Login information' => '%s – Información para iniciar sesión',
+ 'An SQL error occured for entity %1$s: %2$s' => 'Se ha producido un error SQL para la entidad %1$s: %2$s',
+ 'Cannot create image "%1$s" for entity "%2$s"' => 'No se puede crear la imagen "%1$s" para la entidad "%2$s"',
+ 'Cannot create image "%1$s" (bad permissions on folder "%2$s")' => 'No se puede crear la imagen "%1$s" (permisos incorrectos en el directorio "%2$s")',
+ 'Cannot create image "%s"' => 'No se puede crear la imagen "%s"',
+ 'SQL error on query %s' => 'Error SQL en la consulta %s',
+ 'Server name is not valid' => 'El nombre del servidor no es válido',
+ 'You must enter a database name' => 'Debes indicar un nombre de base de datos',
+ 'You must enter a database login' => 'Debes indicar los datos de conexión a la base de datos',
+ 'Tables prefix is invalid' => 'El prefijo de las tablas no es válido',
+ 'Wrong engine chosen for MySQL' => 'Motor incorrecto para MySQL',
+ 'Cannot convert database data to utf-8' => 'No se puede convertir la base de datos al formato UTF-8',
+ 'At least one table with same prefix was already found, please change your prefix or drop your database' => 'Se ha encontrado al menos una tabla con el mismo prefijo, por favor cambie su prefijo o vacíe su base de datos',
+ 'Database Server is not found. Please verify the login, password and server fields' => 'No se ha encontrado el servidor de la base de datos. Por favor verifique los campos para el usuario, la contraseña y el servidor',
+ 'Connection to MySQL server succeeded, but database "%s" not found' => 'La conexión con el servidor MySQL ha sido satisfactoria, pero no se ha encontrado la base de datos "%s"',
+ 'Engine innoDB is not supported by your MySQL server, please use MyISAM' => 'El motor innoDB no está soportado por tu servidor MySQL, por favor utiliza MyISAM',
+ '%s file is not writable (check permissions)' => 'No se puede escribir en el fichero %s (verifica los permisos)',
+ '%s folder is not writable (check permissions)' => 'No se puede escribir en el directorio %s (verifica los permisos)',
+ 'Cannot write settings file' => 'No se puede escribir en el fichero de configuración',
+ 'Database structure file not found' => 'El archive de estructura de la base de datos no se encuentra',
+ 'Cannot create group shop' => 'No se puede crear un grupo de tiendas',
+ 'Cannot create shop' => 'No se puede crear una tienda',
+ 'Cannot create shop URL' => 'No se puede crear una URL para la tienda',
+ 'File "language.xml" not found for language iso "%s"' => 'En el fichero "language.xml" no encuentra el idioma con ISO "%s"',
+ 'File "language.xml" not valid for language iso "%s"' => 'El fichero "language.xml" no es válido para el idioma ISO "%s"',
+ 'Cannot install language "%s"' => 'No se puede instalar el idioma "%s"',
+ 'Cannot create admin account' => 'No se puede crear la cuenta de administrador',
+ 'Cannot install module "%s"' => 'No se puede instalar el módulo "%s"',
+ 'Fixtures class "%s" not found' => 'No se ha encontrado la clase Fixtures "%s"',
+ '"%s" must be an instane of "InstallXmlLoader"' => '"%s" debe ser una instancia de "InstallXmlLoader"',
+ 'Information about your Store' => 'Información sobre su tienda',
+ 'Help us learn more about your store so we can offer you optimal guidance and the best features for your business!' => 'Ayúdanos a aprender más acerca de su tienda, ¡para que le podamos ofrecer una orientación óptima y mejoras funcionales para su negocio!',
+ 'Optional - You can add you logo at a later time.' => 'Opcional – Puedes añadir el logo de tu tienda más tarde.',
+ 'Your Account' => 'Tu cuenta',
+ 'This email address will be your username to access your store\'s back office.' => 'Esta dirección de correo electrónico corresponderá a tu usuario en el acceso al interfaz de administración de tu tienda Online.',
+ 'PrestaShop can provide you with guidance on a regular basis by sending you tips on how to optimize the management of your store which will help you grow your business. If you do not wish to receive these tips, please uncheck this box.' => 'PrestaShop te puede proporcionar orientación con el envío de consejos sobre cómo optimizar y gestionar tu tienda, que te ayudarán a tener éxito en tu negocio. Si no deseas recibir estos consejos, por favor desmarca esta casilla.',
+ 'To use PrestaShop, you must create a database to collect all of your store’s data-related activities.' => 'Para utilizar PrestaShop, debes crear una base de datos para poder recoger todos los datos relacionados con tu actividad.',
+ 'Please complete the fields below in order for PrestaShop to connect to your database. ' => 'Por favor, rellena estos datos con el fin de que PrestaShop pueda conectarse a tu base de datos.',
+ 'The default port is 3306. To use a different port, add the port number at the end of your server’s address i.e ":4242".' => 'El puerto utilizado por defecto es el 3306. Si utilizas un puerto diferente, añade este número de puerto al final de la dirección del servidor con dos puntos, por ejemplo ":4242".',
+ 'Test your database connection now!' => '¡Comprueba la conexión de tu base de datos ahora!',
+ 'PrestaShop Installation Assistant' => 'Asistente para la instalación de PrestaShop',
'Contact us!' => '¡Contáctenos!',
'Installation Assistant' => 'Asistente de instalación',
- 'To enjoy the many features that are offered by PrestaShop, please read the license terms below. PrestaShop core is licensed under OSL 3.0, while the modules and themes are licensed under AFL 3.0.' => 'Con el fin de disfrutar de las numerosas funcionalidades que ofrece PrestaShop, te damos las gracias por leer y aceptar los términos y las condiciones de las licencias aquí descritas. El código de PrestaShop se publica bajo licencia OSL 3.0 mientras que los módulos y plantillas se publican bajo licencia AFL 3.0.',
- 'Print my login information' => 'Guarda los datos de conexión',
+ 'To enjoy the many features that are offered by PrestaShop, please read the license terms below. PrestaShop core is licensed under OSL 3.0, while the modules and themes are licensed under AFL 3.0.' => 'Con el fin de disfrutar de las numerosas funcionalidades que ofrece PrestaShop, por favor lea y acepte los términos y condiciones de licencias aquí descritas. El código de PrestaShop se publica bajo licencia OSL 3.0, mientras que los módulos y las plantillas se publican bajo licencia AFL 3.0.',
+ 'Print my login information' => 'Imprimir la información e inicio de sesión',
'We are currently checking PrestaShop compatibility with your system environment' => 'Verificamos en este momento la compatibilidad de PrestaShop con tu entorno del sistema',
- 'Oops! Please correct the item(s) below, and then click "Refresh information" to test the compatibility of your new system.' => 'Por favor, corrija el/los punto(s) que se encuentran aquí marcados como errores y después hacer Clic en el botón "Refrescar esta información" con el fin de testear de nuevo la compatibilidad de tu sistema.',
- 'The installation of PrestaShop is quick and easy. In just a few moments, you will become part of a community consisting of more than 130,000 merchants. You are on the way to creating your own unique online store that you can manage easily every day.' => ' La instalación de PrestaShop es fácil y rápida. En sólo unos minutos, podrás unirte a una Comunidad de más de 130.000 comerciantes electrónicos para crear una tienda Online a tu imagen y administrarla a diario de forma muy sencilla.',
+ 'Oops! Please correct the item(s) below, and then click "Refresh information" to test the compatibility of your new system.' => '¡Uups! Por favor corrija los siguientes puntos marcados como errores y después hacer Clic en el botón "Actualizar esta información" con el fin de probar de nuevo la compatibilidad de tu sistema.',
+ 'The installation of PrestaShop is quick and easy. In just a few moments, you will become part of a community consisting of more than 130,000 merchants. You are on the way to creating your own unique online store that you can manage easily every day.' => 'La instalación de PrestaShop es rápida y fácil. En solo unos minutos, podrás unirte a una comunidad de más de 130.000 comerciantes electrónicos. Así podrás crear tu propia tienda Online con tu imagen corporativa y administrarla a diario de forma muy sencilla.',
'Continue the installation in:' => 'Continuar la instalación en:',
- 'The language selection above only applies to the Installation Assistant. Once your store is installed, you can choose the language of your store from over %d translations, all for free!' => 'La elección del idioma se realiza al comienzo y se aplica al asistente de instalación. Una vez tu tienda Online esté instalada, podrás elegir el idioma de tu tienda, ¡entre las más de %d traducciones didsponibles e forma gratuita!',
+ 'The language selection above only applies to the Installation Assistant. Once your store is installed, you can choose the language of your store from over %d translations, all for free!' => 'La elección del idioma se realiza sólo al inicio y se aplica al asistente de instalación. Una vez que tu tienda Online está instalada, podrás elegir el idioma de tu tienda, ¡entre las más de %d traducciones disponibles, ¡todas ellas de forma gratuitas!',
+ 'The field %s is limited to %d characters' => 'El campo %s está limitado a %d caracteres',
+ 'An error occurred during logo copy.' => 'Se ha producido un error durante la copia del logotipo.',
+ 'An error occurred during logo upload.' => 'Se ha producido un error durante la subida del fichero del logotipo.',
+ 'Create default shop and languages' => 'Crear tienda por defecto e idiomas',
+ 'PHP 5.1.2 or later is not enabled' => 'La versión PHP 5.1.2 o posterior no está habilitada',
+ 'Cannot upload files' => 'No se pueden subir ficheros',
+ 'Cannot create new files and folders' => 'No se pueden crear nuevos ficheros y directorios',
+ 'GD Library is not installed' => 'La librería GD no está instalada',
+ 'MySQL support is not activated' => 'El soporte para MySQL no está activado',
+ 'Cannot open external URLs' => 'No se pueden abrir URLs externas',
+ 'PHP register global option is on' => 'La opción PHP register global está activada',
+ 'GZIP compression is not activated' => 'La compresión GZIP no está activada',
+ 'Mcrypt extension is not enabled' => 'La extensión Mcrypt no está habilitada',
+ 'Mbstring extension is not enabled' => 'La extensión Mbstring no está habilitada',
+ 'PHP magic quotes option is enabled' => 'La opción PHP magic quotes está habilitada',
+ 'Dom extension is not loaded' => 'La extensión Dom no se ha cargado',
+ 'PDO MySQL extension is not loaded' => 'La extensión PDO MySQL no se ha cargado',
+ 'Cannot copy flag language "%s"' => 'No se pueden copiar las banderas de los idiomas "%s"',
+ 'Must be alphanumeric string with at least 8 characters' => 'Debe ser una cadena alfanumérica de al menos 8 caracteres',
+ 'Sign-up to the newsletter' => 'Suscríbete al boletín de noticias',
+ 'If you are experiencing problems during the installation process, please call our team at %s and one of our experts will be happy to help.' => 'Si experimenta problemas durante la instalación, por favor llámenos al %s y uno de nuestros expertos estará encantado de ayudarte.',
+ 'E-mail:' => 'Correo electrónico:',
+ 'Display' => 'Mostrar',
+ 'PrestaShop compatibility with your system environment has been verified!' => '¡La compatibilidad de PrestaShop con su entorno del sistema ha sido verificada correctamente!',
+ 'PrestaShop requires at least 32M of memory to run, please check the memory_limit directive in php.ini or contact your host provider' => 'PrestaShop requiere al menos 32MB de memoria para funcionar, por favor verifica la directiva memory_limit que se encuentra en el fichero php.ini o contacta con su proveedor de alojamiento',
+ 'Your PHP sessions path is not writable - check with your hosting provider:' => 'El fichero de almacenamiento no está disponible en modo escritura, consulte con su proveedor de alojamiento',
),
);
\ No newline at end of file
diff --git a/install-dev/langs/fr/install.php b/install-dev/langs/fr/install.php
index 2230b8f7e..6e0e44bcf 100644
--- a/install-dev/langs/fr/install.php
+++ b/install-dev/langs/fr/install.php
@@ -101,7 +101,7 @@ return array(
'Re-type to confirm:' => 'Confirmation du mot de passe :',
'Receive this information by e-mail' => 'Recevez ces informations par e-mail',
'Warning: You will receive this information only if your e-mail configuration is correct.' => 'Attention : vous ne recevrez ces informations que si votre configuration des e-mails est correcte',
- 'Configure your database by filling out the following fields:' => 'Configurez la connection à votre base de données en remplissant les champs suivants :',
+ 'Configure your database by filling out the following fields:' => 'Configurez la connexion à votre base de données en remplissant les champs suivants.',
'You have to create a database, help available in our online documentation.' => 'Vous devez créer une base de données, de l\'aide est disponible sur notre documentation en ligne.',
'Database server address:' => 'Adresse du serveur de la base :',
'If you want to use a different port, add :XX after your server address where XX is your port number.' => 'Si vous souhaitez utiliser un port différent, ajoutez :XX à l\'adresse de votre serveur, XX étant le numéro de votre port.',
@@ -135,11 +135,11 @@ return array(
'An error occured during installation...' => 'Une erreur est survenue durant l\'installation',
'You can use the links on the left column to go back to the previous steps, or restart the installation process by clicking here.' => 'Vous pouvez utiliser les liens à gauche pour revenir aux étapes précédentes, ou redémarrer l\'installation en cliquant ici.',
'Your installation is finished!' => 'L\'installation est finie !',
- 'You have just finished installing your shop. Thank you for using PrestaShop!' => 'Vous venez d’installer votre boutique en ligne, nous vous en remercions.',
+ 'You have just finished installing your shop. Thank you for using PrestaShop!' => 'Vous venez d’installer votre boutique en ligne, merci d\'avoir choisi PrestaShop !',
'Please remember your login information:' => 'Merci de conserver les informations de connexion suivantes :',
'WARNING: For security purposes, you must delete the "install" folder.' => 'ATTENTION : pour plus de sécurité, merci de supprimer le dossier \'/install\'.',
'Back Office' => 'Administration',
- 'Manage your store using your Back Office. Manage your orders and customers, add modules, change themes, etc.' => 'Accédezdès à présent à votre interface de gestion pour commencer la configuration de votre boutique.',
+ 'Manage your store using your Back Office. Manage your orders and customers, add modules, change themes, etc.' => 'Accédez dès à présent à votre interface de gestion pour commencer la configuration de votre boutique.',
'Manage your store' => 'Gérez votre boutique',
'Front Office' => 'Front Office',
'Discover your store as your future customers will see it!' => 'Découvrez l\'apparence de votre boutique avec quelques produits de démonstration, prête à être personnalisée par vos soins !',
@@ -175,7 +175,7 @@ return array(
'Cannot convert database data to utf-8' => 'Impossible de convertir la base en utf-8',
'At least one table with same prefix was already found, please change your prefix or drop your database' => 'Au moins une table avec le même préfixe a été trouvée, merci de changer votre préfixe ou de supprimer vos tables existantes',
'Database Server is not found. Please verify the login, password and server fields' => 'Impossible de se connecter au serveur de la base de données. Vérifiez vos identifiants de connexion',
- 'Connection to MySQL server succeeded, but database "%s" not found' => 'La connection au serveur de base de données a réussi, mais la base "%s" n\'a pas été trouvée',
+ 'Connection to MySQL server succeeded, but database "%s" not found' => 'La connexion au serveur de base de données a réussi, mais la base "%s" n\'a pas été trouvée',
'Engine innoDB is not supported by your MySQL server, please use MyISAM' => 'Le moteur innoDB n\'est pas supporté par votre serveur SQL, merci d\'utiliser MyISAM',
'%s file is not writable (check permissions)' => 'Le fichier %s ne peut être écrit (vérifiez vos permissions fichiers)',
'%s folder is not writable (check permissions)' => 'Le dossier %s ne peut être écrit (vérifiez vos permissions fichiers)',
@@ -212,7 +212,7 @@ return array(
'The installation of PrestaShop is quick and easy. In just a few moments, you will become part of a community consisting of more than 130,000 merchants. You are on the way to creating your own unique online store that you can manage easily every day.' => 'L\'installation de PrestaShop est simple et rapide. En quelques minutes seulement, vous rejoindrez une communauté de plus de 130 000 marchands pour créer une boutique en ligne à votre image et la gérer facilement au quotidien.',
'Continue the installation in:' => 'Continuer l\'installation en :',
'The language selection above only applies to the Installation Assistant. Once your store is installed, you can choose the language of your store from over %d translations, all for free!' => 'Le choix de la langue ci-dessus s\'applique à l\'assistant d\'installation. Une fois votre boutique installée, vous pourrez choisir la langue de votre boutique parmi plus de %d traductions disponibles gratuitement !',
- 'To use PrestaShop, you must create a database to collect all of your store’s data-related activities.' => 'Pour utiliser PrestaShop, vous devez créer une base de données afin de rassembler l\'ensemble des données liées à l\'activité de votre boutique.',
+ 'To use PrestaShop, you must create a database to collect all of your store’s data-related activities.' => 'Pour utiliser PrestaShop, vous devez créer une base de données afin de rassembler l\'ensemble des données liées à l\'activité de votre boutique.',
'Please complete the fields below in order for PrestaShop to connect to your database. ' => 'Merci de renseigner ci-dessous les informations requises pour que PrestaShop puisse se connecter à votre base de données.',
'The default port is 3306. To use a different port, add the port number at the end of your server’s address i.e ":4242".' => 'Si vous souhaitez utiliser un port différent du port par défaut (3306) ajoutez ":XX" à l\'adresse de votre serveur, XX étant le numéro de votre port.',
'Test your database connection now!' => 'Tester la connexion à la base de données',
@@ -234,10 +234,11 @@ return array(
'Cannot copy flag language "%s"' => 'Impossible de copier le drapeau pour la langue "%s"',
'Information about your Store' => 'Informations à propos de votre boutique',
'Help us learn more about your store so we can offer you optimal guidance and the best features for your business!' => 'Aidez-nous à mieux vous connaitre pour que nous puissions vous orienter et vous proposer les fonctionnalités les plus adaptées à votre activité !',
- 'Optional - You can add you logo at a later time.' => 'Optionnel - Vous pouvez ajouter votre logo par la suite.',
+ 'Optional - You can add you logo at a later time.' => 'Optionnel - Vous pourrez ajouter votre logo par la suite.',
'Your Account' => 'Vos informations personnelles',
'This email address will be your username to access your store\'s back office.' => 'Cette adresse e-mail vous servira d\'identifiant pour accéder à l\'interface de gestion de votre boutique.',
'Sign-up to the newsletter' => 'S\'inscrire à la newsletter de PrestaShop',
'PrestaShop can provide you with guidance on a regular basis by sending you tips on how to optimize the management of your store which will help you grow your business. If you do not wish to receive these tips, please uncheck this box.' => 'PrestaShop peut vous guider de façon régulière en vous faisant parvenir des conseils afin d\'optimiser la gestion de votre boutique et développer votre activité. Si vous ne souhaitez pas recevoir ces conseils, nous vous invitons à décocher cette case.',
+ 'Your PHP sessions path is not writable - check with your hosting provider:' => 'Le dossier de stockage n\'est pas accessible en écriture - consultez votre hébergeur',
),
);
\ No newline at end of file
diff --git a/install-dev/langs/it/install.php b/install-dev/langs/it/install.php
index 0b21827a2..a6a048608 100644
--- a/install-dev/langs/it/install.php
+++ b/install-dev/langs/it/install.php
@@ -233,5 +233,6 @@ return array(
'The installation of PrestaShop is quick and easy. In just a few moments, you will become part of a community consisting of more than 130,000 merchants. You are on the way to creating your own unique online store that you can manage easily every day.' => 'L\'installazione di PrestaShop è semplice e veloce. Tra pochi minuti, farai parte di una comunità di oltre 130.000 commercianti. Potrai creare un negozio a tua immagina e facile da gestire giorno dopo giorno.',
'Continue the installation in:' => 'Continua l\'installazione in:',
'The language selection above only applies to the Installation Assistant. Once your store is installed, you can choose the language of your store from over %d translations, all for free!' => 'La selezione della lingua si applica solo all\'Assistente di Installazione. Una volta che il negozio è installato, potrai scegliere la lingua del negozio tra le oltre %d traduzioni disponibili gratuitamente!',
+ 'Your PHP sessions path is not writable - check with your hosting provider:' => 'La cartella di backup non è accessibile per scrittura - consulta il nostro servizio di hosting',
),
);
\ No newline at end of file
diff --git a/install-dev/langs/pl/data/carrier.xml b/install-dev/langs/pl/data/carrier.xml
new file mode 100644
index 000000000..5d76fa37c
--- /dev/null
+++ b/install-dev/langs/pl/data/carrier.xml
@@ -0,0 +1,6 @@
+
+
+
+ Odbiór w sklepie
+
+
diff --git a/install-dev/langs/pl/data/category.xml b/install-dev/langs/pl/data/category.xml
new file mode 100644
index 000000000..a2b13a12e
--- /dev/null
+++ b/install-dev/langs/pl/data/category.xml
@@ -0,0 +1,19 @@
+
+
+
+ Bazowa
+
+ bazowa
+
+
+
+
+
+ Główna
+
+ glowna
+
+
+
+
+
diff --git a/install-dev/langs/pl/data/cms.xml b/install-dev/langs/pl/data/cms.xml
new file mode 100644
index 000000000..37edee2c4
--- /dev/null
+++ b/install-dev/langs/pl/data/cms.xml
@@ -0,0 +1,45 @@
+
+
+
+ Delivery
+ Our terms and conditions of delivery
+ conditions, delivery, delay, shipment, pack
+ <h2>Shipments and returns</h2><h3>Your pack shipment</h3><p>Packages are generally dispatched within 2 days after receipt of payment and are shipped via UPS with tracking and drop-off without signature. If you prefer delivery by UPS Extra with required signature, an additional cost will be applied, so please contact us before choosing this method. Whichever shipment choice you make, we will provide you with a link to track your package online.</p><p>Shipping fees include handling and packing fees as well as postage costs. Handling fees are fixed, whereas transport fees vary according to total weight of the shipment. We advise you to group your items in one order. We cannot group two distinct orders placed separately, and shipping fees will apply to each of them. Your package will be dispatched at your own risk, but special care is taken to protect fragile objects.<br /><br />Boxes are amply sized and your items are well-protected.</p>
+ delivery
+
+
+ Legal Notice
+ Legal notice
+ notice, legal, credits
+ <h2>Legal</h2><h3>Credits</h3><p>Concept and production:</p><p>This Web site was created using <a href="http://www.prestashop.com">PrestaShop</a>™ open-source software.</p>
+ legal-notice
+
+
+ Terms and conditions of use
+ Our terms and conditions of use
+ conditions, terms, use, sell
+ <h2>Your terms and conditions of use</h2><h3>Rule 1</h3><p>Here is the rule 1 content</p>
+<h3>Rule 2</h3><p>Here is the rule 2 content</p>
+<h3>Rule 3</h3><p>Here is the rule 3 content</p>
+ terms-and-conditions-of-use
+
+
+ About us
+ Learn more about us
+ about us, informations
+ <h2>About us</h2>
+<h3>Our company</h3><p>Our company</p>
+<h3>Our team</h3><p>Our team</p>
+<h3>Informations</h3><p>Informations</p>
+ about-us
+
+
+ Secure payment
+ Our secure payment mean
+ secure payment, ssl, visa, mastercard, paypal
+ <h2>Secure payment</h2>
+<h3>Our secure payment</h3><p>With SSL</p>
+<h3>Using Visa/Mastercard/Paypal</h3><p>About this services</p>
+ secure-payment
+
+
diff --git a/install-dev/langs/pl/data/cms_category.xml b/install-dev/langs/pl/data/cms_category.xml
new file mode 100644
index 000000000..360e1a19e
--- /dev/null
+++ b/install-dev/langs/pl/data/cms_category.xml
@@ -0,0 +1,11 @@
+
+
+
+ Główna
+
+ glowna
+
+
+
+
+
diff --git a/install-dev/langs/pl/data/configuration.xml b/install-dev/langs/pl/data/configuration.xml
new file mode 100644
index 000000000..ee25d7dbb
--- /dev/null
+++ b/install-dev/langs/pl/data/configuration.xml
@@ -0,0 +1,21 @@
+
+
+
+ W
+
+
+ DE
+
+
+ od,z,na,po,i,w
+
+
+ 0
+
+
+ Szanowny Kliencie,
+
+Z wyrazami szacunku,
+Dzial obslugi klienta
+
+
diff --git a/install-dev/langs/pl/data/contact.xml b/install-dev/langs/pl/data/contact.xml
new file mode 100644
index 000000000..59ba0a8bc
--- /dev/null
+++ b/install-dev/langs/pl/data/contact.xml
@@ -0,0 +1,9 @@
+
+
+
+ Jeśli pojawił się problem techniczny na tej stronie
+
+
+ Wszelkie pytania dotyczące produktów i zamówień
+
+
diff --git a/install-dev/langs/pl/data/country.xml b/install-dev/langs/pl/data/country.xml
new file mode 100644
index 000000000..5c6c6ada5
--- /dev/null
+++ b/install-dev/langs/pl/data/country.xml
@@ -0,0 +1,999 @@
+
+
+
+ Afganistan
+
+
+
+ Albania
+
+
+
+ Algieria
+
+
+
+ Andora
+
+
+
+ Angola
+
+
+
+ Anguilla
+
+
+
+ Antarktyka
+
+
+
+ Antigua i Barbuda
+
+
+
+ Arabia Saudyjska
+
+
+
+ Argentyna
+
+
+
+ Armenia
+
+
+
+ Aruba
+
+
+
+ Australia
+
+
+
+ Austria
+
+
+
+ Azerbejdżan
+
+
+
+ Bahamy
+
+
+
+ Bahrajn
+
+
+
+ Bangladesz
+
+
+
+ Barbados
+
+
+
+ Belgia
+
+
+
+ Belize
+
+
+
+ Benin
+
+
+
+ Bermudy
+
+
+
+ Bhutan
+
+
+
+ Białoruś
+
+
+
+ Boliwia
+
+
+
+ Bonaire, Sint Eustatius i Saba
+
+
+
+ Bośnia i Hercegowina
+
+
+
+ Botswana
+
+
+
+ Brazylia
+
+
+
+ Brunei
+
+
+
+ Brytyjskie Terytorium Oceanu Indyjskiego
+
+
+
+ Brytyjskie Wyspy Dziewicze
+
+
+
+ Bułgaria
+
+
+
+ Burkina Faso
+
+
+
+ Burundi
+
+
+
+ Chile
+
+
+
+ Chiny
+
+
+
+ Chorwacja
+
+
+
+ Curaçao
+
+
+
+ Cypr
+
+
+
+ Czad
+
+
+
+ Czarnogóra
+
+
+
+ Czechy
+
+
+
+ Dalekie Wyspy Mniejsze Stanów Zjednoczonych
+
+
+
+ Dania
+
+
+
+ Demokratyczna Republika Konga
+
+
+
+ Dominika
+
+
+
+ Dominikana
+
+
+
+ Dżibuti
+
+
+
+ Egipt
+
+
+
+ Ekwador
+
+
+
+ Erytrea
+
+
+
+ Estonia
+
+
+
+ Etiopia
+
+
+
+ Falklandy
+
+
+
+ Fidżi
+
+
+
+ Filipiny
+
+
+
+ Finlandia
+
+
+
+ Francja
+
+
+
+ Francuskie Terytoria Południowe i Antarktyczne
+
+
+
+ Gabon
+
+
+
+ Gambia
+
+
+
+ Georgia Południowa i Sandwich Południowy
+
+
+
+ Ghana
+
+
+
+ Gibraltar
+
+
+
+ Grecja
+
+
+
+ Grenada
+
+
+
+ Grenlandia
+
+
+
+ Gruzja
+
+
+
+ Guam
+
+
+
+ Guernsey
+
+
+
+ Gujana Francuska
+
+
+
+ Gujana
+
+
+
+ Gwadelupa
+
+
+
+ Gwatemala
+
+
+
+ Gwinea Bissau
+
+
+
+ Gwinea Równikowa
+
+
+
+ Gwinea
+
+
+
+ Haiti
+
+
+
+ Hiszpania
+
+
+
+ Holandia
+
+
+
+ Honduras
+
+
+
+ Hongkong
+
+
+
+ Indie
+
+
+
+ Indonezja
+
+
+
+ Irak
+
+
+
+ Iran
+
+
+
+ Irlandia
+
+
+
+ Islandia
+
+
+
+ Izrael
+
+
+
+ Jamajka
+
+
+
+ Japonia
+
+
+
+ Jemen
+
+
+
+ Jersey
+
+
+
+ Jordania
+
+
+
+ Kajmany
+
+
+
+ Kambodża
+
+
+
+ Kamerun
+
+
+
+ Kanada
+
+
+
+ Katar
+
+
+
+ Kazachstan
+
+
+
+ Kenia
+
+
+
+ Kirgistan
+
+
+
+ Kiribati
+
+
+
+ Kolumbia
+
+
+
+ Komory
+
+
+
+ Kongo
+
+
+
+ Korea Południowa
+
+
+
+ Korea Północna
+
+
+
+ Kostaryka
+
+
+
+ Kuba
+
+
+
+ Kuwejt
+
+
+
+ Laos
+
+
+
+ Lesotho
+
+
+
+ Liban
+
+
+
+ Liberia
+
+
+
+ Libia
+
+
+
+ Liechtenstein
+
+
+
+ Litwa
+
+
+
+ Luksemburg
+
+
+
+ Łotwa
+
+
+
+ Macedonia
+
+
+
+ Madagaskar
+
+
+
+ Majotta
+
+
+
+ Makau
+
+
+
+ Malawi
+
+
+
+ Malediwy
+
+
+
+ Malezja
+
+
+
+ Mali
+
+
+
+ Malta
+
+
+
+ Mariany Północne
+
+
+
+ Maroko
+
+
+
+ Martynika
+
+
+
+ Mauretania
+
+
+
+ Mauritius
+
+
+
+ Meksyk
+
+
+
+ Mikronezja
+
+
+
+ Mjanma
+
+
+
+ Mołdawia
+
+
+
+ Monako
+
+
+
+ Mongolia
+
+
+
+ Montserrat
+
+
+
+ Mozambik
+
+
+
+ Namibia
+
+
+
+ Nauru
+
+
+
+ Nepal
+
+
+
+ Niemcy
+
+
+
+ Niger
+
+
+
+ Nigeria
+
+
+
+ Nikaragua
+
+
+
+ Niue
+
+
+
+ Norfolk
+
+
+
+ Norwegia
+
+
+
+ Nowa Kaledonia
+
+
+
+ Nowa Zelandia
+
+
+
+ Oman
+
+
+
+ Pakistan
+
+
+
+ Palau
+
+
+
+ Palestyna
+
+
+
+ Panama
+
+
+
+ Papua-Nowa Gwinea
+
+
+
+ Paragwaj
+
+
+
+ Peru
+
+
+
+ Pitcairn
+
+
+
+ Polinezja Francuska
+
+
+
+ Polska
+
+
+
+ Portoryko
+
+
+
+ Portugalia
+
+
+
+ Republika Południowej Afryki
+
+
+
+ Republika Środkowoafrykańska
+
+
+
+ Republika Zielonego Przylądka
+
+
+
+ Reunion
+
+
+
+ Rosja
+
+
+
+ Rumunia
+
+
+
+ Rwanda
+
+
+
+ Sahara Zachodnia
+
+
+
+ Saint Kitts i Nevis
+
+
+
+ Saint Lucia
+
+
+
+ Saint Vincent i Grenadyny
+
+
+
+ Saint-Barthélemy
+
+
+
+ Saint-Martin
+
+
+
+ Saint-Pierre i Miquelon
+
+
+
+ Salwador
+
+
+
+ Samoa Amerykańskie
+
+
+
+ Samoa
+
+
+
+ San Marino
+
+
+
+ Senegal
+
+
+
+ Serbia
+
+
+
+ Seszele
+
+
+
+ Sierra Leone
+
+
+
+ Singapur
+
+
+
+ Sint Maarten
+
+
+
+ Słowacja
+
+
+
+ Słowenia
+
+
+
+ Somalia
+
+
+
+ Sri Lanka
+
+
+
+ Stany Zjednoczone
+
+
+
+ Suazi
+
+
+
+ Sudan
+
+
+
+ Sudan Południowy
+
+
+
+ Surinam
+
+
+
+ Svalbard i Jan Mayen
+
+
+
+ Syria
+
+
+
+ Szwajcaria
+
+
+
+ Szwecja
+
+
+
+ Tadżykistan
+
+
+
+ Tajlandia
+
+
+
+ Tajwan
+
+
+
+ Tanzania
+
+
+
+ Timor Wschodni
+
+
+
+ Togo
+
+
+
+ Tokelau
+
+
+
+ Tonga
+
+
+
+ Trynidad i Tobago
+
+
+
+ Tunezja
+
+
+
+ Turcja
+
+
+
+ Turkmenistan
+
+
+
+ Turks i Caicos
+
+
+
+ Tuvalu
+
+
+
+ Uganda
+
+
+
+ Ukraina
+
+
+
+ Urugwaj
+
+
+
+ Uzbekistan
+
+
+
+ Vanuatu
+
+
+
+ Wallis i Futuna
+
+
+
+ Watykan
+
+
+
+ Wenezuela
+
+
+
+ Węgry
+
+
+
+ Wielka Brytania
+
+
+
+ Wietnam
+
+
+
+ Włochy
+
+
+
+ Wybrzeże Kości Słoniowej
+
+
+
+ Wyspa Bouveta
+
+
+
+ Wyspa Bożego Narodzenia
+
+
+
+ Wyspa Man
+
+
+
+ Wyspa Świętej Heleny, Wyspa Wniebowstąpienia i Tristan da Cunha
+
+
+
+ Wyspy Alandzkie
+
+
+
+ Wyspy Cooka
+
+
+
+ Wyspy Dziewicze Stanów Zjednoczonych
+
+
+
+ Wyspy Heard i McDonalda
+
+
+
+ Wyspy Kokosowe
+
+
+
+ Wyspy Marshalla
+
+
+
+ Wyspy Owcze
+
+
+
+ Wyspy Salomona
+
+
+
+ Wyspy Świętego Tomasza i Książęca
+
+
+
+ Zambia
+
+
+
+ Zimbabwe
+
+
+
+ Zjednoczone Emiraty Arabskie
+
+
+
diff --git a/install-dev/langs/pl/data/gender.xml b/install-dev/langs/pl/data/gender.xml
new file mode 100644
index 000000000..f78d3643b
--- /dev/null
+++ b/install-dev/langs/pl/data/gender.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/install-dev/langs/pl/data/group.xml b/install-dev/langs/pl/data/group.xml
new file mode 100644
index 000000000..407c07770
--- /dev/null
+++ b/install-dev/langs/pl/data/group.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/mails/es/index.php b/install-dev/langs/pl/data/index.php
similarity index 74%
rename from mails/es/index.php
rename to install-dev/langs/pl/data/index.php
index d8c3ebafb..10edbfe91 100644
--- a/mails/es/index.php
+++ b/install-dev/langs/pl/data/index.php
@@ -1,35 +1,35 @@
-
-* @copyright 2007-2013 PrestaShop SA
-* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
-* International Registered Trademark & Property of PrestaShop SA
-*/
-
-header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
-header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
-
-header("Cache-Control: no-store, no-cache, must-revalidate");
-header("Cache-Control: post-check=0, pre-check=0", false);
-header("Pragma: no-cache");
-
-header("Location: ../");
+
+* @copyright 2007-2013 PrestaShop SA
+* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
+* International Registered Trademark & Property of PrestaShop SA
+*/
+
+header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
+header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
+
+header('Cache-Control: no-store, no-cache, must-revalidate');
+header('Cache-Control: post-check=0, pre-check=0', false);
+header('Pragma: no-cache');
+
+header('Location: ../../../../');
exit;
\ No newline at end of file
diff --git a/install-dev/langs/pl/data/meta.xml b/install-dev/langs/pl/data/meta.xml
new file mode 100644
index 000000000..59c7f8d57
--- /dev/null
+++ b/install-dev/langs/pl/data/meta.xml
@@ -0,0 +1,159 @@
+
+
+
+ Błąd 404
+ Nie można odnaleźć strony
+ błąd, 404, nie znaleziono
+ nie-znaleziono-strony
+
+
+ Najczęściej kupowane
+ Nasze najlepsze sprzedaże
+ Najczęściej kupowane
+ najczesciej-kupowane
+
+
+ Skontaktuj się z nami
+ Skorzystaj z formularza kontaktowego
+ kontakt,e-mail
+ kontakt
+
+
+
+ Sklep na oprogramowaniu PrestaShop
+ sklep, prestashop
+
+
+
+ Producenci
+ Lista producentów
+ producent
+ producenci
+
+
+ Nowe produkty
+ Nasze nowe produkty
+ nowe, produkty
+ nowe-produkty
+
+
+ Przypomnienie hasła
+ Wpisz swój adres e-mail w celu uzyskania nowego hasła
+ przypomnienie, hasło, e-mail, nowy
+ odzyskiwanie-hasla
+
+
+ Promocje
+ Produkty w promocji
+ promocje, specjalne, spadek ceny
+ promocje
+
+
+ Mapa strony
+ Zagubiłeś się? Znajdź to, czego szukasz!
+ mapa strony
+ mapa-strony
+
+
+ Dostawcy
+ Lista dostawców
+ dostawca
+ dostawcy
+
+
+ Adres
+
+
+ adres
+
+
+ Adresy
+
+
+ adresy
+
+
+ Logowanie
+
+
+ logowanie
+
+
+ Koszyk
+
+
+ koszyk
+
+
+ Rabaty
+
+
+ rabaty
+
+
+ Historia zamówień
+
+
+ historia-zamowien
+
+
+ Dane osobiste
+
+
+ dane-osobiste
+
+
+ Moje konto
+
+
+ moje-konto
+
+
+ Śledzenie zamówienia
+
+
+ sledzenie-zamowienia
+
+
+ Pokwitowania
+
+
+ pokwitowania
+
+
+ Zamówienie
+
+
+ zamowienie
+
+
+ Szukaj
+
+
+ szukaj
+
+
+ sklepy
+
+
+ sklepy
+
+
+ Zamówienie
+
+
+ szybkie-zakupy
+
+
+ Śledzenie zamówień gości
+
+
+ sledzenie-zamowienia-gosc
+
+
+ Potwierdzenie zamówienia
+
+
+ potwierdzenie-zamowienia
+
+
diff --git a/install-dev/langs/pl/data/order_return_state.xml b/install-dev/langs/pl/data/order_return_state.xml
new file mode 100644
index 000000000..8a461fe94
--- /dev/null
+++ b/install-dev/langs/pl/data/order_return_state.xml
@@ -0,0 +1,18 @@
+
+
+
+ Oczekiwanie na potwierdzenie
+
+
+ Oczekiwanie na paczkę
+
+
+ Paczka została odebrana
+
+
+ Brak akceptacji zwrotu
+
+
+ Dokonanie zwrotu
+
+
diff --git a/install-dev/langs/pl/data/order_state.xml b/install-dev/langs/pl/data/order_state.xml
new file mode 100644
index 000000000..5220e46d5
--- /dev/null
+++ b/install-dev/langs/pl/data/order_state.xml
@@ -0,0 +1,51 @@
+
+
+
+ Oczekiwanie płatności czekiem
+ cheque
+
+
+ Płatność zaakceptowana
+ payment
+
+
+ Przygotowanie w toku
+ preparation
+
+
+ Wysłane
+ shipped
+
+
+ Dostarczone
+
+
+
+ Anulowane
+ order_canceled
+
+
+ Zwrot
+ refund
+
+
+ Błąd płatonści
+ payment_error
+
+
+ Brak towaru
+ outofstock
+
+
+ Oczekiwanie na płatność przelewem bankowym
+ bankwire
+
+
+ Oczekiwanie na płatność Paypal
+
+
+
+ Płatność przyjęta
+ payment
+
+
diff --git a/install-dev/langs/pl/data/profile.xml b/install-dev/langs/pl/data/profile.xml
new file mode 100644
index 000000000..010c99f2a
--- /dev/null
+++ b/install-dev/langs/pl/data/profile.xml
@@ -0,0 +1,6 @@
+
+
+
+ Super Admin
+
+
diff --git a/install-dev/langs/pl/data/quick_access.xml b/install-dev/langs/pl/data/quick_access.xml
new file mode 100644
index 000000000..87d70c215
--- /dev/null
+++ b/install-dev/langs/pl/data/quick_access.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/install-dev/langs/pl/data/risk.xml b/install-dev/langs/pl/data/risk.xml
new file mode 100644
index 000000000..29572e848
--- /dev/null
+++ b/install-dev/langs/pl/data/risk.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/install-dev/langs/pl/data/stock_mvt_reason.xml b/install-dev/langs/pl/data/stock_mvt_reason.xml
new file mode 100644
index 000000000..8be524994
--- /dev/null
+++ b/install-dev/langs/pl/data/stock_mvt_reason.xml
@@ -0,0 +1,27 @@
+
+
+
+ Wzrost
+
+
+ Spadek
+
+
+ Zamówienie klienta
+
+
+ Rozporządzenie dotyczące inwentaryzacji zapasów
+
+
+ Rozporządzenie dotyczące inwentaryzacji zapasów
+
+
+ Przeniesienie do innego magazynu
+
+
+ Przeniesienie z innego magazynu
+
+
+ Zamówienie dostawcy
+
+
diff --git a/install-dev/langs/pl/data/supplier_order_state.xml b/install-dev/langs/pl/data/supplier_order_state.xml
new file mode 100644
index 000000000..69196ad4d
--- /dev/null
+++ b/install-dev/langs/pl/data/supplier_order_state.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/install-dev/langs/pl/data/supply_order_state.xml b/install-dev/langs/pl/data/supply_order_state.xml
new file mode 100644
index 000000000..631bd495c
--- /dev/null
+++ b/install-dev/langs/pl/data/supply_order_state.xml
@@ -0,0 +1,21 @@
+
+
+
+ 1 - Tworzenie w toku
+
+
+ 2 - Zamówienie zostało zatwierdzone
+
+
+ 3 - W oczekiwaniu
+
+
+ 4 - Zamówienie zostało otrzymane w częściach
+
+
+ 5 - Otrzymano zamówienie
+
+
+ 6 - Zamówienie zostało anulowane
+
+
diff --git a/install-dev/langs/pl/data/tab.xml b/install-dev/langs/pl/data/tab.xml
new file mode 100644
index 000000000..7a511f653
--- /dev/null
+++ b/install-dev/langs/pl/data/tab.xml
@@ -0,0 +1,105 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/install-dev/langs/pl/flag.jpg b/install-dev/langs/pl/flag.jpg
new file mode 100644
index 000000000..34588a20f
Binary files /dev/null and b/install-dev/langs/pl/flag.jpg differ
diff --git a/install-dev/langs/pl/img/flag.jpg b/install-dev/langs/pl/img/flag.jpg
new file mode 100644
index 000000000..34588a20f
Binary files /dev/null and b/install-dev/langs/pl/img/flag.jpg differ
diff --git a/install-dev/langs/pl/img/index.php b/install-dev/langs/pl/img/index.php
new file mode 100644
index 000000000..f9382edba
--- /dev/null
+++ b/install-dev/langs/pl/img/index.php
@@ -0,0 +1,35 @@
+
+* @copyright 2007-2012 PrestaShop SA
+* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
+* International Registered Trademark & Property of PrestaShop SA
+*/
+
+header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
+header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
+
+header('Cache-Control: no-store, no-cache, must-revalidate');
+header('Cache-Control: post-check=0, pre-check=0', false);
+header('Pragma: no-cache');
+
+header('Location: ../../../../');
+exit;
\ No newline at end of file
diff --git a/install-dev/langs/pl/img/pl-default-category.jpg b/install-dev/langs/pl/img/pl-default-category.jpg
new file mode 100644
index 000000000..c28c90de1
Binary files /dev/null and b/install-dev/langs/pl/img/pl-default-category.jpg differ
diff --git a/install-dev/langs/pl/img/pl-default-home.jpg b/install-dev/langs/pl/img/pl-default-home.jpg
new file mode 100644
index 000000000..ae6658431
Binary files /dev/null and b/install-dev/langs/pl/img/pl-default-home.jpg differ
diff --git a/install-dev/langs/pl/img/pl-default-large.jpg b/install-dev/langs/pl/img/pl-default-large.jpg
new file mode 100644
index 000000000..83f20252e
Binary files /dev/null and b/install-dev/langs/pl/img/pl-default-large.jpg differ
diff --git a/install-dev/langs/pl/img/pl-default-large_scene.jpg b/install-dev/langs/pl/img/pl-default-large_scene.jpg
new file mode 100644
index 000000000..0c8b30dbe
Binary files /dev/null and b/install-dev/langs/pl/img/pl-default-large_scene.jpg differ
diff --git a/install-dev/langs/pl/img/pl-default-medium.jpg b/install-dev/langs/pl/img/pl-default-medium.jpg
new file mode 100644
index 000000000..13546aa40
Binary files /dev/null and b/install-dev/langs/pl/img/pl-default-medium.jpg differ
diff --git a/install-dev/langs/pl/img/pl-default-small.jpg b/install-dev/langs/pl/img/pl-default-small.jpg
new file mode 100644
index 000000000..8cb9417b6
Binary files /dev/null and b/install-dev/langs/pl/img/pl-default-small.jpg differ
diff --git a/install-dev/langs/pl/img/pl-default-thickbox.jpg b/install-dev/langs/pl/img/pl-default-thickbox.jpg
new file mode 100644
index 000000000..6bd5603f7
Binary files /dev/null and b/install-dev/langs/pl/img/pl-default-thickbox.jpg differ
diff --git a/install-dev/langs/pl/img/pl-default-thumb_scene.jpg b/install-dev/langs/pl/img/pl-default-thumb_scene.jpg
new file mode 100644
index 000000000..47d2def48
Binary files /dev/null and b/install-dev/langs/pl/img/pl-default-thumb_scene.jpg differ
diff --git a/install-dev/langs/pl/img/pl.jpg b/install-dev/langs/pl/img/pl.jpg
new file mode 100644
index 000000000..7d07b871d
Binary files /dev/null and b/install-dev/langs/pl/img/pl.jpg differ
diff --git a/mails/it/index.php b/install-dev/langs/pl/index.php
similarity index 70%
rename from mails/it/index.php
rename to install-dev/langs/pl/index.php
index d8c3ebafb..04675e9e1 100644
--- a/mails/it/index.php
+++ b/install-dev/langs/pl/index.php
@@ -1,35 +1,35 @@
-
-* @copyright 2007-2013 PrestaShop SA
-* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
-* International Registered Trademark & Property of PrestaShop SA
-*/
-
-header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
-header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
-
-header("Cache-Control: no-store, no-cache, must-revalidate");
-header("Cache-Control: post-check=0, pre-check=0", false);
-header("Pragma: no-cache");
-
-header("Location: ../");
+
+* @copyright 2007-2012 PrestaShop SA
+* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
+* International Registered Trademark & Property of PrestaShop SA
+*/
+
+header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
+header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
+
+header('Cache-Control: no-store, no-cache, must-revalidate');
+header('Cache-Control: post-check=0, pre-check=0', false);
+header('Pragma: no-cache');
+
+header('Location: ../../../');
exit;
\ No newline at end of file
diff --git a/install-dev/langs/pl/install.php b/install-dev/langs/pl/install.php
new file mode 100644
index 000000000..ac0afe668
--- /dev/null
+++ b/install-dev/langs/pl/install.php
@@ -0,0 +1,194 @@
+ array(
+ 'An SQL error occured for entity %1$s: %2$s' => 'Wystąpił błąd SQL w rekordzie %1$s: %2$s',
+ 'Cannot create image "%1$s" for entity "%2$s"' => 'Nie można utworzyć obrazu "%1$s" dla rekordu "%2$s"',
+ 'Cannot create image "%1$s" (bad permissions on folder "%2$s")' => 'Nie można utworzyć obrazu "%1$s" (brak uprawnień dla folderu "%2$s")',
+ 'Cannot create image "%s"' => 'Nie można utworzyć obrazu "%s"',
+ 'Field required' => 'Wymagane pola',
+ 'Invalid shop name' => 'Nieprawidłowa nazwa sklepu',
+ 'The field %s is limited to %d characters' => 'Pole %s jest ograniczone do %d znaków',
+ 'Your firstname contains some invalid characters' => 'Twoje imię zawiera nieprawidłowe znaki ',
+ 'Your lastname contains some invalid characters' => 'Twoje nazwisko zawiera nieprawidłowe znaki',
+ 'The password is incorrect (alphanumeric string with at least 8 characters)' => 'Hasło jest nieprawidłowe (8 znaków alfanumerycznych)',
+ 'Password and its confirmation are different' => 'Potwierdzenie hasła różni się od oryginału',
+ 'This e-mail address is invalid' => 'Ten adres e-mail jest nieprawidłowy',
+ 'Image folder %s is not writable' => 'Folder zdjęć %s nie posiada uprawnień do zapisów ',
+ 'An error occurred during logo copy.' => 'Nie można skopiować logo',
+ 'An error occurred during logo upload.' => 'Nie można przesłać logo ',
+ 'Lingerie and Adult' => 'Bielizna i Dorośli',
+ 'Animals and Pets' => 'Zwierzęta',
+ 'Art and Culture' => 'Sztuka i Kultura',
+ 'Babies' => 'Niemowlęta',
+ 'Beauty and Personal Care' => 'Zdrowie i Uroda',
+ 'Cars' => 'Samochody & Motory',
+ 'Computer Hardware and Software' => 'Sprzęt komputerowy i oprogramowanie',
+ 'Download' => 'Pobierz',
+ 'Fashion and accessories' => 'Moda i Dodatki',
+ 'Flowers, Gifts and Crafts' => 'Kwiaty, Prezenty i Rękodzieła',
+ 'Food and beverage' => 'Żywność i Napoje',
+ 'HiFi, Photo and Video' => 'RTV, Zdjęcia i Video',
+ 'Home and Garden' => 'Dom i Ogród',
+ 'Home Appliances' => 'AGD',
+ 'Jewelry' => 'Biżuteria',
+ 'Mobile and Telecom' => 'Telefony i Komórki',
+ 'Services' => 'Usługi',
+ 'Shoes and accessories' => 'Buty i Akcesoria',
+ 'Sports and Entertainment' => 'Sport i Rozrywka',
+ 'Travel' => 'Podróże',
+ 'Database is connected' => 'Baza danych jest podłączona',
+ 'Test message from PrestaShop' => 'Wiadomość testowa PrestaShop',
+ 'This is a test message, your server is now available to send email' => 'To jest wiadomość testowa, Twój serwer jest gotowy do wysyłania e-maili. ',
+ 'A test e-mail has been sent to %s' => 'Wiadomość testowa została wysłana do %s',
+ 'An error occurred while sending email, please verify your parameters' => 'Wystąpił błąd podczas wysyłania wiadomości, proszę o sprawdzenie ustawień.',
+ '%s - Login information' => '%s Logowanie',
+ 'Create settings.inc file' => 'Tworzenie pliku settings.inc',
+ 'Create database tables' => 'Tworzenie tabel bazy danych',
+ 'Create default shop and languages' => 'Tworzenie domyślnego sklepu i języków',
+ 'Populate database tables' => 'Wypełnianie tabel bazy danych',
+ 'Configure shop information' => 'Konfiguracja sklepu',
+ 'Install modules' => 'Instalacja modułów',
+ 'Install demonstration data' => 'Stwórz dane (produkty, strony, kategorie) przykładowe',
+ 'Install theme' => 'Instalacja Szablonu',
+ 'PHP 5.1.2 or later is not enabled' => 'PHP 5.1.2 lub nowszy nie jest włączony',
+ 'PHP parameters:' => 'Parametry PHP:',
+ 'Cannot upload files' => 'Nie można przesłać plików',
+ 'Cannot create new files and folders' => 'Nie można stworzyć nowych folderów ani plików ',
+ 'GD Library is not installed' => 'Biblioteka GD nie jest zainstalowana',
+ 'MySQL support is not activated' => 'Obsługa MySQL nie jest włączona',
+ 'Recursive write permissions on files and folders:' => 'Prawa do zapisu (rekursywnie) w plikach/ folderach:',
+ 'Cannot open external URLs' => 'Nie można otworzyć zewnętrznych adresów URL ',
+ 'Database name:' => 'Nazwa bazy danych:',
+ 'Database login:' => 'Użytkownik bazy danych:',
+ 'Database password:' => 'Hasło bazy danych:',
+ 'Database Engine:' => 'Typ bazy danych:',
+ 'Tables prefix:' => 'Prefix tabel:',
+ 'Drop existing tables (mode dev):' => 'Usuwanie tabel (tryb dev.)',
+ 'Test your database connection now!' => 'Przetestuj połączenie z bazą danych! ',
+ 'PHP register global option is on' => 'PHP opcja register_globals jest aktywna',
+ 'GZIP compression is not activated' => 'Kompresja GZIP nie jest włączona',
+ 'Mcrypt extension is not enabled' => 'Rozszerzenie Mcrypt nie jest włączone',
+ 'Mbstring extension is not enabled' => 'Rozszerzenie Mbstring nie jest włączone',
+ 'PHP magic quotes option is enabled' => 'PHP opcja magiq_quotes jest włączona',
+ 'Dom extension is not loaded' => 'Rozszerzenie DOM nie zostało załadowane',
+ 'PDO MySQL extension is not loaded' => 'Rozszerzenie PDO MySQL nie jest włączone',
+ 'Server name is not valid' => 'Adres serwera jest nieprawidłowy ',
+ 'You must enter a database name' => 'Podaj nazwę bazy danych',
+ 'You must enter a database login' => 'Podaj login dla bazy danych',
+ 'Tables prefix is invalid' => 'Prefiks tebeli jest niepoprawny ',
+ 'Wrong engine chosen for MySQL' => 'Silnik dla MySQL jest niepoprawny',
+ 'Cannot convert database data to utf-8' => 'Nie można przekonwertowąć bazy danych na utf-8',
+ 'At least one table with same prefix was already found, please change your prefix or drop your database' => 'Co najmniej jedna tabela z tym samym prefiksem została znaleziona - proszę zmienić aktualny prefiks lub usunąć istniejące tabele.',
+ 'Database Server is not found. Please verify the login, password and server fields' => 'Nie można połączyć się z serwerem bazy danych. Sprawdź swój login i hasło.',
+ 'Connection to MySQL server succeeded, but database "%s" not found' => 'Połączenie do serwera MySQL odbyło się poprawnie lecz baza danych "%is" nie została znaleziona.',
+ 'Engine innoDB is not supported by your MySQL server, please use MyISAM' => 'Silnik innoDB nie jest obsługiwany przez serwer SQL, proszę użyć MyISAM',
+ '%s file is not writable (check permissions)' => 'Plik %s nie jest zapisywalny (sprawdź uprawnienia plików)',
+ '%s folder is not writable (check permissions)' => 'Folder %s nie jest zapisywalny (sprawdź uprawnienia plików)',
+ 'Cannot write settings file' => 'Nie można dokonać ustawień w pliku ',
+ 'Database structure file not found' => 'Plik struktury bazy danych nie został znaleziony ',
+ 'SQL error on query %s' => 'Błąd SQL dla zapytania %s',
+ 'Cannot create group shop' => 'Nie można utworzyć domyślnej grupy sklepów',
+ 'Cannot create shop' => 'Nie można stworzyć sklepu',
+ 'Cannot create shop URL' => 'Nie można stworzyć URL dla sklepu',
+ 'File "language.xml" not found for language iso "%s"' => 'Plik "language.xml" nie został znaleziony dla iso "%s" ',
+ 'File "language.xml" not valid for language iso "%s"' => 'Plik "language.xml" jest niepoprawny dla iso "%s" ',
+ 'Encryption:' => 'Szyfrowanie',
+ 'None' => 'Żaden',
+ 'Port:' => 'Port:',
+ 'Login:' => 'Login:',
+ 'enter@your.email' => 'wpisz@twój.email',
+ 'Send me a test email!' => 'Wyślij testowego e-maila!',
+ 'Next' => 'Następny',
+ 'Back' => 'Poprzedni',
+ 'Official forum' => 'Oficjalne forum',
+ 'Support' => 'Wsparcie',
+ 'Documentation' => 'Dokumentacja',
+ 'Contact us' => 'Skontaktuj się z nami',
+ 'Forum' => 'Forum',
+ 'Blog' => 'Blog',
+ 'Contact us!' => 'Skontaktuj się z nami!',
+ 'Cannot install language "%s"' => 'Nie można dokonać instalacji języka "%s"',
+ 'Cannot copy flag language "%s"' => 'Nie można skopiować flagi dla języka "%s"',
+ 'Cannot create admin account' => 'Nie można utworzyć konta administratora',
+ 'Cannot install module "%s"' => 'Nie można zainstalować modułu "%s"',
+ 'Fixtures class "%s" not found' => 'Terminarz klasy "%s" nie został znaleziony',
+ '"%s" must be an instane of "InstallXmlLoader"' => '"%s" musi być instancją "Install Xml Loader"',
+ 'Information about your Store' => 'Informacje dotyczące Twojego sklepu',
+ 'Shop name:' => 'Nazwa sklepu:',
+ 'Main activity:' => 'Główna działalność:',
+ 'Please choose your main activity' => 'Proszę wybrać działalność',
+ 'Other activity...' => 'Inne:',
+ 'Yes' => 'Tak',
+ 'No' => 'Nie',
+ 'Default country:' => 'Kraj:',
+ 'Select your country' => 'Wybierz swój kraj',
+ 'Shop timezone:' => 'Strefa czasowa:',
+ 'Select your timezone' => 'Wybierz swoją strefę czasową',
+ 'Shop logo:' => 'Logo sklepu:',
+ 'Your Account' => 'TWOJE KONTO',
+ 'First name:' => 'Imię:',
+ 'Last name:' => 'Nazwisko:',
+ 'Shop password:' => 'Hasło:',
+ 'Optional - You can add you logo at a later time.' => 'Opcjonalnie: Możesz dodać logo w późniejszym czasie',
+ 'E-mail address:' => 'Adres e-mail:',
+ 'This email address will be your username to access your store\'s back office.' => 'Adres e-mail będzie służył jako login w panelu administracyjnym sklepu.',
+ 'Password:' => 'Hasło:',
+ 'Installation Assistant' => 'Asystent instalacji ',
+ 'License Agreements' => 'Umowy licencyjne',
+ 'I agree to the above terms and conditions.' => 'Zgadzam się z powyższymi warunkami.',
+ 'Done!' => 'Gotowe!',
+ 'An error occured during installation...' => 'Wystąpił błąd podczas instalacji ... ',
+ 'Your installation is finished!' => 'Instalacja została zakończona!',
+ 'Please remember your login information:' => 'Proszę o zapamiętanie danych logowania:',
+ 'E-mail:' => 'E-mail:',
+ 'Print my login information' => 'Wydrukuj tę stronę',
+ 'Display' => 'Wyświetl',
+ 'Must be alphanumeric string with at least 8 characters' => 'Hasło musi posiadać co najmniej 8 znaków alfanumerycznych',
+ 'Re-type to confirm:' => 'Potwierdzenie hasła:',
+ 'Sign-up to the newsletter' => 'Zapisz się do newslettera PrestaShop ',
+ 'Configure your database by filling out the following fields:' => 'Skonfiguruj połączenie z bazą danych wypełniając następujące pola:',
+ 'Please complete the fields below in order for PrestaShop to connect to your database. ' => 'Proszę o wypełnienie poniższych pól w celu połączenia PrestaShop z Twoją bazą danych ',
+ 'Database server address:' => 'Adres serwera bazy danych:',
+ 'Help us learn more about your store so we can offer you optimal guidance and the best features for your business!' => 'Przedstaw swój profil, abyśmy mogli poradzić Ci jaka funkcjonalność pasuje do Twojego biznesu.',
+ 'Install demo products:' => 'Instalacja demo produktów:',
+ 'Demo products are a good way to learn how to use PrestaShop. You should install them if you are not familiar with it.' => 'Demo produktów jest dobrym sposobem do nauczenia się korzystania z PrestaShop.',
+ 'E-mail delivery set-up' => 'Konfiguracja do wysyłania e-maili',
+ 'Configure SMTP manually (advanced users only)' => 'Skonfiguruj serwer SMTP (tryb zaawansowany)',
+ 'By default, the PHP mail() function is used' => 'Domyślnie - PHP mail () funkcja jest używana.',
+ 'SMTP server address:' => 'Adres serwera SMTP:',
+ 'PrestaShop can provide you with guidance on a regular basis by sending you tips on how to optimize the management of your store which will help you grow your business. If you do not wish to receive these tips, please uncheck this box.' => 'PrestaShop wysyła regularnie wskazówki dotyczące optymalizacji zarządzania sklepem. Jeśli nie chcesz ich otrzymywać, odznacz pole.',
+ 'To use PrestaShop, you must create a database to collect all of your store’s data-related activities.' => 'Aby korzystać z PrestaShop, musisz stworzyć baze danych, w celu zebrania wszystkich danych dotyczących funkcjonowania Twojego sklepu.',
+ 'The default port is 3306. To use a different port, add the port number at the end of your server’s address i.e ":4242".' => 'Jeśli chcesz użyć innego portu niż port domyślny (3306), dodaj ":XX" do adresu Twojego serwera - gdzie XX oznacza numer portu.',
+ 'If you are experiencing problems during the installation process, please call our team at %s and one of our experts will be happy to help.' => 'Jeśli spotkałeś się z problemami podczas instalacji, skontaktuj się z naszym zespołem %s.',
+ 'PrestaShop Installation Assistant' => 'Asystent instalacji PrestaShop',
+ 'I agree to participate in improving the solution by sending anonymous information about my configuration.' => 'Wyrażam chęć na udział w ulepszaniu oprogramowania PrestaShop - wysyłając anonimowe informacje dotyczące mojej konfiguracji.',
+ 'To enjoy the many features that are offered by PrestaShop, please read the license terms below. PrestaShop core is licensed under OSL 3.0, while the modules and themes are licensed under AFL 3.0.' => 'Przed rozpoczęciem korzystania z funkcji oferowanych przez PrestaShop,zapoznaj się z warunkami licencji znajdującymi się poniżej. PrestaShop działa na licencji OSL 3.0, natomiast moduły i szablony są publikowane na licencji AFL 3.0.',
+ 'You can use the links on the left column to go back to the previous steps, or restart the installation process by clicking here.' => 'Możesz korzystać z linków znajdujących się po lewej stronie, aby powrócić do poprzednich etapów lub uruchomić ponownie instalację klikając tutaj . ',
+ 'You have just finished installing your shop. Thank you for using PrestaShop!' => 'Instalacja Twojego sklepu została zakończona. Dziękujemy za korzystanie z PrestaShop!',
+ 'WARNING: For security purposes, you must delete the "install" folder.' => 'UWAGA : Ze względów bezpieczeństwa należy usunąć folder "install".',
+ 'Back Office' => 'Back Office',
+ 'Manage your store using your Back Office. Manage your orders and customers, add modules, change themes, etc.' => 'Zarządzaj sklepem przy użyciu back office.',
+ 'Manage your store' => 'Zarządzaj sklepem ',
+ 'Front Office' => 'Front Office ',
+ 'Discover your store as your future customers will see it!' => 'Sprawdź wygląd Twojego sklepu!',
+ 'Discover your store' => 'Odkryj swój sklep!',
+ 'We are currently checking PrestaShop compatibility with your system environment' => 'Jesteśmy w trakcie sprawdzania kompatybilności PrestaShop z Twoim systemem ',
+ 'If you have any questions, please visit our documentation and community forum.' => 'Jeśli masz jakieś pytania, zapoznaj się z naszą dokumentacją i forum. ',
+ 'PrestaShop compatibility with your system environment has been verified!' => 'Zgodność PrestaShop z Twoim systemem została zweryfikowana!',
+ 'Oops! Please correct the item(s) below, and then click "Refresh information" to test the compatibility of your new system.' => 'Proszę poprawić punkt/y znajdujące się poniżej i wybrać przycisk \'\'Odśwież informacje\'\' w celu przeprowadzenia testu kompatybilności nowego systemu. ',
+ 'Refresh these settings' => 'Odśwież ustawienia',
+ 'Welcome to the PrestaShop %s Installer.' => 'Etapy instalacji PrestaShop %s ',
+ 'Continue the installation in:' => 'Kontynuuj instalację w:',
+ 'PrestaShop requires at least 32M of memory to run, please check the memory_limit directive in php.ini or contact your host provider' => 'PrestaShop wymaga co namniej 32M pamięci do odpowiedniego funkcjonowania. Proszę o sprawdzenie wartości dyrektywy memory_limit w pliku php.ini lub skontaktowanie się z Twoim hostingowcem. ',
+ 'The installation of PrestaShop is quick and easy. In just a few moments, you will become part of a community consisting of more than 130,000 merchants. You are on the way to creating your own unique online store that you can manage easily every day.' => 'Instalacja PrestaShop odbywa się w łatwy i szybki sposób! W kilka minut dołączysz do 130 000 właścicieli sklepów internetowych w Europie, korzystających z naszego oprogramowania e-commerce. Będziesz mógł stworzyć swój sklep według własnych potrzeb i zarządzać nim w prosty sposób.',
+ 'If you need help, do not hesitate to check our documentation or to contact our support team: %2$s' => 'Jeśli potrzebujesz pomocy zapoznaj się z naszą dokumentacją lub skontaktuj się z działem technicznym;%2$s',
+ 'The language selection above only applies to the Installation Assistant. Once your store is installed, you can choose the language of your store from over %d translations, all for free!' => 'Po dokonaniu instalacji sklepu, wybierz język spośród %d darmowych tłumaczeń.',
+ 'menu_welcome' => 'Wybierz język',
+ 'menu_license' => 'Umowy licencyjne',
+ 'menu_system' => 'Zgodność z systemami',
+ 'menu_database' => 'Konfiguracja systemu',
+ 'menu_configure' => 'Informacje o sklepie',
+ 'menu_process' => 'Instalacja sklepu',
+ 'Your PHP sessions path is not writable - check with your hosting provider:' => 'Twoja ścieżka sesji PHP jest niezapisywalna - skontaktuj się z dostawcą usług hostingowych:',
+ ),
+);
\ No newline at end of file
diff --git a/install-dev/langs/pl/language.xml b/install-dev/langs/pl/language.xml
new file mode 100644
index 000000000..39b5fd3da
--- /dev/null
+++ b/install-dev/langs/pl/language.xml
@@ -0,0 +1,8 @@
+
+
+
+ pl
+ m/j/Y
+ m/j/Y H:i:s
+ false
+
diff --git a/install-dev/langs/pl/mail_identifiers.txt b/install-dev/langs/pl/mail_identifiers.txt
new file mode 100644
index 000000000..2eeb7909a
--- /dev/null
+++ b/install-dev/langs/pl/mail_identifiers.txt
@@ -0,0 +1,10 @@
+Witaj {firstname} {lastname}!
+
+Oto dane logowania dla sklepu {shop_name}:
+
+Hasło: {passwd}
+E-mail: {email}
+
+{shop_name} - {shop_url}
+
+{shop_url} na silniku PrestaShop™
\ No newline at end of file
diff --git a/install-dev/langs/ru/data/carrier.xml b/install-dev/langs/ru/data/carrier.xml
index 4289951b7..915e95ae9 100755
--- a/install-dev/langs/ru/data/carrier.xml
+++ b/install-dev/langs/ru/data/carrier.xml
@@ -1,6 +1,6 @@
- Выберите из ассортимента магазина
+ Забрать товар в магазине
diff --git a/install-dev/langs/ru/data/gender.xml b/install-dev/langs/ru/data/gender.xml
index 023a5e78d..75fc2ed2a 100755
--- a/install-dev/langs/ru/data/gender.xml
+++ b/install-dev/langs/ru/data/gender.xml
@@ -1,6 +1,6 @@
-
-
-
+
+
+
diff --git a/install-dev/langs/ru/install.php b/install-dev/langs/ru/install.php
index 05381ed4c..01ab96d28 100644
--- a/install-dev/langs/ru/install.php
+++ b/install-dev/langs/ru/install.php
@@ -225,5 +225,6 @@ return array(
'menu_process' => 'Установка магазина',
'menu_configure' => 'Информация о магазине',
'menu_welcome' => 'Выберите язык',
+ 'Your PHP sessions path is not writable - check with your hosting provider:' => 'Дисковая память недоступна в письменном виде - обратитесь к Вашему хостинг-провайдеру',
),
);
\ No newline at end of file
diff --git a/install-dev/models/install.php b/install-dev/models/install.php
index be3904c3a..2d60d8ad6 100644
--- a/install-dev/models/install.php
+++ b/install-dev/models/install.php
@@ -176,7 +176,7 @@ class InstallModelInstall extends InstallAbstractModel
// Install languages
try
{
- $languages = $this->installLanguages();
+ $languages = $this->installLanguages(array($this->language->getLanguageIso()));
}
catch (PrestashopInstallerException $e)
{
@@ -197,7 +197,7 @@ class InstallModelInstall extends InstallAbstractModel
public function populateDatabase($entity = null)
{
$languages = array();
- foreach (Language::getLanguages(false) as $lang)
+ foreach (Language::getLanguages(true) as $lang)
$languages[$lang['id_lang']] = $lang['iso_code'];
// Install XML data (data/xml/ folder)
@@ -293,34 +293,35 @@ class InstallModelInstall extends InstallAbstractModel
*
* @return array Association between ID and iso array(id_lang => iso, ...)
*/
- public function installLanguages()
+ public function installLanguages($languages_list = null)
{
+ if ($languages_list == null || !is_array($languages_list) || !count($languages_list))
+ $languages_list = $this->language->getIsoList();
+
$languages = array();
- foreach ($this->language->getIsoList() as $iso)
+ foreach ($languages_list as $iso)
{
if (!file_exists(_PS_INSTALL_LANGS_PATH_.$iso.'/language.xml'))
throw new PrestashopInstallerException($this->language->l('File "language.xml" not found for language iso "%s"', $iso));
if (!$xml = @simplexml_load_file(_PS_INSTALL_LANGS_PATH_.$iso.'/language.xml'))
throw new PrestashopInstallerException($this->language->l('File "language.xml" not valid for language iso "%s"', $iso));
+
+ $params_lang = array('name' => (string)$xml->name, 'iso_code' => (string)$xml->language_code);
- // Add language in database
- $language = new Language();
- $language->iso_code = $iso;
- $language->active = ($iso == $this->language->getLanguageIso()) ? true : false;
- $language->name = ($xml->name) ? (string)$xml->name : 'Unknown (Unknown)';
- $language->language_code = ($xml->language_code) ? (string)$xml->language_code : $iso;
- $language->date_format_lite = ($xml->date_format_lite) ? (string)$xml->date_format_lite : 'm/j/Y';
- $language->date_format_full = ($xml->date_format_full) ? (string)$xml->date_format_full : 'm/j/Y H:i:s';
- $language->is_rtl = ($xml->is_rtl && ($xml->is_rtl == 'true' || $xml->is_rtl == '1')) ? 1 : 0;
- if (!$language->add())
+ if (InstallSession::getInstance()->safe_mode)
+ Language::checkAndAddLanguage($iso, false, true, $params_lang);
+ else
+ Language::downloadAndInstallLanguagePack($iso, _PS_INSTALL_VERSION_, $params_lang);
+
+ if (!$id_lang = Language::getIdByIso($iso))
throw new PrestashopInstallerException($this->language->l('Cannot install language "%s"', ($xml->name) ? $xml->name : $iso));
- $languages[$language->id] = $iso;
+ $languages[$id_lang] = $iso;
// Copy language flag
if (is_writable(_PS_IMG_DIR_.'l/'))
- if (!copy(_PS_INSTALL_LANGS_PATH_.$iso.'/flag.jpg', _PS_IMG_DIR_.'l/'.$language->id.'.jpg'))
- throw new PrestashopInstallerException($this->language->l('Cannot copy flag language "%s"', _PS_INSTALL_LANGS_PATH_.$iso.'/flag.jpg => '._PS_IMG_DIR_.'l/'.$language->id.'.jpg'));
+ if (!copy(_PS_INSTALL_LANGS_PATH_.$iso.'/flag.jpg', _PS_IMG_DIR_.'l/'.$id_lang.'.jpg'))
+ throw new PrestashopInstallerException($this->language->l('Cannot copy flag language "%s"', _PS_INSTALL_LANGS_PATH_.$iso.'/flag.jpg => '._PS_IMG_DIR_.'l/'.$id_lang.'.jpg'));
}
return $languages;
@@ -393,7 +394,7 @@ class InstallModelInstall extends InstallAbstractModel
Configuration::loadConfiguration();
// use the old image system if the safe_mod is enabled otherwise the installer will fail with the fixtures installation
- if (@ini_get('safe_mode') == 1)
+ if (InstallSession::getInstance()->safe_mode)
Configuration::updateGlobalValue('PS_LEGACY_IMAGES', 1);
$id_country = Country::getByIso($data['shop_country']);
@@ -559,7 +560,6 @@ class InstallModelInstall extends InstallAbstractModel
'gsitemap',
'homefeatured',
'homeslider',
- 'moneybookers',
'pagesnotfound',
'sekeywords',
'statsbestcategories',
@@ -583,21 +583,45 @@ class InstallModelInstall extends InstallAbstractModel
'statssearch',
'statsstock',
'statsvisits',
- 'themeinstallator',
);
}
return $modules;
}
+
+ public function getAddonsModulesList()
+ {
+ $addons_modules = array();
+ $content = Tools::addonsRequest('install-modules');
+ $xml = @simplexml_load_string($content, null, LIBXML_NOCDATA);
+
+ if ($xml !== false and isset($xml->module))
+ foreach ($xml->module as $modaddons)
+ $addons_modules[] = array('id_module' => $modaddons->id, 'name' => $modaddons->name);
+
+ return $addons_modules;
+ }
+
/**
* PROCESS : installModules
- * Install all modules in ~/modules/ directory
+ * Download module from addons and Install all modules in ~/modules/ directory
*/
public function installModules($module = null)
{
$modules = $module ? array($module) : $this->getModulesList();
-
+ if (!InstallSession::getInstance()->safe_mode)
+ {
+ $addons_modules = $this->getAddonsModulesList();
+
+ foreach($addons_modules as $addons_module)
+ if (file_put_contents(_PS_MODULE_DIR_.$addons_module['name'].'.zip', Tools::addonsRequest('module', array('id_module' => $addons_module['id_module']))))
+ if (Tools::ZipExtract(_PS_MODULE_DIR_.$addons_module['name'].'.zip', _PS_MODULE_DIR_))
+ {
+ $modules[] = (string)$addons_module['name'];//if the module has been unziped we add the name in the modules list to install
+ unlink(_PS_MODULE_DIR_.$addons_module['name'].'.zip');
+ }
+ }
$errors = array();
foreach ($modules as $module_name)
{
diff --git a/install-dev/theme/views/configure.phtml b/install-dev/theme/views/configure.phtml
index e0e147420..ff9b6f95c 100644
--- a/install-dev/theme/views/configure.phtml
+++ b/install-dev/theme/views/configure.phtml
@@ -26,7 +26,7 @@ var default_iso = 'session->shop_country ?>';
diff --git a/install-dev/upgrade/php/p15016_add_missing_columns.php b/install-dev/upgrade/php/p15016_add_missing_columns.php
index 7be79c026..e9d8288fb 100644
--- a/install-dev/upgrade/php/p15016_add_missing_columns.php
+++ b/install-dev/upgrade/php/p15016_add_missing_columns.php
@@ -38,6 +38,9 @@ function p15016_add_missing_columns()
if (!in_array('id_shop', $list_fields))
if (!Db::getInstance()->execute('ALTER TABLE `'._DB_PREFIX_.'reinsurance` ADD `id_shop` INT(10) NOT NULL default "1" AFTER id_reinsurance'))
$errors[] = Db::getInstance()->getMsgError();
+ if (in_array('filename', $list_fields))
+ if (!Db::getInstance()->execute('ALTER TABLE `'._DB_PREFIX_.'reinsurance` CHANGE `filename` `file_name` VARCHAR(100) NOT NULL'))
+ $errors[] = Db::getInstance()->getMsgError();
}
$id_module = Db::getInstance()->getValue('SELECT id_module FROM `'._DB_PREFIX_.'module` WHERE name="blocktopmenu"');
diff --git a/install-dev/upgrade/php/p1540_add_missing_columns.php b/install-dev/upgrade/php/p1540_add_missing_columns.php
new file mode 100644
index 000000000..4d7775b0a
--- /dev/null
+++ b/install-dev/upgrade/php/p1540_add_missing_columns.php
@@ -0,0 +1,56 @@
+
+* @copyright 2007-2013 PrestaShop SA
+* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
+* International Registered Trademark & Property of PrestaShop SA
+*/
+
+function p1540_add_missing_columns()
+{
+ $errors = array();
+ $id_module = Db::getInstance()->getValue('SELECT id_module FROM `'._DB_PREFIX_.'module` WHERE name LIKE "loyalty"');
+ if ($id_module)
+ {
+ $list_fields = Db::getInstance()->executeS('SHOW FIELDS FROM `'._DB_PREFIX_.'loyalty`');
+ foreach ($list_fields as $k => $field)
+ $list_fields[$k] = $field['Field'];
+
+ if (in_array('id_discount', $list_fields))
+ if (!Db::getInstance()->execute('ALTER TABLE `'._DB_PREFIX_.'loyalty` CHANGE `id_discount` `id_cart_rule` INT( 10 ) UNSIGNED NULL DEFAULT NULL'))
+ $errors[] = Db::getInstance()->getMsgError();
+ }
+
+ $id_module = Db::getInstance()->getValue('SELECT id_module FROM `'._DB_PREFIX_.'module` WHERE name LIKE "blocklayered"');
+ if ($id_module)
+ {
+ $list_fields = Db::getInstance()->executeS('SHOW FIELDS FROM `'._DB_PREFIX_.'layered_product_attribute`');
+ foreach ($list_fields as $k => $field)
+ $list_fields[$k] = $field['Field'];
+
+ if (!in_array('id_shop', $list_fields))
+ if (!Db::getInstance()->execute('ALTER TABLE `'._DB_PREFIX_.'layered_product_attribute` ADD `id_shop` INT( 10 ) UNSIGNED NOT NULL DEFAULT "1" AFTER `id_attribute_group` '))
+ $errors[] = Db::getInstance()->getMsgError();
+ }
+
+ if (count($errors))
+ return array('error' => 1, 'msg' => implode(',', $errors)) ;
+}
\ No newline at end of file
diff --git a/install-dev/upgrade/php/update_genders_images.php b/install-dev/upgrade/php/update_genders_images.php
index 5039400a3..20b060356 100644
--- a/install-dev/upgrade/php/update_genders_images.php
+++ b/install-dev/upgrade/php/update_genders_images.php
@@ -26,12 +26,12 @@
function update_genders_images()
{
- if (file_exists(_PS_IMG_DIR_.'genders/Mr.jpg'))
- @rename(_PS_IMG_DIR_.'genders/Mr.jpg', _PS_IMG_DIR_.'genders/1.jpg');
- if (file_exists(_PS_IMG_DIR_.'genders/Ms.jpg'))
- @rename(_PS_IMG_DIR_.'genders/Ms.jpg', _PS_IMG_DIR_.'genders/2.jpg');
- if (file_exists(_PS_IMG_DIR_.'genders/Miss.jpg'))
- @rename(_PS_IMG_DIR_.'genders/Miss.jpg', _PS_IMG_DIR_.'genders/3.jpg');
- if (file_exists(_PS_IMG_DIR_.'genders/unknown.jpg'))
- @rename(_PS_IMG_DIR_.'unknown.jpg', _PS_IMG_DIR_.'Unknown.jpg');
+ if (file_exists(_PS_ROOT_DIR_.'/img/genders/Mr.jpg'))
+ @rename(_PS_ROOT_DIR_.'/img/genders/Mr.jpg', _PS_ROOT_DIR_.'/img/genders/1.jpg');
+ if (file_exists(_PS_ROOT_DIR_.'/img/genders/Ms.jpg'))
+ @rename(_PS_ROOT_DIR_.'/img/genders/Ms.jpg', _PS_ROOT_DIR_.'/img/genders/2.jpg');
+ if (file_exists(_PS_ROOT_DIR_.'/img/genders/Miss.jpg'))
+ @rename(_PS_ROOT_DIR_.'/img/genders/Miss.jpg', _PS_ROOT_DIR_.'/img/genders/3.jpg');
+ if (file_exists(_PS_ROOT_DIR_.'genders/unknown.jpg'))
+ @rename(_PS_ROOT_DIR_.'/img/genders/unknown.jpg', _PS_ROOT_DIR_.'/img/genders/Unknown.jpg');
}
\ No newline at end of file
diff --git a/install-dev/upgrade/sql/1.5.1.0.sql b/install-dev/upgrade/sql/1.5.1.0.sql
index 70783b716..b365cf584 100644
--- a/install-dev/upgrade/sql/1.5.1.0.sql
+++ b/install-dev/upgrade/sql/1.5.1.0.sql
@@ -16,5 +16,5 @@ ALTER TABLE `PREFIX_order_carrier` CHANGE `weight` `weight` DECIMAL(20, 6) NOT N
ALTER TABLE `PREFIX_attribute_impact` CHANGE `weight` `weight` DECIMAL(20, 6) NOT NULL DEFAULT '0';
ALTER TABLE `PREFIX_order_detail` CHANGE `product_weight` `product_weight` DECIMAL(20, 6) NOT NULL DEFAULT '0';
ALTER TABLE `PREFIX_stock_available` DROP INDEX `product_sqlstock`;
-ALTER TABLE `PREFIX_stock_available` ADD UNIQUE (`id_product`, `id_product_attribute`, `id_shop`);
+ALTER TABLE `PREFIX_stock_available` ADD UNIQUE `product_sqlstock` (`id_product`, `id_product_attribute`, `id_shop`);
ALTER TABLE `PREFIX_cms` ADD INDEX (`id_cms_category`);
diff --git a/install-dev/upgrade/sql/1.5.4.0.sql b/install-dev/upgrade/sql/1.5.4.0.sql
index 9199b816b..4e6e1cee2 100644
--- a/install-dev/upgrade/sql/1.5.4.0.sql
+++ b/install-dev/upgrade/sql/1.5.4.0.sql
@@ -49,4 +49,8 @@ ALTER TABLE `PREFIX_address` CHANGE `phone_mobile` `phone_mobile` varchar(32) de
UPDATE `PREFIX_customer` SET `id_gender` = 1 WHERE `email` LIKE 'pub@prestashop.com' AND `id_customer` = 1 AND `id_gender` = 4;
-UPDATE `PREFIX_cart_rule_carrier` crc INNER JOIN `PREFIX_carrier` c ON crc.`id_carrier` = c.`id_carrier` SET crc.`id_carrier` = c.`id_reference`;
\ No newline at end of file
+UPDATE `PREFIX_cart_rule_carrier` crc INNER JOIN `PREFIX_carrier` c ON crc.`id_carrier` = c.`id_carrier` SET crc.`id_carrier` = c.`id_reference`;
+
+UPDATE `PREFIX_order_payment` SET `order_reference` = LPAD(order_reference, 9 , '0');
+
+/* PHP:p1540_add_missing_columns(); */;
\ No newline at end of file
diff --git a/js/admin.js b/js/admin.js
index 9e36e56d3..3172cadda 100644
--- a/js/admin.js
+++ b/js/admin.js
@@ -810,8 +810,31 @@ $(document).ready(function()
$(this).slideUp('fast');
clearTimeout(ajax_running_timeout);
});
+
+ bindTabModuleListAction();
+
});
+
+function bindTabModuleListAction()
+{
+ $('.action_tab_module').each( function (){
+ $(this).click(function () {
+ option = $('#'+$(this).data('option')+' :selected');
+ if ($(option).data('onclick') != '')
+ {
+
+ var f = eval("(function(){ "+$(option).data('onclick')+"})");
+ if (f.call())
+ window.location.href = $(option).data('href');
+ }
+ else
+ window.location.href = $(option).data('href');
+ return false;
+ });
+ });
+}
+
// Delete all tags HTML
function stripHTML(oldString)
{
diff --git a/js/hookLiveEdit.js b/js/hookLiveEdit.js
index 5fe527ce7..b7b7b1239 100644
--- a/js/hookLiveEdit.js
+++ b/js/hookLiveEdit.js
@@ -66,7 +66,7 @@ $(document).ready(function() {
});
$('.add_module_live_edit').unbind('click').click(function()
{
- $("#live_edit_feedback_str").html('
');
+ $("#live_edit_feedback_str").html('
');
$("#fancy").attr('href', '#live_edit_feedback');
$("#fancy").trigger("click");
var id = $(this).attr('id');
@@ -168,7 +168,7 @@ function getHookableList() {
hookable_list = jsonData;// create and fill input array
},
error: function(XMLHttpRequest, textStatus, errorThrown) {
- $('#live_edit_feedback_str').html('
Schützen Sie Ihre Kontodetails. Geben Sie Ihre Login-Details nicht an Dritte weiter. Ändern Sie Ihr Kennwort regelmäßig. Falls Sie vermuten, dass jemand Ihr Konto unerlaubt benutzt, benachrichtigen Sie uns bitte sofort.
-
-
-
-
-
-
Sie können nun Bestellungen auf unserer Webseite vornehmen: {shop_name}.
-
-
\ No newline at end of file
diff --git a/mails/de/backoffice_order.txt b/mails/de/backoffice_order.txt
deleted file mode 100644
index 8f38f4ba0..000000000
--- a/mails/de/backoffice_order.txt
+++ /dev/null
@@ -1,9 +0,0 @@
-Hi {firstname} {lastname},
-
-A new command has been generated to you.
-
-Go on {order_link} to finalize the payment.
-
-{shop_name} - {shop_url}
-
-{shop_url} réalisé par PrestaShop™
diff --git a/mails/de/bankwire.html b/mails/de/bankwire.html
deleted file mode 100644
index 0d584464b..000000000
--- a/mails/de/bankwire.html
+++ /dev/null
@@ -1,55 +0,0 @@
-
-
-
-
- Nachricht von {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hallo {firstname} {lastname},
-
-
-
-
-
-
Ihre Bestellung Nr.{order_name}
-
-
-
-
-
-
Ihre Bestellung wurde erfolgreich aufgenommen und wird, sobald die Zahlung eingegangen ist, versendet.
-
-
-
-
-
-
Bitte beachten Sie, dass Sie die Banküberweisung für Ihre Zahlung gewählt haben. Bitte senden Sie Ihre Banküberweisung an:
{bankwire_owner}
{bankwire_details}
{bankwire_address}
Der Gesamtbetrag der Bestellung ist {total_paid}
-
-
-
-
-
-
Sie können diese Bestellung ansehen und Ihre Rechnung aus dem Abschnitt "Bestellverlauf" Ihres Kontos downloaden, indem Sie auf unserer Webseite auf "Mein Konto" klicken.
-
-
-
Wenn Sie ein Gast-Konto haben, können Sie Ihre Bestellung im Abschnitt "Bestellverfolgung Gast" auf unserer Webseite verfolgen.
-
-
\ No newline at end of file
diff --git a/mails/de/bankwire.txt b/mails/de/bankwire.txt
deleted file mode 100644
index 824f4cb1e..000000000
--- a/mails/de/bankwire.txt
+++ /dev/null
@@ -1,20 +0,0 @@
-Hallo {firstname} {lastname},
-
-Ihre Bestellung Nr.{order_name} Verlauf
-
-Ihre Bestellung wurde erfolgreich aufgenommen und wird, sobald die Zahlung eingegangen ist, versendet.
-
-Bitte beachten Sie, dass Sie die Banküberweisung für Ihre Zahlung gewählt haben. Bitte senden Sie Ihre Banküberweisung an:
-
-{bankwire_owner}
-
-{bankwire_details}
-
-{bankwire_address}
-
-Der Gesamtbetrag der Bestellung ist {total_paid}
-
-Sie können diese Bestellung ansehen und Ihre Rechnung aus dem Abschnitt "Bestellverlauf" Ihres Kontos downloaden, indem Sie auf unserer Webseite auf "Mein Konto" klicken.
-Wenn Sie ein Gast-Konto haben, können Sie Ihre Bestellung im Abschnitt "Bestellverfolgung Gast" auf unserer Webseite verfolgen.
-
-{shop_name} powered with PrestaShop™
diff --git a/mails/de/cheque.html b/mails/de/cheque.html
deleted file mode 100644
index b05c140b7..000000000
--- a/mails/de/cheque.html
+++ /dev/null
@@ -1,55 +0,0 @@
-
-
-
-
- Nachricht von {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hallo {firstname} {lastname},
-
-
-
-
-
-
Ihr Bestellverlauf {order_name}
-
-
-
-
-
-
Ihre Bestellung wurde erfolgreich aufgenommen und wird, sobald die Zahlung eingegangen ist, versendet.
-
-
-
-
-
-
Bitte beachten Sie, dass Sie die Zahlung per Scheck gewählt haben. Bitte senden Sie Ihren Scheck an:
- ein Betrag über {total_paid}
- zahlbar an {cheque_name}
- Adresse {cheque_address_html}
-
-
-
-
-
-
Sie können diese Bestellung ansehen und Ihre Rechnung aus dem Abschnitt "Bestellverlauf" Ihres Kontos downloaden, indem Sie auf unserer Webseite auf "Mein Konto" klicken.
-
-
-
Wenn Sie ein Gast-Konto haben, können Sie Ihre Bestellung im Abschnitt "Bestellverfolgung Gast" auf unserer Webseite verfolgen.
-
-
\ No newline at end of file
diff --git a/mails/de/cheque.txt b/mails/de/cheque.txt
deleted file mode 100644
index 07627441b..000000000
--- a/mails/de/cheque.txt
+++ /dev/null
@@ -1,18 +0,0 @@
-Hallo {firstname} {lastname},
-
-Ihr Bestellverlauf {order_name}
-
-Ihre Bestellung wurde erfolgreich aufgenommen und wird, sobald die Zahlung eingegangen ist, versendet.
-
-Bitte beachten Sie, dass Sie die Zahlung per Scheck gewählt haben. Bitte senden Sie Ihren Scheck an:
-
-- ein Betrag über {total_paid}
-
-- zahlbar an {cheque_name}
-
-- Adresse {cheque_address_html}
-
-Sie können diese Bestellung ansehen und Ihre Rechnung aus dem Abschnitt "Bestellverlauf" Ihres Kontos downloaden, indem Sie auf unserer Webseite auf "Mein Konto" klicken.
-Wenn Sie ein Gast-Konto haben, können Sie Ihre Bestellung im Abschnitt "Bestellverfolgung Gast" auf unserer Webseite verfolgen.
-
-{shop_name} powered with PrestaShop™
diff --git a/mails/de/contact.html b/mails/de/contact.html
deleted file mode 100644
index d8acb32ad..000000000
--- a/mails/de/contact.html
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
-
- Nachricht von {shop_name}
-
-
-
-
-
\ No newline at end of file
diff --git a/mails/de/contact_form.txt b/mails/de/contact_form.txt
deleted file mode 100644
index 34b119529..000000000
--- a/mails/de/contact_form.txt
+++ /dev/null
@@ -1,7 +0,0 @@
-Ihre Nachricht wurde korrekt an unseren Kundendienst weitergeleitet.
-
-Ihre Nachricht: {message}
-
-Wir werden so schnell wie möglich antworten.
-
-{shop_name} powered with PrestaShop™
diff --git a/mails/de/credit_slip.html b/mails/de/credit_slip.html
deleted file mode 100644
index 8f5df22de..000000000
--- a/mails/de/credit_slip.html
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
-
-
- Nachricht von {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hallo {firstname} {lastname},
-
-
-
-
-
-
Ihre Bestellung Nr.{id_order}
-
-
-
-
-
-
Damit werden Sie über die Erstellung eines Gutscheins auf Ihren Namen nach Ihrer Bestellung Nr. {id_order} informiert.
-
-
-
-
-
-
Sie können diese Bestellung ansehen und Ihre Rechnung aus dem Abschnitt "Bestellverfolgung" Ihres Kontos downloaden, indem Sie auf unserer Webseite auf "Mein Konto" klicken.
-
-
\ No newline at end of file
diff --git a/mails/de/credit_slip.txt b/mails/de/credit_slip.txt
deleted file mode 100644
index ea19637c1..000000000
--- a/mails/de/credit_slip.txt
+++ /dev/null
@@ -1,9 +0,0 @@
-Hallo {firstname} {lastname},
-
-Ihre Bestellung Nr.{id_order}
-
-Damit werden Sie über die Erstellung eines Gutscheins auf Ihren Namen nach Ihrer Bestellung Nr. {id_order} informiert.
-
-Sie können diese Bestellung ansehen und Ihre Rechnung aus dem Abschnitt "Bestellverfolgung" Ihres Kontos downloaden, indem Sie auf unserer Webseite auf "Mein Konto" klicken.
-
-{shop_name} powered with PrestaShop™
diff --git a/mails/de/download-product.tpl b/mails/de/download-product.tpl
deleted file mode 100644
index 69dea48ba..000000000
--- a/mails/de/download-product.tpl
+++ /dev/null
@@ -1,13 +0,0 @@
-
\ No newline at end of file
diff --git a/mails/de/download_product.html b/mails/de/download_product.html
deleted file mode 100644
index ed2eb1a5b..000000000
--- a/mails/de/download_product.html
+++ /dev/null
@@ -1,55 +0,0 @@
-
-
-
-
- Nachricht von {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hallo {firstname} {lastname}, danke für Ihren Einkauf bei {shop_name}.
-
-
-
-
-
-
Produkt (e) zum Download
-
-
-
-
-
-
Es liegen für Sie {nbProducts} Produkt (e) zum Download bereit.
-
-
-
-
-
-
Hier sind direkte Links zu diesen Produkten: {virtualProducts}
-
-
-
-
-
-
Sie können diese Bestellung ansehen und Ihre Rechnung aus dem Abschnitt "Bestellverlauf" Ihres Kontos downloaden, indem Sie auf unserer Webseite auf "Mein Konto" klicken.
-
-
-
Wenn Sie ein Gast-Konto haben, können Sie Ihre Bestellung im Abschnitt "Bestellverfolgung Gast" auf unserer Webseite verfolgen.
-
-
\ No newline at end of file
diff --git a/mails/de/download_product.txt b/mails/de/download_product.txt
deleted file mode 100644
index b812a0159..000000000
--- a/mails/de/download_product.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-Hallo {firstname} {lastname}, danke für Ihren Einkauf bei {shop_name}.
-
-Produkt (e) zum Download
-
-Es liegen für Sie {nbProducts} Produkt (e) zum Download bereit.
-
-Hier sind direkte Links zu diesen Produkten: {virtualProducts}
-
-Sie können diese Bestellung ansehen und Ihre Rechnung aus dem Abschnitt "Bestellverlauf" Ihres Kontos downloaden, indem Sie auf unserer Webseite auf "Mein Konto" klicken.
-Wenn Sie ein Gast-Konto haben, können Sie Ihre Bestellung im Abschnitt "Bestellverfolgung Gast" auf unserer Webseite verfolgen.
-
-{shop_name} powered with PrestaShop™
diff --git a/mails/de/employee_password.html b/mails/de/employee_password.html
deleted file mode 100644
index 46a08a614..000000000
--- a/mails/de/employee_password.html
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
-
- Nachricht von {shop_name}
-
-
-
-
-
\ No newline at end of file
diff --git a/mails/de/guest_to_customer.txt b/mails/de/guest_to_customer.txt
deleted file mode 100644
index ccbed22c5..000000000
--- a/mails/de/guest_to_customer.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-Hallo {firstname} {lastname},
-
-Ihr Gast-Konto wurde in ein Kunden-Konto umgewandelt
-
-E-Mail-Adresse: {email}
-Kennword: {passwd}
-
-Bitte seien Sie vorsichtig bei der gemeinsamen Nutzung dieser Login-Daten mit anderen.
-
-Sie können auf Ihr Konto auf unserer Webseite zugreifen: {shop_url}
-
-{shop_name} powered with PrestaShop™
diff --git a/mails/de/in_transit.html b/mails/de/in_transit.html
deleted file mode 100644
index 597b9a405..000000000
--- a/mails/de/in_transit.html
+++ /dev/null
@@ -1,55 +0,0 @@
-
-
-
-
- Nachricht von {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hallo {firstname} {lastname},
-
-
-
-
-
-
Ihre Bestellung Nr.{id_order}
-
-
-
-
-
-
Ihre Bestellung ist derzeit auf dem Weg.
-
-
-
-
-
-
Sie können Ihr Paket verfolgen, indem Sie auf den folgenden Link klicken: {followup}
-
-
-
-
-
-
Sie können diese Bestellung ansehen und Ihre Rechnung aus dem Abschnitt "Bestellverlauf" Ihres Kontos downloaden, indem Sie auf unserer Webseite auf "Mein Konto" klicken.
-
-
-
Wenn Sie ein Gast-Konto haben, können Sie Ihre Bestellung im Abschnitt "Bestellverfolgung Gast" auf unserer Webseite verfolgen.
-
-
\ No newline at end of file
diff --git a/mails/de/in_transit.txt b/mails/de/in_transit.txt
deleted file mode 100644
index bdb73e217..000000000
--- a/mails/de/in_transit.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-Hallo {firstname} {lastname},
-
-Ihre Bestellung Nr.{id_order}
-
-Ihre Bestellung ist derzeit auf dem Weg.
-
-Sie können Ihr Paket verfolgen, indem Sie auf den folgenden Link klicken: {followup}
-
-Sie können diese Bestellung ansehen und Ihre Rechnung aus dem Abschnitt "Bestellverlauf" Ihres Kontos downloaden, indem Sie auf unserer Webseite auf "Mein Konto" klicken.
-Wenn Sie ein Gast-Konto haben, können Sie Ihre Bestellung im Abschnitt "Bestellverfolgung Gast" auf unserer Webseite verfolgen.
-
-{shop_name} powered with PrestaShop™
diff --git a/mails/de/lang.php b/mails/de/lang.php
deleted file mode 100644
index fa8de2637..000000000
--- a/mails/de/lang.php
+++ /dev/null
@@ -1,32 +0,0 @@
-
-
-
-
- Message from {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hallo,
-
-
-
-
-
-
Neue Log-Warnung
-
-
-
-
-
-
Leider wurde eine neue Log-Warnung gespeichert.
-
-
-
-
-
-
Sie können sie einsehen in Ihrem Back Office > Tools > Anmeldung auf Ihrer Website.
-
-
\ No newline at end of file
diff --git a/mails/de/newsletter.txt b/mails/de/newsletter.txt
deleted file mode 100644
index 3cbebf2f5..000000000
--- a/mails/de/newsletter.txt
+++ /dev/null
@@ -1,9 +0,0 @@
-Nachricht von {shop_name}
-
-Nachricht
-
-{message}
-
-
-
-{shop_url} powered by PrestaShop™
diff --git a/mails/de/order_canceled.html b/mails/de/order_canceled.html
deleted file mode 100644
index 4c9662cbb..000000000
--- a/mails/de/order_canceled.html
+++ /dev/null
@@ -1,49 +0,0 @@
-
-
-
-
- Nachricht von {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hallo {firstname} {lastname},
-
-
-
-
-
-
Ihre Bestellung Nr.{id_order}
-
-
-
-
-
-
Ihre Bestellung wurde abgebrochen.
-
-
-
-
-
-
Sie können diese Bestellung ansehen und Ihre Rechnung aus dem Abschnitt "Bestellverlauf" Ihres Kontos downloaden, indem Sie auf unserer Webseite auf "Mein Konto" klicken.
-
-
-
Wenn Sie ein Gast-Konto haben, können Sie Ihre Bestellung im Abschnitt "Bestellverfolgung Gast" auf unserer Webseite verfolgen.
-
-
\ No newline at end of file
diff --git a/mails/de/order_canceled.txt b/mails/de/order_canceled.txt
deleted file mode 100644
index 75bc2eefc..000000000
--- a/mails/de/order_canceled.txt
+++ /dev/null
@@ -1,10 +0,0 @@
-Hallo {firstname} {lastname},
-
-Ihre Bestellung Nr.{id_order}
-
-Ihre Bestellung wurde abgebrochen.
-
-Sie können diese Bestellung ansehen und Ihre Rechnung aus dem Abschnitt "Bestellverlauf" Ihres Kontos downloaden, indem Sie auf unserer Webseite auf "Mein Konto" klicken.
-Wenn Sie ein Gast-Konto haben, können Sie Ihre Bestellung im Abschnitt "Bestellverfolgung Gast" auf unserer Webseite verfolgen.
-
-{shop_name} powered with PrestaShop™
diff --git a/mails/de/order_changed.html b/mails/de/order_changed.html
deleted file mode 100644
index dfd58d8e9..000000000
--- a/mails/de/order_changed.html
+++ /dev/null
@@ -1,49 +0,0 @@
-
-
-
-
- Message from {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hi {firstname} {lastname},
-
-
-
-
-
-
Your order with the reference {order_name} - Order changed
-
-
-
-
-
-
Your order with the reference {order_name} from {shop_name} has been changed by the merchant.
-
-
-
-
-
-
You can review your order and download your invoice from the "Order history" section of your customer account by clicking "My account" on our shop.
-
-
-
If you have a guest account, you can follow your order via the "Guest Tracking" section on our shop.
-
-
\ No newline at end of file
diff --git a/mails/de/order_changed.txt b/mails/de/order_changed.txt
deleted file mode 100644
index c0c41f3d1..000000000
--- a/mails/de/order_changed.txt
+++ /dev/null
@@ -1,11 +0,0 @@
-Hi {firstname} {lastname},
-
-Your order with the reference {order_name} from {shop_name} has been changed by the merchant.
-
-You can review your order and download your invoice from the "Order history" section of your customer account by clicking "My account" on our shop.
-
-If you have guest account, you can follow your order using this link: {guest_tracking_url}
-
-{shop_name} - {shop_url}
-
-{shop_url} powered by PrestaShop™
\ No newline at end of file
diff --git a/mails/de/order_conf.html b/mails/de/order_conf.html
deleted file mode 100644
index 9026ea9a9..000000000
--- a/mails/de/order_conf.html
+++ /dev/null
@@ -1,120 +0,0 @@
-
-
-
-
- Message from {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hallo {firstname} {lastname}, danke für Ihren Einkauf bei {shop_name}.
-
-
-
-
-
-
Details zu Ihrer Bestellung
-
-
-
-
-
-
Bestellung: {order_name} vom {date} Zahlung: {payment}
-
-
-
-
-
-
-
-
-
Artikelnr.
Produkt
Stückpreis
Menge
Gesamtpreis
-
-
{products}
-
-
-
{discounts}
-
-
-
-
Produkte
-
{total_products}
-
-
-
-
Rabatte
-
{total_discounts}
-
-
-
-
Geschenkverpackung
-
{total_wrapping}
-
-
-
-
Versand
-
{total_shipping}
-
-
-
-
Gesamt
-
{total_paid}
-
-
-
-
-
-
-
-
-
-
Versand
-
-
-
-
-
-
Spediteur: {carrier}
-
-
-
-
-
-
-
-
-
Lieferanschrift
Rechnungsanschrift
-
-
{delivery_block_html}
-
{invoice_block_html}
-
-
-
-
-
-
-
-
-
-
Sie können diese Bestellung ansehen und Ihre Rechnung aus dem Abschnitt "Bestellverlauf" Ihres Kontos downloaden, indem Sie auf unserer Webseite auf "Mein Konto" klicken.
-
-
-
Wenn Sie ein Gast-Konto haben, können Sie Ihre Bestellung im Abschnitt "Bestellverfolgung Gast" auf unserer Webseite verfolgen.
-
-
\ No newline at end of file
diff --git a/mails/de/order_conf.txt b/mails/de/order_conf.txt
deleted file mode 100644
index b5e162a30..000000000
--- a/mails/de/order_conf.txt
+++ /dev/null
@@ -1,30 +0,0 @@
-Hallo {firstname} {lastname}, vielen Dank für Ihre Bestellung auf {shop_name}!
-
-Details zur Bestellung
-
- Bestellung: {order_name} vorgenommen am {date}
- Zahlung: {payment}
-
- Produkte: {total_products}
- Rabatte: {total_discounts}
- Versand: {total_shipping}
- Geschenkverpackung: {total_wrapping}
- Insgesamt bezahlt: {total_paid}
-
-
-Versand
-
- Spediteur: {carrier}
-
- Lieferanschrift:
-
- {delivery_block_txt}
-
- Rechnungsanschrift:
-
- {invoice_block_txt}
-
-Sie können diese Bestellung ansehen und Ihre Rechnung aus dem Abschnitt "Bestellverlauf" Ihres Kontos downloaden, indem Sie auf unserer Webseite auf "Mein Konto" klicken.
-Wenn Sie ein Gast-Konto haben, können Sie Ihre Bestellung auf dieser Webseite verfolgen: {guest_tracking_url}
-
-{shop_name} powered with PrestaShop™
diff --git a/mails/de/order_customer_comment.html b/mails/de/order_customer_comment.html
deleted file mode 100644
index 3fd939dc6..000000000
--- a/mails/de/order_customer_comment.html
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
-
- Nachricht von einem Kunden von {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hallo,
-
-
-
-
-
-
Nachricht von {firstname} {lastname} ({email})
-
-
-
-
-
-
Sie haben eine neue Nachricht zur Bestellung Nr. {id_order} erhalten:
-
-
\ No newline at end of file
diff --git a/mails/de/order_return_state.txt b/mails/de/order_return_state.txt
deleted file mode 100644
index 8b11d9b31..000000000
--- a/mails/de/order_return_state.txt
+++ /dev/null
@@ -1,9 +0,0 @@
-Hallo {firstname} {lastname},
-
-Der Verlauf Ihrer Bestellrücksendung Nr. {id_order_return}
-
-Ihre Bestellrücksendung wurde in "{state_order_return}" geändert.
-
-Sie können diese Bestellrücksendung im Abschnitt "Bestellverlauf" Ihres Kontos ansehen, indem Sie auf unserer Webseite auf "Mein Konto" klicken.
-
-{shop_name} powered with PrestaShop™
diff --git a/mails/de/outofstock.html b/mails/de/outofstock.html
deleted file mode 100644
index 0d1f92ae0..000000000
--- a/mails/de/outofstock.html
+++ /dev/null
@@ -1,49 +0,0 @@
-
-
-
-
- Nachricht von {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hallo {firstname} {lastname},
-
-
-
-
-
-
Der Verlauf Ihrer Bestellung Nr.{id_order}
-
-
-
-
-
-
Leider sind ein oder mehrere Artikel aus Ihrer Bestellung Nr. {id_order} derzeit nicht auf Lager. Dies kann zu einer leichten Verzögerung bei Auslieferung führen. Wir entschuldigen uns und versichern Ihnen, dass wir alles dafür tun werden, um dies zu ändern.
-
-
-
-
-
-
Sie können diese Bestellung ansehen und Ihre Rechnung aus dem Abschnitt "Bestellverlauf" Ihres Kontos downloaden, indem Sie auf unserer Webseite auf "Mein Konto" klicken.
-
-
-
Wenn Sie ein Gast-Konto haben, können Sie Ihre Bestellung im Abschnitt "Bestellverfolgung Gast" auf unserer Webseite verfolgen.
-
-
\ No newline at end of file
diff --git a/mails/de/outofstock.txt b/mails/de/outofstock.txt
deleted file mode 100644
index d678b7f65..000000000
--- a/mails/de/outofstock.txt
+++ /dev/null
@@ -1,10 +0,0 @@
-Hallo {firstname} {lastname},
-
-Der Verlauf Ihrer Bestellung Nr.{id_order}
-
-Leider sind ein oder mehrere Artikel aus Ihrer Bestellung Nr. {id_order} derzeit nicht auf Lager. Dies kann zu einer leichten Verzögerung bei Auslieferung führen. Wir entschuldigen uns und versichern Ihnen, dass wir alles dafür tun werden, um dies zu ändern.
-
-Sie können diese Bestellung ansehen und Ihre Rechnung aus dem Abschnitt "Bestellverlauf" Ihres Kontos downloaden, indem Sie auf unserer Webseite auf "Mein Konto" klicken.
-Wenn Sie ein Gast-Konto haben, können Sie Ihre Bestellung im Abschnitt "Bestellverfolgung Gast" auf unserer Webseite verfolgen.
-
-{shop_name} powered with PrestaShop™
diff --git a/mails/de/password.html b/mails/de/password.html
deleted file mode 100644
index 83904f395..000000000
--- a/mails/de/password.html
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
-
-
- Nachricht von {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hallo {firstname} {lastname},
-
-
-
-
-
-
Ihre neuen Login-Details
-
-
-
-
-
-
E-Mail-Adresse: {email} Kennword: {passwd}
-
-
-
-
-
-
Bitte seien Sie vorsichtig bei der gemeinsamen Nutzung dieser Login-Daten mit anderen.
Sie können nun Bestellungen auf unserer Webseite vornehmen: {shop_url}
-
-
\ No newline at end of file
diff --git a/mails/de/password_query.txt b/mails/de/password_query.txt
deleted file mode 100644
index 4b1c7fab4..000000000
--- a/mails/de/password_query.txt
+++ /dev/null
@@ -1,9 +0,0 @@
-Hallo {firstname} {lastname},
-
-Sie haben um Ihre Zugangscodes für {shop_name} gebeten.
-Beachten Sie, dass dieser Vorgang Ihr aktuelles Kennwort ändert.
-
-Wenn Sie dies wirklich wollen, klicken Sie auf den folgenden Link:
-{url}
-
-{shop_name} powered with PrestaShop™
diff --git a/mails/de/payment.html b/mails/de/payment.html
deleted file mode 100644
index f83376680..000000000
--- a/mails/de/payment.html
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
-
-
- Nachricht von {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hallo {firstname} {lastname},
-
-
-
-
-
-
Ihre Bestellung Nr.{id_order} Verlauf
-
-
-
-
-
-
Wir haben Ihre Zahlung dankend erhalten.
-
-
-
-
-
-
Sie können diese Bestellung ansehen und Ihre Rechnung aus dem Abschnitt "Bestellverlauf" Ihres Kontos downloaden, indem Sie auf unserer Webseite auf "Mein Konto" klicken.
-
-
\ No newline at end of file
diff --git a/mails/de/payment.txt b/mails/de/payment.txt
deleted file mode 100644
index d45fd3eba..000000000
--- a/mails/de/payment.txt
+++ /dev/null
@@ -1,9 +0,0 @@
-Hallo {firstname} {lastname},
-
-Ihre Bestellung Nr.{id_order} Verlauf
-
-Wir haben Ihre Zahlung dankend erhalten.
-
-Sie können diese Bestellung ansehen und Ihre Rechnung aus dem Abschnitt "Bestellverlauf" Ihres Kontos downloaden, indem Sie auf unserer Webseite auf "Mein Konto" klicken.
-
-{shop_name} powered with PrestaShop™
diff --git a/mails/de/payment_error.html b/mails/de/payment_error.html
deleted file mode 100644
index 7747ac603..000000000
--- a/mails/de/payment_error.html
+++ /dev/null
@@ -1,55 +0,0 @@
-
-
-
-
- Nachricht von {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hallo {firstname} {lastname},
-
-
-
-
-
-
Der Verlauf Ihrer Bestellung Nr.{id_order}
-
-
-
-
-
-
Es ist ein Problem bei Ihrer Zahlung der Bestellung Nr. {id_order} aufgetreten. Bitte kontaktieren Sie uns so bald wie möglich.
-
-
-
-
-
-
Ihre Bestellung wird nicht versandt, bis wir dieses Problem gelöst haben.
-
-
-
-
-
-
Sie können diese Bestellung ansehen und Ihre Rechnung aus dem Abschnitt "Bestellverlauf"Ihres Kontos downloaden, indem Sie auf unserer Webseite auf "Mein Konto" klicken.
-
-
-
Wenn Sie ein Gast-Konto haben, können Sie Ihre Bestellung im Abschnitt "Bestellverfolgung Gast" auf unserer Webseite verfolgen.
-
-
\ No newline at end of file
diff --git a/mails/de/payment_error.txt b/mails/de/payment_error.txt
deleted file mode 100644
index c711be4d2..000000000
--- a/mails/de/payment_error.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-Hallo {firstname} {lastname},
-
-Der Verlauf Ihrer Bestellung Nr.{id_order}
-
-Es ist ein Problem bei Ihrer Zahlung der Bestellung Nr. {id_order} aufgetreten. Bitte kontaktieren Sie uns so bald wie möglich.
-
-Ihre Bestellung wird nicht versandt, bis wir dieses Problem gelöst haben.
-
-Sie können diese Bestellung ansehen und Ihre Rechnung aus dem Abschnitt "Bestellverlauf"Ihres Kontos downloaden, indem Sie auf unserer Webseite auf "Mein Konto" klicken.
-Wenn Sie ein Gast-Konto haben, können Sie Ihre Bestellung im Abschnitt "Bestellverfolgung Gast" auf unserer Webseite verfolgen.
-
-{shop_name} powered with PrestaShop™
diff --git a/mails/de/preparation.html b/mails/de/preparation.html
deleted file mode 100644
index 4cc4f21f6..000000000
--- a/mails/de/preparation.html
+++ /dev/null
@@ -1,49 +0,0 @@
-
-
-
-
- Nachricht von {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hallo {firstname} {lastname},
-
-
-
-
-
-
Der Verlauf Ihrer Bestellung Nr.{id_order}
-
-
-
-
-
-
Ihre Bestellung befindet sich aktuell in der Bearbeitung.
-
-
-
-
-
-
Sie können diese Bestellung ansehen und Ihre Rechnung aus dem Abschnitt "Bestellverlauf" Ihres Kontos downloaden, indem Sie auf unserer Webseite auf "Mein Konto" klicken.
-
-
-
Wenn Sie ein Gast-Konto haben, können Sie Ihre Bestellung im Abschnitt "Bestellverfolgung Gast" auf unserer Webseite verfolgen.
-
-
\ No newline at end of file
diff --git a/mails/de/preparation.txt b/mails/de/preparation.txt
deleted file mode 100644
index 2ddba792d..000000000
--- a/mails/de/preparation.txt
+++ /dev/null
@@ -1,11 +0,0 @@
-Hallo {firstname} {lastname},
-
-Der Verlauf Ihrer Bestellung Nr.{id_order}
-
-Ihre Bestellung befindet sich aktuell in der Bearbeitung.
-
-Sie können diese Bestellung ansehen und Ihre Rechnung aus dem Abschnitt "Bestellverlauf" Ihres Kontos downloaden, indem Sie auf unserer Webseite auf "Mein Konto" klicken.
-Wenn Sie ein Gast-Konto haben, können Sie Ihre Bestellung im Abschnitt "Bestellverfolgung Gast" auf unserer Webseite verfolgen.
-
-{shop_name} powered with PrestaShop™
-
diff --git a/mails/de/refund.html b/mails/de/refund.html
deleted file mode 100644
index 0259c74cc..000000000
--- a/mails/de/refund.html
+++ /dev/null
@@ -1,49 +0,0 @@
-
-
-
-
- Nachricht von {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hallo {firstname} {lastname},
-
-
-
-
-
-
Der Verlauf Ihrer Bestellung Nr.{id_order}
-
-
-
-
-
-
Ihr Bestellbetrag wurde rückerstattet.
-
-
-
-
-
-
Sie können diese Bestellung ansehen und Ihre Rechnung aus dem Abschnitt "Bestellverlauf" Ihres Kontos downloaden, indem Sie auf unserer Webseite auf "Mein Konto" klicken.
-
-
-
Wenn Sie ein Gast-Konto haben, können Sie Ihre Bestellung im Abschnitt "Bestellverfolgung Gast" auf unserer Webseite verfolgen.
-
-
\ No newline at end of file
diff --git a/mails/de/refund.txt b/mails/de/refund.txt
deleted file mode 100644
index 3057bd4d9..000000000
--- a/mails/de/refund.txt
+++ /dev/null
@@ -1,10 +0,0 @@
-Hallo {firstname} {lastname},
-
-Der Verlauf Ihrer Bestellung Nr.{id_order}
-
-Ihr Bestellbetrag wurde rückerstattet.
-
-Sie können diese Bestellung ansehen und Ihre Rechnung aus dem Abschnitt "Bestellverlauf" Ihres Kontos downloaden, indem Sie auf unserer Webseite auf "Mein Konto" klicken.
-Wenn Sie ein Gast-Konto haben, können Sie Ihre Bestellung im Abschnitt "Bestellverfolgung Gast" auf unserer Webseite verfolgen.
-
-{shop_name} powered with PrestaShop™
diff --git a/mails/de/reply_msg.html b/mails/de/reply_msg.html
deleted file mode 100644
index 3de77ed18..000000000
--- a/mails/de/reply_msg.html
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
- Nachricht von {shop_name}
-
-
-
-
-
-
{reply}
Bitte antworten Sie nicht auf diese Nachricht mit Ihrem E-Mail-Client, wir würden diese Nachricht nicht erhalten. Um zu antworten, verwenden Sie bitte ausschließlich folgenden Link: {link}.
-
-
-
-
-
\ No newline at end of file
diff --git a/mails/de/reply_msg.txt b/mails/de/reply_msg.txt
deleted file mode 100644
index 7419bc2b1..000000000
--- a/mails/de/reply_msg.txt
+++ /dev/null
@@ -1,4 +0,0 @@
-{reply}
-
-Bitte antworten Sie nicht auf diese Nachricht mit Ihrem E-Mail-Client, wir würden diese Nachricht nicht erhalten.
-Um zu antworten, verwenden Sie bitte ausschließlich folgenden Link: {link}.
diff --git a/mails/de/shipped.html b/mails/de/shipped.html
deleted file mode 100644
index 91738bcfb..000000000
--- a/mails/de/shipped.html
+++ /dev/null
@@ -1,49 +0,0 @@
-
-
-
-
- Nachricht von {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hallo {firstname} {lastname},
-
-
-
-
-
-
Der Verlauf Ihrer Bestellung Nr.{id_order}
-
-
-
-
-
-
Ihre Bestellung wurde versendet. Sie erhalten in Kürze eine URL, auf die Sie klicken können, um den Lieferfortschritt Ihrer Sendung zu verfolgen.
-
-
-
-
-
-
Sie können diese Bestellung ansehen und Ihre Rechnung aus dem Abschnitt "Bestellverlauf" Ihres Kontos downloaden, indem Sie auf unserer Webseite auf "Mein Konto" klicken.
-
-
-
Wenn Sie ein Gast-Konto haben, können Sie Ihre Bestellung im Abschnitt "Bestellverfolgung Gast" auf unserer Webseite verfolgen.
-
-
\ No newline at end of file
diff --git a/mails/de/shipped.txt b/mails/de/shipped.txt
deleted file mode 100644
index e23e64f7a..000000000
--- a/mails/de/shipped.txt
+++ /dev/null
@@ -1,11 +0,0 @@
-Hallo {firstname} {lastname},
-
-Der Verlauf Ihrer Bestellung Nr.{id_order}
-
-Ihre Bestellung wurde versendet.
-Sie erhalten in Kürze eine URL, auf die Sie klicken können, um den Lieferfortschritt Ihrer Sendung zu verfolgen.
-
-Sie können diese Bestellung ansehen und Ihre Rechnung aus dem Abschnitt "Bestellverlauf" Ihres Kontos downloaden, indem Sie auf unserer Webseite auf "Mein Konto" klicken.
-Wenn Sie ein Gast-Konto haben, können Sie Ihre Bestellung im Abschnitt "Bestellverfolgung Gast" auf unserer Webseite verfolgen.
-
-{shop_name} powered with PrestaShop™
diff --git a/mails/de/test.html b/mails/de/test.html
deleted file mode 100644
index 4a3758230..000000000
--- a/mails/de/test.html
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
- Testmail
-
-
-
-
-
\ No newline at end of file
diff --git a/mails/de/test.txt b/mails/de/test.txt
deleted file mode 100644
index c87360948..000000000
--- a/mails/de/test.txt
+++ /dev/null
@@ -1,5 +0,0 @@
-Hallo,
-
-dies ist eine Testmail von Ihrem Shop.
-
-powered with PrestaShop™
diff --git a/mails/de/voucher.html b/mails/de/voucher.html
deleted file mode 100644
index b4e914f72..000000000
--- a/mails/de/voucher.html
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
-
-
- Nachricht von {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hallo {firstname} {lastname},
-
-
-
-
-
-
Verlauf Ihrer Bestellung Nr.{id_order}
-
-
-
-
-
-
Damit werden Sie über die Erstellung eines Gutscheins auf Ihrem Namen nach Ihrer Bestellung Nr. informiert.{id_order}.
-
-
-
-
-
-
Hier ist der Code Ihres Gutscheins: {voucher_num}, über einen Betrag von {voucher_amount}. Für Ihre nächste Bestellung müssen Sie diesen Code einfach nur während des Bezahlvorgangs kopieren.
-
-
\ No newline at end of file
diff --git a/mails/de/voucher.txt b/mails/de/voucher.txt
deleted file mode 100644
index bf8d40047..000000000
--- a/mails/de/voucher.txt
+++ /dev/null
@@ -1,11 +0,0 @@
-Hallo {firstname} {lastname},
-
-Verlauf Ihrer Bestellung Nr.{id_order}
-
-Damit werden Sie über die Erstellung eines Gutscheins auf Ihrem Namen nach Ihrer Bestellung Nr. informiert.{id_order}.
-
-Hier ist der Code Ihres Gutscheins: {voucher_num}, über einen Betrag von {voucher_amount}.
-Für Ihre nächste Bestellung müssen Sie diesen Code einfach nur während des Bezahlvorgangs kopieren.
-
-{shop_name} powered with PrestaShop™
-
diff --git a/mails/de/voucher_new.html b/mails/de/voucher_new.html
deleted file mode 100644
index 24090efd2..000000000
--- a/mails/de/voucher_new.html
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
-
- Message from {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hi {firstname} {lastname},
-
-
-
-
-
-
This is to inform you about the creation of a voucher.
-
-
-
-
-
-
Here is the code of your voucher : {voucher_num}. Simply copy/paste this code during the payment process for your next order.
-
-
\ No newline at end of file
diff --git a/mails/de/voucher_new.txt b/mails/de/voucher_new.txt
deleted file mode 100644
index b8324d82d..000000000
--- a/mails/de/voucher_new.txt
+++ /dev/null
@@ -1,14 +0,0 @@
-Hi {firstname} {lastname},
-
-This is to inform you about the creation of a voucher.
-
-Here is the code of your voucher : {voucher_num}.
-
-Simply copy/paste this code during the payment process for your next order.
-
-Thank you for shopping at {shop_name}.
-
-{shop_name} - {shop_url}
-
-
-{shop_url} powered by PrestaShop™
\ No newline at end of file
diff --git a/mails/es/account.html b/mails/es/account.html
deleted file mode 100644
index 3bb255478..000000000
--- a/mails/es/account.html
+++ /dev/null
@@ -1,52 +0,0 @@
-
-
-
-
- Mensaje desde {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hola {firstname} {lastname},
-
-
-
-
-
-
Detalles de tu cuenta
-
-
-
-
-
-
Email: {email} Contraseña: {passwd}
-
-
-
-
-
-
Consejos de Seguridad:
Mantén los datos de tu cuenta en lugar seguro. No des los detalles de tu cuenta a nadie. Cambia tu contraseña regularmente. Si sospechas que alguien esta usando ilegalmente tu cuenta, avísanos inmediatamente.
-
-
-
-
-
-
Ahora podrás guardar y consultar tus pedidos en nuestra web: {shop_name}.
-
-
\ No newline at end of file
diff --git a/mails/es/account.txt b/mails/es/account.txt
deleted file mode 100644
index 142cb2a02..000000000
--- a/mails/es/account.txt
+++ /dev/null
@@ -1,20 +0,0 @@
-Hola {firstname} {lastname},
-
-Gracias por crear tu cuenta en {shop_name}.
-
-Detalles de tu cuenta:
-
-Email: {email}
-Contraseña: {passwd}
-
-Ahora podrás guardar y consultar tus pedidos en nuestra web: {shop_url}
-
-Consejos de Seguridad:
-
-* Mantén los datos de tu cuenta en lugar seguro.
-* No des los detalles de tu cuenta a nadie.
-* Cambia tu contraseña regularmente.
-* Si sospechas que alguien esta usando ilegalmente tu cuenta, avísanos inmediatamente.
-
-
-{shop_url} desarrollado por PrestaShop®
diff --git a/mails/es/backoffice_order.html b/mails/es/backoffice_order.html
deleted file mode 100644
index b5b27abcd..000000000
--- a/mails/es/backoffice_order.html
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
-
- Mensaje de {shop_name}
-
-
-
-
-
\ No newline at end of file
diff --git a/mails/es/bankwire.txt b/mails/es/bankwire.txt
deleted file mode 100644
index 717fb4805..000000000
--- a/mails/es/bankwire.txt
+++ /dev/null
@@ -1,20 +0,0 @@
-Hola {firstname} {lastname},
-
-Tu pedido #{id_order} ha sido recibido correctamente, y será enviado en cuanto recibamos el pago.
-Por favor, recuerda que has seleccionado transferencia bancaria. Envíala a:
-
-{bankwire_owner}
-
-{bankwire_details}
-
-Total Pedido: {total_paid}
-
-Puedes revisar tu pedido y descargar la factura desde tu cuenta de nuestra web en (sección "Historial de Pedidos").
-If you have guest account, you can follow your order at this page: {guest_tracking_url}
-
-Muchas gracias por comprar en {shop_name}.
-
-{shop_name} - {shop_url}
-
-
-{shop_url} powered by PrestaShop®
diff --git a/mails/es/cheque.html b/mails/es/cheque.html
deleted file mode 100644
index b3eaf40f4..000000000
--- a/mails/es/cheque.html
+++ /dev/null
@@ -1,55 +0,0 @@
-
-
-
-
- Mensaje desde {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hola {firstname} {lastname},
-
-
-
-
-
-
Tu pedido es el número #{id_order}
-
-
-
-
-
-
Tu pedido #{id_order} ha sido recibido correctamente, y será enviado en cuanto recibamos el pago.
-
-
-
-
-
-
Por favor, recuerda que ha seleccionado pagar con cheque. Rellénalo con:
-
-
\ No newline at end of file
diff --git a/mails/es/cheque.txt b/mails/es/cheque.txt
deleted file mode 100644
index 336bcd768..000000000
--- a/mails/es/cheque.txt
+++ /dev/null
@@ -1,19 +0,0 @@
-Hola {firstname} {lastname},
-
-Tu pedido #{id_order} ha sido recibido correctamente, y será enviado en cuanto recibamos el pago.
-Por favor, recuerda que ha seleccionado pagar con cheque. Rellénalo con:
-
-- Total {total_paid}
-
-- por el pedido de {cheque_name}
-
-- a {cheque_address}
-
-Puedes revisar tu pedido y descargar la factura desde tu cuenta de nuestra web en (historial de pedidos).
-If you have guest account, you can follow your order at this page: {guest_tracking_url}
-
-Muchas gracias por comprar en {shop_name}.
-
-{shop_name} - {shop_url}
-
-{shop_url} desarrollado por PrestaShop®
diff --git a/mails/es/contact.html b/mails/es/contact.html
deleted file mode 100644
index ded1f8f6b..000000000
--- a/mails/es/contact.html
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
-
- Mensaje desde {shop_name}
-
-
-
-
-
\ No newline at end of file
diff --git a/mails/es/contact.txt b/mails/es/contact.txt
deleted file mode 100644
index 890358954..000000000
--- a/mails/es/contact.txt
+++ /dev/null
@@ -1,11 +0,0 @@
-Has recibido un mensaje de un cliente desde tu tienda: {shop_name}
-
-Detalles del mensaje:
-
-Email: {email}
-
-Mensaje:
-
-{message}
-
-{shop_url} desarrollado por PrestaShop™
\ No newline at end of file
diff --git a/mails/es/contact_form.html b/mails/es/contact_form.html
deleted file mode 100644
index 2e2b2e0e6..000000000
--- a/mails/es/contact_form.html
+++ /dev/null
@@ -1,54 +0,0 @@
-
-
-
-
- Mensaje de {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
SU mensaje se envio correctamente al centro de atención de cliente.
-
-
-
-
-
-
-
-
-
-
Su mensaje se envio correctamente Mensaje: {message}
-
diff --git a/mails/es/credit_slip.txt b/mails/es/credit_slip.txt
deleted file mode 100644
index 06d956138..000000000
--- a/mails/es/credit_slip.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-Hola {firstname} {lastname},
-
-Gracias por comprar en {shop_name}
-
-Le informamos que se ha generado un vale de compra a su favor con la referencia {order_name}.
-
-Puede revisar este vale de compra y descargar la factura desde la sección "Seguimiento de Pedido" de su cuenta pulsando en "Mi cuenta" en nuestra web.
-
-{shop_name} - {shop_url}
-
-
-{shop_url} desarrollado por PrestaShop®
\ No newline at end of file
diff --git a/mails/es/download-product.tpl b/mails/es/download-product.tpl
deleted file mode 100644
index 69dea48ba..000000000
--- a/mails/es/download-product.tpl
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
diff --git a/mails/es/download_product.txt b/mails/es/download_product.txt
deleted file mode 100644
index c3a80f3a6..000000000
--- a/mails/es/download_product.txt
+++ /dev/null
@@ -1,15 +0,0 @@
-Hola {firstname} {lastname},
-
-Gracias por su pedido en {shop_name}!
-
-Tiene {nbProducts} producto(s) para descargar.
-
-Este es el acceso directo:
-{virtualProducts}
-
-Puede revisar este pedido y descargar su factura desde la sección "Seguimiento de Pedido" de su cuenta pulsando en "Mi cuenta" en nuestra web.
-
-Si tiene una cuenta de invitado, puede ver su pedido en esta página: {guest_tracking_url}
-
-
-{shop_url} desarrollado por PrestaShop®
diff --git a/mails/es/employee_password.html b/mails/es/employee_password.html
deleted file mode 100644
index 89313e8ab..000000000
--- a/mails/es/employee_password.html
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
-
- Mensaje desde {shop_name}
-
-
-
-
-
\ No newline at end of file
diff --git a/mails/es/guest_to_customer.txt b/mails/es/guest_to_customer.txt
deleted file mode 100644
index 6a4ff0e89..000000000
--- a/mails/es/guest_to_customer.txt
+++ /dev/null
@@ -1,15 +0,0 @@
- Hola {firstname} {lastname},
-
- Su cuenta se ha transformado en cuenta de cliente
-
- E-mail address: {email}
- Password: {passwd}
-
-
- Puede acceder a su cuenta en nuestro sitio: {shop_url}
-
- Sea cuidadoso en compartir estos detalles con otros.
-
-
-
- {shop_url} powered by PrestaShop™
\ No newline at end of file
diff --git a/mails/es/in_transit.html b/mails/es/in_transit.html
deleted file mode 100644
index 726eb7906..000000000
--- a/mails/es/in_transit.html
+++ /dev/null
@@ -1,55 +0,0 @@
-
-
-
-
- Mensaje desde{shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hola {firstname} {lastname},
-
-
-
-
-
-
Historial del Pedido #{id_order}
-
-
-
-
-
-
Tu pedido está en camino.
-
-
-
-
-
-
Puedes seguir su ubicación actual haciendo clic en este enlace: {followup}
-
-
\ No newline at end of file
diff --git a/mails/es/in_transit.txt b/mails/es/in_transit.txt
deleted file mode 100644
index 24ff17e21..000000000
--- a/mails/es/in_transit.txt
+++ /dev/null
@@ -1,14 +0,0 @@
-Hola {firstname} {lastname},
-
-Tu pedido está en camino.
-Puedes seguir su ubicación actual haciendo clic en este enlace: {followup}
-
-También puedes revisar tus pedidos y descargar tus facturas desde tu "Historial de Pedidos" dentro de tu cuenta.
-If you have guest account, you can follow your order at this page: {guest_tracking_url}
-
-Gracias por comprar en {shop_name}!
-
-{shop_name} - {shop_url}
-
-
-{shop_url} desarrollado por PrestaShop®
\ No newline at end of file
diff --git a/mails/es/lang.php b/mails/es/lang.php
deleted file mode 100644
index fa6e9f370..000000000
--- a/mails/es/lang.php
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
-
- Mensaje de {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hola,
-
-
-
-
-
-
Nueva alerta
-
-
-
-
-
-
Desafortunadamente a recibido un nuevo mensaje de alerta.
-
-
-
-
-
-
Puede verificarlo desde > Herramientas > Log en su Back Office
-
-
\ No newline at end of file
diff --git a/mails/es/order_canceled.txt b/mails/es/order_canceled.txt
deleted file mode 100644
index 888fd157d..000000000
--- a/mails/es/order_canceled.txt
+++ /dev/null
@@ -1,14 +0,0 @@
-Hola {firstname} {lastname},
-
-Respecto al pedido #{id_order}:
-
-Tu pedido ha sido cancelado.
-
-Puedes revisar este pedido y descargar tu factura desde la seccion de "Historial de Pedidos" dentro de tu cuenta en nuestra web.
-If you have guest account, you can follow your order at this page: {guest_tracking_url}
-
-{shop_name} - {shop_url}
-
-
-
-{shop_url} desarrollado por PrestaShop®
diff --git a/mails/es/order_changed.html b/mails/es/order_changed.html
deleted file mode 100644
index 5d89e4c00..000000000
--- a/mails/es/order_changed.html
+++ /dev/null
@@ -1,45 +0,0 @@
-
-
-
-
- Message from {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hola {firstname} {lastname},
-
-
-
-
-
-
Your order with the reference {order_name} - Order changed
-
-
-
-
-
-
Su pedido con la referencia {order_name} de {shop_name} ha sido modificado por el comerciante.
-
-
-
Puede revisar su pedido y descargar su factura desde la sección "Historial de pedidos" de su cuenta de cliente haciendo clic en "Mi cuenta" en nuestra web.
-
-
-
Si tiene una cuenta de invitado, puede revisar su pedido en la sección "Seguimiento de invitado" en nuestra web.
-
diff --git a/mails/es/order_changed.txt b/mails/es/order_changed.txt
deleted file mode 100644
index 74b48e7fb..000000000
--- a/mails/es/order_changed.txt
+++ /dev/null
@@ -1,11 +0,0 @@
-Hola {firstname} {lastname},
-
-Su pedido con la referencia {order_name} de {shop_name} ha sido modificado por el comerciante.
-
-Puede revisar su pedido y descargar su factura desde la sección "Historial de pedidos" de su cuenta de cliente haciendo clic en "Mi cuenta" en nuestra web.
-
-Si tiene una cuenta de invitado, puede revisar su pedido en esta página: {guest_tracking_url}
-
-{shop_name} - {shop_url}
-
-{shop_url} desarrollado por PrestaShop™
\ No newline at end of file
diff --git a/mails/es/order_conf.html b/mails/es/order_conf.html
deleted file mode 100644
index 866d75ad0..000000000
--- a/mails/es/order_conf.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
- Mensaje desde {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hola {firstname} {lastname}, gracias por comprar en {shop_name}.
-
-
-
-
-
-
Detalles del Pedido
-
-
-
-
-
-
Pedido: {order_name} realizado el {date} Forma de Pago: {payment}
-
-
\ No newline at end of file
diff --git a/mails/es/order_conf.txt b/mails/es/order_conf.txt
deleted file mode 100644
index 70364a2d7..000000000
--- a/mails/es/order_conf.txt
+++ /dev/null
@@ -1,29 +0,0 @@
- {firstname} {lastname}, gracias por realizar su pedido en {shop_name}!
-
- Detalles del Pedido
-
- Pedido: {order_name} realizado el {date}
- Forma de Pago: {payment}
-
- Total Productos: {total_products}
- Descuentos: {total_discounts}
- Gastos Envío: {total_shipping}
- Total: {total_paid}
-
-
- Envios
-
- Transporte: {carrier}
-
- Dirección de Entrega:
- {delivery_block_txt}
-
- Direccion de Facturación:
- {invoice_block_txt}
-
- Puedes revisar tu pedido y descargar la factura desde tu cuenta de nuestra web en (historial de pedidos).
- If you have guest account, you can follow your order at this page: {guest_tracking_url}
-
- Gracias por comprar en {shop_name}.
-
- {shop_url} desarrollado por PrestaShop®
diff --git a/mails/es/order_customer_comment.html b/mails/es/order_customer_comment.html
deleted file mode 100644
index 5a78a924d..000000000
--- a/mails/es/order_customer_comment.html
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
-
- Mensaje de un cliente de {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hola,
-
-
-
-
-
-
Mensaje desde {shop_name}
-
-
-
-
-
-
Has recibido un nuevo mensaje sobre el pedido #{id_order}:
-
-
\ No newline at end of file
diff --git a/mails/es/order_return_state.txt b/mails/es/order_return_state.txt
deleted file mode 100644
index 7b0f791d0..000000000
--- a/mails/es/order_return_state.txt
+++ /dev/null
@@ -1,9 +0,0 @@
-Buenos días: {firstname} {lastname},
-
-El estado de tu devolución {id_order_return} a cambiado a "{state_order_return}".
-
-Puedes revisar esta orden de devolución en "Historial y detalles de tus pedidos" de tu cuenta pulsando sobre "Mi cuenta" en nuestro sitio web.
-
-{shop_name} - {shop_url}
-
-{shop_url} desarrollado por PrestaShop®
\ No newline at end of file
diff --git a/mails/es/outofstock.html b/mails/es/outofstock.html
deleted file mode 100644
index 294b86488..000000000
--- a/mails/es/outofstock.html
+++ /dev/null
@@ -1,49 +0,0 @@
-
-
-
-
- Mensaje desde {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hola {firstname} {lastname},
-
-
-
-
-
-
Incidencia en tu pedido #{id_order}
-
-
-
-
-
-
Desgraciadamente, uno o mas productos de tu pedido #{id_order} se encuentran actualmente fuera de stock. Esto puede originar un retraso en el envío. Por favor, acepta nuestras disculpas y puedes estar seguro que trabajeremos lo más rápidamente posible para solucionarlo.
-
-
\ No newline at end of file
diff --git a/mails/es/outofstock.txt b/mails/es/outofstock.txt
deleted file mode 100644
index 66ed4278c..000000000
--- a/mails/es/outofstock.txt
+++ /dev/null
@@ -1,17 +0,0 @@
-Hola {firstname} {lastname},
-
-Incidencia en tu pedido #{id_order}
-
-Desgraciadamente, uno o mas productos de tu pedido #{id_order} se encuentran actualmente fuera de stock.
-Esto puede originar un retraso en el envío. Por favor, acepta nuestras disculpas y puedes estar seguro que trabajaremos lo más rápidamente posible para solucionarlo.
-
-
-
-Puedes revisar tu pedido y descargar la factura desde tu cuenta de nuestra web en (historial de pedidos).
-If you have guest account, you can follow your order at this page: {guest_tracking_url}
-
- {shop_name} - {shop_url}
-
-
-
-{shop_url} desarrollado por PrestaShop®
diff --git a/mails/es/password.html b/mails/es/password.html
deleted file mode 100644
index f9aa05138..000000000
--- a/mails/es/password.html
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
-
-
- Mensaje desde {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hola {firstname} {lastname},
-
-
-
-
-
-
Detalles de tu nuevo Login
-
-
-
-
-
-
Email: {email} Contraseña: {passwd}
-
-
-
-
-
-
Por favor, ten cuidado en no compartir con nadie estos detalles.
Ahora puedes realizar pedidos en nuestra web de: {shop_url}
-
-
\ No newline at end of file
diff --git a/mails/es/password.txt b/mails/es/password.txt
deleted file mode 100644
index 7b8b1e1f4..000000000
--- a/mails/es/password.txt
+++ /dev/null
@@ -1,15 +0,0 @@
-Hola {firstname} {lastname},
-
-Detalles de tu nuevo login:
-
-Email: {email}
-Contraseña: {passwd}
-
-
-Ahora puedes realizar pedidos en nuestra web de: {shop_url}
-
-
-Por favor, ten cuidado en no compartir con nadie estos detalles.
-
-
-{shop_url} desarrollado por PrestaShop®
\ No newline at end of file
diff --git a/mails/es/password_query.html b/mails/es/password_query.html
deleted file mode 100644
index 819a1caf5..000000000
--- a/mails/es/password_query.html
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
-
- Message from {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hola {firstname} {lastname},
-
-
-
-
-
-
You asked to get back your {shop_name}identifiers, Note that this action will change your actual password.
-
-
-
-
-
-
If you really want to do it, click the next link : {url}
-
-
\ No newline at end of file
diff --git a/mails/es/password_query.txt b/mails/es/password_query.txt
deleted file mode 100644
index 352c26666..000000000
--- a/mails/es/password_query.txt
+++ /dev/null
@@ -1,9 +0,0 @@
-Hola {firstname} {lastname},
-
-You asked to get back your {shop_name} access codes.
-Note that this action will change your current password.
-
-If you really want to do it, click the following link :
-{url}
-
-{shop_url} desarrollado por PrestaShop®
diff --git a/mails/es/payment.html b/mails/es/payment.html
deleted file mode 100644
index 899d4b9b2..000000000
--- a/mails/es/payment.html
+++ /dev/null
@@ -1,49 +0,0 @@
-
-
-
-
- Mensaje desde {shop_name}
-
-
-
-
-
\ No newline at end of file
diff --git a/mails/es/payment.txt b/mails/es/payment.txt
deleted file mode 100644
index 610f4c766..000000000
--- a/mails/es/payment.txt
+++ /dev/null
@@ -1,14 +0,0 @@
-Hola {firstname} {lastname},
-
-En referencia a tu pedido #{id_order}:
-
-El pago de tu pedido fue recibido CORRECTAMENTE .
-
-Puedes revisar tu pedido y descargar la factura desde tu cuenta de nuestra web en (historial de pedidos).
-If you have guest account, you can follow your order at this page: {guest_tracking_url}
-
-{shop_name} - {shop_url}
-
-Gracias por comprar en {shop_name}.
-
-{shop_url} desarrollado por PrestaShop®
diff --git a/mails/es/payment_error.html b/mails/es/payment_error.html
deleted file mode 100644
index 8b9444473..000000000
--- a/mails/es/payment_error.html
+++ /dev/null
@@ -1,55 +0,0 @@
-
-
-
-
- Mensaje desde {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hola {firstname} {lastname},
-
-
-
-
-
-
Incidencia en su pedido #{id_order}
-
-
-
-
-
-
Hay un problema con tu pago para el pedido: #{id_order}. Por favor, ponte en contacto con nosotros en cuanto puedas.
-
-
-
-
-
-
Tu pedido no será enviado hasta que resolvamos este problema.
-
-
\ No newline at end of file
diff --git a/mails/es/payment_error.txt b/mails/es/payment_error.txt
deleted file mode 100644
index a6b38315e..000000000
--- a/mails/es/payment_error.txt
+++ /dev/null
@@ -1,16 +0,0 @@
-Hola {firstname} {lastname},
-
-
-Hay un problema con tu pago para el pedido: #{id_order}. Por favor, ponte en contacto con nosotros en cuanto puedas.
-
-Tu pedido no será enviado hasta que resolvamos este problema.
-
-
-Puedes revisar tu pedido y descargar la factura desde tu cuenta de nuestra web en (historial de pedidos).
-If you have guest account, you can follow your order at this page: {guest_tracking_url}
-
-{shop_name} - {shop_url}
-
-
-
-{shop_url} desarrollado por PrestaShop®
diff --git a/mails/es/preparation.html b/mails/es/preparation.html
deleted file mode 100644
index 66ced9016..000000000
--- a/mails/es/preparation.html
+++ /dev/null
@@ -1,49 +0,0 @@
-
-
-
-
- Mensaje desde {shop_name}
-
-
-
-
-
\ No newline at end of file
diff --git a/mails/es/preparation.txt b/mails/es/preparation.txt
deleted file mode 100644
index d333af177..000000000
--- a/mails/es/preparation.txt
+++ /dev/null
@@ -1,13 +0,0 @@
-Hola {firstname} {lastname},
-
-Sobre tu pedido #{id_order}:
-
-Estamos preparando tu pedido.
-
-Puedes revisar tu pedido y descargar la factura desde tu cuenta de nuestra web en (historial de pedidos).
-If you have guest account, you can follow your order at this page: {guest_tracking_url}
-
-{shop_name} - {shop_url}
-
-
-{shop_url} desarrollado por PrestaShop®
diff --git a/mails/es/refund.html b/mails/es/refund.html
deleted file mode 100644
index 11a5832ed..000000000
--- a/mails/es/refund.html
+++ /dev/null
@@ -1,49 +0,0 @@
-
-
-
-
- Mensaje desde {shop_name}
-
-
-
-
-
\ No newline at end of file
diff --git a/mails/es/refund.txt b/mails/es/refund.txt
deleted file mode 100644
index c2a65a2ca..000000000
--- a/mails/es/refund.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-Hola {firstname} {lastname},
-
-Se ha reembolsado el pago de tu pedido.
-
-Puedes revisar tu pedido y descargar la factura desde tu cuenta de nuestra web en (historial de pedidos).
-If you have guest account, you can follow your order at this page: {guest_tracking_url}
-
-{shop_name} - {shop_url}
-
-
-
-{shop_url} desarrollado por PrestaShop®
diff --git a/mails/es/reply_msg.html b/mails/es/reply_msg.html
deleted file mode 100644
index e009b43cf..000000000
--- a/mails/es/reply_msg.html
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
- Mensaje de {shop_name}
-
-
-
-
-
-
{reply}
Por favor no responda este mensaje desde cu cuenta de cliente , no reciviremos su mensaje. Para responder, use este link exclusivo {link}.
-
-
-
-
-
\ No newline at end of file
diff --git a/mails/es/reply_msg.txt b/mails/es/reply_msg.txt
deleted file mode 100644
index 26a027988..000000000
--- a/mails/es/reply_msg.txt
+++ /dev/null
@@ -1,4 +0,0 @@
-{reply}
-
-Please do not reply to this message using your e-mail client, we would not receive your message.
-In order to reply, please use exclusively the following link: {link}
diff --git a/mails/es/shipped.html b/mails/es/shipped.html
deleted file mode 100644
index 403e61a82..000000000
--- a/mails/es/shipped.html
+++ /dev/null
@@ -1,49 +0,0 @@
-
-
-
-
- Mensaje desde {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hola {firstname} {lastname},
-
-
-
-
-
-
Historial de tu Pedido #{id_order}
-
-
-
-
-
-
Tu pedido ha sido enviado. Recibirás pronto una URL para realizar el seguimiento del envío de tu pedido.
-
-
\ No newline at end of file
diff --git a/mails/es/shipped.txt b/mails/es/shipped.txt
deleted file mode 100644
index 7daafc480..000000000
--- a/mails/es/shipped.txt
+++ /dev/null
@@ -1,15 +0,0 @@
-Hola {firstname} {lastname},
-
-Tu pedido acaba de ser enviado.
-Pronto recibirás una URL para realizar el seguimiento de tu pedido.
-
-Puedes revisar este pedido y descargar tu factura en la sección "Historial" dentro de tu cuenta en nuestra web.
-Si tiene una cuenta de invitado, puede seguirla desde la sección : {shop_url}?controller=guest-tracking
-
-Gracias por comprar en {shop_name}!
-
-{shop_name} - {shop_url}
-
-
-
-{shop_url} powered by PrestaShop®
\ No newline at end of file
diff --git a/mails/es/test.html b/mails/es/test.html
deleted file mode 100644
index 464ca1aa9..000000000
--- a/mails/es/test.html
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
- Prueba de Corrreo
-
-
-
-
-
\ No newline at end of file
diff --git a/mails/es/test.txt b/mails/es/test.txt
deleted file mode 100644
index 5680ded11..000000000
--- a/mails/es/test.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-Hola,
-
-Esto es una prueba de correo desde tu tienda Prestashop.
\ No newline at end of file
diff --git a/mails/es/voucher.html b/mails/es/voucher.html
deleted file mode 100644
index b1b44c437..000000000
--- a/mails/es/voucher.html
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
-
-
- Mensaje desde {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hola {firstname} {lastname},
-
-
-
-
-
-
Historial de tu Pedido #{id_order}
-
-
-
-
-
-
Te informamos de la creación de un cupón de descuento para tí como resultado de tu pedido #{id_order}.
-
-
-
-
-
-
Aquí tienes tu código del cupón: {voucher_num}, por la cantidad de {voucher_amount}. Simplemente copia y pega éste código durante el proceso de pago de tu próximo pedido.
-
-
\ No newline at end of file
diff --git a/mails/es/voucher.txt b/mails/es/voucher.txt
deleted file mode 100644
index 7cc229bca..000000000
--- a/mails/es/voucher.txt
+++ /dev/null
@@ -1,14 +0,0 @@
-Hola {firstname} {lastname},
-
-Te informamos de la creación de un vale de descuento para ti como resultado de tu pedido #{id_order}.
-
-Aquí tienes tu código del vale:{voucher_num}, por la cantidad de:{voucher_amount}.
-
-Simplemente copia y pega este código durante el proceso de pago de tu próximo pedido.
-
-Gracias por comprar en {shop_name}.
-
-{shop_name} - {shop_url}
-
-
-{shop_url} desarrollado por PrestaShop®
\ No newline at end of file
diff --git a/mails/es/voucher_new.html b/mails/es/voucher_new.html
deleted file mode 100644
index 623aff121..000000000
--- a/mails/es/voucher_new.html
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
-
- Mensaje de {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hola {firstname} {lastname},
-
-
-
-
-
-
Esto es para informarle acerca de la creacion de un cupon de descuento.
-
-
-
-
-
-
Este es el código del cupon : {voucher_num}. Solo copie/pegue este código durante el proceso de pago de su próxima orden.
-
-
\ No newline at end of file
diff --git a/mails/es/voucher_new.txt b/mails/es/voucher_new.txt
deleted file mode 100644
index bb2015e1b..000000000
--- a/mails/es/voucher_new.txt
+++ /dev/null
@@ -1,13 +0,0 @@
-Hola {firstname} {lastname},
-
-Esto es para informarle acerca de la creacion de un cupon de descuento.
-
-Este es el código del cupon : {voucher_num}.
-Solo copie/pegue este código durante el proceso de pago de su próxima orden.
-
-Gracias por su compra en {shop_name}.
-
-{shop_name} - {shop_url}
-
-
-{shop_url} powered by PrestaShop™
\ No newline at end of file
diff --git a/mails/fr/account.html b/mails/fr/account.html
deleted file mode 100644
index 3ab9163b4..000000000
--- a/mails/fr/account.html
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
-
-
- Message de {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Bonjour {firstname} {lastname},
-
-
-
-
-
-
Merci d'avoir créé un compte sur {shop_name}. Voici un rappel de vos codes d'accès.
-
-
-
-
-
-
Adresse e-mail : {email} Mot de passe : {passwd}
-
-
-
-
-
-
Vous pouvez dès à présent passer commande sur notre site internet {shop_name}.
-
-
\ No newline at end of file
diff --git a/mails/fr/account.txt b/mails/fr/account.txt
deleted file mode 100644
index 553312b3c..000000000
--- a/mails/fr/account.txt
+++ /dev/null
@@ -1,13 +0,0 @@
-Merci d'avoir créé votre compte client sur {shop_name}, vous trouverez dans ce message un rappel de vos codes d'accès.
-
-Vos codes d'accès :
-
-Adresse électronique : {email}
-Mot de passe : {passwd}
-
-Vous pouvez dès à présent passer commande sur notre site Internet :
-{shop_url}
-
-
-
-{shop_url} réalisé par PrestaShop™
\ No newline at end of file
diff --git a/mails/fr/backoffice_order.html b/mails/fr/backoffice_order.html
deleted file mode 100644
index b1887f179..000000000
--- a/mails/fr/backoffice_order.html
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
-
- Message de {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Bonjour {firstname} {lastname},
-
-
-
-
-
-
Une nouvelle commande vous a été générée.
-
-
-
-
-
-
Rendez vous sur {order_link} pour finaliser le paiement.
-
-
\ No newline at end of file
diff --git a/mails/fr/bankwire.txt b/mails/fr/bankwire.txt
deleted file mode 100644
index 05e2239cb..000000000
--- a/mails/fr/bankwire.txt
+++ /dev/null
@@ -1,22 +0,0 @@
-Bonjour {firstname} {lastname},
-
-Nous avons bien enregistré votre commande ayant pour référence {order_name}. Celle-ci vous sera envoyée dès réception de votre paiement.
-Pour rappel, vous avez sélectionné le mode de paiement par virement bancaire et celui-ci est à envoyer à :
-
-{bankwire_owner}
-
-{bankwire_details}
-
-{bankwire_address}
-
-Le montant total est de {total_paid}
-
-Vous pouvez accéder à tout moment au suivi de votre commande et télécharger votre facture dans "Historique des commandes" de la rubrique "Mon compte" sur notre site {shop_url}
-Si vous avez un compte invité, vous pouvez suivre votre commande à cette adresse : {guest_tracking_url}
-
-Merci et à bientôt sur {shop_name}.
-
-{shop_name} - {shop_url}
-
-
-{shop_url} réalisé avec PrestaShop™
\ No newline at end of file
diff --git a/mails/fr/cheque.html b/mails/fr/cheque.html
deleted file mode 100644
index a704184e3..000000000
--- a/mails/fr/cheque.html
+++ /dev/null
@@ -1,55 +0,0 @@
-
-
-
-
- Message de {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Bonjour {firstname} {lastname},
-
-
-
-
-
-
Historique de votre commande ayant pour référence {order_name}.
-
-
-
-
-
-
Nous avons bien enregistré votre commande ayant pour référence {order_name}. Celle-ci vous sera envoyée dès réception de votre paiement.
-
-
-
-
-
-
Pour rappel, vous avez choisi de régler votre commande par chèque, merci de nous transmettre votre règlement :
-
-
\ No newline at end of file
diff --git a/mails/fr/cheque.txt b/mails/fr/cheque.txt
deleted file mode 100644
index 6c5b9492b..000000000
--- a/mails/fr/cheque.txt
+++ /dev/null
@@ -1,21 +0,0 @@
-Bonjour {firstname} {lastname},
-
-Nous avons bien enregistré votre commande ayant pour référence {order_name}.
-Celle-ci vous sera envoyée dès réception de votre paiement.
-
-Pour rappel, vous avez choisi de régler votre commande par chèque, merci de nous transmettre votre règlement :
-
-- d'un montant de {total_paid}
-
-- à l'ordre de {cheque_name}
-
-- à {cheque_address}
-
-Vous pouvez accéder à tout moment au suivi de votre commande et télécharger votre facture dans "Historique des commandes" de la rubrique "Mon compte" sur notre site {shop_url}
-Si vous avez un compte invité, vous pouvez suivre votre commande à cette adresse : {guest_tracking_url}
-
-{shop_name} - {shop_url}
-
-
-
-{shop_url} réalisé avec PrestaShop™
\ No newline at end of file
diff --git a/mails/fr/contact.html b/mails/fr/contact.html
deleted file mode 100644
index 16c59bb95..000000000
--- a/mails/fr/contact.html
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
-
- Message de {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Vous avez reçu un message de la part d'un client depuis votre boutique {shop_name}.
-
-
\ No newline at end of file
diff --git a/mails/fr/contact.txt b/mails/fr/contact.txt
deleted file mode 100644
index 91933d8e8..000000000
--- a/mails/fr/contact.txt
+++ /dev/null
@@ -1,11 +0,0 @@
-Vous avez reçu un message de la part d'un client depuis votre boutique {shop_name}
-
-Informations
-
-Adresse électronique : {email}
-
-Message
-
-{message}
-
-{shop_url} réalisé avec PrestaShop™
\ No newline at end of file
diff --git a/mails/fr/contact_form.html b/mails/fr/contact_form.html
deleted file mode 100644
index 176f242dd..000000000
--- a/mails/fr/contact_form.html
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
-
- Message de {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Votre message a bien été envoyé à notre service client.
-
-
\ No newline at end of file
diff --git a/mails/fr/credit_slip.txt b/mails/fr/credit_slip.txt
deleted file mode 100644
index 78b7cb3aa..000000000
--- a/mails/fr/credit_slip.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-Bonjour {firstname} {lastname},
-
-Nous vous informons de la génération d'un avoir à votre nom relatif à votre commande ayant pour référence {order_name}.
-
-Vous pouvez accéder à cet avoir et télécharger votre facture dans "Historique des commandes" de la rubrique "Mon compte" sur notre site {shop_url}
-
-Merci et à bientôt sur {shop_name}.
-
-{shop_name} - {shop_url}
-
-
-{shop_url} réalisé avec PrestaShop™
\ No newline at end of file
diff --git a/mails/fr/download-product.tpl b/mails/fr/download-product.tpl
deleted file mode 100644
index 69dea48ba..000000000
--- a/mails/fr/download-product.tpl
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/mails/fr/download_product.txt b/mails/fr/download_product.txt
deleted file mode 100644
index 4e3776f8c..000000000
--- a/mails/fr/download_product.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-Bonjour {firstname} {lastname}, merci d'avoir passé commande chez {shop_name} !
-
-Vous avez {nbProducts} produit(s) à télécharger.
-
-Voici les liens directs vers ceux-ci :
-{virtualProducts}
-
-
-Vous pouvez accéder au suivi de votre commande et télécharger votre facture dans "Historique des commandes" de la rubrique "Mon compte" sur notre site.
-Si vous avez un compte invité, vous pouvez suivre votre commande à cette adresse : {guest_tracking_url}?id_order={id_order}
-
-{shop_url} réalisé avec PrestaShop™
\ No newline at end of file
diff --git a/mails/fr/employee_password.html b/mails/fr/employee_password.html
deleted file mode 100644
index ff169e281..000000000
--- a/mails/fr/employee_password.html
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
-
- Message de {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Bonjour {firstname} {lastname},
-
-
-
-
-
-
Voici vos informations personnelles
-
-
-
-
-
-
Prénom : {firstname} Nom : {lastname} Mot de passe : {passwd} Adresse électronique : {email}
-
-
\ No newline at end of file
diff --git a/mails/fr/guest_to_customer.txt b/mails/fr/guest_to_customer.txt
deleted file mode 100644
index eb516c892..000000000
--- a/mails/fr/guest_to_customer.txt
+++ /dev/null
@@ -1,13 +0,0 @@
-Bonjour {firstname} {lastname},
-
-Votre compte invité a été transformé en compte client
-
-Adresse électronique : {email}
-Mot de passe : {passwd}
-
-Vous pouvez accéder à votre compte sur notre site Internet :
-{shop_url}
-
-
-
-{shop_url} réalisé avec PrestaShop™
\ No newline at end of file
diff --git a/mails/fr/in_transit.html b/mails/fr/in_transit.html
deleted file mode 100755
index e36fadccb..000000000
--- a/mails/fr/in_transit.html
+++ /dev/null
@@ -1,55 +0,0 @@
-
-
-
-
- Message de {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Bonjour {firstname} {lastname},
-
-
-
-
-
-
Historique de votre commande ayant pour référence {order_name}
-
-
-
-
-
-
La livraison de votre commande est en cours.
-
-
-
-
-
-
Vous pouvez suivre l'avancement de la livraison à l'adresse suivante : {followup}
-
-
\ No newline at end of file
diff --git a/mails/fr/in_transit.txt b/mails/fr/in_transit.txt
deleted file mode 100755
index 8c4a97649..000000000
--- a/mails/fr/in_transit.txt
+++ /dev/null
@@ -1,14 +0,0 @@
-Bonjour {firstname} {lastname},
-
-La livraison de votre commande est en cours.
-
-Vous pouvez suivre l'avancement de la livraison à l'adresse suivante : {followup}
-
-Vous pouvez accéder à tout moment au suivi de votre commande dans "Historique de mes commandes" de la rubrique "Mon compte" sur notre site.
-Si vous avez un compte invité, vous pouvez suivre votre commande à cette adresse : {guest_tracking_url}
-
-{shop_name} - {shop_url}
-
-
-
-{shop_url} réalisé avec PrestaShop™
\ No newline at end of file
diff --git a/mails/fr/lang.php b/mails/fr/lang.php
deleted file mode 100644
index 668ed4f0b..000000000
--- a/mails/fr/lang.php
+++ /dev/null
@@ -1,38 +0,0 @@
-
-
-
-
- Message de {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Bonjour,
-
-
-
-
-
-
Nouveau message d'alerte enregistré
-
-
-
-
-
-
Malheureusement, un message d'alerte a été enregistré
-
-
-
-
-
-
Vous pouvez voir ce message dans votre Panneau d'administration > Outils > Log
-
-
\ No newline at end of file
diff --git a/mails/fr/order_canceled.txt b/mails/fr/order_canceled.txt
deleted file mode 100644
index 58266794d..000000000
--- a/mails/fr/order_canceled.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-Bonjour {firstname} {lastname},
-
-Votre commande ayant pour référence {order_name} a été annulée.
-
-Vous pouvez accéder à tout moment au suivi de votre commande dans "Historique des commandes" de la rubrique "Mon compte" sur notre site {shop_name}.
-Si vous avez un compte invité, vous pouvez suivre votre commande à cette adresse : {guest_tracking_url}
-
-{shop_name} - {shop_url}
-
-
-
-{shop_url} réalisé avec PrestaShop™
\ No newline at end of file
diff --git a/mails/fr/order_changed.html b/mails/fr/order_changed.html
deleted file mode 100644
index 1762c47ae..000000000
--- a/mails/fr/order_changed.html
+++ /dev/null
@@ -1,49 +0,0 @@
-
-
-
-
- Message de {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Bonjour {firstname} {lastname},
-
-
-
-
-
-
Historique de votre commande ayant pour référence {order_name}
-
-
-
-
-
-
Votre commande a été a été modifiée par le marchand.
-
-
\ No newline at end of file
diff --git a/mails/fr/order_changed.txt b/mails/fr/order_changed.txt
deleted file mode 100644
index c33de15df..000000000
--- a/mails/fr/order_changed.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-Bonjour {firstname} {lastname},
-
-Votre commande ayant pour référence {order_name} a été modifiée par le marchand.
-
-Vous pouvez à tout moment consulter votre commande dans "Historique des commandes" de la rubrique "Mon compte" sur notre site {shop_name}.
-Si vous avez un compte invité, vous pouvez consulter votre commande à cette adresse : {guest_tracking_url}
-
-{shop_name} - {shop_url}
-
-
-
-{shop_url} réalisé avec PrestaShop™
\ No newline at end of file
diff --git a/mails/fr/order_conf.html b/mails/fr/order_conf.html
deleted file mode 100644
index 2b9fd1e73..000000000
--- a/mails/fr/order_conf.html
+++ /dev/null
@@ -1,120 +0,0 @@
-
-
-
-
- Message de {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Bonjour {firstname} {lastname}, merci d'avoir passé commande chez {shop_name} !
-
-
-
-
-
-
Détails de la commande
-
-
-
-
-
-
Commande : {order_name} passée le {date} Mode de paiement : {payment}
-
-
\ No newline at end of file
diff --git a/mails/fr/order_customer_comment.txt b/mails/fr/order_customer_comment.txt
deleted file mode 100644
index 7676db4c5..000000000
--- a/mails/fr/order_customer_comment.txt
+++ /dev/null
@@ -1,8 +0,0 @@
-Bonjour,
-
-Vous avez reçu un nouveau message concernant la commande ayant pour référence {order_name} :
-{message}
-
-
-
-{shop_url} réalisé avec PrestaShop™
\ No newline at end of file
diff --git a/mails/fr/order_merchant_comment.html b/mails/fr/order_merchant_comment.html
deleted file mode 100644
index c873fbc99..000000000
--- a/mails/fr/order_merchant_comment.html
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
-
- Message de {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Bonjour {firstname} {lastname},
-
-
-
-
-
-
Message de {shop_name}
-
-
-
-
-
-
Vous avez reçu un nouveau message concernant la commande ayant pour référence {order_name} :
-
-
\ No newline at end of file
diff --git a/mails/fr/order_merchant_comment.txt b/mails/fr/order_merchant_comment.txt
deleted file mode 100644
index aedd6c697..000000000
--- a/mails/fr/order_merchant_comment.txt
+++ /dev/null
@@ -1,10 +0,0 @@
-Bonjour {firstname} {lastname},
-
-Vous avez reçu un nouveau message concernant la commande ayant pour référence {order_name} :
-{message}
-
-Vous pouvez à tout moment consulter vos anciens messages dans votre suivi de commande.
-
-
-
-{shop_url} réalisé avec PrestaShop™
\ No newline at end of file
diff --git a/mails/fr/order_return_state.html b/mails/fr/order_return_state.html
deleted file mode 100644
index cadd393da..000000000
--- a/mails/fr/order_return_state.html
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
-
-
- Message de {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Bonjour {firstname} {lastname},
-
-
-
-
-
-
Historique de votre bon de retour n°{id_order_return}
-
-
-
-
-
-
Votre bon de retour est passé à l'état "{state_order_return}".
-
-
-
-
-
-
Vous pouvez accéder au suivi de votre bon de retour et télécharger votre facture dans "Historique des commandes" de la rubrique "Mon compte" sur notre site.
-
-
\ No newline at end of file
diff --git a/mails/fr/order_return_state.txt b/mails/fr/order_return_state.txt
deleted file mode 100644
index 29b7a2d0c..000000000
--- a/mails/fr/order_return_state.txt
+++ /dev/null
@@ -1,7 +0,0 @@
-Bonjour {firstname} {lastname},
-
-Votre bon de retour {id_order_return} est passé à l'état "{state_order_return}".
-
-Vous pouvez accéder à tout moment au suivi de votre bon de retour dans "Historique de mes commandes" de la rubrique "Mon compte" sur notre site.
-
-{shop_url} réalisé avec PrestaShop™
\ No newline at end of file
diff --git a/mails/fr/outofstock.html b/mails/fr/outofstock.html
deleted file mode 100644
index 8ef90c557..000000000
--- a/mails/fr/outofstock.html
+++ /dev/null
@@ -1,49 +0,0 @@
-
-
-
-
- Message de {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Bonjour {firstname} {lastname},
-
-
-
-
-
-
Historique de votre commande ayant pour référence {order_name}
-
-
-
-
-
-
Votre commande est bien enregistrée mais nécessite un réapprovisionnement.
-
-
\ No newline at end of file
diff --git a/mails/fr/outofstock.txt b/mails/fr/outofstock.txt
deleted file mode 100644
index 0fcf9662f..000000000
--- a/mails/fr/outofstock.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-Bonjour {firstname} {lastname},
-
-Votre commande ayant pour référence {order_name} est bien enregistrée mais nécessite un réapprovisionnement.
-
-Vous pouvez accéder à tout moment au suivi de votre commande dans la rubrique "Mon compte".
-Si vous avez un compte invité, vous pouvez suivre votre commande à cette adresse : {guest_tracking_url}
-
-{shop_name} - {shop_url}
-
-
-
-{shop_url} réalisé avec PrestaShop™
\ No newline at end of file
diff --git a/mails/fr/password.html b/mails/fr/password.html
deleted file mode 100644
index aaceac08a..000000000
--- a/mails/fr/password.html
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
-
- Message de {shop_name}
-
-
-
-
-
\ No newline at end of file
diff --git a/mails/fr/password.txt b/mails/fr/password.txt
deleted file mode 100644
index 948970976..000000000
--- a/mails/fr/password.txt
+++ /dev/null
@@ -1,11 +0,0 @@
-Comme demandé, nous avons modifié votre mot de passe, voici un rappel de vos codes d'accès.
-
-Adresse électronique : {email}
-Mot de passe : {passwd}
-
-Vous pouvez dès à présent passer commande sur notre site Internet :
-{shop_url}
-
-
-
-{shop_url} réalisé avec PrestaShop™
\ No newline at end of file
diff --git a/mails/fr/password_query.html b/mails/fr/password_query.html
deleted file mode 100644
index 0ef41ea51..000000000
--- a/mails/fr/password_query.html
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
-
- Message de {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Bonjour {firstname} {lastname},
-
-
-
-
-
-
Vous avez demandé à récupérer vos codes d'accès. Cette opération vous attribuera un nouveau mot de passe.
-
-
-
-
-
-
Si vous souhaitez confirmer cette demande, cliquez sur le lien suivant : {url}
-
-
\ No newline at end of file
diff --git a/mails/fr/password_query.txt b/mails/fr/password_query.txt
deleted file mode 100644
index d2b6fac3e..000000000
--- a/mails/fr/password_query.txt
+++ /dev/null
@@ -1,9 +0,0 @@
-Bonjour {firstname} {lastname}
-
-Vous avez demandé à récupérer vos codes d'accès.
-Cette opération vous attribuera un nouveau mot de passe.
-
-Si vous souhaitez confirmer cette demande, cliquez sur le lien suivant :
-{url}
-
-{shop_url} réalisé avec PrestaShop™
\ No newline at end of file
diff --git a/mails/fr/payment.html b/mails/fr/payment.html
deleted file mode 100644
index 20271b528..000000000
--- a/mails/fr/payment.html
+++ /dev/null
@@ -1,49 +0,0 @@
-
-
-
-
- Message de {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Bonjour {firstname} {lastname},
-
-
-
-
-
-
Historique de votre commande ayant pour référence {order_name}
-
-
\ No newline at end of file
diff --git a/mails/fr/payment.txt b/mails/fr/payment.txt
deleted file mode 100644
index 2be608dd6..000000000
--- a/mails/fr/payment.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-Bonjour {firstname} {lastname},
-
-Le paiement pour votre commande ayant pour référence {order_name} a été accepté.
-
-Vous pouvez accéder à tout moment au suivi de votre commande dans "Historique des commandes" de la rubrique "Mon compte" sur notre site.
-Si vous avez un compte invité, vous pouvez suivre votre commande à cette adresse : {guest_tracking_url}
-
-{shop_name} - {shop_url}
-
-
-
-{shop_url} réalisé avec PrestaShop™
\ No newline at end of file
diff --git a/mails/fr/payment_error.html b/mails/fr/payment_error.html
deleted file mode 100644
index ea4b481e4..000000000
--- a/mails/fr/payment_error.html
+++ /dev/null
@@ -1,49 +0,0 @@
-
-
-
-
- Message de {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Bonjour {firstname} {lastname},
-
-
-
-
-
-
Historique de votre commande ayant pour référence {order_name}
-
-
-
-
-
-
Un problème a été constaté pour le paiement de votre commande.
-
-
\ No newline at end of file
diff --git a/mails/fr/payment_error.txt b/mails/fr/payment_error.txt
deleted file mode 100644
index af94d69bb..000000000
--- a/mails/fr/payment_error.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-Bonjour {firstname} {lastname},
-
-Un problème a été constaté pour le paiement de votre commande ayant pour référence {order_name}.
-
-Vous pouvez à tout moment accéder au suivi de votre commande dans la rubrique "Mon compte" du site.
-Si vous avez un compte invité, vous pouvez suivre votre commande à cette adresse : {guest_tracking_url}
-
-{shop_name} - {shop_url}
-
-
-
-{shop_url} réalisé avec PrestaShop™
\ No newline at end of file
diff --git a/mails/fr/preparation.html b/mails/fr/preparation.html
deleted file mode 100644
index ba559f087..000000000
--- a/mails/fr/preparation.html
+++ /dev/null
@@ -1,49 +0,0 @@
-
-
-
-
- Message de {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Bonjour {firstname} {lastname},
-
-
-
-
-
-
Historique de votre commande ayant pour référence {order_name}
-
-
-
-
-
-
Votre commande a été validée et est en cours de préparation.
-
-
\ No newline at end of file
diff --git a/mails/fr/preparation.txt b/mails/fr/preparation.txt
deleted file mode 100644
index 96a918b51..000000000
--- a/mails/fr/preparation.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-Bonjour {firstname} {lastname},
-
-Votre commande ayant pour référence {order_name} est en cours de préparation.
-
-Vous pouvez accéder à tout moment au suivi de votre commande dans "Historique de mes commandes" de la rubrique "Mon compte" sur notre site.
-Si vous avez un compte invité, vous pouvez suivre votre commande à cette adresse : {guest_tracking_url}
-
-{shop_name} - {shop_url}
-
-
-
-{shop_url} réalisé avec PrestaShop™
\ No newline at end of file
diff --git a/mails/fr/refund.html b/mails/fr/refund.html
deleted file mode 100644
index b71a85600..000000000
--- a/mails/fr/refund.html
+++ /dev/null
@@ -1,49 +0,0 @@
-
-
-
-
- Message de {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Bonjour {firstname} {lastname},
-
-
-
-
-
-
Historique de votre commande ayant pour référence {order_name}
-
-
\ No newline at end of file
diff --git a/mails/fr/refund.txt b/mails/fr/refund.txt
deleted file mode 100644
index e25f68818..000000000
--- a/mails/fr/refund.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-Bonjour {firstname} {lastname},
-
-Votre commande ayant pour référence {order_name} vous a bien été remboursée.
-
-Vous pouvez accéder à tout moment au suivi de votre commande dans la rubrique "Mon compte" du site.
-Si vous avez un compte invité, vous pouvez suivre votre commande à cette adresse : {guest_tracking_url}
-
-{shop_name} - {shop_url}
-
-
-
-{shop_url} réalisé avec PrestaShop™
\ No newline at end of file
diff --git a/mails/fr/reply_msg.html b/mails/fr/reply_msg.html
deleted file mode 100644
index e435dc098..000000000
--- a/mails/fr/reply_msg.html
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
- Message de {shop_name}
-
-
-
-
-
-
{reply}
Attention, vous ne devez pas répondre à ce message en utilisant votre logiciel de messagerie, nous ne recevrons pas votre message. Pour répondre, merci d'utiliser exclusivement le lien suivant : {link}
-
-
-
-
-
\ No newline at end of file
diff --git a/mails/fr/reply_msg.txt b/mails/fr/reply_msg.txt
deleted file mode 100644
index d11de09f8..000000000
--- a/mails/fr/reply_msg.txt
+++ /dev/null
@@ -1,4 +0,0 @@
-{reply}
-
-Attention, vous ne devez pas répondre à ce message en utilisant votre logiciel de messagerie, nous ne recevrons pas votre message.
-Pour répondre, merci d'utiliser exclusivement le lien suivant : {link}
diff --git a/mails/fr/shipped.html b/mails/fr/shipped.html
deleted file mode 100644
index 7afdbbb5d..000000000
--- a/mails/fr/shipped.html
+++ /dev/null
@@ -1,49 +0,0 @@
-
-
-
-
- Message de {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Bonjour {firstname} {lastname},
-
-
-
-
-
-
Historique de votre commande ayant pour référence {order_name}
-
-
-
-
-
-
Votre commande vient d'être expédiée. Vous recevrez prochainement un lien vous permettant le suivi de votre colis.
-
-
\ No newline at end of file
diff --git a/mails/fr/shipped.txt b/mails/fr/shipped.txt
deleted file mode 100644
index 2d68cf283..000000000
--- a/mails/fr/shipped.txt
+++ /dev/null
@@ -1,14 +0,0 @@
-Bonjour {firstname} {lastname},
-
-Votre commande ayant pour référence {order_name} vient d'être expédiée.
-
-Vous recevrez prochainement un lien vous permettant le suivi de votre colis.
-
-Vous pouvez accéder à tout moment au suivi de votre commande dans "Historique de mes commandes" de la rubrique "Mon compte" sur notre site.
-Si vous avez un compte invité, vous pouvez suivre votre commande à cette adresse: {guest_tracking_url}
-
-{shop_name} - {shop_url}
-
-
-
-{shop_url} réalisé avec PrestaShop™
\ No newline at end of file
diff --git a/mails/fr/test.html b/mails/fr/test.html
deleted file mode 100644
index 131e0419b..000000000
--- a/mails/fr/test.html
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
- Mail de test
-
-
-
-
-
\ No newline at end of file
diff --git a/mails/fr/test.txt b/mails/fr/test.txt
deleted file mode 100644
index b620f3e3d..000000000
--- a/mails/fr/test.txt
+++ /dev/null
@@ -1,3 +0,0 @@
- Bonjour,
-
- Voici un mail de test de votre boutique PrestaShop™.
\ No newline at end of file
diff --git a/mails/fr/voucher.html b/mails/fr/voucher.html
deleted file mode 100644
index 115721db8..000000000
--- a/mails/fr/voucher.html
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
-
-
- Message de {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Bonjour {firstname} {lastname},
-
-
-
-
-
-
Historique de votre commande ayant pour référence {order_name}
-
-
-
-
-
-
Nous vous informons de la génération d'un bon de réduction à votre nom relatif à votre commande ayant pour référence {order_name}.
-
-
-
-
-
-
Voici le numéro de votre bon de réduction : {voucher_num}, d'un montant total de {voucher_amount}. Copiez-collez ce numéro dans le panier de votre prochain achat avant de régler la commande.
-
-
\ No newline at end of file
diff --git a/mails/fr/voucher.txt b/mails/fr/voucher.txt
deleted file mode 100644
index eee05f9f6..000000000
--- a/mails/fr/voucher.txt
+++ /dev/null
@@ -1,13 +0,0 @@
-Bonjour {firstname} {lastname},
-
-Nous vous informons de la génération d'un bon de réduction à votre nom relatif à votre commande ayant pour référence {order_name}.
-
-Voici le numéro de votre bon de réduction : {voucher_num}, d'un montant total de {voucher_amount}.
-Copiez-collez ce numéro dans le panier de votre prochain achat avant de régler la commande.
-
-Merci et à bientôt sur {shop_name}.
-
-{shop_name} - {shop_url}
-
-
-{shop_url} réalisé avec PrestaShop™
\ No newline at end of file
diff --git a/mails/fr/voucher_new.html b/mails/fr/voucher_new.html
deleted file mode 100644
index 40a882284..000000000
--- a/mails/fr/voucher_new.html
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
-
- Message de {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Bonjour {firstname} {lastname},
-
-
-
-
-
-
Nous vous informons de la génération d'un bon de réduction.
-
-
-
-
-
-
Voici le numéro de votre bon de réduction : {voucher_num}. Copiez-collez ce numéro dans le panier de votre prochain achat avant de régler la commande.
-
-
\ No newline at end of file
diff --git a/mails/fr/voucher_new.txt b/mails/fr/voucher_new.txt
deleted file mode 100644
index 0781a7cb2..000000000
--- a/mails/fr/voucher_new.txt
+++ /dev/null
@@ -1,13 +0,0 @@
-Bonjour {firstname} {lastname},
-
-Nous vous informons de la génération d'un bon de réduction.
-
-Voici le numéro de votre bon de réduction : {voucher_num}.
-Copiez-collez ce numéro dans le panier de votre prochain achat avant de régler la commande.
-
-Merci et à bientôt sur {shop_name}.
-
-{shop_name} - {shop_url}
-
-
-{shop_url} réalisé avec PrestaShop™
\ No newline at end of file
diff --git a/mails/it/account.html b/mails/it/account.html
deleted file mode 100644
index 045423f83..000000000
--- a/mails/it/account.html
+++ /dev/null
@@ -1,53 +0,0 @@
-
-
-
-
- Messaggio da {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Salve {firstname} {lastname},
-
-
-
-
-
-
I tuoi dati di login dell'account
-
-
-
-
-
-
Indirizzo e-mail: {email} Password: {passwd}
-
-
-
-
-
-
Consigli di sicurezza:
Tieni al sicuro i dati del tuo account. Non far sapere a nessuno i tuoi dati di login. Cambia regolarmente la tua password. Se sospetti che qualcuno stia utilizzando illegalmente il tuoaccount, avvertici immediatamente.
-
-
-
-
-
-
Adesso puoi effettuare ordini nel nostro sito web: {shop_name}.
-
-
-
\ No newline at end of file
diff --git a/mails/it/account.txt b/mails/it/account.txt
deleted file mode 100644
index cadcb54f6..000000000
--- a/mails/it/account.txt
+++ /dev/null
@@ -1,20 +0,0 @@
-Salve {firstname} {lastname},
-
-Grazie di aver creato un account con {shop_name}.
-
-I tuoi dati di login dell'account:
-
-Indirizzo e-mail: {email}
-Password: {passwd}
-
-Adesso puoi effettuare ordini nel nostro sito web: {shop_url}
-
-Consigli di sicurezza:
-
-* Tieni al sicuro i dati del tuo account.
-* Non far sapere a nessuno i tuoi dati di login.
-* Cambia regolarmente la tua password.
-* Se sospetti che qualcuno stia utilizzando illegalmente il tuo account, avvertici immediatamente.
-
-
-{shop_url} powered by PrestaShop™
\ No newline at end of file
diff --git a/mails/it/backoffice_order.html b/mails/it/backoffice_order.html
deleted file mode 100644
index ad5b4a9f5..000000000
--- a/mails/it/backoffice_order.html
+++ /dev/null
@@ -1,41 +0,0 @@
-
-
-
-
- Message from {shop_name}
-
-
-
-
-
-
\ No newline at end of file
diff --git a/mails/it/bankwire.txt b/mails/it/bankwire.txt
deleted file mode 100644
index 3f30870e7..000000000
--- a/mails/it/bankwire.txt
+++ /dev/null
@@ -1,23 +0,0 @@
-Salve {firstname} {lastname},
-
-Il tuo ordine n.{id_order} è stato eseguito con successo, e sarà inviato appena ricevuto il pagamento.
-
-Ricorda che hai scelto di pagare con bonifico bancario. Invia il pagamento a:
-
-{bankwire_owner}
-
-{bankwire_details}
-
-{bankwire_address}
-
-Importo totale dell'ordine {total_paid}
-
-Puoi rivedere l'ordine e scaricare la fattura dalla sezione "Cronologia ordini" del tuo account cliccando su "Il mio account" nel nostro sito web.
-Se hai un account ospite, puoi seguire il tuo ordine in questa pagina: {guest_tracking_url}
-
-Grazie di aver acquistato con {shop_name}.
-
-{shop_name} - {shop_url}
-
-
-{shop_url} powered by PrestaShop™
\ No newline at end of file
diff --git a/mails/it/cheque.html b/mails/it/cheque.html
deleted file mode 100644
index 40089dd19..000000000
--- a/mails/it/cheque.html
+++ /dev/null
@@ -1,56 +0,0 @@
-
-
-
-
- Messaggio da {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Salve {firstname} {lastname},
-
-
-
-
-
-
La cronologia del tuo ordine {order_name}
-
-
-
-
-
-
Il tuo ordine è stato eseguito con successo, e sarà inviato appena ricevuto il pagamento.
-
-
-
-
-
-
Ricorda che hai scelto di pagare con assegno. Invia il pagamento:
- dell'importo di {total_paid}
- pagabile all'ordine di {cheque_name}
- inviato a {cheque_address_html}
-
-
-
-
-
-
Puoi rivedere l'ordine e scaricare la fattura dalla sezione"Cronologia ordine" del tuo account cliccando su "Il mio account" nel nostro sito web.
-
-
-
Se hai un account ospite, puoi seguire il tuo ordine nella sezione "Controllo ordine ospite" del nostro sito web.
-
-
-
\ No newline at end of file
diff --git a/mails/it/cheque.txt b/mails/it/cheque.txt
deleted file mode 100644
index d4270e924..000000000
--- a/mails/it/cheque.txt
+++ /dev/null
@@ -1,22 +0,0 @@
-Salve {firstname} {lastname},
-
-Il tuo ordine {order_name} è stato eseguito con successo, e sarà inviato appena ricevuto il pagamento.
-
-Ricorda che hai scelto di pagare con assegno. Invia il pagamento:
-
-- dell'importo di {total_paid}
-
-- pagabile all'ordine di {cheque_name}
-
-- inviato a {cheque_address}
-
-Puoi rivedere l'ordine e scaricare la fattura dalla sezione "Cronologia ordini" del tuo account cliccando su "Il mio account" nel nostro sito web.
-Se hai un account ospite, puoi seguire il tuo ordine in questa pagina: {guest_tracking_url}
-
-Grazie di aver acquistato con {shop_name}.
-
-
-{shop_name} - {shop_url}
-
-
-{shop_url} powered by PrestaShop™
\ No newline at end of file
diff --git a/mails/it/contact.html b/mails/it/contact.html
deleted file mode 100644
index 14afec848..000000000
--- a/mails/it/contact.html
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
-
- Messaggio da {shop_name}
-
-
-
-
-
-
\ No newline at end of file
diff --git a/mails/it/contact.txt b/mails/it/contact.txt
deleted file mode 100644
index e25c90dd4..000000000
--- a/mails/it/contact.txt
+++ /dev/null
@@ -1,11 +0,0 @@
-Hai ricevuto un messaggio da un cliente tramite il tuo negozio: {shop_name}
-
-Dettagli del messaggio:
-
-Indirizzo e-mail: {email}
-
-Messaggio:
-
-{message}
-
-{shop_url} powered by PrestaShop™
\ No newline at end of file
diff --git a/mails/it/contact_form.html b/mails/it/contact_form.html
deleted file mode 100644
index 2e863d553..000000000
--- a/mails/it/contact_form.html
+++ /dev/null
@@ -1,41 +0,0 @@
-
-
-
-
- Messaggio da {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Il tuo messaggio è stato correttamente inviato al nostro Servizio Clienti.
-
-
-
\ No newline at end of file
diff --git a/mails/it/contact_form.txt b/mails/it/contact_form.txt
deleted file mode 100644
index f88be8d4b..000000000
--- a/mails/it/contact_form.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-Il tuo messaggio è stato correttamente inviato al nostro Servizio Clienti.
-
-Il tuo messaggio:
-
-{message}
-
-
-Risponderemo quanto prima.
-
-Cordialmente,
-
-{shop_url} powered by PrestaShop™
\ No newline at end of file
diff --git a/mails/it/credit_slip.html b/mails/it/credit_slip.html
deleted file mode 100644
index 62184a1d8..000000000
--- a/mails/it/credit_slip.html
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-
-
- Messaggio da {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Salve {firstname} {lastname},
-
-
-
-
-
-
La cronologia del tuo ordine n.{id_order}
-
-
-
-
-
-
Vogliamo informarti della creazione di una nota di credito a tuo nome dell'ordine n.{id_order}.
-
-
-
-
-
-
Puoi rivedere questa nota di credito e scaricare la fattura dalla sezione "Controllo ordini"del tuo account cliccando su "Il mio account" nel nostro sito web.
-
-
-
\ No newline at end of file
diff --git a/mails/it/credit_slip.txt b/mails/it/credit_slip.txt
deleted file mode 100644
index 29dc1719f..000000000
--- a/mails/it/credit_slip.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-Salve {firstname} {lastname},
-
-Vogliamo informarti della creazione di una nota di credito a tuo nome dell'ordine n.{id_order}.
-
-Puoi rivedere questa nota di credito e scaricare la fattura dalla sezione "Controllo ordini" del tuo account cliccando su "Il mio account" nel nostro sito web.
-
-Grazie di aver acquistato con {shop_name}.
-
-{shop_name} - {shop_url}
-
-
-{shop_url} powered by PrestaShop™
\ No newline at end of file
diff --git a/mails/it/download-product.tpl b/mails/it/download-product.tpl
deleted file mode 100644
index 69dea48ba..000000000
--- a/mails/it/download-product.tpl
+++ /dev/null
@@ -1,13 +0,0 @@
-
\ No newline at end of file
diff --git a/mails/it/download_product.html b/mails/it/download_product.html
deleted file mode 100644
index 61e2ade31..000000000
--- a/mails/it/download_product.html
+++ /dev/null
@@ -1,56 +0,0 @@
-
-
-
-
- Messaggio da {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Salve {firstname} {lastname}, grazie di aver acquistato con {shop_name}.
-
-
-
-
-
-
Prodotto/i da scaricare
-
-
-
-
-
-
Hai {nbProducts} prodotto/i da scaricare.
-
-
-
-
-
-
Qui di seguito trovarai i link per questi prodotti: {virtualProducts}
-
-
-
-
-
-
Puoi rivedere questo ordine e scaricare la fattura dalla sezione "Cronologia ordine" del tuo account cliccando su "Il mio account" nel nostro sito web.
-
-
-
Se hai un account ospite, puoi seguire il tuo ordine nella sezione "Controllo ordini ospite"del nostro sito web.
-
-
-
\ No newline at end of file
diff --git a/mails/it/download_product.txt b/mails/it/download_product.txt
deleted file mode 100644
index 0d7b2a449..000000000
--- a/mails/it/download_product.txt
+++ /dev/null
@@ -1,11 +0,0 @@
-{firstname} {lastname}, grazie del tuo ordine su {shop_name}!
-
-Hai {nbProducts} prodotto/i da scaricare.
-
-Qui di seguito troverai i link per questi prodotti:
-{virtualProducts}
-
-Puoi rivedere questo ordine e scaricare la fattura dalla sezione "Cronologia ordini" del tuo account cliccando su "Il mio account" nel nostro sito web.
-Se hai un account ospite, puoi seguire il tuo ordine in questa pagina: {guest_tracking_url}
-
-{shop_url} powered by PrestaShop™
\ No newline at end of file
diff --git a/mails/it/employee_password.html b/mails/it/employee_password.html
deleted file mode 100644
index cf689220f..000000000
--- a/mails/it/employee_password.html
+++ /dev/null
@@ -1,41 +0,0 @@
-
-
-
-
- Messaggio da {shop_name}
-
-
-
-
-
-
\ No newline at end of file
diff --git a/mails/it/guest_to_customer.txt b/mails/it/guest_to_customer.txt
deleted file mode 100644
index 1def939df..000000000
--- a/mails/it/guest_to_customer.txt
+++ /dev/null
@@ -1,15 +0,0 @@
- Salve {firstname} {lastname},
-
- Il tuo account ospite è stato trasformato in account cliente:
-
- Indirizzo e-mail: {email}
- Password: {passwd}
-
-
- Puoi accedere al tuo account nel nostro sito web: {shop_url}
-
- Fai attenzione a non condividere con altri i tuoi dati di login.
-
-
-
- {shop_url} powered by PrestaShop™
\ No newline at end of file
diff --git a/mails/it/in_transit.html b/mails/it/in_transit.html
deleted file mode 100644
index 0f9b585cd..000000000
--- a/mails/it/in_transit.html
+++ /dev/null
@@ -1,56 +0,0 @@
-
-
-
-
- Messaggio da {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Salve {firstname} {lastname},
-
-
-
-
-
-
La cronologia del tuo ordine n.{id_order}
-
-
-
-
-
-
Il tuo ordine è attualmente in viaggio.
-
-
-
-
-
-
Puoi controllare la posizione del tuo pacco cliccando nel link seguente: {followup}
-
-
-
-
-
-
Puoi rivedere questo ordine e scaricare la fattura dalla sezione "Cronologia ordine" del tuo account cliccando su "Il mio account" nel nostro sito web.
-
-
-
Se hai un account ospite, puoi seguire il tuo ordine nella sezione "Controllo ordini ospite" del nostro sito web.
-
-
-
\ No newline at end of file
diff --git a/mails/it/in_transit.txt b/mails/it/in_transit.txt
deleted file mode 100644
index 4af38990a..000000000
--- a/mails/it/in_transit.txt
+++ /dev/null
@@ -1,16 +0,0 @@
-Salve {firstname} {lastname},
-
-Il tuo ordine è attualmente in viaggio.
-
-Puoi controllare la posizione del tuo pacco cliccando nel link seguente: {followup}
-
-Puoi anche rivedere questo ordine e scaricare la tua fattura dalla sezione "Cronologia ordine" del tuo account cliccando su "Il mio account" nel nostro sito web.
-Se hai un account ospite, puoi seguire l'ordine in questa pagina: {guest_tracking_url}
-
-Grazie per aver acquistato con {shop_name}!
-
-{shop_name} - {shop_url}
-
-
-
-{shop_url} powered by PrestaShop™
\ No newline at end of file
diff --git a/mails/it/lang.php b/mails/it/lang.php
deleted file mode 100644
index 754a05763..000000000
--- a/mails/it/lang.php
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
-
- Messaggio da {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Salve,
-
-
-
-
-
-
Nuovo messaggio di avviso
-
-
-
-
-
-
Purtroppo è stato registrato un nuovo messaggio di avviso.
-
-
-
-
-
-
Puoi controllarlo nel tuo Back office > Strumenti> Log del nostro sito.
-
-
-
\ No newline at end of file
diff --git a/mails/it/newsletter.txt b/mails/it/newsletter.txt
deleted file mode 100644
index a43a26877..000000000
--- a/mails/it/newsletter.txt
+++ /dev/null
@@ -1,9 +0,0 @@
-Newsletter da {shop_name}
-
-Messaggio
-
-{message}
-
-
-
-{shop_url} powered by PrestaShop™
\ No newline at end of file
diff --git a/mails/it/order_canceled.html b/mails/it/order_canceled.html
deleted file mode 100644
index b51d53c44..000000000
--- a/mails/it/order_canceled.html
+++ /dev/null
@@ -1,50 +0,0 @@
-
-
-
-
- Messaggio da {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Salve {firstname} {lastname},
-
-
-
-
-
-
Riguardo al tuo ordine n.{id_order}
-
-
-
-
-
-
Il tuo ordine è stato cancellato.
-
-
-
-
-
-
Puoi rivedere questo ordine e scaricare la fattura dalla sezione "Cronologia ordine" del tuo account cliccando su "Il mio account" nel nostro sito web.
-
-
-
Se hai un account ospite, puoi seguire il tuo ordine nella sezione "Controllo ordini ospite" nel nostro sito web.
-
-
-
\ No newline at end of file
diff --git a/mails/it/order_canceled.txt b/mails/it/order_canceled.txt
deleted file mode 100644
index b1f9b647c..000000000
--- a/mails/it/order_canceled.txt
+++ /dev/null
@@ -1,14 +0,0 @@
-Salve {firstname} {lastname},
-
-Riguardo al tuo ordine n.{id_order}:
-
-Il tuo ordine è stato cancellato.
-
-Puoi rivedere questo ordine e scaricare la tua fattura dalla sezione "Cronologia ordine" del tuo account cliccando su "Il mio account" nel nostro sito web.
-Se hai un account ospite, puoi seguire l'ordine in questa pagina: {guest_tracking_url}
-
-{shop_name} - {shop_url}
-
-
-
-{shop_url} powered by PrestaShop™
\ No newline at end of file
diff --git a/mails/it/order_changed.html b/mails/it/order_changed.html
deleted file mode 100644
index 6dda627ca..000000000
--- a/mails/it/order_changed.html
+++ /dev/null
@@ -1,50 +0,0 @@
-
-
-
-
- Message from {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hi {firstname} {lastname},
-
-
-
-
-
-
Your order with the reference {order_name} - Order changed
-
-
-
-
-
-
Your order with the reference {order_name} from {shop_name} has been changed by the merchant.
-
-
-
-
-
-
You can review your order and download your invoice from the "Order history" section of your customer account by clicking "My account" on our shop.
-
-
-
If you have a guest account, you can follow your order via the "Guest Tracking" section on our shop.
-
-
-
\ No newline at end of file
diff --git a/mails/it/order_changed.txt b/mails/it/order_changed.txt
deleted file mode 100644
index 3e460a8d3..000000000
--- a/mails/it/order_changed.txt
+++ /dev/null
@@ -1,11 +0,0 @@
-Hi {firstname} {lastname},
-
-Your order with the reference {order_name} from {shop_name} has been changed by the merchant.
-
-You can review your order and download your invoice from the "Order history" section of your customer account by clicking "My account" on our shop.
-
-If you have guest account, you can follow your order using this link: {shop_url}?controller=guest-tracking
-
-{shop_name} - {shop_url}
-
-{shop_url} powered by PrestaShop™
\ No newline at end of file
diff --git a/mails/it/order_conf.html b/mails/it/order_conf.html
deleted file mode 100644
index 1ee5ea498..000000000
--- a/mails/it/order_conf.html
+++ /dev/null
@@ -1,121 +0,0 @@
-
-
-
-
- Messaggio da {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Salve {firstname} {lastname}, grazie di aver acquistato con {shop_name}.
-
-
-
-
-
-
Dati dell'ordine
-
-
-
-
-
-
Ordine: {order_name} effettuato il {date} Pagamento: {payment}
-
-
-
-
-
-
-
-
-
Riferimento
Prodotto
Prezzo unitario
Quantità
Prezzo totale
-
-
{products}
-
-
-
{discounts}
-
-
-
-
Prodotti
-
{total_products}
-
-
-
-
Sconti
-
{total_discounts}
-
-
-
-
Carta regalo
-
{total_wrapping}
-
-
-
-
Spedizione
-
{total_shipping}
-
-
-
-
Totale pagato
-
{total_paid}
-
-
-
-
-
-
-
-
-
-
Spedizione
-
-
-
-
-
-
Mezzo di spedizione: {carrier}
-
-
-
-
-
-
-
-
-
INDIRIZZO DI CONSEGNA
INDIRIZZO DI FATTURAZIONE
-
-
{delivery_block_html}
-
{invoice_block_html}
-
-
-
-
-
-
-
-
-
-
Puoi rivedere l'ordine e scaricare la fattura dalla sezione "Cronologia ordine" del tuo account cliccando su "Il mio account" nel nostro sito web.
-
-
-
Se hai un account ospite, puoi seguire il tuo ordine nella sezione "Controllo ordini ospite" del nostro sito web.
-
-
-
\ No newline at end of file
diff --git a/mails/it/order_conf.txt b/mails/it/order_conf.txt
deleted file mode 100644
index 0c3789a47..000000000
--- a/mails/it/order_conf.txt
+++ /dev/null
@@ -1,30 +0,0 @@
-Salve {firstname} {lastname}, grazie del tuo ordine su {shop_name}!
-
-Dettagli dell'ordine
-
- Ordine: {order_name} eseguito il {date}
- Pagamento: {payment}
-
- Prodotti: {total_products}
- Sconti: {total_discounts}
- Spedizione: {total_shipping}
- Carta regalo: {total_wrapping}
- Totale: {total_paid}
-
-
-Spedizione
-
- Mezzo di spedizione: {carrier}
-
- Indirizzo di consegna:
-
- {delivery_block_html}
-
- Indirizzo di fatturazione:
-
- {delivery_block_html}
-
-Puoi rivedere questo ordine e scaricare la fattura dalla sezione "Cronologia ordine" del tuo account cliccando su "Il mio account" nel nostro sito web.
-Se hai un account ospite, puoi seguire il tuo ordine in questa pagina: {guest_tracking_url}
-
-{shop_url} powered by PrestaShop™
diff --git a/mails/it/order_customer_comment.html b/mails/it/order_customer_comment.html
deleted file mode 100644
index bb36a3c41..000000000
--- a/mails/it/order_customer_comment.html
+++ /dev/null
@@ -1,41 +0,0 @@
-
-
-
-
- Messaggio da un cliente da {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hi,
-
-
-
-
-
-
Messaggio da {firstname} {lastname} ({email})
-
-
-
-
-
-
Hai ricevuto un nuovo messaggio riguardo all'ordine n.{id_order}:
-
-
-
\ No newline at end of file
diff --git a/mails/it/order_return_state.txt b/mails/it/order_return_state.txt
deleted file mode 100644
index acda21587..000000000
--- a/mails/it/order_return_state.txt
+++ /dev/null
@@ -1,11 +0,0 @@
-Salve {firstname} {lastname},
-
-La cronologia del tuo buono di restituzione n.{id_order_return} è cambiata in "{state_order_return}".
-
-Puoi rivedere questa restituzione dell'ordine nella sezione "Cronologia ordine" del tuo account cliccando su "Il mio account" nel nostro sito web.
-
-{shop_name} - {shop_url}
-
-
-
-{shop_url} powered by PrestaShop™
\ No newline at end of file
diff --git a/mails/it/outofstock.html b/mails/it/outofstock.html
deleted file mode 100644
index c9a7725ad..000000000
--- a/mails/it/outofstock.html
+++ /dev/null
@@ -1,50 +0,0 @@
-
-
-
-
- Messaggio da {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Salve {firstname} {lastname},
-
-
-
-
-
-
La cronologia del tuo ordine n. {id_order}
-
-
-
-
-
-
Purtroppo, uno o più articoli del tuo ordine n.{id_order} sono al momento esauriti. Questo può provocare un leggero ritardo nella consegna. Ti preghiamo di scusarci e ti assicuriamo che stiamo facendo di tutto per risolvere il problema.
-
-
-
-
-
-
Puoi rivedere questo ordine e scaricare la fattura nella sezione "Cronologia ordine" del tuo account cliccando su "Il mio account" nel nostro sito web.
-
-
-
Se hai un account ospite puoi seguire il tuo ordine nella sezione "Controllo ordini ospite" nel nostro sito web.
-
-
-
\ No newline at end of file
diff --git a/mails/it/outofstock.txt b/mails/it/outofstock.txt
deleted file mode 100644
index 82418ad44..000000000
--- a/mails/it/outofstock.txt
+++ /dev/null
@@ -1,14 +0,0 @@
- Salve {firstname} {lastname},
-
- La cronologia del tuo ordine n.{id_order}
-
-Purtroppo, uno o più articoli del tuo ordine n.{id_order} sono al momento esauriti. Questo può provocare un leggero ritardo nella consegna. Ti preghiamo di scusarci e ti assicuriamo che stiamo facendo di tutto per risolvere il problema.
-
-Puoi rivedere questo ordine e scaricare la fattura dalla sezione "Cronologia ordine" del tuo account cliccando su "Il mio account" nel nostro sito web.
-Se hai un account ospite, puoi seguire il tuo ordine in questa pagina: {guest_tracking_url}
-
- {shop_name} - {shop_url}
-
-
-
- {shop_url} powered by PrestaShop™
\ No newline at end of file
diff --git a/mails/it/password.html b/mails/it/password.html
deleted file mode 100644
index d61da3270..000000000
--- a/mails/it/password.html
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-
-
- Messagio da {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Salve {firstname} {lastname},
-
-
-
-
-
-
I tuoi nuovi dati di login
-
-
-
-
-
-
Indirizzo e-mail: {email} Password: {passwd}
-
-
-
-
-
-
Fai attenzione a non condividere con nessuno i tuoi dati di login.
Adesso puoi effettuare un ordine nel nostro sito web: {shop_url}
-
-
-
\ No newline at end of file
diff --git a/mails/it/password.txt b/mails/it/password.txt
deleted file mode 100644
index 36652f721..000000000
--- a/mails/it/password.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-Salve {firstname} {lastname},
-
-I tuoi nuovi dati di login:
-
-Indirizzo e-mail address: {email}
-Password: {passwd}
-
-Adesso puoi effettuare un ordine nel nostro sito web: {shop_url}
-
-Fai attenzione a non condividere con nessuno questi dati di login.
-
-{shop_url} powered by PrestaShop™
\ No newline at end of file
diff --git a/mails/it/password_query.html b/mails/it/password_query.html
deleted file mode 100644
index f81b2c2f3..000000000
--- a/mails/it/password_query.html
+++ /dev/null
@@ -1,41 +0,0 @@
-
-
-
-
- Messaggio da {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Salve {firstname} {lastname},
-
-
-
-
-
-
Hai chiesto di restituire i tuoi codici di accesso di {shop_name}, Nota che questo farà cambiare la tua password attuale.
-
-
-
-
-
-
Se davvero vuoi farlo, clicca nel link seguente: {url}
-
-
-
\ No newline at end of file
diff --git a/mails/it/password_query.txt b/mails/it/password_query.txt
deleted file mode 100644
index 3f468f21f..000000000
--- a/mails/it/password_query.txt
+++ /dev/null
@@ -1,9 +0,0 @@
-Salve {firstname} {lastname},
-
-Hai chiesto di restituire i tuoi codici di accesso di {shop_name}.
-Nota che questo farà cambiare la tua password attuale.
-
-Se vuoi davvero farlo, clicca nel link seguente :
-{url}
-
-{shop_url} powered by PrestaShop™
diff --git a/mails/it/payment.html b/mails/it/payment.html
deleted file mode 100644
index ec753af87..000000000
--- a/mails/it/payment.html
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-
-
- Messaggio da {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Salve {firstname} {lastname},
-
-
-
-
-
-
La cronologia del tuo ordine n.{id_order}
-
-
-
-
-
-
Il pagamento per il tuo ordine è stato elaborato.
-
-
-
-
-
-
Puoi rivedere questo ordine e scaricare la fattura dalla sezione "Cronologia ordine" del tuo account cliccando su "Il mio account" nel nostro sito web.
-
-
-
\ No newline at end of file
diff --git a/mails/it/payment.txt b/mails/it/payment.txt
deleted file mode 100644
index 8b8cd4762..000000000
--- a/mails/it/payment.txt
+++ /dev/null
@@ -1,13 +0,0 @@
- Salve {firstname} {lastname},
-
- La tua cronologia dell'ordine n.{id_order}
-
- Il pagamento per il tuo ordine è stato elaborato.
-
- Puoi rivedere questo ordine e scaricare la fattura dalla sezione "Cronologia ordine" del tuo account cliccando su "Il mio account" nel nostro sito web.
-
- {shop_name} - {shop_url}
-
- Grazie di aver acquistato con {shop_name}.
-
- {shop_url} powered by PrestaShop™
\ No newline at end of file
diff --git a/mails/it/payment_error.html b/mails/it/payment_error.html
deleted file mode 100644
index 084954540..000000000
--- a/mails/it/payment_error.html
+++ /dev/null
@@ -1,56 +0,0 @@
-
-
-
-
- Messaggio da {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Salve {firstname} {lastname},
-
-
-
-
-
-
La cronologia del tuo ordine n. id_order}
-
-
-
-
-
-
Si è verificato un problema con il tuo pagamento dell'ordine n.{id_order}. Contattaci appena puoi.
-
-
-
-
-
-
Il tuo ordine non sarà inviato fino a che non avremo risolto il problema.
-
-
-
-
-
-
Puoi rivedere questo ordine e scaricare la fattura dalla sezione "Cronologia ordine" del tuo account cliccando su "Il mio account" nel nostro sito web.
-
-
-
Se hai un account ospite, puoi seguire il tuo ordine nella sezione "Controllo ordini ospite" del nostro sito web.
-
-
-
\ No newline at end of file
diff --git a/mails/it/payment_error.txt b/mails/it/payment_error.txt
deleted file mode 100644
index d416aae38..000000000
--- a/mails/it/payment_error.txt
+++ /dev/null
@@ -1,14 +0,0 @@
-Salve {firstname} {lastname},
-
-Si è verificato un problema con il tuo pagamento dell'ordine n.{id_order}. Contattaci appena puoi.
-
-Il tuo ordine non sarà inviato fino a che non avremo risolto il problema.
-
-Puoi rivedere questo ordine e scaricare la tua fattura dalla sezione "Cronologia ordine" del tuo account cliccando su "Il mio account" nel nostro sito web.
-Se hai un account ospite, puoi seguire il tuo ordine in questa pagina: {guest_tracking_url}
-
-{shop_name} - {shop_url}
-
-
-
-{shop_url} powered by PrestaShop™
\ No newline at end of file
diff --git a/mails/it/preparation.html b/mails/it/preparation.html
deleted file mode 100644
index d383d2489..000000000
--- a/mails/it/preparation.html
+++ /dev/null
@@ -1,50 +0,0 @@
-
-
-
-
- Messaggio da {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Salve {firstname} {lastname},
-
-
-
-
-
-
Cronologia del tuo ordine n.{id_order}
-
-
-
-
-
-
Stiamo elaborando il tuo ordine.
-
-
-
-
-
-
Puoi rivedere questo ordine e scaricare la fattura dalla sezione "Cronologia ordine" del tuo account cliccando su "Il mio account" nel nostro sito web.
-
-
-
Se hai un account ospite, puoi seguire il tuo ordine nella sezione "Controllo ordini ospitedel nostro sito web.
-
-
-
\ No newline at end of file
diff --git a/mails/it/preparation.txt b/mails/it/preparation.txt
deleted file mode 100644
index 377787db6..000000000
--- a/mails/it/preparation.txt
+++ /dev/null
@@ -1,14 +0,0 @@
- Salve {firstname} {lastname},
-
- La cronologia del tuo ordine n.{id_order}
-
- Stiamo elaborando il tuo ordine.
-
- Puoi rivedere questo ordine e scaricare la fattura dalla sezione "Cronologia ordine" del tuo account cliccando su "Il mio account" nel nostro sito web.
- Se hai un account ospite, puoi seguire il tuo ordine in questa pagina: {guest_tracking_url}
-
- {shop_name} - {shop_url}
-
-
-
- {shop_url} powered by PrestaShop™
\ No newline at end of file
diff --git a/mails/it/refund.html b/mails/it/refund.html
deleted file mode 100644
index b79c7d15c..000000000
--- a/mails/it/refund.html
+++ /dev/null
@@ -1,50 +0,0 @@
-
-
-
-
- Messaggio da {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Salve {firstname} {lastname},
-
-
-
-
-
-
Cronologia del tuo ordine n.{id_order}
-
-
-
-
-
-
Il pagamento del tuo ordine è stato rimborsato.
-
-
-
-
-
-
Puoi rivedere questo ordine e scaricare la fattura dalla sezione "Cronologia ordine" del tuo account cliccando su "Il mio account" nel nostro sito web.
-
-
-
Se hai un account ospite, puoi seguire il tuo ordine nella sezione "Controllo ordini ospite" nel nostro sito web.
-
-
-
\ No newline at end of file
diff --git a/mails/it/refund.txt b/mails/it/refund.txt
deleted file mode 100644
index 132bb88a6..000000000
--- a/mails/it/refund.txt
+++ /dev/null
@@ -1,12 +0,0 @@
- Salve {firstname} {lastname},
-
- Il pagamento del tuo ordine è stato rimborsato.
-
- Puoi rivedere questo ordine e scaricare la fattura dalla sezione "Cronologia ordine" del tuo account cliccando su "Il mio account" nel nostro sito web.
- Se hai un account ospite, puoi seguire il tuo ordine in questa pagina: {guest_tracking_url}
-
- {shop_name} - {shop_url}
-
-
-
- {shop_url} powered by PrestaShop™
\ No newline at end of file
diff --git a/mails/it/reply_msg.html b/mails/it/reply_msg.html
deleted file mode 100644
index 8fa22b89a..000000000
--- a/mails/it/reply_msg.html
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
- Messaggio da {shop_name}
-
-
-
-
-
-
{reply}
Non rispondere a questo messaggio usando la tua mail cliente, il tuo messaggio non ci arriverebbe. Per rispondere, usa esclusivamente il link seguente: {link}.
-
-
-
-
-
-
\ No newline at end of file
diff --git a/mails/it/reply_msg.txt b/mails/it/reply_msg.txt
deleted file mode 100644
index 66066d5c1..000000000
--- a/mails/it/reply_msg.txt
+++ /dev/null
@@ -1,4 +0,0 @@
-{reply}
-
-Non rispondere a questo messaggio usando la tua e-mail cliente, il tuo messaggio non ci arriverebbe.
-Per rispondere, usa esclusivamente il link seguente: {link}
diff --git a/mails/it/shipped.html b/mails/it/shipped.html
deleted file mode 100644
index 96a9a9612..000000000
--- a/mails/it/shipped.html
+++ /dev/null
@@ -1,50 +0,0 @@
-
-
-
-
- Messaggio da {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Salve {firstname} {lastname},
-
-
-
-
-
-
Cronologia del tuo ordine n.{id_order}
-
-
-
-
-
-
Il tuo ordine è stato spedito. Riceverai presto un URL su cui cliccare per rintracciare i progressi di consegna del tuo pacco.
-
-
-
-
-
-
Puoi rivedere questo ordine e scaricare la fattura dalla sezione "Cronologia ordine" del tuo account cliccando su "Il mio account" nel nostro sito web.
-
-
-
Se hai un account ospite, puoi seguire il tuo ordine nella sezione "Controllo ordini ospite"nel nostro sito web.
-
-
-
\ No newline at end of file
diff --git a/mails/it/shipped.txt b/mails/it/shipped.txt
deleted file mode 100644
index 907b90210..000000000
--- a/mails/it/shipped.txt
+++ /dev/null
@@ -1,16 +0,0 @@
-Salve {firstname} {lastname},
-
-Il tuo ordine è stato appena spedito.
-
-Riceverai presto un URL su cui cliccare per rintracciare i progressi di consegna del tuo pacco.
-
-Puoi rivedere questo ordine e scaricare la fattura dalla sezione "Cronologia ordine" del tuo account cliccando su "Il mio account" nel nostro sito web.
- Se hai un account ospite, puoi seguire il tuo ordine in questa pagina: {guest_tracking_url}
-
-Grazie di aver acquistato con {shop_name}!
-
-{shop_name} - {shop_url}
-
-
-
-{shop_url} powered by PrestaShop™
\ No newline at end of file
diff --git a/mails/it/test.html b/mails/it/test.html
deleted file mode 100644
index 1ed586876..000000000
--- a/mails/it/test.html
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
- Mail di prova
-
-
-
-
-
-
Salve,
Questa è una mail di prova da parte del tuo negozio.
-
-
-
\ No newline at end of file
diff --git a/mails/it/test.txt b/mails/it/test.txt
deleted file mode 100644
index ad38277f0..000000000
--- a/mails/it/test.txt
+++ /dev/null
@@ -1,3 +0,0 @@
- Salve,
-
- Questa è una mail di prova da parte del tuo negozio online PrestaShop™.
\ No newline at end of file
diff --git a/mails/it/voucher.html b/mails/it/voucher.html
deleted file mode 100644
index 84f68e06a..000000000
--- a/mails/it/voucher.html
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-
-
- Messaggio da {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Salve {firstname} {lastname},
-
-
-
-
-
-
Cronologia del tuo ordine n.{id_order}
-
-
-
-
-
-
Vorremmo informarti della creazione di un buono sconto a tuo nome in seguito al tuo ordine n.{id_order}.
-
-
-
-
-
-
Ecco il codice del tuo buono:{voucher_num}, per l'importo di {voucher_amount}. Basta che durante il processo di pagamento del prossimo ordine tu copi/incolli questo codice.
-
-
-
\ No newline at end of file
diff --git a/mails/it/voucher.txt b/mails/it/voucher.txt
deleted file mode 100644
index f9e6abad9..000000000
--- a/mails/it/voucher.txt
+++ /dev/null
@@ -1,14 +0,0 @@
-Salve {firstname} {lastname},
-
-Vorremmo informarti della creazione di un buono sconto a tuo nome in seguito al tuo ordine n.{id_order}.
-
-Ecco il codice del tuo buono: {voucher_num}, per l'importo di {voucher_amount}.
-
-Basta che durante il processo di pagamento del prossimo ordine tu copi/incolli questo codice.
-
-Grazie di aver acquistato a {shop_name}.
-
-{shop_name} - {shop_url}
-
-
-{shop_url} powered by PrestaShop™
\ No newline at end of file
diff --git a/mails/it/voucher_new.html b/mails/it/voucher_new.html
deleted file mode 100644
index 2119c2d4d..000000000
--- a/mails/it/voucher_new.html
+++ /dev/null
@@ -1,41 +0,0 @@
-
-
-
-
- Message from {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hi {firstname} {lastname},
-
-
-
-
-
-
This is to inform you about the creation of a voucher.
-
-
-
-
-
-
Here is the code of your voucher : {voucher_num}. Simply copy/paste this code during the payment process for your next order.
-
-
-
\ No newline at end of file
diff --git a/mails/it/voucher_new.txt b/mails/it/voucher_new.txt
deleted file mode 100644
index 662e63604..000000000
--- a/mails/it/voucher_new.txt
+++ /dev/null
@@ -1,14 +0,0 @@
-Hi {firstname} {lastname},
-
-This is to inform you about the creation of a voucher.
-
-Here is the code of your voucher : {voucher_num}.
-
-Simply copy/paste this code during the payment process for your next order.
-
-Thank you for shopping at {shop_name}.
-
-{shop_name} - {shop_url}
-
-
-{shop_url} powered by PrestaShop
diff --git a/modules/bankwire/translations/de.php b/modules/bankwire/translations/de.php
deleted file mode 100644
index 17ba96554..000000000
--- a/modules/bankwire/translations/de.php
+++ /dev/null
@@ -1,54 +0,0 @@
-bankwire_51634daae434ad5789f89024b20e4dac'] = 'Bitte spezifizieren Sie die Bankverbindungsdetails für Kunden.';
-$_MODULE['<{bankwire}prestashop>bankwire_857216dd1b374de9bf54068fcd78a8f3'] = 'Kontoinhaber';
-$_MODULE['<{bankwire}prestashop>bankwire_f9a1a1bb716cbae0503d351ea2af4b34'] = 'Bankadresse';
-$_MODULE['<{bankwire}prestashop>payment_execution_99227bacb2b4dfa29ce1701ac265a923'] = 'Zahlung per Banküberweisung';
-$_MODULE['<{bankwire}prestashop>payment_execution_f1d3b424cd68795ecaa552883759aceb'] = 'Bestellsumme';
-$_MODULE['<{bankwire}prestashop>payment_execution_05adcee99142c1a60fb38bb1330bbbc1'] = 'Banküberweisung';
-$_MODULE['<{bankwire}prestashop>payment_execution_3dd021316505c0204989f984246c6ff1'] = 'Die Kontoinformationen zur Banküberweisung stehen auf der folgenden Seite.';
-$_MODULE['<{bankwire}prestashop>payment_eb1d50032721fa4c9d3518c417f91b9d'] = 'Zahlung per Banküberweisung (längerer Bestellvorgang)';
-$_MODULE['<{bankwire}prestashop>payment_return_b2f40690858b404ed10e62bdf422c704'] = 'folgenden Betrag';
-$_MODULE['<{bankwire}prestashop>payment_return_5ca0b1b910f393ed1f9f6fa99e414255'] = 'an den Kontoinhaber von';
-$_MODULE['<{bankwire}prestashop>payment_return_19c419a8a4f1cd621853376a930a2e24'] = 'Eine E-Mail wurde Ihnen mit diesen Informationen gesendet.';
-$_MODULE['<{bankwire}prestashop>payment_return_dfe239de8c0b2453a8e8f7657a191d5d'] = 'Kunden-Support';
-$_MODULE['<{bankwire}prestashop>bankwire_65104b0722c068ec3e8ac48153af597b'] = 'Zahlungen per Banküberweisung annehmen';
-$_MODULE['<{bankwire}prestashop>bankwire_cbe0a99684b145e77f3e14174ac212e3'] = 'Sind Sie sicher, dass Sie Ihre Details löschen möchten?';
-$_MODULE['<{bankwire}prestashop>bankwire_0ea0227283d959415eda0cfa31d9f718'] = 'Kontoinhaber und Details müssen konfiguriert werden, um dieses Modul korrekt zu nutzen';
-$_MODULE['<{bankwire}prestashop>bankwire_a02758d758e8bec77a33d7f392eb3f8a'] = 'Keine Währung für dieses Modul eingestellte';
-$_MODULE['<{bankwire}prestashop>bankwire_bfa43217dfe8261ee7cb040339085677'] = 'Konto-Details erforderlich.';
-$_MODULE['<{bankwire}prestashop>bankwire_ccab155f173ac76f79eb192703f86b18'] = 'Kontoinhaber erforderlich.';
-$_MODULE['<{bankwire}prestashop>bankwire_c2886e6bed60f357b08b6e99ac390c25'] = 'Wenn der Kunde diese Zahlungsmethode wählt, wird der Bestellstatus auf \\"Wartet auf Zahlung\\" umgestellt.';
-$_MODULE['<{bankwire}prestashop>bankwire_f001fc4497defe598043407d06be06e5'] = 'Aus diesem Grund müssen Sie die Bestellung manuell bestätigen, sobald Sie die Überweisung erhalten.';
-$_MODULE['<{bankwire}prestashop>bankwire_5dd532f0a63d89c5af0243b74732f63c'] = 'Kontaktangaben';
-$_MODULE['<{bankwire}prestashop>bankwire_b17f3f4dcf653a5776792498a9b44d6a'] = 'Einstellungen aktualisieren';
-$_MODULE['<{bankwire}prestashop>payment_execution_879f6b8877752685a966564d072f498f'] = 'Ihr Warenkorb ist leer.';
-$_MODULE['<{bankwire}prestashop>payment_execution_afda466128ee0594745d9f8152699b74'] = 'Sie möchten per Banküberweisung zahlen.';
-$_MODULE['<{bankwire}prestashop>payment_execution_c884ed19483d45970c5bf23a681e2dd2'] = 'Hier ist eine kurze Zusammenfassung Ihrer Bestellung:';
-$_MODULE['<{bankwire}prestashop>payment_execution_e2867a925cba382f1436d1834bb52a1c'] = 'Der Gesamtbetrag Ihrer Bestellung beträgt';
-$_MODULE['<{bankwire}prestashop>payment_execution_a7a08622ee5c8019b57354b99b7693b2'] = 'Wählen Sie eine der folgenden Möglichkeiten:';
-$_MODULE['<{bankwire}prestashop>payment_execution_93c1f9dffc8c38b2c108d449a9181d92'] = 'Bitte bestätigen Sie Ihre Bestellung durch Klicken auf \\"KAUFEN\\"';
-$_MODULE['<{bankwire}prestashop>payment_return_b9a1cae09e5754424e33764777cfcaa0'] = 'Ihre Bestellung wird abgesendet, sobald wir Ihre Überweisung erhalten haben.';
-$_MODULE['<{bankwire}prestashop>bankwire_c1be305030739396775edaca9813f77d'] = 'Dieses Modul ermöglicht Ihnen Zahlungen per Banküberweisung.';
-$_MODULE['<{bankwire}prestashop>bankwire_3ec365dd533ddb7ef3d1c111186ce872'] = 'Details';
-$_MODULE['<{bankwire}prestashop>bankwire_5fe24fbb39b58daacb7c7905ba6e3534'] = 'wie Zweigstelle, IBAN-Nummer, BIC, etc.';
-$_MODULE['<{bankwire}prestashop>payment_execution_1f87346a16cf80c372065de3c54c86d9'] = '(Inkl. Mwst.)';
-$_MODULE['<{bankwire}prestashop>payment_execution_b28be4c423d93e02081f4e79fe2434e8'] = 'Wir nehmen bestimmte Währungen per Banküberweisung an.';
-$_MODULE['<{bankwire}prestashop>payment_5e1695822fc5af98f6b749ea3cbc9b4c'] = 'Zahlung per Banküberweisung';
-$_MODULE['<{bankwire}prestashop>payment_return_88526efe38fd18179a127024aba8c1d7'] = 'Ihre Bestellung auf %s ist abgeschlossen.';
-$_MODULE['<{bankwire}prestashop>payment_return_1f8cdc30326f1f930b0c87b25fdac965'] = 'Bitte senden Sie uns folgenden Betrag per Banküberweisung:';
-$_MODULE['<{bankwire}prestashop>payment_return_d717aa33e18263b8405ba00e94353cdc'] = 'mit dieser Bankverbindung';
-$_MODULE['<{bankwire}prestashop>payment_return_984482eb9ff11e6310fef641d2268a2a'] = 'an diese Bank';
-$_MODULE['<{bankwire}prestashop>payment_return_63fb3f7c94ee5d8027bf599885de279d'] = 'Vergessen Sie nicht Ihre Bestellnummer #%d in den Titel Ihrer Bankverbindung anzugeben.';
-$_MODULE['<{bankwire}prestashop>payment_return_1faa25b80a8d31e5ef25a78d3336606d'] = 'Vergessen Sie nicht Ihre Auftrags-Referenz-Nummer #%d in den Titel Ihrer Bankverbindung anzugeben.';
-$_MODULE['<{bankwire}prestashop>payment_return_ca7e41a658753c87973936d7ce2429a8'] = 'Bei Fragen oder für weitere Informationen, kontaktieren Sie bitte unseren';
-$_MODULE['<{bankwire}prestashop>bankwire_85ee0d0492a4e37e6c183520f5d59c40'] = 'Banküberweisung';
-$_MODULE['<{bankwire}prestashop>bankwire_c888438d14855d7d96a2724ee9c306bd'] = 'Einstellungen aktualisiert';
-$_MODULE['<{bankwire}prestashop>validation_e2b7dec8fa4b498156dfee6e4c84b156'] = 'Diese Zahlungsmodlität ist nich verfügbar.';
-$_MODULE['<{bankwire}prestashop>payment_execution_a854d894458d66d92cabf0411c499ef4'] = 'Wir nehmen folgende Währung per Banküberweisung an:';
-$_MODULE['<{bankwire}prestashop>payment_execution_baa62374832554652160fe5a827b2741'] = 'Ich bestätige meine Bestellung';
-$_MODULE['<{bankwire}prestashop>payment_execution_569fd05bdafa1712c4f6be5b153b8418'] = 'Andere Zahlungsmethoden';
-$_MODULE['<{bankwire}prestashop>payment_return_d15feee53d81ea16269e54d4784fa123'] = 'Wir haben bei Ihrer Bestellung ein Problem festgestellt. Wenn Sie denken, dies sei ein Fehler, können Sie an unseren';
diff --git a/modules/bankwire/translations/en.php b/modules/bankwire/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/bankwire/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-bankwire_51634daae434ad5789f89024b20e4dac'] = 'Por favor, especifique los detalles de la cuenta para sus clientes';
-$_MODULE['<{bankwire}prestashop>bankwire_857216dd1b374de9bf54068fcd78a8f3'] = 'Propietario de la cuenta';
-$_MODULE['<{bankwire}prestashop>bankwire_f9a1a1bb716cbae0503d351ea2af4b34'] = 'Dirección agencia bancaria';
-$_MODULE['<{bankwire}prestashop>payment_execution_99227bacb2b4dfa29ce1701ac265a923'] = 'Pago por transferencia bancaria';
-$_MODULE['<{bankwire}prestashop>payment_execution_f1d3b424cd68795ecaa552883759aceb'] = 'Resumen del pedido';
-$_MODULE['<{bankwire}prestashop>payment_execution_05adcee99142c1a60fb38bb1330bbbc1'] = 'Transferencia bancaria';
-$_MODULE['<{bankwire}prestashop>payment_execution_3dd021316505c0204989f984246c6ff1'] = 'La información para realizar la trasferencia bancaria aparecerá en la página siguiente.';
-$_MODULE['<{bankwire}prestashop>payment_eb1d50032721fa4c9d3518c417f91b9d'] = 'Pago por transferencia bancaria (el proceso llevará más tiempo)';
-$_MODULE['<{bankwire}prestashop>payment_return_b2f40690858b404ed10e62bdf422c704'] = 'por un valor de';
-$_MODULE['<{bankwire}prestashop>payment_return_5ca0b1b910f393ed1f9f6fa99e414255'] = 'al propietario de la cuenta';
-$_MODULE['<{bankwire}prestashop>payment_return_19c419a8a4f1cd621853376a930a2e24'] = 'Le hemos enviado un email con los datos anteriores.';
-$_MODULE['<{bankwire}prestashop>payment_return_dfe239de8c0b2453a8e8f7657a191d5d'] = 'de atención al cliente';
-$_MODULE['<{bankwire}prestashop>bankwire_65104b0722c068ec3e8ac48153af597b'] = 'Se aceptan pagos por trasferencia bancaria';
-$_MODULE['<{bankwire}prestashop>bankwire_cbe0a99684b145e77f3e14174ac212e3'] = '¿Está seguro de querer borrar los detalles?';
-$_MODULE['<{bankwire}prestashop>bankwire_0ea0227283d959415eda0cfa31d9f718'] = 'El propietario y detalles de la cuenta deben configurarse para usar el módulo correctamente';
-$_MODULE['<{bankwire}prestashop>bankwire_a02758d758e8bec77a33d7f392eb3f8a'] = 'Ninguna divisa disponible para este módulo';
-$_MODULE['<{bankwire}prestashop>bankwire_bfa43217dfe8261ee7cb040339085677'] = 'se necesitan los detalles de la cuenta.';
-$_MODULE['<{bankwire}prestashop>bankwire_ccab155f173ac76f79eb192703f86b18'] = 'Se necesita el propietario de la cuenta.';
-$_MODULE['<{bankwire}prestashop>bankwire_c2886e6bed60f357b08b6e99ac390c25'] = 'si el cliente elije este modo de pago, el pedido cambiará su estado a \\"pendiente de pago\\".';
-$_MODULE['<{bankwire}prestashop>bankwire_f001fc4497defe598043407d06be06e5'] = 'Por lo tanto, deberá confirmar el pedido en cuanto reciba la trasferencia.';
-$_MODULE['<{bankwire}prestashop>bankwire_5dd532f0a63d89c5af0243b74732f63c'] = 'Detalles contacto';
-$_MODULE['<{bankwire}prestashop>bankwire_b17f3f4dcf653a5776792498a9b44d6a'] = 'Ajustes actualizados';
-$_MODULE['<{bankwire}prestashop>payment_execution_879f6b8877752685a966564d072f498f'] = 'Su carrito está vacío';
-$_MODULE['<{bankwire}prestashop>payment_execution_afda466128ee0594745d9f8152699b74'] = 'Ha elegido pagar por transferencia bancaria';
-$_MODULE['<{bankwire}prestashop>payment_execution_c884ed19483d45970c5bf23a681e2dd2'] = 'Resumen de su pedido:';
-$_MODULE['<{bankwire}prestashop>payment_execution_e2867a925cba382f1436d1834bb52a1c'] = 'El importe total de su pedido asciende a';
-$_MODULE['<{bankwire}prestashop>payment_execution_a7a08622ee5c8019b57354b99b7693b2'] = 'Elija entre las siguientes:';
-$_MODULE['<{bankwire}prestashop>payment_execution_93c1f9dffc8c38b2c108d449a9181d92'] = 'Por favor, confirme su pedido pulsando en \\"Confirmo mi pedido\\"';
-$_MODULE['<{bankwire}prestashop>payment_return_b9a1cae09e5754424e33764777cfcaa0'] = 'Su pedido será enviado próximamente, en cuanto recibamos su pago.';
-$_MODULE['<{bankwire}prestashop>bankwire_85ee0d0492a4e37e6c183520f5d59c40'] = 'Trasferencia bancaria';
-$_MODULE['<{bankwire}prestashop>bankwire_c1be305030739396775edaca9813f77d'] = 'Este módulo permite aceptar pagos por trasferencia bancaria.';
-$_MODULE['<{bankwire}prestashop>bankwire_3ec365dd533ddb7ef3d1c111186ce872'] = 'Detalles';
-$_MODULE['<{bankwire}prestashop>bankwire_5fe24fbb39b58daacb7c7905ba6e3534'] = 'tales como: sucursal bancaria, código IBAN, BIC, etc.';
-$_MODULE['<{bankwire}prestashop>payment_execution_1f87346a16cf80c372065de3c54c86d9'] = 'IVA incluido';
-$_MODULE['<{bankwire}prestashop>payment_execution_b28be4c423d93e02081f4e79fe2434e8'] = 'Aceptamos diferentes monedas para la transferencia bancaria.';
-$_MODULE['<{bankwire}prestashop>payment_5e1695822fc5af98f6b749ea3cbc9b4c'] = 'Pago por transferencia bancaria';
-$_MODULE['<{bankwire}prestashop>payment_return_88526efe38fd18179a127024aba8c1d7'] = 'Su pedido %s está completo.';
-$_MODULE['<{bankwire}prestashop>payment_return_1f8cdc30326f1f930b0c87b25fdac965'] = 'por favor, háganos una transferencia por:';
-$_MODULE['<{bankwire}prestashop>payment_return_d717aa33e18263b8405ba00e94353cdc'] = 'con los siguientes datos';
-$_MODULE['<{bankwire}prestashop>payment_return_984482eb9ff11e6310fef641d2268a2a'] = 'a este banco';
-$_MODULE['<{bankwire}prestashop>payment_return_63fb3f7c94ee5d8027bf599885de279d'] = 'No te olvides de insertar su número de pedido #%d en el tema de su transferencia bancaria';
-$_MODULE['<{bankwire}prestashop>payment_return_ca7e41a658753c87973936d7ce2429a8'] = 'Para cualquier duda o para más información, póngase en contacto con nuestro servicio';
-$_MODULE['<{bankwire}prestashop>payment_return_1faa25b80a8d31e5ef25a78d3336606d'] = 'No te olvides de insertar tu número de pedido %s en el tema de su transferencia bancaria.';
-$_MODULE['<{bankwire}prestashop>bankwire_c888438d14855d7d96a2724ee9c306bd'] = 'Actualización realizada con éxito';
-$_MODULE['<{bankwire}prestashop>validation_e2b7dec8fa4b498156dfee6e4c84b156'] = 'Esta forma de pago no está disponible.';
-$_MODULE['<{bankwire}prestashop>payment_execution_a854d894458d66d92cabf0411c499ef4'] = 'Aceptamos las siguientes monedas para las transferencias bancarias:';
-$_MODULE['<{bankwire}prestashop>payment_execution_baa62374832554652160fe5a827b2741'] = 'Confirmo mi pedido';
-$_MODULE['<{bankwire}prestashop>payment_execution_569fd05bdafa1712c4f6be5b153b8418'] = 'Otros modos de pago';
-$_MODULE['<{bankwire}prestashop>payment_return_d15feee53d81ea16269e54d4784fa123'] = 'Hay un problema con su pedido, póngase en contacto con el servicio de atención al cliente.';
diff --git a/modules/bankwire/translations/fr.php b/modules/bankwire/translations/fr.php
deleted file mode 100644
index 68c8e2dff..000000000
--- a/modules/bankwire/translations/fr.php
+++ /dev/null
@@ -1,54 +0,0 @@
-payment_execution_99227bacb2b4dfa29ce1701ac265a923'] = 'Paiement par virement bancaire';
-$_MODULE['<{bankwire}prestashop>payment_execution_f1d3b424cd68795ecaa552883759aceb'] = 'Récapitulatif de commande';
-$_MODULE['<{bankwire}prestashop>payment_execution_05adcee99142c1a60fb38bb1330bbbc1'] = 'virement bancaire';
-$_MODULE['<{bankwire}prestashop>bankwire_51634daae434ad5789f89024b20e4dac'] = 'Veuillez spécifier les détails du compte en banque pour les clients';
-$_MODULE['<{bankwire}prestashop>bankwire_857216dd1b374de9bf54068fcd78a8f3'] = 'Titulaire';
-$_MODULE['<{bankwire}prestashop>bankwire_f9a1a1bb716cbae0503d351ea2af4b34'] = 'Adresse de la banque';
-$_MODULE['<{bankwire}prestashop>payment_execution_3dd021316505c0204989f984246c6ff1'] = 'Nos coordonnées bancaires seront affichées sur la page suivante.';
-$_MODULE['<{bankwire}prestashop>payment_eb1d50032721fa4c9d3518c417f91b9d'] = 'Payer par virement bancaire (traitement plus long)';
-$_MODULE['<{bankwire}prestashop>payment_return_b2f40690858b404ed10e62bdf422c704'] = 'un montant de';
-$_MODULE['<{bankwire}prestashop>payment_return_5ca0b1b910f393ed1f9f6fa99e414255'] = 'à l\'ordre de';
-$_MODULE['<{bankwire}prestashop>payment_return_19c419a8a4f1cd621853376a930a2e24'] = 'Un e-mail contenant ces informations vous a été envoyé.';
-$_MODULE['<{bankwire}prestashop>payment_return_dfe239de8c0b2453a8e8f7657a191d5d'] = 'support client';
-$_MODULE['<{bankwire}prestashop>bankwire_65104b0722c068ec3e8ac48153af597b'] = 'Accepter les paiements par virement.';
-$_MODULE['<{bankwire}prestashop>bankwire_cbe0a99684b145e77f3e14174ac212e3'] = 'Êtes-vous certain de vouloir effacer vos données ?';
-$_MODULE['<{bankwire}prestashop>bankwire_0ea0227283d959415eda0cfa31d9f718'] = 'Le titulaire du compte et les informations bancaires doivent être configurés.';
-$_MODULE['<{bankwire}prestashop>bankwire_5dd532f0a63d89c5af0243b74732f63c'] = 'Coordonnées';
-$_MODULE['<{bankwire}prestashop>payment_execution_879f6b8877752685a966564d072f498f'] = 'Votre panier est vide.';
-$_MODULE['<{bankwire}prestashop>payment_execution_afda466128ee0594745d9f8152699b74'] = 'Vous avez choisi de régler par virement bancaire.';
-$_MODULE['<{bankwire}prestashop>payment_execution_c884ed19483d45970c5bf23a681e2dd2'] = 'Voici un bref récapitulatif de votre commande :';
-$_MODULE['<{bankwire}prestashop>payment_execution_e2867a925cba382f1436d1834bb52a1c'] = 'Le montant total de votre commande s\'élève à';
-$_MODULE['<{bankwire}prestashop>bankwire_a02758d758e8bec77a33d7f392eb3f8a'] = 'Aucune devise disponible pour ce module';
-$_MODULE['<{bankwire}prestashop>bankwire_bfa43217dfe8261ee7cb040339085677'] = 'Les détails du compte sont requis.';
-$_MODULE['<{bankwire}prestashop>bankwire_ccab155f173ac76f79eb192703f86b18'] = 'Le titulaire du compte est requis.';
-$_MODULE['<{bankwire}prestashop>bankwire_c2886e6bed60f357b08b6e99ac390c25'] = 'Si le client choisit ce mode de paiement, la commande passera à l\'état \\"Paiement en attente\\".';
-$_MODULE['<{bankwire}prestashop>bankwire_f001fc4497defe598043407d06be06e5'] = 'Par conséquent, vous devez confirmer manuellement la commande dès que vous recevrez le virement.';
-$_MODULE['<{bankwire}prestashop>bankwire_b17f3f4dcf653a5776792498a9b44d6a'] = 'Mettre à jour';
-$_MODULE['<{bankwire}prestashop>payment_execution_a7a08622ee5c8019b57354b99b7693b2'] = 'Merci de choisir parmi les suivantes :';
-$_MODULE['<{bankwire}prestashop>payment_execution_93c1f9dffc8c38b2c108d449a9181d92'] = 'Veuillez confirmer votre commande en cliquant sur \\"Je confirme ma commande\\"';
-$_MODULE['<{bankwire}prestashop>payment_return_b9a1cae09e5754424e33764777cfcaa0'] = 'Votre commande sera expédiée dès réception de votre virement.';
-$_MODULE['<{bankwire}prestashop>bankwire_85ee0d0492a4e37e6c183520f5d59c40'] = 'Virement bancaire';
-$_MODULE['<{bankwire}prestashop>payment_execution_1f87346a16cf80c372065de3c54c86d9'] = 'TTC';
-$_MODULE['<{bankwire}prestashop>payment_execution_b28be4c423d93e02081f4e79fe2434e8'] = 'Nous acceptons plusieurs devises pour votre virement.';
-$_MODULE['<{bankwire}prestashop>payment_return_1f8cdc30326f1f930b0c87b25fdac965'] = 'Veuillez nous envoyer un virement bancaire avec :';
-$_MODULE['<{bankwire}prestashop>bankwire_c1be305030739396775edaca9813f77d'] = 'Ce module vous permet d\'accepter les paiements par virement bancaire.';
-$_MODULE['<{bankwire}prestashop>bankwire_3ec365dd533ddb7ef3d1c111186ce872'] = 'Détails';
-$_MODULE['<{bankwire}prestashop>bankwire_5fe24fbb39b58daacb7c7905ba6e3534'] = 'Comme le code banque, l\'IBAN ou encore le BIC';
-$_MODULE['<{bankwire}prestashop>payment_5e1695822fc5af98f6b749ea3cbc9b4c'] = 'Payer par virement bancaire';
-$_MODULE['<{bankwire}prestashop>payment_return_88526efe38fd18179a127024aba8c1d7'] = 'Votre commande sur %s a bien été enregistrée.';
-$_MODULE['<{bankwire}prestashop>payment_return_d717aa33e18263b8405ba00e94353cdc'] = 'suivant ces détails';
-$_MODULE['<{bankwire}prestashop>payment_return_984482eb9ff11e6310fef641d2268a2a'] = 'à cette banque';
-$_MODULE['<{bankwire}prestashop>payment_return_63fb3f7c94ee5d8027bf599885de279d'] = 'N\'oubliez pas d\'indiquer votre numéro de commande n°%d dans le sujet de votre virement.';
-$_MODULE['<{bankwire}prestashop>payment_return_1faa25b80a8d31e5ef25a78d3336606d'] = 'N\'oubliez pas d\'indiquer votre référence de commande %s dans le sujet de votre virement.';
-$_MODULE['<{bankwire}prestashop>payment_return_ca7e41a658753c87973936d7ce2429a8'] = 'Pour toute question ou information complémentaire, veuillez contacter notre';
-$_MODULE['<{bankwire}prestashop>bankwire_c888438d14855d7d96a2724ee9c306bd'] = 'Mise à jour réussie';
-$_MODULE['<{bankwire}prestashop>validation_e2b7dec8fa4b498156dfee6e4c84b156'] = 'Cette méthode de paiement n\'est pas disponible.';
-$_MODULE['<{bankwire}prestashop>payment_execution_a854d894458d66d92cabf0411c499ef4'] = 'Nous acceptons la devise suivante pour votre paiement :';
-$_MODULE['<{bankwire}prestashop>payment_execution_baa62374832554652160fe5a827b2741'] = 'Je confirme ma commande';
-$_MODULE['<{bankwire}prestashop>payment_execution_569fd05bdafa1712c4f6be5b153b8418'] = 'Autres moyens de paiement';
-$_MODULE['<{bankwire}prestashop>payment_return_d15feee53d81ea16269e54d4784fa123'] = 'Nous avons rencontré un problème avec votre commande. Merci de prendre contact avec notre support client';
diff --git a/modules/bankwire/translations/it.php b/modules/bankwire/translations/it.php
deleted file mode 100644
index 6aee11c51..000000000
--- a/modules/bankwire/translations/it.php
+++ /dev/null
@@ -1,54 +0,0 @@
-bankwire_51634daae434ad5789f89024b20e4dac'] = 'Specifica i dati del bonifico bancario per i clienti';
-$_MODULE['<{bankwire}prestashop>bankwire_857216dd1b374de9bf54068fcd78a8f3'] = 'Intestatario del conto';
-$_MODULE['<{bankwire}prestashop>bankwire_f9a1a1bb716cbae0503d351ea2af4b34'] = 'Indirizzo della banca';
-$_MODULE['<{bankwire}prestashop>payment_execution_99227bacb2b4dfa29ce1701ac265a923'] = 'Pagamento bonifico bancario';
-$_MODULE['<{bankwire}prestashop>payment_execution_f1d3b424cd68795ecaa552883759aceb'] = 'Sintesi dell\'ordine';
-$_MODULE['<{bankwire}prestashop>payment_execution_05adcee99142c1a60fb38bb1330bbbc1'] = 'bonifico bancario';
-$_MODULE['<{bankwire}prestashop>payment_execution_3dd021316505c0204989f984246c6ff1'] = 'Le informazioni sul conto corrente saranno visualizzate nella pagina successiva.';
-$_MODULE['<{bankwire}prestashop>payment_eb1d50032721fa4c9d3518c417f91b9d'] = 'Paga con bonifico bancario (l\'elaborazione dell\'ordine sarà più lunga)';
-$_MODULE['<{bankwire}prestashop>payment_return_b2f40690858b404ed10e62bdf422c704'] = 'un importo di';
-$_MODULE['<{bankwire}prestashop>payment_return_5ca0b1b910f393ed1f9f6fa99e414255'] = 'al proprietario del conto';
-$_MODULE['<{bankwire}prestashop>payment_return_19c419a8a4f1cd621853376a930a2e24'] = 'Ti è stata inviata una e-mail con queste informazioni.';
-$_MODULE['<{bankwire}prestashop>payment_return_dfe239de8c0b2453a8e8f7657a191d5d'] = 'assistenza clienti';
-$_MODULE['<{bankwire}prestashop>bankwire_65104b0722c068ec3e8ac48153af597b'] = 'Accetto pagamenti tramite bonifico bancario';
-$_MODULE['<{bankwire}prestashop>bankwire_cbe0a99684b145e77f3e14174ac212e3'] = 'Sei sicuro di voler cancellare i tuoi dati?';
-$_MODULE['<{bankwire}prestashop>bankwire_0ea0227283d959415eda0cfa31d9f718'] = 'Il proprietario dell\'account e i dati devono essere configurati per usare questo modulo correttamente';
-$_MODULE['<{bankwire}prestashop>bankwire_a02758d758e8bec77a33d7f392eb3f8a'] = 'Nessuna valuta impostata per questo modulo';
-$_MODULE['<{bankwire}prestashop>bankwire_bfa43217dfe8261ee7cb040339085677'] = 'i dati dell\'account sono obbligatori.';
-$_MODULE['<{bankwire}prestashop>bankwire_ccab155f173ac76f79eb192703f86b18'] = 'Il proprietario dell\'account è obbligatorio.';
-$_MODULE['<{bankwire}prestashop>bankwire_c2886e6bed60f357b08b6e99ac390c25'] = 'Se il cliente sceglie questa modalità di pagamento, l\'ordine cambierà il proprio status in \'attesa di pagamento\'.';
-$_MODULE['<{bankwire}prestashop>bankwire_f001fc4497defe598043407d06be06e5'] = 'Pertanto, dovrai confermare l\'ordine non appena ricevi il bonifico';
-$_MODULE['<{bankwire}prestashop>bankwire_5dd532f0a63d89c5af0243b74732f63c'] = 'Dati di contatto';
-$_MODULE['<{bankwire}prestashop>bankwire_b17f3f4dcf653a5776792498a9b44d6a'] = 'Aggiornare le impostazioni';
-$_MODULE['<{bankwire}prestashop>payment_execution_879f6b8877752685a966564d072f498f'] = 'Il carrello è vuoto.';
-$_MODULE['<{bankwire}prestashop>payment_execution_afda466128ee0594745d9f8152699b74'] = 'Hai scelto di pagare con bonifico bancario.';
-$_MODULE['<{bankwire}prestashop>payment_execution_c884ed19483d45970c5bf23a681e2dd2'] = 'Ecco un breve riepilogo del tuo ordine:';
-$_MODULE['<{bankwire}prestashop>payment_execution_e2867a925cba382f1436d1834bb52a1c'] = 'L\'importo totale del tuo ordine è';
-$_MODULE['<{bankwire}prestashop>payment_execution_a7a08622ee5c8019b57354b99b7693b2'] = 'Scegli una delle seguenti:';
-$_MODULE['<{bankwire}prestashop>payment_execution_93c1f9dffc8c38b2c108d449a9181d92'] = 'Conferma l\'ordine cliccando su \'confermo il mio ordine\'';
-$_MODULE['<{bankwire}prestashop>payment_return_b9a1cae09e5754424e33764777cfcaa0'] = 'Il tuo ordine verrà inviato non appena avremo ricevuto la tua transazione.';
-$_MODULE['<{bankwire}prestashop>bankwire_85ee0d0492a4e37e6c183520f5d59c40'] = 'Bonifico Bancario';
-$_MODULE['<{bankwire}prestashop>bankwire_c1be305030739396775edaca9813f77d'] = 'Questo modulo ti permette di accettare pagamenti tramite bonifico bancario.';
-$_MODULE['<{bankwire}prestashop>bankwire_3ec365dd533ddb7ef3d1c111186ce872'] = 'Dati';
-$_MODULE['<{bankwire}prestashop>bankwire_5fe24fbb39b58daacb7c7905ba6e3534'] = 'Come filiale della banca, codice IBAN, BIC, ecc';
-$_MODULE['<{bankwire}prestashop>payment_execution_1f87346a16cf80c372065de3c54c86d9'] = '(tasse incl.)';
-$_MODULE['<{bankwire}prestashop>payment_execution_b28be4c423d93e02081f4e79fe2434e8'] = 'Si accettano le valute diverse da inviare tramite bonifico bancario.';
-$_MODULE['<{bankwire}prestashop>payment_5e1695822fc5af98f6b749ea3cbc9b4c'] = 'Paga con bonifico bancario';
-$_MODULE['<{bankwire}prestashop>payment_return_88526efe38fd18179a127024aba8c1d7'] = 'Il tuo ordine su %s è completo.';
-$_MODULE['<{bankwire}prestashop>payment_return_1f8cdc30326f1f930b0c87b25fdac965'] = 'Inviaci un bonifico bancario con:';
-$_MODULE['<{bankwire}prestashop>payment_return_d717aa33e18263b8405ba00e94353cdc'] = 'con questi dati';
-$_MODULE['<{bankwire}prestashop>payment_return_984482eb9ff11e6310fef641d2268a2a'] = 'a questa banca';
-$_MODULE['<{bankwire}prestashop>payment_return_63fb3f7c94ee5d8027bf599885de279d'] = 'Non dimenticarti di inserire il tuo numero d\'ordine #%d nel campo oggetto del tuo bonifico.';
-$_MODULE['<{bankwire}prestashop>payment_return_1faa25b80a8d31e5ef25a78d3336606d'] = 'Non dimenticarti di inserire la tua referenza d\'ordine %s nel campo oggetto del tuo bonifico.';
-$_MODULE['<{bankwire}prestashop>payment_return_ca7e41a658753c87973936d7ce2429a8'] = 'Per eventuali domande o per ulteriori informazioni, contatta la nostra';
-$_MODULE['<{bankwire}prestashop>bankwire_c888438d14855d7d96a2724ee9c306bd'] = 'Impostazioni aggiornate';
-$_MODULE['<{bankwire}prestashop>validation_e2b7dec8fa4b498156dfee6e4c84b156'] = 'Questo metodo di pagamento non è disponibile.';
-$_MODULE['<{bankwire}prestashop>payment_execution_a854d894458d66d92cabf0411c499ef4'] = 'Accettiamo le seguente valute da inviare tramite bonifico bancario:';
-$_MODULE['<{bankwire}prestashop>payment_execution_569fd05bdafa1712c4f6be5b153b8418'] = 'Altri metodi di pagamento';
-$_MODULE['<{bankwire}prestashop>payment_return_d15feee53d81ea16269e54d4784fa123'] = 'Abbiamo notato un problema con il tuo ordine. Se pensi che sia un errore, puoi contattare il nostro';
-$_MODULE['<{bankwire}prestashop>payment_execution_baa62374832554652160fe5a827b2741'] = 'Confermo il mio ordine';
diff --git a/modules/blockadvertising/translations/de.php b/modules/blockadvertising/translations/de.php
deleted file mode 100644
index 427222f0c..000000000
--- a/modules/blockadvertising/translations/de.php
+++ /dev/null
@@ -1,17 +0,0 @@
-blockadvertising_6e7be6d836003f069c00cd217660913b'] = 'Werbeblock-Konfiguration';
-$_MODULE['<{blockadvertising}prestashop>blockadvertising_83b5a65e518c21ed0a5f2b383dd9b617'] = 'Bild löschen';
-$_MODULE['<{blockadvertising}prestashop>blockadvertising_56d9dfa26d7848a3fbcd2ae3091d38d9'] = 'Bild wird mit 155x163 gezeigt';
-$_MODULE['<{blockadvertising}prestashop>blockadvertising_b78a3223503896721cca1303f776159b'] = 'Titel';
-$_MODULE['<{blockadvertising}prestashop>blockadvertising_070e16b4f77b90e802f789b5be583cfa'] = 'Fehler bewegt hochgeladene Datei';
-$_MODULE['<{blockadvertising}prestashop>blockadvertising_a21056e22c4d62b400b5dd96dafe22a3'] = 'Sie können das Standardbild nicht entfernen (sondern Sie können es ändern)';
-$_MODULE['<{blockadvertising}prestashop>blockadvertising_ad3d06d03d94223fa652babc913de686'] = 'Bestätigen';
-$_MODULE['<{blockadvertising}prestashop>blockadvertising_fd4c71c948857cce596a69fbaea7426b'] = 'Werbeblock';
-$_MODULE['<{blockadvertising}prestashop>blockadvertising_91cd1ee56ea5324ff51578684a393a81'] = 'Fügt einen block für Werbeanzeigen hinzu';
-$_MODULE['<{blockadvertising}prestashop>blockadvertising_9dd7104e68d1b5f994264b9387c9d271'] = 'kein Bild';
-$_MODULE['<{blockadvertising}prestashop>blockadvertising_9ce38727cff004a058021a6c7351a74a'] = 'Bild-Link';
-$_MODULE['<{blockadvertising}prestashop>blockadvertising_8c38cf08a0d0a01bd44c682479432350'] = 'Bild ändern';
diff --git a/modules/blockadvertising/translations/en.php b/modules/blockadvertising/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/blockadvertising/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-blockadvertising_6e7be6d836003f069c00cd217660913b'] = 'Configuración del bloque de publicidad';
-$_MODULE['<{blockadvertising}prestashop>blockadvertising_83b5a65e518c21ed0a5f2b383dd9b617'] = 'Eliminar la imagen';
-$_MODULE['<{blockadvertising}prestashop>blockadvertising_56d9dfa26d7848a3fbcd2ae3091d38d9'] = 'La imagen se mostrará como 155x163.';
-$_MODULE['<{blockadvertising}prestashop>blockadvertising_b78a3223503896721cca1303f776159b'] = 'Título';
-$_MODULE['<{blockadvertising}prestashop>blockadvertising_070e16b4f77b90e802f789b5be583cfa'] = 'error al desplazar el fichero uploado';
-$_MODULE['<{blockadvertising}prestashop>blockadvertising_a21056e22c4d62b400b5dd96dafe22a3'] = 'No puede suprimir la imagen por defecto (pero puede cambiarla abajo) ';
-$_MODULE['<{blockadvertising}prestashop>blockadvertising_ad3d06d03d94223fa652babc913de686'] = 'Validar';
-$_MODULE['<{blockadvertising}prestashop>blockadvertising_fd4c71c948857cce596a69fbaea7426b'] = 'Bloque de publicidad';
-$_MODULE['<{blockadvertising}prestashop>blockadvertising_91cd1ee56ea5324ff51578684a393a81'] = 'Añadir un bloque para mostrar la publicidad';
-$_MODULE['<{blockadvertising}prestashop>blockadvertising_9dd7104e68d1b5f994264b9387c9d271'] = 'Ninguna imagen';
-$_MODULE['<{blockadvertising}prestashop>blockadvertising_9ce38727cff004a058021a6c7351a74a'] = 'Enlace de la imagen';
-$_MODULE['<{blockadvertising}prestashop>blockadvertising_8c38cf08a0d0a01bd44c682479432350'] = 'Cambiar de imagen:';
diff --git a/modules/blockadvertising/translations/fr.php b/modules/blockadvertising/translations/fr.php
deleted file mode 100644
index 2d04e3948..000000000
--- a/modules/blockadvertising/translations/fr.php
+++ /dev/null
@@ -1,17 +0,0 @@
-blockadvertising_83b5a65e518c21ed0a5f2b383dd9b617'] = 'Supprimer l\'image';
-$_MODULE['<{blockadvertising}prestashop>blockadvertising_6e7be6d836003f069c00cd217660913b'] = 'Configuration du bloc de publicité';
-$_MODULE['<{blockadvertising}prestashop>blockadvertising_56d9dfa26d7848a3fbcd2ae3091d38d9'] = 'L\'image sera affichée en 155x163.';
-$_MODULE['<{blockadvertising}prestashop>blockadvertising_b78a3223503896721cca1303f776159b'] = 'Titre';
-$_MODULE['<{blockadvertising}prestashop>blockadvertising_070e16b4f77b90e802f789b5be583cfa'] = 'Erreur de déplacement du fichier mis en ligne';
-$_MODULE['<{blockadvertising}prestashop>blockadvertising_a21056e22c4d62b400b5dd96dafe22a3'] = 'Vous ne pouvez pas supprimer l\'image par défaut (Mais vous pouvez la modifier ci-dessous)';
-$_MODULE['<{blockadvertising}prestashop>blockadvertising_ad3d06d03d94223fa652babc913de686'] = 'Valider';
-$_MODULE['<{blockadvertising}prestashop>blockadvertising_fd4c71c948857cce596a69fbaea7426b'] = 'Bloc publicité';
-$_MODULE['<{blockadvertising}prestashop>blockadvertising_91cd1ee56ea5324ff51578684a393a81'] = 'Ajoute un bloc affichant une publicité';
-$_MODULE['<{blockadvertising}prestashop>blockadvertising_9dd7104e68d1b5f994264b9387c9d271'] = 'pas d\'image';
-$_MODULE['<{blockadvertising}prestashop>blockadvertising_9ce38727cff004a058021a6c7351a74a'] = 'Lien de l\'image';
-$_MODULE['<{blockadvertising}prestashop>blockadvertising_8c38cf08a0d0a01bd44c682479432350'] = 'Changer l\'image';
diff --git a/modules/blockadvertising/translations/it.php b/modules/blockadvertising/translations/it.php
deleted file mode 100644
index 5cff5ec22..000000000
--- a/modules/blockadvertising/translations/it.php
+++ /dev/null
@@ -1,17 +0,0 @@
-blockadvertising_6e7be6d836003f069c00cd217660913b'] = 'Pubblicità blocco di configurazione';
-$_MODULE['<{blockadvertising}prestashop>blockadvertising_83b5a65e518c21ed0a5f2b383dd9b617'] = 'elimina l\'immagine';
-$_MODULE['<{blockadvertising}prestashop>blockadvertising_56d9dfa26d7848a3fbcd2ae3091d38d9'] = 'Immagine verrà visualizzata come 155x163.';
-$_MODULE['<{blockadvertising}prestashop>blockadvertising_b78a3223503896721cca1303f776159b'] = 'Titolo';
-$_MODULE['<{blockadvertising}prestashop>blockadvertising_070e16b4f77b90e802f789b5be583cfa'] = 'Errore sposta il file caricato';
-$_MODULE['<{blockadvertising}prestashop>blockadvertising_a21056e22c4d62b400b5dd96dafe22a3'] = 'Non puoi cancellare l\'immagine predefinita (ma puoi cambiarla sotto).';
-$_MODULE['<{blockadvertising}prestashop>blockadvertising_ad3d06d03d94223fa652babc913de686'] = 'Convalidare';
-$_MODULE['<{blockadvertising}prestashop>blockadvertising_fd4c71c948857cce596a69fbaea7426b'] = 'Blocco pubblicità';
-$_MODULE['<{blockadvertising}prestashop>blockadvertising_91cd1ee56ea5324ff51578684a393a81'] = 'Aggiunge un blocco per visualizzare un messaggio pubblicitario';
-$_MODULE['<{blockadvertising}prestashop>blockadvertising_9dd7104e68d1b5f994264b9387c9d271'] = 'nessuna immagine';
-$_MODULE['<{blockadvertising}prestashop>blockadvertising_9ce38727cff004a058021a6c7351a74a'] = 'Immagine Link';
-$_MODULE['<{blockadvertising}prestashop>blockadvertising_8c38cf08a0d0a01bd44c682479432350'] = 'Cambia immagine';
diff --git a/modules/blockbestsellers/translations/de.php b/modules/blockbestsellers/translations/de.php
deleted file mode 100644
index 8659ff17c..000000000
--- a/modules/blockbestsellers/translations/de.php
+++ /dev/null
@@ -1,22 +0,0 @@
-blockbestsellers-home_3cb29f0ccc5fd220a97df89dafe46290'] = 'Verkaufshits';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers_4f6db60ed6f1c8555648014427822faf'] = 'Block mit Verkaufshits des Shops hinzufügen';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers_b9f5c797ebbf55adccdd8539a65a0241'] = 'Deaktiviert';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers_3cb29f0ccc5fd220a97df89dafe46290'] = 'Verkaufshits';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers_f7be84d6809317a6eb0ff3823a936800'] = 'Momentan keine Verkaufshits';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers-home_d3da97e2d9aee5c8fbe03156ad051c99'] = 'Mehr';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers-home_eae99cd6a931f3553123420b16383812'] = 'Alle Verkaufshits';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers_53d61d1ac0507b1bd8cd99db8d64fb19'] = 'Block anzeigen, auch wenn kein Produkt verfügbar ist.';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers_c9cc8cce247e49bae79f15173ce97354'] = 'Speichern';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers_eae99cd6a931f3553123420b16383812'] = 'Alle Verkaufshits';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers-home_adc570b472f54d65d3b90b8cee8368a9'] = 'Momentan keine Verkaufshits';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers_ee520a08f4b3f527b11c4316aa399e84'] = 'Block Verkaufshits';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers_c888438d14855d7d96a2724ee9c306bd'] = 'Einstellungen aktualisiert';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Aktiviert';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers-home_4351cfebe4b61d8aa5efa1d020710005'] = 'Anzeigen';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers_f4f70727dc34561dfde1a3c529b6205c'] = 'Einstellungen';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers_41385d2dca40c2a2c7062ed7019a20be'] = 'Block immer anzeigen';
diff --git a/modules/blockbestsellers/translations/en.php b/modules/blockbestsellers/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/blockbestsellers/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-blockbestsellers-home_3cb29f0ccc5fd220a97df89dafe46290'] = 'Mejores ventas';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers_4f6db60ed6f1c8555648014427822faf'] = 'Añadir un bloque para mostrar las mejores ventas de la tienda';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers_b9f5c797ebbf55adccdd8539a65a0241'] = 'Desactivado';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers_3cb29f0ccc5fd220a97df89dafe46290'] = 'Mejores ventas';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers_f7be84d6809317a6eb0ff3823a936800'] = 'No hay productos más vendidos en este momento';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers-home_d3da97e2d9aee5c8fbe03156ad051c99'] = 'Más';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers-home_eae99cd6a931f3553123420b16383812'] = 'Los productos más vendidos';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers_53d61d1ac0507b1bd8cd99db8d64fb19'] = 'Mostrar este bloque aunque no haya productos disponibles';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers_c9cc8cce247e49bae79f15173ce97354'] = 'Guardar';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers_eae99cd6a931f3553123420b16383812'] = 'Los productos más vendidos';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers-home_adc570b472f54d65d3b90b8cee8368a9'] = 'No hay productos más vendidos en este momento';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers_ee520a08f4b3f527b11c4316aa399e84'] = 'Bloque de mejores ventas';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers_c888438d14855d7d96a2724ee9c306bd'] = 'Actualización realizada con éxito';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Activado';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers-home_4351cfebe4b61d8aa5efa1d020710005'] = 'Vista';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers_f4f70727dc34561dfde1a3c529b6205c'] = 'Configuración';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers_41385d2dca40c2a2c7062ed7019a20be'] = 'Mostrar este bloque siempre';
diff --git a/modules/blockbestsellers/translations/fr.php b/modules/blockbestsellers/translations/fr.php
deleted file mode 100644
index 796dff08c..000000000
--- a/modules/blockbestsellers/translations/fr.php
+++ /dev/null
@@ -1,22 +0,0 @@
-blockbestsellers-home_3cb29f0ccc5fd220a97df89dafe46290'] = 'Meilleures ventes';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers_4f6db60ed6f1c8555648014427822faf'] = 'Ajoute un bloc qui affiche les meilleures ventes de la boutique';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers_b9f5c797ebbf55adccdd8539a65a0241'] = 'Désactivé';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers_3cb29f0ccc5fd220a97df89dafe46290'] = 'Meilleures ventes';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers_f7be84d6809317a6eb0ff3823a936800'] = 'Pas encore de meilleure vente';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers-home_d3da97e2d9aee5c8fbe03156ad051c99'] = 'Plus d\'infos';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers-home_eae99cd6a931f3553123420b16383812'] = 'Toutes les meilleures ventes';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers_53d61d1ac0507b1bd8cd99db8d64fb19'] = 'Afficher ce bloc même si aucun produit disponible';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers_c9cc8cce247e49bae79f15173ce97354'] = 'Enregistrer';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers_eae99cd6a931f3553123420b16383812'] = 'Toutes les meilleures ventes';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers-home_adc570b472f54d65d3b90b8cee8368a9'] = 'Pas encore de meilleure vente';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers_ee520a08f4b3f527b11c4316aa399e84'] = 'Bloc meilleures ventes';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers_c888438d14855d7d96a2724ee9c306bd'] = 'Paramètres mis à jour';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Activé';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers_f4f70727dc34561dfde1a3c529b6205c'] = 'Paramètres';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers_41385d2dca40c2a2c7062ed7019a20be'] = 'Toujours afficher ce bloc';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers-home_4351cfebe4b61d8aa5efa1d020710005'] = 'Voir';
diff --git a/modules/blockbestsellers/translations/it.php b/modules/blockbestsellers/translations/it.php
deleted file mode 100644
index 01bc67714..000000000
--- a/modules/blockbestsellers/translations/it.php
+++ /dev/null
@@ -1,22 +0,0 @@
-blockbestsellers-home_3cb29f0ccc5fd220a97df89dafe46290'] = 'Migliori vendite';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers_4f6db60ed6f1c8555648014427822faf'] = 'Aggiungi un blocco che mostra le migliori vendite del negozio';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers_b9f5c797ebbf55adccdd8539a65a0241'] = 'Disattivato';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers_3cb29f0ccc5fd220a97df89dafe46290'] = 'Migliori vendite';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers_f7be84d6809317a6eb0ff3823a936800'] = 'Non ci sono migliori vendite in questo momento';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers-home_d3da97e2d9aee5c8fbe03156ad051c99'] = 'Più';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers-home_eae99cd6a931f3553123420b16383812'] = 'Tutte le migliori vendite';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers_53d61d1ac0507b1bd8cd99db8d64fb19'] = 'Mostra il blocco anche se nessun prodotto è disponibile.';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers_c9cc8cce247e49bae79f15173ce97354'] = 'Salva';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers_eae99cd6a931f3553123420b16383812'] = 'Tutte le migliori vendite';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers-home_adc570b472f54d65d3b90b8cee8368a9'] = 'Non ci sono migliori vendite in questo momento';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers_ee520a08f4b3f527b11c4316aa399e84'] = 'Blocco migliori vendite';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers_c888438d14855d7d96a2724ee9c306bd'] = 'Impostazioni aggiornate';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Attivato';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers-home_4351cfebe4b61d8aa5efa1d020710005'] = 'Visualizza';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers_f4f70727dc34561dfde1a3c529b6205c'] = 'Impostazioni';
-$_MODULE['<{blockbestsellers}prestashop>blockbestsellers_41385d2dca40c2a2c7062ed7019a20be'] = 'Visualizza sempre blocco';
diff --git a/modules/blockcart/translations/de.php b/modules/blockcart/translations/de.php
deleted file mode 100644
index 2e6a436ce..000000000
--- a/modules/blockcart/translations/de.php
+++ /dev/null
@@ -1,34 +0,0 @@
-blockcart_b9f5c797ebbf55adccdd8539a65a0241'] = 'Deaktiviert';
-$_MODULE['<{blockcart}prestashop>blockcart_e7a6ca4e744870d455a57b644f696457'] = 'Gratis!';
-$_MODULE['<{blockcart}prestashop>blockcart_a85eba4c6c699122b2bb1387ea4813ad'] = 'Warenkorb';
-$_MODULE['<{blockcart}prestashop>blockcart_09dc02ecbb078868a3a86dded030076d'] = 'Keine Produkte';
-$_MODULE['<{blockcart}prestashop>blockcart_ea9cf7e47ff33b2be14e6dd07cbcefc6'] = 'Versand';
-$_MODULE['<{blockcart}prestashop>blockcart_96b0141273eabab320119c467cdcaf17'] = 'Insgesamt';
-$_MODULE['<{blockcart}prestashop>blockcart_c2e1362a9710a3dd86f937c2ea1f336d'] = 'Block Warenkorb';
-$_MODULE['<{blockcart}prestashop>blockcart_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Aktiviert';
-$_MODULE['<{blockcart}prestashop>blockcart_0da4d96cad73748e2f608d31cfb3247c'] = 'dieses Produkt aus meinem Warenkorb entfernen';
-$_MODULE['<{blockcart}prestashop>blockcart_068f80c7519d0528fb08e82137a72131'] = 'Produkte';
-$_MODULE['<{blockcart}prestashop>blockcart_4b7d496eedb665d0b5f589f2f874e7cb'] = 'Produkt-Detail';
-$_MODULE['<{blockcart}prestashop>blockcart_3d9e3bae9905a12dae384918ed117a26'] = 'Anpassung #%d:';
-$_MODULE['<{blockcart}prestashop>blockcart_3c5a90ab81573c044caffb847d9157f6'] = 'Preise zzgl. MwSt.';
-$_MODULE['<{blockcart}prestashop>blockcart_e03093a5753b436ee1de63b6e3e1bd02'] = 'Fügt einen Block mit dem Warenkorb des Kunden hinzu';
-$_MODULE['<{blockcart}prestashop>blockcart_eb4ae207521bbe6403f7fe9564d38cda'] = 'Ajax: ungültige Wahl.';
-$_MODULE['<{blockcart}prestashop>blockcart_c888438d14855d7d96a2724ee9c306bd'] = 'Einstellungen aktualisiert';
-$_MODULE['<{blockcart}prestashop>blockcart_614a8820aa4ac08ce2ee398a41b10778'] = 'Ajax-Warenkorb';
-$_MODULE['<{blockcart}prestashop>blockcart_20351b3328c35ab617549920f5cb4939'] = 'Benutzereinstellung Nr.';
-$_MODULE['<{blockcart}prestashop>blockcart_4b78ac8eb158840e9638a3aeb26c4a9d'] = 'Steuer';
-$_MODULE['<{blockcart}prestashop>blockcart_52a1f8f55ec919087809ef31b72c31c8'] = 'Preise inkl. MwSt.';
-$_MODULE['<{blockcart}prestashop>blockcart_f4f70727dc34561dfde1a3c529b6205c'] = 'Einstellungen';
-$_MODULE['<{blockcart}prestashop>blockcart_dba281afb9a38e654ea9dab4cd6cb0ca'] = 'Ajax-Modus für Warenkorb aktivieren (kompatibel mit Standardthema)';
-$_MODULE['<{blockcart}prestashop>blockcart_c9cc8cce247e49bae79f15173ce97354'] = 'Speichern';
-$_MODULE['<{blockcart}prestashop>blockcart_c6995d6cc084c192bc2e742f052a5c74'] = 'Kostenloser Versand';
-$_MODULE['<{blockcart}prestashop>blockcart_f2a6c498fb90ee345d997f888fce3b18'] = 'Löschen';
-$_MODULE['<{blockcart}prestashop>blockcart_deb10517653c255364175796ace3553f'] = 'Produkt';
-$_MODULE['<{blockcart}prestashop>blockcart_9e65b51e82f2a9b9f72ebe3e083582bb'] = '(Leer)';
-$_MODULE['<{blockcart}prestashop>blockcart_ba794350deb07c0c96fe73bd12239059'] = 'Verpackung';
-$_MODULE['<{blockcart}prestashop>blockcart_6ff063fbc860a79759a7369ac32cee22'] = 'KAUFEN';
diff --git a/modules/blockcart/translations/en.php b/modules/blockcart/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/blockcart/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-blockcart_b9f5c797ebbf55adccdd8539a65a0241'] = 'Desactivado';
-$_MODULE['<{blockcart}prestashop>blockcart_e7a6ca4e744870d455a57b644f696457'] = '¡Gratis!';
-$_MODULE['<{blockcart}prestashop>blockcart_a85eba4c6c699122b2bb1387ea4813ad'] = 'carrito';
-$_MODULE['<{blockcart}prestashop>blockcart_09dc02ecbb078868a3a86dded030076d'] = 'No hay productos';
-$_MODULE['<{blockcart}prestashop>blockcart_ea9cf7e47ff33b2be14e6dd07cbcefc6'] = 'Transporte';
-$_MODULE['<{blockcart}prestashop>blockcart_96b0141273eabab320119c467cdcaf17'] = 'Total';
-$_MODULE['<{blockcart}prestashop>blockcart_c2e1362a9710a3dd86f937c2ea1f336d'] = 'Carrito';
-$_MODULE['<{blockcart}prestashop>blockcart_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Activado';
-$_MODULE['<{blockcart}prestashop>blockcart_0da4d96cad73748e2f608d31cfb3247c'] = 'eliminar este producto de mi carrito';
-$_MODULE['<{blockcart}prestashop>blockcart_068f80c7519d0528fb08e82137a72131'] = 'productos';
-$_MODULE['<{blockcart}prestashop>blockcart_4b7d496eedb665d0b5f589f2f874e7cb'] = 'Detalle producto';
-$_MODULE['<{blockcart}prestashop>blockcart_3d9e3bae9905a12dae384918ed117a26'] = 'Personalización n°%d:';
-$_MODULE['<{blockcart}prestashop>blockcart_3c5a90ab81573c044caffb847d9157f6'] = 'Estos precios se entienden sin IVA';
-$_MODULE['<{blockcart}prestashop>blockcart_e03093a5753b436ee1de63b6e3e1bd02'] = 'Añadir un bloque que contenga el carrito de compra del cliente';
-$_MODULE['<{blockcart}prestashop>blockcart_eb4ae207521bbe6403f7fe9564d38cda'] = 'Ajax: opción incorrecta.';
-$_MODULE['<{blockcart}prestashop>blockcart_c888438d14855d7d96a2724ee9c306bd'] = 'Actualización realizada con éxito';
-$_MODULE['<{blockcart}prestashop>blockcart_614a8820aa4ac08ce2ee398a41b10778'] = 'Carrito Ajax';
-$_MODULE['<{blockcart}prestashop>blockcart_20351b3328c35ab617549920f5cb4939'] = 'Personalización n°';
-$_MODULE['<{blockcart}prestashop>blockcart_52a1f8f55ec919087809ef31b72c31c8'] = 'Estos precios se entienden IVA incluído';
-$_MODULE['<{blockcart}prestashop>blockcart_4b78ac8eb158840e9638a3aeb26c4a9d'] = 'Impuestos';
-$_MODULE['<{blockcart}prestashop>blockcart_f4f70727dc34561dfde1a3c529b6205c'] = 'Configuración';
-$_MODULE['<{blockcart}prestashop>blockcart_dba281afb9a38e654ea9dab4cd6cb0ca'] = 'Modo AJAX para el carrito (compatible con el tema por defecto)';
-$_MODULE['<{blockcart}prestashop>blockcart_c9cc8cce247e49bae79f15173ce97354'] = 'Guardar';
-$_MODULE['<{blockcart}prestashop>blockcart_c6995d6cc084c192bc2e742f052a5c74'] = 'Envío gratuito!';
-$_MODULE['<{blockcart}prestashop>blockcart_f2a6c498fb90ee345d997f888fce3b18'] = 'Eliminar';
-$_MODULE['<{blockcart}prestashop>blockcart_deb10517653c255364175796ace3553f'] = 'producto';
-$_MODULE['<{blockcart}prestashop>blockcart_9e65b51e82f2a9b9f72ebe3e083582bb'] = 'vacío';
-$_MODULE['<{blockcart}prestashop>blockcart_ba794350deb07c0c96fe73bd12239059'] = 'Embalaje';
-$_MODULE['<{blockcart}prestashop>blockcart_6ff063fbc860a79759a7369ac32cee22'] = 'Confirmar';
-$_MODULE['<{blockcart}prestashop>blockcart_0c3bf3014aafb90201805e45b5e62881'] = 'Ver mi carrito de compra';
diff --git a/modules/blockcart/translations/fr.php b/modules/blockcart/translations/fr.php
deleted file mode 100644
index 1b467eb2e..000000000
--- a/modules/blockcart/translations/fr.php
+++ /dev/null
@@ -1,35 +0,0 @@
-blockcart_b9f5c797ebbf55adccdd8539a65a0241'] = 'Désactivé';
-$_MODULE['<{blockcart}prestashop>blockcart_e7a6ca4e744870d455a57b644f696457'] = 'Gratuit !';
-$_MODULE['<{blockcart}prestashop>blockcart_a85eba4c6c699122b2bb1387ea4813ad'] = 'Panier';
-$_MODULE['<{blockcart}prestashop>blockcart_09dc02ecbb078868a3a86dded030076d'] = 'Aucun produit';
-$_MODULE['<{blockcart}prestashop>blockcart_ea9cf7e47ff33b2be14e6dd07cbcefc6'] = 'Expédition';
-$_MODULE['<{blockcart}prestashop>blockcart_96b0141273eabab320119c467cdcaf17'] = 'Total';
-$_MODULE['<{blockcart}prestashop>blockcart_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Activé';
-$_MODULE['<{blockcart}prestashop>blockcart_0da4d96cad73748e2f608d31cfb3247c'] = 'supprimer cet article du panier';
-$_MODULE['<{blockcart}prestashop>blockcart_068f80c7519d0528fb08e82137a72131'] = 'articles';
-$_MODULE['<{blockcart}prestashop>blockcart_3d9e3bae9905a12dae384918ed117a26'] = 'Personnalisation n°%d :';
-$_MODULE['<{blockcart}prestashop>blockcart_3c5a90ab81573c044caffb847d9157f6'] = 'Les prix sont HT';
-$_MODULE['<{blockcart}prestashop>blockcart_c2e1362a9710a3dd86f937c2ea1f336d'] = 'Bloc panier';
-$_MODULE['<{blockcart}prestashop>blockcart_4b7d496eedb665d0b5f589f2f874e7cb'] = 'Détails de l\'article';
-$_MODULE['<{blockcart}prestashop>blockcart_c888438d14855d7d96a2724ee9c306bd'] = 'Paramètres mis à jour';
-$_MODULE['<{blockcart}prestashop>blockcart_614a8820aa4ac08ce2ee398a41b10778'] = 'Panier Ajax';
-$_MODULE['<{blockcart}prestashop>blockcart_20351b3328c35ab617549920f5cb4939'] = 'Personnalisation n°';
-$_MODULE['<{blockcart}prestashop>blockcart_4b78ac8eb158840e9638a3aeb26c4a9d'] = 'Taxes';
-$_MODULE['<{blockcart}prestashop>blockcart_52a1f8f55ec919087809ef31b72c31c8'] = 'Les prix sont TTC';
-$_MODULE['<{blockcart}prestashop>blockcart_e03093a5753b436ee1de63b6e3e1bd02'] = 'Ajoute un bloc avec le contenu du panier du client';
-$_MODULE['<{blockcart}prestashop>blockcart_eb4ae207521bbe6403f7fe9564d38cda'] = 'Ajax : choix non valable.';
-$_MODULE['<{blockcart}prestashop>blockcart_f4f70727dc34561dfde1a3c529b6205c'] = 'Paramètres';
-$_MODULE['<{blockcart}prestashop>blockcart_dba281afb9a38e654ea9dab4cd6cb0ca'] = 'Activer le mode Ajax du panier (compatible avec le thème par défaut)';
-$_MODULE['<{blockcart}prestashop>blockcart_c9cc8cce247e49bae79f15173ce97354'] = 'Enregistrer';
-$_MODULE['<{blockcart}prestashop>blockcart_c6995d6cc084c192bc2e742f052a5c74'] = 'Livraison gratuite !';
-$_MODULE['<{blockcart}prestashop>blockcart_f2a6c498fb90ee345d997f888fce3b18'] = 'Supprimer';
-$_MODULE['<{blockcart}prestashop>blockcart_deb10517653c255364175796ace3553f'] = 'article';
-$_MODULE['<{blockcart}prestashop>blockcart_9e65b51e82f2a9b9f72ebe3e083582bb'] = '(vide)';
-$_MODULE['<{blockcart}prestashop>blockcart_ba794350deb07c0c96fe73bd12239059'] = 'Emballage';
-$_MODULE['<{blockcart}prestashop>blockcart_6ff063fbc860a79759a7369ac32cee22'] = 'Commander';
-$_MODULE['<{blockcart}prestashop>blockcart_0c3bf3014aafb90201805e45b5e62881'] = 'Voir mon panier';
diff --git a/modules/blockcart/translations/it.php b/modules/blockcart/translations/it.php
deleted file mode 100644
index d5de08b06..000000000
--- a/modules/blockcart/translations/it.php
+++ /dev/null
@@ -1,34 +0,0 @@
-blockcart_b9f5c797ebbf55adccdd8539a65a0241'] = 'Disattivato';
-$_MODULE['<{blockcart}prestashop>blockcart_e7a6ca4e744870d455a57b644f696457'] = 'Gratis!';
-$_MODULE['<{blockcart}prestashop>blockcart_a85eba4c6c699122b2bb1387ea4813ad'] = 'Carrello';
-$_MODULE['<{blockcart}prestashop>blockcart_09dc02ecbb078868a3a86dded030076d'] = 'Nessun prodotto';
-$_MODULE['<{blockcart}prestashop>blockcart_ea9cf7e47ff33b2be14e6dd07cbcefc6'] = 'Spedizione';
-$_MODULE['<{blockcart}prestashop>blockcart_96b0141273eabab320119c467cdcaf17'] = 'Totale';
-$_MODULE['<{blockcart}prestashop>blockcart_c2e1362a9710a3dd86f937c2ea1f336d'] = 'Blocco carrello';
-$_MODULE['<{blockcart}prestashop>blockcart_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Attivato';
-$_MODULE['<{blockcart}prestashop>blockcart_0da4d96cad73748e2f608d31cfb3247c'] = 'rimuovi questo prodotto dal mio carrello';
-$_MODULE['<{blockcart}prestashop>blockcart_068f80c7519d0528fb08e82137a72131'] = 'prodotti';
-$_MODULE['<{blockcart}prestashop>blockcart_4b7d496eedb665d0b5f589f2f874e7cb'] = 'Dettaglio prodotto';
-$_MODULE['<{blockcart}prestashop>blockcart_3d9e3bae9905a12dae384918ed117a26'] = 'Personalizzazione #%d:';
-$_MODULE['<{blockcart}prestashop>blockcart_3c5a90ab81573c044caffb847d9157f6'] = 'I prezzi sono IVA esclusa';
-$_MODULE['<{blockcart}prestashop>blockcart_e03093a5753b436ee1de63b6e3e1bd02'] = 'Aggiunge un blocco contenente il carrello del cliente';
-$_MODULE['<{blockcart}prestashop>blockcart_eb4ae207521bbe6403f7fe9564d38cda'] = 'Ajax: scelta non valida.';
-$_MODULE['<{blockcart}prestashop>blockcart_c888438d14855d7d96a2724ee9c306bd'] = 'Impostazioni aggiornate';
-$_MODULE['<{blockcart}prestashop>blockcart_614a8820aa4ac08ce2ee398a41b10778'] = 'Carrello Ajax';
-$_MODULE['<{blockcart}prestashop>blockcart_20351b3328c35ab617549920f5cb4939'] = 'Personalizzazione n.';
-$_MODULE['<{blockcart}prestashop>blockcart_4b78ac8eb158840e9638a3aeb26c4a9d'] = 'Tasse';
-$_MODULE['<{blockcart}prestashop>blockcart_52a1f8f55ec919087809ef31b72c31c8'] = 'I prezzi sono IVA inclusa';
-$_MODULE['<{blockcart}prestashop>blockcart_f4f70727dc34561dfde1a3c529b6205c'] = 'Impostazioni';
-$_MODULE['<{blockcart}prestashop>blockcart_dba281afb9a38e654ea9dab4cd6cb0ca'] = 'Attivare la modalità di AJAX per il carrello (compatibile con il tema di default)';
-$_MODULE['<{blockcart}prestashop>blockcart_c9cc8cce247e49bae79f15173ce97354'] = 'Salva';
-$_MODULE['<{blockcart}prestashop>blockcart_c6995d6cc084c192bc2e742f052a5c74'] = 'Spedizione gratuita!';
-$_MODULE['<{blockcart}prestashop>blockcart_f2a6c498fb90ee345d997f888fce3b18'] = 'Elimina';
-$_MODULE['<{blockcart}prestashop>blockcart_deb10517653c255364175796ace3553f'] = 'prodotto';
-$_MODULE['<{blockcart}prestashop>blockcart_9e65b51e82f2a9b9f72ebe3e083582bb'] = '(vuoto)';
-$_MODULE['<{blockcart}prestashop>blockcart_ba794350deb07c0c96fe73bd12239059'] = 'Imballaggio';
-$_MODULE['<{blockcart}prestashop>blockcart_6ff063fbc860a79759a7369ac32cee22'] = 'Check out';
diff --git a/modules/blockcategories/translations/de.php b/modules/blockcategories/translations/de.php
deleted file mode 100644
index 5eec59cf1..000000000
--- a/modules/blockcategories/translations/de.php
+++ /dev/null
@@ -1,27 +0,0 @@
-blockcategories_8f0ed7c57fca428f7e3f8e64d2f00918'] = 'Blockkategorien';
-$_MODULE['<{blockcategories}prestashop>blockcategories_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Aktiviert';
-$_MODULE['<{blockcategories}prestashop>blockcategories_e16f248b047fb7d0c97dcc19b17296a3'] = 'Dynamischen Modus für Unterkategorien aktivieren';
-$_MODULE['<{blockcategories}prestashop>blockcategories_883f0bd41a4fcee55680446ce7bec0d9'] = 'Nach Position';
-$_MODULE['<{blockcategories}prestashop>blockcategories_54e4f98fb34254a6678f0795476811ed'] = 'Nach Name';
-$_MODULE['<{blockcategories}prestashop>blockcategories_e3cf5ac19407b1a62c6fccaff675a53b'] = 'Abwärts';
-$_MODULE['<{blockcategories}prestashop>blockcategories_footer_af1b98adf7f686b84cd0b443e022b7a0'] = 'Kategorien';
-$_MODULE['<{blockcategories}prestashop>blockcategories_15a6f5841d9e4d7e62bec3319b4b7036'] = 'Fügt einen Block mit Produktkategorien hinzu';
-$_MODULE['<{blockcategories}prestashop>blockcategories_c888438d14855d7d96a2724ee9c306bd'] = 'Einstellungen aktualisiert';
-$_MODULE['<{blockcategories}prestashop>blockcategories_6b46ae48421828d9973deec5fa9aa0c3'] = 'Sortieren';
-$_MODULE['<{blockcategories}prestashop>blockcategories_d5e74c74b1457c285adc8b2c2ab03767'] = 'Anzahl der Footerspalten';
-$_MODULE['<{blockcategories}prestashop>blockcategories_23e0d4ecc25de9b2777fdaca3e2f3193'] = 'Maximale Tiefe: Ungültige Zahl.';
-$_MODULE['<{blockcategories}prestashop>blockcategories_0cf328636f0d607ac24a5c435866b94b'] = 'Dynamisches HTML: Ungültige Wahl';
-$_MODULE['<{blockcategories}prestashop>blockcategories_f4f70727dc34561dfde1a3c529b6205c'] = 'Einstellungen';
-$_MODULE['<{blockcategories}prestashop>blockcategories_19561e33450d1d3dfe6af08df5710dd0'] = 'Maximale Tiefe';
-$_MODULE['<{blockcategories}prestashop>blockcategories_ef35cd8f1058f29151991e9ca94b36fb'] = 'Einstellung der maximalen Tiefe der Unterkategorien, die in diesem Block angezeigt werden (0 = unendlich)';
-$_MODULE['<{blockcategories}prestashop>blockcategories_b9f5c797ebbf55adccdd8539a65a0241'] = 'Deaktiviert';
-$_MODULE['<{blockcategories}prestashop>blockcategories_cf3fb1ff52ea1eed3347ac5401ee7f0c'] = 'Aufwärts';
-$_MODULE['<{blockcategories}prestashop>blockcategories_971fd8cc345d8bd9f92e9f7d88fdf20c'] = 'Dynamisch';
-$_MODULE['<{blockcategories}prestashop>blockcategories_5f73e737cedf8f4ccf880473a7823005'] = 'Anzahl der Footerspalten';
-$_MODULE['<{blockcategories}prestashop>blockcategories_c9cc8cce247e49bae79f15173ce97354'] = 'Speichern';
-$_MODULE['<{blockcategories}prestashop>blockcategories_af1b98adf7f686b84cd0b443e022b7a0'] = 'Kategorien';
diff --git a/modules/blockcategories/translations/en.php b/modules/blockcategories/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/blockcategories/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-blockcategories_8f0ed7c57fca428f7e3f8e64d2f00918'] = 'Bloque de categorías';
-$_MODULE['<{blockcategories}prestashop>blockcategories_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Activado';
-$_MODULE['<{blockcategories}prestashop>blockcategories_e16f248b047fb7d0c97dcc19b17296a3'] = 'Modo dinámico activado (animado) para los subniveles';
-$_MODULE['<{blockcategories}prestashop>blockcategories_883f0bd41a4fcee55680446ce7bec0d9'] = 'Por posición';
-$_MODULE['<{blockcategories}prestashop>blockcategories_54e4f98fb34254a6678f0795476811ed'] = 'Por nombre';
-$_MODULE['<{blockcategories}prestashop>blockcategories_e3cf5ac19407b1a62c6fccaff675a53b'] = 'Descendente';
-$_MODULE['<{blockcategories}prestashop>blockcategories_footer_af1b98adf7f686b84cd0b443e022b7a0'] = 'Categorías';
-$_MODULE['<{blockcategories}prestashop>blockcategories_15a6f5841d9e4d7e62bec3319b4b7036'] = 'Añdir un bloque que ofrezca categorías de productos';
-$_MODULE['<{blockcategories}prestashop>blockcategories_c888438d14855d7d96a2724ee9c306bd'] = 'Actualización realizada con éxito';
-$_MODULE['<{blockcategories}prestashop>blockcategories_6b46ae48421828d9973deec5fa9aa0c3'] = 'Orden';
-$_MODULE['<{blockcategories}prestashop>blockcategories_d5e74c74b1457c285adc8b2c2ab03767'] = 'Determina el número de columnas para el footer';
-$_MODULE['<{blockcategories}prestashop>blockcategories_23e0d4ecc25de9b2777fdaca3e2f3193'] = 'Nivel máximo: Número incorrecto';
-$_MODULE['<{blockcategories}prestashop>blockcategories_0cf328636f0d607ac24a5c435866b94b'] = 'HTML dinámico: opción no válida';
-$_MODULE['<{blockcategories}prestashop>blockcategories_f4f70727dc34561dfde1a3c529b6205c'] = 'Configuración';
-$_MODULE['<{blockcategories}prestashop>blockcategories_19561e33450d1d3dfe6af08df5710dd0'] = 'Nivel máximo';
-$_MODULE['<{blockcategories}prestashop>blockcategories_ef35cd8f1058f29151991e9ca94b36fb'] = 'Seleccione el nivel máximo de subniveles a mostrar en este bloque (0=infinito)';
-$_MODULE['<{blockcategories}prestashop>blockcategories_b9f5c797ebbf55adccdd8539a65a0241'] = 'Desactivado';
-$_MODULE['<{blockcategories}prestashop>blockcategories_cf3fb1ff52ea1eed3347ac5401ee7f0c'] = 'Ascendente';
-$_MODULE['<{blockcategories}prestashop>blockcategories_971fd8cc345d8bd9f92e9f7d88fdf20c'] = 'Dinámico';
-$_MODULE['<{blockcategories}prestashop>blockcategories_5f73e737cedf8f4ccf880473a7823005'] = 'Número de columnas para el footer';
-$_MODULE['<{blockcategories}prestashop>blockcategories_c9cc8cce247e49bae79f15173ce97354'] = 'Guardar';
-$_MODULE['<{blockcategories}prestashop>blockcategories_af1b98adf7f686b84cd0b443e022b7a0'] = 'Categorías';
diff --git a/modules/blockcategories/translations/fr.php b/modules/blockcategories/translations/fr.php
deleted file mode 100644
index e82b1ce9b..000000000
--- a/modules/blockcategories/translations/fr.php
+++ /dev/null
@@ -1,27 +0,0 @@
-blockcategories_8f0ed7c57fca428f7e3f8e64d2f00918'] = 'Bloc catégories';
-$_MODULE['<{blockcategories}prestashop>blockcategories_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Activé';
-$_MODULE['<{blockcategories}prestashop>blockcategories_e16f248b047fb7d0c97dcc19b17296a3'] = 'Activer l\'arbre dynamique (animé)';
-$_MODULE['<{blockcategories}prestashop>blockcategories_883f0bd41a4fcee55680446ce7bec0d9'] = 'par position';
-$_MODULE['<{blockcategories}prestashop>blockcategories_54e4f98fb34254a6678f0795476811ed'] = 'par nom';
-$_MODULE['<{blockcategories}prestashop>blockcategories_e3cf5ac19407b1a62c6fccaff675a53b'] = 'décroissant';
-$_MODULE['<{blockcategories}prestashop>blockcategories_footer_af1b98adf7f686b84cd0b443e022b7a0'] = 'Catégories';
-$_MODULE['<{blockcategories}prestashop>blockcategories_15a6f5841d9e4d7e62bec3319b4b7036'] = 'Ajoute un bloc proposant une navigation au sein de vos catégories de produits';
-$_MODULE['<{blockcategories}prestashop>blockcategories_c888438d14855d7d96a2724ee9c306bd'] = 'Paramètres mis à jour';
-$_MODULE['<{blockcategories}prestashop>blockcategories_6b46ae48421828d9973deec5fa9aa0c3'] = 'Trier';
-$_MODULE['<{blockcategories}prestashop>blockcategories_d5e74c74b1457c285adc8b2c2ab03767'] = 'Détermine le nombre de colonne pour le footer';
-$_MODULE['<{blockcategories}prestashop>blockcategories_23e0d4ecc25de9b2777fdaca3e2f3193'] = 'Profondeur maximum : nombre invalide';
-$_MODULE['<{blockcategories}prestashop>blockcategories_0cf328636f0d607ac24a5c435866b94b'] = 'Dynamic HTML : choix invalide';
-$_MODULE['<{blockcategories}prestashop>blockcategories_f4f70727dc34561dfde1a3c529b6205c'] = 'Paramètres';
-$_MODULE['<{blockcategories}prestashop>blockcategories_19561e33450d1d3dfe6af08df5710dd0'] = 'Profondeur maximum';
-$_MODULE['<{blockcategories}prestashop>blockcategories_b9f5c797ebbf55adccdd8539a65a0241'] = 'Désactivé';
-$_MODULE['<{blockcategories}prestashop>blockcategories_cf3fb1ff52ea1eed3347ac5401ee7f0c'] = 'croissant';
-$_MODULE['<{blockcategories}prestashop>blockcategories_ef35cd8f1058f29151991e9ca94b36fb'] = 'Détermine la profondeur maximale affichée (0 = infinie)';
-$_MODULE['<{blockcategories}prestashop>blockcategories_971fd8cc345d8bd9f92e9f7d88fdf20c'] = 'Dynamique';
-$_MODULE['<{blockcategories}prestashop>blockcategories_5f73e737cedf8f4ccf880473a7823005'] = 'Nombre de colonnes pour le pied de page';
-$_MODULE['<{blockcategories}prestashop>blockcategories_c9cc8cce247e49bae79f15173ce97354'] = 'Enregistrer';
-$_MODULE['<{blockcategories}prestashop>blockcategories_af1b98adf7f686b84cd0b443e022b7a0'] = 'Catégories';
diff --git a/modules/blockcategories/translations/it.php b/modules/blockcategories/translations/it.php
deleted file mode 100644
index 8efe0310c..000000000
--- a/modules/blockcategories/translations/it.php
+++ /dev/null
@@ -1,27 +0,0 @@
-blockcategories_8f0ed7c57fca428f7e3f8e64d2f00918'] = 'Blocco categorie';
-$_MODULE['<{blockcategories}prestashop>blockcategories_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Attivato';
-$_MODULE['<{blockcategories}prestashop>blockcategories_e16f248b047fb7d0c97dcc19b17296a3'] = 'Attiva modalità dinamica (animato) per sottolivelli';
-$_MODULE['<{blockcategories}prestashop>blockcategories_883f0bd41a4fcee55680446ce7bec0d9'] = 'per Posizione';
-$_MODULE['<{blockcategories}prestashop>blockcategories_54e4f98fb34254a6678f0795476811ed'] = 'per Nome';
-$_MODULE['<{blockcategories}prestashop>blockcategories_e3cf5ac19407b1a62c6fccaff675a53b'] = 'Descrescente';
-$_MODULE['<{blockcategories}prestashop>blockcategories_footer_af1b98adf7f686b84cd0b443e022b7a0'] = 'Categorie';
-$_MODULE['<{blockcategories}prestashop>blockcategories_15a6f5841d9e4d7e62bec3319b4b7036'] = 'Aggiunge un blocco con le categorie di prodotto';
-$_MODULE['<{blockcategories}prestashop>blockcategories_c888438d14855d7d96a2724ee9c306bd'] = 'Impostazioni aggiornate';
-$_MODULE['<{blockcategories}prestashop>blockcategories_6b46ae48421828d9973deec5fa9aa0c3'] = 'Ordina';
-$_MODULE['<{blockcategories}prestashop>blockcategories_d5e74c74b1457c285adc8b2c2ab03767'] = 'Imposta il numero di colonne del footer';
-$_MODULE['<{blockcategories}prestashop>blockcategories_23e0d4ecc25de9b2777fdaca3e2f3193'] = 'Profondità massima: numero non valido.';
-$_MODULE['<{blockcategories}prestashop>blockcategories_0cf328636f0d607ac24a5c435866b94b'] = 'HTML dinamico: scelta non valida.';
-$_MODULE['<{blockcategories}prestashop>blockcategories_f4f70727dc34561dfde1a3c529b6205c'] = 'Impostazioni';
-$_MODULE['<{blockcategories}prestashop>blockcategories_19561e33450d1d3dfe6af08df5710dd0'] = 'Profondità massima';
-$_MODULE['<{blockcategories}prestashop>blockcategories_ef35cd8f1058f29151991e9ca94b36fb'] = 'Imposta la profondità massima di sottolivelli visualizzati in questo blocco (0 = infinito)';
-$_MODULE['<{blockcategories}prestashop>blockcategories_b9f5c797ebbf55adccdd8539a65a0241'] = 'Disattivato';
-$_MODULE['<{blockcategories}prestashop>blockcategories_cf3fb1ff52ea1eed3347ac5401ee7f0c'] = 'Crescente';
-$_MODULE['<{blockcategories}prestashop>blockcategories_971fd8cc345d8bd9f92e9f7d88fdf20c'] = 'Dinamico';
-$_MODULE['<{blockcategories}prestashop>blockcategories_5f73e737cedf8f4ccf880473a7823005'] = 'Numero di colonne del footer';
-$_MODULE['<{blockcategories}prestashop>blockcategories_c9cc8cce247e49bae79f15173ce97354'] = 'Salva';
-$_MODULE['<{blockcategories}prestashop>blockcategories_af1b98adf7f686b84cd0b443e022b7a0'] = 'Categorie';
diff --git a/modules/blockcms/translations/de.php b/modules/blockcms/translations/de.php
deleted file mode 100644
index cee47ea2b..000000000
--- a/modules/blockcms/translations/de.php
+++ /dev/null
@@ -1,70 +0,0 @@
-blockcms_cd275312651aebf8cbbb8d3bb1c086ae'] = 'CMS-Block';
-$_MODULE['<{blockcms}prestashop>blockcms_cdca12007979fc49008fd125cdb775fc'] = 'Fügt einen Block mit mehreren CMS-Links hinzu';
-$_MODULE['<{blockcms}prestashop>blockcms_97390dd0b5ba7867120aee2ff22bfa38'] = 'CMS-Block-Konfiguration';
-$_MODULE['<{blockcms}prestashop>blockcms_94ff014237f6f5cbf5c3655f5ef513c9'] = 'CMS Blöcke:';
-$_MODULE['<{blockcms}prestashop>blockcms_51b274d417210e74d2cfe9e0713602f2'] = 'Wenn Sie dieses Feld leer lassen, übernimmt der Blockname den Kategorienamen';
-$_MODULE['<{blockcms}prestashop>blockcms_fca0206c8afc8d67969f9aec20e3287e'] = 'Kategorie CMS';
-$_MODULE['<{blockcms}prestashop>blockcms_abf9012e9560b3c44a536f5c4a2a0b62'] = 'Lager';
-$_MODULE['<{blockcms}prestashop>blockcms_945d5e233cf7d6240f6b783b36a374ff'] = 'Links';
-$_MODULE['<{blockcms}prestashop>blockcms_5e2b11203c9a4ac0ec01e7bb31e256f6'] = 'Shops anzeigen';
-$_MODULE['<{blockcms}prestashop>blockcms_bafd7322c6e97d25b6299b5d6fe8920b'] = 'Nein';
-$_MODULE['<{blockcms}prestashop>blockcms_8537cb2cf041c2243fef92931ed93b90'] = '\\"Unsere Shops\\" anzeigen am Ende des Blocks';
-$_MODULE['<{blockcms}prestashop>blockcms_55737e084beaa370a127f3f031f1932e'] = 'CMS Inhalt:';
-$_MODULE['<{blockcms}prestashop>blockcms_7125483712689cd7a6f85b466a8a7632'] = 'Blockname ist zu lang';
-$_MODULE['<{blockcms}prestashop>blockcms_a419b919d146d5db83f22d375d329a59'] = 'Ungültige Aktivierung Fußzeile';
-$_MODULE['<{blockcms}prestashop>blockcms_238cadc4d64e9b144c10ee409835ee34'] = 'Versucht einen nicht vorhandenen CMS-Block zu löschen';
-$_MODULE['<{blockcms}prestashop>blockcms_c28716416d2fd75a37b4496586755853'] = 'CMS-Block erfolgreich hinzugefügt';
-$_MODULE['<{blockcms}prestashop>form_b718adec73e04ce3ec720dd11a06a308'] = 'ID';
-$_MODULE['<{blockcms}prestashop>form_83ef1503b3bd9858cc923a74e5f9e917'] = 'Blockname';
-$_MODULE['<{blockcms}prestashop>form_bb34a159a88035cce7ef1607e7907f8f'] = 'Name der Kategorie';
-$_MODULE['<{blockcms}prestashop>form_08a38277b0309070706f6652eeae9a53'] = 'runter';
-$_MODULE['<{blockcms}prestashop>form_f7c68d40f8727c658e821c6e6d56af07'] = 'Keine Seite angelegt';
-$_MODULE['<{blockcms}prestashop>blockcms_5813ce0ec7196c492c97596718f71969'] = 'Sitemap';
-$_MODULE['<{blockcms}prestashop>blockcms_a82be0f551b8708bc08eb33cd9ded0cf'] = 'Information';
-$_MODULE['<{blockcms}prestashop>blockcms_ef61fb324d729c341ea8ab9901e23566'] = 'Neu';
-$_MODULE['<{blockcms}prestashop>blockcms_c9cc8cce247e49bae79f15173ce97354'] = 'Speichern';
-$_MODULE['<{blockcms}prestashop>blockcms_965be994da393e5aa15bd3a2444c6ccf'] = 'Konfiguration verschiedener Links in der Fußzeile';
-$_MODULE['<{blockcms}prestashop>blockcms_fc3faf66c0ea5f710cc58d24fbe4a5b6'] = 'Display \\"Powered by PrestaShop\\"';
-$_MODULE['<{blockcms}prestashop>blockcms_be58fccb15fb119b8c3d485e3a8561c4'] = 'CMS-Block-Konfiguration';
-$_MODULE['<{blockcms}prestashop>blockcms_ac59142b8d4c64f836acbc239e1cebf0'] = 'CMS-Block hinzufügen';
-$_MODULE['<{blockcms}prestashop>blockcms_f6d0c20ad12958928f865e5d49fc10f0'] = 'Blockname';
-$_MODULE['<{blockcms}prestashop>blockcms_93cba07454f06a4a960172bbd6e2a435'] = 'Ja';
-$_MODULE['<{blockcms}prestashop>blockcms_4eb9b68883615faa427da721fad14422'] = 'Ungültige Block-Position';
-$_MODULE['<{blockcms}prestashop>blockcms_795c54de995b69fe05142dad6f99ef92'] = 'Sie müssen mindestens eine Seite oder Unterkategorie wählen, um einen CMS-Block zu erstellen';
-$_MODULE['<{blockcms}prestashop>blockcms_34c869c542dee932ef8cd96d2f91cae6'] = 'Unsere Shops';
-$_MODULE['<{blockcms}prestashop>blockcms_d1aa22a3126f04664e0fe3f598994014'] = 'Specials';
-$_MODULE['<{blockcms}prestashop>blockcms_02d4482d332e1aef3437cd61c9bcc624'] = 'Kontaktieren Sie uns';
-$_MODULE['<{blockcms}prestashop>form_d9ca3009e18447d91cd2e324e8e680ce'] = 'Blöcke rechts';
-$_MODULE['<{blockcms}prestashop>form_52f5e0bc3859bc5f5e25130b6c7e8881'] = 'Position';
-$_MODULE['<{blockcms}prestashop>form_258f49887ef8d14ac268c92b02503aaa'] = 'rauf';
-$_MODULE['<{blockcms}prestashop>form_7dce122004969d56ae2e0245cb754d35'] = 'Bearbeiten';
-$_MODULE['<{blockcms}prestashop>form_49ee3087348e8d44e1feda1917443987'] = 'Name';
-$_MODULE['<{blockcms}prestashop>blockcms_89887a6d62110cbd72c15218a2d0fda9'] = 'Verschiedene Links und Informationen in der Fußzeile anzeigen';
-$_MODULE['<{blockcms}prestashop>blockcms_e363df19c685465bca24d0c06d9394c7'] = 'Alle Seiten markieren welche in dem Footer CMS Block angezeigt werden sollen';
-$_MODULE['<{blockcms}prestashop>blockcms_6c5f7d2f911e91ebd0c077fe770e739e'] = 'Informationen in der Fußzeile';
-$_MODULE['<{blockcms}prestashop>blockcms_04313a11bf4a501b7cf2273ea7b32862'] = 'Alle Seiten markieren welche in diesem Block angezeigt werden sollen';
-$_MODULE['<{blockcms}prestashop>blockcms_0788bfffae213b06afb540bf06926652'] = 'Ungültige CMS-Seite oder Kategorie';
-$_MODULE['<{blockcms}prestashop>blockcms_ede67d50014846cb8bb1b00d5fde77be'] = 'id_cms_block ist ungültig';
-$_MODULE['<{blockcms}prestashop>blockcms_2d81a9da91ff3f073e6aecbe42c33e69'] = 'Bitte Footer-Text für die Standardsprache angeben';
-$_MODULE['<{blockcms}prestashop>blockcms_0c579767f53365887ac199a96e26c591'] = 'Die Informationen der Fusszeile sind aktualisiert worden.';
-$_MODULE['<{blockcms}prestashop>blockcms_87a2663d841b78f01c27c0edb4f50b76'] = 'Löschen erfolgreich';
-$_MODULE['<{blockcms}prestashop>blockcms_9ff0635f5737513b1a6f559ac2bff745'] = 'Neue Produkte';
-$_MODULE['<{blockcms}prestashop>blockcms_01f7ac959c1e6ebbb2e0ee706a7a5255'] = 'Verkaufshits';
-$_MODULE['<{blockcms}prestashop>blockcms_5813ce0ec7196c492c97596718f71969'] = 'Sitemap';
-$_MODULE['<{blockcms}prestashop>blockcms_ea4788705e6873b424c65e91c2846b19'] = 'Abbrechen';
-$_MODULE['<{blockcms}prestashop>blockcms_48566f492af8fd2346b20dbd32168476'] = 'Footer Links:';
-$_MODULE['<{blockcms}prestashop>blockcms_9aa03a5dca2e060a4ecbff0dd8616692'] = 'Speichern';
-$_MODULE['<{blockcms}prestashop>blockcms_0eb46571f3ff926d8b2408cafcfc17e3'] = 'CMS-Block bearbeiten';
-$_MODULE['<{blockcms}prestashop>blockcms_92b09c7c48c520c3c55e497875da437c'] = 'Rechts';
-$_MODULE['<{blockcms}prestashop>blockcms_0d6d7a7c758cd16507d4aebf18305691'] = 'Ungültiger Shop-Darstellungswert';
-$_MODULE['<{blockcms}prestashop>blockcms_20d52180b34f849cb2c885a8451dd328'] = 'Neuer Block kann nicht erstellt werden!';
-$_MODULE['<{blockcms}prestashop>blockcms_a94db349ae0c662fd55c9d402481165b'] = 'CMS-Block erfolgreich bearbeitet';
-$_MODULE['<{blockcms}prestashop>blockcms_7a52e36bf4a1caa031c75a742fb9927a'] = 'Powered by';
-$_MODULE['<{blockcms}prestashop>form_4dabfa54822012dfc78d6ef40f224173'] = 'Blöcke links';
-$_MODULE['<{blockcms}prestashop>form_06df33001c1d7187fdd81ea1f5b277aa'] = 'Handlungen';
-$_MODULE['<{blockcms}prestashop>form_f2a6c498fb90ee345d997f888fce3b18'] = 'Löschen';
diff --git a/modules/blockcms/translations/en.php b/modules/blockcms/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/blockcms/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-blockcms_cd275312651aebf8cbbb8d3bb1c086ae'] = 'Bloque CMS';
-$_MODULE['<{blockcms}prestashop>blockcms_cdca12007979fc49008fd125cdb775fc'] = 'Añadir un bloque con varios links hacia sus CMS';
-$_MODULE['<{blockcms}prestashop>blockcms_97390dd0b5ba7867120aee2ff22bfa38'] = 'Configuración de los bloques CMS';
-$_MODULE['<{blockcms}prestashop>blockcms_94ff014237f6f5cbf5c3655f5ef513c9'] = 'CMS Bloques:';
-$_MODULE['<{blockcms}prestashop>blockcms_51b274d417210e74d2cfe9e0713602f2'] = 'Footer\'s informations updated';
-$_MODULE['<{blockcms}prestashop>blockcms_fca0206c8afc8d67969f9aec20e3287e'] = 'Left blocks';
-$_MODULE['<{blockcms}prestashop>blockcms_abf9012e9560b3c44a536f5c4a2a0b62'] = 'Right blocks';
-$_MODULE['<{blockcms}prestashop>blockcms_945d5e233cf7d6240f6b783b36a374ff'] = 'Izquierda';
-$_MODULE['<{blockcms}prestashop>blockcms_5e2b11203c9a4ac0ec01e7bb31e256f6'] = 'Mostrar tiendas:';
-$_MODULE['<{blockcms}prestashop>blockcms_bafd7322c6e97d25b6299b5d6fe8920b'] = 'No';
-$_MODULE['<{blockcms}prestashop>blockcms_8537cb2cf041c2243fef92931ed93b90'] = 'Mostrar \\"nuestras tiendas\\" al final del bloque';
-$_MODULE['<{blockcms}prestashop>blockcms_55737e084beaa370a127f3f031f1932e'] = 'Contenido CMS:';
-$_MODULE['<{blockcms}prestashop>blockcms_7125483712689cd7a6f85b466a8a7632'] = 'Nombre del bloque demasiado largo';
-$_MODULE['<{blockcms}prestashop>blockcms_a419b919d146d5db83f22d375d329a59'] = 'Activación footer no válida';
-$_MODULE['<{blockcms}prestashop>blockcms_238cadc4d64e9b144c10ee409835ee34'] = 'Está tratando de suprimir un bloque cms que no existe';
-$_MODULE['<{blockcms}prestashop>blockcms_c28716416d2fd75a37b4496586755853'] = 'El bloque CMS se ha editado con éxito';
-$_MODULE['<{blockcms}prestashop>form_b718adec73e04ce3ec720dd11a06a308'] = 'ID';
-$_MODULE['<{blockcms}prestashop>form_83ef1503b3bd9858cc923a74e5f9e917'] = 'Nombre del bloque';
-$_MODULE['<{blockcms}prestashop>form_bb34a159a88035cce7ef1607e7907f8f'] = 'Nombre de la categoría';
-$_MODULE['<{blockcms}prestashop>form_08a38277b0309070706f6652eeae9a53'] = 'Abajo';
-$_MODULE['<{blockcms}prestashop>form_f7c68d40f8727c658e821c6e6d56af07'] = 'No hay páginas creadas';
-$_MODULE['<{blockcms}prestashop>blockcms_5813ce0ec7196c492c97596718f71969'] = 'mapa del sitio';
-$_MODULE['<{blockcms}prestashop>blockcms_a82be0f551b8708bc08eb33cd9ded0cf'] = 'Información';
-$_MODULE['<{blockcms}prestashop>blockcms_ef61fb324d729c341ea8ab9901e23566'] = 'Añadir nuevo';
-$_MODULE['<{blockcms}prestashop>blockcms_c9cc8cce247e49bae79f15173ce97354'] = 'Guardar';
-$_MODULE['<{blockcms}prestashop>blockcms_965be994da393e5aa15bd3a2444c6ccf'] = 'Configuración de los links CMS a pie de página';
-$_MODULE['<{blockcms}prestashop>blockcms_fc3faf66c0ea5f710cc58d24fbe4a5b6'] = 'Mostrar \\"Creado por PrestaShop\\"';
-$_MODULE['<{blockcms}prestashop>blockcms_be58fccb15fb119b8c3d485e3a8561c4'] = 'Mark all pages you want to display in this block';
-$_MODULE['<{blockcms}prestashop>blockcms_ac59142b8d4c64f836acbc239e1cebf0'] = 'Please provide footer text for the default language';
-$_MODULE['<{blockcms}prestashop>blockcms_f6d0c20ad12958928f865e5d49fc10f0'] = 'New block cannot be created !';
-$_MODULE['<{blockcms}prestashop>blockcms_93cba07454f06a4a960172bbd6e2a435'] = 'Sí';
-$_MODULE['<{blockcms}prestashop>blockcms_4eb9b68883615faa427da721fad14422'] = 'Ubicación no válida';
-$_MODULE['<{blockcms}prestashop>blockcms_795c54de995b69fe05142dad6f99ef92'] = 'Debe elegir al menos una página o subcategoría para crear un bloque CMS';
-$_MODULE['<{blockcms}prestashop>blockcms_34c869c542dee932ef8cd96d2f91cae6'] = 'Nuestras tiendas';
-$_MODULE['<{blockcms}prestashop>blockcms_d1aa22a3126f04664e0fe3f598994014'] = 'Promociones especiales';
-$_MODULE['<{blockcms}prestashop>blockcms_02d4482d332e1aef3437cd61c9bcc624'] = 'Contacte con nosotros';
-$_MODULE['<{blockcms}prestashop>form_d9ca3009e18447d91cd2e324e8e680ce'] = 'Bloques de la derecha';
-$_MODULE['<{blockcms}prestashop>form_52f5e0bc3859bc5f5e25130b6c7e8881'] = 'Posición';
-$_MODULE['<{blockcms}prestashop>form_258f49887ef8d14ac268c92b02503aaa'] = 'Arriba';
-$_MODULE['<{blockcms}prestashop>form_7dce122004969d56ae2e0245cb754d35'] = 'Modificar';
-$_MODULE['<{blockcms}prestashop>form_49ee3087348e8d44e1feda1917443987'] = 'Nombre';
-$_MODULE['<{blockcms}prestashop>blockcms_89887a6d62110cbd72c15218a2d0fda9'] = 'Muestra varios enlaces e informaciones en el Footer';
-$_MODULE['<{blockcms}prestashop>blockcms_e363df19c685465bca24d0c06d9394c7'] = 'Marcar todas las páginas que desea mostrar en el pie de manzana de la CMS';
-$_MODULE['<{blockcms}prestashop>blockcms_6c5f7d2f911e91ebd0c077fe770e739e'] = 'Información Pie de página:';
-$_MODULE['<{blockcms}prestashop>blockcms_04313a11bf4a501b7cf2273ea7b32862'] = 'Marcar todas las páginas que desea mostrar en este bloque';
-$_MODULE['<{blockcms}prestashop>blockcms_0788bfffae213b06afb540bf06926652'] = 'Página CMS o subcategoría no válidos';
-$_MODULE['<{blockcms}prestashop>blockcms_ede67d50014846cb8bb1b00d5fde77be'] = 'id_cms_block no válido';
-$_MODULE['<{blockcms}prestashop>blockcms_2d81a9da91ff3f073e6aecbe42c33e69'] = 'Por favor, pie de página en el idioma por defecto';
-$_MODULE['<{blockcms}prestashop>blockcms_0c579767f53365887ac199a96e26c591'] = 'Nuevo bloque no se puede crear!';
-$_MODULE['<{blockcms}prestashop>blockcms_87a2663d841b78f01c27c0edb4f50b76'] = 'Se ha suprimido con éxito';
-$_MODULE['<{blockcms}prestashop>blockcms_9ff0635f5737513b1a6f559ac2bff745'] = 'Novedades';
-$_MODULE['<{blockcms}prestashop>blockcms_01f7ac959c1e6ebbb2e0ee706a7a5255'] = 'Mejores ventas';
-$_MODULE['<{blockcms}prestashop>blockcms_5813ce0ec7196c492c97596718f71969'] = 'Mapa del sitio';
-$_MODULE['<{blockcms}prestashop>blockcms_ea4788705e6873b424c65e91c2846b19'] = 'Anular';
-$_MODULE['<{blockcms}prestashop>blockcms_48566f492af8fd2346b20dbd32168476'] = 'Enlaces Pie de página:';
-$_MODULE['<{blockcms}prestashop>blockcms_0eb46571f3ff926d8b2408cafcfc17e3'] = 'Invalid store display value';
-$_MODULE['<{blockcms}prestashop>blockcms_92b09c7c48c520c3c55e497875da437c'] = 'Derecha';
-$_MODULE['<{blockcms}prestashop>blockcms_0d6d7a7c758cd16507d4aebf18305691'] = 'Valor para mostrar tienda inválido';
-$_MODULE['<{blockcms}prestashop>blockcms_20d52180b34f849cb2c885a8451dd328'] = 'Nuevo bloque no se puede crear!';
-$_MODULE['<{blockcms}prestashop>blockcms_a94db349ae0c662fd55c9d402481165b'] = 'Se ha editado con éxito';
-$_MODULE['<{blockcms}prestashop>blockcms_7a52e36bf4a1caa031c75a742fb9927a'] = 'Creado por';
-$_MODULE['<{blockcms}prestashop>form_4dabfa54822012dfc78d6ef40f224173'] = 'Bloques de izquierda';
-$_MODULE['<{blockcms}prestashop>form_06df33001c1d7187fdd81ea1f5b277aa'] = 'Acciones';
-$_MODULE['<{blockcms}prestashop>form_f2a6c498fb90ee345d997f888fce3b18'] = 'Eliminar';
-$_MODULE['<{blockcms}prestashop>blockcms_9aa03a5dca2e060a4ecbff0dd8616692'] = 'Guardar';
diff --git a/modules/blockcms/translations/fr.php b/modules/blockcms/translations/fr.php
deleted file mode 100755
index 40fc5ff36..000000000
--- a/modules/blockcms/translations/fr.php
+++ /dev/null
@@ -1,70 +0,0 @@
-blockcms_cd275312651aebf8cbbb8d3bb1c086ae'] = 'Bloc CMS';
-$_MODULE['<{blockcms}prestashop>blockcms_7125483712689cd7a6f85b466a8a7632'] = 'Le nom du bloc est trop long';
-$_MODULE['<{blockcms}prestashop>blockcms_cdca12007979fc49008fd125cdb775fc'] = 'Ajoute un bloc contenant plusieurs lien vers vos pages CMS';
-$_MODULE['<{blockcms}prestashop>blockcms_97390dd0b5ba7867120aee2ff22bfa38'] = 'Configuration du bloc CMS';
-$_MODULE['<{blockcms}prestashop>blockcms_94ff014237f6f5cbf5c3655f5ef513c9'] = 'Blocs CMS';
-$_MODULE['<{blockcms}prestashop>blockcms_51b274d417210e74d2cfe9e0713602f2'] = 'Si vous laissez ce champ vide, le nom du bloc sera le nom de la catégorie';
-$_MODULE['<{blockcms}prestashop>blockcms_fca0206c8afc8d67969f9aec20e3287e'] = 'Catégorie du CMS :';
-$_MODULE['<{blockcms}prestashop>blockcms_abf9012e9560b3c44a536f5c4a2a0b62'] = 'Emplacement :';
-$_MODULE['<{blockcms}prestashop>blockcms_945d5e233cf7d6240f6b783b36a374ff'] = 'Gauche';
-$_MODULE['<{blockcms}prestashop>blockcms_5e2b11203c9a4ac0ec01e7bb31e256f6'] = 'Afficher les magasins';
-$_MODULE['<{blockcms}prestashop>blockcms_bafd7322c6e97d25b6299b5d6fe8920b'] = 'Non';
-$_MODULE['<{blockcms}prestashop>blockcms_8537cb2cf041c2243fef92931ed93b90'] = 'Afficher \\"Nos magasins\\" en bas du block';
-$_MODULE['<{blockcms}prestashop>blockcms_55737e084beaa370a127f3f031f1932e'] = 'Contenu du CMS :';
-$_MODULE['<{blockcms}prestashop>blockcms_a419b919d146d5db83f22d375d329a59'] = 'Activation non valable pour le pied de page';
-$_MODULE['<{blockcms}prestashop>blockcms_238cadc4d64e9b144c10ee409835ee34'] = 'Erreur : vous essayez de supprimer un bloc CMS inexistant';
-$_MODULE['<{blockcms}prestashop>blockcms_c28716416d2fd75a37b4496586755853'] = 'Le bloc CMS a bien été ajouté';
-$_MODULE['<{blockcms}prestashop>blockcms_5813ce0ec7196c492c97596718f71969'] = 'Plan du site';
-$_MODULE['<{blockcms}prestashop>form_b718adec73e04ce3ec720dd11a06a308'] = 'ID';
-$_MODULE['<{blockcms}prestashop>form_83ef1503b3bd9858cc923a74e5f9e917'] = 'Nom du bloc';
-$_MODULE['<{blockcms}prestashop>form_bb34a159a88035cce7ef1607e7907f8f'] = 'Nom de la catégorie';
-$_MODULE['<{blockcms}prestashop>form_08a38277b0309070706f6652eeae9a53'] = 'Descendre';
-$_MODULE['<{blockcms}prestashop>form_f7c68d40f8727c658e821c6e6d56af07'] = 'Aucune page créée';
-$_MODULE['<{blockcms}prestashop>blockcms_ac59142b8d4c64f836acbc239e1cebf0'] = 'Nouveau bloc CMS';
-$_MODULE['<{blockcms}prestashop>form_7dce122004969d56ae2e0245cb754d35'] = 'Modifier';
-$_MODULE['<{blockcms}prestashop>form_49ee3087348e8d44e1feda1917443987'] = 'Nom';
-$_MODULE['<{blockcms}prestashop>blockcms_a82be0f551b8708bc08eb33cd9ded0cf'] = 'Information';
-$_MODULE['<{blockcms}prestashop>blockcms_ef61fb324d729c341ea8ab9901e23566'] = 'Ajouter un bloc';
-$_MODULE['<{blockcms}prestashop>blockcms_965be994da393e5aa15bd3a2444c6ccf'] = 'Configuration des liens CMS en pied de page';
-$_MODULE['<{blockcms}prestashop>blockcms_fc3faf66c0ea5f710cc58d24fbe4a5b6'] = 'Afficher \\"Propulsé par PrestaShop\\"';
-$_MODULE['<{blockcms}prestashop>blockcms_be58fccb15fb119b8c3d485e3a8561c4'] = 'Configuration du bloc CMS';
-$_MODULE['<{blockcms}prestashop>blockcms_f6d0c20ad12958928f865e5d49fc10f0'] = 'Nom du bloc';
-$_MODULE['<{blockcms}prestashop>blockcms_93cba07454f06a4a960172bbd6e2a435'] = 'Oui';
-$_MODULE['<{blockcms}prestashop>blockcms_4eb9b68883615faa427da721fad14422'] = 'Emplacement non valable pour le bloc';
-$_MODULE['<{blockcms}prestashop>blockcms_795c54de995b69fe05142dad6f99ef92'] = 'Vous devez choisir au moins une page ou sous-catégorie pour créer un bloc CMS.';
-$_MODULE['<{blockcms}prestashop>blockcms_34c869c542dee932ef8cd96d2f91cae6'] = 'Nos magasins';
-$_MODULE['<{blockcms}prestashop>blockcms_d1aa22a3126f04664e0fe3f598994014'] = 'Promotions';
-$_MODULE['<{blockcms}prestashop>blockcms_02d4482d332e1aef3437cd61c9bcc624'] = 'Contactez-nous';
-$_MODULE['<{blockcms}prestashop>form_d9ca3009e18447d91cd2e324e8e680ce'] = 'Blocs à droite';
-$_MODULE['<{blockcms}prestashop>form_52f5e0bc3859bc5f5e25130b6c7e8881'] = 'Position';
-$_MODULE['<{blockcms}prestashop>form_258f49887ef8d14ac268c92b02503aaa'] = 'Monter';
-$_MODULE['<{blockcms}prestashop>blockcms_c9cc8cce247e49bae79f15173ce97354'] = 'Enregistrer';
-$_MODULE['<{blockcms}prestashop>blockcms_89887a6d62110cbd72c15218a2d0fda9'] = 'Afficher les liens d\'informations dans le pied de page.';
-$_MODULE['<{blockcms}prestashop>blockcms_e363df19c685465bca24d0c06d9394c7'] = 'Sélectionnez les pages que vous souhaitez afficher dans le bloc CMS de pied de page';
-$_MODULE['<{blockcms}prestashop>blockcms_6c5f7d2f911e91ebd0c077fe770e739e'] = 'Informations de pied de page';
-$_MODULE['<{blockcms}prestashop>blockcms_04313a11bf4a501b7cf2273ea7b32862'] = 'Sélectionnez les pages que vous souhaitez afficher dans ce bloc';
-$_MODULE['<{blockcms}prestashop>blockcms_0788bfffae213b06afb540bf06926652'] = 'Page ou catégorie CMS non valable';
-$_MODULE['<{blockcms}prestashop>blockcms_ede67d50014846cb8bb1b00d5fde77be'] = 'Identifiant non valable pour le bloc du CMS';
-$_MODULE['<{blockcms}prestashop>blockcms_2d81a9da91ff3f073e6aecbe42c33e69'] = 'Veuillez fournir un text de pied de page pour la langue par défaut';
-$_MODULE['<{blockcms}prestashop>blockcms_0c579767f53365887ac199a96e26c591'] = 'Informations du pied de page mises à jour';
-$_MODULE['<{blockcms}prestashop>blockcms_87a2663d841b78f01c27c0edb4f50b76'] = 'Suppression réussie';
-$_MODULE['<{blockcms}prestashop>blockcms_9ff0635f5737513b1a6f559ac2bff745'] = 'Nouveaux produits';
-$_MODULE['<{blockcms}prestashop>blockcms_01f7ac959c1e6ebbb2e0ee706a7a5255'] = 'Meilleures ventes';
-$_MODULE['<{blockcms}prestashop>blockcms_5813ce0ec7196c492c97596718f71969'] = 'Plan du site';
-$_MODULE['<{blockcms}prestashop>blockcms_7a52e36bf4a1caa031c75a742fb9927a'] = 'Propulsé par';
-$_MODULE['<{blockcms}prestashop>form_f2a6c498fb90ee345d997f888fce3b18'] = 'Supprimer';
-$_MODULE['<{blockcms}prestashop>blockcms_ea4788705e6873b424c65e91c2846b19'] = 'Annuler';
-$_MODULE['<{blockcms}prestashop>blockcms_48566f492af8fd2346b20dbd32168476'] = 'Lien de pied de page';
-$_MODULE['<{blockcms}prestashop>blockcms_9aa03a5dca2e060a4ecbff0dd8616692'] = 'Enregistrer';
-$_MODULE['<{blockcms}prestashop>blockcms_0eb46571f3ff926d8b2408cafcfc17e3'] = 'Modification du bloc CMS';
-$_MODULE['<{blockcms}prestashop>blockcms_0d6d7a7c758cd16507d4aebf18305691'] = 'Valeur d\'affichage non valable pour le magasin';
-$_MODULE['<{blockcms}prestashop>blockcms_20d52180b34f849cb2c885a8451dd328'] = 'Vous ne pouvez pas créer un nouveau bloc !';
-$_MODULE['<{blockcms}prestashop>blockcms_a94db349ae0c662fd55c9d402481165b'] = 'Le bloc CMS a bien été modifié';
-$_MODULE['<{blockcms}prestashop>form_4dabfa54822012dfc78d6ef40f224173'] = 'Blocs à gauche';
-$_MODULE['<{blockcms}prestashop>form_06df33001c1d7187fdd81ea1f5b277aa'] = 'Actions';
-$_MODULE['<{blockcms}prestashop>blockcms_92b09c7c48c520c3c55e497875da437c'] = 'Droite';
diff --git a/modules/blockcms/translations/it.php b/modules/blockcms/translations/it.php
deleted file mode 100644
index 2157d5a0d..000000000
--- a/modules/blockcms/translations/it.php
+++ /dev/null
@@ -1,70 +0,0 @@
-blockcms_cd275312651aebf8cbbb8d3bb1c086ae'] = 'Blocco CMS';
-$_MODULE['<{blockcms}prestashop>blockcms_cdca12007979fc49008fd125cdb775fc'] = 'Aggiungi un blocco con diversi link CMS';
-$_MODULE['<{blockcms}prestashop>blockcms_97390dd0b5ba7867120aee2ff22bfa38'] = 'Blocchi di configurazione CMS';
-$_MODULE['<{blockcms}prestashop>blockcms_94ff014237f6f5cbf5c3655f5ef513c9'] = 'Blocchi CMS:';
-$_MODULE['<{blockcms}prestashop>blockcms_51b274d417210e74d2cfe9e0713602f2'] = 'Se lasci questo campo vuoto, il nome del blocco sarà il nome della categoria';
-$_MODULE['<{blockcms}prestashop>blockcms_fca0206c8afc8d67969f9aec20e3287e'] = 'Categoria CMS';
-$_MODULE['<{blockcms}prestashop>blockcms_abf9012e9560b3c44a536f5c4a2a0b62'] = 'posizione';
-$_MODULE['<{blockcms}prestashop>blockcms_945d5e233cf7d6240f6b783b36a374ff'] = 'Sinistra';
-$_MODULE['<{blockcms}prestashop>blockcms_5e2b11203c9a4ac0ec01e7bb31e256f6'] = 'Mostra Negozi:';
-$_MODULE['<{blockcms}prestashop>blockcms_bafd7322c6e97d25b6299b5d6fe8920b'] = 'No';
-$_MODULE['<{blockcms}prestashop>blockcms_8537cb2cf041c2243fef92931ed93b90'] = 'Mostra \\"i nostri negozi\\" alla fine del blocco';
-$_MODULE['<{blockcms}prestashop>blockcms_55737e084beaa370a127f3f031f1932e'] = 'Contenuto CMS:';
-$_MODULE['<{blockcms}prestashop>blockcms_7125483712689cd7a6f85b466a8a7632'] = 'Nome del blocco troppo lungo';
-$_MODULE['<{blockcms}prestashop>blockcms_a419b919d146d5db83f22d375d329a59'] = 'Attivazione piè di pagina non valido';
-$_MODULE['<{blockcms}prestashop>blockcms_238cadc4d64e9b144c10ee409835ee34'] = 'Stai cercando di eliminare un blocco cms inesistente';
-$_MODULE['<{blockcms}prestashop>blockcms_c28716416d2fd75a37b4496586755853'] = 'Aggiunta del blocco CMS riuscito';
-$_MODULE['<{blockcms}prestashop>form_b718adec73e04ce3ec720dd11a06a308'] = 'ID';
-$_MODULE['<{blockcms}prestashop>form_83ef1503b3bd9858cc923a74e5f9e917'] = 'Nome Blocco';
-$_MODULE['<{blockcms}prestashop>form_bb34a159a88035cce7ef1607e7907f8f'] = 'Nome categoria';
-$_MODULE['<{blockcms}prestashop>form_08a38277b0309070706f6652eeae9a53'] = 'Giù';
-$_MODULE['<{blockcms}prestashop>form_f7c68d40f8727c658e821c6e6d56af07'] = 'Nessuna pagina creata';
-$_MODULE['<{blockcms}prestashop>blockcms_5813ce0ec7196c492c97596718f71969'] = 'Mappa del sito';
-$_MODULE['<{blockcms}prestashop>blockcms_a82be0f551b8708bc08eb33cd9ded0cf'] = 'Informazioni';
-$_MODULE['<{blockcms}prestashop>blockcms_ef61fb324d729c341ea8ab9901e23566'] = 'Aggiungi nuovo';
-$_MODULE['<{blockcms}prestashop>blockcms_c9cc8cce247e49bae79f15173ce97354'] = 'Salva';
-$_MODULE['<{blockcms}prestashop>blockcms_965be994da393e5aa15bd3a2444c6ccf'] = 'Configurazione dei link a piè di pagina';
-$_MODULE['<{blockcms}prestashop>blockcms_fc3faf66c0ea5f710cc58d24fbe4a5b6'] = 'Display \\"Powered by Prestashop\\"';
-$_MODULE['<{blockcms}prestashop>blockcms_be58fccb15fb119b8c3d485e3a8561c4'] = 'Configurazione del blocco CMS';
-$_MODULE['<{blockcms}prestashop>blockcms_ac59142b8d4c64f836acbc239e1cebf0'] = 'Nuovo blocco CMS';
-$_MODULE['<{blockcms}prestashop>blockcms_f6d0c20ad12958928f865e5d49fc10f0'] = 'Nome del blocco:';
-$_MODULE['<{blockcms}prestashop>blockcms_93cba07454f06a4a960172bbd6e2a435'] = 'Sì';
-$_MODULE['<{blockcms}prestashop>blockcms_4eb9b68883615faa427da721fad14422'] = 'Posizione blocco non valida';
-$_MODULE['<{blockcms}prestashop>blockcms_795c54de995b69fe05142dad6f99ef92'] = 'Devi scegliere almeno una pagina o una sottocategoria per creare un blocco CMS';
-$_MODULE['<{blockcms}prestashop>blockcms_34c869c542dee932ef8cd96d2f91cae6'] = 'I nostri negozi';
-$_MODULE['<{blockcms}prestashop>blockcms_d1aa22a3126f04664e0fe3f598994014'] = 'Speciali';
-$_MODULE['<{blockcms}prestashop>blockcms_02d4482d332e1aef3437cd61c9bcc624'] = 'Contattaci';
-$_MODULE['<{blockcms}prestashop>form_d9ca3009e18447d91cd2e324e8e680ce'] = 'Blocchi di destra';
-$_MODULE['<{blockcms}prestashop>form_52f5e0bc3859bc5f5e25130b6c7e8881'] = 'Posizione';
-$_MODULE['<{blockcms}prestashop>form_258f49887ef8d14ac268c92b02503aaa'] = 'Su';
-$_MODULE['<{blockcms}prestashop>form_7dce122004969d56ae2e0245cb754d35'] = 'Modifica';
-$_MODULE['<{blockcms}prestashop>form_49ee3087348e8d44e1feda1917443987'] = 'Nome';
-$_MODULE['<{blockcms}prestashop>blockcms_89887a6d62110cbd72c15218a2d0fda9'] = 'Mostra diversi links e informazioni nel piè di pagina.';
-$_MODULE['<{blockcms}prestashop>blockcms_e363df19c685465bca24d0c06d9394c7'] = 'Scegli tutte le pagine che vuoi visualizzare nel blocco CMS del footer';
-$_MODULE['<{blockcms}prestashop>blockcms_6c5f7d2f911e91ebd0c077fe770e739e'] = 'Informazioni footer:';
-$_MODULE['<{blockcms}prestashop>blockcms_04313a11bf4a501b7cf2273ea7b32862'] = 'Scegli tutte le pagine che vuoi visualizzare in questo blocco';
-$_MODULE['<{blockcms}prestashop>blockcms_0788bfffae213b06afb540bf06926652'] = 'Pagina o categoria CMS non valida';
-$_MODULE['<{blockcms}prestashop>blockcms_ede67d50014846cb8bb1b00d5fde77be'] = 'Invalido id_cms_block';
-$_MODULE['<{blockcms}prestashop>blockcms_2d81a9da91ff3f073e6aecbe42c33e69'] = 'Per favore scegli un testo di default per il footer per la lingua di default';
-$_MODULE['<{blockcms}prestashop>blockcms_0c579767f53365887ac199a96e26c591'] = 'Informazioni del Footer aggiornate';
-$_MODULE['<{blockcms}prestashop>blockcms_87a2663d841b78f01c27c0edb4f50b76'] = 'Cancellazione di successo';
-$_MODULE['<{blockcms}prestashop>blockcms_9ff0635f5737513b1a6f559ac2bff745'] = 'Nuovi prodotti';
-$_MODULE['<{blockcms}prestashop>blockcms_5813ce0ec7196c492c97596718f71969'] = 'Mappa del sito';
-$_MODULE['<{blockcms}prestashop>blockcms_01f7ac959c1e6ebbb2e0ee706a7a5255'] = 'Vendite migliori';
-$_MODULE['<{blockcms}prestashop>blockcms_ea4788705e6873b424c65e91c2846b19'] = 'Annulla';
-$_MODULE['<{blockcms}prestashop>blockcms_48566f492af8fd2346b20dbd32168476'] = 'Link footer:';
-$_MODULE['<{blockcms}prestashop>blockcms_9aa03a5dca2e060a4ecbff0dd8616692'] = 'Salva';
-$_MODULE['<{blockcms}prestashop>blockcms_0eb46571f3ff926d8b2408cafcfc17e3'] = 'Modifica blocco CMS';
-$_MODULE['<{blockcms}prestashop>blockcms_92b09c7c48c520c3c55e497875da437c'] = 'Destra';
-$_MODULE['<{blockcms}prestashop>blockcms_0d6d7a7c758cd16507d4aebf18305691'] = 'Valore negozio non valido';
-$_MODULE['<{blockcms}prestashop>blockcms_20d52180b34f849cb2c885a8451dd328'] = 'Il nuovo blocco non può essere creato!';
-$_MODULE['<{blockcms}prestashop>blockcms_a94db349ae0c662fd55c9d402481165b'] = 'Modifica del blocco CMS riuscito';
-$_MODULE['<{blockcms}prestashop>blockcms_7a52e36bf4a1caa031c75a742fb9927a'] = 'Powered by';
-$_MODULE['<{blockcms}prestashop>form_4dabfa54822012dfc78d6ef40f224173'] = 'Blocchi di sinistra';
-$_MODULE['<{blockcms}prestashop>form_06df33001c1d7187fdd81ea1f5b277aa'] = 'Azioni';
-$_MODULE['<{blockcms}prestashop>form_f2a6c498fb90ee345d997f888fce3b18'] = 'Elimina';
diff --git a/modules/blockcontact/translations/de.php b/modules/blockcontact/translations/de.php
deleted file mode 100644
index 3377cc551..000000000
--- a/modules/blockcontact/translations/de.php
+++ /dev/null
@@ -1,15 +0,0 @@
-blockcontact_318ed85b9852475f24127167815e85d9'] = 'Ermöglicht es weitere Informationen über Ihren Kundenservice hinzuzufügen';
-$_MODULE['<{blockcontact}prestashop>blockcontact_673ae02fffb72f0fe68a66f096a01347'] = 'Telefonnr.:';
-$_MODULE['<{blockcontact}prestashop>blockcontact_20015706a8cbd457cbb6ea3e7d5dc9b3'] = 'Konfiguration aktualisiert';
-$_MODULE['<{blockcontact}prestashop>blockcontact_b17f3f4dcf653a5776792498a9b44d6a'] = 'Einstellungen aktualisieren';
-$_MODULE['<{blockcontact}prestashop>blockcontact_17870f54a180e69e60e84125f805db67'] = 'Telefon:';
-$_MODULE['<{blockcontact}prestashop>blockcontact_02d4482d332e1aef3437cd61c9bcc624'] = 'Kontaktieren Sie uns';
-$_MODULE['<{blockcontact}prestashop>blockcontact_736c5a7e834b7021bfa97180fc453115'] = 'Nehmen Sie Kontakt mit uns auf';
-$_MODULE['<{blockcontact}prestashop>blockcontact_0f45a6908556b5b1d7c7d79e60fa3fa7'] = 'Block Kontakt';
-$_MODULE['<{blockcontact}prestashop>blockcontact_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'E-Mail';
-$_MODULE['<{blockcontact}prestashop>blockcontact_75858d311c84e7ba706b69bea5c71d36'] = 'Wir sind 24 Stunden, 7 Tage die Woche, für Sie erreichbar';
diff --git a/modules/blockcontact/translations/en.php b/modules/blockcontact/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/blockcontact/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-blockcontact_318ed85b9852475f24127167815e85d9'] = 'Le permite agregar información adicional sobre el servicio al cliente';
-$_MODULE['<{blockcontact}prestashop>blockcontact_673ae02fffb72f0fe68a66f096a01347'] = 'Teléfono:';
-$_MODULE['<{blockcontact}prestashop>blockcontact_20015706a8cbd457cbb6ea3e7d5dc9b3'] = 'Configuración actualizada';
-$_MODULE['<{blockcontact}prestashop>blockcontact_b17f3f4dcf653a5776792498a9b44d6a'] = 'Ajustes actualizados';
-$_MODULE['<{blockcontact}prestashop>blockcontact_17870f54a180e69e60e84125f805db67'] = 'Número de teléfono:';
-$_MODULE['<{blockcontact}prestashop>blockcontact_02d4482d332e1aef3437cd61c9bcc624'] = 'Contacte con nosotros';
-$_MODULE['<{blockcontact}prestashop>blockcontact_736c5a7e834b7021bfa97180fc453115'] = 'Póngase en contacto con nuestra línea directa';
-$_MODULE['<{blockcontact}prestashop>blockcontact_0f45a6908556b5b1d7c7d79e60fa3fa7'] = 'Bloque de contacto';
-$_MODULE['<{blockcontact}prestashop>blockcontact_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'Email';
-$_MODULE['<{blockcontact}prestashop>blockcontact_75858d311c84e7ba706b69bea5c71d36'] = 'Nuestra línea directa está disponible 24/7';
diff --git a/modules/blockcontact/translations/fr.php b/modules/blockcontact/translations/fr.php
deleted file mode 100644
index 22e92b0e9..000000000
--- a/modules/blockcontact/translations/fr.php
+++ /dev/null
@@ -1,15 +0,0 @@
-blockcontact_318ed85b9852475f24127167815e85d9'] = 'Permet d\'ajouter des informations supplémentaires concernant le service client';
-$_MODULE['<{blockcontact}prestashop>blockcontact_673ae02fffb72f0fe68a66f096a01347'] = 'Tél. :';
-$_MODULE['<{blockcontact}prestashop>blockcontact_20015706a8cbd457cbb6ea3e7d5dc9b3'] = 'Configuration mise à jour';
-$_MODULE['<{blockcontact}prestashop>blockcontact_b17f3f4dcf653a5776792498a9b44d6a'] = 'Mettre à jour les réglages';
-$_MODULE['<{blockcontact}prestashop>blockcontact_17870f54a180e69e60e84125f805db67'] = 'Numéro de téléphone';
-$_MODULE['<{blockcontact}prestashop>blockcontact_02d4482d332e1aef3437cd61c9bcc624'] = 'Contactez-nous';
-$_MODULE['<{blockcontact}prestashop>blockcontact_736c5a7e834b7021bfa97180fc453115'] = 'Contacter notre service client';
-$_MODULE['<{blockcontact}prestashop>blockcontact_0f45a6908556b5b1d7c7d79e60fa3fa7'] = 'Bloc contact';
-$_MODULE['<{blockcontact}prestashop>blockcontact_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'E-mail :';
-$_MODULE['<{blockcontact}prestashop>blockcontact_75858d311c84e7ba706b69bea5c71d36'] = 'Notre service client est disponible 24h/24, 7j/7';
diff --git a/modules/blockcontact/translations/it.php b/modules/blockcontact/translations/it.php
deleted file mode 100644
index bb26ef17d..000000000
--- a/modules/blockcontact/translations/it.php
+++ /dev/null
@@ -1,15 +0,0 @@
-blockcontact_318ed85b9852475f24127167815e85d9'] = 'Ti permette di aggiungere informazioni aggiuntive sul servizio clienti';
-$_MODULE['<{blockcontact}prestashop>blockcontact_673ae02fffb72f0fe68a66f096a01347'] = 'Telefono:';
-$_MODULE['<{blockcontact}prestashop>blockcontact_20015706a8cbd457cbb6ea3e7d5dc9b3'] = 'Configurazione aggiornata';
-$_MODULE['<{blockcontact}prestashop>blockcontact_b17f3f4dcf653a5776792498a9b44d6a'] = 'Aggiorna le impostazioni';
-$_MODULE['<{blockcontact}prestashop>blockcontact_17870f54a180e69e60e84125f805db67'] = 'Numero di telefono:';
-$_MODULE['<{blockcontact}prestashop>blockcontact_02d4482d332e1aef3437cd61c9bcc624'] = 'Contattaci';
-$_MODULE['<{blockcontact}prestashop>blockcontact_736c5a7e834b7021bfa97180fc453115'] = 'Contatta la nostra Hot line';
-$_MODULE['<{blockcontact}prestashop>blockcontact_0f45a6908556b5b1d7c7d79e60fa3fa7'] = 'Blocco contatti';
-$_MODULE['<{blockcontact}prestashop>blockcontact_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'E-mail';
-$_MODULE['<{blockcontact}prestashop>blockcontact_75858d311c84e7ba706b69bea5c71d36'] = 'Hot line disponibile 24/7';
diff --git a/modules/blockcontactinfos/translations/de.php b/modules/blockcontactinfos/translations/de.php
deleted file mode 100644
index 13141e3d1..000000000
--- a/modules/blockcontactinfos/translations/de.php
+++ /dev/null
@@ -1,16 +0,0 @@
-blockcontactinfos_632535e0cdfd3380906f6b7d40ba78d3'] = 'Block Kontaktinformationen';
-$_MODULE['<{blockcontactinfos}prestashop>blockcontactinfos_dd7bf230fde8d4836917806aff6a6b27'] = 'Adresse';
-$_MODULE['<{blockcontactinfos}prestashop>blockcontactinfos_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'E-Mail';
-$_MODULE['<{blockcontactinfos}prestashop>blockcontactinfos_02d4482d332e1aef3437cd61c9bcc624'] = 'Kontaktieren Sie uns';
-$_MODULE['<{blockcontactinfos}prestashop>blockcontactinfos_c281f92b77ba329f692077d23636f5c9'] = 'Firmenname:';
-$_MODULE['<{blockcontactinfos}prestashop>blockcontactinfos_2e006b735fbd916d8ab26978ae6714d4'] = 'Tel.';
-$_MODULE['<{blockcontactinfos}prestashop>blockcontactinfos_86458ae1631be34a6fcbf1a4584f5abe'] = 'Fügt einen Block mit Informationen zur Kontaktaufnahme mit Ihrem Shops hinzu';
-$_MODULE['<{blockcontactinfos}prestashop>blockcontactinfos_20015706a8cbd457cbb6ea3e7d5dc9b3'] = 'Konfiguration aktualisiert';
-$_MODULE['<{blockcontactinfos}prestashop>blockcontactinfos_1f8261d17452a959e013666c5df45e07'] = 'Telefon-Nr.';
-$_MODULE['<{blockcontactinfos}prestashop>blockcontactinfos_b17f3f4dcf653a5776792498a9b44d6a'] = 'Einstellungen aktualisieren';
-$_MODULE['<{blockcontactinfos}prestashop>blockcontactinfos_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'E-Mail';
diff --git a/modules/blockcontactinfos/translations/en.php b/modules/blockcontactinfos/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/blockcontactinfos/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-blockcontactinfos_632535e0cdfd3380906f6b7d40ba78d3'] = 'Bloque informaciones de contacto';
-$_MODULE['<{blockcontactinfos}prestashop>blockcontactinfos_dd7bf230fde8d4836917806aff6a6b27'] = 'Dirección';
-$_MODULE['<{blockcontactinfos}prestashop>blockcontactinfos_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'Email';
-$_MODULE['<{blockcontactinfos}prestashop>blockcontactinfos_02d4482d332e1aef3437cd61c9bcc624'] = 'Contacte con nosotros';
-$_MODULE['<{blockcontactinfos}prestashop>blockcontactinfos_c281f92b77ba329f692077d23636f5c9'] = 'Nombre de la empresa:';
-$_MODULE['<{blockcontactinfos}prestashop>blockcontactinfos_2e006b735fbd916d8ab26978ae6714d4'] = 'Tel.:';
-$_MODULE['<{blockcontactinfos}prestashop>blockcontactinfos_86458ae1631be34a6fcbf1a4584f5abe'] = 'Añadir un bloque para añadir algo de información acerca de ponerse en contacto con la tienda';
-$_MODULE['<{blockcontactinfos}prestashop>blockcontactinfos_20015706a8cbd457cbb6ea3e7d5dc9b3'] = 'Configuración actualizada';
-$_MODULE['<{blockcontactinfos}prestashop>blockcontactinfos_1f8261d17452a959e013666c5df45e07'] = 'Número de teléfono';
-$_MODULE['<{blockcontactinfos}prestashop>blockcontactinfos_b17f3f4dcf653a5776792498a9b44d6a'] = 'Ajustes actualizados';
-$_MODULE['<{blockcontactinfos}prestashop>blockcontactinfos_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'Email';
diff --git a/modules/blockcontactinfos/translations/fr.php b/modules/blockcontactinfos/translations/fr.php
deleted file mode 100644
index fd819b21a..000000000
--- a/modules/blockcontactinfos/translations/fr.php
+++ /dev/null
@@ -1,16 +0,0 @@
-blockcontactinfos_632535e0cdfd3380906f6b7d40ba78d3'] = 'Bloc infos contact';
-$_MODULE['<{blockcontactinfos}prestashop>blockcontactinfos_dd7bf230fde8d4836917806aff6a6b27'] = 'Adresse';
-$_MODULE['<{blockcontactinfos}prestashop>blockcontactinfos_02d4482d332e1aef3437cd61c9bcc624'] = 'Contactez-nous';
-$_MODULE['<{blockcontactinfos}prestashop>blockcontactinfos_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'E-mail';
-$_MODULE['<{blockcontactinfos}prestashop>blockcontactinfos_c281f92b77ba329f692077d23636f5c9'] = 'Nom de la société';
-$_MODULE['<{blockcontactinfos}prestashop>blockcontactinfos_2e006b735fbd916d8ab26978ae6714d4'] = 'Tél. : ';
-$_MODULE['<{blockcontactinfos}prestashop>blockcontactinfos_86458ae1631be34a6fcbf1a4584f5abe'] = 'Ajoute un bloc permettant d\'afficher des informations sur les moyens de contacter la boutique';
-$_MODULE['<{blockcontactinfos}prestashop>blockcontactinfos_20015706a8cbd457cbb6ea3e7d5dc9b3'] = 'Configuration mise à jour';
-$_MODULE['<{blockcontactinfos}prestashop>blockcontactinfos_1f8261d17452a959e013666c5df45e07'] = 'Numéro de téléphone';
-$_MODULE['<{blockcontactinfos}prestashop>blockcontactinfos_b17f3f4dcf653a5776792498a9b44d6a'] = 'Mettre à jour la configuration';
-$_MODULE['<{blockcontactinfos}prestashop>blockcontactinfos_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'E-mail : ';
diff --git a/modules/blockcontactinfos/translations/it.php b/modules/blockcontactinfos/translations/it.php
deleted file mode 100644
index b42aa907b..000000000
--- a/modules/blockcontactinfos/translations/it.php
+++ /dev/null
@@ -1,16 +0,0 @@
-blockcontactinfos_632535e0cdfd3380906f6b7d40ba78d3'] = 'Blocco informazioni contatto';
-$_MODULE['<{blockcontactinfos}prestashop>blockcontactinfos_dd7bf230fde8d4836917806aff6a6b27'] = 'Indirizzo';
-$_MODULE['<{blockcontactinfos}prestashop>blockcontactinfos_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'E-mail';
-$_MODULE['<{blockcontactinfos}prestashop>blockcontactinfos_02d4482d332e1aef3437cd61c9bcc624'] = 'Contattaci';
-$_MODULE['<{blockcontactinfos}prestashop>blockcontactinfos_c281f92b77ba329f692077d23636f5c9'] = 'Nome società';
-$_MODULE['<{blockcontactinfos}prestashop>blockcontactinfos_2e006b735fbd916d8ab26978ae6714d4'] = 'Tel:';
-$_MODULE['<{blockcontactinfos}prestashop>blockcontactinfos_86458ae1631be34a6fcbf1a4584f5abe'] = 'Aggiungi un blocco per aggiungere qualche informazione su come contattare il negozio';
-$_MODULE['<{blockcontactinfos}prestashop>blockcontactinfos_20015706a8cbd457cbb6ea3e7d5dc9b3'] = 'Configurazione aggiornata';
-$_MODULE['<{blockcontactinfos}prestashop>blockcontactinfos_1f8261d17452a959e013666c5df45e07'] = 'Numero di telefono';
-$_MODULE['<{blockcontactinfos}prestashop>blockcontactinfos_b17f3f4dcf653a5776792498a9b44d6a'] = 'Aggiorna le impostazioni';
-$_MODULE['<{blockcontactinfos}prestashop>blockcontactinfos_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'E-mail';
diff --git a/modules/blockcurrencies/translations/de.php b/modules/blockcurrencies/translations/de.php
deleted file mode 100644
index 1174d4ad8..000000000
--- a/modules/blockcurrencies/translations/de.php
+++ /dev/null
@@ -1,8 +0,0 @@
-blockcurrencies_80ed40ee905b534ee85ce49a54380107'] = 'Fügt einen Block zur Auswahl der Währung hinzu';
-$_MODULE['<{blockcurrencies}prestashop>blockcurrencies_386c339d37e737a436499d423a77df0c'] = 'Währung';
-$_MODULE['<{blockcurrencies}prestashop>blockcurrencies_f7a31ae8f776597d4282bd3b1013f08b'] = 'Währungsblock';
diff --git a/modules/blockcurrencies/translations/en.php b/modules/blockcurrencies/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/blockcurrencies/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-blockcurrencies_80ed40ee905b534ee85ce49a54380107'] = 'Añadir bloque para selección de moneda';
-$_MODULE['<{blockcurrencies}prestashop>blockcurrencies_386c339d37e737a436499d423a77df0c'] = 'Divisa';
-$_MODULE['<{blockcurrencies}prestashop>blockcurrencies_f7a31ae8f776597d4282bd3b1013f08b'] = 'Bloque de moneda';
diff --git a/modules/blockcurrencies/translations/fr.php b/modules/blockcurrencies/translations/fr.php
deleted file mode 100644
index dbed9eb87..000000000
--- a/modules/blockcurrencies/translations/fr.php
+++ /dev/null
@@ -1,8 +0,0 @@
-blockcurrencies_80ed40ee905b534ee85ce49a54380107'] = 'Ajoute un bloc permettant au client de choisir sa devise';
-$_MODULE['<{blockcurrencies}prestashop>blockcurrencies_386c339d37e737a436499d423a77df0c'] = 'Devises';
-$_MODULE['<{blockcurrencies}prestashop>blockcurrencies_f7a31ae8f776597d4282bd3b1013f08b'] = 'Bloc devises';
diff --git a/modules/blockcurrencies/translations/it.php b/modules/blockcurrencies/translations/it.php
deleted file mode 100644
index 717a68b2e..000000000
--- a/modules/blockcurrencies/translations/it.php
+++ /dev/null
@@ -1,8 +0,0 @@
-blockcurrencies_80ed40ee905b534ee85ce49a54380107'] = 'Aggiunge un blocco per la selezione di una valuta';
-$_MODULE['<{blockcurrencies}prestashop>blockcurrencies_386c339d37e737a436499d423a77df0c'] = 'Valuta';
-$_MODULE['<{blockcurrencies}prestashop>blockcurrencies_f7a31ae8f776597d4282bd3b1013f08b'] = 'Blocco valuta';
diff --git a/modules/blockcustomerprivacy/translations/de.php b/modules/blockcustomerprivacy/translations/de.php
deleted file mode 100644
index cab6c8e53..000000000
--- a/modules/blockcustomerprivacy/translations/de.php
+++ /dev/null
@@ -1,15 +0,0 @@
-blockcustomerprivacy_f2ec0fd2abc5714608241a1a0eac321b'] = 'Block Kunde Datenschutz';
-$_MODULE['<{blockcustomerprivacy}prestashop>blockcustomerprivacy_d71315851e7e67cbacf5101c5c4ab83d'] = 'Die von Ihnen zur Verfügung gestellten personenbezogenen Daten verwenden wir, um Ihre Anfragen zu beantworten, Ihre Aufträge zu bearbeiten oder Ihnen Zugang zu bestimmten Informationen zu verschaffen.';
-$_MODULE['<{blockcustomerprivacy}prestashop>blockcustomerprivacy_d8b716e21c731aba4b94ba9f3ac4858c'] = 'Nachricht für Kunden des Datenschutzes';
-$_MODULE['<{blockcustomerprivacy}prestashop>blockcustomerprivacy_03e1a999dcdb904300ee1b1e767c83c9'] = 'Nachricht, dass in der Account-Erstellung Form angezeigt werden.';
-$_MODULE['<{blockcustomerprivacy}prestashop>blockcustomerprivacy_fb32badede7c8613fddb8502d847c18b'] = 'Bitte stimmen Sie mit dem Kunden des Datenschutzes, indem Sie das Kontrollkästchen unten.';
-$_MODULE['<{blockcustomerprivacy}prestashop>blockcustomerprivacy_cb6b92b60c9302e74a26ac246d0af0fa'] = 'Fügt einen Block, um eine Nachricht zu Kundendaten Privatsphäre anzuzeigen.';
-$_MODULE['<{blockcustomerprivacy}prestashop>blockcustomerprivacy_c9cc8cce247e49bae79f15173ce97354'] = 'Speichern';
-$_MODULE['<{blockcustomerprivacy}prestashop>blockcustomerprivacy_b43d08355db3df47796e65c72cfd5714'] = 'Sie haben das Recht, Ihre persönlichen Angaben zu prüfen, zu aktualisieren order zu entfernen - dafür clicken Sie bitte auf \\"Mein Konto\\"';
-$_MODULE['<{blockcustomerprivacy}prestashop>blockcustomerprivacy_20015706a8cbd457cbb6ea3e7d5dc9b3'] = 'Konfiguration aktualisiert';
-$_MODULE['<{blockcustomerprivacy}prestashop>blockcustomerprivacy_fb0440f9ca32a8b49eded51b09e70821'] = 'Kunden Datenschutz';
diff --git a/modules/blockcustomerprivacy/translations/en.php b/modules/blockcustomerprivacy/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/blockcustomerprivacy/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-blockcustomerprivacy_f2ec0fd2abc5714608241a1a0eac321b'] = 'Bloque de privacidad de datos de los clientes';
-$_MODULE['<{blockcustomerprivacy}prestashop>blockcustomerprivacy_d71315851e7e67cbacf5101c5c4ab83d'] = 'El dato personal que da esta utilizado para responder a sus búsquedas, procesa sus ordenes o autorizase el acceso especifico a la información. ';
-$_MODULE['<{blockcustomerprivacy}prestashop>blockcustomerprivacy_d8b716e21c731aba4b94ba9f3ac4858c'] = 'Mensaje sobre la privacidad de datos de los clientes';
-$_MODULE['<{blockcustomerprivacy}prestashop>blockcustomerprivacy_fb32badede7c8613fddb8502d847c18b'] = 'Por favor, acepte el acuerdo sobre la privacidad de los datos de los clientes marcando la casilla de abajo.';
-$_MODULE['<{blockcustomerprivacy}prestashop>blockcustomerprivacy_03e1a999dcdb904300ee1b1e767c83c9'] = 'Mensaje que se mostrará en el formulario de creación de la cuenta.';
-$_MODULE['<{blockcustomerprivacy}prestashop>blockcustomerprivacy_cb6b92b60c9302e74a26ac246d0af0fa'] = 'Agrega un bloque para mostrar un mensaje respecto a la privacidad de los datos.';
-$_MODULE['<{blockcustomerprivacy}prestashop>blockcustomerprivacy_c9cc8cce247e49bae79f15173ce97354'] = 'Guardar';
-$_MODULE['<{blockcustomerprivacy}prestashop>blockcustomerprivacy_b43d08355db3df47796e65c72cfd5714'] = 'Tiene derecho de modificar todas las informaciones personales que tenemos sobre usted en pagina \\"my account\\".';
-$_MODULE['<{blockcustomerprivacy}prestashop>blockcustomerprivacy_20015706a8cbd457cbb6ea3e7d5dc9b3'] = 'Configuración actualizada';
-$_MODULE['<{blockcustomerprivacy}prestashop>blockcustomerprivacy_fb0440f9ca32a8b49eded51b09e70821'] = 'Privacidad de los datos de los clientes';
-$_MODULE['<{blockcustomerprivacy}prestashop>blockcustomerprivacy_b51d73fb490ad1245fa9b87042bbbbb7'] = 'Recorde que si el texto es demasiado largo para estar escrito directamente en el campo, puede añadir un enlace en una de sus paginas creadas con la pagina “CMS” bajo el menú “Preferencias”.';
diff --git a/modules/blockcustomerprivacy/translations/fr.php b/modules/blockcustomerprivacy/translations/fr.php
deleted file mode 100644
index 1ba9dd078..000000000
--- a/modules/blockcustomerprivacy/translations/fr.php
+++ /dev/null
@@ -1,16 +0,0 @@
-blockcustomerprivacy_f2ec0fd2abc5714608241a1a0eac321b'] = 'Bloc confidentialité des données clients';
-$_MODULE['<{blockcustomerprivacy}prestashop>blockcustomerprivacy_d71315851e7e67cbacf5101c5c4ab83d'] = 'Les informations personnelles que nous collectons sont destinées à mieux répondre à vos demandes et traiter vos commandes.';
-$_MODULE['<{blockcustomerprivacy}prestashop>blockcustomerprivacy_d8b716e21c731aba4b94ba9f3ac4858c'] = 'Message concernant la confidentialité des données clients';
-$_MODULE['<{blockcustomerprivacy}prestashop>blockcustomerprivacy_03e1a999dcdb904300ee1b1e767c83c9'] = 'Le message sera affiché sur le formulaire de création de compte.';
-$_MODULE['<{blockcustomerprivacy}prestashop>blockcustomerprivacy_fb32badede7c8613fddb8502d847c18b'] = 'Veuillez accepter nos conditions concernant la confidentialité des données clients, en cochant la case ci-dessous.';
-$_MODULE['<{blockcustomerprivacy}prestashop>blockcustomerprivacy_cb6b92b60c9302e74a26ac246d0af0fa'] = 'Ajoute un bloc qui affiche un message concernant la confidentialité des données clients.';
-$_MODULE['<{blockcustomerprivacy}prestashop>blockcustomerprivacy_c9cc8cce247e49bae79f15173ce97354'] = 'Enregistrer';
-$_MODULE['<{blockcustomerprivacy}prestashop>blockcustomerprivacy_b43d08355db3df47796e65c72cfd5714'] = 'Vous disposez à tout moment d’un droit d’accès, de modification et de suppression de vos informations personnelles que vous pouvez exercer via la page \\"mon compte\\" de ce site internet.';
-$_MODULE['<{blockcustomerprivacy}prestashop>blockcustomerprivacy_20015706a8cbd457cbb6ea3e7d5dc9b3'] = 'Configuration mise à jour';
-$_MODULE['<{blockcustomerprivacy}prestashop>blockcustomerprivacy_b51d73fb490ad1245fa9b87042bbbbb7'] = 'Astuce : si votre texte est trop long pour être affiché entièrement sur le formulaire d\'inscription sans gêner la navigation, vous pouvez à la place indiquer un lien vers une des pages que vous avez créées via la page \\"CMS\\".';
-$_MODULE['<{blockcustomerprivacy}prestashop>blockcustomerprivacy_fb0440f9ca32a8b49eded51b09e70821'] = 'Confidentialité des données clients';
diff --git a/modules/blockcustomerprivacy/translations/it.php b/modules/blockcustomerprivacy/translations/it.php
deleted file mode 100644
index 43abc3d21..000000000
--- a/modules/blockcustomerprivacy/translations/it.php
+++ /dev/null
@@ -1,15 +0,0 @@
-blockcustomerprivacy_f2ec0fd2abc5714608241a1a0eac321b'] = 'Blocco dei dati dei clienti della privacy';
-$_MODULE['<{blockcustomerprivacy}prestashop>blockcustomerprivacy_d71315851e7e67cbacf5101c5c4ab83d'] = 'I dati personali che fornisci sono usati per rispondere alle tue richieste, trattare i tuoi ordini o permetterti di accedere a delle informazioni specifiche.';
-$_MODULE['<{blockcustomerprivacy}prestashop>blockcustomerprivacy_d8b716e21c731aba4b94ba9f3ac4858c'] = 'Messaggio per la privacy dei dati dei clienti';
-$_MODULE['<{blockcustomerprivacy}prestashop>blockcustomerprivacy_03e1a999dcdb904300ee1b1e767c83c9'] = 'Messaggio che verrà visualizzato sotto forma di creazione dell\'account.';
-$_MODULE['<{blockcustomerprivacy}prestashop>blockcustomerprivacy_fb32badede7c8613fddb8502d847c18b'] = 'Si prega di concordare con la riservatezza dei dati dei clienti spuntando la casella qui sotto.';
-$_MODULE['<{blockcustomerprivacy}prestashop>blockcustomerprivacy_cb6b92b60c9302e74a26ac246d0af0fa'] = 'Aggiunge un blocco per visualizzare un messaggio circa la privacy dei dati dei clienti.';
-$_MODULE['<{blockcustomerprivacy}prestashop>blockcustomerprivacy_c9cc8cce247e49bae79f15173ce97354'] = 'Salvare';
-$_MODULE['<{blockcustomerprivacy}prestashop>blockcustomerprivacy_b43d08355db3df47796e65c72cfd5714'] = 'Hai il diritto di modificare e cancellare tutte le tue informazioni personali che possediamo nella pagina \\"Il Mio Conto\\".';
-$_MODULE['<{blockcustomerprivacy}prestashop>blockcustomerprivacy_20015706a8cbd457cbb6ea3e7d5dc9b3'] = 'Configurazione aggiornata';
-$_MODULE['<{blockcustomerprivacy}prestashop>blockcustomerprivacy_fb0440f9ca32a8b49eded51b09e70821'] = 'Privacy dei dati dei clienti';
diff --git a/modules/blocklanguages/translations/de.php b/modules/blocklanguages/translations/de.php
deleted file mode 100644
index 4d168bc50..000000000
--- a/modules/blocklanguages/translations/de.php
+++ /dev/null
@@ -1,7 +0,0 @@
-blocklanguages_5b2b53f769604bcbee6f67882c73fb94'] = 'Fügt einen Block zur Auswahl der Sprache hinzu';
-$_MODULE['<{blocklanguages}prestashop>blocklanguages_d5988791c07fedc0e2fc77683b4e61f6'] = 'Sprachblock';
diff --git a/modules/blocklanguages/translations/en.php b/modules/blocklanguages/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/blocklanguages/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-blocklanguages_5b2b53f769604bcbee6f67882c73fb94'] = 'Añadir un bloque para seleccionar idioma';
-$_MODULE['<{blocklanguages}prestashop>blocklanguages_d5988791c07fedc0e2fc77683b4e61f6'] = 'Bloque de idiomas';
diff --git a/modules/blocklanguages/translations/fr.php b/modules/blocklanguages/translations/fr.php
deleted file mode 100644
index f8fa3b10b..000000000
--- a/modules/blocklanguages/translations/fr.php
+++ /dev/null
@@ -1,7 +0,0 @@
-blocklanguages_5b2b53f769604bcbee6f67882c73fb94'] = 'Ajoute un bloc permettant au client de choisir sa langue';
-$_MODULE['<{blocklanguages}prestashop>blocklanguages_d5988791c07fedc0e2fc77683b4e61f6'] = 'Bloc langues';
diff --git a/modules/blocklanguages/translations/it.php b/modules/blocklanguages/translations/it.php
deleted file mode 100644
index 68b41f4ea..000000000
--- a/modules/blocklanguages/translations/it.php
+++ /dev/null
@@ -1,7 +0,0 @@
-blocklanguages_5b2b53f769604bcbee6f67882c73fb94'] = 'Aggiunge un blocco selezionare una lingua';
-$_MODULE['<{blocklanguages}prestashop>blocklanguages_d5988791c07fedc0e2fc77683b4e61f6'] = 'Blocco lingua';
diff --git a/modules/blocklayered/de.php b/modules/blocklayered/de.php
deleted file mode 100644
index 7c3e01b60..000000000
--- a/modules/blocklayered/de.php
+++ /dev/null
@@ -1,137 +0,0 @@
-blocklayered-no-products_5c9838becf9bbce28ba90a7426daf171'] = 'Es gibt keine Produkte.';
-$_MODULE['<{blocklayered}prestashop>blocklayered_84241e458cdd5162745500a59a3680f3'] = 'Layered Navigation-Block';
-$_MODULE['<{blocklayered}prestashop>blocklayered_2d08fa8e157fe3f1875402cbd98aee1b'] = 'Zeigt einen Block mit Layered Navigation-Filter an';
-$_MODULE['<{blocklayered}prestashop>blocklayered_3b3d06023f6353f8fd05f859b298573e'] = 'URL:';
-$_MODULE['<{blocklayered}prestashop>blocklayered_6252c0f2c2ed83b7b06dfca86d4650bb'] = 'Ungültige Zeichen:';
-$_MODULE['<{blocklayered}prestashop>blocklayered_f39f64ad2722b269d9b6cb2ec97ba4ad'] = 'Bestimmten Format in url Block geschichtet Generation';
-$_MODULE['<{blocklayered}prestashop>blocklayered_7b250cb374c12c42a75227ba75df7779'] = 'Meta Titel:';
-$_MODULE['<{blocklayered}prestashop>blocklayered_a4020753b3e63fd8a1d0c0b2b33fc999'] = 'Spezifische Format für Meta-Titel';
-$_MODULE['<{blocklayered}prestashop>blocklayered_b3786b970611c1a3809dd51b630812a7'] = '\"%s\" ist keine gültige URL';
-$_MODULE['<{blocklayered}prestashop>blocklayered_c3ef60194d18cf4026d22051b3a19428'] = 'Wendeschneidplatten:';
-$_MODULE['<{blocklayered}prestashop>blocklayered_a075d40d1a15460220cbf564b7b9b591'] = 'Verwenden Sie dieses Attribut in url durch die Modul-Block Layered Navigation generiert';
-$_MODULE['<{blocklayered}prestashop>blocklayered_ccc12c5568381293a27db0232877937b'] = 'Filter Template-Namen erforderlich (darf nicht leer sein)';
-$_MODULE['<{blocklayered}prestashop>blocklayered_817c37b9c1f5cd4a450dad384e63e6c7'] = 'Ihre Filter';
-$_MODULE['<{blocklayered}prestashop>blocklayered_3185cefd67b575e582063148e4f15860'] = 'wurde erfolgreich aktualisiert.';
-$_MODULE['<{blocklayered}prestashop>blocklayered_7ccab4d8de5d6b9bb61e99c7bba343ab'] = 'wurde erfolgreich hinzugefügt.';
-$_MODULE['<{blocklayered}prestashop>blocklayered_fe016d3b990c2a9dd72ab6b45892f2ae'] = 'Einstellungen erfolgreich gespeichert';
-$_MODULE['<{blocklayered}prestashop>blocklayered_0d07af70081a2421e2b2972609d699db'] = 'Filter Vorlage gelöscht, Kategorien aktualisiert (kehrte zu Standard-Filter-Vorlage).';
-$_MODULE['<{blocklayered}prestashop>blocklayered_491f46aa6101560e9f1e0d55a063231b'] = 'Filter-Vorlage nicht gefunden';
-$_MODULE['<{blocklayered}prestashop>blocklayered_09da2b6f1217055bb22caa6ea08d9b80'] = 'Layered Navigation';
-$_MODULE['<{blocklayered}prestashop>blocklayered_df2bbc994d10995dcffdf96dbb7acbb1'] = 'Indizes und Caches';
-$_MODULE['<{blocklayered}prestashop>blocklayered_ad3e7eb269d8ba0ac388267627f45b5a'] = 'Indexing sind im Gange. Bitte lassen Sie diese Seite';
-$_MODULE['<{blocklayered}prestashop>blocklayered_5e2420d2318025812dc3e231ddb66b0b'] = 'Index aller fehlenden Preisen';
-$_MODULE['<{blocklayered}prestashop>blocklayered_9612e005e96ad32b8830be4d0377e7e6'] = 'Re-build gesamten Preisindex';
-$_MODULE['<{blocklayered}prestashop>blocklayered_d47f700b6db025d98cae0b340ed847e9'] = 'Build-Attribut-Index';
-$_MODULE['<{blocklayered}prestashop>blocklayered_341ce134fbec9978d185ff533931b1b3'] = 'Bauen url Index';
-$_MODULE['<{blocklayered}prestashop>blocklayered_53795c3624ae2361363780589aa2aa42'] = 'Sie können einen Cron-Job, wird re-build Preisindex mit dem folgenden URL:';
-$_MODULE['<{blocklayered}prestashop>blocklayered_94f6d9bfb2c36037040b5764e73dca47'] = 'Sie können einen Cron-Job, wird re-build url Index mithilfe der folgenden URL:';
-$_MODULE['<{blocklayered}prestashop>blocklayered_e43b32b88c77e49f06144cd1ffaeba96'] = 'Sie können einen Cron-Job, wird re-build-Attribut-Index mit dem folgenden URL:';
-$_MODULE['<{blocklayered}prestashop>blocklayered_16349835364cf839e6670b0de7da6362'] = 'Ein nächtliches Wiederaufbau wird empfohlen.';
-$_MODULE['<{blocklayered}prestashop>blocklayered_56fc8142961f1f3e9f9ec0c178881b69'] = '(In progress)';
-$_MODULE['<{blocklayered}prestashop>blocklayered_4c0d1a1d7b01bec7b820c0655dda7b1f'] = 'URL Indexierung fertig';
-$_MODULE['<{blocklayered}prestashop>blocklayered_8bf466a25752f2552df8dc8b04fc10ba'] = 'Attribut-Indexierung beendet';
-$_MODULE['<{blocklayered}prestashop>blocklayered_b5ca9d41e254963a90417fe12bafba5a'] = 'URL Indexierung fehlgeschlagen';
-$_MODULE['<{blocklayered}prestashop>blocklayered_399e951fec4faaeab09333f40bf6d80c'] = 'Attribut-Indexierung fehlgeschlagen';
-$_MODULE['<{blocklayered}prestashop>blocklayered_e2dd8f544131eaf47a4f722ace7f876b'] = 'Preis Indexierung fertig';
-$_MODULE['<{blocklayered}prestashop>blocklayered_7cf7d150dd287df0a8e17eeb4cf2161d'] = '(In progress,%s Produkte Preis-Index)';
-$_MODULE['<{blocklayered}prestashop>blocklayered_ceda32b8540dee4f1222cd482a513db8'] = 'Preis Indexierung fehlgeschlagen';
-$_MODULE['<{blocklayered}prestashop>blocklayered_a2654ab6d514d63a3be2a4d6ea6b39df'] = 'Bestehende Filter-Vorlagen';
-$_MODULE['<{blocklayered}prestashop>blocklayered_d4041fbb1580b68012b82fee850014a2'] = 'Filter-Vorlagen konfiguriert sind:';
-$_MODULE['<{blocklayered}prestashop>blocklayered_b718adec73e04ce3ec720dd11a06a308'] = 'ID';
-$_MODULE['<{blocklayered}prestashop>blocklayered_49ee3087348e8d44e1feda1917443987'] = 'Name';
-$_MODULE['<{blocklayered}prestashop>blocklayered_af1b98adf7f686b84cd0b443e022b7a0'] = 'Kategorien';
-$_MODULE['<{blocklayered}prestashop>blocklayered_f7f19392da30e81c3abf433ce7b8ca38'] = 'Erstellt am';
-$_MODULE['<{blocklayered}prestashop>blocklayered_06df33001c1d7187fdd81ea1f5b277aa'] = 'Handlungen';
-$_MODULE['<{blocklayered}prestashop>blocklayered_7dce122004969d56ae2e0245cb754d35'] = 'Bearbeiten';
-$_MODULE['<{blocklayered}prestashop>blocklayered_ee7d4220e8cade335dde5e0f414b5969'] = 'Lösche Filter-Vorlage #%d?';
-$_MODULE['<{blocklayered}prestashop>blocklayered_f2a6c498fb90ee345d997f888fce3b18'] = 'Löschen';
-$_MODULE['<{blocklayered}prestashop>blocklayered_058eeeba77f547f8a9a295a0efd4f6cd'] = 'Kein Filter-Vorlage gefunden.';
-$_MODULE['<{blocklayered}prestashop>blocklayered_c25a08cd48b8fd27ff49f435f05640c3'] = 'Bauen Sie Ihren eigenen Filter-Vorlage';
-$_MODULE['<{blocklayered}prestashop>blocklayered_0ce4150f57948567deeaa58d0c367412'] = 'Schritt 1 / 3 - Wählen Sie die Kategorien';
-$_MODULE['<{blocklayered}prestashop>blocklayered_99cdd6365310333a594b16e5658eee5c'] = 'Verwenden Sie diese Vorlage für:';
-$_MODULE['<{blocklayered}prestashop>blocklayered_62f5d708d6ad1fa1ddd9429a65cccbea'] = 'Alle Kategorien';
-$_MODULE['<{blocklayered}prestashop>blocklayered_4071a0db922638ac9648539ea2ddaa8b'] = '*Spezielle* Kategorien';
-$_MODULE['<{blocklayered}prestashop>blocklayered_ef7de3f485174ff47f061ad27d83d0ee'] = 'ausgewählt';
-$_MODULE['<{blocklayered}prestashop>blocklayered_c2d0bf5ad42279c519cdcb4a94eb46b6'] = 'Wählen Sie die Shop Association:';
-$_MODULE['<{blocklayered}prestashop>blocklayered_f72c75bdf80dc88b2529162f4947edc8'] = 'Bitte wählen Sie mindestens eine bestimmte Kategorie oder wählen Sie \"Alle Kategorien\".';
-$_MODULE['<{blocklayered}prestashop>blocklayered_64646db703ca003a37bd1e73977a3a4d'] = 'Kategorien mit dieser Vorlage';
-$_MODULE['<{blocklayered}prestashop>blocklayered_d758a9754eb9f36db05c22ad0c77e38e'] = 'Wählen Sie eine oder mehrere Kategorien mit diesem Filter-Vorlage';
-$_MODULE['<{blocklayered}prestashop>blocklayered_5965d2ce192837f00d743d8a674382c1'] = 'Drücken Sie \"Save this selection\" oder das Fenster schließen, um zu sparen';
-$_MODULE['<{blocklayered}prestashop>blocklayered_fa03eb688ad8aa1db593d33dabd89bad'] = 'Wurzel';
-$_MODULE['<{blocklayered}prestashop>blocklayered_8cf04a9734132302f96da8e113e80ce5'] = 'Startseite';
-$_MODULE['<{blocklayered}prestashop>blocklayered_b56c3bda503a8dc4be356edb0cc31793'] = 'Alle schließen';
-$_MODULE['<{blocklayered}prestashop>blocklayered_5ffd7a335dd836b3373f5ec570a58bdc'] = 'Alle öffnen';
-$_MODULE['<{blocklayered}prestashop>blocklayered_5e9df908eafa83cb51c0a3720e8348c7'] = 'Alle aktivieren';
-$_MODULE['<{blocklayered}prestashop>blocklayered_9747d23c8cc358c5ef78c51e59cd6817'] = 'Alle deaktivieren';
-$_MODULE['<{blocklayered}prestashop>blocklayered_d0f06038b6b3aa5edc07c7a6fd3ca3f9'] = 'Kategorie suchen';
-$_MODULE['<{blocklayered}prestashop>blocklayered_72dd03f11489ff6f604a4eb57c957202'] = 'Speichern Sie diese Auswahl';
-$_MODULE['<{blocklayered}prestashop>blocklayered_2e527847e8c785f3fd99651f64006798'] = 'Schritt 2 / 3 - Wählen Sie Filter';
-$_MODULE['<{blocklayered}prestashop>blocklayered_3488a51eb7f723d65daeff912e69b177'] = 'Ausgewählte Filter';
-$_MODULE['<{blocklayered}prestashop>blocklayered_cf3cd81b30d4c4fd996ae5374fe656da'] = 'Keinen Filter ausgewählt.';
-$_MODULE['<{blocklayered}prestashop>blocklayered_8524de963f07201e5c086830d370797f'] = 'Lädt...';
-$_MODULE['<{blocklayered}prestashop>blocklayered_597c70730ebddba7d845e686665f9f28'] = 'Sie gewählt Alle Kategorien-, alle vorhandenen Filter-Vorlagen werden gelöscht, OK?';
-$_MODULE['<{blocklayered}prestashop>blocklayered_c48c42c966b3a35ad3b893e798bdec7c'] = 'Fehler:';
-$_MODULE['<{blocklayered}prestashop>blocklayered_74a6a547d86659933a210680efb6e6d1'] = 'Schritt 3 / 3 - Name Ihrer Vorlage';
-$_MODULE['<{blocklayered}prestashop>blocklayered_f8263d99054a4cdb3428196f078fa212'] = 'Template Name:';
-$_MODULE['<{blocklayered}prestashop>blocklayered_32d2e6cd4bb1719c572ef470a3a525b6'] = 'Meine Vorlage %s';
-$_MODULE['<{blocklayered}prestashop>blocklayered_5f514b580ea1b6bdb681916bc1deb207'] = 'Nur als Erinnerung';
-$_MODULE['<{blocklayered}prestashop>blocklayered_188185ae335eb523e53d6d31ede21f1c'] = 'Kein Filter wurde ausgewählt, für die betroffenden Kategorien wird die Facettennavigation deaktiviert';
-$_MODULE['<{blocklayered}prestashop>blocklayered_ef1094d9826e98f5417e0a37f1742133'] = 'Speichern Sie diese Filter-Vorlage';
-$_MODULE['<{blocklayered}prestashop>blocklayered_254f642527b45bc260048e30704edb39'] = 'Konfiguration';
-$_MODULE['<{blocklayered}prestashop>blocklayered_054b4f3ea543c990f6b125f41af6ebf7'] = 'Option';
-$_MODULE['<{blocklayered}prestashop>blocklayered_689202409e48743b914713f96d93947c'] = 'Wert';
-$_MODULE['<{blocklayered}prestashop>blocklayered_9868c3ac0748acf3b981a96cfe163ee8'] = 'Filter verstecken Werte kein Produkt passenden';
-$_MODULE['<{blocklayered}prestashop>blocklayered_93cba07454f06a4a960172bbd6e2a435'] = 'Ja';
-$_MODULE['<{blocklayered}prestashop>blocklayered_bafd7322c6e97d25b6299b5d6fe8920b'] = 'Nein';
-$_MODULE['<{blocklayered}prestashop>blocklayered_8531c73de81b9ed94322dda7cf947daa'] = 'Zeigt die Anzahl der passenden Produkten';
-$_MODULE['<{blocklayered}prestashop>blocklayered_ee61c015043c79c1370fc14980dd27b9'] = 'Produkte aus Unterkategorien zeigen';
-$_MODULE['<{blocklayered}prestashop>blocklayered_a19399fa42f1ab059401a14b9f13eba1'] = 'Kategoriefilter Tiefe (0 für keine Grenzen, 1 für Standard)';
-$_MODULE['<{blocklayered}prestashop>blocklayered_3e652bd299bb3ee3d458c0dcc7fd706e'] = 'Steuer nutzen, um Preise zu filtern';
-$_MODULE['<{blocklayered}prestashop>blocklayered_cc787af9edec8ce947ada8ab5bbff6e5'] = 'Erlauben Sie Indexierungs-Robots (Google, Yahoo, Bing...) den Condition Filter zu nutzen';
-$_MODULE['<{blocklayered}prestashop>blocklayered_ab28e5086d1dcb1474a4bd4951b148b9'] = 'Erlauben Sie Indexierungs-Robots (Google, Yahoo, Bing...) den Availability Filter zu nutzen';
-$_MODULE['<{blocklayered}prestashop>blocklayered_1218da2abb1e88e7fe8855995def9fef'] = 'Erlauben Sie Indexierungs-Robots (Google, Yahoo, Bing...) den Hersteller Filter zu nutzen';
-$_MODULE['<{blocklayered}prestashop>blocklayered_c41e97692bc79531a51dfca4b7f6bee0'] = 'erlauben die Indizierungs-Bots, die Kategoriefilter zu nutzen.';
-$_MODULE['<{blocklayered}prestashop>blocklayered_cf565402d32b79d33f626252949a6941'] = 'Konfiguration speichern';
-$_MODULE['<{blocklayered}prestashop>blocklayered_3601146c4e948c32b6424d2c0a7f0118'] = 'Preis';
-$_MODULE['<{blocklayered}prestashop>blocklayered_8c489d0946f66d17d73f26366a4bf620'] = 'Gewicht';
-$_MODULE['<{blocklayered}prestashop>blocklayered_03c2e7e41ffc181a4e84080b4710e81e'] = 'Neu';
-$_MODULE['<{blocklayered}prestashop>blocklayered_019d1ca7d50cc54b995f60d456435e87'] = 'Gebraucht';
-$_MODULE['<{blocklayered}prestashop>blocklayered_6da03a74721a0554b7143254225cc08a'] = 'Überholt';
-$_MODULE['<{blocklayered}prestashop>blocklayered_9e2941b3c81256fac10392aaca4ccfde'] = 'Zustand';
-$_MODULE['<{blocklayered}prestashop>blocklayered_2d25c72c1b18e562f6654fff8e11711e'] = 'Nicht verfügbar';
-$_MODULE['<{blocklayered}prestashop>blocklayered_fcebe56087b9373f15514831184fa572'] = 'Auf Lager';
-$_MODULE['<{blocklayered}prestashop>blocklayered_faeaec9eda6bc4c8cb6e1a9156a858be'] = 'Verfügbarkeit';
-$_MODULE['<{blocklayered}prestashop>blocklayered_c0bd7654d5b278e65f21cf4e9153fdb4'] = 'Hersteller';
-$_MODULE['<{blocklayered}prestashop>blocklayered_308edffd52afae39cc6277e246ec5df8'] = 'Die verfügbaren Filter';
-$_MODULE['<{blocklayered}prestashop>blocklayered_cfbc982f8fb7a0cc3abb3c85c795ab41'] = 'Sub-Kategorien filtern';
-$_MODULE['<{blocklayered}prestashop>blocklayered_af605ea55ee39e54c444f217e346048f'] = 'Kein Limit';
-$_MODULE['<{blocklayered}prestashop>blocklayered_4f8222964f9a317cef99dddc23a121bd'] = 'Checkbox';
-$_MODULE['<{blocklayered}prestashop>blocklayered_07a9ca8c8228dd3399141e228034fedf'] = 'Radio Button';
-$_MODULE['<{blocklayered}prestashop>blocklayered_5204077231fc7164e2269e96b584dd95'] = 'Drop-down Liste';
-$_MODULE['<{blocklayered}prestashop>blocklayered_cd50ff1c5332f9920acf8173c4aab425'] = 'Produkt Lager-Filter';
-$_MODULE['<{blocklayered}prestashop>blocklayered_048c1728a0a6cf36f56c9dcdd23d8a14'] = 'Artikelzustand Filter';
-$_MODULE['<{blocklayered}prestashop>blocklayered_02ecc2cbb645a2b859deba6907334cc8'] = 'Produkt-Hersteller Filter';
-$_MODULE['<{blocklayered}prestashop>blocklayered_cc72ed9534a489b5d2e5882735bf1364'] = 'Produktgewicht Filter (Slider)';
-$_MODULE['<{blocklayered}prestashop>blocklayered_2d9b9a764fb0be4be10e1b2fce63f561'] = 'Slider';
-$_MODULE['<{blocklayered}prestashop>blocklayered_7e650380ef2b9cec2f2a96e6266ca93d'] = 'Input-Bereich';
-$_MODULE['<{blocklayered}prestashop>blocklayered_010359888c6e811caee8e540221f0a21'] = 'Werteliste';
-$_MODULE['<{blocklayered}prestashop>blocklayered_0649bb392812f99ff6b0e2ba160675fa'] = 'Produkt Preis-Filter (Slider)';
-$_MODULE['<{blocklayered}prestashop>blocklayered_88abab51d4f2e6732b518911bfca58a4'] = 'Attribut-Gruppe: %1$s (%2$d Attribute)';
-$_MODULE['<{blocklayered}prestashop>blocklayered_e38ebd31243143bf3f3bd3810b5fc156'] = 'Attribut-Gruppe: %1$s (%2$d Attribut)';
-$_MODULE['<{blocklayered}prestashop>blocklayered_ee59f74265cd7f85d0ad30206a1a89b0'] = 'Diese Gruppe wird Benutzer zu erlauben, eine Farbe auswählen';
-$_MODULE['<{blocklayered}prestashop>blocklayered_7d06fc6f3166570e5d8995088066c0a2'] = 'Produktmerkmale: %1$s (%2$d Werte)';
-$_MODULE['<{blocklayered}prestashop>blocklayered_57d6fd5e5b9c215d6edac66b67e65773'] = 'Produktmerkmale: %1$s (%2$d Wert)';
-$_MODULE['<{blocklayered}prestashop>blocklayered_c32516babc5b6c47eb8ce1bfc223253c'] = 'Katalog';
-$_MODULE['<{blocklayered}prestashop>blocklayered_1262d1b9fbffb3a8e85ac9e4b449e989'] = 'Aktivierte Filter:';
-$_MODULE['<{blocklayered}prestashop>blocklayered_ea4788705e6873b424c65e91c2846b19'] = 'Abbrechen';
-$_MODULE['<{blocklayered}prestashop>blocklayered_853ae90f0351324bd73ea615e6487517'] = ':';
-$_MODULE['<{blocklayered}prestashop>blocklayered_b47b72ddf8a3fa1949a7fb6bb5dbc60c'] = 'Keine Filter';
-$_MODULE['<{blocklayered}prestashop>blocklayered_75954a3c6f2ea54cb9dff249b6b5e8e6'] = 'Range:';
-$_MODULE['<{blocklayered}prestashop>blocklayered_5da618e8e4b89c66fe86e32cdafde142'] = 'Von';
-$_MODULE['<{blocklayered}prestashop>blocklayered_01b6e20344b68835c5ed1ddedf20d531'] = 'Empfänger';
-$_MODULE['<{blocklayered}prestashop>blocklayered_146ffe2fd9fa5bec3b63b52543793ec7'] = 'Mehr anzeigen';
-$_MODULE['<{blocklayered}prestashop>blocklayered_c74ea6dbff701bfa23819583c52ebd97'] = 'Weniger anzeigen';
diff --git a/modules/blocklayered/en.php b/modules/blocklayered/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/blocklayered/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-blocklayered-no-products_5c9838becf9bbce28ba90a7426daf171'] = 'No hay productos.';
-$_MODULE['<{blocklayered}prestashop>blocklayered_84241e458cdd5162745500a59a3680f3'] = 'Bloque navegación por facetas';
-$_MODULE['<{blocklayered}prestashop>blocklayered_2d08fa8e157fe3f1875402cbd98aee1b'] = 'Muestra un bloque con los filtros de la navegación por facetas';
-$_MODULE['<{blocklayered}prestashop>blocklayered_3b3d06023f6353f8fd05f859b298573e'] = 'URL:';
-$_MODULE['<{blocklayered}prestashop>blocklayered_6252c0f2c2ed83b7b06dfca86d4650bb'] = 'Caracteres no válidos:';
-$_MODULE['<{blocklayered}prestashop>blocklayered_f39f64ad2722b269d9b6cb2ec97ba4ad'] = 'Formato de dirección URL específica en la generación de bloque de capas';
-$_MODULE['<{blocklayered}prestashop>blocklayered_7b250cb374c12c42a75227ba75df7779'] = 'Meta título:';
-$_MODULE['<{blocklayered}prestashop>blocklayered_a4020753b3e63fd8a1d0c0b2b33fc999'] = 'Formato específico para el título de meta';
-$_MODULE['<{blocklayered}prestashop>blocklayered_b3786b970611c1a3809dd51b630812a7'] = '\"%s\" no es una URL válida';
-$_MODULE['<{blocklayered}prestashop>blocklayered_c3ef60194d18cf4026d22051b3a19428'] = 'Indexable:';
-$_MODULE['<{blocklayered}prestashop>blocklayered_a075d40d1a15460220cbf564b7b9b591'] = 'Utilice este atributo en la URL generada por el módulo de navegación por capas';
-$_MODULE['<{blocklayered}prestashop>blocklayered_ccc12c5568381293a27db0232877937b'] = 'Nombre de la plantilla de filtro necesario (no puede estar vacío)';
-$_MODULE['<{blocklayered}prestashop>blocklayered_817c37b9c1f5cd4a450dad384e63e6c7'] = 'Su filtro';
-$_MODULE['<{blocklayered}prestashop>blocklayered_3185cefd67b575e582063148e4f15860'] = 'se ha actualizado correctamente.';
-$_MODULE['<{blocklayered}prestashop>blocklayered_7ccab4d8de5d6b9bb61e99c7bba343ab'] = 'se ha añadido correctamente.';
-$_MODULE['<{blocklayered}prestashop>blocklayered_fe016d3b990c2a9dd72ab6b45892f2ae'] = 'Configuración guardada con éxito';
-$_MODULE['<{blocklayered}prestashop>blocklayered_0d07af70081a2421e2b2972609d699db'] = 'Plantilla de filtro eliminada, categorías actualizadas (volvió a la plantilla predeterminada del filtro).';
-$_MODULE['<{blocklayered}prestashop>blocklayered_491f46aa6101560e9f1e0d55a063231b'] = 'Plantilla de filtro no se encuentra';
-$_MODULE['<{blocklayered}prestashop>blocklayered_09da2b6f1217055bb22caa6ea08d9b80'] = 'Capas de navegación';
-$_MODULE['<{blocklayered}prestashop>blocklayered_df2bbc994d10995dcffdf96dbb7acbb1'] = 'Los índices y cachés';
-$_MODULE['<{blocklayered}prestashop>blocklayered_ad3e7eb269d8ba0ac388267627f45b5a'] = 'Indexación está en marcha. Por favor, no deje esta página';
-$_MODULE['<{blocklayered}prestashop>blocklayered_5e2420d2318025812dc3e231ddb66b0b'] = 'Índice de todos los precios faltantes';
-$_MODULE['<{blocklayered}prestashop>blocklayered_9612e005e96ad32b8830be4d0377e7e6'] = 'Reconstruir índice de precios';
-$_MODULE['<{blocklayered}prestashop>blocklayered_d47f700b6db025d98cae0b340ed847e9'] = 'Construir índice de atributos';
-$_MODULE['<{blocklayered}prestashop>blocklayered_341ce134fbec9978d185ff533931b1b3'] = 'Construir índice de URL';
-$_MODULE['<{blocklayered}prestashop>blocklayered_53795c3624ae2361363780589aa2aa42'] = 'Puede configurar una tarea programada que la reconstrucción de índice de precios utilizando la siguiente URL:';
-$_MODULE['<{blocklayered}prestashop>blocklayered_94f6d9bfb2c36037040b5764e73dca47'] = 'Puede configurar una tarea programada que la reconstrucción de índice de la URL utilizando la siguiente URL:';
-$_MODULE['<{blocklayered}prestashop>blocklayered_e43b32b88c77e49f06144cd1ffaeba96'] = 'Puede configurar una tarea programada que la reconstrucción de índice de atributo mediante la siguiente URL:';
-$_MODULE['<{blocklayered}prestashop>blocklayered_16349835364cf839e6670b0de7da6362'] = 'Se recomienda una reconstrucción';
-$_MODULE['<{blocklayered}prestashop>blocklayered_56fc8142961f1f3e9f9ec0c178881b69'] = '(En curso)';
-$_MODULE['<{blocklayered}prestashop>blocklayered_4c0d1a1d7b01bec7b820c0655dda7b1f'] = 'Indexación URL terminado';
-$_MODULE['<{blocklayered}prestashop>blocklayered_8bf466a25752f2552df8dc8b04fc10ba'] = 'Indización de atributos terminado';
-$_MODULE['<{blocklayered}prestashop>blocklayered_b5ca9d41e254963a90417fe12bafba5a'] = 'Indexación de URL fallo';
-$_MODULE['<{blocklayered}prestashop>blocklayered_399e951fec4faaeab09333f40bf6d80c'] = 'Indización de atributos fallo';
-$_MODULE['<{blocklayered}prestashop>blocklayered_e2dd8f544131eaf47a4f722ace7f876b'] = 'Indexación de los precios terminado';
-$_MODULE['<{blocklayered}prestashop>blocklayered_7cf7d150dd287df0a8e17eeb4cf2161d'] = '(en progreso,%s productos a indexar)';
-$_MODULE['<{blocklayered}prestashop>blocklayered_ceda32b8540dee4f1222cd482a513db8'] = 'Indexación de los precios fallo';
-$_MODULE['<{blocklayered}prestashop>blocklayered_a2654ab6d514d63a3be2a4d6ea6b39df'] = 'Los actuales plantillas de filtros';
-$_MODULE['<{blocklayered}prestashop>blocklayered_d4041fbb1580b68012b82fee850014a2'] = 'plantillas de filtro están configurados:';
-$_MODULE['<{blocklayered}prestashop>blocklayered_b718adec73e04ce3ec720dd11a06a308'] = 'Identificación';
-$_MODULE['<{blocklayered}prestashop>blocklayered_49ee3087348e8d44e1feda1917443987'] = 'Nombre';
-$_MODULE['<{blocklayered}prestashop>blocklayered_af1b98adf7f686b84cd0b443e022b7a0'] = 'Categorías';
-$_MODULE['<{blocklayered}prestashop>blocklayered_f7f19392da30e81c3abf433ce7b8ca38'] = 'Creado el';
-$_MODULE['<{blocklayered}prestashop>blocklayered_06df33001c1d7187fdd81ea1f5b277aa'] = 'Acciones';
-$_MODULE['<{blocklayered}prestashop>blocklayered_7dce122004969d56ae2e0245cb754d35'] = 'Editar';
-$_MODULE['<{blocklayered}prestashop>blocklayered_ee7d4220e8cade335dde5e0f414b5969'] = 'Borrar el filtro de plantilla #%d?';
-$_MODULE['<{blocklayered}prestashop>blocklayered_f2a6c498fb90ee345d997f888fce3b18'] = 'Borrar';
-$_MODULE['<{blocklayered}prestashop>blocklayered_058eeeba77f547f8a9a295a0efd4f6cd'] = 'No se encontró plantilla de filtro.';
-$_MODULE['<{blocklayered}prestashop>blocklayered_c25a08cd48b8fd27ff49f435f05640c3'] = 'Construye tu propia plantilla de filtro';
-$_MODULE['<{blocklayered}prestashop>blocklayered_0ce4150f57948567deeaa58d0c367412'] = 'Paso 1 / 3 - Seleccione las categorías';
-$_MODULE['<{blocklayered}prestashop>blocklayered_99cdd6365310333a594b16e5658eee5c'] = 'Utilice esta plantilla para:';
-$_MODULE['<{blocklayered}prestashop>blocklayered_62f5d708d6ad1fa1ddd9429a65cccbea'] = 'Todas las categorías';
-$_MODULE['<{blocklayered}prestashop>blocklayered_4071a0db922638ac9648539ea2ddaa8b'] = 'Categorias *especificas*';
-$_MODULE['<{blocklayered}prestashop>blocklayered_ef7de3f485174ff47f061ad27d83d0ee'] = 'seleccionadas';
-$_MODULE['<{blocklayered}prestashop>blocklayered_c2d0bf5ad42279c519cdcb4a94eb46b6'] = 'Elija la tienda a asociar:';
-$_MODULE['<{blocklayered}prestashop>blocklayered_f72c75bdf80dc88b2529162f4947edc8'] = 'Por favor, seleccione al menos una categoría específica o seleccione \"Todas las categorías\".';
-$_MODULE['<{blocklayered}prestashop>blocklayered_64646db703ca003a37bd1e73977a3a4d'] = 'Categorías a partir de esta plantilla';
-$_MODULE['<{blocklayered}prestashop>blocklayered_d758a9754eb9f36db05c22ad0c77e38e'] = 'Seleccione al menos una categoría con esta plantilla de filtro';
-$_MODULE['<{blocklayered}prestashop>blocklayered_5965d2ce192837f00d743d8a674382c1'] = 'Pulse el botón \"Guardar esta selección\" o cerrar la ventana para guardar';
-$_MODULE['<{blocklayered}prestashop>blocklayered_fa03eb688ad8aa1db593d33dabd89bad'] = 'Raíz';
-$_MODULE['<{blocklayered}prestashop>blocklayered_8cf04a9734132302f96da8e113e80ce5'] = 'Inicio';
-$_MODULE['<{blocklayered}prestashop>blocklayered_b56c3bda503a8dc4be356edb0cc31793'] = 'Contraer todo';
-$_MODULE['<{blocklayered}prestashop>blocklayered_5ffd7a335dd836b3373f5ec570a58bdc'] = 'Expandir todo';
-$_MODULE['<{blocklayered}prestashop>blocklayered_5e9df908eafa83cb51c0a3720e8348c7'] = 'Compruebe todo';
-$_MODULE['<{blocklayered}prestashop>blocklayered_9747d23c8cc358c5ef78c51e59cd6817'] = 'Desactive todo';
-$_MODULE['<{blocklayered}prestashop>blocklayered_d0f06038b6b3aa5edc07c7a6fd3ca3f9'] = 'Buscar en categoria';
-$_MODULE['<{blocklayered}prestashop>blocklayered_72dd03f11489ff6f604a4eb57c957202'] = 'Guardar esta selección';
-$_MODULE['<{blocklayered}prestashop>blocklayered_2e527847e8c785f3fd99651f64006798'] = 'Paso 2 / 3 - Seleccione los filtros';
-$_MODULE['<{blocklayered}prestashop>blocklayered_3488a51eb7f723d65daeff912e69b177'] = 'Filtros seleccionados';
-$_MODULE['<{blocklayered}prestashop>blocklayered_cf3cd81b30d4c4fd996ae5374fe656da'] = 'No se ha elegido ningún filtro todavía.';
-$_MODULE['<{blocklayered}prestashop>blocklayered_8524de963f07201e5c086830d370797f'] = 'Cargando ...';
-$_MODULE['<{blocklayered}prestashop>blocklayered_597c70730ebddba7d845e686665f9f28'] = 'Ha seleccionado-Todas las categorías, todas las plantillas de filtro existentes se eliminarán, ¿está de acuerdo?';
-$_MODULE['<{blocklayered}prestashop>blocklayered_c48c42c966b3a35ad3b893e798bdec7c'] = 'Errores';
-$_MODULE['<{blocklayered}prestashop>blocklayered_74a6a547d86659933a210680efb6e6d1'] = 'Paso 3 / 3 - de un nombre a la plantilla';
-$_MODULE['<{blocklayered}prestashop>blocklayered_f8263d99054a4cdb3428196f078fa212'] = 'Nombre de la plantilla:';
-$_MODULE['<{blocklayered}prestashop>blocklayered_32d2e6cd4bb1719c572ef470a3a525b6'] = 'Mi plantilla %s';
-$_MODULE['<{blocklayered}prestashop>blocklayered_5f514b580ea1b6bdb681916bc1deb207'] = 'sólo como un recordatorio';
-$_MODULE['<{blocklayered}prestashop>blocklayered_188185ae335eb523e53d6d31ede21f1c'] = 'Ningún filtro está elegido, el blocklayered se deshabilita para las categorías seleccionadas.';
-$_MODULE['<{blocklayered}prestashop>blocklayered_ef1094d9826e98f5417e0a37f1742133'] = 'Guardar esta plantilla de filtro';
-$_MODULE['<{blocklayered}prestashop>blocklayered_254f642527b45bc260048e30704edb39'] = 'Configuración';
-$_MODULE['<{blocklayered}prestashop>blocklayered_054b4f3ea543c990f6b125f41af6ebf7'] = 'Opción';
-$_MODULE['<{blocklayered}prestashop>blocklayered_689202409e48743b914713f96d93947c'] = 'Valor';
-$_MODULE['<{blocklayered}prestashop>blocklayered_9868c3ac0748acf3b981a96cfe163ee8'] = 'Ocultar los valores de filtro cuando no hay ningún producto en venta';
-$_MODULE['<{blocklayered}prestashop>blocklayered_93cba07454f06a4a960172bbd6e2a435'] = 'Sí';
-$_MODULE['<{blocklayered}prestashop>blocklayered_bafd7322c6e97d25b6299b5d6fe8920b'] = 'No';
-$_MODULE['<{blocklayered}prestashop>blocklayered_8531c73de81b9ed94322dda7cf947daa'] = 'Mostrar el número de productos que concuerden';
-$_MODULE['<{blocklayered}prestashop>blocklayered_ee61c015043c79c1370fc14980dd27b9'] = 'Mostrar productos de subcategorías';
-$_MODULE['<{blocklayered}prestashop>blocklayered_a19399fa42f1ab059401a14b9f13eba1'] = 'Profundidad del filtro por categoria (0 para ningún límite, 1 por defecto)';
-$_MODULE['<{blocklayered}prestashop>blocklayered_3e652bd299bb3ee3d458c0dcc7fd706e'] = 'Impuesto para filtrar el precio';
-$_MODULE['<{blocklayered}prestashop>blocklayered_cc787af9edec8ce947ada8ab5bbff6e5'] = 'Permita que los robots de indexación (Google, Yahoo, Bing, ...) usen el filtro de condición';
-$_MODULE['<{blocklayered}prestashop>blocklayered_ab28e5086d1dcb1474a4bd4951b148b9'] = 'Permita que los robots de indexación (Google, Yahoo, Bing, ...) para usar filtro de la disponibilidad';
-$_MODULE['<{blocklayered}prestashop>blocklayered_1218da2abb1e88e7fe8855995def9fef'] = 'Permita que los robots de indexación (Google, Yahoo, Bing, ...) para usar filtro de fabricante';
-$_MODULE['<{blocklayered}prestashop>blocklayered_c41e97692bc79531a51dfca4b7f6bee0'] = 'Autoriza los \"robots\" de clasificación (google, yahoo, bing, ...) a usar los filtros de categorías';
-$_MODULE['<{blocklayered}prestashop>blocklayered_cf565402d32b79d33f626252949a6941'] = 'Guardar la configuración';
-$_MODULE['<{blocklayered}prestashop>blocklayered_3601146c4e948c32b6424d2c0a7f0118'] = 'Precio';
-$_MODULE['<{blocklayered}prestashop>blocklayered_8c489d0946f66d17d73f26366a4bf620'] = 'Peso';
-$_MODULE['<{blocklayered}prestashop>blocklayered_03c2e7e41ffc181a4e84080b4710e81e'] = 'Nuevo';
-$_MODULE['<{blocklayered}prestashop>blocklayered_019d1ca7d50cc54b995f60d456435e87'] = 'Usado';
-$_MODULE['<{blocklayered}prestashop>blocklayered_6da03a74721a0554b7143254225cc08a'] = 'Restaurado';
-$_MODULE['<{blocklayered}prestashop>blocklayered_9e2941b3c81256fac10392aaca4ccfde'] = 'Estado';
-$_MODULE['<{blocklayered}prestashop>blocklayered_2d25c72c1b18e562f6654fff8e11711e'] = 'No disponible';
-$_MODULE['<{blocklayered}prestashop>blocklayered_fcebe56087b9373f15514831184fa572'] = 'En stock';
-$_MODULE['<{blocklayered}prestashop>blocklayered_faeaec9eda6bc4c8cb6e1a9156a858be'] = 'Disponibilidad';
-$_MODULE['<{blocklayered}prestashop>blocklayered_c0bd7654d5b278e65f21cf4e9153fdb4'] = 'Fabricante';
-$_MODULE['<{blocklayered}prestashop>blocklayered_308edffd52afae39cc6277e246ec5df8'] = 'Filtros disponibles';
-$_MODULE['<{blocklayered}prestashop>blocklayered_cfbc982f8fb7a0cc3abb3c85c795ab41'] = 'Filtro de Subcategorías ';
-$_MODULE['<{blocklayered}prestashop>blocklayered_af605ea55ee39e54c444f217e346048f'] = 'Sin limite';
-$_MODULE['<{blocklayered}prestashop>blocklayered_4f8222964f9a317cef99dddc23a121bd'] = 'Casilla de verificación';
-$_MODULE['<{blocklayered}prestashop>blocklayered_07a9ca8c8228dd3399141e228034fedf'] = 'Botón de opción';
-$_MODULE['<{blocklayered}prestashop>blocklayered_5204077231fc7164e2269e96b584dd95'] = 'La lista desplegable';
-$_MODULE['<{blocklayered}prestashop>blocklayered_cd50ff1c5332f9920acf8173c4aab425'] = 'Filtro stock del producto';
-$_MODULE['<{blocklayered}prestashop>blocklayered_048c1728a0a6cf36f56c9dcdd23d8a14'] = 'Filtro estado del producto';
-$_MODULE['<{blocklayered}prestashop>blocklayered_02ecc2cbb645a2b859deba6907334cc8'] = 'Filtro fabricante del producto';
-$_MODULE['<{blocklayered}prestashop>blocklayered_cc72ed9534a489b5d2e5882735bf1364'] = 'Filtro peso del producto';
-$_MODULE['<{blocklayered}prestashop>blocklayered_2d9b9a764fb0be4be10e1b2fce63f561'] = 'Control deslizante';
-$_MODULE['<{blocklayered}prestashop>blocklayered_7e650380ef2b9cec2f2a96e6266ca93d'] = 'Area de texto';
-$_MODULE['<{blocklayered}prestashop>blocklayered_010359888c6e811caee8e540221f0a21'] = 'Lista de valores';
-$_MODULE['<{blocklayered}prestashop>blocklayered_0649bb392812f99ff6b0e2ba160675fa'] = 'Slide de precio';
-$_MODULE['<{blocklayered}prestashop>blocklayered_88abab51d4f2e6732b518911bfca58a4'] = 'Grupo de atributo: %1$s (%2$d atributos)';
-$_MODULE['<{blocklayered}prestashop>blocklayered_e38ebd31243143bf3f3bd3810b5fc156'] = 'Grupo de atributo: %1$s (%2$d atributo)';
-$_MODULE['<{blocklayered}prestashop>blocklayered_ee59f74265cd7f85d0ad30206a1a89b0'] = 'Este grupo permitirá al usuario seleccionar un color';
-$_MODULE['<{blocklayered}prestashop>blocklayered_7d06fc6f3166570e5d8995088066c0a2'] = 'Característica: %1$s (%2$d valores)';
-$_MODULE['<{blocklayered}prestashop>blocklayered_57d6fd5e5b9c215d6edac66b67e65773'] = 'Característica: %1$s (%2$d valor)';
-$_MODULE['<{blocklayered}prestashop>blocklayered_c32516babc5b6c47eb8ce1bfc223253c'] = 'Catálogo';
-$_MODULE['<{blocklayered}prestashop>blocklayered_1262d1b9fbffb3a8e85ac9e4b449e989'] = 'filtros habilitados:';
-$_MODULE['<{blocklayered}prestashop>blocklayered_ea4788705e6873b424c65e91c2846b19'] = 'Cancelar';
-$_MODULE['<{blocklayered}prestashop>blocklayered_853ae90f0351324bd73ea615e6487517'] = ':';
-$_MODULE['<{blocklayered}prestashop>blocklayered_b47b72ddf8a3fa1949a7fb6bb5dbc60c'] = 'Sin filtros';
-$_MODULE['<{blocklayered}prestashop>blocklayered_75954a3c6f2ea54cb9dff249b6b5e8e6'] = 'Rango:';
-$_MODULE['<{blocklayered}prestashop>blocklayered_5da618e8e4b89c66fe86e32cdafde142'] = 'Desde';
-$_MODULE['<{blocklayered}prestashop>blocklayered_01b6e20344b68835c5ed1ddedf20d531'] = 'Hasta';
-$_MODULE['<{blocklayered}prestashop>blocklayered_146ffe2fd9fa5bec3b63b52543793ec7'] = 'Ver mas';
-$_MODULE['<{blocklayered}prestashop>blocklayered_c74ea6dbff701bfa23819583c52ebd97'] = 'Ver menos';
diff --git a/modules/blocklayered/fr.php b/modules/blocklayered/fr.php
deleted file mode 100644
index 3eb55aa8c..000000000
--- a/modules/blocklayered/fr.php
+++ /dev/null
@@ -1,137 +0,0 @@
-blocklayered-no-products_5c9838becf9bbce28ba90a7426daf171'] = 'Il n\'y a pas de produit.';
-$_MODULE['<{blocklayered}prestashop>blocklayered_84241e458cdd5162745500a59a3680f3'] = 'Bloc navigation à facettes';
-$_MODULE['<{blocklayered}prestashop>blocklayered_2d08fa8e157fe3f1875402cbd98aee1b'] = 'Affiche un bloc avec les filtres de la navigation à facettes';
-$_MODULE['<{blocklayered}prestashop>blocklayered_3b3d06023f6353f8fd05f859b298573e'] = 'URL ';
-$_MODULE['<{blocklayered}prestashop>blocklayered_6252c0f2c2ed83b7b06dfca86d4650bb'] = 'Les caractères invalides :';
-$_MODULE['<{blocklayered}prestashop>blocklayered_f39f64ad2722b269d9b6cb2ec97ba4ad'] = 'Format spécifique pour la génération des URL pour la navigation à facettes';
-$_MODULE['<{blocklayered}prestashop>blocklayered_7b250cb374c12c42a75227ba75df7779'] = 'Titre Méta :';
-$_MODULE['<{blocklayered}prestashop>blocklayered_a4020753b3e63fd8a1d0c0b2b33fc999'] = 'Format spécifique pour le titre méta';
-$_MODULE['<{blocklayered}prestashop>blocklayered_b3786b970611c1a3809dd51b630812a7'] = '\"%s\" n\'est pas une URL valable';
-$_MODULE['<{blocklayered}prestashop>blocklayered_c3ef60194d18cf4026d22051b3a19428'] = 'Indexable :';
-$_MODULE['<{blocklayered}prestashop>blocklayered_a075d40d1a15460220cbf564b7b9b591'] = 'Utilise cet attribut dans l\'URL générée par le module de bloc de navigation à facette';
-$_MODULE['<{blocklayered}prestashop>blocklayered_ccc12c5568381293a27db0232877937b'] = 'Nom du modèle de filtre nécessaire (ne doit être vide)';
-$_MODULE['<{blocklayered}prestashop>blocklayered_817c37b9c1f5cd4a450dad384e63e6c7'] = 'Votre filtre';
-$_MODULE['<{blocklayered}prestashop>blocklayered_3185cefd67b575e582063148e4f15860'] = 'a été mis à jour avec succès.';
-$_MODULE['<{blocklayered}prestashop>blocklayered_7ccab4d8de5d6b9bb61e99c7bba343ab'] = 'a été ajouté avec succès.';
-$_MODULE['<{blocklayered}prestashop>blocklayered_fe016d3b990c2a9dd72ab6b45892f2ae'] = 'Paramètres enregistrés avec succès';
-$_MODULE['<{blocklayered}prestashop>blocklayered_0d07af70081a2421e2b2972609d699db'] = 'Modèle de filtres supprimé, catégories mises à jour (modèle par défaut appliqué).';
-$_MODULE['<{blocklayered}prestashop>blocklayered_491f46aa6101560e9f1e0d55a063231b'] = 'Modèle de filtres introuvable';
-$_MODULE['<{blocklayered}prestashop>blocklayered_09da2b6f1217055bb22caa6ea08d9b80'] = 'Navigation à facettes';
-$_MODULE['<{blocklayered}prestashop>blocklayered_df2bbc994d10995dcffdf96dbb7acbb1'] = 'Index et les caches';
-$_MODULE['<{blocklayered}prestashop>blocklayered_ad3e7eb269d8ba0ac388267627f45b5a'] = 'Une indexation est en cours. Veuillez ne pas fermer cette page';
-$_MODULE['<{blocklayered}prestashop>blocklayered_5e2420d2318025812dc3e231ddb66b0b'] = 'Indexer les prix manquants';
-$_MODULE['<{blocklayered}prestashop>blocklayered_9612e005e96ad32b8830be4d0377e7e6'] = 'Réindexer l\'intégralité des prix';
-$_MODULE['<{blocklayered}prestashop>blocklayered_d47f700b6db025d98cae0b340ed847e9'] = 'Indexer les attributs';
-$_MODULE['<{blocklayered}prestashop>blocklayered_341ce134fbec9978d185ff533931b1b3'] = 'Indexer les URLs';
-$_MODULE['<{blocklayered}prestashop>blocklayered_53795c3624ae2361363780589aa2aa42'] = 'Vous pouvez définir une tâche cron pour réindexer les prix en utilisant l\'URL suivante :';
-$_MODULE['<{blocklayered}prestashop>blocklayered_94f6d9bfb2c36037040b5764e73dca47'] = 'Vous pouvez définir une tâche cron pour réindexer les URL en utilisant l\'URL suivante:';
-$_MODULE['<{blocklayered}prestashop>blocklayered_e43b32b88c77e49f06144cd1ffaeba96'] = 'Vous pouvez définir une tâche cron pour réindexer les attributs à l\'aide de l\'URL suivante:';
-$_MODULE['<{blocklayered}prestashop>blocklayered_16349835364cf839e6670b0de7da6362'] = 'Il est recommandé de procéder à la réindexation de nuit.';
-$_MODULE['<{blocklayered}prestashop>blocklayered_56fc8142961f1f3e9f9ec0c178881b69'] = '(en cours)';
-$_MODULE['<{blocklayered}prestashop>blocklayered_4c0d1a1d7b01bec7b820c0655dda7b1f'] = 'Indexation des URL terminée';
-$_MODULE['<{blocklayered}prestashop>blocklayered_8bf466a25752f2552df8dc8b04fc10ba'] = 'Indexation des attributs terminée';
-$_MODULE['<{blocklayered}prestashop>blocklayered_b5ca9d41e254963a90417fe12bafba5a'] = 'L\'indexation des URL a échoué';
-$_MODULE['<{blocklayered}prestashop>blocklayered_399e951fec4faaeab09333f40bf6d80c'] = 'L\'Indexation des attributs a échoué';
-$_MODULE['<{blocklayered}prestashop>blocklayered_e2dd8f544131eaf47a4f722ace7f876b'] = 'Indexation des prix terminée';
-$_MODULE['<{blocklayered}prestashop>blocklayered_7cf7d150dd287df0a8e17eeb4cf2161d'] = '(en cours, %s des prix de produits à indexer)';
-$_MODULE['<{blocklayered}prestashop>blocklayered_ceda32b8540dee4f1222cd482a513db8'] = 'L\'indexation des prix a échoué';
-$_MODULE['<{blocklayered}prestashop>blocklayered_a2654ab6d514d63a3be2a4d6ea6b39df'] = 'Modèles de filtres existants';
-$_MODULE['<{blocklayered}prestashop>blocklayered_d4041fbb1580b68012b82fee850014a2'] = 'modèles de filtres sont configurés :';
-$_MODULE['<{blocklayered}prestashop>blocklayered_b718adec73e04ce3ec720dd11a06a308'] = 'ID';
-$_MODULE['<{blocklayered}prestashop>blocklayered_49ee3087348e8d44e1feda1917443987'] = 'Nom';
-$_MODULE['<{blocklayered}prestashop>blocklayered_af1b98adf7f686b84cd0b443e022b7a0'] = 'Catégories';
-$_MODULE['<{blocklayered}prestashop>blocklayered_f7f19392da30e81c3abf433ce7b8ca38'] = 'Créé le';
-$_MODULE['<{blocklayered}prestashop>blocklayered_06df33001c1d7187fdd81ea1f5b277aa'] = 'Actions';
-$_MODULE['<{blocklayered}prestashop>blocklayered_7dce122004969d56ae2e0245cb754d35'] = 'Modifier';
-$_MODULE['<{blocklayered}prestashop>blocklayered_ee7d4220e8cade335dde5e0f414b5969'] = 'Supprimer le modèle de filtre n°%d ?';
-$_MODULE['<{blocklayered}prestashop>blocklayered_f2a6c498fb90ee345d997f888fce3b18'] = 'Supprimer';
-$_MODULE['<{blocklayered}prestashop>blocklayered_058eeeba77f547f8a9a295a0efd4f6cd'] = 'Aucun modèle de filtre n\'a été trouvé.';
-$_MODULE['<{blocklayered}prestashop>blocklayered_c25a08cd48b8fd27ff49f435f05640c3'] = 'Construisez vos propres modèles de filtre';
-$_MODULE['<{blocklayered}prestashop>blocklayered_0ce4150f57948567deeaa58d0c367412'] = 'Étape 1/3 - Choisissez vos catégories';
-$_MODULE['<{blocklayered}prestashop>blocklayered_99cdd6365310333a594b16e5658eee5c'] = 'Utiliser ce modèle pour :';
-$_MODULE['<{blocklayered}prestashop>blocklayered_62f5d708d6ad1fa1ddd9429a65cccbea'] = 'Toutes les catégories';
-$_MODULE['<{blocklayered}prestashop>blocklayered_4071a0db922638ac9648539ea2ddaa8b'] = 'Catégories *spécifiques*';
-$_MODULE['<{blocklayered}prestashop>blocklayered_ef7de3f485174ff47f061ad27d83d0ee'] = 'sélectionnée(s)';
-$_MODULE['<{blocklayered}prestashop>blocklayered_c2d0bf5ad42279c519cdcb4a94eb46b6'] = 'Choisissez une association de boutiques :';
-$_MODULE['<{blocklayered}prestashop>blocklayered_f72c75bdf80dc88b2529162f4947edc8'] = 'Veuillez sélectionnez au moins une catégorie spécifique ou choisissez \"Toutes les catégories\".';
-$_MODULE['<{blocklayered}prestashop>blocklayered_64646db703ca003a37bd1e73977a3a4d'] = 'Catégories utilisant ce modèle';
-$_MODULE['<{blocklayered}prestashop>blocklayered_d758a9754eb9f36db05c22ad0c77e38e'] = 'Sélectionnez une ou plusieurs catégories utilisant ce modèle';
-$_MODULE['<{blocklayered}prestashop>blocklayered_5965d2ce192837f00d743d8a674382c1'] = 'Cliquez sur \"Enregistrer cette sélection\" ou fermez la fenêtre pour enregistrer';
-$_MODULE['<{blocklayered}prestashop>blocklayered_fa03eb688ad8aa1db593d33dabd89bad'] = 'Racine';
-$_MODULE['<{blocklayered}prestashop>blocklayered_8cf04a9734132302f96da8e113e80ce5'] = 'Accueil';
-$_MODULE['<{blocklayered}prestashop>blocklayered_b56c3bda503a8dc4be356edb0cc31793'] = 'Tout replier';
-$_MODULE['<{blocklayered}prestashop>blocklayered_5ffd7a335dd836b3373f5ec570a58bdc'] = 'Tout étendre';
-$_MODULE['<{blocklayered}prestashop>blocklayered_5e9df908eafa83cb51c0a3720e8348c7'] = 'Tout cocher';
-$_MODULE['<{blocklayered}prestashop>blocklayered_9747d23c8cc358c5ef78c51e59cd6817'] = 'Tout décocher';
-$_MODULE['<{blocklayered}prestashop>blocklayered_d0f06038b6b3aa5edc07c7a6fd3ca3f9'] = 'Chercher une catégorie';
-$_MODULE['<{blocklayered}prestashop>blocklayered_72dd03f11489ff6f604a4eb57c957202'] = 'Enregistrer cette sélection';
-$_MODULE['<{blocklayered}prestashop>blocklayered_2e527847e8c785f3fd99651f64006798'] = 'Étape 2/3 - Sélectionnez vos filtres';
-$_MODULE['<{blocklayered}prestashop>blocklayered_3488a51eb7f723d65daeff912e69b177'] = 'Filres sélectionnés';
-$_MODULE['<{blocklayered}prestashop>blocklayered_cf3cd81b30d4c4fd996ae5374fe656da'] = 'Aucun filtre sélectionné pour le moment.';
-$_MODULE['<{blocklayered}prestashop>blocklayered_8524de963f07201e5c086830d370797f'] = 'Chargement...';
-$_MODULE['<{blocklayered}prestashop>blocklayered_597c70730ebddba7d845e686665f9f28'] = 'Vous avez sélectionné - Toutes catégories-, tous les modèles de filtre existants seront supprimés, est-ce bien là ce que vous voulez faire ?';
-$_MODULE['<{blocklayered}prestashop>blocklayered_c48c42c966b3a35ad3b893e798bdec7c'] = 'Erreurs :';
-$_MODULE['<{blocklayered}prestashop>blocklayered_74a6a547d86659933a210680efb6e6d1'] = 'Étape 3/3 - Nommez votre modèle';
-$_MODULE['<{blocklayered}prestashop>blocklayered_f8263d99054a4cdb3428196f078fa212'] = 'Nom du modèle :';
-$_MODULE['<{blocklayered}prestashop>blocklayered_32d2e6cd4bb1719c572ef470a3a525b6'] = 'Mon modèle %s';
-$_MODULE['<{blocklayered}prestashop>blocklayered_5f514b580ea1b6bdb681916bc1deb207'] = 'uniquement pour le retrouver facilement';
-$_MODULE['<{blocklayered}prestashop>blocklayered_188185ae335eb523e53d6d31ede21f1c'] = 'Aucun filtre sélectionné, la navigation à facette sera désactivée pour les catégories sélectionnées.';
-$_MODULE['<{blocklayered}prestashop>blocklayered_ef1094d9826e98f5417e0a37f1742133'] = 'Sauvegarder ce modèle de filtres';
-$_MODULE['<{blocklayered}prestashop>blocklayered_254f642527b45bc260048e30704edb39'] = 'Configuration';
-$_MODULE['<{blocklayered}prestashop>blocklayered_054b4f3ea543c990f6b125f41af6ebf7'] = 'Option';
-$_MODULE['<{blocklayered}prestashop>blocklayered_689202409e48743b914713f96d93947c'] = 'Valeur';
-$_MODULE['<{blocklayered}prestashop>blocklayered_9868c3ac0748acf3b981a96cfe163ee8'] = 'Cacher les valeurs de filtre avec aucun produit correspondant';
-$_MODULE['<{blocklayered}prestashop>blocklayered_93cba07454f06a4a960172bbd6e2a435'] = 'Oui';
-$_MODULE['<{blocklayered}prestashop>blocklayered_bafd7322c6e97d25b6299b5d6fe8920b'] = 'Non';
-$_MODULE['<{blocklayered}prestashop>blocklayered_8531c73de81b9ed94322dda7cf947daa'] = 'Afficher le nombre de produits qui correspondent';
-$_MODULE['<{blocklayered}prestashop>blocklayered_ee61c015043c79c1370fc14980dd27b9'] = 'Afficher les produits des sous-catégories';
-$_MODULE['<{blocklayered}prestashop>blocklayered_a19399fa42f1ab059401a14b9f13eba1'] = 'Profondeur du filtre de catégorie (0 pour aucune limite, 1 par défaut)';
-$_MODULE['<{blocklayered}prestashop>blocklayered_3e652bd299bb3ee3d458c0dcc7fd706e'] = 'Utiliser les taxes pour filtrer les prix';
-$_MODULE['<{blocklayered}prestashop>blocklayered_cc787af9edec8ce947ada8ab5bbff6e5'] = 'Autoriser les robots d\'indexation (Google, Yahoo, Bing, ...) à utiliser le filtre d\'état';
-$_MODULE['<{blocklayered}prestashop>blocklayered_ab28e5086d1dcb1474a4bd4951b148b9'] = 'Autoriser les robots d\'indexation (Google, Yahoo, Bing, ...) à utiliser le filtre de disponibilité';
-$_MODULE['<{blocklayered}prestashop>blocklayered_1218da2abb1e88e7fe8855995def9fef'] = 'Autoriser les robots d\'indexation (Google, Yahoo, Bing, ...) à utiliser le filtre fabriquant';
-$_MODULE['<{blocklayered}prestashop>blocklayered_c41e97692bc79531a51dfca4b7f6bee0'] = 'Autoriser les robots d\'indexation (Google, Yahoo, Bing, ...) à utiliser le filtre catégorie';
-$_MODULE['<{blocklayered}prestashop>blocklayered_cf565402d32b79d33f626252949a6941'] = 'Enregistrer la configuration';
-$_MODULE['<{blocklayered}prestashop>blocklayered_3601146c4e948c32b6424d2c0a7f0118'] = 'Prix';
-$_MODULE['<{blocklayered}prestashop>blocklayered_8c489d0946f66d17d73f26366a4bf620'] = 'Poids';
-$_MODULE['<{blocklayered}prestashop>blocklayered_03c2e7e41ffc181a4e84080b4710e81e'] = 'Neuf';
-$_MODULE['<{blocklayered}prestashop>blocklayered_019d1ca7d50cc54b995f60d456435e87'] = 'Occasion';
-$_MODULE['<{blocklayered}prestashop>blocklayered_6da03a74721a0554b7143254225cc08a'] = 'Reconditionné';
-$_MODULE['<{blocklayered}prestashop>blocklayered_9e2941b3c81256fac10392aaca4ccfde'] = 'État';
-$_MODULE['<{blocklayered}prestashop>blocklayered_2d25c72c1b18e562f6654fff8e11711e'] = 'Non disponible';
-$_MODULE['<{blocklayered}prestashop>blocklayered_fcebe56087b9373f15514831184fa572'] = 'En stock';
-$_MODULE['<{blocklayered}prestashop>blocklayered_faeaec9eda6bc4c8cb6e1a9156a858be'] = 'Disponibilité';
-$_MODULE['<{blocklayered}prestashop>blocklayered_c0bd7654d5b278e65f21cf4e9153fdb4'] = 'Fabricant';
-$_MODULE['<{blocklayered}prestashop>blocklayered_308edffd52afae39cc6277e246ec5df8'] = 'Filtres disponibles';
-$_MODULE['<{blocklayered}prestashop>blocklayered_cfbc982f8fb7a0cc3abb3c85c795ab41'] = 'Filtre de sous-catégories';
-$_MODULE['<{blocklayered}prestashop>blocklayered_af605ea55ee39e54c444f217e346048f'] = 'Pas de limite';
-$_MODULE['<{blocklayered}prestashop>blocklayered_4f8222964f9a317cef99dddc23a121bd'] = 'Case à cocher';
-$_MODULE['<{blocklayered}prestashop>blocklayered_07a9ca8c8228dd3399141e228034fedf'] = 'Bouton radio';
-$_MODULE['<{blocklayered}prestashop>blocklayered_5204077231fc7164e2269e96b584dd95'] = 'Liste déroulante';
-$_MODULE['<{blocklayered}prestashop>blocklayered_cd50ff1c5332f9920acf8173c4aab425'] = 'Filtre stock du produit';
-$_MODULE['<{blocklayered}prestashop>blocklayered_048c1728a0a6cf36f56c9dcdd23d8a14'] = 'Filtre état du produit';
-$_MODULE['<{blocklayered}prestashop>blocklayered_02ecc2cbb645a2b859deba6907334cc8'] = 'Filtre fabriquant du produit';
-$_MODULE['<{blocklayered}prestashop>blocklayered_cc72ed9534a489b5d2e5882735bf1364'] = 'Filtre poids du produit (curseur)';
-$_MODULE['<{blocklayered}prestashop>blocklayered_2d9b9a764fb0be4be10e1b2fce63f561'] = 'Curseur';
-$_MODULE['<{blocklayered}prestashop>blocklayered_7e650380ef2b9cec2f2a96e6266ca93d'] = 'Zone de saisie';
-$_MODULE['<{blocklayered}prestashop>blocklayered_010359888c6e811caee8e540221f0a21'] = 'Liste de valeurs';
-$_MODULE['<{blocklayered}prestashop>blocklayered_0649bb392812f99ff6b0e2ba160675fa'] = 'Filtre prix du produit (cuseur)';
-$_MODULE['<{blocklayered}prestashop>blocklayered_88abab51d4f2e6732b518911bfca58a4'] = 'Groupe d\'attributs : %1$s (%2$d attributs)';
-$_MODULE['<{blocklayered}prestashop>blocklayered_e38ebd31243143bf3f3bd3810b5fc156'] = 'Groupe d\'attributs : %1$s (%2$d attribut)';
-$_MODULE['<{blocklayered}prestashop>blocklayered_ee59f74265cd7f85d0ad30206a1a89b0'] = 'Ce groupe permet aux clients de choisir une couleur';
-$_MODULE['<{blocklayered}prestashop>blocklayered_7d06fc6f3166570e5d8995088066c0a2'] = 'Caractéristique : %1$s (%2$d valeurs)';
-$_MODULE['<{blocklayered}prestashop>blocklayered_57d6fd5e5b9c215d6edac66b67e65773'] = 'Caractéristique : %1$s (%2$d valeur)';
-$_MODULE['<{blocklayered}prestashop>blocklayered_c32516babc5b6c47eb8ce1bfc223253c'] = 'Catalogue';
-$_MODULE['<{blocklayered}prestashop>blocklayered_1262d1b9fbffb3a8e85ac9e4b449e989'] = 'Filtres actifs :';
-$_MODULE['<{blocklayered}prestashop>blocklayered_ea4788705e6873b424c65e91c2846b19'] = 'Annuler';
-$_MODULE['<{blocklayered}prestashop>blocklayered_853ae90f0351324bd73ea615e6487517'] = ' :';
-$_MODULE['<{blocklayered}prestashop>blocklayered_b47b72ddf8a3fa1949a7fb6bb5dbc60c'] = 'Aucun filtre';
-$_MODULE['<{blocklayered}prestashop>blocklayered_75954a3c6f2ea54cb9dff249b6b5e8e6'] = 'Tranche :';
-$_MODULE['<{blocklayered}prestashop>blocklayered_5da618e8e4b89c66fe86e32cdafde142'] = 'De';
-$_MODULE['<{blocklayered}prestashop>blocklayered_01b6e20344b68835c5ed1ddedf20d531'] = 'à';
-$_MODULE['<{blocklayered}prestashop>blocklayered_146ffe2fd9fa5bec3b63b52543793ec7'] = 'Voir plus';
-$_MODULE['<{blocklayered}prestashop>blocklayered_c74ea6dbff701bfa23819583c52ebd97'] = 'Voir moins';
diff --git a/modules/blocklayered/it.php b/modules/blocklayered/it.php
deleted file mode 100644
index eaa1cf0d7..000000000
--- a/modules/blocklayered/it.php
+++ /dev/null
@@ -1,137 +0,0 @@
-blocklayered-no-products_5c9838becf9bbce28ba90a7426daf171'] = 'Non ci sono prodotti.';
-$_MODULE['<{blocklayered}prestashop>blocklayered_84241e458cdd5162745500a59a3680f3'] = 'Blocco di navigazione a strati';
-$_MODULE['<{blocklayered}prestashop>blocklayered_2d08fa8e157fe3f1875402cbd98aee1b'] = 'Visualizza un blocco con i filtri di navigazione a strati';
-$_MODULE['<{blocklayered}prestashop>blocklayered_3b3d06023f6353f8fd05f859b298573e'] = 'Url:';
-$_MODULE['<{blocklayered}prestashop>blocklayered_6252c0f2c2ed83b7b06dfca86d4650bb'] = 'Caratteri non validi:';
-$_MODULE['<{blocklayered}prestashop>blocklayered_f39f64ad2722b269d9b6cb2ec97ba4ad'] = 'Formato specifico nella generazione di url blocco stratificato';
-$_MODULE['<{blocklayered}prestashop>blocklayered_7b250cb374c12c42a75227ba75df7779'] = 'Meta titolo:';
-$_MODULE['<{blocklayered}prestashop>blocklayered_a4020753b3e63fd8a1d0c0b2b33fc999'] = 'Formato specifico per il titolo meta';
-$_MODULE['<{blocklayered}prestashop>blocklayered_b3786b970611c1a3809dd51b630812a7'] = '\"%s\" non è un URL valido';
-$_MODULE['<{blocklayered}prestashop>blocklayered_c3ef60194d18cf4026d22051b3a19428'] = 'Indicizzabili:';
-$_MODULE['<{blocklayered}prestashop>blocklayered_a075d40d1a15460220cbf564b7b9b591'] = 'Utilizzare questo attributo in url generata dal blocco del modulo a più livelli di navigazione';
-$_MODULE['<{blocklayered}prestashop>blocklayered_ccc12c5568381293a27db0232877937b'] = 'Nome del modello del filtro necessario (non può essere vuoto)';
-$_MODULE['<{blocklayered}prestashop>blocklayered_817c37b9c1f5cd4a450dad384e63e6c7'] = 'Il filtro';
-$_MODULE['<{blocklayered}prestashop>blocklayered_3185cefd67b575e582063148e4f15860'] = 'è stato aggiornato con successo.';
-$_MODULE['<{blocklayered}prestashop>blocklayered_7ccab4d8de5d6b9bb61e99c7bba343ab'] = 'è stata inserita correttamente.';
-$_MODULE['<{blocklayered}prestashop>blocklayered_fe016d3b990c2a9dd72ab6b45892f2ae'] = 'Configurazione salvata con successo';
-$_MODULE['<{blocklayered}prestashop>blocklayered_0d07af70081a2421e2b2972609d699db'] = 'Filtri modello cancellato, aggiornato categorie (ripristinato modello predefinito filtri).';
-$_MODULE['<{blocklayered}prestashop>blocklayered_491f46aa6101560e9f1e0d55a063231b'] = 'Modello di filtri non trovato';
-$_MODULE['<{blocklayered}prestashop>blocklayered_09da2b6f1217055bb22caa6ea08d9b80'] = 'Navigazione a strati';
-$_MODULE['<{blocklayered}prestashop>blocklayered_df2bbc994d10995dcffdf96dbb7acbb1'] = 'Indici e cache';
-$_MODULE['<{blocklayered}prestashop>blocklayered_ad3e7eb269d8ba0ac388267627f45b5a'] = 'Indicizzazione sono in corso. Si prega di non lasciare questa pagina';
-$_MODULE['<{blocklayered}prestashop>blocklayered_5e2420d2318025812dc3e231ddb66b0b'] = 'Indice tutti i prezzi mancanti';
-$_MODULE['<{blocklayered}prestashop>blocklayered_9612e005e96ad32b8830be4d0377e7e6'] = 'Ricostruire l\'intero indice dei prezzi';
-$_MODULE['<{blocklayered}prestashop>blocklayered_d47f700b6db025d98cae0b340ed847e9'] = 'Costruire indice attributo';
-$_MODULE['<{blocklayered}prestashop>blocklayered_341ce134fbec9978d185ff533931b1b3'] = 'Costruire indice url';
-$_MODULE['<{blocklayered}prestashop>blocklayered_53795c3624ae2361363780589aa2aa42'] = 'È possibile impostare un job di cron che si ri-costruire indice dei prezzi utilizzando il seguente URL:';
-$_MODULE['<{blocklayered}prestashop>blocklayered_94f6d9bfb2c36037040b5764e73dca47'] = 'È possibile impostare un job di cron che sarà ri-costruire indice url utilizzando il seguente URL:';
-$_MODULE['<{blocklayered}prestashop>blocklayered_e43b32b88c77e49f06144cd1ffaeba96'] = 'È possibile impostare un job di cron che sarà ri-costruire indice attributo utilizzando il seguente URL:';
-$_MODULE['<{blocklayered}prestashop>blocklayered_16349835364cf839e6670b0de7da6362'] = 'A ricostruire la notte è raccomandato.';
-$_MODULE['<{blocklayered}prestashop>blocklayered_56fc8142961f1f3e9f9ec0c178881b69'] = '(In corso)';
-$_MODULE['<{blocklayered}prestashop>blocklayered_4c0d1a1d7b01bec7b820c0655dda7b1f'] = 'Indicizzazione url finito';
-$_MODULE['<{blocklayered}prestashop>blocklayered_8bf466a25752f2552df8dc8b04fc10ba'] = 'Indicizzazione attributi terminata';
-$_MODULE['<{blocklayered}prestashop>blocklayered_b5ca9d41e254963a90417fe12bafba5a'] = 'Indicizzazione URL fallito';
-$_MODULE['<{blocklayered}prestashop>blocklayered_399e951fec4faaeab09333f40bf6d80c'] = 'Indicizzazione attributi fallita';
-$_MODULE['<{blocklayered}prestashop>blocklayered_e2dd8f544131eaf47a4f722ace7f876b'] = 'Indicizzazione prezzo finito';
-$_MODULE['<{blocklayered}prestashop>blocklayered_7cf7d150dd287df0a8e17eeb4cf2161d'] = '(Nel prezzo dei prodotti corso,%s all\'indice)';
-$_MODULE['<{blocklayered}prestashop>blocklayered_ceda32b8540dee4f1222cd482a513db8'] = 'Indicizzazione dei prezzi non';
-$_MODULE['<{blocklayered}prestashop>blocklayered_a2654ab6d514d63a3be2a4d6ea6b39df'] = 'Filtri esistenti modelli';
-$_MODULE['<{blocklayered}prestashop>blocklayered_d4041fbb1580b68012b82fee850014a2'] = 'modelli filtri sono configurati:';
-$_MODULE['<{blocklayered}prestashop>blocklayered_b718adec73e04ce3ec720dd11a06a308'] = 'ID';
-$_MODULE['<{blocklayered}prestashop>blocklayered_49ee3087348e8d44e1feda1917443987'] = 'Nome';
-$_MODULE['<{blocklayered}prestashop>blocklayered_af1b98adf7f686b84cd0b443e022b7a0'] = 'Categorie';
-$_MODULE['<{blocklayered}prestashop>blocklayered_f7f19392da30e81c3abf433ce7b8ca38'] = 'Creato il';
-$_MODULE['<{blocklayered}prestashop>blocklayered_06df33001c1d7187fdd81ea1f5b277aa'] = 'Azioni';
-$_MODULE['<{blocklayered}prestashop>blocklayered_7dce122004969d56ae2e0245cb754d35'] = 'Modifica';
-$_MODULE['<{blocklayered}prestashop>blocklayered_ee7d4220e8cade335dde5e0f414b5969'] = 'Cancella filtro template #%d?';
-$_MODULE['<{blocklayered}prestashop>blocklayered_f2a6c498fb90ee345d997f888fce3b18'] = 'Cancellare';
-$_MODULE['<{blocklayered}prestashop>blocklayered_058eeeba77f547f8a9a295a0efd4f6cd'] = 'Nessun modello di filtro trovato.';
-$_MODULE['<{blocklayered}prestashop>blocklayered_c25a08cd48b8fd27ff49f435f05640c3'] = 'Costruire il tuo modello filtri';
-$_MODULE['<{blocklayered}prestashop>blocklayered_0ce4150f57948567deeaa58d0c367412'] = 'Passo 1 / 3 - Categorie Seleziona';
-$_MODULE['<{blocklayered}prestashop>blocklayered_99cdd6365310333a594b16e5658eee5c'] = 'Usa questo modello per:';
-$_MODULE['<{blocklayered}prestashop>blocklayered_62f5d708d6ad1fa1ddd9429a65cccbea'] = 'Tutte le categorie';
-$_MODULE['<{blocklayered}prestashop>blocklayered_4071a0db922638ac9648539ea2ddaa8b'] = 'Categorie specifiche';
-$_MODULE['<{blocklayered}prestashop>blocklayered_ef7de3f485174ff47f061ad27d83d0ee'] = 'selezionati';
-$_MODULE['<{blocklayered}prestashop>blocklayered_c2d0bf5ad42279c519cdcb4a94eb46b6'] = 'Scegli associazione negozio:';
-$_MODULE['<{blocklayered}prestashop>blocklayered_f72c75bdf80dc88b2529162f4947edc8'] = 'Seleziona almeno una categoria specifica o selezionare \"Tutte le categorie\".';
-$_MODULE['<{blocklayered}prestashop>blocklayered_64646db703ca003a37bd1e73977a3a4d'] = 'Categorie con questo modello';
-$_MODULE['<{blocklayered}prestashop>blocklayered_d758a9754eb9f36db05c22ad0c77e38e'] = 'Seleziona la categoria uno o più utilizzando questo modello di filtro';
-$_MODULE['<{blocklayered}prestashop>blocklayered_5965d2ce192837f00d743d8a674382c1'] = 'Premere il tasto \"Salva selezione\" o chiudere la finestra per salvare';
-$_MODULE['<{blocklayered}prestashop>blocklayered_fa03eb688ad8aa1db593d33dabd89bad'] = 'Root';
-$_MODULE['<{blocklayered}prestashop>blocklayered_8cf04a9734132302f96da8e113e80ce5'] = 'Home';
-$_MODULE['<{blocklayered}prestashop>blocklayered_b56c3bda503a8dc4be356edb0cc31793'] = 'Chiudi tutto';
-$_MODULE['<{blocklayered}prestashop>blocklayered_5ffd7a335dd836b3373f5ec570a58bdc'] = 'Espandi tutto';
-$_MODULE['<{blocklayered}prestashop>blocklayered_5e9df908eafa83cb51c0a3720e8348c7'] = 'Seleziona tutti';
-$_MODULE['<{blocklayered}prestashop>blocklayered_9747d23c8cc358c5ef78c51e59cd6817'] = 'Deseleziona tutti';
-$_MODULE['<{blocklayered}prestashop>blocklayered_d0f06038b6b3aa5edc07c7a6fd3ca3f9'] = 'Cerca una categoria';
-$_MODULE['<{blocklayered}prestashop>blocklayered_72dd03f11489ff6f604a4eb57c957202'] = 'Salva questa selezione';
-$_MODULE['<{blocklayered}prestashop>blocklayered_2e527847e8c785f3fd99651f64006798'] = 'Passo 2 / 3 - Filtri Seleziona';
-$_MODULE['<{blocklayered}prestashop>blocklayered_3488a51eb7f723d65daeff912e69b177'] = 'Filtri personalizzati';
-$_MODULE['<{blocklayered}prestashop>blocklayered_cf3cd81b30d4c4fd996ae5374fe656da'] = 'Nessun filtro selezionato ancora.';
-$_MODULE['<{blocklayered}prestashop>blocklayered_8524de963f07201e5c086830d370797f'] = 'Caricamento in corso ...';
-$_MODULE['<{blocklayered}prestashop>blocklayered_597c70730ebddba7d845e686665f9f28'] = 'È stata selezionata, tutte le categorie-, tutti i modelli esistenti filtro sarà cancellato, OK?';
-$_MODULE['<{blocklayered}prestashop>blocklayered_c48c42c966b3a35ad3b893e798bdec7c'] = 'Errori:';
-$_MODULE['<{blocklayered}prestashop>blocklayered_74a6a547d86659933a210680efb6e6d1'] = 'Passo 3 / 3 - Nome del modello';
-$_MODULE['<{blocklayered}prestashop>blocklayered_f8263d99054a4cdb3428196f078fa212'] = 'Nome modello:';
-$_MODULE['<{blocklayered}prestashop>blocklayered_32d2e6cd4bb1719c572ef470a3a525b6'] = 'Il mio template %s';
-$_MODULE['<{blocklayered}prestashop>blocklayered_5f514b580ea1b6bdb681916bc1deb207'] = 'solo come un promemoria';
-$_MODULE['<{blocklayered}prestashop>blocklayered_188185ae335eb523e53d6d31ede21f1c'] = 'Nessun filtro selezionato, il blocco filtro sarà disabilitato per le categorie selezionate.';
-$_MODULE['<{blocklayered}prestashop>blocklayered_ef1094d9826e98f5417e0a37f1742133'] = 'Salva questo modello filtro';
-$_MODULE['<{blocklayered}prestashop>blocklayered_254f642527b45bc260048e30704edb39'] = 'Configurazione';
-$_MODULE['<{blocklayered}prestashop>blocklayered_054b4f3ea543c990f6b125f41af6ebf7'] = 'Opzione';
-$_MODULE['<{blocklayered}prestashop>blocklayered_689202409e48743b914713f96d93947c'] = 'Valore';
-$_MODULE['<{blocklayered}prestashop>blocklayered_9868c3ac0748acf3b981a96cfe163ee8'] = 'Nascondere i valori filtro con nessun prodotto è corrispondente';
-$_MODULE['<{blocklayered}prestashop>blocklayered_93cba07454f06a4a960172bbd6e2a435'] = 'Sì';
-$_MODULE['<{blocklayered}prestashop>blocklayered_bafd7322c6e97d25b6299b5d6fe8920b'] = 'No';
-$_MODULE['<{blocklayered}prestashop>blocklayered_8531c73de81b9ed94322dda7cf947daa'] = 'Mostra il numero di prodotti corrispondenti';
-$_MODULE['<{blocklayered}prestashop>blocklayered_ee61c015043c79c1370fc14980dd27b9'] = 'Mostra i prodotti dalle sottocategorie';
-$_MODULE['<{blocklayered}prestashop>blocklayered_a19399fa42f1ab059401a14b9f13eba1'] = 'Profondità filtro categorie (0 nessun limite, 1 default)';
-$_MODULE['<{blocklayered}prestashop>blocklayered_3e652bd299bb3ee3d458c0dcc7fd706e'] = 'Usare le tasse per filtrare i prodotti';
-$_MODULE['<{blocklayered}prestashop>blocklayered_cc787af9edec8ce947ada8ab5bbff6e5'] = 'Permetti ai robots (google, yahoo, bing, ...) di usare i filtri di condizione';
-$_MODULE['<{blocklayered}prestashop>blocklayered_ab28e5086d1dcb1474a4bd4951b148b9'] = 'Permetti ai robots (google, yahoo, bing, ...) di usare i filtri di disponibilità';
-$_MODULE['<{blocklayered}prestashop>blocklayered_1218da2abb1e88e7fe8855995def9fef'] = 'Permetti ai robots (google, yahoo, bing, ...) di usare i filtri di produttori';
-$_MODULE['<{blocklayered}prestashop>blocklayered_c41e97692bc79531a51dfca4b7f6bee0'] = 'Autorizza i robot di indicizzazione (google, yahoo, bing,..) a usare filtri di categorie';
-$_MODULE['<{blocklayered}prestashop>blocklayered_cf565402d32b79d33f626252949a6941'] = 'Salva la configurazione';
-$_MODULE['<{blocklayered}prestashop>blocklayered_3601146c4e948c32b6424d2c0a7f0118'] = 'Prezzo';
-$_MODULE['<{blocklayered}prestashop>blocklayered_8c489d0946f66d17d73f26366a4bf620'] = 'Peso';
-$_MODULE['<{blocklayered}prestashop>blocklayered_03c2e7e41ffc181a4e84080b4710e81e'] = 'Nuovo';
-$_MODULE['<{blocklayered}prestashop>blocklayered_019d1ca7d50cc54b995f60d456435e87'] = 'Usato';
-$_MODULE['<{blocklayered}prestashop>blocklayered_6da03a74721a0554b7143254225cc08a'] = 'Rinnovato';
-$_MODULE['<{blocklayered}prestashop>blocklayered_9e2941b3c81256fac10392aaca4ccfde'] = 'Condizione';
-$_MODULE['<{blocklayered}prestashop>blocklayered_2d25c72c1b18e562f6654fff8e11711e'] = 'Non disponibile';
-$_MODULE['<{blocklayered}prestashop>blocklayered_fcebe56087b9373f15514831184fa572'] = 'In magazzino';
-$_MODULE['<{blocklayered}prestashop>blocklayered_faeaec9eda6bc4c8cb6e1a9156a858be'] = 'Disponibilità';
-$_MODULE['<{blocklayered}prestashop>blocklayered_c0bd7654d5b278e65f21cf4e9153fdb4'] = 'Produttore';
-$_MODULE['<{blocklayered}prestashop>blocklayered_308edffd52afae39cc6277e246ec5df8'] = 'I filtri disponibili';
-$_MODULE['<{blocklayered}prestashop>blocklayered_cfbc982f8fb7a0cc3abb3c85c795ab41'] = 'Sottocategorie filtro';
-$_MODULE['<{blocklayered}prestashop>blocklayered_af605ea55ee39e54c444f217e346048f'] = 'Nessun limite';
-$_MODULE['<{blocklayered}prestashop>blocklayered_4f8222964f9a317cef99dddc23a121bd'] = 'Checkbox';
-$_MODULE['<{blocklayered}prestashop>blocklayered_07a9ca8c8228dd3399141e228034fedf'] = 'Radio button';
-$_MODULE['<{blocklayered}prestashop>blocklayered_5204077231fc7164e2269e96b584dd95'] = 'Menù a tendina';
-$_MODULE['<{blocklayered}prestashop>blocklayered_cd50ff1c5332f9920acf8173c4aab425'] = 'Stock Il prodotto filtro';
-$_MODULE['<{blocklayered}prestashop>blocklayered_048c1728a0a6cf36f56c9dcdd23d8a14'] = 'Prodotto condizione di filtro';
-$_MODULE['<{blocklayered}prestashop>blocklayered_02ecc2cbb645a2b859deba6907334cc8'] = 'Fabbricante del prodotto filtro';
-$_MODULE['<{blocklayered}prestashop>blocklayered_cc72ed9534a489b5d2e5882735bf1364'] = 'Peso del prodotto filtro (slider)';
-$_MODULE['<{blocklayered}prestashop>blocklayered_2d9b9a764fb0be4be10e1b2fce63f561'] = 'Slider';
-$_MODULE['<{blocklayered}prestashop>blocklayered_7e650380ef2b9cec2f2a96e6266ca93d'] = 'Area di testo';
-$_MODULE['<{blocklayered}prestashop>blocklayered_010359888c6e811caee8e540221f0a21'] = 'Lista di valori';
-$_MODULE['<{blocklayered}prestashop>blocklayered_0649bb392812f99ff6b0e2ba160675fa'] = 'Filtra per prezzo dei prodotti (a scorrimento)';
-$_MODULE['<{blocklayered}prestashop>blocklayered_88abab51d4f2e6732b518911bfca58a4'] = 'Gruppo attributi: %1$s (%2$d attributi)';
-$_MODULE['<{blocklayered}prestashop>blocklayered_e38ebd31243143bf3f3bd3810b5fc156'] = 'Gruppo attributo: %1$s (%2$d attributo)';
-$_MODULE['<{blocklayered}prestashop>blocklayered_ee59f74265cd7f85d0ad30206a1a89b0'] = 'Questo gruppo consente all\'utente di selezionare un colore';
-$_MODULE['<{blocklayered}prestashop>blocklayered_7d06fc6f3166570e5d8995088066c0a2'] = 'Caratteristiche: %1$s (%2$d valori)';
-$_MODULE['<{blocklayered}prestashop>blocklayered_57d6fd5e5b9c215d6edac66b67e65773'] = 'Caratteristica: %1$s (%2$d valore)';
-$_MODULE['<{blocklayered}prestashop>blocklayered_c32516babc5b6c47eb8ce1bfc223253c'] = 'Catalogo';
-$_MODULE['<{blocklayered}prestashop>blocklayered_1262d1b9fbffb3a8e85ac9e4b449e989'] = 'Filtri abilitati:';
-$_MODULE['<{blocklayered}prestashop>blocklayered_ea4788705e6873b424c65e91c2846b19'] = 'Annulla';
-$_MODULE['<{blocklayered}prestashop>blocklayered_853ae90f0351324bd73ea615e6487517'] = ':';
-$_MODULE['<{blocklayered}prestashop>blocklayered_b47b72ddf8a3fa1949a7fb6bb5dbc60c'] = 'Nessun filtro';
-$_MODULE['<{blocklayered}prestashop>blocklayered_75954a3c6f2ea54cb9dff249b6b5e8e6'] = 'Raggio d\'azione:';
-$_MODULE['<{blocklayered}prestashop>blocklayered_5da618e8e4b89c66fe86e32cdafde142'] = 'Da';
-$_MODULE['<{blocklayered}prestashop>blocklayered_01b6e20344b68835c5ed1ddedf20d531'] = 'a';
-$_MODULE['<{blocklayered}prestashop>blocklayered_146ffe2fd9fa5bec3b63b52543793ec7'] = 'Mostra di più';
-$_MODULE['<{blocklayered}prestashop>blocklayered_c74ea6dbff701bfa23819583c52ebd97'] = 'Mostra meno';
diff --git a/modules/blocklink/translations/de.php b/modules/blocklink/translations/de.php
deleted file mode 100644
index f53f8dde1..000000000
--- a/modules/blocklink/translations/de.php
+++ /dev/null
@@ -1,40 +0,0 @@
-blocklink_43b38b9a2fe65059bed320bd284047e3'] = 'Das Feld \\"Titel\\" ist ungültig';
-$_MODULE['<{blocklink}prestashop>blocklink_5d73d4c0bcb035a1405e066eb0cdf832'] = 'Ein Fehler ist beim Löschen des Links aufgetreten';
-$_MODULE['<{blocklink}prestashop>blocklink_ed2fc2838f7edb7607dd1cd19f3a82e0'] = 'Text:';
-$_MODULE['<{blocklink}prestashop>blocklink_06933067aafd48425d67bcb01bba5cb6'] = 'Aktualisieren';
-$_MODULE['<{blocklink}prestashop>blocklink_6ccdff04699ffe6956a6b1465907414a'] = 'nach ältesten Links';
-$_MODULE['<{blocklink}prestashop>blocklink_387a8014f530f080bf2f3be723f8c164'] = 'Link-Liste';
-$_MODULE['<{blocklink}prestashop>blocklink_cad0a4e92b29bcb1ff1fc4f8524cfdc2'] = 'Es sind noch keine Links vorhanden';
-$_MODULE['<{blocklink}prestashop>blocklink_baa2ae9622a47c3217d725d1537e5187'] = 'Fügt einen Block mit weiteren Links hinzu';
-$_MODULE['<{blocklink}prestashop>blocklink_d98d5daaf408b77b05a2eeb6ae88d6df'] = 'Sind Sie sicher, dass Sie alle Ihre Links löschen wollen?';
-$_MODULE['<{blocklink}prestashop>blocklink_898536ebd630aa3a9844e9cd9d1ebb9b'] = 'Ein Fehler ist bei der Link-Erstellung aufgetreten';
-$_MODULE['<{blocklink}prestashop>blocklink_b18032737875f7947443c98824103a1f'] = 'Das Feld \\"Titel\\" darf nicht leer bleiben';
-$_MODULE['<{blocklink}prestashop>blocklink_9bbcafcc85be214aaff76dffb8b72ce9'] = 'Der Link ist erfolgreich gelöscht worden';
-$_MODULE['<{blocklink}prestashop>blocklink_7e5748d8c44f33c9cde08ac2805e5621'] = 'Bestellungssortierung erfolgreich aktualisiert';
-$_MODULE['<{blocklink}prestashop>blocklink_7f3ee1818e42cfd668e361d89b8595fb'] = 'Diesen Link hinzufügen';
-$_MODULE['<{blocklink}prestashop>blocklink_b22c8f9ad7db023c548c3b8e846cb169'] = 'Block Titel';
-$_MODULE['<{blocklink}prestashop>blocklink_2c906769e7f8b03cc1fedce4e24a20c2'] = 'Blocktitel:';
-$_MODULE['<{blocklink}prestashop>blocklink_53db43446b84dd2e9ddac626fc02ead3'] = 'Bestellliste:';
-$_MODULE['<{blocklink}prestashop>blocklink_b718adec73e04ce3ec720dd11a06a308'] = 'ID';
-$_MODULE['<{blocklink}prestashop>blocklink_9dffbf69ffba8bc38bc4e01abf4b1675'] = 'Text';
-$_MODULE['<{blocklink}prestashop>blocklink_fc738410141e4ec0c0319a81255a1431'] = 'Linkblock';
-$_MODULE['<{blocklink}prestashop>blocklink_9394bb34611399534ffac4f0ece96b7f'] = 'Falsche URL';
-$_MODULE['<{blocklink}prestashop>blocklink_eb74914f2759760be5c0a48f699f8541'] = 'Ein Fehler ist bei der Titel-Aktualisierung aufgetreten';
-$_MODULE['<{blocklink}prestashop>blocklink_5c0f7e2db8843204f422a369f2030b37'] = 'Der Blocktitel ist erfolgreich aktualisiert worden';
-$_MODULE['<{blocklink}prestashop>blocklink_46cff2568b00bc09d66844849d0b1309'] = 'Ein Fehler ist bei der Einstellung der Bestellungssortierung aufgetreten';
-$_MODULE['<{blocklink}prestashop>blocklink_58e9b25bb2e2699986a3abe2c92fc82e'] = 'Neuen Link hinzufügen';
-$_MODULE['<{blocklink}prestashop>blocklink_3b3d06023f6353f8fd05f859b298573e'] = 'URL:';
-$_MODULE['<{blocklink}prestashop>blocklink_f4f70727dc34561dfde1a3c529b6205c'] = 'Einstellungen';
-$_MODULE['<{blocklink}prestashop>blocklink_e6b391a8d2c4d45902a23a8b6585703d'] = 'URL';
-$_MODULE['<{blocklink}prestashop>blocklink_06df33001c1d7187fdd81ea1f5b277aa'] = 'Handlungen';
-$_MODULE['<{blocklink}prestashop>blocklink_fe3f38c46c80813d94b6775299e59f13'] = 'Sie müssen alle Felder ausfüllen';
-$_MODULE['<{blocklink}prestashop>blocklink_3da9d5745155a430aac6d7de3b6de0c8'] = 'Der Link ist erfolgreich hinzugefügt worden';
-$_MODULE['<{blocklink}prestashop>blocklink_1f3674ab0d54a38327e8e4a0d97788d4'] = 'In neuem Fenster öffnen:';
-$_MODULE['<{blocklink}prestashop>blocklink_f16b5952df8d25ea30b25ff95ee8fedf'] = 'Shop-Zugehörigkeit.';
-$_MODULE['<{blocklink}prestashop>blocklink_67c94c1cba852f2d13eed115c938baf6'] = 'Block-URL:';
-$_MODULE['<{blocklink}prestashop>blocklink_d36e9f57ea37903f81d28f7a189b9649'] = 'nach neuesten Links';
diff --git a/modules/blocklink/translations/en.php b/modules/blocklink/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/blocklink/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-blocklink_43b38b9a2fe65059bed320bd284047e3'] = 'El campo \\"título\\" es incorrecto';
-$_MODULE['<{blocklink}prestashop>blocklink_5d73d4c0bcb035a1405e066eb0cdf832'] = 'Se ha producido un error mientras se borraba el enlace';
-$_MODULE['<{blocklink}prestashop>blocklink_ed2fc2838f7edb7607dd1cd19f3a82e0'] = 'Texto:';
-$_MODULE['<{blocklink}prestashop>blocklink_06933067aafd48425d67bcb01bba5cb6'] = 'Actualizar';
-$_MODULE['<{blocklink}prestashop>blocklink_6ccdff04699ffe6956a6b1465907414a'] = 'por enlaces más antiguos';
-$_MODULE['<{blocklink}prestashop>blocklink_387a8014f530f080bf2f3be723f8c164'] = 'Lista de enlaces';
-$_MODULE['<{blocklink}prestashop>blocklink_cad0a4e92b29bcb1ff1fc4f8524cfdc2'] = 'Aún no hay enlaces';
-$_MODULE['<{blocklink}prestashop>blocklink_baa2ae9622a47c3217d725d1537e5187'] = 'Añadir un bloque con enlaces adicionales';
-$_MODULE['<{blocklink}prestashop>blocklink_d98d5daaf408b77b05a2eeb6ae88d6df'] = '¿Está seguro de querer borrar todos sus enlaces?';
-$_MODULE['<{blocklink}prestashop>blocklink_898536ebd630aa3a9844e9cd9d1ebb9b'] = 'Se ha producido un error durante el proceso de creación del enlace';
-$_MODULE['<{blocklink}prestashop>blocklink_b18032737875f7947443c98824103a1f'] = 'El campo \\"título\\" no puede estar vacío';
-$_MODULE['<{blocklink}prestashop>blocklink_9bbcafcc85be214aaff76dffb8b72ce9'] = 'El enlace se ha eliminado correctamente';
-$_MODULE['<{blocklink}prestashop>blocklink_7e5748d8c44f33c9cde08ac2805e5621'] = 'Actualización correcta de la reordenación';
-$_MODULE['<{blocklink}prestashop>blocklink_7f3ee1818e42cfd668e361d89b8595fb'] = 'A~ãdir este enlace';
-$_MODULE['<{blocklink}prestashop>blocklink_b22c8f9ad7db023c548c3b8e846cb169'] = 'Título del bloque';
-$_MODULE['<{blocklink}prestashop>blocklink_2c906769e7f8b03cc1fedce4e24a20c2'] = 'Título del bloque:';
-$_MODULE['<{blocklink}prestashop>blocklink_53db43446b84dd2e9ddac626fc02ead3'] = 'Orden:';
-$_MODULE['<{blocklink}prestashop>blocklink_b718adec73e04ce3ec720dd11a06a308'] = 'ID';
-$_MODULE['<{blocklink}prestashop>blocklink_9dffbf69ffba8bc38bc4e01abf4b1675'] = 'Texto';
-$_MODULE['<{blocklink}prestashop>blocklink_fc738410141e4ec0c0319a81255a1431'] = 'Bloque de enlaces';
-$_MODULE['<{blocklink}prestashop>blocklink_9394bb34611399534ffac4f0ece96b7f'] = 'URL incorrecta';
-$_MODULE['<{blocklink}prestashop>blocklink_eb74914f2759760be5c0a48f699f8541'] = 'Se ha producido un error durante la actualización del título';
-$_MODULE['<{blocklink}prestashop>blocklink_5c0f7e2db8843204f422a369f2030b37'] = 'El título del bloque se ha actualizado con éxito';
-$_MODULE['<{blocklink}prestashop>blocklink_46cff2568b00bc09d66844849d0b1309'] = 'Se ha producido un error durante el proceso de configuración de la reordenación';
-$_MODULE['<{blocklink}prestashop>blocklink_58e9b25bb2e2699986a3abe2c92fc82e'] = 'Añadir un nuevo enlace';
-$_MODULE['<{blocklink}prestashop>blocklink_3b3d06023f6353f8fd05f859b298573e'] = 'URL:';
-$_MODULE['<{blocklink}prestashop>blocklink_f4f70727dc34561dfde1a3c529b6205c'] = 'Configuración';
-$_MODULE['<{blocklink}prestashop>blocklink_e6b391a8d2c4d45902a23a8b6585703d'] = 'URL';
-$_MODULE['<{blocklink}prestashop>blocklink_06df33001c1d7187fdd81ea1f5b277aa'] = 'Acciones';
-$_MODULE['<{blocklink}prestashop>blocklink_fe3f38c46c80813d94b6775299e59f13'] = 'Debe rellenar todos los campos';
-$_MODULE['<{blocklink}prestashop>blocklink_3da9d5745155a430aac6d7de3b6de0c8'] = 'En enlace se ha añadido con éxito';
-$_MODULE['<{blocklink}prestashop>blocklink_1f3674ab0d54a38327e8e4a0d97788d4'] = 'Abrir en una nueva ventana:';
-$_MODULE['<{blocklink}prestashop>blocklink_f16b5952df8d25ea30b25ff95ee8fedf'] = 'Asociación de tienda:';
-$_MODULE['<{blocklink}prestashop>blocklink_67c94c1cba852f2d13eed115c938baf6'] = 'URL del bloque:';
-$_MODULE['<{blocklink}prestashop>blocklink_d36e9f57ea37903f81d28f7a189b9649'] = 'por enlaces más recientes';
diff --git a/modules/blocklink/translations/fr.php b/modules/blocklink/translations/fr.php
deleted file mode 100644
index 6857e71af..000000000
--- a/modules/blocklink/translations/fr.php
+++ /dev/null
@@ -1,40 +0,0 @@
-blocklink_43b38b9a2fe65059bed320bd284047e3'] = 'Le titre n\'est pas valable.';
-$_MODULE['<{blocklink}prestashop>blocklink_5d73d4c0bcb035a1405e066eb0cdf832'] = 'Une erreur est survenue lors de la suppression du lien.';
-$_MODULE['<{blocklink}prestashop>blocklink_ed2fc2838f7edb7607dd1cd19f3a82e0'] = 'Texte :';
-$_MODULE['<{blocklink}prestashop>blocklink_06933067aafd48425d67bcb01bba5cb6'] = 'Mettre à jour';
-$_MODULE['<{blocklink}prestashop>blocklink_6ccdff04699ffe6956a6b1465907414a'] = 'les premiers liens entrés';
-$_MODULE['<{blocklink}prestashop>blocklink_387a8014f530f080bf2f3be723f8c164'] = 'Liste de liens';
-$_MODULE['<{blocklink}prestashop>blocklink_cad0a4e92b29bcb1ff1fc4f8524cfdc2'] = 'Il n\'y a pas de lien.';
-$_MODULE['<{blocklink}prestashop>blocklink_baa2ae9622a47c3217d725d1537e5187'] = 'Ajoute un bloc avec des liens additionels.';
-$_MODULE['<{blocklink}prestashop>blocklink_d98d5daaf408b77b05a2eeb6ae88d6df'] = 'Êtes-vous sûr de vouloir supprimer tous vos liens ?';
-$_MODULE['<{blocklink}prestashop>blocklink_898536ebd630aa3a9844e9cd9d1ebb9b'] = 'Une erreur est survenue lors de la création du lien.';
-$_MODULE['<{blocklink}prestashop>blocklink_b18032737875f7947443c98824103a1f'] = 'Le champ \\"titre\\" ne peut être laissé vide.';
-$_MODULE['<{blocklink}prestashop>blocklink_9bbcafcc85be214aaff76dffb8b72ce9'] = 'Le lien a bien été supprimé.';
-$_MODULE['<{blocklink}prestashop>blocklink_7e5748d8c44f33c9cde08ac2805e5621'] = 'Ordre de tri mis à jour.';
-$_MODULE['<{blocklink}prestashop>blocklink_7f3ee1818e42cfd668e361d89b8595fb'] = 'Ajouter ce lien';
-$_MODULE['<{blocklink}prestashop>blocklink_b22c8f9ad7db023c548c3b8e846cb169'] = 'Titre du bloc';
-$_MODULE['<{blocklink}prestashop>blocklink_2c906769e7f8b03cc1fedce4e24a20c2'] = 'Titre du bloc :';
-$_MODULE['<{blocklink}prestashop>blocklink_53db43446b84dd2e9ddac626fc02ead3'] = 'Trier la liste :';
-$_MODULE['<{blocklink}prestashop>blocklink_b718adec73e04ce3ec720dd11a06a308'] = 'ID';
-$_MODULE['<{blocklink}prestashop>blocklink_9dffbf69ffba8bc38bc4e01abf4b1675'] = 'Texte';
-$_MODULE['<{blocklink}prestashop>blocklink_fc738410141e4ec0c0319a81255a1431'] = 'Bloc liens';
-$_MODULE['<{blocklink}prestashop>blocklink_9394bb34611399534ffac4f0ece96b7f'] = 'Mauvaise URL';
-$_MODULE['<{blocklink}prestashop>blocklink_eb74914f2759760be5c0a48f699f8541'] = 'Une erreur est survenue lors de la mise à jour du titre.';
-$_MODULE['<{blocklink}prestashop>blocklink_46cff2568b00bc09d66844849d0b1309'] = 'Une erreur est survenue lors du changement de l\'ordre de tri.';
-$_MODULE['<{blocklink}prestashop>blocklink_58e9b25bb2e2699986a3abe2c92fc82e'] = 'Ajouter un nouveau lien';
-$_MODULE['<{blocklink}prestashop>blocklink_3b3d06023f6353f8fd05f859b298573e'] = 'URL :';
-$_MODULE['<{blocklink}prestashop>blocklink_f4f70727dc34561dfde1a3c529b6205c'] = 'Configuration';
-$_MODULE['<{blocklink}prestashop>blocklink_5c0f7e2db8843204f422a369f2030b37'] = 'Le titre du bloc a bien été mis à jour.';
-$_MODULE['<{blocklink}prestashop>blocklink_e6b391a8d2c4d45902a23a8b6585703d'] = 'URL';
-$_MODULE['<{blocklink}prestashop>blocklink_06df33001c1d7187fdd81ea1f5b277aa'] = 'Actions';
-$_MODULE['<{blocklink}prestashop>blocklink_fe3f38c46c80813d94b6775299e59f13'] = 'Vous devez remplir l\'ensemble des champs';
-$_MODULE['<{blocklink}prestashop>blocklink_3da9d5745155a430aac6d7de3b6de0c8'] = 'Le lien a bien été ajouté.';
-$_MODULE['<{blocklink}prestashop>blocklink_1f3674ab0d54a38327e8e4a0d97788d4'] = 'S\'ouvre dans une nouvelle fenêtre :';
-$_MODULE['<{blocklink}prestashop>blocklink_f16b5952df8d25ea30b25ff95ee8fedf'] = 'Association des boutiques :';
-$_MODULE['<{blocklink}prestashop>blocklink_67c94c1cba852f2d13eed115c938baf6'] = 'URL du bloc :';
-$_MODULE['<{blocklink}prestashop>blocklink_d36e9f57ea37903f81d28f7a189b9649'] = 'par liens les plus récents';
diff --git a/modules/blocklink/translations/it.php b/modules/blocklink/translations/it.php
deleted file mode 100644
index 0b783fedb..000000000
--- a/modules/blocklink/translations/it.php
+++ /dev/null
@@ -1,40 +0,0 @@
-blocklink_43b38b9a2fe65059bed320bd284047e3'] = 'Il campo \'titolo\' non è valido';
-$_MODULE['<{blocklink}prestashop>blocklink_5d73d4c0bcb035a1405e066eb0cdf832'] = 'Si è verificato un errore durante la cancellazione link';
-$_MODULE['<{blocklink}prestashop>blocklink_ed2fc2838f7edb7607dd1cd19f3a82e0'] = 'Testo:';
-$_MODULE['<{blocklink}prestashop>blocklink_06933067aafd48425d67bcb01bba5cb6'] = 'Aggiornamento';
-$_MODULE['<{blocklink}prestashop>blocklink_6ccdff04699ffe6956a6b1465907414a'] = 'per link più vecchi';
-$_MODULE['<{blocklink}prestashop>blocklink_387a8014f530f080bf2f3be723f8c164'] = 'Elenco link';
-$_MODULE['<{blocklink}prestashop>blocklink_cad0a4e92b29bcb1ff1fc4f8524cfdc2'] = 'Non ci sono ancora link';
-$_MODULE['<{blocklink}prestashop>blocklink_baa2ae9622a47c3217d725d1537e5187'] = 'Aggiunge un blocco con ulteriori link';
-$_MODULE['<{blocklink}prestashop>blocklink_d98d5daaf408b77b05a2eeb6ae88d6df'] = 'Sei sicuro di voler eliminare tutti i link?';
-$_MODULE['<{blocklink}prestashop>blocklink_898536ebd630aa3a9844e9cd9d1ebb9b'] = 'Si è verificato un errore durante la creazione del link';
-$_MODULE['<{blocklink}prestashop>blocklink_b18032737875f7947443c98824103a1f'] = 'Il campo \\"titolo\\" non può essere vuoto';
-$_MODULE['<{blocklink}prestashop>blocklink_9bbcafcc85be214aaff76dffb8b72ce9'] = 'Il link è stato cancellato con successo';
-$_MODULE['<{blocklink}prestashop>blocklink_7e5748d8c44f33c9cde08ac2805e5621'] = 'Ordine di selezione aggiornato con successo';
-$_MODULE['<{blocklink}prestashop>blocklink_7f3ee1818e42cfd668e361d89b8595fb'] = 'Aggiungi questo link';
-$_MODULE['<{blocklink}prestashop>blocklink_b22c8f9ad7db023c548c3b8e846cb169'] = 'Titolo del blocco';
-$_MODULE['<{blocklink}prestashop>blocklink_2c906769e7f8b03cc1fedce4e24a20c2'] = 'Titolo del blocco:';
-$_MODULE['<{blocklink}prestashop>blocklink_53db43446b84dd2e9ddac626fc02ead3'] = 'Ordinare l\'elenco:';
-$_MODULE['<{blocklink}prestashop>blocklink_b718adec73e04ce3ec720dd11a06a308'] = 'ID';
-$_MODULE['<{blocklink}prestashop>blocklink_9dffbf69ffba8bc38bc4e01abf4b1675'] = 'Testo';
-$_MODULE['<{blocklink}prestashop>blocklink_fc738410141e4ec0c0319a81255a1431'] = 'Blocco link';
-$_MODULE['<{blocklink}prestashop>blocklink_9394bb34611399534ffac4f0ece96b7f'] = 'Cattivo URL';
-$_MODULE['<{blocklink}prestashop>blocklink_eb74914f2759760be5c0a48f699f8541'] = 'Si è verificato un errore durante l\'aggiornamento del titolo';
-$_MODULE['<{blocklink}prestashop>blocklink_5c0f7e2db8843204f422a369f2030b37'] = 'Il titolo del blocco è stato aggiornato con successo';
-$_MODULE['<{blocklink}prestashop>blocklink_46cff2568b00bc09d66844849d0b1309'] = 'Si è verificato un errore durante l\'impostazione dell\'ordine di selezione';
-$_MODULE['<{blocklink}prestashop>blocklink_58e9b25bb2e2699986a3abe2c92fc82e'] = 'Aggiungi un nuovo link';
-$_MODULE['<{blocklink}prestashop>blocklink_3b3d06023f6353f8fd05f859b298573e'] = 'URL:';
-$_MODULE['<{blocklink}prestashop>blocklink_f4f70727dc34561dfde1a3c529b6205c'] = 'Impostazioni';
-$_MODULE['<{blocklink}prestashop>blocklink_e6b391a8d2c4d45902a23a8b6585703d'] = 'URL';
-$_MODULE['<{blocklink}prestashop>blocklink_06df33001c1d7187fdd81ea1f5b277aa'] = 'Azioni';
-$_MODULE['<{blocklink}prestashop>blocklink_fe3f38c46c80813d94b6775299e59f13'] = 'Devi compilare tutti i campi';
-$_MODULE['<{blocklink}prestashop>blocklink_3da9d5745155a430aac6d7de3b6de0c8'] = 'Il link è stato aggiunto con successo';
-$_MODULE['<{blocklink}prestashop>blocklink_1f3674ab0d54a38327e8e4a0d97788d4'] = 'Apri in una nuova finestra:';
-$_MODULE['<{blocklink}prestashop>blocklink_f16b5952df8d25ea30b25ff95ee8fedf'] = 'Associazione negozio:';
-$_MODULE['<{blocklink}prestashop>blocklink_67c94c1cba852f2d13eed115c938baf6'] = 'URL del blocco:';
-$_MODULE['<{blocklink}prestashop>blocklink_d36e9f57ea37903f81d28f7a189b9649'] = 'per link più recenti';
diff --git a/modules/blockmanufacturer/translations/de.php b/modules/blockmanufacturer/translations/de.php
deleted file mode 100644
index d32b73933..000000000
--- a/modules/blockmanufacturer/translations/de.php
+++ /dev/null
@@ -1,24 +0,0 @@
-blockmanufacturer_067931ed6c365d76c9f32285a6b49839'] = 'Ungültige Anzahl von Elementen';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_1c407c118b89fa6feaae6b0af5fc0970'] = 'Kein Hersteller';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_f4f70727dc34561dfde1a3c529b6205c'] = 'Einstellungen';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_b4251faa73b3c8188623fdc8fe287513'] = 'Verwenden Sie eine Nur-Text-Liste';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_c6dfa38603c2ea64217d462000a09da4'] = 'So zeigen Hersteller in einer Nur-Text-Liste';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_56353167778d1520bfecc70c470e6d8a'] = 'So zeigen Sie Hersteller in einem Dropdown-Liste';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_2377be3c2ad9b435ba277a73f0f1ca76'] = 'Hersteller';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_bc3e73cfa718a3237fb1d7e1da491395'] = 'Herstellerblock';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_71087c7035e626bd33c72ae9a7f042af'] = 'Zeigt einen Hersteller-/ Markenblock an';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_5b2e13ff6fa0da895d14bd56f2cb2d2d'] = 'Bitte aktivieren Sie mindestens eine Systemliste';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_c888438d14855d7d96a2724ee9c306bd'] = 'Einstellungen aktualisiert';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Aktiviert';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_b9987a246a537f4fe86f1f2e3d10dbdb'] = 'Anzeige';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_ac88955a067710291274d21dec443904'] = 'Verwenden Sie eine Dropdown-Liste';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_9d098ff02f6813055b869f6f9acd831c'] = 'Mehr darüber';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_bf24faeb13210b5a703f3ccef792b000'] = 'Alle Hersteller';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_aa56a2e65d8106aef3c61e4f6bf94fdb'] = 'Elemente';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_b9f5c797ebbf55adccdd8539a65a0241'] = 'Deaktiviert';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_c9cc8cce247e49bae79f15173ce97354'] = 'Speichern';
diff --git a/modules/blockmanufacturer/translations/en.php b/modules/blockmanufacturer/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/blockmanufacturer/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-blockmanufacturer_067931ed6c365d76c9f32285a6b49839'] = 'número de elementos no válido';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_1c407c118b89fa6feaae6b0af5fc0970'] = 'Sin marcas';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_f4f70727dc34561dfde1a3c529b6205c'] = 'Configuración';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_b4251faa73b3c8188623fdc8fe287513'] = 'Usar una lista de texto plano';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_c6dfa38603c2ea64217d462000a09da4'] = 'Para mostrar marcas en une lista de texto plano';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_56353167778d1520bfecc70c470e6d8a'] = 'Para mostrar las marcas dentro de un cuadro combinado';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_2377be3c2ad9b435ba277a73f0f1ca76'] = 'Marcas';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_bc3e73cfa718a3237fb1d7e1da491395'] = 'Bloque de marcas';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_71087c7035e626bd33c72ae9a7f042af'] = 'Mostrar bloque de marcas';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_5b2e13ff6fa0da895d14bd56f2cb2d2d'] = 'Por favor, active al menos uno de la lista';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_c888438d14855d7d96a2724ee9c306bd'] = 'Actualización realizada con éxito';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Activado';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_b9987a246a537f4fe86f1f2e3d10dbdb'] = 'Mostrar';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_aa56a2e65d8106aef3c61e4f6bf94fdb'] = 'elementos';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_ac88955a067710291274d21dec443904'] = 'Usar un cuadro combinado';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_9d098ff02f6813055b869f6f9acd831c'] = 'Más sobre';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_bf24faeb13210b5a703f3ccef792b000'] = 'Todas las marcas';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_b9f5c797ebbf55adccdd8539a65a0241'] = 'Desactivado';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_c9cc8cce247e49bae79f15173ce97354'] = 'Guardar';
diff --git a/modules/blockmanufacturer/translations/fr.php b/modules/blockmanufacturer/translations/fr.php
deleted file mode 100644
index acc9cb7e6..000000000
--- a/modules/blockmanufacturer/translations/fr.php
+++ /dev/null
@@ -1,24 +0,0 @@
-blockmanufacturer_067931ed6c365d76c9f32285a6b49839'] = 'Nombre non valable d\'éléments';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_1c407c118b89fa6feaae6b0af5fc0970'] = 'Aucun fabricant';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_f4f70727dc34561dfde1a3c529b6205c'] = 'Paramètres';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_b4251faa73b3c8188623fdc8fe287513'] = 'Utiliser une liste en text brut';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_c6dfa38603c2ea64217d462000a09da4'] = 'Affiche les fabricants sous forme de liste textuelle';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_56353167778d1520bfecc70c470e6d8a'] = 'Affiche les fabricants sous forme de menu déroulant';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_2377be3c2ad9b435ba277a73f0f1ca76'] = 'Fabricants';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_bc3e73cfa718a3237fb1d7e1da491395'] = 'Bloc fabricant';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_71087c7035e626bd33c72ae9a7f042af'] = 'Ajoute un bloc avec les fabricants/marques';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_b9987a246a537f4fe86f1f2e3d10dbdb'] = 'Afficher';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_5b2e13ff6fa0da895d14bd56f2cb2d2d'] = 'Veuillez activer au moins un affichage de liste';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_c888438d14855d7d96a2724ee9c306bd'] = 'Paramètres mis à jour';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Activé';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_aa56a2e65d8106aef3c61e4f6bf94fdb'] = 'éléments';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_ac88955a067710291274d21dec443904'] = 'Utiliser un menu déroulant';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_9d098ff02f6813055b869f6f9acd831c'] = 'En savoir plus sur';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_bf24faeb13210b5a703f3ccef792b000'] = 'Tous les fabricants';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_b9f5c797ebbf55adccdd8539a65a0241'] = 'Désactivé';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_c9cc8cce247e49bae79f15173ce97354'] = 'Enregistrer';
diff --git a/modules/blockmanufacturer/translations/it.php b/modules/blockmanufacturer/translations/it.php
deleted file mode 100644
index a56ea018b..000000000
--- a/modules/blockmanufacturer/translations/it.php
+++ /dev/null
@@ -1,24 +0,0 @@
-blockmanufacturer_067931ed6c365d76c9f32285a6b49839'] = 'Numero di elementi non valido';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_1c407c118b89fa6feaae6b0af5fc0970'] = 'Nessun produttore';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_f4f70727dc34561dfde1a3c529b6205c'] = 'Impostazioni';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_b4251faa73b3c8188623fdc8fe287513'] = 'Utilizzare un elenco';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_c6dfa38603c2ea64217d462000a09da4'] = 'Per visualizzare i produttori in un elenco';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_56353167778d1520bfecc70c470e6d8a'] = 'Per visualizzare i produttori in un elenco a cascata';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_2377be3c2ad9b435ba277a73f0f1ca76'] = 'Produttori';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_bc3e73cfa718a3237fb1d7e1da491395'] = 'Blocco produttori';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_71087c7035e626bd33c72ae9a7f042af'] = 'Visualizza un blocco di produttori / marche';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_5b2e13ff6fa0da895d14bd56f2cb2d2d'] = 'Attiva almeno un elenco di sistema';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_c888438d14855d7d96a2724ee9c306bd'] = 'Impostazioni aggiornate';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Attivato';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_b9987a246a537f4fe86f1f2e3d10dbdb'] = 'Visualizza';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_aa56a2e65d8106aef3c61e4f6bf94fdb'] = 'elementi';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_ac88955a067710291274d21dec443904'] = 'Utilizza un elenco a cascata';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_9d098ff02f6813055b869f6f9acd831c'] = 'Maggiori informazioni su';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_bf24faeb13210b5a703f3ccef792b000'] = 'Tutti i produttori';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_b9f5c797ebbf55adccdd8539a65a0241'] = 'Disattivato';
-$_MODULE['<{blockmanufacturer}prestashop>blockmanufacturer_c9cc8cce247e49bae79f15173ce97354'] = 'Salva';
diff --git a/modules/blockmyaccount/translations/de.php b/modules/blockmyaccount/translations/de.php
deleted file mode 100644
index d7998036c..000000000
--- a/modules/blockmyaccount/translations/de.php
+++ /dev/null
@@ -1,15 +0,0 @@
-blockmyaccount_ecf3e4f8f34a293099620cc25d5b4d93'] = 'Mein Kontoblock';
-$_MODULE['<{blockmyaccount}prestashop>blockmyaccount_ecf2ffd31994b3edea4b916011b08bfa'] = 'Zeigt ein Block mit Links bezüglich des Benutzerkontos an';
-$_MODULE['<{blockmyaccount}prestashop>blockmyaccount_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'Mein Konto';
-$_MODULE['<{blockmyaccount}prestashop>blockmyaccount_9132bc7bac91dd4e1c453d4e96edf219'] = 'Meine Gutscheine';
-$_MODULE['<{blockmyaccount}prestashop>blockmyaccount_95d2137c196c7f84df5753ed78f18332'] = 'Meine Gutscheine';
-$_MODULE['<{blockmyaccount}prestashop>blockmyaccount_c87aacf5673fada1108c9f809d354311'] = 'Abmelden';
-$_MODULE['<{blockmyaccount}prestashop>blockmyaccount_74ecd9234b2a42ca13e775193f391833'] = 'Meine Bestellungen';
-$_MODULE['<{blockmyaccount}prestashop>blockmyaccount_89080f0eedbd5491a93157930f1e45fc'] = 'Meine Warenrücksendungen';
-$_MODULE['<{blockmyaccount}prestashop>blockmyaccount_e45be0a0d4a0b62b15694c1a631e6e62'] = 'Meine Adressen';
-$_MODULE['<{blockmyaccount}prestashop>blockmyaccount_63b1ba91576576e6cf2da6fab7617e58'] = 'Meine persönlichen Daten';
diff --git a/modules/blockmyaccount/translations/en.php b/modules/blockmyaccount/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/blockmyaccount/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-blockmyaccount_ecf3e4f8f34a293099620cc25d5b4d93'] = 'Bloque Mi cuenta';
-$_MODULE['<{blockmyaccount}prestashop>blockmyaccount_ecf2ffd31994b3edea4b916011b08bfa'] = 'Mostrar un bloque con enlaces a la cuenta del usuario';
-$_MODULE['<{blockmyaccount}prestashop>blockmyaccount_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'Mi cuenta';
-$_MODULE['<{blockmyaccount}prestashop>blockmyaccount_9132bc7bac91dd4e1c453d4e96edf219'] = 'Mis vales descuento';
-$_MODULE['<{blockmyaccount}prestashop>blockmyaccount_95d2137c196c7f84df5753ed78f18332'] = 'Mis vales';
-$_MODULE['<{blockmyaccount}prestashop>blockmyaccount_c87aacf5673fada1108c9f809d354311'] = 'Cerrar sesión';
-$_MODULE['<{blockmyaccount}prestashop>blockmyaccount_74ecd9234b2a42ca13e775193f391833'] = 'Mis pedidos';
-$_MODULE['<{blockmyaccount}prestashop>blockmyaccount_89080f0eedbd5491a93157930f1e45fc'] = 'Mi mercancía devuelta';
-$_MODULE['<{blockmyaccount}prestashop>blockmyaccount_e45be0a0d4a0b62b15694c1a631e6e62'] = 'Mis direcciones';
-$_MODULE['<{blockmyaccount}prestashop>blockmyaccount_63b1ba91576576e6cf2da6fab7617e58'] = 'Mis datos personales';
diff --git a/modules/blockmyaccount/translations/fr.php b/modules/blockmyaccount/translations/fr.php
deleted file mode 100644
index 3b12e4bb6..000000000
--- a/modules/blockmyaccount/translations/fr.php
+++ /dev/null
@@ -1,15 +0,0 @@
-blockmyaccount_95d2137c196c7f84df5753ed78f18332'] = 'Mes bons de réductions';
-$_MODULE['<{blockmyaccount}prestashop>blockmyaccount_ecf3e4f8f34a293099620cc25d5b4d93'] = 'Bloc Mon compte';
-$_MODULE['<{blockmyaccount}prestashop>blockmyaccount_ecf2ffd31994b3edea4b916011b08bfa'] = 'Affiche un bloc avec des liens relatifs au compte du client.';
-$_MODULE['<{blockmyaccount}prestashop>blockmyaccount_9132bc7bac91dd4e1c453d4e96edf219'] = 'Mes avoirs';
-$_MODULE['<{blockmyaccount}prestashop>blockmyaccount_c87aacf5673fada1108c9f809d354311'] = 'Déconnexion';
-$_MODULE['<{blockmyaccount}prestashop>blockmyaccount_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'Mon compte';
-$_MODULE['<{blockmyaccount}prestashop>blockmyaccount_74ecd9234b2a42ca13e775193f391833'] = 'Mes commandes';
-$_MODULE['<{blockmyaccount}prestashop>blockmyaccount_89080f0eedbd5491a93157930f1e45fc'] = 'Mes retours produits';
-$_MODULE['<{blockmyaccount}prestashop>blockmyaccount_e45be0a0d4a0b62b15694c1a631e6e62'] = 'Mes adresses';
-$_MODULE['<{blockmyaccount}prestashop>blockmyaccount_63b1ba91576576e6cf2da6fab7617e58'] = 'Mes données personnelles';
diff --git a/modules/blockmyaccount/translations/it.php b/modules/blockmyaccount/translations/it.php
deleted file mode 100644
index 83593abc6..000000000
--- a/modules/blockmyaccount/translations/it.php
+++ /dev/null
@@ -1,15 +0,0 @@
-blockmyaccount_ecf3e4f8f34a293099620cc25d5b4d93'] = 'Blocco del mio account';
-$_MODULE['<{blockmyaccount}prestashop>blockmyaccount_ecf2ffd31994b3edea4b916011b08bfa'] = 'Visualizza un blocco con i link relativi all\'account utente';
-$_MODULE['<{blockmyaccount}prestashop>blockmyaccount_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'Il mio account';
-$_MODULE['<{blockmyaccount}prestashop>blockmyaccount_9132bc7bac91dd4e1c453d4e96edf219'] = 'Le mie note di credito';
-$_MODULE['<{blockmyaccount}prestashop>blockmyaccount_95d2137c196c7f84df5753ed78f18332'] = 'I miei buoni';
-$_MODULE['<{blockmyaccount}prestashop>blockmyaccount_c87aacf5673fada1108c9f809d354311'] = 'Esci';
-$_MODULE['<{blockmyaccount}prestashop>blockmyaccount_74ecd9234b2a42ca13e775193f391833'] = 'I miei ordini';
-$_MODULE['<{blockmyaccount}prestashop>blockmyaccount_89080f0eedbd5491a93157930f1e45fc'] = 'I miei resi di merce';
-$_MODULE['<{blockmyaccount}prestashop>blockmyaccount_e45be0a0d4a0b62b15694c1a631e6e62'] = 'I miei indirizzi';
-$_MODULE['<{blockmyaccount}prestashop>blockmyaccount_63b1ba91576576e6cf2da6fab7617e58'] = 'Le mie informazioni personali';
diff --git a/modules/blockmyaccountfooter/translations/de.php b/modules/blockmyaccountfooter/translations/de.php
deleted file mode 100644
index 5ae390a0c..000000000
--- a/modules/blockmyaccountfooter/translations/de.php
+++ /dev/null
@@ -1,15 +0,0 @@
-blockmyaccountfooter_c87aacf5673fada1108c9f809d354311'] = 'Abmelden';
-$_MODULE['<{blockmyaccountfooter}prestashop>blockmyaccountfooter_b97d23f7cde011d190f39468e146425e'] = 'Mein Kontoblock';
-$_MODULE['<{blockmyaccountfooter}prestashop>blockmyaccountfooter_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'Mein Konto';
-$_MODULE['<{blockmyaccountfooter}prestashop>blockmyaccountfooter_89080f0eedbd5491a93157930f1e45fc'] = 'Meine Warenrücksendungen';
-$_MODULE['<{blockmyaccountfooter}prestashop>blockmyaccountfooter_9132bc7bac91dd4e1c453d4e96edf219'] = 'Meine Gutscheine';
-$_MODULE['<{blockmyaccountfooter}prestashop>blockmyaccountfooter_95d2137c196c7f84df5753ed78f18332'] = 'Abmelden';
-$_MODULE['<{blockmyaccountfooter}prestashop>blockmyaccountfooter_e45be0a0d4a0b62b15694c1a631e6e62'] = 'Meine Adressen';
-$_MODULE['<{blockmyaccountfooter}prestashop>blockmyaccountfooter_abdb95361b4c92488add0a5a37afabcb'] = 'Zeigt ein Block mit Links bezüglich des Benutzerkontos an';
-$_MODULE['<{blockmyaccountfooter}prestashop>blockmyaccountfooter_74ecd9234b2a42ca13e775193f391833'] = 'Meine Bestellungen';
-$_MODULE['<{blockmyaccountfooter}prestashop>blockmyaccountfooter_63b1ba91576576e6cf2da6fab7617e58'] = 'Meine persönlichen Daten';
diff --git a/modules/blockmyaccountfooter/translations/en.php b/modules/blockmyaccountfooter/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/blockmyaccountfooter/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-blockmyaccountfooter_c87aacf5673fada1108c9f809d354311'] = 'Se déconnecter';
-$_MODULE['<{blockmyaccountfooter}prestashop>blockmyaccountfooter_74ecd9234b2a42ca13e775193f391833'] = 'Voir mes commandes';
-$_MODULE['<{blockmyaccountfooter}prestashop>blockmyaccountfooter_b97d23f7cde011d190f39468e146425e'] = 'Bloc Mon compte dans le pied de page';
-$_MODULE['<{blockmyaccountfooter}prestashop>blockmyaccountfooter_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'Mon compte';
-$_MODULE['<{blockmyaccountfooter}prestashop>blockmyaccountfooter_89080f0eedbd5491a93157930f1e45fc'] = 'Mes retours de marchandise';
-$_MODULE['<{blockmyaccountfooter}prestashop>blockmyaccountfooter_9132bc7bac91dd4e1c453d4e96edf219'] = 'Mes avoirs';
-$_MODULE['<{blockmyaccountfooter}prestashop>blockmyaccountfooter_95d2137c196c7f84df5753ed78f18332'] = 'Mes bons de réduction';
-$_MODULE['<{blockmyaccountfooter}prestashop>blockmyaccountfooter_5973e925605a501b18e48280f04f0347'] = 'Voir mes retours produits';
-$_MODULE['<{blockmyaccountfooter}prestashop>blockmyaccountfooter_95d2137c196c7f84df5753ed78f18332'] = 'Voir mes réductions';
-$_MODULE['<{blockmyaccountfooter}prestashop>blockmyaccountfooter_e45be0a0d4a0b62b15694c1a631e6e62'] = 'Mes adresses';
-$_MODULE['<{blockmyaccountfooter}prestashop>blockmyaccountfooter_e45be0a0d4a0b62b15694c1a631e6e62'] = 'Voir mes adresses';
-$_MODULE['<{blockmyaccountfooter}prestashop>blockmyaccountfooter_abdb95361b4c92488add0a5a37afabcb'] = 'Affiche un bloc avec des liens relatifs au compte du client.';
-$_MODULE['<{blockmyaccountfooter}prestashop>blockmyaccountfooter_74ecd9234b2a42ca13e775193f391833'] = 'Mes commandes';
-$_MODULE['<{blockmyaccountfooter}prestashop>blockmyaccountfooter_63b1ba91576576e6cf2da6fab7617e58'] = 'Mes informations personnelles';
-$_MODULE['<{blockmyaccountfooter}prestashop>blockmyaccountfooter_ae9ec80afffec5a455fbf2361a06168a'] = 'Gérer mon compte client';
-$_MODULE['<{blockmyaccountfooter}prestashop>blockmyaccountfooter_9132bc7bac91dd4e1c453d4e96edf219'] = 'Voir mes avoirs';
-$_MODULE['<{blockmyaccountfooter}prestashop>blockmyaccountfooter_b4b80a59559e84e8497f746aac634674'] = 'Gérer mes informations personnelles';
diff --git a/modules/blocknewproducts/translations/de.php b/modules/blocknewproducts/translations/de.php
deleted file mode 100644
index 301467956..000000000
--- a/modules/blocknewproducts/translations/de.php
+++ /dev/null
@@ -1,22 +0,0 @@
-blocknewproducts_d3ee346c7f6560faa13622b6fef26f96'] = 'Zeigt einen Block mit neu hinzugefügten Produkten an';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_73293a024e644165e9bf48f270af63a0'] = 'Ungültige Anzahl.';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_b9f5c797ebbf55adccdd8539a65a0241'] = 'Deaktiviert';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_9ff0635f5737513b1a6f559ac2bff745'] = 'Neue Produkte';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_60efcc704ef1456678f77eb9ee20847b'] = 'Alle neuen Produkte';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_18cc24fb12f89c839ab890f8188febe8'] = 'Keine neuen Produkte zu diesem Zeitpunkt';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_9f6f59f676f90cf034870f3bcce96188'] = 'Angezeigte Produkte';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_1cd777247f2a6ed79534d4ace72d78ce'] = 'Sie müssen das Feld \\"Angezeigte Produkte\\" ausfüllen';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_c888438d14855d7d96a2724ee9c306bd'] = 'Einstellungen aktualisiert';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Aktiviert';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_c9cc8cce247e49bae79f15173ce97354'] = 'Speichern';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_f7c34fc4a48bc683445c1e7bbc245508'] = 'Neue Produktblöcke';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_41385d2dca40c2a2c7062ed7019a20be'] = 'Block immer anzeigen';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_f4f70727dc34561dfde1a3c529b6205c'] = 'Einstellungen';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_3ea7689283770958661c27c37275b89c'] = 'Anzahl der Produkte einstellen, die in diesem Block angezeigt werden sollen';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_53d61d1ac0507b1bd8cd99db8d64fb19'] = 'Block anzeigen, auch wenn kein Produkt verfügbar ist.';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_43340e6cc4e88197d57f8d6d5ea50a46'] = 'mehr..';
diff --git a/modules/blocknewproducts/translations/en.php b/modules/blocknewproducts/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/blocknewproducts/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-blocknewproducts_d3ee346c7f6560faa13622b6fef26f96'] = 'Mostrar el bloque con los nuevos productos añadidos';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_73293a024e644165e9bf48f270af63a0'] = 'Número no válido.';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_9f6f59f676f90cf034870f3bcce96188'] = 'Productos mostrados';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_b9f5c797ebbf55adccdd8539a65a0241'] = 'Desactivado';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_9ff0635f5737513b1a6f559ac2bff745'] = 'Novedades';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_60efcc704ef1456678f77eb9ee20847b'] = 'Todas las novedades';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_18cc24fb12f89c839ab890f8188febe8'] = 'no hay nuevos productos en este momento';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_1cd777247f2a6ed79534d4ace72d78ce'] = 'Debe rellenar el campo \\"productos mostrados\\"';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_c888438d14855d7d96a2724ee9c306bd'] = 'Actualización realizada con éxito';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Activado';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_c9cc8cce247e49bae79f15173ce97354'] = 'Guardar';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_f7c34fc4a48bc683445c1e7bbc245508'] = 'Bloque de novedades';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_41385d2dca40c2a2c7062ed7019a20be'] = 'Mostrar este bloque siempre';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_3ea7689283770958661c27c37275b89c'] = 'Seleccione el número de productos a mostrar en este bloque';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_53d61d1ac0507b1bd8cd99db8d64fb19'] = 'Mostrar este bloque aunque no haya productos disponibles';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_43340e6cc4e88197d57f8d6d5ea50a46'] = 'Leer más';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_f4f70727dc34561dfde1a3c529b6205c'] = 'Configuración';
diff --git a/modules/blocknewproducts/translations/fr.php b/modules/blocknewproducts/translations/fr.php
deleted file mode 100644
index 58bdf73fe..000000000
--- a/modules/blocknewproducts/translations/fr.php
+++ /dev/null
@@ -1,22 +0,0 @@
-blocknewproducts_d3ee346c7f6560faa13622b6fef26f96'] = 'Ajoute un bloc proposant les derniers produits ajoutés.';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_73293a024e644165e9bf48f270af63a0'] = 'Nombre non valable.';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_b9f5c797ebbf55adccdd8539a65a0241'] = 'Désactivé';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_9ff0635f5737513b1a6f559ac2bff745'] = 'Nouveaux produits';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_60efcc704ef1456678f77eb9ee20847b'] = 'Tous les nouveaux produits';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_18cc24fb12f89c839ab890f8188febe8'] = 'Aucun nouveau produit à l\'heure actuelle';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_9f6f59f676f90cf034870f3bcce96188'] = 'Produits affichés';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_1cd777247f2a6ed79534d4ace72d78ce'] = 'Vous devez remplir le champ \\"produit affiché\\".';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_c888438d14855d7d96a2724ee9c306bd'] = 'Paramètres mis à jour';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Activé';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_c9cc8cce247e49bae79f15173ce97354'] = 'Sauvegarder';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_f7c34fc4a48bc683445c1e7bbc245508'] = 'Bloc nouveaux produits';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_41385d2dca40c2a2c7062ed7019a20be'] = 'Toujours afficher ce bloc';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_f4f70727dc34561dfde1a3c529b6205c'] = 'Paramètres';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_3ea7689283770958661c27c37275b89c'] = 'Détermine le nombre de produits à afficher dans ce bloc';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_53d61d1ac0507b1bd8cd99db8d64fb19'] = 'Afficher le bloc même si aucun produit n\'est disponible.';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_43340e6cc4e88197d57f8d6d5ea50a46'] = 'Lire plus';
diff --git a/modules/blocknewproducts/translations/it.php b/modules/blocknewproducts/translations/it.php
deleted file mode 100644
index 17883b9e4..000000000
--- a/modules/blocknewproducts/translations/it.php
+++ /dev/null
@@ -1,22 +0,0 @@
-blocknewproducts_d3ee346c7f6560faa13622b6fef26f96'] = 'Visualizza un blocco con i prodotti appena aggiunti';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_73293a024e644165e9bf48f270af63a0'] = 'Numero non valido.';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_9f6f59f676f90cf034870f3bcce96188'] = 'Prodotti esposti';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_b9f5c797ebbf55adccdd8539a65a0241'] = 'Disattivato';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_9ff0635f5737513b1a6f559ac2bff745'] = 'Nuovi prodotti';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_60efcc704ef1456678f77eb9ee20847b'] = 'Tutti i nuovi prodotti';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_18cc24fb12f89c839ab890f8188febe8'] = 'Nessun nuovo prodotto in questo momento';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_1cd777247f2a6ed79534d4ace72d78ce'] = 'Devi compilare il campo \\"prodotti esposti\\"';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_c888438d14855d7d96a2724ee9c306bd'] = 'Impostazioni aggiornate';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Attivato';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_c9cc8cce247e49bae79f15173ce97354'] = 'Salva';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_f7c34fc4a48bc683445c1e7bbc245508'] = 'Blocco nuovi prodotti';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_41385d2dca40c2a2c7062ed7019a20be'] = 'Visualizza sempre blocco';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_f4f70727dc34561dfde1a3c529b6205c'] = 'Impostazioni';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_3ea7689283770958661c27c37275b89c'] = 'Imposta il numero di prodotti da esporre in questo blocco';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_53d61d1ac0507b1bd8cd99db8d64fb19'] = 'Mostra il blocco anche se nessun prodotto è disponibile.';
-$_MODULE['<{blocknewproducts}prestashop>blocknewproducts_43340e6cc4e88197d57f8d6d5ea50a46'] = 'Maggiori informazioni';
diff --git a/modules/blocknewsletter/mails/de/index.php b/modules/blocknewsletter/mails/de/index.php
deleted file mode 100644
index 3f6561f72..000000000
--- a/modules/blocknewsletter/mails/de/index.php
+++ /dev/null
@@ -1,35 +0,0 @@
-
-* @copyright 2007-2013 PrestaShop SA
-* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
-* International Registered Trademark & Property of PrestaShop SA
-*/
-
-header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
-header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
-
-header("Cache-Control: no-store, no-cache, must-revalidate");
-header("Cache-Control: post-check=0, pre-check=0", false);
-header("Pragma: no-cache");
-
-header("Location: ../");
-exit;
\ No newline at end of file
diff --git a/modules/blocknewsletter/mails/de/newsletter_conf.html b/modules/blocknewsletter/mails/de/newsletter_conf.html
deleted file mode 100644
index 47df7bce6..000000000
--- a/modules/blocknewsletter/mails/de/newsletter_conf.html
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
- Nachricht von {shop_name}
-
-
-
-
-
\ No newline at end of file
diff --git a/modules/blocknewsletter/mails/de/newsletter_verif.txt b/modules/blocknewsletter/mails/de/newsletter_verif.txt
deleted file mode 100644
index 6e59fd74c..000000000
--- a/modules/blocknewsletter/mails/de/newsletter_verif.txt
+++ /dev/null
@@ -1,6 +0,0 @@
-Hi,
-
-You've just subscribe to our newsletter, please confirm your request by clicking the link below:
-{verif_url}
-
-{shop_url} powered by PrestaShop™
\ No newline at end of file
diff --git a/modules/blocknewsletter/mails/de/newsletter_voucher.html b/modules/blocknewsletter/mails/de/newsletter_voucher.html
deleted file mode 100644
index c634c7ef3..000000000
--- a/modules/blocknewsletter/mails/de/newsletter_voucher.html
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
-
- Nachricht von {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hallo,
-
-
-
-
-
-
Newsletter-Anmeldung
-
-
-
-
-
-
Sie haben unseren Newsletter abonniert, wir freuen uns, Ihnen den folgenden Gutschein zu schenken: {discount}
-
-
\ No newline at end of file
diff --git a/modules/blocknewsletter/mails/fr/newsletter_verif.txt b/modules/blocknewsletter/mails/fr/newsletter_verif.txt
deleted file mode 100644
index 24b76eeff..000000000
--- a/modules/blocknewsletter/mails/fr/newsletter_verif.txt
+++ /dev/null
@@ -1,6 +0,0 @@
-Bonjour,
-
-Vous avez fait une demande d'inscription à notre newsletter, pour confirmer cette demande veuillez cliquer sur le lien ci-dessous :
-{verif_url}
-
-{shop_url} réalisé avec PrestaShop™
\ No newline at end of file
diff --git a/modules/blocknewsletter/mails/fr/newsletter_voucher.html b/modules/blocknewsletter/mails/fr/newsletter_voucher.html
deleted file mode 100644
index 50a65dbf9..000000000
--- a/modules/blocknewsletter/mails/fr/newsletter_voucher.html
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
-
- Message de {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Bonjour,
-
-
-
-
-
-
Inscription à la newsletter
-
-
-
-
-
-
Suite à votre inscription à notre newsletter, nous avons le plaisir de vous offrir le bon de réduction suivant : {discount}
-
-
\ No newline at end of file
diff --git a/modules/blockwishlist/mails/de/wishlink.txt b/modules/blockwishlist/mails/de/wishlink.txt
deleted file mode 100644
index 6d4e5dff1..000000000
--- a/modules/blockwishlist/mails/de/wishlink.txt
+++ /dev/null
@@ -1,7 +0,0 @@
-Hallo,
-
-{shop_name} bietet Ihnen an, diesen Link an Ihre Freunde zu senden, damit diese Ihre Wunschliste sehen können {wishlist} :
-
-{message}
-
-{shop_url} realisiert mit PrestaShop™
diff --git a/modules/blockwishlist/mails/de/wishlist.html b/modules/blockwishlist/mails/de/wishlist.html
deleted file mode 100644
index 8339faa48..000000000
--- a/modules/blockwishlist/mails/de/wishlist.html
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
-
- Nachricht von einem Kunden bei {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hallo,
-
-
-
-
-
-
Nachricht von {shop_name}
-
-
-
-
-
-
{firstname} {lastname} hat angegeben, dass Sie seine/ ihr Wunschliste sehen möchten {wishlist} :
-
diff --git a/modules/blockwishlist/mails/es/wishlink.txt b/modules/blockwishlist/mails/es/wishlink.txt
deleted file mode 100755
index a49b70fd3..000000000
--- a/modules/blockwishlist/mails/es/wishlink.txt
+++ /dev/null
@@ -1,7 +0,0 @@
-Hola,
-
-{shop_name} le invita a que envíe este enlace a sus amigos, de manera que ellos puedan ver su lista de deseos {wishlist}:
-
-{message}
-
-{shop_url} desarrollado por PrestaShop™
\ No newline at end of file
diff --git a/modules/blockwishlist/mails/es/wishlist.html b/modules/blockwishlist/mails/es/wishlist.html
deleted file mode 100644
index 8c76425ff..000000000
--- a/modules/blockwishlist/mails/es/wishlist.html
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
-
- Mensaje de un cliente de {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hola,
-
-
-
-
-
-
Mensaje de {shop_name}
-
-
-
-
-
-
{firstname} {lastname} le sugiere a ver su lista de deseos {wishlist}:
-
-
\ No newline at end of file
diff --git a/modules/blockwishlist/mails/fr/wishlink.txt b/modules/blockwishlist/mails/fr/wishlink.txt
deleted file mode 100644
index 523b6dad4..000000000
--- a/modules/blockwishlist/mails/fr/wishlink.txt
+++ /dev/null
@@ -1,7 +0,0 @@
-Bonjour,
-
-{shop_name} vous invite à envoyer ce lien à vos amis qui pourront alors consulter votre liste de cadeaux {wishlist} :
-
-{message}
-
-{shop_url} réalisé avec PrestaShop™
diff --git a/modules/blockwishlist/mails/fr/wishlist.html b/modules/blockwishlist/mails/fr/wishlist.html
deleted file mode 100644
index e908f2a62..000000000
--- a/modules/blockwishlist/mails/fr/wishlist.html
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
-
- Message d'un client de {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Bonjour,
-
-
-
-
-
-
Message de {shop_name}
-
-
-
-
-
-
{firstname} {lastname} vous invite à visiter sa liste de cadeaux {wishlist} :
-
-
-
\ No newline at end of file
diff --git a/modules/blockwishlist/mails/it/wishlink.txt b/modules/blockwishlist/mails/it/wishlink.txt
deleted file mode 100644
index f9bd8ee40..000000000
--- a/modules/blockwishlist/mails/it/wishlink.txt
+++ /dev/null
@@ -1,7 +0,0 @@
-Salve,
-
-{shop_name} ti invita a inviare questo link ai tuoi amici, così che possano vedere la tua lista dei desideri {wishlist} :
-
-{message}
-
-{shop_url} realised by PrestaShop™
diff --git a/modules/blockwishlist/mails/it/wishlist.html b/modules/blockwishlist/mails/it/wishlist.html
deleted file mode 100644
index cf0ade66a..000000000
--- a/modules/blockwishlist/mails/it/wishlist.html
+++ /dev/null
@@ -1,41 +0,0 @@
-
-
-
-
- Messaggio da un cliente di {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Salve,
-
-
-
-
-
-
Messaggio da {shop_name}
-
-
-
-
-
-
{firstname} {lastname} ha detto che potresto voler vedere la sua lista dei desideri {wishlist}:
-
-
-
\ No newline at end of file
diff --git a/modules/blockwishlist/mails/it/wishlist.txt b/modules/blockwishlist/mails/it/wishlist.txt
deleted file mode 100644
index a46f3ffa3..000000000
--- a/modules/blockwishlist/mails/it/wishlist.txt
+++ /dev/null
@@ -1,8 +0,0 @@
-Salve,
-
-{firstname} {lastname} ha detto che potresti voler vedere la sua lista dei desideri {wishlist} :
-{message}
-
-
-
-{shop_url} Powered by PrestaShop™
\ No newline at end of file
diff --git a/modules/blockwishlist/translations/de.php b/modules/blockwishlist/translations/de.php
deleted file mode 100644
index b4d6b2248..000000000
--- a/modules/blockwishlist/translations/de.php
+++ /dev/null
@@ -1,98 +0,0 @@
-blockwishlist-ajax_d037160cfb1fa5520563302d3a32630a'] = 'Sie müssen eine Wunschliste erstellen, bevor Sie Produkte hinzufügen';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_56ee3495a32081ccb6d2376eab391bfa'] = 'Listing';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_862af8838fba380d3b30e63546a394e5'] = 'hatte keine Wunschliste';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_88b589bbf6282a2e02f50ebe90aae6f1'] = 'Sie müssen eingeloggt sein, um Ihre Wunschlisten zu verwalten';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_f2a6c498fb90ee345d997f888fce3b18'] = 'Löschen';
-$_MODULE['<{blockwishlist}prestashop>buywishlistproduct_b0ffc4925401f6f4edb038f5ca954937'] = 'Sie müssen sich einloggen';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_a9839ad48cf107667f73bad1d651f2ca'] = 'Keine Größe gefunden';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_4b7d496eedb665d0b5f589f2f874e7cb'] = 'Produkt-Detail';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_87f8a6ab85c9ced3702b4ea641ad4bb5'] = 'Mittel';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_19f823c6453c2b1ffd09cb715214813d'] = 'Pflichtfeld';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_deb10517653c255364175796ace3553f'] = 'Produkt';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_44749712dbec183e983dcd78a7736c41'] = 'Datum';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_607e1d854783c8229998ac2b5b6923d3'] = 'Token ungültig';
-$_MODULE['<{blockwishlist}prestashop>sendwishlist_8f4be21ec3cfbba15a349e9c5e888579'] = 'Token ungültig';
-$_MODULE['<{blockwishlist}prestashop>view_3d01e7d8174b6a9b088b44870714cf07'] = 'Willkommen zur Wunschliste von';
-$_MODULE['<{blockwishlist}prestashop>view_4b7d496eedb665d0b5f589f2f874e7cb'] = 'Produkt-Detail';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_7ec9cceb94985909c6994e95c31c1aa8'] = 'Meine Wunschlisten';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_49ee3087348e8d44e1feda1917443987'] = 'Name';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_0eceeb45861f9585dd7a97a3e36f85c6'] = 'Erstellt';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_45284ef16392f85ff424b2ef36ab5948'] = 'Direkter Link';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_4351cfebe4b61d8aa5efa1d020710005'] = 'Anzeigen';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_0b3db27bc15f682e92ff250ebb167d4b'] = 'Zurück zu Ihrem Konto';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist-ajax_f2a6c498fb90ee345d997f888fce3b18'] = 'Löschen';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist-extra_15b94c64c4d5a4f7172e5347a36b94fd'] = 'Zu meiner Wunschliste hinzufügen';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_2715a65604e1af3d6933b61704865daf'] = 'Wunschlistenblock';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_deb10517653c255364175796ace3553f'] = 'Produkt';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_694e8d1f2ee056f98ee488bdc4982d73'] = 'Menge';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_641254d77e7a473aa5910574f3f9453c'] = 'Wunschliste';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_7ec9cceb94985909c6994e95c31c1aa8'] = 'Meine Wunschlisten';
-$_MODULE['<{blockwishlist}prestashop>buywishlistproduct_607e1d854783c8229998ac2b5b6923d3'] = 'Token ungültig';
-$_MODULE['<{blockwishlist}prestashop>cart_16a23698e7cf5188ce1c07df74298076'] = 'Sie müssen eingeloggt sein, um Ihre Wunschlisten zu verwalten';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_65a26fd603de62416ed333c7a8928713'] = 'Schliessen Diese Wunschliste absenden';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_0ac1aeb2429db494dd42ad2dc219ca7e'] = 'Produkte verstecken';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_6fe88f5681da397d46fefe19b3020a6a'] = 'Informationen über gekaufte Produkte anzeigen';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_28d0edd045e05cf5af64e35ae0c4c6ef'] = 'Niedrig';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_c9cc8cce247e49bae79f15173ce97354'] = 'Speichern';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_3384622e86410fd01fa318fedc6a98ce'] = 'Angeboten von';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_7098d49878bbd102b13038a748125e27'] = 'kann diese Wunschliste nicht löschen';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_a9839ad48cf107667f73bad1d651f2ca'] = 'Keine Größe gefunden';
-$_MODULE['<{blockwishlist}prestashop>view_7cff73659ca47fea5d29644da84f35e2'] = 'Token der Whitelist ungültig';
-$_MODULE['<{blockwishlist}prestashop>view_4351cfebe4b61d8aa5efa1d020710005'] = 'Anzeigen';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_06c335f27f292a096a9bf39e3a58e97b'] = 'Neue Wunschlisten';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_03ab340b3f99e03cff9e84314ead38c0'] = 'Anz';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_d025259319054206be54336a00defe89'] = 'Wollen Sie diese Wunschliste wirklich löschen?';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_7244141a5de030c4c882556f4fd70a8b'] = 'Fügt einen Block hinzu mit der Kundenwunschliste';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_c888438d14855d7d96a2724ee9c306bd'] = 'Einstellungen aktualisiert';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_e6d0e1c8fc6a4fcf47869df87e04cd88'] = 'Kunden';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_e0fd9b310aba555f96e76738ff192ac3'] = 'Wunschlisten';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_502996d9790340c5fd7b86a5b93b1c9f'] = 'Priorität';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_28d0edd045e05cf5af64e35ae0c4c6ef'] = 'Niedrig';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_4a84e5921e203aede886d04fc41a414b'] = 'Dieses Produkt von meiner Wunschliste nehmen';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_4b7d496eedb665d0b5f589f2f874e7cb'] = 'Produkt-Detail';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_09dc02ecbb078868a3a86dded030076d'] = 'Keine Produkte';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_30820a1bf6a285e45cda2beda3d7738d'] = 'Diese Wunschliste absenden';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_f2a6c498fb90ee345d997f888fce3b18'] = 'Löschen';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_502996d9790340c5fd7b86a5b93b1c9f'] = 'Priorität';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'E-Mail';
-$_MODULE['<{blockwishlist}prestashop>my-account_7ec9cceb94985909c6994e95c31c1aa8'] = 'Meine Wunschlisten';
-$_MODULE['<{blockwishlist}prestashop>view_a9839ad48cf107667f73bad1d651f2ca'] = 'Keine Größe gefunden';
-$_MODULE['<{blockwishlist}prestashop>view_641254d77e7a473aa5910574f3f9453c'] = 'Wunschliste';
-$_MODULE['<{blockwishlist}prestashop>view_9862d189193590487b2686b1c9043714'] = 'Andere Wunschlisten von';
-$_MODULE['<{blockwishlist}prestashop>view_3d0d1f906e27800531e054a3b6787b7c'] = 'Menge:';
-$_MODULE['<{blockwishlist}prestashop>view_655d20c1ca69519ca647684edbb2db35'] = 'Hoch';
-$_MODULE['<{blockwishlist}prestashop>view_28d0edd045e05cf5af64e35ae0c4c6ef'] = 'Niedrig';
-$_MODULE['<{blockwishlist}prestashop>view_09dc02ecbb078868a3a86dded030076d'] = 'Keine Produkte';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'Mein Konto';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_c9cc8cce247e49bae79f15173ce97354'] = 'Speichern';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_5e729042e30967c9d6f65c6eab73e2fe'] = 'Gesehen';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist-ajax_4a84e5921e203aede886d04fc41a414b'] = 'Dieses Produkt von meiner Wunschliste nehmen';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist-ajax_4b7d496eedb665d0b5f589f2f874e7cb'] = 'Produkt-Detail';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist-ajax_09dc02ecbb078868a3a86dded030076d'] = 'Keine Produkte';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_9ae79c1fccd231ac7fbbf3235dbf6326'] = 'Meine Wunschliste';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_5ef2d617096ae7b47a83f3d4de9c84bd'] = 'Modul Aktivieren: Ungültige Auswahl.';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_655d20c1ca69519ca647684edbb2db35'] = 'Hoch';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_87f8a6ab85c9ced3702b4ea641ad4bb5'] = 'Mittel';
-$_MODULE['<{blockwishlist}prestashop>cart_607e1d854783c8229998ac2b5b6923d3'] = 'Token ungültig';
-$_MODULE['<{blockwishlist}prestashop>cart_a9839ad48cf107667f73bad1d651f2ca'] = 'Keine Größe gefunden';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_0de9d09a36e820f9da7e87ab3678dd12'] = 'Produkte anzeigen';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_0bb3e067c0514f5ff2d5a8e45fc0f4be'] = 'Informationen über gekaufte Produkte verstecken';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_694e8d1f2ee056f98ee488bdc4982d73'] = 'Menge';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_655d20c1ca69519ca647684edbb2db35'] = 'Hoch';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_94966d90747b97d1f0f206c98a8b1ac3'] = 'Senden';
-$_MODULE['<{blockwishlist}prestashop>my-account_723edf7c24638ed18d2fa831e647a5cc'] = 'Wunschliste';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_b30545c7b2d429352b9afdd85be810c7'] = 'Sie müssen einen Namen bestimmen';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_b74c118d823d908d653cfbf1c877ae55'] = 'Dieser Name wird bereits von einer anderen Liste verwendet';
-$_MODULE['<{blockwishlist}prestashop>sendwishlist_90d8a44a1fba13198035d86caeeb2d4d'] = 'Ungültiger Wunschzettel';
-$_MODULE['<{blockwishlist}prestashop>sendwishlist_072df51ea0cb142b770d6209dab5a85b'] = 'Fehler beim Versenden des Wunschzettel';
-$_MODULE['<{blockwishlist}prestashop>view_05f32f85cccc8308d09a81e7bad3f80e'] = 'Priorität:';
-$_MODULE['<{blockwishlist}prestashop>view_87f8a6ab85c9ced3702b4ea641ad4bb5'] = 'Mittel';
-$_MODULE['<{blockwishlist}prestashop>view_2d0f6b8300be19cf35e89e66f0677f95'] = 'In den Warenkorb';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_f2a6c498fb90ee345d997f888fce3b18'] = 'Löschen';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_8cf04a9734132302f96da8e113e80ce5'] = 'Startseite';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_09dc02ecbb078868a3a86dded030076d'] = 'Keine Produkte';
diff --git a/modules/blockwishlist/translations/en.php b/modules/blockwishlist/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/blockwishlist/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-blockwishlist-ajax_d037160cfb1fa5520563302d3a32630a'] = 'Debe crear su wishlist antes de añadir productos';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_56ee3495a32081ccb6d2376eab391bfa'] = 'Listado';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_862af8838fba380d3b30e63546a394e5'] = 'no hay lista de regalos';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_88b589bbf6282a2e02f50ebe90aae6f1'] = 'Necesita acceder a su cuenta para administrar su lista de deseos.';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_f2a6c498fb90ee345d997f888fce3b18'] = 'Eliminar';
-$_MODULE['<{blockwishlist}prestashop>buywishlistproduct_b0ffc4925401f6f4edb038f5ca954937'] = 'Debe identificarse';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_a9839ad48cf107667f73bad1d651f2ca'] = 'No hay ninguna plantilla';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_4b7d496eedb665d0b5f589f2f874e7cb'] = 'Detalle producto';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_87f8a6ab85c9ced3702b4ea641ad4bb5'] = 'Media';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_19f823c6453c2b1ffd09cb715214813d'] = 'Campo requerido';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_deb10517653c255364175796ace3553f'] = 'Producto';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_44749712dbec183e983dcd78a7736c41'] = 'Fecha';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_607e1d854783c8229998ac2b5b6923d3'] = 'ficha no válida';
-$_MODULE['<{blockwishlist}prestashop>sendwishlist_8f4be21ec3cfbba15a349e9c5e888579'] = 'ficha no válida';
-$_MODULE['<{blockwishlist}prestashop>view_3d01e7d8174b6a9b088b44870714cf07'] = 'Bienvenido a la lista de regalos';
-$_MODULE['<{blockwishlist}prestashop>view_4b7d496eedb665d0b5f589f2f874e7cb'] = 'Detalle producto';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_7ec9cceb94985909c6994e95c31c1aa8'] = 'Mi lista de regalo';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_49ee3087348e8d44e1feda1917443987'] = 'Nombre';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_0eceeb45861f9585dd7a97a3e36f85c6'] = 'Creado';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_45284ef16392f85ff424b2ef36ab5948'] = 'Enlace directo';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_4351cfebe4b61d8aa5efa1d020710005'] = 'Vista';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_0b3db27bc15f682e92ff250ebb167d4b'] = 'Volver a su cuenta';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist-ajax_f2a6c498fb90ee345d997f888fce3b18'] = 'Eliminar';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist-extra_15b94c64c4d5a4f7172e5347a36b94fd'] = 'Añadir a mi wishlist';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_2715a65604e1af3d6933b61704865daf'] = 'Bloque de wishlist';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_deb10517653c255364175796ace3553f'] = 'Producto';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_694e8d1f2ee056f98ee488bdc4982d73'] = 'Cantidad';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_641254d77e7a473aa5910574f3f9453c'] = 'Lista de regalo';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_7ec9cceb94985909c6994e95c31c1aa8'] = 'Mi lista de regalo';
-$_MODULE['<{blockwishlist}prestashop>buywishlistproduct_607e1d854783c8229998ac2b5b6923d3'] = 'ficha no válida';
-$_MODULE['<{blockwishlist}prestashop>cart_16a23698e7cf5188ce1c07df74298076'] = 'Debe identificarse para administrar su lista de deseos.';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_65a26fd603de62416ed333c7a8928713'] = 'Cerrar en envío de la lista';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_0ac1aeb2429db494dd42ad2dc219ca7e'] = 'Ocultar productos';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_6fe88f5681da397d46fefe19b3020a6a'] = 'Mostrar la información sobre los productos comprados';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_28d0edd045e05cf5af64e35ae0c4c6ef'] = 'Baja';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_c9cc8cce247e49bae79f15173ce97354'] = 'Guardar';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_3384622e86410fd01fa318fedc6a98ce'] = 'regalo de';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_7098d49878bbd102b13038a748125e27'] = 'Imposible suprimir esta lista de deseos';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_a9839ad48cf107667f73bad1d651f2ca'] = 'No hay ninguna plantilla';
-$_MODULE['<{blockwishlist}prestashop>view_7cff73659ca47fea5d29644da84f35e2'] = 'Ficha de lista de deseos no válida';
-$_MODULE['<{blockwishlist}prestashop>view_4351cfebe4b61d8aa5efa1d020710005'] = 'Vista';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_06c335f27f292a096a9bf39e3a58e97b'] = 'Nueva lista de regalo';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_03ab340b3f99e03cff9e84314ead38c0'] = 'Cant.';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_d025259319054206be54336a00defe89'] = '¿Desea realamente eliminar esta lista?';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_7244141a5de030c4c882556f4fd70a8b'] = 'Añadir un bloque que contenga la wishlist de los clientes';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_c888438d14855d7d96a2724ee9c306bd'] = 'Actualización realizada con éxito';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_e6d0e1c8fc6a4fcf47869df87e04cd88'] = 'Clientes';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_e0fd9b310aba555f96e76738ff192ac3'] = 'Wishlist';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_502996d9790340c5fd7b86a5b93b1c9f'] = 'Prioridad';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_28d0edd045e05cf5af64e35ae0c4c6ef'] = 'Baja';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_4a84e5921e203aede886d04fc41a414b'] = 'retirar este producto de mi lista';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_4b7d496eedb665d0b5f589f2f874e7cb'] = 'Detalle producto';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_09dc02ecbb078868a3a86dded030076d'] = 'No hay productos';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_30820a1bf6a285e45cda2beda3d7738d'] = 'Enviar esta lista';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_f2a6c498fb90ee345d997f888fce3b18'] = 'Eliminar';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_502996d9790340c5fd7b86a5b93b1c9f'] = 'Prioridad';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'Email';
-$_MODULE['<{blockwishlist}prestashop>my-account_7ec9cceb94985909c6994e95c31c1aa8'] = 'Mi lista de regalo';
-$_MODULE['<{blockwishlist}prestashop>view_a9839ad48cf107667f73bad1d651f2ca'] = 'No hay ninguna plantilla';
-$_MODULE['<{blockwishlist}prestashop>view_641254d77e7a473aa5910574f3f9453c'] = 'Lista de regalo';
-$_MODULE['<{blockwishlist}prestashop>view_9862d189193590487b2686b1c9043714'] = 'Otras listas de regalo';
-$_MODULE['<{blockwishlist}prestashop>view_3d0d1f906e27800531e054a3b6787b7c'] = 'Cantidad';
-$_MODULE['<{blockwishlist}prestashop>view_655d20c1ca69519ca647684edbb2db35'] = 'Alta';
-$_MODULE['<{blockwishlist}prestashop>view_28d0edd045e05cf5af64e35ae0c4c6ef'] = 'Baja';
-$_MODULE['<{blockwishlist}prestashop>view_09dc02ecbb078868a3a86dded030076d'] = 'No hay productos';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'Mi cuenta';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_c9cc8cce247e49bae79f15173ce97354'] = 'Guardar';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_5e729042e30967c9d6f65c6eab73e2fe'] = 'Vistos';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist-ajax_4a84e5921e203aede886d04fc41a414b'] = 'retirar este producto de mi lista';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist-ajax_4b7d496eedb665d0b5f589f2f874e7cb'] = 'Detalle producto';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist-ajax_09dc02ecbb078868a3a86dded030076d'] = 'No hay productos';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_9ae79c1fccd231ac7fbbf3235dbf6326'] = 'Mi wishlist';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_5ef2d617096ae7b47a83f3d4de9c84bd'] = 'Módulo activado: opción no válida';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_655d20c1ca69519ca647684edbb2db35'] = 'Alta';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_87f8a6ab85c9ced3702b4ea641ad4bb5'] = 'Media';
-$_MODULE['<{blockwishlist}prestashop>cart_607e1d854783c8229998ac2b5b6923d3'] = 'ficha no válida';
-$_MODULE['<{blockwishlist}prestashop>cart_a9839ad48cf107667f73bad1d651f2ca'] = 'No hay ninguna plantilla';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_0de9d09a36e820f9da7e87ab3678dd12'] = 'Mostrar productos';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_0bb3e067c0514f5ff2d5a8e45fc0f4be'] = 'Ocultar la información sobre los productos comprados';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_694e8d1f2ee056f98ee488bdc4982d73'] = 'Cantidad';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_655d20c1ca69519ca647684edbb2db35'] = 'Alta';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_94966d90747b97d1f0f206c98a8b1ac3'] = 'Enviar';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_09dc02ecbb078868a3a86dded030076d'] = 'No hay productos';
-$_MODULE['<{blockwishlist}prestashop>my-account_723edf7c24638ed18d2fa831e647a5cc'] = 'lista de regalos';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_b30545c7b2d429352b9afdd85be810c7'] = 'debe especificar un nombre';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_b74c118d823d908d653cfbf1c877ae55'] = 'esta nombre ya está utilizado por otra lista';
-$_MODULE['<{blockwishlist}prestashop>sendwishlist_90d8a44a1fba13198035d86caeeb2d4d'] = 'Lista de deseos no válida';
-$_MODULE['<{blockwishlist}prestashop>sendwishlist_072df51ea0cb142b770d6209dab5a85b'] = 'Error en el envío de lista de deseos';
-$_MODULE['<{blockwishlist}prestashop>view_05f32f85cccc8308d09a81e7bad3f80e'] = 'Prioridad';
-$_MODULE['<{blockwishlist}prestashop>view_87f8a6ab85c9ced3702b4ea641ad4bb5'] = 'Media';
-$_MODULE['<{blockwishlist}prestashop>view_2d0f6b8300be19cf35e89e66f0677f95'] = 'Añadir al carrito';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_f2a6c498fb90ee345d997f888fce3b18'] = 'Eliminar';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_8cf04a9734132302f96da8e113e80ce5'] = 'Inicio';
diff --git a/modules/blockwishlist/translations/fr.php b/modules/blockwishlist/translations/fr.php
deleted file mode 100644
index 9d241e5dc..000000000
--- a/modules/blockwishlist/translations/fr.php
+++ /dev/null
@@ -1,98 +0,0 @@
-managewishlist_19f823c6453c2b1ffd09cb715214813d'] = 'Champ requis';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_deb10517653c255364175796ace3553f'] = 'Produit';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_44749712dbec183e983dcd78a7736c41'] = 'Date';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_607e1d854783c8229998ac2b5b6923d3'] = 'Jeton non valable';
-$_MODULE['<{blockwishlist}prestashop>sendwishlist_8f4be21ec3cfbba15a349e9c5e888579'] = 'Jeton non valable';
-$_MODULE['<{blockwishlist}prestashop>view_3d01e7d8174b6a9b088b44870714cf07'] = 'Bienvenue sur la liste de ';
-$_MODULE['<{blockwishlist}prestashop>view_4b7d496eedb665d0b5f589f2f874e7cb'] = 'Détail produit';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_7ec9cceb94985909c6994e95c31c1aa8'] = 'Mes listes';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_49ee3087348e8d44e1feda1917443987'] = 'Nom';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_0eceeb45861f9585dd7a97a3e36f85c6'] = 'Créée';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_45284ef16392f85ff424b2ef36ab5948'] = 'Lien direct';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_4351cfebe4b61d8aa5efa1d020710005'] = 'Voir';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_0b3db27bc15f682e92ff250ebb167d4b'] = 'Retour à votre compte';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist-ajax_d037160cfb1fa5520563302d3a32630a'] = 'Vous devez créer une liste avant d\'ajouter un produit';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_56ee3495a32081ccb6d2376eab391bfa'] = 'Liste';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_862af8838fba380d3b30e63546a394e5'] = 'n\'a pas de liste cadeaux.';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_88b589bbf6282a2e02f50ebe90aae6f1'] = 'Vous devez être connecté pour gérer vos liste de cadeaux.';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_f2a6c498fb90ee345d997f888fce3b18'] = 'Supprimer';
-$_MODULE['<{blockwishlist}prestashop>buywishlistproduct_b0ffc4925401f6f4edb038f5ca954937'] = 'Vous devez vous connecter';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_a9839ad48cf107667f73bad1d651f2ca'] = 'Aucun template trouvé';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_4b7d496eedb665d0b5f589f2f874e7cb'] = 'Détails produit';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_87f8a6ab85c9ced3702b4ea641ad4bb5'] = 'Moyenne';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_28d0edd045e05cf5af64e35ae0c4c6ef'] = 'Basse';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_c9cc8cce247e49bae79f15173ce97354'] = 'Enregistrer';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_3384622e86410fd01fa318fedc6a98ce'] = 'Offert par';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_7098d49878bbd102b13038a748125e27'] = 'Impossible de supprimer cette liste de cadeaux.';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_a9839ad48cf107667f73bad1d651f2ca'] = 'Aucun template trouvé';
-$_MODULE['<{blockwishlist}prestashop>view_7cff73659ca47fea5d29644da84f35e2'] = 'Jeton non valable';
-$_MODULE['<{blockwishlist}prestashop>view_4351cfebe4b61d8aa5efa1d020710005'] = 'Voir';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_06c335f27f292a096a9bf39e3a58e97b'] = 'Nouvelle liste';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_03ab340b3f99e03cff9e84314ead38c0'] = 'Qté';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_d025259319054206be54336a00defe89'] = 'Souhaitez-vous réellement supprimer cette liste ?';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist-ajax_f2a6c498fb90ee345d997f888fce3b18'] = 'Supprimer';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist-extra_15b94c64c4d5a4f7172e5347a36b94fd'] = 'Ajouter à ma liste';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_2715a65604e1af3d6933b61704865daf'] = 'Bloc liste de cadeaux';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_deb10517653c255364175796ace3553f'] = 'Produit';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_694e8d1f2ee056f98ee488bdc4982d73'] = 'Quantité';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_641254d77e7a473aa5910574f3f9453c'] = 'Liste de cadeaux';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_7ec9cceb94985909c6994e95c31c1aa8'] = 'Mes listes';
-$_MODULE['<{blockwishlist}prestashop>buywishlistproduct_607e1d854783c8229998ac2b5b6923d3'] = 'Jeton non valable';
-$_MODULE['<{blockwishlist}prestashop>cart_16a23698e7cf5188ce1c07df74298076'] = 'Vous devez être connecté pour gérer votre liste de cadeaux';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_65a26fd603de62416ed333c7a8928713'] = 'Fermer';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_0ac1aeb2429db494dd42ad2dc219ca7e'] = 'Cacher les produits';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_6fe88f5681da397d46fefe19b3020a6a'] = 'Afficher les informations des produits achetés';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_28d0edd045e05cf5af64e35ae0c4c6ef'] = 'Basse';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'E-mail';
-$_MODULE['<{blockwishlist}prestashop>my-account_7ec9cceb94985909c6994e95c31c1aa8'] = 'Mes listes de cadeaux';
-$_MODULE['<{blockwishlist}prestashop>view_a9839ad48cf107667f73bad1d651f2ca'] = 'Aucun template trouvé';
-$_MODULE['<{blockwishlist}prestashop>view_641254d77e7a473aa5910574f3f9453c'] = 'Liste de cadeaux';
-$_MODULE['<{blockwishlist}prestashop>view_9862d189193590487b2686b1c9043714'] = 'Autres listes de';
-$_MODULE['<{blockwishlist}prestashop>view_3d0d1f906e27800531e054a3b6787b7c'] = 'Quantité :';
-$_MODULE['<{blockwishlist}prestashop>view_655d20c1ca69519ca647684edbb2db35'] = 'Haute';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_c9cc8cce247e49bae79f15173ce97354'] = 'Enregistrer';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_5e729042e30967c9d6f65c6eab73e2fe'] = 'Vues';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_c888438d14855d7d96a2724ee9c306bd'] = 'Paramètres mis à jour';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_e6d0e1c8fc6a4fcf47869df87e04cd88'] = 'Clients';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_e0fd9b310aba555f96e76738ff192ac3'] = 'Listes de cadeaux';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_4a84e5921e203aede886d04fc41a414b'] = 'enlever ce produit de ma liste';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_4b7d496eedb665d0b5f589f2f874e7cb'] = 'Détails produit';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_09dc02ecbb078868a3a86dded030076d'] = 'Aucun produit';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_30820a1bf6a285e45cda2beda3d7738d'] = 'Envoyer cette liste';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_f2a6c498fb90ee345d997f888fce3b18'] = 'Supprimer';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_502996d9790340c5fd7b86a5b93b1c9f'] = 'Priorité';
-$_MODULE['<{blockwishlist}prestashop>view_28d0edd045e05cf5af64e35ae0c4c6ef'] = 'Basse';
-$_MODULE['<{blockwishlist}prestashop>view_09dc02ecbb078868a3a86dded030076d'] = 'Aucun produit';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'Mon compte';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_7244141a5de030c4c882556f4fd70a8b'] = 'Ajoute un bloc gérant les listes de cadeaux';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_502996d9790340c5fd7b86a5b93b1c9f'] = 'Priorité';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist-ajax_4b7d496eedb665d0b5f589f2f874e7cb'] = 'Détails du produit';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_0de9d09a36e820f9da7e87ab3678dd12'] = 'Afficher les produits';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_94966d90747b97d1f0f206c98a8b1ac3'] = 'Envoyer';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_09dc02ecbb078868a3a86dded030076d'] = 'Aucun produit';
-$_MODULE['<{blockwishlist}prestashop>my-account_723edf7c24638ed18d2fa831e647a5cc'] = 'liste cadeaux';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_b74c118d823d908d653cfbf1c877ae55'] = 'Ce nom est déjà utilisé pour une autre liste.';
-$_MODULE['<{blockwishlist}prestashop>sendwishlist_90d8a44a1fba13198035d86caeeb2d4d'] = 'Liste de cadeaux invalide';
-$_MODULE['<{blockwishlist}prestashop>sendwishlist_072df51ea0cb142b770d6209dab5a85b'] = 'Erreur d\'envoi de liste de cadeaux';
-$_MODULE['<{blockwishlist}prestashop>view_05f32f85cccc8308d09a81e7bad3f80e'] = 'Priorité :';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_f2a6c498fb90ee345d997f888fce3b18'] = 'Supprimer';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_8cf04a9734132302f96da8e113e80ce5'] = 'Accueil';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist-ajax_4a84e5921e203aede886d04fc41a414b'] = 'Supprimer ce produit de ma liste';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist-ajax_09dc02ecbb078868a3a86dded030076d'] = 'Aucun produit';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_9ae79c1fccd231ac7fbbf3235dbf6326'] = 'Ma liste de cadeaux';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_5ef2d617096ae7b47a83f3d4de9c84bd'] = 'Activation du module : choix non valable';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_655d20c1ca69519ca647684edbb2db35'] = 'Haute';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_87f8a6ab85c9ced3702b4ea641ad4bb5'] = 'Moyenne';
-$_MODULE['<{blockwishlist}prestashop>cart_607e1d854783c8229998ac2b5b6923d3'] = 'Jeton non valable';
-$_MODULE['<{blockwishlist}prestashop>cart_a9839ad48cf107667f73bad1d651f2ca'] = 'Aucun template trouvé';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_0bb3e067c0514f5ff2d5a8e45fc0f4be'] = 'Cacher les informations des produits achetés';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_694e8d1f2ee056f98ee488bdc4982d73'] = 'Quantité';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_655d20c1ca69519ca647684edbb2db35'] = 'Haute';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_b30545c7b2d429352b9afdd85be810c7'] = 'Vous devez spécifier un nom.';
-$_MODULE['<{blockwishlist}prestashop>view_87f8a6ab85c9ced3702b4ea641ad4bb5'] = 'Moyenne';
-$_MODULE['<{blockwishlist}prestashop>view_2d0f6b8300be19cf35e89e66f0677f95'] = 'Ajouter au panier';
diff --git a/modules/blockwishlist/translations/it.php b/modules/blockwishlist/translations/it.php
deleted file mode 100644
index eab15babf..000000000
--- a/modules/blockwishlist/translations/it.php
+++ /dev/null
@@ -1,98 +0,0 @@
-blockwishlist-ajax_d037160cfb1fa5520563302d3a32630a'] = 'È necessario creare una wishlist prima di aggiungere i prodotti';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_56ee3495a32081ccb6d2376eab391bfa'] = 'Elenco';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_862af8838fba380d3b30e63546a394e5'] = 'non ha avuto lista dei desideri';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_88b589bbf6282a2e02f50ebe90aae6f1'] = 'Devi essere registrato per gestire la tua lista dei desideri';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_f2a6c498fb90ee345d997f888fce3b18'] = 'Elimina';
-$_MODULE['<{blockwishlist}prestashop>buywishlistproduct_b0ffc4925401f6f4edb038f5ca954937'] = 'Devi identificarti';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_a9839ad48cf107667f73bad1d651f2ca'] = 'Nessun modello trovato';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_4b7d496eedb665d0b5f589f2f874e7cb'] = 'Descrizione del prodotto';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_87f8a6ab85c9ced3702b4ea641ad4bb5'] = 'Media';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_19f823c6453c2b1ffd09cb715214813d'] = 'Campi obbligatori';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_deb10517653c255364175796ace3553f'] = 'Prodotto';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_44749712dbec183e983dcd78a7736c41'] = 'Data';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_607e1d854783c8229998ac2b5b6923d3'] = 'token non valido';
-$_MODULE['<{blockwishlist}prestashop>sendwishlist_8f4be21ec3cfbba15a349e9c5e888579'] = 'token non valido';
-$_MODULE['<{blockwishlist}prestashop>view_3d01e7d8174b6a9b088b44870714cf07'] = 'Benvenuti nella lista dei desideri di';
-$_MODULE['<{blockwishlist}prestashop>view_4b7d496eedb665d0b5f589f2f874e7cb'] = 'Descrizione del prodotto';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_7ec9cceb94985909c6994e95c31c1aa8'] = 'Le mie liste dei desideri';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_49ee3087348e8d44e1feda1917443987'] = 'Nome';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_0eceeb45861f9585dd7a97a3e36f85c6'] = 'Creato';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_45284ef16392f85ff424b2ef36ab5948'] = 'Link diretto';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_4351cfebe4b61d8aa5efa1d020710005'] = 'Visualizza';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_0b3db27bc15f682e92ff250ebb167d4b'] = 'Torna al tuo account';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist-ajax_f2a6c498fb90ee345d997f888fce3b18'] = 'Elimina';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist-extra_15b94c64c4d5a4f7172e5347a36b94fd'] = 'Aggiungi alla mia lista dei desideri';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_2715a65604e1af3d6933b61704865daf'] = 'Blocco lista dei desideri';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_deb10517653c255364175796ace3553f'] = 'Prodotto';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_694e8d1f2ee056f98ee488bdc4982d73'] = 'Quantità';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_641254d77e7a473aa5910574f3f9453c'] = 'Lista dei Desideri';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_7ec9cceb94985909c6994e95c31c1aa8'] = 'Le mie liste dei desideri';
-$_MODULE['<{blockwishlist}prestashop>buywishlistproduct_607e1d854783c8229998ac2b5b6923d3'] = 'token non valido';
-$_MODULE['<{blockwishlist}prestashop>cart_16a23698e7cf5188ce1c07df74298076'] = 'Devi essere identificato per gestire la tua lista desideri';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_65a26fd603de62416ed333c7a8928713'] = 'Chiudi \\"invia questa lista dei desideri\\"';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_0ac1aeb2429db494dd42ad2dc219ca7e'] = 'Nascondi i prodotti';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_6fe88f5681da397d46fefe19b3020a6a'] = 'Mostra info prodotto acquistato';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_28d0edd045e05cf5af64e35ae0c4c6ef'] = 'Bassa';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_c9cc8cce247e49bae79f15173ce97354'] = 'Salva';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_3384622e86410fd01fa318fedc6a98ce'] = 'Offerto da';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_7098d49878bbd102b13038a748125e27'] = 'impossibile cancellare questa wishlist';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_a9839ad48cf107667f73bad1d651f2ca'] = 'Nessun modello trovato';
-$_MODULE['<{blockwishlist}prestashop>view_7cff73659ca47fea5d29644da84f35e2'] = 'Token di lista di desideri non valido';
-$_MODULE['<{blockwishlist}prestashop>view_4351cfebe4b61d8aa5efa1d020710005'] = 'Visualizza';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_06c335f27f292a096a9bf39e3a58e97b'] = 'Nuova lista dei desideri';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_03ab340b3f99e03cff9e84314ead38c0'] = 'Qtà';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_d025259319054206be54336a00defe89'] = 'Sei sicuro di voler cancellare questa lista dei desideri?';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_7244141a5de030c4c882556f4fd70a8b'] = 'Aggiunge un blocco contenente lista dei desideri del cliente';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_c888438d14855d7d96a2724ee9c306bd'] = 'Impostazioni aggiornate';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_e6d0e1c8fc6a4fcf47869df87e04cd88'] = 'Clienti';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_e0fd9b310aba555f96e76738ff192ac3'] = 'Liste dei desideri';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_502996d9790340c5fd7b86a5b93b1c9f'] = 'Priorità';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_28d0edd045e05cf5af64e35ae0c4c6ef'] = 'Bassa';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_4a84e5921e203aede886d04fc41a414b'] = 'Rimuovi questo prodotto dalla mia lista dei desideri';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_4b7d496eedb665d0b5f589f2f874e7cb'] = 'Descrizione del prodotto';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_30820a1bf6a285e45cda2beda3d7738d'] = 'Invia questa lista dei desideri';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_f2a6c498fb90ee345d997f888fce3b18'] = 'Elimina';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_502996d9790340c5fd7b86a5b93b1c9f'] = 'Priorità';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'E-mail';
-$_MODULE['<{blockwishlist}prestashop>my-account_7ec9cceb94985909c6994e95c31c1aa8'] = 'Le mie liste di desideri';
-$_MODULE['<{blockwishlist}prestashop>view_a9839ad48cf107667f73bad1d651f2ca'] = 'Nessun modello trovato';
-$_MODULE['<{blockwishlist}prestashop>view_641254d77e7a473aa5910574f3f9453c'] = 'Lista dei desideri';
-$_MODULE['<{blockwishlist}prestashop>view_9862d189193590487b2686b1c9043714'] = 'Altre liste dei desideri di';
-$_MODULE['<{blockwishlist}prestashop>view_3d0d1f906e27800531e054a3b6787b7c'] = 'Quantità:';
-$_MODULE['<{blockwishlist}prestashop>view_655d20c1ca69519ca647684edbb2db35'] = 'Alta';
-$_MODULE['<{blockwishlist}prestashop>view_28d0edd045e05cf5af64e35ae0c4c6ef'] = 'Bassa';
-$_MODULE['<{blockwishlist}prestashop>view_09dc02ecbb078868a3a86dded030076d'] = 'Nessun prodotto';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'Il mio account';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_c9cc8cce247e49bae79f15173ce97354'] = 'Salva';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_5e729042e30967c9d6f65c6eab73e2fe'] = 'Visto';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_09dc02ecbb078868a3a86dded030076d'] = 'Nessun prodotto';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist-ajax_4a84e5921e203aede886d04fc41a414b'] = 'rimuovi questo prodotto dalla mia lista dei desideri';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist-ajax_4b7d496eedb665d0b5f589f2f874e7cb'] = 'Descrizione del prodotto';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist-ajax_09dc02ecbb078868a3a86dded030076d'] = 'Nessun prodotto';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_9ae79c1fccd231ac7fbbf3235dbf6326'] = 'La mia lista dei desideri';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_5ef2d617096ae7b47a83f3d4de9c84bd'] = 'Attiva il modulo: scelta non valida.';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_655d20c1ca69519ca647684edbb2db35'] = 'Alta';
-$_MODULE['<{blockwishlist}prestashop>blockwishlist_87f8a6ab85c9ced3702b4ea641ad4bb5'] = 'Media';
-$_MODULE['<{blockwishlist}prestashop>cart_607e1d854783c8229998ac2b5b6923d3'] = 'token non valido';
-$_MODULE['<{blockwishlist}prestashop>cart_a9839ad48cf107667f73bad1d651f2ca'] = 'Nessun modello trovato';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_0de9d09a36e820f9da7e87ab3678dd12'] = 'Mostra prodotti';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_0bb3e067c0514f5ff2d5a8e45fc0f4be'] = 'Nascondi info prodotto acquistato';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_655d20c1ca69519ca647684edbb2db35'] = 'Alta';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_94966d90747b97d1f0f206c98a8b1ac3'] = 'Invia';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_09dc02ecbb078868a3a86dded030076d'] = 'Nessun prodotto';
-$_MODULE['<{blockwishlist}prestashop>my-account_723edf7c24638ed18d2fa831e647a5cc'] = 'lista dei desideri';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_b30545c7b2d429352b9afdd85be810c7'] = 'Devi specificare un nome';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_b74c118d823d908d653cfbf1c877ae55'] = 'questo nome è già utilizzato da un\'altra lista';
-$_MODULE['<{blockwishlist}prestashop>sendwishlist_90d8a44a1fba13198035d86caeeb2d4d'] = 'Lista dei desideri non valida';
-$_MODULE['<{blockwishlist}prestashop>sendwishlist_072df51ea0cb142b770d6209dab5a85b'] = 'Errore invio lista desideri';
-$_MODULE['<{blockwishlist}prestashop>view_05f32f85cccc8308d09a81e7bad3f80e'] = 'Priorità:';
-$_MODULE['<{blockwishlist}prestashop>view_87f8a6ab85c9ced3702b4ea641ad4bb5'] = 'Media';
-$_MODULE['<{blockwishlist}prestashop>view_2d0f6b8300be19cf35e89e66f0677f95'] = 'Aggiungi al carrello';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_f2a6c498fb90ee345d997f888fce3b18'] = 'Elimina';
-$_MODULE['<{blockwishlist}prestashop>mywishlist_8cf04a9734132302f96da8e113e80ce5'] = 'Home';
-$_MODULE['<{blockwishlist}prestashop>managewishlist_694e8d1f2ee056f98ee488bdc4982d73'] = 'Quantità';
diff --git a/modules/carriercompare/translations/de.php b/modules/carriercompare/translations/de.php
deleted file mode 100644
index 28ed1c90d..000000000
--- a/modules/carriercompare/translations/de.php
+++ /dev/null
@@ -1,35 +0,0 @@
-carriercompare_369f88ec14d06a2166f5fcd4e7c919f1'] = 'Module zum Träger Möglichkeiten, bevor Sie die Kaufabwicklung vergleichen';
-$_MODULE['<{carriercompare}prestashop>carriercompare_59716c97497eb9694541f7c3d37b1a4d'] = 'Land';
-$_MODULE['<{carriercompare}prestashop>carriercompare_5e178542b85fb18ca3c459e9a95f4f2e'] = 'PLZ';
-$_MODULE['<{carriercompare}prestashop>carriercompare_653e78154f5596fc293bf9db65110bbd'] = 'Liste der Transportunternehmen wird aktualisiert';
-$_MODULE['<{carriercompare}prestashop>configuration_a2d3779b2b18f09740a46050388e08f0'] = 'Bei der Formular-Validierung ist ein Fehler aufgetreten';
-$_MODULE['<{carriercompare}prestashop>configuration_20015706a8cbd457cbb6ea3e7d5dc9b3'] = 'Konfiguration aktualisiert';
-$_MODULE['<{carriercompare}prestashop>configuration_4c1f76824b0d7333652d5f64a3e07ef5'] = 'Jederzeit';
-$_MODULE['<{carriercompare}prestashop>carriercompare_c65b3289df9c2c54a493dcd271d24df0'] = 'Versandkalkulation';
-$_MODULE['<{carriercompare}prestashop>carriercompare_fb9e838d470b2c27c2c128d127165f9e'] = 'Bitte wählen Sie ein Land';
-$_MODULE['<{carriercompare}prestashop>carriercompare_f19b63c54e29865988908a07fd566480'] = 'Warenkorb kann nicht aktualisiert werden';
-$_MODULE['<{carriercompare}prestashop>carriercompare_e7a6ca4e744870d455a57b644f696457'] = 'Gratis!';
-$_MODULE['<{carriercompare}prestashop>carriercompare_9207f4078f515ecc8256bae33fa1f497'] = 'Erforderlich für bestimmte Träger';
-$_MODULE['<{carriercompare}prestashop>carriercompare_a82be0f551b8708bc08eb33cd9ded0cf'] = 'Information';
-$_MODULE['<{carriercompare}prestashop>carriercompare_568ee69520d3299f2f0ea64d501b6f50'] = 'Kein Versender für diese Region ausgewählt';
-$_MODULE['<{carriercompare}prestashop>carriercompare_63a6a88c066880c5ac42394a22803ca6'] = 'Auffrischen';
-$_MODULE['<{carriercompare}prestashop>configuration_99e09df7d3344d2d04153f297163affa'] = 'Das Modul ist nur bei 5 Schritte Bestellung einsetzbar. Bei OPC ist der Lieferant bereits verfügbar.';
-$_MODULE['<{carriercompare}prestashop>carriercompare_1566d7b28dafe92a3beaef0c7be84288'] = 'Ungültige Bundesland-ID';
-$_MODULE['<{carriercompare}prestashop>carriercompare_7346db5da590c9226acab07187d813c3'] = 'Bitte verwenden Sie eine gültige Postleitzahl / PLZ je nach Land Auswahl';
-$_MODULE['<{carriercompare}prestashop>carriercompare_533bf2149f935df1f934e5ee55f68d20'] = 'Versand und Steuern kalkulieren';
-$_MODULE['<{carriercompare}prestashop>carriercompare_3601146c4e948c32b6424d2c0a7f0118'] = 'Preis';
-$_MODULE['<{carriercompare}prestashop>configuration_31efb362f3723b55bfa28f3551a672f7'] = 'Alle erforderlichen Informationen festgesetzt';
-$_MODULE['<{carriercompare}prestashop>configuration_a4d3b161ce1309df1c4e25df28694b7b'] = 'Abschicken';
-$_MODULE['<{carriercompare}prestashop>carriercompare_1de0f9fcbe30b056483fe964aed55adc'] = 'Warenkorb wird aktualisiert';
-$_MODULE['<{carriercompare}prestashop>carriercompare_ff22c3e7b4cd12813e2033774d987e96'] = 'Bitte wählen Sie ein Bundesland';
-$_MODULE['<{carriercompare}prestashop>carriercompare_3f63451bbacbb1c3303d99d0309fdfe9'] = 'Bitte wählen Sie einen Träger';
-$_MODULE['<{carriercompare}prestashop>carriercompare_b3cdf90f7e9ade805f2adbe34975240f'] = 'Dieser Lieferant steht für diesen Bereich nicht zur Verfüung';
-$_MODULE['<{carriercompare}prestashop>carriercompare_46a2a41cc6e552044816a2d04634545d'] = 'Staat';
-$_MODULE['<{carriercompare}prestashop>carriercompare_914419aa32f04011357d3b604a86d7eb'] = 'Versender';
-$_MODULE['<{carriercompare}prestashop>configuration_6408d076fa6417e7bc8ddc3cdf9a0644'] = 'Globale Konfiguration';
-$_MODULE['<{carriercompare}prestashop>configuration_9c7cc22fb61d22cf2560f172ea85ab7b'] = 'Legen Sie die Art der Informationsaktualisierung für Ihre Kunden fest';
diff --git a/modules/carriercompare/translations/en.php b/modules/carriercompare/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/carriercompare/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-carriercompare_369f88ec14d06a2166f5fcd4e7c919f1'] = 'Módulo que permite hacer una estimación de los gastos de envío antes de comenzar el proceso de compra.';
-$_MODULE['<{carriercompare}prestashop>carriercompare_59716c97497eb9694541f7c3d37b1a4d'] = 'País';
-$_MODULE['<{carriercompare}prestashop>carriercompare_5e178542b85fb18ca3c459e9a95f4f2e'] = 'Código postal';
-$_MODULE['<{carriercompare}prestashop>carriercompare_653e78154f5596fc293bf9db65110bbd'] = 'Actualizar lista de proveedores';
-$_MODULE['<{carriercompare}prestashop>configuration_a2d3779b2b18f09740a46050388e08f0'] = 'Ha ocurrido un error durante la validación de formularios';
-$_MODULE['<{carriercompare}prestashop>configuration_20015706a8cbd457cbb6ea3e7d5dc9b3'] = 'Configuración actualizada';
-$_MODULE['<{carriercompare}prestashop>configuration_4c1f76824b0d7333652d5f64a3e07ef5'] = 'En cualquier momento';
-$_MODULE['<{carriercompare}prestashop>carriercompare_b49f15ff6f8530a76ed954676abbc4d6'] = 'Comprobando estados (provincias) disponibles...';
-$_MODULE['<{carriercompare}prestashop>carriercompare_c65b3289df9c2c54a493dcd271d24df0'] = 'Estimación de la entrega';
-$_MODULE['<{carriercompare}prestashop>carriercompare_fb9e838d470b2c27c2c128d127165f9e'] = 'Por favor seleccione un Pais';
-$_MODULE['<{carriercompare}prestashop>carriercompare_f19b63c54e29865988908a07fd566480'] = 'Imposible actualizar el carrito';
-$_MODULE['<{carriercompare}prestashop>carriercompare_e7a6ca4e744870d455a57b644f696457'] = '¡Gratis!';
-$_MODULE['<{carriercompare}prestashop>carriercompare_9207f4078f515ecc8256bae33fa1f497'] = 'Necesario para algunos transportistas';
-$_MODULE['<{carriercompare}prestashop>carriercompare_a82be0f551b8708bc08eb33cd9ded0cf'] = 'Información';
-$_MODULE['<{carriercompare}prestashop>carriercompare_568ee69520d3299f2f0ea64d501b6f50'] = 'Ninguna compañía está disponible para esta selección';
-$_MODULE['<{carriercompare}prestashop>carriercompare_63a6a88c066880c5ac42394a22803ca6'] = 'refrescar';
-$_MODULE['<{carriercompare}prestashop>configuration_99e09df7d3344d2d04153f297163affa'] = 'Este modulo es disponible sólo en un proceso básico de pedido porque en la \\"One Page Checkout\\" la lista ya esta disponible';
-$_MODULE['<{carriercompare}prestashop>carriercompare_2833e625c13a70c7b84ad98c97976c9d'] = 'Actualizando la pçagina y el carrito...';
-$_MODULE['<{carriercompare}prestashop>carriercompare_1566d7b28dafe92a3beaef0c7be84288'] = 'El identificante State no es válido';
-$_MODULE['<{carriercompare}prestashop>carriercompare_7346db5da590c9226acab07187d813c3'] = 'Por favor, utilice un código postal válido en función del país elegido';
-$_MODULE['<{carriercompare}prestashop>carriercompare_533bf2149f935df1f934e5ee55f68d20'] = 'Haga una estimación de sus gastos de envío e impuestos';
-$_MODULE['<{carriercompare}prestashop>carriercompare_3601146c4e948c32b6424d2c0a7f0118'] = 'Precio';
-$_MODULE['<{carriercompare}prestashop>carriercompare_1de0f9fcbe30b056483fe964aed55adc'] = 'Actualización de la compra';
-$_MODULE['<{carriercompare}prestashop>configuration_31efb362f3723b55bfa28f3551a672f7'] = 'Se requiere todo el conjunto de información';
-$_MODULE['<{carriercompare}prestashop>configuration_a4d3b161ce1309df1c4e25df28694b7b'] = 'Enviar';
-$_MODULE['<{carriercompare}prestashop>carriercompare_ff22c3e7b4cd12813e2033774d987e96'] = 'Por favor seleccione un estado';
-$_MODULE['<{carriercompare}prestashop>carriercompare_3f63451bbacbb1c3303d99d0309fdfe9'] = 'Por favor seleccione un transportista';
-$_MODULE['<{carriercompare}prestashop>carriercompare_b3cdf90f7e9ade805f2adbe34975240f'] = 'Este identificante de transportista no se encuentra disponible para esta selección';
-$_MODULE['<{carriercompare}prestashop>carriercompare_46a2a41cc6e552044816a2d04634545d'] = 'Estados';
-$_MODULE['<{carriercompare}prestashop>carriercompare_914419aa32f04011357d3b604a86d7eb'] = 'Transportista';
-$_MODULE['<{carriercompare}prestashop>configuration_6408d076fa6417e7bc8ddc3cdf9a0644'] = 'Configuración global';
-$_MODULE['<{carriercompare}prestashop>configuration_9c7cc22fb61d22cf2560f172ea85ab7b'] = 'Establecer el modo para volver a cargar la información de un cliente';
-$_MODULE['<{carriercompare}prestashop>carriercompare_ed22df3e47c667a95dd43e59f2f38522'] = 'Recuperando la información...';
diff --git a/modules/carriercompare/translations/fr.php b/modules/carriercompare/translations/fr.php
deleted file mode 100644
index c5103d656..000000000
--- a/modules/carriercompare/translations/fr.php
+++ /dev/null
@@ -1,38 +0,0 @@
-carriercompare_b49f15ff6f8530a76ed954676abbc4d6'] = 'Vérification des états disponibles...';
-$_MODULE['<{carriercompare}prestashop>carriercompare_59716c97497eb9694541f7c3d37b1a4d'] = 'Pays';
-$_MODULE['<{carriercompare}prestashop>carriercompare_5e178542b85fb18ca3c459e9a95f4f2e'] = 'Code postal';
-$_MODULE['<{carriercompare}prestashop>carriercompare_653e78154f5596fc293bf9db65110bbd'] = 'Mettre à jour la liste des transporteurs';
-$_MODULE['<{carriercompare}prestashop>configuration_a2d3779b2b18f09740a46050388e08f0'] = 'Une erreur est survenue lors de la validation du formulaire';
-$_MODULE['<{carriercompare}prestashop>configuration_20015706a8cbd457cbb6ea3e7d5dc9b3'] = 'Configuration mise à jour';
-$_MODULE['<{carriercompare}prestashop>configuration_4c1f76824b0d7333652d5f64a3e07ef5'] = 'N\'importe quand';
-$_MODULE['<{carriercompare}prestashop>carriercompare_369f88ec14d06a2166f5fcd4e7c919f1'] = 'Module permettant de faire une estimation des coûts de livraison avant d\'entrer dans le processus de commande';
-$_MODULE['<{carriercompare}prestashop>carriercompare_2833e625c13a70c7b84ad98c97976c9d'] = 'Rechargement de la page et mise à jour du panier...';
-$_MODULE['<{carriercompare}prestashop>carriercompare_c65b3289df9c2c54a493dcd271d24df0'] = 'Estimation des livraisons';
-$_MODULE['<{carriercompare}prestashop>carriercompare_fb9e838d470b2c27c2c128d127165f9e'] = 'Choississez un pays';
-$_MODULE['<{carriercompare}prestashop>carriercompare_f19b63c54e29865988908a07fd566480'] = 'Impossible de mettre à jour le panier';
-$_MODULE['<{carriercompare}prestashop>carriercompare_e7a6ca4e744870d455a57b644f696457'] = 'Offert !';
-$_MODULE['<{carriercompare}prestashop>carriercompare_9207f4078f515ecc8256bae33fa1f497'] = 'Nécessaires pour certains transporteurs';
-$_MODULE['<{carriercompare}prestashop>carriercompare_a82be0f551b8708bc08eb33cd9ded0cf'] = 'Information';
-$_MODULE['<{carriercompare}prestashop>carriercompare_63a6a88c066880c5ac42394a22803ca6'] = 'Rafraîchir';
-$_MODULE['<{carriercompare}prestashop>configuration_99e09df7d3344d2d04153f297163affa'] = 'Ce module est disponible uniquement sur les processus de commande standard, car sur le One Page Checkout la liste des transporteurs est déjà disponible.';
-$_MODULE['<{carriercompare}prestashop>carriercompare_568ee69520d3299f2f0ea64d501b6f50'] = 'Aucun transporteur n\'est disponible pour cette sélection';
-$_MODULE['<{carriercompare}prestashop>carriercompare_3601146c4e948c32b6424d2c0a7f0118'] = 'Prix';
-$_MODULE['<{carriercompare}prestashop>carriercompare_1566d7b28dafe92a3beaef0c7be84288'] = 'identifiant d\'état non valable';
-$_MODULE['<{carriercompare}prestashop>carriercompare_7346db5da590c9226acab07187d813c3'] = 'Veuillez utiliser un code postal valable en fonction du pays choisi';
-$_MODULE['<{carriercompare}prestashop>carriercompare_533bf2149f935df1f934e5ee55f68d20'] = 'Estimez vos frais de livraison & taxes';
-$_MODULE['<{carriercompare}prestashop>carriercompare_1de0f9fcbe30b056483fe964aed55adc'] = 'Mettre à jour le panier';
-$_MODULE['<{carriercompare}prestashop>configuration_31efb362f3723b55bfa28f3551a672f7'] = 'Quand toutes les informations sont complètes';
-$_MODULE['<{carriercompare}prestashop>configuration_a4d3b161ce1309df1c4e25df28694b7b'] = 'Valider';
-$_MODULE['<{carriercompare}prestashop>carriercompare_ed22df3e47c667a95dd43e59f2f38522'] = 'Récupération des informations...';
-$_MODULE['<{carriercompare}prestashop>carriercompare_ff22c3e7b4cd12813e2033774d987e96'] = 'Choissisez un état';
-$_MODULE['<{carriercompare}prestashop>carriercompare_3f63451bbacbb1c3303d99d0309fdfe9'] = 'Veuillez choisir un transporteur';
-$_MODULE['<{carriercompare}prestashop>carriercompare_b3cdf90f7e9ade805f2adbe34975240f'] = 'Cet identifiant de transporteur n\'est pas disponible pour votre sélection';
-$_MODULE['<{carriercompare}prestashop>carriercompare_46a2a41cc6e552044816a2d04634545d'] = 'État';
-$_MODULE['<{carriercompare}prestashop>carriercompare_914419aa32f04011357d3b604a86d7eb'] = 'Transporteur';
-$_MODULE['<{carriercompare}prestashop>configuration_6408d076fa6417e7bc8ddc3cdf9a0644'] = 'Configuration globale';
-$_MODULE['<{carriercompare}prestashop>configuration_9c7cc22fb61d22cf2560f172ea85ab7b'] = 'Défini la manière dont l\'information présentée à l\'utilisateur doit être rafraîchie';
diff --git a/modules/carriercompare/translations/it.php b/modules/carriercompare/translations/it.php
deleted file mode 100644
index 8ab4d0983..000000000
--- a/modules/carriercompare/translations/it.php
+++ /dev/null
@@ -1,35 +0,0 @@
-carriercompare_369f88ec14d06a2166f5fcd4e7c919f1'] = 'Modulo per confrontare le possibilità vettore prima di utilizzare il processo di checkout';
-$_MODULE['<{carriercompare}prestashop>carriercompare_59716c97497eb9694541f7c3d37b1a4d'] = 'Nazione';
-$_MODULE['<{carriercompare}prestashop>carriercompare_5e178542b85fb18ca3c459e9a95f4f2e'] = 'CAP';
-$_MODULE['<{carriercompare}prestashop>carriercompare_653e78154f5596fc293bf9db65110bbd'] = 'Aggiorna lista corrieri';
-$_MODULE['<{carriercompare}prestashop>configuration_a2d3779b2b18f09740a46050388e08f0'] = 'Si è verificato un errore durante la validazione del form';
-$_MODULE['<{carriercompare}prestashop>configuration_20015706a8cbd457cbb6ea3e7d5dc9b3'] = 'Configurazioni aggiornate';
-$_MODULE['<{carriercompare}prestashop>configuration_4c1f76824b0d7333652d5f64a3e07ef5'] = 'in qualsiasi momento';
-$_MODULE['<{carriercompare}prestashop>carriercompare_c65b3289df9c2c54a493dcd271d24df0'] = 'Stima di spedizione';
-$_MODULE['<{carriercompare}prestashop>carriercompare_fb9e838d470b2c27c2c128d127165f9e'] = 'Seleziona un paese';
-$_MODULE['<{carriercompare}prestashop>carriercompare_f19b63c54e29865988908a07fd566480'] = 'Impossibile aggiornare il carrello';
-$_MODULE['<{carriercompare}prestashop>carriercompare_e7a6ca4e744870d455a57b644f696457'] = 'Gratis!';
-$_MODULE['<{carriercompare}prestashop>carriercompare_9207f4078f515ecc8256bae33fa1f497'] = 'Necessario per alcuni vettori';
-$_MODULE['<{carriercompare}prestashop>carriercompare_a82be0f551b8708bc08eb33cd9ded0cf'] = 'Informazioni';
-$_MODULE['<{carriercompare}prestashop>carriercompare_568ee69520d3299f2f0ea64d501b6f50'] = 'Nessun vettore è disponibile per questa selezione';
-$_MODULE['<{carriercompare}prestashop>carriercompare_63a6a88c066880c5ac42394a22803ca6'] = 'Rinfrescare';
-$_MODULE['<{carriercompare}prestashop>configuration_99e09df7d3344d2d04153f297163affa'] = 'Questo modulo è solo disponibile per il trattamento standard dei ordini, perché la lista dei trasportatori è già disponibile nel \\"Pagamento in Una Pagina\\"';
-$_MODULE['<{carriercompare}prestashop>carriercompare_1566d7b28dafe92a3beaef0c7be84288'] = 'ID provincia non valido';
-$_MODULE['<{carriercompare}prestashop>carriercompare_7346db5da590c9226acab07187d813c3'] = 'Si prega di utilizzare un valido zip / codice postale a seconda della selezione del paese';
-$_MODULE['<{carriercompare}prestashop>carriercompare_533bf2149f935df1f934e5ee55f68d20'] = 'Stimare la spedizione e tasse';
-$_MODULE['<{carriercompare}prestashop>carriercompare_3601146c4e948c32b6424d2c0a7f0118'] = 'Prezzo';
-$_MODULE['<{carriercompare}prestashop>carriercompare_1de0f9fcbe30b056483fe964aed55adc'] = 'Aggiorna carrello';
-$_MODULE['<{carriercompare}prestashop>configuration_31efb362f3723b55bfa28f3551a672f7'] = 'Richiedere tutte le informazioni impostate';
-$_MODULE['<{carriercompare}prestashop>configuration_a4d3b161ce1309df1c4e25df28694b7b'] = 'Inviare';
-$_MODULE['<{carriercompare}prestashop>carriercompare_ff22c3e7b4cd12813e2033774d987e96'] = 'Si prega di selezionare uno stato';
-$_MODULE['<{carriercompare}prestashop>carriercompare_3f63451bbacbb1c3303d99d0309fdfe9'] = 'Si prega di selezionare un vettore';
-$_MODULE['<{carriercompare}prestashop>carriercompare_b3cdf90f7e9ade805f2adbe34975240f'] = 'Questo ID del corriere non è disponibile per la tua selezione';
-$_MODULE['<{carriercompare}prestashop>carriercompare_46a2a41cc6e552044816a2d04634545d'] = 'Provincia';
-$_MODULE['<{carriercompare}prestashop>carriercompare_914419aa32f04011357d3b604a86d7eb'] = 'Corriere';
-$_MODULE['<{carriercompare}prestashop>configuration_6408d076fa6417e7bc8ddc3cdf9a0644'] = 'Configurazioni globali';
-$_MODULE['<{carriercompare}prestashop>configuration_9c7cc22fb61d22cf2560f172ea85ab7b'] = 'Impostare il modo per aggiornare le impostazioni per il cliente';
diff --git a/modules/cashondelivery/translations/de.php b/modules/cashondelivery/translations/de.php
deleted file mode 100644
index 335d0ac7a..000000000
--- a/modules/cashondelivery/translations/de.php
+++ /dev/null
@@ -1,24 +0,0 @@
-validation_8861c5d3fa54b330d1f60ba50fcc4aab'] = 'Sie haben die Nachnahme-Methode gewählt.';
-$_MODULE['<{cashondelivery}prestashop>validation_e2867a925cba382f1436d1834bb52a1c'] = 'Der Gesamtbetrag Ihrer Bestellung beträgt';
-$_MODULE['<{cashondelivery}prestashop>confirmation_2e2117b7c81aa9ea6931641ea2c6499f'] = 'Ihre Bestellung von';
-$_MODULE['<{cashondelivery}prestashop>confirmation_75fbf512d744977d62599cc3f0ae2bb4'] = 'ist abgeschlossen.';
-$_MODULE['<{cashondelivery}prestashop>confirmation_64430ad2835be8ad60c59e7d44e4b0b1'] = 'Kunden-Support';
-$_MODULE['<{cashondelivery}prestashop>payment_536dc7424180872c8c2488ae0286fb53'] = 'Sie bezahlen die Ware bei der Lieferung';
-$_MODULE['<{cashondelivery}prestashop>cashondelivery_1f9497d3e8bac9b50151416f04119cec'] = 'Nachnahme (COD)';
-$_MODULE['<{cashondelivery}prestashop>validation_ea9cf7e47ff33b2be14e6dd07cbcefc6'] = 'Versand';
-$_MODULE['<{cashondelivery}prestashop>validation_d538c5b86e9a71455ba27412f4e9ab51'] = 'Nachnahme-Zahlung (COD)';
-$_MODULE['<{cashondelivery}prestashop>confirmation_8861c5d3fa54b330d1f60ba50fcc4aab'] = 'Sie haben die Nachnahme-Methode gewählt.';
-$_MODULE['<{cashondelivery}prestashop>validation_0881a11f7af33bc1b43e437391129d66'] = 'Bitte bestätigen Sie Ihre Bestellung durch Klicken auf BESTELLEN\\"\\"';
-$_MODULE['<{cashondelivery}prestashop>validation_569fd05bdafa1712c4f6be5b153b8418'] = 'Andere Zahlungsmethoden';
-$_MODULE['<{cashondelivery}prestashop>confirmation_0db71da7150c27142eef9d22b843b4a9'] = 'Bei Fragen oder für weitere Informationen, kontaktieren Sie bitte unseren';
-$_MODULE['<{cashondelivery}prestashop>payment_b7ada96a0da7ee7fb5371cca0b036d5c'] = 'Zahlung per Nachnahme (COD)';
-$_MODULE['<{cashondelivery}prestashop>cashondelivery_7a3ef27eb0b1895ebf263ad7dd949fb6'] = 'Zahlungen per Nachnahme akzeptieren';
-$_MODULE['<{cashondelivery}prestashop>validation_0c25b529b4d690c39b0831840d0ed01c'] = 'Bestellsumme';
-$_MODULE['<{cashondelivery}prestashop>validation_1f87346a16cf80c372065de3c54c86d9'] = '(inkl. MwSt.)';
-$_MODULE['<{cashondelivery}prestashop>validation_46b9e3665f187c739c55983f757ccda0'] = 'BESTELLEN';
-$_MODULE['<{cashondelivery}prestashop>confirmation_e6dc7945b557a1cd949bea92dd58963e'] = 'Ihre Bestellung wird sehr bald versandt werden.';
diff --git a/modules/cashondelivery/translations/en.php b/modules/cashondelivery/translations/en.php
deleted file mode 100755
index 9839c82f9..000000000
--- a/modules/cashondelivery/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-validation_8861c5d3fa54b330d1f60ba50fcc4aab'] = 'Ha elegido el pago contra reembolso';
-$_MODULE['<{cashondelivery}prestashop>validation_e2867a925cba382f1436d1834bb52a1c'] = 'El importe total de su pedido es';
-$_MODULE['<{cashondelivery}prestashop>confirmation_2e2117b7c81aa9ea6931641ea2c6499f'] = 'Su pedido en';
-$_MODULE['<{cashondelivery}prestashop>confirmation_75fbf512d744977d62599cc3f0ae2bb4'] = 'ha sido registrado.';
-$_MODULE['<{cashondelivery}prestashop>confirmation_64430ad2835be8ad60c59e7d44e4b0b1'] = 'servicio clientela';
-$_MODULE['<{cashondelivery}prestashop>payment_536dc7424180872c8c2488ae0286fb53'] = 'Usted paga la mercancía a la entrega';
-$_MODULE['<{cashondelivery}prestashop>cashondelivery_1f9497d3e8bac9b50151416f04119cec'] = 'Pago contra reembolso';
-$_MODULE['<{cashondelivery}prestashop>validation_ea9cf7e47ff33b2be14e6dd07cbcefc6'] = 'transporte';
-$_MODULE['<{cashondelivery}prestashop>validation_d538c5b86e9a71455ba27412f4e9ab51'] = 'Pago contra reembolso';
-$_MODULE['<{cashondelivery}prestashop>confirmation_8861c5d3fa54b330d1f60ba50fcc4aab'] = 'Ha elegido pagar en el momento de la entrega.';
-$_MODULE['<{cashondelivery}prestashop>validation_0881a11f7af33bc1b43e437391129d66'] = 'Por favor acepte su pedido pulsando en \'confirmo mi pedido\'';
-$_MODULE['<{cashondelivery}prestashop>validation_569fd05bdafa1712c4f6be5b153b8418'] = 'Otros modos de pago';
-$_MODULE['<{cashondelivery}prestashop>confirmation_0db71da7150c27142eef9d22b843b4a9'] = 'Para cualquier pregunta, póngase en contacto con nuestro';
-$_MODULE['<{cashondelivery}prestashop>payment_b7ada96a0da7ee7fb5371cca0b036d5c'] = 'Pagra contra reembolso';
-$_MODULE['<{cashondelivery}prestashop>cashondelivery_7a3ef27eb0b1895ebf263ad7dd949fb6'] = 'Aceptar pagos contra reembolso';
-$_MODULE['<{cashondelivery}prestashop>validation_0c25b529b4d690c39b0831840d0ed01c'] = 'Suma del pedido';
-$_MODULE['<{cashondelivery}prestashop>validation_1f87346a16cf80c372065de3c54c86d9'] = '(tasas incluídas)';
-$_MODULE['<{cashondelivery}prestashop>validation_46b9e3665f187c739c55983f757ccda0'] = 'Confirmo mi pedido';
-$_MODULE['<{cashondelivery}prestashop>confirmation_e6dc7945b557a1cd949bea92dd58963e'] = 'Le enviaremos su pedido en breve plazo.';
diff --git a/modules/cashondelivery/translations/fr.php b/modules/cashondelivery/translations/fr.php
deleted file mode 100755
index 2037460a7..000000000
--- a/modules/cashondelivery/translations/fr.php
+++ /dev/null
@@ -1,24 +0,0 @@
-validation_8861c5d3fa54b330d1f60ba50fcc4aab'] = 'Vous avez choisi de régler comptant lors de la livraison de la commande.';
-$_MODULE['<{cashondelivery}prestashop>validation_e2867a925cba382f1436d1834bb52a1c'] = 'Le montant total de votre commande s\'élève à';
-$_MODULE['<{cashondelivery}prestashop>confirmation_2e2117b7c81aa9ea6931641ea2c6499f'] = 'Votre commande sur';
-$_MODULE['<{cashondelivery}prestashop>confirmation_75fbf512d744977d62599cc3f0ae2bb4'] = 'est bien enregistrée.';
-$_MODULE['<{cashondelivery}prestashop>confirmation_64430ad2835be8ad60c59e7d44e4b0b1'] = 'support client';
-$_MODULE['<{cashondelivery}prestashop>payment_536dc7424180872c8c2488ae0286fb53'] = 'Vous payez lors de la livraison de votre commande';
-$_MODULE['<{cashondelivery}prestashop>validation_d538c5b86e9a71455ba27412f4e9ab51'] = 'Paiement comptant à la livraison';
-$_MODULE['<{cashondelivery}prestashop>cashondelivery_1f9497d3e8bac9b50151416f04119cec'] = 'Comptant à la livraison';
-$_MODULE['<{cashondelivery}prestashop>validation_ea9cf7e47ff33b2be14e6dd07cbcefc6'] = 'Frais d\'expédition';
-$_MODULE['<{cashondelivery}prestashop>confirmation_8861c5d3fa54b330d1f60ba50fcc4aab'] = 'Vous avez choisi le paiement lors de la livraison.';
-$_MODULE['<{cashondelivery}prestashop>validation_0881a11f7af33bc1b43e437391129d66'] = 'Merci de confirmer votre commande en cliquant sur \\"Je confirme ma commande\\"';
-$_MODULE['<{cashondelivery}prestashop>validation_569fd05bdafa1712c4f6be5b153b8418'] = 'Autres moyens de paiement';
-$_MODULE['<{cashondelivery}prestashop>confirmation_0db71da7150c27142eef9d22b843b4a9'] = 'Pour toute question ou information complémentaire merci de contacter notre';
-$_MODULE['<{cashondelivery}prestashop>payment_b7ada96a0da7ee7fb5371cca0b036d5c'] = 'Payer comptant à la livraison';
-$_MODULE['<{cashondelivery}prestashop>cashondelivery_7a3ef27eb0b1895ebf263ad7dd949fb6'] = 'Accepte le paiement lors de la livraison';
-$_MODULE['<{cashondelivery}prestashop>validation_0c25b529b4d690c39b0831840d0ed01c'] = 'Récapitulatif de commande';
-$_MODULE['<{cashondelivery}prestashop>validation_1f87346a16cf80c372065de3c54c86d9'] = 'TTC';
-$_MODULE['<{cashondelivery}prestashop>validation_46b9e3665f187c739c55983f757ccda0'] = 'Je confirme ma commande';
-$_MODULE['<{cashondelivery}prestashop>confirmation_e6dc7945b557a1cd949bea92dd58963e'] = 'Votre commande vous sera envoyée très prochainement.';
diff --git a/modules/cashondelivery/translations/it.php b/modules/cashondelivery/translations/it.php
deleted file mode 100644
index f18817f39..000000000
--- a/modules/cashondelivery/translations/it.php
+++ /dev/null
@@ -1,24 +0,0 @@
-validation_8861c5d3fa54b330d1f60ba50fcc4aab'] = 'Hai scelto la modalità pagamento alla consegna.';
-$_MODULE['<{cashondelivery}prestashop>validation_e2867a925cba382f1436d1834bb52a1c'] = 'L\'importo totale del tuo ordine è';
-$_MODULE['<{cashondelivery}prestashop>confirmation_2e2117b7c81aa9ea6931641ea2c6499f'] = 'Il tuo ordine sul';
-$_MODULE['<{cashondelivery}prestashop>confirmation_75fbf512d744977d62599cc3f0ae2bb4'] = 'è completa.';
-$_MODULE['<{cashondelivery}prestashop>confirmation_64430ad2835be8ad60c59e7d44e4b0b1'] = 'assistenza clienti';
-$_MODULE['<{cashondelivery}prestashop>payment_536dc7424180872c8c2488ae0286fb53'] = 'Si paga per la merce al momento della consegna';
-$_MODULE['<{cashondelivery}prestashop>cashondelivery_1f9497d3e8bac9b50151416f04119cec'] = 'Pagamento alla consegna (COD)';
-$_MODULE['<{cashondelivery}prestashop>validation_ea9cf7e47ff33b2be14e6dd07cbcefc6'] = 'Spedizione';
-$_MODULE['<{cashondelivery}prestashop>validation_d538c5b86e9a71455ba27412f4e9ab51'] = 'Pagamento in contanti alla consegna (COD)';
-$_MODULE['<{cashondelivery}prestashop>confirmation_8861c5d3fa54b330d1f60ba50fcc4aab'] = 'Hai scelto la modalità di pagamento alla consegna.';
-$_MODULE['<{cashondelivery}prestashop>validation_0881a11f7af33bc1b43e437391129d66'] = 'Si prega di confermare l\'ordine cliccando su \'confermo il mio ordine\'';
-$_MODULE['<{cashondelivery}prestashop>validation_569fd05bdafa1712c4f6be5b153b8418'] = 'Altri metodi di pagamento';
-$_MODULE['<{cashondelivery}prestashop>confirmation_0db71da7150c27142eef9d22b843b4a9'] = 'Per eventuali domande o per ulteriori informazioni, contatta la nostra';
-$_MODULE['<{cashondelivery}prestashop>payment_b7ada96a0da7ee7fb5371cca0b036d5c'] = 'Paga in contanti alla consegna (COD)';
-$_MODULE['<{cashondelivery}prestashop>cashondelivery_7a3ef27eb0b1895ebf263ad7dd949fb6'] = 'Accetta pagamenti COD (alla consegna)';
-$_MODULE['<{cashondelivery}prestashop>validation_0c25b529b4d690c39b0831840d0ed01c'] = 'Riepilogo ordine';
-$_MODULE['<{cashondelivery}prestashop>validation_1f87346a16cf80c372065de3c54c86d9'] = '(Tasse incl.)';
-$_MODULE['<{cashondelivery}prestashop>validation_46b9e3665f187c739c55983f757ccda0'] = 'Confermo il mio ordine';
-$_MODULE['<{cashondelivery}prestashop>confirmation_e6dc7945b557a1cd949bea92dd58963e'] = 'Il tuo ordine verrà inviato al più presto.';
diff --git a/modules/cheque/translations/de.php b/modules/cheque/translations/de.php
deleted file mode 100644
index ae592da2d..000000000
--- a/modules/cheque/translations/de.php
+++ /dev/null
@@ -1,51 +0,0 @@
-cheque_10afbbb4dcb65d825785d196ffb294dd'] = '\'Zahlbar an\' und Adresse müssen konfiguriert werden, um dieses Modul richtig zu benutzen';
-$_MODULE['<{cheque}prestashop>cheque_c888438d14855d7d96a2724ee9c306bd'] = 'Einstellungen aktualisiert';
-$_MODULE['<{cheque}prestashop>cheque_14e41f4cfd99b10766cc15676d8cda66'] = 'Dieses Modul ermöglicht es Ihnen, Zahlungen per Scheck zu akzeptieren.';
-$_MODULE['<{cheque}prestashop>cheque_8c88bbf5712292b26e2a6bbeb0a7b5c4'] = 'Daher müssen Sie die Bestellung manuell bestätigen, sobald Sie einen Scheck erhalten.';
-$_MODULE['<{cheque}prestashop>cheque_5dd532f0a63d89c5af0243b74732f63c'] = 'Kontaktangaben';
-$_MODULE['<{cheque}prestashop>cheque_119100c9e7b17d9cfe7b1d6c64259a04'] = 'Bitte geben Sie den Namen und die Anschrift an, an die Kunden ihren Scheck schicken müssen';
-$_MODULE['<{cheque}prestashop>cheque_75475839e69bef6ed57a8200a5a71d37'] = 'Zahlbar an';
-$_MODULE['<{cheque}prestashop>cheque_b17f3f4dcf653a5776792498a9b44d6a'] = 'Einstellungen aktualisieren';
-$_MODULE['<{cheque}prestashop>payment_execution_060bf2d587991d8f090a1309b285291c'] = 'Scheck';
-$_MODULE['<{cheque}prestashop>payment_execution_76ca011e4772bfcce26aecd42c598510'] = 'Sie haben sich entschieden, per Scheck zu bezahlen.';
-$_MODULE['<{cheque}prestashop>payment_execution_0881a11f7af33bc1b43e437391129d66'] = 'Bitte bestätigen Sie Ihre Bestellung durch Klicken auf \\"KAUFEN\\"';
-$_MODULE['<{cheque}prestashop>payment_return_88526efe38fd18179a127024aba8c1d7'] = 'Ihre Bestellung auf %s ist abgeschlossen.';
-$_MODULE['<{cheque}prestashop>payment_return_9b8f932b1412d130ece5045ecafd1b42'] = 'zahlbar an';
-$_MODULE['<{cheque}prestashop>payment_return_610abe74e72f00210e3dcb91a0a3f717'] = 'Eine E-Mail wurde Ihnen mit diesen Informationen gesendet.';
-$_MODULE['<{cheque}prestashop>cheque_7b4cc4f79be9aae43efd53b4ae5cba4d'] = 'Scheck';
-$_MODULE['<{cheque}prestashop>cheque_94ce8bec7334b16916823f53ebe936d7'] = '\'Zahlbar an\'-Feld ist ein Pflichtfeld.';
-$_MODULE['<{cheque}prestashop>cheque_4b5e20a521d31cc44b9690bd35eaacfc'] = 'Adresse ist ein Pflichtfeld.';
-$_MODULE['<{cheque}prestashop>cheque_aa646de3f8d345490b22b72d4a505dcd'] = 'Wählt der Kunde diesen Zahlungsmodus, geht der Auftragsstatus in \\"Warten auf Zahlung\\" über.';
-$_MODULE['<{cheque}prestashop>payment_execution_8520b283b0884394b13b80d5689628b3'] = 'Scheckzahlung';
-$_MODULE['<{cheque}prestashop>payment_execution_c884ed19483d45970c5bf23a681e2dd2'] = 'Hier ist eine kurze Zusammenfassung Ihrer Bestellung:';
-$_MODULE['<{cheque}prestashop>payment_f05fd8637f8a6281466a507fcb56baec'] = 'Zahlung per Scheck';
-$_MODULE['<{cheque}prestashop>payment_return_61da27a5dd1f8ced46c77b0feaa9e159'] = 'Bitte senden Sie uns einen Scheck über:';
-$_MODULE['<{cheque}prestashop>cheque_e09484ba6c16bc20236b63cc0d87ee95'] = 'Sie sind sicher, dass Sie Ihre Daten löschen wollen?';
-$_MODULE['<{cheque}prestashop>cheque_e2d93539acef2afbbadf8542351fb2b4'] = 'Keine Währung für dieses Modul eingestellte';
-$_MODULE['<{cheque}prestashop>validation_e2b7dec8fa4b498156dfee6e4c84b156'] = 'Diese Zahlungsmodlität ist nich verfügbar.';
-$_MODULE['<{cheque}prestashop>payment_execution_879f6b8877752685a966564d072f498f'] = 'Ihr Warenkorb ist leer.';
-$_MODULE['<{cheque}prestashop>payment_execution_3b3b41f131194e747489ef93e778ed0d'] = 'Der Gesamtbetrag Ihrer Bestellung beträgt';
-$_MODULE['<{cheque}prestashop>payment_execution_a7a08622ee5c8019b57354b99b7693b2'] = 'Wählen Sie eine der folgenden Möglichkeiten:';
-$_MODULE['<{cheque}prestashop>payment_execution_7135ff14c7931e1c8e9d33aff3dfc7f7'] = 'Scheckinhaber und Adressinformationen werden auf der nächsten Seite angezeigt.';
-$_MODULE['<{cheque}prestashop>payment_execution_46b9e3665f187c739c55983f757ccda0'] = 'Ich bestätige meine Bestellung';
-$_MODULE['<{cheque}prestashop>payment_execution_569fd05bdafa1712c4f6be5b153b8418'] = 'Andere Zahlungsmethoden';
-$_MODULE['<{cheque}prestashop>payment_841728ede901f5134574c4656aba5464'] = 'Zahlung per Scheck (Bestellungvorgang dauert länger)';
-$_MODULE['<{cheque}prestashop>payment_return_9a94f1d749a3de5d299674d6c685e416'] = 'E-Mail an';
-$_MODULE['<{cheque}prestashop>payment_return_4761b03b53bc2b3bd948bb7443a26f31'] = 'Bitte vergessen Sie nicht Ihre Referenznummer %s mit anzugeben.';
-$_MODULE['<{cheque}prestashop>payment_return_ffd2478830ca2f519f7fe7ee259d4b96'] = 'Ihre Bestellung wird gesendet werden, sobald wir Ihre Zahlung erhalten.';
-$_MODULE['<{cheque}prestashop>cheque_14e41f4cfd99b10766cc15676d8cda66'] = 'Modul für die Annahme von Zahlungen per Scheck';
-$_MODULE['<{cheque}prestashop>cheque_dd7bf230fde8d4836917806aff6a6b27'] = 'Adresse';
-$_MODULE['<{cheque}prestashop>payment_execution_f1d3b424cd68795ecaa552883759aceb'] = 'Bestellsumme';
-$_MODULE['<{cheque}prestashop>payment_execution_1f87346a16cf80c372065de3c54c86d9'] = '(Inkl. Mwst.)';
-$_MODULE['<{cheque}prestashop>payment_execution_7b1c6e78d93817f61f2b1bbc2108a803'] = 'Wir akzeptieren mehrere Währungen bei Scheckzahlungen.';
-$_MODULE['<{cheque}prestashop>payment_execution_f73ad0f08052884ff465749bf48b55ce'] = 'Wir akzeptieren die folgende Währung per Scheck:';
-$_MODULE['<{cheque}prestashop>payment_return_543baa3e0ca83589be12aff8036b5fe6'] = 'folgenden Betrag';
-$_MODULE['<{cheque}prestashop>payment_return_0db71da7150c27142eef9d22b843b4a9'] = 'Bei Fragen oder für weitere Informationen, kontaktieren Sie bitte unseren';
-$_MODULE['<{cheque}prestashop>payment_return_decce112a9e64363c997b04aa71b7cb8'] = 'Kunden-Support';
-$_MODULE['<{cheque}prestashop>payment_return_9bdf695c5a30784327137011da6ef568'] = 'Wir haben bei Ihrer Bestellung ein Problem festgestellt. Wenn Sie denken, dies sei ein Fehler, können Sie an unseren';
-$_MODULE['<{cheque}prestashop>payment_return_e1c54fdba2544646684f41ace03b5fda'] = 'Bitte vergessen Sie nicht Ihre Bestellnummer #%d mit anzugeben.';
diff --git a/modules/cheque/translations/en.php b/modules/cheque/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/cheque/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-cheque_10afbbb4dcb65d825785d196ffb294dd'] = 'Debe indicar la orden y la dirección en el cheque';
-$_MODULE['<{cheque}prestashop>cheque_c888438d14855d7d96a2724ee9c306bd'] = 'Actualización realizada con éxito';
-$_MODULE['<{cheque}prestashop>cheque_14e41f4cfd99b10766cc15676d8cda66'] = 'Este módulo le permite aceptar pagos por cheque';
-$_MODULE['<{cheque}prestashop>cheque_8c88bbf5712292b26e2a6bbeb0a7b5c4'] = 'Por lo tanto, debe validar manualmente el pedido a la recepción del cheque';
-$_MODULE['<{cheque}prestashop>cheque_5dd532f0a63d89c5af0243b74732f63c'] = 'Detalles contacto';
-$_MODULE['<{cheque}prestashop>cheque_119100c9e7b17d9cfe7b1d6c64259a04'] = 'Por favor, especifique la orden del cheque y la dirección para sus clientes';
-$_MODULE['<{cheque}prestashop>cheque_75475839e69bef6ed57a8200a5a71d37'] = 'a la orden de';
-$_MODULE['<{cheque}prestashop>cheque_b17f3f4dcf653a5776792498a9b44d6a'] = 'Ajustes actualizados';
-$_MODULE['<{cheque}prestashop>payment_execution_060bf2d587991d8f090a1309b285291c'] = 'cheque';
-$_MODULE['<{cheque}prestashop>payment_execution_76ca011e4772bfcce26aecd42c598510'] = 'Ha elegido el pago por cheque.';
-$_MODULE['<{cheque}prestashop>payment_execution_0881a11f7af33bc1b43e437391129d66'] = 'Por favor, confirme su pedido pulsando en \\"Confirmo mi pedido\\"';
-$_MODULE['<{cheque}prestashop>payment_return_88526efe38fd18179a127024aba8c1d7'] = 'Su pedido %s está completo.';
-$_MODULE['<{cheque}prestashop>payment_return_9b8f932b1412d130ece5045ecafd1b42'] = 'a la orden de';
-$_MODULE['<{cheque}prestashop>payment_return_610abe74e72f00210e3dcb91a0a3f717'] = 'Le hemos enviado un email con los datos anteriores.';
-$_MODULE['<{cheque}prestashop>cheque_7b4cc4f79be9aae43efd53b4ae5cba4d'] = 'Cheque';
-$_MODULE['<{cheque}prestashop>cheque_94ce8bec7334b16916823f53ebe936d7'] = 'Se necesita la orden del cheque.';
-$_MODULE['<{cheque}prestashop>cheque_4b5e20a521d31cc44b9690bd35eaacfc'] = 'Se necesita la dirección del cheque.';
-$_MODULE['<{cheque}prestashop>cheque_aa646de3f8d345490b22b72d4a505dcd'] = 'Si el cliente elije este módulo de pago, el pedido pasará a estado \\"Pago en espera\\"';
-$_MODULE['<{cheque}prestashop>payment_execution_8520b283b0884394b13b80d5689628b3'] = 'Pago por cheque';
-$_MODULE['<{cheque}prestashop>payment_execution_c884ed19483d45970c5bf23a681e2dd2'] = 'Resumen de su pedido:';
-$_MODULE['<{cheque}prestashop>payment_f05fd8637f8a6281466a507fcb56baec'] = 'Pagar por cheque';
-$_MODULE['<{cheque}prestashop>payment_return_61da27a5dd1f8ced46c77b0feaa9e159'] = 'Por favor, envíenos un cheque :';
-$_MODULE['<{cheque}prestashop>cheque_e09484ba6c16bc20236b63cc0d87ee95'] = '¿Está seguro de que desea eliminar sus datos?';
-$_MODULE['<{cheque}prestashop>cheque_e2d93539acef2afbbadf8542351fb2b4'] = 'Ninguna divisa disponible para este módulo';
-$_MODULE['<{cheque}prestashop>validation_e2b7dec8fa4b498156dfee6e4c84b156'] = 'Esta forma de pago no está disponible.';
-$_MODULE['<{cheque}prestashop>payment_execution_879f6b8877752685a966564d072f498f'] = 'Su carrito está vacío';
-$_MODULE['<{cheque}prestashop>payment_execution_3b3b41f131194e747489ef93e778ed0d'] = 'El importe total de su pedido asciende a';
-$_MODULE['<{cheque}prestashop>payment_execution_a7a08622ee5c8019b57354b99b7693b2'] = 'Elija entre las siguientes:';
-$_MODULE['<{cheque}prestashop>payment_execution_7135ff14c7931e1c8e9d33aff3dfc7f7'] = 'La orden y la dirección del cheque aparecerán en la siguiente página.';
-$_MODULE['<{cheque}prestashop>payment_execution_46b9e3665f187c739c55983f757ccda0'] = 'Confirmo mi pedido';
-$_MODULE['<{cheque}prestashop>payment_execution_569fd05bdafa1712c4f6be5b153b8418'] = 'Otros modos de pago';
-$_MODULE['<{cheque}prestashop>payment_841728ede901f5134574c4656aba5464'] = 'Pagar por cheque (proceso más largo)';
-$_MODULE['<{cheque}prestashop>payment_return_9a94f1d749a3de5d299674d6c685e416'] = 'enviar a';
-$_MODULE['<{cheque}prestashop>payment_return_4761b03b53bc2b3bd948bb7443a26f31'] = 'No te olvides de insertar tu número de pedido %s.';
-$_MODULE['<{cheque}prestashop>payment_return_ffd2478830ca2f519f7fe7ee259d4b96'] = 'Le enviaremos su pedido en cuanto recibamos el pago';
-$_MODULE['<{cheque}prestashop>cheque_14e41f4cfd99b10766cc15676d8cda66'] = 'Módulo para aceptar pagos con cheque';
-$_MODULE['<{cheque}prestashop>cheque_dd7bf230fde8d4836917806aff6a6b27'] = 'Dirección';
-$_MODULE['<{cheque}prestashop>payment_execution_f1d3b424cd68795ecaa552883759aceb'] = 'Resumen del pedido';
-$_MODULE['<{cheque}prestashop>payment_execution_1f87346a16cf80c372065de3c54c86d9'] = 'IVA incluido';
-$_MODULE['<{cheque}prestashop>payment_execution_7b1c6e78d93817f61f2b1bbc2108a803'] = 'Aceptamos diferentes divisas para los cheques.';
-$_MODULE['<{cheque}prestashop>payment_execution_f73ad0f08052884ff465749bf48b55ce'] = 'Aceptamos la siguiente divisa para su pago:';
-$_MODULE['<{cheque}prestashop>payment_return_543baa3e0ca83589be12aff8036b5fe6'] = 'por un valor de';
-$_MODULE['<{cheque}prestashop>payment_return_e1c54fdba2544646684f41ace03b5fda'] = 'No te olvides de insertar su número de pedido #%d.';
-$_MODULE['<{cheque}prestashop>payment_return_0db71da7150c27142eef9d22b843b4a9'] = 'Para cualquier duda o para más información, póngase en contacto con nuestro servicio';
-$_MODULE['<{cheque}prestashop>payment_return_decce112a9e64363c997b04aa71b7cb8'] = 'de atención al cliente';
-$_MODULE['<{cheque}prestashop>payment_return_9bdf695c5a30784327137011da6ef568'] = 'Hay un problema con su pedido, póngase en contacto con el servicio de atención al cliente.';
diff --git a/modules/cheque/translations/fr.php b/modules/cheque/translations/fr.php
deleted file mode 100644
index 12904ef67..000000000
--- a/modules/cheque/translations/fr.php
+++ /dev/null
@@ -1,51 +0,0 @@
-cheque_10afbbb4dcb65d825785d196ffb294dd'] = 'L\'ordre du chèque et l\'adresse doivent être renseignés.';
-$_MODULE['<{cheque}prestashop>payment_return_9b8f932b1412d130ece5045ecafd1b42'] = 'payable à l\'ordre de';
-$_MODULE['<{cheque}prestashop>payment_return_610abe74e72f00210e3dcb91a0a3f717'] = 'Un e-mail contenant ces informations vous a été envoyé.';
-$_MODULE['<{cheque}prestashop>cheque_c888438d14855d7d96a2724ee9c306bd'] = 'Paramètres mis à jour';
-$_MODULE['<{cheque}prestashop>cheque_14e41f4cfd99b10766cc15676d8cda66'] = 'Ce module vous permet d\'accepter des paiements par chèque.';
-$_MODULE['<{cheque}prestashop>cheque_8c88bbf5712292b26e2a6bbeb0a7b5c4'] = 'Par conséquent, vous devez valider manuellement la commande dès réception du chèque.';
-$_MODULE['<{cheque}prestashop>cheque_5dd532f0a63d89c5af0243b74732f63c'] = 'Coordonnées';
-$_MODULE['<{cheque}prestashop>cheque_119100c9e7b17d9cfe7b1d6c64259a04'] = 'Veuillez préciser l\'ordre du chèque et l\'adresse pour vos clients';
-$_MODULE['<{cheque}prestashop>cheque_75475839e69bef6ed57a8200a5a71d37'] = 'A l\'ordre de';
-$_MODULE['<{cheque}prestashop>payment_execution_060bf2d587991d8f090a1309b285291c'] = 'chèque';
-$_MODULE['<{cheque}prestashop>payment_execution_76ca011e4772bfcce26aecd42c598510'] = 'Vous avez choisi de régler par chèque.';
-$_MODULE['<{cheque}prestashop>payment_execution_0881a11f7af33bc1b43e437391129d66'] = 'Veuillez confirmer votre commande en cliquant sur \\"Je confirme ma commande\\"';
-$_MODULE['<{cheque}prestashop>payment_return_88526efe38fd18179a127024aba8c1d7'] = 'Votre commande sur %s a bien été enregistrée.';
-$_MODULE['<{cheque}prestashop>cheque_b17f3f4dcf653a5776792498a9b44d6a'] = 'Mettre à jour';
-$_MODULE['<{cheque}prestashop>cheque_7b4cc4f79be9aae43efd53b4ae5cba4d'] = 'Chèque';
-$_MODULE['<{cheque}prestashop>cheque_94ce8bec7334b16916823f53ebe936d7'] = 'L\'ordre du chèque est requis.';
-$_MODULE['<{cheque}prestashop>cheque_4b5e20a521d31cc44b9690bd35eaacfc'] = 'L\'adresse est requise.';
-$_MODULE['<{cheque}prestashop>cheque_aa646de3f8d345490b22b72d4a505dcd'] = 'Si le client choisit ce mode de paiement, la commande passera à l\'état \\"Paiement en attente\\".';
-$_MODULE['<{cheque}prestashop>payment_execution_8520b283b0884394b13b80d5689628b3'] = 'Paiement par chèque';
-$_MODULE['<{cheque}prestashop>payment_execution_c884ed19483d45970c5bf23a681e2dd2'] = 'Voici un bref récapitulatif de votre commande :';
-$_MODULE['<{cheque}prestashop>payment_return_61da27a5dd1f8ced46c77b0feaa9e159'] = 'Veuillez nous envoyer un chèque avec :';
-$_MODULE['<{cheque}prestashop>payment_f05fd8637f8a6281466a507fcb56baec'] = 'Payer par chèque';
-$_MODULE['<{cheque}prestashop>cheque_e09484ba6c16bc20236b63cc0d87ee95'] = 'Êtes-vous sûr de vouloir supprimer vos paramètres ?';
-$_MODULE['<{cheque}prestashop>cheque_e2d93539acef2afbbadf8542351fb2b4'] = 'Aucune devise disponible pour ce module';
-$_MODULE['<{cheque}prestashop>payment_return_9a94f1d749a3de5d299674d6c685e416'] = 'à envoyer à';
-$_MODULE['<{cheque}prestashop>payment_return_4761b03b53bc2b3bd948bb7443a26f31'] = 'N\'oubliez pas d\'indiquer votre référence de commande %s.';
-$_MODULE['<{cheque}prestashop>payment_return_ffd2478830ca2f519f7fe7ee259d4b96'] = 'Votre commande vous sera envoyée dès réception du paiement.';
-$_MODULE['<{cheque}prestashop>validation_e2b7dec8fa4b498156dfee6e4c84b156'] = 'Cette méthode de paiement n\'est pas disponible.';
-$_MODULE['<{cheque}prestashop>payment_execution_879f6b8877752685a966564d072f498f'] = 'Votre panier est vide.';
-$_MODULE['<{cheque}prestashop>payment_execution_3b3b41f131194e747489ef93e778ed0d'] = 'Le montant total de votre commande s\'élève à';
-$_MODULE['<{cheque}prestashop>payment_execution_a7a08622ee5c8019b57354b99b7693b2'] = 'Veuillez choisir parmi les suivantes :';
-$_MODULE['<{cheque}prestashop>payment_execution_7135ff14c7931e1c8e9d33aff3dfc7f7'] = 'L\'ordre et l\'adresse du chèque seront affichés sur la page suivante.';
-$_MODULE['<{cheque}prestashop>payment_execution_46b9e3665f187c739c55983f757ccda0'] = 'Je confirme ma commande';
-$_MODULE['<{cheque}prestashop>payment_execution_569fd05bdafa1712c4f6be5b153b8418'] = 'Autres moyens de paiement';
-$_MODULE['<{cheque}prestashop>payment_841728ede901f5134574c4656aba5464'] = 'Payer par chèque (traitement plus long)';
-$_MODULE['<{cheque}prestashop>cheque_14e41f4cfd99b10766cc15676d8cda66'] = 'Accepter les paiements par chèque';
-$_MODULE['<{cheque}prestashop>payment_return_e1c54fdba2544646684f41ace03b5fda'] = 'N\'oubliez pas d\'indiquer votre numéro de commande n°%d.';
-$_MODULE['<{cheque}prestashop>payment_return_0db71da7150c27142eef9d22b843b4a9'] = 'Pour toute question ou information complémentaire, veuillez contacter notre';
-$_MODULE['<{cheque}prestashop>payment_return_decce112a9e64363c997b04aa71b7cb8'] = 'support client';
-$_MODULE['<{cheque}prestashop>payment_return_9bdf695c5a30784327137011da6ef568'] = 'Nous avons rencontré un problème avec votre commande, veuillez contacter notre support client';
-$_MODULE['<{cheque}prestashop>cheque_dd7bf230fde8d4836917806aff6a6b27'] = 'Adresse';
-$_MODULE['<{cheque}prestashop>payment_execution_f1d3b424cd68795ecaa552883759aceb'] = 'Récapitulatif de commande';
-$_MODULE['<{cheque}prestashop>payment_execution_1f87346a16cf80c372065de3c54c86d9'] = 'TTC';
-$_MODULE['<{cheque}prestashop>payment_execution_7b1c6e78d93817f61f2b1bbc2108a803'] = 'Nous acceptons plusieurs devises pour les chèques.';
-$_MODULE['<{cheque}prestashop>payment_execution_f73ad0f08052884ff465749bf48b55ce'] = 'Nous acceptons la devise suivante pour votre paiement :';
-$_MODULE['<{cheque}prestashop>payment_return_543baa3e0ca83589be12aff8036b5fe6'] = 'un montant de';
diff --git a/modules/cheque/translations/it.php b/modules/cheque/translations/it.php
deleted file mode 100644
index 3cced622e..000000000
--- a/modules/cheque/translations/it.php
+++ /dev/null
@@ -1,51 +0,0 @@
-cheque_10afbbb4dcb65d825785d196ffb294dd'] = '\'All\'ordine di\' e l\'indirizzo devono essere configurati per poter utilizzare questo modulo correttamente';
-$_MODULE['<{cheque}prestashop>cheque_c888438d14855d7d96a2724ee9c306bd'] = 'Impostazioni aggiornate';
-$_MODULE['<{cheque}prestashop>cheque_14e41f4cfd99b10766cc15676d8cda66'] = 'Questo modulo permette di accettare pagamenti tramite assegno.';
-$_MODULE['<{cheque}prestashop>cheque_8c88bbf5712292b26e2a6bbeb0a7b5c4'] = 'Pertanto, sarà necessario confermare l\'ordine non appena si riceve un assegno.';
-$_MODULE['<{cheque}prestashop>cheque_5dd532f0a63d89c5af0243b74732f63c'] = 'Dettagli di contatto';
-$_MODULE['<{cheque}prestashop>cheque_119100c9e7b17d9cfe7b1d6c64259a04'] = 'Si prega di specificare il nome e l\'indirizzo a cui i clienti dovranno inviare il loro assegno';
-$_MODULE['<{cheque}prestashop>cheque_75475839e69bef6ed57a8200a5a71d37'] = 'All\'ordine di';
-$_MODULE['<{cheque}prestashop>cheque_b17f3f4dcf653a5776792498a9b44d6a'] = 'Aggiorna le impostazioni';
-$_MODULE['<{cheque}prestashop>payment_execution_060bf2d587991d8f090a1309b285291c'] = 'assegno';
-$_MODULE['<{cheque}prestashop>payment_execution_76ca011e4772bfcce26aecd42c598510'] = 'Hai scelto di pagare con assegno.';
-$_MODULE['<{cheque}prestashop>payment_execution_0881a11f7af33bc1b43e437391129d66'] = 'Conferma l\'ordine cliccando su \'confermo il mio ordine\'';
-$_MODULE['<{cheque}prestashop>payment_return_88526efe38fd18179a127024aba8c1d7'] = 'Il tuo ordine su %s è completo.';
-$_MODULE['<{cheque}prestashop>payment_return_9b8f932b1412d130ece5045ecafd1b42'] = 'pagabile all\'ordine di';
-$_MODULE['<{cheque}prestashop>payment_return_610abe74e72f00210e3dcb91a0a3f717'] = 'Ti è stata inviata una e-mail con queste informazioni.';
-$_MODULE['<{cheque}prestashop>cheque_7b4cc4f79be9aae43efd53b4ae5cba4d'] = 'Assegno';
-$_MODULE['<{cheque}prestashop>cheque_94ce8bec7334b16916823f53ebe936d7'] = 'Il campo \\"all\'ordine di\\" è obbligatorio.';
-$_MODULE['<{cheque}prestashop>cheque_4b5e20a521d31cc44b9690bd35eaacfc'] = 'Indirizzo obbligatorio.';
-$_MODULE['<{cheque}prestashop>cheque_aa646de3f8d345490b22b72d4a505dcd'] = 'Se il cliente sceglie questa modalità di pagamento, l\'ordine cambierà il proprio status in \\"attesa di pagamento\\".';
-$_MODULE['<{cheque}prestashop>payment_execution_8520b283b0884394b13b80d5689628b3'] = 'Pagamento con assegno';
-$_MODULE['<{cheque}prestashop>payment_execution_c884ed19483d45970c5bf23a681e2dd2'] = 'Ecco un breve riepilogo del tuo ordine:';
-$_MODULE['<{cheque}prestashop>payment_f05fd8637f8a6281466a507fcb56baec'] = 'Paga con assegno';
-$_MODULE['<{cheque}prestashop>payment_return_61da27a5dd1f8ced46c77b0feaa9e159'] = 'Vi preghiamo di inviarci un assegno con:';
-$_MODULE['<{cheque}prestashop>cheque_e09484ba6c16bc20236b63cc0d87ee95'] = 'Sei sicuro di voler cancellare i tuoi dati?';
-$_MODULE['<{cheque}prestashop>cheque_e2d93539acef2afbbadf8542351fb2b4'] = 'Nessuna valuta impostata per questo modulo';
-$_MODULE['<{cheque}prestashop>validation_e2b7dec8fa4b498156dfee6e4c84b156'] = 'Questo metodo di pagamento non è disponibile.';
-$_MODULE['<{cheque}prestashop>payment_execution_879f6b8877752685a966564d072f498f'] = 'Il carrello è vuoto.';
-$_MODULE['<{cheque}prestashop>payment_execution_3b3b41f131194e747489ef93e778ed0d'] = 'L\'importo totale del tuo ordine è';
-$_MODULE['<{cheque}prestashop>payment_execution_a7a08622ee5c8019b57354b99b7693b2'] = 'Scegli una delle seguenti:';
-$_MODULE['<{cheque}prestashop>payment_execution_7135ff14c7931e1c8e9d33aff3dfc7f7'] = 'Le informazioni sul titolare dell\'assegno e l\'indirizzo verranno visualizzate nella pagina successiva.';
-$_MODULE['<{cheque}prestashop>payment_execution_46b9e3665f187c739c55983f757ccda0'] = 'Confermo il mio ordine';
-$_MODULE['<{cheque}prestashop>payment_execution_569fd05bdafa1712c4f6be5b153b8418'] = 'Altri metodi di pagamento';
-$_MODULE['<{cheque}prestashop>payment_841728ede901f5134574c4656aba5464'] = 'Paga con assegno (l\'elaborazione dell\'ordine sarà più lungo)';
-$_MODULE['<{cheque}prestashop>payment_return_9a94f1d749a3de5d299674d6c685e416'] = 'mail a';
-$_MODULE['<{cheque}prestashop>payment_return_4761b03b53bc2b3bd948bb7443a26f31'] = 'Non dimenticare di inserire la tua referenza ordine %s.';
-$_MODULE['<{cheque}prestashop>payment_return_ffd2478830ca2f519f7fe7ee259d4b96'] = 'Il tuo ordine verrà inviato non appena avremo ricevuto il pagamento.';
-$_MODULE['<{cheque}prestashop>cheque_14e41f4cfd99b10766cc15676d8cda66'] = 'Modulo per accettare pagamenti con assegno';
-$_MODULE['<{cheque}prestashop>cheque_dd7bf230fde8d4836917806aff6a6b27'] = 'Indirizzo';
-$_MODULE['<{cheque}prestashop>payment_execution_f1d3b424cd68795ecaa552883759aceb'] = 'Riepilogo dell\'ordine';
-$_MODULE['<{cheque}prestashop>payment_execution_1f87346a16cf80c372065de3c54c86d9'] = '(tasse incl.)';
-$_MODULE['<{cheque}prestashop>payment_execution_7b1c6e78d93817f61f2b1bbc2108a803'] = 'Si accettano più valute per gli assegni.';
-$_MODULE['<{cheque}prestashop>payment_execution_f73ad0f08052884ff465749bf48b55ce'] = 'Accettiamo le seguente valuta da inviare tramite assegno:';
-$_MODULE['<{cheque}prestashop>payment_return_543baa3e0ca83589be12aff8036b5fe6'] = 'un importo di';
-$_MODULE['<{cheque}prestashop>payment_return_e1c54fdba2544646684f41ace03b5fda'] = 'Non dimenticare di inserire il tuo numero d\'ordine #%d.';
-$_MODULE['<{cheque}prestashop>payment_return_0db71da7150c27142eef9d22b843b4a9'] = 'Per eventuali domande o per ulteriori informazioni, contatta la nostra';
-$_MODULE['<{cheque}prestashop>payment_return_decce112a9e64363c997b04aa71b7cb8'] = 'assistenza clienti';
-$_MODULE['<{cheque}prestashop>payment_return_9bdf695c5a30784327137011da6ef568'] = 'Abbiamo notato un problema con il tuo ordine. Se pensi che questo sia un errore, contatta la nostra';
diff --git a/modules/crossselling/translations/de.php b/modules/crossselling/translations/de.php
deleted file mode 100644
index 37e5e9695..000000000
--- a/modules/crossselling/translations/de.php
+++ /dev/null
@@ -1,17 +0,0 @@
-crossselling_f4f70727dc34561dfde1a3c529b6205c'] = 'Einstellungen';
-$_MODULE['<{crossselling}prestashop>crossselling_a1892c39b2598b4f30f9cc92c59f1aa5'] = 'Cross-Selling';
-$_MODULE['<{crossselling}prestashop>crossselling_b6bf131edd323320bac67303a3f4de8a'] = 'Preis auf Produkten anzeigen';
-$_MODULE['<{crossselling}prestashop>crossselling_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Aktiviert';
-$_MODULE['<{crossselling}prestashop>crossselling_b9f5c797ebbf55adccdd8539a65a0241'] = 'Deaktiviert';
-$_MODULE['<{crossselling}prestashop>crossselling_70f9a895dc3273d34a7f6d14642708ec'] = 'Preise auf den Produkten im Block anzeigen.';
-$_MODULE['<{crossselling}prestashop>crossselling_c9cc8cce247e49bae79f15173ce97354'] = 'Speichern';
-$_MODULE['<{crossselling}prestashop>crossselling_dd1f775e443ff3b9a89270713580a51b'] = 'Zurück';
-$_MODULE['<{crossselling}prestashop>crossselling_4351cfebe4b61d8aa5efa1d020710005'] = 'Anzeigen';
-$_MODULE['<{crossselling}prestashop>crossselling_ef2b66b0b65479e08ff0cce29e19d006'] = 'Kunden, die dieses Produkt gekauft haben, kauften auch ...';
-$_MODULE['<{crossselling}prestashop>crossselling_462390017ab0938911d2d4e964c0cab7'] = 'Einstellungen erfolgreich aktualisiert';
-$_MODULE['<{crossselling}prestashop>crossselling_10ac3d04253ef7e1ddc73e6091c0cd55'] = 'Weiter';
diff --git a/modules/crossselling/translations/en.php b/modules/crossselling/translations/en.php
deleted file mode 100755
index 9839c82f9..000000000
--- a/modules/crossselling/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-crossselling_f4f70727dc34561dfde1a3c529b6205c'] = 'Configuración';
-$_MODULE['<{crossselling}prestashop>crossselling_a1892c39b2598b4f30f9cc92c59f1aa5'] = 'Ventas cruzadas';
-$_MODULE['<{crossselling}prestashop>crossselling_b6bf131edd323320bac67303a3f4de8a'] = 'Mostrar el precio del producto';
-$_MODULE['<{crossselling}prestashop>crossselling_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Activado';
-$_MODULE['<{crossselling}prestashop>crossselling_b9f5c797ebbf55adccdd8539a65a0241'] = 'Desactivado';
-$_MODULE['<{crossselling}prestashop>crossselling_70f9a895dc3273d34a7f6d14642708ec'] = 'Mostrar el precio del producto en el bloque';
-$_MODULE['<{crossselling}prestashop>crossselling_c9cc8cce247e49bae79f15173ce97354'] = 'Guardar';
-$_MODULE['<{crossselling}prestashop>crossselling_dd1f775e443ff3b9a89270713580a51b'] = 'Anterior';
-$_MODULE['<{crossselling}prestashop>crossselling_4351cfebe4b61d8aa5efa1d020710005'] = 'Vista';
-$_MODULE['<{crossselling}prestashop>crossselling_ef2b66b0b65479e08ff0cce29e19d006'] = 'Los clientes que compraron este producto también han comprado...';
-$_MODULE['<{crossselling}prestashop>crossselling_462390017ab0938911d2d4e964c0cab7'] = 'Parámetros actualizados con éxito';
-$_MODULE['<{crossselling}prestashop>crossselling_10ac3d04253ef7e1ddc73e6091c0cd55'] = 'Siguiente';
diff --git a/modules/crossselling/translations/fr.php b/modules/crossselling/translations/fr.php
deleted file mode 100755
index d6fb3268e..000000000
--- a/modules/crossselling/translations/fr.php
+++ /dev/null
@@ -1,17 +0,0 @@
-crossselling_f4f70727dc34561dfde1a3c529b6205c'] = 'Paramètres';
-$_MODULE['<{crossselling}prestashop>crossselling_a1892c39b2598b4f30f9cc92c59f1aa5'] = 'Ventes croisées';
-$_MODULE['<{crossselling}prestashop>crossselling_b6bf131edd323320bac67303a3f4de8a'] = 'Afficher le prix du produit';
-$_MODULE['<{crossselling}prestashop>crossselling_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Activé';
-$_MODULE['<{crossselling}prestashop>crossselling_b9f5c797ebbf55adccdd8539a65a0241'] = 'Désactivé';
-$_MODULE['<{crossselling}prestashop>crossselling_70f9a895dc3273d34a7f6d14642708ec'] = 'Afficher le prix du produit dans le bloc';
-$_MODULE['<{crossselling}prestashop>crossselling_c9cc8cce247e49bae79f15173ce97354'] = 'Enregistrer';
-$_MODULE['<{crossselling}prestashop>crossselling_dd1f775e443ff3b9a89270713580a51b'] = 'Précédent';
-$_MODULE['<{crossselling}prestashop>crossselling_4351cfebe4b61d8aa5efa1d020710005'] = 'Voir';
-$_MODULE['<{crossselling}prestashop>crossselling_ef2b66b0b65479e08ff0cce29e19d006'] = 'Les clients qui ont acheté ce produit ont également acheté...';
-$_MODULE['<{crossselling}prestashop>crossselling_462390017ab0938911d2d4e964c0cab7'] = 'Paramètres mis à jour';
-$_MODULE['<{crossselling}prestashop>crossselling_10ac3d04253ef7e1ddc73e6091c0cd55'] = 'Suivant';
diff --git a/modules/crossselling/translations/it.php b/modules/crossselling/translations/it.php
deleted file mode 100644
index e6742ad3b..000000000
--- a/modules/crossselling/translations/it.php
+++ /dev/null
@@ -1,17 +0,0 @@
-crossselling_f4f70727dc34561dfde1a3c529b6205c'] = 'Impostazioni';
-$_MODULE['<{crossselling}prestashop>crossselling_a1892c39b2598b4f30f9cc92c59f1aa5'] = 'Vendita incrociata';
-$_MODULE['<{crossselling}prestashop>crossselling_b6bf131edd323320bac67303a3f4de8a'] = 'Mostra prezzo sui prodotti';
-$_MODULE['<{crossselling}prestashop>crossselling_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Attivato';
-$_MODULE['<{crossselling}prestashop>crossselling_b9f5c797ebbf55adccdd8539a65a0241'] = 'Disattivato';
-$_MODULE['<{crossselling}prestashop>crossselling_70f9a895dc3273d34a7f6d14642708ec'] = 'Mostra il prezzo sui prodotti nel blocco.';
-$_MODULE['<{crossselling}prestashop>crossselling_c9cc8cce247e49bae79f15173ce97354'] = 'Salva';
-$_MODULE['<{crossselling}prestashop>crossselling_dd1f775e443ff3b9a89270713580a51b'] = 'I clienti che hanno acquistato questo prodotto hanno acquistato anche:';
-$_MODULE['<{crossselling}prestashop>crossselling_4351cfebe4b61d8aa5efa1d020710005'] = 'Precedente';
-$_MODULE['<{crossselling}prestashop>crossselling_ef2b66b0b65479e08ff0cce29e19d006'] = 'I clienti che hanno acquistato questo prodotto hanno anche comprato ...';
-$_MODULE['<{crossselling}prestashop>crossselling_462390017ab0938911d2d4e964c0cab7'] = 'Impostazioni aggiornato con successo';
-$_MODULE['<{crossselling}prestashop>crossselling_10ac3d04253ef7e1ddc73e6091c0cd55'] = 'Successivo';
diff --git a/modules/dateofdelivery/translations/de.php b/modules/dateofdelivery/translations/de.php
deleted file mode 100644
index e6f30990a..000000000
--- a/modules/dateofdelivery/translations/de.php
+++ /dev/null
@@ -1,76 +0,0 @@
-beforecarrier_c31e7bcb78c69bd37e6e77be0183567f'] = 'Die voraussichtliche Lieferzeit für aktuell %s Paket(e) beträgt, unter Berücksichtigung der gewählten Lieferart, zwischen';
-$_MODULE['<{dateofdelivery}prestashop>beforecarrier_be5d5d37542d75f93a87094459f76678'] = 'und';
-$_MODULE['<{dateofdelivery}prestashop>beforecarrier_c9ed8c0b07828727ca6653924b0498d3'] = 'mit direkten Zahlungsmethoden (z.B. Kreditkarte)';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_b0f76e26cffaf27784d901a64f39593e'] = 'Liefertermin';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_32dfb655a7b12a2c5662516e82f5d79b'] = 'Das voraussichtliches Lieferdatum ist zwischen dem %1$s und %2$s';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_0ea55758c7a68c0309b915e4b718d6b8'] = 'ungültiges Datenformat';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_240276f48ff2e0e5fe620ff311e677b5'] = 'ein Fehler ist beim Aktualisieren einer Lieferanten-Regel aufgetreten';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_aeae9747bcdc4f7c25aa95c2a6765952'] = 'Name des Lieferanten';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_52f253c711cff509bd5e4df2b18b697a'] = 'Samstagslieferung';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_225e75c29d32392d311f5dc94c792384'] = 'Tag (e)';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_15b4020fafe2bcadf41fbdb2e7fa137a'] = 'Vorbereitung am Samstag';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_f19cb36e3ae263c8c3617a453a0ff521'] = 'Hier sehen Sie alle verfügbaren Paramter:';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_c9cc8cce247e49bae79f15173ce97354'] = 'Speichern';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_168ee9f4820976c4f4055cd817965df4'] = 'Neue Lieferanten-Regel';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_961f2247a2070bedff9f9cd8d64e2650'] = 'Wählen';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_7b367091d009d1a4be71a6a72494894f'] = 'Tag (e) UND';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_d3e0fc43c22a6bb8e2d271a29b2f06fd'] = 'Liefermöglichkeiten:';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_9d1a0949c39e66a0cd65240bc0ac9177'] = 'Sonntag';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_78ae6f0cd191d25147e252dc54768238'] = 'Donnerstag';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_c33b138a163847cdb6caeeb7c9a126b4'] = 'Freitag';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_659e59f062c75f81259d22786d6c44aa'] = 'Februar';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_a39df5444246aeb081729db7e17f51bc'] = 'Konfiguration des Liefertermins';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_ecfe3ba0ff66a97029088e8e90a3f051'] = 'Minimale Dauer ist ungültig';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_0245cd1cce5ecea8eb23b043be00d80a'] = 'Maximale Dauer ist ungültig';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_25e775663057cfc945da15827d972699'] = 'Lieferanten-Regel erfolgreich hinzugefügt';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_1b9f5204ddf0881dc9f3a7bf65d4ac15'] = 'Lieferung zwischen';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_fcddbca356dee064438a399fc0c4c84e'] = 'Sonntagslieferung';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_06df33001c1d7187fdd81ea1f5b277aa'] = 'Handlungen';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_93cba07454f06a4a960172bbd6e2a435'] = 'Ja';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_58f748703db13e81b6ca6c366d1ab50c'] = 'Keine Versenderregel';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_104f1a7d59077b514d4105fcee0e42ff'] = 'Format des Datums';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_5792315f09a5d54fb7e3d066672b507f'] = 'Dienstag';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_796c163589f295373e171842f37265d5'] = 'Mittwoch';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_8b7051187b9191cdcdae6ed5a10e5adc'] = 'Samstag';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_fa3e5edac607a88d8fd7ecb9d6d67424'] = 'März';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_3fcf026bbfffb63fb24b8de9d0446949'] = 'April';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_1b539f6f34e8503c97f6d3421346b63c'] = 'Juli';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_82331503174acbae012b2004f6431fa5'] = 'Dezember';
-$_MODULE['<{dateofdelivery}prestashop>beforecarrier_75261aaef97717dda0ca98743b24f8f3'] = 'Ungefähres Zustelldamit mit diesem Versender ist zwischen';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_98110868b266d63c3bacdac4430169cf'] = 'Zeigt den voraussichtlichen Liefertermin an';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_7ccf58c950043c9fbfed668df13ce608'] = 'Die Einstellungen werden aktualisiert';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_e6843321c8b0edea8cf333519316ed7b'] = 'Lieferant ist ungültig';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_50e1f1030812a9a8fd66dfff17099fcd'] = 'ein Fehler ist beim Hinzufügen einer Lieferanten-Regel aufgetreten';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_b9e3eda70ccb175c96a56bd79b89bd8b'] = 'Lieferanten-Regel erfolgreich gelöscht';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_2b5bf8ae8e565a30e2f05c856f5f5f8b'] = 'Lieferanten-Konfiguration';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_e6ff622b31d0cd1c32c775d1e1f20831'] = 'Neue Lieferanten-Regel hinzufügen';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_1b2995b648d396416ae8648d719e1a20'] = 'Liste der Lieferanten-Regeln';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_bafd7322c6e97d25b6299b5d6fe8920b'] = 'Nein';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_7dce122004969d56ae2e0245cb754d35'] = 'Bearbeiten';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_4dab36ac83853282fc0d7bae20c19e90'] = 'Weitere Optionen';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_0008e84621e5c9f21f8a55387a28692f'] = 'Zusätzliche Zeit, wenn ein Produkt nicht vorrätig ist';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_521d02cf307201053a46e0b9c5b5170c'] = 'Zusätzliche Zeit zur Vorbereitung einer Bestellung';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_8c5961161cc9ce6db81bf3be77091136'] = 'Lieferanten-Regel bearbeiten';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_ea4788705e6873b424c65e91c2846b19'] = 'Abbrechen';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_195fbb57ffe7449796d23466085ce6d8'] = 'Mai';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_688937ccaf2a2b0c45a1c9bbba09698d'] = 'Juni';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_eca60ae8611369fe28a02e2ab8c5d12e'] = 'Oktober';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_86f5978d9b80124f509bdb71786e929e'] = 'Januar';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_cc5d90569e1c8313c2b1c2aab1401174'] = 'September';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_17673c1595a3722522f581c854b8edc5'] = 'Sie können diesen Lieferanten nicht nutzen, eine Regel wurde bereits gespeichert';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_c20585756aa4f1b448a11ce77a054e32'] = 'Lieferanten-Regel erfolgreich aktualisiert';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_b5813d499e8a122485995dd7851c1fb2'] = '%1$d Tag(e) und %2$d Tag(e)';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_f2a6c498fb90ee345d997f888fce3b18'] = 'Löschen';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_cec31ec82e3bdee482baaa9f5b11eeed'] = 'Vorbereitungsoption';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_9685cbc6ac9090137fb087d4f48d0561'] = 'Vorbereitung am Sonntag';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_f8617a92ba0a0a4eabee724eab7c9f48'] = 'Lieferant:';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_6f8522e0610541f1ef215a22ffa66ff6'] = 'Montag';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_41ba70891fb6f39327d8ccb9b1dafb84'] = 'August';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_7e823b37564da492ca1629b4732289a8'] = 'November';
-$_MODULE['<{dateofdelivery}prestashop>orderdetail_32dfb655a7b12a2c5662516e82f5d79b'] = 'Das voraussichtliches Lieferdatum ist zwischen dem %1$s und %2$s';
-$_MODULE['<{dateofdelivery}prestashop>orderdetail_c9ed8c0b07828727ca6653924b0498d3'] = 'mit direkten Zahlungsmethoden (z.B. Kreditkarte)';
diff --git a/modules/dateofdelivery/translations/en.php b/modules/dateofdelivery/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/dateofdelivery/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-beforecarrier_c31e7bcb78c69bd37e6e77be0183567f'] = 'Hay paquetes %s, que serán enviados aproximadamente con la opción de envío que elija entre';
-$_MODULE['<{dateofdelivery}prestashop>beforecarrier_be5d5d37542d75f93a87094459f76678'] = 'y';
-$_MODULE['<{dateofdelivery}prestashop>beforecarrier_c9ed8c0b07828727ca6653924b0498d3'] = 'con los modos de pago directo (ejemplo: tarjeta de crédito)';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_b0f76e26cffaf27784d901a64f39593e'] = 'Fecha de entraga';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_32dfb655a7b12a2c5662516e82f5d79b'] = 'Fecha aproximada de entraga con este transportista entre %1$s y %2$s';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_0ea55758c7a68c0309b915e4b718d6b8'] = 'El formato de la fecha no es válido';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_240276f48ff2e0e5fe620ff311e677b5'] = 'Se ha producido un error al configurar la regla';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_aeae9747bcdc4f7c25aa95c2a6765952'] = 'Nombre del transportista';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_52f253c711cff509bd5e4df2b18b697a'] = 'Entrega los sábados';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_225e75c29d32392d311f5dc94c792384'] = 'día(s)';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_15b4020fafe2bcadf41fbdb2e7fa137a'] = 'Preparación el sábado';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_f19cb36e3ae263c8c3617a453a0ff521'] = 'Puede ver todos los parámetros disponibles en:';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_c9cc8cce247e49bae79f15173ce97354'] = 'Guardar';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_168ee9f4820976c4f4055cd817965df4'] = 'Nueva regla de transportista';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_961f2247a2070bedff9f9cd8d64e2650'] = 'Elegir';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_7b367091d009d1a4be71a6a72494894f'] = 'día(s) y';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_d3e0fc43c22a6bb8e2d271a29b2f06fd'] = 'Opciones de entraga:';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_9d1a0949c39e66a0cd65240bc0ac9177'] = 'Domingo';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_c33b138a163847cdb6caeeb7c9a126b4'] = 'Viernes';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_659e59f062c75f81259d22786d6c44aa'] = 'Febrero';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_78ae6f0cd191d25147e252dc54768238'] = 'Jueves';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_a39df5444246aeb081729db7e17f51bc'] = 'Configuración de la fecha de entraga';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_ecfe3ba0ff66a97029088e8e90a3f051'] = 'Plazo mínimo incorrecto';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_0245cd1cce5ecea8eb23b043be00d80a'] = 'Plazo máximo incorrecto';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_25e775663057cfc945da15827d972699'] = 'La regla de transportista se ha añadido con éxito';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_1b9f5204ddf0881dc9f3a7bf65d4ac15'] = 'Entrega prevista entre';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_fcddbca356dee064438a399fc0c4c84e'] = 'Entrega los domingos';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_06df33001c1d7187fdd81ea1f5b277aa'] = 'Acciones';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_93cba07454f06a4a960172bbd6e2a435'] = 'Sí';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_58f748703db13e81b6ca6c366d1ab50c'] = 'Ninguna regla para este transportista';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_104f1a7d59077b514d4105fcee0e42ff'] = 'Formato de la fecha:';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_5792315f09a5d54fb7e3d066672b507f'] = 'Martes';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_796c163589f295373e171842f37265d5'] = 'Miércoles';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_8b7051187b9191cdcdae6ed5a10e5adc'] = 'Sábado';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_fa3e5edac607a88d8fd7ecb9d6d67424'] = 'Marzo';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_3fcf026bbfffb63fb24b8de9d0446949'] = 'Abril';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_1b539f6f34e8503c97f6d3421346b63c'] = 'Julio';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_82331503174acbae012b2004f6431fa5'] = 'Diciembre';
-$_MODULE['<{dateofdelivery}prestashop>beforecarrier_75261aaef97717dda0ca98743b24f8f3'] = 'Fecha aproximada de entraga con este transportista entre';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_98110868b266d63c3bacdac4430169cf'] = 'Mostrar una fecha aproximada de entraga';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_7ccf58c950043c9fbfed668df13ce608'] = 'Parámetros actualizados';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_e6843321c8b0edea8cf333519316ed7b'] = 'Transportista no válido';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_50e1f1030812a9a8fd66dfff17099fcd'] = 'Se ha producido un error al añadir la regla';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_b9e3eda70ccb175c96a56bd79b89bd8b'] = 'La regla de transportista se ha suprimido con éxito';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_2b5bf8ae8e565a30e2f05c856f5f5f8b'] = 'Configuración del transportista';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_e6ff622b31d0cd1c32c775d1e1f20831'] = 'Añadir una nueva regla de transportista';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_1b2995b648d396416ae8648d719e1a20'] = 'Lista de las reglas de transportista';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_bafd7322c6e97d25b6299b5d6fe8920b'] = 'No';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_7dce122004969d56ae2e0245cb754d35'] = 'Modificar';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_4dab36ac83853282fc0d7bae20c19e90'] = 'Más opciones';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_0008e84621e5c9f21f8a55387a28692f'] = 'Tiempo suplementario cuando un producto no está disponible';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_521d02cf307201053a46e0b9c5b5170c'] = 'Tiempo suplementario para la preparación del pedido';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_8c5961161cc9ce6db81bf3be77091136'] = 'Modificar una regla de transportista';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_ea4788705e6873b424c65e91c2846b19'] = 'Anular';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_86f5978d9b80124f509bdb71786e929e'] = 'Enero';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_195fbb57ffe7449796d23466085ce6d8'] = 'Mayo';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_688937ccaf2a2b0c45a1c9bbba09698d'] = 'Junio';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_cc5d90569e1c8313c2b1c2aab1401174'] = 'Septiembre';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_eca60ae8611369fe28a02e2ab8c5d12e'] = 'Octubre';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_17673c1595a3722522f581c854b8edc5'] = 'No puede utilizar ningún transportista, ya se ha registrado una regla.';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_c20585756aa4f1b448a11ce77a054e32'] = 'La regla de transportista ha sido actualizada correctamente';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_b5813d499e8a122485995dd7851c1fb2'] = '%1$d día(s) y%2$d día(s)';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_f2a6c498fb90ee345d997f888fce3b18'] = 'Eliminar';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_cec31ec82e3bdee482baaa9f5b11eeed'] = 'Opción para la preparación';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_9685cbc6ac9090137fb087d4f48d0561'] = 'Preparación el domingo';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_f8617a92ba0a0a4eabee724eab7c9f48'] = 'Transportista:';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_6f8522e0610541f1ef215a22ffa66ff6'] = 'Lunes';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_41ba70891fb6f39327d8ccb9b1dafb84'] = 'Agosto';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_7e823b37564da492ca1629b4732289a8'] = 'Noviembre';
-$_MODULE['<{dateofdelivery}prestashop>orderdetail_32dfb655a7b12a2c5662516e82f5d79b'] = 'Fecha aproximada de entraga con este transportista entre %1$s y %2$s';
-$_MODULE['<{dateofdelivery}prestashop>orderdetail_c9ed8c0b07828727ca6653924b0498d3'] = 'con los modos de pago directo (ejemplo: tarjeta de crédito)';
diff --git a/modules/dateofdelivery/translations/fr.php b/modules/dateofdelivery/translations/fr.php
deleted file mode 100644
index 2c33077f2..000000000
--- a/modules/dateofdelivery/translations/fr.php
+++ /dev/null
@@ -1,76 +0,0 @@
-dateofdelivery_240276f48ff2e0e5fe620ff311e677b5'] = 'Une erreur s\'est produite lors de la mise à jour de la régle.';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_aeae9747bcdc4f7c25aa95c2a6765952'] = 'Nom du transporteur';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_52f253c711cff509bd5e4df2b18b697a'] = 'livraison le samedi';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_225e75c29d32392d311f5dc94c792384'] = 'jour(s)';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_15b4020fafe2bcadf41fbdb2e7fa137a'] = 'préparation le samedi';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_f19cb36e3ae263c8c3617a453a0ff521'] = 'Vous pouvez voir tous les paramètres disponibles à l\'adresse suivante :';
-$_MODULE['<{dateofdelivery}prestashop>beforecarrier_c31e7bcb78c69bd37e6e77be0183567f'] = 'Il y\'a %s paquets, qui seront livré approximativement entre le ';
-$_MODULE['<{dateofdelivery}prestashop>beforecarrier_be5d5d37542d75f93a87094459f76678'] = 'et le ';
-$_MODULE['<{dateofdelivery}prestashop>beforecarrier_c9ed8c0b07828727ca6653924b0498d3'] = 'avec un moyen de paiement direct (ex. : carte bancaire)';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_b0f76e26cffaf27784d901a64f39593e'] = 'Date de livraison';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_32dfb655a7b12a2c5662516e82f5d79b'] = 'Date approximative de livraison est entre le %1$s et le %2$s';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_0ea55758c7a68c0309b915e4b718d6b8'] = 'Le format de la date n\'est pas valable';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_c9cc8cce247e49bae79f15173ce97354'] = 'Enregistrer';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_168ee9f4820976c4f4055cd817965df4'] = 'Nouvelle règle de transporteur';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_961f2247a2070bedff9f9cd8d64e2650'] = 'Choisissez';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_7b367091d009d1a4be71a6a72494894f'] = 'jour(s) et';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_d3e0fc43c22a6bb8e2d271a29b2f06fd'] = 'Option de livraison :';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_9d1a0949c39e66a0cd65240bc0ac9177'] = 'Dimanche';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_78ae6f0cd191d25147e252dc54768238'] = 'Jeudi';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_c33b138a163847cdb6caeeb7c9a126b4'] = 'Vendredi';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_659e59f062c75f81259d22786d6c44aa'] = 'Février';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_25e775663057cfc945da15827d972699'] = 'La régle de transporteur a bien été ajoutée';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_1b9f5204ddf0881dc9f3a7bf65d4ac15'] = 'Livraison entre';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_fcddbca356dee064438a399fc0c4c84e'] = 'livraison le dimanche';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_06df33001c1d7187fdd81ea1f5b277aa'] = 'Actions';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_93cba07454f06a4a960172bbd6e2a435'] = 'Oui';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_58f748703db13e81b6ca6c366d1ab50c'] = 'Aucune règle de transporteur';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_104f1a7d59077b514d4105fcee0e42ff'] = 'Format de la date :';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_a39df5444246aeb081729db7e17f51bc'] = 'Configuration : date de livraison';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_ecfe3ba0ff66a97029088e8e90a3f051'] = 'Délai minimum incorrect';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_0245cd1cce5ecea8eb23b043be00d80a'] = 'Délai maximum incorrect';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_5792315f09a5d54fb7e3d066672b507f'] = 'Mardi';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_796c163589f295373e171842f37265d5'] = 'Mercredi';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_8b7051187b9191cdcdae6ed5a10e5adc'] = 'Samedi';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_fa3e5edac607a88d8fd7ecb9d6d67424'] = 'Mars';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_3fcf026bbfffb63fb24b8de9d0446949'] = 'Avril';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_1b539f6f34e8503c97f6d3421346b63c'] = 'Juillet';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_82331503174acbae012b2004f6431fa5'] = 'Décembre';
-$_MODULE['<{dateofdelivery}prestashop>beforecarrier_75261aaef97717dda0ca98743b24f8f3'] = 'La date approximative de livraison avec ce transporteur se situe entre le';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_50e1f1030812a9a8fd66dfff17099fcd'] = 'Une erreur s\'est produite lors de l\'ajout de la régle.';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_b9e3eda70ccb175c96a56bd79b89bd8b'] = 'La régle de transporteur a bien été supprimée';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_2b5bf8ae8e565a30e2f05c856f5f5f8b'] = 'Configuration de transporteur';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_e6ff622b31d0cd1c32c775d1e1f20831'] = 'Ajouter une nouvelle règle de transporteur';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_1b2995b648d396416ae8648d719e1a20'] = 'Liste des règles de transporteur';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_bafd7322c6e97d25b6299b5d6fe8920b'] = 'Non';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_7dce122004969d56ae2e0245cb754d35'] = 'Modifier';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_4dab36ac83853282fc0d7bae20c19e90'] = 'Plus d\'options';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_0008e84621e5c9f21f8a55387a28692f'] = 'Temps supplémentaire lorsqu\'un produit est hors stock';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_521d02cf307201053a46e0b9c5b5170c'] = 'Temps supplémentaire pour la préparation des commandes';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_ea4788705e6873b424c65e91c2846b19'] = 'Annuler';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_eca60ae8611369fe28a02e2ab8c5d12e'] = 'Octobre';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_98110868b266d63c3bacdac4430169cf'] = 'Afficher une date approximative de livraison';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_7ccf58c950043c9fbfed668df13ce608'] = 'Paramètres mis à jour';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_e6843321c8b0edea8cf333519316ed7b'] = 'Transporteur non valable';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_8c5961161cc9ce6db81bf3be77091136'] = 'Modification d\'une règle de transporteur';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_195fbb57ffe7449796d23466085ce6d8'] = 'Mai';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_688937ccaf2a2b0c45a1c9bbba09698d'] = 'Juin';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_cc5d90569e1c8313c2b1c2aab1401174'] = 'Septembre';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_86f5978d9b80124f509bdb71786e929e'] = 'Janvier';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_c20585756aa4f1b448a11ce77a054e32'] = 'La régle de transporteur a bien été mise à jour';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_b5813d499e8a122485995dd7851c1fb2'] = '%1$d jour(s) et %2$d jour(s)';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_f2a6c498fb90ee345d997f888fce3b18'] = 'Supprimer';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_cec31ec82e3bdee482baaa9f5b11eeed'] = 'Option pour la préparation';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_9685cbc6ac9090137fb087d4f48d0561'] = 'préparation le dimanche';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_17673c1595a3722522f581c854b8edc5'] = 'Vous ne pouvez pas utiliser de transporteur, une régle a déjà été enregistrée';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_f8617a92ba0a0a4eabee724eab7c9f48'] = 'Transporteur :';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_6f8522e0610541f1ef215a22ffa66ff6'] = 'Lundi';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_41ba70891fb6f39327d8ccb9b1dafb84'] = 'Août';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_7e823b37564da492ca1629b4732289a8'] = 'Novembre';
-$_MODULE['<{dateofdelivery}prestashop>orderdetail_32dfb655a7b12a2c5662516e82f5d79b'] = 'Date approximative de livraison est entre le %1$s et le %2$s';
-$_MODULE['<{dateofdelivery}prestashop>orderdetail_c9ed8c0b07828727ca6653924b0498d3'] = 'avec un moyen de paiement direct (ex. : carte bancaire)';
diff --git a/modules/dateofdelivery/translations/it.php b/modules/dateofdelivery/translations/it.php
deleted file mode 100644
index 98bae3edb..000000000
--- a/modules/dateofdelivery/translations/it.php
+++ /dev/null
@@ -1,76 +0,0 @@
-beforecarrier_c31e7bcb78c69bd37e6e77be0183567f'] = 'Ci sono %s pacchi, che saranno consegnati con le opzioni di consegna che hai scelto tra';
-$_MODULE['<{dateofdelivery}prestashop>beforecarrier_be5d5d37542d75f93a87094459f76678'] = 'e';
-$_MODULE['<{dateofdelivery}prestashop>beforecarrier_c9ed8c0b07828727ca6653924b0498d3'] = 'con i metodi di pagamento diretto (es.: carta di credito)';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_b0f76e26cffaf27784d901a64f39593e'] = 'Data di consegna';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_32dfb655a7b12a2c5662516e82f5d79b'] = 'La data di consegna è compresa tra %1$s e %2$s';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_0ea55758c7a68c0309b915e4b718d6b8'] = 'Il formato della data non è valido';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_240276f48ff2e0e5fe620ff311e677b5'] = 'si è verificato un errore durante l\'aggiornamento della regola corriere';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_aeae9747bcdc4f7c25aa95c2a6765952'] = 'Nome del corriere';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_52f253c711cff509bd5e4df2b18b697a'] = 'Consegna sabato';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_225e75c29d32392d311f5dc94c792384'] = 'giorno(i)';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_15b4020fafe2bcadf41fbdb2e7fa137a'] = 'Preparazione sabato';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_f19cb36e3ae263c8c3617a453a0ff521'] = 'Puoi visualizzare tutti i parametri disponibili su:';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_c9cc8cce247e49bae79f15173ce97354'] = 'Salva';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_168ee9f4820976c4f4055cd817965df4'] = 'Nuova regola corriere';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_961f2247a2070bedff9f9cd8d64e2650'] = 'Scegli';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_7b367091d009d1a4be71a6a72494894f'] = 'giorno(i) E';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_9d1a0949c39e66a0cd65240bc0ac9177'] = 'Domenica';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_78ae6f0cd191d25147e252dc54768238'] = 'Giovedi';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_c33b138a163847cdb6caeeb7c9a126b4'] = 'Venerdì';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_659e59f062c75f81259d22786d6c44aa'] = 'Febbraio';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_d3e0fc43c22a6bb8e2d271a29b2f06fd'] = 'Opzioni consegna:';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_a39df5444246aeb081729db7e17f51bc'] = 'Configurazione data di consegna';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_ecfe3ba0ff66a97029088e8e90a3f051'] = 'Tempo minimo non valido';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_0245cd1cce5ecea8eb23b043be00d80a'] = 'Tempo massimo non valido';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_25e775663057cfc945da15827d972699'] = 'Regola corriere aggiunta con successo';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_1b9f5204ddf0881dc9f3a7bf65d4ac15'] = 'Consegna tra';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_fcddbca356dee064438a399fc0c4c84e'] = 'Consegna domenica';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_06df33001c1d7187fdd81ea1f5b277aa'] = 'Azioni';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_93cba07454f06a4a960172bbd6e2a435'] = 'Sì';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_58f748703db13e81b6ca6c366d1ab50c'] = 'Nessuna regola per il corriere';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_104f1a7d59077b514d4105fcee0e42ff'] = 'Formato della data:';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_796c163589f295373e171842f37265d5'] = 'Mercoledì';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_8b7051187b9191cdcdae6ed5a10e5adc'] = 'Sabato';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_fa3e5edac607a88d8fd7ecb9d6d67424'] = 'Marzo';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_3fcf026bbfffb63fb24b8de9d0446949'] = 'Aprile';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_1b539f6f34e8503c97f6d3421346b63c'] = 'Luglio';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_82331503174acbae012b2004f6431fa5'] = 'Dicembre';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_5792315f09a5d54fb7e3d066672b507f'] = 'Martedì';
-$_MODULE['<{dateofdelivery}prestashop>beforecarrier_75261aaef97717dda0ca98743b24f8f3'] = 'Data approssimativa di consegna con questo corriere è tra';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_98110868b266d63c3bacdac4430169cf'] = 'Visualizza una data approssimativa di consegna';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_7ccf58c950043c9fbfed668df13ce608'] = 'Impostazioni aggiornate';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_e6843321c8b0edea8cf333519316ed7b'] = 'Corriere non valido';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_50e1f1030812a9a8fd66dfff17099fcd'] = 'si è verificato un errore durante l\'aggiunta della regola corriere';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_b9e3eda70ccb175c96a56bd79b89bd8b'] = 'Regola corriere eliminata con successo';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_2b5bf8ae8e565a30e2f05c856f5f5f8b'] = 'Configurazione corriere';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_e6ff622b31d0cd1c32c775d1e1f20831'] = 'Aggiungi una nuova regola corriere';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_1b2995b648d396416ae8648d719e1a20'] = 'Elenco di regole corriere';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_bafd7322c6e97d25b6299b5d6fe8920b'] = 'No';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_7dce122004969d56ae2e0245cb754d35'] = 'Modifica';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_4dab36ac83853282fc0d7bae20c19e90'] = 'Altre opzioni';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_0008e84621e5c9f21f8a55387a28692f'] = 'Tempo supplementare quando un prodotto è esaurito';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_521d02cf307201053a46e0b9c5b5170c'] = 'Tempo supplementare per la preparazione dell\'ordine';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_8c5961161cc9ce6db81bf3be77091136'] = 'Modifica regola corriere';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_ea4788705e6873b424c65e91c2846b19'] = 'Annulla';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_86f5978d9b80124f509bdb71786e929e'] = 'Gennaio';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_195fbb57ffe7449796d23466085ce6d8'] = 'Maggio';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_688937ccaf2a2b0c45a1c9bbba09698d'] = 'Giugno';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_cc5d90569e1c8313c2b1c2aab1401174'] = 'Settembre';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_eca60ae8611369fe28a02e2ab8c5d12e'] = 'Ottobre';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_17673c1595a3722522f581c854b8edc5'] = 'Non puoi utilizzare questo corriere, una regola è stata già salvata';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_c20585756aa4f1b448a11ce77a054e32'] = 'Regola corriere aggiornata con successo';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_b5813d499e8a122485995dd7851c1fb2'] = '%1$d giorno/i e %2$d giorno/i';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_f2a6c498fb90ee345d997f888fce3b18'] = 'Elimina';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_cec31ec82e3bdee482baaa9f5b11eeed'] = 'Opzione di preparazione';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_9685cbc6ac9090137fb087d4f48d0561'] = 'Preparazione domenica';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_f8617a92ba0a0a4eabee724eab7c9f48'] = 'Corriere:';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_6f8522e0610541f1ef215a22ffa66ff6'] = 'Lunedi';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_41ba70891fb6f39327d8ccb9b1dafb84'] = 'Agosto';
-$_MODULE['<{dateofdelivery}prestashop>dateofdelivery_7e823b37564da492ca1629b4732289a8'] = 'Novembre';
-$_MODULE['<{dateofdelivery}prestashop>orderdetail_32dfb655a7b12a2c5662516e82f5d79b'] = 'La data di consegna è compresa tra %1$s e %2$s';
-$_MODULE['<{dateofdelivery}prestashop>orderdetail_c9ed8c0b07828727ca6653924b0498d3'] = 'con i metodi di pagamento diretto (es.: carta di credito)';
diff --git a/modules/editorial/editorial.php b/modules/editorial/editorial.php
index 8a8c70dec..3df3fa570 100644
--- a/modules/editorial/editorial.php
+++ b/modules/editorial/editorial.php
@@ -285,6 +285,8 @@ class Editorial extends Module
{
$id_shop = (int)$this->context->shop->id;
$editorial = EditorialClass::getByIdShop($id_shop);
+ if (!$editorial)
+ return;
$editorial = new EditorialClass((int)$editorial->id, $this->context->language->id);
if (!$editorial)
return;
diff --git a/modules/editorial/translations/de.php b/modules/editorial/translations/de.php
deleted file mode 100644
index 03b4f5fe1..000000000
--- a/modules/editorial/translations/de.php
+++ /dev/null
@@ -1,20 +0,0 @@
-editorial_48b5a6f8c5a4e81cd8eb07678a981649'] = 'Ein Texteditor-Modul für Ihre Startseite';
-$_MODULE['<{editorial}prestashop>editorial_0245625ee10f9c6c0ed7f50eb1838856'] = 'Haupttitel';
-$_MODULE['<{editorial}prestashop>editorial_98039e8f2a0d93fc0fff503f9166f59b'] = 'Startseitenlogo Untertitel';
-$_MODULE['<{editorial}prestashop>editorial_a46dcd3561c3feeb53903dfc0f796a35'] = 'Startseiten-Text-Editor';
-$_MODULE['<{editorial}prestashop>editorial_4fb7f07fcf38a6401743822ade34e782'] = 'Erscheint oben auf der Startseite';
-$_MODULE['<{editorial}prestashop>editorial_617f7661941abbf06f773fcb10031c7a'] = 'Text Ihrer Wahl, zum Beispiel erläutern Sie Ihre Mission, heben ein neues Produkt hervor oder beschreiben ein aktuelles Ereignis';
-$_MODULE['<{editorial}prestashop>editorial_28d74ee805e3a162047d8f917b74dcb3'] = 'Startseitenlogo-Link';
-$_MODULE['<{editorial}prestashop>editorial_5526efd7014a00a73115bcf90883d968'] = 'Ein Fehler trat beim Hochladen des Bilds auf.';
-$_MODULE['<{editorial}prestashop>editorial_5db205c79efd29b0e4f52d0c1ff45d20'] = 'Speichern';
-$_MODULE['<{editorial}prestashop>editorial_8dd2f915acf4ec98006d11c9a4b0945b'] = 'Einstellungen erfolgreich aktualisiert';
-$_MODULE['<{editorial}prestashop>editorial_e1f46be647e598f00eeb0ab62561d695'] = 'Untertitel';
-$_MODULE['<{editorial}prestashop>editorial_bf75f228011d1443c4ea7aca23c3cff2'] = 'Einleitungstext';
-$_MODULE['<{editorial}prestashop>editorial_78587f196180054fcb797d40f4a86f10'] = 'Logo der Startseite';
-$_MODULE['<{editorial}prestashop>editorial_c9cc8cce247e49bae79f15173ce97354'] = 'Speichern';
-$_MODULE['<{editorial}prestashop>editorial_2563cfff94f1447b53116f3089940125'] = 'Sie können diese Handlung nicht ausführen';
diff --git a/modules/editorial/translations/en.php b/modules/editorial/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/editorial/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-editorial_48b5a6f8c5a4e81cd8eb07678a981649'] = 'Un módulo de editor de texto para su página de inicio';
-$_MODULE['<{editorial}prestashop>editorial_0245625ee10f9c6c0ed7f50eb1838856'] = 'Título principal';
-$_MODULE['<{editorial}prestashop>editorial_98039e8f2a0d93fc0fff503f9166f59b'] = 'Subtítulo del logo de página de inicio';
-$_MODULE['<{editorial}prestashop>editorial_a46dcd3561c3feeb53903dfc0f796a35'] = 'Editor de textos página de inicio';
-$_MODULE['<{editorial}prestashop>editorial_4fb7f07fcf38a6401743822ade34e782'] = 'Aparece a lo largo de la parte superior de la página de inicio';
-$_MODULE['<{editorial}prestashop>editorial_617f7661941abbf06f773fcb10031c7a'] = 'Su texto; por ejm: explique su objetivo, destaque un nuevo producto, describa un evento..';
-$_MODULE['<{editorial}prestashop>editorial_28d74ee805e3a162047d8f917b74dcb3'] = 'Enlace del logo de página de inicio';
-$_MODULE['<{editorial}prestashop>editorial_5526efd7014a00a73115bcf90883d968'] = 'Se produjo un error durante la carga de imágenes.';
-$_MODULE['<{editorial}prestashop>editorial_5db205c79efd29b0e4f52d0c1ff45d20'] = 'Guardar';
-$_MODULE['<{editorial}prestashop>editorial_8dd2f915acf4ec98006d11c9a4b0945b'] = 'Parámetros actualizados con éxito';
-$_MODULE['<{editorial}prestashop>editorial_e1f46be647e598f00eeb0ab62561d695'] = 'Subtítulo';
-$_MODULE['<{editorial}prestashop>editorial_bf75f228011d1443c4ea7aca23c3cff2'] = 'Texto de introducción';
-$_MODULE['<{editorial}prestashop>editorial_78587f196180054fcb797d40f4a86f10'] = 'Imagen de página de inicio';
-$_MODULE['<{editorial}prestashop>editorial_c9cc8cce247e49bae79f15173ce97354'] = 'Guardar';
-$_MODULE['<{editorial}prestashop>editorial_2563cfff94f1447b53116f3089940125'] = 'No puede efectuar esta acción';
diff --git a/modules/editorial/translations/fr.php b/modules/editorial/translations/fr.php
deleted file mode 100644
index bc2748a2e..000000000
--- a/modules/editorial/translations/fr.php
+++ /dev/null
@@ -1,20 +0,0 @@
-editorial_48b5a6f8c5a4e81cd8eb07678a981649'] = 'Un éditeur de texte pour votre page d\'accueil.';
-$_MODULE['<{editorial}prestashop>editorial_0245625ee10f9c6c0ed7f50eb1838856'] = 'Titre principal';
-$_MODULE['<{editorial}prestashop>editorial_98039e8f2a0d93fc0fff503f9166f59b'] = 'Sous-titre du logo';
-$_MODULE['<{editorial}prestashop>editorial_a46dcd3561c3feeb53903dfc0f796a35'] = 'Éditeur de page d\'accueil';
-$_MODULE['<{editorial}prestashop>editorial_4fb7f07fcf38a6401743822ade34e782'] = 'Apparaît en haut de la page d\'accueil';
-$_MODULE['<{editorial}prestashop>editorial_617f7661941abbf06f773fcb10031c7a'] = 'Texte d\'introduction de votre choix ; expliquez par exemple ce que vous vendez, mettez en avant un produit, ou racontez un évènement récent.';
-$_MODULE['<{editorial}prestashop>editorial_28d74ee805e3a162047d8f917b74dcb3'] = 'Lien du logo';
-$_MODULE['<{editorial}prestashop>editorial_5526efd7014a00a73115bcf90883d968'] = 'Une erreur est survenue lors de l\'upload de l\'image.';
-$_MODULE['<{editorial}prestashop>editorial_5db205c79efd29b0e4f52d0c1ff45d20'] = 'Sauvegarder';
-$_MODULE['<{editorial}prestashop>editorial_8dd2f915acf4ec98006d11c9a4b0945b'] = 'Paramètres mis à jour avec succès';
-$_MODULE['<{editorial}prestashop>editorial_2563cfff94f1447b53116f3089940125'] = 'Vous ne pouvez pas effectuer cette action.';
-$_MODULE['<{editorial}prestashop>editorial_e1f46be647e598f00eeb0ab62561d695'] = 'Sous-titre';
-$_MODULE['<{editorial}prestashop>editorial_bf75f228011d1443c4ea7aca23c3cff2'] = 'Texte d\'introduction';
-$_MODULE['<{editorial}prestashop>editorial_78587f196180054fcb797d40f4a86f10'] = 'Logo de la page d\'accueil';
-$_MODULE['<{editorial}prestashop>editorial_c9cc8cce247e49bae79f15173ce97354'] = 'Sauvegarder';
diff --git a/modules/editorial/translations/it.php b/modules/editorial/translations/it.php
deleted file mode 100644
index b15ca85cc..000000000
--- a/modules/editorial/translations/it.php
+++ /dev/null
@@ -1,20 +0,0 @@
-editorial_48b5a6f8c5a4e81cd8eb07678a981649'] = 'Un modulo editor di testo per la tua home page';
-$_MODULE['<{editorial}prestashop>editorial_0245625ee10f9c6c0ed7f50eb1838856'] = 'Titolo principale';
-$_MODULE['<{editorial}prestashop>editorial_98039e8f2a0d93fc0fff503f9166f59b'] = 'Sottotitolo logo home page';
-$_MODULE['<{editorial}prestashop>editorial_a46dcd3561c3feeb53903dfc0f796a35'] = 'Editor della home page';
-$_MODULE['<{editorial}prestashop>editorial_4fb7f07fcf38a6401743822ade34e782'] = 'Appare nella parte superiore della home page';
-$_MODULE['<{editorial}prestashop>editorial_28d74ee805e3a162047d8f917b74dcb3'] = 'Link logo home page';
-$_MODULE['<{editorial}prestashop>editorial_5526efd7014a00a73115bcf90883d968'] = 'Errore durante il caricamento delle immagini.';
-$_MODULE['<{editorial}prestashop>editorial_617f7661941abbf06f773fcb10031c7a'] = 'Testo a tua scelta; ad esempio, spiega la tua missione, evidenzia un nuovo prodotto, o descrivi un evento recente';
-$_MODULE['<{editorial}prestashop>editorial_5db205c79efd29b0e4f52d0c1ff45d20'] = 'Salva';
-$_MODULE['<{editorial}prestashop>editorial_8dd2f915acf4ec98006d11c9a4b0945b'] = 'Impostazioni aggiornate con successo';
-$_MODULE['<{editorial}prestashop>editorial_e1f46be647e598f00eeb0ab62561d695'] = 'Sottotitolo';
-$_MODULE['<{editorial}prestashop>editorial_bf75f228011d1443c4ea7aca23c3cff2'] = 'Testo introduttivo';
-$_MODULE['<{editorial}prestashop>editorial_78587f196180054fcb797d40f4a86f10'] = 'Logo della home page';
-$_MODULE['<{editorial}prestashop>editorial_c9cc8cce247e49bae79f15173ce97354'] = 'Salva';
-$_MODULE['<{editorial}prestashop>editorial_2563cfff94f1447b53116f3089940125'] = 'Non è possibile effettuare questa azione';
diff --git a/modules/favoriteproducts/translations/de.php b/modules/favoriteproducts/translations/de.php
deleted file mode 100644
index 1123eae9c..000000000
--- a/modules/favoriteproducts/translations/de.php
+++ /dev/null
@@ -1,14 +0,0 @@
-favoriteproducts_c249aeb21294d5e97598462b550e73eb'] = 'Favoriten';
-$_MODULE['<{favoriteproducts}prestashop>favoriteproducts-extra_8128d66be9351da562f9b01f591e00cd'] = 'Produkt zu meinen Favoriten hinzufügen';
-$_MODULE['<{favoriteproducts}prestashop>my-account_e5090b68524b1bbfd7983bfa9500b7c9'] = 'Meine Favoriten';
-$_MODULE['<{favoriteproducts}prestashop>favoriteproducts_018770f4456d82ec755cd9d0180e4cce'] = 'Seite mit empfohlenen Produkten zeigen';
-$_MODULE['<{favoriteproducts}prestashop>favoriteproducts-account_6f16227b3e634872e87b0501948310b6'] = 'Zurück zu Ihrem Konto';
-$_MODULE['<{favoriteproducts}prestashop>favoriteproducts-account_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'Mein Konto';
-$_MODULE['<{favoriteproducts}prestashop>favoriteproducts-account_e5090b68524b1bbfd7983bfa9500b7c9'] = 'Meine Favoriten';
-$_MODULE['<{favoriteproducts}prestashop>favoriteproducts-account_44fd621c6504b8a5346946650682a842'] = 'Derzeit keine Favoriten vorhanden.';
-$_MODULE['<{favoriteproducts}prestashop>favoriteproducts-extra_b895a379bd5ea51680ead24ee13a1bb7'] = 'Produkt aus meinen Favoriten entfernen';
diff --git a/modules/favoriteproducts/translations/en.php b/modules/favoriteproducts/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/favoriteproducts/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-favoriteproducts_c249aeb21294d5e97598462b550e73eb'] = 'Productos favoritos';
-$_MODULE['<{favoriteproducts}prestashop>favoriteproducts-extra_8128d66be9351da562f9b01f591e00cd'] = 'Agregar este producto a mis favoritos';
-$_MODULE['<{favoriteproducts}prestashop>my-account_e5090b68524b1bbfd7983bfa9500b7c9'] = 'Mis productos favoritos';
-$_MODULE['<{favoriteproducts}prestashop>favoriteproducts_018770f4456d82ec755cd9d0180e4cce'] = 'Mostrar una página con los productos favoritos de los clientes';
-$_MODULE['<{favoriteproducts}prestashop>favoriteproducts-account_6f16227b3e634872e87b0501948310b6'] = 'Volver a su cuenta';
-$_MODULE['<{favoriteproducts}prestashop>favoriteproducts-account_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'Mi cuenta';
-$_MODULE['<{favoriteproducts}prestashop>favoriteproducts-account_e5090b68524b1bbfd7983bfa9500b7c9'] = 'Mis productos favoritos';
-$_MODULE['<{favoriteproducts}prestashop>favoriteproducts-account_44fd621c6504b8a5346946650682a842'] = 'No hay producto favorito.';
-$_MODULE['<{favoriteproducts}prestashop>favoriteproducts-extra_b895a379bd5ea51680ead24ee13a1bb7'] = 'Sacar de mis favoritos';
diff --git a/modules/favoriteproducts/translations/fr.php b/modules/favoriteproducts/translations/fr.php
deleted file mode 100644
index 2fa10fb43..000000000
--- a/modules/favoriteproducts/translations/fr.php
+++ /dev/null
@@ -1,14 +0,0 @@
-favoriteproducts_c249aeb21294d5e97598462b550e73eb'] = 'Produits favoris';
-$_MODULE['<{favoriteproducts}prestashop>favoriteproducts-extra_8128d66be9351da562f9b01f591e00cd'] = 'Ajouter ce produit à mes favoris';
-$_MODULE['<{favoriteproducts}prestashop>my-account_e5090b68524b1bbfd7983bfa9500b7c9'] = 'Mes produits favoris';
-$_MODULE['<{favoriteproducts}prestashop>favoriteproducts_018770f4456d82ec755cd9d0180e4cce'] = 'Affiche une page avec les produits favoris de l\'utilisateur';
-$_MODULE['<{favoriteproducts}prestashop>favoriteproducts-account_6f16227b3e634872e87b0501948310b6'] = 'Retour à votre compte';
-$_MODULE['<{favoriteproducts}prestashop>favoriteproducts-account_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'Mon compte';
-$_MODULE['<{favoriteproducts}prestashop>favoriteproducts-account_e5090b68524b1bbfd7983bfa9500b7c9'] = 'Mes produits favoris';
-$_MODULE['<{favoriteproducts}prestashop>favoriteproducts-account_44fd621c6504b8a5346946650682a842'] = 'Vous ne possédez pas de produit favoris pour le moment.';
-$_MODULE['<{favoriteproducts}prestashop>favoriteproducts-extra_b895a379bd5ea51680ead24ee13a1bb7'] = 'Retirer ce produit de mes favoris';
diff --git a/modules/favoriteproducts/translations/it.php b/modules/favoriteproducts/translations/it.php
deleted file mode 100644
index 5da2d1b8c..000000000
--- a/modules/favoriteproducts/translations/it.php
+++ /dev/null
@@ -1,14 +0,0 @@
-favoriteproducts_c249aeb21294d5e97598462b550e73eb'] = 'Prodotti preferiti';
-$_MODULE['<{favoriteproducts}prestashop>favoriteproducts-extra_8128d66be9351da562f9b01f591e00cd'] = 'Aggiungi questo prodotto ai miei preferiti';
-$_MODULE['<{favoriteproducts}prestashop>my-account_e5090b68524b1bbfd7983bfa9500b7c9'] = 'I miei prodotti preferiti';
-$_MODULE['<{favoriteproducts}prestashop>favoriteproducts_018770f4456d82ec755cd9d0180e4cce'] = 'Visualizza una pagina con I prodotti preferiti per il cliente';
-$_MODULE['<{favoriteproducts}prestashop>favoriteproducts-account_6f16227b3e634872e87b0501948310b6'] = 'Torna al tuo account';
-$_MODULE['<{favoriteproducts}prestashop>favoriteproducts-account_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'Il mio conto';
-$_MODULE['<{favoriteproducts}prestashop>favoriteproducts-account_e5090b68524b1bbfd7983bfa9500b7c9'] = 'I miei prodotti preferiti';
-$_MODULE['<{favoriteproducts}prestashop>favoriteproducts-account_44fd621c6504b8a5346946650682a842'] = 'Nessun prodotto preferito ancora.';
-$_MODULE['<{favoriteproducts}prestashop>favoriteproducts-extra_b895a379bd5ea51680ead24ee13a1bb7'] = 'Rimuovi questo prodotto dai miei preferiti';
diff --git a/modules/feeder/translations/de.php b/modules/feeder/translations/de.php
deleted file mode 100644
index 27c83fcd1..000000000
--- a/modules/feeder/translations/de.php
+++ /dev/null
@@ -1,7 +0,0 @@
-feeder_b118eb1df6ece770ad9d2bbe97cc1a79'] = 'Generieren Sie ein RSS-Feed für Produkte';
-$_MODULE['<{feeder}prestashop>feeder_d97c951c07d785b317ffb55c01bf6976'] = 'RSS-Feeds für Produkte';
diff --git a/modules/feeder/translations/en.php b/modules/feeder/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/feeder/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-feeder_b118eb1df6ece770ad9d2bbe97cc1a79'] = 'Generar fuente de productos RSS';
-$_MODULE['<{feeder}prestashop>feeder_d97c951c07d785b317ffb55c01bf6976'] = 'Fuente de productos RSS';
diff --git a/modules/feeder/translations/fr.php b/modules/feeder/translations/fr.php
deleted file mode 100644
index 6baa21af4..000000000
--- a/modules/feeder/translations/fr.php
+++ /dev/null
@@ -1,7 +0,0 @@
-feeder_b118eb1df6ece770ad9d2bbe97cc1a79'] = 'Générer un flux RSS des produits';
-$_MODULE['<{feeder}prestashop>feeder_d97c951c07d785b317ffb55c01bf6976'] = 'Flux RSS des produits';
diff --git a/modules/feeder/translations/it.php b/modules/feeder/translations/it.php
deleted file mode 100644
index 326d09fb2..000000000
--- a/modules/feeder/translations/it.php
+++ /dev/null
@@ -1,7 +0,0 @@
-feeder_b118eb1df6ece770ad9d2bbe97cc1a79'] = 'Crea un Feed RSS prodotti';
-$_MODULE['<{feeder}prestashop>feeder_d97c951c07d785b317ffb55c01bf6976'] = 'Feed RSS prodotti';
diff --git a/modules/followup/mails/de/followup_1.html b/modules/followup/mails/de/followup_1.html
deleted file mode 100644
index c3be7dfa3..000000000
--- a/modules/followup/mails/de/followup_1.html
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
-
-
- Nachricht von {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hallo {firstname} {lastname},
-
-
-
-
-
-
Ihr Warenkorb bei {shop_name}
-
-
-
-
-
-
Uns ist aufgefallen, dass Sie bei Ihrem letzten Besuch auf {shop_name} Ihre Bestellung nicht abgeschlossen haben.
Ihr Warenkorb wurde gespeichert, Sie können Ihre Bestellung abschließen, indem Sie auf unsere Shop-Seite gehen:
Als Anreiz erhalten Sie einen Rabatt über {amount}% auf Ihre nächste Bestellung! Dieses Angebot gilt nur noch {days} Tage, also warten Sie nicht länger!
-
-
-
-
-
-
Hier ist Ihr Gutschein: {voucher_num}
Geben Sie diesen Code in Ihrem Warenkorb-Fenster ein, um Ihren Rabatt zu erhalten.
-
-
\ No newline at end of file
diff --git a/modules/followup/mails/de/followup_1.txt b/modules/followup/mails/de/followup_1.txt
deleted file mode 100644
index 119052799..000000000
--- a/modules/followup/mails/de/followup_1.txt
+++ /dev/null
@@ -1,11 +0,0 @@
-Uns ist aufgefallen, dass Sie bei Ihrem letzten Besuch auf {shop_name} Ihre Bestellung nicht abgeschlossen haben.
-
-Ihr Warenkorb wurde gespeichert, Sie können Ihre Bestellung abschließen, indem Sie auf unsere Shop-Seite gehen:
-
-{shop_url}
-
-Als Anreiz erhalten Sie einen Rabatt über {amount}% auf Ihre nächste Bestellung! Dieses Angebot gilt nur noch {days} Tage, also warten Sie nicht länger!
-
-Hier ist Ihr Gutschein: {voucher_num}
-
-Geben Sie diesen Code in Ihrem Warenkorb-Fenster ein, um Ihren Rabatt zu erhalten.
\ No newline at end of file
diff --git a/modules/followup/mails/de/followup_2.html b/modules/followup/mails/de/followup_2.html
deleted file mode 100644
index c9bbd76d2..000000000
--- a/modules/followup/mails/de/followup_2.html
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
-
-
- Nachricht von {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hallo {firstname} {lastname},
-
-
-
-
-
-
Danke für Ihre Bestellung bei {shop_name}
-
-
-
-
-
-
Als Dankeschön möchten wir Ihnen einen Rabatt über {amount}% auf Ihre nächste Bestellung geben! Dieses Angebot gilt nur noch {days} Tage, also warten Sie nicht länger!
-
-
-
-
-
-
Hier ist Ihr Gutschein: {voucher_num}
Geben Sie diesen Code in Ihrem Warenkorb-Fenster ein, um Ihren Rabatt zu erhalten.
-
-
\ No newline at end of file
diff --git a/modules/followup/mails/de/followup_2.txt b/modules/followup/mails/de/followup_2.txt
deleted file mode 100644
index 1d49330bc..000000000
--- a/modules/followup/mails/de/followup_2.txt
+++ /dev/null
@@ -1,10 +0,0 @@
-Hallo {firstname} {lastname},
-
-Danke für Ihre Bestellung bei {shop_name}
-
-Als Dankeschön möchten wir Ihnen einen Rabatt über {amount}% auf Ihre nächste Bestellung geben! Dieses Angebot gilt nur noch {days} Tage, also warten Sie nicht länger!
-
-
-Hier ist Ihr Gutschein: {voucher_num}
-
-Geben Sie diesen Code in Ihrem Warenkorb-Fenster ein, um Ihren Rabatt zu erhalten.
\ No newline at end of file
diff --git a/modules/followup/mails/de/followup_3.html b/modules/followup/mails/de/followup_3.html
deleted file mode 100644
index d43416b46..000000000
--- a/modules/followup/mails/de/followup_3.html
+++ /dev/null
@@ -1,49 +0,0 @@
-
-
-
-
- Nachricht von {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hallo {firstname} {lastname},
-
-
-
-
-
-
Danke für Ihr Vertrauen
-
-
-
-
-
-
Sie sind einer unserer besten Kunden, desshalb möchten wir Ihnen für Ihr Vertrauen danken.
Als Anerkennung für Ihre Treue möchten wir Ihnen einen Rabatt über {amount}% für Ihre nächste Bestellung geben! Dieses Angebot gilt nur noch {days}, Tage, also warten Sie nicht länger!
-
-
-
-
-
-
-
Hier ist Ihr Gutschein: {voucher_num}
-
Geben Sie diesen Code in Ihrem Warenkorb-Fenster ein, um Ihren Rabatt zu erhalten.
-
-
\ No newline at end of file
diff --git a/modules/followup/mails/de/followup_3.txt b/modules/followup/mails/de/followup_3.txt
deleted file mode 100644
index 25e2bdf36..000000000
--- a/modules/followup/mails/de/followup_3.txt
+++ /dev/null
@@ -1,9 +0,0 @@
-Hallo {firstname} {lastname},
-
-Sie sind einer unserer besten Kunden, desshalb möchten wir Ihnen für Ihr Vertrauen danken.
-
-Als Anerkennung für Ihre Treue möchten wir Ihnen einen Rabatt über {amount}% für Ihre nächste Bestellung geben! Dieses Angebot gilt nur noch {days}, Tage, also warten Sie nicht länger!
-
-Hier ist Ihr Gutschein: {voucher_num}
-
-Geben Sie diesen Code in Ihrem Warenkorb-Fenster ein, um Ihren Rabatt zu erhalten.
\ No newline at end of file
diff --git a/modules/followup/mails/de/followup_4.html b/modules/followup/mails/de/followup_4.html
deleted file mode 100644
index e57d2ab24..000000000
--- a/modules/followup/mails/de/followup_4.html
+++ /dev/null
@@ -1,48 +0,0 @@
-
-
-
-
- Nachricht von {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hallo {firstname} {lastname},
-
-
-
-
-
-
Ihr Warenkorb bei {shop_name}
-
-
-
-
-
-
Sie sind einer unserer besten Kunden, seit {days_threshold} Tagen haben Sie nichts mehr bestellt.
Wir möchten Ihnen für Ihr Vertrauen danken und Ihnen einen Rabatt über {amount}% für Ihre nächste Bestellung geben! Dieses Angebot gilt nur noch {days} days, Tage, also warten Sie nicht länger!
-
-
-
-
-
-
Hier ist Ihr Gutschein: {voucher_num}
-
Geben Sie diesen Code in Ihrem Warenkorb-Fenster ein, um Ihren Rabatt zu erhalten.
-
-
\ No newline at end of file
diff --git a/modules/followup/mails/de/followup_4.txt b/modules/followup/mails/de/followup_4.txt
deleted file mode 100644
index 662e42515..000000000
--- a/modules/followup/mails/de/followup_4.txt
+++ /dev/null
@@ -1,11 +0,0 @@
-Wir vermissen Sie bei {shop_name}
-
-Hallo {firstname} {lastname},
-
-Sie sind einer unserer besten Kunden, seit {days_threshold} Tagen haben Sie nichts mehr bestellt.
-
-Wir möchten Ihnen für Ihr Vertrauen danken und Ihnen einen Rabatt über {amount}% für Ihre nächste Bestellung geben! Dieses Angebot gilt nur noch {days} days, Tage, also warten Sie nicht länger!
-
-Hier ist Ihr Gutschein: {voucher_num}
-
-Geben Sie diesen Code in Ihrem Warenkorb-Fenster ein, um Ihren Rabatt zu erhalten.
diff --git a/modules/followup/mails/de/index.php b/modules/followup/mails/de/index.php
deleted file mode 100644
index 3f6561f72..000000000
--- a/modules/followup/mails/de/index.php
+++ /dev/null
@@ -1,35 +0,0 @@
-
-* @copyright 2007-2013 PrestaShop SA
-* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
-* International Registered Trademark & Property of PrestaShop SA
-*/
-
-header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
-header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
-
-header("Cache-Control: no-store, no-cache, must-revalidate");
-header("Cache-Control: post-check=0, pre-check=0", false);
-header("Pragma: no-cache");
-
-header("Location: ../");
-exit;
\ No newline at end of file
diff --git a/modules/followup/mails/es/followup_1.html b/modules/followup/mails/es/followup_1.html
deleted file mode 100644
index f3d62b6e6..000000000
--- a/modules/followup/mails/es/followup_1.html
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
-
-
- Mensaje de {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hola {firstname} {lastname},
-
-
-
-
-
-
Su cesta de {shop_name}
-
-
-
-
-
-
Nos dimos cuenta de que durante su última visita en {shop_name}, que no ha validado la orden que había comenzado.
Su carrito ha sido guardado, puede reanudar su solicitud por visitar nuestra tienda:
Como excepción, le ofrecemos un descuento del {amount}% de descuento en su próximo pedido! Esta oferta es válida para {days} días, así que no pierdas un instante!
-
-
-
-
-
-
Aquí está tu cupón: {voucher_num}
Introduzca este código en tu carrito de compras para obtener el descuento.
-
-
\ No newline at end of file
diff --git a/modules/followup/mails/es/followup_1.txt b/modules/followup/mails/es/followup_1.txt
deleted file mode 100644
index 8804ae82c..000000000
--- a/modules/followup/mails/es/followup_1.txt
+++ /dev/null
@@ -1,19 +0,0 @@
-{shop_name}
-
-Hola {firstname} {lastname},
-
-Su cesta de {shop_name}
-
-Nos dimos cuenta de que durante su última visita en {shop_name}, que no ha validado la orden que había comenzado.
-
-Su carrito ha sido guardado, puede reanudar su solicitud por visitar nuestra tienda:
-
-{shop_url}
-
-Como excepción, le ofrecemos un descuento del {amount}% de descuento en su próximo pedido! Esta oferta es válida para {days} días, así que no pierdas un instante!
-
-Aquí está tu cupón: {voucher_num}
-
-Introduzca este código en tu carrito de compras para obtener el descuento.
-
-{shop_name} desarrollado por PrestaShop™
\ No newline at end of file
diff --git a/modules/followup/mails/es/followup_2.html b/modules/followup/mails/es/followup_2.html
deleted file mode 100644
index 9af5db01f..000000000
--- a/modules/followup/mails/es/followup_2.html
+++ /dev/null
@@ -1,45 +0,0 @@
-
-
-
-
- Mensaje de {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hola {firstname} {lastname},
-
-
-
-
-
-
Gracias por su pedido en {shop_name}
-
-
-
-
-
-
Como agradecimiento, le concedemos un descuento de {amount}% en su próximo pedido! Esta oferta es válida para {days} días, así que no pierda un instante!
-
-
-
-
-
-
Aquí está su cupón: {voucher_num}
Introduzca este código en su carrito de compras para obtener el descuento.
-
diff --git a/modules/followup/mails/es/followup_2.txt b/modules/followup/mails/es/followup_2.txt
deleted file mode 100644
index b2b272ac3..000000000
--- a/modules/followup/mails/es/followup_2.txt
+++ /dev/null
@@ -1,14 +0,0 @@
-{shop_name}
-
-Hola {firstname} {lastname},
-
-Gracias por su pedido en {shop_name}
-
-Como agradecimiento, le concedemos un descuento de {amount}% en su próximo pedido! Esta oferta es válida para {days} días, así que no pierda un instante!
-
-
-Aquí está su cupón: {voucher_num}
-
-Introduzca este código en su carrito de compras para obtener el descuento.
-
-{shop_name} desarrollado por PrestaShop™
\ No newline at end of file
diff --git a/modules/followup/mails/es/followup_3.html b/modules/followup/mails/es/followup_3.html
deleted file mode 100644
index 349b6f125..000000000
--- a/modules/followup/mails/es/followup_3.html
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
-
-
- Mensaje de {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hola {firstname} {lastname},
-
-
-
-
-
-
Gracias por su confianza.
-
-
-
-
-
-
Usted es parte de nuestros mejores clientes y, como tal, queremos darle las gracias por la confianza que comparten.
Como excepción, le concedemos un descuento de {amount}% válido en su próximo pedido! Esta oferta es válida para {days} días, así que no pierdas un instante!
-
-
-
-
-
-
Aquí está tu cupón: {voucher_num}
Introduzca este código en tu carrito de compras para obtener el descuento.
-
-
\ No newline at end of file
diff --git a/modules/followup/mails/es/followup_3.txt b/modules/followup/mails/es/followup_3.txt
deleted file mode 100644
index 0ad840f8f..000000000
--- a/modules/followup/mails/es/followup_3.txt
+++ /dev/null
@@ -1,15 +0,0 @@
-{shop_name}
-
-Hola {firstname} {lastname},
-
-Gracias por su confianza.
-
-Usted es parte de nuestros mejores clientes y, como tal, queremos darle las gracias por la confianza que comparten.
-
-Como excepción, le concedemos un descuento de {amount}% válido en su próximo pedido! Esta oferta es válida para {days} días, así que no pierdas un instante!
-
-Aquí está tu cupón: {voucher_num}
-
-Introduzca este código en tu carrito de compras para obtener el descuento.
-
-{shop_name} desarrollado por PrestaShop™
\ No newline at end of file
diff --git a/modules/followup/mails/es/followup_4.html b/modules/followup/mails/es/followup_4.html
deleted file mode 100644
index 9fc0a1c2f..000000000
--- a/modules/followup/mails/es/followup_4.html
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
-
-
- Mensaje de {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hola {firstname} {lastname},
-
-
-
-
-
-
Su cesta de {shop_name}
-
-
-
-
-
-
Usted es parte de nuestros mejores clientes, sin embargo, no han ordenado para {days_threshold} días.
Queremos darle las gracias por la confianza que ustedes depositan en nosotros y nosotros le concedemos un descuento de {amount}% válido en su próximo pedido! Esta oferta es válida para {days} días, así que no pierdas un instante!
-
-
-
-
-
-
Aquí está tu cupón: {voucher_num}
Introduzca este código en tu carrito de compras para obtener el descuento.
-
-
\ No newline at end of file
diff --git a/modules/followup/mails/es/followup_4.txt b/modules/followup/mails/es/followup_4.txt
deleted file mode 100644
index 296b2cdc3..000000000
--- a/modules/followup/mails/es/followup_4.txt
+++ /dev/null
@@ -1,15 +0,0 @@
-{shop_name}
-
-Hola {firstname} {lastname},
-
-Su cesta de {shop_name}
-
-Usted es parte de nuestros mejores clientes, sin embargo, no han ordenado para {days_threshold} días.
-
-Queremos darle las gracias por la confianza que ustedes depositan en nosotros y nosotros le concedemos un descuento de {amount}% válido en su próximo pedido! Esta oferta es válida para {days} días, así que no pierdas un instante!
-
-Aquí está tu cupón: {voucher_num}
-
-Introduzca este código en tu carrito de compras para obtener el descuento.
-
-{shop_name} desarrollado por PrestaShop™
\ No newline at end of file
diff --git a/modules/followup/mails/es/index.php b/modules/followup/mails/es/index.php
deleted file mode 100644
index 3f6561f72..000000000
--- a/modules/followup/mails/es/index.php
+++ /dev/null
@@ -1,35 +0,0 @@
-
-* @copyright 2007-2013 PrestaShop SA
-* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
-* International Registered Trademark & Property of PrestaShop SA
-*/
-
-header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
-header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
-
-header("Cache-Control: no-store, no-cache, must-revalidate");
-header("Cache-Control: post-check=0, pre-check=0", false);
-header("Pragma: no-cache");
-
-header("Location: ../");
-exit;
\ No newline at end of file
diff --git a/modules/followup/mails/fr/followup_1.html b/modules/followup/mails/fr/followup_1.html
deleted file mode 100644
index 07adecc9e..000000000
--- a/modules/followup/mails/fr/followup_1.html
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
-
-
- Message de {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Bonjour {firstname} {lastname},
-
-
-
-
-
-
Votre panier chez {shop_name}
-
-
-
-
-
-
Nous avons remarqué que lors de votre dernier passage chez {shop_name}, vous n'avez pas validé la commande que vous aviez entamée.
Votre panier a été conservé, vous pouvez reprendre votre commande en vous rendant sur notre boutique :
A titre exceptionnel, nous vous accordons également une remise de {amount}% sur votre commande ! Cette offre est valable {days} jours, ne perdez plus un instant !
-
-
-
-
-
-
Voici votre bon de réduction : {voucher_num}
Saisissez ce code dans votre panier afin d'obtenir votre réduction.
-
-
\ No newline at end of file
diff --git a/modules/followup/mails/fr/followup_1.txt b/modules/followup/mails/fr/followup_1.txt
deleted file mode 100644
index e544d5204..000000000
--- a/modules/followup/mails/fr/followup_1.txt
+++ /dev/null
@@ -1,18 +0,0 @@
-Bonjour {firstname} {lastname},
-
-Nous avons remarqué que lors de votre dernier passage chez {shop_name}, vous n'avez pas validé la commande que vous aviez entamée.
-
-Votre panier a été conservé, vous pouvez reprendre votre commande en vous rendant sur notre boutique :
-
-{shop_url}
-
-A titre exceptionnel, nous vous accordons également une remise de {amount}% sur votre commande ! Cette offre est valable {days} jours, ne perdez plus un instant !
-
-Voici votre bon de réduction: {voucher_num}
-
-Saisissez ce code dans votre panier afin d'obtenir votre réduction.
-
-
-
-
-{shop_url} réalisé avec PrestaShop™
diff --git a/modules/followup/mails/fr/followup_2.html b/modules/followup/mails/fr/followup_2.html
deleted file mode 100644
index b68fdd70f..000000000
--- a/modules/followup/mails/fr/followup_2.html
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
-
-
- Message de {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Bonjour {firstname} {lastname},
-
-
-
-
-
-
Merci pour votre commande chez {shop_name}
-
-
-
-
-
-
Merci pour votre commande, à titre exceptionnel, nous vous accordons une remise de {amount}% sur votre prochaine commande ! Cette offre est valable {days} jours, ne perdez plus un instant !
-
-
-
-
-
-
Voici votre bon de réduction : {voucher_num}
Saisissez ce code dans votre panier afin d'obtenir votre réduction.
-
-
\ No newline at end of file
diff --git a/modules/followup/mails/fr/followup_2.txt b/modules/followup/mails/fr/followup_2.txt
deleted file mode 100644
index d0ab92224..000000000
--- a/modules/followup/mails/fr/followup_2.txt
+++ /dev/null
@@ -1,14 +0,0 @@
-Bonjour {firstname} {lastname},
-
-Merci pour votre commande chez {shop_name}
-
-Merci pour votre commande, ? titre exceptionnel, nous vous accordons une remise de {amount}% sur votre prochaine commande ! Cette offre est valable {days} jours, ne perdez plus un instant !
-
-Voici votre bon de réduction : {voucher_num}
-
-Saisissez ce code dans votre panier afin d'obtenir votre réduction.
-
-
-
-
-{shop_url} réalisé avec PrestaShop™
\ No newline at end of file
diff --git a/modules/followup/mails/fr/followup_3.html b/modules/followup/mails/fr/followup_3.html
deleted file mode 100644
index 6e7ebd958..000000000
--- a/modules/followup/mails/fr/followup_3.html
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
-
-
- Message de {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Bonjour {firstname} {lastname},
-
-
-
-
-
-
{shop_name} vous remercie pour votre confiance
-
-
-
-
-
-
Vous faites partie de nos meilleurs clients et à ce titre, nous souhaitons vous remercier pour la confiance dont vous nous faites part.
A titre exceptionnel, nous vous accordons une remise de {amount}% valable sur votre prochaine commande ! Cette offre est valable {days} jours, ne perdez plus un instant !
-
-
-
-
-
-
Voici votre bon de réduction : {voucher_num}
Saisissez ce code dans votre panier afin d'obtenir votre réduction.
-
-
\ No newline at end of file
diff --git a/modules/followup/mails/fr/followup_3.txt b/modules/followup/mails/fr/followup_3.txt
deleted file mode 100644
index c87911e93..000000000
--- a/modules/followup/mails/fr/followup_3.txt
+++ /dev/null
@@ -1,14 +0,0 @@
-Bonjour {firstname} {lastname},
-
-Vous faites partie de nos meilleurs clients et à ce titre, nous souhaitons vous remercier pour la confiance dont vous nous faites part.
-
-A titre exceptionnel, nous vous accordons une remise de {amount}% valable sur votre prochaine commande ! Cette offre est valable {days} jours, ne perdez plus un instant !
-
-Voici votre bon de réduction : {voucher_num}
-
-Saisissez ce code dans votre panier afin d'obtenir votre réduction.
-
-
-
-
-{shop_url} réalisé avec PrestaShop™
\ No newline at end of file
diff --git a/modules/followup/mails/fr/followup_4.html b/modules/followup/mails/fr/followup_4.html
deleted file mode 100644
index ccb070227..000000000
--- a/modules/followup/mails/fr/followup_4.html
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
-
-
- Message de {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Bonjour {firstname} {lastname},
-
-
-
-
-
-
Vous nous manquez chez {shop_name}
-
-
-
-
-
-
Vous faites partie de nos meilleurs clients cependant vous n'avez pas passé de commande depuis {days_threshold} jours.
Nous souhaitons vous remercier pour la confiance dont vous nous faites part et à ce titre, nous vous accordons une remise de {amount}% valable sur votre prochaine commande ! Cette offre est valable {days} jours, ne perdez plus un instant !
-
-
-
-
-
-
Voici votre bon de réduction : {voucher_num}
Saisissez ce code dans votre panier afin d'obtenir votre réduction.
-
-
\ No newline at end of file
diff --git a/modules/followup/mails/fr/followup_4.txt b/modules/followup/mails/fr/followup_4.txt
deleted file mode 100644
index 691d4123d..000000000
--- a/modules/followup/mails/fr/followup_4.txt
+++ /dev/null
@@ -1,13 +0,0 @@
-Bonjour {firstname} {lastname},
-
-Vous faites partie de nos meilleurs clients cependant vous n'avez pas passé de commande depuis {days_threshold} jours.
-
-Nous souhaitons vous remercier pour la confiance dont vous nous faites part et ? ce titre, nous vous accordons une remise de {amount}% valable sur votre prochaine commande ! Cette offre est valable {days} jours, ne perdez plus un instant !
-
-Voici votre bon de réduction : {voucher_num}
-
-Saisissez ce code dans votre panier afin d'obtenir votre réduction.
-
-
-
-{shop_url} réalisé avec PrestaShop™
\ No newline at end of file
diff --git a/modules/followup/mails/fr/index.php b/modules/followup/mails/fr/index.php
deleted file mode 100644
index 3f6561f72..000000000
--- a/modules/followup/mails/fr/index.php
+++ /dev/null
@@ -1,35 +0,0 @@
-
-* @copyright 2007-2013 PrestaShop SA
-* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
-* International Registered Trademark & Property of PrestaShop SA
-*/
-
-header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
-header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
-
-header("Cache-Control: no-store, no-cache, must-revalidate");
-header("Cache-Control: post-check=0, pre-check=0", false);
-header("Pragma: no-cache");
-
-header("Location: ../");
-exit;
\ No newline at end of file
diff --git a/modules/followup/mails/it/followup_1.html b/modules/followup/mails/it/followup_1.html
deleted file mode 100644
index bd7b2d6d6..000000000
--- a/modules/followup/mails/it/followup_1.html
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-
-
- Messaggio da {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Salve {firstname} {lastname},
-
-
-
-
-
-
Il tuo carrello su {shop_name}
-
-
-
-
-
-
Abbiamo notato che durante la tua ultima visita a {shop_name}, non hai convalidato un ordine che avevi iniziato.
Il tuo carrello è stato salvato, puoi riprendere l'ordine visitando il nostro negozio:
Come incentivo, possiamo offrirti uno sconto del {amount}% sul tuo prossimo ordine! Questa offerta è valida per {days} giorni, quindi approfittane subito!
-
-
-
-
-
-
Ecco il tuo buono: {voucher_num}
Inserisci questo codice nel tuo carrello per ottenere lo sconto.
-
-
-
\ No newline at end of file
diff --git a/modules/followup/mails/it/followup_1.txt b/modules/followup/mails/it/followup_1.txt
deleted file mode 100644
index 71035a8b4..000000000
--- a/modules/followup/mails/it/followup_1.txt
+++ /dev/null
@@ -1,13 +0,0 @@
-Salve {firstname} {lastname},
-
-Abbiamo notato che durante la tua ultima visita a {shop_name}, non hai convalidato un ordine che avevi iniziato.
-
-Il tuo carrello è stato salvato, puoi riprendere l'ordine visitando il nostro negozio:
-
-{shop_url}
-
-Come incentivo, possiamo offrirti uno sconto del {amount}% nel tuo prossimo ordine! Questa offerta è valida per {days} giorni, quindi approfittane subito!
-
-Ecco il tuo buono: {voucher_num}
-
-Inserisci questo codice nel tuo carrello per ottenere lo sconto.
\ No newline at end of file
diff --git a/modules/followup/mails/it/followup_2.html b/modules/followup/mails/it/followup_2.html
deleted file mode 100644
index 56bd54d44..000000000
--- a/modules/followup/mails/it/followup_2.html
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-
-
- Messaggio da {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Salve {firstname} {lastname},
-
-
-
-
-
-
Grazie del tuo ordine su {shop_name}
-
-
-
-
-
-
Per ringraziarti, vogliamo offrirti uno sconto del {amount}% sul tuo prossimo ordine! Questa offerta è valida per {days} giorni, quindi approfittane subito!
-
-
-
-
-
-
Ecco il tuo buono: {voucher_num}
Inserisci questo codice nel tuo carrello per ottenere lo sconto.
-
-
-
\ No newline at end of file
diff --git a/modules/followup/mails/it/followup_2.txt b/modules/followup/mails/it/followup_2.txt
deleted file mode 100644
index 3d17fe89b..000000000
--- a/modules/followup/mails/it/followup_2.txt
+++ /dev/null
@@ -1,9 +0,0 @@
-Salve {firstname} {lastname},
-
-Grazie del tuo ordine su {shop_name}
-
-Per ringraziarti, vogliamo offrirti uno sconto del {amount}% sul tuo prossimo ordine! Questa offerta è valida per {days} giorni, quindi approfittane subito!
-
-Ecco il tuo buono: {voucher_num}
-
-Inserisci questo codice nel carrello per ottenere lo sconto.
\ No newline at end of file
diff --git a/modules/followup/mails/it/followup_3.html b/modules/followup/mails/it/followup_3.html
deleted file mode 100644
index ae1852844..000000000
--- a/modules/followup/mails/it/followup_3.html
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-
-
- Messaggio da {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Salve {firstname} {lastname},
-
-
-
-
-
-
Grazie della tua fiducia
-
-
-
-
-
-
Sei uno dei nostro migliori clienti e per questo vogliamo ringraziarti per la fiducia che ci accordi.
Come apprezzamento della tua fedeltà, vogliamo offrirti uno sconto del {amount}% valido per il tuo prossimo ordine! Questa offerta è valida per {days} giorni, quindi approfittane subito!
-
-
-
-
-
-
Ecco il tuo buono: {voucher_num}
Inserisci questo codice nel tuo carrello per ottenere lo sconto.
-
-
-
\ No newline at end of file
diff --git a/modules/followup/mails/it/followup_3.txt b/modules/followup/mails/it/followup_3.txt
deleted file mode 100644
index 23dfb25ae..000000000
--- a/modules/followup/mails/it/followup_3.txt
+++ /dev/null
@@ -1,9 +0,0 @@
-Salve {firstname} {lastname},
-
-Sei uno dei nostri migliori clienti e per questo vogliamo ringraziarti per la fiducia che ci accordi.
-
-Come apprezzamento della tua fedeltà, vogliamo offrirti uno sconto del {amount}% valido per il tuo prossimo ordine! Questa offerta è valida per {days} giorni, quindi approfittane subito!
-
-Ecco il tuo buono: {voucher_num}
-
-Inserisci questo codice nel tuo carrello per ottenere lo sconto.
\ No newline at end of file
diff --git a/modules/followup/mails/it/followup_4.html b/modules/followup/mails/it/followup_4.html
deleted file mode 100644
index d48d3b8ab..000000000
--- a/modules/followup/mails/it/followup_4.html
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-
-
- Messaggio da {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Salve {firstname} {lastname},
-
-
-
-
-
-
Il tuo carrello su {shop_name}
-
-
-
-
-
-
Sei uno dei nostri migliori clienti, però sono {days_threshold} giorni che non effettui un ordine.
Vogliamo ringraziarti della fiducia che ci hai accordato e vogliamo offrirti uno sconto del {amount}% valido sul tuo prossimo ordine! Questa offerta è valida per {days} giorni, quindi approfittane subito!
-
-
-
-
-
-
Ecco il tuo buono: {voucher_num}
Inserisci questo codice nel tuo carrello per ottenere il tuo sconto.
-
-
-
\ No newline at end of file
diff --git a/modules/followup/mails/it/followup_4.txt b/modules/followup/mails/it/followup_4.txt
deleted file mode 100644
index 8dddccf88..000000000
--- a/modules/followup/mails/it/followup_4.txt
+++ /dev/null
@@ -1,11 +0,0 @@
-Ci manchi a {shop_name}
-
-Salve {firstname} {lastname},
-
-Sei uno dei nostri clienti migliori, però sono {days_threshold} giorni che non effettui un ordine.
-
-Vogliamo ringraziarti per la fiducia che ci hai accordato e vogliamo offrirti uno sconto del {amount}% valido sul tuo prossimo ordine! Questa offerta è valida per {days} giorni, quindi approfittane subito!
-
-Ecco il tuo buono: {voucher_num}
-
-Inserisci questo codice nel tuo carrello per ottenere il tuo sconto.
\ No newline at end of file
diff --git a/modules/followup/mails/it/index.php b/modules/followup/mails/it/index.php
deleted file mode 100644
index 3f6561f72..000000000
--- a/modules/followup/mails/it/index.php
+++ /dev/null
@@ -1,35 +0,0 @@
-
-* @copyright 2007-2013 PrestaShop SA
-* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
-* International Registered Trademark & Property of PrestaShop SA
-*/
-
-header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
-header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
-
-header("Cache-Control: no-store, no-cache, must-revalidate");
-header("Cache-Control: post-check=0, pre-check=0", false);
-header("Pragma: no-cache");
-
-header("Location: ../");
-exit;
\ No newline at end of file
diff --git a/modules/followup/translations/de.php b/modules/followup/translations/de.php
deleted file mode 100644
index 806df2ab7..000000000
--- a/modules/followup/translations/de.php
+++ /dev/null
@@ -1,44 +0,0 @@
-followup_57476355fcd04050bff196ae9aa4673c'] = 'Bleiben Sie dran an Ihren Kunden mit täglichen kundenspezifischen E-Mails';
-$_MODULE['<{followup}prestashop>followup_f71a41841c80c2ef0ec02a6ad5449c65'] = 'Sie sind sicher, dass Sie alle Einstellungen und Ihre Logs löschen wollen?';
-$_MODULE['<{followup}prestashop>followup_2faec1f9f8cc7f8f40d521c4dd574f49'] = 'Aktivieren';
-$_MODULE['<{followup}prestashop>followup_dcc0220e44b6d9be3d709d5c2cd34917'] = 'Im nächsten Schritt werden %d E-Mails versendet';
-$_MODULE['<{followup}prestashop>followup_1deaabda093f617a57f732c07e635fac'] = 'Detaillierte Statistik der letzten 30 Tage:';
-$_MODULE['<{followup}prestashop>followup_f23b0eec6c25c49afa4b29c57e671728'] = 'S = Anzahl der gesendeten E-Mails';
-$_MODULE['<{followup}prestashop>followup_fde0b9a66bffdd6ee0886613e8031d9a'] = 'U = Anzahl der verwendeten Rabatte (nur bestätigte Bestellungen)';
-$_MODULE['<{followup}prestashop>followup_85b6769250887ba6c16099596c75164d'] = 'noch keine Statistik';
-$_MODULE['<{followup}prestashop>followup_f4f70727dc34561dfde1a3c529b6205c'] = 'Einstellungen';
-$_MODULE['<{followup}prestashop>followup_b547c073d144a57761d1d00d0b9d9f27'] = 'Gelöschte Warenkörbe';
-$_MODULE['<{followup}prestashop>followup_a8b8dbd070a92fb8b17baab71d8d633f'] = 'Neu sortieren';
-$_MODULE['<{followup}prestashop>followup_895858cf10b8a1750a42875cb9c69092'] = 'Erzeugen einen Rabatt Für jede bestätigte Bestellung und senden Sie ihn an den Kunden';
-$_MODULE['<{followup}prestashop>followup_2a63f555989152ba866b43a1faacd680'] = 'Schwelle';
-$_MODULE['<{followup}prestashop>followup_e552313de5ebebdafa8bfa0dcc703e19'] = 'Erzeugen Sie einen Rabatt und senden Sie ihn an alle Kunden, die mindestens eine Bestellung durchgeführt haben und seit einem bestimmten Zeitraum nichts mehr bestellt haben';
-$_MODULE['<{followup}prestashop>followup_c9cc8cce247e49bae79f15173ce97354'] = 'Speichern';
-$_MODULE['<{followup}prestashop>followup_cceb59e78d00c10436ff5e777dd5d895'] = '% = Umrechnungskurs';
-$_MODULE['<{followup}prestashop>followup_edf9feeab43a7623f6afc152d1ede515'] = 'Rabatt für Ihren abgebrochenen Warenkorb';
-$_MODULE['<{followup}prestashop>followup_a053fc9952a7dfc79282eba56ab8ad3a'] = 'Danke für Ihre Bestellung';
-$_MODULE['<{followup}prestashop>followup_7fcd592dd47028c7c1f2d0ce9168a303'] = 'Sie sind einer unserer besten Kunden';
-$_MODULE['<{followup}prestashop>followup_599fac49ffe947cd0f9e934e6af89879'] = 'Vier Arten von E-Mail Alerts, um in Kontakt mit Ihren Kunden bleiben!';
-$_MODULE['<{followup}prestashop>followup_ea9dc62a0ddf4640f019f04a22ab9835'] = 'Generieren Sie einen Rabatt für jeden gelöschten Warenkorb (ohne Reihenfolge) und senden Sie ihn an den Kunden';
-$_MODULE['<{followup}prestashop>followup_b30690be173bcd4a83df0cd68f89a385'] = 'Rabattbetrag';
-$_MODULE['<{followup}prestashop>followup_3ae92a92fa710dca82e5b6667da30b7b'] = 'Im nächsten Schritt wird %d E-Mail versendet';
-$_MODULE['<{followup}prestashop>followup_8b83489bd116cb60e2f348e9c63cd7f6'] = 'Beste Kunden';
-$_MODULE['<{followup}prestashop>followup_a46ad892f7f00e051cc90050ff2e1ddf'] = 'Erzeugen Sie einen Rabatt für jeden Kunden, der eine bestimmte Schwelle erreicht, und senden Sie ihn an den Kunden';
-$_MODULE['<{followup}prestashop>followup_7d75b7b0f976b3091f490864c6ffbf97'] = 'Schlechte Kunden';
-$_MODULE['<{followup}prestashop>followup_d82843c16839bfb05827d1912d89c917'] = 'Seit x Tagen';
-$_MODULE['<{followup}prestashop>followup_c33e404a441c6ba9648f88af3c68a1ca'] = 'Statistik';
-$_MODULE['<{followup}prestashop>followup_66ff4e89c767ab0a4e5ddc0251a101bc'] = 'Schlechter Kunde';
-$_MODULE['<{followup}prestashop>followup_c2ab23672d4bb31c7664bf8e854a10f7'] = 'Wir vermissen Sie';
-$_MODULE['<{followup}prestashop>followup_3fb7b0bbf0c95bba3ed2ba0b147ca588'] = 'Löschen Sie veraltete Rabatte bei jedem Start, um die Datenbank zu leeren';
-$_MODULE['<{followup}prestashop>followup_9c34e90380dac7b56fdd19192a99d531'] = 'Kundenkontakt';
-$_MODULE['<{followup}prestashop>followup_8b1aa589b33a54906ae78f5820eab42c'] = 'Definieren Sie die Einstellungen und setzen Sie diese URL in eine Crontab oder rufen Sie sie manuell täglich auf:';
-$_MODULE['<{followup}prestashop>followup_2018945d252b94aeb99b0909f288717c'] = 'Rabattgültigkeit';
-$_MODULE['<{followup}prestashop>followup_225e75c29d32392d311f5dc94c792384'] = 'Tag (e)';
-$_MODULE['<{followup}prestashop>followup_44749712dbec183e983dcd78a7736c41'] = 'Datum';
-$_MODULE['<{followup}prestashop>followup_5e53dfa887dfb989f0bc3e9fb9b34a2d'] = 'Bester Kunde';
-$_MODULE['<{followup}prestashop>followup_5dbc98dcc983a70728bd082d1a47546e'] = 'S';
-$_MODULE['<{followup}prestashop>followup_4c614360da93c0a041b22e537de151eb'] = 'U';
diff --git a/modules/followup/translations/en.php b/modules/followup/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/followup/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-followup_57476355fcd04050bff196ae9aa4673c'] = 'Retome contacto con sus clientes enviando emails diariamente';
-$_MODULE['<{followup}prestashop>followup_f71a41841c80c2ef0ec02a6ad5449c65'] = '¿Está seguro de querer suprimir sus parámetros y sus estadísticas?';
-$_MODULE['<{followup}prestashop>followup_2faec1f9f8cc7f8f40d521c4dd574f49'] = 'Activado';
-$_MODULE['<{followup}prestashop>followup_dcc0220e44b6d9be3d709d5c2cd34917'] = 'El próximo envío transmmitirá: %d emails';
-$_MODULE['<{followup}prestashop>followup_1deaabda093f617a57f732c07e635fac'] = 'estadísticas detalladas de los 30 últimos días:';
-$_MODULE['<{followup}prestashop>followup_f23b0eec6c25c49afa4b29c57e671728'] = 'E= Número de emails enviados';
-$_MODULE['<{followup}prestashop>followup_fde0b9a66bffdd6ee0886613e8031d9a'] = 'U= Número de vales de compra utilizados (pedidos válidos únicamente)';
-$_MODULE['<{followup}prestashop>followup_85b6769250887ba6c16099596c75164d'] = 'Ningún dato registrado por el momento';
-$_MODULE['<{followup}prestashop>followup_f4f70727dc34561dfde1a3c529b6205c'] = 'Configuración';
-$_MODULE['<{followup}prestashop>followup_b547c073d144a57761d1d00d0b9d9f27'] = 'Carritos anulados';
-$_MODULE['<{followup}prestashop>followup_a8b8dbd070a92fb8b17baab71d8d633f'] = 'Pedir de nuevo';
-$_MODULE['<{followup}prestashop>followup_895858cf10b8a1750a42875cb9c69092'] = 'Para cada pedido validado, genera un vale de compra y lo envía al cliente';
-$_MODULE['<{followup}prestashop>followup_2a63f555989152ba866b43a1faacd680'] = 'Importe';
-$_MODULE['<{followup}prestashop>followup_e552313de5ebebdafa8bfa0dcc703e19'] = 'Para cada cliente que no haya hecho un pedido desde un cierto tiempo, genera un vale de compra y se lo envía';
-$_MODULE['<{followup}prestashop>followup_c9cc8cce247e49bae79f15173ce97354'] = 'Guardar';
-$_MODULE['<{followup}prestashop>followup_cceb59e78d00c10436ff5e777dd5d895'] = 'ù= Tasa de transformación';
-$_MODULE['<{followup}prestashop>followup_edf9feeab43a7623f6afc152d1ede515'] = 'Vale de descuento para su carrito abandonado';
-$_MODULE['<{followup}prestashop>followup_a053fc9952a7dfc79282eba56ab8ad3a'] = 'Gracias por su pedido';
-$_MODULE['<{followup}prestashop>followup_7fcd592dd47028c7c1f2d0ce9168a303'] = 'Es usted uno de nuestros mejores clientes';
-$_MODULE['<{followup}prestashop>followup_599fac49ffe947cd0f9e934e6af89879'] = 'Existen cuatro maneras de estar en contacto con sus clientes';
-$_MODULE['<{followup}prestashop>followup_ea9dc62a0ddf4640f019f04a22ab9835'] = 'Cada carrito abandonado (sin pedido) genera un vale de compra y lo envía al cliente';
-$_MODULE['<{followup}prestashop>followup_b30690be173bcd4a83df0cd68f89a385'] = 'Importe del descuento';
-$_MODULE['<{followup}prestashop>followup_3ae92a92fa710dca82e5b6667da30b7b'] = 'El próximo envío transmmitirá: %d email';
-$_MODULE['<{followup}prestashop>followup_8b83489bd116cb60e2f348e9c63cd7f6'] = 'Mejores clientes';
-$_MODULE['<{followup}prestashop>followup_a46ad892f7f00e051cc90050ff2e1ddf'] = 'Para cada cliente cuyo pedido total alcanza cierto importe en un plazo de tiempo concreto, genera un vale de compra y se lo envía';
-$_MODULE['<{followup}prestashop>followup_7d75b7b0f976b3091f490864c6ffbf97'] = 'Malos clientes';
-$_MODULE['<{followup}prestashop>followup_d82843c16839bfb05827d1912d89c917'] = 'Desde X días';
-$_MODULE['<{followup}prestashop>followup_3fb7b0bbf0c95bba3ed2ba0b147ca588'] = 'Suprimir los vales de compra cuya fecha de expiración está caducada para limpiar los datos';
-$_MODULE['<{followup}prestashop>followup_c33e404a441c6ba9648f88af3c68a1ca'] = 'Estadísticas';
-$_MODULE['<{followup}prestashop>followup_66ff4e89c767ab0a4e5ddc0251a101bc'] = 'Malos clientes';
-$_MODULE['<{followup}prestashop>followup_c2ab23672d4bb31c7664bf8e854a10f7'] = 'le echamos de menos';
-$_MODULE['<{followup}prestashop>followup_9c34e90380dac7b56fdd19192a99d531'] = 'Retome contacto con sus clientes';
-$_MODULE['<{followup}prestashop>followup_8b1aa589b33a54906ae78f5820eab42c'] = 'Efectúe sus reglages y añada esta URL a sus crontab o llámela manualmente cada día:';
-$_MODULE['<{followup}prestashop>followup_2018945d252b94aeb99b0909f288717c'] = 'Duración de validez';
-$_MODULE['<{followup}prestashop>followup_225e75c29d32392d311f5dc94c792384'] = 'día(s)';
-$_MODULE['<{followup}prestashop>followup_44749712dbec183e983dcd78a7736c41'] = 'Fecha';
-$_MODULE['<{followup}prestashop>followup_5e53dfa887dfb989f0bc3e9fb9b34a2d'] = 'Mejores clientes';
-$_MODULE['<{followup}prestashop>followup_5dbc98dcc983a70728bd082d1a47546e'] = 'E';
-$_MODULE['<{followup}prestashop>followup_4c614360da93c0a041b22e537de151eb'] = 'U';
diff --git a/modules/followup/translations/fr.php b/modules/followup/translations/fr.php
deleted file mode 100644
index 41f3b0dce..000000000
--- a/modules/followup/translations/fr.php
+++ /dev/null
@@ -1,44 +0,0 @@
-followup_1deaabda093f617a57f732c07e635fac'] = 'Statistiques détaillées sur les 30 derniers jours :';
-$_MODULE['<{followup}prestashop>followup_f23b0eec6c25c49afa4b29c57e671728'] = 'E = Nombre d\'e-mails envoyés';
-$_MODULE['<{followup}prestashop>followup_fde0b9a66bffdd6ee0886613e8031d9a'] = 'U = Nombre de bons d\'achat utilisés (commandes valides uniquement)';
-$_MODULE['<{followup}prestashop>followup_85b6769250887ba6c16099596c75164d'] = 'Aucune donnée enregistrée pour l\'instant.';
-$_MODULE['<{followup}prestashop>followup_57476355fcd04050bff196ae9aa4673c'] = 'Relancez vos clients grâce à des envoi d\'e-mails quotidiens personnalisés.';
-$_MODULE['<{followup}prestashop>followup_f71a41841c80c2ef0ec02a6ad5449c65'] = 'Êtes-vous sûr de vouloir supprimer vos paramètres ainsi que vos statistiques liées aux relances ?';
-$_MODULE['<{followup}prestashop>followup_2faec1f9f8cc7f8f40d521c4dd574f49'] = 'Activé';
-$_MODULE['<{followup}prestashop>followup_dcc0220e44b6d9be3d709d5c2cd34917'] = 'Le prochain envoi transmettra : %d e-mails';
-$_MODULE['<{followup}prestashop>followup_b547c073d144a57761d1d00d0b9d9f27'] = 'Paniers annulés';
-$_MODULE['<{followup}prestashop>followup_c9cc8cce247e49bae79f15173ce97354'] = 'Enregistrer';
-$_MODULE['<{followup}prestashop>followup_cceb59e78d00c10436ff5e777dd5d895'] = '% = Taux de transformation';
-$_MODULE['<{followup}prestashop>followup_edf9feeab43a7623f6afc152d1ede515'] = 'Bon de réduction pour votre panier abandonné';
-$_MODULE['<{followup}prestashop>followup_a053fc9952a7dfc79282eba56ab8ad3a'] = 'Merci pour votre commande.';
-$_MODULE['<{followup}prestashop>followup_f4f70727dc34561dfde1a3c529b6205c'] = 'Paramètres';
-$_MODULE['<{followup}prestashop>followup_a8b8dbd070a92fb8b17baab71d8d633f'] = 'Re-commander';
-$_MODULE['<{followup}prestashop>followup_895858cf10b8a1750a42875cb9c69092'] = 'Pour chaque commande validée, génère un bon d\'achat et l\'envoie au client';
-$_MODULE['<{followup}prestashop>followup_e552313de5ebebdafa8bfa0dcc703e19'] = 'Pour chaque client ayant déjà passé commande au moins une fois et sans commande depuis une certaine durée, génère un bon d\'achat et l\'envoie au client';
-$_MODULE['<{followup}prestashop>followup_7fcd592dd47028c7c1f2d0ce9168a303'] = 'Vous êtes l\'un de nos meilleurs clients !';
-$_MODULE['<{followup}prestashop>followup_2a63f555989152ba866b43a1faacd680'] = 'Seuil';
-$_MODULE['<{followup}prestashop>followup_8b83489bd116cb60e2f348e9c63cd7f6'] = 'Meilleurs clients';
-$_MODULE['<{followup}prestashop>followup_a46ad892f7f00e051cc90050ff2e1ddf'] = 'Pour chaque client dont le total des commandes atteint un certain seuil, génère un bon d\'achat et l\'envoie au client';
-$_MODULE['<{followup}prestashop>followup_7d75b7b0f976b3091f490864c6ffbf97'] = 'Mauvais clients';
-$_MODULE['<{followup}prestashop>followup_d82843c16839bfb05827d1912d89c917'] = 'Depuis x jours';
-$_MODULE['<{followup}prestashop>followup_3fb7b0bbf0c95bba3ed2ba0b147ca588'] = 'Supprimer les bons d\'achat dont la date d\'expiration est dépassée afin de nettoyer la base de données.';
-$_MODULE['<{followup}prestashop>followup_c33e404a441c6ba9648f88af3c68a1ca'] = 'Statistiques';
-$_MODULE['<{followup}prestashop>followup_66ff4e89c767ab0a4e5ddc0251a101bc'] = 'Mauvais clients';
-$_MODULE['<{followup}prestashop>followup_c2ab23672d4bb31c7664bf8e854a10f7'] = 'Vous nous manquez !';
-$_MODULE['<{followup}prestashop>followup_599fac49ffe947cd0f9e934e6af89879'] = 'Quatre types de relances afin de rester en contact avec vos clients !';
-$_MODULE['<{followup}prestashop>followup_ea9dc62a0ddf4640f019f04a22ab9835'] = 'Pour chaque panier abandonné (sans commande), génère un bon d\'achat et l\'envoie au client';
-$_MODULE['<{followup}prestashop>followup_b30690be173bcd4a83df0cd68f89a385'] = 'Montant de la remise';
-$_MODULE['<{followup}prestashop>followup_3ae92a92fa710dca82e5b6667da30b7b'] = 'Le prochain envoi transmettra : %d e-mail';
-$_MODULE['<{followup}prestashop>followup_44749712dbec183e983dcd78a7736c41'] = 'Date';
-$_MODULE['<{followup}prestashop>followup_5e53dfa887dfb989f0bc3e9fb9b34a2d'] = 'Meilleurs clients';
-$_MODULE['<{followup}prestashop>followup_5dbc98dcc983a70728bd082d1a47546e'] = 'E';
-$_MODULE['<{followup}prestashop>followup_4c614360da93c0a041b22e537de151eb'] = 'U';
-$_MODULE['<{followup}prestashop>followup_9c34e90380dac7b56fdd19192a99d531'] = 'Relance des clients';
-$_MODULE['<{followup}prestashop>followup_8b1aa589b33a54906ae78f5820eab42c'] = 'Effectuez vos réglages et ajoutez cette URL à votre crontab, ou visitez-la manuellement chaque jour :';
-$_MODULE['<{followup}prestashop>followup_2018945d252b94aeb99b0909f288717c'] = 'Durée de validité';
-$_MODULE['<{followup}prestashop>followup_225e75c29d32392d311f5dc94c792384'] = 'jour(s)';
diff --git a/modules/followup/translations/it.php b/modules/followup/translations/it.php
deleted file mode 100644
index 6e941a752..000000000
--- a/modules/followup/translations/it.php
+++ /dev/null
@@ -1,44 +0,0 @@
-followup_57476355fcd04050bff196ae9aa4673c'] = 'Segui i tuoi clienti con e-mail quotidiane personalizzate';
-$_MODULE['<{followup}prestashop>followup_f71a41841c80c2ef0ec02a6ad5449c65'] = 'Sei sicuro di voler eliminare tutte le impostazioni ed i registri?';
-$_MODULE['<{followup}prestashop>followup_2faec1f9f8cc7f8f40d521c4dd574f49'] = 'Attiva';
-$_MODULE['<{followup}prestashop>followup_dcc0220e44b6d9be3d709d5c2cd34917'] = 'Next process will send: %d e-mails';
-$_MODULE['<{followup}prestashop>followup_1deaabda093f617a57f732c07e635fac'] = 'Statistiche dettagliate per ultimi 30 giorni:';
-$_MODULE['<{followup}prestashop>followup_f23b0eec6c25c49afa4b29c57e671728'] = 'S = numero di e-mail inviate';
-$_MODULE['<{followup}prestashop>followup_fde0b9a66bffdd6ee0886613e8031d9a'] = 'U = Numero di sconti usati (solo ordini validi)';
-$_MODULE['<{followup}prestashop>followup_85b6769250887ba6c16099596c75164d'] = 'Nessuna statistica ancora';
-$_MODULE['<{followup}prestashop>followup_f4f70727dc34561dfde1a3c529b6205c'] = 'Impostazioni';
-$_MODULE['<{followup}prestashop>followup_b547c073d144a57761d1d00d0b9d9f27'] = 'Carrelli cancellati';
-$_MODULE['<{followup}prestashop>followup_a8b8dbd070a92fb8b17baab71d8d633f'] = 'Riordino';
-$_MODULE['<{followup}prestashop>followup_895858cf10b8a1750a42875cb9c69092'] = 'Per ogni ordine convalidato, genera uno sconto e invialo al cliente';
-$_MODULE['<{followup}prestashop>followup_2a63f555989152ba866b43a1faacd680'] = 'Soglia';
-$_MODULE['<{followup}prestashop>followup_e552313de5ebebdafa8bfa0dcc703e19'] = 'Per ogni cliente che ha già inviato almeno un ordine e senza ordini da un periodo dato, genera uno sconto e invialo al cliente';
-$_MODULE['<{followup}prestashop>followup_c9cc8cce247e49bae79f15173ce97354'] = 'Salva';
-$_MODULE['<{followup}prestashop>followup_cceb59e78d00c10436ff5e777dd5d895'] = '% = Tasso di conversione';
-$_MODULE['<{followup}prestashop>followup_edf9feeab43a7623f6afc152d1ede515'] = 'Sconto per il carrello annullato';
-$_MODULE['<{followup}prestashop>followup_a053fc9952a7dfc79282eba56ab8ad3a'] = 'Grazie per il vostro ordine';
-$_MODULE['<{followup}prestashop>followup_7fcd592dd47028c7c1f2d0ce9168a303'] = 'Sei uno dei nostri migliori clienti';
-$_MODULE['<{followup}prestashop>followup_599fac49ffe947cd0f9e934e6af89879'] = 'Quattro tipi di avvisi via e-mail per rimanere in contatto con i tuoi clienti!';
-$_MODULE['<{followup}prestashop>followup_ea9dc62a0ddf4640f019f04a22ab9835'] = 'Per ogni carrello annullato (senza ordine), genera uno sconto e invialo al cliente';
-$_MODULE['<{followup}prestashop>followup_b30690be173bcd4a83df0cd68f89a385'] = 'Importo sconto';
-$_MODULE['<{followup}prestashop>followup_3ae92a92fa710dca82e5b6667da30b7b'] = 'Next process will send: %d e-mails';
-$_MODULE['<{followup}prestashop>followup_8b83489bd116cb60e2f348e9c63cd7f6'] = 'Migliori clienti';
-$_MODULE['<{followup}prestashop>followup_a46ad892f7f00e051cc90050ff2e1ddf'] = 'Per ogni cliente che aumenta una soglia, genera uno sconto e invialo al cliente';
-$_MODULE['<{followup}prestashop>followup_7d75b7b0f976b3091f490864c6ffbf97'] = 'Cattivi clienti';
-$_MODULE['<{followup}prestashop>followup_d82843c16839bfb05827d1912d89c917'] = 'Da x giorni';
-$_MODULE['<{followup}prestashop>followup_3fb7b0bbf0c95bba3ed2ba0b147ca588'] = 'Elimina sconti scaduti nel corso di ogni lancio per la pulizia del database';
-$_MODULE['<{followup}prestashop>followup_c33e404a441c6ba9648f88af3c68a1ca'] = 'Statistiche';
-$_MODULE['<{followup}prestashop>followup_66ff4e89c767ab0a4e5ddc0251a101bc'] = 'Catt. cliente';
-$_MODULE['<{followup}prestashop>followup_c2ab23672d4bb31c7664bf8e854a10f7'] = 'Ci manchi';
-$_MODULE['<{followup}prestashop>followup_9c34e90380dac7b56fdd19192a99d531'] = 'Follow-up clienti';
-$_MODULE['<{followup}prestashop>followup_8b1aa589b33a54906ae78f5820eab42c'] = 'Definire le impostazioni e mettere questo URL nel crontab o chiamare ogni giorno:';
-$_MODULE['<{followup}prestashop>followup_2018945d252b94aeb99b0909f288717c'] = 'Validità sconto';
-$_MODULE['<{followup}prestashop>followup_225e75c29d32392d311f5dc94c792384'] = 'giorno (i)';
-$_MODULE['<{followup}prestashop>followup_44749712dbec183e983dcd78a7736c41'] = 'Data';
-$_MODULE['<{followup}prestashop>followup_5e53dfa887dfb989f0bc3e9fb9b34a2d'] = 'Miglior cliente';
-$_MODULE['<{followup}prestashop>followup_5dbc98dcc983a70728bd082d1a47546e'] = 'S';
-$_MODULE['<{followup}prestashop>followup_4c614360da93c0a041b22e537de151eb'] = 'U';
diff --git a/modules/graphartichow/translations/de.php b/modules/graphartichow/translations/de.php
deleted file mode 100644
index b5312d31f..000000000
--- a/modules/graphartichow/translations/de.php
+++ /dev/null
@@ -1,7 +0,0 @@
-graphartichow_6b1e6241446c46f7ab8d28ae83d53e71'] = 'Artichow';
-$_MODULE['<{graphartichow}prestashop>graphartichow_f2f747178b068abc9cbeac03d93480e6'] = 'Artichow ist eine Bibliothek, die die Anzeige von einfachen Bild-basierten Grafiken mit PHP und GD ermöglicht.';
diff --git a/modules/graphartichow/translations/en.php b/modules/graphartichow/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/graphartichow/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-graphartichow_6b1e6241446c46f7ab8d28ae83d53e71'] = 'Artichow';
-$_MODULE['<{graphartichow}prestashop>graphartichow_f2f747178b068abc9cbeac03d93480e6'] = 'Artichow es una biblioteca que permite mostrar simples gráficos cuadro-base usando el PHP y GD.';
diff --git a/modules/graphartichow/translations/fr.php b/modules/graphartichow/translations/fr.php
deleted file mode 100644
index b96ba1d64..000000000
--- a/modules/graphartichow/translations/fr.php
+++ /dev/null
@@ -1,7 +0,0 @@
-graphartichow_6b1e6241446c46f7ab8d28ae83d53e71'] = 'Artichow';
-$_MODULE['<{graphartichow}prestashop>graphartichow_f2f747178b068abc9cbeac03d93480e6'] = 'Artichow est une bibliothèque qui permet d\'afficher des graphiques simples utilisant PHP et GD.';
diff --git a/modules/graphartichow/translations/it.php b/modules/graphartichow/translations/it.php
deleted file mode 100644
index 047431fdc..000000000
--- a/modules/graphartichow/translations/it.php
+++ /dev/null
@@ -1,7 +0,0 @@
-graphartichow_6b1e6241446c46f7ab8d28ae83d53e71'] = 'Artichow';
-$_MODULE['<{graphartichow}prestashop>graphartichow_f2f747178b068abc9cbeac03d93480e6'] = 'Artichow è una libreria che permette la visualizzazione di grafici semplici basati su immagini con PHP e GD.';
diff --git a/modules/graphgooglechart/translations/de.php b/modules/graphgooglechart/translations/de.php
deleted file mode 100644
index b34a72d6b..000000000
--- a/modules/graphgooglechart/translations/de.php
+++ /dev/null
@@ -1,7 +0,0 @@
-graphgooglechart_b3b8abce7e542a30dc415f612d4e0f23'] = 'Google Chart';
-$_MODULE['<{graphgooglechart}prestashop>graphgooglechart_e01118a336bd13f2f0e70bf7178c1fdc'] = 'Mit der Google Chart API können Sie dynamische Charts generieren.';
diff --git a/modules/graphgooglechart/translations/en.php b/modules/graphgooglechart/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/graphgooglechart/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-graphgooglechart_b3b8abce7e542a30dc415f612d4e0f23'] = 'Carta Google';
-$_MODULE['<{graphgooglechart}prestashop>graphgooglechart_e01118a336bd13f2f0e70bf7178c1fdc'] = 'La carta API de Google le permite generar dinámicamente sus cartas.';
diff --git a/modules/graphgooglechart/translations/fr.php b/modules/graphgooglechart/translations/fr.php
deleted file mode 100644
index 570314940..000000000
--- a/modules/graphgooglechart/translations/fr.php
+++ /dev/null
@@ -1,7 +0,0 @@
-graphgooglechart_b3b8abce7e542a30dc415f612d4e0f23'] = 'Google Chart';
-$_MODULE['<{graphgooglechart}prestashop>graphgooglechart_e01118a336bd13f2f0e70bf7178c1fdc'] = 'L\'API Google Chart permet de générer dynamiquement des graphiques.';
diff --git a/modules/graphgooglechart/translations/it.php b/modules/graphgooglechart/translations/it.php
deleted file mode 100644
index aae8122bc..000000000
--- a/modules/graphgooglechart/translations/it.php
+++ /dev/null
@@ -1,7 +0,0 @@
-graphgooglechart_b3b8abce7e542a30dc415f612d4e0f23'] = 'Google Chart';
-$_MODULE['<{graphgooglechart}prestashop>graphgooglechart_e01118a336bd13f2f0e70bf7178c1fdc'] = 'Google Chart API permette di generare dinamicamente grafici.';
diff --git a/modules/graphvisifire/translations/de.php b/modules/graphvisifire/translations/de.php
deleted file mode 100644
index 304f18fdd..000000000
--- a/modules/graphvisifire/translations/de.php
+++ /dev/null
@@ -1,7 +0,0 @@
-graphvisifire_8fb4e2a61c48721ee73f9b9189fd19e1'] = 'Visifire ist eine Reihe von Open-Source-Komponenten zur Datenvisualisierung - powered by Microsoft Silverlight 2 Beta 2.';
-$_MODULE['<{graphvisifire}prestashop>graphvisifire_46495d329b07c973daa82a7a9c084d6b'] = 'Visifire';
diff --git a/modules/graphvisifire/translations/en.php b/modules/graphvisifire/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/graphvisifire/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-graphvisifire_8fb4e2a61c48721ee73f9b9189fd19e1'] = 'Visifire es un conjunto de datos de código abierto componentes de visualización - Powered by Microsoft Silverlight 2 beta 2.';
-$_MODULE['<{graphvisifire}prestashop>graphvisifire_46495d329b07c973daa82a7a9c084d6b'] = 'Visifire';
diff --git a/modules/graphvisifire/translations/fr.php b/modules/graphvisifire/translations/fr.php
deleted file mode 100644
index c4bffd959..000000000
--- a/modules/graphvisifire/translations/fr.php
+++ /dev/null
@@ -1,7 +0,0 @@
-graphvisifire_8fb4e2a61c48721ee73f9b9189fd19e1'] = 'Visifire est un pack de composants open-source permettant de visualiser graphiquement des données. Il utilise la technologie Microsoft Silverlight 2 beta 2.';
-$_MODULE['<{graphvisifire}prestashop>graphvisifire_46495d329b07c973daa82a7a9c084d6b'] = 'Visifire';
diff --git a/modules/graphvisifire/translations/it.php b/modules/graphvisifire/translations/it.php
deleted file mode 100644
index 98692211d..000000000
--- a/modules/graphvisifire/translations/it.php
+++ /dev/null
@@ -1,7 +0,0 @@
-graphvisifire_8fb4e2a61c48721ee73f9b9189fd19e1'] = 'Visifire è un insieme di componenti di visualizzazione dei dati open source powered by Microsoft Silverlight 2 beta 2.';
-$_MODULE['<{graphvisifire}prestashop>graphvisifire_46495d329b07c973daa82a7a9c084d6b'] = 'Visifire';
diff --git a/modules/graphxmlswfcharts/translations/de.php b/modules/graphxmlswfcharts/translations/de.php
deleted file mode 100644
index d578fcd75..000000000
--- a/modules/graphxmlswfcharts/translations/de.php
+++ /dev/null
@@ -1,7 +0,0 @@
-graphxmlswfcharts_723f92861aa774c9d255e0b8c42c29e8'] = 'XML / SWF Charts ist ein einfaches, aber leistungsfähiges Werkzeug mit Adobe Flash, um attraktive Web-Diagramme und Grafiken aus dynamischen Daten zu erstellen.';
-$_MODULE['<{graphxmlswfcharts}prestashop>graphxmlswfcharts_fd1d6df8df2837bc1690e3ca9d84f502'] = 'XML / SWF Charts';
diff --git a/modules/graphxmlswfcharts/translations/en.php b/modules/graphxmlswfcharts/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/graphxmlswfcharts/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-graphxmlswfcharts_723f92861aa774c9d255e0b8c42c29e8'] = 'Las cartas de XML/SWF son unas herramientas simples, de un gran alcance, que pueden usar el flash de Adobe para crear cartas y gráficos atractivos de datos dinámicos.';
-$_MODULE['<{graphxmlswfcharts}prestashop>graphxmlswfcharts_fd1d6df8df2837bc1690e3ca9d84f502'] = 'Cartas XML/SWF';
diff --git a/modules/graphxmlswfcharts/translations/fr.php b/modules/graphxmlswfcharts/translations/fr.php
deleted file mode 100644
index 93334b27f..000000000
--- a/modules/graphxmlswfcharts/translations/fr.php
+++ /dev/null
@@ -1,7 +0,0 @@
-graphxmlswfcharts_723f92861aa774c9d255e0b8c42c29e8'] = 'XML/SWF Charts est un outil simple mais puissant utilisant Adobe Flash pour créer des graphiques à partir de données dynamiques.';
-$_MODULE['<{graphxmlswfcharts}prestashop>graphxmlswfcharts_fd1d6df8df2837bc1690e3ca9d84f502'] = 'XML/SWF Charts';
diff --git a/modules/graphxmlswfcharts/translations/it.php b/modules/graphxmlswfcharts/translations/it.php
deleted file mode 100644
index a1316d835..000000000
--- a/modules/graphxmlswfcharts/translations/it.php
+++ /dev/null
@@ -1,7 +0,0 @@
-graphxmlswfcharts_723f92861aa774c9d255e0b8c42c29e8'] = 'XML / SWF Charts è uno strumento semplice ma potente con Adobe Flash per creare grafici web attraenti e grafici dai dati dinamici.';
-$_MODULE['<{graphxmlswfcharts}prestashop>graphxmlswfcharts_fd1d6df8df2837bc1690e3ca9d84f502'] = 'XML / SWF Charts';
diff --git a/modules/gridhtml/translations/de.php b/modules/gridhtml/translations/de.php
deleted file mode 100644
index 9e0d87cfd..000000000
--- a/modules/gridhtml/translations/de.php
+++ /dev/null
@@ -1,6 +0,0 @@
-gridhtml_0429f31fd7dc2342b9b0f63d63c1e21d'] = 'Einfache HTML-Tabellenanzeige';
diff --git a/modules/gridhtml/translations/en.php b/modules/gridhtml/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/gridhtml/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-gridhtml_0429f31fd7dc2342b9b0f63d63c1e21d'] = 'Mostrar HTML simple';
diff --git a/modules/gridhtml/translations/fr.php b/modules/gridhtml/translations/fr.php
deleted file mode 100644
index e2359877d..000000000
--- a/modules/gridhtml/translations/fr.php
+++ /dev/null
@@ -1,6 +0,0 @@
-gridhtml_0429f31fd7dc2342b9b0f63d63c1e21d'] = 'Affichage HTML simple';
diff --git a/modules/gridhtml/translations/it.php b/modules/gridhtml/translations/it.php
deleted file mode 100644
index 2f1c306cd..000000000
--- a/modules/gridhtml/translations/it.php
+++ /dev/null
@@ -1,6 +0,0 @@
-gridhtml_0429f31fd7dc2342b9b0f63d63c1e21d'] = 'Semplice tabella di visualizzazione HTML';
diff --git a/modules/gsitemap/translations/de.php b/modules/gsitemap/translations/de.php
deleted file mode 100644
index 0d7ec78f4..000000000
--- a/modules/gsitemap/translations/de.php
+++ /dev/null
@@ -1,25 +0,0 @@
-gsitemap_401149c95366caa82ed416edb5eb66a3'] = 'Fehler beim Erstellen der Sitemap-Datei';
-$_MODULE['<{gsitemap}prestashop>gsitemap_dbca7bedb74f116f17eea44cddf9761f'] = 'Sitemap Index';
-$_MODULE['<{gsitemap}prestashop>gsitemap_39d616ecc73e174052f1877ac2b3c853'] = 'Aktualisierung:';
-$_MODULE['<{gsitemap}prestashop>gsitemap_1c29b1fc86e14218feccb4bf5e3c3331'] = 'Die Sitemap enthält auch Produkte der nicht aktivierten Kategorien';
-$_MODULE['<{gsitemap}prestashop>gsitemap_ed238c7f4f41153f6f7e02041d193381'] = 'Sitemap-Datei erzeugen';
-$_MODULE['<{gsitemap}prestashop>gsitemap_f1c0f389e0aade719b421f28bad33807'] = 'Search Engine Optimization';
-$_MODULE['<{gsitemap}prestashop>gsitemap_4ff2e716a7d06ce5274b4090b39abad3'] = 'Siehe';
-$_MODULE['<{gsitemap}prestashop>gsitemap_ecf80a15b9595df825e451eb4def853b'] = '%ssitemap.xml Datei kann nicht erstellt werden.';
-$_MODULE['<{gsitemap}prestashop>gsitemap_3f69f5c6c3c90eee482f28ae77390cb9'] = 'Indizierte Seiten:';
-$_MODULE['<{gsitemap}prestashop>gsitemap_d13de4a83d7b44c2e65495def8ef1c7b'] = 'für weitere Informationen';
-$_MODULE['<{gsitemap}prestashop>gsitemap_ea5d9ad08653eae5509e2fc70171a0d6'] = 'Generieren Sie Ihre Google Sitemap-Datei';
-$_MODULE['<{gsitemap}prestashop>gsitemap_0ce45c4c029ee2c598033b5c3a7fdadd'] = 'Sitemap-Datei erfolgreich erzeugt';
-$_MODULE['<{gsitemap}prestashop>gsitemap_4851323bb81fbc4aa65c1b37af8a1d1d'] = 'Sitemap für:';
-$_MODULE['<{gsitemap}prestashop>gsitemap_b908c2f34052b5276e0bf50f0e042211'] = 'Dateigröße:';
-$_MODULE['<{gsitemap}prestashop>gsitemap_be35982b0637fe74565dde00768e3534'] = 'Benutze Cronjob für Neugenerierung der Sitemap ';
-$_MODULE['<{gsitemap}prestashop>gsitemap_3aaaafde6f9b2701f9e6eb9292e95521'] = 'Google Sitemap';
-$_MODULE['<{gsitemap}prestashop>gsitemap_eb175747116b689caadea1b84202f513'] = 'Ihr Google-Sitemap-Datei ist online unter folgender Adresse:';
-$_MODULE['<{gsitemap}prestashop>gsitemap_5f93333d7d018796366e82a1fa763d47'] = 'Die Sitemap enthält auch CMS-Seiten die nicht in einem CMS-Block sind';
-$_MODULE['<{gsitemap}prestashop>gsitemap_0a376e01c0139491a901b3f965a6978d'] = 'Sitemap-Datei aktualisieren';
-$_MODULE['<{gsitemap}prestashop>gsitemap_5e4ace6a96971949d519e8b1885652aa'] = 'diese Seite';
diff --git a/modules/gsitemap/translations/en.php b/modules/gsitemap/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/gsitemap/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-gsitemap_401149c95366caa82ed416edb5eb66a3'] = 'Error mientras se creaba el fichero sitemap';
-$_MODULE['<{gsitemap}prestashop>gsitemap_dbca7bedb74f116f17eea44cddf9761f'] = 'Indice del mapa del sitio';
-$_MODULE['<{gsitemap}prestashop>gsitemap_39d616ecc73e174052f1877ac2b3c853'] = 'Actualizar:';
-$_MODULE['<{gsitemap}prestashop>gsitemap_1c29b1fc86e14218feccb4bf5e3c3331'] = 'Mapa del sitio también incluye productos de las categorías de inactivos';
-$_MODULE['<{gsitemap}prestashop>gsitemap_ed238c7f4f41153f6f7e02041d193381'] = 'Generar fichero Sitemap';
-$_MODULE['<{gsitemap}prestashop>gsitemap_f1c0f389e0aade719b421f28bad33807'] = 'Optimizar Motor de Búsqueda';
-$_MODULE['<{gsitemap}prestashop>gsitemap_4ff2e716a7d06ce5274b4090b39abad3'] = 'Lea';
-$_MODULE['<{gsitemap}prestashop>gsitemap_ea5d9ad08653eae5509e2fc70171a0d6'] = 'Genere su fichero de Google Sitemap';
-$_MODULE['<{gsitemap}prestashop>gsitemap_ecf80a15b9595df825e451eb4def853b'] = 'Creación imposible del fichero %ssitemap.xml.';
-$_MODULE['<{gsitemap}prestashop>gsitemap_3f69f5c6c3c90eee482f28ae77390cb9'] = 'Páginas Indexadas:';
-$_MODULE['<{gsitemap}prestashop>gsitemap_d13de4a83d7b44c2e65495def8ef1c7b'] = 'para más información';
-$_MODULE['<{gsitemap}prestashop>gsitemap_0ce45c4c029ee2c598033b5c3a7fdadd'] = 'El fichero sitemap fue generado correctamente';
-$_MODULE['<{gsitemap}prestashop>gsitemap_4851323bb81fbc4aa65c1b37af8a1d1d'] = 'Mapa del sitio para';
-$_MODULE['<{gsitemap}prestashop>gsitemap_b908c2f34052b5276e0bf50f0e042211'] = 'Tamaño';
-$_MODULE['<{gsitemap}prestashop>gsitemap_be35982b0637fe74565dde00768e3534'] = 'Use cron para volver a construir el mapa del sitio:';
-$_MODULE['<{gsitemap}prestashop>gsitemap_3aaaafde6f9b2701f9e6eb9292e95521'] = 'Google Sitemap';
-$_MODULE['<{gsitemap}prestashop>gsitemap_eb175747116b689caadea1b84202f513'] = 'Su fichero de google sitemap está online en la siguiente dirección:';
-$_MODULE['<{gsitemap}prestashop>gsitemap_5f93333d7d018796366e82a1fa763d47'] = 'Mapa del sitio también incluye páginas de CMS que no están en un bloque de CMS';
-$_MODULE['<{gsitemap}prestashop>gsitemap_0a376e01c0139491a901b3f965a6978d'] = 'Actualizar fichero Sitemap';
-$_MODULE['<{gsitemap}prestashop>gsitemap_5e4ace6a96971949d519e8b1885652aa'] = 'esta página';
diff --git a/modules/gsitemap/translations/fr.php b/modules/gsitemap/translations/fr.php
deleted file mode 100644
index c09cdb21e..000000000
--- a/modules/gsitemap/translations/fr.php
+++ /dev/null
@@ -1,25 +0,0 @@
-gsitemap_401149c95366caa82ed416edb5eb66a3'] = 'Erreur durant la création du fichier sitemap';
-$_MODULE['<{gsitemap}prestashop>gsitemap_dbca7bedb74f116f17eea44cddf9761f'] = 'Sitemap principal';
-$_MODULE['<{gsitemap}prestashop>gsitemap_39d616ecc73e174052f1877ac2b3c853'] = 'Mise à jour';
-$_MODULE['<{gsitemap}prestashop>gsitemap_1c29b1fc86e14218feccb4bf5e3c3331'] = 'Le sitemap inclut également les produits des catégories inactives';
-$_MODULE['<{gsitemap}prestashop>gsitemap_ed238c7f4f41153f6f7e02041d193381'] = 'Générer le fichier sitemap';
-$_MODULE['<{gsitemap}prestashop>gsitemap_f1c0f389e0aade719b421f28bad33807'] = 'Optimisation pour les moteurs de recherche (SEO)';
-$_MODULE['<{gsitemap}prestashop>gsitemap_4ff2e716a7d06ce5274b4090b39abad3'] = 'Voir';
-$_MODULE['<{gsitemap}prestashop>gsitemap_ea5d9ad08653eae5509e2fc70171a0d6'] = 'Génère votre fichier sitemap pour Google';
-$_MODULE['<{gsitemap}prestashop>gsitemap_ecf80a15b9595df825e451eb4def853b'] = 'Impossible de créer le fichier %ssitemap.xml.';
-$_MODULE['<{gsitemap}prestashop>gsitemap_3f69f5c6c3c90eee482f28ae77390cb9'] = 'Nombre de pages indexées :';
-$_MODULE['<{gsitemap}prestashop>gsitemap_d13de4a83d7b44c2e65495def8ef1c7b'] = 'pour plus d\'informations';
-$_MODULE['<{gsitemap}prestashop>gsitemap_0ce45c4c029ee2c598033b5c3a7fdadd'] = 'Fichier Sitemap généré';
-$_MODULE['<{gsitemap}prestashop>gsitemap_4851323bb81fbc4aa65c1b37af8a1d1d'] = 'Sitemap pour : ';
-$_MODULE['<{gsitemap}prestashop>gsitemap_b908c2f34052b5276e0bf50f0e042211'] = 'Taille du fichier';
-$_MODULE['<{gsitemap}prestashop>gsitemap_be35982b0637fe74565dde00768e3534'] = 'Utiliser une tâche cron pour reconstruire le sitemap : ';
-$_MODULE['<{gsitemap}prestashop>gsitemap_3aaaafde6f9b2701f9e6eb9292e95521'] = 'Google sitemap';
-$_MODULE['<{gsitemap}prestashop>gsitemap_eb175747116b689caadea1b84202f513'] = 'Votre fichier Google sitemap est en ligne à l\'adresse suivante :';
-$_MODULE['<{gsitemap}prestashop>gsitemap_5f93333d7d018796366e82a1fa763d47'] = 'Le sitemap inclut également les pages CMS qui ne sont pas dans un bloc de CMS';
-$_MODULE['<{gsitemap}prestashop>gsitemap_0a376e01c0139491a901b3f965a6978d'] = 'Mettre à jour le fichier sitemap';
-$_MODULE['<{gsitemap}prestashop>gsitemap_5e4ace6a96971949d519e8b1885652aa'] = 'cette page';
diff --git a/modules/gsitemap/translations/it.php b/modules/gsitemap/translations/it.php
deleted file mode 100644
index ca0ee4e7f..000000000
--- a/modules/gsitemap/translations/it.php
+++ /dev/null
@@ -1,25 +0,0 @@
-gsitemap_401149c95366caa82ed416edb5eb66a3'] = 'Errore durante la creazione del file sitemap';
-$_MODULE['<{gsitemap}prestashop>gsitemap_dbca7bedb74f116f17eea44cddf9761f'] = 'Indice sitemap';
-$_MODULE['<{gsitemap}prestashop>gsitemap_39d616ecc73e174052f1877ac2b3c853'] = 'Aggiornamento:';
-$_MODULE['<{gsitemap}prestashop>gsitemap_1c29b1fc86e14218feccb4bf5e3c3331'] = 'Mappa del sito comprende anche prodotti dalle categorie inattivi';
-$_MODULE['<{gsitemap}prestashop>gsitemap_ed238c7f4f41153f6f7e02041d193381'] = 'Genera file sitemap';
-$_MODULE['<{gsitemap}prestashop>gsitemap_f1c0f389e0aade719b421f28bad33807'] = 'Search Engine Optimization';
-$_MODULE['<{gsitemap}prestashop>gsitemap_4ff2e716a7d06ce5274b4090b39abad3'] = 'Vedi';
-$_MODULE['<{gsitemap}prestashop>gsitemap_ea5d9ad08653eae5509e2fc70171a0d6'] = 'Genera il tuo file sitemap di Google';
-$_MODULE['<{gsitemap}prestashop>gsitemap_ecf80a15b9595df825e451eb4def853b'] = 'Non puoi creare %s sitemap.xml file.';
-$_MODULE['<{gsitemap}prestashop>gsitemap_3f69f5c6c3c90eee482f28ae77390cb9'] = 'Pagine indicizzate:';
-$_MODULE['<{gsitemap}prestashop>gsitemap_d13de4a83d7b44c2e65495def8ef1c7b'] = 'per maggiori informazioni';
-$_MODULE['<{gsitemap}prestashop>gsitemap_0ce45c4c029ee2c598033b5c3a7fdadd'] = 'File Sitemap generato con successo';
-$_MODULE['<{gsitemap}prestashop>gsitemap_4851323bb81fbc4aa65c1b37af8a1d1d'] = 'Sitemap per:';
-$_MODULE['<{gsitemap}prestashop>gsitemap_b908c2f34052b5276e0bf50f0e042211'] = 'Dimensioni:';
-$_MODULE['<{gsitemap}prestashop>gsitemap_be35982b0637fe74565dde00768e3534'] = 'Usa il cron per ricostruire la sitemap:';
-$_MODULE['<{gsitemap}prestashop>gsitemap_3aaaafde6f9b2701f9e6eb9292e95521'] = 'Google sitemap';
-$_MODULE['<{gsitemap}prestashop>gsitemap_eb175747116b689caadea1b84202f513'] = 'Il tuo file sitemap di Google è online al seguente indirizzo:';
-$_MODULE['<{gsitemap}prestashop>gsitemap_5f93333d7d018796366e82a1fa763d47'] = 'Mappa del sito include anche pagine CMS che non sono in un blocco CMS';
-$_MODULE['<{gsitemap}prestashop>gsitemap_0a376e01c0139491a901b3f965a6978d'] = 'Aggiornamento file sitemap';
-$_MODULE['<{gsitemap}prestashop>gsitemap_5e4ace6a96971949d519e8b1885652aa'] = 'questa pagina';
diff --git a/modules/homefeatured/translations/de.php b/modules/homefeatured/translations/de.php
deleted file mode 100644
index 47c3716d3..000000000
--- a/modules/homefeatured/translations/de.php
+++ /dev/null
@@ -1,20 +0,0 @@
-homefeatured_87ae431d2f8285c91660bd00d330a257'] = 'Anzahl der angezeigten Produkte';
-$_MODULE['<{homefeatured}prestashop>homefeatured_46fe11c71c8fb1408cf458a6b9d37120'] = 'Anzahl der auf der Startseite angezeigten Produkte (Standard: 10)';
-$_MODULE['<{homefeatured}prestashop>homefeatured_c9cc8cce247e49bae79f15173ce97354'] = 'Speichern';
-$_MODULE['<{homefeatured}prestashop>homefeatured_8f31eb2413dea86c661532d4cf973d2f'] = 'Ungültige Anzahl von Produkten';
-$_MODULE['<{homefeatured}prestashop>homefeatured_4cad5369b27bff0ba256a479a575eb6f'] = 'Um Produkte zu Ihrer Startseite hinzufügen, fügen Sie einfach sie zur die \\"Start\\"-Kategorie hinzu.';
-$_MODULE['<{homefeatured}prestashop>homefeatured_2d0f6b8300be19cf35e89e66f0677f95'] = 'In den Warenkorb';
-$_MODULE['<{homefeatured}prestashop>homefeatured_dcf3f48ad88dabefc99b82013c4443de'] = 'Ausgewählte Produkte auf der Startseite';
-$_MODULE['<{homefeatured}prestashop>homefeatured_f4f70727dc34561dfde1a3c529b6205c'] = 'Einstellungen';
-$_MODULE['<{homefeatured}prestashop>homefeatured_03c2e7e41ffc181a4e84080b4710e81e'] = 'Neu';
-$_MODULE['<{homefeatured}prestashop>homefeatured_e0e572ae0d8489f8bf969e93d469e89c'] = 'Keine ausgewählten Produkte';
-$_MODULE['<{homefeatured}prestashop>homefeatured_33d0c6fa8dcda0ea168f8ef69556acfe'] = 'Zeigt Ausgewählte Produkte in der Mitte Ihrer Startseite an';
-$_MODULE['<{homefeatured}prestashop>homefeatured_6af91e35dff67a43ace060d1d57d5d1a'] = 'Einstellungen aktualisiert';
-$_MODULE['<{homefeatured}prestashop>homefeatured_ca7d973c26c57b69e0857e7a0332d545'] = 'Ausgewählte Produkte';
-$_MODULE['<{homefeatured}prestashop>homefeatured_d3da97e2d9aee5c8fbe03156ad051c99'] = 'Mehr';
-$_MODULE['<{homefeatured}prestashop>homefeatured_4351cfebe4b61d8aa5efa1d020710005'] = 'Anzeigen';
diff --git a/modules/homefeatured/translations/en.php b/modules/homefeatured/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/homefeatured/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-homefeatured_87ae431d2f8285c91660bd00d330a257'] = 'Número de productos mostrados';
-$_MODULE['<{homefeatured}prestashop>homefeatured_46fe11c71c8fb1408cf458a6b9d37120'] = 'Número de productos mostrados en la página de inicio (por defecto: 10)';
-$_MODULE['<{homefeatured}prestashop>homefeatured_c9cc8cce247e49bae79f15173ce97354'] = 'Guardar';
-$_MODULE['<{homefeatured}prestashop>homefeatured_8f31eb2413dea86c661532d4cf973d2f'] = 'Número de productos no válido';
-$_MODULE['<{homefeatured}prestashop>homefeatured_4cad5369b27bff0ba256a479a575eb6f'] = 'Para añadir productos a su página de inicio, sólo tiene que añadirlas en la categoía \\"Inicio\\" .';
-$_MODULE['<{homefeatured}prestashop>homefeatured_2d0f6b8300be19cf35e89e66f0677f95'] = 'Añadir al carrito';
-$_MODULE['<{homefeatured}prestashop>homefeatured_dcf3f48ad88dabefc99b82013c4443de'] = 'Productos Destacados en la Página de inicio';
-$_MODULE['<{homefeatured}prestashop>homefeatured_f4f70727dc34561dfde1a3c529b6205c'] = 'Configuración';
-$_MODULE['<{homefeatured}prestashop>homefeatured_03c2e7e41ffc181a4e84080b4710e81e'] = 'Nuevo';
-$_MODULE['<{homefeatured}prestashop>homefeatured_e0e572ae0d8489f8bf969e93d469e89c'] = 'No hay productos destacados';
-$_MODULE['<{homefeatured}prestashop>homefeatured_33d0c6fa8dcda0ea168f8ef69556acfe'] = 'Mostrar Productos Destacados en el centro de su página de inicio';
-$_MODULE['<{homefeatured}prestashop>homefeatured_6af91e35dff67a43ace060d1d57d5d1a'] = 'Actualización realizada con éxito';
-$_MODULE['<{homefeatured}prestashop>homefeatured_ca7d973c26c57b69e0857e7a0332d545'] = 'Productos destacados';
-$_MODULE['<{homefeatured}prestashop>homefeatured_d3da97e2d9aee5c8fbe03156ad051c99'] = 'Más';
-$_MODULE['<{homefeatured}prestashop>homefeatured_4351cfebe4b61d8aa5efa1d020710005'] = 'Vista';
diff --git a/modules/homefeatured/translations/fr.php b/modules/homefeatured/translations/fr.php
deleted file mode 100644
index d659e02fe..000000000
--- a/modules/homefeatured/translations/fr.php
+++ /dev/null
@@ -1,20 +0,0 @@
-homefeatured_87ae431d2f8285c91660bd00d330a257'] = 'Nombre de produits';
-$_MODULE['<{homefeatured}prestashop>homefeatured_46fe11c71c8fb1408cf458a6b9d37120'] = 'Le nombre de produits affichés sur la page d\'accueil (par défaut : 10).';
-$_MODULE['<{homefeatured}prestashop>homefeatured_c9cc8cce247e49bae79f15173ce97354'] = 'Enregistrer';
-$_MODULE['<{homefeatured}prestashop>homefeatured_8f31eb2413dea86c661532d4cf973d2f'] = 'Nombre non valable de produit';
-$_MODULE['<{homefeatured}prestashop>homefeatured_4cad5369b27bff0ba256a479a575eb6f'] = 'Pour ajouter des produits à votre page d\'accueil, ajoutez-les simplement à la catégorie \\"Accueil\\" du catalogue.';
-$_MODULE['<{homefeatured}prestashop>homefeatured_2d0f6b8300be19cf35e89e66f0677f95'] = 'Ajouter au panier';
-$_MODULE['<{homefeatured}prestashop>homefeatured_dcf3f48ad88dabefc99b82013c4443de'] = 'Produits phares sur la page d\'accueil';
-$_MODULE['<{homefeatured}prestashop>homefeatured_f4f70727dc34561dfde1a3c529b6205c'] = 'Paramètres';
-$_MODULE['<{homefeatured}prestashop>homefeatured_03c2e7e41ffc181a4e84080b4710e81e'] = 'Nouveau';
-$_MODULE['<{homefeatured}prestashop>homefeatured_e0e572ae0d8489f8bf969e93d469e89c'] = 'Aucun produit phare';
-$_MODULE['<{homefeatured}prestashop>homefeatured_33d0c6fa8dcda0ea168f8ef69556acfe'] = 'Affiche les produits phares au centre de votre page d\'accueil';
-$_MODULE['<{homefeatured}prestashop>homefeatured_6af91e35dff67a43ace060d1d57d5d1a'] = 'Paramètres mis à jour';
-$_MODULE['<{homefeatured}prestashop>homefeatured_ca7d973c26c57b69e0857e7a0332d545'] = 'Produits phares';
-$_MODULE['<{homefeatured}prestashop>homefeatured_d3da97e2d9aee5c8fbe03156ad051c99'] = 'Plus d\'infos';
-$_MODULE['<{homefeatured}prestashop>homefeatured_4351cfebe4b61d8aa5efa1d020710005'] = 'Voir';
diff --git a/modules/homefeatured/translations/it.php b/modules/homefeatured/translations/it.php
deleted file mode 100644
index 6abe3f023..000000000
--- a/modules/homefeatured/translations/it.php
+++ /dev/null
@@ -1,20 +0,0 @@
-homefeatured_87ae431d2f8285c91660bd00d330a257'] = 'Numero di prodotto esposto';
-$_MODULE['<{homefeatured}prestashop>homefeatured_46fe11c71c8fb1408cf458a6b9d37120'] = 'Il numero di prodotti esposti in homepage (default: 10)';
-$_MODULE['<{homefeatured}prestashop>homefeatured_c9cc8cce247e49bae79f15173ce97354'] = 'Salva';
-$_MODULE['<{homefeatured}prestashop>homefeatured_8f31eb2413dea86c661532d4cf973d2f'] = 'Numero non valido di prodotti';
-$_MODULE['<{homefeatured}prestashop>homefeatured_4cad5369b27bff0ba256a479a575eb6f'] = 'Per poter aggiungere prodotti alla tua home page, basta aggiungere alla categoria \\"home\\".';
-$_MODULE['<{homefeatured}prestashop>homefeatured_2d0f6b8300be19cf35e89e66f0677f95'] = 'Aggiungi al carrello';
-$_MODULE['<{homefeatured}prestashop>homefeatured_dcf3f48ad88dabefc99b82013c4443de'] = 'Prodotti in vetrina sulla homepage';
-$_MODULE['<{homefeatured}prestashop>homefeatured_f4f70727dc34561dfde1a3c529b6205c'] = 'Impostazioni';
-$_MODULE['<{homefeatured}prestashop>homefeatured_03c2e7e41ffc181a4e84080b4710e81e'] = 'Nuovo';
-$_MODULE['<{homefeatured}prestashop>homefeatured_e0e572ae0d8489f8bf969e93d469e89c'] = 'Nessun prodotto in vetrina';
-$_MODULE['<{homefeatured}prestashop>homefeatured_6af91e35dff67a43ace060d1d57d5d1a'] = 'Impostazioni aggiornate';
-$_MODULE['<{homefeatured}prestashop>homefeatured_ca7d973c26c57b69e0857e7a0332d545'] = 'prodotti in vetrina';
-$_MODULE['<{homefeatured}prestashop>homefeatured_d3da97e2d9aee5c8fbe03156ad051c99'] = 'Più';
-$_MODULE['<{homefeatured}prestashop>homefeatured_4351cfebe4b61d8aa5efa1d020710005'] = 'Visualizza';
-$_MODULE['<{homefeatured}prestashop>homefeatured_33d0c6fa8dcda0ea168f8ef69556acfe'] = 'Mostra Prodotti in vetrina nel cuore della tua home page';
diff --git a/modules/homeslider/translations/de.php b/modules/homeslider/translations/de.php
deleted file mode 100644
index c173b5849..000000000
--- a/modules/homeslider/translations/de.php
+++ /dev/null
@@ -1,58 +0,0 @@
-homeslider_c17aed434289cedd02618451e12c8da6'] = 'Fügt einen Bild-Slider zu Ihrer Website hinzu.';
-$_MODULE['<{homeslider}prestashop>homeslider_17167898123700e4b4f9bc17c1e0608d'] = 'Slider Konfiguration';
-$_MODULE['<{homeslider}prestashop>homeslider_7dce122004969d56ae2e0245cb754d35'] = 'Bearbeiten';
-$_MODULE['<{homeslider}prestashop>homeslider_a94c563cb2d2eec9507c6ffeba4659cc'] = 'Die Module %s müssen beschreibbar sein (CHMOD 755 / 777)';
-$_MODULE['<{homeslider}prestashop>homeslider_4477f672766f6f255f760649af8bd92a'] = 'Die angegebene URL ist zu lang';
-$_MODULE['<{homeslider}prestashop>homeslider_ab53605e4a73424d186afccef7b4bc03'] = 'Hinweistext wurde nicht angegeben';
-$_MODULE['<{homeslider}prestashop>homeslider_0f059227d0a750ce652337d911879671'] = 'URL nicht angegeben';
-$_MODULE['<{homeslider}prestashop>homeslider_7f82c65d548588c8d5412463c182e450'] = 'Konfiguration konnte nicht akualisiert werden';
-$_MODULE['<{homeslider}prestashop>homeslider_7cc92687130ea12abb80556681538001'] = 'Ein Fehler trat beim Hochladen des Bilds auf.';
-$_MODULE['<{homeslider}prestashop>homeslider_bb6abf21a6c70c5740d93093b5518954'] = 'Slide hinzugefügt';
-$_MODULE['<{homeslider}prestashop>homeslider_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Aktiviert';
-$_MODULE['<{homeslider}prestashop>homeslider_e933dc24fb245d863a43b4fefe9b45f5'] = 'Höhe:';
-$_MODULE['<{homeslider}prestashop>homeslider_9ce04a5715756f9c0fece348db9b7da1'] = 'Wiederholung:';
-$_MODULE['<{homeslider}prestashop>homeslider_bafd7322c6e97d25b6299b5d6fe8920b'] = 'Nein';
-$_MODULE['<{homeslider}prestashop>homeslider_571988492824e57070d78e6c86333f20'] = 'Slide Konfiguration';
-$_MODULE['<{homeslider}prestashop>homeslider_02023fc24279454047fd419ecd1db9af'] = 'Slide hinzufügen';
-$_MODULE['<{homeslider}prestashop>homeslider_947c5b1ecd3021f44ae45bc176085ae1'] = 'Eigenen Slide hochladen';
-$_MODULE['<{homeslider}prestashop>homeslider_2d806bd95ceb6d3166fb5c01d3fb75f0'] = 'Eigenen Slide konfigurieren';
-$_MODULE['<{homeslider}prestashop>homeslider_51ec9bf4aaeab1b25bb57f9f8d4de557'] = 'Name:';
-$_MODULE['<{homeslider}prestashop>homeslider_8046c95f98fc714db47978092bb24264'] = 'Legende';
-$_MODULE['<{homeslider}prestashop>homeslider_a6abafe564d3940cc36ee43e2f09400b'] = 'Ungültiger Slide';
-$_MODULE['<{homeslider}prestashop>homeslider_cdf841e01e10cae6355f72e6838808eb'] = 'Slide konnte nicht hinzugefügt werden';
-$_MODULE['<{homeslider}prestashop>homeslider_9582801267616d564272ae7a4f622c93'] = 'Bild-Slider für Ihre Website';
-$_MODULE['<{homeslider}prestashop>homeslider_48ccf48dcf2218a413ce473262f21a0c'] = 'Breite:';
-$_MODULE['<{homeslider}prestashop>homeslider_2c526c645bca9542ba1598835d46b753'] = 'Geschwindigkeit:';
-$_MODULE['<{homeslider}prestashop>homeslider_154e6bcf4e3b49a424323cb9021ef851'] = 'Pause';
-$_MODULE['<{homeslider}prestashop>homeslider_f2a6c498fb90ee345d997f888fce3b18'] = 'Löschen';
-$_MODULE['<{homeslider}prestashop>homeslider_32bd52059351cd9ac4ae44f16746da11'] = 'Eigenen Slide bearbeiten';
-$_MODULE['<{homeslider}prestashop>homeslider_3d091e856cb7615d1ccb96bc759b5a92'] = 'Aktiv';
-$_MODULE['<{homeslider}prestashop>homeslider_70397c4b252a5168c5ec003931cea215'] = 'Pflichtfelder';
-$_MODULE['<{homeslider}prestashop>homeslider_b3e3ed438fb0ea2935b3e79eac1f1658'] = 'Ungültiger Slide-Status';
-$_MODULE['<{homeslider}prestashop>homeslider_76ad3ac84a702b0497cd6be8e8886d34'] = 'Ungültige id_slide';
-$_MODULE['<{homeslider}prestashop>homeslider_980f56796b8bf9d607283de9815fe217'] = 'Das angegebene URL-Format ist nicht korrekt';
-$_MODULE['<{homeslider}prestashop>homeslider_7a92ef6b168d77ebcdad785b01d77a8e'] = 'Ungültiger Dateiname';
-$_MODULE['<{homeslider}prestashop>homeslider_8cf45ba354f4725ec8a0d31164910895'] = 'Bild wurde nicht angegeben';
-$_MODULE['<{homeslider}prestashop>homeslider_93cba07454f06a4a960172bbd6e2a435'] = 'Ja';
-$_MODULE['<{homeslider}prestashop>homeslider_c9cc8cce247e49bae79f15173ce97354'] = 'Speichern';
-$_MODULE['<{homeslider}prestashop>homeslider_3f22c758c989513080e13842e1ff70d8'] = 'Bisher wurden keine Slides hinzugefügt';
-$_MODULE['<{homeslider}prestashop>homeslider_a5220b3d801e803e8c4133edcd0dc7b4'] = 'Wählen Sie eine Datei';
-$_MODULE['<{homeslider}prestashop>homeslider_3b3d06023f6353f8fd05f859b298573e'] = 'URL:';
-$_MODULE['<{homeslider}prestashop>homeslider_d0042a700e9bdf79689d63ee6846dc0e'] = 'Beschreibung:';
-$_MODULE['<{homeslider}prestashop>homeslider_ea4788705e6873b424c65e91c2846b19'] = 'Abbrechen';
-$_MODULE['<{homeslider}prestashop>homeslider_3f80dc2cdd06939d4f5514362067cd86'] = 'Unglütiger Wert';
-$_MODULE['<{homeslider}prestashop>homeslider_57b620e0495c07c15deda4dde882d47b'] = 'Ungültige Slide-Position';
-$_MODULE['<{homeslider}prestashop>homeslider_14f09fd0804a8f1cd0eb757125fc9c28'] = 'Titel ist zu land';
-$_MODULE['<{homeslider}prestashop>homeslider_39fc40a0ebcbfcae901d20ab8980f188'] = 'Hinweistext ist zu land';
-$_MODULE['<{homeslider}prestashop>homeslider_62239300ba982b06ab0f1aa7100ad297'] = 'Die Beschreibung ist zu lang';
-$_MODULE['<{homeslider}prestashop>homeslider_349097dadf7e6b01dd2af601d54fd59a'] = 'Kein Titel angegeben';
-$_MODULE['<{homeslider}prestashop>homeslider_20015706a8cbd457cbb6ea3e7d5dc9b3'] = 'Konfiguration aktualisiert';
-$_MODULE['<{homeslider}prestashop>homeslider_eb28485b92fbf9201918698245ec6430'] = 'Slide konnte nicht aktualisiert werden';
-$_MODULE['<{homeslider}prestashop>homeslider_5da12d1bb63af9cd5be306102b23e82e'] = 'Slide gelöscht';
-$_MODULE['<{homeslider}prestashop>homeslider_080b5727c047ef6658591f7d4507e681'] = 'Slide aktualisiert';
-$_MODULE['<{homeslider}prestashop>homeslider_b9f5c797ebbf55adccdd8539a65a0241'] = 'Deaktiviert';
diff --git a/modules/homeslider/translations/en.php b/modules/homeslider/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/homeslider/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-homeslider_c17aed434289cedd02618451e12c8da6'] = 'Agrega un control deslizante de la imagen a tu página principal.';
-$_MODULE['<{homeslider}prestashop>homeslider_17167898123700e4b4f9bc17c1e0608d'] = 'Control deslizante de configuración';
-$_MODULE['<{homeslider}prestashop>homeslider_7dce122004969d56ae2e0245cb754d35'] = 'Modificar';
-$_MODULE['<{homeslider}prestashop>homeslider_a94c563cb2d2eec9507c6ffeba4659cc'] = '%s módulos deben tener permisos de escritura (chmod 755/777)';
-$_MODULE['<{homeslider}prestashop>homeslider_4477f672766f6f255f760649af8bd92a'] = 'La URL es demasiado larga';
-$_MODULE['<{homeslider}prestashop>homeslider_ab53605e4a73424d186afccef7b4bc03'] = 'La leyenda no se ha establecido';
-$_MODULE['<{homeslider}prestashop>homeslider_0f059227d0a750ce652337d911879671'] = 'URL no se encuentra';
-$_MODULE['<{homeslider}prestashop>homeslider_7f82c65d548588c8d5412463c182e450'] = 'La configuración no ha podido actualizar';
-$_MODULE['<{homeslider}prestashop>homeslider_7cc92687130ea12abb80556681538001'] = 'Se produjo un error durante la carga de imágenes.';
-$_MODULE['<{homeslider}prestashop>homeslider_bb6abf21a6c70c5740d93093b5518954'] = 'Slide añadido';
-$_MODULE['<{homeslider}prestashop>homeslider_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Activado';
-$_MODULE['<{homeslider}prestashop>homeslider_e933dc24fb245d863a43b4fefe9b45f5'] = 'Alto:';
-$_MODULE['<{homeslider}prestashop>homeslider_9ce04a5715756f9c0fece348db9b7da1'] = 'Loop:';
-$_MODULE['<{homeslider}prestashop>homeslider_bafd7322c6e97d25b6299b5d6fe8920b'] = 'No';
-$_MODULE['<{homeslider}prestashop>homeslider_571988492824e57070d78e6c86333f20'] = 'Configuración de diapositivas';
-$_MODULE['<{homeslider}prestashop>homeslider_02023fc24279454047fd419ecd1db9af'] = 'Añadir diapositiva';
-$_MODULE['<{homeslider}prestashop>homeslider_947c5b1ecd3021f44ae45bc176085ae1'] = 'Sube una diapositiva';
-$_MODULE['<{homeslider}prestashop>homeslider_2d806bd95ceb6d3166fb5c01d3fb75f0'] = 'Configuración de la diapositiva';
-$_MODULE['<{homeslider}prestashop>homeslider_51ec9bf4aaeab1b25bb57f9f8d4de557'] = 'Título:';
-$_MODULE['<{homeslider}prestashop>homeslider_8046c95f98fc714db47978092bb24264'] = 'inscripción';
-$_MODULE['<{homeslider}prestashop>homeslider_a6abafe564d3940cc36ee43e2f09400b'] = 'Diapositiva no válido';
-$_MODULE['<{homeslider}prestashop>homeslider_cdf841e01e10cae6355f72e6838808eb'] = 'El slide no se puede añadir';
-$_MODULE['<{homeslider}prestashop>homeslider_9582801267616d564272ae7a4f622c93'] = 'Imagen de control deslizante para su página web';
-$_MODULE['<{homeslider}prestashop>homeslider_48ccf48dcf2218a413ce473262f21a0c'] = 'Ancho:';
-$_MODULE['<{homeslider}prestashop>homeslider_2c526c645bca9542ba1598835d46b753'] = 'velocidad:';
-$_MODULE['<{homeslider}prestashop>homeslider_154e6bcf4e3b49a424323cb9021ef851'] = 'Pausa:';
-$_MODULE['<{homeslider}prestashop>homeslider_f2a6c498fb90ee345d997f888fce3b18'] = 'Eliminar';
-$_MODULE['<{homeslider}prestashop>homeslider_32bd52059351cd9ac4ae44f16746da11'] = 'Editar diapositiva';
-$_MODULE['<{homeslider}prestashop>homeslider_3d091e856cb7615d1ccb96bc759b5a92'] = 'Activo:';
-$_MODULE['<{homeslider}prestashop>homeslider_70397c4b252a5168c5ec003931cea215'] = 'Campos obligatorios';
-$_MODULE['<{homeslider}prestashop>homeslider_b3e3ed438fb0ea2935b3e79eac1f1658'] = 'Estado no válido de diapositivas';
-$_MODULE['<{homeslider}prestashop>homeslider_980f56796b8bf9d607283de9815fe217'] = 'Formato de URL no es correcta';
-$_MODULE['<{homeslider}prestashop>homeslider_7a92ef6b168d77ebcdad785b01d77a8e'] = 'Nombre de archivo no válido';
-$_MODULE['<{homeslider}prestashop>homeslider_8cf45ba354f4725ec8a0d31164910895'] = 'La imagen no se especifico';
-$_MODULE['<{homeslider}prestashop>homeslider_76ad3ac84a702b0497cd6be8e8886d34'] = 'id_slide no válido';
-$_MODULE['<{homeslider}prestashop>homeslider_93cba07454f06a4a960172bbd6e2a435'] = 'Sí';
-$_MODULE['<{homeslider}prestashop>homeslider_c9cc8cce247e49bae79f15173ce97354'] = 'Guardar';
-$_MODULE['<{homeslider}prestashop>homeslider_3f22c758c989513080e13842e1ff70d8'] = 'Usted no ha añadido ningún diapositivas todavía.';
-$_MODULE['<{homeslider}prestashop>homeslider_a5220b3d801e803e8c4133edcd0dc7b4'] = 'Seleccione un archivo';
-$_MODULE['<{homeslider}prestashop>homeslider_3b3d06023f6353f8fd05f859b298573e'] = 'URL:';
-$_MODULE['<{homeslider}prestashop>homeslider_d0042a700e9bdf79689d63ee6846dc0e'] = 'Descripción:';
-$_MODULE['<{homeslider}prestashop>homeslider_ea4788705e6873b424c65e91c2846b19'] = 'Anular';
-$_MODULE['<{homeslider}prestashop>homeslider_3f80dc2cdd06939d4f5514362067cd86'] = 'Valores no válidos';
-$_MODULE['<{homeslider}prestashop>homeslider_57b620e0495c07c15deda4dde882d47b'] = 'Posición de la diapositiva no válido';
-$_MODULE['<{homeslider}prestashop>homeslider_14f09fd0804a8f1cd0eb757125fc9c28'] = 'El título es demasiado largo';
-$_MODULE['<{homeslider}prestashop>homeslider_39fc40a0ebcbfcae901d20ab8980f188'] = 'La leyenda es demasiado largo';
-$_MODULE['<{homeslider}prestashop>homeslider_62239300ba982b06ab0f1aa7100ad297'] = 'Descripción es demasiado larga';
-$_MODULE['<{homeslider}prestashop>homeslider_349097dadf7e6b01dd2af601d54fd59a'] = 'El título no se encuentra';
-$_MODULE['<{homeslider}prestashop>homeslider_20015706a8cbd457cbb6ea3e7d5dc9b3'] = 'Configuración actualizada';
-$_MODULE['<{homeslider}prestashop>homeslider_eb28485b92fbf9201918698245ec6430'] = 'El slide no se puede actualizar';
-$_MODULE['<{homeslider}prestashop>homeslider_5da12d1bb63af9cd5be306102b23e82e'] = 'Slide borrado';
-$_MODULE['<{homeslider}prestashop>homeslider_080b5727c047ef6658591f7d4507e681'] = 'Slide actualizado';
-$_MODULE['<{homeslider}prestashop>homeslider_b9f5c797ebbf55adccdd8539a65a0241'] = 'Desactivado';
diff --git a/modules/homeslider/translations/fr.php b/modules/homeslider/translations/fr.php
deleted file mode 100644
index 5cd738935..000000000
--- a/modules/homeslider/translations/fr.php
+++ /dev/null
@@ -1,58 +0,0 @@
-homeslider_c17aed434289cedd02618451e12c8da6'] = 'Ajouter un carrousel d\'images à votre page d\'accueil';
-$_MODULE['<{homeslider}prestashop>homeslider_17167898123700e4b4f9bc17c1e0608d'] = 'Configuration du carrousel';
-$_MODULE['<{homeslider}prestashop>homeslider_7dce122004969d56ae2e0245cb754d35'] = 'Modifier';
-$_MODULE['<{homeslider}prestashop>homeslider_a94c563cb2d2eec9507c6ffeba4659cc'] = 'les modules %s doivent être accessible en écriture (CHMOD 755 / 777)';
-$_MODULE['<{homeslider}prestashop>homeslider_4477f672766f6f255f760649af8bd92a'] = 'URL trop longue';
-$_MODULE['<{homeslider}prestashop>homeslider_ab53605e4a73424d186afccef7b4bc03'] = 'Légende absente';
-$_MODULE['<{homeslider}prestashop>homeslider_0f059227d0a750ce652337d911879671'] = 'URL absente';
-$_MODULE['<{homeslider}prestashop>homeslider_7f82c65d548588c8d5412463c182e450'] = 'La configuration n\'a pas pu être mise à jour';
-$_MODULE['<{homeslider}prestashop>homeslider_7cc92687130ea12abb80556681538001'] = 'Une erreur est survenue durant l\'envoi de l\'image';
-$_MODULE['<{homeslider}prestashop>homeslider_bb6abf21a6c70c5740d93093b5518954'] = 'Diapositive ajoutée';
-$_MODULE['<{homeslider}prestashop>homeslider_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Activé';
-$_MODULE['<{homeslider}prestashop>homeslider_e933dc24fb245d863a43b4fefe9b45f5'] = 'Hauteur :';
-$_MODULE['<{homeslider}prestashop>homeslider_9ce04a5715756f9c0fece348db9b7da1'] = 'Boucle : ';
-$_MODULE['<{homeslider}prestashop>homeslider_bafd7322c6e97d25b6299b5d6fe8920b'] = 'Non';
-$_MODULE['<{homeslider}prestashop>homeslider_571988492824e57070d78e6c86333f20'] = 'Configuration des diapositives';
-$_MODULE['<{homeslider}prestashop>homeslider_02023fc24279454047fd419ecd1db9af'] = 'Ajouter une diapositive';
-$_MODULE['<{homeslider}prestashop>homeslider_947c5b1ecd3021f44ae45bc176085ae1'] = 'Mettre en ligne votre diapositive';
-$_MODULE['<{homeslider}prestashop>homeslider_2d806bd95ceb6d3166fb5c01d3fb75f0'] = 'Configurer votre diapositive';
-$_MODULE['<{homeslider}prestashop>homeslider_51ec9bf4aaeab1b25bb57f9f8d4de557'] = 'Titre :';
-$_MODULE['<{homeslider}prestashop>homeslider_8046c95f98fc714db47978092bb24264'] = 'Légende :';
-$_MODULE['<{homeslider}prestashop>homeslider_a6abafe564d3940cc36ee43e2f09400b'] = 'Diapositive non valable';
-$_MODULE['<{homeslider}prestashop>homeslider_cdf841e01e10cae6355f72e6838808eb'] = 'La diapositive n\'a pas pu être ajoutée';
-$_MODULE['<{homeslider}prestashop>homeslider_2c526c645bca9542ba1598835d46b753'] = 'Vitesse :';
-$_MODULE['<{homeslider}prestashop>homeslider_9582801267616d564272ae7a4f622c93'] = 'Carrousel d\'image (slider) pour votre page d\'accueil';
-$_MODULE['<{homeslider}prestashop>homeslider_48ccf48dcf2218a413ce473262f21a0c'] = 'Largeur :';
-$_MODULE['<{homeslider}prestashop>homeslider_154e6bcf4e3b49a424323cb9021ef851'] = 'Pause :';
-$_MODULE['<{homeslider}prestashop>homeslider_f2a6c498fb90ee345d997f888fce3b18'] = 'Supprimer';
-$_MODULE['<{homeslider}prestashop>homeslider_32bd52059351cd9ac4ae44f16746da11'] = 'Modifier votre diapositive';
-$_MODULE['<{homeslider}prestashop>homeslider_3d091e856cb7615d1ccb96bc759b5a92'] = 'Active :';
-$_MODULE['<{homeslider}prestashop>homeslider_70397c4b252a5168c5ec003931cea215'] = 'Champs requis';
-$_MODULE['<{homeslider}prestashop>homeslider_b3e3ed438fb0ea2935b3e79eac1f1658'] = 'État non valable';
-$_MODULE['<{homeslider}prestashop>homeslider_76ad3ac84a702b0497cd6be8e8886d34'] = 'ID non valable';
-$_MODULE['<{homeslider}prestashop>homeslider_980f56796b8bf9d607283de9815fe217'] = 'Format d\'URL incorrect';
-$_MODULE['<{homeslider}prestashop>homeslider_7a92ef6b168d77ebcdad785b01d77a8e'] = 'Nom de fichier non valable';
-$_MODULE['<{homeslider}prestashop>homeslider_8cf45ba354f4725ec8a0d31164910895'] = 'Image absente';
-$_MODULE['<{homeslider}prestashop>homeslider_3b3d06023f6353f8fd05f859b298573e'] = 'URL :';
-$_MODULE['<{homeslider}prestashop>homeslider_349097dadf7e6b01dd2af601d54fd59a'] = 'Titre absent';
-$_MODULE['<{homeslider}prestashop>homeslider_93cba07454f06a4a960172bbd6e2a435'] = 'Oui';
-$_MODULE['<{homeslider}prestashop>homeslider_c9cc8cce247e49bae79f15173ce97354'] = 'Enregistrer';
-$_MODULE['<{homeslider}prestashop>homeslider_3f22c758c989513080e13842e1ff70d8'] = 'Vous n\'avez pas encore ajouté de diapositive.';
-$_MODULE['<{homeslider}prestashop>homeslider_a5220b3d801e803e8c4133edcd0dc7b4'] = 'Sélectionner un fichier :';
-$_MODULE['<{homeslider}prestashop>homeslider_d0042a700e9bdf79689d63ee6846dc0e'] = 'Description :';
-$_MODULE['<{homeslider}prestashop>homeslider_ea4788705e6873b424c65e91c2846b19'] = 'Annuler';
-$_MODULE['<{homeslider}prestashop>homeslider_3f80dc2cdd06939d4f5514362067cd86'] = 'Valeur non valables';
-$_MODULE['<{homeslider}prestashop>homeslider_57b620e0495c07c15deda4dde882d47b'] = 'Position non valable pour la diapositive';
-$_MODULE['<{homeslider}prestashop>homeslider_14f09fd0804a8f1cd0eb757125fc9c28'] = 'Titre trop long';
-$_MODULE['<{homeslider}prestashop>homeslider_39fc40a0ebcbfcae901d20ab8980f188'] = 'Légence trop longue';
-$_MODULE['<{homeslider}prestashop>homeslider_62239300ba982b06ab0f1aa7100ad297'] = 'Description trop longue';
-$_MODULE['<{homeslider}prestashop>homeslider_20015706a8cbd457cbb6ea3e7d5dc9b3'] = 'Configuration mise à jour';
-$_MODULE['<{homeslider}prestashop>homeslider_eb28485b92fbf9201918698245ec6430'] = 'La diapositive n\'a pas pu être mise à jour';
-$_MODULE['<{homeslider}prestashop>homeslider_5da12d1bb63af9cd5be306102b23e82e'] = 'Diapositive supprimée';
-$_MODULE['<{homeslider}prestashop>homeslider_080b5727c047ef6658591f7d4507e681'] = 'Diapositive mise à jour';
-$_MODULE['<{homeslider}prestashop>homeslider_b9f5c797ebbf55adccdd8539a65a0241'] = 'Désactivé';
diff --git a/modules/homeslider/translations/it.php b/modules/homeslider/translations/it.php
deleted file mode 100644
index f6af30f4a..000000000
--- a/modules/homeslider/translations/it.php
+++ /dev/null
@@ -1,58 +0,0 @@
-homeslider_c17aed434289cedd02618451e12c8da6'] = 'Aggiungi uno slider immagini nella tua homepage';
-$_MODULE['<{homeslider}prestashop>homeslider_17167898123700e4b4f9bc17c1e0608d'] = 'Configurazione slider';
-$_MODULE['<{homeslider}prestashop>homeslider_7dce122004969d56ae2e0245cb754d35'] = 'Modifica';
-$_MODULE['<{homeslider}prestashop>homeslider_a94c563cb2d2eec9507c6ffeba4659cc'] = 'I moduli %s devono essere scrivibili (CHMOD 755/777)';
-$_MODULE['<{homeslider}prestashop>homeslider_4477f672766f6f255f760649af8bd92a'] = 'URL troppo lunga';
-$_MODULE['<{homeslider}prestashop>homeslider_ab53605e4a73424d186afccef7b4bc03'] = 'Legenda non impostata';
-$_MODULE['<{homeslider}prestashop>homeslider_0f059227d0a750ce652337d911879671'] = 'URL non impostata';
-$_MODULE['<{homeslider}prestashop>homeslider_7f82c65d548588c8d5412463c182e450'] = 'La configurazione non può essere aggiornata';
-$_MODULE['<{homeslider}prestashop>homeslider_7cc92687130ea12abb80556681538001'] = 'Errore durante il caricamento delle immagini.';
-$_MODULE['<{homeslider}prestashop>homeslider_bb6abf21a6c70c5740d93093b5518954'] = 'Immagine aggiunta';
-$_MODULE['<{homeslider}prestashop>homeslider_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Attivato';
-$_MODULE['<{homeslider}prestashop>homeslider_e933dc24fb245d863a43b4fefe9b45f5'] = 'Altezza:';
-$_MODULE['<{homeslider}prestashop>homeslider_9ce04a5715756f9c0fece348db9b7da1'] = 'Ripetizione:';
-$_MODULE['<{homeslider}prestashop>homeslider_bafd7322c6e97d25b6299b5d6fe8920b'] = 'No';
-$_MODULE['<{homeslider}prestashop>homeslider_571988492824e57070d78e6c86333f20'] = 'Configurazione slider';
-$_MODULE['<{homeslider}prestashop>homeslider_02023fc24279454047fd419ecd1db9af'] = 'Aggiungi immagine';
-$_MODULE['<{homeslider}prestashop>homeslider_2d806bd95ceb6d3166fb5c01d3fb75f0'] = 'Configura la tua immagine';
-$_MODULE['<{homeslider}prestashop>homeslider_51ec9bf4aaeab1b25bb57f9f8d4de557'] = 'Titolo:';
-$_MODULE['<{homeslider}prestashop>homeslider_8046c95f98fc714db47978092bb24264'] = 'legenda';
-$_MODULE['<{homeslider}prestashop>homeslider_a6abafe564d3940cc36ee43e2f09400b'] = 'Immagine non valida';
-$_MODULE['<{homeslider}prestashop>homeslider_cdf841e01e10cae6355f72e6838808eb'] = 'L\'immagine non può essere aggiunta';
-$_MODULE['<{homeslider}prestashop>homeslider_947c5b1ecd3021f44ae45bc176085ae1'] = 'Carica la tua immagine';
-$_MODULE['<{homeslider}prestashop>homeslider_48ccf48dcf2218a413ce473262f21a0c'] = 'Larghezza:';
-$_MODULE['<{homeslider}prestashop>homeslider_2c526c645bca9542ba1598835d46b753'] = 'Velocità';
-$_MODULE['<{homeslider}prestashop>homeslider_154e6bcf4e3b49a424323cb9021ef851'] = 'Pausa:';
-$_MODULE['<{homeslider}prestashop>homeslider_f2a6c498fb90ee345d997f888fce3b18'] = 'Elimina';
-$_MODULE['<{homeslider}prestashop>homeslider_32bd52059351cd9ac4ae44f16746da11'] = 'Modifica la tua immagine';
-$_MODULE['<{homeslider}prestashop>homeslider_3d091e856cb7615d1ccb96bc759b5a92'] = 'Attivo';
-$_MODULE['<{homeslider}prestashop>homeslider_70397c4b252a5168c5ec003931cea215'] = 'Campi richiesti';
-$_MODULE['<{homeslider}prestashop>homeslider_b3e3ed438fb0ea2935b3e79eac1f1658'] = 'Stato immagine non valida';
-$_MODULE['<{homeslider}prestashop>homeslider_76ad3ac84a702b0497cd6be8e8886d34'] = 'Id immagine non valido';
-$_MODULE['<{homeslider}prestashop>homeslider_980f56796b8bf9d607283de9815fe217'] = 'Formato URL non corretto';
-$_MODULE['<{homeslider}prestashop>homeslider_7a92ef6b168d77ebcdad785b01d77a8e'] = 'Nome file non corretto';
-$_MODULE['<{homeslider}prestashop>homeslider_8cf45ba354f4725ec8a0d31164910895'] = 'Immagine non impostata';
-$_MODULE['<{homeslider}prestashop>homeslider_9582801267616d564272ae7a4f622c93'] = 'Slide immagini in home page';
-$_MODULE['<{homeslider}prestashop>homeslider_93cba07454f06a4a960172bbd6e2a435'] = 'Sì';
-$_MODULE['<{homeslider}prestashop>homeslider_c9cc8cce247e49bae79f15173ce97354'] = 'Salva';
-$_MODULE['<{homeslider}prestashop>homeslider_3f22c758c989513080e13842e1ff70d8'] = 'Non hai ancora aggiunto una immagine ancora';
-$_MODULE['<{homeslider}prestashop>homeslider_a5220b3d801e803e8c4133edcd0dc7b4'] = 'Seleziona un file';
-$_MODULE['<{homeslider}prestashop>homeslider_3b3d06023f6353f8fd05f859b298573e'] = 'URL:';
-$_MODULE['<{homeslider}prestashop>homeslider_d0042a700e9bdf79689d63ee6846dc0e'] = 'Descrizione:';
-$_MODULE['<{homeslider}prestashop>homeslider_ea4788705e6873b424c65e91c2846b19'] = 'Annulla';
-$_MODULE['<{homeslider}prestashop>homeslider_3f80dc2cdd06939d4f5514362067cd86'] = 'Valori non validi';
-$_MODULE['<{homeslider}prestashop>homeslider_57b620e0495c07c15deda4dde882d47b'] = 'Posizione immagine non valida';
-$_MODULE['<{homeslider}prestashop>homeslider_14f09fd0804a8f1cd0eb757125fc9c28'] = 'Titolo troppo lungo';
-$_MODULE['<{homeslider}prestashop>homeslider_62239300ba982b06ab0f1aa7100ad297'] = 'Descrizione troppo lunga';
-$_MODULE['<{homeslider}prestashop>homeslider_349097dadf7e6b01dd2af601d54fd59a'] = 'Titolo non impostato';
-$_MODULE['<{homeslider}prestashop>homeslider_eb28485b92fbf9201918698245ec6430'] = 'L\'immagine non può essere modificata';
-$_MODULE['<{homeslider}prestashop>homeslider_5da12d1bb63af9cd5be306102b23e82e'] = 'Immagine cancellata';
-$_MODULE['<{homeslider}prestashop>homeslider_080b5727c047ef6658591f7d4507e681'] = 'Immagine aggiornata';
-$_MODULE['<{homeslider}prestashop>homeslider_b9f5c797ebbf55adccdd8539a65a0241'] = 'Disattivato';
-$_MODULE['<{homeslider}prestashop>homeslider_39fc40a0ebcbfcae901d20ab8980f188'] = 'Legenda troppo lunga';
-$_MODULE['<{homeslider}prestashop>homeslider_20015706a8cbd457cbb6ea3e7d5dc9b3'] = 'Configurazione aggiornata';
diff --git a/modules/importerosc/translations/de.php b/modules/importerosc/translations/de.php
deleted file mode 100644
index eb0164023..000000000
--- a/modules/importerosc/translations/de.php
+++ /dev/null
@@ -1,28 +0,0 @@
-importerosc_f4a344f88bab7b04a73077bafc8a0187'] = 'Mit diesem Modul können Sie von osCommerce nach Prestashop importieren';
-$_MODULE['<{importerosc}prestashop>importerosc_a410107bacc21de421c07f0162f40878'] = 'Standard osCommerce Sprache:';
-$_MODULE['<{importerosc}prestashop>importerosc_770b2f7556eecbe5000cfcbddc9f9885'] = '(ZB: mysql.mydomain.com)';
-$_MODULE['<{importerosc}prestashop>importerosc_dc647eb65e6711e155375218212b3964'] = 'Kennwort';
-$_MODULE['<{importerosc}prestashop>importerosc_e307db07b3975fef922a80d07455ee5e'] = 'Datenbank';
-$_MODULE['<{importerosc}prestashop>importerosc_6bdc02625540b5264cffe801c37a82dd'] = '(Das Präfix ist optional. Wenn alle Ihre Datenbank-Tabellen mit \\"pref_\\" beginnen, Ihre Präfix \\"pref_\\" ist)';
-$_MODULE['<{importerosc}prestashop>importerosc_4685343b5e2e0f0fbee63dddafde693f'] = 'Sie versuchen Kategorien zu importieren, welche in Ihrer osCommerce Datenbank keiner Ebene zugewiesen sind. Sie müssen dieses Feld angeben, um mit dem Import der Kategorien fortzufahren.';
-$_MODULE['<{importerosc}prestashop>importerosc_fced104d747e0855ceff3020653104ab'] = 'Ebene ist berechnet und erstellt worden, Sie können fortfahren.';
-$_MODULE['<{importerosc}prestashop>importerosc_b405d0bebeedbdc1773a44ac36b8ffc4'] = 'Es wird dringend empfohlen eine Sicherung Ihrer Datenbank zu erstellen, bevor Sie fortfahren. Haben Sie eine Sicherung erstellt ?';
-$_MODULE['<{importerosc}prestashop>importerosc_3128e575f57c8bff6950eb946748318a'] = 'Shop URL:';
-$_MODULE['<{importerosc}prestashop>importerosc_86545d77ce5790e924190d9b5a7ac1b6'] = 'Standardgruppe OS Commerce';
-$_MODULE['<{importerosc}prestashop>importerosc_9aa1b03934893d7134a660af4204f2a9'] = 'Server';
-$_MODULE['<{importerosc}prestashop>importerosc_14ae0ea02f571a833786d13d9ca6a897'] = '(Passwort kann leer sein)';
-$_MODULE['<{importerosc}prestashop>importerosc_16f35420186575c2a1d9c0b59edf6ad3'] = 'Klicken Sie auf hinzufügen und berechnen Sie die Ebene.';
-$_MODULE['<{importerosc}prestashop>importerosc_6325b420c7e3747295ebc4265ca5ebf5'] = 'Standard osCommerce Währung:';
-$_MODULE['<{importerosc}prestashop>importerosc_f106e79e646e4262fae765f77db9ca91'] = 'Geben Sie das Root-URL Ihrer Website oscommerce';
-$_MODULE['<{importerosc}prestashop>importerosc_a89a64592edf58aee0fc749735902cea'] = 'Bitte wählen Sie ein Standard-Sprache';
-$_MODULE['<{importerosc}prestashop>importerosc_375e6e17d4bd18a5163d3a7d13b80b4b'] = 'Bitte wählen Sie eine Standardwährung';
-$_MODULE['<{importerosc}prestashop>importerosc_294f0969b5f80f1bae24a7183eb338d5'] = 'Bitte stellen Sie Ihren Shop URL ein';
-$_MODULE['<{importerosc}prestashop>importerosc_8f9bfe9d1345237cb3b2b205864da075'] = 'Benutzer';
-$_MODULE['<{importerosc}prestashop>importerosc_9f95fc55011203d91d50a0ed512f805f'] = 'Table konnte nicht geändert werden.';
-$_MODULE['<{importerosc}prestashop>importerosc_e273168c3697c35b8c737d14b1a5fb26'] = 'Importeur osCommerce';
-$_MODULE['<{importerosc}prestashop>importerosc_dac130bdd2c5492a8108a4145bd9f04a'] = 'Database Prefix';
diff --git a/modules/importerosc/translations/en.php b/modules/importerosc/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/importerosc/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-importerosc_f4a344f88bab7b04a73077bafc8a0187'] = 'Este módulo permite importar su tienda OsCommerce en PrestaShop';
-$_MODULE['<{importerosc}prestashop>importerosc_a410107bacc21de421c07f0162f40878'] = 'Idioma por defecto de osCommerce:';
-$_MODULE['<{importerosc}prestashop>importerosc_770b2f7556eecbe5000cfcbddc9f9885'] = '(ej: mysql.midominio.com)';
-$_MODULE['<{importerosc}prestashop>importerosc_dc647eb65e6711e155375218212b3964'] = 'Contraseña';
-$_MODULE['<{importerosc}prestashop>importerosc_e307db07b3975fef922a80d07455ee5e'] = 'Base de datos';
-$_MODULE['<{importerosc}prestashop>importerosc_6bdc02625540b5264cffe801c37a82dd'] = '(El prefijo es opcional. Si todas las tablas de la base de datos comienzan con \\"pref_\\" ese es su prefijo)';
-$_MODULE['<{importerosc}prestashop>importerosc_4685343b5e2e0f0fbee63dddafde693f'] = 'Usted está tratando de importar las categorías y hemos detectado que su base de datos oscommerce no tiene el campo \\"nivel\\" en la tabla categoria . Usted debe tener este campo para continuar con la importación de las categorías.';
-$_MODULE['<{importerosc}prestashop>importerosc_fced104d747e0855ceff3020653104ab'] = 'El campo NIVEL ha sido creado y calculado, ahora puede continuar';
-$_MODULE['<{importerosc}prestashop>importerosc_b405d0bebeedbdc1773a44ac36b8ffc4'] = 'Es altamente recomendable que haga un backup de su base de datos antes de continuar. Ha hecho un backup?';
-$_MODULE['<{importerosc}prestashop>importerosc_3128e575f57c8bff6950eb946748318a'] = 'Url de la tienda:';
-$_MODULE['<{importerosc}prestashop>importerosc_86545d77ce5790e924190d9b5a7ac1b6'] = 'Sistema operativo por defecto Grupo de Comercio';
-$_MODULE['<{importerosc}prestashop>importerosc_9aa1b03934893d7134a660af4204f2a9'] = 'Servidor';
-$_MODULE['<{importerosc}prestashop>importerosc_14ae0ea02f571a833786d13d9ca6a897'] = '(el password puede estar vacio)';
-$_MODULE['<{importerosc}prestashop>importerosc_16f35420186575c2a1d9c0b59edf6ad3'] = 'Click para añadir y calcular el campo \\"nivel\\"';
-$_MODULE['<{importerosc}prestashop>importerosc_6325b420c7e3747295ebc4265ca5ebf5'] = 'Moneda por defecto de osCommerce:';
-$_MODULE['<{importerosc}prestashop>importerosc_f106e79e646e4262fae765f77db9ca91'] = 'Especificar la URL de su sitio oscommerce';
-$_MODULE['<{importerosc}prestashop>importerosc_a89a64592edf58aee0fc749735902cea'] = 'Por favor, seleccione un idioma por defecto';
-$_MODULE['<{importerosc}prestashop>importerosc_375e6e17d4bd18a5163d3a7d13b80b4b'] = 'Por favor seleccione una moneda por defecto';
-$_MODULE['<{importerosc}prestashop>importerosc_294f0969b5f80f1bae24a7183eb338d5'] = 'Por favor, establezca la URL de su tienda';
-$_MODULE['<{importerosc}prestashop>importerosc_8f9bfe9d1345237cb3b2b205864da075'] = 'Usuario';
-$_MODULE['<{importerosc}prestashop>importerosc_9f95fc55011203d91d50a0ed512f805f'] = 'No se puede ALTERAR LA TABLA';
-$_MODULE['<{importerosc}prestashop>importerosc_e273168c3697c35b8c737d14b1a5fb26'] = 'Importer osCommerce';
-$_MODULE['<{importerosc}prestashop>importerosc_dac130bdd2c5492a8108a4145bd9f04a'] = 'Prefijo de la base de datos';
diff --git a/modules/importerosc/translations/fr.php b/modules/importerosc/translations/fr.php
deleted file mode 100644
index 4719fcb69..000000000
--- a/modules/importerosc/translations/fr.php
+++ /dev/null
@@ -1,28 +0,0 @@
-importerosc_f4a344f88bab7b04a73077bafc8a0187'] = 'Ce module permet d\'importer votre boutique osCommerce dans PrestaShop';
-$_MODULE['<{importerosc}prestashop>importerosc_a410107bacc21de421c07f0162f40878'] = 'Langue par défaut d\'osCommerce :';
-$_MODULE['<{importerosc}prestashop>importerosc_770b2f7556eecbe5000cfcbddc9f9885'] = '(ex. : mysql.mydomain.com)';
-$_MODULE['<{importerosc}prestashop>importerosc_dc647eb65e6711e155375218212b3964'] = 'Mot de passe';
-$_MODULE['<{importerosc}prestashop>importerosc_e307db07b3975fef922a80d07455ee5e'] = 'Base de données';
-$_MODULE['<{importerosc}prestashop>importerosc_6bdc02625540b5264cffe801c37a82dd'] = '(le préfixe est facultatif. Si toute vos tables de base de données commencent par \\"pref_\\", votre préfixe est \\"pref_\\")';
-$_MODULE['<{importerosc}prestashop>importerosc_4685343b5e2e0f0fbee63dddafde693f'] = 'Vous essayez d\'importer des catégories et nous avons détecté que votre base de données osCommerce n\'ont pas le champs \\"level\\" dans la table \\"category\\". Vous devez avoir ce champs pour continuer l\'importation de catégories.';
-$_MODULE['<{importerosc}prestashop>importerosc_fced104d747e0855ceff3020653104ab'] = 'Le champ \\"level\\" a été créé et calculé, vous pouvez continuer';
-$_MODULE['<{importerosc}prestashop>importerosc_b405d0bebeedbdc1773a44ac36b8ffc4'] = 'Il est fortement recommandé de sauvegarder votre base de données avant de continuer. Avez-vous bien fait une sauvegarde ?';
-$_MODULE['<{importerosc}prestashop>importerosc_3128e575f57c8bff6950eb946748318a'] = 'URL de votre boutique :';
-$_MODULE['<{importerosc}prestashop>importerosc_86545d77ce5790e924190d9b5a7ac1b6'] = 'Group par défaut osCommerce';
-$_MODULE['<{importerosc}prestashop>importerosc_9aa1b03934893d7134a660af4204f2a9'] = 'Serveur';
-$_MODULE['<{importerosc}prestashop>importerosc_14ae0ea02f571a833786d13d9ca6a897'] = '(le mot de passe peut être vide)';
-$_MODULE['<{importerosc}prestashop>importerosc_16f35420186575c2a1d9c0b59edf6ad3'] = 'Cliquez ici pour ajouter et calculer le champs \\"level\\".';
-$_MODULE['<{importerosc}prestashop>importerosc_6325b420c7e3747295ebc4265ca5ebf5'] = 'Monnaie par défaut d\'osCommerce :';
-$_MODULE['<{importerosc}prestashop>importerosc_f106e79e646e4262fae765f77db9ca91'] = 'Indiquez l\'URL racine de votre site oscommerce';
-$_MODULE['<{importerosc}prestashop>importerosc_a89a64592edf58aee0fc749735902cea'] = 'Veuillez choisir une langue par défaut';
-$_MODULE['<{importerosc}prestashop>importerosc_375e6e17d4bd18a5163d3a7d13b80b4b'] = 'Veuillez choisir la devise par défaut';
-$_MODULE['<{importerosc}prestashop>importerosc_294f0969b5f80f1bae24a7183eb338d5'] = 'Veuillez choisir l\'URL de la boutique';
-$_MODULE['<{importerosc}prestashop>importerosc_8f9bfe9d1345237cb3b2b205864da075'] = 'Utilisateur';
-$_MODULE['<{importerosc}prestashop>importerosc_9f95fc55011203d91d50a0ed512f805f'] = 'Impossible de faire un \\"ALTER TABLE\\"';
-$_MODULE['<{importerosc}prestashop>importerosc_e273168c3697c35b8c737d14b1a5fb26'] = 'Import OsCommerce';
-$_MODULE['<{importerosc}prestashop>importerosc_dac130bdd2c5492a8108a4145bd9f04a'] = 'Préfixe base de données';
diff --git a/modules/importerosc/translations/it.php b/modules/importerosc/translations/it.php
deleted file mode 100644
index c9c9cc663..000000000
--- a/modules/importerosc/translations/it.php
+++ /dev/null
@@ -1,28 +0,0 @@
-importerosc_f4a344f88bab7b04a73077bafc8a0187'] = 'Questo modulo consente di importare da osCommerce per Prestashop';
-$_MODULE['<{importerosc}prestashop>importerosc_a410107bacc21de421c07f0162f40878'] = 'Lingua predefinita osCommerce:';
-$_MODULE['<{importerosc}prestashop>importerosc_770b2f7556eecbe5000cfcbddc9f9885'] = '(Es.: mysql.mydomain.com)';
-$_MODULE['<{importerosc}prestashop>importerosc_dc647eb65e6711e155375218212b3964'] = 'Password';
-$_MODULE['<{importerosc}prestashop>importerosc_e307db07b3975fef922a80d07455ee5e'] = 'Database';
-$_MODULE['<{importerosc}prestashop>importerosc_6bdc02625540b5264cffe801c37a82dd'] = '(Il prefisso è opzionale. Se tutte le tabelle del database iniziano con \\"pref_\\", il prefisso è \\"pref_\\")';
-$_MODULE['<{importerosc}prestashop>importerosc_4685343b5e2e0f0fbee63dddafde693f'] = 'Tu stai cercando di importare le categorie, e abbiamo trovato che il tuo database di oscommerce non ha i livelli di categorie. Tu devi avere questo campo per poter continuare l\'import delle categorie.';
-$_MODULE['<{importerosc}prestashop>importerosc_fced104d747e0855ceff3020653104ab'] = 'Il livello dei campi è stato creato e calcolato, Tu puoi continuare';
-$_MODULE['<{importerosc}prestashop>importerosc_b405d0bebeedbdc1773a44ac36b8ffc4'] = 'E\' fortemente raccomandato di fare un backup del tuo database prima di procedere. Hai fatto il backup?';
-$_MODULE['<{importerosc}prestashop>importerosc_3128e575f57c8bff6950eb946748318a'] = 'Negozio url:';
-$_MODULE['<{importerosc}prestashop>importerosc_86545d77ce5790e924190d9b5a7ac1b6'] = 'Gruppo di Commercio OS di default';
-$_MODULE['<{importerosc}prestashop>importerosc_9aa1b03934893d7134a660af4204f2a9'] = 'Server';
-$_MODULE['<{importerosc}prestashop>importerosc_16f35420186575c2a1d9c0b59edf6ad3'] = 'Clicca qui per calcolare il \\"livello\\" dei campi';
-$_MODULE['<{importerosc}prestashop>importerosc_14ae0ea02f571a833786d13d9ca6a897'] = '(Password può essere vuoto)';
-$_MODULE['<{importerosc}prestashop>importerosc_6325b420c7e3747295ebc4265ca5ebf5'] = 'Predefinita osCommerce valuta:';
-$_MODULE['<{importerosc}prestashop>importerosc_f106e79e646e4262fae765f77db9ca91'] = 'Specificare l\'URL radice del vostro sito oscommerce';
-$_MODULE['<{importerosc}prestashop>importerosc_a89a64592edf58aee0fc749735902cea'] = 'Si prega di selezionare una lingua predefinita';
-$_MODULE['<{importerosc}prestashop>importerosc_375e6e17d4bd18a5163d3a7d13b80b4b'] = 'Seleziona una valuta di default';
-$_MODULE['<{importerosc}prestashop>importerosc_294f0969b5f80f1bae24a7183eb338d5'] = 'Imposta il tuo url negozio';
-$_MODULE['<{importerosc}prestashop>importerosc_8f9bfe9d1345237cb3b2b205864da075'] = 'Utente';
-$_MODULE['<{importerosc}prestashop>importerosc_9f95fc55011203d91d50a0ed512f805f'] = 'Non possiamo MODIFICARE le TABELLE (ALTER TABLE)';
-$_MODULE['<{importerosc}prestashop>importerosc_e273168c3697c35b8c737d14b1a5fb26'] = 'Importatore osCommerce';
-$_MODULE['<{importerosc}prestashop>importerosc_dac130bdd2c5492a8108a4145bd9f04a'] = 'Database prefisso';
diff --git a/modules/loyalty/translations/de.php b/modules/loyalty/translations/de.php
deleted file mode 100644
index 4de1540b5..000000000
--- a/modules/loyalty/translations/de.php
+++ /dev/null
@@ -1,102 +0,0 @@
-loyalty_f8763c754ba455aa6e8ddf0e62911eb7'] = 'Bieten Sie Ihren Kunden ein Treueprogramm';
-$_MODULE['<{loyalty}prestashop>loyalty_f38f5974cdc23279ffe6d203641a8bdf'] = 'Einstellungen aktualisiert.';
-$_MODULE['<{loyalty}prestashop>loyalty_e3ff7eaa9deb31e1e91178a7216135c0'] = '1 Punkt =';
-$_MODULE['<{loyalty}prestashop>loyalty_46108358594124685e77e7d49f762b30'] = 'für den Rabatt';
-$_MODULE['<{loyalty}prestashop>loyalty_dd98e4d652530674f61201056fdbe9b4'] = 'Minimalbetrag zur Benutzung des Gutscheins';
-$_MODULE['<{loyalty}prestashop>loyalty_51ab56dd5b46c7b5c8fdf22651ae0db6'] = 'Punkte auf herabgesetzte Produkte verteilen';
-$_MODULE['<{loyalty}prestashop>loyalty_ade45d72ab6ba1ab576d8b9deb0c2438'] = 'Punkte werden vergeben, wenn die Bestellung';
-$_MODULE['<{loyalty}prestashop>loyalty_44749712dbec183e983dcd78a7736c41'] = 'Datum';
-$_MODULE['<{loyalty}prestashop>loyalty_1026e44f047fb9da36a62c0a8846baac'] = 'Punkte-Status';
-$_MODULE['<{loyalty}prestashop>loyalty_66c2c90ea9f6f4a12854195085781d7f'] = 'Gesamtpunktezahl zur Verfügung:';
-$_MODULE['<{loyalty}prestashop>loyalty_4cb08bf5ad3d3c7b010dde725a078b28'] = 'Bereits eingelöst';
-$_MODULE['<{loyalty}prestashop>loyalty_01371a1d58e9234c0b9dbc08cf54fa8b'] = 'Nicht für Rabatte zur Verfügung';
-$_MODULE['<{loyalty}prestashop>loyalty_c540093e64d84440025b2d8201f04336'] = 'Meine Treuepunkte';
-$_MODULE['<{loyalty}prestashop>loyalty_5acc2ceeb883ba07cef2d02ea382f242'] = 'Sie haben keine Bestellungen vorgenommen.';
-$_MODULE['<{loyalty}prestashop>loyalty_dd1f775e443ff3b9a89270713580a51b'] = 'Zurück';
-$_MODULE['<{loyalty}prestashop>loyalty_6c583afb157e33bfb5b7c3d4114c4dd5'] = 'Artikel:';
-$_MODULE['<{loyalty}prestashop>loyalty_4db04271e368fe3d4e1aa7332a18fa9d'] = 'Meine Punkte in einen Gutschein im Wert von umwandeln';
-$_MODULE['<{loyalty}prestashop>loyalty_ca0dbad92a874b2f69b549293387925e'] = 'Code';
-$_MODULE['<{loyalty}prestashop>loyalty_b2844b8e17ecaaeae68d018fe9418af0'] = 'Gültig bis';
-$_MODULE['<{loyalty}prestashop>loyalty_ec53a8c4f07baed5d8825072c89799be'] = 'Status';
-$_MODULE['<{loyalty}prestashop>loyalty_cec73b5ce095a59305ad92a0d47495cb'] = 'So verwenden Sie';
-$_MODULE['<{loyalty}prestashop>loyalty_a16cf3ec5200cc519f4fe48e34b1df83'] = 'Die Mindestbestellmenge zur Verwendung dieser Gutscheine beträgt:';
-$_MODULE['<{loyalty}prestashop>product_054a9c66cc92b7f1bfcacee3b7c7ad54'] = 'Keine Bonuspunkte für dieses Produkt, weil es bereits herabgesetzt ist.';
-$_MODULE['<{loyalty}prestashop>product_2996152bb442bf98c80c515c6055de5f'] = 'Treuepunkte';
-$_MODULE['<{loyalty}prestashop>product_b9cb3a85529dd593c14c838e22976cff'] = 'Ihr Warenkorb hat insgesamt';
-$_MODULE['<{loyalty}prestashop>shopping-cart_443c3e03e194c2a4cdb107808b051615'] = 'die in einen Gutschein im Wert von umgerechnet werden können';
-$_MODULE['<{loyalty}prestashop>loyalty_30146a132c2aa28808a8411ed74c12ed'] = 'Kundentreue und Belohnungen';
-$_MODULE['<{loyalty}prestashop>loyalty_7307b68f93443d5863f1d3943c546b20'] = 'Treuebonus';
-$_MODULE['<{loyalty}prestashop>loyalty_5be9427a9169ad6e9b63b0c9c61575d9'] = 'Treueprogramm';
-$_MODULE['<{loyalty}prestashop>loyalty_f4f70727dc34561dfde1a3c529b6205c'] = 'Einstellungen';
-$_MODULE['<{loyalty}prestashop>loyalty_98cf9475009d3c6e795ffac5d391cec4'] = 'Gutschein-Details';
-$_MODULE['<{loyalty}prestashop>loyalty_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Aktiviert';
-$_MODULE['<{loyalty}prestashop>loyalty_bafd7322c6e97d25b6299b5d6fe8920b'] = 'Nein';
-$_MODULE['<{loyalty}prestashop>loyalty_9611a682e61c503c32e2dc58fdbc8ddf'] = 'Punkte werden gelöscht, wenn die Bestellung';
-$_MODULE['<{loyalty}prestashop>loyalty_30e793698766edbaaf84a74d4c377f72'] = 'Treuepunkte-Fortschritt';
-$_MODULE['<{loyalty}prestashop>loyalty_4f2a91e15af2631ff9424564b8a45fb2'] = 'Ursprünglich';
-$_MODULE['<{loyalty}prestashop>loyalty_6366c60fc5b4f4fce0e3dd146494a4f4'] = 'Eingelöst';
-$_MODULE['<{loyalty}prestashop>loyalty_13148717f8faa9037f37d28971dfc219'] = 'Bestätigung';
-$_MODULE['<{loyalty}prestashop>loyalty_38fb7d24e0d60a048f540ecb18e13376'] = 'Speichern';
-$_MODULE['<{loyalty}prestashop>loyalty_94c69408d25102ba7ddcf3533b56c407'] = 'Objekt Kunde ungültig';
-$_MODULE['<{loyalty}prestashop>loyalty_a240fa27925a635b08dc28c9e4f9216d'] = 'Bestellung';
-$_MODULE['<{loyalty}prestashop>loyalty_98ab04462a3ea83fe76f4163efe755da'] = '#%d';
-$_MODULE['<{loyalty}prestashop>loyalty_928666bdf20510dfa5c58393b77f1798'] = 'Gutschein-Wert:';
-$_MODULE['<{loyalty}prestashop>loyalty_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'Mein Konto';
-$_MODULE['<{loyalty}prestashop>loyalty_b1c94ca2fbc3e78fc30069c8d0f01680'] = 'Alle';
-$_MODULE['<{loyalty}prestashop>loyalty_eb902cf204f3e4dfffeb56d92a9b5c26'] = 'Gültig ab';
-$_MODULE['<{loyalty}prestashop>loyalty_019d1ca7d50cc54b995f60d456435e87'] = 'Gebraucht';
-$_MODULE['<{loyalty}prestashop>loyalty_2af3bf4c82c5b33875d532820a959799'] = 'Durch diese Befehle erstellt';
-$_MODULE['<{loyalty}prestashop>loyalty_0b3db27bc15f682e92ff250ebb167d4b'] = 'Zurück zu Ihrem Konto';
-$_MODULE['<{loyalty}prestashop>shopping-cart_ea2c0ea1a08add3a75273e7f32f05f7a'] = 'Treue';
-$_MODULE['<{loyalty}prestashop>shopping-cart_1340ddee36660d8e1d5f6918dee0ba4e'] = '%d Treuepunkte';
-$_MODULE['<{loyalty}prestashop>loyalty_f0338d5a7bbd642cc188ca69c8a97b12'] = 'Dies löscht alle Treuepunkte und die Verlaufsgeschichte Ihrer Kunden, sind Sie sicher?';
-$_MODULE['<{loyalty}prestashop>loyalty_c2a7db7dec4de1bdb143ccd790f5a62c'] = 'Markieren Sie alle Kontrollkästchen der Kategorien, in denen Treue-Gutscheine nutzbar sind';
-$_MODULE['<{loyalty}prestashop>loyalty_453e6aa38d87b28ccae545967c53004f'] = 'Nicht verfügbar';
-$_MODULE['<{loyalty}prestashop>loyalty_a82e0d057f443115e807bd6ca595fc8c'] = 'Objekt Befehl ungültig';
-$_MODULE['<{loyalty}prestashop>loyalty_75dd5f1160a3f02b6fae89c54361a1b3'] = 'Punkte';
-$_MODULE['<{loyalty}prestashop>loyalty_df05c2db84dacb19b599b489bf3963db'] = 'Nicht auf Gutscheine anwendbar';
-$_MODULE['<{loyalty}prestashop>loyalty_01abfc750a0c942167651c40d088531d'] = 'Nr.';
-$_MODULE['<{loyalty}prestashop>loyalty_10ac3d04253ef7e1ddc73e6091c0cd55'] = 'Weiter';
-$_MODULE['<{loyalty}prestashop>loyalty_e0aa021e21dddbd6d8cecec71e9cf564'] = 'OK';
-$_MODULE['<{loyalty}prestashop>loyalty_b39cba8836db01a04888aef6ba386420'] = 'Meine Gutscheine aus Treuepunkten';
-$_MODULE['<{loyalty}prestashop>loyalty_18fb6221fe0d9895c2e9ba08283f00e9'] = 'Bestellung #%d';
-$_MODULE['<{loyalty}prestashop>loyalty_4c8d2e0395ae7d21e374dcbeb1cbeaaa'] = '%d Punkte.';
-$_MODULE['<{loyalty}prestashop>loyalty_1f67ea7a0b26e9eacc70523bde28df0c'] = 'mehr ...';
-$_MODULE['<{loyalty}prestashop>my-account_c540093e64d84440025b2d8201f04336'] = 'Meine Treuepunkte';
-$_MODULE['<{loyalty}prestashop>product_08ef6b34ab8e7039ef0ee69378f0ac0b'] = 'Sammeln Sie mit dem Kauf dieses Produktes Sie bis zu';
-$_MODULE['<{loyalty}prestashop>product_b40d5c523ee75453134b1449dd9cd13a'] = 'Treuepunkte';
-$_MODULE['<{loyalty}prestashop>product_0aab81de5c4c87021772015efc184d67'] = 'Punkte';
-$_MODULE['<{loyalty}prestashop>product_78ee54aa8f813885fe2fe20d232518b9'] = 'Punkt';
-$_MODULE['<{loyalty}prestashop>shopping-cart_562b7108857d8394e83861d0529cc7dd'] = 'Durch die Überprüfung dieses Warenkorbs können Sie bis zu';
-$_MODULE['<{loyalty}prestashop>shopping-cart_e7e421ccebbe3fafffe0f67dbd595d5b'] = '%d Treuepunkte';
-$_MODULE['<{loyalty}prestashop>shopping-cart_2d354f4df80bbebf309f184c3953dc1d'] = 'Nicht verfügbar für die Option \\"one-page-checkout\\"';
-$_MODULE['<{loyalty}prestashop>loyalty_e81b2826b5aebd9c92fb5d090f0cdc9d'] = 'Sie müssen mindestens eine Kategorie für Gutschein-Aktionen wählen';
-$_MODULE['<{loyalty}prestashop>loyalty_8334a158298fbcf163f4dcb4a387d150'] = 'Quote';
-$_MODULE['<{loyalty}prestashop>loyalty_315eae70bcaee168f1654c0ceeeef357'] = '1 Bonuspunkt';
-$_MODULE['<{loyalty}prestashop>loyalty_93cba07454f06a4a960172bbd6e2a435'] = 'Ja';
-$_MODULE['<{loyalty}prestashop>loyalty_b9f5c797ebbf55adccdd8539a65a0241'] = 'Deaktiviert';
-$_MODULE['<{loyalty}prestashop>loyalty_2a46cccdea2f18fdfdfacf99a98b758d'] = 'Gutscheine, die vom Treue-System erstellt wurden, können in den folgenden Kategorien verwendet werden:';
-$_MODULE['<{loyalty}prestashop>loyalty_a149e85a44aeec9140e92733d9ed694e'] = 'Abgebrochen';
-$_MODULE['<{loyalty}prestashop>loyalty_8b80d4b6307990874b832cc15a92e5a3'] = 'Einstellungen fehlen';
-$_MODULE['<{loyalty}prestashop>loyalty_94c2a3734a95577d173f702aa67a4788'] = 'Treuepunkte (%d Punkte)';
-$_MODULE['<{loyalty}prestashop>loyalty_309cd9f5437d1bb06a7fdab1811afe1a'] = 'Dieser Kunde hat keine Punkte';
-$_MODULE['<{loyalty}prestashop>loyalty_aa7f22f84f7be784055a3e7e7d22c519'] = 'Insgesamt (ohne Versandkosten)';
-$_MODULE['<{loyalty}prestashop>loyalty_a9be824aae4f2381a27b7c699b1e041e'] = 'Warten auf Bestätigung';
-$_MODULE['<{loyalty}prestashop>loyalty_78945de8de090e90045d299651a68a9b'] = 'Verfügbar';
-$_MODULE['<{loyalty}prestashop>loyalty_c48105520852bbd0fa692e4c9fd61628'] = 'Hier generierte Gutscheine sind in den folgenden Kategorien anwendbar:';
-$_MODULE['<{loyalty}prestashop>loyalty_5b7d558a20e8bcb6d9355a012becb1eb'] = 'Sind Sie sicher, dass Sie Ihre Punkte in Gutscheine umwandeln wollen?';
-$_MODULE['<{loyalty}prestashop>loyalty_0eceeb45861f9585dd7a97a3e36f85c6'] = 'Erstellt';
-$_MODULE['<{loyalty}prestashop>loyalty_689202409e48743b914713f96d93947c'] = 'Wert';
-$_MODULE['<{loyalty}prestashop>loyalty_3ec365dd533ddb7ef3d1c111186ce872'] = 'Details';
-$_MODULE['<{loyalty}prestashop>loyalty_29aa46cc3d2677c7e0f216910df600ff'] = 'Kostenloser Versand';
-$_MODULE['<{loyalty}prestashop>loyalty_8e69341aca5dbf9f55c2e75a2ed5df3c'] = 'Noch keine Gutscheine.';
-$_MODULE['<{loyalty}prestashop>loyalty_00d56a5e37c19c59d521530fc8e7f337'] = 'Noch keine Bonuspunkte.';
-$_MODULE['<{loyalty}prestashop>loyalty_8cf04a9734132302f96da8e113e80ce5'] = 'Startseite';
-$_MODULE['<{loyalty}prestashop>product_e94d481804904a48c1a8093e7a069570'] = 'Keine Bonuspunkte für dieses Produkt.';
-$_MODULE['<{loyalty}prestashop>product_443c3e03e194c2a4cdb107808b051615'] = 'die in einen Gutschein im Wert von umgerechnet werden können';
-$_MODULE['<{loyalty}prestashop>shopping-cart_8cec799df06a3f5a026b31fcd95e0172'] = 'Fügen Sie einige Produkte zu Ihrem Warenkorb, um einige Treuepunkte zu sammeln.';
diff --git a/modules/loyalty/translations/en.php b/modules/loyalty/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/loyalty/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-loyalty_f8763c754ba455aa6e8ddf0e62911eb7'] = 'Propone un programa de fidelización a sus clientes';
-$_MODULE['<{loyalty}prestashop>loyalty_f38f5974cdc23279ffe6d203641a8bdf'] = 'Ajustes actualizados.';
-$_MODULE['<{loyalty}prestashop>loyalty_e3ff7eaa9deb31e1e91178a7216135c0'] = '1 punto =';
-$_MODULE['<{loyalty}prestashop>loyalty_46108358594124685e77e7d49f762b30'] = 'para el descuento';
-$_MODULE['<{loyalty}prestashop>loyalty_dd98e4d652530674f61201056fdbe9b4'] = 'Importe mínimo para utilizar este vale';
-$_MODULE['<{loyalty}prestashop>loyalty_51ab56dd5b46c7b5c8fdf22651ae0db6'] = 'Dar puntos por los productos en descuento';
-$_MODULE['<{loyalty}prestashop>loyalty_ade45d72ab6ba1ab576d8b9deb0c2438'] = 'Los Puntos se otorgan cuando el pedido sea';
-$_MODULE['<{loyalty}prestashop>loyalty_44749712dbec183e983dcd78a7736c41'] = 'Fecha';
-$_MODULE['<{loyalty}prestashop>loyalty_1026e44f047fb9da36a62c0a8846baac'] = 'Estado de los puntos';
-$_MODULE['<{loyalty}prestashop>loyalty_66c2c90ea9f6f4a12854195085781d7f'] = 'Total puntos disponibles:';
-$_MODULE['<{loyalty}prestashop>loyalty_4cb08bf5ad3d3c7b010dde725a078b28'] = 'Convertidos';
-$_MODULE['<{loyalty}prestashop>loyalty_01371a1d58e9234c0b9dbc08cf54fa8b'] = 'No válidos en descuentos';
-$_MODULE['<{loyalty}prestashop>loyalty_c540093e64d84440025b2d8201f04336'] = 'Mis puntos de fidelidad';
-$_MODULE['<{loyalty}prestashop>loyalty_5acc2ceeb883ba07cef2d02ea382f242'] = 'Usted no ha solicitado pedidos.';
-$_MODULE['<{loyalty}prestashop>loyalty_dd1f775e443ff3b9a89270713580a51b'] = 'Anterior';
-$_MODULE['<{loyalty}prestashop>loyalty_6c583afb157e33bfb5b7c3d4114c4dd5'] = 'objetos:';
-$_MODULE['<{loyalty}prestashop>loyalty_4db04271e368fe3d4e1aa7332a18fa9d'] = 'Transformar mis puntos en un vale de';
-$_MODULE['<{loyalty}prestashop>loyalty_ca0dbad92a874b2f69b549293387925e'] = 'Código';
-$_MODULE['<{loyalty}prestashop>loyalty_b2844b8e17ecaaeae68d018fe9418af0'] = 'Válido hasta';
-$_MODULE['<{loyalty}prestashop>loyalty_ec53a8c4f07baed5d8825072c89799be'] = 'Estado';
-$_MODULE['<{loyalty}prestashop>loyalty_cec73b5ce095a59305ad92a0d47495cb'] = 'Para usar';
-$_MODULE['<{loyalty}prestashop>loyalty_a16cf3ec5200cc519f4fe48e34b1df83'] = 'El importe mínimo requerido para utilizar estos vales es de.';
-$_MODULE['<{loyalty}prestashop>product_054a9c66cc92b7f1bfcacee3b7c7ad54'] = 'No hay puntos de recompensa para este producto porque ya hay un descuento';
-$_MODULE['<{loyalty}prestashop>product_2996152bb442bf98c80c515c6055de5f'] = 'puntos de fidelidad';
-$_MODULE['<{loyalty}prestashop>product_b9cb3a85529dd593c14c838e22976cff'] = 'Su carrito totalizará';
-$_MODULE['<{loyalty}prestashop>shopping-cart_443c3e03e194c2a4cdb107808b051615'] = 'que se puede(n) transformar en un vale de descuento de';
-$_MODULE['<{loyalty}prestashop>loyalty_30146a132c2aa28808a8411ed74c12ed'] = 'La fidelidad de los clientes y las recompensas';
-$_MODULE['<{loyalty}prestashop>loyalty_7307b68f93443d5863f1d3943c546b20'] = 'Recompensa fidelidad';
-$_MODULE['<{loyalty}prestashop>loyalty_5be9427a9169ad6e9b63b0c9c61575d9'] = 'Programa de Fidelidad';
-$_MODULE['<{loyalty}prestashop>loyalty_f4f70727dc34561dfde1a3c529b6205c'] = 'Configuración';
-$_MODULE['<{loyalty}prestashop>loyalty_98cf9475009d3c6e795ffac5d391cec4'] = 'Detalles del vale';
-$_MODULE['<{loyalty}prestashop>loyalty_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Activado';
-$_MODULE['<{loyalty}prestashop>loyalty_bafd7322c6e97d25b6299b5d6fe8920b'] = 'No';
-$_MODULE['<{loyalty}prestashop>loyalty_9611a682e61c503c32e2dc58fdbc8ddf'] = 'Los puntos se cancelarán cuando la pedido sea';
-$_MODULE['<{loyalty}prestashop>loyalty_30e793698766edbaaf84a74d4c377f72'] = 'Progresión de puntos de fidelidad';
-$_MODULE['<{loyalty}prestashop>loyalty_4f2a91e15af2631ff9424564b8a45fb2'] = 'Inicial';
-$_MODULE['<{loyalty}prestashop>loyalty_6366c60fc5b4f4fce0e3dd146494a4f4'] = 'Convertido';
-$_MODULE['<{loyalty}prestashop>loyalty_13148717f8faa9037f37d28971dfc219'] = 'Validación';
-$_MODULE['<{loyalty}prestashop>loyalty_38fb7d24e0d60a048f540ecb18e13376'] = 'Guardar';
-$_MODULE['<{loyalty}prestashop>loyalty_94c69408d25102ba7ddcf3533b56c407'] = 'el objeto del cliente es incorrecto.';
-$_MODULE['<{loyalty}prestashop>loyalty_a240fa27925a635b08dc28c9e4f9216d'] = 'Pedido';
-$_MODULE['<{loyalty}prestashop>loyalty_98ab04462a3ea83fe76f4163efe755da'] = '#%s';
-$_MODULE['<{loyalty}prestashop>loyalty_928666bdf20510dfa5c58393b77f1798'] = 'Valor de bono:';
-$_MODULE['<{loyalty}prestashop>loyalty_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'Mi cuenta';
-$_MODULE['<{loyalty}prestashop>loyalty_b1c94ca2fbc3e78fc30069c8d0f01680'] = 'Todas';
-$_MODULE['<{loyalty}prestashop>loyalty_eb902cf204f3e4dfffeb56d92a9b5c26'] = 'Válido del';
-$_MODULE['<{loyalty}prestashop>loyalty_019d1ca7d50cc54b995f60d456435e87'] = 'Usado';
-$_MODULE['<{loyalty}prestashop>loyalty_2af3bf4c82c5b33875d532820a959799'] = 'Generado por los siguientes pedidos';
-$_MODULE['<{loyalty}prestashop>loyalty_0b3db27bc15f682e92ff250ebb167d4b'] = 'Volver a su cuenta';
-$_MODULE['<{loyalty}prestashop>shopping-cart_ea2c0ea1a08add3a75273e7f32f05f7a'] = 'fidelidad';
-$_MODULE['<{loyalty}prestashop>shopping-cart_1340ddee36660d8e1d5f6918dee0ba4e'] = '%d puntos de fidelidad';
-$_MODULE['<{loyalty}prestashop>loyalty_f0338d5a7bbd642cc188ca69c8a97b12'] = 'Esta acción suprimirá todos los puntos de fidelidad y el historial de los puntos de todos sus clientes, ¿está seguro de que desea continuar?';
-$_MODULE['<{loyalty}prestashop>loyalty_c2a7db7dec4de1bdb143ccd790f5a62c'] = 'Marcar para qué categorías se utilizarán los vales descuento de fidelidad';
-$_MODULE['<{loyalty}prestashop>loyalty_453e6aa38d87b28ccae545967c53004f'] = 'No disponible';
-$_MODULE['<{loyalty}prestashop>loyalty_a82e0d057f443115e807bd6ca595fc8c'] = 'El objeto pedido es incorrecto';
-$_MODULE['<{loyalty}prestashop>loyalty_75dd5f1160a3f02b6fae89c54361a1b3'] = 'Puntos';
-$_MODULE['<{loyalty}prestashop>loyalty_df05c2db84dacb19b599b489bf3963db'] = 'No disponible en los descuentos';
-$_MODULE['<{loyalty}prestashop>loyalty_01abfc750a0c942167651c40d088531d'] = '#';
-$_MODULE['<{loyalty}prestashop>loyalty_10ac3d04253ef7e1ddc73e6091c0cd55'] = 'Siguiente';
-$_MODULE['<{loyalty}prestashop>loyalty_e0aa021e21dddbd6d8cecec71e9cf564'] = 'OK';
-$_MODULE['<{loyalty}prestashop>loyalty_b39cba8836db01a04888aef6ba386420'] = 'Mis vales de puntos de fidelidad';
-$_MODULE['<{loyalty}prestashop>loyalty_18fb6221fe0d9895c2e9ba08283f00e9'] = 'Pedido n°%d';
-$_MODULE['<{loyalty}prestashop>loyalty_4c8d2e0395ae7d21e374dcbeb1cbeaaa'] = '%d puntos.';
-$_MODULE['<{loyalty}prestashop>loyalty_1f67ea7a0b26e9eacc70523bde28df0c'] = 'más...';
-$_MODULE['<{loyalty}prestashop>my-account_c540093e64d84440025b2d8201f04336'] = 'Mis puntos de fidelidad';
-$_MODULE['<{loyalty}prestashop>product_08ef6b34ab8e7039ef0ee69378f0ac0b'] = 'Al comprar este producto puede obtener hasta';
-$_MODULE['<{loyalty}prestashop>product_b40d5c523ee75453134b1449dd9cd13a'] = 'punto de fidelidad';
-$_MODULE['<{loyalty}prestashop>product_0aab81de5c4c87021772015efc184d67'] = 'puntos';
-$_MODULE['<{loyalty}prestashop>product_78ee54aa8f813885fe2fe20d232518b9'] = 'punto';
-$_MODULE['<{loyalty}prestashop>shopping-cart_562b7108857d8394e83861d0529cc7dd'] = 'Si valida su carrito, puede reunir';
-$_MODULE['<{loyalty}prestashop>shopping-cart_e7e421ccebbe3fafffe0f67dbd595d5b'] = '%d punto de fidelidad';
-$_MODULE['<{loyalty}prestashop>shopping-cart_2d354f4df80bbebf309f184c3953dc1d'] = 'No está disponible para los pedidos realizados como invitado';
-$_MODULE['<{loyalty}prestashop>loyalty_e81b2826b5aebd9c92fb5d090f0cdc9d'] = 'Debe elegir al menos una categoría para generar vales descuento';
-$_MODULE['<{loyalty}prestashop>loyalty_8334a158298fbcf163f4dcb4a387d150'] = 'Ratio';
-$_MODULE['<{loyalty}prestashop>loyalty_315eae70bcaee168f1654c0ceeeef357'] = '1 punto de recompensa';
-$_MODULE['<{loyalty}prestashop>loyalty_93cba07454f06a4a960172bbd6e2a435'] = 'Sí';
-$_MODULE['<{loyalty}prestashop>loyalty_b9f5c797ebbf55adccdd8539a65a0241'] = 'Desactivado';
-$_MODULE['<{loyalty}prestashop>loyalty_2a46cccdea2f18fdfdfacf99a98b758d'] = 'Los vales descuento creados por el sistema de fidelidad pueden utilizarse en las categorías de artículos siguientes:';
-$_MODULE['<{loyalty}prestashop>loyalty_a149e85a44aeec9140e92733d9ed694e'] = 'Cancelado';
-$_MODULE['<{loyalty}prestashop>loyalty_8b80d4b6307990874b832cc15a92e5a3'] = 'Algunos parámetros han desaparecido.';
-$_MODULE['<{loyalty}prestashop>loyalty_94c2a3734a95577d173f702aa67a4788'] = 'Puntos de fidelidad (%d puntos)';
-$_MODULE['<{loyalty}prestashop>loyalty_309cd9f5437d1bb06a7fdab1811afe1a'] = 'Este cliente no tiene puntos';
-$_MODULE['<{loyalty}prestashop>loyalty_aa7f22f84f7be784055a3e7e7d22c519'] = 'Total (sin transporte)';
-$_MODULE['<{loyalty}prestashop>loyalty_a9be824aae4f2381a27b7c699b1e041e'] = 'En espera de validación';
-$_MODULE['<{loyalty}prestashop>loyalty_78945de8de090e90045d299651a68a9b'] = 'Disponibles';
-$_MODULE['<{loyalty}prestashop>loyalty_c48105520852bbd0fa692e4c9fd61628'] = 'Los vales descuento generados aquí pueden utilizarse para los artículos de las siguientes categorías:';
-$_MODULE['<{loyalty}prestashop>loyalty_0eceeb45861f9585dd7a97a3e36f85c6'] = 'Creado';
-$_MODULE['<{loyalty}prestashop>loyalty_689202409e48743b914713f96d93947c'] = 'Valor';
-$_MODULE['<{loyalty}prestashop>loyalty_3ec365dd533ddb7ef3d1c111186ce872'] = 'Detalles';
-$_MODULE['<{loyalty}prestashop>loyalty_29aa46cc3d2677c7e0f216910df600ff'] = 'Transporte gratuíto';
-$_MODULE['<{loyalty}prestashop>loyalty_8e69341aca5dbf9f55c2e75a2ed5df3c'] = 'Sin vales aún';
-$_MODULE['<{loyalty}prestashop>loyalty_00d56a5e37c19c59d521530fc8e7f337'] = 'Sin recompensa de puntos todavía';
-$_MODULE['<{loyalty}prestashop>loyalty_8cf04a9734132302f96da8e113e80ce5'] = 'Inicio';
-$_MODULE['<{loyalty}prestashop>product_e94d481804904a48c1a8093e7a069570'] = 'No hay puntos de recompensa para este producto.';
-$_MODULE['<{loyalty}prestashop>product_443c3e03e194c2a4cdb107808b051615'] = 'que se puede(n) transformar en un vale de descuento de';
-$_MODULE['<{loyalty}prestashop>shopping-cart_8cec799df06a3f5a026b31fcd95e0172'] = 'Añadir más productos al carrito para obtener puntos de fidelidad.';
-$_MODULE['<{loyalty}prestashop>loyalty_5b7d558a20e8bcb6d9355a012becb1eb'] = '¿Está seguro de querer transformar sus puntos en vales de compra?';
diff --git a/modules/loyalty/translations/fr.php b/modules/loyalty/translations/fr.php
deleted file mode 100644
index c672afb64..000000000
--- a/modules/loyalty/translations/fr.php
+++ /dev/null
@@ -1,102 +0,0 @@
-loyalty_f38f5974cdc23279ffe6d203641a8bdf'] = 'Paramètres mise à jour.';
-$_MODULE['<{loyalty}prestashop>loyalty_cec73b5ce095a59305ad92a0d47495cb'] = 'À utiliser';
-$_MODULE['<{loyalty}prestashop>loyalty_a16cf3ec5200cc519f4fe48e34b1df83'] = 'Le montant minimum de commande afin d\'utiliser ces bons est : ';
-$_MODULE['<{loyalty}prestashop>product_054a9c66cc92b7f1bfcacee3b7c7ad54'] = 'Aucun point de fidélité pour ce produit car il y a déjà une promotion.';
-$_MODULE['<{loyalty}prestashop>product_2996152bb442bf98c80c515c6055de5f'] = 'points de fidélité';
-$_MODULE['<{loyalty}prestashop>product_b9cb3a85529dd593c14c838e22976cff'] = 'Votre panier totalisera';
-$_MODULE['<{loyalty}prestashop>shopping-cart_443c3e03e194c2a4cdb107808b051615'] = 'pouvant être transformé(s) en un bon de réduction de';
-$_MODULE['<{loyalty}prestashop>loyalty_f8763c754ba455aa6e8ddf0e62911eb7'] = 'Propose un programme de fidélité à vos clients.';
-$_MODULE['<{loyalty}prestashop>loyalty_e3ff7eaa9deb31e1e91178a7216135c0'] = '1 point =';
-$_MODULE['<{loyalty}prestashop>loyalty_46108358594124685e77e7d49f762b30'] = 'de réduction';
-$_MODULE['<{loyalty}prestashop>loyalty_dd98e4d652530674f61201056fdbe9b4'] = 'Montant minimal d\'achat pour utiliser le bon';
-$_MODULE['<{loyalty}prestashop>loyalty_51ab56dd5b46c7b5c8fdf22651ae0db6'] = 'Donner des points sur les produits en promotion';
-$_MODULE['<{loyalty}prestashop>loyalty_ade45d72ab6ba1ab576d8b9deb0c2438'] = 'Des points sont attribués lorsque la commande passe à l\'état ';
-$_MODULE['<{loyalty}prestashop>loyalty_44749712dbec183e983dcd78a7736c41'] = 'Date';
-$_MODULE['<{loyalty}prestashop>loyalty_1026e44f047fb9da36a62c0a8846baac'] = 'État des points';
-$_MODULE['<{loyalty}prestashop>loyalty_66c2c90ea9f6f4a12854195085781d7f'] = 'Total de points disponibles :';
-$_MODULE['<{loyalty}prestashop>loyalty_4cb08bf5ad3d3c7b010dde725a078b28'] = 'Déjà convertis';
-$_MODULE['<{loyalty}prestashop>loyalty_01371a1d58e9234c0b9dbc08cf54fa8b'] = 'Non valables sur les promotions';
-$_MODULE['<{loyalty}prestashop>loyalty_c540093e64d84440025b2d8201f04336'] = 'Mes points de fidélité';
-$_MODULE['<{loyalty}prestashop>loyalty_5acc2ceeb883ba07cef2d02ea382f242'] = 'Vous n\'avez passé aucune commande.';
-$_MODULE['<{loyalty}prestashop>loyalty_dd1f775e443ff3b9a89270713580a51b'] = 'Précédent';
-$_MODULE['<{loyalty}prestashop>loyalty_6c583afb157e33bfb5b7c3d4114c4dd5'] = 'objets :';
-$_MODULE['<{loyalty}prestashop>loyalty_4db04271e368fe3d4e1aa7332a18fa9d'] = 'Transformer mes points en un bon de réduction de';
-$_MODULE['<{loyalty}prestashop>loyalty_ca0dbad92a874b2f69b549293387925e'] = 'Code';
-$_MODULE['<{loyalty}prestashop>loyalty_b2844b8e17ecaaeae68d018fe9418af0'] = 'Valide jusqu\'au';
-$_MODULE['<{loyalty}prestashop>loyalty_ec53a8c4f07baed5d8825072c89799be'] = 'État';
-$_MODULE['<{loyalty}prestashop>loyalty_a240fa27925a635b08dc28c9e4f9216d'] = 'Commande';
-$_MODULE['<{loyalty}prestashop>loyalty_98ab04462a3ea83fe76f4163efe755da'] = '#%d';
-$_MODULE['<{loyalty}prestashop>loyalty_b1c94ca2fbc3e78fc30069c8d0f01680'] = 'Toutes';
-$_MODULE['<{loyalty}prestashop>loyalty_019d1ca7d50cc54b995f60d456435e87'] = 'Utilisé';
-$_MODULE['<{loyalty}prestashop>loyalty_0b3db27bc15f682e92ff250ebb167d4b'] = 'Retour à votre compte';
-$_MODULE['<{loyalty}prestashop>shopping-cart_ea2c0ea1a08add3a75273e7f32f05f7a'] = 'fidélité';
-$_MODULE['<{loyalty}prestashop>shopping-cart_1340ddee36660d8e1d5f6918dee0ba4e'] = '%d points de fidélité';
-$_MODULE['<{loyalty}prestashop>loyalty_30146a132c2aa28808a8411ed74c12ed'] = 'Programme de fidélité';
-$_MODULE['<{loyalty}prestashop>loyalty_7307b68f93443d5863f1d3943c546b20'] = 'Récompense fidélité';
-$_MODULE['<{loyalty}prestashop>loyalty_5be9427a9169ad6e9b63b0c9c61575d9'] = 'Programme de fidélité';
-$_MODULE['<{loyalty}prestashop>loyalty_f4f70727dc34561dfde1a3c529b6205c'] = 'Paramètres';
-$_MODULE['<{loyalty}prestashop>loyalty_98cf9475009d3c6e795ffac5d391cec4'] = 'Détails du bon';
-$_MODULE['<{loyalty}prestashop>loyalty_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Activé';
-$_MODULE['<{loyalty}prestashop>loyalty_bafd7322c6e97d25b6299b5d6fe8920b'] = 'Non';
-$_MODULE['<{loyalty}prestashop>loyalty_9611a682e61c503c32e2dc58fdbc8ddf'] = 'Des points sont annulés lorsque la commande passe à l\'état ';
-$_MODULE['<{loyalty}prestashop>loyalty_30e793698766edbaaf84a74d4c377f72'] = 'Progression des points de fidélité';
-$_MODULE['<{loyalty}prestashop>loyalty_4f2a91e15af2631ff9424564b8a45fb2'] = 'Initial';
-$_MODULE['<{loyalty}prestashop>loyalty_13148717f8faa9037f37d28971dfc219'] = 'Disponibles';
-$_MODULE['<{loyalty}prestashop>loyalty_38fb7d24e0d60a048f540ecb18e13376'] = 'Enregistrer';
-$_MODULE['<{loyalty}prestashop>loyalty_94c69408d25102ba7ddcf3533b56c407'] = 'L\'objet clients est incorrect.';
-$_MODULE['<{loyalty}prestashop>loyalty_928666bdf20510dfa5c58393b77f1798'] = 'Valeur du bon :';
-$_MODULE['<{loyalty}prestashop>loyalty_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'Mon compte';
-$_MODULE['<{loyalty}prestashop>loyalty_2af3bf4c82c5b33875d532820a959799'] = 'Généré par les commandes suivantes';
-$_MODULE['<{loyalty}prestashop>loyalty_6366c60fc5b4f4fce0e3dd146494a4f4'] = 'Convertis';
-$_MODULE['<{loyalty}prestashop>loyalty_eb902cf204f3e4dfffeb56d92a9b5c26'] = 'Valide du';
-$_MODULE['<{loyalty}prestashop>loyalty_c2a7db7dec4de1bdb143ccd790f5a62c'] = 'Cocher le(s) catégorie(s) pour lesquelles les bons de réductions fidélité pourront être utilisés.';
-$_MODULE['<{loyalty}prestashop>loyalty_18fb6221fe0d9895c2e9ba08283f00e9'] = 'Commande n°%d';
-$_MODULE['<{loyalty}prestashop>loyalty_4c8d2e0395ae7d21e374dcbeb1cbeaaa'] = '%d points.';
-$_MODULE['<{loyalty}prestashop>loyalty_1f67ea7a0b26e9eacc70523bde28df0c'] = 'plus...';
-$_MODULE['<{loyalty}prestashop>my-account_c540093e64d84440025b2d8201f04336'] = 'Mes points de fidélité';
-$_MODULE['<{loyalty}prestashop>product_08ef6b34ab8e7039ef0ee69378f0ac0b'] = 'En achetant ce produit vous pouvez gagner jusqu\'à ';
-$_MODULE['<{loyalty}prestashop>product_b40d5c523ee75453134b1449dd9cd13a'] = 'point de fidélité';
-$_MODULE['<{loyalty}prestashop>product_0aab81de5c4c87021772015efc184d67'] = 'points';
-$_MODULE['<{loyalty}prestashop>shopping-cart_562b7108857d8394e83861d0529cc7dd'] = 'En validant votre panier, vous pouvez collecter';
-$_MODULE['<{loyalty}prestashop>shopping-cart_e7e421ccebbe3fafffe0f67dbd595d5b'] = '%d point de fidélité';
-$_MODULE['<{loyalty}prestashop>shopping-cart_2d354f4df80bbebf309f184c3953dc1d'] = 'Offre non applicable pour les commandes passées en tant qu\'invité';
-$_MODULE['<{loyalty}prestashop>loyalty_f0338d5a7bbd642cc188ca69c8a97b12'] = 'Êtes-vous sûr de vouloir effacer tous les points de fidélité et l\'historique des points de tous vos clients ?';
-$_MODULE['<{loyalty}prestashop>loyalty_453e6aa38d87b28ccae545967c53004f'] = 'Indisponibles';
-$_MODULE['<{loyalty}prestashop>loyalty_a82e0d057f443115e807bd6ca595fc8c'] = 'L\'objet commande est incorrect.';
-$_MODULE['<{loyalty}prestashop>loyalty_75dd5f1160a3f02b6fae89c54361a1b3'] = 'Points';
-$_MODULE['<{loyalty}prestashop>loyalty_df05c2db84dacb19b599b489bf3963db'] = 'Non disponible sur les promotions';
-$_MODULE['<{loyalty}prestashop>loyalty_01abfc750a0c942167651c40d088531d'] = 'n°';
-$_MODULE['<{loyalty}prestashop>loyalty_10ac3d04253ef7e1ddc73e6091c0cd55'] = 'Suivant';
-$_MODULE['<{loyalty}prestashop>loyalty_e0aa021e21dddbd6d8cecec71e9cf564'] = 'OK';
-$_MODULE['<{loyalty}prestashop>loyalty_b39cba8836db01a04888aef6ba386420'] = 'Mes bons de réductions obtenus';
-$_MODULE['<{loyalty}prestashop>product_78ee54aa8f813885fe2fe20d232518b9'] = 'point';
-$_MODULE['<{loyalty}prestashop>loyalty_3ec365dd533ddb7ef3d1c111186ce872'] = 'Détails';
-$_MODULE['<{loyalty}prestashop>loyalty_29aa46cc3d2677c7e0f216910df600ff'] = 'Frais de port offerts';
-$_MODULE['<{loyalty}prestashop>loyalty_8e69341aca5dbf9f55c2e75a2ed5df3c'] = 'Aucun bon de réduction pour le moment.';
-$_MODULE['<{loyalty}prestashop>loyalty_00d56a5e37c19c59d521530fc8e7f337'] = 'Aucun point de fidélité pour le moment.';
-$_MODULE['<{loyalty}prestashop>loyalty_8cf04a9734132302f96da8e113e80ce5'] = 'Accueil';
-$_MODULE['<{loyalty}prestashop>product_e94d481804904a48c1a8093e7a069570'] = 'Aucun point de fidélité pour ce produit.';
-$_MODULE['<{loyalty}prestashop>product_443c3e03e194c2a4cdb107808b051615'] = 'pouvant être transformé(s) en un bon de réduction de';
-$_MODULE['<{loyalty}prestashop>loyalty_e81b2826b5aebd9c92fb5d090f0cdc9d'] = 'Vous devez choisir au moins une catégorie pour l\'action de bon de réduction';
-$_MODULE['<{loyalty}prestashop>loyalty_8334a158298fbcf163f4dcb4a387d150'] = 'Ratio';
-$_MODULE['<{loyalty}prestashop>loyalty_315eae70bcaee168f1654c0ceeeef357'] = '1 point de fidélité';
-$_MODULE['<{loyalty}prestashop>loyalty_b9f5c797ebbf55adccdd8539a65a0241'] = 'Désactivé';
-$_MODULE['<{loyalty}prestashop>loyalty_2a46cccdea2f18fdfdfacf99a98b758d'] = 'Les bons de réductions créés par le système de fidélité peuvent être utilisés dans les catégories d\'articles suivantes :';
-$_MODULE['<{loyalty}prestashop>loyalty_a149e85a44aeec9140e92733d9ed694e'] = 'Annulé';
-$_MODULE['<{loyalty}prestashop>loyalty_8b80d4b6307990874b832cc15a92e5a3'] = 'Des paramètres sont manquants';
-$_MODULE['<{loyalty}prestashop>loyalty_94c2a3734a95577d173f702aa67a4788'] = 'Points de fidélité (%d points)';
-$_MODULE['<{loyalty}prestashop>loyalty_309cd9f5437d1bb06a7fdab1811afe1a'] = 'Ce client n\'a pas de point';
-$_MODULE['<{loyalty}prestashop>loyalty_aa7f22f84f7be784055a3e7e7d22c519'] = 'Total (hors frais de ports)';
-$_MODULE['<{loyalty}prestashop>loyalty_a9be824aae4f2381a27b7c699b1e041e'] = 'En attente de validation';
-$_MODULE['<{loyalty}prestashop>loyalty_78945de8de090e90045d299651a68a9b'] = 'Disponibles';
-$_MODULE['<{loyalty}prestashop>loyalty_c48105520852bbd0fa692e4c9fd61628'] = 'Les bons de réductions générés ici peuvent être utilisés pour les articles des catégories suivantes :';
-$_MODULE['<{loyalty}prestashop>loyalty_5b7d558a20e8bcb6d9355a012becb1eb'] = 'Êtes-vous sûrs de vouloir transformer vos points en bon de réduction ?';
-$_MODULE['<{loyalty}prestashop>loyalty_0eceeb45861f9585dd7a97a3e36f85c6'] = 'Créé le';
-$_MODULE['<{loyalty}prestashop>loyalty_689202409e48743b914713f96d93947c'] = 'Valeur';
-$_MODULE['<{loyalty}prestashop>shopping-cart_8cec799df06a3f5a026b31fcd95e0172'] = 'Ajoutez des produits à votre panier pour gagner plus de points de fidélité.';
-$_MODULE['<{loyalty}prestashop>loyalty_93cba07454f06a4a960172bbd6e2a435'] = 'Oui';
diff --git a/modules/loyalty/translations/it.php b/modules/loyalty/translations/it.php
deleted file mode 100644
index dabb8656d..000000000
--- a/modules/loyalty/translations/it.php
+++ /dev/null
@@ -1,102 +0,0 @@
-loyalty_f8763c754ba455aa6e8ddf0e62911eb7'] = 'Prevedi un programma di fidelizzazione per i clienti';
-$_MODULE['<{loyalty}prestashop>loyalty_f38f5974cdc23279ffe6d203641a8bdf'] = 'Impostazioni aggiornate.';
-$_MODULE['<{loyalty}prestashop>loyalty_e3ff7eaa9deb31e1e91178a7216135c0'] = '1 punto =';
-$_MODULE['<{loyalty}prestashop>loyalty_46108358594124685e77e7d49f762b30'] = 'per lo sconto';
-$_MODULE['<{loyalty}prestashop>loyalty_dd98e4d652530674f61201056fdbe9b4'] = 'importo minimo per utilizzare il voucher';
-$_MODULE['<{loyalty}prestashop>loyalty_ade45d72ab6ba1ab576d8b9deb0c2438'] = 'I punti vengono assegnati quando l\'ordine è';
-$_MODULE['<{loyalty}prestashop>loyalty_44749712dbec183e983dcd78a7736c41'] = 'Data';
-$_MODULE['<{loyalty}prestashop>loyalty_1026e44f047fb9da36a62c0a8846baac'] = 'Status dei punti';
-$_MODULE['<{loyalty}prestashop>loyalty_66c2c90ea9f6f4a12854195085781d7f'] = 'Totale punti disponibili:';
-$_MODULE['<{loyalty}prestashop>loyalty_4cb08bf5ad3d3c7b010dde725a078b28'] = 'Già convertito';
-$_MODULE['<{loyalty}prestashop>loyalty_01371a1d58e9234c0b9dbc08cf54fa8b'] = 'Non disponibile sugli sconti';
-$_MODULE['<{loyalty}prestashop>loyalty_c540093e64d84440025b2d8201f04336'] = 'I miei punti fedeltà';
-$_MODULE['<{loyalty}prestashop>loyalty_5acc2ceeb883ba07cef2d02ea382f242'] = 'Non ha effettuato ordini.';
-$_MODULE['<{loyalty}prestashop>loyalty_dd1f775e443ff3b9a89270713580a51b'] = 'Precedente';
-$_MODULE['<{loyalty}prestashop>loyalty_6c583afb157e33bfb5b7c3d4114c4dd5'] = 'elementi:';
-$_MODULE['<{loyalty}prestashop>loyalty_ca0dbad92a874b2f69b549293387925e'] = 'Codice';
-$_MODULE['<{loyalty}prestashop>loyalty_b2844b8e17ecaaeae68d018fe9418af0'] = 'Valido fino al';
-$_MODULE['<{loyalty}prestashop>loyalty_ec53a8c4f07baed5d8825072c89799be'] = 'Status';
-$_MODULE['<{loyalty}prestashop>loyalty_cec73b5ce095a59305ad92a0d47495cb'] = 'Per utilizzare';
-$_MODULE['<{loyalty}prestashop>loyalty_a16cf3ec5200cc519f4fe48e34b1df83'] = 'L\'importo minimo di ordine al fine di utilizzare questi buoni è:';
-$_MODULE['<{loyalty}prestashop>product_054a9c66cc92b7f1bfcacee3b7c7ad54'] = 'Nessun punto fedeltà per questo prodotto, perché c\'è già uno sconto.';
-$_MODULE['<{loyalty}prestashop>product_2996152bb442bf98c80c515c6055de5f'] = 'Punti fedeltà';
-$_MODULE['<{loyalty}prestashop>product_b9cb3a85529dd593c14c838e22976cff'] = 'Il totale del tuo carrello';
-$_MODULE['<{loyalty}prestashop>shopping-cart_443c3e03e194c2a4cdb107808b051615'] = 'che può essere convertito in un buono di';
-$_MODULE['<{loyalty}prestashop>loyalty_51ab56dd5b46c7b5c8fdf22651ae0db6'] = 'Dare i punti per i prodotti scontati';
-$_MODULE['<{loyalty}prestashop>loyalty_4db04271e368fe3d4e1aa7332a18fa9d'] = 'Trasformare i miei punti in un buono di';
-$_MODULE['<{loyalty}prestashop>loyalty_30146a132c2aa28808a8411ed74c12ed'] = 'Fidelizzazione della clientela e premi';
-$_MODULE['<{loyalty}prestashop>loyalty_7307b68f93443d5863f1d3943c546b20'] = 'Ricompensa fedeltà';
-$_MODULE['<{loyalty}prestashop>loyalty_5be9427a9169ad6e9b63b0c9c61575d9'] = 'Programma di fedeltà';
-$_MODULE['<{loyalty}prestashop>loyalty_f4f70727dc34561dfde1a3c529b6205c'] = 'Impostazioni';
-$_MODULE['<{loyalty}prestashop>loyalty_98cf9475009d3c6e795ffac5d391cec4'] = 'Dati buono sconto';
-$_MODULE['<{loyalty}prestashop>loyalty_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Attivato';
-$_MODULE['<{loyalty}prestashop>loyalty_bafd7322c6e97d25b6299b5d6fe8920b'] = 'No';
-$_MODULE['<{loyalty}prestashop>loyalty_9611a682e61c503c32e2dc58fdbc8ddf'] = 'I punti vengono cancellati quando l\'ordine è';
-$_MODULE['<{loyalty}prestashop>loyalty_30e793698766edbaaf84a74d4c377f72'] = 'Progressione punti fedeltà';
-$_MODULE['<{loyalty}prestashop>loyalty_4f2a91e15af2631ff9424564b8a45fb2'] = 'Iniziale';
-$_MODULE['<{loyalty}prestashop>loyalty_6366c60fc5b4f4fce0e3dd146494a4f4'] = 'Convertito';
-$_MODULE['<{loyalty}prestashop>loyalty_13148717f8faa9037f37d28971dfc219'] = 'Convalida';
-$_MODULE['<{loyalty}prestashop>loyalty_38fb7d24e0d60a048f540ecb18e13376'] = 'Salva';
-$_MODULE['<{loyalty}prestashop>loyalty_94c69408d25102ba7ddcf3533b56c407'] = 'Oggetto cliente errato';
-$_MODULE['<{loyalty}prestashop>loyalty_a240fa27925a635b08dc28c9e4f9216d'] = 'Ordine';
-$_MODULE['<{loyalty}prestashop>loyalty_98ab04462a3ea83fe76f4163efe755da'] = '#%d';
-$_MODULE['<{loyalty}prestashop>loyalty_928666bdf20510dfa5c58393b77f1798'] = 'Valore del buono:';
-$_MODULE['<{loyalty}prestashop>loyalty_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'Il mio account';
-$_MODULE['<{loyalty}prestashop>loyalty_b1c94ca2fbc3e78fc30069c8d0f01680'] = 'Tutti';
-$_MODULE['<{loyalty}prestashop>loyalty_eb902cf204f3e4dfffeb56d92a9b5c26'] = 'Valido dal';
-$_MODULE['<{loyalty}prestashop>loyalty_019d1ca7d50cc54b995f60d456435e87'] = 'Usato';
-$_MODULE['<{loyalty}prestashop>loyalty_2af3bf4c82c5b33875d532820a959799'] = 'Generato dai seguenti ordini';
-$_MODULE['<{loyalty}prestashop>loyalty_0b3db27bc15f682e92ff250ebb167d4b'] = 'Torna al tuo account';
-$_MODULE['<{loyalty}prestashop>shopping-cart_ea2c0ea1a08add3a75273e7f32f05f7a'] = 'fedeltà';
-$_MODULE['<{loyalty}prestashop>shopping-cart_1340ddee36660d8e1d5f6918dee0ba4e'] = '%d punti fedeltà';
-$_MODULE['<{loyalty}prestashop>loyalty_f0338d5a7bbd642cc188ca69c8a97b12'] = 'Ciò eliminerà tutti i punti fedeltà e la storia dei tuoi clienti, sei sicuro?';
-$_MODULE['<{loyalty}prestashop>loyalty_c2a7db7dec4de1bdb143ccd790f5a62c'] = 'Segna tutte le caselle di categorie in cui buoni fedeltà sono utilizzabili';
-$_MODULE['<{loyalty}prestashop>loyalty_453e6aa38d87b28ccae545967c53004f'] = 'Non disponibile';
-$_MODULE['<{loyalty}prestashop>loyalty_a82e0d057f443115e807bd6ca595fc8c'] = 'Oggetto ordine errato';
-$_MODULE['<{loyalty}prestashop>loyalty_75dd5f1160a3f02b6fae89c54361a1b3'] = 'Punti';
-$_MODULE['<{loyalty}prestashop>loyalty_df05c2db84dacb19b599b489bf3963db'] = 'Non disponibile sugli sconti';
-$_MODULE['<{loyalty}prestashop>loyalty_01abfc750a0c942167651c40d088531d'] = 'n.';
-$_MODULE['<{loyalty}prestashop>loyalty_10ac3d04253ef7e1ddc73e6091c0cd55'] = 'Successivo';
-$_MODULE['<{loyalty}prestashop>loyalty_e0aa021e21dddbd6d8cecec71e9cf564'] = 'OK';
-$_MODULE['<{loyalty}prestashop>loyalty_b39cba8836db01a04888aef6ba386420'] = 'I miei buoni da punti fedeltà';
-$_MODULE['<{loyalty}prestashop>loyalty_18fb6221fe0d9895c2e9ba08283f00e9'] = 'Ordine #%d';
-$_MODULE['<{loyalty}prestashop>loyalty_4c8d2e0395ae7d21e374dcbeb1cbeaaa'] = '%d punti.';
-$_MODULE['<{loyalty}prestashop>loyalty_1f67ea7a0b26e9eacc70523bde28df0c'] = 'di più ...';
-$_MODULE['<{loyalty}prestashop>my-account_c540093e64d84440025b2d8201f04336'] = 'I miei punti fedeltà';
-$_MODULE['<{loyalty}prestashop>product_08ef6b34ab8e7039ef0ee69378f0ac0b'] = 'Con l\'acquisto di questo prodotto è possibile raccogliere fino a';
-$_MODULE['<{loyalty}prestashop>product_b40d5c523ee75453134b1449dd9cd13a'] = 'Punto Fedeltà';
-$_MODULE['<{loyalty}prestashop>product_0aab81de5c4c87021772015efc184d67'] = 'punti';
-$_MODULE['<{loyalty}prestashop>product_78ee54aa8f813885fe2fe20d232518b9'] = 'punto';
-$_MODULE['<{loyalty}prestashop>shopping-cart_562b7108857d8394e83861d0529cc7dd'] = 'Con il check-out di questo carrello della spesa è possibile raccogliere fino a';
-$_MODULE['<{loyalty}prestashop>shopping-cart_e7e421ccebbe3fafffe0f67dbd595d5b'] = '%d punto fedeltà';
-$_MODULE['<{loyalty}prestashop>shopping-cart_2d354f4df80bbebf309f184c3953dc1d'] = 'Non disponibile per Instant ordine checkout';
-$_MODULE['<{loyalty}prestashop>loyalty_e81b2826b5aebd9c92fb5d090f0cdc9d'] = 'È necessario scegliere almeno una categoria per la creazione di buoni';
-$_MODULE['<{loyalty}prestashop>loyalty_8334a158298fbcf163f4dcb4a387d150'] = 'Rapporto';
-$_MODULE['<{loyalty}prestashop>loyalty_315eae70bcaee168f1654c0ceeeef357'] = '1 punto premio';
-$_MODULE['<{loyalty}prestashop>loyalty_93cba07454f06a4a960172bbd6e2a435'] = 'Sì';
-$_MODULE['<{loyalty}prestashop>loyalty_b9f5c797ebbf55adccdd8539a65a0241'] = 'Disattivato';
-$_MODULE['<{loyalty}prestashop>loyalty_2a46cccdea2f18fdfdfacf99a98b758d'] = 'I buoni creati dal sistema di fidelizzazione possono essere utilizzati nelle seguenti categorie:';
-$_MODULE['<{loyalty}prestashop>loyalty_a149e85a44aeec9140e92733d9ed694e'] = 'Annullato';
-$_MODULE['<{loyalty}prestashop>loyalty_8b80d4b6307990874b832cc15a92e5a3'] = 'Parametri mancanti';
-$_MODULE['<{loyalty}prestashop>loyalty_94c2a3734a95577d173f702aa67a4788'] = 'Punti fedeltà (%d punti)';
-$_MODULE['<{loyalty}prestashop>loyalty_309cd9f5437d1bb06a7fdab1811afe1a'] = 'Il cliente non ha punti';
-$_MODULE['<{loyalty}prestashop>loyalty_aa7f22f84f7be784055a3e7e7d22c519'] = 'Totale (senza spese di spedizione)';
-$_MODULE['<{loyalty}prestashop>loyalty_a9be824aae4f2381a27b7c699b1e041e'] = 'In attesa di convalida';
-$_MODULE['<{loyalty}prestashop>loyalty_78945de8de090e90045d299651a68a9b'] = 'Disponibile';
-$_MODULE['<{loyalty}prestashop>loyalty_c48105520852bbd0fa692e4c9fd61628'] = 'I buoni generati qui sono utilizzabili nelle seguenti categorie:';
-$_MODULE['<{loyalty}prestashop>loyalty_5b7d558a20e8bcb6d9355a012becb1eb'] = 'Sei sicuro di voler trasformare i tuoi punti in buoni?';
-$_MODULE['<{loyalty}prestashop>loyalty_0eceeb45861f9585dd7a97a3e36f85c6'] = 'Creato';
-$_MODULE['<{loyalty}prestashop>loyalty_689202409e48743b914713f96d93947c'] = 'Valore';
-$_MODULE['<{loyalty}prestashop>loyalty_3ec365dd533ddb7ef3d1c111186ce872'] = 'Dettagli';
-$_MODULE['<{loyalty}prestashop>loyalty_29aa46cc3d2677c7e0f216910df600ff'] = 'Spedizione gratuita';
-$_MODULE['<{loyalty}prestashop>loyalty_8e69341aca5dbf9f55c2e75a2ed5df3c'] = 'Ancora nessun buono.';
-$_MODULE['<{loyalty}prestashop>loyalty_00d56a5e37c19c59d521530fc8e7f337'] = 'Ancora nessuna ricompensa punti.';
-$_MODULE['<{loyalty}prestashop>loyalty_8cf04a9734132302f96da8e113e80ce5'] = 'Home';
-$_MODULE['<{loyalty}prestashop>product_e94d481804904a48c1a8093e7a069570'] = 'Nessun punto fedeltà per questo prodotto.';
-$_MODULE['<{loyalty}prestashop>product_443c3e03e194c2a4cdb107808b051615'] = 'che può essere convertito in un buono di';
-$_MODULE['<{loyalty}prestashop>shopping-cart_8cec799df06a3f5a026b31fcd95e0172'] = 'Aggiungi alcuni prodotti al carrello della spesa di raccogliere dei punti fedeltà.';
diff --git a/modules/mailalerts/mails/de/customer_qty.html b/modules/mailalerts/mails/de/customer_qty.html
deleted file mode 100644
index 14ecf2d57..000000000
--- a/modules/mailalerts/mails/de/customer_qty.html
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
-
- [{shop_name}] Produkt verfügbar
-
-
-
-
-
-
-
-
-
-
-
-
{product}ist nun verfügbar.
-
-
-
-
-
-
Der Artikel ist nun wieder auf Lager.
Gehen Sie auf die Produktseite, indem Sie auf diesen Link klicken: {product}
Sie können ihn gleich in Ihrem Online-Shop bestellen.
-
-
\ No newline at end of file
diff --git a/modules/mailalerts/mails/de/customer_qty.txt b/modules/mailalerts/mails/de/customer_qty.txt
deleted file mode 100644
index b3887d79e..000000000
--- a/modules/mailalerts/mails/de/customer_qty.txt
+++ /dev/null
@@ -1,10 +0,0 @@
-Hallo,
-
-Das Produkt {product} ist nun verfügbar.
-Der Artikel ist nun wieder auf Lager.
-
-Gehen Sie auf die Produktseite, indem Sie auf diesen Link klicken: {product}
-
-Sie können ihn gleich in Ihrem Online-Shop bestellen.
-
-{shop_url} powered by PrestaShop™
diff --git a/modules/mailalerts/mails/de/index.php b/modules/mailalerts/mails/de/index.php
deleted file mode 100644
index e582afcc2..000000000
--- a/modules/mailalerts/mails/de/index.php
+++ /dev/null
@@ -1,36 +0,0 @@
-
-* @copyright 2007-2013 PrestaShop SA
-* @version Release: $Revision$
-* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
-* International Registered Trademark & Property of PrestaShop SA
-*/
-
-header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
-header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
-
-header("Cache-Control: no-store, no-cache, must-revalidate");
-header("Cache-Control: post-check=0, pre-check=0", false);
-header("Pragma: no-cache");
-
-header("Location: ../");
-exit;
\ No newline at end of file
diff --git a/modules/mailalerts/mails/de/new_order.html b/modules/mailalerts/mails/de/new_order.html
deleted file mode 100644
index e00488671..000000000
--- a/modules/mailalerts/mails/de/new_order.html
+++ /dev/null
@@ -1,61 +0,0 @@
-
-
-
-
- [{shop_name}] Neue Bestellung
-
-
-
Sie haben eine neue Bestellung erhalten von: {firstname} {lastname} ({email})
-
-
\ No newline at end of file
diff --git a/modules/mailalerts/mails/de/productoutofstock.txt b/modules/mailalerts/mails/de/productoutofstock.txt
deleted file mode 100644
index 73a9904c6..000000000
--- a/modules/mailalerts/mails/de/productoutofstock.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-Hallo,
-
-Das Produkt {product} ist fast ausverkauft.
-The remaining stock is now less than the specified minimum of {last_qty}.
-Remaining stock : {qty}
-
-
-Verbleibender Lagerbestand: {qty}
-
-Wir raten Ihnen, die Produktseite im Administrator zu öffnen, um Ihren Lagerbestand aufzufüllen.
-
-{shop_url} powered by PrestaShop™
\ No newline at end of file
diff --git a/modules/mailalerts/mails/es/customer_qty.html b/modules/mailalerts/mails/es/customer_qty.html
deleted file mode 100644
index 81881a02e..000000000
--- a/modules/mailalerts/mails/es/customer_qty.html
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
-
- [{shop_name}] Producto disponible
-
-
-
-
-
-
-
-
-
-
-
-
{product} ya está disponible.
-
-
-
-
-
-
De hecho, el tema es una vez más en acciones.
Puede acceder a la página del producto haciendo clic en el enlace: {product}
Puede solicitar ahora mismo en nuestra tienda on-line.
-
-
\ No newline at end of file
diff --git a/modules/mailalerts/mails/es/customer_qty.txt b/modules/mailalerts/mails/es/customer_qty.txt
deleted file mode 100644
index 43ed2e175..000000000
--- a/modules/mailalerts/mails/es/customer_qty.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-Hola,
-
-Producto {product} ya está disponible.
-De hecho, el tema es una vez más en acciones.
-
-Puede acceder a la página del producto en este enlace: {product_link}
-
-Puede solicitar ahora mismo en nuestra tienda on-line.
-
-
-
-{shop_url} powered by PrestaShop™
diff --git a/modules/mailalerts/mails/es/index.php b/modules/mailalerts/mails/es/index.php
deleted file mode 100644
index e582afcc2..000000000
--- a/modules/mailalerts/mails/es/index.php
+++ /dev/null
@@ -1,36 +0,0 @@
-
-* @copyright 2007-2013 PrestaShop SA
-* @version Release: $Revision$
-* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
-* International Registered Trademark & Property of PrestaShop SA
-*/
-
-header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
-header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
-
-header("Cache-Control: no-store, no-cache, must-revalidate");
-header("Cache-Control: post-check=0, pre-check=0", false);
-header("Pragma: no-cache");
-
-header("Location: ../");
-exit;
\ No newline at end of file
diff --git a/modules/mailalerts/mails/es/new_order.html b/modules/mailalerts/mails/es/new_order.html
deleted file mode 100644
index a305aed62..000000000
--- a/modules/mailalerts/mails/es/new_order.html
+++ /dev/null
@@ -1,61 +0,0 @@
-
-
-
-
- [{shop_name}] Nuevo orden
-
-
-
Felicidades! Una nueva orden se ha puesto en {shop_name} por el siguiente cliente: {firstname} {lastname} ({email})
-
-[{shop_name}] Out of stock
\ No newline at end of file
diff --git a/modules/mailalerts/mails/es/productoutofstock.txt b/modules/mailalerts/mails/es/productoutofstock.txt
deleted file mode 100644
index 35a36aefa..000000000
--- a/modules/mailalerts/mails/es/productoutofstock.txt
+++ /dev/null
@@ -1,10 +0,0 @@
-Hola,
-
-El producto {product} está a punto de quedarse sin existencias.
-De hecho, las existencias actuales son inferiores a las mínimas especificadas de {last_qty}.
-Existencias restantes: {qty}
-
-Se aconseja abrir la página de administración del producto a fin de reponer el inventario.
-
-
-{shop_url} desarrollado por PrestaShop
diff --git a/modules/mailalerts/mails/fr/customer_qty.html b/modules/mailalerts/mails/fr/customer_qty.html
deleted file mode 100644
index d8e777200..000000000
--- a/modules/mailalerts/mails/fr/customer_qty.html
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
-
- [{shop_name}] Produit disponible
-
-
-
-
-
-
-
-
-
-
-
-
{product} est de nouveau disponible
-
-
-
-
-
-
En effet, le stock a été réapprovisionné.
Vous pouvez accéder à la page produit en cliquant sur le lien suivant: {product}
Vous pouvez donc de nouveau commander ce produit depuis notre catalogue en ligne.
-
-
\ No newline at end of file
diff --git a/modules/mailalerts/mails/fr/customer_qty.txt b/modules/mailalerts/mails/fr/customer_qty.txt
deleted file mode 100644
index 39539388a..000000000
--- a/modules/mailalerts/mails/fr/customer_qty.txt
+++ /dev/null
@@ -1,11 +0,0 @@
-Bonjour,
-
-Le produit {product} est de nouveau disponible.
-En effet, le stock a été réapprovisionné.
-
-Vous pouvez accéder à la page produit à ce lien: {product_link}
-
-Vous pouvez donc de nouveau commander ce produit depuis notre catalogue en ligne.
-
-
-{shop_url} réalisé avec PrestaShop™
diff --git a/modules/mailalerts/mails/fr/index.php b/modules/mailalerts/mails/fr/index.php
deleted file mode 100644
index e582afcc2..000000000
--- a/modules/mailalerts/mails/fr/index.php
+++ /dev/null
@@ -1,36 +0,0 @@
-
-* @copyright 2007-2013 PrestaShop SA
-* @version Release: $Revision$
-* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
-* International Registered Trademark & Property of PrestaShop SA
-*/
-
-header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
-header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
-
-header("Cache-Control: no-store, no-cache, must-revalidate");
-header("Cache-Control: post-check=0, pre-check=0", false);
-header("Pragma: no-cache");
-
-header("Location: ../");
-exit;
\ No newline at end of file
diff --git a/modules/mailalerts/mails/fr/new_order.html b/modules/mailalerts/mails/fr/new_order.html
deleted file mode 100644
index 3479f979f..000000000
--- a/modules/mailalerts/mails/fr/new_order.html
+++ /dev/null
@@ -1,62 +0,0 @@
-
-
-
-
- [{shop_name}] Nouvelle commande
-
-
-
Bravo! Une nouvelle commande a été passée sur votre boutique {shop_name} par ce client : {firstname} {lastname} ({email})
-
-
\ No newline at end of file
diff --git a/modules/mailalerts/mails/fr/productoutofstock.txt b/modules/mailalerts/mails/fr/productoutofstock.txt
deleted file mode 100644
index 85837ab71..000000000
--- a/modules/mailalerts/mails/fr/productoutofstock.txt
+++ /dev/null
@@ -1,9 +0,0 @@
-Bonjour,
-
-Le produit {product} est bientôt en rupture de stock.
-En effet, le seuil de rupture de stock de {last_qty} a été dépassé.
-Stock restant : {qty}
-
-Nous vous conseillons de vous rendre sur la fiche du produit afin de renouveler vos stocks.
-
-{shop_url} réalisé avec PrestaShop™
\ No newline at end of file
diff --git a/modules/mailalerts/mails/it/customer_qty.html b/modules/mailalerts/mails/it/customer_qty.html
deleted file mode 100644
index 7931c4212..000000000
--- a/modules/mailalerts/mails/it/customer_qty.html
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
-
- [{shop_name}] Prodotto disponibile
-
-
-
-
-
-
-
-
-
-
-
-
{product} è ora disponibile.
-
-
-
-
-
-
L'articolo è di nuovo in magazzino.
Puoi accedere alla pagina del prodotto cliccando sul link: {product}
Puoi ordinarlo fin d'ora dal nostro negozio online.
-
-
-
\ No newline at end of file
diff --git a/modules/mailalerts/mails/it/productoutofstock.txt b/modules/mailalerts/mails/it/productoutofstock.txt
deleted file mode 100644
index 3da41f042..000000000
--- a/modules/mailalerts/mails/it/productoutofstock.txt
+++ /dev/null
@@ -1,11 +0,0 @@
-Salve,
-
-Il prodotto {product} è quasi esaurito.
-La quantità rimanente è adesso inferiore del minimo previsto di {last_qty}.
-Stock rimanente: {qty}
-
-Ti consigliamo di aprire la Pagina Prodotto dell'admin prodotti per rifornire il tuo inventorio.
-
-
-
-{shop_url} powered by PrestaShop™
\ No newline at end of file
diff --git a/modules/mailalerts/translations/de.php b/modules/mailalerts/translations/de.php
deleted file mode 100644
index 68ea6fd1a..000000000
--- a/modules/mailalerts/translations/de.php
+++ /dev/null
@@ -1,44 +0,0 @@
-mailalerts_fd30254803e8db32521d3390131a44da'] = 'Mail-Benachrichtigungen';
-$_MODULE['<{mailalerts}prestashop>mailalerts_2d51f4a7ab8a12c4f35b507019523b8c'] = 'Sendet E-Mail-Benachrichtigungen an Kunden und Händler.';
-$_MODULE['<{mailalerts}prestashop>mailalerts_dea3d17a0f0ecab1f65cc486bfa56051'] = 'Benachrichtigen wenn eine Bestellung aufgegeben wurde';
-$_MODULE['<{mailalerts}prestashop>mailalerts_ebc3ccf8441dba3c1615afa6acb3282a'] = 'Nicht auf Lager:';
-$_MODULE['<{mailalerts}prestashop>mailalerts_0b46debf72500e9a1650fa18e6ca72a1'] = 'Benachrichtigen wenn vorhandene Produktmänge den Lagerbestand unterschreitet';
-$_MODULE['<{mailalerts}prestashop>mailalerts_02505a778171466cc5e4f96c4eeaa9da'] = 'Schwelle';
-$_MODULE['<{mailalerts}prestashop>mailalerts_a27c67cad62fc03d13c2f67e5f749691'] = 'Lagertage. Es wird auch der Lagerbestand des angegeben Produkts auf dieser Grundlage berechnet.';
-$_MODULE['<{mailalerts}prestashop>mailalerts_4395d1c88a7f0796edc652d2b57bc664'] = 'Eine E-Mailadresse pro Zeile (Bsp. mustermann@beispiel.de)';
-$_MODULE['<{mailalerts}prestashop>mailalerts-account_8bb23c2ae698681ebb650f43acb54dab'] = 'Noch keine Mail-Benachrichtigungen vorhanden';
-$_MODULE['<{mailalerts}prestashop>product_900f8551b29793ecb604a545b2059cc1'] = 'Ihre E-Mail-Adresse ist ungültig';
-$_MODULE['<{mailalerts}prestashop>mailalerts-account_ae0e822b6fad0de61c231ef188997e92'] = 'Ein Produkt ist notwendig, um eine Warnung zu entfernen';
-$_MODULE['<{mailalerts}prestashop>mailalerts_86e8d61297942b00e9937299735df971'] = 'Gibt dem Kunden die Möglichkeit, eine Nachricht zu einem verfügbaren Produkt zu erhalten, wenn dieses vorher nicht auf Lager war';
-$_MODULE['<{mailalerts}prestashop>product_67135a14d3ac4f1369633dd006d6efec'] = 'your@email.com';
-$_MODULE['<{mailalerts}prestashop>product_61172eb93737ebf095d3fa02119ce1df'] = 'Anfragenachricht registriert';
-$_MODULE['<{mailalerts}prestashop>product_546e02eaa9a986c83cc347e273269f2c'] = 'Mich bei Verfügbarkeit benachrichtigen';
-$_MODULE['<{mailalerts}prestashop>mailalerts_c1ee76f076a5b97e3b4b0c0e5703246e'] = 'Kann Einstellungen nicht aktualisieren';
-$_MODULE['<{mailalerts}prestashop>mailalerts-account_0d15d3afa8c174934ff0e43ce3b99bd3'] = 'Sie müssen eingeloggt sein, um Ihre Warnungen zu verwalten';
-$_MODULE['<{mailalerts}prestashop>mailalerts_ce241f25e003bafeb9fce6857d8f027f'] = 'Bitte geben Sie eine (oder mehrere) E-Mail Adressen ein';
-$_MODULE['<{mailalerts}prestashop>mailalerts_29aae9c646337554f4de7ae29050c39f'] = 'Ungültige E-Mail:';
-$_MODULE['<{mailalerts}prestashop>mailalerts_6f974bbda9064a9c0836370dbf5a6076'] = 'Händler-Benachrichtigungen';
-$_MODULE['<{mailalerts}prestashop>mailalerts_9204d21640382a89a95ec42f44f9051c'] = 'Neue Bestellung:';
-$_MODULE['<{mailalerts}prestashop>mailalerts_62109400d1297f6b6c900eb7f6ba0aaa'] = 'Anzahl ab wann ein Produkt als ausverkauft angezeigt wird';
-$_MODULE['<{mailalerts}prestashop>mailalerts_3d7b12c4623906965db0a3f8e7390652'] = 'Lagerbestand Warnung:';
-$_MODULE['<{mailalerts}prestashop>mailalerts-account_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'Mein Konto';
-$_MODULE['<{mailalerts}prestashop>mailalerts-account_4edfd10d0bb5f51e0fd2327df608b5a8'] = 'Meine Benachrichtigungen';
-$_MODULE['<{mailalerts}prestashop>my-account_4edfd10d0bb5f51e0fd2327df608b5a8'] = 'Meine Benachrichtigungen';
-$_MODULE['<{mailalerts}prestashop>mailalerts-account_a9839ad48cf107667f73bad1d651f2ca'] = 'Keine Größe gefunden';
-$_MODULE['<{mailalerts}prestashop>mailalerts_8fd3b84964bd6dfec8095f658d200b29'] = 'Sind Sie sicher, dass alle Kundenmitteilungen löschen wollen?';
-$_MODULE['<{mailalerts}prestashop>mailalerts_58a20987a1f4e45d508b4491614a2c57'] = 'Kunden-Benachrichtigungen';
-$_MODULE['<{mailalerts}prestashop>mailalerts_ea379dd90c33c1345f40aa0afa6688d8'] = 'Produktverfügbarkeit:';
-$_MODULE['<{mailalerts}prestashop>mailalerts_38fb7d24e0d60a048f540ecb18e13376'] = 'Speichern';
-$_MODULE['<{mailalerts}prestashop>mailalerts_929396618e54384e9a22493055028533'] = 'Eine Benachrichtigung erhalten, sobald die vorhandene Artikelanzahl den Lagerbestand unterschreitet';
-$_MODULE['<{mailalerts}prestashop>mailalerts_cadcfa2749b0cfb51d88837d4a934ad1'] = 'Bestandsdeckung';
-$_MODULE['<{mailalerts}prestashop>mailalerts_7bcb7394f6b2ff226c423fea1a153754'] = 'E-Mailadressen:';
-$_MODULE['<{mailalerts}prestashop>mailalerts_7cb9a154f101c674c945f88dad5c5e28'] = 'Keine Nachricht';
-$_MODULE['<{mailalerts}prestashop>mailalerts_1d744a9ad1dac20645cfc4a36b77323b'] = 'Bild(er)';
-$_MODULE['<{mailalerts}prestashop>mailalerts_9137796c15dd92e5553c3f29574d0968'] = 'Gutschein-Code:';
-$_MODULE['<{mailalerts}prestashop>mailalerts-account_0b3db27bc15f682e92ff250ebb167d4b'] = 'Zurück zu Ihrem Konto';
-$_MODULE['<{mailalerts}prestashop>product_bb51a155575b81f4a07f7a9bafdc3b01'] = 'Für dieses Produkt ist schon eine Warnung vorhanden.';
diff --git a/modules/mailalerts/translations/en.php b/modules/mailalerts/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/mailalerts/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-mailalerts_fd30254803e8db32521d3390131a44da'] = 'Alertas por correo';
-$_MODULE['<{mailalerts}prestashop>mailalerts_2d51f4a7ab8a12c4f35b507019523b8c'] = 'Enviar correos de notificación a los clientes y comerciantes.';
-$_MODULE['<{mailalerts}prestashop>mailalerts_dea3d17a0f0ecab1f65cc486bfa56051'] = 'Recibe una notificación cuando se hace un pedido';
-$_MODULE['<{mailalerts}prestashop>mailalerts_ebc3ccf8441dba3c1615afa6acb3282a'] = 'Fuera de stock';
-$_MODULE['<{mailalerts}prestashop>mailalerts_0b46debf72500e9a1650fa18e6ca72a1'] = 'Recibe una notificación si la cantidad disponible de un producto está por debajo del siguiente umbral';
-$_MODULE['<{mailalerts}prestashop>mailalerts_02505a778171466cc5e4f96c4eeaa9da'] = 'Importe';
-$_MODULE['<{mailalerts}prestashop>mailalerts_a27c67cad62fc03d13c2f67e5f749691'] = 'Cubierta de stock, en días. Además, la cubierta de stock de un producto determinadose calcula en base a este número';
-$_MODULE['<{mailalerts}prestashop>mailalerts_4395d1c88a7f0796edc652d2b57bc664'] = 'Una dirección email por línea (ej: bob@example.com)';
-$_MODULE['<{mailalerts}prestashop>mailalerts-account_8bb23c2ae698681ebb650f43acb54dab'] = 'No hay alertas de email';
-$_MODULE['<{mailalerts}prestashop>product_900f8551b29793ecb604a545b2059cc1'] = 'Su dirección de correo electrónico no es válida.';
-$_MODULE['<{mailalerts}prestashop>mailalerts-account_ae0e822b6fad0de61c231ef188997e92'] = 'Se necesita un producto para borrar una alerta';
-$_MODULE['<{mailalerts}prestashop>mailalerts_c1ee76f076a5b97e3b4b0c0e5703246e'] = 'No se pueden actualizar los ajustes';
-$_MODULE['<{mailalerts}prestashop>mailalerts_86e8d61297942b00e9937299735df971'] = 'Da al cliente la posibilidad de recibir una notificación cuando un producto agotado se encuentra de nuevo disponible';
-$_MODULE['<{mailalerts}prestashop>product_67135a14d3ac4f1369633dd006d6efec'] = 'su@email.com';
-$_MODULE['<{mailalerts}prestashop>product_61172eb93737ebf095d3fa02119ce1df'] = 'Notificación de la petición registrada';
-$_MODULE['<{mailalerts}prestashop>product_546e02eaa9a986c83cc347e273269f2c'] = 'Indicarme cuando esté disponible';
-$_MODULE['<{mailalerts}prestashop>mailalerts-account_0d15d3afa8c174934ff0e43ce3b99bd3'] = 'Debe identificarse para administrar sus alertas';
-$_MODULE['<{mailalerts}prestashop>mailalerts_ce241f25e003bafeb9fce6857d8f027f'] = 'Por favor, una o máas direcciones email';
-$_MODULE['<{mailalerts}prestashop>mailalerts_29aae9c646337554f4de7ae29050c39f'] = 'Email no válido:';
-$_MODULE['<{mailalerts}prestashop>mailalerts_6f974bbda9064a9c0836370dbf5a6076'] = 'Notificaciones de negocios';
-$_MODULE['<{mailalerts}prestashop>mailalerts_9204d21640382a89a95ec42f44f9051c'] = 'Nuevo pedido:';
-$_MODULE['<{mailalerts}prestashop>mailalerts_62109400d1297f6b6c900eb7f6ba0aaa'] = 'Cantidad por la que un producto se considera agotado';
-$_MODULE['<{mailalerts}prestashop>mailalerts_3d7b12c4623906965db0a3f8e7390652'] = 'La cobertura de advertencia:';
-$_MODULE['<{mailalerts}prestashop>mailalerts-account_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'Mi cuenta';
-$_MODULE['<{mailalerts}prestashop>mailalerts-account_4edfd10d0bb5f51e0fd2327df608b5a8'] = 'Mis alertas';
-$_MODULE['<{mailalerts}prestashop>my-account_4edfd10d0bb5f51e0fd2327df608b5a8'] = 'Mis alertas';
-$_MODULE['<{mailalerts}prestashop>mailalerts-account_a9839ad48cf107667f73bad1d651f2ca'] = 'No hay ninguna plantilla';
-$_MODULE['<{mailalerts}prestashop>mailalerts_8fd3b84964bd6dfec8095f658d200b29'] = '¿Está seguro de querer suprimir todas las notificaciones de los clientes?';
-$_MODULE['<{mailalerts}prestashop>mailalerts_58a20987a1f4e45d508b4491614a2c57'] = 'Notificaciones de cliente';
-$_MODULE['<{mailalerts}prestashop>mailalerts_ea379dd90c33c1345f40aa0afa6688d8'] = 'Disponibilidad del producto:';
-$_MODULE['<{mailalerts}prestashop>mailalerts_38fb7d24e0d60a048f540ecb18e13376'] = 'Guardar';
-$_MODULE['<{mailalerts}prestashop>mailalerts_929396618e54384e9a22493055028533'] = 'Recibe una notificación si la cobertura de stock de un producto está por debajo de la cobertura siguiente';
-$_MODULE['<{mailalerts}prestashop>mailalerts_cadcfa2749b0cfb51d88837d4a934ad1'] = 'Cobertura';
-$_MODULE['<{mailalerts}prestashop>mailalerts_7bcb7394f6b2ff226c423fea1a153754'] = 'Direcciones de correo electrónico:';
-$_MODULE['<{mailalerts}prestashop>mailalerts_7cb9a154f101c674c945f88dad5c5e28'] = 'No hay mensaje';
-$_MODULE['<{mailalerts}prestashop>mailalerts_1d744a9ad1dac20645cfc4a36b77323b'] = 'imagen(es)';
-$_MODULE['<{mailalerts}prestashop>mailalerts_9137796c15dd92e5553c3f29574d0968'] = 'Código del vale:';
-$_MODULE['<{mailalerts}prestashop>mailalerts-account_0b3db27bc15f682e92ff250ebb167d4b'] = 'Volver a su cuenta';
-$_MODULE['<{mailalerts}prestashop>product_bb51a155575b81f4a07f7a9bafdc3b01'] = 'Usted ya tiene una alerta para este producto';
diff --git a/modules/mailalerts/translations/fr.php b/modules/mailalerts/translations/fr.php
deleted file mode 100644
index f24419b4c..000000000
--- a/modules/mailalerts/translations/fr.php
+++ /dev/null
@@ -1,44 +0,0 @@
-mailalerts_fd30254803e8db32521d3390131a44da'] = 'Alertes e-mail';
-$_MODULE['<{mailalerts}prestashop>mailalerts_2d51f4a7ab8a12c4f35b507019523b8c'] = 'Envoie des notifications par e-mail aux clients et aux marchands.';
-$_MODULE['<{mailalerts}prestashop>mailalerts_4395d1c88a7f0796edc652d2b57bc664'] = 'Une adresse e-mail par ligne (ex : bob@example.com)';
-$_MODULE['<{mailalerts}prestashop>mailalerts-account_8bb23c2ae698681ebb650f43acb54dab'] = 'Aucune alerte mail.';
-$_MODULE['<{mailalerts}prestashop>mailalerts_dea3d17a0f0ecab1f65cc486bfa56051'] = 'Recevoir une notification lorsqu\'une commande est passée';
-$_MODULE['<{mailalerts}prestashop>mailalerts_ebc3ccf8441dba3c1615afa6acb3282a'] = 'Hors stock : ';
-$_MODULE['<{mailalerts}prestashop>mailalerts_0b46debf72500e9a1650fa18e6ca72a1'] = 'Recevoir une notification si les quantités disponibles à la vente d\'un produit sont inférieurs au seuil suivant';
-$_MODULE['<{mailalerts}prestashop>mailalerts_02505a778171466cc5e4f96c4eeaa9da'] = 'Seuil d\'alerte :';
-$_MODULE['<{mailalerts}prestashop>mailalerts_a27c67cad62fc03d13c2f67e5f749691'] = 'Couverture de stock, en jours. Cette valeur est également utilisée pour calculer la couverture actuelle d\'un produit.';
-$_MODULE['<{mailalerts}prestashop>product_900f8551b29793ecb604a545b2059cc1'] = 'Votre adresse e-mail n\'est pas valable';
-$_MODULE['<{mailalerts}prestashop>mailalerts-account_ae0e822b6fad0de61c231ef188997e92'] = 'Vous devez avoir un produit pour effacer une alerte.';
-$_MODULE['<{mailalerts}prestashop>mailalerts_c1ee76f076a5b97e3b4b0c0e5703246e'] = 'Impossible de mettre à jour les réglages';
-$_MODULE['<{mailalerts}prestashop>mailalerts_86e8d61297942b00e9937299735df971'] = 'Donne au client la possibilité de recevoir une notification lorsqu\'un produit hors-stock est de nouveau disponible';
-$_MODULE['<{mailalerts}prestashop>product_67135a14d3ac4f1369633dd006d6efec'] = 'votre@e-mail.com';
-$_MODULE['<{mailalerts}prestashop>product_61172eb93737ebf095d3fa02119ce1df'] = 'Demande de notification enregistrée';
-$_MODULE['<{mailalerts}prestashop>product_546e02eaa9a986c83cc347e273269f2c'] = 'Prévenez-moi lorsque le produit est disponible';
-$_MODULE['<{mailalerts}prestashop>mailalerts-account_0d15d3afa8c174934ff0e43ce3b99bd3'] = 'Vous devez être identifié pour gérer vos alertes.';
-$_MODULE['<{mailalerts}prestashop>mailalerts_ce241f25e003bafeb9fce6857d8f027f'] = 'Veuillez saisir une (ou plusieurs) addresse(s) e-mail';
-$_MODULE['<{mailalerts}prestashop>mailalerts_29aae9c646337554f4de7ae29050c39f'] = 'E-mail invalide : ';
-$_MODULE['<{mailalerts}prestashop>mailalerts-account_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'Mon compte';
-$_MODULE['<{mailalerts}prestashop>mailalerts-account_4edfd10d0bb5f51e0fd2327df608b5a8'] = 'Mes alertes';
-$_MODULE['<{mailalerts}prestashop>mailalerts_6f974bbda9064a9c0836370dbf5a6076'] = 'Notifications pour le marchand';
-$_MODULE['<{mailalerts}prestashop>mailalerts_9204d21640382a89a95ec42f44f9051c'] = 'Nouvelle commande : ';
-$_MODULE['<{mailalerts}prestashop>mailalerts_62109400d1297f6b6c900eb7f6ba0aaa'] = 'Quantité à partir de laquelle le produit est considéré en rupture de stock';
-$_MODULE['<{mailalerts}prestashop>mailalerts_3d7b12c4623906965db0a3f8e7390652'] = 'Alerte de couverture :';
-$_MODULE['<{mailalerts}prestashop>my-account_4edfd10d0bb5f51e0fd2327df608b5a8'] = 'Mes alertes';
-$_MODULE['<{mailalerts}prestashop>mailalerts-account_a9839ad48cf107667f73bad1d651f2ca'] = 'Aucun template trouvé';
-$_MODULE['<{mailalerts}prestashop>mailalerts_8fd3b84964bd6dfec8095f658d200b29'] = 'Êtes-vous sûr de vouloir supprimer toutes les notifications clients ?';
-$_MODULE['<{mailalerts}prestashop>mailalerts-account_0b3db27bc15f682e92ff250ebb167d4b'] = 'Retour à votre compte';
-$_MODULE['<{mailalerts}prestashop>mailalerts_58a20987a1f4e45d508b4491614a2c57'] = 'Notifications pour le client';
-$_MODULE['<{mailalerts}prestashop>mailalerts_ea379dd90c33c1345f40aa0afa6688d8'] = 'Disponibilité du produit :';
-$_MODULE['<{mailalerts}prestashop>mailalerts_38fb7d24e0d60a048f540ecb18e13376'] = 'Enregistrer';
-$_MODULE['<{mailalerts}prestashop>mailalerts_929396618e54384e9a22493055028533'] = 'Recevoir une notification si la couverture de stock d\'un produit est en dessous de la couverture, en jours, suivante';
-$_MODULE['<{mailalerts}prestashop>mailalerts_7bcb7394f6b2ff226c423fea1a153754'] = 'Adresses e-mail';
-$_MODULE['<{mailalerts}prestashop>mailalerts_7cb9a154f101c674c945f88dad5c5e28'] = 'Aucun message';
-$_MODULE['<{mailalerts}prestashop>mailalerts_1d744a9ad1dac20645cfc4a36b77323b'] = 'image(s)';
-$_MODULE['<{mailalerts}prestashop>mailalerts_9137796c15dd92e5553c3f29574d0968'] = 'Code de réduction :';
-$_MODULE['<{mailalerts}prestashop>product_bb51a155575b81f4a07f7a9bafdc3b01'] = 'Vous avez déjà une alerte pour ce produit';
-$_MODULE['<{mailalerts}prestashop>mailalerts_cadcfa2749b0cfb51d88837d4a934ad1'] = 'Couverture :';
diff --git a/modules/mailalerts/translations/it.php b/modules/mailalerts/translations/it.php
deleted file mode 100644
index a91cd8620..000000000
--- a/modules/mailalerts/translations/it.php
+++ /dev/null
@@ -1,44 +0,0 @@
-mailalerts_fd30254803e8db32521d3390131a44da'] = 'Mail di notifica';
-$_MODULE['<{mailalerts}prestashop>mailalerts_2d51f4a7ab8a12c4f35b507019523b8c'] = 'Invia notifiche via e-mail a clienti e commercianti.';
-$_MODULE['<{mailalerts}prestashop>mailalerts_dea3d17a0f0ecab1f65cc486bfa56051'] = 'Ricevi una notifica quando viene creato un ordine';
-$_MODULE['<{mailalerts}prestashop>mailalerts_ebc3ccf8441dba3c1615afa6acb3282a'] = 'Esaurito:';
-$_MODULE['<{mailalerts}prestashop>mailalerts_0b46debf72500e9a1650fa18e6ca72a1'] = 'Ricevi una notifica quando la quantità di un prodotto è inferiore alla seguente:';
-$_MODULE['<{mailalerts}prestashop>mailalerts_02505a778171466cc5e4f96c4eeaa9da'] = 'Soglia';
-$_MODULE['<{mailalerts}prestashop>mailalerts_a27c67cad62fc03d13c2f67e5f749691'] = 'Copertura magazzino in giorni. La copertura magazzino di un prodotto viene calcolata su questo numero.';
-$_MODULE['<{mailalerts}prestashop>mailalerts_4395d1c88a7f0796edc652d2b57bc664'] = 'Un indirizzo e-mail per riga (es. bob@example.com)';
-$_MODULE['<{mailalerts}prestashop>mailalerts-account_8bb23c2ae698681ebb650f43acb54dab'] = 'Nessuna mail di avviso';
-$_MODULE['<{mailalerts}prestashop>product_900f8551b29793ecb604a545b2059cc1'] = 'Il tuo indirizzo e-mail non è valido';
-$_MODULE['<{mailalerts}prestashop>mailalerts-account_ae0e822b6fad0de61c231ef188997e92'] = 'Un prodotto è necessario per cancellare un avviso';
-$_MODULE['<{mailalerts}prestashop>mailalerts_c1ee76f076a5b97e3b4b0c0e5703246e'] = 'Impossibile aggiornare le impostazioni';
-$_MODULE['<{mailalerts}prestashop>mailalerts_86e8d61297942b00e9937299735df971'] = 'Offre al cliente la possibilità di ricevere una notifica per un prodotto disponibile se questo è fuori stock';
-$_MODULE['<{mailalerts}prestashop>product_67135a14d3ac4f1369633dd006d6efec'] = 'your@email.com';
-$_MODULE['<{mailalerts}prestashop>product_61172eb93737ebf095d3fa02119ce1df'] = 'Richiesta di notifica registrata';
-$_MODULE['<{mailalerts}prestashop>product_546e02eaa9a986c83cc347e273269f2c'] = 'Avvisami quando disponibile';
-$_MODULE['<{mailalerts}prestashop>mailalerts-account_0d15d3afa8c174934ff0e43ce3b99bd3'] = 'Devi essere identificato per gestire i tuoi avvisi';
-$_MODULE['<{mailalerts}prestashop>mailalerts_ce241f25e003bafeb9fce6857d8f027f'] = 'Si prega di digitare uno (o più) indirizzo e-mail';
-$_MODULE['<{mailalerts}prestashop>mailalerts_29aae9c646337554f4de7ae29050c39f'] = 'e-mail non valida:';
-$_MODULE['<{mailalerts}prestashop>mailalerts_6f974bbda9064a9c0836370dbf5a6076'] = 'Notifiche negoziante';
-$_MODULE['<{mailalerts}prestashop>mailalerts_9204d21640382a89a95ec42f44f9051c'] = 'Nuovo ordine:';
-$_MODULE['<{mailalerts}prestashop>mailalerts_62109400d1297f6b6c900eb7f6ba0aaa'] = 'Quantità quando un prodotto deve essere considerato esaurito';
-$_MODULE['<{mailalerts}prestashop>mailalerts_3d7b12c4623906965db0a3f8e7390652'] = 'Avviso copertura:';
-$_MODULE['<{mailalerts}prestashop>mailalerts-account_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'Il mio conto';
-$_MODULE['<{mailalerts}prestashop>mailalerts-account_4edfd10d0bb5f51e0fd2327df608b5a8'] = 'I miei avvisi';
-$_MODULE['<{mailalerts}prestashop>my-account_4edfd10d0bb5f51e0fd2327df608b5a8'] = 'I miei avvisi';
-$_MODULE['<{mailalerts}prestashop>mailalerts-account_a9839ad48cf107667f73bad1d651f2ca'] = 'Nessun modello trovato';
-$_MODULE['<{mailalerts}prestashop>mailalerts_8fd3b84964bd6dfec8095f658d200b29'] = 'Sei sicuro di voler eliminare tutte le notifiche ai clienti?';
-$_MODULE['<{mailalerts}prestashop>mailalerts_58a20987a1f4e45d508b4491614a2c57'] = 'Notifiche cliente';
-$_MODULE['<{mailalerts}prestashop>mailalerts_ea379dd90c33c1345f40aa0afa6688d8'] = 'Disponibilità prodotto:';
-$_MODULE['<{mailalerts}prestashop>mailalerts_38fb7d24e0d60a048f540ecb18e13376'] = 'Salva';
-$_MODULE['<{mailalerts}prestashop>mailalerts_929396618e54384e9a22493055028533'] = 'Ricevere una notifica se la disponibilità di magazzino di un prodotto è sotto la seguente quantità';
-$_MODULE['<{mailalerts}prestashop>mailalerts_cadcfa2749b0cfb51d88837d4a934ad1'] = 'Copertura';
-$_MODULE['<{mailalerts}prestashop>mailalerts_7bcb7394f6b2ff226c423fea1a153754'] = 'Indirizzi e-mail:';
-$_MODULE['<{mailalerts}prestashop>mailalerts_7cb9a154f101c674c945f88dad5c5e28'] = 'Nessun messaggio';
-$_MODULE['<{mailalerts}prestashop>mailalerts_1d744a9ad1dac20645cfc4a36b77323b'] = 'immagine (s)';
-$_MODULE['<{mailalerts}prestashop>mailalerts_9137796c15dd92e5553c3f29574d0968'] = 'Codice del buono:';
-$_MODULE['<{mailalerts}prestashop>mailalerts-account_0b3db27bc15f682e92ff250ebb167d4b'] = 'Torna al tuo account';
-$_MODULE['<{mailalerts}prestashop>product_bb51a155575b81f4a07f7a9bafdc3b01'] = 'Tu hai già un avviso per questo prodotto';
diff --git a/modules/newsletter/translations/de.php b/modules/newsletter/translations/de.php
deleted file mode 100644
index b23519325..000000000
--- a/modules/newsletter/translations/de.php
+++ /dev/null
@@ -1,33 +0,0 @@
-newsletter_ffb7e666a70151215b4c55c6268d7d72'] = 'Newsletter';
-$_MODULE['<{newsletter}prestashop>newsletter_c3987e4cac14a8456515f0d200da04ee'] = 'Alle Länder';
-$_MODULE['<{newsletter}prestashop>newsletter_99006a61d48499231e1be92241cf772a'] = 'Newsletter-Abonnenten Filtern.';
-$_MODULE['<{newsletter}prestashop>newsletter_39f7a3e2b56e9bfd753ba6325533a127'] = 'Abonnenten';
-$_MODULE['<{newsletter}prestashop>newsletter_faa1115fbab933e7178ee43ce1590977'] = 'ACHTUNG: Wenn Sie diese CSV-Datei mit Excel zu öffnen versuchen, vergessen Sie nicht, den UTF-8 Code zu wählen, sonst können seltsame Zeichen erscheinen';
-$_MODULE['<{newsletter}prestashop>newsletter_81573e0ea79138f02fd2cee94786d7e9'] = 'Fehler: kann nicht schreiben';
-$_MODULE['<{newsletter}prestashop>newsletter_23e8f8a55548b88bfbdcd1f6ba26a010'] = 'Personen, die den Newsletter über den BlockNewsletter Block im Front-Office abonniert haben.';
-$_MODULE['<{newsletter}prestashop>newsletter_dbb392a2dc9b38722e69f6032faea73e'] = '.CSV-Datei exportieren';
-$_MODULE['<{newsletter}prestashop>newsletter_2a96d838a5e89b86792669f0ab422987'] = '.CSV-Datei aus Kunden-Konto-Daten generieren.';
-$_MODULE['<{newsletter}prestashop>newsletter_804a924e464fd21ed92f820224c4091d'] = 'Erzeugt eine .CSV-Datei für Massenmailings';
-$_MODULE['<{newsletter}prestashop>newsletter_011d8c5d94f729f013963d856cd78745'] = 'Nicht-Abonnenten';
-$_MODULE['<{newsletter}prestashop>newsletter_793ee192a9124cd6f529460eef17d3e5'] = 'Opt-in-Abonnenten';
-$_MODULE['<{newsletter}prestashop>newsletter_7b15c043d66fecc45c8752592aa38e38'] = 'Opt-in Abonnenten filtern.';
-$_MODULE['<{newsletter}prestashop>newsletter_04e7c39a16e4d89fe9c3861af82ececa'] = 'Die .CSV-Datei wurde erfolgreich exportiert. (%d Kunden vorhanden)';
-$_MODULE['<{newsletter}prestashop>newsletter_27d1ec406fd2baf49d03f81a4bb41122'] = 'Dies wird eine Liste mit E-Mails von Personen, die Ihren Shop besuchen und nicht Kunden werden, sondern Ihren Newsletter erhalten wollen. Mit der Benutzung der untenstehenden Liste \\"Export Newsletter Abonnenten\\"wird eine . CSV-Datei generiert, die auf den BlockNewsletter Abonnenten-Daten basiert .';
-$_MODULE['<{newsletter}prestashop>newsletter_74ca54506cdbc82e3aa763ba91b8fa39'] = 'Kunden, die \\"ja\\" angeklickt haben, um einen Newsletter in ihrem Kundenprofil zu erhalten.';
-$_MODULE['<{newsletter}prestashop>newsletter_769050278dda5e93374adda37811e413'] = 'Es werden ausschließlich Abonnenten ohne eigenen Account exportiert.';
-$_MODULE['<{newsletter}prestashop>newsletter_fa01fd956e87307bce4c90a0de9b0437'] = 'Kundenländer';
-$_MODULE['<{newsletter}prestashop>newsletter_7e3a51a56ddd2846e21c33f05e0aea6f'] = 'Alle Kunden';
-$_MODULE['<{newsletter}prestashop>newsletter_48e3d5f66961b621c78f709afcd7d437'] = 'Laden Sie die Datei herunter';
-$_MODULE['<{newsletter}prestashop>newsletter_7f5c4d54d8602ab7234a715a2a10b98e'] = 'Export Newsletter-Abonnenten';
-$_MODULE['<{newsletter}prestashop>newsletter_c0859b0a5241dff468da2a9a93c3284f'] = 'Betreiben Sie einen Filter für das Kundenland.';
-$_MODULE['<{newsletter}prestashop>newsletter_2198f293f5e1e95dddeff819fbca0975'] = 'Newsletter-Abonnenten';
-$_MODULE['<{newsletter}prestashop>newsletter_82e5e0bc0f9c776c98253d569c111c0f'] = 'Keine Kunden mit diesen Filtern gefunden!';
-$_MODULE['<{newsletter}prestashop>newsletter_8d550e9bf69bfc7a09be6eeb1622ae23'] = 'Es gibt zwei Arten für dieses Modul:';
-$_MODULE['<{newsletter}prestashop>newsletter_1aa14f5a6423dbde1ef2cfe4734980b4'] = 'Der Abschnitt \\"Export Kunden\\" unten filtert die Kunden, denen Sie einen Newsletter schicken möchten.';
-$_MODULE['<{newsletter}prestashop>newsletter_a60401e616125189d78605b2ddd7ff45'] = 'Erzeugen Sie eine. CSV-Datei aus BlockNewsletter Abonnenten-Daten.';
-$_MODULE['<{newsletter}prestashop>newsletter_4713ef5f2d6fc1e8f088c850e696a04b'] = 'Kunden exportieren';
diff --git a/modules/newsletter/translations/en.php b/modules/newsletter/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/newsletter/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-newsletter_ffb7e666a70151215b4c55c6268d7d72'] = 'Newsletter';
-$_MODULE['<{newsletter}prestashop>newsletter_c3987e4cac14a8456515f0d200da04ee'] = 'Todos los países';
-$_MODULE['<{newsletter}prestashop>newsletter_99006a61d48499231e1be92241cf772a'] = 'Filtro de suscriptores a la newsletter.';
-$_MODULE['<{newsletter}prestashop>newsletter_39f7a3e2b56e9bfd753ba6325533a127'] = 'suscritos';
-$_MODULE['<{newsletter}prestashop>newsletter_faa1115fbab933e7178ee43ce1590977'] = 'ATENCION: Si trata de abrir el fichero .CSV con Excel, no olvide seleccionar el UTF-8 para el encodage, si no aparecerán caracteres incorrectos';
-$_MODULE['<{newsletter}prestashop>newsletter_81573e0ea79138f02fd2cee94786d7e9'] = 'Error: imposible escribir en';
-$_MODULE['<{newsletter}prestashop>newsletter_23e8f8a55548b88bfbdcd1f6ba26a010'] = 'Las personas que hayan suscrito utilizando el bloque newsletter en la página de inicio.';
-$_MODULE['<{newsletter}prestashop>newsletter_dbb392a2dc9b38722e69f6032faea73e'] = 'Exportar un fichero .CSV';
-$_MODULE['<{newsletter}prestashop>newsletter_2a96d838a5e89b86792669f0ab422987'] = 'Generar un archivo. CSV de datos de la cuenta del cliente.';
-$_MODULE['<{newsletter}prestashop>newsletter_804a924e464fd21ed92f820224c4091d'] = 'Genere un fichero .CSV para mailing masivo';
-$_MODULE['<{newsletter}prestashop>newsletter_011d8c5d94f729f013963d856cd78745'] = 'no suscritos';
-$_MODULE['<{newsletter}prestashop>newsletter_793ee192a9124cd6f529460eef17d3e5'] = 'Inscritos a publicidades';
-$_MODULE['<{newsletter}prestashop>newsletter_7b15c043d66fecc45c8752592aa38e38'] = 'Operar un filtro a los inscritos a publicidades';
-$_MODULE['<{newsletter}prestashop>newsletter_04e7c39a16e4d89fe9c3861af82ececa'] = 'El fichero .CSV ha sido exportado correctamente. (%d clientes encontrados)';
-$_MODULE['<{newsletter}prestashop>newsletter_27d1ec406fd2baf49d03f81a4bb41122'] = 'Esta será una lista de direcciones de correo para las personas que visiten su tienda y no se convierta en clientes, pero que desean obtener su newsletter. Use \\"Newsletter Suscriptores de exportación\\" más abajo para generar una . CSV sobre la base de los usuarios de los datos del bloque Newsletter.';
-$_MODULE['<{newsletter}prestashop>newsletter_74ca54506cdbc82e3aa763ba91b8fa39'] = 'Los clientes que han dicho \\"sí\\" para recibir la newsletter en su perfil de cliente.';
-$_MODULE['<{newsletter}prestashop>newsletter_769050278dda5e93374adda37811e413'] = 'Sólo los usuarios sin una cuenta en la tienda se van a exportar.';
-$_MODULE['<{newsletter}prestashop>newsletter_48e3d5f66961b621c78f709afcd7d437'] = 'Descargar el fichero';
-$_MODULE['<{newsletter}prestashop>newsletter_7f5c4d54d8602ab7234a715a2a10b98e'] = 'Exportar suscritos a la newsletter';
-$_MODULE['<{newsletter}prestashop>newsletter_fa01fd956e87307bce4c90a0de9b0437'] = 'País del cliente';
-$_MODULE['<{newsletter}prestashop>newsletter_7e3a51a56ddd2846e21c33f05e0aea6f'] = 'Todos los clientes';
-$_MODULE['<{newsletter}prestashop>newsletter_c0859b0a5241dff468da2a9a93c3284f'] = 'Aplicar un filtro al país del cliente';
-$_MODULE['<{newsletter}prestashop>newsletter_2198f293f5e1e95dddeff819fbca0975'] = 'Suscritos a la newsletter';
-$_MODULE['<{newsletter}prestashop>newsletter_82e5e0bc0f9c776c98253d569c111c0f'] = 'Noy hay clientes a los que se aplique este filtro';
-$_MODULE['<{newsletter}prestashop>newsletter_8d550e9bf69bfc7a09be6eeb1622ae23'] = 'Hay dos tipos de módulos:';
-$_MODULE['<{newsletter}prestashop>newsletter_1aa14f5a6423dbde1ef2cfe4734980b4'] = 'La sección \\"exportación clientes\\" debajo de los filtros para clientes a los que quiere enviar la newsletter.';
-$_MODULE['<{newsletter}prestashop>newsletter_a60401e616125189d78605b2ddd7ff45'] = 'Generar un archivo. CSV BlockNewsletter sobre la base de datos de suscriptores.';
-$_MODULE['<{newsletter}prestashop>newsletter_4713ef5f2d6fc1e8f088c850e696a04b'] = 'Exportar clientes';
diff --git a/modules/newsletter/translations/fr.php b/modules/newsletter/translations/fr.php
deleted file mode 100644
index ef86b7f6d..000000000
--- a/modules/newsletter/translations/fr.php
+++ /dev/null
@@ -1,33 +0,0 @@
-newsletter_ffb7e666a70151215b4c55c6268d7d72'] = 'Lettre d\'informations';
-$_MODULE['<{newsletter}prestashop>newsletter_c3987e4cac14a8456515f0d200da04ee'] = 'Tous les pays';
-$_MODULE['<{newsletter}prestashop>newsletter_99006a61d48499231e1be92241cf772a'] = 'Opérer un filtre sur les inscrits à la lettre d\'information.';
-$_MODULE['<{newsletter}prestashop>newsletter_39f7a3e2b56e9bfd753ba6325533a127'] = 'Inscrits';
-$_MODULE['<{newsletter}prestashop>newsletter_faa1115fbab933e7178ee43ce1590977'] = 'ATTENTION : si vous tentez d\'ouvrir le fichier .csv avec Excel, n\'oubliez pas de sélectionner l\'encodage UTF-8, sinon vous aurez des caractères incorrects';
-$_MODULE['<{newsletter}prestashop>newsletter_81573e0ea79138f02fd2cee94786d7e9'] = 'Erreur : impossible d\'écrire';
-$_MODULE['<{newsletter}prestashop>newsletter_23e8f8a55548b88bfbdcd1f6ba26a010'] = 'Les personnes ayant indiqué leur adresse dans le bloc newsletter de la page d\'accueil';
-$_MODULE['<{newsletter}prestashop>newsletter_dbb392a2dc9b38722e69f6032faea73e'] = 'Exporte un fichier .CSV';
-$_MODULE['<{newsletter}prestashop>newsletter_2a96d838a5e89b86792669f0ab422987'] = 'Génère un fichier .CSV à partir des données des comptes utilisateurs.';
-$_MODULE['<{newsletter}prestashop>newsletter_769050278dda5e93374adda37811e413'] = 'Seuls les abonnés sans compte client sur la boutique seront exportés.';
-$_MODULE['<{newsletter}prestashop>newsletter_804a924e464fd21ed92f820224c4091d'] = 'Génère un fichier .CSV pour votre envoi d\'e-mails';
-$_MODULE['<{newsletter}prestashop>newsletter_011d8c5d94f729f013963d856cd78745'] = 'Non-inscrits';
-$_MODULE['<{newsletter}prestashop>newsletter_793ee192a9124cd6f529460eef17d3e5'] = 'Inscrits pub';
-$_MODULE['<{newsletter}prestashop>newsletter_7b15c043d66fecc45c8752592aa38e38'] = 'Mettre un filtre sur les inscrits aux messages publicitaires.';
-$_MODULE['<{newsletter}prestashop>newsletter_04e7c39a16e4d89fe9c3861af82ececa'] = 'Le fichier .CSV a bien été exporté. (%d clients trouvés)';
-$_MODULE['<{newsletter}prestashop>newsletter_27d1ec406fd2baf49d03f81a4bb41122'] = 'Voici une liste des adresses e-mails des personnes qui se rendent sur votre boutique sans en devenir client, mais qui se sont inscrites à votre newsletter. À l\'aide de la section \\"Exporter les inscrits à la newsletters\\" ci-dessous, vous pouvez générer un fichier .CSV basé sur les données du bloc Newsletter.';
-$_MODULE['<{newsletter}prestashop>newsletter_74ca54506cdbc82e3aa763ba91b8fa39'] = 'Les clients ayant coché la case \\"oui\\" pour l\'inscription à la liste de newsletter.';
-$_MODULE['<{newsletter}prestashop>newsletter_7e3a51a56ddd2846e21c33f05e0aea6f'] = 'Tous les clients';
-$_MODULE['<{newsletter}prestashop>newsletter_fa01fd956e87307bce4c90a0de9b0437'] = 'Pays du client';
-$_MODULE['<{newsletter}prestashop>newsletter_48e3d5f66961b621c78f709afcd7d437'] = 'Télécharger le fichier';
-$_MODULE['<{newsletter}prestashop>newsletter_7f5c4d54d8602ab7234a715a2a10b98e'] = 'Exporter les inscrits à la newsletter depuis le bloc Newsletter';
-$_MODULE['<{newsletter}prestashop>newsletter_c0859b0a5241dff468da2a9a93c3284f'] = 'Mettre un filtre sur le pays des clients.';
-$_MODULE['<{newsletter}prestashop>newsletter_2198f293f5e1e95dddeff819fbca0975'] = 'Inscrits lettre d\'info.';
-$_MODULE['<{newsletter}prestashop>newsletter_82e5e0bc0f9c776c98253d569c111c0f'] = 'Aucun client trouvé avec ces paramètres !';
-$_MODULE['<{newsletter}prestashop>newsletter_8d550e9bf69bfc7a09be6eeb1622ae23'] = 'Ce module est divisé en 2 parties :';
-$_MODULE['<{newsletter}prestashop>newsletter_1aa14f5a6423dbde1ef2cfe4734980b4'] = 'La section \\"Exporter des clients\\" ci-dessous permet de filtrer les clients à qui vous souhaitez envoyer votre newsletter.';
-$_MODULE['<{newsletter}prestashop>newsletter_a60401e616125189d78605b2ddd7ff45'] = 'Génère un fichier .CSV à partir des données des inscrits au bloc Newsletter.';
-$_MODULE['<{newsletter}prestashop>newsletter_4713ef5f2d6fc1e8f088c850e696a04b'] = 'Export des clients';
diff --git a/modules/newsletter/translations/it.php b/modules/newsletter/translations/it.php
deleted file mode 100644
index d64faeff8..000000000
--- a/modules/newsletter/translations/it.php
+++ /dev/null
@@ -1,33 +0,0 @@
-newsletter_ffb7e666a70151215b4c55c6268d7d72'] = 'Newsletter';
-$_MODULE['<{newsletter}prestashop>newsletter_c3987e4cac14a8456515f0d200da04ee'] = 'Tutti i paesi';
-$_MODULE['<{newsletter}prestashop>newsletter_99006a61d48499231e1be92241cf772a'] = 'Filtro iscritti newsletter.';
-$_MODULE['<{newsletter}prestashop>newsletter_39f7a3e2b56e9bfd753ba6325533a127'] = 'Iscritti';
-$_MODULE['<{newsletter}prestashop>newsletter_81573e0ea79138f02fd2cee94786d7e9'] = 'Errore: impossibile scrivere a';
-$_MODULE['<{newsletter}prestashop>newsletter_23e8f8a55548b88bfbdcd1f6ba26a010'] = 'Le persone che si sono iscritte usando il blocco BlockNewsletter nel front office.';
-$_MODULE['<{newsletter}prestashop>newsletter_dbb392a2dc9b38722e69f6032faea73e'] = 'Esporta file. CSV';
-$_MODULE['<{newsletter}prestashop>newsletter_faa1115fbab933e7178ee43ce1590977'] = '. ATTENZIONE: Se si tenta di aprire questo file .csv con Excel, non dimenticare di scegliere la codifica UTF-8 o puoi vedere caratteri strani';
-$_MODULE['<{newsletter}prestashop>newsletter_2a96d838a5e89b86792669f0ab422987'] = 'Genera un file. CSV dai dati account clienti.';
-$_MODULE['<{newsletter}prestashop>newsletter_804a924e464fd21ed92f820224c4091d'] = 'Genera un file. CSV per invii di massa';
-$_MODULE['<{newsletter}prestashop>newsletter_011d8c5d94f729f013963d856cd78745'] = 'Non iscritti';
-$_MODULE['<{newsletter}prestashop>newsletter_793ee192a9124cd6f529460eef17d3e5'] = 'Iscritti opt-in';
-$_MODULE['<{newsletter}prestashop>newsletter_7b15c043d66fecc45c8752592aa38e38'] = 'Sottoscrittori opt-in filtri';
-$_MODULE['<{newsletter}prestashop>newsletter_04e7c39a16e4d89fe9c3861af82ececa'] = 'Il file .CSV è stato esportato con successo (%d clienti trovati)';
-$_MODULE['<{newsletter}prestashop>newsletter_27d1ec406fd2baf49d03f81a4bb41122'] = 'Questo sarà un elenco di indirizzi email delle persone che si recano nel tuo negozio non per diventare un cliente, ma per ottenere la tua newsletter. Utilizzando il seguente \\"Esporta iscritti alla newsletter\\" genererà un file. CSV sulla base dei dati abbonati BlockNewsletter.';
-$_MODULE['<{newsletter}prestashop>newsletter_74ca54506cdbc82e3aa763ba91b8fa39'] = 'I clienti che hanno risposto \\"sì\\" per ricevere una newsletter nel loro profilo del cliente.';
-$_MODULE['<{newsletter}prestashop>newsletter_769050278dda5e93374adda37811e413'] = 'Solo iscritti alla newsletter senza un account nel negozio saranno esportati.';
-$_MODULE['<{newsletter}prestashop>newsletter_fa01fd956e87307bce4c90a0de9b0437'] = 'Paese dei clienti';
-$_MODULE['<{newsletter}prestashop>newsletter_7e3a51a56ddd2846e21c33f05e0aea6f'] = 'Tutti i clienti';
-$_MODULE['<{newsletter}prestashop>newsletter_48e3d5f66961b621c78f709afcd7d437'] = 'Scarica il file';
-$_MODULE['<{newsletter}prestashop>newsletter_7f5c4d54d8602ab7234a715a2a10b98e'] = 'Export Newsletter Iscritti';
-$_MODULE['<{newsletter}prestashop>newsletter_c0859b0a5241dff468da2a9a93c3284f'] = 'Opera un filtro sul paese dei clienti.';
-$_MODULE['<{newsletter}prestashop>newsletter_2198f293f5e1e95dddeff819fbca0975'] = 'Iscritti alla newsletter';
-$_MODULE['<{newsletter}prestashop>newsletter_82e5e0bc0f9c776c98253d569c111c0f'] = 'Nessun cliente trovato con questi filtri!';
-$_MODULE['<{newsletter}prestashop>newsletter_8d550e9bf69bfc7a09be6eeb1622ae23'] = 'Modulo diviso in due tipologie:';
-$_MODULE['<{newsletter}prestashop>newsletter_1aa14f5a6423dbde1ef2cfe4734980b4'] = 'La sezione seguente \\"Esporta clienti\\" filtra a quali clienti si desidera inviare una newsletter.';
-$_MODULE['<{newsletter}prestashop>newsletter_a60401e616125189d78605b2ddd7ff45'] = 'Genera un file. CSV sulla base dei dati abbonati BlockNewsletter.';
-$_MODULE['<{newsletter}prestashop>newsletter_4713ef5f2d6fc1e8f088c850e696a04b'] = 'Esporta clienti';
diff --git a/modules/pagesnotfound/translations/de.php b/modules/pagesnotfound/translations/de.php
deleted file mode 100644
index f6fd0b50d..000000000
--- a/modules/pagesnotfound/translations/de.php
+++ /dev/null
@@ -1,23 +0,0 @@
-pagesnotfound_220b13b2c5c94e16c5895e3925270617'] = 'Anzeige der Seiten, die Besucher aufrufen wollten, aber nicht gefunden haben';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_da4c19289501755f54f1a9223d0271cc'] = 'Nicht gefundene Seiten geleert';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_64d129224a5377b63e9727479ec987d9'] = 'Counter';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_4613b06701504f4a6664effb977b3e32'] = 'Leeren Sie alle Seiten in diesem Zeitraum nicht gefunden';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_f0698625adc9935b9a8d40eb128922c2'] = 'Falls Ihr Provider die .htaccess-Datei unterstützt, können Sie sie im Root-Verzeichnis von PrestaShop erstellen und folgende Zeile einfügen:';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_499066312cb6ca89c060f67dcad7c7a6'] = 'Dieses Modul protokolliert die Zugänge zu dieser Seite: die aufgerufene Seite, den Referrer und die Anzahl der Aufrufe.';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_d372ffc9065cb7d2ea24df137927d060'] = 'Keine Seiten registriert';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_a90083861c168ef985bf70763980aa60'] = 'Wie fängt man diese Fehler ab?';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_254b5e94768b90388cc7002d362351f0'] = 'Leer KEINE Seiten gefunden';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_3604249130acf7fda296e16edc996e5b'] = '404-Fehler';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_54c5be2cbf4d4a829069fd28903507b0'] = 'Ein Benutzer, der eine Seite aufruft, die es nicht gibt, wird zur Seite weitergeleitet';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_251295238bdf7693252f2804c8d3707e'] = 'Nicht gefundene Seiten';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_23dbe39a97cb7e4e528f25f5795d317f'] = 'Nicht gefundene Seiten gelöscht wurden.';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_6b4cd0cb089425011df02c8e86a1b832'] = 'Sie müssen eine .htaccess-Datei benutzen, um 404-Fehler auf die Seit.php zu leiten';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_193cfc9be3b995831c6af2fea6650e60'] = 'Seite';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_b6f05e5ddde1ec63d992d61144452dfa'] = 'Referrer';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_d8847bc418fc4f5a3e37c2e8390bb9ed'] = 'Leere Datenbank';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_6602bbeb2956c035fb4cb5e844a4861b'] = 'Guide';
diff --git a/modules/pagesnotfound/translations/en.php b/modules/pagesnotfound/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/pagesnotfound/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-pagesnotfound_220b13b2c5c94e16c5895e3925270617'] = 'Mostrar las páginas solicitadas por sus visitantes pero no encontradas';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_da4c19289501755f54f1a9223d0271cc'] = 'Páginas no encontradas suprimidas';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_64d129224a5377b63e9727479ec987d9'] = 'Contador';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_d372ffc9065cb7d2ea24df137927d060'] = 'Páginas no registradas';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_4613b06701504f4a6664effb977b3e32'] = 'Suprimir TODAS las páginas no encontradas en este periodo';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_f0698625adc9935b9a8d40eb128922c2'] = 'Si su servidor soporta el archivo .htaccess, puede crear uno en el directorio raíz de PrestaShop e insertar la línea siguiente:';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_499066312cb6ca89c060f67dcad7c7a6'] = 'Este módulo registra los accesos a esta página: la página requerida, la referencia y el número de veces que se visitó.';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_a90083861c168ef985bf70763980aa60'] = '¿Como prevenir estos errores?';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_254b5e94768b90388cc7002d362351f0'] = 'Suprimir TODAS las páginas no encontradas';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_3604249130acf7fda296e16edc996e5b'] = 'error 404';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_54c5be2cbf4d4a829069fd28903507b0'] = 'El usuario que busca una página que no existe será reenviado a la página';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_251295238bdf7693252f2804c8d3707e'] = 'Página no encontrada';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_23dbe39a97cb7e4e528f25f5795d317f'] = 'Las páginas no encontradas se han actualizado';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_6b4cd0cb089425011df02c8e86a1b832'] = 'Usted debe utilizar un archivo .htaccess para volver a redirigir error 404 al de la página';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_193cfc9be3b995831c6af2fea6650e60'] = 'Página';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_b6f05e5ddde1ec63d992d61144452dfa'] = 'Referente';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_d8847bc418fc4f5a3e37c2e8390bb9ed'] = 'Suprimir';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_6602bbeb2956c035fb4cb5e844a4861b'] = 'Guía';
diff --git a/modules/pagesnotfound/translations/fr.php b/modules/pagesnotfound/translations/fr.php
deleted file mode 100644
index 2a77831ee..000000000
--- a/modules/pagesnotfound/translations/fr.php
+++ /dev/null
@@ -1,23 +0,0 @@
-pagesnotfound_f0698625adc9935b9a8d40eb128922c2'] = 'Si votre hébergeur autorise les fichiers .htaccess, vous pouvez en créer un à la racine de votre PrestaShop et insérer la ligne suivante :';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_499066312cb6ca89c060f67dcad7c7a6'] = 'Ce module enregistre les accès à cette page avec : la page demandée initialement, la page source et le nombre de fois que c\'est arrivé.';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_220b13b2c5c94e16c5895e3925270617'] = 'Affiche les pages demandées mais qui n\'existent pas';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_da4c19289501755f54f1a9223d0271cc'] = 'Les pages introuvables vidées.';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_64d129224a5377b63e9727479ec987d9'] = 'Compteur';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_d372ffc9065cb7d2ea24df137927d060'] = 'Aucune page enregistrée';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_4613b06701504f4a6664effb977b3e32'] = 'Supprimer toutes les pages introuvables sur cette période';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_a90083861c168ef985bf70763980aa60'] = 'Comment attraper ces erreurs ?';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_3604249130acf7fda296e16edc996e5b'] = 'Erreurs 404';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_54c5be2cbf4d4a829069fd28903507b0'] = 'Un utilisateur qui demande une page inexistante sera redirigé vers la page.';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_254b5e94768b90388cc7002d362351f0'] = 'Supprimer toutes les pages introuvables';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_23dbe39a97cb7e4e528f25f5795d317f'] = 'Les pages introuvables supprimées.';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_251295238bdf7693252f2804c8d3707e'] = 'Pages introuvables';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_6b4cd0cb089425011df02c8e86a1b832'] = 'Vous devez utiliser un fichier .htaccess redirigeant les erreurs 404 vers la page \\"404.php\\"';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_193cfc9be3b995831c6af2fea6650e60'] = 'Page';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_b6f05e5ddde1ec63d992d61144452dfa'] = 'Origine';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_d8847bc418fc4f5a3e37c2e8390bb9ed'] = 'Suppression';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_6602bbeb2956c035fb4cb5e844a4861b'] = 'Guide';
diff --git a/modules/pagesnotfound/translations/it.php b/modules/pagesnotfound/translations/it.php
deleted file mode 100644
index d569e2263..000000000
--- a/modules/pagesnotfound/translations/it.php
+++ /dev/null
@@ -1,23 +0,0 @@
-pagesnotfound_220b13b2c5c94e16c5895e3925270617'] = 'Visualizza le pagine richieste dai visitatori ma non trovate';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_da4c19289501755f54f1a9223d0271cc'] = 'Pagine non trovate svuotate';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_64d129224a5377b63e9727479ec987d9'] = 'Contatore';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_d372ffc9065cb7d2ea24df137927d060'] = 'Nessuna pagina registrata';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_4613b06701504f4a6664effb977b3e32'] = 'Svuotare tutte le pagine non si trova in questo periodo';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_f0698625adc9935b9a8d40eb128922c2'] = 'Se il tuo provider supporta il file htaccess, è possibile crearlo nella directory principale di PrestaShop e inserirvi dentro la seguente riga:';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_499066312cb6ca89c060f67dcad7c7a6'] = 'Questo modulo registra gli accessi a questa pagina: la pagina richiesta, la provenienza e il numero di volte che si è verificato.';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_a90083861c168ef985bf70763980aa60'] = 'Come individuare questi errori?';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_254b5e94768b90388cc7002d362351f0'] = 'Elimina TUTTE le pagine non trovate';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_3604249130acf7fda296e16edc996e5b'] = 'errori 404';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_54c5be2cbf4d4a829069fd28903507b0'] = 'Un utente che richiede una pagina che non esiste verrà reindirizzato alla pagina';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_251295238bdf7693252f2804c8d3707e'] = 'Pagine non trovate';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_23dbe39a97cb7e4e528f25f5795d317f'] = 'Pagine non trovate sono stati eliminati.';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_6b4cd0cb089425011df02c8e86a1b832'] = 'È necessario utilizzare un file. Htaccess per reindirizzare gli errori 404 alla pagina \\"404.php\\"';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_193cfc9be3b995831c6af2fea6650e60'] = 'Pagina';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_b6f05e5ddde1ec63d992d61144452dfa'] = 'Referente';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_d8847bc418fc4f5a3e37c2e8390bb9ed'] = 'database vuoto';
-$_MODULE['<{pagesnotfound}prestashop>pagesnotfound_6602bbeb2956c035fb4cb5e844a4861b'] = 'Guida';
diff --git a/modules/productcomments/translations/de.php b/modules/productcomments/translations/de.php
deleted file mode 100644
index addef0164..000000000
--- a/modules/productcomments/translations/de.php
+++ /dev/null
@@ -1,95 +0,0 @@
-productcommentcriterion_467366059d7d7c743a4d0971363a8d66'] = 'Auf bestimmte Kategorien beschränkt';
-$_MODULE['<{productcomments}prestashop>productcomments-ajax_fd4b5401d4d3c7d32d158bfc1e552f3b'] = 'Bitte tragen Sie Ihren Namen ein';
-$_MODULE['<{productcomments}prestashop>productcomments-extra_a71a0229e164fecdcde3c4e0f40473fa'] = 'Kundenbewertungen lesen';
-$_MODULE['<{productcomments}prestashop>productcomments_e6ea19ae2eb9447f98c7ed74227bb4a3'] = 'Das Feld Name ist erfolderlich mindestns in';
-$_MODULE['<{productcomments}prestashop>productcomments_e140a9c4fcfa0aad7af83f65e577c287'] = 'Kriterium hinzugefügt';
-$_MODULE['<{productcomments}prestashop>productcomments_783e8e29e6a8c3e22baa58a19420eb4f'] = 'Sekunden';
-$_MODULE['<{productcomments}prestashop>productcomments_c9cc8cce247e49bae79f15173ce97354'] = 'Speichern';
-$_MODULE['<{productcomments}prestashop>productcomments_a517747c3d12f99244ae598910d979c5'] = 'Autor';
-$_MODULE['<{productcomments}prestashop>productcomments_7753ab38f8e113e8af65ab1241331625'] = 'Sie können mehrere Kriterien definieren, um Ihren Kunden bei ihrem Beitrag zu helfen. Zum Beispiel: Effizienz, Leichtigkeit, Design.';
-$_MODULE['<{productcomments}prestashop>productcomments_bc58d00e1e42de31a8e58f8dc7d9bdc7'] = 'Sie können hier unten ein neues Kriterium hinzufügen:';
-$_MODULE['<{productcomments}prestashop>productcomments_49ee3087348e8d44e1feda1917443987'] = 'Name';
-$_MODULE['<{productcomments}prestashop>productcomments_4d3d769b812b6faa6b76e1a8abaece2d'] = 'Aktiv';
-$_MODULE['<{productcomments}prestashop>productcomments_a942d4abf908e5f708ec4dfaa949065e'] = 'Wählen Sie ein Kriterium';
-$_MODULE['<{productcomments}prestashop>productcomments_b9aefa40a54680bb258f9f9569290fae'] = 'Name des Produkts';
-$_MODULE['<{productcomments}prestashop>productcomments_46be1b432f94e9608b015e12c332c67e'] = 'Kommentare verwalten';
-$_MODULE['<{productcomments}prestashop>productcomments_687e376375b560c9261aba93ea5186de'] = 'Derzeit keine verwaltbaren Kommentare vorhanden';
-$_MODULE['<{productcomments}prestashop>productcomments_4494d00c901c9e22ff3b953177205cea'] = 'Sind Sie sicher, dass Sie diesen Kommentar melden möchten?';
-$_MODULE['<{productcomments}prestashop>productcomments_4b3b9db8c9784468094acde0f8bf7071'] = 'Stufe';
-$_MODULE['<{productcomments}prestashop>products-comparison_8413c683b4b27cc3f4dbd4c90329d8ba'] = 'Kommentare';
-$_MODULE['<{productcomments}prestashop>default_607d7adc590bb9a615b6fa5bc8a4f2f6'] = 'ID Produkt ist falsch';
-$_MODULE['<{productcomments}prestashop>default_7b0bf23ae4079e07a3a4cb4d07e2caef'] = 'Titel ist inkorrekt';
-$_MODULE['<{productcomments}prestashop>default_a95dff703b20b1e705210c39b3865bf0'] = 'Sie müssen angeeldet sein, um Kommentare verfassen zu können';
-$_MODULE['<{productcomments}prestashop>default_dfbe69c6d9568ecb0e65e7b32ed92a3a'] = 'Produkt nicht gefunden';
-$_MODULE['<{productcomments}prestashop>productcommentcriterion_772911becd336c843ab09a1d4b4f66c0'] = 'Auf bestimmte Produkte beschränkt';
-$_MODULE['<{productcomments}prestashop>productcomments-extra_7c3b0e9898b88deee7ea75aafd2e37e2'] = 'Durchschnittsgrad';
-$_MODULE['<{productcomments}prestashop>productcomments-extra_7966126831926ad29c528b239d69f855'] = 'Eigene Bewertung verfassen';
-$_MODULE['<{productcomments}prestashop>productcomments_c888438d14855d7d96a2724ee9c306bd'] = 'Einstellungen aktualisiert';
-$_MODULE['<{productcomments}prestashop>productcomments_8bf0c707232d63bf83b4b2467d2df41a'] = 'Auswahl:';
-$_MODULE['<{productcomments}prestashop>productcomments_82bd3dd5eb07bcc37a9649cbb1a5fd33'] = 'Gemeldete Kommentare';
-$_MODULE['<{productcomments}prestashop>productcomments_f255b686708be7c5082cd3f5bab872c1'] = 'Gilt für';
-$_MODULE['<{productcomments}prestashop>productcomments_21a512e9d635e82fc7c7077fc880988b'] = 'Kriterium';
-$_MODULE['<{productcomments}prestashop>productcomments_a1fa27779242b4902f7ae3bdd5c6d508'] = 'Typ';
-$_MODULE['<{productcomments}prestashop>productcomments_6556e73b0255c988d9fe70141f1d4bd9'] = 'Nur Kriterien, die auf Kategorien oder Produkte beschränkt sind, können untenstehend konfiguriert werden:';
-$_MODULE['<{productcomments}prestashop>productcomments_068f80c7519d0528fb08e82137a72131'] = 'Produkte';
-$_MODULE['<{productcomments}prestashop>productcomments_af1b98adf7f686b84cd0b443e022b7a0'] = 'Kategorien';
-$_MODULE['<{productcomments}prestashop>productcomments_b718adec73e04ce3ec720dd11a06a308'] = 'ID';
-$_MODULE['<{productcomments}prestashop>productcomments_28b3b1e564a00f572c5d4e21da986d49'] = 'Mißbrauch melden';
-$_MODULE['<{productcomments}prestashop>productcomments_fbe2625bf3673be380d043a4bf873f28'] = 'Schreiben Sie als erste Person eine Rezension';
-$_MODULE['<{productcomments}prestashop>productcomments_7966126831926ad29c528b239d69f855'] = 'Schreiben Sie eine Rezension';
-$_MODULE['<{productcomments}prestashop>productcomments_221e705c06e231636fdbccfdd14f4d5c'] = 'Ihr Name:';
-$_MODULE['<{productcomments}prestashop>productcomments_94966d90747b97d1f0f206c98a8b1ac3'] = 'Senden';
-$_MODULE['<{productcomments}prestashop>productcomments_ea4788705e6873b424c65e91c2846b19'] = 'Abbrechen';
-$_MODULE['<{productcomments}prestashop>products-comparison_b1897515d548a960afe49ecf66a29021'] = 'Durchschnitt';
-$_MODULE['<{productcomments}prestashop>default_1b1030b6294e9096a7d7c40d83d61872'] = 'Kundenname ist inkorrekt';
-$_MODULE['<{productcomments}prestashop>default_ba8d7ae5dcadfba739f28a777378f208'] = 'Sekunden warten, bevor Sie einen neuen Kommentar posten';
-$_MODULE['<{productcomments}prestashop>productcommentcriterion_a09ed6c60eb3213939cecb4c580813cd'] = 'Gültig für den gesamten Katalog';
-$_MODULE['<{productcomments}prestashop>productcomments-ajax_6bf852d9850445291f5e9d4740ac7b50'] = 'Kommentartext ist erforderlich.';
-$_MODULE['<{productcomments}prestashop>productcomments_b91c4e8b229a399a3bc911d352524a9b'] = 'Produkt-Kommentare';
-$_MODULE['<{productcomments}prestashop>productcomments_9ca2adc05abbe3cc0a659a16fd7d5edc'] = 'Alle Kommentare müssen durch einen Mitarbeiter bestätigt werden';
-$_MODULE['<{productcomments}prestashop>productcomments_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Aktiviert';
-$_MODULE['<{productcomments}prestashop>productcomments_b9f5c797ebbf55adccdd8539a65a0241'] = 'Deaktiviert';
-$_MODULE['<{productcomments}prestashop>productcomments_66b06316f84eb73075bca0e27f2a5581'] = 'Gastkommentare erlauben';
-$_MODULE['<{productcomments}prestashop>productcomments_df644ae155e79abf54175bd15d75f363'] = 'Produktname';
-$_MODULE['<{productcomments}prestashop>productcomments_f2a6c498fb90ee345d997f888fce3b18'] = 'Löschen';
-$_MODULE['<{productcomments}prestashop>productcomments_5e04c941e38f97252e3ed00af80447a2'] = 'Keine gemeldeten Kommentare vorhanden';
-$_MODULE['<{productcomments}prestashop>productcomments_f1d04e02f02d1f13450ae56f213a93f2'] = 'Ändern Sie das Kriterium';
-$_MODULE['<{productcomments}prestashop>productcomments_ec53a8c4f07baed5d8825072c89799be'] = 'Status';
-$_MODULE['<{productcomments}prestashop>productcomments_39630ad6ee79b8653ea89194cdb45bec'] = 'Ist dieser Kommentar für Sie nützlich?';
-$_MODULE['<{productcomments}prestashop>productcomments_a6105c0a611b41b08f1209506350279e'] = 'ja';
-$_MODULE['<{productcomments}prestashop>productcomments_7fa3b767c460b54a2be4d49030b349c7'] = 'nein';
-$_MODULE['<{productcomments}prestashop>productcomments_b78a3223503896721cca1303f776159b'] = 'Titel';
-$_MODULE['<{productcomments}prestashop>productcomments_e81c4e4f2b7b93b481e13a8553c2ae1b'] = 'oder';
-$_MODULE['<{productcomments}prestashop>tab_8413c683b4b27cc3f4dbd4c90329d8ba'] = 'Kommentare';
-$_MODULE['<{productcomments}prestashop>default_ddbd56de5feb78ef1aaf60401f8c472b'] = 'Kommentar ist inkorrekt';
-$_MODULE['<{productcomments}prestashop>default_a201fbadca94d310a1b62407cdc775d5'] = 'Bitte Bewertung vergeben';
-$_MODULE['<{productcomments}prestashop>default_6d28f2900adb9e500868166f6d04da92'] = 'Sie sollten ';
-$_MODULE['<{productcomments}prestashop>productcomments_7799b301b44c329fc9ec6a3a9c1905e0'] = 'Ein neues Kriterium hinzufügen';
-$_MODULE['<{productcomments}prestashop>productcomments-ajax_f88dc17737f7fdd4464b2eb922a8f133'] = 'Ein Fehler bist eim Speichern Ihres Kommentars aufgetreten.';
-$_MODULE['<{productcomments}prestashop>productcomments-ajax_7fa4a3510dafd0eac6435c19861b2bb7'] = 'Kommentar erfolgreich geschrieben.';
-$_MODULE['<{productcomments}prestashop>productcomments-ajax_f8694a9aae2eb045920f613cfa7f1235'] = 'Wartet aufBestätigung durch Moderator.';
-$_MODULE['<{productcomments}prestashop>productcomments-ajax_8aafe254c3e8dceb6425591b322044f2'] = 'Bitte %d Sekunden bis zum Verfassen neuer Kommentare warten.';
-$_MODULE['<{productcomments}prestashop>productcomments_9918811c511f3481c085e46c07ab5da8'] = 'Kundenbewertungen erlauben';
-$_MODULE['<{productcomments}prestashop>productcomments_1bb54e382f7dbdb260f0aa6b42bb624b'] = 'Kriterium gelöscht';
-$_MODULE['<{productcomments}prestashop>productcomments_21b0922096daf5c742cc98986d857cc1'] = 'Kriterium aktualisiert';
-$_MODULE['<{productcomments}prestashop>productcomments_254f642527b45bc260048e30704edb39'] = 'Konfiguration';
-$_MODULE['<{productcomments}prestashop>productcomments_2e53b6c4c0d39a73718342ab2366ae37'] = 'Minimale Zeit zwischen 2 Kommentaren vom selben Benutzer';
-$_MODULE['<{productcomments}prestashop>productcomments_0a36c5f3ea6825804e6b4314c4084a12'] = 'Kommentare moderieren';
-$_MODULE['<{productcomments}prestashop>productcomments_0be8406951cdfda82f00f79328cf4efc'] = 'Kommentieren';
-$_MODULE['<{productcomments}prestashop>productcomments_c4408d335012a56ff58937d78050efad'] = 'Akzeptieren';
-$_MODULE['<{productcomments}prestashop>productcomments_d00b7f656273a495f555bead0248d6f5'] = 'Zur Zeit keine Kommentare zum Bestätigen.';
-$_MODULE['<{productcomments}prestashop>productcomments_9be4d6372a6487e90d8f153c66c1499d'] = 'Fügen Sie dieses Kriterium hinzu';
-$_MODULE['<{productcomments}prestashop>productcomments_7dce122004969d56ae2e0245cb754d35'] = 'Bearbeiten';
-$_MODULE['<{productcomments}prestashop>productcomments_8eb0b6ced310b120b12106e8d4bdbdb8'] = 'Bereich der Kriterien verwalten';
-$_MODULE['<{productcomments}prestashop>productcomments_99121ab27aaa7472cfada9071c5ba434'] = 'Name der Kategorie';
-$_MODULE['<{productcomments}prestashop>productcomments_729a51874fe901b092899e9e8b31c97a'] = 'Sind Sie sicher?';
-$_MODULE['<{productcomments}prestashop>productcomments_b5c82723bd85856358f9a376bc613998'] = '%1$d von %2$d Kunden finden diese Bewertung nützlich.';
-$_MODULE['<{productcomments}prestashop>productcomments_08621d00a3a801b9159a11b8bbd69f89'] = 'Zur Zeit keine Kundenkommentare.';
-$_MODULE['<{productcomments}prestashop>productcomments_70397c4b252a5168c5ec003931cea215'] = 'Pflichtfelder';
-$_MODULE['<{productcomments}prestashop>products-comparison_bc976f6c3405523cde61f63a7cbe224b'] = 'Kommentare ansehen';
-$_MODULE['<{productcomments}prestashop>productcomments_06df33001c1d7187fdd81ea1f5b277aa'] = 'Handlungen';
diff --git a/modules/productcomments/translations/en.php b/modules/productcomments/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/productcomments/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-productcommentcriterion_467366059d7d7c743a4d0971363a8d66'] = 'Limitado a ciertas catagorías';
-$_MODULE['<{productcomments}prestashop>productcomments-ajax_fd4b5401d4d3c7d32d158bfc1e552f3b'] = 'Por favor, escriba su nombre';
-$_MODULE['<{productcomments}prestashop>productcomments-extra_a71a0229e164fecdcde3c4e0f40473fa'] = 'Leer los comentarios de los usuarios';
-$_MODULE['<{productcomments}prestashop>productcomments_e6ea19ae2eb9447f98c7ed74227bb4a3'] = 'El campo Nombre es requerido por lo menos en';
-$_MODULE['<{productcomments}prestashop>productcomments_e140a9c4fcfa0aad7af83f65e577c287'] = 'Creteria añadido';
-$_MODULE['<{productcomments}prestashop>productcomments_783e8e29e6a8c3e22baa58a19420eb4f'] = 'segundos';
-$_MODULE['<{productcomments}prestashop>productcomments_c9cc8cce247e49bae79f15173ce97354'] = 'Guardar';
-$_MODULE['<{productcomments}prestashop>productcomments_a517747c3d12f99244ae598910d979c5'] = 'Autor';
-$_MODULE['<{productcomments}prestashop>productcomments_7753ab38f8e113e8af65ab1241331625'] = 'Puede definir varios criterios para guiar a sus clientes en su comentario. Por ejemplo: eficacia, diseño, etc...';
-$_MODULE['<{productcomments}prestashop>productcomments_bc58d00e1e42de31a8e58f8dc7d9bdc7'] = 'Puede añadir un nuevo criterio a continuación:';
-$_MODULE['<{productcomments}prestashop>productcomments_49ee3087348e8d44e1feda1917443987'] = 'Nombre';
-$_MODULE['<{productcomments}prestashop>productcomments_4d3d769b812b6faa6b76e1a8abaece2d'] = 'Activado';
-$_MODULE['<{productcomments}prestashop>productcomments_a942d4abf908e5f708ec4dfaa949065e'] = 'Elija un criterio';
-$_MODULE['<{productcomments}prestashop>productcomments_b9aefa40a54680bb258f9f9569290fae'] = 'Nombre del producto';
-$_MODULE['<{productcomments}prestashop>productcomments_46be1b432f94e9608b015e12c332c67e'] = 'Gestionar Comentarios';
-$_MODULE['<{productcomments}prestashop>productcomments_687e376375b560c9261aba93ea5186de'] = 'No hay comentarios para manejar en este momento.';
-$_MODULE['<{productcomments}prestashop>productcomments_4494d00c901c9e22ff3b953177205cea'] = 'No hay comentarios para manejar en este momento.';
-$_MODULE['<{productcomments}prestashop>productcomments_4b3b9db8c9784468094acde0f8bf7071'] = 'grado';
-$_MODULE['<{productcomments}prestashop>products-comparison_8413c683b4b27cc3f4dbd4c90329d8ba'] = 'Comentarios';
-$_MODULE['<{productcomments}prestashop>default_607d7adc590bb9a615b6fa5bc8a4f2f6'] = 'Identificación del producto es incorrecto ';
-$_MODULE['<{productcomments}prestashop>default_7b0bf23ae4079e07a3a4cb4d07e2caef'] = 'El título es incorrecto';
-$_MODULE['<{productcomments}prestashop>default_a95dff703b20b1e705210c39b3865bf0'] = 'Tienes que registrarte para poder enviar un comentario ';
-$_MODULE['<{productcomments}prestashop>default_dfbe69c6d9568ecb0e65e7b32ed92a3a'] = 'No encontrado';
-$_MODULE['<{productcomments}prestashop>productcommentcriterion_772911becd336c843ab09a1d4b4f66c0'] = 'Limitado a ciertos productos';
-$_MODULE['<{productcomments}prestashop>productcomments-extra_7c3b0e9898b88deee7ea75aafd2e37e2'] = 'Grado medio';
-$_MODULE['<{productcomments}prestashop>productcomments-extra_7966126831926ad29c528b239d69f855'] = 'Escribe tu opinión';
-$_MODULE['<{productcomments}prestashop>productcomments_c888438d14855d7d96a2724ee9c306bd'] = 'Actualización realizada con éxito';
-$_MODULE['<{productcomments}prestashop>productcomments_8bf0c707232d63bf83b4b2467d2df41a'] = 'Selección:';
-$_MODULE['<{productcomments}prestashop>productcomments_f255b686708be7c5082cd3f5bab872c1'] = 'Aplicar a';
-$_MODULE['<{productcomments}prestashop>productcomments_21a512e9d635e82fc7c7077fc880988b'] = 'Criterio';
-$_MODULE['<{productcomments}prestashop>productcomments_a1fa27779242b4902f7ae3bdd5c6d508'] = 'Tipo';
-$_MODULE['<{productcomments}prestashop>productcomments_6556e73b0255c988d9fe70141f1d4bd9'] = 'Solo pueden configurarse a continuación los criterios que corresponden a categorías o productos:';
-$_MODULE['<{productcomments}prestashop>productcomments_068f80c7519d0528fb08e82137a72131'] = 'Productos';
-$_MODULE['<{productcomments}prestashop>productcomments_af1b98adf7f686b84cd0b443e022b7a0'] = 'Categorías';
-$_MODULE['<{productcomments}prestashop>productcomments_b718adec73e04ce3ec720dd11a06a308'] = 'ID';
-$_MODULE['<{productcomments}prestashop>productcomments_28b3b1e564a00f572c5d4e21da986d49'] = 'Reportar Abuso';
-$_MODULE['<{productcomments}prestashop>productcomments_fbe2625bf3673be380d043a4bf873f28'] = 'Sé el primero en escribir tu opinión';
-$_MODULE['<{productcomments}prestashop>productcomments_7966126831926ad29c528b239d69f855'] = 'Escribe tu opinión';
-$_MODULE['<{productcomments}prestashop>productcomments_221e705c06e231636fdbccfdd14f4d5c'] = 'Su nombre:';
-$_MODULE['<{productcomments}prestashop>productcomments_94966d90747b97d1f0f206c98a8b1ac3'] = 'Enviar';
-$_MODULE['<{productcomments}prestashop>productcomments_ea4788705e6873b424c65e91c2846b19'] = 'Anular';
-$_MODULE['<{productcomments}prestashop>products-comparison_b1897515d548a960afe49ecf66a29021'] = 'Media';
-$_MODULE['<{productcomments}prestashop>default_1b1030b6294e9096a7d7c40d83d61872'] = 'Nombre del cliente no es correcto';
-$_MODULE['<{productcomments}prestashop>default_ba8d7ae5dcadfba739f28a777378f208'] = 'segundos antes de postear un nuevo comentario';
-$_MODULE['<{productcomments}prestashop>productcomments_82bd3dd5eb07bcc37a9649cbb1a5fd33'] = 'Comentarios reportados';
-$_MODULE['<{productcomments}prestashop>productcommentcriterion_a09ed6c60eb3213939cecb4c580813cd'] = 'Válido para la totalidad del catálogo';
-$_MODULE['<{productcomments}prestashop>productcomments-ajax_6bf852d9850445291f5e9d4740ac7b50'] = 'Se necesita el texto del comentario.';
-$_MODULE['<{productcomments}prestashop>productcomments_b91c4e8b229a399a3bc911d352524a9b'] = 'Comentario sobre el producto';
-$_MODULE['<{productcomments}prestashop>productcomments_9ca2adc05abbe3cc0a659a16fd7d5edc'] = 'Todos los comentarios deben estar validados por un empleado';
-$_MODULE['<{productcomments}prestashop>productcomments_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Activado';
-$_MODULE['<{productcomments}prestashop>productcomments_b9f5c797ebbf55adccdd8539a65a0241'] = 'Desactivado';
-$_MODULE['<{productcomments}prestashop>productcomments_66b06316f84eb73075bca0e27f2a5581'] = 'Autorizar los comentarios de visitantes que no están conectados.';
-$_MODULE['<{productcomments}prestashop>productcomments_df644ae155e79abf54175bd15d75f363'] = 'Artículo';
-$_MODULE['<{productcomments}prestashop>productcomments_f2a6c498fb90ee345d997f888fce3b18'] = 'Eliminar';
-$_MODULE['<{productcomments}prestashop>productcomments_5e04c941e38f97252e3ed00af80447a2'] = 'No se ha notificado comentario en este momento.';
-$_MODULE['<{productcomments}prestashop>productcomments_7799b301b44c329fc9ec6a3a9c1905e0'] = 'Añadir un nuevo criterio';
-$_MODULE['<{productcomments}prestashop>productcomments_f1d04e02f02d1f13450ae56f213a93f2'] = 'Modificar este criterio';
-$_MODULE['<{productcomments}prestashop>productcomments_ec53a8c4f07baed5d8825072c89799be'] = 'Estado';
-$_MODULE['<{productcomments}prestashop>productcomments_39630ad6ee79b8653ea89194cdb45bec'] = 'Fue este comentario útil para usted?';
-$_MODULE['<{productcomments}prestashop>productcomments_a6105c0a611b41b08f1209506350279e'] = 'sí';
-$_MODULE['<{productcomments}prestashop>productcomments_7fa3b767c460b54a2be4d49030b349c7'] = 'no';
-$_MODULE['<{productcomments}prestashop>productcomments_b78a3223503896721cca1303f776159b'] = 'Título';
-$_MODULE['<{productcomments}prestashop>productcomments_e81c4e4f2b7b93b481e13a8553c2ae1b'] = 'total';
-$_MODULE['<{productcomments}prestashop>tab_8413c683b4b27cc3f4dbd4c90329d8ba'] = 'Comentarios';
-$_MODULE['<{productcomments}prestashop>default_ddbd56de5feb78ef1aaf60401f8c472b'] = 'Comentario es incorrecto';
-$_MODULE['<{productcomments}prestashop>default_a201fbadca94d310a1b62407cdc775d5'] = 'Usted tiene que dar una calificación ';
-$_MODULE['<{productcomments}prestashop>default_6d28f2900adb9e500868166f6d04da92'] = 'Debería esperar';
-$_MODULE['<{productcomments}prestashop>productcomments-ajax_f88dc17737f7fdd4464b2eb922a8f133'] = 'Se ha producido un error al guardar su comentario.';
-$_MODULE['<{productcomments}prestashop>productcomments-ajax_7fa4a3510dafd0eac6435c19861b2bb7'] = 'Comentario publicado con éxito.';
-$_MODULE['<{productcomments}prestashop>productcomments-ajax_f8694a9aae2eb045920f613cfa7f1235'] = 'En espera de validación moderador';
-$_MODULE['<{productcomments}prestashop>productcomments-ajax_8aafe254c3e8dceb6425591b322044f2'] = 'Usted debe esperar %d segundos antes de escribir un comentario nuevo.';
-$_MODULE['<{productcomments}prestashop>productcomments_9918811c511f3481c085e46c07ab5da8'] = 'Permite a los usuarios publicar comentarios.';
-$_MODULE['<{productcomments}prestashop>productcomments_1bb54e382f7dbdb260f0aa6b42bb624b'] = 'Criterio suprimido';
-$_MODULE['<{productcomments}prestashop>productcomments_21b0922096daf5c742cc98986d857cc1'] = 'Criterio actualizado';
-$_MODULE['<{productcomments}prestashop>productcomments_254f642527b45bc260048e30704edb39'] = 'Configuración';
-$_MODULE['<{productcomments}prestashop>productcomments_2e53b6c4c0d39a73718342ab2366ae37'] = 'Tiempo mínimo entre dos comentarios de un mismo usuario';
-$_MODULE['<{productcomments}prestashop>productcomments_0a36c5f3ea6825804e6b4314c4084a12'] = 'Moderar Comentarios';
-$_MODULE['<{productcomments}prestashop>productcomments_0be8406951cdfda82f00f79328cf4efc'] = 'Comentario';
-$_MODULE['<{productcomments}prestashop>productcomments_06df33001c1d7187fdd81ea1f5b277aa'] = 'Acciones';
-$_MODULE['<{productcomments}prestashop>productcomments_c4408d335012a56ff58937d78050efad'] = 'Aceptar';
-$_MODULE['<{productcomments}prestashop>productcomments_d00b7f656273a495f555bead0248d6f5'] = 'Ningún comentario que validar';
-$_MODULE['<{productcomments}prestashop>productcomments_9be4d6372a6487e90d8f153c66c1499d'] = 'Añadir este criterio';
-$_MODULE['<{productcomments}prestashop>productcomments_7dce122004969d56ae2e0245cb754d35'] = 'Modificar';
-$_MODULE['<{productcomments}prestashop>productcomments_8eb0b6ced310b120b12106e8d4bdbdb8'] = 'Administrar el';
-$_MODULE['<{productcomments}prestashop>productcomments_99121ab27aaa7472cfada9071c5ba434'] = 'Nombre de la categoría';
-$_MODULE['<{productcomments}prestashop>productcomments_729a51874fe901b092899e9e8b31c97a'] = '¿Está seguro?';
-$_MODULE['<{productcomments}prestashop>productcomments_b5c82723bd85856358f9a376bc613998'] = '%1$d de %2$d personas encontraron esta crítica útil.';
-$_MODULE['<{productcomments}prestashop>productcomments_08621d00a3a801b9159a11b8bbd69f89'] = 'No hay comentarios de clientes por ahora.';
-$_MODULE['<{productcomments}prestashop>productcomments_70397c4b252a5168c5ec003931cea215'] = 'Campos obligatorios';
-$_MODULE['<{productcomments}prestashop>products-comparison_bc976f6c3405523cde61f63a7cbe224b'] = 'Ver las opiniones';
diff --git a/modules/productcomments/translations/fr.php b/modules/productcomments/translations/fr.php
deleted file mode 100644
index f8a8b7a35..000000000
--- a/modules/productcomments/translations/fr.php
+++ /dev/null
@@ -1,95 +0,0 @@
-productcomments-extra_a71a0229e164fecdcde3c4e0f40473fa'] = 'Lire les avis utilisateurs';
-$_MODULE['<{productcomments}prestashop>productcomments_e6ea19ae2eb9447f98c7ed74227bb4a3'] = 'Le champ Nom est requis au moins une fois en';
-$_MODULE['<{productcomments}prestashop>productcomments_e140a9c4fcfa0aad7af83f65e577c287'] = 'Critère ajouté';
-$_MODULE['<{productcomments}prestashop>productcomments_c9cc8cce247e49bae79f15173ce97354'] = 'Enregistrer';
-$_MODULE['<{productcomments}prestashop>productcomments_a517747c3d12f99244ae598910d979c5'] = 'Auteur';
-$_MODULE['<{productcomments}prestashop>productcomments_7753ab38f8e113e8af65ab1241331625'] = 'Vous pouvez définir plusieurs critères afin de guider vos clients dans leur commentaire. Par exemple : performance, design, etc.';
-$_MODULE['<{productcomments}prestashop>productcomments_bc58d00e1e42de31a8e58f8dc7d9bdc7'] = 'Vous pouvez ajouter un nouveau critère ci-dessous :';
-$_MODULE['<{productcomments}prestashop>productcomments_49ee3087348e8d44e1feda1917443987'] = 'Nom';
-$_MODULE['<{productcomments}prestashop>productcomments_4d3d769b812b6faa6b76e1a8abaece2d'] = 'Actif';
-$_MODULE['<{productcomments}prestashop>productcommentcriterion_467366059d7d7c743a4d0971363a8d66'] = 'Restreint à certaines catégories';
-$_MODULE['<{productcomments}prestashop>productcomments-ajax_fd4b5401d4d3c7d32d158bfc1e552f3b'] = 'Veuillez donner votre nom';
-$_MODULE['<{productcomments}prestashop>productcomments_783e8e29e6a8c3e22baa58a19420eb4f'] = 'secondes';
-$_MODULE['<{productcomments}prestashop>productcomments_a942d4abf908e5f708ec4dfaa949065e'] = 'Choisissez un critère';
-$_MODULE['<{productcomments}prestashop>productcomments_b9aefa40a54680bb258f9f9569290fae'] = 'Nom du produit';
-$_MODULE['<{productcomments}prestashop>productcomments_46be1b432f94e9608b015e12c332c67e'] = 'Gérer les commentaires';
-$_MODULE['<{productcomments}prestashop>productcomments_687e376375b560c9261aba93ea5186de'] = 'Aucun commentaire à gérer en ce moment.';
-$_MODULE['<{productcomments}prestashop>productcomments_4494d00c901c9e22ff3b953177205cea'] = 'Êtes-vous sur de vouloir signaler ce commentaire ?';
-$_MODULE['<{productcomments}prestashop>products-comparison_8413c683b4b27cc3f4dbd4c90329d8ba'] = 'Commentaires';
-$_MODULE['<{productcomments}prestashop>default_607d7adc590bb9a615b6fa5bc8a4f2f6'] = 'ID produit est incorrect';
-$_MODULE['<{productcomments}prestashop>default_7b0bf23ae4079e07a3a4cb4d07e2caef'] = 'Le titre est incorrect';
-$_MODULE['<{productcomments}prestashop>default_a95dff703b20b1e705210c39b3865bf0'] = 'Vous devez être connecter afin de poster un commentaire';
-$_MODULE['<{productcomments}prestashop>default_dfbe69c6d9568ecb0e65e7b32ed92a3a'] = 'Le produit n\'a pas été trouvé';
-$_MODULE['<{productcomments}prestashop>productcomments_4b3b9db8c9784468094acde0f8bf7071'] = 'Note';
-$_MODULE['<{productcomments}prestashop>productcomments-extra_7966126831926ad29c528b239d69f855'] = 'Donnez votre avis';
-$_MODULE['<{productcomments}prestashop>productcomments_c888438d14855d7d96a2724ee9c306bd'] = 'Configuration mise à jour';
-$_MODULE['<{productcomments}prestashop>productcomments_8bf0c707232d63bf83b4b2467d2df41a'] = 'Sélection :';
-$_MODULE['<{productcomments}prestashop>productcomments_82bd3dd5eb07bcc37a9649cbb1a5fd33'] = 'Commentaires signalés';
-$_MODULE['<{productcomments}prestashop>productcomments_21a512e9d635e82fc7c7077fc880988b'] = 'Critère';
-$_MODULE['<{productcomments}prestashop>productcomments_a1fa27779242b4902f7ae3bdd5c6d508'] = 'Type';
-$_MODULE['<{productcomments}prestashop>productcomments_ea4788705e6873b424c65e91c2846b19'] = 'Annuler';
-$_MODULE['<{productcomments}prestashop>productcommentcriterion_772911becd336c843ab09a1d4b4f66c0'] = 'Restreint à certains produits';
-$_MODULE['<{productcomments}prestashop>productcomments-extra_7c3b0e9898b88deee7ea75aafd2e37e2'] = 'Note moyenne';
-$_MODULE['<{productcomments}prestashop>productcomments_f255b686708be7c5082cd3f5bab872c1'] = 'Appliquer à';
-$_MODULE['<{productcomments}prestashop>productcomments_6556e73b0255c988d9fe70141f1d4bd9'] = 'Seuls les critères correspondant à des catégories ou des produits peuvent être configurés ci-dessous :';
-$_MODULE['<{productcomments}prestashop>productcomments_068f80c7519d0528fb08e82137a72131'] = 'Produits';
-$_MODULE['<{productcomments}prestashop>productcomments_af1b98adf7f686b84cd0b443e022b7a0'] = 'Catégories';
-$_MODULE['<{productcomments}prestashop>productcomments_b718adec73e04ce3ec720dd11a06a308'] = 'ID';
-$_MODULE['<{productcomments}prestashop>productcomments_28b3b1e564a00f572c5d4e21da986d49'] = 'Reporter un abus';
-$_MODULE['<{productcomments}prestashop>productcomments_fbe2625bf3673be380d043a4bf873f28'] = 'Soyez le premier à donner votre avis';
-$_MODULE['<{productcomments}prestashop>productcomments_7966126831926ad29c528b239d69f855'] = 'Donner votre avis';
-$_MODULE['<{productcomments}prestashop>productcomments_221e705c06e231636fdbccfdd14f4d5c'] = 'Votre nom';
-$_MODULE['<{productcomments}prestashop>productcomments_94966d90747b97d1f0f206c98a8b1ac3'] = 'Envoyer';
-$_MODULE['<{productcomments}prestashop>products-comparison_b1897515d548a960afe49ecf66a29021'] = 'Moyenne';
-$_MODULE['<{productcomments}prestashop>default_1b1030b6294e9096a7d7c40d83d61872'] = 'Le nom est incorrect';
-$_MODULE['<{productcomments}prestashop>default_ba8d7ae5dcadfba739f28a777378f208'] = 'secondes avant de poster un nouveau commentaire';
-$_MODULE['<{productcomments}prestashop>productcomments-ajax_6bf852d9850445291f5e9d4740ac7b50'] = 'Un texte de commentaire est nécessaire.';
-$_MODULE['<{productcomments}prestashop>productcomments_b91c4e8b229a399a3bc911d352524a9b'] = 'Commentaires produits';
-$_MODULE['<{productcomments}prestashop>productcomments_9ca2adc05abbe3cc0a659a16fd7d5edc'] = 'Les commentaires doivent être validés par un employé';
-$_MODULE['<{productcomments}prestashop>productcomments_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Activé';
-$_MODULE['<{productcomments}prestashop>productcomments_b9f5c797ebbf55adccdd8539a65a0241'] = 'Désactivé';
-$_MODULE['<{productcomments}prestashop>productcomments_66b06316f84eb73075bca0e27f2a5581'] = 'Autoriser les commentaires des visiteurs qui n\'ont pas de compte client';
-$_MODULE['<{productcomments}prestashop>productcomments_df644ae155e79abf54175bd15d75f363'] = 'Nom du produit';
-$_MODULE['<{productcomments}prestashop>productcomments_f2a6c498fb90ee345d997f888fce3b18'] = 'Supprimer';
-$_MODULE['<{productcomments}prestashop>productcomments_5e04c941e38f97252e3ed00af80447a2'] = 'Aucun commentaire signalé.';
-$_MODULE['<{productcomments}prestashop>productcomments_7799b301b44c329fc9ec6a3a9c1905e0'] = 'Ajouter un nouveau critère';
-$_MODULE['<{productcomments}prestashop>productcomments_f1d04e02f02d1f13450ae56f213a93f2'] = 'Modifier ce critère';
-$_MODULE['<{productcomments}prestashop>productcomments_ec53a8c4f07baed5d8825072c89799be'] = 'État';
-$_MODULE['<{productcomments}prestashop>productcommentcriterion_a09ed6c60eb3213939cecb4c580813cd'] = 'Disponible pour le catalogue entier';
-$_MODULE['<{productcomments}prestashop>productcomments_39630ad6ee79b8653ea89194cdb45bec'] = 'Ce commentaire vous a-t-il été utile ?';
-$_MODULE['<{productcomments}prestashop>productcomments_a6105c0a611b41b08f1209506350279e'] = 'oui';
-$_MODULE['<{productcomments}prestashop>productcomments_7fa3b767c460b54a2be4d49030b349c7'] = 'non';
-$_MODULE['<{productcomments}prestashop>productcomments_e81c4e4f2b7b93b481e13a8553c2ae1b'] = 'ou';
-$_MODULE['<{productcomments}prestashop>tab_8413c683b4b27cc3f4dbd4c90329d8ba'] = 'Commentaires';
-$_MODULE['<{productcomments}prestashop>default_ddbd56de5feb78ef1aaf60401f8c472b'] = 'Le commentaire est incorrect';
-$_MODULE['<{productcomments}prestashop>default_a201fbadca94d310a1b62407cdc775d5'] = 'Vous devez donner une note';
-$_MODULE['<{productcomments}prestashop>default_6d28f2900adb9e500868166f6d04da92'] = 'Vous devez patienter';
-$_MODULE['<{productcomments}prestashop>productcomments_b78a3223503896721cca1303f776159b'] = 'Titre';
-$_MODULE['<{productcomments}prestashop>productcomments-ajax_f8694a9aae2eb045920f613cfa7f1235'] = 'En attente de la validation de la modération.';
-$_MODULE['<{productcomments}prestashop>productcomments-ajax_8aafe254c3e8dceb6425591b322044f2'] = 'Vous devriez attendre %d secondes avant de publier un nouveau commentaire.';
-$_MODULE['<{productcomments}prestashop>productcomments_9918811c511f3481c085e46c07ab5da8'] = 'Permet aux client de commenter les produits.';
-$_MODULE['<{productcomments}prestashop>productcomments_1bb54e382f7dbdb260f0aa6b42bb624b'] = 'Critère supprimé';
-$_MODULE['<{productcomments}prestashop>productcomments_21b0922096daf5c742cc98986d857cc1'] = 'Critère mis à jour';
-$_MODULE['<{productcomments}prestashop>productcomments_254f642527b45bc260048e30704edb39'] = 'Configuration';
-$_MODULE['<{productcomments}prestashop>productcomments_0a36c5f3ea6825804e6b4314c4084a12'] = 'Modérer les commentaires';
-$_MODULE['<{productcomments}prestashop>productcomments_0be8406951cdfda82f00f79328cf4efc'] = 'Commentaire';
-$_MODULE['<{productcomments}prestashop>productcomments_06df33001c1d7187fdd81ea1f5b277aa'] = 'Actions';
-$_MODULE['<{productcomments}prestashop>productcomments_c4408d335012a56ff58937d78050efad'] = 'Accepter';
-$_MODULE['<{productcomments}prestashop>productcomments_d00b7f656273a495f555bead0248d6f5'] = 'Aucun commentaire à valider.';
-$_MODULE['<{productcomments}prestashop>productcomments_9be4d6372a6487e90d8f153c66c1499d'] = 'Ajouter ce critère';
-$_MODULE['<{productcomments}prestashop>productcomments_7dce122004969d56ae2e0245cb754d35'] = 'Modifier';
-$_MODULE['<{productcomments}prestashop>productcomments_729a51874fe901b092899e9e8b31c97a'] = 'Êtes-vous sûr ?';
-$_MODULE['<{productcomments}prestashop>productcomments-ajax_f88dc17737f7fdd4464b2eb922a8f133'] = 'Une erreur s\'est produite lors de l\'enregistrement de votre commentaire.';
-$_MODULE['<{productcomments}prestashop>productcomments-ajax_7fa4a3510dafd0eac6435c19861b2bb7'] = 'Commentaire publié.';
-$_MODULE['<{productcomments}prestashop>productcomments_8eb0b6ced310b120b12106e8d4bdbdb8'] = 'Gérer le champ d\'action des critères';
-$_MODULE['<{productcomments}prestashop>productcomments_99121ab27aaa7472cfada9071c5ba434'] = 'Nom de la catégorie';
-$_MODULE['<{productcomments}prestashop>productcomments_b5c82723bd85856358f9a376bc613998'] = '%1$d personne(s) sur %2$d ont trouvé ce commentaire utile.';
-$_MODULE['<{productcomments}prestashop>productcomments_08621d00a3a801b9159a11b8bbd69f89'] = 'Aucun commentaire n\'a été publié pour le moment.';
-$_MODULE['<{productcomments}prestashop>productcomments_70397c4b252a5168c5ec003931cea215'] = 'Champs requis';
-$_MODULE['<{productcomments}prestashop>products-comparison_bc976f6c3405523cde61f63a7cbe224b'] = 'Voir les avis';
-$_MODULE['<{productcomments}prestashop>productcomments_2e53b6c4c0d39a73718342ab2366ae37'] = 'Temps minimum entre 2 commentaires d\'un même utilisateur';
diff --git a/modules/productcomments/translations/it.php b/modules/productcomments/translations/it.php
deleted file mode 100644
index fe073295c..000000000
--- a/modules/productcomments/translations/it.php
+++ /dev/null
@@ -1,95 +0,0 @@
-productcommentcriterion_467366059d7d7c743a4d0971363a8d66'] = 'Limitato a certe categorie';
-$_MODULE['<{productcomments}prestashop>productcomments-ajax_fd4b5401d4d3c7d32d158bfc1e552f3b'] = 'Inserisci il tuo nome';
-$_MODULE['<{productcomments}prestashop>productcomments-extra_a71a0229e164fecdcde3c4e0f40473fa'] = 'Leggi interviste clienti';
-$_MODULE['<{productcomments}prestashop>productcomments_e6ea19ae2eb9447f98c7ed74227bb4a3'] = 'Il campo Nome è obbligatorio almeno in';
-$_MODULE['<{productcomments}prestashop>productcomments_e140a9c4fcfa0aad7af83f65e577c287'] = 'Criterio aggiunto';
-$_MODULE['<{productcomments}prestashop>productcomments_783e8e29e6a8c3e22baa58a19420eb4f'] = 'secondi';
-$_MODULE['<{productcomments}prestashop>productcomments_c9cc8cce247e49bae79f15173ce97354'] = 'Salva';
-$_MODULE['<{productcomments}prestashop>productcomments_a517747c3d12f99244ae598910d979c5'] = 'Autore';
-$_MODULE['<{productcomments}prestashop>productcomments_7753ab38f8e113e8af65ab1241331625'] = 'È possibile definire criteri diversi, al fine di aiutare i clienti durante la loro opinione. Per esempio: efficienza, leggerezza, design.';
-$_MODULE['<{productcomments}prestashop>productcomments_bc58d00e1e42de31a8e58f8dc7d9bdc7'] = 'È possibile aggiungere un nuovo criterio di seguito:';
-$_MODULE['<{productcomments}prestashop>productcomments_49ee3087348e8d44e1feda1917443987'] = 'Nome';
-$_MODULE['<{productcomments}prestashop>productcomments_4d3d769b812b6faa6b76e1a8abaece2d'] = 'Attivo';
-$_MODULE['<{productcomments}prestashop>productcomments_a942d4abf908e5f708ec4dfaa949065e'] = 'Scegli un criterio';
-$_MODULE['<{productcomments}prestashop>productcomments_b9aefa40a54680bb258f9f9569290fae'] = 'Nome del prodotto';
-$_MODULE['<{productcomments}prestashop>productcomments_46be1b432f94e9608b015e12c332c67e'] = 'Gestisci commenti';
-$_MODULE['<{productcomments}prestashop>productcomments_687e376375b560c9261aba93ea5186de'] = 'Nessun commento da gestire al momento.';
-$_MODULE['<{productcomments}prestashop>productcomments_4494d00c901c9e22ff3b953177205cea'] = 'Sei sicuro che vuoi segnalare questo commento?';
-$_MODULE['<{productcomments}prestashop>productcomments_4b3b9db8c9784468094acde0f8bf7071'] = 'Voto';
-$_MODULE['<{productcomments}prestashop>products-comparison_8413c683b4b27cc3f4dbd4c90329d8ba'] = 'Commenti';
-$_MODULE['<{productcomments}prestashop>default_607d7adc590bb9a615b6fa5bc8a4f2f6'] = 'L\'ID prodotto non è corretta';
-$_MODULE['<{productcomments}prestashop>default_7b0bf23ae4079e07a3a4cb4d07e2caef'] = 'Il titolo non è corretto';
-$_MODULE['<{productcomments}prestashop>default_a95dff703b20b1e705210c39b3865bf0'] = 'Devi essere registrato per poter lasciare un commento';
-$_MODULE['<{productcomments}prestashop>default_dfbe69c6d9568ecb0e65e7b32ed92a3a'] = 'Prodotto non trovato';
-$_MODULE['<{productcomments}prestashop>productcommentcriterion_772911becd336c843ab09a1d4b4f66c0'] = 'Limitato a certi prodotti';
-$_MODULE['<{productcomments}prestashop>productcomments-extra_7c3b0e9898b88deee7ea75aafd2e37e2'] = 'Grado medio';
-$_MODULE['<{productcomments}prestashop>productcomments-extra_7966126831926ad29c528b239d69f855'] = 'Scrivi la tua intervista';
-$_MODULE['<{productcomments}prestashop>productcomments_c888438d14855d7d96a2724ee9c306bd'] = 'Impostazioni aggiornate';
-$_MODULE['<{productcomments}prestashop>productcomments_8bf0c707232d63bf83b4b2467d2df41a'] = 'Selezione:';
-$_MODULE['<{productcomments}prestashop>productcomments_82bd3dd5eb07bcc37a9649cbb1a5fd33'] = 'Segnala commenti';
-$_MODULE['<{productcomments}prestashop>productcomments_f255b686708be7c5082cd3f5bab872c1'] = 'Applica a';
-$_MODULE['<{productcomments}prestashop>productcomments_21a512e9d635e82fc7c7077fc880988b'] = 'Criterio';
-$_MODULE['<{productcomments}prestashop>productcomments_a1fa27779242b4902f7ae3bdd5c6d508'] = 'Tipo';
-$_MODULE['<{productcomments}prestashop>productcomments_068f80c7519d0528fb08e82137a72131'] = 'Prodotti';
-$_MODULE['<{productcomments}prestashop>productcomments_af1b98adf7f686b84cd0b443e022b7a0'] = 'Categorie';
-$_MODULE['<{productcomments}prestashop>productcomments_28b3b1e564a00f572c5d4e21da986d49'] = 'Segnala abuso';
-$_MODULE['<{productcomments}prestashop>productcomments_fbe2625bf3673be380d043a4bf873f28'] = 'Sii il primo a scrivere una intervista su questo prodotto';
-$_MODULE['<{productcomments}prestashop>productcomments_7966126831926ad29c528b239d69f855'] = 'Scrivi la tua intervista';
-$_MODULE['<{productcomments}prestashop>productcomments_221e705c06e231636fdbccfdd14f4d5c'] = 'Il tuo nome:';
-$_MODULE['<{productcomments}prestashop>productcomments_94966d90747b97d1f0f206c98a8b1ac3'] = 'Invia';
-$_MODULE['<{productcomments}prestashop>productcomments_ea4788705e6873b424c65e91c2846b19'] = 'Annulla';
-$_MODULE['<{productcomments}prestashop>products-comparison_b1897515d548a960afe49ecf66a29021'] = 'Media';
-$_MODULE['<{productcomments}prestashop>default_1b1030b6294e9096a7d7c40d83d61872'] = 'Il nome del cliente non è corretto';
-$_MODULE['<{productcomments}prestashop>default_ba8d7ae5dcadfba739f28a777378f208'] = 'secondi prima di postare un nuovo commento.';
-$_MODULE['<{productcomments}prestashop>productcomments_6556e73b0255c988d9fe70141f1d4bd9'] = 'Solo i criteri limitati a categorie o prodotti possono essere configurati qui sotto:';
-$_MODULE['<{productcomments}prestashop>productcomments_b718adec73e04ce3ec720dd11a06a308'] = 'ID';
-$_MODULE['<{productcomments}prestashop>productcommentcriterion_a09ed6c60eb3213939cecb4c580813cd'] = 'Valido per il complesso del catalogo';
-$_MODULE['<{productcomments}prestashop>productcomments-ajax_6bf852d9850445291f5e9d4740ac7b50'] = 'Testo commento richiesto.';
-$_MODULE['<{productcomments}prestashop>productcomments_b91c4e8b229a399a3bc911d352524a9b'] = 'Commenti prodotto';
-$_MODULE['<{productcomments}prestashop>productcomments_9ca2adc05abbe3cc0a659a16fd7d5edc'] = 'Tutti i commenti devono essere convalidati da un dipendente';
-$_MODULE['<{productcomments}prestashop>productcomments_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Attivato';
-$_MODULE['<{productcomments}prestashop>productcomments_b9f5c797ebbf55adccdd8539a65a0241'] = 'Disattivato';
-$_MODULE['<{productcomments}prestashop>productcomments_66b06316f84eb73075bca0e27f2a5581'] = 'Permetti i commenti degli ospiti';
-$_MODULE['<{productcomments}prestashop>productcomments_df644ae155e79abf54175bd15d75f363'] = 'Nome del prodotto';
-$_MODULE['<{productcomments}prestashop>productcomments_f2a6c498fb90ee345d997f888fce3b18'] = 'Elimina';
-$_MODULE['<{productcomments}prestashop>productcomments_5e04c941e38f97252e3ed00af80447a2'] = 'Nessun commento al momento';
-$_MODULE['<{productcomments}prestashop>productcomments_7799b301b44c329fc9ec6a3a9c1905e0'] = 'Aggiungi un nuovo criterio di commento';
-$_MODULE['<{productcomments}prestashop>productcomments_f1d04e02f02d1f13450ae56f213a93f2'] = 'Modifica questo criterio';
-$_MODULE['<{productcomments}prestashop>productcomments_ec53a8c4f07baed5d8825072c89799be'] = 'Status';
-$_MODULE['<{productcomments}prestashop>productcomments_39630ad6ee79b8653ea89194cdb45bec'] = 'Trovi questo commento utile per te?';
-$_MODULE['<{productcomments}prestashop>productcomments_a6105c0a611b41b08f1209506350279e'] = 'sì';
-$_MODULE['<{productcomments}prestashop>productcomments_7fa3b767c460b54a2be4d49030b349c7'] = 'no';
-$_MODULE['<{productcomments}prestashop>productcomments_b78a3223503896721cca1303f776159b'] = 'Titolo';
-$_MODULE['<{productcomments}prestashop>productcomments_e81c4e4f2b7b93b481e13a8553c2ae1b'] = 'o';
-$_MODULE['<{productcomments}prestashop>tab_8413c683b4b27cc3f4dbd4c90329d8ba'] = 'Commenti';
-$_MODULE['<{productcomments}prestashop>default_ddbd56de5feb78ef1aaf60401f8c472b'] = 'Il commento non è corretto';
-$_MODULE['<{productcomments}prestashop>default_a201fbadca94d310a1b62407cdc775d5'] = 'Devi lasciare una votazione';
-$_MODULE['<{productcomments}prestashop>default_6d28f2900adb9e500868166f6d04da92'] = 'E\' necessario attendere';
-$_MODULE['<{productcomments}prestashop>productcomments-ajax_f88dc17737f7fdd4464b2eb922a8f133'] = 'Errore durante il salvataggio del tuo commento.';
-$_MODULE['<{productcomments}prestashop>productcomments-ajax_7fa4a3510dafd0eac6435c19861b2bb7'] = 'Commento pubblicato con successo.';
-$_MODULE['<{productcomments}prestashop>productcomments-ajax_f8694a9aae2eb045920f613cfa7f1235'] = 'In attesa della convalida moderatore.';
-$_MODULE['<{productcomments}prestashop>productcomments-ajax_8aafe254c3e8dceb6425591b322044f2'] = 'Devi aspettare %d secondi prima di inserire un nuovo commento.';
-$_MODULE['<{productcomments}prestashop>productcomments_9918811c511f3481c085e46c07ab5da8'] = 'Permetti agli utenti di inviare interviste.';
-$_MODULE['<{productcomments}prestashop>productcomments_1bb54e382f7dbdb260f0aa6b42bb624b'] = 'Criterio eliminato';
-$_MODULE['<{productcomments}prestashop>productcomments_21b0922096daf5c742cc98986d857cc1'] = 'Criterio aggiornato';
-$_MODULE['<{productcomments}prestashop>productcomments_254f642527b45bc260048e30704edb39'] = 'Configurazione';
-$_MODULE['<{productcomments}prestashop>productcomments_2e53b6c4c0d39a73718342ab2366ae37'] = 'Tempo minimo tra 2 commenti dello stesso utente';
-$_MODULE['<{productcomments}prestashop>productcomments_0a36c5f3ea6825804e6b4314c4084a12'] = 'Moderare i commenti';
-$_MODULE['<{productcomments}prestashop>productcomments_0be8406951cdfda82f00f79328cf4efc'] = 'Commenta';
-$_MODULE['<{productcomments}prestashop>productcomments_06df33001c1d7187fdd81ea1f5b277aa'] = 'Azioni';
-$_MODULE['<{productcomments}prestashop>productcomments_c4408d335012a56ff58937d78050efad'] = 'Accettare';
-$_MODULE['<{productcomments}prestashop>productcomments_d00b7f656273a495f555bead0248d6f5'] = 'Non ci sono commenti da convalidare ora.';
-$_MODULE['<{productcomments}prestashop>productcomments_9be4d6372a6487e90d8f153c66c1499d'] = 'Aggiungi questo criterio';
-$_MODULE['<{productcomments}prestashop>productcomments_7dce122004969d56ae2e0245cb754d35'] = 'Modifica';
-$_MODULE['<{productcomments}prestashop>productcomments_8eb0b6ced310b120b12106e8d4bdbdb8'] = 'Gestire le applicazioni dei criteri';
-$_MODULE['<{productcomments}prestashop>productcomments_99121ab27aaa7472cfada9071c5ba434'] = 'Nome categoria';
-$_MODULE['<{productcomments}prestashop>productcomments_729a51874fe901b092899e9e8b31c97a'] = 'Sei sicuro?';
-$_MODULE['<{productcomments}prestashop>productcomments_b5c82723bd85856358f9a376bc613998'] = '%1$d jsu %2$d clienti trovano questa intervista utile';
-$_MODULE['<{productcomments}prestashop>productcomments_08621d00a3a801b9159a11b8bbd69f89'] = 'Non ci sono commenti dei clienti per il momento.';
-$_MODULE['<{productcomments}prestashop>productcomments_70397c4b252a5168c5ec003931cea215'] = 'Campi richiesti';
-$_MODULE['<{productcomments}prestashop>products-comparison_bc976f6c3405523cde61f63a7cbe224b'] = 'visualizzare i commenti';
diff --git a/modules/productscategory/translations/de.php b/modules/productscategory/translations/de.php
deleted file mode 100644
index ce2af4168..000000000
--- a/modules/productscategory/translations/de.php
+++ /dev/null
@@ -1,17 +0,0 @@
-productscategory_b6bf131edd323320bac67303a3f4de8a'] = 'Preis auf Produkten anzeigen';
-$_MODULE['<{productscategory}prestashop>productscategory_70f9a895dc3273d34a7f6d14642708ec'] = 'Preise auf den Produkten im Block anzeigen.';
-$_MODULE['<{productscategory}prestashop>productscategory_4aae87211f77aada2c87907121576cfe'] = 'andere Produkte der gleichen Kategorie:';
-$_MODULE['<{productscategory}prestashop>productscategory_0157084bddd8b408e1cdaba00f54a009'] = 'Zeigt Produkte der gleichen Kategorie auf der Produktseite an';
-$_MODULE['<{productscategory}prestashop>productscategory_10ac3d04253ef7e1ddc73e6091c0cd55'] = 'Weiter';
-$_MODULE['<{productscategory}prestashop>productscategory_462390017ab0938911d2d4e964c0cab7'] = 'Einstellungen erfolgreich aktualisiert';
-$_MODULE['<{productscategory}prestashop>productscategory_f4f70727dc34561dfde1a3c529b6205c'] = 'Einstellungen';
-$_MODULE['<{productscategory}prestashop>productscategory_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Aktiviert';
-$_MODULE['<{productscategory}prestashop>productscategory_b9f5c797ebbf55adccdd8539a65a0241'] = 'Deaktiviert';
-$_MODULE['<{productscategory}prestashop>productscategory_c9cc8cce247e49bae79f15173ce97354'] = 'Speichern';
-$_MODULE['<{productscategory}prestashop>productscategory_dd1f775e443ff3b9a89270713580a51b'] = 'Zurück';
-$_MODULE['<{productscategory}prestashop>productscategory_db33983df8ef521000b0ab60dcb5a83f'] = 'Produktkategorie';
diff --git a/modules/productscategory/translations/en.php b/modules/productscategory/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/productscategory/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-productscategory_b6bf131edd323320bac67303a3f4de8a'] = 'Mostrar el precio del producto';
-$_MODULE['<{productscategory}prestashop>productscategory_70f9a895dc3273d34a7f6d14642708ec'] = 'Mostrar el precio del producto en el bloque';
-$_MODULE['<{productscategory}prestashop>productscategory_4aae87211f77aada2c87907121576cfe'] = 'otros productos de la misma categoría:';
-$_MODULE['<{productscategory}prestashop>productscategory_0157084bddd8b408e1cdaba00f54a009'] = 'Mostrar productos de la misma categoría en la página producto';
-$_MODULE['<{productscategory}prestashop>productscategory_10ac3d04253ef7e1ddc73e6091c0cd55'] = 'Siguiente';
-$_MODULE['<{productscategory}prestashop>productscategory_462390017ab0938911d2d4e964c0cab7'] = 'Parámetros actualizados con éxito';
-$_MODULE['<{productscategory}prestashop>productscategory_f4f70727dc34561dfde1a3c529b6205c'] = 'Configuración';
-$_MODULE['<{productscategory}prestashop>productscategory_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Activado';
-$_MODULE['<{productscategory}prestashop>productscategory_b9f5c797ebbf55adccdd8539a65a0241'] = 'Desactivado';
-$_MODULE['<{productscategory}prestashop>productscategory_c9cc8cce247e49bae79f15173ce97354'] = 'Guardar';
-$_MODULE['<{productscategory}prestashop>productscategory_dd1f775e443ff3b9a89270713580a51b'] = 'Anterior';
-$_MODULE['<{productscategory}prestashop>productscategory_db33983df8ef521000b0ab60dcb5a83f'] = 'Categoría de productos';
diff --git a/modules/productscategory/translations/fr.php b/modules/productscategory/translations/fr.php
deleted file mode 100644
index f7c1d6775..000000000
--- a/modules/productscategory/translations/fr.php
+++ /dev/null
@@ -1,17 +0,0 @@
-productscategory_b6bf131edd323320bac67303a3f4de8a'] = 'Afficher le prix du produit';
-$_MODULE['<{productscategory}prestashop>productscategory_70f9a895dc3273d34a7f6d14642708ec'] = 'Afficher le prix du produit dans le bloc';
-$_MODULE['<{productscategory}prestashop>productscategory_4aae87211f77aada2c87907121576cfe'] = 'autres produits dans la même catégorie :';
-$_MODULE['<{productscategory}prestashop>productscategory_0157084bddd8b408e1cdaba00f54a009'] = 'Affiche la liste des produits dans la même catégorie que celui affiché.';
-$_MODULE['<{productscategory}prestashop>productscategory_10ac3d04253ef7e1ddc73e6091c0cd55'] = 'Suivant';
-$_MODULE['<{productscategory}prestashop>productscategory_f4f70727dc34561dfde1a3c529b6205c'] = 'Paramètres';
-$_MODULE['<{productscategory}prestashop>productscategory_462390017ab0938911d2d4e964c0cab7'] = 'Paramètres mis à jour avec succès';
-$_MODULE['<{productscategory}prestashop>productscategory_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Activé';
-$_MODULE['<{productscategory}prestashop>productscategory_b9f5c797ebbf55adccdd8539a65a0241'] = 'Désactivé';
-$_MODULE['<{productscategory}prestashop>productscategory_c9cc8cce247e49bae79f15173ce97354'] = 'Enregistrer';
-$_MODULE['<{productscategory}prestashop>productscategory_dd1f775e443ff3b9a89270713580a51b'] = 'Précédent';
-$_MODULE['<{productscategory}prestashop>productscategory_db33983df8ef521000b0ab60dcb5a83f'] = 'Dans la même catégorie';
diff --git a/modules/productscategory/translations/it.php b/modules/productscategory/translations/it.php
deleted file mode 100644
index 38276e58e..000000000
--- a/modules/productscategory/translations/it.php
+++ /dev/null
@@ -1,17 +0,0 @@
-productscategory_b6bf131edd323320bac67303a3f4de8a'] = 'Mostra prezzo sui prodotti';
-$_MODULE['<{productscategory}prestashop>productscategory_70f9a895dc3273d34a7f6d14642708ec'] = 'Mostra il prezzo sui prodotti nel blocco.';
-$_MODULE['<{productscategory}prestashop>productscategory_4aae87211f77aada2c87907121576cfe'] = 'altri prodotti della stessa categoria:';
-$_MODULE['<{productscategory}prestashop>productscategory_0157084bddd8b408e1cdaba00f54a009'] = 'Visualizza i prodotti della stessa categoria sulla pagina del prodotto';
-$_MODULE['<{productscategory}prestashop>productscategory_10ac3d04253ef7e1ddc73e6091c0cd55'] = 'Successivo';
-$_MODULE['<{productscategory}prestashop>productscategory_462390017ab0938911d2d4e964c0cab7'] = 'Impostazioni aggiornate con successo';
-$_MODULE['<{productscategory}prestashop>productscategory_f4f70727dc34561dfde1a3c529b6205c'] = 'Impostazioni';
-$_MODULE['<{productscategory}prestashop>productscategory_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Attivato';
-$_MODULE['<{productscategory}prestashop>productscategory_b9f5c797ebbf55adccdd8539a65a0241'] = 'Disattivato';
-$_MODULE['<{productscategory}prestashop>productscategory_c9cc8cce247e49bae79f15173ce97354'] = 'Salva';
-$_MODULE['<{productscategory}prestashop>productscategory_dd1f775e443ff3b9a89270713580a51b'] = 'Precedente';
-$_MODULE['<{productscategory}prestashop>productscategory_db33983df8ef521000b0ab60dcb5a83f'] = 'Categoria prodotti';
diff --git a/modules/producttooltip/translations/de.php b/modules/producttooltip/translations/de.php
deleted file mode 100644
index 31fcc74c9..000000000
--- a/modules/producttooltip/translations/de.php
+++ /dev/null
@@ -1,24 +0,0 @@
-producttooltip_93cba07454f06a4a960172bbd6e2a435'] = 'Ja';
-$_MODULE['<{producttooltip}prestashop>producttooltip_bafd7322c6e97d25b6299b5d6fe8920b'] = 'Nein';
-$_MODULE['<{producttooltip}prestashop>producttooltip_2c8de3180924949acc5f6250af689802'] = 'Online-Zeit';
-$_MODULE['<{producttooltip}prestashop>producttooltip_1e358b149c2d4105f3a74c1961d1d9fb'] = 'Datum der letzten Bestellung dieses Produkts anzeigen?';
-$_MODULE['<{producttooltip}prestashop>producttooltip_a536f110cc080569666e95e8f49fda9b'] = 'Keine Ereignisse, anzeigen, die älter sind als :';
-$_MODULE['<{producttooltip}prestashop>producttooltip_71736c614b237f4368128077411f1699'] = 'Dieses Produkt wurde zuletzt gekauft';
-$_MODULE['<{producttooltip}prestashop>producttooltip_3e29935c25a10ae452308dc52381f353'] = 'Zeigt an, wie viele Besucher gerade Ihr Produkt ansehen, letzten Verkauf und letztes Hinzufügen zum Warenkorb.';
-$_MODULE['<{producttooltip}prestashop>producttooltip_e548d0d6a94a27306b8b31472a3e5ec3'] = 'Anzahl der Menschen anzeigen, die gerade dieses Produkt ansehen?';
-$_MODULE['<{producttooltip}prestashop>producttooltip_b17f3f4dcf653a5776792498a9b44d6a'] = 'Einstellungen aktualisieren';
-$_MODULE['<{producttooltip}prestashop>producttooltip_f0f5fac9602d88bc27f0edf960dda8b8'] = 'Beispiel:';
-$_MODULE['<{producttooltip}prestashop>producttooltip_d33e6930ab863734cef083b815ff7356'] = '%d Personen schauen sich gerade dieses Produkt an';
-$_MODULE['<{producttooltip}prestashop>producttooltip_4776f7eb5998034f7bbc63b6457d1ff4'] = 'Produkt-Tooltips';
-$_MODULE['<{producttooltip}prestashop>producttooltip_8a8110f8a25a0e445f51edf84fd98a96'] = 'Wenn Sie die Option aktivieren, müssen Sie ebenfalls die erste Option von StartData aktivieren';
-$_MODULE['<{producttooltip}prestashop>producttooltip_44fdec47036f482b68b748f9d786801b'] = 'Tage';
-$_MODULE['<{producttooltip}prestashop>producttooltip_a49dc1bf9fb1e2ba1c9735f91dfece9a'] = '%d Person schaut sich gerade dieses Produkt an';
-$_MODULE['<{producttooltip}prestashop>producttooltip_4dda321f0231c2d50fcee5c20075dbbd'] = 'Dieses Produkt wurde zuletzt in den Warenkorb hinzugefügt';
-$_MODULE['<{producttooltip}prestashop>producttooltip_c888438d14855d7d96a2724ee9c306bd'] = 'Einstellungen aktualisiert';
-$_MODULE['<{producttooltip}prestashop>producttooltip_640fd0cc0ffa0316ae087652871f4486'] = 'Minuten';
-$_MODULE['<{producttooltip}prestashop>producttooltip_dbcfa4aa50cd5f7ad099b3ba50e1137c'] = 'Wenn nicht bestellt noch, Anzeige der letzten Zeit das Produkt in einen Warenkorb hinzugefügt wurde?';
diff --git a/modules/producttooltip/translations/en.php b/modules/producttooltip/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/producttooltip/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-producttooltip_93cba07454f06a4a960172bbd6e2a435'] = 'Sí';
-$_MODULE['<{producttooltip}prestashop>producttooltip_bafd7322c6e97d25b6299b5d6fe8920b'] = 'No';
-$_MODULE['<{producttooltip}prestashop>producttooltip_2c8de3180924949acc5f6250af689802'] = 'Periodo de validez:';
-$_MODULE['<{producttooltip}prestashop>producttooltip_1e358b149c2d4105f3a74c1961d1d9fb'] = '¿Mostrar la fecha del último pedido?';
-$_MODULE['<{producttooltip}prestashop>producttooltip_a536f110cc080569666e95e8f49fda9b'] = 'No mostrar los acontecimientos de más de:';
-$_MODULE['<{producttooltip}prestashop>producttooltip_71736c614b237f4368128077411f1699'] = 'Este producto fue comprado por última vez el';
-$_MODULE['<{producttooltip}prestashop>producttooltip_3e29935c25a10ae452308dc52381f353'] = 'Mostrar cuántas personas están viendo la página del producto, así como la fecha del último producto pedido o incluido en el carrito';
-$_MODULE['<{producttooltip}prestashop>producttooltip_e548d0d6a94a27306b8b31472a3e5ec3'] = '¿Mostrar el número de personas que están viendo este producto?';
-$_MODULE['<{producttooltip}prestashop>producttooltip_b17f3f4dcf653a5776792498a9b44d6a'] = 'Ajustes actualizados';
-$_MODULE['<{producttooltip}prestashop>producttooltip_f0f5fac9602d88bc27f0edf960dda8b8'] = 'Mostrar:';
-$_MODULE['<{producttooltip}prestashop>producttooltip_d33e6930ab863734cef083b815ff7356'] = '%d personas que están viendo en este momento este producto';
-$_MODULE['<{producttooltip}prestashop>producttooltip_4776f7eb5998034f7bbc63b6457d1ff4'] = 'Ventana de información producto';
-$_MODULE['<{producttooltip}prestashop>producttooltip_8a8110f8a25a0e445f51edf84fd98a96'] = 'Si activa la opción anterior, debe activar la primera opción del módulo StatData';
-$_MODULE['<{producttooltip}prestashop>producttooltip_44fdec47036f482b68b748f9d786801b'] = 'días';
-$_MODULE['<{producttooltip}prestashop>producttooltip_a49dc1bf9fb1e2ba1c9735f91dfece9a'] = '%d persona que está viendo en este momento este producto';
-$_MODULE['<{producttooltip}prestashop>producttooltip_4dda321f0231c2d50fcee5c20075dbbd'] = 'Este producto fue añadido al carrito por última vez el';
-$_MODULE['<{producttooltip}prestashop>producttooltip_c888438d14855d7d96a2724ee9c306bd'] = 'Actualización realizada con éxito';
-$_MODULE['<{producttooltip}prestashop>producttooltip_640fd0cc0ffa0316ae087652871f4486'] = 'minutos';
-$_MODULE['<{producttooltip}prestashop>producttooltip_dbcfa4aa50cd5f7ad099b3ba50e1137c'] = 'Si no hay pedido, ¿mostrar la última vez que un producto ha sido añadido al carrito?';
diff --git a/modules/producttooltip/translations/fr.php b/modules/producttooltip/translations/fr.php
deleted file mode 100644
index 0d2ad179f..000000000
--- a/modules/producttooltip/translations/fr.php
+++ /dev/null
@@ -1,24 +0,0 @@
-producttooltip_93cba07454f06a4a960172bbd6e2a435'] = 'Oui';
-$_MODULE['<{producttooltip}prestashop>producttooltip_bafd7322c6e97d25b6299b5d6fe8920b'] = 'Non';
-$_MODULE['<{producttooltip}prestashop>producttooltip_2c8de3180924949acc5f6250af689802'] = 'Période de validité :';
-$_MODULE['<{producttooltip}prestashop>producttooltip_1e358b149c2d4105f3a74c1961d1d9fb'] = 'Afficher la date de la dernière commande ?';
-$_MODULE['<{producttooltip}prestashop>producttooltip_a536f110cc080569666e95e8f49fda9b'] = 'Ne pas afficher les événements datant de plus de :';
-$_MODULE['<{producttooltip}prestashop>producttooltip_71736c614b237f4368128077411f1699'] = 'Ce produit a été acheté pour la dernière fois le';
-$_MODULE['<{producttooltip}prestashop>producttooltip_3e29935c25a10ae452308dc52381f353'] = 'Affiche combien de personnes consultent un produit, ainsi que les dates de dernière commande ou d\'ajout au panier';
-$_MODULE['<{producttooltip}prestashop>producttooltip_e548d0d6a94a27306b8b31472a3e5ec3'] = 'Afficher le nombre de personnes qui consultent la fiche produit ?';
-$_MODULE['<{producttooltip}prestashop>producttooltip_b17f3f4dcf653a5776792498a9b44d6a'] = 'Mettre à jour les paramètres';
-$_MODULE['<{producttooltip}prestashop>producttooltip_f0f5fac9602d88bc27f0edf960dda8b8'] = 'Exemple :';
-$_MODULE['<{producttooltip}prestashop>producttooltip_d33e6930ab863734cef083b815ff7356'] = '%d personnes regardent actuellement ce produit';
-$_MODULE['<{producttooltip}prestashop>producttooltip_8a8110f8a25a0e445f51edf84fd98a96'] = 'Si vous activez l\'option ci-dessus, vous devez activer la première option du module StatData';
-$_MODULE['<{producttooltip}prestashop>producttooltip_4dda321f0231c2d50fcee5c20075dbbd'] = 'Ce produit a été ajouté au panier pour la dernière fois le';
-$_MODULE['<{producttooltip}prestashop>producttooltip_4776f7eb5998034f7bbc63b6457d1ff4'] = 'Infobulles produit';
-$_MODULE['<{producttooltip}prestashop>producttooltip_44fdec47036f482b68b748f9d786801b'] = 'jours';
-$_MODULE['<{producttooltip}prestashop>producttooltip_a49dc1bf9fb1e2ba1c9735f91dfece9a'] = '%d personne regarde actuellement ce produit';
-$_MODULE['<{producttooltip}prestashop>producttooltip_c888438d14855d7d96a2724ee9c306bd'] = 'Paramètres mis à jour';
-$_MODULE['<{producttooltip}prestashop>producttooltip_640fd0cc0ffa0316ae087652871f4486'] = 'minutes';
-$_MODULE['<{producttooltip}prestashop>producttooltip_dbcfa4aa50cd5f7ad099b3ba50e1137c'] = 'Si le produit n\'a pas encore été commandé, afficher la date de son dernier ajout à un panier ?';
diff --git a/modules/producttooltip/translations/it.php b/modules/producttooltip/translations/it.php
deleted file mode 100644
index c64e47a96..000000000
--- a/modules/producttooltip/translations/it.php
+++ /dev/null
@@ -1,24 +0,0 @@
-producttooltip_93cba07454f06a4a960172bbd6e2a435'] = 'Sì';
-$_MODULE['<{producttooltip}prestashop>producttooltip_bafd7322c6e97d25b6299b5d6fe8920b'] = 'No';
-$_MODULE['<{producttooltip}prestashop>producttooltip_2c8de3180924949acc5f6250af689802'] = 'Periodo:';
-$_MODULE['<{producttooltip}prestashop>producttooltip_1e358b149c2d4105f3a74c1961d1d9fb'] = 'Visualizzare l\'ultima volta in cui il prodotto è stato ordinato?';
-$_MODULE['<{producttooltip}prestashop>producttooltip_a536f110cc080569666e95e8f49fda9b'] = 'Non visualizzare gli eventi che datano a prima di:';
-$_MODULE['<{producttooltip}prestashop>producttooltip_71736c614b237f4368128077411f1699'] = 'Questo prodotto è stato comprato';
-$_MODULE['<{producttooltip}prestashop>producttooltip_3e29935c25a10ae452308dc52381f353'] = 'Mostrano quante persone stanno guardando una pagina di prodotto, ultima vendita e carrello ultimo inserito.';
-$_MODULE['<{producttooltip}prestashop>producttooltip_e548d0d6a94a27306b8b31472a3e5ec3'] = 'Visualizzare il numero di persone che stanno attualmente guardando questo prodotto?';
-$_MODULE['<{producttooltip}prestashop>producttooltip_b17f3f4dcf653a5776792498a9b44d6a'] = 'Aggiornare le impostazioni';
-$_MODULE['<{producttooltip}prestashop>producttooltip_f0f5fac9602d88bc27f0edf960dda8b8'] = 'Esempio:';
-$_MODULE['<{producttooltip}prestashop>producttooltip_d33e6930ab863734cef083b815ff7356'] = '%d persona sta guardando questo prodotto';
-$_MODULE['<{producttooltip}prestashop>producttooltip_4776f7eb5998034f7bbc63b6457d1ff4'] = 'Tooltip prodotto';
-$_MODULE['<{producttooltip}prestashop>producttooltip_8a8110f8a25a0e445f51edf84fd98a96'] = 'Se si attiva l\'opzione di sopra, è necessario attivare la prima opzione del modulo StatDATA';
-$_MODULE['<{producttooltip}prestashop>producttooltip_44fdec47036f482b68b748f9d786801b'] = 'giorno';
-$_MODULE['<{producttooltip}prestashop>producttooltip_a49dc1bf9fb1e2ba1c9735f91dfece9a'] = '%d persone stanno guardando questo prodotto';
-$_MODULE['<{producttooltip}prestashop>producttooltip_4dda321f0231c2d50fcee5c20075dbbd'] = 'Questo prodotto è stato aggiunto al carrello';
-$_MODULE['<{producttooltip}prestashop>producttooltip_c888438d14855d7d96a2724ee9c306bd'] = 'Impostazioni aggiornate';
-$_MODULE['<{producttooltip}prestashop>producttooltip_640fd0cc0ffa0316ae087652871f4486'] = 'minuti';
-$_MODULE['<{producttooltip}prestashop>producttooltip_dbcfa4aa50cd5f7ad099b3ba50e1137c'] = 'Se non ancora ordinato, visualizzare l\'ultima volta che il prodotto è stato aggiunto a un carrello?';
diff --git a/modules/pscleaner/translations/fr.php b/modules/pscleaner/translations/fr.php
deleted file mode 100644
index 9ab5efbb6..000000000
--- a/modules/pscleaner/translations/fr.php
+++ /dev/null
@@ -1,23 +0,0 @@
-pscleaner_e5a8af934462c05509c7de5f2f2c18a3'] = 'Nettoyage de PrestaShop';
-$_MODULE['<{pscleaner}prestashop>pscleaner_4bcb9cc248b7f6c8dc7f5c323bde76de'] = 'Vérifie et répare les problèmes d\'intégrité fonctionnelle et supprime les données par défaut (produits, commandes, clients)';
-$_MODULE['<{pscleaner}prestashop>pscleaner_752369f18aebeed9ae8384d8f1b5dc5e'] = 'Soyez très attentifs en utilisant cet outil, il n\'y a pas de retour en arrière possible !';
-$_MODULE['<{pscleaner}prestashop>pscleaner_098c3581a731f08d24311bbf515adbbb'] = 'Rien qui ne nécessite d\'être nettoyer';
-$_MODULE['<{pscleaner}prestashop>pscleaner_1bb7c5eb8682aeada82c407b40ec09c8'] = 'Catalogue supprimé';
-$_MODULE['<{pscleaner}prestashop>pscleaner_ed6ecb7169d5476ef5251524bb17552a'] = 'Commandes et clients supprimés';
-$_MODULE['<{pscleaner}prestashop>pscleaner_dd9941a63f2ab06ce2ce783336c6a811'] = 'Merci de cocher la case ci-dessus';
-$_MODULE['<{pscleaner}prestashop>pscleaner_6c69628e1d57fa6e39162b039a82133b'] = 'Souhaitez-vous supprimer le catalogue produit ?';
-$_MODULE['<{pscleaner}prestashop>pscleaner_6a68264705f23c8e3d505fd2c93a87ba'] = 'Souhaitez-vous supprimer commandes et clients ?';
-$_MODULE['<{pscleaner}prestashop>pscleaner_c32516babc5b6c47eb8ce1bfc223253c'] = 'Catalogue';
-$_MODULE['<{pscleaner}prestashop>pscleaner_eb75fcd36740a94a399e925f7da722d3'] = 'Je comprends que tout le catalogue sera supprimé sans possibilité de retour en arrière :';
-$_MODULE['<{pscleaner}prestashop>pscleaner_b7b592ffce03366a32dc8edd5fdf06cf'] = 'produits, caractéristiques, catégories, tags, images, prix, fichiers joints, scènes, stocks, groupes et valeurs d\'attributs, marques, fournisseurs...';
-$_MODULE['<{pscleaner}prestashop>pscleaner_b2d7c99e984831bd36221baf34e9c26e'] = 'Supprimer le catalogue';
-$_MODULE['<{pscleaner}prestashop>pscleaner_3300d0bf086fa38cf593fe4feff351f1'] = 'Commandes et clients';
-$_MODULE['<{pscleaner}prestashop>pscleaner_1bc469bb2c64bc19a27796374da3a2a8'] = 'Je comprends que tous les clients et commandes seront supprimés sans possibilité de retour en arrière :';
-$_MODULE['<{pscleaner}prestashop>pscleaner_a9c01b717760cf9e17bccd8c5eb647e0'] = 'clients, paniers, commandes, connexions, visiteurs, stats...';
-$_MODULE['<{pscleaner}prestashop>pscleaner_17ca7f22baf84821b6b73462c96fb1e3'] = 'Supprimer les commandes et clients';
-$_MODULE['<{pscleaner}prestashop>pscleaner_3535aa31bd9005bde626ad4312b67d6b'] = 'Contraintes d\'intégrité fonctionnelle';
-$_MODULE['<{pscleaner}prestashop>pscleaner_e84c6595e849214a70b35ed8f95d7d16'] = 'Vérifier et réparer';
diff --git a/modules/referralprogram/mails/de/index.php b/modules/referralprogram/mails/de/index.php
deleted file mode 100644
index 3f6561f72..000000000
--- a/modules/referralprogram/mails/de/index.php
+++ /dev/null
@@ -1,35 +0,0 @@
-
-* @copyright 2007-2013 PrestaShop SA
-* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
-* International Registered Trademark & Property of PrestaShop SA
-*/
-
-header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
-header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
-
-header("Cache-Control: no-store, no-cache, must-revalidate");
-header("Cache-Control: post-check=0, pre-check=0", false);
-header("Pragma: no-cache");
-
-header("Location: ../");
-exit;
\ No newline at end of file
diff --git a/modules/referralprogram/mails/de/referralprogram-congratulations.html b/modules/referralprogram/mails/de/referralprogram-congratulations.html
deleted file mode 100644
index 425f25462..000000000
--- a/modules/referralprogram/mails/de/referralprogram-congratulations.html
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
-
-
- Nachricht von {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Herzlichen Glückwunsch!
-
-
-
-
-
-
Ihr empfohlener Freund, {sponsored_firstname} {sponsored_lastname} hat seine erste Bestellung bei {shop_name} ausgeführt!
-
-
-
-
-
-
Wir freuen uns, Ihnen einen Gutschein über {discount_display} (voucher # {discount_name}) schenken zu dürfen, den Sie bei Ihrer nächsten Bestellung einlösen können.
-
-
\ No newline at end of file
diff --git a/modules/referralprogram/mails/de/referralprogram-congratulations.txt b/modules/referralprogram/mails/de/referralprogram-congratulations.txt
deleted file mode 100644
index 1faced01c..000000000
--- a/modules/referralprogram/mails/de/referralprogram-congratulations.txt
+++ /dev/null
@@ -1,8 +0,0 @@
-Herzlichen Glückwunsch!
-
-Ihr empfohlener Freund, {sponsored_firstname} {sponsored_lastname} hat seine erste Bestellung bei {shop_url} ausgeführt !
-
-Wir freuen uns, Ihnen einen Gutschein über {discount_display} (voucher # {discount_name}) schenken zu dürfen, den Sie bei Ihrer nächsten Bestellung einlösen können.
-
-
-{shop_name} powered with PrestaShop™
\ No newline at end of file
diff --git a/modules/referralprogram/mails/de/referralprogram-invitation.html b/modules/referralprogram/mails/de/referralprogram-invitation.html
deleted file mode 100644
index f2cc7b6d5..000000000
--- a/modules/referralprogram/mails/de/referralprogram-invitation.html
+++ /dev/null
@@ -1,58 +0,0 @@
-
-
-
-
- Nachricht von {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
{firstname_friend} {lastname_friend}, machen Sie mit!
-
-
-
-
-
-
Ihr Freund {firstname} {lastname} möchte Sie empfehlen auf {shop_name}!
-
-
-
-
-
-
Lassen Sie sich empfehlen und erhalten Sie einen Ermäßigungsgutschein {discount}!
-
-
\ No newline at end of file
diff --git a/modules/referralprogram/mails/de/referralprogram-invitation.txt b/modules/referralprogram/mails/de/referralprogram-invitation.txt
deleted file mode 100644
index 2ecaf353b..000000000
--- a/modules/referralprogram/mails/de/referralprogram-invitation.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-{firstname_friend} {lastname_friend}, machen Sie mit!
-
-Ihr Freund {firstname} {lastname} möchte Sie empfehlen auf {shop_url}.
-
-Lassen Sie sich empfehlen und erhalten Sie einen Ermäßigungsgutschein {discount}!
-
-Klicken Sie einfach hier, um sich anzumelden!
-{shop_url}{link}
-
-Vergessen Sie bei der Anmeldung bitte nicht, die E-Mail-Adresse Ihres Freundes anzugeben: {email}.
-
-{shop_url} powered by PrestaShop™
\ No newline at end of file
diff --git a/modules/referralprogram/mails/de/referralprogram-voucher.html b/modules/referralprogram/mails/de/referralprogram-voucher.html
deleted file mode 100644
index 90ada2806..000000000
--- a/modules/referralprogram/mails/de/referralprogram-voucher.html
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
-
-
- Nachricht von {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hallo {firstname} {lastname},
-
-
-
-
-
-
Empfehlungsprogramm
-
-
-
-
-
-
Wir freuen uns, Ihnen mitteilen zu können, dass ein Gutschein auf Ihren Namen in Ihrer Bestellung Nr. {id_order} zur Verfügung steht.
-
-
-
-
-
-
Hier ist der Code für Ihren Gutschein: {voucher_num} über {voucher_amount}. Bitte kopieren Sie diesen Code einfach und setzen ihn beim Zahlungsvorgang Ihrer nächsten Bestellung ein.
-
-
\ No newline at end of file
diff --git a/modules/referralprogram/mails/de/referralprogram-voucher.txt b/modules/referralprogram/mails/de/referralprogram-voucher.txt
deleted file mode 100644
index 76cf25adb..000000000
--- a/modules/referralprogram/mails/de/referralprogram-voucher.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-Hallo {firstname} {lastname},
-
-Wir freuen uns, Ihnen mitteilen zu können, dass ein Gutschein auf Ihren Namen in Ihrer Bestellung Nr. {id_order} zur Verfügung steht.
-
-Hier ist der Code für Ihren Gutschein: {voucher_num} über {voucher_amount}.
-Bitte kopieren Sie diesen Code einfach und setzen ihn beim Zahlungsvorgang Ihrer nächsten Bestellung ein.
-
-Danke für Ihren Kauf bei {shop_name}.
-
-
-
-{shop_url} powered by PrestaShop™
\ No newline at end of file
diff --git a/modules/referralprogram/mails/es/index.php b/modules/referralprogram/mails/es/index.php
deleted file mode 100644
index 3f6561f72..000000000
--- a/modules/referralprogram/mails/es/index.php
+++ /dev/null
@@ -1,35 +0,0 @@
-
-* @copyright 2007-2013 PrestaShop SA
-* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
-* International Registered Trademark & Property of PrestaShop SA
-*/
-
-header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
-header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
-
-header("Cache-Control: no-store, no-cache, must-revalidate");
-header("Cache-Control: post-check=0, pre-check=0", false);
-header("Pragma: no-cache");
-
-header("Location: ../");
-exit;
\ No newline at end of file
diff --git a/modules/referralprogram/mails/es/referralprogram-congratulations.html b/modules/referralprogram/mails/es/referralprogram-congratulations.html
deleted file mode 100755
index 6dd0ca51b..000000000
--- a/modules/referralprogram/mails/es/referralprogram-congratulations.html
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
-
-
- Message de {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
¡Felicidades!
-
-
-
-
-
-
¡Su ahijado {sponsored_firstname} {sponsored_lastname} hizo su primera compra en nuestro sitio {shop_name} !
-
-
-
-
-
-
Estamos encantados de ofrecerle un vale {discount_display} (con el código de cupón: {discount_name}), usted puede utilizar durante su próxima compra.
-
-
\ No newline at end of file
diff --git a/modules/referralprogram/mails/es/referralprogram-invitation.txt b/modules/referralprogram/mails/es/referralprogram-invitation.txt
deleted file mode 100755
index ae33c2e93..000000000
--- a/modules/referralprogram/mails/es/referralprogram-invitation.txt
+++ /dev/null
@@ -1,15 +0,0 @@
-¡{firstname_friend} {lastname_friend}, Únete a nosotros!
-
-Su amigo {firstname} {lastname} patrocinado por usted en el sitio {shop_url}.
-
-¡Conviértete en su ahijado, para ganar un bono de {discount}!
-
-Para nosotros, nada más simple, vaya a abordar los siguientes:
-
-{shop_url}{link}
-
-Recuerde que debe especificar el correo electrónico a tu amigo como patrocinador en el registro: {email}.
-
-
-
-{shop_url} dirigida por PrestaShop™
diff --git a/modules/referralprogram/mails/es/referralprogram-voucher.html b/modules/referralprogram/mails/es/referralprogram-voucher.html
deleted file mode 100755
index 93a307f90..000000000
--- a/modules/referralprogram/mails/es/referralprogram-voucher.html
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
-
-
- Message de {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hola {firstname} {lastname},
-
-
-
-
-
-
Programa de Patrocinio
-
-
-
-
-
-
Le informamos de que usted acaba de obtener una orden de compra después de su remisión.
-
-
-
-
-
-
Aquí está su número de comprobante: {voucher_num}, de un total de {voucher_amount} euros. Copia y pega este código en la canasta de tu próxima compra antes de ajustar el orden.
-
-
\ No newline at end of file
diff --git a/modules/referralprogram/mails/es/referralprogram-voucher.txt b/modules/referralprogram/mails/es/referralprogram-voucher.txt
deleted file mode 100755
index 7beaaac96..000000000
--- a/modules/referralprogram/mails/es/referralprogram-voucher.txt
+++ /dev/null
@@ -1,10 +0,0 @@
-Hola {firstname} {lastname},
-
-Le informamos de que usted acaba de obtener una orden de compra después de su remisión.
-
-Aquí está su número de comprobante: {voucher_num}, de un total de {voucher_amount} euros.
-Copia y pega este código en la canasta de tu próxima compra antes de ajustar el orden.
-
-
-
-{shop_url} dirigida por PrestaShop™
diff --git a/modules/referralprogram/mails/fr/index.php b/modules/referralprogram/mails/fr/index.php
deleted file mode 100644
index 3f6561f72..000000000
--- a/modules/referralprogram/mails/fr/index.php
+++ /dev/null
@@ -1,35 +0,0 @@
-
-* @copyright 2007-2013 PrestaShop SA
-* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
-* International Registered Trademark & Property of PrestaShop SA
-*/
-
-header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
-header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
-
-header("Cache-Control: no-store, no-cache, must-revalidate");
-header("Cache-Control: post-check=0, pre-check=0", false);
-header("Pragma: no-cache");
-
-header("Location: ../");
-exit;
\ No newline at end of file
diff --git a/modules/referralprogram/mails/fr/referralprogram-congratulations.html b/modules/referralprogram/mails/fr/referralprogram-congratulations.html
deleted file mode 100644
index e50d9de6a..000000000
--- a/modules/referralprogram/mails/fr/referralprogram-congratulations.html
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
-
-
- Message de {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Félicitations !
-
-
-
-
-
-
Votre filleul(e) {sponsored_firstname} {sponsored_lastname} a effectué son premier achat sur {shop_name} !
-
-
-
-
-
-
Nous avons le plaisir de vous offrir un bon d'achat de {discount_display} (bon de réduction avec le code {discount_name}), que vous pourrez utiliser à l'occasion de votre prochaine commande.
-
-
\ No newline at end of file
diff --git a/modules/referralprogram/mails/fr/referralprogram-congratulations.txt b/modules/referralprogram/mails/fr/referralprogram-congratulations.txt
deleted file mode 100644
index acd6b25da..000000000
--- a/modules/referralprogram/mails/fr/referralprogram-congratulations.txt
+++ /dev/null
@@ -1,9 +0,0 @@
-Félicitations !
-
-Votre filleul(e) {sponsored_firstname} {sponsored_lastname} a effectué son premier achat sur notre site {shop_url} !
-
-Nous avons le plaisir de vous offrir un bon d'achat de {discount_display} (bon de réduction avec le code : {discount_name}), que vous pourrez utiliser à l'occasion de votre prochaine commande.
-
-
-
-{shop_url} réalisé avec PrestaShop™
\ No newline at end of file
diff --git a/modules/referralprogram/mails/fr/referralprogram-invitation.html b/modules/referralprogram/mails/fr/referralprogram-invitation.html
deleted file mode 100644
index ea5d3394b..000000000
--- a/modules/referralprogram/mails/fr/referralprogram-invitation.html
+++ /dev/null
@@ -1,58 +0,0 @@
-
-
-
-
- Message de {shop_name}
-
-
-
-
-
\ No newline at end of file
diff --git a/modules/referralprogram/mails/fr/referralprogram-invitation.txt b/modules/referralprogram/mails/fr/referralprogram-invitation.txt
deleted file mode 100644
index 0a2bafaa5..000000000
--- a/modules/referralprogram/mails/fr/referralprogram-invitation.txt
+++ /dev/null
@@ -1,15 +0,0 @@
-{firstname_friend} {lastname_friend}, rejoignez-nous !
-
-Votre ami(e) {firstname} {lastname} vous a parrainé depuis le site {shop_url}.
-
-Devenez son(sa) filleul(e) afin de gagner un bon d'achat de {discount}!
-
-Pour nous rejoindre, rien de plus simple, rendez-vous à l'adresse suivante :
-
-{shop_url}{link}
-
-N'oubliez pas d'y préciser l'e-mail de votre ami en tant que parrain lors de votre inscription : {email}.
-
-
-
-{shop_url} réalisé avec PrestaShop™
\ No newline at end of file
diff --git a/modules/referralprogram/mails/fr/referralprogram-voucher.html b/modules/referralprogram/mails/fr/referralprogram-voucher.html
deleted file mode 100644
index 2dea7a94b..000000000
--- a/modules/referralprogram/mails/fr/referralprogram-voucher.html
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
-
-
- Message de {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Bonjour {firstname} {lastname},
-
-
-
-
-
-
Programme de Parrainage
-
-
-
-
-
-
Nous vous informons de la génération d'un bon de réduction à votre nom relatif à votre parrainage.
-
-
-
-
-
-
Voici le numéro de votre bon de réduction : {voucher_num}, d'un montant total de {voucher_amount}. Copiez-collez ce code dans le panier de votre prochain achat avant de régler la commande.
-
-
-
\ No newline at end of file
diff --git a/modules/referralprogram/mails/it/referralprogram-congratulations.txt b/modules/referralprogram/mails/it/referralprogram-congratulations.txt
deleted file mode 100644
index a176f8003..000000000
--- a/modules/referralprogram/mails/it/referralprogram-congratulations.txt
+++ /dev/null
@@ -1,9 +0,0 @@
-Congratulazioni!
-
-L'amico che hai presentato, {sponsored_firstname} {sponsored_lastname} ha effettuato il suo primo ordine su {shop_url} !
-
-Siamo lieti di offrirti un buono sconto del valore di {discount_display} (voucher # {discount_name}) che puoi utilizzare sul tuo prossimo ordine.
-
-
-
-{shop_url} powered by PrestaShop™
\ No newline at end of file
diff --git a/modules/referralprogram/mails/it/referralprogram-invitation.html b/modules/referralprogram/mails/it/referralprogram-invitation.html
deleted file mode 100644
index fae5335f9..000000000
--- a/modules/referralprogram/mails/it/referralprogram-invitation.html
+++ /dev/null
@@ -1,59 +0,0 @@
-
-
-
-
- Messaggio da {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
{firstname_friend} {lastname_friend}, iscriviti!
-
-
-
-
-
-
Il tuo amico {firstname} {lastname} vuole presentarti su {shop_name}!
-
-
-
-
-
-
Fatti presentare e vinci un buono sconto di {discount}!
-
-
-
\ No newline at end of file
diff --git a/modules/referralprogram/mails/it/referralprogram-invitation.txt b/modules/referralprogram/mails/it/referralprogram-invitation.txt
deleted file mode 100644
index 9685bd37d..000000000
--- a/modules/referralprogram/mails/it/referralprogram-invitation.txt
+++ /dev/null
@@ -1,15 +0,0 @@
-{firstname_friend} {lastname_friend}, iscriviti!
-
-Il tuo amico {firstname} {lastname} vuole presentarti su {shop_url}.
-
-Fatti presentare e vinci un buono sconto di {discount}!
-
-E' facilissimo iscriversi. Basta cliccare nel link seguente:
-
-{shop_url}{link}
-
-Quando ti iscrivi, non dimenticare di indicare la mail dell'amico/a che ti ha presentato: {email}.
-
-
-
-{shop_url} powered by PrestaShop™
\ No newline at end of file
diff --git a/modules/referralprogram/mails/it/referralprogram-voucher.html b/modules/referralprogram/mails/it/referralprogram-voucher.html
deleted file mode 100644
index 2691bead6..000000000
--- a/modules/referralprogram/mails/it/referralprogram-voucher.html
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-
-
- Messaggio da {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Salve {firstname} {lastname},
-
-
-
-
-
-
Programma di presentazione
-
-
-
-
-
-
Siamo lieti di informarti che è disponibile un buono sconto a tuo nome per il tuo ordine n.{id_order}.
-
-
-
-
-
-
Ecco il codice del tuo buono: {voucher_num}, per un importo di {voucher_amount}. Basta che nel processo di pagamento del tuo prossimo ordine tu copi/incolli questo codice.
-
-
-
\ No newline at end of file
diff --git a/modules/referralprogram/mails/it/referralprogram-voucher.txt b/modules/referralprogram/mails/it/referralprogram-voucher.txt
deleted file mode 100644
index 2049b7615..000000000
--- a/modules/referralprogram/mails/it/referralprogram-voucher.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-Salve {firstname} {lastname},
-
-Siamo lieti di informarti che è disponibile un buono sconto a tuo nome per il tuo ordine n.{id_order}.
-
-Ecco il codice del tuo buono: {voucher_num}, per un importo di {voucher_amount}.
-Basta che nel processo di pagamento del tuo prossimo ordine copi/incolli questo codice.
-
-Grazie di aver acquistato su {shop_name}.
-
-
-
-{shop_url} powered by PrestaShop™
\ No newline at end of file
diff --git a/modules/referralprogram/translations/de.php b/modules/referralprogram/translations/de.php
deleted file mode 100644
index 6a1d265c5..000000000
--- a/modules/referralprogram/translations/de.php
+++ /dev/null
@@ -1,109 +0,0 @@
-referralprogram_6c58031e7824c3cd6febc2f2107b0652'] = 'Konfiguration aktualisiert.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_167579019fe14b4efed431a82985d9ad'] = 'Bestellmenge ist erforderlich / ungültig.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_ee328e3466040a3e52db5d764b7b7e0c'] = 'Rabatt-Wert für ie Währung #%d ist ungültig.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_46da7ad7d01e209241016d308f9fafce'] = 'Gutschein mit einem Prozentsatz';
-$_MODULE['<{referralprogram}prestashop>referralprogram_97839379a0f447599405341b852e2e24'] = 'Gutschein mit einem festen Betrag (nach Währung)';
-$_MODULE['<{referralprogram}prestashop>referralprogram_3d5a011fdba2979f8d0ffd30b9f5c6ba'] = 'Prozentsatz:';
-$_MODULE['<{referralprogram}prestashop>referralprogram_fc6e0920b914b164802d44220e6163f3'] = 'abgesandte Bestellungen';
-$_MODULE['<{referralprogram}prestashop>program_83fc792f687bc45d75ac35c84c721a26'] = 'Mindestens eine E-Mail-Adresse ist ungültig!';
-$_MODULE['<{referralprogram}prestashop>program_79cd362fc64832faa0a2079f1142aa12'] = 'Eine E-Mail wurde an Ihren Freund geschickt!';
-$_MODULE['<{referralprogram}prestashop>program_819e52b3c6ca4db131dcfea19188a0c3'] = 'Eine Erinnerungs-E-Mail wurde an Ihren Freund verschickt!';
-$_MODULE['<{referralprogram}prestashop>program_46ee2fe8845962d24bf5178a26e109f3'] = 'Meine Freunde sponsern';
-$_MODULE['<{referralprogram}prestashop>program_8d3ae82bfa996855cdf841dd9e15a7e3'] = 'Es ist schnell und einfach. Nur denVornamen, Nachnamen un d die E-Mail-Adresse (n) Ihres (r) Freunds (e) in die Felder unten eintragen.';
-$_MODULE['<{referralprogram}prestashop>program_8d3f5eff9c40ee315d452392bed5309b'] = 'Nachname';
-$_MODULE['<{referralprogram}prestashop>program_1e884e3078d9978e216a027ecd57fb34'] = 'E-Mail';
-$_MODULE['<{referralprogram}prestashop>program_868ca5fe643791c23b47c75fb833c9b8'] = 'Lesen Sie die Nutzungsbedingungen.';
-$_MODULE['<{referralprogram}prestashop>program_59352cd5314a67c0fb10c964831920f3'] = 'Um Sponsor zu werden, müssen Sie eine mindestens ausfüllen';
-$_MODULE['<{referralprogram}prestashop>program_ec7342814444c667ab93181b30b28e38'] = 'Diese Freunde haben noch nichts auf dieser Website bestellt, seit Sie sie sponsern, aber Sie können es erneut versuchen! Dazu markieren Sie die Kontrollkästchen des (r) Freundes (e) an, die Sie erinnern möchten, dann klicken Sie auf die Schaltfläche \\"Meine(n) Freund (e) erinnern\\"';
-$_MODULE['<{referralprogram}prestashop>program_9c9d4ed270f02c72124702edb192ff19'] = 'Meine(n) Freund (e) erinnern';
-$_MODULE['<{referralprogram}prestashop>program_3c648ba41cfb45f13b083a9cbbacdfdf'] = 'Anmeldedatum';
-$_MODULE['<{referralprogram}prestashop>order-confirmation_f2ef523efa8d23f8afc29e195592fc58'] = 'Vielen Dank für Ihre Bestellung! Ihr Sponsor %1$s %2$s wird einen Gutschein in Höhe von %3$d erhalten, wenn diese Bestellung bestätigt wird.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_ceb0ce9b627fb9a962543f3271da29b1'] = 'Rabatt-Wert ist ungültig.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_3d31dd445991f35b1ee6491eec7ac71c'] = 'Kann die XML-Datei nicht schreiben.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_21cc1fccae3b04bb8cd2719cc5269e1e'] = 'Kann die XML-Datei nicht aktualisieren. Bitte überprüfen Sie die Schreibrechte der XML-Datei.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_5be920293db3e38c81330fd0798336b1'] = 'Ungültiges html Feld, Javascript ist verboten';
-$_MODULE['<{referralprogram}prestashop>referralprogram_386c339d37e737a436499d423a77df0c'] = 'Währung';
-$_MODULE['<{referralprogram}prestashop>referralprogram_b17f3f4dcf653a5776792498a9b44d6a'] = 'Einstellungen aktualisieren';
-$_MODULE['<{referralprogram}prestashop>referralprogram_49ee3087348e8d44e1feda1917443987'] = 'Name';
-$_MODULE['<{referralprogram}prestashop>referralprogram_22ffd0379431f3b615eb8292f6c31d12'] = 'Anmeldedatum';
-$_MODULE['<{referralprogram}prestashop>referralprogram_970ad4e4787cc75cd63dbf8d5c757513'] = 'Kunden-Konto erstellt';
-$_MODULE['<{referralprogram}prestashop>program_7a81aa9275331bb0f5e6adb5e8650a03'] = 'oder Esc-Taste';
-$_MODULE['<{referralprogram}prestashop>program_f6cb78f0afcf7c3a06048a7a5855d6a1'] = 'Es wurden E-Mails an Ihre Freunde gesendet!';
-$_MODULE['<{referralprogram}prestashop>program_2b90ca4a7b1c83e0a3bb65899725cd65'] = 'Erinnerungs-E-Mails wurden an Ihre Freunde verschickt!';
-$_MODULE['<{referralprogram}prestashop>program_58c7f2542ab2e2c3e4e39e851ea0f225'] = 'Freunde, die ich gesponsert habe';
-$_MODULE['<{referralprogram}prestashop>program_6e8dedb6b5dcad23e24d07c10aff29d8'] = 'Wenn einer von ihnen mind. %d Bestellung tätigt';
-$_MODULE['<{referralprogram}prestashop>program_3aa40545dad78313e27017aa28c6cb7d'] = 'Sie oder er wird einen %1$d Gutschein erhalten. Sie erhalten ebenfalls einen Gutschein in Höhe von %2$d.';
-$_MODULE['<{referralprogram}prestashop>program_6b719c160f9b08dad4760bcc4b52ed48'] = 'Geschäftsbedingungen des Referral-Programm';
-$_MODULE['<{referralprogram}prestashop>program_70a17ffa722a3985b86d30b034ad06d7'] = 'Bestellung';
-$_MODULE['<{referralprogram}prestashop>program_3e717a04ff77cd5fa068d8ad9d3facc8'] = 'Letzte Einladung';
-$_MODULE['<{referralprogram}prestashop>program_193f3d8bbaceba40499cab1a3545e9e8'] = 'Hier sind gesponserte Freunde, die Ihre Einladung angenommen haben:';
-$_MODULE['<{referralprogram}prestashop>program_0b3db27bc15f682e92ff250ebb167d4b'] = 'Zurück zu Ihrem Konto';
-$_MODULE['<{referralprogram}prestashop>program_8cf04a9734132302f96da8e113e80ce5'] = 'Startseite';
-$_MODULE['<{referralprogram}prestashop>authentication_6b31baf25848e7a6563ecc3946626c80'] = 'Referral Programm';
-$_MODULE['<{referralprogram}prestashop>shopping-cart_6b31baf25848e7a6563ecc3946626c80'] = 'Referral Programm';
-$_MODULE['<{referralprogram}prestashop>shopping-cart_b76b807810393d9fce7f154d82aef1d1'] = 'Sie haben einen Gutschein in Höhe von %s erhalten. Vielen Dank an den Sponsor!';
-$_MODULE['<{referralprogram}prestashop>shopping-cart_9a5b602be8d9b2d4b8c3f22911fba01d'] = 'Gutscheinname %s eingeben, um einen Nachlass auf diese Bestellung zu erhalten.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_83090230d3c11aa76851030eba008a71'] = 'Kunden Referral-Programm';
-$_MODULE['<{referralprogram}prestashop>referralprogram_d59ce2e96c0c2362a0a4269e0d874e32'] = 'Sie müssen einen Betrag für Referral-Programm Gutscheine angeben';
-$_MODULE['<{referralprogram}prestashop>referralprogram_284033830e0eaf55340844305bf34fdd'] = 'Referral-Belohnung';
-$_MODULE['<{referralprogram}prestashop>referralprogram_3c5db6c207f700f4f209b43bed966e96'] = 'Kann diese Datei nicht löschen:';
-$_MODULE['<{referralprogram}prestashop>referralprogram_18d0d79eb088abb4357e3666eec35660'] = 'Rabatt Prozentsatz erforderlich ist / ungültig.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_f4f70727dc34561dfde1a3c529b6205c'] = 'Einstellungen';
-$_MODULE['<{referralprogram}prestashop>referralprogram_7ca3288a38b048b0df25394ccc22ad46'] = 'Minimale Bestellungsanzahl eines gesponserten Freund, damit dieser einen Gutschein erhält:';
-$_MODULE['<{referralprogram}prestashop>referralprogram_9ad4f790c8bb9be21a2fa388c7730353'] = 'Gutschein-Typ:';
-$_MODULE['<{referralprogram}prestashop>referralprogram_edf7f0a17b8a8f1732f12856fcbc8a6b'] = 'Gutscheinbetrag';
-$_MODULE['<{referralprogram}prestashop>referralprogram_c5afb9c76a7880978cba32872d01f068'] = 'Aktualisieren Sie den Text';
-$_MODULE['<{referralprogram}prestashop>referralprogram_6b31baf25848e7a6563ecc3946626c80'] = 'Referral Programm';
-$_MODULE['<{referralprogram}prestashop>referralprogram_f964f762284ede747ed9f6428a5469b8'] = 'Niemand hat diesen Kunden gesponsert.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_58dc82d3e2e17ced0225064a9b496ee9'] = 'gesponserter Kunde:';
-$_MODULE['<{referralprogram}prestashop>referralprogram_b718adec73e04ce3ec720dd11a06a308'] = 'ID';
-$_MODULE['<{referralprogram}prestashop>referralprogram_325c8bbd07033a39d25b5c4457f79861'] = 'Kunden, die von diesem Freund gesponsert wurden';
-$_MODULE['<{referralprogram}prestashop>program_d3d2e617335f08df83599665eef8a418'] = 'Schließen';
-$_MODULE['<{referralprogram}prestashop>program_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'Mein Konto';
-$_MODULE['<{referralprogram}prestashop>program_6540b502e953f4c05abeb8f234cd50bf'] = 'Referral Program';
-$_MODULE['<{referralprogram}prestashop>program_6b31baf25848e7a6563ecc3946626c80'] = 'Referral Programm';
-$_MODULE['<{referralprogram}prestashop>program_3f8a4c7f93945fea0d951fa402ee4272'] = 'Bitte kreuzen Sie mindestens ein Kontrollkästchen an';
-$_MODULE['<{referralprogram}prestashop>program_c56567bc42584de1a7ac430039b3a87e'] = 'Anhängige Freunde';
-$_MODULE['<{referralprogram}prestashop>program_20db0bfeecd8fe60533206a2b5e9891a'] = 'Vorname';
-$_MODULE['<{referralprogram}prestashop>program_9386de858384e7f790a28beecdb986dd'] = 'Wichtig: Die E-Mail-Adressen Ihrer Freunde werden nur im Referral-Programm verwendet. Sie werden niemals für andere Zwecke verwendet werden.';
-$_MODULE['<{referralprogram}prestashop>program_605eef3cad421619ce034ab48415190f'] = 'Ich stimme den Nutzungsbedingungen zu und halte sie bedingungslos ein.';
-$_MODULE['<{referralprogram}prestashop>program_a86073a0c3b0bebf11bd807caf8e505a'] = 'Standard-E-Mail';
-$_MODULE['<{referralprogram}prestashop>program_ad3d06d03d94223fa652babc913de686'] = 'Bestätigen';
-$_MODULE['<{referralprogram}prestashop>authentication_8fdb2298a0db461ac64e71192a562ca1'] = 'E-Mail-Adresse Ihres Sponsors';
-$_MODULE['<{referralprogram}prestashop>my-account_6b31baf25848e7a6563ecc3946626c80'] = 'Referral Programm';
-$_MODULE['<{referralprogram}prestashop>shopping-cart_106527986549f3ec8da1ae5a7abde467'] = 'Ihr Referral-Programm sehen.';
-$_MODULE['<{referralprogram}prestashop>program_7532696b81dfc0b94a37e876677152c5'] = 'die Ihrem (n) Freund (en) gesendet wird.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_40604a195d001353d697b0fd26f5d8fe'] = 'Alle Sponsoren und Freunde werden gelöscht. Wollen Sie dieses Modul wirklich deinstallieren?';
-$_MODULE['<{referralprogram}prestashop>referralprogram_46a3a666d8823b972af8018a5242a3ac'] = 'Integrieren Sie ein Referral-Programm-System in Ihrem Shop.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_9611f10b809aa2daf5c0eb88153901d4'] = 'Rabatt-Wert für ie Währung #%d ist leer.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_addae886b20a06e2954461706c90cd7d'] = 'Rabatt-Typ ist erforderlich / ungültig.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_ac3357de2dec8d74d89dd378962ec621'] = 'Anzahl der Freunde ist erforderlich / ungültig.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_96191c1f54bb6311624210333ef797eb'] = 'Kann die XML-Datei nicht schließen.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_624f983eb0713e10faf35ff3889e8d68'] = 'Anzahl der Freunde in dem Einladungsformular des Referral-Programms (Kundenkonto, Referral-Programm-Abschnitt):';
-$_MODULE['<{referralprogram}prestashop>referralprogram_8465d83b5c1b569299af284c14d957bb'] = 'Gutscheinbeschreibung:';
-$_MODULE['<{referralprogram}prestashop>referralprogram_562ad64cf21ac2da656134355115133d'] = 'Ihr Text ist leer.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_6b719c160f9b08dad4760bcc4b52ed48'] = 'Geschäftsbedingungen des Referral-Programm';
-$_MODULE['<{referralprogram}prestashop>referralprogram_94c69408d25102ba7ddcf3533b56c407'] = 'Objekt Kunde ungültig';
-$_MODULE['<{referralprogram}prestashop>referralprogram_7790d51a3d62c85aae65464dee12ee8b'] = 'Kundensponsor:';
-$_MODULE['<{referralprogram}prestashop>referralprogram_53d0d7aba39ee971f7f179e6e1092708'] = 'gesponserte Kunden:';
-$_MODULE['<{referralprogram}prestashop>referralprogram_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'E-Mail';
-$_MODULE['<{referralprogram}prestashop>referralprogram_0b820748c24b934a6acdb881169eb81f'] = '%1$s %2$s hat noch keine Freunde gesponsert.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_a82e0d057f443115e807bd6ca595fc8c'] = 'Objekt Befehl ungültig';
-$_MODULE['<{referralprogram}prestashop>referralprogram_8b80d4b6307990874b832cc15a92e5a3'] = 'Einstellungen fehlen';
-$_MODULE['<{referralprogram}prestashop>program_dbc65cd60abde51277c2881ce915a225'] = 'Sie müssen sich den Bedingungen des Referral-Programm zustimmen!';
-$_MODULE['<{referralprogram}prestashop>program_1019072b9e450c8652590cda2db45e49'] = 'Mindestens ein Vorname oder Nachname ist ungültig!';
-$_MODULE['<{referralprogram}prestashop>program_ff2d2e45b90b4426c3bb14bd56b95a2d'] = 'Jemand mit dieser E-Mail-Adresse ist bereits gesponsert worden!';
-$_MODULE['<{referralprogram}prestashop>program_dcc99d8715486f570db3ec5ee469a828'] = 'Kann keine Freunde zur Datenbank hinzufügen';
-$_MODULE['<{referralprogram}prestashop>program_07b0f879b9bf9ec028d99df3880922f9'] = 'Erhalten Sie einen Rabatt in Höhe von %d für Sie und Ihre Freunde, wenn Sie diese Website weiterempfehlen.';
-$_MODULE['<{referralprogram}prestashop>program_c92182a305ac874bae5e54d75bbd9327'] = 'Wenn einer von ihnen mind. %d Bestellungen tätigt';
-$_MODULE['<{referralprogram}prestashop>program_31fde7b05ac8952dacf4af8a704074ec'] = 'Vorschau';
-$_MODULE['<{referralprogram}prestashop>program_8e8dc296c6bf3876468aa028974bfebe'] = 'Einladungs-E-Mail';
-$_MODULE['<{referralprogram}prestashop>program_12c500ed0b7879105fb46af0f246be87'] = 'Bestellungen';
-$_MODULE['<{referralprogram}prestashop>program_8b9f390369560635a2ba5ba271d953df'] = 'Sie haben keine Freunde gesponsert.';
-$_MODULE['<{referralprogram}prestashop>program_8d4e5c2bc4c3cf67d2b59b263a707cb6'] = 'Keine gesponserten Freunde haben bisher Ihre Einladung angenommen.';
-$_MODULE['<{referralprogram}prestashop>rules_01705c0177ebf5fbcbf4e882bc454405'] = 'Regeln des Referral Programms';
diff --git a/modules/referralprogram/translations/en.php b/modules/referralprogram/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/referralprogram/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-referralprogram_6c58031e7824c3cd6febc2f2107b0652'] = 'Configuración actualizada.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_167579019fe14b4efed431a82985d9ad'] = 'Cantidad de pedido se necesita o no es válida.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_ee328e3466040a3e52db5d764b7b7e0c'] = 'El valor del descuento para la moneda #%d no es valido.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_46da7ad7d01e209241016d308f9fafce'] = 'Vale descuento con un porcentaje';
-$_MODULE['<{referralprogram}prestashop>referralprogram_97839379a0f447599405341b852e2e24'] = 'Vale descuento con un importe (por divisa)';
-$_MODULE['<{referralprogram}prestashop>referralprogram_3d5a011fdba2979f8d0ffd30b9f5c6ba'] = 'Porcentaje:';
-$_MODULE['<{referralprogram}prestashop>referralprogram_fc6e0920b914b164802d44220e6163f3'] = 'Pedidos realizados';
-$_MODULE['<{referralprogram}prestashop>program_83fc792f687bc45d75ac35c84c721a26'] = '¡Al menos una dirección de correo no es válida!';
-$_MODULE['<{referralprogram}prestashop>program_79cd362fc64832faa0a2079f1142aa12'] = 'Se ha enviado un email a su amigo';
-$_MODULE['<{referralprogram}prestashop>program_819e52b3c6ca4db131dcfea19188a0c3'] = 'Se ha enviado un email recordatorio a su amigo';
-$_MODULE['<{referralprogram}prestashop>program_46ee2fe8845962d24bf5178a26e109f3'] = 'Patrocinar a mis amigos';
-$_MODULE['<{referralprogram}prestashop>program_8d3ae82bfa996855cdf841dd9e15a7e3'] = 'Es rápido y sencillo. Simplemente rellene el nombre, apellidos, email de su amigo o amigos en los siguientes campos.';
-$_MODULE['<{referralprogram}prestashop>program_8d3f5eff9c40ee315d452392bed5309b'] = 'Apellidos';
-$_MODULE['<{referralprogram}prestashop>program_1e884e3078d9978e216a027ecd57fb34'] = 'Email';
-$_MODULE['<{referralprogram}prestashop>program_868ca5fe643791c23b47c75fb833c9b8'] = 'Leer condiciones.';
-$_MODULE['<{referralprogram}prestashop>program_59352cd5314a67c0fb10c964831920f3'] = 'Para ser un patrocinador, es necesario que usted tenga por lo menos';
-$_MODULE['<{referralprogram}prestashop>program_ec7342814444c667ab93181b30b28e38'] = '¡Estos amigos aún no han realizado ningún pedido en este sitio web patrocinado, pero usted puede intentarlo nuevamente! Para ello, marque la casilla de verificación de los amigos a los que desea contactar de nuevo. A continuación, haga clic en el botón \\"contactar a mi(s) amigo (s)\\"';
-$_MODULE['<{referralprogram}prestashop>program_9c9d4ed270f02c72124702edb192ff19'] = 'Contactar a mi(s) amigo (s)';
-$_MODULE['<{referralprogram}prestashop>program_3c648ba41cfb45f13b083a9cbbacdfdf'] = 'Fecha de inscripción';
-$_MODULE['<{referralprogram}prestashop>order-confirmation_f2ef523efa8d23f8afc29e195592fc58'] = 'Gracias a su pedido, su patrocinador %1$s %2$s ganará un vale por valor de %3$d cuando esta compra se confirme.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_ceb0ce9b627fb9a962543f3271da29b1'] = 'El valor del descuento no es válido.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_3d31dd445991f35b1ee6491eec7ac71c'] = 'No se puede escribir en el archivo XML.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_21cc1fccae3b04bb8cd2719cc5269e1e'] = 'No se puede actualizar el archivo xml. Por favor, compruebe el archivo XML de los permisos de escritura.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_5be920293db3e38c81330fd0798336b1'] = 'Campo Html no válido, javascript está prohibido';
-$_MODULE['<{referralprogram}prestashop>referralprogram_386c339d37e737a436499d423a77df0c'] = 'Divisa';
-$_MODULE['<{referralprogram}prestashop>referralprogram_b17f3f4dcf653a5776792498a9b44d6a'] = 'Ajustes actualizados';
-$_MODULE['<{referralprogram}prestashop>referralprogram_970ad4e4787cc75cd63dbf8d5c757513'] = 'Cuenta cliente creada';
-$_MODULE['<{referralprogram}prestashop>program_7a81aa9275331bb0f5e6adb5e8650a03'] = 'o tecla Esc';
-$_MODULE['<{referralprogram}prestashop>program_f6cb78f0afcf7c3a06048a7a5855d6a1'] = 'Emails enviados a sus amigos';
-$_MODULE['<{referralprogram}prestashop>program_2b90ca4a7b1c83e0a3bb65899725cd65'] = 'Se han enviado emails recordatorios a sus amigos';
-$_MODULE['<{referralprogram}prestashop>program_58c7f2542ab2e2c3e4e39e851ea0f225'] = 'Amigos que he patrocinado';
-$_MODULE['<{referralprogram}prestashop>program_6e8dedb6b5dcad23e24d07c10aff29d8'] = 'Cuando uno de ellos haga por lo menos %d pedido.';
-$_MODULE['<{referralprogram}prestashop>program_3aa40545dad78313e27017aa28c6cb7d'] = 'Recibirá un vale de descuanto de %1$d y usted también %2$d.';
-$_MODULE['<{referralprogram}prestashop>program_6b719c160f9b08dad4760bcc4b52ed48'] = 'Condiciones del programa de referidos';
-$_MODULE['<{referralprogram}prestashop>program_70a17ffa722a3985b86d30b034ad06d7'] = 'un pedido';
-$_MODULE['<{referralprogram}prestashop>program_3e717a04ff77cd5fa068d8ad9d3facc8'] = 'Última invitación';
-$_MODULE['<{referralprogram}prestashop>program_193f3d8bbaceba40499cab1a3545e9e8'] = 'Aquí están los amigos patrocinados que han aceptado su invitación:';
-$_MODULE['<{referralprogram}prestashop>program_0b3db27bc15f682e92ff250ebb167d4b'] = 'Volver a su cuenta';
-$_MODULE['<{referralprogram}prestashop>program_8cf04a9734132302f96da8e113e80ce5'] = 'Inicio';
-$_MODULE['<{referralprogram}prestashop>authentication_6b31baf25848e7a6563ecc3946626c80'] = 'Programa de patrocinio';
-$_MODULE['<{referralprogram}prestashop>shopping-cart_6b31baf25848e7a6563ecc3946626c80'] = 'Programa de patrocinio';
-$_MODULE['<{referralprogram}prestashop>shopping-cart_b76b807810393d9fce7f154d82aef1d1'] = 'Usted se ha ganado un vale por un valor de %s gracias a su patrocinador!';
-$_MODULE['<{referralprogram}prestashop>shopping-cart_9a5b602be8d9b2d4b8c3f22911fba01d'] = 'Introduzca nombre de vale %s para recibir la reducción en este pedido.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_49ee3087348e8d44e1feda1917443987'] = 'Nombre';
-$_MODULE['<{referralprogram}prestashop>referralprogram_22ffd0379431f3b615eb8292f6c31d12'] = 'Fecha de Registro';
-$_MODULE['<{referralprogram}prestashop>referralprogram_83090230d3c11aa76851030eba008a71'] = 'Programa de apadrinamiento de clientes';
-$_MODULE['<{referralprogram}prestashop>referralprogram_d59ce2e96c0c2362a0a4269e0d874e32'] = 'Debe especificar un importe para los vales descuento de apadrinamiento';
-$_MODULE['<{referralprogram}prestashop>referralprogram_284033830e0eaf55340844305bf34fdd'] = 'Recompensa apadrinamiento';
-$_MODULE['<{referralprogram}prestashop>referralprogram_3c5db6c207f700f4f209b43bed966e96'] = 'No se puede eliminar este archivo:';
-$_MODULE['<{referralprogram}prestashop>referralprogram_18d0d79eb088abb4357e3666eec35660'] = 'El porcentaje de descuento es necesario / no válido.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_f4f70727dc34561dfde1a3c529b6205c'] = 'Configuración';
-$_MODULE['<{referralprogram}prestashop>referralprogram_7ca3288a38b048b0df25394ccc22ad46'] = 'Número mínimo de pedidos que un amigo debe hacer para recibir un vale descuento';
-$_MODULE['<{referralprogram}prestashop>referralprogram_9ad4f790c8bb9be21a2fa388c7730353'] = 'Tipo vale:';
-$_MODULE['<{referralprogram}prestashop>referralprogram_edf7f0a17b8a8f1732f12856fcbc8a6b'] = 'Importe del vale descuento';
-$_MODULE['<{referralprogram}prestashop>referralprogram_c5afb9c76a7880978cba32872d01f068'] = 'Actualizar el texto';
-$_MODULE['<{referralprogram}prestashop>referralprogram_6b31baf25848e7a6563ecc3946626c80'] = 'Programa de patrocinio';
-$_MODULE['<{referralprogram}prestashop>referralprogram_f964f762284ede747ed9f6428a5469b8'] = 'Nadie ha apadrinado a este cliente.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_325c8bbd07033a39d25b5c4457f79861'] = 'Clientes apadrinados por este amigo';
-$_MODULE['<{referralprogram}prestashop>program_d3d2e617335f08df83599665eef8a418'] = 'Cerrar';
-$_MODULE['<{referralprogram}prestashop>program_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'Mi cuenta';
-$_MODULE['<{referralprogram}prestashop>program_6540b502e953f4c05abeb8f234cd50bf'] = 'Programa de patrocinio';
-$_MODULE['<{referralprogram}prestashop>program_6b31baf25848e7a6563ecc3946626c80'] = 'Programa de patrocinio';
-$_MODULE['<{referralprogram}prestashop>program_3f8a4c7f93945fea0d951fa402ee4272'] = 'Por favor, marque al menos una casilla';
-$_MODULE['<{referralprogram}prestashop>program_c56567bc42584de1a7ac430039b3a87e'] = 'En espera de amigos';
-$_MODULE['<{referralprogram}prestashop>program_20db0bfeecd8fe60533206a2b5e9891a'] = 'Nombre';
-$_MODULE['<{referralprogram}prestashop>program_9386de858384e7f790a28beecdb986dd'] = 'Importante: las direcciones de correo electrónico de sus amigos sólo serán utilizadas en el programa de patrocinio. Nunca se utilizarán para otros fines.';
-$_MODULE['<{referralprogram}prestashop>program_605eef3cad421619ce034ab48415190f'] = 'He leido las condiciones de uso y las acepto sin reservas.';
-$_MODULE['<{referralprogram}prestashop>program_a86073a0c3b0bebf11bd807caf8e505a'] = 'Email por defecto';
-$_MODULE['<{referralprogram}prestashop>program_7532696b81dfc0b94a37e876677152c5'] = 'que se enviará a su amigo o amigos.';
-$_MODULE['<{referralprogram}prestashop>program_ad3d06d03d94223fa652babc913de686'] = 'Validar';
-$_MODULE['<{referralprogram}prestashop>authentication_8fdb2298a0db461ac64e71192a562ca1'] = 'Email de su patrocinador';
-$_MODULE['<{referralprogram}prestashop>my-account_6b31baf25848e7a6563ecc3946626c80'] = 'Programa de patrocinio';
-$_MODULE['<{referralprogram}prestashop>shopping-cart_106527986549f3ec8da1ae5a7abde467'] = 'Ver su programa de patrocinio.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_58dc82d3e2e17ced0225064a9b496ee9'] = 'cliente apadrinado:';
-$_MODULE['<{referralprogram}prestashop>referralprogram_b718adec73e04ce3ec720dd11a06a308'] = 'ID';
-$_MODULE['<{referralprogram}prestashop>referralprogram_40604a195d001353d697b0fd26f5d8fe'] = 'Todos los datos relativos al programa de apadrinamiento. ¿Está seguro de que desea desinstalarlo?';
-$_MODULE['<{referralprogram}prestashop>referralprogram_46a3a666d8823b972af8018a5242a3ac'] = 'Integrar un programa de apadrinamiento en su tienda';
-$_MODULE['<{referralprogram}prestashop>referralprogram_9611f10b809aa2daf5c0eb88153901d4'] = 'El valor del descuento para la moneda #%d está vacío.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_addae886b20a06e2954461706c90cd7d'] = 'El tipo de descuento se necesita o no es válido';
-$_MODULE['<{referralprogram}prestashop>referralprogram_ac3357de2dec8d74d89dd378962ec621'] = 'el número de amigos se necesita o no es válido.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_96191c1f54bb6311624210333ef797eb'] = 'No se puede cerrar el archivo xml.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_624f983eb0713e10faf35ff3889e8d68'] = 'Número de amigos en el formulario de invitación por apadrinamiento ( cuenta cliente, apartado apadrinamiento):';
-$_MODULE['<{referralprogram}prestashop>referralprogram_8465d83b5c1b569299af284c14d957bb'] = 'Descripción vale:';
-$_MODULE['<{referralprogram}prestashop>referralprogram_562ad64cf21ac2da656134355115133d'] = 'Su texto está vacio.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_6b719c160f9b08dad4760bcc4b52ed48'] = 'Condiciones del programa de referidos';
-$_MODULE['<{referralprogram}prestashop>referralprogram_94c69408d25102ba7ddcf3533b56c407'] = 'el objeto del cliente es incorrecto.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_7790d51a3d62c85aae65464dee12ee8b'] = 'Padrino del cliente:';
-$_MODULE['<{referralprogram}prestashop>referralprogram_0b820748c24b934a6acdb881169eb81f'] = '%1$s %2$s no ha apadrinado a ningún amigo todavía.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_8b80d4b6307990874b832cc15a92e5a3'] = 'Algunos parámetros han desaparecido.';
-$_MODULE['<{referralprogram}prestashop>program_dbc65cd60abde51277c2881ce915a225'] = '¡Necesita aceptar las condiciones del programa de patrocinio!';
-$_MODULE['<{referralprogram}prestashop>program_1019072b9e450c8652590cda2db45e49'] = '¡El nombre o los apellidos no son válidos!';
-$_MODULE['<{referralprogram}prestashop>program_ff2d2e45b90b4426c3bb14bd56b95a2d'] = '¡Alguien con este e-mail ya se ha registrado!';
-$_MODULE['<{referralprogram}prestashop>program_dcc99d8715486f570db3ec5ee469a828'] = 'No puede añadir amigos a la base de datos';
-$_MODULE['<{referralprogram}prestashop>program_07b0f879b9bf9ec028d99df3880922f9'] = 'Consiga un descuento de %d para usted y sus amigos por recomendar este sitio Web.';
-$_MODULE['<{referralprogram}prestashop>program_c92182a305ac874bae5e54d75bbd9327'] = 'Cuando uno de ellos haga por lo menos %d pedidos.';
-$_MODULE['<{referralprogram}prestashop>program_31fde7b05ac8952dacf4af8a704074ec'] = 'Vista previa';
-$_MODULE['<{referralprogram}prestashop>program_8e8dc296c6bf3876468aa028974bfebe'] = 'Invitación por email';
-$_MODULE['<{referralprogram}prestashop>program_12c500ed0b7879105fb46af0f246be87'] = 'pedidos';
-$_MODULE['<{referralprogram}prestashop>program_8b9f390369560635a2ba5ba271d953df'] = 'Usted no ha patrocinado a ningún amigo.';
-$_MODULE['<{referralprogram}prestashop>program_8d4e5c2bc4c3cf67d2b59b263a707cb6'] = 'Aún no hay amigos Patrocinados que hayan aceptado su invitación.';
-$_MODULE['<{referralprogram}prestashop>rules_01705c0177ebf5fbcbf4e882bc454405'] = 'Condiciones del programa de patrocinio';
-$_MODULE['<{referralprogram}prestashop>referralprogram_53d0d7aba39ee971f7f179e6e1092708'] = 'clientes apadrinados:';
-$_MODULE['<{referralprogram}prestashop>referralprogram_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'Email';
-$_MODULE['<{referralprogram}prestashop>referralprogram_a82e0d057f443115e807bd6ca595fc8c'] = 'El objeto pedido es incorrecto';
diff --git a/modules/referralprogram/translations/fr.php b/modules/referralprogram/translations/fr.php
deleted file mode 100644
index 858b39d4f..000000000
--- a/modules/referralprogram/translations/fr.php
+++ /dev/null
@@ -1,109 +0,0 @@
-referralprogram_6c58031e7824c3cd6febc2f2107b0652'] = 'Paramètres mis à jour.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_167579019fe14b4efed431a82985d9ad'] = 'Vous devez indiquer un nombre valables de commandes.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_ee328e3466040a3e52db5d764b7b7e0c'] = 'Valeur de la réduction pour la devise %d est invalide.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_46da7ad7d01e209241016d308f9fafce'] = 'Bon de réduction avec un pourcentage';
-$_MODULE['<{referralprogram}prestashop>referralprogram_97839379a0f447599405341b852e2e24'] = 'Bon de réduction avec un montant (par devise)';
-$_MODULE['<{referralprogram}prestashop>referralprogram_3d5a011fdba2979f8d0ffd30b9f5c6ba'] = 'Pourcentage :';
-$_MODULE['<{referralprogram}prestashop>referralprogram_fc6e0920b914b164802d44220e6163f3'] = 'Nombre de commandes effectuées';
-$_MODULE['<{referralprogram}prestashop>program_83fc792f687bc45d75ac35c84c721a26'] = 'Une ou plusieurs adresses e-mail sont incorrectes !';
-$_MODULE['<{referralprogram}prestashop>program_79cd362fc64832faa0a2079f1142aa12'] = 'Un e-mail a été envoyé à votre amis !';
-$_MODULE['<{referralprogram}prestashop>program_819e52b3c6ca4db131dcfea19188a0c3'] = 'Un e-mail de rappel a été envoyé à votre ami !';
-$_MODULE['<{referralprogram}prestashop>program_8d3ae82bfa996855cdf841dd9e15a7e3'] = 'C\'est rapide et facile. Il suffit de remplir les noms, prénoms et adresses e-mails de vos amis dans les champs ci-dessous.';
-$_MODULE['<{referralprogram}prestashop>program_8d3f5eff9c40ee315d452392bed5309b'] = 'Nom';
-$_MODULE['<{referralprogram}prestashop>program_1e884e3078d9978e216a027ecd57fb34'] = 'E-mail';
-$_MODULE['<{referralprogram}prestashop>program_868ca5fe643791c23b47c75fb833c9b8'] = 'Lisez les conditions.';
-$_MODULE['<{referralprogram}prestashop>program_ec7342814444c667ab93181b30b28e38'] = 'Ces amis parrainés n\'ont pas encore effectué d\'achat, mais vous pouvez les relancer ! Pour ce faire, vous devez cocher les cases des amis que vous voulez relancer, puis cliquer sur le bouton \\"Relancer mes amis\\"';
-$_MODULE['<{referralprogram}prestashop>program_9c9d4ed270f02c72124702edb192ff19'] = 'Relancer mes amis';
-$_MODULE['<{referralprogram}prestashop>program_3c648ba41cfb45f13b083a9cbbacdfdf'] = 'Date d\'inscription';
-$_MODULE['<{referralprogram}prestashop>order-confirmation_f2ef523efa8d23f8afc29e195592fc58'] = 'Grâce à votre commande, votre parrain %1$s %2$s gagnera un bon de réduction d\'une valeur de %3$d quand cette commande sera confirmée.';
-$_MODULE['<{referralprogram}prestashop>program_46ee2fe8845962d24bf5178a26e109f3'] = 'Parrainer mes amis';
-$_MODULE['<{referralprogram}prestashop>program_59352cd5314a67c0fb10c964831920f3'] = 'Pour parrainer vos amis, vous devez finaliser au moins';
-$_MODULE['<{referralprogram}prestashop>referralprogram_ceb0ce9b627fb9a962543f3271da29b1'] = 'La valeur de réduction est invalide.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_3d31dd445991f35b1ee6491eec7ac71c'] = 'Impossible d\'écrire dans le fichier XML.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_21cc1fccae3b04bb8cd2719cc5269e1e'] = 'Impossible de mettre à jour le fichier XML. Veuillez vérifier les droits d\'écriture sur le fichier XML.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_5be920293db3e38c81330fd0798336b1'] = 'Champ HTML non valable, le code Javascript y est interdit.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_386c339d37e737a436499d423a77df0c'] = 'Devise';
-$_MODULE['<{referralprogram}prestashop>referralprogram_b17f3f4dcf653a5776792498a9b44d6a'] = 'Mettre à jour les paramètres';
-$_MODULE['<{referralprogram}prestashop>referralprogram_49ee3087348e8d44e1feda1917443987'] = 'Nom';
-$_MODULE['<{referralprogram}prestashop>program_f6cb78f0afcf7c3a06048a7a5855d6a1'] = 'Des e-mails ont été envoyés à vos amis !';
-$_MODULE['<{referralprogram}prestashop>program_6b719c160f9b08dad4760bcc4b52ed48'] = 'Conditions du programme de parrainage';
-$_MODULE['<{referralprogram}prestashop>program_0b3db27bc15f682e92ff250ebb167d4b'] = 'Retour à votre compte';
-$_MODULE['<{referralprogram}prestashop>referralprogram_22ffd0379431f3b615eb8292f6c31d12'] = 'Date d\'enregistrement';
-$_MODULE['<{referralprogram}prestashop>referralprogram_970ad4e4787cc75cd63dbf8d5c757513'] = 'Compte client créé';
-$_MODULE['<{referralprogram}prestashop>program_7a81aa9275331bb0f5e6adb5e8650a03'] = 'ou Échap.';
-$_MODULE['<{referralprogram}prestashop>program_2b90ca4a7b1c83e0a3bb65899725cd65'] = 'Des e-mails de rappel ont été envoyés à vos amis !';
-$_MODULE['<{referralprogram}prestashop>program_58c7f2542ab2e2c3e4e39e851ea0f225'] = 'Mes amis parrainés';
-$_MODULE['<{referralprogram}prestashop>program_6e8dedb6b5dcad23e24d07c10aff29d8'] = 'Quand l\'un d\'entre eux passera au moins %d commande.';
-$_MODULE['<{referralprogram}prestashop>program_3aa40545dad78313e27017aa28c6cb7d'] = 'Il/Elle recevra un bon de réduction de %1$d et vous de même %2$d.';
-$_MODULE['<{referralprogram}prestashop>program_70a17ffa722a3985b86d30b034ad06d7'] = 'commande';
-$_MODULE['<{referralprogram}prestashop>program_3e717a04ff77cd5fa068d8ad9d3facc8'] = 'Dernière invitation';
-$_MODULE['<{referralprogram}prestashop>program_193f3d8bbaceba40499cab1a3545e9e8'] = 'Ici sont affichés les amis qui ont accepté votre invitation :';
-$_MODULE['<{referralprogram}prestashop>program_8cf04a9734132302f96da8e113e80ce5'] = 'Accueil';
-$_MODULE['<{referralprogram}prestashop>authentication_6b31baf25848e7a6563ecc3946626c80'] = 'Programme de parrainage';
-$_MODULE['<{referralprogram}prestashop>shopping-cart_6b31baf25848e7a6563ecc3946626c80'] = 'Programme de parrainage';
-$_MODULE['<{referralprogram}prestashop>shopping-cart_b76b807810393d9fce7f154d82aef1d1'] = 'Vous avez gagné un bon de réduction d\'une valeur de %s grâce à votre parrain !';
-$_MODULE['<{referralprogram}prestashop>shopping-cart_9a5b602be8d9b2d4b8c3f22911fba01d'] = 'Saisissez le nom du bon %s pour profiter de la réduction sur cette commande.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_83090230d3c11aa76851030eba008a71'] = 'Programme de parrainage client';
-$_MODULE['<{referralprogram}prestashop>referralprogram_d59ce2e96c0c2362a0a4269e0d874e32'] = 'Vous devez spécifier un montant pour les bons de réduction de parrainage.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_3c5db6c207f700f4f209b43bed966e96'] = 'Impossible de supprimer ce fichier :';
-$_MODULE['<{referralprogram}prestashop>referralprogram_18d0d79eb088abb4357e3666eec35660'] = 'Vous devez indiquer un pourcentage valables de remise.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_f4f70727dc34561dfde1a3c529b6205c'] = 'Paramètres';
-$_MODULE['<{referralprogram}prestashop>referralprogram_7ca3288a38b048b0df25394ccc22ad46'] = 'Nombre minimum de commandes qu\'un filleul doit passer afin de recevoir son bon de réduction :';
-$_MODULE['<{referralprogram}prestashop>referralprogram_edf7f0a17b8a8f1732f12856fcbc8a6b'] = 'Montant du bon de réduction';
-$_MODULE['<{referralprogram}prestashop>referralprogram_c5afb9c76a7880978cba32872d01f068'] = 'Mise à jour du texte';
-$_MODULE['<{referralprogram}prestashop>referralprogram_6b31baf25848e7a6563ecc3946626c80'] = 'Programme de parrainage';
-$_MODULE['<{referralprogram}prestashop>referralprogram_f964f762284ede747ed9f6428a5469b8'] = 'Ce client n\'a aucun parrain.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_58dc82d3e2e17ced0225064a9b496ee9'] = 'Ami parrainé :';
-$_MODULE['<{referralprogram}prestashop>referralprogram_325c8bbd07033a39d25b5c4457f79861'] = 'Clients parrainés par ce filleul';
-$_MODULE['<{referralprogram}prestashop>shopping-cart_106527986549f3ec8da1ae5a7abde467'] = 'Voir votre programme de parrainage.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_284033830e0eaf55340844305bf34fdd'] = 'Récompense parrainage';
-$_MODULE['<{referralprogram}prestashop>referralprogram_9ad4f790c8bb9be21a2fa388c7730353'] = 'Type de bon :';
-$_MODULE['<{referralprogram}prestashop>referralprogram_b718adec73e04ce3ec720dd11a06a308'] = 'ID';
-$_MODULE['<{referralprogram}prestashop>program_d3d2e617335f08df83599665eef8a418'] = 'Fermer';
-$_MODULE['<{referralprogram}prestashop>program_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'Mon compte';
-$_MODULE['<{referralprogram}prestashop>program_6540b502e953f4c05abeb8f234cd50bf'] = 'Programme de parrainage';
-$_MODULE['<{referralprogram}prestashop>program_6b31baf25848e7a6563ecc3946626c80'] = 'Programme de parrainage';
-$_MODULE['<{referralprogram}prestashop>program_3f8a4c7f93945fea0d951fa402ee4272'] = 'Veuillez cocher au moins une case';
-$_MODULE['<{referralprogram}prestashop>program_c56567bc42584de1a7ac430039b3a87e'] = 'Amis en attente';
-$_MODULE['<{referralprogram}prestashop>program_20db0bfeecd8fe60533206a2b5e9891a'] = 'Prénom';
-$_MODULE['<{referralprogram}prestashop>program_9386de858384e7f790a28beecdb986dd'] = 'Important : les e-mails de vos amis ne seront jamais utilisés à des fins autres que celles de notre programme.';
-$_MODULE['<{referralprogram}prestashop>program_605eef3cad421619ce034ab48415190f'] = 'J\'ai lu les conditions d\'utilisation et j\'y adhère sans réserves.';
-$_MODULE['<{referralprogram}prestashop>program_a86073a0c3b0bebf11bd807caf8e505a'] = 'l\'e-mail par défaut';
-$_MODULE['<{referralprogram}prestashop>program_ad3d06d03d94223fa652babc913de686'] = 'Valider';
-$_MODULE['<{referralprogram}prestashop>authentication_8fdb2298a0db461ac64e71192a562ca1'] = 'Adresse e-mail de votre parrain';
-$_MODULE['<{referralprogram}prestashop>my-account_6b31baf25848e7a6563ecc3946626c80'] = 'Parrainage';
-$_MODULE['<{referralprogram}prestashop>program_7532696b81dfc0b94a37e876677152c5'] = 'qui sera envoyé à vos amis.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_40604a195d001353d697b0fd26f5d8fe'] = 'Toutes les informations relatives aux parrains et leurs amis seront effacées. Êtes-vous sûr de vouloir désinstaller ce module ?';
-$_MODULE['<{referralprogram}prestashop>referralprogram_46a3a666d8823b972af8018a5242a3ac'] = 'Intègre un programme de parrainage à votre boutique';
-$_MODULE['<{referralprogram}prestashop>referralprogram_9611f10b809aa2daf5c0eb88153901d4'] = 'Valeur de la réduction pour la devise %d est vide.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_addae886b20a06e2954461706c90cd7d'] = 'Le type de réduction est n\'est pas valable.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_ac3357de2dec8d74d89dd378962ec621'] = 'Le nombre d\'amis est incorrect.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_96191c1f54bb6311624210333ef797eb'] = 'Impossible de fermer le fichier XML.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_624f983eb0713e10faf35ff3889e8d68'] = 'Nombre de filleuls dans le formulaire d\'invitation pour parrainage (compte client, section parrainage) :';
-$_MODULE['<{referralprogram}prestashop>referralprogram_8465d83b5c1b569299af284c14d957bb'] = 'Description du bon :';
-$_MODULE['<{referralprogram}prestashop>referralprogram_562ad64cf21ac2da656134355115133d'] = 'Vous devez spécifier un texte.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_6b719c160f9b08dad4760bcc4b52ed48'] = 'Conditions du programme de parrainage';
-$_MODULE['<{referralprogram}prestashop>referralprogram_94c69408d25102ba7ddcf3533b56c407'] = 'L\'objet Client est incorrecte.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_7790d51a3d62c85aae65464dee12ee8b'] = 'Parrain du client :';
-$_MODULE['<{referralprogram}prestashop>referralprogram_53d0d7aba39ee971f7f179e6e1092708'] = 'Amis parrainés :';
-$_MODULE['<{referralprogram}prestashop>referralprogram_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'E-mail';
-$_MODULE['<{referralprogram}prestashop>referralprogram_a82e0d057f443115e807bd6ca595fc8c'] = 'L\'objet Commande est incorrecte.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_8b80d4b6307990874b832cc15a92e5a3'] = 'Certain paramètres sont manquants.';
-$_MODULE['<{referralprogram}prestashop>program_dbc65cd60abde51277c2881ce915a225'] = 'Vous devez accepter les conditions du programme !';
-$_MODULE['<{referralprogram}prestashop>program_1019072b9e450c8652590cda2db45e49'] = 'Un ou plusieurs noms ou prénoms sont incorrects !';
-$_MODULE['<{referralprogram}prestashop>program_ff2d2e45b90b4426c3bb14bd56b95a2d'] = 'Quelqu\'un avec cette adresse e-mail est déjà enregistré !';
-$_MODULE['<{referralprogram}prestashop>program_dcc99d8715486f570db3ec5ee469a828'] = 'Impossible d\'ajouter des amis à la base de données';
-$_MODULE['<{referralprogram}prestashop>program_07b0f879b9bf9ec028d99df3880922f9'] = 'Obtenir un bon de réduction de %d pour vous et vos amis en recommandant notre boutique.';
-$_MODULE['<{referralprogram}prestashop>program_c92182a305ac874bae5e54d75bbd9327'] = 'Quand l\'un d\'entre eux passera au moins %d commandes.';
-$_MODULE['<{referralprogram}prestashop>program_31fde7b05ac8952dacf4af8a704074ec'] = 'Visualisez';
-$_MODULE['<{referralprogram}prestashop>program_8e8dc296c6bf3876468aa028974bfebe'] = 'E-mail d\'invitation';
-$_MODULE['<{referralprogram}prestashop>program_12c500ed0b7879105fb46af0f246be87'] = 'commandes';
-$_MODULE['<{referralprogram}prestashop>program_8b9f390369560635a2ba5ba271d953df'] = 'Vous n\'avez pas encore parrainé d\'ami.';
-$_MODULE['<{referralprogram}prestashop>program_8d4e5c2bc4c3cf67d2b59b263a707cb6'] = 'Aucun ami n\'a encore accepté votre invitation.';
-$_MODULE['<{referralprogram}prestashop>rules_01705c0177ebf5fbcbf4e882bc454405'] = 'Conditions du programme de parrainage';
-$_MODULE['<{referralprogram}prestashop>referralprogram_0b820748c24b934a6acdb881169eb81f'] = '%1$s %2$s n\'a parrainé aucun filleul pour le moment.';
diff --git a/modules/referralprogram/translations/it.php b/modules/referralprogram/translations/it.php
deleted file mode 100644
index 5561743e6..000000000
--- a/modules/referralprogram/translations/it.php
+++ /dev/null
@@ -1,109 +0,0 @@
-referralprogram_6c58031e7824c3cd6febc2f2107b0652'] = 'Configurazione aggiornata.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_167579019fe14b4efed431a82985d9ad'] = 'la quantità di ordine è necessaria / non valida.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_ee328e3466040a3e52db5d764b7b7e0c'] = 'Il valore dello sconto per la valuta #%d non è valido';
-$_MODULE['<{referralprogram}prestashop>referralprogram_46da7ad7d01e209241016d308f9fafce'] = 'Buono che offre una percentuale';
-$_MODULE['<{referralprogram}prestashop>referralprogram_97839379a0f447599405341b852e2e24'] = 'Buono che offre un importo fisso (per valuta)';
-$_MODULE['<{referralprogram}prestashop>referralprogram_3d5a011fdba2979f8d0ffd30b9f5c6ba'] = 'Percentuale:';
-$_MODULE['<{referralprogram}prestashop>program_83fc792f687bc45d75ac35c84c721a26'] = 'Almeno un indirizzo e-mail non è valido!';
-$_MODULE['<{referralprogram}prestashop>program_79cd362fc64832faa0a2079f1142aa12'] = 'Una e-mail è stata inviata ad un amico!';
-$_MODULE['<{referralprogram}prestashop>program_819e52b3c6ca4db131dcfea19188a0c3'] = 'Una mail di promemoria è stata inviata ad un amico!';
-$_MODULE['<{referralprogram}prestashop>program_46ee2fe8845962d24bf5178a26e109f3'] = 'Segnala i miei amici';
-$_MODULE['<{referralprogram}prestashop>program_8d3ae82bfa996855cdf841dd9e15a7e3'] = 'È veloce ed è facile. Basta compilare il nome, cognome e indirizzo/i di posta elettronica del tuo amico/amici nei campi sottostanti.';
-$_MODULE['<{referralprogram}prestashop>program_8d3f5eff9c40ee315d452392bed5309b'] = 'Cognome';
-$_MODULE['<{referralprogram}prestashop>program_1e884e3078d9978e216a027ecd57fb34'] = 'E-mail';
-$_MODULE['<{referralprogram}prestashop>program_868ca5fe643791c23b47c75fb833c9b8'] = 'Leggi le condizioni.';
-$_MODULE['<{referralprogram}prestashop>program_59352cd5314a67c0fb10c964831920f3'] = 'Per diventare un segnalatore, è necessario aver completato almeno';
-$_MODULE['<{referralprogram}prestashop>program_ec7342814444c667ab93181b30b28e38'] = 'Questi amici non hanno ancora effettuato un ordine su questo sito da quando li hai segnalati, ma puoi provare di nuovo! Per farlo, spunta le caselle degli amici che desideri ricordare, quindi fare clic sul pulsante \\"Ricorda il mio amico/i\\"';
-$_MODULE['<{referralprogram}prestashop>program_9c9d4ed270f02c72124702edb192ff19'] = 'Ricorda il mio amico/i';
-$_MODULE['<{referralprogram}prestashop>program_3c648ba41cfb45f13b083a9cbbacdfdf'] = 'Data di iscrizione';
-$_MODULE['<{referralprogram}prestashop>order-confirmation_f2ef523efa8d23f8afc29e195592fc58'] = 'Grazie per il tuo ordine, il tuo sponsor %1$s %2$s guadagnerà un coupon di %3$d quando il tuo ordine sarà confermato.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_fc6e0920b914b164802d44220e6163f3'] = 'Ordini effettuati';
-$_MODULE['<{referralprogram}prestashop>referralprogram_ceb0ce9b627fb9a962543f3271da29b1'] = 'Valore di sconto non valido.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_3d31dd445991f35b1ee6491eec7ac71c'] = 'Impossibile scrivere il file xml.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_21cc1fccae3b04bb8cd2719cc5269e1e'] = 'Impossibile aggiornare il file xml. Si prega di controllare i permessi di scrittura del file XML.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_5be920293db3e38c81330fd0798336b1'] = 'Campo html non valido, javascript è vietato';
-$_MODULE['<{referralprogram}prestashop>referralprogram_386c339d37e737a436499d423a77df0c'] = 'Valuta';
-$_MODULE['<{referralprogram}prestashop>referralprogram_b17f3f4dcf653a5776792498a9b44d6a'] = 'Aggiorna le impostazioni';
-$_MODULE['<{referralprogram}prestashop>referralprogram_49ee3087348e8d44e1feda1917443987'] = 'Nome';
-$_MODULE['<{referralprogram}prestashop>referralprogram_22ffd0379431f3b615eb8292f6c31d12'] = 'Data di registrazione';
-$_MODULE['<{referralprogram}prestashop>referralprogram_970ad4e4787cc75cd63dbf8d5c757513'] = 'Account cliente creato';
-$_MODULE['<{referralprogram}prestashop>program_7a81aa9275331bb0f5e6adb5e8650a03'] = 'o il tasto Esc';
-$_MODULE['<{referralprogram}prestashop>program_f6cb78f0afcf7c3a06048a7a5855d6a1'] = 'E-mail sono state inviate ai tuoi amici!';
-$_MODULE['<{referralprogram}prestashop>program_2b90ca4a7b1c83e0a3bb65899725cd65'] = 'E-mail di promemoria sono state inviate ai tuoi amici!';
-$_MODULE['<{referralprogram}prestashop>program_58c7f2542ab2e2c3e4e39e851ea0f225'] = 'Amici che ho segnalato';
-$_MODULE['<{referralprogram}prestashop>program_6e8dedb6b5dcad23e24d07c10aff29d8'] = 'Quando uno di loro effettua almeno %d ordine';
-$_MODULE['<{referralprogram}prestashop>program_3aa40545dad78313e27017aa28c6cb7d'] = 'Lui (o lei) riverà %1$d buono sconto e tu riceverai il tuo buono sconto del valore di %2$d';
-$_MODULE['<{referralprogram}prestashop>program_6b719c160f9b08dad4760bcc4b52ed48'] = 'Condizioni del programma di segnalazione';
-$_MODULE['<{referralprogram}prestashop>program_70a17ffa722a3985b86d30b034ad06d7'] = 'ordine';
-$_MODULE['<{referralprogram}prestashop>program_3e717a04ff77cd5fa068d8ad9d3facc8'] = 'ultimo invito';
-$_MODULE['<{referralprogram}prestashop>program_193f3d8bbaceba40499cab1a3545e9e8'] = 'Ecco gli amici segnalati che hanno accettato il tuo invito:';
-$_MODULE['<{referralprogram}prestashop>program_0b3db27bc15f682e92ff250ebb167d4b'] = 'Torna al tuo account';
-$_MODULE['<{referralprogram}prestashop>program_8cf04a9734132302f96da8e113e80ce5'] = 'Home';
-$_MODULE['<{referralprogram}prestashop>authentication_6b31baf25848e7a6563ecc3946626c80'] = 'Programma di segnalazione';
-$_MODULE['<{referralprogram}prestashop>shopping-cart_6b31baf25848e7a6563ecc3946626c80'] = 'Programma di segnalazione';
-$_MODULE['<{referralprogram}prestashop>shopping-cart_b76b807810393d9fce7f154d82aef1d1'] = 'Tu hai guadagnato un buono sconto del valore di %s grazie al tuo sponsor';
-$_MODULE['<{referralprogram}prestashop>shopping-cart_9a5b602be8d9b2d4b8c3f22911fba01d'] = 'Inserisci il nome del to buono sconto %s per ricevere uno sconto su questo ordine.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_83090230d3c11aa76851030eba008a71'] = 'Programma segnalazione clienti';
-$_MODULE['<{referralprogram}prestashop>referralprogram_d59ce2e96c0c2362a0a4269e0d874e32'] = 'Devi specificare una quantità di buoni programma di segnalazione';
-$_MODULE['<{referralprogram}prestashop>referralprogram_284033830e0eaf55340844305bf34fdd'] = 'Ricompensa segnalazione';
-$_MODULE['<{referralprogram}prestashop>referralprogram_3c5db6c207f700f4f209b43bed966e96'] = 'Non è possibile eliminare questo file:';
-$_MODULE['<{referralprogram}prestashop>referralprogram_18d0d79eb088abb4357e3666eec35660'] = 'Percentuale di sconto è necessario / valido.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_f4f70727dc34561dfde1a3c529b6205c'] = 'Impostazioni';
-$_MODULE['<{referralprogram}prestashop>referralprogram_7ca3288a38b048b0df25394ccc22ad46'] = 'Numero minimo di ordini che un amico segnalato deve eseguire per ottenere il voucher:';
-$_MODULE['<{referralprogram}prestashop>referralprogram_9ad4f790c8bb9be21a2fa388c7730353'] = 'Tipo di buono:';
-$_MODULE['<{referralprogram}prestashop>referralprogram_edf7f0a17b8a8f1732f12856fcbc8a6b'] = 'Importo buono';
-$_MODULE['<{referralprogram}prestashop>referralprogram_c5afb9c76a7880978cba32872d01f068'] = 'Aggiorna il testo';
-$_MODULE['<{referralprogram}prestashop>referralprogram_6b31baf25848e7a6563ecc3946626c80'] = 'Programma di segnalazione';
-$_MODULE['<{referralprogram}prestashop>referralprogram_f964f762284ede747ed9f6428a5469b8'] = 'Nessuno ha segnalato questo cliente.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_58dc82d3e2e17ced0225064a9b496ee9'] = 'cliente segnalato:';
-$_MODULE['<{referralprogram}prestashop>referralprogram_b718adec73e04ce3ec720dd11a06a308'] = 'ID';
-$_MODULE['<{referralprogram}prestashop>referralprogram_325c8bbd07033a39d25b5c4457f79861'] = 'Clienti segnalati da questo amico';
-$_MODULE['<{referralprogram}prestashop>program_d3d2e617335f08df83599665eef8a418'] = 'Chiudi';
-$_MODULE['<{referralprogram}prestashop>program_6540b502e953f4c05abeb8f234cd50bf'] = 'Programma di Segnalazione';
-$_MODULE['<{referralprogram}prestashop>program_6b31baf25848e7a6563ecc3946626c80'] = 'Programma di segnalazione';
-$_MODULE['<{referralprogram}prestashop>program_3f8a4c7f93945fea0d951fa402ee4272'] = 'Spunta almeno una casella';
-$_MODULE['<{referralprogram}prestashop>program_c56567bc42584de1a7ac430039b3a87e'] = 'Amici in attesa';
-$_MODULE['<{referralprogram}prestashop>program_20db0bfeecd8fe60533206a2b5e9891a'] = 'Nome';
-$_MODULE['<{referralprogram}prestashop>program_9386de858384e7f790a28beecdb986dd'] = 'Importante: gli indirizzi e-mail dei tuoi amici saranno utilizzati solo nel programma di segnalazione. Non saranno mai utilizzati per altri scopi.';
-$_MODULE['<{referralprogram}prestashop>program_605eef3cad421619ce034ab48415190f'] = 'Accetto i termini del servizio e vi aderisco incondizionatamente.';
-$_MODULE['<{referralprogram}prestashop>program_a86073a0c3b0bebf11bd807caf8e505a'] = 'l\'e-mail di default';
-$_MODULE['<{referralprogram}prestashop>program_7532696b81dfc0b94a37e876677152c5'] = 'che sarà inviata al tuo amico/amici.';
-$_MODULE['<{referralprogram}prestashop>program_ad3d06d03d94223fa652babc913de686'] = 'Convalida';
-$_MODULE['<{referralprogram}prestashop>authentication_8fdb2298a0db461ac64e71192a562ca1'] = 'Indirizzo e-mail della persona che ti ha segnalato';
-$_MODULE['<{referralprogram}prestashop>my-account_6b31baf25848e7a6563ecc3946626c80'] = 'Programma di segnalazione';
-$_MODULE['<{referralprogram}prestashop>shopping-cart_106527986549f3ec8da1ae5a7abde467'] = 'Visualizza il tuo programma di segnalazione.';
-$_MODULE['<{referralprogram}prestashop>program_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'Il mio conto';
-$_MODULE['<{referralprogram}prestashop>referralprogram_40604a195d001353d697b0fd26f5d8fe'] = 'Tutti gli sponsor e gli amici saranno cancellati. Sei sicuro di voler disinstallare questo modulo?';
-$_MODULE['<{referralprogram}prestashop>referralprogram_46a3a666d8823b972af8018a5242a3ac'] = 'Integra un sistema di programma di segnalazione nel tuo negozio.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_9611f10b809aa2daf5c0eb88153901d4'] = 'Il valore dello sconto per la valuta #%d è vuoto';
-$_MODULE['<{referralprogram}prestashop>referralprogram_addae886b20a06e2954461706c90cd7d'] = 'tipo di sconto è richiesto / non valido.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_ac3357de2dec8d74d89dd378962ec621'] = 'Numero di amici è richiesto / non valido.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_96191c1f54bb6311624210333ef797eb'] = 'Impossibile chiudere il file xml.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_624f983eb0713e10faf35ff3889e8d68'] = 'Numero di amici nel modulo di invito del programma di segnalazione (conto del cliente, sezione programma di segnalazione):';
-$_MODULE['<{referralprogram}prestashop>referralprogram_8465d83b5c1b569299af284c14d957bb'] = 'Descrizione buono:';
-$_MODULE['<{referralprogram}prestashop>referralprogram_562ad64cf21ac2da656134355115133d'] = 'Il testo è vuoto.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_6b719c160f9b08dad4760bcc4b52ed48'] = 'Condizioni del programma di riferimento';
-$_MODULE['<{referralprogram}prestashop>referralprogram_94c69408d25102ba7ddcf3533b56c407'] = 'Oggetto cliente errato';
-$_MODULE['<{referralprogram}prestashop>referralprogram_7790d51a3d62c85aae65464dee12ee8b'] = 'Sponsor del cliente.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_53d0d7aba39ee971f7f179e6e1092708'] = 'clienti segnalati:';
-$_MODULE['<{referralprogram}prestashop>referralprogram_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'E-mail';
-$_MODULE['<{referralprogram}prestashop>referralprogram_0b820748c24b934a6acdb881169eb81f'] = '%1$s %$2s non ha ancora sponsorizzato alcun amico.';
-$_MODULE['<{referralprogram}prestashop>referralprogram_a82e0d057f443115e807bd6ca595fc8c'] = 'Oggetto ordine errato';
-$_MODULE['<{referralprogram}prestashop>referralprogram_8b80d4b6307990874b832cc15a92e5a3'] = 'Parametri mancanti';
-$_MODULE['<{referralprogram}prestashop>program_dbc65cd60abde51277c2881ce915a225'] = 'È necessario accettare le condizioni del programma di segnalazione!';
-$_MODULE['<{referralprogram}prestashop>program_1019072b9e450c8652590cda2db45e49'] = 'Almeno un nome o cognome non è valido!';
-$_MODULE['<{referralprogram}prestashop>program_ff2d2e45b90b4426c3bb14bd56b95a2d'] = 'Qualcuno con questo indirizzo e-mail è già stato segnalato!';
-$_MODULE['<{referralprogram}prestashop>program_dcc99d8715486f570db3ec5ee469a828'] = 'Impossibile aggiungere amici alla banca dati';
-$_MODULE['<{referralprogram}prestashop>program_07b0f879b9bf9ec028d99df3880922f9'] = 'Ottieni uno sconto del %d per te ed I tuoi amici raccomandando questo sito';
-$_MODULE['<{referralprogram}prestashop>program_c92182a305ac874bae5e54d75bbd9327'] = 'Quando uno di loro effettua almeno %d ordini';
-$_MODULE['<{referralprogram}prestashop>program_31fde7b05ac8952dacf4af8a704074ec'] = 'Anteprima';
-$_MODULE['<{referralprogram}prestashop>program_8e8dc296c6bf3876468aa028974bfebe'] = 'Invito e-mail';
-$_MODULE['<{referralprogram}prestashop>program_12c500ed0b7879105fb46af0f246be87'] = 'ordini';
-$_MODULE['<{referralprogram}prestashop>program_8b9f390369560635a2ba5ba271d953df'] = 'Non hai segnalato nessun amico.';
-$_MODULE['<{referralprogram}prestashop>program_8d4e5c2bc4c3cf67d2b59b263a707cb6'] = 'Nessun amico segnalato ha ancora accettato il tuo invito.';
-$_MODULE['<{referralprogram}prestashop>rules_01705c0177ebf5fbcbf4e882bc454405'] = 'Regole programma di segnalazione';
diff --git a/modules/sekeywords/translations/de.php b/modules/sekeywords/translations/de.php
deleted file mode 100644
index ec3e23d2b..000000000
--- a/modules/sekeywords/translations/de.php
+++ /dev/null
@@ -1,26 +0,0 @@
-sekeywords_867343577fa1f33caa632a19543bd252'] = 'Keywords';
-$_MODULE['<{sekeywords}prestashop>sekeywords_6e632566b6e16dbd2273e83d7c53182b'] = 'und Mindestvorkommen';
-$_MODULE['<{sekeywords}prestashop>sekeywords_6602bbeb2956c035fb4cb5e844a4861b'] = 'Guide';
-$_MODULE['<{sekeywords}prestashop>sekeywords_722e091cccbd9a9ec8f4a35bf1f35893'] = 'Der Server erkennt die Urspungs-URL von der ein Besucher kommt. Dieses Modul übergibt diese URL und sucht nach enthaltenen Keywords.';
-$_MODULE['<{sekeywords}prestashop>sekeywords_50dca930b804e845a852512b44d51c52'] = 'Bald wird es möglich sein, eine neue Suchmaschine dynamisch hinzufügen und zu diesem Modul beizutragen!';
-$_MODULE['<{sekeywords}prestashop>sekeywords_e15832aa200f342e8f4ab580b43a72a8'] = '10 erste Keywords';
-$_MODULE['<{sekeywords}prestashop>sekeywords_5029f8eef402bb8ddd6191dffb5e7c19'] = '%d Keywords treffen auf Ihre Anfrage zu.';
-$_MODULE['<{sekeywords}prestashop>sekeywords_e52e6aa1a43a0187e44f048f658db5f9'] = 'Vorkommen';
-$_MODULE['<{sekeywords}prestashop>sekeywords_998e4c5c80f27dec552e99dfed34889a'] = 'CSV-Export';
-$_MODULE['<{sekeywords}prestashop>sekeywords_0849140171616600e8f2c35f0a225212'] = 'Filtern nach Keyword';
-$_MODULE['<{sekeywords}prestashop>sekeywords_fa73b7cd0d2681f6d871c9ef4023ad39'] = 'Anwenden';
-$_MODULE['<{sekeywords}prestashop>sekeywords_9ed50bd6876a9273f2192c224b87657b'] = 'Externe Suchmaschinen-Keywords identifizieren';
-$_MODULE['<{sekeywords}prestashop>sekeywords_52ef9633d88a7480b3a938ff9eaa2a25'] = 'Andere';
-$_MODULE['<{sekeywords}prestashop>sekeywords_65b0b42febc8ea16db4652eab6f420a4'] = 'Suchmaschinen-Keywords';
-$_MODULE['<{sekeywords}prestashop>sekeywords_de13be6263895a5efe4d51e15ab1535e'] = 'Anzeigen, durch welche Keywords Besucher Ihre Webseite gefunden haben';
-$_MODULE['<{sekeywords}prestashop>sekeywords_16d5f8dc3bc4411c85848ae9cf6a947a'] = '%d Keyword trifft auf Ihre Anfrage zu.';
-$_MODULE['<{sekeywords}prestashop>sekeywords_0d7ce5d105706cedba41887d3f1c0ea1'] = 'Die Identifizierung der beliebtesten Keywords, welche ein neuer Besucher eingibt gibt Aufschluss darüber, welche Artikel auf der Startseite platziert werden sollten, um weitere Besucher und Neukunden zu gewinnen.';
-$_MODULE['<{sekeywords}prestashop>sekeywords_7b48f6cc4a1dde7fca9597e717c2465f'] = 'Keine Keywords';
-$_MODULE['<{sekeywords}prestashop>sekeywords_6534eadba477de8a632ff59ac20b572f'] = 'Einer der gängigsten Möglichkieten eine Website durch eine Suchmaschine zu finden.';
-$_MODULE['<{sekeywords}prestashop>sekeywords_359f9e79e746fa9f684e5cda9e60ca2e'] = 'Wie funktioniert das?';
-$_MODULE['<{sekeywords}prestashop>sekeywords_d8b08c48a8d8e739399594adec89458a'] = 'Derzeit werden folgende Suchmaschinen evrwaltet: %1$s und %2$s.';
diff --git a/modules/sekeywords/translations/en.php b/modules/sekeywords/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/sekeywords/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-sekeywords_867343577fa1f33caa632a19543bd252'] = 'Palabras clave';
-$_MODULE['<{sekeywords}prestashop>sekeywords_6e632566b6e16dbd2273e83d7c53182b'] = 'y un mínimo de incidencias';
-$_MODULE['<{sekeywords}prestashop>sekeywords_6602bbeb2956c035fb4cb5e844a4861b'] = 'Guía';
-$_MODULE['<{sekeywords}prestashop>sekeywords_722e091cccbd9a9ec8f4a35bf1f35893'] = 'Cuando un visitante llega a su sitio web, el servidor toma nota de su ubicación anterior.Este módulo analiza la URL y encuentra las palabras clave en ella.';
-$_MODULE['<{sekeywords}prestashop>sekeywords_50dca930b804e845a852512b44d51c52'] = '¡Pronto será posible agregar dinámicamente un nuevo motor de búsqueda y colaborar en este módulo!';
-$_MODULE['<{sekeywords}prestashop>sekeywords_e15832aa200f342e8f4ab580b43a72a8'] = '10 primeras palabras clave';
-$_MODULE['<{sekeywords}prestashop>sekeywords_5029f8eef402bb8ddd6191dffb5e7c19'] = '%d palabras clave encontrada para su búsqueda.';
-$_MODULE['<{sekeywords}prestashop>sekeywords_e52e6aa1a43a0187e44f048f658db5f9'] = 'Frecuencia';
-$_MODULE['<{sekeywords}prestashop>sekeywords_998e4c5c80f27dec552e99dfed34889a'] = 'CSV Export';
-$_MODULE['<{sekeywords}prestashop>sekeywords_0849140171616600e8f2c35f0a225212'] = 'Filtrar por palabra clave';
-$_MODULE['<{sekeywords}prestashop>sekeywords_fa73b7cd0d2681f6d871c9ef4023ad39'] = 'Aplicar';
-$_MODULE['<{sekeywords}prestashop>sekeywords_9ed50bd6876a9273f2192c224b87657b'] = 'Identifique las palabras claves externas en los motores de la búsqueda';
-$_MODULE['<{sekeywords}prestashop>sekeywords_52ef9633d88a7480b3a938ff9eaa2a25'] = 'Otros';
-$_MODULE['<{sekeywords}prestashop>sekeywords_65b0b42febc8ea16db4652eab6f420a4'] = 'Palabras clave en el motor de búsqueda';
-$_MODULE['<{sekeywords}prestashop>sekeywords_de13be6263895a5efe4d51e15ab1535e'] = 'Mostrar qué palabras claves han llevado visitantes a su tienda';
-$_MODULE['<{sekeywords}prestashop>sekeywords_16d5f8dc3bc4411c85848ae9cf6a947a'] = '%d palabra clave encontrada para su búsqueda.';
-$_MODULE['<{sekeywords}prestashop>sekeywords_0d7ce5d105706cedba41887d3f1c0ea1'] = 'La identificación de las palabras clave más populares escritos por sus visitantes nuevosle permite ver los productos que usted debe poner por delante si quiere atraer a más visitantes y clientes potenciales.';
-$_MODULE['<{sekeywords}prestashop>sekeywords_7b48f6cc4a1dde7fca9597e717c2465f'] = 'No hay palabras clave';
-$_MODULE['<{sekeywords}prestashop>sekeywords_6534eadba477de8a632ff59ac20b572f'] = 'Una de las maneras más comunes de encontrar un sitio web a través de un motor de búsqueda.';
-$_MODULE['<{sekeywords}prestashop>sekeywords_359f9e79e746fa9f684e5cda9e60ca2e'] = '¿Cómo funciona?';
-$_MODULE['<{sekeywords}prestashop>sekeywords_d8b08c48a8d8e739399594adec89458a'] = 'En la actualidad, gestiona los siguientes motores de búsqueda: %1$s y %2$s.';
diff --git a/modules/sekeywords/translations/fr.php b/modules/sekeywords/translations/fr.php
deleted file mode 100644
index 9bf834cd1..000000000
--- a/modules/sekeywords/translations/fr.php
+++ /dev/null
@@ -1,26 +0,0 @@
-sekeywords_867343577fa1f33caa632a19543bd252'] = 'Mots-clés';
-$_MODULE['<{sekeywords}prestashop>sekeywords_6e632566b6e16dbd2273e83d7c53182b'] = 'et minimum d\'occurrences';
-$_MODULE['<{sekeywords}prestashop>sekeywords_6602bbeb2956c035fb4cb5e844a4861b'] = 'Guide';
-$_MODULE['<{sekeywords}prestashop>sekeywords_722e091cccbd9a9ec8f4a35bf1f35893'] = 'Quand un visiteur vient sur votre site web, le serveur récupère leur emplacement précédent. Ce module analyse l\'URL et trouve les mots-clés en elle.';
-$_MODULE['<{sekeywords}prestashop>sekeywords_50dca930b804e845a852512b44d51c52'] = 'Bientôt il sera possible d\'ajouter dynamiquement de nouveaux moteurs de recherche à cette liste, et ainsi contribuer au développement du module !';
-$_MODULE['<{sekeywords}prestashop>sekeywords_e15832aa200f342e8f4ab580b43a72a8'] = '10 premiers mots-clés';
-$_MODULE['<{sekeywords}prestashop>sekeywords_5029f8eef402bb8ddd6191dffb5e7c19'] = '%d mots-clés trouvés pour votre recherche.';
-$_MODULE['<{sekeywords}prestashop>sekeywords_e52e6aa1a43a0187e44f048f658db5f9'] = 'Occurrences';
-$_MODULE['<{sekeywords}prestashop>sekeywords_998e4c5c80f27dec552e99dfed34889a'] = 'Export CSV ';
-$_MODULE['<{sekeywords}prestashop>sekeywords_0849140171616600e8f2c35f0a225212'] = 'Filter par mot-clé';
-$_MODULE['<{sekeywords}prestashop>sekeywords_9ed50bd6876a9273f2192c224b87657b'] = 'Identifier les mots-clés par moteurs de recherche externes';
-$_MODULE['<{sekeywords}prestashop>sekeywords_52ef9633d88a7480b3a938ff9eaa2a25'] = 'Autres';
-$_MODULE['<{sekeywords}prestashop>sekeywords_fa73b7cd0d2681f6d871c9ef4023ad39'] = 'Appliquer';
-$_MODULE['<{sekeywords}prestashop>sekeywords_65b0b42febc8ea16db4652eab6f420a4'] = 'Mots-clés';
-$_MODULE['<{sekeywords}prestashop>sekeywords_de13be6263895a5efe4d51e15ab1535e'] = 'Affiche les mots-clés qui ont mené les visiteurs jusqu\'à votre boutique.';
-$_MODULE['<{sekeywords}prestashop>sekeywords_16d5f8dc3bc4411c85848ae9cf6a947a'] = '%d mot-clé trouvé pour votre recherche.';
-$_MODULE['<{sekeywords}prestashop>sekeywords_0d7ce5d105706cedba41887d3f1c0ea1'] = 'Identifier les mots clés les plus populaires saisies par vos nouveaux visiteurs vous permet de voir quels produits vous devriez mettre en avant si vous voulez attirer plus de visiteurs et clients potentiels.';
-$_MODULE['<{sekeywords}prestashop>sekeywords_7b48f6cc4a1dde7fca9597e717c2465f'] = 'Aucun mot-clé';
-$_MODULE['<{sekeywords}prestashop>sekeywords_6534eadba477de8a632ff59ac20b572f'] = 'Une des façons les plus courantes de trouver un site web grâce à un moteur de recherche.';
-$_MODULE['<{sekeywords}prestashop>sekeywords_359f9e79e746fa9f684e5cda9e60ca2e'] = 'Comment ça marche ?';
-$_MODULE['<{sekeywords}prestashop>sekeywords_d8b08c48a8d8e739399594adec89458a'] = 'Actuellement, il gère les moteurs de recherche suivants: %1$s et %2$s.';
diff --git a/modules/sekeywords/translations/it.php b/modules/sekeywords/translations/it.php
deleted file mode 100644
index e87c48c20..000000000
--- a/modules/sekeywords/translations/it.php
+++ /dev/null
@@ -1,26 +0,0 @@
-sekeywords_6e632566b6e16dbd2273e83d7c53182b'] = 'e min. di occorrenze';
-$_MODULE['<{sekeywords}prestashop>sekeywords_6602bbeb2956c035fb4cb5e844a4861b'] = 'Guida';
-$_MODULE['<{sekeywords}prestashop>sekeywords_722e091cccbd9a9ec8f4a35bf1f35893'] = 'Quando un visitatore arriva al tuo sito web, il server registra la loro posizione precedente. Questo modulo analizza l\'URL e trova le parole chiave in essa.';
-$_MODULE['<{sekeywords}prestashop>sekeywords_50dca930b804e845a852512b44d51c52'] = 'Presto sarà possibile aggiungere dinamicamente un nuovo motore di ricerca e contribuire a questo modulo!';
-$_MODULE['<{sekeywords}prestashop>sekeywords_e15832aa200f342e8f4ab580b43a72a8'] = 'Le prime 10 parole chiave';
-$_MODULE['<{sekeywords}prestashop>sekeywords_867343577fa1f33caa632a19543bd252'] = 'Parole chiave';
-$_MODULE['<{sekeywords}prestashop>sekeywords_5029f8eef402bb8ddd6191dffb5e7c19'] = 'La parola chiave %d corrisponde alla tua ricerca.';
-$_MODULE['<{sekeywords}prestashop>sekeywords_e52e6aa1a43a0187e44f048f658db5f9'] = 'Occorrenze';
-$_MODULE['<{sekeywords}prestashop>sekeywords_998e4c5c80f27dec552e99dfed34889a'] = 'CSV Export';
-$_MODULE['<{sekeywords}prestashop>sekeywords_0849140171616600e8f2c35f0a225212'] = 'Filtra per parole chiave';
-$_MODULE['<{sekeywords}prestashop>sekeywords_fa73b7cd0d2681f6d871c9ef4023ad39'] = 'Applica';
-$_MODULE['<{sekeywords}prestashop>sekeywords_9ed50bd6876a9273f2192c224b87657b'] = 'Identifica parole chiave motori di ricerca estenri';
-$_MODULE['<{sekeywords}prestashop>sekeywords_52ef9633d88a7480b3a938ff9eaa2a25'] = 'Altri';
-$_MODULE['<{sekeywords}prestashop>sekeywords_65b0b42febc8ea16db4652eab6f420a4'] = 'parole chiave dei motori di ricerca';
-$_MODULE['<{sekeywords}prestashop>sekeywords_de13be6263895a5efe4d51e15ab1535e'] = 'Visualizza le parole chiave che hanno portato i visitatori del tuo sito web';
-$_MODULE['<{sekeywords}prestashop>sekeywords_16d5f8dc3bc4411c85848ae9cf6a947a'] = 'La parola chiave %d corrisponde alla tua ricerca.';
-$_MODULE['<{sekeywords}prestashop>sekeywords_0d7ce5d105706cedba41887d3f1c0ea1'] = 'Identificare le parole chiave più popolari inseriti dai vostri nuovi visitatori ti permette di vedere quali prodotti si dovrebbe mettere in evidenza, se si vuole attirare più visitatori e potenziali clienti.';
-$_MODULE['<{sekeywords}prestashop>sekeywords_7b48f6cc4a1dde7fca9597e717c2465f'] = 'Nessuna parola chiave';
-$_MODULE['<{sekeywords}prestashop>sekeywords_6534eadba477de8a632ff59ac20b572f'] = 'Uno dei modi più comuni di trovare un sito web attraverso un motore di ricerca.';
-$_MODULE['<{sekeywords}prestashop>sekeywords_359f9e79e746fa9f684e5cda9e60ca2e'] = 'Come funziona?';
-$_MODULE['<{sekeywords}prestashop>sekeywords_d8b08c48a8d8e739399594adec89458a'] = 'Attualmente, gestisce i seguenti motori di ricerca: %1$s e %2$s.';
diff --git a/modules/sendtoafriend/mails/de/index.php b/modules/sendtoafriend/mails/de/index.php
deleted file mode 100644
index 3f6561f72..000000000
--- a/modules/sendtoafriend/mails/de/index.php
+++ /dev/null
@@ -1,35 +0,0 @@
-
-* @copyright 2007-2013 PrestaShop SA
-* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
-* International Registered Trademark & Property of PrestaShop SA
-*/
-
-header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
-header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
-
-header("Cache-Control: no-store, no-cache, must-revalidate");
-header("Cache-Control: post-check=0, pre-check=0", false);
-header("Pragma: no-cache");
-
-header("Location: ../");
-exit;
\ No newline at end of file
diff --git a/modules/sendtoafriend/mails/de/send_to_a_friend.html b/modules/sendtoafriend/mails/de/send_to_a_friend.html
deleted file mode 100644
index 8a872b6f0..000000000
--- a/modules/sendtoafriend/mails/de/send_to_a_friend.html
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
-
- Nachricht von {shop_name}
-
-
-
-
-
-
-
-
-
-
-
-
Hallo {name},
-
-
-
-
-
-
{customer} hat Ihnen einen Link zu dem Produkt gesandt, das Sie interessieren könnte.
-
-
-
-
-
-
Klicken Sie hier, um den Artikel zu sehen: {product}
-
-
-
\ No newline at end of file
diff --git a/modules/sendtoafriend/mails/it/send_to_a_friend.txt b/modules/sendtoafriend/mails/it/send_to_a_friend.txt
deleted file mode 100644
index 4e54dc4fe..000000000
--- a/modules/sendtoafriend/mails/it/send_to_a_friend.txt
+++ /dev/null
@@ -1,13 +0,0 @@
-Salve {name},
-
-
-{customer} ti ha inviato un link per un prodotto che potrebbe interessarti.
-
-{product}: {product_link}
-
-
-{shop_name} - {shop_url}
-
-
-
-{shop_url} powered by PrestaShop™
\ No newline at end of file
diff --git a/modules/sendtoafriend/translations/de.php b/modules/sendtoafriend/translations/de.php
deleted file mode 100644
index 6b52d2c06..000000000
--- a/modules/sendtoafriend/translations/de.php
+++ /dev/null
@@ -1,25 +0,0 @@
-sendtoafriend-extra_5d6103b662f41b07e10687f03aca8fdc'] = 'Empfänger:';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend-extra_099bc8914b5be9e522a29e48cb3c01c4'] = 'E-Mailadresses deiner/es Freundin/es';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend_68728c1897e5936032fe21ffb6b10c2e'] = 'Zurück zur Produktseite';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend_ajax_22c4733a9ceb239bf825a0cecd1cfaec'] = 'Ein Freund';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend-extra_d1f092e79827eaffce4a33fa011fde24'] = 'Bitte füllen Sie alle Pflichtfelder aus';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend-extra_94966d90747b97d1f0f206c98a8b1ac3'] = 'Senden';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend_2107f6398c37b4b9ee1e1b5afb5d3b2a'] = 'An einen Freund senden';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend_b31afdfa73c89b567778f15180c2dd6c'] = 'Ihre Email wurde erfolgreich versendet';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend-extra_2107f6398c37b4b9ee1e1b5afb5d3b2a'] = 'An einen Freund senden';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend-extra_70397c4b252a5168c5ec003931cea215'] = 'Pflichtfelder';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend-extra_e81c4e4f2b7b93b481e13a8553c2ae1b'] = 'oder';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend_20589174124c25654cac3736e737d2a3'] = 'Senden Sie diese Seite einem Freund, der an diesem Artiekl interessiert sein könnte.';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend_19f41c3d6db934fb2db1840ddefd2c51'] = 'E-Mail des Freundes:';
-$_MODULE['<{sendtoafriend}prestashop>product_page_2107f6398c37b4b9ee1e1b5afb5d3b2a'] = 'An einen Freund senden';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend-extra_bb6aa0be8236a10e6d3b315ebd5f2547'] = 'Name deiner/es Freundin/es';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend-extra_ea4788705e6873b424c65e91c2846b19'] = 'Abbrechen';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend_2074615eb70699e55b1f9289c6c77c25'] = 'An einen Freund senden-Modul';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend_3234e2609dd694d8763c390fe97eba04'] = 'Ermöglicht den Kunden, einen Produktlink an einen Freund zu senden';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend_e55de03786f359e2b133f2a74612eba6'] = 'Name des Freundes:';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend_2541d938b0a58946090d7abdde0d3890'] = 'senden';
diff --git a/modules/sendtoafriend/translations/en.php b/modules/sendtoafriend/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/sendtoafriend/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-sendtoafriend-extra_5d6103b662f41b07e10687f03aca8fdc'] = 'Recipiente';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend-extra_099bc8914b5be9e522a29e48cb3c01c4'] = 'E-mail de tu amigo';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend_68728c1897e5936032fe21ffb6b10c2e'] = 'Volver a la página del producto';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend_ajax_22c4733a9ceb239bf825a0cecd1cfaec'] = 'Un amigo';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend-extra_d1f092e79827eaffce4a33fa011fde24'] = 'No ha rellenado los campos necesarios';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend-extra_94966d90747b97d1f0f206c98a8b1ac3'] = 'Enviar';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend_2107f6398c37b4b9ee1e1b5afb5d3b2a'] = 'Enviar a un amigo';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend_b31afdfa73c89b567778f15180c2dd6c'] = 'Su email ha sido enviado con éxito';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend-extra_2107f6398c37b4b9ee1e1b5afb5d3b2a'] = 'Enviar a un amigo';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend-extra_70397c4b252a5168c5ec003931cea215'] = 'Campos obligatorios';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend-extra_e81c4e4f2b7b93b481e13a8553c2ae1b'] = 'total';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend_20589174124c25654cac3736e737d2a3'] = 'Enviar esta página a un amigo al que podía interesarle este artículo.';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend_19f41c3d6db934fb2db1840ddefd2c51'] = 'Email del amigo:';
-$_MODULE['<{sendtoafriend}prestashop>product_page_2107f6398c37b4b9ee1e1b5afb5d3b2a'] = 'Enviar a un amigo';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend-extra_bb6aa0be8236a10e6d3b315ebd5f2547'] = 'Nombre de tu amigo';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend-extra_ea4788705e6873b424c65e91c2846b19'] = 'Anular';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend_2074615eb70699e55b1f9289c6c77c25'] = 'Módulo enviar a un amigo';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend_3234e2609dd694d8763c390fe97eba04'] = 'Permitir a los clientes enviar un enlace del producto a un amigo';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend_e55de03786f359e2b133f2a74612eba6'] = 'nombre del amigo:';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend_2541d938b0a58946090d7abdde0d3890'] = 'enviar';
diff --git a/modules/sendtoafriend/translations/fr.php b/modules/sendtoafriend/translations/fr.php
deleted file mode 100644
index 7f659b530..000000000
--- a/modules/sendtoafriend/translations/fr.php
+++ /dev/null
@@ -1,25 +0,0 @@
-sendtoafriend-extra_5d6103b662f41b07e10687f03aca8fdc'] = 'Destinataire';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend-extra_099bc8914b5be9e522a29e48cb3c01c4'] = 'Adresse e-mail de votre ami';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend_68728c1897e5936032fe21ffb6b10c2e'] = 'Retour à la fiche produit';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend_ajax_22c4733a9ceb239bf825a0cecd1cfaec'] = 'Un ami';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend-extra_d1f092e79827eaffce4a33fa011fde24'] = 'Vous n\'avez pas rempli les champs requis';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend-extra_94966d90747b97d1f0f206c98a8b1ac3'] = 'Envoyer';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend_2107f6398c37b4b9ee1e1b5afb5d3b2a'] = 'Envoyer à un ami';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend_b31afdfa73c89b567778f15180c2dd6c'] = 'Votre e-mail a bien été envoyé';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend-extra_2107f6398c37b4b9ee1e1b5afb5d3b2a'] = 'Envoyer à un ami';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend-extra_70397c4b252a5168c5ec003931cea215'] = 'Champs requis';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend-extra_e81c4e4f2b7b93b481e13a8553c2ae1b'] = 'ou';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend_20589174124c25654cac3736e737d2a3'] = 'Envoyer la page à un ami qui pourrait être intéressé par le produit ci-dessous.';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend_19f41c3d6db934fb2db1840ddefd2c51'] = 'Email de votre ami :';
-$_MODULE['<{sendtoafriend}prestashop>product_page_2107f6398c37b4b9ee1e1b5afb5d3b2a'] = 'Envoyer à un ami';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend-extra_ea4788705e6873b424c65e91c2846b19'] = 'Annuler';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend_2074615eb70699e55b1f9289c6c77c25'] = 'Module envoyer à un ami';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend_3234e2609dd694d8763c390fe97eba04'] = 'Permet à vos clients d\'envoyer des liens à leurs amis.';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend_e55de03786f359e2b133f2a74612eba6'] = 'Nom de votre ami :';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend_2541d938b0a58946090d7abdde0d3890'] = 'envoyer';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend-extra_bb6aa0be8236a10e6d3b315ebd5f2547'] = 'Nom de votre ami';
diff --git a/modules/sendtoafriend/translations/it.php b/modules/sendtoafriend/translations/it.php
deleted file mode 100644
index 6ad299acb..000000000
--- a/modules/sendtoafriend/translations/it.php
+++ /dev/null
@@ -1,25 +0,0 @@
-sendtoafriend-extra_5d6103b662f41b07e10687f03aca8fdc'] = 'Destinatario';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend-extra_099bc8914b5be9e522a29e48cb3c01c4'] = 'Indirizzo email del tuo amico';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend_68728c1897e5936032fe21ffb6b10c2e'] = 'Torna alla pagina del prodotto';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend_ajax_22c4733a9ceb239bf825a0cecd1cfaec'] = 'Un amico';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend-extra_d1f092e79827eaffce4a33fa011fde24'] = 'Non hai riempito campi richiesti';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend-extra_94966d90747b97d1f0f206c98a8b1ac3'] = 'Invia';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend_2107f6398c37b4b9ee1e1b5afb5d3b2a'] = 'Invia ad un amico';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend_b31afdfa73c89b567778f15180c2dd6c'] = 'La tua mail è stata inviata con successo';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend-extra_2107f6398c37b4b9ee1e1b5afb5d3b2a'] = 'Invia ad un amico';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend-extra_70397c4b252a5168c5ec003931cea215'] = 'Campi richiesti';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend-extra_e81c4e4f2b7b93b481e13a8553c2ae1b'] = 'o';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend_19f41c3d6db934fb2db1840ddefd2c51'] = 'E-mail del tuo amico:';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend_20589174124c25654cac3736e737d2a3'] = 'Invia questa pagina ad un amico che potrebbe essere interessato all\'articolo seguente.';
-$_MODULE['<{sendtoafriend}prestashop>product_page_2107f6398c37b4b9ee1e1b5afb5d3b2a'] = 'Invia ad un amico';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend-extra_bb6aa0be8236a10e6d3b315ebd5f2547'] = 'Nome del tuo amico';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend-extra_ea4788705e6873b424c65e91c2846b19'] = 'Annulla';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend_2074615eb70699e55b1f9289c6c77c25'] = 'Modulo Invia ad un amico';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend_3234e2609dd694d8763c390fe97eba04'] = 'Consente ai clienti di inviare un link prodotto a un amico';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend_e55de03786f359e2b133f2a74612eba6'] = 'Nome dell\'amico:';
-$_MODULE['<{sendtoafriend}prestashop>sendtoafriend_2541d938b0a58946090d7abdde0d3890'] = 'invia';
diff --git a/modules/shopimporter/translations/de.php b/modules/shopimporter/translations/de.php
deleted file mode 100644
index 9267606dc..000000000
--- a/modules/shopimporter/translations/de.php
+++ /dev/null
@@ -1,95 +0,0 @@
-ajax_10f237be40b3205ba97da9b89d290c30'] = 'Kann keine Datenbank auswählen.';
-$_MODULE['<{shopimporter}prestashop>shopimporter_8c0fe18034f47d7d3dd3e58098e3ffdb'] = 'Dieses Modul ermöglicht es Ihnen, Ihren Shop aus einem anderen System zu prestashop zu importieren';
-$_MODULE['<{shopimporter}prestashop>shopimporter_94c5ffc9d364127b232f58b4cfd8c88a'] = 'Steuern importieren';
-$_MODULE['<{shopimporter}prestashop>shopimporter_3c994b8c6c4e8b756185f74ded711f69'] = 'Steuerregeln';
-$_MODULE['<{shopimporter}prestashop>shopimporter_b3ff996fe5c77610359114835baf9b38'] = 'Zone';
-$_MODULE['<{shopimporter}prestashop>shopimporter_46a2a41cc6e552044816a2d04634545d'] = 'Staat';
-$_MODULE['<{shopimporter}prestashop>shopimporter_77497d022aeb4cdd78ec394ca8d223b4'] = 'Adressen importieren';
-$_MODULE['<{shopimporter}prestashop>shopimporter_0ae5f9c75e6a7460ec31e33201576bd9'] = 'Zulieferer importieren';
-$_MODULE['<{shopimporter}prestashop>shopimporter_1f5a36b380c53d7f82e762baa08c2e5c'] = 'Attributgruppen';
-$_MODULE['<{shopimporter}prestashop>shopimporter_7eb915ee907703ede51dabab88fc1701'] = 'Attributgruppen importieren';
-$_MODULE['<{shopimporter}prestashop>shopimporter_47ac923d219501859fb68fed8c8db77b'] = 'Kombination';
-$_MODULE['<{shopimporter}prestashop>shopimporter_58e2fcec5e04716c627b3e8b9d2955b1'] = 'Produktkombinationen importieren';
-$_MODULE['<{shopimporter}prestashop>shopimporter_3b7e768ebab2171baa41d5ea13017b02'] = 'Bestellungen importieren';
-$_MODULE['<{shopimporter}prestashop>shopimporter_782c8b38bce4f2f6975ca7f33ac8189b'] = 'Bestellverlauf';
-$_MODULE['<{shopimporter}prestashop>shopimporter_3596c777cbc8b72d678f34daabc9148b'] = 'Fehler anzeigen';
-$_MODULE['<{shopimporter}prestashop>shopimporter_151a0fbfcc4894aa53335091c2512de5'] = 'Kein Import-Modul installiert';
-$_MODULE['<{shopimporter}prestashop>shopimporter_2bb4cbbf4c51025867d47131e79ad05f'] = 'Nächster Schritt';
-$_MODULE['<{shopimporter}prestashop>shopimporter_35f178a340d9aa1a080d8cfaf0b57f36'] = 'Falls Fehler auftreten';
-$_MODULE['<{shopimporter}prestashop>shopimporter_35a6535254a93c5338bff1e3572755d2'] = 'Erzwingen: wenn die Daten fehlerhaft sind, ersetzt der Import fehlerhafte Daten durch Ersatzdaten.';
-$_MODULE['<{shopimporter}prestashop>shopimporter_807079d19357b6d44089c220f74cc2d0'] = 'Bitte ändern Sie die Standardsprache in Ihrer Konfiguration';
-$_MODULE['<{shopimporter}prestashop>shopimporter_6117c4d73fcf0c20fe3946f1d00dde85'] = 'Bitte ändern Sie die Standardwährung in Ihrer Konfiguration';
-$_MODULE['<{shopimporter}prestashop>shopimporter_d714c742b360a8ecbb124c15e9a391a1'] = 'Shop Importeur';
-$_MODULE['<{shopimporter}prestashop>shopimporter_386c339d37e737a436499d423a77df0c'] = 'Währung';
-$_MODULE['<{shopimporter}prestashop>shopimporter_03937134cedab9078be39a77ee3a48a0'] = 'Gruppe';
-$_MODULE['<{shopimporter}prestashop>shopimporter_dd7bf230fde8d4836917806aff6a6b27'] = 'Adresse';
-$_MODULE['<{shopimporter}prestashop>shopimporter_c0bd7654d5b278e65f21cf4e9153fdb4'] = 'Hersteller';
-$_MODULE['<{shopimporter}prestashop>shopimporter_ed4cbbbeb3d575ccfeb405ae5c5c4d43'] = 'Hersteller importieren';
-$_MODULE['<{shopimporter}prestashop>shopimporter_f2bbdf9f72c085adc4d0404e370f0f4c'] = 'Attribut';
-$_MODULE['<{shopimporter}prestashop>shopimporter_66e2d23b2d257d56af6f1d6443ce0ce3'] = 'Attribute importieren';
-$_MODULE['<{shopimporter}prestashop>shopimporter_deb10517653c255364175796ace3553f'] = 'Produkt';
-$_MODULE['<{shopimporter}prestashop>shopimporter_f2931b8b1622867fcc461d7de388e319'] = 'Bestellverlauf importieren';
-$_MODULE['<{shopimporter}prestashop>shopimporter_89a399eee52b2a6daaea92eba3e14cad'] = 'Importprozess testen';
-$_MODULE['<{shopimporter}prestashop>shopimporter_bf79359f8edda6f7df97ef57a4ee09b6'] = 'Import starten';
-$_MODULE['<{shopimporter}prestashop>shopimporter_edc186cbc5cc897a79312880ec16c621'] = 'Bitte wählen Sie etwas zum Importieren';
-$_MODULE['<{shopimporter}prestashop>shopimporter_05f4be265d59ea66f3a1fb12ba103583'] = 'Wählen Sie Ihren Import';
-$_MODULE['<{shopimporter}prestashop>shopimporter_72dd98a453e92ccc01697f29bb5dbeb9'] = 'Import-Optionen';
-$_MODULE['<{shopimporter}prestashop>shopimporter_9dfc5d5738312210c3c75e68a468691d'] = 'Advanced-Optionen';
-$_MODULE['<{shopimporter}prestashop>shopimporter_05d2b3715ac0c697b86799d1989c4aeb'] = 'Anhalten: wenn die Daten fehlerhaft sind, läuft der Import nicht.';
-$_MODULE['<{shopimporter}prestashop>shopimporter_09b4382d10c396e0c4fcd51064702213'] = 'Spezielle Optionen';
-$_MODULE['<{shopimporter}prestashop>shopimporter_8136c99d09cb6e9f0f998dd231fff6ed'] = 'Ein Fehler ist beim Hinzufügen des Objekts aufgetreten';
-$_MODULE['<{shopimporter}prestashop>shopimporter_c662307430c97af94e120201c8d56c66'] = 'Das Feld %1$s wird mind. in %2$s benötigt';
-$_MODULE['<{shopimporter}prestashop>shopimporter_35f428e10ac312a2d9a32325c8294df9'] = 'Das Feld %1$s (%2$s) ist ungültig';
-$_MODULE['<{shopimporter}prestashop>shopimporter_44205a67121fcca5ffa925d1ed77b65e'] = 'Das Archiv kann nicht extrahiert werden';
-$_MODULE['<{shopimporter}prestashop>shopimporter_edeb9e20655b946e4bee4ac44a6c0a7f'] = 'Der Server verfügt nicht über die Schreibberechtigungen';
-$_MODULE['<{shopimporter}prestashop>shopimporter_4994a8ffeba4ac3140beb89e8d41f174'] = 'Sprache';
-$_MODULE['<{shopimporter}prestashop>shopimporter_a9db6adcdafc85c5830439401fd866f6'] = 'Sprachen importieren';
-$_MODULE['<{shopimporter}prestashop>shopimporter_4234c64201820401dfa04eeb449c1bbc'] = 'Währungen importieren';
-$_MODULE['<{shopimporter}prestashop>shopimporter_719fec04166d6fa75f89cd29ad61fa8c'] = 'Steuern';
-$_MODULE['<{shopimporter}prestashop>shopimporter_59716c97497eb9694541f7c3d37b1a4d'] = 'Land';
-$_MODULE['<{shopimporter}prestashop>shopimporter_65ac19ad248219902394739bda0cef62'] = 'Gruppen importieren';
-$_MODULE['<{shopimporter}prestashop>shopimporter_3adbdb3ac060038aa0e6e6c138ef9873'] = 'Kategorie';
-$_MODULE['<{shopimporter}prestashop>shopimporter_1db7ae20c24e257b6f1a7def365da1ad'] = 'Kategorien importieren';
-$_MODULE['<{shopimporter}prestashop>shopimporter_b3df6b363e7979ce81b71d92961fc672'] = 'Bestellstatus';
-$_MODULE['<{shopimporter}prestashop>shopimporter_a240fa27925a635b08dc28c9e4f9216d'] = 'Bestellung';
-$_MODULE['<{shopimporter}prestashop>shopimporter_32a6deec3cca312a54d6b8769c9b8dd7'] = 'nicht in diesem Modul verfügbar';
-$_MODULE['<{shopimporter}prestashop>shopimporter_0b5a6ead644b8ae4edb8a036334c9ed6'] = 'Beim Import sind Fehler aufgetreten. Weitere Details siehe unter \\"Fehler anzeigen\\"';
-$_MODULE['<{shopimporter}prestashop>shopimporter_596403b61367ca30d6de75812275f9cd'] = 'Daten entfernen';
-$_MODULE['<{shopimporter}prestashop>shopimporter_81b33153f65252001fe132d74b658fbe'] = 'Aus einem anderen System importieren';
-$_MODULE['<{shopimporter}prestashop>shopimporter_60474e812295a5adc371de63dc62a164'] = 'Für das Backup hier klicken';
-$_MODULE['<{shopimporter}prestashop>shopimporter_c195d4db1be0d349d21f236f0a6400ff'] = 'Dieser Modus ist gefährlich';
-$_MODULE['<{shopimporter}prestashop>shopimporter_11a755d598c0c417f9a36758c3da7481'] = 'Anhalten';
-$_MODULE['<{shopimporter}prestashop>shopimporter_690c3a7f595050729df99a6d30dd6f96'] = 'Überspringen: wenn die Daten fehlerhaft sind, überspringt der Import fehlerhafte Daten.';
-$_MODULE['<{shopimporter}prestashop>shopimporter_044a8ce60a6c5a464e7a7f78698fc05d'] = 'Standardsprache stimmt nicht überein:';
-$_MODULE['<{shopimporter}prestashop>ajax_49bd922182bd3518641589e3077eacd3'] = 'Kann keine Verbindung zur Datenbank herstellen.';
-$_MODULE['<{shopimporter}prestashop>shopimporter_b8b8ca447e355455b8dc638993c41ae7'] = 'Neue Sprachen fügen automatisch Übersetzungen hinzu!';
-$_MODULE['<{shopimporter}prestashop>shopimporter_6ec25fc9cc7df7b0d1fce57923f46ec1'] = 'Steuerregeln importieren';
-$_MODULE['<{shopimporter}prestashop>shopimporter_21d250d17e35e3e02db9f1a618bad913'] = 'Zone importieren';
-$_MODULE['<{shopimporter}prestashop>shopimporter_13eedcf49d68ce49274db71e63a7aa3d'] = 'Länder importieren';
-$_MODULE['<{shopimporter}prestashop>shopimporter_118421de3201927a23bf921057e69c4a'] = 'Staaten importieren';
-$_MODULE['<{shopimporter}prestashop>shopimporter_ce26601dac0dea138b7295f02b7620a7'] = 'Kunde';
-$_MODULE['<{shopimporter}prestashop>shopimporter_22c34564e80ce8adab6a235061d277f4'] = 'Kunden importieren';
-$_MODULE['<{shopimporter}prestashop>shopimporter_ec136b444eede3bc85639fac0dd06229'] = 'Zulieferer';
-$_MODULE['<{shopimporter}prestashop>shopimporter_4bfc4a7632bae0877b798dbd9efc4f70'] = 'Produkte importieren';
-$_MODULE['<{shopimporter}prestashop>shopimporter_6b24bd15b10bc10de9687f16ebe728e4'] = 'Bestellstatus importieren';
-$_MODULE['<{shopimporter}prestashop>shopimporter_1e411d25230ba738b9ae583bcb9b0b57'] = 'Verbindung zur Datenbank ok';
-$_MODULE['<{shopimporter}prestashop>shopimporter_472f0b8c78cc382302e094c94856c951'] = 'Die Verbindung zum Web-Service-OK';
-$_MODULE['<{shopimporter}prestashop>shopimporter_e905d0eb5204b761d8c0e3eebed4a0e0'] = 'Der Import ist abgeschlossen.';
-$_MODULE['<{shopimporter}prestashop>shopimporter_dd4c0c798ebbf8c6e15dcba8632f558d'] = 'Vor dem Start des Import, sichern Sie bitte eine Kopie Ihrer Datenbank.';
-$_MODULE['<{shopimporter}prestashop>shopimporter_961f2247a2070bedff9f9cd8d64e2650'] = 'Wählen';
-$_MODULE['<{shopimporter}prestashop>shopimporter_11e9fa925cb444a223769edd53334f13'] = 'Import für jeden';
-$_MODULE['<{shopimporter}prestashop>shopimporter_70fda5850e8d8946a340c55bf985fd39'] = 'Wählen Sie die Vorkommenszahl für jede Import-Anfrage';
-$_MODULE['<{shopimporter}prestashop>shopimporter_72ef2b9b6965d078e3c7f95487a82d1c'] = 'Überspringen';
-$_MODULE['<{shopimporter}prestashop>shopimporter_9eb6b78a99cdb6ffd3d40d18621d9f80'] = 'Erzwingen';
-$_MODULE['<{shopimporter}prestashop>shopimporter_29361e9c6917fb14b43d3e78e2811e56'] = 'Standardwährung stimmt nicht überein:';
-$_MODULE['<{shopimporter}prestashop>shopimporter_2deae2efe4b65df80c188a31fed3cc17'] = 'Das Feld %s wird benötigt';
-$_MODULE['<{shopimporter}prestashop>shopimporter_1086ee44ab3d66a33d23308e942067e0'] = 'Das Feld %1$s ist zu lang (max. %2$d Zeichen).';
-$_MODULE['<{shopimporter}prestashop>shopimporter_3d2496e596f4cbc8045e689d94f77cbd'] = 'Das Feld %s ist ungültig';
-$_MODULE['<{shopimporter}prestashop>shopimporter_25d42a115ce1c8390ba062cbc958deb3'] = 'Das Feld %1$s (%2$s) ist zu land: Max. %3$d Zeichen.';
-$_MODULE['<{shopimporter}prestashop>shopimporter_6cf73576720519e739771a4fa489410b'] = 'Sprache nicht gefunden';
-$_MODULE['<{shopimporter}prestashop>shopimporter_179bdae10ca983dd1cf9cd1a4bf4f20a'] = 'Das Archiv kann nicht von Prestashop.com heruntergeladen werden';
diff --git a/modules/shopimporter/translations/en.php b/modules/shopimporter/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/shopimporter/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-ajax_10f237be40b3205ba97da9b89d290c30'] = 'La selección de la base de datos no se puede realizar.';
-$_MODULE['<{shopimporter}prestashop>shopimporter_8c0fe18034f47d7d3dd3e58098e3ffdb'] = 'Este módulo le permite importar su tienda a partir de otro sistema.';
-$_MODULE['<{shopimporter}prestashop>shopimporter_94c5ffc9d364127b232f58b4cfd8c88a'] = 'Importar los impuestos';
-$_MODULE['<{shopimporter}prestashop>shopimporter_3c994b8c6c4e8b756185f74ded711f69'] = 'TaxesRules';
-$_MODULE['<{shopimporter}prestashop>shopimporter_b3ff996fe5c77610359114835baf9b38'] = 'Zona';
-$_MODULE['<{shopimporter}prestashop>shopimporter_46a2a41cc6e552044816a2d04634545d'] = 'Estados';
-$_MODULE['<{shopimporter}prestashop>shopimporter_77497d022aeb4cdd78ec394ca8d223b4'] = 'Import de las direcciones';
-$_MODULE['<{shopimporter}prestashop>shopimporter_0ae5f9c75e6a7460ec31e33201576bd9'] = 'Import de los fabricantes';
-$_MODULE['<{shopimporter}prestashop>shopimporter_1f5a36b380c53d7f82e762baa08c2e5c'] = 'Grupo de atributos';
-$_MODULE['<{shopimporter}prestashop>shopimporter_7eb915ee907703ede51dabab88fc1701'] = 'Import grupos de atributos';
-$_MODULE['<{shopimporter}prestashop>shopimporter_47ac923d219501859fb68fed8c8db77b'] = 'Combinación';
-$_MODULE['<{shopimporter}prestashop>shopimporter_58e2fcec5e04716c627b3e8b9d2955b1'] = 'Import de las declinaciones de los productos';
-$_MODULE['<{shopimporter}prestashop>shopimporter_3b7e768ebab2171baa41d5ea13017b02'] = 'Import de los pedidos';
-$_MODULE['<{shopimporter}prestashop>shopimporter_782c8b38bce4f2f6975ca7f33ac8189b'] = 'Historial de los pedidos';
-$_MODULE['<{shopimporter}prestashop>shopimporter_3596c777cbc8b72d678f34daabc9148b'] = 'Mostrar los errores';
-$_MODULE['<{shopimporter}prestashop>shopimporter_151a0fbfcc4894aa53335091c2512de5'] = 'No hay ningún módulo de importación instalado';
-$_MODULE['<{shopimporter}prestashop>shopimporter_2bb4cbbf4c51025867d47131e79ad05f'] = 'Etapa siguiente';
-$_MODULE['<{shopimporter}prestashop>shopimporter_35f178a340d9aa1a080d8cfaf0b57f36'] = 'Si hay errores';
-$_MODULE['<{shopimporter}prestashop>shopimporter_35a6535254a93c5338bff1e3572755d2'] = 'Forzar: si hay errores, la importación sustituirá los datos incorrectos por datos genéricos.';
-$_MODULE['<{shopimporter}prestashop>shopimporter_807079d19357b6d44089c220f74cc2d0'] = 'Por favor, cambie el idioma por defecto en la configuración';
-$_MODULE['<{shopimporter}prestashop>shopimporter_6117c4d73fcf0c20fe3946f1d00dde85'] = 'Por favor, cambie la moneda por defecto en la configuración';
-$_MODULE['<{shopimporter}prestashop>shopimporter_d714c742b360a8ecbb124c15e9a391a1'] = 'Import de tienda';
-$_MODULE['<{shopimporter}prestashop>shopimporter_386c339d37e737a436499d423a77df0c'] = 'Divisa';
-$_MODULE['<{shopimporter}prestashop>shopimporter_03937134cedab9078be39a77ee3a48a0'] = 'Grupo';
-$_MODULE['<{shopimporter}prestashop>shopimporter_dd7bf230fde8d4836917806aff6a6b27'] = 'Dirección';
-$_MODULE['<{shopimporter}prestashop>shopimporter_c0bd7654d5b278e65f21cf4e9153fdb4'] = 'Fabricante';
-$_MODULE['<{shopimporter}prestashop>shopimporter_ed4cbbbeb3d575ccfeb405ae5c5c4d43'] = 'Import de los fabricantes';
-$_MODULE['<{shopimporter}prestashop>shopimporter_f2bbdf9f72c085adc4d0404e370f0f4c'] = 'Atributo';
-$_MODULE['<{shopimporter}prestashop>shopimporter_66e2d23b2d257d56af6f1d6443ce0ce3'] = 'Import de atributos';
-$_MODULE['<{shopimporter}prestashop>shopimporter_deb10517653c255364175796ace3553f'] = 'Producto';
-$_MODULE['<{shopimporter}prestashop>shopimporter_f2931b8b1622867fcc461d7de388e319'] = 'Import del historial de los pedidos';
-$_MODULE['<{shopimporter}prestashop>shopimporter_89a399eee52b2a6daaea92eba3e14cad'] = 'Lanzar el test de import';
-$_MODULE['<{shopimporter}prestashop>shopimporter_bf79359f8edda6f7df97ef57a4ee09b6'] = 'Ejecutar importación';
-$_MODULE['<{shopimporter}prestashop>shopimporter_edc186cbc5cc897a79312880ec16c621'] = 'Por favor seleccione algún elemento para importar';
-$_MODULE['<{shopimporter}prestashop>shopimporter_05f4be265d59ea66f3a1fb12ba103583'] = 'Elegir un import';
-$_MODULE['<{shopimporter}prestashop>shopimporter_72dd98a453e92ccc01697f29bb5dbeb9'] = 'Opción de import';
-$_MODULE['<{shopimporter}prestashop>shopimporter_9dfc5d5738312210c3c75e68a468691d'] = 'Opciones avanzadas';
-$_MODULE['<{shopimporter}prestashop>shopimporter_05d2b3715ac0c697b86799d1989c4aeb'] = 'Stop: si hay errores, la importación no funciona';
-$_MODULE['<{shopimporter}prestashop>shopimporter_09b4382d10c396e0c4fcd51064702213'] = 'Opciones específicas';
-$_MODULE['<{shopimporter}prestashop>shopimporter_8136c99d09cb6e9f0f998dd231fff6ed'] = 'Se produjo un error al agregar el objeto';
-$_MODULE['<{shopimporter}prestashop>shopimporter_c662307430c97af94e120201c8d56c66'] = 'Este campo %1$s se requiere por lo menos en %2$s';
-$_MODULE['<{shopimporter}prestashop>shopimporter_35f428e10ac312a2d9a32325c8294df9'] = 'El campo %1$s (%2$s) no es válido.';
-$_MODULE['<{shopimporter}prestashop>shopimporter_44205a67121fcca5ffa925d1ed77b65e'] = 'El archivo no puede extraerse';
-$_MODULE['<{shopimporter}prestashop>shopimporter_edeb9e20655b946e4bee4ac44a6c0a7f'] = 'El servidor no dispone de permisos para la escritura';
-$_MODULE['<{shopimporter}prestashop>shopimporter_4994a8ffeba4ac3140beb89e8d41f174'] = 'Idiomas';
-$_MODULE['<{shopimporter}prestashop>shopimporter_a9db6adcdafc85c5830439401fd866f6'] = 'Import de idiomas';
-$_MODULE['<{shopimporter}prestashop>shopimporter_4234c64201820401dfa04eeb449c1bbc'] = 'Import de las divisas';
-$_MODULE['<{shopimporter}prestashop>shopimporter_719fec04166d6fa75f89cd29ad61fa8c'] = 'Impuestos';
-$_MODULE['<{shopimporter}prestashop>shopimporter_59716c97497eb9694541f7c3d37b1a4d'] = 'País';
-$_MODULE['<{shopimporter}prestashop>shopimporter_65ac19ad248219902394739bda0cef62'] = 'Import de los grupos';
-$_MODULE['<{shopimporter}prestashop>shopimporter_3adbdb3ac060038aa0e6e6c138ef9873'] = 'Categoría';
-$_MODULE['<{shopimporter}prestashop>shopimporter_1db7ae20c24e257b6f1a7def365da1ad'] = 'Import de las categorías';
-$_MODULE['<{shopimporter}prestashop>shopimporter_b3df6b363e7979ce81b71d92961fc672'] = 'Estados de los pedidos';
-$_MODULE['<{shopimporter}prestashop>shopimporter_a240fa27925a635b08dc28c9e4f9216d'] = 'Pedido';
-$_MODULE['<{shopimporter}prestashop>shopimporter_32a6deec3cca312a54d6b8769c9b8dd7'] = 'no se encuentra disponible en este módulo';
-$_MODULE['<{shopimporter}prestashop>shopimporter_0b5a6ead644b8ae4edb8a036334c9ed6'] = 'Se han producido errores durante la importación. Para más detalles haga clic en \\"Mostrar errores\\"';
-$_MODULE['<{shopimporter}prestashop>shopimporter_596403b61367ca30d6de75812275f9cd'] = 'Supresión de los datos';
-$_MODULE['<{shopimporter}prestashop>shopimporter_81b33153f65252001fe132d74b658fbe'] = 'Importar a partir de otro sistema';
-$_MODULE['<{shopimporter}prestashop>shopimporter_60474e812295a5adc371de63dc62a164'] = 'Pulsar aquí para guardar';
-$_MODULE['<{shopimporter}prestashop>shopimporter_c195d4db1be0d349d21f236f0a6400ff'] = 'Este modo no es aconsejable';
-$_MODULE['<{shopimporter}prestashop>shopimporter_11a755d598c0c417f9a36758c3da7481'] = 'Stop';
-$_MODULE['<{shopimporter}prestashop>shopimporter_690c3a7f595050729df99a6d30dd6f96'] = 'Saltar: si hay errores, la importación va a saltar los datos incorrectos';
-$_MODULE['<{shopimporter}prestashop>shopimporter_044a8ce60a6c5a464e7a7f78698fc05d'] = 'El idioma por defecto no coincide:';
-$_MODULE['<{shopimporter}prestashop>ajax_49bd922182bd3518641589e3077eacd3'] = 'El enlace con la base de datos no se puede establecer';
-$_MODULE['<{shopimporter}prestashop>shopimporter_b8b8ca447e355455b8dc638993c41ae7'] = 'Los nuevos idiomas añadirán automáticamente las traducciones';
-$_MODULE['<{shopimporter}prestashop>shopimporter_6ec25fc9cc7df7b0d1fce57923f46ec1'] = 'Importar Taxes Rules';
-$_MODULE['<{shopimporter}prestashop>shopimporter_21d250d17e35e3e02db9f1a618bad913'] = 'Import de las zonas';
-$_MODULE['<{shopimporter}prestashop>shopimporter_13eedcf49d68ce49274db71e63a7aa3d'] = 'Import de los países';
-$_MODULE['<{shopimporter}prestashop>shopimporter_118421de3201927a23bf921057e69c4a'] = 'Import de los estados';
-$_MODULE['<{shopimporter}prestashop>shopimporter_ce26601dac0dea138b7295f02b7620a7'] = 'Cliente';
-$_MODULE['<{shopimporter}prestashop>shopimporter_22c34564e80ce8adab6a235061d277f4'] = 'Import de los clientes';
-$_MODULE['<{shopimporter}prestashop>shopimporter_ec136b444eede3bc85639fac0dd06229'] = 'Proveedor';
-$_MODULE['<{shopimporter}prestashop>shopimporter_4bfc4a7632bae0877b798dbd9efc4f70'] = 'Import de los productos';
-$_MODULE['<{shopimporter}prestashop>shopimporter_6b24bd15b10bc10de9687f16ebe728e4'] = 'Import des estado de los pedidos';
-$_MODULE['<{shopimporter}prestashop>shopimporter_1e411d25230ba738b9ae583bcb9b0b57'] = 'Connexión a la base de datos OK';
-$_MODULE['<{shopimporter}prestashop>shopimporter_472f0b8c78cc382302e094c94856c951'] = 'Conección al servicio web OK';
-$_MODULE['<{shopimporter}prestashop>shopimporter_e905d0eb5204b761d8c0e3eebed4a0e0'] = 'El import ha terminado';
-$_MODULE['<{shopimporter}prestashop>shopimporter_dd4c0c798ebbf8c6e15dcba8632f558d'] = 'Antes de empezar la importación, por favor haga una copia de seguridad de sus base de datos.';
-$_MODULE['<{shopimporter}prestashop>shopimporter_961f2247a2070bedff9f9cd8d64e2650'] = 'Elegir';
-$_MODULE['<{shopimporter}prestashop>shopimporter_11e9fa925cb444a223769edd53334f13'] = 'Importar para';
-$_MODULE['<{shopimporter}prestashop>shopimporter_70fda5850e8d8946a340c55bf985fd39'] = 'Seleccionar el número de ocurrencias para cada consulta para importar';
-$_MODULE['<{shopimporter}prestashop>shopimporter_72ef2b9b6965d078e3c7f95487a82d1c'] = 'Saltar';
-$_MODULE['<{shopimporter}prestashop>shopimporter_9eb6b78a99cdb6ffd3d40d18621d9f80'] = 'Forzar';
-$_MODULE['<{shopimporter}prestashop>shopimporter_29361e9c6917fb14b43d3e78e2811e56'] = 'La moneda por defecto no coincide:';
-$_MODULE['<{shopimporter}prestashop>shopimporter_2deae2efe4b65df80c188a31fed3cc17'] = 'El campo %s es necesario.';
-$_MODULE['<{shopimporter}prestashop>shopimporter_1086ee44ab3d66a33d23308e942067e0'] = 'El campo %1$s es demasiado largo. (%2$d caracteres máximos)';
-$_MODULE['<{shopimporter}prestashop>shopimporter_3d2496e596f4cbc8045e689d94f77cbd'] = 'El campo %s no es válido.';
-$_MODULE['<{shopimporter}prestashop>shopimporter_25d42a115ce1c8390ba062cbc958deb3'] = 'Este campo %1$s (%2$s) es demasiado largo:%3$d caracteres máx.';
-$_MODULE['<{shopimporter}prestashop>shopimporter_6cf73576720519e739771a4fa489410b'] = 'no se encuentra el idioma';
-$_MODULE['<{shopimporter}prestashop>shopimporter_179bdae10ca983dd1cf9cd1a4bf4f20a'] = 'El archivo no se puede descargar a partir de PrestaShop.com';
diff --git a/modules/shopimporter/translations/fr.php b/modules/shopimporter/translations/fr.php
deleted file mode 100644
index 0b1b4e869..000000000
--- a/modules/shopimporter/translations/fr.php
+++ /dev/null
@@ -1,95 +0,0 @@
-shopimporter_94c5ffc9d364127b232f58b4cfd8c88a'] = 'Import des taxes';
-$_MODULE['<{shopimporter}prestashop>shopimporter_3c994b8c6c4e8b756185f74ded711f69'] = 'Règles de taxes';
-$_MODULE['<{shopimporter}prestashop>shopimporter_b3ff996fe5c77610359114835baf9b38'] = 'Zone';
-$_MODULE['<{shopimporter}prestashop>shopimporter_46a2a41cc6e552044816a2d04634545d'] = 'États';
-$_MODULE['<{shopimporter}prestashop>shopimporter_8c0fe18034f47d7d3dd3e58098e3ffdb'] = 'Ce module vous permet d\'importer votre boutique depuis autre système.';
-$_MODULE['<{shopimporter}prestashop>shopimporter_77497d022aeb4cdd78ec394ca8d223b4'] = 'Import des adresses';
-$_MODULE['<{shopimporter}prestashop>shopimporter_0ae5f9c75e6a7460ec31e33201576bd9'] = 'Import des Fournisseurs';
-$_MODULE['<{shopimporter}prestashop>shopimporter_1f5a36b380c53d7f82e762baa08c2e5c'] = 'Groupe d\'attributs';
-$_MODULE['<{shopimporter}prestashop>shopimporter_7eb915ee907703ede51dabab88fc1701'] = 'Import des groupes d\'attributs';
-$_MODULE['<{shopimporter}prestashop>shopimporter_47ac923d219501859fb68fed8c8db77b'] = 'Déclinaison';
-$_MODULE['<{shopimporter}prestashop>shopimporter_58e2fcec5e04716c627b3e8b9d2955b1'] = 'Import des déclinaisons de produits';
-$_MODULE['<{shopimporter}prestashop>shopimporter_3b7e768ebab2171baa41d5ea13017b02'] = 'Import des commandes';
-$_MODULE['<{shopimporter}prestashop>shopimporter_782c8b38bce4f2f6975ca7f33ac8189b'] = 'Historique de commande';
-$_MODULE['<{shopimporter}prestashop>shopimporter_3596c777cbc8b72d678f34daabc9148b'] = 'Afficher les erreurs';
-$_MODULE['<{shopimporter}prestashop>shopimporter_151a0fbfcc4894aa53335091c2512de5'] = 'Aucun module d\'import n\'a été installé';
-$_MODULE['<{shopimporter}prestashop>shopimporter_2bb4cbbf4c51025867d47131e79ad05f'] = 'Étape suivante';
-$_MODULE['<{shopimporter}prestashop>shopimporter_35f178a340d9aa1a080d8cfaf0b57f36'] = 'S\'il y a des erreurs';
-$_MODULE['<{shopimporter}prestashop>shopimporter_35a6535254a93c5338bff1e3572755d2'] = 'Forcer : s\'il y a des erreurs, l\'importation remplacera les données incorrectes par des données génériques.';
-$_MODULE['<{shopimporter}prestashop>shopimporter_807079d19357b6d44089c220f74cc2d0'] = 'Veuillez changer la langue par défaut dans votre configuration ';
-$_MODULE['<{shopimporter}prestashop>shopimporter_6117c4d73fcf0c20fe3946f1d00dde85'] = 'Veuillez changer la devise par défaut dans votre configuration ';
-$_MODULE['<{shopimporter}prestashop>ajax_10f237be40b3205ba97da9b89d290c30'] = 'Impossible de sélectionner la base de données.';
-$_MODULE['<{shopimporter}prestashop>shopimporter_d714c742b360a8ecbb124c15e9a391a1'] = 'Import de boutique';
-$_MODULE['<{shopimporter}prestashop>shopimporter_386c339d37e737a436499d423a77df0c'] = 'Devise';
-$_MODULE['<{shopimporter}prestashop>shopimporter_03937134cedab9078be39a77ee3a48a0'] = 'Groupe';
-$_MODULE['<{shopimporter}prestashop>shopimporter_dd7bf230fde8d4836917806aff6a6b27'] = 'Adresse';
-$_MODULE['<{shopimporter}prestashop>shopimporter_c0bd7654d5b278e65f21cf4e9153fdb4'] = 'Fabricant';
-$_MODULE['<{shopimporter}prestashop>shopimporter_f2bbdf9f72c085adc4d0404e370f0f4c'] = 'Attribut';
-$_MODULE['<{shopimporter}prestashop>shopimporter_66e2d23b2d257d56af6f1d6443ce0ce3'] = 'Import des attributs';
-$_MODULE['<{shopimporter}prestashop>shopimporter_deb10517653c255364175796ace3553f'] = 'Produit';
-$_MODULE['<{shopimporter}prestashop>shopimporter_f2931b8b1622867fcc461d7de388e319'] = 'Import de l\'historique des commandes';
-$_MODULE['<{shopimporter}prestashop>shopimporter_89a399eee52b2a6daaea92eba3e14cad'] = 'Lancer le test d\'import';
-$_MODULE['<{shopimporter}prestashop>shopimporter_bf79359f8edda6f7df97ef57a4ee09b6'] = 'Lancer l\'import';
-$_MODULE['<{shopimporter}prestashop>shopimporter_edc186cbc5cc897a79312880ec16c621'] = 'Veuillez choisir quelque chose à importer';
-$_MODULE['<{shopimporter}prestashop>shopimporter_05f4be265d59ea66f3a1fb12ba103583'] = 'Choisir un import';
-$_MODULE['<{shopimporter}prestashop>shopimporter_72dd98a453e92ccc01697f29bb5dbeb9'] = 'Options d\'import';
-$_MODULE['<{shopimporter}prestashop>shopimporter_9dfc5d5738312210c3c75e68a468691d'] = 'Options avancées ';
-$_MODULE['<{shopimporter}prestashop>shopimporter_05d2b3715ac0c697b86799d1989c4aeb'] = 'Arrêter : s\'il y a des erreurs, l\'importation ne se lancera pas.';
-$_MODULE['<{shopimporter}prestashop>shopimporter_09b4382d10c396e0c4fcd51064702213'] = 'Options spécifiques ';
-$_MODULE['<{shopimporter}prestashop>shopimporter_8136c99d09cb6e9f0f998dd231fff6ed'] = 'Une erreur s\'est produite lors de l\'ajout de l\'objet ';
-$_MODULE['<{shopimporter}prestashop>shopimporter_c662307430c97af94e120201c8d56c66'] = 'Le champ %1$s est requis au moins en %2$s';
-$_MODULE['<{shopimporter}prestashop>shopimporter_35f428e10ac312a2d9a32325c8294df9'] = 'Le champ %1$s (%2$s) est invalide.';
-$_MODULE['<{shopimporter}prestashop>shopimporter_44205a67121fcca5ffa925d1ed77b65e'] = 'L\'archive ne peut être extraite.';
-$_MODULE['<{shopimporter}prestashop>shopimporter_edeb9e20655b946e4bee4ac44a6c0a7f'] = 'Le serveur ne dispose pas des permissions pour l\'écriture.';
-$_MODULE['<{shopimporter}prestashop>shopimporter_ed4cbbbeb3d575ccfeb405ae5c5c4d43'] = 'Import des Fabricants';
-$_MODULE['<{shopimporter}prestashop>shopimporter_4994a8ffeba4ac3140beb89e8d41f174'] = 'Langues';
-$_MODULE['<{shopimporter}prestashop>shopimporter_a9db6adcdafc85c5830439401fd866f6'] = 'Import des langues';
-$_MODULE['<{shopimporter}prestashop>shopimporter_4234c64201820401dfa04eeb449c1bbc'] = 'Import des devises';
-$_MODULE['<{shopimporter}prestashop>shopimporter_719fec04166d6fa75f89cd29ad61fa8c'] = 'Taxes';
-$_MODULE['<{shopimporter}prestashop>shopimporter_59716c97497eb9694541f7c3d37b1a4d'] = 'Pays';
-$_MODULE['<{shopimporter}prestashop>shopimporter_1db7ae20c24e257b6f1a7def365da1ad'] = 'Import des catégories';
-$_MODULE['<{shopimporter}prestashop>shopimporter_c195d4db1be0d349d21f236f0a6400ff'] = 'Ce mode n\'est pas recommandé';
-$_MODULE['<{shopimporter}prestashop>shopimporter_65ac19ad248219902394739bda0cef62'] = 'Import des groupes';
-$_MODULE['<{shopimporter}prestashop>shopimporter_3adbdb3ac060038aa0e6e6c138ef9873'] = 'Catégorie';
-$_MODULE['<{shopimporter}prestashop>shopimporter_b3df6b363e7979ce81b71d92961fc672'] = 'État des commande';
-$_MODULE['<{shopimporter}prestashop>shopimporter_a240fa27925a635b08dc28c9e4f9216d'] = 'Commande';
-$_MODULE['<{shopimporter}prestashop>shopimporter_32a6deec3cca312a54d6b8769c9b8dd7'] = 'n\'est pas disponible dans ce module';
-$_MODULE['<{shopimporter}prestashop>shopimporter_0b5a6ead644b8ae4edb8a036334c9ed6'] = 'Des erreurs sont survenues lors de l\'importation. Pour plus de détails, cliquez sur \\"Afficher les erreurs\\".';
-$_MODULE['<{shopimporter}prestashop>shopimporter_596403b61367ca30d6de75812275f9cd'] = 'Suppression des données';
-$_MODULE['<{shopimporter}prestashop>shopimporter_81b33153f65252001fe132d74b658fbe'] = 'Importer depuis un autre système';
-$_MODULE['<{shopimporter}prestashop>shopimporter_60474e812295a5adc371de63dc62a164'] = 'Cliquez ici pour sauvegarder';
-$_MODULE['<{shopimporter}prestashop>shopimporter_11a755d598c0c417f9a36758c3da7481'] = 'Arrêter';
-$_MODULE['<{shopimporter}prestashop>shopimporter_690c3a7f595050729df99a6d30dd6f96'] = 'Passer : s\'il y a des erreurs, l\'importation ne traitera pas les données incorrectes';
-$_MODULE['<{shopimporter}prestashop>shopimporter_044a8ce60a6c5a464e7a7f78698fc05d'] = 'La langue par défaut ne correspond pas à :';
-$_MODULE['<{shopimporter}prestashop>shopimporter_b8b8ca447e355455b8dc638993c41ae7'] = 'Les nouvelles langues ajouteront automatiquement des traductions.';
-$_MODULE['<{shopimporter}prestashop>shopimporter_6ec25fc9cc7df7b0d1fce57923f46ec1'] = 'Import des règles de taxes';
-$_MODULE['<{shopimporter}prestashop>shopimporter_21d250d17e35e3e02db9f1a618bad913'] = 'Import des zones';
-$_MODULE['<{shopimporter}prestashop>shopimporter_13eedcf49d68ce49274db71e63a7aa3d'] = 'Import des pays';
-$_MODULE['<{shopimporter}prestashop>shopimporter_118421de3201927a23bf921057e69c4a'] = 'Import des états';
-$_MODULE['<{shopimporter}prestashop>shopimporter_472f0b8c78cc382302e094c94856c951'] = 'La connexion au service Web est OK';
-$_MODULE['<{shopimporter}prestashop>shopimporter_1086ee44ab3d66a33d23308e942067e0'] = 'Le champ %1$s est trop grand (%2$d caratères maximum).';
-$_MODULE['<{shopimporter}prestashop>shopimporter_ce26601dac0dea138b7295f02b7620a7'] = 'Client';
-$_MODULE['<{shopimporter}prestashop>shopimporter_22c34564e80ce8adab6a235061d277f4'] = 'Import des clients';
-$_MODULE['<{shopimporter}prestashop>shopimporter_ec136b444eede3bc85639fac0dd06229'] = 'Fournisseur';
-$_MODULE['<{shopimporter}prestashop>shopimporter_4bfc4a7632bae0877b798dbd9efc4f70'] = 'Import des produits';
-$_MODULE['<{shopimporter}prestashop>shopimporter_6b24bd15b10bc10de9687f16ebe728e4'] = 'Import des états des commandes';
-$_MODULE['<{shopimporter}prestashop>shopimporter_1e411d25230ba738b9ae583bcb9b0b57'] = 'Connexion à la base de données OK ';
-$_MODULE['<{shopimporter}prestashop>shopimporter_e905d0eb5204b761d8c0e3eebed4a0e0'] = 'L\'import est terminé.';
-$_MODULE['<{shopimporter}prestashop>shopimporter_dd4c0c798ebbf8c6e15dcba8632f558d'] = 'Avant de commencer l\'importation, veuillez faire une sauvegarde de votre base de données.';
-$_MODULE['<{shopimporter}prestashop>shopimporter_961f2247a2070bedff9f9cd8d64e2650'] = 'Choisir';
-$_MODULE['<{shopimporter}prestashop>shopimporter_11e9fa925cb444a223769edd53334f13'] = 'Importer par';
-$_MODULE['<{shopimporter}prestashop>shopimporter_70fda5850e8d8946a340c55bf985fd39'] = 'Sélectionnez le nombre d\'occurrences pour chaque requête à l\'importation';
-$_MODULE['<{shopimporter}prestashop>shopimporter_72ef2b9b6965d078e3c7f95487a82d1c'] = 'Passer';
-$_MODULE['<{shopimporter}prestashop>shopimporter_9eb6b78a99cdb6ffd3d40d18621d9f80'] = 'Forcer';
-$_MODULE['<{shopimporter}prestashop>shopimporter_29361e9c6917fb14b43d3e78e2811e56'] = 'La devise par défaut ne correspond pas à :';
-$_MODULE['<{shopimporter}prestashop>shopimporter_2deae2efe4b65df80c188a31fed3cc17'] = 'Le champ %s est requis';
-$_MODULE['<{shopimporter}prestashop>shopimporter_3d2496e596f4cbc8045e689d94f77cbd'] = 'Le champ %s est invalide.';
-$_MODULE['<{shopimporter}prestashop>shopimporter_25d42a115ce1c8390ba062cbc958deb3'] = 'Le champ %1$s (%2$s) est trop long : %3$d caratères maximum.';
-$_MODULE['<{shopimporter}prestashop>shopimporter_6cf73576720519e739771a4fa489410b'] = 'Langue introuvable';
-$_MODULE['<{shopimporter}prestashop>shopimporter_179bdae10ca983dd1cf9cd1a4bf4f20a'] = 'l\'archive ne peut être téléchargée depuis prestashop.com';
-$_MODULE['<{shopimporter}prestashop>ajax_49bd922182bd3518641589e3077eacd3'] = 'Impossible de se connecter à la base de données.';
diff --git a/modules/shopimporter/translations/it.php b/modules/shopimporter/translations/it.php
deleted file mode 100644
index 22b5bf3e3..000000000
--- a/modules/shopimporter/translations/it.php
+++ /dev/null
@@ -1,95 +0,0 @@
-ajax_10f237be40b3205ba97da9b89d290c30'] = 'Impossibile selezionare il database.';
-$_MODULE['<{shopimporter}prestashop>shopimporter_8c0fe18034f47d7d3dd3e58098e3ffdb'] = 'Questo modulo ti consente di importare il tuo negozio da un altro sistema in PrestaShop';
-$_MODULE['<{shopimporter}prestashop>shopimporter_94c5ffc9d364127b232f58b4cfd8c88a'] = 'Importa Tasse';
-$_MODULE['<{shopimporter}prestashop>shopimporter_3c994b8c6c4e8b756185f74ded711f69'] = 'Tasse regole';
-$_MODULE['<{shopimporter}prestashop>shopimporter_b3ff996fe5c77610359114835baf9b38'] = 'Zona';
-$_MODULE['<{shopimporter}prestashop>shopimporter_46a2a41cc6e552044816a2d04634545d'] = 'Stato';
-$_MODULE['<{shopimporter}prestashop>shopimporter_77497d022aeb4cdd78ec394ca8d223b4'] = 'Importa gli indirizzi';
-$_MODULE['<{shopimporter}prestashop>shopimporter_1f5a36b380c53d7f82e762baa08c2e5c'] = 'Gruppo attributi';
-$_MODULE['<{shopimporter}prestashop>shopimporter_7eb915ee907703ede51dabab88fc1701'] = 'Importa gruppo attributi';
-$_MODULE['<{shopimporter}prestashop>shopimporter_47ac923d219501859fb68fed8c8db77b'] = 'Combinazione';
-$_MODULE['<{shopimporter}prestashop>shopimporter_58e2fcec5e04716c627b3e8b9d2955b1'] = 'Importa combinazioni di prodotti';
-$_MODULE['<{shopimporter}prestashop>shopimporter_3b7e768ebab2171baa41d5ea13017b02'] = 'Importa Ordini';
-$_MODULE['<{shopimporter}prestashop>shopimporter_782c8b38bce4f2f6975ca7f33ac8189b'] = 'Storico ordini';
-$_MODULE['<{shopimporter}prestashop>shopimporter_3596c777cbc8b72d678f34daabc9148b'] = 'Mostra gli errori';
-$_MODULE['<{shopimporter}prestashop>shopimporter_151a0fbfcc4894aa53335091c2512de5'] = 'Nessun modulo di importazione installato';
-$_MODULE['<{shopimporter}prestashop>shopimporter_2bb4cbbf4c51025867d47131e79ad05f'] = 'Passo successivo';
-$_MODULE['<{shopimporter}prestashop>shopimporter_35f178a340d9aa1a080d8cfaf0b57f36'] = 'Se si verificano errori';
-$_MODULE['<{shopimporter}prestashop>shopimporter_35a6535254a93c5338bff1e3572755d2'] = 'Forze: se ci sono errori con i dati, l\'importazione sostituirà i dati non corretti con dati generici.';
-$_MODULE['<{shopimporter}prestashop>shopimporter_807079d19357b6d44089c220f74cc2d0'] = 'Si prega di cambiare la lingua di default nella configurazione';
-$_MODULE['<{shopimporter}prestashop>shopimporter_6117c4d73fcf0c20fe3946f1d00dde85'] = 'Si prega di cambiare valuta di default nella configurazione';
-$_MODULE['<{shopimporter}prestashop>shopimporter_0ae5f9c75e6a7460ec31e33201576bd9'] = 'Importa Fornitori';
-$_MODULE['<{shopimporter}prestashop>shopimporter_d714c742b360a8ecbb124c15e9a391a1'] = 'Importatore negozio';
-$_MODULE['<{shopimporter}prestashop>shopimporter_386c339d37e737a436499d423a77df0c'] = 'Valuta';
-$_MODULE['<{shopimporter}prestashop>shopimporter_03937134cedab9078be39a77ee3a48a0'] = 'Gruppo';
-$_MODULE['<{shopimporter}prestashop>shopimporter_dd7bf230fde8d4836917806aff6a6b27'] = 'Indirizzo';
-$_MODULE['<{shopimporter}prestashop>shopimporter_c0bd7654d5b278e65f21cf4e9153fdb4'] = 'Produttore';
-$_MODULE['<{shopimporter}prestashop>shopimporter_ed4cbbbeb3d575ccfeb405ae5c5c4d43'] = 'Importa Produttori';
-$_MODULE['<{shopimporter}prestashop>shopimporter_f2bbdf9f72c085adc4d0404e370f0f4c'] = 'Attributo';
-$_MODULE['<{shopimporter}prestashop>shopimporter_66e2d23b2d257d56af6f1d6443ce0ce3'] = 'Importa Attributi';
-$_MODULE['<{shopimporter}prestashop>shopimporter_deb10517653c255364175796ace3553f'] = 'Prodotto';
-$_MODULE['<{shopimporter}prestashop>shopimporter_f2931b8b1622867fcc461d7de388e319'] = 'Importa cronologia ordini';
-$_MODULE['<{shopimporter}prestashop>shopimporter_89a399eee52b2a6daaea92eba3e14cad'] = 'Lancia la prova di importazione';
-$_MODULE['<{shopimporter}prestashop>shopimporter_bf79359f8edda6f7df97ef57a4ee09b6'] = 'Lancia importazione';
-$_MODULE['<{shopimporter}prestashop>shopimporter_edc186cbc5cc897a79312880ec16c621'] = 'Si prega di scegliere una cosa da importare';
-$_MODULE['<{shopimporter}prestashop>shopimporter_05f4be265d59ea66f3a1fb12ba103583'] = 'Scegli la tua importazione';
-$_MODULE['<{shopimporter}prestashop>shopimporter_72dd98a453e92ccc01697f29bb5dbeb9'] = 'Opzioni di importazione';
-$_MODULE['<{shopimporter}prestashop>shopimporter_9dfc5d5738312210c3c75e68a468691d'] = 'Opzioni avanzate';
-$_MODULE['<{shopimporter}prestashop>shopimporter_05d2b3715ac0c697b86799d1989c4aeb'] = 'Stop: se ci sono errori con i dati, l\'importazione non verrà eseguita.';
-$_MODULE['<{shopimporter}prestashop>shopimporter_09b4382d10c396e0c4fcd51064702213'] = 'Opzioni specifiche';
-$_MODULE['<{shopimporter}prestashop>shopimporter_8136c99d09cb6e9f0f998dd231fff6ed'] = 'Si è verificato un errore nell\'aggiunta dell\'oggetto';
-$_MODULE['<{shopimporter}prestashop>shopimporter_c662307430c97af94e120201c8d56c66'] = 'Il campo %1$s è richiesto almeno in %2$s';
-$_MODULE['<{shopimporter}prestashop>shopimporter_35f428e10ac312a2d9a32325c8294df9'] = 'Il campo %1$s (%2$s) non è valido';
-$_MODULE['<{shopimporter}prestashop>shopimporter_44205a67121fcca5ffa925d1ed77b65e'] = 'L\'archivio non può essere estratto';
-$_MODULE['<{shopimporter}prestashop>shopimporter_edeb9e20655b946e4bee4ac44a6c0a7f'] = 'Il server non dispone di permessi per la scrittura';
-$_MODULE['<{shopimporter}prestashop>shopimporter_4994a8ffeba4ac3140beb89e8d41f174'] = 'Lingua';
-$_MODULE['<{shopimporter}prestashop>shopimporter_a9db6adcdafc85c5830439401fd866f6'] = 'Importa Lingue';
-$_MODULE['<{shopimporter}prestashop>shopimporter_4234c64201820401dfa04eeb449c1bbc'] = 'Importa Valute';
-$_MODULE['<{shopimporter}prestashop>shopimporter_719fec04166d6fa75f89cd29ad61fa8c'] = 'Tasse';
-$_MODULE['<{shopimporter}prestashop>shopimporter_59716c97497eb9694541f7c3d37b1a4d'] = 'Paese';
-$_MODULE['<{shopimporter}prestashop>shopimporter_65ac19ad248219902394739bda0cef62'] = 'Importa gruppi';
-$_MODULE['<{shopimporter}prestashop>shopimporter_3adbdb3ac060038aa0e6e6c138ef9873'] = 'Categoria';
-$_MODULE['<{shopimporter}prestashop>shopimporter_1db7ae20c24e257b6f1a7def365da1ad'] = 'Importa categorie';
-$_MODULE['<{shopimporter}prestashop>shopimporter_b3df6b363e7979ce81b71d92961fc672'] = 'Stati ordini';
-$_MODULE['<{shopimporter}prestashop>shopimporter_a240fa27925a635b08dc28c9e4f9216d'] = 'Ordine';
-$_MODULE['<{shopimporter}prestashop>shopimporter_32a6deec3cca312a54d6b8769c9b8dd7'] = 'non è disponibile in questo modulo';
-$_MODULE['<{shopimporter}prestashop>shopimporter_0b5a6ead644b8ae4edb8a036334c9ed6'] = 'Si sono verificati errori durante l\'importazione. Per maggiori dettagli cliccate su \\"Mostra errori\\"';
-$_MODULE['<{shopimporter}prestashop>shopimporter_596403b61367ca30d6de75812275f9cd'] = 'Rimuovere i dati';
-$_MODULE['<{shopimporter}prestashop>shopimporter_81b33153f65252001fe132d74b658fbe'] = 'Importa da un altro sistema';
-$_MODULE['<{shopimporter}prestashop>shopimporter_60474e812295a5adc371de63dc62a164'] = 'Clicca qui per il backup';
-$_MODULE['<{shopimporter}prestashop>shopimporter_c195d4db1be0d349d21f236f0a6400ff'] = 'Questa modalità è pericolosa';
-$_MODULE['<{shopimporter}prestashop>shopimporter_11a755d598c0c417f9a36758c3da7481'] = 'Stop';
-$_MODULE['<{shopimporter}prestashop>shopimporter_690c3a7f595050729df99a6d30dd6f96'] = 'Salta: se ci sono errori con i dati, l\'importazione salterà dati non corretti.';
-$_MODULE['<{shopimporter}prestashop>shopimporter_044a8ce60a6c5a464e7a7f78698fc05d'] = 'Lingua di default non corrisponde:';
-$_MODULE['<{shopimporter}prestashop>ajax_49bd922182bd3518641589e3077eacd3'] = 'Impossibile connettersi al database.';
-$_MODULE['<{shopimporter}prestashop>shopimporter_b8b8ca447e355455b8dc638993c41ae7'] = 'Nuove lingue aggiungerà automaticamente traduzioni!';
-$_MODULE['<{shopimporter}prestashop>shopimporter_6ec25fc9cc7df7b0d1fce57923f46ec1'] = 'Importa norme fiscali';
-$_MODULE['<{shopimporter}prestashop>shopimporter_13eedcf49d68ce49274db71e63a7aa3d'] = 'Importa paesi';
-$_MODULE['<{shopimporter}prestashop>shopimporter_118421de3201927a23bf921057e69c4a'] = 'Importa Stati';
-$_MODULE['<{shopimporter}prestashop>shopimporter_ce26601dac0dea138b7295f02b7620a7'] = 'Cliente';
-$_MODULE['<{shopimporter}prestashop>shopimporter_22c34564e80ce8adab6a235061d277f4'] = 'Importa Clienti';
-$_MODULE['<{shopimporter}prestashop>shopimporter_ec136b444eede3bc85639fac0dd06229'] = 'Fornitore';
-$_MODULE['<{shopimporter}prestashop>shopimporter_4bfc4a7632bae0877b798dbd9efc4f70'] = 'Importa prodotti';
-$_MODULE['<{shopimporter}prestashop>shopimporter_6b24bd15b10bc10de9687f16ebe728e4'] = 'Importa Stati ordini';
-$_MODULE['<{shopimporter}prestashop>shopimporter_1e411d25230ba738b9ae583bcb9b0b57'] = 'Connessione al database OK';
-$_MODULE['<{shopimporter}prestashop>shopimporter_472f0b8c78cc382302e094c94856c951'] = 'Connessione al servizio Web OK';
-$_MODULE['<{shopimporter}prestashop>shopimporter_e905d0eb5204b761d8c0e3eebed4a0e0'] = 'L\'importazione è completata';
-$_MODULE['<{shopimporter}prestashop>shopimporter_dd4c0c798ebbf8c6e15dcba8632f558d'] = 'Prima di iniziare l\'importazione, fare il backup del database.';
-$_MODULE['<{shopimporter}prestashop>shopimporter_961f2247a2070bedff9f9cd8d64e2650'] = 'Scegli';
-$_MODULE['<{shopimporter}prestashop>shopimporter_11e9fa925cb444a223769edd53334f13'] = 'Importa per ogni';
-$_MODULE['<{shopimporter}prestashop>shopimporter_70fda5850e8d8946a340c55bf985fd39'] = 'Selezionare il numero di occorrenze per ogni richiesta di importazione';
-$_MODULE['<{shopimporter}prestashop>shopimporter_72ef2b9b6965d078e3c7f95487a82d1c'] = 'Salta';
-$_MODULE['<{shopimporter}prestashop>shopimporter_9eb6b78a99cdb6ffd3d40d18621d9f80'] = 'Forza';
-$_MODULE['<{shopimporter}prestashop>shopimporter_29361e9c6917fb14b43d3e78e2811e56'] = 'Valuta di default non corrisponde:';
-$_MODULE['<{shopimporter}prestashop>shopimporter_2deae2efe4b65df80c188a31fed3cc17'] = 'Il campo %s è richiesto.';
-$_MODULE['<{shopimporter}prestashop>shopimporter_1086ee44ab3d66a33d23308e942067e0'] = 'Il campo %1$s è troppo lungo (%2$d caratteri al massimo).';
-$_MODULE['<{shopimporter}prestashop>shopimporter_3d2496e596f4cbc8045e689d94f77cbd'] = 'Il campo %s non è valido';
-$_MODULE['<{shopimporter}prestashop>shopimporter_25d42a115ce1c8390ba062cbc958deb3'] = 'Il campo %1$s (%2$s) è troppo lungo: %3$d caratteri al massimo.';
-$_MODULE['<{shopimporter}prestashop>shopimporter_6cf73576720519e739771a4fa489410b'] = 'lingua introvabile';
-$_MODULE['<{shopimporter}prestashop>shopimporter_21d250d17e35e3e02db9f1a618bad913'] = 'Importa Zone';
-$_MODULE['<{shopimporter}prestashop>shopimporter_179bdae10ca983dd1cf9cd1a4bf4f20a'] = 'L\'archivio non può essere caricato da Prestashop.com';
diff --git a/modules/statsbestcategories/translations/de.php b/modules/statsbestcategories/translations/de.php
deleted file mode 100644
index 9841b4e43..000000000
--- a/modules/statsbestcategories/translations/de.php
+++ /dev/null
@@ -1,14 +0,0 @@
-statsbestcategories_4f29d8c727dcf2022ac241cb96c31083'] = 'Ausgabe Aufnahmeeinstellungen leer';
-$_MODULE['<{statsbestcategories}prestashop>statsbestcategories_f5c493141bb4b2508c5938fd9353291a'] = '%1$s von %2$s';
-$_MODULE['<{statsbestcategories}prestashop>statsbestcategories_c13329e42ec01a10f84c0f950274b404'] = 'Insgesamt gesehen';
-$_MODULE['<{statsbestcategories}prestashop>statsbestcategories_6e3b3150807da868ebd33ad2c991b8d7'] = 'Beste Kategorien';
-$_MODULE['<{statsbestcategories}prestashop>statsbestcategories_a2e1fa19a6a3405a4e82cb5daa66310d'] = 'Eine Liste der besten Kategorien';
-$_MODULE['<{statsbestcategories}prestashop>statsbestcategories_998e4c5c80f27dec552e99dfed34889a'] = 'CSV-Export';
-$_MODULE['<{statsbestcategories}prestashop>statsbestcategories_49ee3087348e8d44e1feda1917443987'] = 'Name';
-$_MODULE['<{statsbestcategories}prestashop>statsbestcategories_eebfd2d9a7ea25b9e61e8260bcd4849c'] = 'Insgesamt verkaufte Menge';
-$_MODULE['<{statsbestcategories}prestashop>statsbestcategories_f3547ae5e06426d87312eff7dda775aa'] = 'Gesamtpreis Verkauf';
diff --git a/modules/statsbestcategories/translations/en.php b/modules/statsbestcategories/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/statsbestcategories/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-statsbestcategories_4f29d8c727dcf2022ac241cb96c31083'] = 'Devolución de recordset vacío';
-$_MODULE['<{statsbestcategories}prestashop>statsbestcategories_f5c493141bb4b2508c5938fd9353291a'] = 'Mostrando %1$s de %2$s';
-$_MODULE['<{statsbestcategories}prestashop>statsbestcategories_c13329e42ec01a10f84c0f950274b404'] = 'Total visto';
-$_MODULE['<{statsbestcategories}prestashop>statsbestcategories_6e3b3150807da868ebd33ad2c991b8d7'] = 'Mejores categorías';
-$_MODULE['<{statsbestcategories}prestashop>statsbestcategories_a2e1fa19a6a3405a4e82cb5daa66310d'] = 'Lista de las mejores categorías';
-$_MODULE['<{statsbestcategories}prestashop>statsbestcategories_998e4c5c80f27dec552e99dfed34889a'] = 'CSV Export';
-$_MODULE['<{statsbestcategories}prestashop>statsbestcategories_49ee3087348e8d44e1feda1917443987'] = 'Nombre';
-$_MODULE['<{statsbestcategories}prestashop>statsbestcategories_eebfd2d9a7ea25b9e61e8260bcd4849c'] = 'Cantidad total venta';
-$_MODULE['<{statsbestcategories}prestashop>statsbestcategories_f3547ae5e06426d87312eff7dda775aa'] = 'Precio total venta';
diff --git a/modules/statsbestcategories/translations/fr.php b/modules/statsbestcategories/translations/fr.php
deleted file mode 100644
index 1fa9a12a7..000000000
--- a/modules/statsbestcategories/translations/fr.php
+++ /dev/null
@@ -1,14 +0,0 @@
-statsbestcategories_4f29d8c727dcf2022ac241cb96c31083'] = 'Aucun résultat';
-$_MODULE['<{statsbestcategories}prestashop>statsbestcategories_f5c493141bb4b2508c5938fd9353291a'] = 'Affichage de %1$s de %2$s';
-$_MODULE['<{statsbestcategories}prestashop>statsbestcategories_c13329e42ec01a10f84c0f950274b404'] = 'Total consulté';
-$_MODULE['<{statsbestcategories}prestashop>statsbestcategories_6e3b3150807da868ebd33ad2c991b8d7'] = 'Meilleures catégories';
-$_MODULE['<{statsbestcategories}prestashop>statsbestcategories_a2e1fa19a6a3405a4e82cb5daa66310d'] = 'Liste des meilleures catégories';
-$_MODULE['<{statsbestcategories}prestashop>statsbestcategories_998e4c5c80f27dec552e99dfed34889a'] = 'Export CSV';
-$_MODULE['<{statsbestcategories}prestashop>statsbestcategories_49ee3087348e8d44e1feda1917443987'] = 'Nom';
-$_MODULE['<{statsbestcategories}prestashop>statsbestcategories_eebfd2d9a7ea25b9e61e8260bcd4849c'] = 'Quantité totale vendue';
-$_MODULE['<{statsbestcategories}prestashop>statsbestcategories_f3547ae5e06426d87312eff7dda775aa'] = 'Prix total vendu';
diff --git a/modules/statsbestcategories/translations/it.php b/modules/statsbestcategories/translations/it.php
deleted file mode 100644
index e69cef136..000000000
--- a/modules/statsbestcategories/translations/it.php
+++ /dev/null
@@ -1,14 +0,0 @@
-statsbestcategories_4f29d8c727dcf2022ac241cb96c31083'] = 'recordset vuoto restituito';
-$_MODULE['<{statsbestcategories}prestashop>statsbestcategories_f5c493141bb4b2508c5938fd9353291a'] = 'Mostra %1$s di %2$s';
-$_MODULE['<{statsbestcategories}prestashop>statsbestcategories_c13329e42ec01a10f84c0f950274b404'] = 'Totale Visto';
-$_MODULE['<{statsbestcategories}prestashop>statsbestcategories_6e3b3150807da868ebd33ad2c991b8d7'] = 'Migliori categorie';
-$_MODULE['<{statsbestcategories}prestashop>statsbestcategories_a2e1fa19a6a3405a4e82cb5daa66310d'] = 'Elenco dei migliori categorie';
-$_MODULE['<{statsbestcategories}prestashop>statsbestcategories_998e4c5c80f27dec552e99dfed34889a'] = 'Esporta CSV';
-$_MODULE['<{statsbestcategories}prestashop>statsbestcategories_49ee3087348e8d44e1feda1917443987'] = 'Nome';
-$_MODULE['<{statsbestcategories}prestashop>statsbestcategories_eebfd2d9a7ea25b9e61e8260bcd4849c'] = 'Quantità totali vendute';
-$_MODULE['<{statsbestcategories}prestashop>statsbestcategories_f3547ae5e06426d87312eff7dda775aa'] = 'Prezzo totale venduto';
diff --git a/modules/statsbestcustomers/translations/de.php b/modules/statsbestcustomers/translations/de.php
deleted file mode 100644
index 912675b89..000000000
--- a/modules/statsbestcustomers/translations/de.php
+++ /dev/null
@@ -1,21 +0,0 @@
-statsbestcustomers_77587239bf4c54ea493c7033e1dbf636'] = 'Nachname';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_1ff1b62d08d1195f073c6adac00f1894'] = 'ausgegebenes Geld';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_cb21e843b037359d0fb5b793fccf964f'] = 'Kundentreue entwickeln';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_0c854a411bcae590a2a44a9b18487d12'] = 'Einen Kunden zu behalten ist rentabler als einen Neukunden zu akquirieren. Daher ist es notwendig, Ihre Treue zu gewinnen, oder anders gesagt, sie dazu zu bringen, zu Ihrem Webshop zurückzukehren.';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_4f29d8c727dcf2022ac241cb96c31083'] = 'Ausgabe Aufnahmeeinstellungen leer';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_f5c493141bb4b2508c5938fd9353291a'] = '%1$s von %2$s';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'E-Mail';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_d7e637a6e9ff116de2fa89551240a94d'] = 'Besuche';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_ca5c7eec61c59f2bd4572d1c5f34b10a'] = 'Eine Liste der besten Kunden';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_197bad7ad08abfd1dc45ab92f96f155d'] = 'Der gute Ruf ist ebenfalls ein Mittel, zufriedene Kunden zu bekommen; ein unzufriedener Kunde zieht keine Neukunden an.';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_bc910f8bdf70f29374f496f05be0330c'] = 'Vorname';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_998e4c5c80f27dec552e99dfed34889a'] = 'CSV-Export';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_99666939cbe5b9f120bb5a5050abda66'] = 'Diese Operationen fördern Kunden, Produkte zu kaufen und besuchen Sie Ihren Webshop regelmäßig.';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_8b83489bd116cb60e2f348e9c63cd7f6'] = 'Beste Kunden';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_6602bbeb2956c035fb4cb5e844a4861b'] = 'Guide';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_860b64638db92a2d084e4e5182b20f31'] = 'Um dieses Ziel zu erreichen, können Sie folgende Aktionen organisieren:';
diff --git a/modules/statsbestcustomers/translations/en.php b/modules/statsbestcustomers/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/statsbestcustomers/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-statsbestcustomers_77587239bf4c54ea493c7033e1dbf636'] = 'apellido';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_1ff1b62d08d1195f073c6adac00f1894'] = 'Dinero enviado';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_cb21e843b037359d0fb5b793fccf964f'] = 'Desarrolle la fidelidad de sus clientes';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_0c854a411bcae590a2a44a9b18487d12'] = 'Mantener un cliente satisfecho es más rentable que captar uno nuevo. Por lo tanto, es necesario ganarse su lealtad, para que vuelva a su tienda.';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_4f29d8c727dcf2022ac241cb96c31083'] = 'Devolución de recordset vacío';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_f5c493141bb4b2508c5938fd9353291a'] = 'Mostrando %1$s de %2$s';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'Email';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_d7e637a6e9ff116de2fa89551240a94d'] = 'Visitas';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_ca5c7eec61c59f2bd4572d1c5f34b10a'] = 'Lista de los mejores clientes';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_197bad7ad08abfd1dc45ab92f96f155d'] = 'El boca a boca es uno de los mejores medios de conseguir clientes satisfechos; un cliente satisfecho atrae nuevos clientes.';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_bc910f8bdf70f29374f496f05be0330c'] = 'Nombre';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_998e4c5c80f27dec552e99dfed34889a'] = 'CSV Export';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_99666939cbe5b9f120bb5a5050abda66'] = 'Estas operaciones animan a sus clientes a comprar y también a volver a su tienda regularmente.';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_8b83489bd116cb60e2f348e9c63cd7f6'] = 'Mejores clientes';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_6602bbeb2956c035fb4cb5e844a4861b'] = 'Guía';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_860b64638db92a2d084e4e5182b20f31'] = 'Para alcanzar este objetivo usted puede organizar:';
diff --git a/modules/statsbestcustomers/translations/fr.php b/modules/statsbestcustomers/translations/fr.php
deleted file mode 100644
index 93a4dde71..000000000
--- a/modules/statsbestcustomers/translations/fr.php
+++ /dev/null
@@ -1,21 +0,0 @@
-statsbestcustomers_77587239bf4c54ea493c7033e1dbf636'] = 'Nom';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_1ff1b62d08d1195f073c6adac00f1894'] = 'Argent dépensé';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_cb21e843b037359d0fb5b793fccf964f'] = 'Fidéliser les clients';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_0c854a411bcae590a2a44a9b18487d12'] = 'Garder un client est plus rentable que d’en conquérir un nouveau. Il est donc impératif de le fidéliser, c\'est-à-dire de lui donner envie de revenir sur votre boutique. ';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_4f29d8c727dcf2022ac241cb96c31083'] = 'Aucun résultat';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_f5c493141bb4b2508c5938fd9353291a'] = 'Affichage de %1$s de %2$s';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'E-mail';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_d7e637a6e9ff116de2fa89551240a94d'] = 'Visites';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_ca5c7eec61c59f2bd4572d1c5f34b10a'] = 'Classement des meilleurs clients';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_197bad7ad08abfd1dc45ab92f96f155d'] = 'Le bouche à oreille est également un moyen d\'avoir de nouveaux clients satisfaits ; car un client mécontent n\'en attirera pas de nouveaux. ';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_bc910f8bdf70f29374f496f05be0330c'] = 'Prénom';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_998e4c5c80f27dec552e99dfed34889a'] = 'Export CSV';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_99666939cbe5b9f120bb5a5050abda66'] = 'Ces opérations incitent non seulement le client à acheter, mais aussi à revenir régulièrement sur votre boutique.';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_8b83489bd116cb60e2f348e9c63cd7f6'] = 'Meilleurs clients';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_6602bbeb2956c035fb4cb5e844a4861b'] = 'Guide';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_860b64638db92a2d084e4e5182b20f31'] = 'Pour y parvenir, plusieurs moyens existent :';
diff --git a/modules/statsbestcustomers/translations/it.php b/modules/statsbestcustomers/translations/it.php
deleted file mode 100644
index 6b5dcc8b1..000000000
--- a/modules/statsbestcustomers/translations/it.php
+++ /dev/null
@@ -1,21 +0,0 @@
-statsbestcustomers_77587239bf4c54ea493c7033e1dbf636'] = 'Cognome';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_1ff1b62d08d1195f073c6adac00f1894'] = 'Soldi spesi';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_cb21e843b037359d0fb5b793fccf964f'] = 'Sviluppa la fedeltà dei clienti';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_0c854a411bcae590a2a44a9b18487d12'] = 'Mantenere un cliente è più redditizio che catturarne uno nuovo. Pertanto, è necessario sviluppare la loro fedeltà, in altre parole, devi farli tornare al tuo negozio online.';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_4f29d8c727dcf2022ac241cb96c31083'] = 'recordset vuoto restituito';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_f5c493141bb4b2508c5938fd9353291a'] = 'Mostra %1$s di %2$s';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'E-mail';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_d7e637a6e9ff116de2fa89551240a94d'] = 'Visite';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_ca5c7eec61c59f2bd4572d1c5f34b10a'] = 'Elenco dei migliori clienti';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_197bad7ad08abfd1dc45ab92f96f155d'] = 'Il passaparola è anche un mezzo per ottenere nuovi clienti soddisfatti; un cliente non soddisfatto non attirerà nuovi clienti.';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_bc910f8bdf70f29374f496f05be0330c'] = 'Nome';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_998e4c5c80f27dec552e99dfed34889a'] = 'Esporta CSV';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_99666939cbe5b9f120bb5a5050abda66'] = 'Queste operazioni incoraggiare i clienti ad acquistare prodotti e visitare il vostro negozio online regolarmente.';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_8b83489bd116cb60e2f348e9c63cd7f6'] = 'Migliori clienti';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_6602bbeb2956c035fb4cb5e844a4861b'] = 'Guida';
-$_MODULE['<{statsbestcustomers}prestashop>statsbestcustomers_860b64638db92a2d084e4e5182b20f31'] = 'Al fine di raggiungere questo obiettivo è possibile organizzare:';
diff --git a/modules/statsbestmanufacturers/translations/de.php b/modules/statsbestmanufacturers/translations/de.php
deleted file mode 100644
index 8ebe8a4a9..000000000
--- a/modules/statsbestmanufacturers/translations/de.php
+++ /dev/null
@@ -1,13 +0,0 @@
-statsbestmanufacturers_f5c493141bb4b2508c5938fd9353291a'] = '%1$s von %2$s';
-$_MODULE['<{statsbestmanufacturers}prestashop>statsbestmanufacturers_72fd9b5482201824daae557360d91196'] = 'Beste Hersteller';
-$_MODULE['<{statsbestmanufacturers}prestashop>statsbestmanufacturers_49ee3087348e8d44e1feda1917443987'] = 'Name';
-$_MODULE['<{statsbestmanufacturers}prestashop>statsbestmanufacturers_2a0440eec72540c5b30d9199c01f348c'] = 'Verkaufte Menge';
-$_MODULE['<{statsbestmanufacturers}prestashop>statsbestmanufacturers_ea067eb37801c5aab1a1c685eb97d601'] = 'Bezahlter Gesamtbetrag';
-$_MODULE['<{statsbestmanufacturers}prestashop>statsbestmanufacturers_4f29d8c727dcf2022ac241cb96c31083'] = 'Ausgabe Aufnahmeeinstellungen leer';
-$_MODULE['<{statsbestmanufacturers}prestashop>statsbestmanufacturers_aa1b814546fe3e2e96ef3a185e4df8e9'] = 'Eine Liste der besten Hersteller';
-$_MODULE['<{statsbestmanufacturers}prestashop>statsbestmanufacturers_998e4c5c80f27dec552e99dfed34889a'] = 'CSV-Export';
diff --git a/modules/statsbestmanufacturers/translations/en.php b/modules/statsbestmanufacturers/translations/en.php
deleted file mode 100755
index 9839c82f9..000000000
--- a/modules/statsbestmanufacturers/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-statsbestmanufacturers_f5c493141bb4b2508c5938fd9353291a'] = 'Mostrando %1$s de %2$s';
-$_MODULE['<{statsbestmanufacturers}prestashop>statsbestmanufacturers_72fd9b5482201824daae557360d91196'] = 'Mejores fabricantes';
-$_MODULE['<{statsbestmanufacturers}prestashop>statsbestmanufacturers_49ee3087348e8d44e1feda1917443987'] = 'Nombre';
-$_MODULE['<{statsbestmanufacturers}prestashop>statsbestmanufacturers_2a0440eec72540c5b30d9199c01f348c'] = 'Cantidad vendida';
-$_MODULE['<{statsbestmanufacturers}prestashop>statsbestmanufacturers_ea067eb37801c5aab1a1c685eb97d601'] = 'Total pagado';
-$_MODULE['<{statsbestmanufacturers}prestashop>statsbestmanufacturers_4f29d8c727dcf2022ac241cb96c31083'] = 'Devolución de recordset vacío';
-$_MODULE['<{statsbestmanufacturers}prestashop>statsbestmanufacturers_aa1b814546fe3e2e96ef3a185e4df8e9'] = 'Lista de los mejores fabricantes';
-$_MODULE['<{statsbestmanufacturers}prestashop>statsbestmanufacturers_998e4c5c80f27dec552e99dfed34889a'] = 'CSV Export';
diff --git a/modules/statsbestmanufacturers/translations/fr.php b/modules/statsbestmanufacturers/translations/fr.php
deleted file mode 100755
index 728bb9ca2..000000000
--- a/modules/statsbestmanufacturers/translations/fr.php
+++ /dev/null
@@ -1,13 +0,0 @@
-statsbestmanufacturers_f5c493141bb4b2508c5938fd9353291a'] = 'Affichage de %1$s de %2$s';
-$_MODULE['<{statsbestmanufacturers}prestashop>statsbestmanufacturers_72fd9b5482201824daae557360d91196'] = 'Meilleur fabricants ';
-$_MODULE['<{statsbestmanufacturers}prestashop>statsbestmanufacturers_49ee3087348e8d44e1feda1917443987'] = 'Nom';
-$_MODULE['<{statsbestmanufacturers}prestashop>statsbestmanufacturers_2a0440eec72540c5b30d9199c01f348c'] = 'Quantité vendus ';
-$_MODULE['<{statsbestmanufacturers}prestashop>statsbestmanufacturers_ea067eb37801c5aab1a1c685eb97d601'] = 'Total des sommes versées ';
-$_MODULE['<{statsbestmanufacturers}prestashop>statsbestmanufacturers_aa1b814546fe3e2e96ef3a185e4df8e9'] = 'Une liste des meilleurs fabricants ';
-$_MODULE['<{statsbestmanufacturers}prestashop>statsbestmanufacturers_998e4c5c80f27dec552e99dfed34889a'] = 'Export CSV';
-$_MODULE['<{statsbestmanufacturers}prestashop>statsbestmanufacturers_4f29d8c727dcf2022ac241cb96c31083'] = 'Aucun résultat';
diff --git a/modules/statsbestmanufacturers/translations/it.php b/modules/statsbestmanufacturers/translations/it.php
deleted file mode 100644
index 670c08830..000000000
--- a/modules/statsbestmanufacturers/translations/it.php
+++ /dev/null
@@ -1,13 +0,0 @@
-statsbestmanufacturers_f5c493141bb4b2508c5938fd9353291a'] = 'Mostra %1$s di %2$s';
-$_MODULE['<{statsbestmanufacturers}prestashop>statsbestmanufacturers_72fd9b5482201824daae557360d91196'] = 'Migliori produttori';
-$_MODULE['<{statsbestmanufacturers}prestashop>statsbestmanufacturers_49ee3087348e8d44e1feda1917443987'] = 'Nome';
-$_MODULE['<{statsbestmanufacturers}prestashop>statsbestmanufacturers_2a0440eec72540c5b30d9199c01f348c'] = 'Quantità venduta';
-$_MODULE['<{statsbestmanufacturers}prestashop>statsbestmanufacturers_ea067eb37801c5aab1a1c685eb97d601'] = 'Totale pagato';
-$_MODULE['<{statsbestmanufacturers}prestashop>statsbestmanufacturers_4f29d8c727dcf2022ac241cb96c31083'] = 'recordset vuoto restituito';
-$_MODULE['<{statsbestmanufacturers}prestashop>statsbestmanufacturers_aa1b814546fe3e2e96ef3a185e4df8e9'] = 'Elenco dei migliori produttori';
-$_MODULE['<{statsbestmanufacturers}prestashop>statsbestmanufacturers_998e4c5c80f27dec552e99dfed34889a'] = 'Esporta CSV';
diff --git a/modules/statsbestproducts/translations/de.php b/modules/statsbestproducts/translations/de.php
deleted file mode 100644
index e29eb6415..000000000
--- a/modules/statsbestproducts/translations/de.php
+++ /dev/null
@@ -1,18 +0,0 @@
-statsbestproducts_12d3c7a4296542c62474856ec452c045'] = 'Ref.';
-$_MODULE['<{statsbestproducts}prestashop>statsbestproducts_6771f2d557a34bd89ea7abc92a0a069c'] = 'Verkaufspreis';
-$_MODULE['<{statsbestproducts}prestashop>statsbestproducts_6e71d214907cd43403f4bbde5731a9a3'] = 'Vorhandene Lagermenge für Verkauf';
-$_MODULE['<{statsbestproducts}prestashop>statsbestproducts_b9ef20f6c20406b631db52374a519b1f'] = 'Beste Produkte';
-$_MODULE['<{statsbestproducts}prestashop>statsbestproducts_7664a37e0cc56aaf39aebf2edbd3f98e'] = 'Angesehene Seite';
-$_MODULE['<{statsbestproducts}prestashop>statsbestproducts_f5c493141bb4b2508c5938fd9353291a'] = '%1$s von %2$s';
-$_MODULE['<{statsbestproducts}prestashop>statsbestproducts_49ee3087348e8d44e1feda1917443987'] = 'Name';
-$_MODULE['<{statsbestproducts}prestashop>statsbestproducts_8c4d7af5f578693f9a6cf391e912ee33'] = 'Ausgabe Aufnahmeeinstellungen leer';
-$_MODULE['<{statsbestproducts}prestashop>statsbestproducts_2a0440eec72540c5b30d9199c01f348c'] = 'Verkaufte Menge';
-$_MODULE['<{statsbestproducts}prestashop>statsbestproducts_11ff9f68afb6b8b5b8eda218d7c83a65'] = 'Verkäufe';
-$_MODULE['<{statsbestproducts}prestashop>statsbestproducts_96e887520933606d3928a4ae164fe5e5'] = 'Verkaufte Menge/ Tag';
-$_MODULE['<{statsbestproducts}prestashop>statsbestproducts_dec6192cbc59ba37d38a3fdc5c3ed7f7'] = 'Eine Liste der besten Produkte';
-$_MODULE['<{statsbestproducts}prestashop>statsbestproducts_998e4c5c80f27dec552e99dfed34889a'] = 'CSV-Export';
diff --git a/modules/statsbestproducts/translations/en.php b/modules/statsbestproducts/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/statsbestproducts/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-statsbestproducts_12d3c7a4296542c62474856ec452c045'] = 'Ref.';
-$_MODULE['<{statsbestproducts}prestashop>statsbestproducts_6771f2d557a34bd89ea7abc92a0a069c'] = 'Precio de venta';
-$_MODULE['<{statsbestproducts}prestashop>statsbestproducts_6e71d214907cd43403f4bbde5731a9a3'] = 'Cantidad disponible para la venta';
-$_MODULE['<{statsbestproducts}prestashop>statsbestproducts_b9ef20f6c20406b631db52374a519b1f'] = 'Mejores productos';
-$_MODULE['<{statsbestproducts}prestashop>statsbestproducts_7664a37e0cc56aaf39aebf2edbd3f98e'] = 'Páginas vistas';
-$_MODULE['<{statsbestproducts}prestashop>statsbestproducts_f5c493141bb4b2508c5938fd9353291a'] = 'Mostrando %1$s de %2$s';
-$_MODULE['<{statsbestproducts}prestashop>statsbestproducts_49ee3087348e8d44e1feda1917443987'] = 'Nombre';
-$_MODULE['<{statsbestproducts}prestashop>statsbestproducts_8c4d7af5f578693f9a6cf391e912ee33'] = 'Devolución de recordset vacío';
-$_MODULE['<{statsbestproducts}prestashop>statsbestproducts_2a0440eec72540c5b30d9199c01f348c'] = 'Cantidad vendida';
-$_MODULE['<{statsbestproducts}prestashop>statsbestproducts_11ff9f68afb6b8b5b8eda218d7c83a65'] = 'Ventas';
-$_MODULE['<{statsbestproducts}prestashop>statsbestproducts_96e887520933606d3928a4ae164fe5e5'] = 'Cant./día';
-$_MODULE['<{statsbestproducts}prestashop>statsbestproducts_dec6192cbc59ba37d38a3fdc5c3ed7f7'] = 'Lista de los mejores productos';
-$_MODULE['<{statsbestproducts}prestashop>statsbestproducts_998e4c5c80f27dec552e99dfed34889a'] = 'CSV Export';
diff --git a/modules/statsbestproducts/translations/fr.php b/modules/statsbestproducts/translations/fr.php
deleted file mode 100644
index 8a42d3577..000000000
--- a/modules/statsbestproducts/translations/fr.php
+++ /dev/null
@@ -1,18 +0,0 @@
-statsbestproducts_12d3c7a4296542c62474856ec452c045'] = 'Réf.';
-$_MODULE['<{statsbestproducts}prestashop>statsbestproducts_6771f2d557a34bd89ea7abc92a0a069c'] = 'Prix de vente';
-$_MODULE['<{statsbestproducts}prestashop>statsbestproducts_6e71d214907cd43403f4bbde5731a9a3'] = 'Quantités disponibles à la vente';
-$_MODULE['<{statsbestproducts}prestashop>statsbestproducts_b9ef20f6c20406b631db52374a519b1f'] = 'Meilleurs produits';
-$_MODULE['<{statsbestproducts}prestashop>statsbestproducts_7664a37e0cc56aaf39aebf2edbd3f98e'] = 'Pages vues';
-$_MODULE['<{statsbestproducts}prestashop>statsbestproducts_f5c493141bb4b2508c5938fd9353291a'] = 'Affichage de %1$s de %2$s';
-$_MODULE['<{statsbestproducts}prestashop>statsbestproducts_49ee3087348e8d44e1feda1917443987'] = 'Nom';
-$_MODULE['<{statsbestproducts}prestashop>statsbestproducts_8c4d7af5f578693f9a6cf391e912ee33'] = 'Aucun résultat';
-$_MODULE['<{statsbestproducts}prestashop>statsbestproducts_2a0440eec72540c5b30d9199c01f348c'] = 'Qté vendue';
-$_MODULE['<{statsbestproducts}prestashop>statsbestproducts_11ff9f68afb6b8b5b8eda218d7c83a65'] = 'Ventes';
-$_MODULE['<{statsbestproducts}prestashop>statsbestproducts_96e887520933606d3928a4ae164fe5e5'] = 'Qté vendue / jour';
-$_MODULE['<{statsbestproducts}prestashop>statsbestproducts_dec6192cbc59ba37d38a3fdc5c3ed7f7'] = 'Liste des meilleurs produits';
-$_MODULE['<{statsbestproducts}prestashop>statsbestproducts_998e4c5c80f27dec552e99dfed34889a'] = 'Export CSV';
diff --git a/modules/statsbestproducts/translations/it.php b/modules/statsbestproducts/translations/it.php
deleted file mode 100644
index a30de3f28..000000000
--- a/modules/statsbestproducts/translations/it.php
+++ /dev/null
@@ -1,18 +0,0 @@
-statsbestproducts_12d3c7a4296542c62474856ec452c045'] = 'Rif.';
-$_MODULE['<{statsbestproducts}prestashop>statsbestproducts_6771f2d557a34bd89ea7abc92a0a069c'] = 'Prezzo di vendita';
-$_MODULE['<{statsbestproducts}prestashop>statsbestproducts_6e71d214907cd43403f4bbde5731a9a3'] = 'Quantità disponibile per la vendita';
-$_MODULE['<{statsbestproducts}prestashop>statsbestproducts_b9ef20f6c20406b631db52374a519b1f'] = 'I migliori prodotti';
-$_MODULE['<{statsbestproducts}prestashop>statsbestproducts_7664a37e0cc56aaf39aebf2edbd3f98e'] = 'Pagina visualizzata';
-$_MODULE['<{statsbestproducts}prestashop>statsbestproducts_f5c493141bb4b2508c5938fd9353291a'] = 'Mostra %1$s di %2$s';
-$_MODULE['<{statsbestproducts}prestashop>statsbestproducts_49ee3087348e8d44e1feda1917443987'] = 'Nome';
-$_MODULE['<{statsbestproducts}prestashop>statsbestproducts_8c4d7af5f578693f9a6cf391e912ee33'] = 'recordset vuoto restituito';
-$_MODULE['<{statsbestproducts}prestashop>statsbestproducts_2a0440eec72540c5b30d9199c01f348c'] = 'Qtà venduti';
-$_MODULE['<{statsbestproducts}prestashop>statsbestproducts_11ff9f68afb6b8b5b8eda218d7c83a65'] = 'Vendite';
-$_MODULE['<{statsbestproducts}prestashop>statsbestproducts_96e887520933606d3928a4ae164fe5e5'] = 'Qtà venduto / giorno';
-$_MODULE['<{statsbestproducts}prestashop>statsbestproducts_dec6192cbc59ba37d38a3fdc5c3ed7f7'] = 'Elenco dei migliori prodotti';
-$_MODULE['<{statsbestproducts}prestashop>statsbestproducts_998e4c5c80f27dec552e99dfed34889a'] = 'Esporta CSV';
diff --git a/modules/statsbestsuppliers/translations/de.php b/modules/statsbestsuppliers/translations/de.php
deleted file mode 100644
index 8e29bea4e..000000000
--- a/modules/statsbestsuppliers/translations/de.php
+++ /dev/null
@@ -1,13 +0,0 @@
-statsbestsuppliers_b5f5c19c8729b639d4d2a256fcb01a10'] = 'Ausgabe Aufnahmeeinstellungen leer';
-$_MODULE['<{statsbestsuppliers}prestashop>statsbestsuppliers_f5c493141bb4b2508c5938fd9353291a'] = 'Zeige %1$s von %2$s';
-$_MODULE['<{statsbestsuppliers}prestashop>statsbestsuppliers_49ee3087348e8d44e1feda1917443987'] = 'Name';
-$_MODULE['<{statsbestsuppliers}prestashop>statsbestsuppliers_cc3eb9ba7d0e236f33023a4744d0693a'] = 'Beste Zulieferer';
-$_MODULE['<{statsbestsuppliers}prestashop>statsbestsuppliers_998e4c5c80f27dec552e99dfed34889a'] = 'CSV-Export';
-$_MODULE['<{statsbestsuppliers}prestashop>statsbestsuppliers_ea067eb37801c5aab1a1c685eb97d601'] = 'Bezahlter Gesamtbetrag';
-$_MODULE['<{statsbestsuppliers}prestashop>statsbestsuppliers_0fbee5f62b2695e84a5eb275bcf98c6f'] = 'Eine Liste der besten Zulieferer';
-$_MODULE['<{statsbestsuppliers}prestashop>statsbestsuppliers_2a0440eec72540c5b30d9199c01f348c'] = 'Verkaufte Menge';
diff --git a/modules/statsbestsuppliers/translations/en.php b/modules/statsbestsuppliers/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/statsbestsuppliers/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-statsbestsuppliers_b5f5c19c8729b639d4d2a256fcb01a10'] = 'Devolución de recordset vacío';
-$_MODULE['<{statsbestsuppliers}prestashop>statsbestsuppliers_f5c493141bb4b2508c5938fd9353291a'] = 'Mostrando %1$s de %2$s';
-$_MODULE['<{statsbestsuppliers}prestashop>statsbestsuppliers_49ee3087348e8d44e1feda1917443987'] = 'Nombre';
-$_MODULE['<{statsbestsuppliers}prestashop>statsbestsuppliers_cc3eb9ba7d0e236f33023a4744d0693a'] = 'Mejores proveedores';
-$_MODULE['<{statsbestsuppliers}prestashop>statsbestsuppliers_998e4c5c80f27dec552e99dfed34889a'] = 'CSV Export';
-$_MODULE['<{statsbestsuppliers}prestashop>statsbestsuppliers_ea067eb37801c5aab1a1c685eb97d601'] = 'Total pagado';
-$_MODULE['<{statsbestsuppliers}prestashop>statsbestsuppliers_0fbee5f62b2695e84a5eb275bcf98c6f'] = 'Lista de los mejores proveedores';
-$_MODULE['<{statsbestsuppliers}prestashop>statsbestsuppliers_2a0440eec72540c5b30d9199c01f348c'] = 'Cantidad vendida';
diff --git a/modules/statsbestsuppliers/translations/fr.php b/modules/statsbestsuppliers/translations/fr.php
deleted file mode 100644
index 53a3567e7..000000000
--- a/modules/statsbestsuppliers/translations/fr.php
+++ /dev/null
@@ -1,13 +0,0 @@
-statsbestsuppliers_f5c493141bb4b2508c5938fd9353291a'] = 'Affichage de %1$s de %2$s';
-$_MODULE['<{statsbestsuppliers}prestashop>statsbestsuppliers_49ee3087348e8d44e1feda1917443987'] = 'Nom';
-$_MODULE['<{statsbestsuppliers}prestashop>statsbestsuppliers_b5f5c19c8729b639d4d2a256fcb01a10'] = 'Aucun résultat';
-$_MODULE['<{statsbestsuppliers}prestashop>statsbestsuppliers_cc3eb9ba7d0e236f33023a4744d0693a'] = 'Meilleurs fournisseurs';
-$_MODULE['<{statsbestsuppliers}prestashop>statsbestsuppliers_998e4c5c80f27dec552e99dfed34889a'] = 'Export CSV';
-$_MODULE['<{statsbestsuppliers}prestashop>statsbestsuppliers_ea067eb37801c5aab1a1c685eb97d601'] = 'Ventes';
-$_MODULE['<{statsbestsuppliers}prestashop>statsbestsuppliers_0fbee5f62b2695e84a5eb275bcf98c6f'] = 'Liste des meilleurs fournisseurs';
-$_MODULE['<{statsbestsuppliers}prestashop>statsbestsuppliers_2a0440eec72540c5b30d9199c01f348c'] = 'Quantité';
diff --git a/modules/statsbestsuppliers/translations/it.php b/modules/statsbestsuppliers/translations/it.php
deleted file mode 100644
index d91bd3ea1..000000000
--- a/modules/statsbestsuppliers/translations/it.php
+++ /dev/null
@@ -1,13 +0,0 @@
-statsbestsuppliers_b5f5c19c8729b639d4d2a256fcb01a10'] = 'recordset vuoto restituito';
-$_MODULE['<{statsbestsuppliers}prestashop>statsbestsuppliers_f5c493141bb4b2508c5938fd9353291a'] = 'Mostra %1$s di %2$s';
-$_MODULE['<{statsbestsuppliers}prestashop>statsbestsuppliers_49ee3087348e8d44e1feda1917443987'] = 'Nome';
-$_MODULE['<{statsbestsuppliers}prestashop>statsbestsuppliers_cc3eb9ba7d0e236f33023a4744d0693a'] = 'Migliori fornitori';
-$_MODULE['<{statsbestsuppliers}prestashop>statsbestsuppliers_998e4c5c80f27dec552e99dfed34889a'] = 'Esporta CSV';
-$_MODULE['<{statsbestsuppliers}prestashop>statsbestsuppliers_ea067eb37801c5aab1a1c685eb97d601'] = 'Totale pagato';
-$_MODULE['<{statsbestsuppliers}prestashop>statsbestsuppliers_0fbee5f62b2695e84a5eb275bcf98c6f'] = 'Elenco dei migliori fornitori';
-$_MODULE['<{statsbestsuppliers}prestashop>statsbestsuppliers_2a0440eec72540c5b30d9199c01f348c'] = 'Quantità venduta';
diff --git a/modules/statsbestvouchers/translations/de.php b/modules/statsbestvouchers/translations/de.php
deleted file mode 100644
index 4d4301bd1..000000000
--- a/modules/statsbestvouchers/translations/de.php
+++ /dev/null
@@ -1,13 +0,0 @@
-statsbestvouchers_f5c493141bb4b2508c5938fd9353291a'] = 'Zeige %1$s von %2$s';
-$_MODULE['<{statsbestvouchers}prestashop>statsbestvouchers_49ee3087348e8d44e1feda1917443987'] = 'Name';
-$_MODULE['<{statsbestvouchers}prestashop>statsbestvouchers_11ff9f68afb6b8b5b8eda218d7c83a65'] = 'Verkäufe';
-$_MODULE['<{statsbestvouchers}prestashop>statsbestvouchers_8fc8a29113479bf76f0917c51795ca99'] = 'Eine Liste der besten Gutscheine';
-$_MODULE['<{statsbestvouchers}prestashop>statsbestvouchers_4f29d8c727dcf2022ac241cb96c31083'] = 'Ausgabe Aufnahmeeinstellungen leer';
-$_MODULE['<{statsbestvouchers}prestashop>statsbestvouchers_df25596dc94d556af2f1823725118572'] = 'Gesamt benutzt';
-$_MODULE['<{statsbestvouchers}prestashop>statsbestvouchers_b769cee333527b8dc6f3f67882e35a0b'] = 'Beste Gutscheine';
-$_MODULE['<{statsbestvouchers}prestashop>statsbestvouchers_998e4c5c80f27dec552e99dfed34889a'] = 'CSV-Export';
diff --git a/modules/statsbestvouchers/translations/en.php b/modules/statsbestvouchers/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/statsbestvouchers/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-statsbestvouchers_f5c493141bb4b2508c5938fd9353291a'] = 'Mostrando %1$s de %2$s';
-$_MODULE['<{statsbestvouchers}prestashop>statsbestvouchers_49ee3087348e8d44e1feda1917443987'] = 'Nombre';
-$_MODULE['<{statsbestvouchers}prestashop>statsbestvouchers_11ff9f68afb6b8b5b8eda218d7c83a65'] = 'Ventas';
-$_MODULE['<{statsbestvouchers}prestashop>statsbestvouchers_8fc8a29113479bf76f0917c51795ca99'] = 'Lista de mejores vales descuento';
-$_MODULE['<{statsbestvouchers}prestashop>statsbestvouchers_4f29d8c727dcf2022ac241cb96c31083'] = 'Devolución de recordset vacío';
-$_MODULE['<{statsbestvouchers}prestashop>statsbestvouchers_df25596dc94d556af2f1823725118572'] = 'Total utilizado';
-$_MODULE['<{statsbestvouchers}prestashop>statsbestvouchers_b769cee333527b8dc6f3f67882e35a0b'] = 'Mejores vales descuento';
-$_MODULE['<{statsbestvouchers}prestashop>statsbestvouchers_998e4c5c80f27dec552e99dfed34889a'] = 'CSV Export';
diff --git a/modules/statsbestvouchers/translations/fr.php b/modules/statsbestvouchers/translations/fr.php
deleted file mode 100644
index c62b7ca28..000000000
--- a/modules/statsbestvouchers/translations/fr.php
+++ /dev/null
@@ -1,13 +0,0 @@
-statsbestvouchers_f5c493141bb4b2508c5938fd9353291a'] = 'Affichage de %1$s de %2$s';
-$_MODULE['<{statsbestvouchers}prestashop>statsbestvouchers_49ee3087348e8d44e1feda1917443987'] = 'Nom';
-$_MODULE['<{statsbestvouchers}prestashop>statsbestvouchers_11ff9f68afb6b8b5b8eda218d7c83a65'] = 'Ventes';
-$_MODULE['<{statsbestvouchers}prestashop>statsbestvouchers_8fc8a29113479bf76f0917c51795ca99'] = 'Liste des meilleurs coupons de réduction';
-$_MODULE['<{statsbestvouchers}prestashop>statsbestvouchers_4f29d8c727dcf2022ac241cb96c31083'] = 'Aucun résultat';
-$_MODULE['<{statsbestvouchers}prestashop>statsbestvouchers_df25596dc94d556af2f1823725118572'] = 'Total utilisé';
-$_MODULE['<{statsbestvouchers}prestashop>statsbestvouchers_b769cee333527b8dc6f3f67882e35a0b'] = 'Meilleurs coupons de réduction';
-$_MODULE['<{statsbestvouchers}prestashop>statsbestvouchers_998e4c5c80f27dec552e99dfed34889a'] = 'Export CSV';
diff --git a/modules/statsbestvouchers/translations/it.php b/modules/statsbestvouchers/translations/it.php
deleted file mode 100644
index 27131d9a7..000000000
--- a/modules/statsbestvouchers/translations/it.php
+++ /dev/null
@@ -1,13 +0,0 @@
-statsbestvouchers_f5c493141bb4b2508c5938fd9353291a'] = 'Mostra %1$s di %2$s';
-$_MODULE['<{statsbestvouchers}prestashop>statsbestvouchers_49ee3087348e8d44e1feda1917443987'] = 'Nome';
-$_MODULE['<{statsbestvouchers}prestashop>statsbestvouchers_11ff9f68afb6b8b5b8eda218d7c83a65'] = 'Vendite';
-$_MODULE['<{statsbestvouchers}prestashop>statsbestvouchers_8fc8a29113479bf76f0917c51795ca99'] = 'Eenco dei migliori buoni';
-$_MODULE['<{statsbestvouchers}prestashop>statsbestvouchers_4f29d8c727dcf2022ac241cb96c31083'] = 'recordset vuoto restituito';
-$_MODULE['<{statsbestvouchers}prestashop>statsbestvouchers_df25596dc94d556af2f1823725118572'] = 'Totale usato';
-$_MODULE['<{statsbestvouchers}prestashop>statsbestvouchers_b769cee333527b8dc6f3f67882e35a0b'] = 'Miglior buoni';
-$_MODULE['<{statsbestvouchers}prestashop>statsbestvouchers_998e4c5c80f27dec552e99dfed34889a'] = 'Esporta CSV';
diff --git a/modules/statscarrier/translations/de.php b/modules/statscarrier/translations/de.php
deleted file mode 100644
index 39d17a60f..000000000
--- a/modules/statscarrier/translations/de.php
+++ /dev/null
@@ -1,13 +0,0 @@
-statscarrier_c521b5a8b0e2966709e4338368e59054'] = 'Zeigt die Verteilung der Lieferanten an';
-$_MODULE['<{statscarrier}prestashop>statscarrier_ae916988f1944283efa2968808a71287'] = 'Keine gültigen Bestellungen für diesen Zeitraum.';
-$_MODULE['<{statscarrier}prestashop>statscarrier_d5b9d0daaf017332f1f8188ab2a3f802'] = 'Prozentsatz der Bestellungen pro Lieferant';
-$_MODULE['<{statscarrier}prestashop>statscarrier_2e6774abc54cb13cef2c5bfd5a2cb463'] = 'Verteilung der Lieferanten';
-$_MODULE['<{statscarrier}prestashop>statscarrier_b1c94ca2fbc3e78fc30069c8d0f01680'] = 'Alle';
-$_MODULE['<{statscarrier}prestashop>statscarrier_d7778d0c64b6ba21494c97f77a66885a'] = 'Filter';
-$_MODULE['<{statscarrier}prestashop>statscarrier_b4db3f09700b25a1acc487d3488d0216'] = 'Diese Grafik zeigt die Verteilung der Lieferanten für Ihre Bestellung an. Sie können sie auch auf einen Bestellstatus begrenzen.';
-$_MODULE['<{statscarrier}prestashop>statscarrier_998e4c5c80f27dec552e99dfed34889a'] = 'CSV-Export';
diff --git a/modules/statscarrier/translations/en.php b/modules/statscarrier/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/statscarrier/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-statscarrier_c521b5a8b0e2966709e4338368e59054'] = 'Mostrar la distribución de los transportistas';
-$_MODULE['<{statscarrier}prestashop>statscarrier_ae916988f1944283efa2968808a71287'] = 'No hay pedidos válidos para este periodo.';
-$_MODULE['<{statscarrier}prestashop>statscarrier_d5b9d0daaf017332f1f8188ab2a3f802'] = 'porcentaje de pedidos por transportista';
-$_MODULE['<{statscarrier}prestashop>statscarrier_2e6774abc54cb13cef2c5bfd5a2cb463'] = 'Distribución transportista';
-$_MODULE['<{statscarrier}prestashop>statscarrier_b1c94ca2fbc3e78fc30069c8d0f01680'] = 'Todas';
-$_MODULE['<{statscarrier}prestashop>statscarrier_d7778d0c64b6ba21494c97f77a66885a'] = 'Filtrar';
-$_MODULE['<{statscarrier}prestashop>statscarrier_b4db3f09700b25a1acc487d3488d0216'] = 'Este gráfico representa la distribución de transportistas por pedidos. Es posible limitarlo a un estado del pedido.';
-$_MODULE['<{statscarrier}prestashop>statscarrier_998e4c5c80f27dec552e99dfed34889a'] = 'CSV Export';
diff --git a/modules/statscarrier/translations/fr.php b/modules/statscarrier/translations/fr.php
deleted file mode 100644
index 327dfaa11..000000000
--- a/modules/statscarrier/translations/fr.php
+++ /dev/null
@@ -1,13 +0,0 @@
-statscarrier_c521b5a8b0e2966709e4338368e59054'] = 'Affiche la répartition des commandes par transporteur';
-$_MODULE['<{statscarrier}prestashop>statscarrier_ae916988f1944283efa2968808a71287'] = 'Aucune commande valide pour cette période.';
-$_MODULE['<{statscarrier}prestashop>statscarrier_d5b9d0daaf017332f1f8188ab2a3f802'] = 'Pourcentage de commandes par transporteur';
-$_MODULE['<{statscarrier}prestashop>statscarrier_2e6774abc54cb13cef2c5bfd5a2cb463'] = 'Répartition par transporteur';
-$_MODULE['<{statscarrier}prestashop>statscarrier_998e4c5c80f27dec552e99dfed34889a'] = 'Export CSV';
-$_MODULE['<{statscarrier}prestashop>statscarrier_b1c94ca2fbc3e78fc30069c8d0f01680'] = 'Tout afficher';
-$_MODULE['<{statscarrier}prestashop>statscarrier_d7778d0c64b6ba21494c97f77a66885a'] = 'Filtrer';
-$_MODULE['<{statscarrier}prestashop>statscarrier_b4db3f09700b25a1acc487d3488d0216'] = 'Ce graphique représente la répartition des transporteurs pour vos commandes. Il est également possible de filtrer par état de commande.';
diff --git a/modules/statscarrier/translations/it.php b/modules/statscarrier/translations/it.php
deleted file mode 100644
index bba17fa9b..000000000
--- a/modules/statscarrier/translations/it.php
+++ /dev/null
@@ -1,13 +0,0 @@
-statscarrier_c521b5a8b0e2966709e4338368e59054'] = 'Mostra la ripartizione per corrieri';
-$_MODULE['<{statscarrier}prestashop>statscarrier_ae916988f1944283efa2968808a71287'] = 'Nessun ordine valido per questo periodo.';
-$_MODULE['<{statscarrier}prestashop>statscarrier_d5b9d0daaf017332f1f8188ab2a3f802'] = 'Percentuale degli ordini per corriere';
-$_MODULE['<{statscarrier}prestashop>statscarrier_2e6774abc54cb13cef2c5bfd5a2cb463'] = 'Ripartizione per corriere';
-$_MODULE['<{statscarrier}prestashop>statscarrier_b1c94ca2fbc3e78fc30069c8d0f01680'] = 'Tutto';
-$_MODULE['<{statscarrier}prestashop>statscarrier_d7778d0c64b6ba21494c97f77a66885a'] = 'Filtro';
-$_MODULE['<{statscarrier}prestashop>statscarrier_b4db3f09700b25a1acc487d3488d0216'] = 'Questo grafico rappresenta la ripartizione per corriere dei tuoi ordini. È inoltre possibile limitare a uno stato di ordine.';
-$_MODULE['<{statscarrier}prestashop>statscarrier_998e4c5c80f27dec552e99dfed34889a'] = 'Esporta CSV';
diff --git a/modules/statscatalog/translations/de.php b/modules/statscatalog/translations/de.php
deleted file mode 100644
index 284d91cb8..000000000
--- a/modules/statscatalog/translations/de.php
+++ /dev/null
@@ -1,26 +0,0 @@
-statscatalog_85f179d4142ca061d49605a7fffdc09d'] = 'Durchschnittliche Anzahl an Seitenaufrufen:';
-$_MODULE['<{statscatalog}prestashop>statscatalog_a7b623414d4b6a3225b4e935babec6d2'] = 'Produkte zur Verfügung:';
-$_MODULE['<{statscatalog}prestashop>statscatalog_cf3aa21c6a2147ddbd86f34091daeccd'] = 'Katalogstatistik';
-$_MODULE['<{statscatalog}prestashop>statscatalog_226ed1224c5b2db3d3e0716bb4f74da5'] = 'Allgemeine Statistiken über Ihren Katalog';
-$_MODULE['<{statscatalog}prestashop>statscatalog_156e5c5872c9af24a5c982da07a883c2'] = 'Gekaufte Produkte:';
-$_MODULE['<{statscatalog}prestashop>statscatalog_05ff4bfc3baf0acd31a72f1ac754de04'] = 'Durchschnittliche Anzahl an Einkäufen:';
-$_MODULE['<{statscatalog}prestashop>statscatalog_b86770bc713186bcf43dbb1164c5fd28'] = 'Umwandlungsrate*:';
-$_MODULE['<{statscatalog}prestashop>statscatalog_58a714d3e9bb2902a5b688c99bd4d8e6'] = 'Nie gekaufte Produkte';
-$_MODULE['<{statscatalog}prestashop>statscatalog_b718adec73e04ce3ec720dd11a06a308'] = 'ID';
-$_MODULE['<{statscatalog}prestashop>statscatalog_48a93dc02c74f3065af1ba47fca070d0'] = 'Größe und gesehene Seiten:';
-$_MODULE['<{statscatalog}prestashop>statscatalog_65275d1b04037d8c8e42425002110363'] = 'Durchschnittliche Anzahl an Bildern:';
-$_MODULE['<{statscatalog}prestashop>statscatalog_51b8891d531ad91128ba58c8928322ab'] = 'Nie angesehene Produkte:';
-$_MODULE['<{statscatalog}prestashop>statscatalog_8725647ef741e5d48c1e6f652ce80b50'] = 'Nie gekaufte Produkte:';
-$_MODULE['<{statscatalog}prestashop>statscatalog_74cda5a02df704cc5c3e8fee7fc0f7bc'] = '(1 gekauft / %d Besuche)';
-$_MODULE['<{statscatalog}prestashop>statscatalog_0173374ac20f5843d58b553d5b226ef6'] = 'Wählen Sie eine Kategorie';
-$_MODULE['<{statscatalog}prestashop>statscatalog_c09d09e371989d89847049c9574b6b8e'] = 'Bilder zur Verfügung:';
-$_MODULE['<{statscatalog}prestashop>statscatalog_0468e0edbf9f5807c25c106248bd7401'] = 'Durchschnittliche Umwandlungsrate für die Produktseite. Man kann ein Produkt kaufen, ohne die Produktseite anzusehen. In dem Fall kann diese Rate größer als 1 sein.';
-$_MODULE['<{statscatalog}prestashop>statscatalog_49ee3087348e8d44e1feda1917443987'] = 'Name';
-$_MODULE['<{statscatalog}prestashop>statscatalog_8e7c9a35104a5a68199678bd6bc5d187'] = 'Bearbeiten/ Ansehen';
-$_MODULE['<{statscatalog}prestashop>statscatalog_b1c94ca2fbc3e78fc30069c8d0f01680'] = 'Alle';
-$_MODULE['<{statscatalog}prestashop>statscatalog_1099377f1598a0856e2457a5145d89c2'] = 'Durchschnittlicher Preis (Basispreis):';
diff --git a/modules/statscatalog/translations/en.php b/modules/statscatalog/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/statscatalog/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-statscatalog_a7b623414d4b6a3225b4e935babec6d2'] = 'Producto disponibles:';
-$_MODULE['<{statscatalog}prestashop>statscatalog_85f179d4142ca061d49605a7fffdc09d'] = 'Número medio de á¡ginas visitadas:';
-$_MODULE['<{statscatalog}prestashop>statscatalog_cf3aa21c6a2147ddbd86f34091daeccd'] = 'Catálogo de estadísticas';
-$_MODULE['<{statscatalog}prestashop>statscatalog_226ed1224c5b2db3d3e0716bb4f74da5'] = 'Estadísticas generales sobre su catálogo';
-$_MODULE['<{statscatalog}prestashop>statscatalog_48a93dc02c74f3065af1ba47fca070d0'] = 'Páginas del producto vistas:';
-$_MODULE['<{statscatalog}prestashop>statscatalog_156e5c5872c9af24a5c982da07a883c2'] = 'Productos pedidos:';
-$_MODULE['<{statscatalog}prestashop>statscatalog_05ff4bfc3baf0acd31a72f1ac754de04'] = 'Número medio de compras:';
-$_MODULE['<{statscatalog}prestashop>statscatalog_65275d1b04037d8c8e42425002110363'] = 'Número medio de imágenes:';
-$_MODULE['<{statscatalog}prestashop>statscatalog_51b8891d531ad91128ba58c8928322ab'] = 'Producto nunca vistos:';
-$_MODULE['<{statscatalog}prestashop>statscatalog_8725647ef741e5d48c1e6f652ce80b50'] = 'Producto no comprados nunca:';
-$_MODULE['<{statscatalog}prestashop>statscatalog_b86770bc713186bcf43dbb1164c5fd28'] = 'Índice de conversión';
-$_MODULE['<{statscatalog}prestashop>statscatalog_58a714d3e9bb2902a5b688c99bd4d8e6'] = 'Productos nunca comprados';
-$_MODULE['<{statscatalog}prestashop>statscatalog_b718adec73e04ce3ec720dd11a06a308'] = 'ID';
-$_MODULE['<{statscatalog}prestashop>statscatalog_74cda5a02df704cc5c3e8fee7fc0f7bc'] = '(1 compras / %d visitas)';
-$_MODULE['<{statscatalog}prestashop>statscatalog_0173374ac20f5843d58b553d5b226ef6'] = 'Elegir una categoría';
-$_MODULE['<{statscatalog}prestashop>statscatalog_b1c94ca2fbc3e78fc30069c8d0f01680'] = 'Todas';
-$_MODULE['<{statscatalog}prestashop>statscatalog_1099377f1598a0856e2457a5145d89c2'] = 'Precio medio (precio base):';
-$_MODULE['<{statscatalog}prestashop>statscatalog_c09d09e371989d89847049c9574b6b8e'] = 'Imágenes disponibles:';
-$_MODULE['<{statscatalog}prestashop>statscatalog_0468e0edbf9f5807c25c106248bd7401'] = 'Promedio tipo de conversión de la página del producto. Es posible comprar un producto sin ver la página del producto, por lo que esta tasa puede ser mayor que 1.';
-$_MODULE['<{statscatalog}prestashop>statscatalog_49ee3087348e8d44e1feda1917443987'] = 'Nombre';
-$_MODULE['<{statscatalog}prestashop>statscatalog_8e7c9a35104a5a68199678bd6bc5d187'] = 'Editar/Ver';
diff --git a/modules/statscatalog/translations/fr.php b/modules/statscatalog/translations/fr.php
deleted file mode 100644
index ce56e76e9..000000000
--- a/modules/statscatalog/translations/fr.php
+++ /dev/null
@@ -1,26 +0,0 @@
-statscatalog_a7b623414d4b6a3225b4e935babec6d2'] = 'Produits disponibles :';
-$_MODULE['<{statscatalog}prestashop>statscatalog_85f179d4142ca061d49605a7fffdc09d'] = 'Nombre moyen de visites :';
-$_MODULE['<{statscatalog}prestashop>statscatalog_8725647ef741e5d48c1e6f652ce80b50'] = 'Produits jamais achetés :';
-$_MODULE['<{statscatalog}prestashop>statscatalog_cf3aa21c6a2147ddbd86f34091daeccd'] = 'Statistiques du catalogue';
-$_MODULE['<{statscatalog}prestashop>statscatalog_226ed1224c5b2db3d3e0716bb4f74da5'] = 'Statistiques générales sur le catalogue';
-$_MODULE['<{statscatalog}prestashop>statscatalog_48a93dc02c74f3065af1ba47fca070d0'] = 'Pages produit vues :';
-$_MODULE['<{statscatalog}prestashop>statscatalog_156e5c5872c9af24a5c982da07a883c2'] = 'Produits achetés :';
-$_MODULE['<{statscatalog}prestashop>statscatalog_05ff4bfc3baf0acd31a72f1ac754de04'] = 'Nombre moyen d\'achats :';
-$_MODULE['<{statscatalog}prestashop>statscatalog_65275d1b04037d8c8e42425002110363'] = 'Nombre moyen d\'images :';
-$_MODULE['<{statscatalog}prestashop>statscatalog_51b8891d531ad91128ba58c8928322ab'] = 'Produits jamais consultés :';
-$_MODULE['<{statscatalog}prestashop>statscatalog_b86770bc713186bcf43dbb1164c5fd28'] = 'Taux de transformation* :';
-$_MODULE['<{statscatalog}prestashop>statscatalog_58a714d3e9bb2902a5b688c99bd4d8e6'] = 'Produits jamais achetés';
-$_MODULE['<{statscatalog}prestashop>statscatalog_b718adec73e04ce3ec720dd11a06a308'] = 'ID';
-$_MODULE['<{statscatalog}prestashop>statscatalog_74cda5a02df704cc5c3e8fee7fc0f7bc'] = '(1 achat / %d visites)';
-$_MODULE['<{statscatalog}prestashop>statscatalog_0173374ac20f5843d58b553d5b226ef6'] = 'Choisissez une catégorie';
-$_MODULE['<{statscatalog}prestashop>statscatalog_b1c94ca2fbc3e78fc30069c8d0f01680'] = 'Toutes';
-$_MODULE['<{statscatalog}prestashop>statscatalog_1099377f1598a0856e2457a5145d89c2'] = 'Prix moyen (HT) :';
-$_MODULE['<{statscatalog}prestashop>statscatalog_c09d09e371989d89847049c9574b6b8e'] = 'Images disponibles :';
-$_MODULE['<{statscatalog}prestashop>statscatalog_0468e0edbf9f5807c25c106248bd7401'] = 'Taux de transformation moyen pour une page produit. Un produit pouvant être acheté sans passer par sa page dédiée, cet indicateur peut être supérieur à 1.';
-$_MODULE['<{statscatalog}prestashop>statscatalog_49ee3087348e8d44e1feda1917443987'] = 'Nom';
-$_MODULE['<{statscatalog}prestashop>statscatalog_8e7c9a35104a5a68199678bd6bc5d187'] = 'Modifier / Voir';
diff --git a/modules/statscatalog/translations/it.php b/modules/statscatalog/translations/it.php
deleted file mode 100644
index 938ceb26a..000000000
--- a/modules/statscatalog/translations/it.php
+++ /dev/null
@@ -1,26 +0,0 @@
-statscatalog_a7b623414d4b6a3225b4e935babec6d2'] = 'Prodotti disponibili:';
-$_MODULE['<{statscatalog}prestashop>statscatalog_85f179d4142ca061d49605a7fffdc09d'] = 'Numero medio di visite pagina:';
-$_MODULE['<{statscatalog}prestashop>statscatalog_cf3aa21c6a2147ddbd86f34091daeccd'] = 'Catalogo statistiche';
-$_MODULE['<{statscatalog}prestashop>statscatalog_226ed1224c5b2db3d3e0716bb4f74da5'] = 'Statistiche generali sul tuo catalogo';
-$_MODULE['<{statscatalog}prestashop>statscatalog_48a93dc02c74f3065af1ba47fca070d0'] = 'Pagine viste del prodotto:';
-$_MODULE['<{statscatalog}prestashop>statscatalog_156e5c5872c9af24a5c982da07a883c2'] = 'I prodotti acquistati:';
-$_MODULE['<{statscatalog}prestashop>statscatalog_05ff4bfc3baf0acd31a72f1ac754de04'] = 'Numero medio di acquisti:';
-$_MODULE['<{statscatalog}prestashop>statscatalog_65275d1b04037d8c8e42425002110363'] = 'Numero medio di immagini:';
-$_MODULE['<{statscatalog}prestashop>statscatalog_51b8891d531ad91128ba58c8928322ab'] = 'I prodotti mai visti:';
-$_MODULE['<{statscatalog}prestashop>statscatalog_8725647ef741e5d48c1e6f652ce80b50'] = 'Prodotti mai comprati:';
-$_MODULE['<{statscatalog}prestashop>statscatalog_b86770bc713186bcf43dbb1164c5fd28'] = 'Tasso di conversione *:';
-$_MODULE['<{statscatalog}prestashop>statscatalog_58a714d3e9bb2902a5b688c99bd4d8e6'] = 'Prodotti mai comprati';
-$_MODULE['<{statscatalog}prestashop>statscatalog_b718adec73e04ce3ec720dd11a06a308'] = 'ID';
-$_MODULE['<{statscatalog}prestashop>statscatalog_74cda5a02df704cc5c3e8fee7fc0f7bc'] = '(1 acquisto / %d visite)';
-$_MODULE['<{statscatalog}prestashop>statscatalog_0173374ac20f5843d58b553d5b226ef6'] = 'Scegli una categoria';
-$_MODULE['<{statscatalog}prestashop>statscatalog_b1c94ca2fbc3e78fc30069c8d0f01680'] = 'Tutto';
-$_MODULE['<{statscatalog}prestashop>statscatalog_1099377f1598a0856e2457a5145d89c2'] = 'Prezzo medio (prezzo base):';
-$_MODULE['<{statscatalog}prestashop>statscatalog_c09d09e371989d89847049c9574b6b8e'] = 'Immagini disponibili:';
-$_MODULE['<{statscatalog}prestashop>statscatalog_0468e0edbf9f5807c25c106248bd7401'] = 'Tasso medio di conversione per la pagina del prodotto. E\' possibile acquistare un prodotto senza visualizzare la pagina del prodotto, quindi questo tasso può essere maggiore di 1.';
-$_MODULE['<{statscatalog}prestashop>statscatalog_49ee3087348e8d44e1feda1917443987'] = 'Nome';
-$_MODULE['<{statscatalog}prestashop>statscatalog_8e7c9a35104a5a68199678bd6bc5d187'] = 'Modifica / Visualizza';
diff --git a/modules/statscheckup/translations/de.php b/modules/statscheckup/translations/de.php
deleted file mode 100644
index 2c6ae9c71..000000000
--- a/modules/statscheckup/translations/de.php
+++ /dev/null
@@ -1,32 +0,0 @@
-statscheckup_20015706a8cbd457cbb6ea3e7d5dc9b3'] = 'Konfiguration aktualisiert';
-$_MODULE['<{statscheckup}prestashop>statscheckup_7ff3e75ce6aca348bc513ed3d5882946'] = 'schlecht';
-$_MODULE['<{statscheckup}prestashop>statscheckup_0c6ad70beb3a7e76c3fc7adab7c46acc'] = 'gut';
-$_MODULE['<{statscheckup}prestashop>statscheckup_619a1efbedc7855aa27c0a50579c104e'] = 'Kein Artikel gefunden';
-$_MODULE['<{statscheckup}prestashop>statscheckup_fff0d600f8a0b5e19e88bfb821dd1157'] = 'Bilder';
-$_MODULE['<{statscheckup}prestashop>statscheckup_c3917e1f7138a24c6dc954fe81b86679'] = 'Bestellungen/ Monat';
-$_MODULE['<{statscheckup}prestashop>statscheckup_ad647e4ae904c7ed54ee93040d8298c7'] = 'weniger als';
-$_MODULE['<{statscheckup}prestashop>statscheckup_01fda57aa6c7e9f07f5aa36b108e95cb'] = 'Bestellung nach';
-$_MODULE['<{statscheckup}prestashop>statscheckup_aed2078f8eaaf31e013a3c24618cb130'] = 'Zeichen (ohne HTML)';
-$_MODULE['<{statscheckup}prestashop>statscheckup_11ff9f68afb6b8b5b8eda218d7c83a65'] = 'Verkäufe';
-$_MODULE['<{statscheckup}prestashop>statscheckup_7bd5825a187064017975513b95d7f7de'] = 'Verfügbare Verkaufsmenge';
-$_MODULE['<{statscheckup}prestashop>statscheckup_dc270bcf468689b19074a5eef7581b52'] = 'Nicht genug';
-$_MODULE['<{statscheckup}prestashop>statscheckup_05824b7be006782aaefd1fdb97c71e06'] = 'größer als';
-$_MODULE['<{statscheckup}prestashop>statscheckup_b718adec73e04ce3ec720dd11a06a308'] = 'ID';
-$_MODULE['<{statscheckup}prestashop>statscheckup_49ee3087348e8d44e1feda1917443987'] = 'Name';
-$_MODULE['<{statscheckup}prestashop>statscheckup_7d74f3b92b19da5e606d737d339a9679'] = 'Artikel';
-$_MODULE['<{statscheckup}prestashop>statscheckup_4cc6684df7b4a92b1dec6fce3264fac8'] = 'Insgesamt';
-$_MODULE['<{statscheckup}prestashop>statscheckup_38fb7d24e0d60a048f540ecb18e13376'] = 'Speichern';
-$_MODULE['<{statscheckup}prestashop>statscheckup_e7a908d79d3758c911692ba791da9c70'] = 'Katalogbewertung';
-$_MODULE['<{statscheckup}prestashop>statscheckup_b1897515d548a960afe49ecf66a29021'] = 'Durchschnitt';
-$_MODULE['<{statscheckup}prestashop>statscheckup_4d3d769b812b6faa6b76e1a8abaece2d'] = 'Aktiv';
-$_MODULE['<{statscheckup}prestashop>statscheckup_24f870376156be0e8e22cfb94d29df6d'] = 'Katalogqualität im Handumdrehen';
-$_MODULE['<{statscheckup}prestashop>statscheckup_8bc84316c4078bf66723fd019616d920'] = 'Beschreibungen';
-$_MODULE['<{statscheckup}prestashop>statscheckup_59b514174bffe4ae402b3d63aad79fe0'] = 'Bilder';
-$_MODULE['<{statscheckup}prestashop>statscheckup_9dea4016dbcc290b773ab2fae678aaa8'] = 'Artikel';
-$_MODULE['<{statscheckup}prestashop>statscheckup_f4abc77d498c89880f67331609406774'] = 'In Ordnung';
-$_MODULE['<{statscheckup}prestashop>statscheckup_3f74e68055b1123e5d7deb32cd8b0b1b'] = 'Beschr.';
diff --git a/modules/statscheckup/translations/en.php b/modules/statscheckup/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/statscheckup/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-statscheckup_20015706a8cbd457cbb6ea3e7d5dc9b3'] = 'Configuración actualizada';
-$_MODULE['<{statscheckup}prestashop>statscheckup_7ff3e75ce6aca348bc513ed3d5882946'] = 'mal';
-$_MODULE['<{statscheckup}prestashop>statscheckup_0c6ad70beb3a7e76c3fc7adab7c46acc'] = 'bien';
-$_MODULE['<{statscheckup}prestashop>statscheckup_619a1efbedc7855aa27c0a50579c104e'] = 'Ningún producto encontrado';
-$_MODULE['<{statscheckup}prestashop>statscheckup_fff0d600f8a0b5e19e88bfb821dd1157'] = 'imágenes';
-$_MODULE['<{statscheckup}prestashop>statscheckup_c3917e1f7138a24c6dc954fe81b86679'] = 'pedidos / mes';
-$_MODULE['<{statscheckup}prestashop>statscheckup_ad647e4ae904c7ed54ee93040d8298c7'] = 'inferior a';
-$_MODULE['<{statscheckup}prestashop>statscheckup_01fda57aa6c7e9f07f5aa36b108e95cb'] = 'Seleccionar por';
-$_MODULE['<{statscheckup}prestashop>statscheckup_aed2078f8eaaf31e013a3c24618cb130'] = 'caracteres (sin HTML)';
-$_MODULE['<{statscheckup}prestashop>statscheckup_11ff9f68afb6b8b5b8eda218d7c83a65'] = 'Ventas';
-$_MODULE['<{statscheckup}prestashop>statscheckup_7bd5825a187064017975513b95d7f7de'] = 'Cantidades disponibles para la venta';
-$_MODULE['<{statscheckup}prestashop>statscheckup_dc270bcf468689b19074a5eef7581b52'] = 'Insuficiente';
-$_MODULE['<{statscheckup}prestashop>statscheckup_05824b7be006782aaefd1fdb97c71e06'] = 'superior a';
-$_MODULE['<{statscheckup}prestashop>statscheckup_38fb7d24e0d60a048f540ecb18e13376'] = 'Guardar';
-$_MODULE['<{statscheckup}prestashop>statscheckup_b718adec73e04ce3ec720dd11a06a308'] = 'ID';
-$_MODULE['<{statscheckup}prestashop>statscheckup_49ee3087348e8d44e1feda1917443987'] = 'Nombre';
-$_MODULE['<{statscheckup}prestashop>statscheckup_7d74f3b92b19da5e606d737d339a9679'] = 'Artículo';
-$_MODULE['<{statscheckup}prestashop>statscheckup_4cc6684df7b4a92b1dec6fce3264fac8'] = 'Global';
-$_MODULE['<{statscheckup}prestashop>statscheckup_e7a908d79d3758c911692ba791da9c70'] = 'Evaluación del catálogo';
-$_MODULE['<{statscheckup}prestashop>statscheckup_b1897515d548a960afe49ecf66a29021'] = 'regular';
-$_MODULE['<{statscheckup}prestashop>statscheckup_4d3d769b812b6faa6b76e1a8abaece2d'] = 'Activado';
-$_MODULE['<{statscheckup}prestashop>statscheckup_24f870376156be0e8e22cfb94d29df6d'] = 'Calidad de su catálogo de inmediato';
-$_MODULE['<{statscheckup}prestashop>statscheckup_8bc84316c4078bf66723fd019616d920'] = 'Descripciones';
-$_MODULE['<{statscheckup}prestashop>statscheckup_59b514174bffe4ae402b3d63aad79fe0'] = 'Imágenes';
-$_MODULE['<{statscheckup}prestashop>statscheckup_9dea4016dbcc290b773ab2fae678aaa8'] = 'artículos';
-$_MODULE['<{statscheckup}prestashop>statscheckup_f4abc77d498c89880f67331609406774'] = 'Perfecto';
-$_MODULE['<{statscheckup}prestashop>statscheckup_3f74e68055b1123e5d7deb32cd8b0b1b'] = 'Desactivado';
diff --git a/modules/statscheckup/translations/fr.php b/modules/statscheckup/translations/fr.php
deleted file mode 100644
index be20fc3c0..000000000
--- a/modules/statscheckup/translations/fr.php
+++ /dev/null
@@ -1,32 +0,0 @@
-statscheckup_7ff3e75ce6aca348bc513ed3d5882946'] = 'mauvais';
-$_MODULE['<{statscheckup}prestashop>statscheckup_619a1efbedc7855aa27c0a50579c104e'] = 'Aucun produit trouvé';
-$_MODULE['<{statscheckup}prestashop>statscheckup_fff0d600f8a0b5e19e88bfb821dd1157'] = 'images';
-$_MODULE['<{statscheckup}prestashop>statscheckup_c3917e1f7138a24c6dc954fe81b86679'] = 'commandes / mois';
-$_MODULE['<{statscheckup}prestashop>statscheckup_ad647e4ae904c7ed54ee93040d8298c7'] = 'inférieur à';
-$_MODULE['<{statscheckup}prestashop>statscheckup_01fda57aa6c7e9f07f5aa36b108e95cb'] = 'Trier par';
-$_MODULE['<{statscheckup}prestashop>statscheckup_20015706a8cbd457cbb6ea3e7d5dc9b3'] = 'Configuration mise à jour';
-$_MODULE['<{statscheckup}prestashop>statscheckup_0c6ad70beb3a7e76c3fc7adab7c46acc'] = 'bon';
-$_MODULE['<{statscheckup}prestashop>statscheckup_aed2078f8eaaf31e013a3c24618cb130'] = 'caractères (sans HTML)';
-$_MODULE['<{statscheckup}prestashop>statscheckup_11ff9f68afb6b8b5b8eda218d7c83a65'] = 'Ventes';
-$_MODULE['<{statscheckup}prestashop>statscheckup_7bd5825a187064017975513b95d7f7de'] = 'Quantités disponibles à la vente';
-$_MODULE['<{statscheckup}prestashop>statscheckup_dc270bcf468689b19074a5eef7581b52'] = 'Insuffisant';
-$_MODULE['<{statscheckup}prestashop>statscheckup_05824b7be006782aaefd1fdb97c71e06'] = 'supérieur à';
-$_MODULE['<{statscheckup}prestashop>statscheckup_38fb7d24e0d60a048f540ecb18e13376'] = 'Enregistrer';
-$_MODULE['<{statscheckup}prestashop>statscheckup_b718adec73e04ce3ec720dd11a06a308'] = 'ID';
-$_MODULE['<{statscheckup}prestashop>statscheckup_7d74f3b92b19da5e606d737d339a9679'] = 'Article';
-$_MODULE['<{statscheckup}prestashop>statscheckup_4cc6684df7b4a92b1dec6fce3264fac8'] = 'Global';
-$_MODULE['<{statscheckup}prestashop>statscheckup_49ee3087348e8d44e1feda1917443987'] = 'Nom';
-$_MODULE['<{statscheckup}prestashop>statscheckup_b1897515d548a960afe49ecf66a29021'] = 'moyen';
-$_MODULE['<{statscheckup}prestashop>statscheckup_4d3d769b812b6faa6b76e1a8abaece2d'] = 'Actif';
-$_MODULE['<{statscheckup}prestashop>statscheckup_e7a908d79d3758c911692ba791da9c70'] = 'Évaluation du catalogue';
-$_MODULE['<{statscheckup}prestashop>statscheckup_8bc84316c4078bf66723fd019616d920'] = 'Descriptions';
-$_MODULE['<{statscheckup}prestashop>statscheckup_59b514174bffe4ae402b3d63aad79fe0'] = 'Images';
-$_MODULE['<{statscheckup}prestashop>statscheckup_9dea4016dbcc290b773ab2fae678aaa8'] = 'articles';
-$_MODULE['<{statscheckup}prestashop>statscheckup_f4abc77d498c89880f67331609406774'] = 'Parfait';
-$_MODULE['<{statscheckup}prestashop>statscheckup_3f74e68055b1123e5d7deb32cd8b0b1b'] = 'Desc.';
-$_MODULE['<{statscheckup}prestashop>statscheckup_24f870376156be0e8e22cfb94d29df6d'] = 'Voir la qualité de votre catalogue en un clin d\'oeil.';
diff --git a/modules/statscheckup/translations/it.php b/modules/statscheckup/translations/it.php
deleted file mode 100644
index 901bf0c6a..000000000
--- a/modules/statscheckup/translations/it.php
+++ /dev/null
@@ -1,32 +0,0 @@
-statscheckup_20015706a8cbd457cbb6ea3e7d5dc9b3'] = 'Configurazione aggiornata';
-$_MODULE['<{statscheckup}prestashop>statscheckup_7ff3e75ce6aca348bc513ed3d5882946'] = 'mediocre';
-$_MODULE['<{statscheckup}prestashop>statscheckup_0c6ad70beb3a7e76c3fc7adab7c46acc'] = 'buono';
-$_MODULE['<{statscheckup}prestashop>statscheckup_619a1efbedc7855aa27c0a50579c104e'] = 'Nessun prodotto trovato';
-$_MODULE['<{statscheckup}prestashop>statscheckup_fff0d600f8a0b5e19e88bfb821dd1157'] = 'immagini';
-$_MODULE['<{statscheckup}prestashop>statscheckup_c3917e1f7138a24c6dc954fe81b86679'] = 'ordini / mese';
-$_MODULE['<{statscheckup}prestashop>statscheckup_ad647e4ae904c7ed54ee93040d8298c7'] = 'inferiore a';
-$_MODULE['<{statscheckup}prestashop>statscheckup_01fda57aa6c7e9f07f5aa36b108e95cb'] = 'Ordina per';
-$_MODULE['<{statscheckup}prestashop>statscheckup_aed2078f8eaaf31e013a3c24618cb130'] = 'caratteri (senza HTML)';
-$_MODULE['<{statscheckup}prestashop>statscheckup_11ff9f68afb6b8b5b8eda218d7c83a65'] = 'Vendite';
-$_MODULE['<{statscheckup}prestashop>statscheckup_7bd5825a187064017975513b95d7f7de'] = 'Quantità disponibili per la vendita';
-$_MODULE['<{statscheckup}prestashop>statscheckup_dc270bcf468689b19074a5eef7581b52'] = 'Non abbastanza';
-$_MODULE['<{statscheckup}prestashop>statscheckup_05824b7be006782aaefd1fdb97c71e06'] = 'maggiore di';
-$_MODULE['<{statscheckup}prestashop>statscheckup_38fb7d24e0d60a048f540ecb18e13376'] = 'Salva';
-$_MODULE['<{statscheckup}prestashop>statscheckup_b718adec73e04ce3ec720dd11a06a308'] = 'ID';
-$_MODULE['<{statscheckup}prestashop>statscheckup_49ee3087348e8d44e1feda1917443987'] = 'Nome';
-$_MODULE['<{statscheckup}prestashop>statscheckup_7d74f3b92b19da5e606d737d339a9679'] = 'Articoloi';
-$_MODULE['<{statscheckup}prestashop>statscheckup_4cc6684df7b4a92b1dec6fce3264fac8'] = 'Globale';
-$_MODULE['<{statscheckup}prestashop>statscheckup_e7a908d79d3758c911692ba791da9c70'] = 'Valutazione catalogo';
-$_MODULE['<{statscheckup}prestashop>statscheckup_b1897515d548a960afe49ecf66a29021'] = 'medio';
-$_MODULE['<{statscheckup}prestashop>statscheckup_4d3d769b812b6faa6b76e1a8abaece2d'] = 'Attivo';
-$_MODULE['<{statscheckup}prestashop>statscheckup_24f870376156be0e8e22cfb94d29df6d'] = 'Qualità del catalogo a colpo d\'occhio';
-$_MODULE['<{statscheckup}prestashop>statscheckup_8bc84316c4078bf66723fd019616d920'] = 'Descrizioni';
-$_MODULE['<{statscheckup}prestashop>statscheckup_59b514174bffe4ae402b3d63aad79fe0'] = 'Immagini';
-$_MODULE['<{statscheckup}prestashop>statscheckup_9dea4016dbcc290b773ab2fae678aaa8'] = 'articoli';
-$_MODULE['<{statscheckup}prestashop>statscheckup_f4abc77d498c89880f67331609406774'] = 'Perfetto';
-$_MODULE['<{statscheckup}prestashop>statscheckup_3f74e68055b1123e5d7deb32cd8b0b1b'] = 'Desc.';
diff --git a/modules/statsdata/translations/de.php b/modules/statsdata/translations/de.php
deleted file mode 100644
index 94ed7dae5..000000000
--- a/modules/statsdata/translations/de.php
+++ /dev/null
@@ -1,18 +0,0 @@
-statsdata_bafd7322c6e97d25b6299b5d6fe8920b'] = 'Nein';
-$_MODULE['<{statsdata}prestashop>statsdata_f3e159134846bd13c0c967f361229233'] = 'Seitenaufrufe von Kunden verbrauchen viele CPU-Ressourcen und Datenbank-Speicherplatz.';
-$_MODULE['<{statsdata}prestashop>statsdata_20015706a8cbd457cbb6ea3e7d5dc9b3'] = 'Konfiguration aktualisiert';
-$_MODULE['<{statsdata}prestashop>statsdata_f4f70727dc34561dfde1a3c529b6205c'] = 'Einstellungen';
-$_MODULE['<{statsdata}prestashop>statsdata_1a5b75c4be3c0100c99764b21e844cc8'] = 'Speichern Sie die Seitenaufrufe für jeden Kunden';
-$_MODULE['<{statsdata}prestashop>statsdata_93cba07454f06a4a960172bbd6e2a435'] = 'Ja';
-$_MODULE['<{statsdata}prestashop>statsdata_7a6cf506bde903b2b30c0a4cbcfa0291'] = 'Die Plug-Ins Erkennung lädte ein zusätzliche 20kb JavaScript-Datei für neue Besucher.';
-$_MODULE['<{statsdata}prestashop>statsdata_a51950bf91ba55cd93a33ce3f8d448c2'] = 'Data Mining für die Statistik';
-$_MODULE['<{statsdata}prestashop>statsdata_c77dfd683d0d76940e5e04cb24e8bce1'] = 'Dieses Modul muss aktiviert sein, wenn Sie die Statistiken verwenden möchten';
-$_MODULE['<{statsdata}prestashop>statsdata_b368e11d9d23b26f1fb4a1b78584560d'] = 'Gesamtseitenaufrufe speichern';
-$_MODULE['<{statsdata}prestashop>statsdata_339acfd90b82e91ce9141ec75e4bff24'] = 'Gesamtseitenaufrufe verbrauchen ebenfalls CPU-Ressourcen, aber weniger';
-$_MODULE['<{statsdata}prestashop>statsdata_c0e4406117ba4c29c4d66e3069ebf3d3'] = 'Plug-Ins Erkennung';
-$_MODULE['<{statsdata}prestashop>statsdata_06933067aafd48425d67bcb01bba5cb6'] = 'Aktualisieren';
diff --git a/modules/statsdata/translations/en.php b/modules/statsdata/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/statsdata/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-statsdata_bafd7322c6e97d25b6299b5d6fe8920b'] = 'No';
-$_MODULE['<{statsdata}prestashop>statsdata_f3e159134846bd13c0c967f361229233'] = 'Las páginas vistas de los clientes consumen muchos recursos de procesador y espacio en la base de datos.';
-$_MODULE['<{statsdata}prestashop>statsdata_20015706a8cbd457cbb6ea3e7d5dc9b3'] = 'Configuración actualizada';
-$_MODULE['<{statsdata}prestashop>statsdata_f4f70727dc34561dfde1a3c529b6205c'] = 'Configuración';
-$_MODULE['<{statsdata}prestashop>statsdata_1a5b75c4be3c0100c99764b21e844cc8'] = 'Guardar las páginas vistas por cada cliente';
-$_MODULE['<{statsdata}prestashop>statsdata_7a6cf506bde903b2b30c0a4cbcfa0291'] = 'La detección de los plug-ins carga un archivo javascript de 20 ko suplementario para los nuevos visitantes.';
-$_MODULE['<{statsdata}prestashop>statsdata_93cba07454f06a4a960172bbd6e2a435'] = 'Sí';
-$_MODULE['<{statsdata}prestashop>statsdata_a51950bf91ba55cd93a33ce3f8d448c2'] = 'Explotación de datos para las estadísticas';
-$_MODULE['<{statsdata}prestashop>statsdata_c77dfd683d0d76940e5e04cb24e8bce1'] = 'Este módulo debe estar activado si usted quiere utilizar las estadísticas';
-$_MODULE['<{statsdata}prestashop>statsdata_b368e11d9d23b26f1fb4a1b78584560d'] = 'Guardar las páginas vistas globales';
-$_MODULE['<{statsdata}prestashop>statsdata_339acfd90b82e91ce9141ec75e4bff24'] = 'Las páginas vistas necesitan menos recursos que el detalle por cliente, pero siguen necesitando bastantes.';
-$_MODULE['<{statsdata}prestashop>statsdata_c0e4406117ba4c29c4d66e3069ebf3d3'] = 'Detección de plug-ins';
-$_MODULE['<{statsdata}prestashop>statsdata_06933067aafd48425d67bcb01bba5cb6'] = 'Actualizar';
diff --git a/modules/statsdata/translations/fr.php b/modules/statsdata/translations/fr.php
deleted file mode 100644
index e6acc7e16..000000000
--- a/modules/statsdata/translations/fr.php
+++ /dev/null
@@ -1,18 +0,0 @@
-statsdata_bafd7322c6e97d25b6299b5d6fe8920b'] = 'Non';
-$_MODULE['<{statsdata}prestashop>statsdata_f3e159134846bd13c0c967f361229233'] = 'Les pages vues des clients consomment beaucoup de ressources processeur et d\'espace en base de données.';
-$_MODULE['<{statsdata}prestashop>statsdata_20015706a8cbd457cbb6ea3e7d5dc9b3'] = 'Configuration mise à jour';
-$_MODULE['<{statsdata}prestashop>statsdata_f4f70727dc34561dfde1a3c529b6205c'] = 'Configuration';
-$_MODULE['<{statsdata}prestashop>statsdata_1a5b75c4be3c0100c99764b21e844cc8'] = 'Enregistrer les pages vues pour chaque client';
-$_MODULE['<{statsdata}prestashop>statsdata_93cba07454f06a4a960172bbd6e2a435'] = 'Oui';
-$_MODULE['<{statsdata}prestashop>statsdata_7a6cf506bde903b2b30c0a4cbcfa0291'] = 'La détection des plug-ins charge un fichier JavaScript de 20 ko supplémentaire pour les nouveaux visiteurs.';
-$_MODULE['<{statsdata}prestashop>statsdata_a51950bf91ba55cd93a33ce3f8d448c2'] = 'Récupération des données statistiques';
-$_MODULE['<{statsdata}prestashop>statsdata_c77dfd683d0d76940e5e04cb24e8bce1'] = 'Ce module doit être activé pour bénéficier des statistiques.';
-$_MODULE['<{statsdata}prestashop>statsdata_b368e11d9d23b26f1fb4a1b78584560d'] = 'Enregistrer les pages vues globales';
-$_MODULE['<{statsdata}prestashop>statsdata_339acfd90b82e91ce9141ec75e4bff24'] = 'Les pages vues nécessitent moins de ressources que le détail par client, mais en nécessitent néanmoins une certaine quantité.';
-$_MODULE['<{statsdata}prestashop>statsdata_c0e4406117ba4c29c4d66e3069ebf3d3'] = 'Détection des plug-ins';
-$_MODULE['<{statsdata}prestashop>statsdata_06933067aafd48425d67bcb01bba5cb6'] = 'Mettre à jour';
diff --git a/modules/statsdata/translations/it.php b/modules/statsdata/translations/it.php
deleted file mode 100644
index 7741caaef..000000000
--- a/modules/statsdata/translations/it.php
+++ /dev/null
@@ -1,18 +0,0 @@
-statsdata_bafd7322c6e97d25b6299b5d6fe8920b'] = 'No';
-$_MODULE['<{statsdata}prestashop>statsdata_f3e159134846bd13c0c967f361229233'] = 'Le pagine viste dal cliente utilizzano molte risorse CPU e di spazio database.';
-$_MODULE['<{statsdata}prestashop>statsdata_20015706a8cbd457cbb6ea3e7d5dc9b3'] = 'Configurazione aggiornata';
-$_MODULE['<{statsdata}prestashop>statsdata_f4f70727dc34561dfde1a3c529b6205c'] = 'Impostazioni';
-$_MODULE['<{statsdata}prestashop>statsdata_1a5b75c4be3c0100c99764b21e844cc8'] = 'Salvare le pagine viste per ogni cliente';
-$_MODULE['<{statsdata}prestashop>statsdata_93cba07454f06a4a960172bbd6e2a435'] = 'Sì';
-$_MODULE['<{statsdata}prestashop>statsdata_7a6cf506bde903b2b30c0a4cbcfa0291'] = 'L\'individuazione dei plug-in carica un ulteriore file javascript di 20kb per i nuovi visitatori';
-$_MODULE['<{statsdata}prestashop>statsdata_a51950bf91ba55cd93a33ce3f8d448c2'] = 'Recupero dati per statistiche';
-$_MODULE['<{statsdata}prestashop>statsdata_c77dfd683d0d76940e5e04cb24e8bce1'] = 'Questo modulo deve essere attivato se si desidera utilizzare le statistiche';
-$_MODULE['<{statsdata}prestashop>statsdata_b368e11d9d23b26f1fb4a1b78584560d'] = 'Salva pagine globali viste';
-$_MODULE['<{statsdata}prestashop>statsdata_339acfd90b82e91ce9141ec75e4bff24'] = 'Le pagine viste utilizzano meno risorse rispetto al cliente, ma utilizzano comunque le risorse';
-$_MODULE['<{statsdata}prestashop>statsdata_c0e4406117ba4c29c4d66e3069ebf3d3'] = 'Individuazione dei plug-in';
-$_MODULE['<{statsdata}prestashop>statsdata_06933067aafd48425d67bcb01bba5cb6'] = 'Aggiornamento';
diff --git a/modules/statsequipment/translations/de.php b/modules/statsequipment/translations/de.php
deleted file mode 100644
index 254072170..000000000
--- a/modules/statsequipment/translations/de.php
+++ /dev/null
@@ -1,15 +0,0 @@
-statsequipment_6602bbeb2956c035fb4cb5e844a4861b'] = 'Guide';
-$_MODULE['<{statsequipment}prestashop>statsequipment_ef83f5147398f2735fddfaac983983d7'] = 'Web-Browser-Benutzung';
-$_MODULE['<{statsequipment}prestashop>statsequipment_719d067b229178f03bcfa1da4ac4dede'] = 'Software';
-$_MODULE['<{statsequipment}prestashop>statsequipment_236d6d0b5cc4428f346c235e0c60faaa'] = 'Anzeige der von Ihren Besuchern benutzten Software';
-$_MODULE['<{statsequipment}prestashop>statsequipment_bb38096ab39160dc20d44f3ea6b44507'] = 'Plug-ins';
-$_MODULE['<{statsequipment}prestashop>statsequipment_998e4c5c80f27dec552e99dfed34889a'] = 'CSV-Export';
-$_MODULE['<{statsequipment}prestashop>statsequipment_c560add3373d03ea2723069fb428719a'] = 'Bestimmen Sie den Prozentsatz der Betriebssysteme, die Ihre Kunden nutzen.';
-$_MODULE['<{statsequipment}prestashop>statsequipment_501361472d0528ee07f202297f599d40'] = 'Stellen Sie sicher, dass Ihre Webseite für alle zugänglich ist';
-$_MODULE['<{statsequipment}prestashop>statsequipment_0a66f998cfad4890a14c9b9a1df8deb3'] = 'Betriebssystem-Benutzung';
-$_MODULE['<{statsequipment}prestashop>statsequipment_d36312e9992d0b03780a32fedd6650b7'] = 'Bestimmen Sie den Web-Browser-Prozentsatz, den Ihr Kunden nutzt.';
diff --git a/modules/statsequipment/translations/en.php b/modules/statsequipment/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/statsequipment/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-statsequipment_6602bbeb2956c035fb4cb5e844a4861b'] = 'Guía';
-$_MODULE['<{statsequipment}prestashop>statsequipment_ef83f5147398f2735fddfaac983983d7'] = 'Buscador utilizado';
-$_MODULE['<{statsequipment}prestashop>statsequipment_719d067b229178f03bcfa1da4ac4dede'] = 'Software';
-$_MODULE['<{statsequipment}prestashop>statsequipment_236d6d0b5cc4428f346c235e0c60faaa'] = 'Mostrar el Software utilizado por sus visitantes';
-$_MODULE['<{statsequipment}prestashop>statsequipment_bb38096ab39160dc20d44f3ea6b44507'] = 'Plug-ins';
-$_MODULE['<{statsequipment}prestashop>statsequipment_998e4c5c80f27dec552e99dfed34889a'] = 'CSV Export';
-$_MODULE['<{statsequipment}prestashop>statsequipment_c560add3373d03ea2723069fb428719a'] = 'Determine la repartición de los sistemas operativo que utilizan sus clientes';
-$_MODULE['<{statsequipment}prestashop>statsequipment_501361472d0528ee07f202297f599d40'] = 'Asegúrese de que su sitio Web sea accesible a todos';
-$_MODULE['<{statsequipment}prestashop>statsequipment_0a66f998cfad4890a14c9b9a1df8deb3'] = 'Sistema operativo utilizado';
-$_MODULE['<{statsequipment}prestashop>statsequipment_d36312e9992d0b03780a32fedd6650b7'] = 'Determine la repartición de los buscadores que utilizan sus clientes';
diff --git a/modules/statsequipment/translations/fr.php b/modules/statsequipment/translations/fr.php
deleted file mode 100644
index e77024db3..000000000
--- a/modules/statsequipment/translations/fr.php
+++ /dev/null
@@ -1,15 +0,0 @@
-statsequipment_6602bbeb2956c035fb4cb5e844a4861b'] = 'Guide';
-$_MODULE['<{statsequipment}prestashop>statsequipment_ef83f5147398f2735fddfaac983983d7'] = 'Navigateurs utilisés';
-$_MODULE['<{statsequipment}prestashop>statsequipment_719d067b229178f03bcfa1da4ac4dede'] = 'Équipement';
-$_MODULE['<{statsequipment}prestashop>statsequipment_236d6d0b5cc4428f346c235e0c60faaa'] = 'Affiche l\'équipement de vos visiteurs.';
-$_MODULE['<{statsequipment}prestashop>statsequipment_bb38096ab39160dc20d44f3ea6b44507'] = 'Extensions';
-$_MODULE['<{statsequipment}prestashop>statsequipment_998e4c5c80f27dec552e99dfed34889a'] = 'Export CSV';
-$_MODULE['<{statsequipment}prestashop>statsequipment_c560add3373d03ea2723069fb428719a'] = 'Déterminez la répartition des systèmes d\'exploitation utilisés par vos clients.';
-$_MODULE['<{statsequipment}prestashop>statsequipment_501361472d0528ee07f202297f599d40'] = 'Veillez à ce que votre site soit accessible à tous.';
-$_MODULE['<{statsequipment}prestashop>statsequipment_0a66f998cfad4890a14c9b9a1df8deb3'] = 'Systèmes d\'exploitation utilisés';
-$_MODULE['<{statsequipment}prestashop>statsequipment_d36312e9992d0b03780a32fedd6650b7'] = 'Déterminez la répartition des navigateurs web utilisés par vos clients.';
diff --git a/modules/statsequipment/translations/it.php b/modules/statsequipment/translations/it.php
deleted file mode 100644
index cc7dab5e4..000000000
--- a/modules/statsequipment/translations/it.php
+++ /dev/null
@@ -1,15 +0,0 @@
-statsequipment_6602bbeb2956c035fb4cb5e844a4861b'] = 'Guida';
-$_MODULE['<{statsequipment}prestashop>statsequipment_ef83f5147398f2735fddfaac983983d7'] = 'Uso del browser';
-$_MODULE['<{statsequipment}prestashop>statsequipment_719d067b229178f03bcfa1da4ac4dede'] = 'Software';
-$_MODULE['<{statsequipment}prestashop>statsequipment_236d6d0b5cc4428f346c235e0c60faaa'] = 'Visualizza il software utilizzato dai visitatori';
-$_MODULE['<{statsequipment}prestashop>statsequipment_bb38096ab39160dc20d44f3ea6b44507'] = 'Plug-in';
-$_MODULE['<{statsequipment}prestashop>statsequipment_998e4c5c80f27dec552e99dfed34889a'] = 'Esporta CSV';
-$_MODULE['<{statsequipment}prestashop>statsequipment_c560add3373d03ea2723069fb428719a'] = 'Determina la percentuale di sistemi operativi usati dai tuoi clienti.';
-$_MODULE['<{statsequipment}prestashop>statsequipment_501361472d0528ee07f202297f599d40'] = 'Assicuratevi che il tuo sito web sia accessibile a tutti';
-$_MODULE['<{statsequipment}prestashop>statsequipment_0a66f998cfad4890a14c9b9a1df8deb3'] = 'Uso del sistema operativo';
-$_MODULE['<{statsequipment}prestashop>statsequipment_d36312e9992d0b03780a32fedd6650b7'] = 'Determina la percentuale di browser utilizzati dai tuoi clienti.';
diff --git a/modules/statsforecast/translations/de.php b/modules/statsforecast/translations/de.php
deleted file mode 100644
index 9131a67dd..000000000
--- a/modules/statsforecast/translations/de.php
+++ /dev/null
@@ -1,56 +0,0 @@
-statsforecast_03727ac48595a24daed975559c944a44'] = 'Tag';
-$_MODULE['<{statsforecast}prestashop>statsforecast_12c500ed0b7879105fb46af0f246be87'] = 'Bestellungen';
-$_MODULE['<{statsforecast}prestashop>statsforecast_11ff9f68afb6b8b5b8eda218d7c83a65'] = 'Verkäufe';
-$_MODULE['<{statsforecast}prestashop>statsforecast_b1897515d548a960afe49ecf66a29021'] = 'Durchschnitt';
-$_MODULE['<{statsforecast}prestashop>statsforecast_5a9e532b24379dca2ab0e973172a78e1'] = 'Registrierte Besucher';
-$_MODULE['<{statsforecast}prestashop>statsforecast_e55f75a29310d7b60f7ac1d390c8ae42'] = 'Modul';
-$_MODULE['<{statsforecast}prestashop>statsforecast_3adbdb3ac060038aa0e6e6c138ef9873'] = 'Kategorie';
-$_MODULE['<{statsforecast}prestashop>statsforecast_4b6f7d34a58ba399f077685951d06738'] = 'Kunden';
-$_MODULE['<{statsforecast}prestashop>statsforecast_699aed86dada6ca01ef74013a4464066'] = 'Wachstum';
-$_MODULE['<{statsforecast}prestashop>statsforecast_28e81c8343702f6c813cc31a7f90616a'] = 'Währungsverteilung';
-$_MODULE['<{statsforecast}prestashop>statsforecast_61569923d8075889a162c4e603258e6e'] = 'Verkäufe (umgewandelt)';
-$_MODULE['<{statsforecast}prestashop>statsforecast_03937134cedab9078be39a77ee3a48a0'] = 'Gruppe';
-$_MODULE['<{statsforecast}prestashop>statsforecast_f2bbdf9f72c085adc4d0404e370f0f4c'] = 'Attribut';
-$_MODULE['<{statsforecast}prestashop>statsforecast_240c994d8b61c7bd68ac1c5182bbdb2e'] = 'Statistik Startseite';
-$_MODULE['<{statsforecast}prestashop>statsforecast_d2ce009594dcc60befa6a4e6cbeb71fc'] = 'Woche';
-$_MODULE['<{statsforecast}prestashop>statsforecast_9dea4016dbcc290b773ab2fae678aaa8'] = 'Artikel';
-$_MODULE['<{statsforecast}prestashop>statsforecast_e46b5c15331f34b9ff653fdf1ea0a7f0'] = '% Reg.';
-$_MODULE['<{statsforecast}prestashop>statsforecast_1d34a18a13e480b0aa6a799bb8a49c1b'] = '% Bestellungen';
-$_MODULE['<{statsforecast}prestashop>statsforecast_3bb1503332637805beddb73a2dd1fe1b'] = 'Umwandlung';
-$_MODULE['<{statsforecast}prestashop>statsforecast_fc26e55e0993a75e892175deb02aae15'] = 'Warenkörbe';
-$_MODULE['<{statsforecast}prestashop>statsforecast_87cac5a0b60008003ccf46dc1d49e0c3'] = 'Volle Warenkörbe';
-$_MODULE['<{statsforecast}prestashop>statsforecast_88183b946cc5f0e8c96b2e66e1c74a7e'] = 'Unbekannt';
-$_MODULE['<{statsforecast}prestashop>statsforecast_8ca76c564cccfd5a2ff4d2e08f46db5a'] = 'Ertrag aus jedem registrierten Besucher';
-$_MODULE['<{statsforecast}prestashop>statsforecast_72c24d8aa8b0a7a47035b1e9d905b582'] = 'Alle Beträge verstehen sich zzgl. MsWst.';
-$_MODULE['<{statsforecast}prestashop>statsforecast_537c66b24ef5c83b7382cdc3f34885f2'] = 'Jahr';
-$_MODULE['<{statsforecast}prestashop>statsforecast_d7e637a6e9ff116de2fa89551240a94d'] = 'Besuche';
-$_MODULE['<{statsforecast}prestashop>statsforecast_96b0141273eabab320119c467cdcaf17'] = 'Insgesamt';
-$_MODULE['<{statsforecast}prestashop>statsforecast_ae5d01b6efa819cc7a7c05a8c57fcc2c'] = 'Besucher';
-$_MODULE['<{statsforecast}prestashop>statsforecast_3fa6443ce3f838b6901b70cd812abf0d'] = 'Zahlungsverteilung';
-$_MODULE['<{statsforecast}prestashop>statsforecast_5ed26836c96d7dcae8a40307e8e250c3'] = '- Kein Filter -';
-$_MODULE['<{statsforecast}prestashop>statsforecast_f13877f6ad53ce91fcb20fb8b7969698'] = 'Verteilung der Kategorien';
-$_MODULE['<{statsforecast}prestashop>statsforecast_a170b5c062acab0443b1110292e38b26'] = 'Durchschnittl. Preis';
-$_MODULE['<{statsforecast}prestashop>statsforecast_0bcef9c45bd8a48eda1b26eb0c61c869'] = '%';
-$_MODULE['<{statsforecast}prestashop>statsforecast_07aa83862ec591697b4325b66d36a78b'] = 'Zonenverteilung';
-$_MODULE['<{statsforecast}prestashop>statsforecast_8471eed257db7258f935588a664ba4f3'] = 'Attributverteilung';
-$_MODULE['<{statsforecast}prestashop>statsforecast_1ee1c44c2dc81681f961235604247b81'] = 'Modus:';
-$_MODULE['<{statsforecast}prestashop>statsforecast_7cbb885aa1164b390a0bc050a64e1812'] = 'Monat';
-$_MODULE['<{statsforecast}prestashop>statsforecast_591411cc8927851db2002208676d8330'] = 'Reg.';
-$_MODULE['<{statsforecast}prestashop>statsforecast_89c1265be62d3ba835a3d963db5956b0'] = 'Prognose';
-$_MODULE['<{statsforecast}prestashop>statsforecast_9b945efebb006547a94415eadaa12921'] = 'Konten';
-$_MODULE['<{statsforecast}prestashop>statsforecast_b4aec469184819e8369588e5d84b38fb'] = 'Wandeln Sie Ihre Besucher in bares Geld um:';
-$_MODULE['<{statsforecast}prestashop>statsforecast_38f2d5f34a773b7c0668f03e6b8eb6dc'] = 'Ertrag aus jedem Besucher';
-$_MODULE['<{statsforecast}prestashop>statsforecast_e6e42855066e7a3ae050b2c698021b14'] = 'Zone:';
-$_MODULE['<{statsforecast}prestashop>statsforecast_e93f994f01c537c4e2f7d8528c3eb5e9'] = 'Zählung';
-$_MODULE['<{statsforecast}prestashop>statsforecast_a85eba4c6c699122b2bb1387ea4813ad'] = 'Warenkorb';
-$_MODULE['<{statsforecast}prestashop>statsforecast_52f39d7c5cad5c1550553385f55277ae'] = '% Zählung';
-$_MODULE['<{statsforecast}prestashop>statsforecast_41b63feded4acc3719f9bcd016388324'] = '% Verkäufe';
-$_MODULE['<{statsforecast}prestashop>statsforecast_f1dd68fb6a00d3e4d7f751deacde995d'] = 'Sprachenverteilung';
-$_MODULE['<{statsforecast}prestashop>statsforecast_b3ff996fe5c77610359114835baf9b38'] = 'Zone';
-$_MODULE['<{statsforecast}prestashop>statsforecast_ec0fc0100c4fc1ce4eea230c3dc10360'] = 'Undefiniert';
-$_MODULE['<{statsforecast}prestashop>statsforecast_386c339d37e737a436499d423a77df0c'] = 'Währung';
diff --git a/modules/statsforecast/translations/en.php b/modules/statsforecast/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/statsforecast/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-statsforecast_03727ac48595a24daed975559c944a44'] = 'Día';
-$_MODULE['<{statsforecast}prestashop>statsforecast_12c500ed0b7879105fb46af0f246be87'] = 'Pedidos';
-$_MODULE['<{statsforecast}prestashop>statsforecast_11ff9f68afb6b8b5b8eda218d7c83a65'] = 'Ventas';
-$_MODULE['<{statsforecast}prestashop>statsforecast_b1897515d548a960afe49ecf66a29021'] = 'Media';
-$_MODULE['<{statsforecast}prestashop>statsforecast_5a9e532b24379dca2ab0e973172a78e1'] = 'Visitantes inscritos';
-$_MODULE['<{statsforecast}prestashop>statsforecast_e55f75a29310d7b60f7ac1d390c8ae42'] = 'Módulo';
-$_MODULE['<{statsforecast}prestashop>statsforecast_3adbdb3ac060038aa0e6e6c138ef9873'] = 'Categoría';
-$_MODULE['<{statsforecast}prestashop>statsforecast_4b6f7d34a58ba399f077685951d06738'] = 'Clientes';
-$_MODULE['<{statsforecast}prestashop>statsforecast_699aed86dada6ca01ef74013a4464066'] = 'Evolución';
-$_MODULE['<{statsforecast}prestashop>statsforecast_28e81c8343702f6c813cc31a7f90616a'] = 'Distribución de la moneda';
-$_MODULE['<{statsforecast}prestashop>statsforecast_61569923d8075889a162c4e603258e6e'] = 'Volumen de ventas (convertido)';
-$_MODULE['<{statsforecast}prestashop>statsforecast_03937134cedab9078be39a77ee3a48a0'] = 'Grupo';
-$_MODULE['<{statsforecast}prestashop>statsforecast_f2bbdf9f72c085adc4d0404e370f0f4c'] = 'Atributo';
-$_MODULE['<{statsforecast}prestashop>statsforecast_240c994d8b61c7bd68ac1c5182bbdb2e'] = 'Tabla de mando de estadísticas';
-$_MODULE['<{statsforecast}prestashop>statsforecast_d2ce009594dcc60befa6a4e6cbeb71fc'] = 'Semana';
-$_MODULE['<{statsforecast}prestashop>statsforecast_9dea4016dbcc290b773ab2fae678aaa8'] = 'Productos';
-$_MODULE['<{statsforecast}prestashop>statsforecast_e46b5c15331f34b9ff653fdf1ea0a7f0'] = '% insc.';
-$_MODULE['<{statsforecast}prestashop>statsforecast_1d34a18a13e480b0aa6a799bb8a49c1b'] = '% pedidos';
-$_MODULE['<{statsforecast}prestashop>statsforecast_3bb1503332637805beddb73a2dd1fe1b'] = 'Conversión';
-$_MODULE['<{statsforecast}prestashop>statsforecast_fc26e55e0993a75e892175deb02aae15'] = 'Carritos';
-$_MODULE['<{statsforecast}prestashop>statsforecast_87cac5a0b60008003ccf46dc1d49e0c3'] = 'Carritos llenos';
-$_MODULE['<{statsforecast}prestashop>statsforecast_8ca76c564cccfd5a2ff4d2e08f46db5a'] = 'Beneficio por visitante inscrito';
-$_MODULE['<{statsforecast}prestashop>statsforecast_88183b946cc5f0e8c96b2e66e1c74a7e'] = 'Desconocido';
-$_MODULE['<{statsforecast}prestashop>statsforecast_72c24d8aa8b0a7a47035b1e9d905b582'] = 'Todos los importes se indican sin IVA';
-$_MODULE['<{statsforecast}prestashop>statsforecast_537c66b24ef5c83b7382cdc3f34885f2'] = 'Año';
-$_MODULE['<{statsforecast}prestashop>statsforecast_d7e637a6e9ff116de2fa89551240a94d'] = 'Visitas';
-$_MODULE['<{statsforecast}prestashop>statsforecast_96b0141273eabab320119c467cdcaf17'] = 'Total';
-$_MODULE['<{statsforecast}prestashop>statsforecast_ae5d01b6efa819cc7a7c05a8c57fcc2c'] = 'Visitantes';
-$_MODULE['<{statsforecast}prestashop>statsforecast_3fa6443ce3f838b6901b70cd812abf0d'] = 'Repartición por modos de pago';
-$_MODULE['<{statsforecast}prestashop>statsforecast_5ed26836c96d7dcae8a40307e8e250c3'] = '-No hay filtros-';
-$_MODULE['<{statsforecast}prestashop>statsforecast_f13877f6ad53ce91fcb20fb8b7969698'] = 'Repartición por categorías';
-$_MODULE['<{statsforecast}prestashop>statsforecast_a170b5c062acab0443b1110292e38b26'] = 'Precio medio';
-$_MODULE['<{statsforecast}prestashop>statsforecast_0bcef9c45bd8a48eda1b26eb0c61c869'] = '%';
-$_MODULE['<{statsforecast}prestashop>statsforecast_07aa83862ec591697b4325b66d36a78b'] = 'Repartición por zonas';
-$_MODULE['<{statsforecast}prestashop>statsforecast_8471eed257db7258f935588a664ba4f3'] = 'Repartición de las ventas por atributos';
-$_MODULE['<{statsforecast}prestashop>statsforecast_1ee1c44c2dc81681f961235604247b81'] = 'Modo';
-$_MODULE['<{statsforecast}prestashop>statsforecast_7cbb885aa1164b390a0bc050a64e1812'] = 'Mes';
-$_MODULE['<{statsforecast}prestashop>statsforecast_591411cc8927851db2002208676d8330'] = 'Reg.';
-$_MODULE['<{statsforecast}prestashop>statsforecast_89c1265be62d3ba835a3d963db5956b0'] = 'Previsiones';
-$_MODULE['<{statsforecast}prestashop>statsforecast_9b945efebb006547a94415eadaa12921'] = 'Cuentas';
-$_MODULE['<{statsforecast}prestashop>statsforecast_b4aec469184819e8369588e5d84b38fb'] = 'Dirigir a los visitantes hacia el pago';
-$_MODULE['<{statsforecast}prestashop>statsforecast_38f2d5f34a773b7c0668f03e6b8eb6dc'] = 'Beneficio por visitante';
-$_MODULE['<{statsforecast}prestashop>statsforecast_e6e42855066e7a3ae050b2c698021b14'] = 'Zona:';
-$_MODULE['<{statsforecast}prestashop>statsforecast_e93f994f01c537c4e2f7d8528c3eb5e9'] = 'Cálculo';
-$_MODULE['<{statsforecast}prestashop>statsforecast_a85eba4c6c699122b2bb1387ea4813ad'] = 'carrito';
-$_MODULE['<{statsforecast}prestashop>statsforecast_52f39d7c5cad5c1550553385f55277ae'] = '% cálculo';
-$_MODULE['<{statsforecast}prestashop>statsforecast_41b63feded4acc3719f9bcd016388324'] = '% volume de ventas';
-$_MODULE['<{statsforecast}prestashop>statsforecast_f1dd68fb6a00d3e4d7f751deacde995d'] = 'Distribución del idioma';
-$_MODULE['<{statsforecast}prestashop>statsforecast_b3ff996fe5c77610359114835baf9b38'] = 'Zona';
-$_MODULE['<{statsforecast}prestashop>statsforecast_ec0fc0100c4fc1ce4eea230c3dc10360'] = 'Indefinido';
-$_MODULE['<{statsforecast}prestashop>statsforecast_386c339d37e737a436499d423a77df0c'] = 'Divisa';
diff --git a/modules/statsforecast/translations/fr.php b/modules/statsforecast/translations/fr.php
deleted file mode 100644
index a45a4afb9..000000000
--- a/modules/statsforecast/translations/fr.php
+++ /dev/null
@@ -1,56 +0,0 @@
-statsforecast_03727ac48595a24daed975559c944a44'] = 'Jour';
-$_MODULE['<{statsforecast}prestashop>statsforecast_12c500ed0b7879105fb46af0f246be87'] = 'Com.';
-$_MODULE['<{statsforecast}prestashop>statsforecast_11ff9f68afb6b8b5b8eda218d7c83a65'] = 'CA';
-$_MODULE['<{statsforecast}prestashop>statsforecast_b1897515d548a960afe49ecf66a29021'] = 'Moyenne';
-$_MODULE['<{statsforecast}prestashop>statsforecast_5a9e532b24379dca2ab0e973172a78e1'] = 'Visiteurs inscrits';
-$_MODULE['<{statsforecast}prestashop>statsforecast_e55f75a29310d7b60f7ac1d390c8ae42'] = 'Module';
-$_MODULE['<{statsforecast}prestashop>statsforecast_3adbdb3ac060038aa0e6e6c138ef9873'] = 'Catégorie';
-$_MODULE['<{statsforecast}prestashop>statsforecast_4b6f7d34a58ba399f077685951d06738'] = 'Clients';
-$_MODULE['<{statsforecast}prestashop>statsforecast_699aed86dada6ca01ef74013a4464066'] = 'Évolution';
-$_MODULE['<{statsforecast}prestashop>statsforecast_28e81c8343702f6c813cc31a7f90616a'] = 'Répartition par devises';
-$_MODULE['<{statsforecast}prestashop>statsforecast_61569923d8075889a162c4e603258e6e'] = 'CA (converti)';
-$_MODULE['<{statsforecast}prestashop>statsforecast_03937134cedab9078be39a77ee3a48a0'] = 'Groupe';
-$_MODULE['<{statsforecast}prestashop>statsforecast_f2bbdf9f72c085adc4d0404e370f0f4c'] = 'Attribut';
-$_MODULE['<{statsforecast}prestashop>statsforecast_d2ce009594dcc60befa6a4e6cbeb71fc'] = 'Semaine';
-$_MODULE['<{statsforecast}prestashop>statsforecast_87cac5a0b60008003ccf46dc1d49e0c3'] = 'Paniers complets';
-$_MODULE['<{statsforecast}prestashop>statsforecast_9dea4016dbcc290b773ab2fae678aaa8'] = 'Prods.';
-$_MODULE['<{statsforecast}prestashop>statsforecast_e46b5c15331f34b9ff653fdf1ea0a7f0'] = '% Insc.';
-$_MODULE['<{statsforecast}prestashop>statsforecast_1d34a18a13e480b0aa6a799bb8a49c1b'] = '% Com.';
-$_MODULE['<{statsforecast}prestashop>statsforecast_3bb1503332637805beddb73a2dd1fe1b'] = 'Conversion';
-$_MODULE['<{statsforecast}prestashop>statsforecast_fc26e55e0993a75e892175deb02aae15'] = 'Paniers';
-$_MODULE['<{statsforecast}prestashop>statsforecast_8ca76c564cccfd5a2ff4d2e08f46db5a'] = 'Chaque visiteur inscrit rapporte en moyenne';
-$_MODULE['<{statsforecast}prestashop>statsforecast_88183b946cc5f0e8c96b2e66e1c74a7e'] = 'Inconnu';
-$_MODULE['<{statsforecast}prestashop>statsforecast_240c994d8b61c7bd68ac1c5182bbdb2e'] = 'Tableau de bord statistiques';
-$_MODULE['<{statsforecast}prestashop>statsforecast_72c24d8aa8b0a7a47035b1e9d905b582'] = 'Tous les montants sont exprimés HT.';
-$_MODULE['<{statsforecast}prestashop>statsforecast_537c66b24ef5c83b7382cdc3f34885f2'] = 'Année';
-$_MODULE['<{statsforecast}prestashop>statsforecast_d7e637a6e9ff116de2fa89551240a94d'] = 'Visites';
-$_MODULE['<{statsforecast}prestashop>statsforecast_96b0141273eabab320119c467cdcaf17'] = 'Total';
-$_MODULE['<{statsforecast}prestashop>statsforecast_3fa6443ce3f838b6901b70cd812abf0d'] = 'Répartition par modes de paiement';
-$_MODULE['<{statsforecast}prestashop>statsforecast_5ed26836c96d7dcae8a40307e8e250c3'] = '-- Aucun filtre --';
-$_MODULE['<{statsforecast}prestashop>statsforecast_f13877f6ad53ce91fcb20fb8b7969698'] = 'Répartition par catégories';
-$_MODULE['<{statsforecast}prestashop>statsforecast_a170b5c062acab0443b1110292e38b26'] = 'Prix moyen';
-$_MODULE['<{statsforecast}prestashop>statsforecast_0bcef9c45bd8a48eda1b26eb0c61c869'] = '%';
-$_MODULE['<{statsforecast}prestashop>statsforecast_07aa83862ec591697b4325b66d36a78b'] = 'Répartition par zones';
-$_MODULE['<{statsforecast}prestashop>statsforecast_8471eed257db7258f935588a664ba4f3'] = 'Répartition des ventes par attributs';
-$_MODULE['<{statsforecast}prestashop>statsforecast_ae5d01b6efa819cc7a7c05a8c57fcc2c'] = 'Visiteurs';
-$_MODULE['<{statsforecast}prestashop>statsforecast_f1dd68fb6a00d3e4d7f751deacde995d'] = 'Répartition par langues';
-$_MODULE['<{statsforecast}prestashop>statsforecast_1ee1c44c2dc81681f961235604247b81'] = 'Mode :';
-$_MODULE['<{statsforecast}prestashop>statsforecast_7cbb885aa1164b390a0bc050a64e1812'] = 'Mois';
-$_MODULE['<{statsforecast}prestashop>statsforecast_591411cc8927851db2002208676d8330'] = 'Insc.';
-$_MODULE['<{statsforecast}prestashop>statsforecast_89c1265be62d3ba835a3d963db5956b0'] = 'Prévisions';
-$_MODULE['<{statsforecast}prestashop>statsforecast_9b945efebb006547a94415eadaa12921'] = 'Comptes';
-$_MODULE['<{statsforecast}prestashop>statsforecast_b4aec469184819e8369588e5d84b38fb'] = 'Monétisation des visiteurs :';
-$_MODULE['<{statsforecast}prestashop>statsforecast_38f2d5f34a773b7c0668f03e6b8eb6dc'] = 'Chaque visiteur rapporte en moyenne';
-$_MODULE['<{statsforecast}prestashop>statsforecast_e6e42855066e7a3ae050b2c698021b14'] = 'Zone :';
-$_MODULE['<{statsforecast}prestashop>statsforecast_e93f994f01c537c4e2f7d8528c3eb5e9'] = 'Nb';
-$_MODULE['<{statsforecast}prestashop>statsforecast_52f39d7c5cad5c1550553385f55277ae'] = '% Nb';
-$_MODULE['<{statsforecast}prestashop>statsforecast_41b63feded4acc3719f9bcd016388324'] = '% CA';
-$_MODULE['<{statsforecast}prestashop>statsforecast_b3ff996fe5c77610359114835baf9b38'] = 'Zone';
-$_MODULE['<{statsforecast}prestashop>statsforecast_ec0fc0100c4fc1ce4eea230c3dc10360'] = 'Indéfini';
-$_MODULE['<{statsforecast}prestashop>statsforecast_386c339d37e737a436499d423a77df0c'] = 'Devise';
-$_MODULE['<{statsforecast}prestashop>statsforecast_a85eba4c6c699122b2bb1387ea4813ad'] = 'Panier';
diff --git a/modules/statsforecast/translations/it.php b/modules/statsforecast/translations/it.php
deleted file mode 100644
index 94fe8cc21..000000000
--- a/modules/statsforecast/translations/it.php
+++ /dev/null
@@ -1,56 +0,0 @@
-statsforecast_03727ac48595a24daed975559c944a44'] = 'Giorno';
-$_MODULE['<{statsforecast}prestashop>statsforecast_12c500ed0b7879105fb46af0f246be87'] = 'Ordini';
-$_MODULE['<{statsforecast}prestashop>statsforecast_11ff9f68afb6b8b5b8eda218d7c83a65'] = 'Vendite';
-$_MODULE['<{statsforecast}prestashop>statsforecast_b1897515d548a960afe49ecf66a29021'] = 'Media';
-$_MODULE['<{statsforecast}prestashop>statsforecast_5a9e532b24379dca2ab0e973172a78e1'] = 'Visitatori registrati';
-$_MODULE['<{statsforecast}prestashop>statsforecast_e55f75a29310d7b60f7ac1d390c8ae42'] = 'Modulo';
-$_MODULE['<{statsforecast}prestashop>statsforecast_3adbdb3ac060038aa0e6e6c138ef9873'] = 'Categoria';
-$_MODULE['<{statsforecast}prestashop>statsforecast_4b6f7d34a58ba399f077685951d06738'] = 'Clienti';
-$_MODULE['<{statsforecast}prestashop>statsforecast_699aed86dada6ca01ef74013a4464066'] = 'Crescita';
-$_MODULE['<{statsforecast}prestashop>statsforecast_28e81c8343702f6c813cc31a7f90616a'] = 'Distribuzione valuta';
-$_MODULE['<{statsforecast}prestashop>statsforecast_61569923d8075889a162c4e603258e6e'] = 'Vendite (convertito)';
-$_MODULE['<{statsforecast}prestashop>statsforecast_03937134cedab9078be39a77ee3a48a0'] = 'Gruppo';
-$_MODULE['<{statsforecast}prestashop>statsforecast_f2bbdf9f72c085adc4d0404e370f0f4c'] = 'Attributo';
-$_MODULE['<{statsforecast}prestashop>statsforecast_240c994d8b61c7bd68ac1c5182bbdb2e'] = 'Statistiche Dashboard';
-$_MODULE['<{statsforecast}prestashop>statsforecast_d2ce009594dcc60befa6a4e6cbeb71fc'] = 'Settimana';
-$_MODULE['<{statsforecast}prestashop>statsforecast_9dea4016dbcc290b773ab2fae678aaa8'] = 'Articoli';
-$_MODULE['<{statsforecast}prestashop>statsforecast_e46b5c15331f34b9ff653fdf1ea0a7f0'] = '% Reg.';
-$_MODULE['<{statsforecast}prestashop>statsforecast_1d34a18a13e480b0aa6a799bb8a49c1b'] = '% Ordini';
-$_MODULE['<{statsforecast}prestashop>statsforecast_3bb1503332637805beddb73a2dd1fe1b'] = 'Conversione';
-$_MODULE['<{statsforecast}prestashop>statsforecast_fc26e55e0993a75e892175deb02aae15'] = 'Carrelli';
-$_MODULE['<{statsforecast}prestashop>statsforecast_87cac5a0b60008003ccf46dc1d49e0c3'] = 'carri completi';
-$_MODULE['<{statsforecast}prestashop>statsforecast_8ca76c564cccfd5a2ff4d2e08f46db5a'] = 'Ogni visitatore registrato rende';
-$_MODULE['<{statsforecast}prestashop>statsforecast_88183b946cc5f0e8c96b2e66e1c74a7e'] = 'Sconosciuto';
-$_MODULE['<{statsforecast}prestashop>statsforecast_72c24d8aa8b0a7a47035b1e9d905b582'] = 'Tutti gli importi sono senza tasse.';
-$_MODULE['<{statsforecast}prestashop>statsforecast_537c66b24ef5c83b7382cdc3f34885f2'] = 'Anno';
-$_MODULE['<{statsforecast}prestashop>statsforecast_d7e637a6e9ff116de2fa89551240a94d'] = 'Visite';
-$_MODULE['<{statsforecast}prestashop>statsforecast_96b0141273eabab320119c467cdcaf17'] = 'Totale';
-$_MODULE['<{statsforecast}prestashop>statsforecast_ae5d01b6efa819cc7a7c05a8c57fcc2c'] = 'Visitatori';
-$_MODULE['<{statsforecast}prestashop>statsforecast_3fa6443ce3f838b6901b70cd812abf0d'] = 'Distribuzione del pagamento';
-$_MODULE['<{statsforecast}prestashop>statsforecast_5ed26836c96d7dcae8a40307e8e250c3'] = '- Nessun Filtro -';
-$_MODULE['<{statsforecast}prestashop>statsforecast_f13877f6ad53ce91fcb20fb8b7969698'] = 'Categoria distribuzione';
-$_MODULE['<{statsforecast}prestashop>statsforecast_a170b5c062acab0443b1110292e38b26'] = 'Prezzo medio';
-$_MODULE['<{statsforecast}prestashop>statsforecast_0bcef9c45bd8a48eda1b26eb0c61c869'] = '%';
-$_MODULE['<{statsforecast}prestashop>statsforecast_8471eed257db7258f935588a664ba4f3'] = 'Distribuzione attributo';
-$_MODULE['<{statsforecast}prestashop>statsforecast_07aa83862ec591697b4325b66d36a78b'] = 'Zone di distribuzione';
-$_MODULE['<{statsforecast}prestashop>statsforecast_1ee1c44c2dc81681f961235604247b81'] = 'Modalità:';
-$_MODULE['<{statsforecast}prestashop>statsforecast_7cbb885aa1164b390a0bc050a64e1812'] = 'Mese';
-$_MODULE['<{statsforecast}prestashop>statsforecast_591411cc8927851db2002208676d8330'] = 'Reg.';
-$_MODULE['<{statsforecast}prestashop>statsforecast_89c1265be62d3ba835a3d963db5956b0'] = 'Previsione';
-$_MODULE['<{statsforecast}prestashop>statsforecast_9b945efebb006547a94415eadaa12921'] = 'Conti';
-$_MODULE['<{statsforecast}prestashop>statsforecast_b4aec469184819e8369588e5d84b38fb'] = 'Trasforma i tuoi visitatori in denaro:';
-$_MODULE['<{statsforecast}prestashop>statsforecast_38f2d5f34a773b7c0668f03e6b8eb6dc'] = 'Ogni visitatore rende';
-$_MODULE['<{statsforecast}prestashop>statsforecast_e6e42855066e7a3ae050b2c698021b14'] = 'Zona:';
-$_MODULE['<{statsforecast}prestashop>statsforecast_e93f994f01c537c4e2f7d8528c3eb5e9'] = 'Conteggio';
-$_MODULE['<{statsforecast}prestashop>statsforecast_a85eba4c6c699122b2bb1387ea4813ad'] = 'Carrello';
-$_MODULE['<{statsforecast}prestashop>statsforecast_52f39d7c5cad5c1550553385f55277ae'] = '% conteggio';
-$_MODULE['<{statsforecast}prestashop>statsforecast_41b63feded4acc3719f9bcd016388324'] = '% vendite';
-$_MODULE['<{statsforecast}prestashop>statsforecast_f1dd68fb6a00d3e4d7f751deacde995d'] = 'Lingua di distribuzione';
-$_MODULE['<{statsforecast}prestashop>statsforecast_b3ff996fe5c77610359114835baf9b38'] = 'Zone';
-$_MODULE['<{statsforecast}prestashop>statsforecast_ec0fc0100c4fc1ce4eea230c3dc10360'] = 'Indefinito';
-$_MODULE['<{statsforecast}prestashop>statsforecast_386c339d37e737a436499d423a77df0c'] = 'Valuta';
diff --git a/modules/statsgeolocation/translations/de.php b/modules/statsgeolocation/translations/de.php
deleted file mode 100644
index 45fe1b04e..000000000
--- a/modules/statsgeolocation/translations/de.php
+++ /dev/null
@@ -1,19 +0,0 @@
-statsgeolocation_e7173e323991c8c33ad2dae1d528fc2e'] = 'Koordinaten aktualisieren';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_64d80b7a177f4bd0a1f1dde09741852d'] = 'Klicken Sie auf die Karte, um die Position von einzustellen:';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_dc25612aeb2ba1c2705fc2e9c947f084'] = 'Fehler: Sie müssen auf die Karte klicken oder auf die Schaltfläche Abbrechen';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_ad3d06d03d94223fa652babc913de686'] = 'Bestätigen';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_6602bbeb2956c035fb4cb5e844a4861b'] = 'Guide';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_a2f24ad94046ee38db78c336564acd30'] = 'Vergrößern Sie Ihre Versand-Bereich, um der potenziellen Nachfrage gerecht zu werden.';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_323d4eb70b252acb4a04eaf9e0882597'] = 'Geotargeting';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_621bd20bc26d0f67bacffc7785616372'] = 'Anzeige des Kundenstandorts';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_60503475047260bb2e6b815e3dcad910'] = 'Dieses Modul zeigt die Länderverteilung der Kunden durch Punkte in verschiedenen Größen auf der Weltkarte an. Zeigen Sie den Ruf Ihrer Webseite rund um die Welt an sowie die Kontinente, die Sie noch nicht erobert haben.';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_e346362c256cd1ff6efd70288f769d89'] = 'Ein Tor zur Welt';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_1b625393440dce51a25ccb43a38ddf67'] = 'Hinzufügen neuer Sprachen zu Ihrem Shop, wenn Sie sehen, dass ein ausreichender Teil Ihrer Kunden aus dem Ausland kommt.';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_25e8f2fd2871c8423bbe4e254066cd98'] = 'Bitte warten ...';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_60e421611f85e8faa9f6950ce71dab7a'] = 'Klicken Sie auf einen Ländernamen und bestimmen Sie seine Position auf der Karte';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_ea4788705e6873b424c65e91c2846b19'] = 'Abbrechen';
diff --git a/modules/statsgeolocation/translations/en.php b/modules/statsgeolocation/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/statsgeolocation/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-statsgeolocation_e7173e323991c8c33ad2dae1d528fc2e'] = 'Coordenadas de la actualización';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_64d80b7a177f4bd0a1f1dde09741852d'] = 'Haga clic en el mapa para definir la posición de:';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_dc25612aeb2ba1c2705fc2e9c947f084'] = 'Error: tiene que hacer clic en el mapa o en el botón cancelar';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_ad3d06d03d94223fa652babc913de686'] = 'Validar';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_6602bbeb2956c035fb4cb5e844a4861b'] = 'Guía';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_a2f24ad94046ee38db78c336564acd30'] = 'Aumente su área de envío para cubrir una demanda potencial.';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_323d4eb70b252acb4a04eaf9e0882597'] = 'Loaclización';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_621bd20bc26d0f67bacffc7785616372'] = 'Muestre el origen de sus clientes';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_60503475047260bb2e6b815e3dcad910'] = 'Este módulo muestra la distribución del país de sus clientes mostrando diversos puntos clasificados en el mapamundi mostrado abajo. Vea desde donde ven su tienda toda en el mundo y que continente no ha conquistado todavía.';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_e346362c256cd1ff6efd70288f769d89'] = 'Abrir al mundo';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_1b625393440dce51a25ccb43a38ddf67'] = 'Añada nuevos idiomas a su tienda si ve que gran parte de sus posibles clientes viene de un país extranjero.';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_25e8f2fd2871c8423bbe4e254066cd98'] = 'Espere por favor..';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_60e421611f85e8faa9f6950ce71dab7a'] = 'Haga clic sobre el país deseado para definir su posición en el mapa';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_ea4788705e6873b424c65e91c2846b19'] = 'Anular';
diff --git a/modules/statsgeolocation/translations/fr.php b/modules/statsgeolocation/translations/fr.php
deleted file mode 100644
index 0a6d14719..000000000
--- a/modules/statsgeolocation/translations/fr.php
+++ /dev/null
@@ -1,19 +0,0 @@
-statsgeolocation_64d80b7a177f4bd0a1f1dde09741852d'] = 'Cliquez sur la carte pour mettre à jour les coordonnées de :';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_dc25612aeb2ba1c2705fc2e9c947f084'] = 'Erreur : vous devez cliquer sur la carte ou sur le bouton Annuler';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_ad3d06d03d94223fa652babc913de686'] = 'Valider';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_e7173e323991c8c33ad2dae1d528fc2e'] = 'Mise à jour des coordonnées';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_6602bbeb2956c035fb4cb5e844a4861b'] = 'Guide';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_a2f24ad94046ee38db78c336564acd30'] = 'Élargissez votre zone de livraison pour répondre à une demande potentielle.';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_323d4eb70b252acb4a04eaf9e0882597'] = 'Géolocalisation';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_621bd20bc26d0f67bacffc7785616372'] = 'Affiche la provenance de vos clients.';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_60503475047260bb2e6b815e3dcad910'] = 'Ce module montre la répartition de vos clients par un point plus ou moins gros sur la carte ci-dessous. Découvrez la popularité de votre boutique à l\'échelle du monde et voyez les continents qu\'il vous reste à conquérir.';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_e346362c256cd1ff6efd70288f769d89'] = 'S\'ouvrir au monde';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_1b625393440dce51a25ccb43a38ddf67'] = 'Ajoutez une nouvelle langue à votre boutique si vous constatez que suffisamment de clients viennent d\'un autre pays.';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_25e8f2fd2871c8423bbe4e254066cd98'] = 'Veuillez patienter...';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_60e421611f85e8faa9f6950ce71dab7a'] = 'Cliquez sur le nom d\'un pays puis sur la carte afin de définir son emplacement';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_ea4788705e6873b424c65e91c2846b19'] = 'Annuler';
diff --git a/modules/statsgeolocation/translations/it.php b/modules/statsgeolocation/translations/it.php
deleted file mode 100644
index 40844339c..000000000
--- a/modules/statsgeolocation/translations/it.php
+++ /dev/null
@@ -1,19 +0,0 @@
-statsgeolocation_e7173e323991c8c33ad2dae1d528fc2e'] = 'Aggiorna le coordinate';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_64d80b7a177f4bd0a1f1dde09741852d'] = 'Clicca sulla mappa per impostare la posizione di:';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_dc25612aeb2ba1c2705fc2e9c947f084'] = 'Errore: devi cliccare sulla mappa o sul pulsante Annulla';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_ad3d06d03d94223fa652babc913de686'] = 'Convalida';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_6602bbeb2956c035fb4cb5e844a4861b'] = 'Guida';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_a2f24ad94046ee38db78c336564acd30'] = 'Amplia l\'area di spedizione per soddisfare la domanda potenziale.';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_323d4eb70b252acb4a04eaf9e0882597'] = 'Geolocalizzazione';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_621bd20bc26d0f67bacffc7785616372'] = 'Mostra l\'origine dei tuoi clienti';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_60503475047260bb2e6b815e3dcad910'] = 'Questo modulo indica la distribuzione dei Paesi dei tuoi clienti, mostrando i diversi punti di grandezza sulla mappa mondiale sotto. Vedi la fama del tuo sito web in tutto il mondo e quale continente non hai ancora conquistato.';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_e346362c256cd1ff6efd70288f769d89'] = 'Apriti al mondo';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_1b625393440dce51a25ccb43a38ddf67'] = 'Aggiungi nuove lingue al tuo negozio se si vede che una parte sufficiente dei tuoi clienti provengono da un paese straniero.';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_25e8f2fd2871c8423bbe4e254066cd98'] = 'Si prega di attendere ...';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_60e421611f85e8faa9f6950ce71dab7a'] = 'Clicca sul nome di un paese e definisci la sua posizione sulla mappa';
-$_MODULE['<{statsgeolocation}prestashop>statsgeolocation_ea4788705e6873b424c65e91c2846b19'] = 'Annulla';
diff --git a/modules/statslive/translations/de.php b/modules/statslive/translations/de.php
deleted file mode 100644
index 84306ad1a..000000000
--- a/modules/statslive/translations/de.php
+++ /dev/null
@@ -1,23 +0,0 @@
-statslive_66c4c5112f455a19afde47829df363fa'] = 'Gesamt:';
-$_MODULE['<{statslive}prestashop>statslive_49ee3087348e8d44e1feda1917443987'] = 'Name';
-$_MODULE['<{statslive}prestashop>statslive_f88589c3e803217e3f6fe9d8e740e6e8'] = 'Aktuelle Seite';
-$_MODULE['<{statslive}prestashop>statslive_4ce4b5e9a6a3e91ac46dec882a36e0db'] = 'Es gibt keine Kunden online.';
-$_MODULE['<{statslive}prestashop>statslive_38c50b731f70abc42c8baa3e7399b413'] = 'Seit';
-$_MODULE['<{statslive}prestashop>statslive_6adf97f83acf6453d4a6a4b1070f3754'] = 'nichts';
-$_MODULE['<{statslive}prestashop>statslive_5c948349bdf1a7a77ba54497d019e4ca'] = 'Kunden online';
-$_MODULE['<{statslive}prestashop>statslive_adb831a7fdd83dd1e2a309ce7591dff8'] = 'Besucher';
-$_MODULE['<{statslive}prestashop>statslive_13aa8652e950bb7c4b9b213e6d8d0dc5'] = 'Aktuelle Seite';
-$_MODULE['<{statslive}prestashop>statslive_a55533db46597bee3cd16899c007257e'] = 'Zur Zeit sind keine Besucher online.';
-$_MODULE['<{statslive}prestashop>statslive_fa55230e9791f2b71322869318a5f00f'] = 'Besucher online';
-$_MODULE['<{statslive}prestashop>statslive_b8a5ea9b6e7f2d0b56fbb18e5b6b9246'] = 'Zeigt eine Liste der Kunden und Besucher, die zur Zeit online sind';
-$_MODULE['<{statslive}prestashop>statslive_e6214c05e17c56f81e4a56f4c4fdce8c'] = 'Sie müssen die Option \\"Seitenaufrufe für jeden Kunden\\" im \\"Statistik Datamining\\"-Modul aktivieren, um die Seiten zu sehen, die derzeit von Ihren Kunden eingesehen werden.';
-$_MODULE['<{statslive}prestashop>statslive_b6f05e5ddde1ec63d992d61144452dfa'] = 'Referrer';
-$_MODULE['<{statslive}prestashop>statslive_ec0fc0100c4fc1ce4eea230c3dc10360'] = 'Undefiniert';
-$_MODULE['<{statslive}prestashop>statslive_b718adec73e04ce3ec720dd11a06a308'] = 'ID';
-$_MODULE['<{statslive}prestashop>statslive_4351cfebe4b61d8aa5efa1d020710005'] = 'Anzeigen';
-$_MODULE['<{statslive}prestashop>statslive_a12a3079e14ced46e69ba52b8a90b21a'] = 'IP';
diff --git a/modules/statslive/translations/en.php b/modules/statslive/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/statslive/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-statslive_66c4c5112f455a19afde47829df363fa'] = 'Total:';
-$_MODULE['<{statslive}prestashop>statslive_49ee3087348e8d44e1feda1917443987'] = 'Nombre';
-$_MODULE['<{statslive}prestashop>statslive_f88589c3e803217e3f6fe9d8e740e6e8'] = 'Página en curso';
-$_MODULE['<{statslive}prestashop>statslive_4ce4b5e9a6a3e91ac46dec882a36e0db'] = 'No hay clientes en línea';
-$_MODULE['<{statslive}prestashop>statslive_38c50b731f70abc42c8baa3e7399b413'] = 'Desde';
-$_MODULE['<{statslive}prestashop>statslive_6adf97f83acf6453d4a6a4b1070f3754'] = 'ninguno';
-$_MODULE['<{statslive}prestashop>statslive_5c948349bdf1a7a77ba54497d019e4ca'] = 'Clientes en línea';
-$_MODULE['<{statslive}prestashop>statslive_adb831a7fdd83dd1e2a309ce7591dff8'] = 'Visitante';
-$_MODULE['<{statslive}prestashop>statslive_13aa8652e950bb7c4b9b213e6d8d0dc5'] = 'Página en curso';
-$_MODULE['<{statslive}prestashop>statslive_a55533db46597bee3cd16899c007257e'] = 'No hay visitantes en línea ahora.';
-$_MODULE['<{statslive}prestashop>statslive_fa55230e9791f2b71322869318a5f00f'] = 'Visitantes en línea';
-$_MODULE['<{statslive}prestashop>statslive_b8a5ea9b6e7f2d0b56fbb18e5b6b9246'] = 'Mostrar la lista de clientes y visitantes conectados';
-$_MODULE['<{statslive}prestashop>statslive_e6214c05e17c56f81e4a56f4c4fdce8c'] = 'Debe activar la opción \\"páginas vistas por cada cliente\\" en el módulo \\"Recuperación de datos estadíisticos\\" para visualizar las páginas consultadas por sus clientes.';
-$_MODULE['<{statslive}prestashop>statslive_b6f05e5ddde1ec63d992d61144452dfa'] = 'Referente';
-$_MODULE['<{statslive}prestashop>statslive_ec0fc0100c4fc1ce4eea230c3dc10360'] = 'Indefinido';
-$_MODULE['<{statslive}prestashop>statslive_b718adec73e04ce3ec720dd11a06a308'] = 'ID';
-$_MODULE['<{statslive}prestashop>statslive_4351cfebe4b61d8aa5efa1d020710005'] = 'Vista';
-$_MODULE['<{statslive}prestashop>statslive_a12a3079e14ced46e69ba52b8a90b21a'] = 'IP';
diff --git a/modules/statslive/translations/fr.php b/modules/statslive/translations/fr.php
deleted file mode 100644
index 5cfeca6b8..000000000
--- a/modules/statslive/translations/fr.php
+++ /dev/null
@@ -1,23 +0,0 @@
-statslive_66c4c5112f455a19afde47829df363fa'] = 'Total :';
-$_MODULE['<{statslive}prestashop>statslive_6adf97f83acf6453d4a6a4b1070f3754'] = 'aucun';
-$_MODULE['<{statslive}prestashop>statslive_49ee3087348e8d44e1feda1917443987'] = 'Nom';
-$_MODULE['<{statslive}prestashop>statslive_f88589c3e803217e3f6fe9d8e740e6e8'] = 'Page en cours';
-$_MODULE['<{statslive}prestashop>statslive_4ce4b5e9a6a3e91ac46dec882a36e0db'] = 'Il n\'y a aucun client en ligne en ce moment.';
-$_MODULE['<{statslive}prestashop>statslive_38c50b731f70abc42c8baa3e7399b413'] = 'Depuis';
-$_MODULE['<{statslive}prestashop>statslive_a55533db46597bee3cd16899c007257e'] = 'Il n\'y a aucun visiteur en ligne actuellement.';
-$_MODULE['<{statslive}prestashop>statslive_5c948349bdf1a7a77ba54497d019e4ca'] = 'Clients en ligne';
-$_MODULE['<{statslive}prestashop>statslive_adb831a7fdd83dd1e2a309ce7591dff8'] = 'Visiteur';
-$_MODULE['<{statslive}prestashop>statslive_13aa8652e950bb7c4b9b213e6d8d0dc5'] = 'Page en cours';
-$_MODULE['<{statslive}prestashop>statslive_b6f05e5ddde1ec63d992d61144452dfa'] = 'Origine';
-$_MODULE['<{statslive}prestashop>statslive_ec0fc0100c4fc1ce4eea230c3dc10360'] = 'Indéfini';
-$_MODULE['<{statslive}prestashop>statslive_fa55230e9791f2b71322869318a5f00f'] = 'Visiteurs en ligne';
-$_MODULE['<{statslive}prestashop>statslive_b8a5ea9b6e7f2d0b56fbb18e5b6b9246'] = 'Affiche la liste des clients et visiteurs en ligne actuellement.';
-$_MODULE['<{statslive}prestashop>statslive_e6214c05e17c56f81e4a56f4c4fdce8c'] = 'Vous devez activer l\'option \\"pages vues pour chaque client\\" dans le module \\"Récupération des données statistiques\\" pour visualiser les pages consultées par vos clients.';
-$_MODULE['<{statslive}prestashop>statslive_b718adec73e04ce3ec720dd11a06a308'] = 'ID';
-$_MODULE['<{statslive}prestashop>statslive_4351cfebe4b61d8aa5efa1d020710005'] = 'Voir';
-$_MODULE['<{statslive}prestashop>statslive_a12a3079e14ced46e69ba52b8a90b21a'] = 'IP';
diff --git a/modules/statslive/translations/it.php b/modules/statslive/translations/it.php
deleted file mode 100644
index b45d9f455..000000000
--- a/modules/statslive/translations/it.php
+++ /dev/null
@@ -1,23 +0,0 @@
-statslive_66c4c5112f455a19afde47829df363fa'] = 'Totale:';
-$_MODULE['<{statslive}prestashop>statslive_49ee3087348e8d44e1feda1917443987'] = 'Nome';
-$_MODULE['<{statslive}prestashop>statslive_f88589c3e803217e3f6fe9d8e740e6e8'] = 'Pagina corrente';
-$_MODULE['<{statslive}prestashop>statslive_4ce4b5e9a6a3e91ac46dec882a36e0db'] = 'Non ci sono clienti on line.';
-$_MODULE['<{statslive}prestashop>statslive_38c50b731f70abc42c8baa3e7399b413'] = 'Da';
-$_MODULE['<{statslive}prestashop>statslive_6adf97f83acf6453d4a6a4b1070f3754'] = 'nessuno';
-$_MODULE['<{statslive}prestashop>statslive_5c948349bdf1a7a77ba54497d019e4ca'] = 'Clienti online';
-$_MODULE['<{statslive}prestashop>statslive_adb831a7fdd83dd1e2a309ce7591dff8'] = 'Ospite';
-$_MODULE['<{statslive}prestashop>statslive_13aa8652e950bb7c4b9b213e6d8d0dc5'] = 'Pagina corrente';
-$_MODULE['<{statslive}prestashop>statslive_a55533db46597bee3cd16899c007257e'] = 'Non ci sono visitatori online adesso.';
-$_MODULE['<{statslive}prestashop>statslive_fa55230e9791f2b71322869318a5f00f'] = 'Visitatori online';
-$_MODULE['<{statslive}prestashop>statslive_b8a5ea9b6e7f2d0b56fbb18e5b6b9246'] = 'Visualizza l\'elenco dei clienti e dei visitatori online';
-$_MODULE['<{statslive}prestashop>statslive_e6214c05e17c56f81e4a56f4c4fdce8c'] = 'È necessario attivare l\'opzione \\"pagine viste per ogni cliente\\" nel modulo \\"recupero dei dati statistici\\" per visualizzare le pagine attualmente viste dai suoi clienti.';
-$_MODULE['<{statslive}prestashop>statslive_b6f05e5ddde1ec63d992d61144452dfa'] = 'Referente';
-$_MODULE['<{statslive}prestashop>statslive_ec0fc0100c4fc1ce4eea230c3dc10360'] = 'Indefinito';
-$_MODULE['<{statslive}prestashop>statslive_b718adec73e04ce3ec720dd11a06a308'] = 'ID';
-$_MODULE['<{statslive}prestashop>statslive_4351cfebe4b61d8aa5efa1d020710005'] = 'Visualizza';
-$_MODULE['<{statslive}prestashop>statslive_a12a3079e14ced46e69ba52b8a90b21a'] = 'IP';
diff --git a/modules/statsnewsletter/translations/de.php b/modules/statsnewsletter/translations/de.php
deleted file mode 100644
index b756ebcdd..000000000
--- a/modules/statsnewsletter/translations/de.php
+++ /dev/null
@@ -1,16 +0,0 @@
-statsnewsletter_ffb7e666a70151215b4c55c6268d7d72'] = 'Newsletter';
-$_MODULE['<{statsnewsletter}prestashop>statsnewsletter_61a898af87607e3f4d41c3613d8761c7'] = 'Anmeldungen von Kunden:';
-$_MODULE['<{statsnewsletter}prestashop>statsnewsletter_cf74c2815ab62be1efa55a4a5d3f46a4'] = 'Newsletter Statistik';
-$_MODULE['<{statsnewsletter}prestashop>statsnewsletter_4b6f7d34a58ba399f077685951d06738'] = 'Kunden';
-$_MODULE['<{statsnewsletter}prestashop>statsnewsletter_ae5d01b6efa819cc7a7c05a8c57fcc2c'] = 'Besucher';
-$_MODULE['<{statsnewsletter}prestashop>statsnewsletter_116858de0aefceca03e4f05150e5084b'] = 'Modul Newsletter Block muss installiert sein';
-$_MODULE['<{statsnewsletter}prestashop>statsnewsletter_02fdcd14459a8b5b8b0e3ac877bcf732'] = 'Newsletter-Anmeldung anzeigen';
-$_MODULE['<{statsnewsletter}prestashop>statsnewsletter_64342cd480b27dfeefb08bace6e82fdc'] = 'Beide:';
-$_MODULE['<{statsnewsletter}prestashop>statsnewsletter_7fe462207f98012d9ff00cf0e6633c94'] = 'Anmeldungen von Besuchern:';
-$_MODULE['<{statsnewsletter}prestashop>statsnewsletter_998e4c5c80f27dec552e99dfed34889a'] = 'CSV-Export';
-$_MODULE['<{statsnewsletter}prestashop>statsnewsletter_130c5b3473c57faa76e2a1c54e26f88e'] = 'Beide';
diff --git a/modules/statsnewsletter/translations/en.php b/modules/statsnewsletter/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/statsnewsletter/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-statsnewsletter_ffb7e666a70151215b4c55c6268d7d72'] = 'Newsletter';
-$_MODULE['<{statsnewsletter}prestashop>statsnewsletter_61a898af87607e3f4d41c3613d8761c7'] = 'Suscripciones de clientes:';
-$_MODULE['<{statsnewsletter}prestashop>statsnewsletter_cf74c2815ab62be1efa55a4a5d3f46a4'] = 'estadísticas de la newsletter';
-$_MODULE['<{statsnewsletter}prestashop>statsnewsletter_4b6f7d34a58ba399f077685951d06738'] = 'Clientes';
-$_MODULE['<{statsnewsletter}prestashop>statsnewsletter_ae5d01b6efa819cc7a7c05a8c57fcc2c'] = 'Visitantes';
-$_MODULE['<{statsnewsletter}prestashop>statsnewsletter_116858de0aefceca03e4f05150e5084b'] = 'El módulo bloque newsletter debe instalarse';
-$_MODULE['<{statsnewsletter}prestashop>statsnewsletter_02fdcd14459a8b5b8b0e3ac877bcf732'] = 'Mostrar suscripciones a la newsletter';
-$_MODULE['<{statsnewsletter}prestashop>statsnewsletter_64342cd480b27dfeefb08bace6e82fdc'] = 'ambos:';
-$_MODULE['<{statsnewsletter}prestashop>statsnewsletter_7fe462207f98012d9ff00cf0e6633c94'] = 'Suscripciones de visitantes';
-$_MODULE['<{statsnewsletter}prestashop>statsnewsletter_998e4c5c80f27dec552e99dfed34889a'] = 'CSV Export';
-$_MODULE['<{statsnewsletter}prestashop>statsnewsletter_130c5b3473c57faa76e2a1c54e26f88e'] = 'Ambos';
diff --git a/modules/statsnewsletter/translations/fr.php b/modules/statsnewsletter/translations/fr.php
deleted file mode 100644
index c4e7833a5..000000000
--- a/modules/statsnewsletter/translations/fr.php
+++ /dev/null
@@ -1,16 +0,0 @@
-statsnewsletter_ffb7e666a70151215b4c55c6268d7d72'] = 'Newsletter';
-$_MODULE['<{statsnewsletter}prestashop>statsnewsletter_61a898af87607e3f4d41c3613d8761c7'] = 'Inscriptions depuis le compte client :';
-$_MODULE['<{statsnewsletter}prestashop>statsnewsletter_cf74c2815ab62be1efa55a4a5d3f46a4'] = 'Statistiques de la newsletter';
-$_MODULE['<{statsnewsletter}prestashop>statsnewsletter_4b6f7d34a58ba399f077685951d06738'] = 'Clients';
-$_MODULE['<{statsnewsletter}prestashop>statsnewsletter_ae5d01b6efa819cc7a7c05a8c57fcc2c'] = 'Visiteurs';
-$_MODULE['<{statsnewsletter}prestashop>statsnewsletter_116858de0aefceca03e4f05150e5084b'] = 'Le module bloc Newsletter doit être installé';
-$_MODULE['<{statsnewsletter}prestashop>statsnewsletter_02fdcd14459a8b5b8b0e3ac877bcf732'] = 'Affiche les inscriptions à la newsletter';
-$_MODULE['<{statsnewsletter}prestashop>statsnewsletter_64342cd480b27dfeefb08bace6e82fdc'] = 'Les deux :';
-$_MODULE['<{statsnewsletter}prestashop>statsnewsletter_7fe462207f98012d9ff00cf0e6633c94'] = 'Inscriptions depuis le bloc sur le front-office :';
-$_MODULE['<{statsnewsletter}prestashop>statsnewsletter_998e4c5c80f27dec552e99dfed34889a'] = 'Export CSV';
-$_MODULE['<{statsnewsletter}prestashop>statsnewsletter_130c5b3473c57faa76e2a1c54e26f88e'] = 'Les deux';
diff --git a/modules/statsnewsletter/translations/it.php b/modules/statsnewsletter/translations/it.php
deleted file mode 100644
index 33ac0805e..000000000
--- a/modules/statsnewsletter/translations/it.php
+++ /dev/null
@@ -1,16 +0,0 @@
-statsnewsletter_ffb7e666a70151215b4c55c6268d7d72'] = 'Newsletter';
-$_MODULE['<{statsnewsletter}prestashop>statsnewsletter_61a898af87607e3f4d41c3613d8761c7'] = 'Iscrizioni da parte dei clienti:';
-$_MODULE['<{statsnewsletter}prestashop>statsnewsletter_cf74c2815ab62be1efa55a4a5d3f46a4'] = 'Statistiche Newsletter';
-$_MODULE['<{statsnewsletter}prestashop>statsnewsletter_4b6f7d34a58ba399f077685951d06738'] = 'Clienti';
-$_MODULE['<{statsnewsletter}prestashop>statsnewsletter_ae5d01b6efa819cc7a7c05a8c57fcc2c'] = 'Visitatori';
-$_MODULE['<{statsnewsletter}prestashop>statsnewsletter_116858de0aefceca03e4f05150e5084b'] = 'Il modulo del blocco Newsletter deve essere installato';
-$_MODULE['<{statsnewsletter}prestashop>statsnewsletter_02fdcd14459a8b5b8b0e3ac877bcf732'] = 'Visualizza le iscrizioni alla newsletter';
-$_MODULE['<{statsnewsletter}prestashop>statsnewsletter_64342cd480b27dfeefb08bace6e82fdc'] = 'Entrambi:';
-$_MODULE['<{statsnewsletter}prestashop>statsnewsletter_7fe462207f98012d9ff00cf0e6633c94'] = 'Iscrizioni da parte dei visitatori:';
-$_MODULE['<{statsnewsletter}prestashop>statsnewsletter_998e4c5c80f27dec552e99dfed34889a'] = 'Esporta CSV';
-$_MODULE['<{statsnewsletter}prestashop>statsnewsletter_130c5b3473c57faa76e2a1c54e26f88e'] = 'Entrambi';
diff --git a/modules/statsorigin/translations/de.php b/modules/statsorigin/translations/de.php
deleted file mode 100644
index f79dc0f9e..000000000
--- a/modules/statsorigin/translations/de.php
+++ /dev/null
@@ -1,22 +0,0 @@
-statsorigin_998e4c5c80f27dec552e99dfed34889a'] = 'CSV-Export';
-$_MODULE['<{statsorigin}prestashop>statsorigin_c227be237c874ba6b2f8771d7b66b90e'] = 'Jemand, der einen Link zu Ihrem Shop auf seiner Webseite hat';
-$_MODULE['<{statsorigin}prestashop>statsorigin_450a7e38e636dd49f5dfb356f96d3996'] = '10 erste Webseiten';
-$_MODULE['<{statsorigin}prestashop>statsorigin_52ef9633d88a7480b3a938ff9eaa2a25'] = 'Andere';
-$_MODULE['<{statsorigin}prestashop>statsorigin_009c731e158a4235be55aaeea5c05e49'] = 'Anzeige der Webseiten, von denen Ihre Besucher kommen';
-$_MODULE['<{statsorigin}prestashop>statsorigin_cec998cc46cd200fa97490137de2cc7f'] = 'Was ist eine Referrer-Webseite?';
-$_MODULE['<{statsorigin}prestashop>statsorigin_77de261cf4c31a96146bcf1b52fd9856'] = 'Beim Besuch einer Webseite ist der Referrer die URL der vorherigen Webseite, von der ein Link folgte.';
-$_MODULE['<{statsorigin}prestashop>statsorigin_bb49f80b601ed472d433b934244b0afd'] = 'Ein Referrer informiert Sie darüber, welche Keywords Besucher in Suchmaschinen eingeben, wenn sie zu ihrem Shop kommen wollen, und optimiert damit auch Ihre Werbung im Web.';
-$_MODULE['<{statsorigin}prestashop>statsorigin_ea87a2280d5cdb638a2727147a3dd85c'] = 'Ein Partner, mit dem Sie Links getauscht haben, um die Verkäufe zu erhöhen oder Neukunden anzuziehen';
-$_MODULE['<{statsorigin}prestashop>statsorigin_f0b1507c6bdcdefb60a0e6f9b89d4ae8'] = 'Herkunft des Besuchers';
-$_MODULE['<{statsorigin}prestashop>statsorigin_14542f5997c4a02d4276da364657f501'] = 'Direkt-Link';
-$_MODULE['<{statsorigin}prestashop>statsorigin_3edf8ca26a1ec14dd6e91dd277ae1de6'] = 'Herkunft';
-$_MODULE['<{statsorigin}prestashop>statsorigin_d7b5bac28f53a30e9d831b6a7fa2f484'] = 'Hier ist der Prozentsatz der 10 beliebtesten Referrer-Webseiten, über die Besucher zu Ihrem Shop gekommen sind.';
-$_MODULE['<{statsorigin}prestashop>statsorigin_96b0141273eabab320119c467cdcaf17'] = 'Insgesamt';
-$_MODULE['<{statsorigin}prestashop>statsorigin_0bebf95ee829c33f34fde535ed4ed100'] = 'Nur direkte Links';
-$_MODULE['<{statsorigin}prestashop>statsorigin_6602bbeb2956c035fb4cb5e844a4861b'] = 'Guide';
-$_MODULE['<{statsorigin}prestashop>statsorigin_af19c8da1c414055c960a73d86471119'] = 'Referrer können sein:';
diff --git a/modules/statsorigin/translations/en.php b/modules/statsorigin/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/statsorigin/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-statsorigin_998e4c5c80f27dec552e99dfed34889a'] = 'CSV Export';
-$_MODULE['<{statsorigin}prestashop>statsorigin_c227be237c874ba6b2f8771d7b66b90e'] = 'Alguien ha puesto un link de su tienda en su sitio Web';
-$_MODULE['<{statsorigin}prestashop>statsorigin_450a7e38e636dd49f5dfb356f96d3996'] = '10 primeros sitios web';
-$_MODULE['<{statsorigin}prestashop>statsorigin_52ef9633d88a7480b3a938ff9eaa2a25'] = 'Otros';
-$_MODULE['<{statsorigin}prestashop>statsorigin_009c731e158a4235be55aaeea5c05e49'] = 'Muestra los sitios Web de los que proceden sus visitantes';
-$_MODULE['<{statsorigin}prestashop>statsorigin_cec998cc46cd200fa97490137de2cc7f'] = '¿Cuál es el sitio web referente?';
-$_MODULE['<{statsorigin}prestashop>statsorigin_77de261cf4c31a96146bcf1b52fd9856'] = 'Cuando se visita una página web, el referente es la URL de la página web anterior desde la cual se siguió el enlace.';
-$_MODULE['<{statsorigin}prestashop>statsorigin_bb49f80b601ed472d433b934244b0afd'] = 'Un referente le permite saber qué palabras claves incorporan los visitantes en motores de búsqueda cuando intentan acceder a su tienda; y también optimizar su promoción en la Webrnrn';
-$_MODULE['<{statsorigin}prestashop>statsorigin_ea87a2280d5cdb638a2727147a3dd85c'] = 'Un colaborador con quien intercambió enlaces para aumentar las ventas o para atraer nueva clientela.';
-$_MODULE['<{statsorigin}prestashop>statsorigin_f0b1507c6bdcdefb60a0e6f9b89d4ae8'] = 'Procedencia de los visitantes';
-$_MODULE['<{statsorigin}prestashop>statsorigin_3edf8ca26a1ec14dd6e91dd277ae1de6'] = 'Origen';
-$_MODULE['<{statsorigin}prestashop>statsorigin_d7b5bac28f53a30e9d831b6a7fa2f484'] = 'Porcentaje de los diez mejores sitios referentes por los que pasan los visitantes para acceder a su tienda.';
-$_MODULE['<{statsorigin}prestashop>statsorigin_96b0141273eabab320119c467cdcaf17'] = 'Total';
-$_MODULE['<{statsorigin}prestashop>statsorigin_0bebf95ee829c33f34fde535ed4ed100'] = 'Enlaces directos solamente';
-$_MODULE['<{statsorigin}prestashop>statsorigin_6602bbeb2956c035fb4cb5e844a4861b'] = 'Guía';
-$_MODULE['<{statsorigin}prestashop>statsorigin_af19c8da1c414055c960a73d86471119'] = 'Un referente puede ser';
-$_MODULE['<{statsorigin}prestashop>statsorigin_14542f5997c4a02d4276da364657f501'] = 'Enlace directo';
diff --git a/modules/statsorigin/translations/fr.php b/modules/statsorigin/translations/fr.php
deleted file mode 100644
index 3c0ea6b51..000000000
--- a/modules/statsorigin/translations/fr.php
+++ /dev/null
@@ -1,22 +0,0 @@
-statsorigin_998e4c5c80f27dec552e99dfed34889a'] = 'Export CSV';
-$_MODULE['<{statsorigin}prestashop>statsorigin_c227be237c874ba6b2f8771d7b66b90e'] = 'quelqu\'un qui a mis un lien de votre boutique sur son site';
-$_MODULE['<{statsorigin}prestashop>statsorigin_450a7e38e636dd49f5dfb356f96d3996'] = '10 premiers sites';
-$_MODULE['<{statsorigin}prestashop>statsorigin_52ef9633d88a7480b3a938ff9eaa2a25'] = 'Autres';
-$_MODULE['<{statsorigin}prestashop>statsorigin_009c731e158a4235be55aaeea5c05e49'] = 'Affiche les sites d\'origine de vos visiteurs';
-$_MODULE['<{statsorigin}prestashop>statsorigin_77de261cf4c31a96146bcf1b52fd9856'] = 'Lorsqu\'un internaute visite une page web, le site affluent est l\'URL du lien qu\'a suivi le visiteur pour accéder à sa page web actuelle.';
-$_MODULE['<{statsorigin}prestashop>statsorigin_bb49f80b601ed472d433b934244b0afd'] = 'Un référant vous permet de savoir quels sont les mots-clés tapés par les visiteurs dans les moteurs de recherche quand ils tentent d\'aller sur votre boutique ; et ainsi d\'optimiser le référencement de votre boutique.';
-$_MODULE['<{statsorigin}prestashop>statsorigin_cec998cc46cd200fa97490137de2cc7f'] = 'Qu\'est-ce qu\'un site affluent (référant) ?';
-$_MODULE['<{statsorigin}prestashop>statsorigin_ea87a2280d5cdb638a2727147a3dd85c'] = 'un partenaire avec lequel vous avez fait un échange de lien visant à rapporter des ventes ou attirer de nouveaux clients';
-$_MODULE['<{statsorigin}prestashop>statsorigin_f0b1507c6bdcdefb60a0e6f9b89d4ae8'] = 'Sites affluents';
-$_MODULE['<{statsorigin}prestashop>statsorigin_14542f5997c4a02d4276da364657f501'] = 'Lien direct';
-$_MODULE['<{statsorigin}prestashop>statsorigin_3edf8ca26a1ec14dd6e91dd277ae1de6'] = 'Origine';
-$_MODULE['<{statsorigin}prestashop>statsorigin_d7b5bac28f53a30e9d831b6a7fa2f484'] = 'Pourcentage des 10 meilleurs sites affluents par lesquels les visiteurs passent pour accéder à votre boutique.';
-$_MODULE['<{statsorigin}prestashop>statsorigin_96b0141273eabab320119c467cdcaf17'] = 'Total';
-$_MODULE['<{statsorigin}prestashop>statsorigin_0bebf95ee829c33f34fde535ed4ed100'] = 'Liens directs uniquement';
-$_MODULE['<{statsorigin}prestashop>statsorigin_6602bbeb2956c035fb4cb5e844a4861b'] = 'Guide';
-$_MODULE['<{statsorigin}prestashop>statsorigin_af19c8da1c414055c960a73d86471119'] = 'Un référant peut être :';
diff --git a/modules/statsorigin/translations/it.php b/modules/statsorigin/translations/it.php
deleted file mode 100644
index 8a13438cf..000000000
--- a/modules/statsorigin/translations/it.php
+++ /dev/null
@@ -1,22 +0,0 @@
-statsorigin_998e4c5c80f27dec552e99dfed34889a'] = 'Esporta CSV';
-$_MODULE['<{statsorigin}prestashop>statsorigin_c227be237c874ba6b2f8771d7b66b90e'] = 'Qualcuno che mettere un link sul suo sito web verso il tuo negozio';
-$_MODULE['<{statsorigin}prestashop>statsorigin_450a7e38e636dd49f5dfb356f96d3996'] = 'I primi 10 siti web';
-$_MODULE['<{statsorigin}prestashop>statsorigin_52ef9633d88a7480b3a938ff9eaa2a25'] = 'Altri';
-$_MODULE['<{statsorigin}prestashop>statsorigin_009c731e158a4235be55aaeea5c05e49'] = 'Visualizzare i siti web da cui provengono i tuoi visitatori';
-$_MODULE['<{statsorigin}prestashop>statsorigin_cec998cc46cd200fa97490137de2cc7f'] = 'Che cosa è un sito web di riferimento?';
-$_MODULE['<{statsorigin}prestashop>statsorigin_77de261cf4c31a96146bcf1b52fd9856'] = 'Quando si visita una pagina web, il riferimento è l\'URL della pagina web precedente da cui è stato seguito un link.';
-$_MODULE['<{statsorigin}prestashop>statsorigin_bb49f80b601ed472d433b934244b0afd'] = 'Un riferimento consente di sapere quali parole chiave sono state inserite dai visitatori nei motori di ricerca quando hanno cercato di raggiungere il tuo negozio, e anche per ottimizzare la promozione sul web.';
-$_MODULE['<{statsorigin}prestashop>statsorigin_ea87a2280d5cdb638a2727147a3dd85c'] = 'Un partner con cui hai fatto uno scambio di link al fine di aumentare le vendite o attirare nuovi clienti';
-$_MODULE['<{statsorigin}prestashop>statsorigin_f0b1507c6bdcdefb60a0e6f9b89d4ae8'] = 'Origine visitatori';
-$_MODULE['<{statsorigin}prestashop>statsorigin_14542f5997c4a02d4276da364657f501'] = 'Link diretto';
-$_MODULE['<{statsorigin}prestashop>statsorigin_3edf8ca26a1ec14dd6e91dd277ae1de6'] = 'Origine';
-$_MODULE['<{statsorigin}prestashop>statsorigin_d7b5bac28f53a30e9d831b6a7fa2f484'] = 'Ecco la percentuale dei 10 siti più popolari di riferimento dai quali i visitatori hanno raggiunto il tuo negozio.';
-$_MODULE['<{statsorigin}prestashop>statsorigin_96b0141273eabab320119c467cdcaf17'] = 'Totale';
-$_MODULE['<{statsorigin}prestashop>statsorigin_0bebf95ee829c33f34fde535ed4ed100'] = 'Solo link diretti';
-$_MODULE['<{statsorigin}prestashop>statsorigin_6602bbeb2956c035fb4cb5e844a4861b'] = 'Guida';
-$_MODULE['<{statsorigin}prestashop>statsorigin_af19c8da1c414055c960a73d86471119'] = 'Un riferimento può essere:';
diff --git a/modules/statspersonalinfos/translations/de.php b/modules/statspersonalinfos/translations/de.php
deleted file mode 100644
index 0e2a04f0d..000000000
--- a/modules/statspersonalinfos/translations/de.php
+++ /dev/null
@@ -1,37 +0,0 @@
-statspersonalinfos_e0fcbbd416a4872ec8f91fefa823debe'] = 'Mit den Währungsbereichen können Sie erkennen, mit welcher Währung Ihre Kunden bezahlen.';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_1b97d8091d4b383e8316b5bf85b2194c'] = 'Sie sollten diese Informationen zur Steigerung Ihrer Umsätze nutzen, indem Sie:';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_6e69fbf88d84db874f365542b0284a95'] = '0-18 Jahre alt';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_62ce9f61153b331eabe9efc2fc7eb5c2'] = '35-49 Jahre alt';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_a7724f78dcdf2179c5ca651d15ed5b2c'] = '50-59 Jahre alt';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_6a239f88f1aeb0561e7786b6120d1d5e'] = '60 Jahre alt und älter';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_ff9c34d2829b95a0936b22b409640143'] = 'Zeigt Merkmale wie Geschlecht und Alter an';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_7cede292ed06f274bb9e8702738c058e'] = 'Mit der Sprachenverteilung können Sie die allgemeine Sprache, die Ihre Kunden in Ihrem Shop verwenden, erkennen.';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_ce2dd26ca39bdbc6444f4dad3fa5d5fe'] = 'Visieren Sie Ihre Zielgruppe an';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_4f7fe9e063af69bcd7f73d2011722c00'] = 'Am besten ist es, Maßnahmen auf eine Gruppe oder Gruppen von Kunden zu begrenzen.';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_416e130b744a7becbe84de8e251135bb'] = 'eine KundenGruppe per E-Mail / Newsletter kontaktieren.';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_b719ce180ec7bd9641fece2f920f4817'] = 'Weiblich';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_b20e0ed6158978a3a23d092060b5dbab'] = '18-24 Jahre alt';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_73b0130037e21b76351aebfd29d0b9aa'] = 'Länderverteilung';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_28e81c8343702f6c813cc31a7f90616a'] = 'Währungsverteilung';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_1b94af23fd8ea879910a6307460ebba4'] = 'Information zu registrierten Kunden';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_998e4c5c80f27dec552e99dfed34889a'] = 'CSV-Export';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_4c5625b65180ffa4f4ad215c2d5ef7d7'] = 'Mit den Altersklassen können Sie bestimmen, in welcher Altersklasse sich Ihre Kunden befinden.';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_9fde3510abe63111086fd4288a19e1be'] = 'Noch keine Kunden registriert.';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_6602bbeb2956c035fb4cb5e844a4861b'] = 'Guide';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_74036f0101d2f3f9b082b8de981c18dc'] = 'Damit jede Nachricht ihre Wirkung erzielt, müssen Sie wissen,an wen sie gerichtet werden sollte.';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_daa0ad6a8b07a64f18b26e0f5e1255bd'] = 'Auf die richtige Zielgruppe zu antworten ist entscheidend für die Wahl der richtigen Werkzeuge, um sie zu überzeugen.';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_04cac0902d33f8d779111bddde436f03'] = 'Informationen zu registrierten Kunden helfen Ihnen dabei, das typische Kundenprofil genauer zu bestimmen, so dass Sie Ihre Specials verschiedenen Kriterien anpassen können.';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_63889cfb9d3cbe05d1bd2be5cc9953fd'] = 'Männlich';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_88183b946cc5f0e8c96b2e66e1c74a7e'] = 'Unbekannt';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_f1dd68fb6a00d3e4d7f751deacde995d'] = 'Sprachenverteilung';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_62a9b5081b2dab89113e94a0b4cb4be0'] = 'Mit der Geschlechterverteilung können Sie den Prozentsatz von Männern und Frauen unter Ihren Kunden zu bestimmen.';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_3a5c52ba51fe8f566a222da649c5e1f1'] = 'Mit der Länderverteilung können Sie erkennen, in welchem Teil der Welt Ihre Kunden sind.';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_aaf4306af7449d0b6b99e8df15f422a2'] = 'Werbekampagnen starten, die an bestimmte Kunden gerichtet sind, welche an einem bestimmten Angebot interessiert sein könnten, zu bestimmten Daten und Zeiten';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_8dc514f6da8c696c4a522efc145ad28a'] = 'Geschlechterverteilung';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_2d0f27acbb474dff9aba76851970618a'] = 'Altersklassen';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_e5884ca49180d38295ee426c624d936c'] = '25-34 Jahre alt';
diff --git a/modules/statspersonalinfos/translations/en.php b/modules/statspersonalinfos/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/statspersonalinfos/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-statspersonalinfos_e0fcbbd416a4872ec8f91fefa823debe'] = 'Las gamas de monedas le permiten determinar con que moneda pagan sus clientes.rnrn';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_1b97d8091d4b383e8316b5bf85b2194c'] = 'Usted debe utilizar esta información para aumentar sus ventas:';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_6e69fbf88d84db874f365542b0284a95'] = '0-18 años';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_62ce9f61153b331eabe9efc2fc7eb5c2'] = '35-49 años';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_a7724f78dcdf2179c5ca651d15ed5b2c'] = '50-59 años';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_6a239f88f1aeb0561e7786b6120d1d5e'] = '60 años y más';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_ff9c34d2829b95a0936b22b409640143'] = 'Mostrar características como género y edad';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_7cede292ed06f274bb9e8702738c058e'] = 'La distribución por idiomas le permite determinar el idioma general que hablan los clientes de su tienda.';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_ce2dd26ca39bdbc6444f4dad3fa5d5fe'] = 'Seleccione su audiencia';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_4f7fe9e063af69bcd7f73d2011722c00'] = 'Es preferible limitar la acción a un grupo o grupos de clientes.';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_416e130b744a7becbe84de8e251135bb'] = 'Ponerse en contacto con un grupo de clientes por email o a través de la newsletter.';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_b719ce180ec7bd9641fece2f920f4817'] = 'Mujer';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_b20e0ed6158978a3a23d092060b5dbab'] = '18-24 años';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_73b0130037e21b76351aebfd29d0b9aa'] = 'distribución del país';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_28e81c8343702f6c813cc31a7f90616a'] = 'Distribución de la moneda';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_1b94af23fd8ea879910a6307460ebba4'] = 'Información de clientes registrados';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_998e4c5c80f27dec552e99dfed34889a'] = 'CSV Export';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_4c5625b65180ffa4f4ad215c2d5ef7d7'] = 'El rango de edades le permite determinar en qué gama de edades se encuentran sus clientes.rnrn';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_9fde3510abe63111086fd4288a19e1be'] = 'Aún no hay clientes registrados';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_6602bbeb2956c035fb4cb5e844a4861b'] = 'Guía';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_74036f0101d2f3f9b082b8de981c18dc'] = 'Para que cada mensaje tenga un impacto, necesita saber a quien va dirigido.';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_daa0ad6a8b07a64f18b26e0f5e1255bd'] = 'Dirigirse al público adecuado es primordial para elegir las herramientas correctas para convencer a cada uno de los públicos perseguidos';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_04cac0902d33f8d779111bddde436f03'] = 'La información de clientes registrados le permite definir con mas exactitud el perfil de cliente típico de modo que usted pueda adaptar sus ofertas a los diferentes criterios.';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_63889cfb9d3cbe05d1bd2be5cc9953fd'] = 'Hombre';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_88183b946cc5f0e8c96b2e66e1c74a7e'] = 'Desconocido';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_f1dd68fb6a00d3e4d7f751deacde995d'] = 'Distribución del idioma';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_62a9b5081b2dab89113e94a0b4cb4be0'] = 'La distribución del género le permite determinar el porcentaje de hombres y de mujeres entre sus clientes.rnrn';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_3a5c52ba51fe8f566a222da649c5e1f1'] = 'La distribución por países le permite determinar en qué parte del mundo se encuentran sus clientes.rnrn';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_aaf4306af7449d0b6b99e8df15f422a2'] = 'Lanzando campañas publicitarias dirigidas a clientes específicos que pudieran estar interesados en una oferta particular, en las fechas y horas específicas';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_8dc514f6da8c696c4a522efc145ad28a'] = 'Distribución del género';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_2d0f27acbb474dff9aba76851970618a'] = 'Rango de edades';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_e5884ca49180d38295ee426c624d936c'] = '25-34 años';
diff --git a/modules/statspersonalinfos/translations/fr.php b/modules/statspersonalinfos/translations/fr.php
deleted file mode 100644
index 8e99933f9..000000000
--- a/modules/statspersonalinfos/translations/fr.php
+++ /dev/null
@@ -1,37 +0,0 @@
-statspersonalinfos_e0fcbbd416a4872ec8f91fefa823debe'] = 'Les tranches de devise vous permettent de déterminer avec quelle devise vos clients payent.';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_1b97d8091d4b383e8316b5bf85b2194c'] = 'Nous vous conseillons d\'utiliser cette information pour faire accroitre vos ventes : ';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_6e69fbf88d84db874f365542b0284a95'] = '0-18 ans';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_62ce9f61153b331eabe9efc2fc7eb5c2'] = '35-49 ans';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_a7724f78dcdf2179c5ca651d15ed5b2c'] = '50-59 ans';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_6a239f88f1aeb0561e7786b6120d1d5e'] = '60 ans';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_ff9c34d2829b95a0936b22b409640143'] = 'Affiche la répartition de vos clients par âge, sexe ou pays';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_7cede292ed06f274bb9e8702738c058e'] = 'La répartition par langues vous permet de déterminer la langue qu\'utilisent généralement vos clients dans votre boutique.';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_ce2dd26ca39bdbc6444f4dad3fa5d5fe'] = 'Ciblez votre public';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_4f7fe9e063af69bcd7f73d2011722c00'] = 'Il est préférable de limiter son action à un ou plusieurs groupes de clients.';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_416e130b744a7becbe84de8e251135bb'] = 'Contactez ces groupes de clients par e-mail ou avec une liste de diffusion.';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_b719ce180ec7bd9641fece2f920f4817'] = 'Femme';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_b20e0ed6158978a3a23d092060b5dbab'] = '18-24 ans';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_73b0130037e21b76351aebfd29d0b9aa'] = 'Répartition par pays';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_28e81c8343702f6c813cc31a7f90616a'] = 'Répartition par devise';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_1b94af23fd8ea879910a6307460ebba4'] = 'Informations clients';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_998e4c5c80f27dec552e99dfed34889a'] = 'Export CSV';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_4c5625b65180ffa4f4ad215c2d5ef7d7'] = 'Les tranches d\'âges vous permettent de déterminer dans quelle tranche d\'âge se positionne votre clientèle.';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_9fde3510abe63111086fd4288a19e1be'] = 'Aucun client enregistré pour le moment.';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_6602bbeb2956c035fb4cb5e844a4861b'] = 'Guide';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_74036f0101d2f3f9b082b8de981c18dc'] = 'Pour que chacun de vos messages ait de l\'impact, il faut savoir à quelle clientèle vous vous adressez.';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_daa0ad6a8b07a64f18b26e0f5e1255bd'] = 'S\'adresser au bon public est primordial afin de choisir les bons outils pour convaincre chacun des publics cibles.';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_04cac0902d33f8d779111bddde436f03'] = 'Les informations personnelles relatives aux clients vous permettent de mieux définir le profil du client type afin d\'adapter les promotions sur votre site en fonction des différents critères.';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_63889cfb9d3cbe05d1bd2be5cc9953fd'] = 'Homme';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_88183b946cc5f0e8c96b2e66e1c74a7e'] = 'Inconnu';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_f1dd68fb6a00d3e4d7f751deacde995d'] = 'Répartition par langue';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_62a9b5081b2dab89113e94a0b4cb4be0'] = 'La répartition par sexe vous permet de déterminer le pourcentage d\'hommes et de femmes parmi vos clients.';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_3a5c52ba51fe8f566a222da649c5e1f1'] = 'La répartition par pays vous permet de déterminer dans quelle partie du monde sont vos clients.';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_aaf4306af7449d0b6b99e8df15f422a2'] = 'préparez une campagne de publicité destinée à un groupe de clients susceptible d\'être intéressé par une offre en particulier, puis diffusez-la à des heures précises.';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_8dc514f6da8c696c4a522efc145ad28a'] = 'Répartition par sexe';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_2d0f27acbb474dff9aba76851970618a'] = 'Tranches d\'âges';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_e5884ca49180d38295ee426c624d936c'] = '25-34 ans';
diff --git a/modules/statspersonalinfos/translations/it.php b/modules/statspersonalinfos/translations/it.php
deleted file mode 100644
index 16b2f3e6c..000000000
--- a/modules/statspersonalinfos/translations/it.php
+++ /dev/null
@@ -1,37 +0,0 @@
-statspersonalinfos_e0fcbbd416a4872ec8f91fefa823debe'] = 'Le fasce di valuta ti permettono di determinare con quale valuta i tuoi clienti effettuano i pagamenti.';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_1b97d8091d4b383e8316b5bf85b2194c'] = 'Dovresti utilizzare queste informazioni per incrementare le vendite di:';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_6e69fbf88d84db874f365542b0284a95'] = '0-18 anni';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_62ce9f61153b331eabe9efc2fc7eb5c2'] = '35-49 anni';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_a7724f78dcdf2179c5ca651d15ed5b2c'] = '50-59 anni';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_6a239f88f1aeb0561e7786b6120d1d5e'] = '60 anni e più';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_ff9c34d2829b95a0936b22b409640143'] = 'Mostra caratteristiche come sesso ed età';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_7cede292ed06f274bb9e8702738c058e'] = 'La distribuzione delle lingue ti permette di determinare la lingua chei clienti usano nel tuo negozio.';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_ce2dd26ca39bdbc6444f4dad3fa5d5fe'] = 'Raggiungi il tuo pubblico';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_4f7fe9e063af69bcd7f73d2011722c00'] = 'E\' meglio limitare l\'azione ad un gruppo o gruppi di clienti.';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_416e130b744a7becbe84de8e251135bb'] = 'Contattare un gruppo di clienti via e-mail / newsletter.';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_b719ce180ec7bd9641fece2f920f4817'] = 'Femmina';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_b20e0ed6158978a3a23d092060b5dbab'] = '18-24 anni';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_73b0130037e21b76351aebfd29d0b9aa'] = 'Distribuzione per paese';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_28e81c8343702f6c813cc31a7f90616a'] = 'Distribuzione per valuta';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_1b94af23fd8ea879910a6307460ebba4'] = 'Info cliente registrato';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_998e4c5c80f27dec552e99dfed34889a'] = 'Esporta CSV';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_4c5625b65180ffa4f4ad215c2d5ef7d7'] = 'Le fasce di età ti permettono di determinare in quale fascia di età si trovano i tuoi clienti.';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_9fde3510abe63111086fd4288a19e1be'] = 'Nessun cliente ancora registrato.';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_6602bbeb2956c035fb4cb5e844a4861b'] = 'Guida';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_74036f0101d2f3f9b082b8de981c18dc'] = 'Affinché ogni messaggio abbia un impatto, bisogna sapere a chi dovrebbe essere rivolto.';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_daa0ad6a8b07a64f18b26e0f5e1255bd'] = 'Rivolgersi al pubblico giusto è fondamentale per poter scegliere gli strumenti giusti per conquistarlo.';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_04cac0902d33f8d779111bddde436f03'] = 'Le informazioni sui clienti registrati consente di definire con maggiore precisione il profilo tipico del cliente in modo da poter adattare le tue caratteristiche a diversi criteri.';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_63889cfb9d3cbe05d1bd2be5cc9953fd'] = 'Maschio';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_88183b946cc5f0e8c96b2e66e1c74a7e'] = 'Sconosciuto';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_f1dd68fb6a00d3e4d7f751deacde995d'] = 'Distribuzione per lingua';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_62a9b5081b2dab89113e94a0b4cb4be0'] = 'La distribuzione di sesso ti permette di determinare la percentuale di uomini e donne tra i tuoi clienti.';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_3a5c52ba51fe8f566a222da649c5e1f1'] = 'La distribuzione del paese ti permette di determinare da quale parte del mondo provengono i tuoi clienti.';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_aaf4306af7449d0b6b99e8df15f422a2'] = 'Avvio di campagne pubblicitarie rivolte a clienti specifici che potrebbero essere interessati a un\'offerta particolare, in date e orari specifici';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_8dc514f6da8c696c4a522efc145ad28a'] = 'Distribuzione di sesso';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_2d0f27acbb474dff9aba76851970618a'] = 'Fasce di età';
-$_MODULE['<{statspersonalinfos}prestashop>statspersonalinfos_e5884ca49180d38295ee426c624d936c'] = '25-34 anni';
diff --git a/modules/statsproduct/translations/de.php b/modules/statsproduct/translations/de.php
deleted file mode 100644
index 8c05c7f86..000000000
--- a/modules/statsproduct/translations/de.php
+++ /dev/null
@@ -1,40 +0,0 @@
-statsproduct_bebbab2c1ac732ccef4181f51ed52967'] = 'Umwandlungsrate:';
-$_MODULE['<{statsproduct}prestashop>statsproduct_87017c9259838bb0918a2ab4f96016c0'] = 'Cross-Selling';
-$_MODULE['<{statsproduct}prestashop>statsproduct_2a0440eec72540c5b30d9199c01f348c'] = 'Verkaufte Menge';
-$_MODULE['<{statsproduct}prestashop>statsproduct_844c29394eea07066bb2efefc35784ec'] = 'Durchschnittlicher Preis';
-$_MODULE['<{statsproduct}prestashop>statsproduct_6ccf03bc05e4b749b74b5d577c7e7d3a'] = 'Produkte verfügbar';
-$_MODULE['<{statsproduct}prestashop>statsproduct_12d3c7a4296542c62474856ec452c045'] = 'Ref.';
-$_MODULE['<{statsproduct}prestashop>statsproduct_49ee3087348e8d44e1feda1917443987'] = 'Name';
-$_MODULE['<{statsproduct}prestashop>statsproduct_7bd5825a187064017975513b95d7f7de'] = 'Vorhandene Menge für Verkauf';
-$_MODULE['<{statsproduct}prestashop>statsproduct_6602bbeb2956c035fb4cb5e844a4861b'] = 'Guide';
-$_MODULE['<{statsproduct}prestashop>statsproduct_694e8d1f2ee056f98ee488bdc4982d73'] = 'Anz';
-$_MODULE['<{statsproduct}prestashop>statsproduct_818f7defe18dbc97da82d054831df2ad'] = 'Klicken Sie auf ein Produkt, um auf seine Statistiken zugreifen.';
-$_MODULE['<{statsproduct}prestashop>statsproduct_285201dab507840d082d58dc13602b00'] = 'Holen Sie sich detaillierte Statistiken für jedes Produkt';
-$_MODULE['<{statsproduct}prestashop>statsproduct_3ec365dd533ddb7ef3d1c111186ce872'] = 'Details';
-$_MODULE['<{statsproduct}prestashop>statsproduct_44749712dbec183e983dcd78a7736c41'] = 'Datum';
-$_MODULE['<{statsproduct}prestashop>statsproduct_0173374ac20f5843d58b553d5b226ef6'] = 'Wählen Sie eine Kategorie';
-$_MODULE['<{statsproduct}prestashop>statsproduct_af6de9b8b390e324cd90cc17779783ba'] = 'Anzahl der Käufe im Vergleich zur Anzahl der Aufrufe';
-$_MODULE['<{statsproduct}prestashop>statsproduct_78e454064a7d3a7755a011a3b79f31a7'] = 'Produktdetails';
-$_MODULE['<{statsproduct}prestashop>statsproduct_981a6013008c8f4b75836b0f415b05b8'] = 'Insgesamt gekauft:';
-$_MODULE['<{statsproduct}prestashop>statsproduct_c90b9dca2d3f5bb6e0d0bdceac8a631d'] = 'Attribute Umsatzverteilung';
-$_MODULE['<{statsproduct}prestashop>statsproduct_f2bbdf9f72c085adc4d0404e370f0f4c'] = 'Attribut';
-$_MODULE['<{statsproduct}prestashop>statsproduct_3601146c4e948c32b6424d2c0a7f0118'] = 'Preis';
-$_MODULE['<{statsproduct}prestashop>statsproduct_6e13e61b8535a66feb27d285f5c42855'] = 'Nach Auswahl einer Kategorie sowie eines verfügbaren Produkts in dieser Kategorie erscheinen einige Schaubilder. Diese können Sie analysieren.';
-$_MODULE['<{statsproduct}prestashop>statsproduct_e22269bb51f9f2394e148716babbafbb'] = 'Beliebtheit';
-$_MODULE['<{statsproduct}prestashop>statsproduct_5e9613e58f3bdbc89b1fef07274c0877'] = 'Besuche (x100)';
-$_MODULE['<{statsproduct}prestashop>statsproduct_287234a1ff35a314b5b6bc4e5828e745'] = 'Attribute';
-$_MODULE['<{statsproduct}prestashop>statsproduct_af7cba0f47dac2ad181cc0471979a746'] = 'Verkäufe (-Tx):';
-$_MODULE['<{statsproduct}prestashop>statsproduct_b262bbde88b3b8dca3b27d730aca69bf'] = 'Insgesamt angesehen:';
-$_MODULE['<{statsproduct}prestashop>statsproduct_998e4c5c80f27dec552e99dfed34889a'] = 'CSV-Export';
-$_MODULE['<{statsproduct}prestashop>statsproduct_11ff9f68afb6b8b5b8eda218d7c83a65'] = 'Verkäufe';
-$_MODULE['<{statsproduct}prestashop>statsproduct_a240fa27925a635b08dc28c9e4f9216d'] = 'Bestellung';
-$_MODULE['<{statsproduct}prestashop>statsproduct_ce26601dac0dea138b7295f02b7620a7'] = 'Kunde';
-$_MODULE['<{statsproduct}prestashop>statsproduct_df644ae155e79abf54175bd15d75f363'] = 'Produktname';
-$_MODULE['<{statsproduct}prestashop>statsproduct_b1c94ca2fbc3e78fc30069c8d0f01680'] = 'Alle';
-$_MODULE['<{statsproduct}prestashop>statsproduct_ff7008d8daed8cf92213ca8955a42d92'] = 'Wenn Sie merken, dass ein Produkt erfolgreich ist, oft gekauft wird, aber auch selten angesehen wird, sollten Sie es weiter nach vorne in Ihren Webshop Front-Office setzen.';
-$_MODULE['<{statsproduct}prestashop>statsproduct_27ce7f8b5623b2e2df568d64cf051607'] = 'Lager';
diff --git a/modules/statsproduct/translations/en.php b/modules/statsproduct/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/statsproduct/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-statsproduct_bebbab2c1ac732ccef4181f51ed52967'] = 'Índice de conversión';
-$_MODULE['<{statsproduct}prestashop>statsproduct_694e8d1f2ee056f98ee488bdc4982d73'] = 'Cant.';
-$_MODULE['<{statsproduct}prestashop>statsproduct_87017c9259838bb0918a2ab4f96016c0'] = 'Ventas cruzadas';
-$_MODULE['<{statsproduct}prestashop>statsproduct_2a0440eec72540c5b30d9199c01f348c'] = 'Cantidad vendida';
-$_MODULE['<{statsproduct}prestashop>statsproduct_844c29394eea07066bb2efefc35784ec'] = 'Precio medio';
-$_MODULE['<{statsproduct}prestashop>statsproduct_818f7defe18dbc97da82d054831df2ad'] = 'Haga clic en un producto para acceder a sus estadísticas.';
-$_MODULE['<{statsproduct}prestashop>statsproduct_6ccf03bc05e4b749b74b5d577c7e7d3a'] = 'Disponibilidad de los productos';
-$_MODULE['<{statsproduct}prestashop>statsproduct_12d3c7a4296542c62474856ec452c045'] = 'Ref.';
-$_MODULE['<{statsproduct}prestashop>statsproduct_49ee3087348e8d44e1feda1917443987'] = 'Nombre';
-$_MODULE['<{statsproduct}prestashop>statsproduct_7bd5825a187064017975513b95d7f7de'] = 'Cantidad disponible para la venta';
-$_MODULE['<{statsproduct}prestashop>statsproduct_6602bbeb2956c035fb4cb5e844a4861b'] = 'Guía';
-$_MODULE['<{statsproduct}prestashop>statsproduct_285201dab507840d082d58dc13602b00'] = 'Conseguir las estadísticas detalladas para cada producto';
-$_MODULE['<{statsproduct}prestashop>statsproduct_3ec365dd533ddb7ef3d1c111186ce872'] = 'Detalles';
-$_MODULE['<{statsproduct}prestashop>statsproduct_44749712dbec183e983dcd78a7736c41'] = 'Fecha';
-$_MODULE['<{statsproduct}prestashop>statsproduct_0173374ac20f5843d58b553d5b226ef6'] = 'Elegir una categoría';
-$_MODULE['<{statsproduct}prestashop>statsproduct_af6de9b8b390e324cd90cc17779783ba'] = 'Número de compras en relación con el número de visitas';
-$_MODULE['<{statsproduct}prestashop>statsproduct_78e454064a7d3a7755a011a3b79f31a7'] = 'Detalles del producto';
-$_MODULE['<{statsproduct}prestashop>statsproduct_981a6013008c8f4b75836b0f415b05b8'] = 'Total de compras:';
-$_MODULE['<{statsproduct}prestashop>statsproduct_c90b9dca2d3f5bb6e0d0bdceac8a631d'] = 'Distribuir las ventas por cualidades';
-$_MODULE['<{statsproduct}prestashop>statsproduct_f2bbdf9f72c085adc4d0404e370f0f4c'] = 'Atributo';
-$_MODULE['<{statsproduct}prestashop>statsproduct_3601146c4e948c32b6424d2c0a7f0118'] = 'Precio';
-$_MODULE['<{statsproduct}prestashop>statsproduct_6e13e61b8535a66feb27d285f5c42855'] = 'Tras elegir una categoría y seleccionar un producto disponible de la categoría, aparecen algunos gráficos. Entonces, usted puede analizarlos.';
-$_MODULE['<{statsproduct}prestashop>statsproduct_e22269bb51f9f2394e148716babbafbb'] = 'Popularidad';
-$_MODULE['<{statsproduct}prestashop>statsproduct_5e9613e58f3bdbc89b1fef07274c0877'] = 'Visitas (x100)';
-$_MODULE['<{statsproduct}prestashop>statsproduct_287234a1ff35a314b5b6bc4e5828e745'] = 'Atributos';
-$_MODULE['<{statsproduct}prestashop>statsproduct_af7cba0f47dac2ad181cc0471979a746'] = 'Volumen de ventas (sin IVA)';
-$_MODULE['<{statsproduct}prestashop>statsproduct_b262bbde88b3b8dca3b27d730aca69bf'] = 'total visto:';
-$_MODULE['<{statsproduct}prestashop>statsproduct_998e4c5c80f27dec552e99dfed34889a'] = 'CSV Export';
-$_MODULE['<{statsproduct}prestashop>statsproduct_11ff9f68afb6b8b5b8eda218d7c83a65'] = 'Ventas';
-$_MODULE['<{statsproduct}prestashop>statsproduct_a240fa27925a635b08dc28c9e4f9216d'] = 'Pedido';
-$_MODULE['<{statsproduct}prestashop>statsproduct_ce26601dac0dea138b7295f02b7620a7'] = 'Cliente';
-$_MODULE['<{statsproduct}prestashop>statsproduct_df644ae155e79abf54175bd15d75f363'] = 'Artículo';
-$_MODULE['<{statsproduct}prestashop>statsproduct_b1c94ca2fbc3e78fc30069c8d0f01680'] = 'Todas';
-$_MODULE['<{statsproduct}prestashop>statsproduct_ff7008d8daed8cf92213ca8955a42d92'] = 'Si observa que un producto tiene éxito, que se compra mucho pero que se consulta poco, debería hacerlo resaltar más en el escaparate de su tienda.';
-$_MODULE['<{statsproduct}prestashop>statsproduct_27ce7f8b5623b2e2df568d64cf051607'] = 'Stock';
diff --git a/modules/statsproduct/translations/fr.php b/modules/statsproduct/translations/fr.php
deleted file mode 100644
index 143d25813..000000000
--- a/modules/statsproduct/translations/fr.php
+++ /dev/null
@@ -1,40 +0,0 @@
-statsproduct_844c29394eea07066bb2efefc35784ec'] = 'Prix moyen';
-$_MODULE['<{statsproduct}prestashop>statsproduct_694e8d1f2ee056f98ee488bdc4982d73'] = 'Qté';
-$_MODULE['<{statsproduct}prestashop>statsproduct_87017c9259838bb0918a2ab4f96016c0'] = 'Ventes croisées';
-$_MODULE['<{statsproduct}prestashop>statsproduct_2a0440eec72540c5b30d9199c01f348c'] = 'Quantité vendue';
-$_MODULE['<{statsproduct}prestashop>statsproduct_818f7defe18dbc97da82d054831df2ad'] = 'Cliquez sur un produit pour accéder à ses statistiques.';
-$_MODULE['<{statsproduct}prestashop>statsproduct_6ccf03bc05e4b749b74b5d577c7e7d3a'] = 'Produits disponibles';
-$_MODULE['<{statsproduct}prestashop>statsproduct_7bd5825a187064017975513b95d7f7de'] = 'Quantité disponible à la vente';
-$_MODULE['<{statsproduct}prestashop>statsproduct_6602bbeb2956c035fb4cb5e844a4861b'] = 'Guide';
-$_MODULE['<{statsproduct}prestashop>statsproduct_bebbab2c1ac732ccef4181f51ed52967'] = 'Taux de conversion';
-$_MODULE['<{statsproduct}prestashop>statsproduct_12d3c7a4296542c62474856ec452c045'] = 'Réf.';
-$_MODULE['<{statsproduct}prestashop>statsproduct_49ee3087348e8d44e1feda1917443987'] = 'Nom';
-$_MODULE['<{statsproduct}prestashop>statsproduct_3ec365dd533ddb7ef3d1c111186ce872'] = 'Détails';
-$_MODULE['<{statsproduct}prestashop>statsproduct_285201dab507840d082d58dc13602b00'] = 'Propose des statistiques détaillées pour chaque produit';
-$_MODULE['<{statsproduct}prestashop>statsproduct_44749712dbec183e983dcd78a7736c41'] = 'Date';
-$_MODULE['<{statsproduct}prestashop>statsproduct_0173374ac20f5843d58b553d5b226ef6'] = 'Choisissez une catégorie';
-$_MODULE['<{statsproduct}prestashop>statsproduct_af6de9b8b390e324cd90cc17779783ba'] = 'Comparaison du nombre d\'achat et du nombre de consultations';
-$_MODULE['<{statsproduct}prestashop>statsproduct_78e454064a7d3a7755a011a3b79f31a7'] = 'Détail produit';
-$_MODULE['<{statsproduct}prestashop>statsproduct_981a6013008c8f4b75836b0f415b05b8'] = 'Total des achats :';
-$_MODULE['<{statsproduct}prestashop>statsproduct_c90b9dca2d3f5bb6e0d0bdceac8a631d'] = 'Répartition des ventes par attributs';
-$_MODULE['<{statsproduct}prestashop>statsproduct_f2bbdf9f72c085adc4d0404e370f0f4c'] = 'Attribut';
-$_MODULE['<{statsproduct}prestashop>statsproduct_3601146c4e948c32b6424d2c0a7f0118'] = 'Prix';
-$_MODULE['<{statsproduct}prestashop>statsproduct_6e13e61b8535a66feb27d285f5c42855'] = 'Après avoir choisi une catégorie et sélectionné un produit disponible dans celle-ci, des graphiques apparaissent. Vous pouvez ensuite les analyser.';
-$_MODULE['<{statsproduct}prestashop>statsproduct_e22269bb51f9f2394e148716babbafbb'] = 'Popularité';
-$_MODULE['<{statsproduct}prestashop>statsproduct_5e9613e58f3bdbc89b1fef07274c0877'] = 'Visites (x100)';
-$_MODULE['<{statsproduct}prestashop>statsproduct_287234a1ff35a314b5b6bc4e5828e745'] = 'Attributs';
-$_MODULE['<{statsproduct}prestashop>statsproduct_af7cba0f47dac2ad181cc0471979a746'] = 'CA (hors taxes) :';
-$_MODULE['<{statsproduct}prestashop>statsproduct_b262bbde88b3b8dca3b27d730aca69bf'] = 'Total des consultations';
-$_MODULE['<{statsproduct}prestashop>statsproduct_998e4c5c80f27dec552e99dfed34889a'] = 'Export CSV';
-$_MODULE['<{statsproduct}prestashop>statsproduct_11ff9f68afb6b8b5b8eda218d7c83a65'] = 'CA';
-$_MODULE['<{statsproduct}prestashop>statsproduct_a240fa27925a635b08dc28c9e4f9216d'] = 'Commande';
-$_MODULE['<{statsproduct}prestashop>statsproduct_ce26601dac0dea138b7295f02b7620a7'] = 'Client';
-$_MODULE['<{statsproduct}prestashop>statsproduct_df644ae155e79abf54175bd15d75f363'] = 'Article';
-$_MODULE['<{statsproduct}prestashop>statsproduct_b1c94ca2fbc3e78fc30069c8d0f01680'] = 'Toutes';
-$_MODULE['<{statsproduct}prestashop>statsproduct_ff7008d8daed8cf92213ca8955a42d92'] = 'Si vous constatez qu\'un produit a du succès et qu\'il est beaucoup acheté mais reste très peu consulté, vous devriez le mettre davantage en évidence dans la vitrine de votre boutique.';
-$_MODULE['<{statsproduct}prestashop>statsproduct_27ce7f8b5623b2e2df568d64cf051607'] = 'Stock';
diff --git a/modules/statsproduct/translations/it.php b/modules/statsproduct/translations/it.php
deleted file mode 100644
index 01d0a63f5..000000000
--- a/modules/statsproduct/translations/it.php
+++ /dev/null
@@ -1,40 +0,0 @@
-statsproduct_bebbab2c1ac732ccef4181f51ed52967'] = 'Tasso di conversione:';
-$_MODULE['<{statsproduct}prestashop>statsproduct_694e8d1f2ee056f98ee488bdc4982d73'] = 'Qtà';
-$_MODULE['<{statsproduct}prestashop>statsproduct_87017c9259838bb0918a2ab4f96016c0'] = 'Vendita incrociata';
-$_MODULE['<{statsproduct}prestashop>statsproduct_2a0440eec72540c5b30d9199c01f348c'] = 'Quantità venduta';
-$_MODULE['<{statsproduct}prestashop>statsproduct_844c29394eea07066bb2efefc35784ec'] = 'Prezzo medio';
-$_MODULE['<{statsproduct}prestashop>statsproduct_818f7defe18dbc97da82d054831df2ad'] = 'Clicca su un prodotto per accedere alle statistiche.';
-$_MODULE['<{statsproduct}prestashop>statsproduct_6ccf03bc05e4b749b74b5d577c7e7d3a'] = 'Prodotti disponibili';
-$_MODULE['<{statsproduct}prestashop>statsproduct_12d3c7a4296542c62474856ec452c045'] = 'Rif.';
-$_MODULE['<{statsproduct}prestashop>statsproduct_49ee3087348e8d44e1feda1917443987'] = 'Nome';
-$_MODULE['<{statsproduct}prestashop>statsproduct_7bd5825a187064017975513b95d7f7de'] = 'Quantità disponibile per la vendita';
-$_MODULE['<{statsproduct}prestashop>statsproduct_6602bbeb2956c035fb4cb5e844a4861b'] = 'Guida';
-$_MODULE['<{statsproduct}prestashop>statsproduct_285201dab507840d082d58dc13602b00'] = 'Ottieni statistiche dettagliate per ogni prodotto';
-$_MODULE['<{statsproduct}prestashop>statsproduct_3ec365dd533ddb7ef3d1c111186ce872'] = 'Dettagli';
-$_MODULE['<{statsproduct}prestashop>statsproduct_44749712dbec183e983dcd78a7736c41'] = 'Data';
-$_MODULE['<{statsproduct}prestashop>statsproduct_0173374ac20f5843d58b553d5b226ef6'] = 'Scegli una categoria';
-$_MODULE['<{statsproduct}prestashop>statsproduct_af6de9b8b390e324cd90cc17779783ba'] = 'Numero di acquisti rispetto al numero di visualizzazioni';
-$_MODULE['<{statsproduct}prestashop>statsproduct_78e454064a7d3a7755a011a3b79f31a7'] = 'Dettagli del prodotto';
-$_MODULE['<{statsproduct}prestashop>statsproduct_981a6013008c8f4b75836b0f415b05b8'] = 'Totale comprato:';
-$_MODULE['<{statsproduct}prestashop>statsproduct_c90b9dca2d3f5bb6e0d0bdceac8a631d'] = 'Distribuzione vendite attributo';
-$_MODULE['<{statsproduct}prestashop>statsproduct_f2bbdf9f72c085adc4d0404e370f0f4c'] = 'Attributo';
-$_MODULE['<{statsproduct}prestashop>statsproduct_3601146c4e948c32b6424d2c0a7f0118'] = 'Prezzo';
-$_MODULE['<{statsproduct}prestashop>statsproduct_6e13e61b8535a66feb27d285f5c42855'] = 'Dopo aver scelto una categoria e selezionato un prodotto disponibile in questa categoria, appariranno dei grafici. Poi, potrai analizzarli.';
-$_MODULE['<{statsproduct}prestashop>statsproduct_e22269bb51f9f2394e148716babbafbb'] = 'Popolarità';
-$_MODULE['<{statsproduct}prestashop>statsproduct_5e9613e58f3bdbc89b1fef07274c0877'] = 'Visite (x100)';
-$_MODULE['<{statsproduct}prestashop>statsproduct_287234a1ff35a314b5b6bc4e5828e745'] = 'Attributi';
-$_MODULE['<{statsproduct}prestashop>statsproduct_af7cba0f47dac2ad181cc0471979a746'] = 'Vendite (-Tasse):';
-$_MODULE['<{statsproduct}prestashop>statsproduct_b262bbde88b3b8dca3b27d730aca69bf'] = 'Totale visite:';
-$_MODULE['<{statsproduct}prestashop>statsproduct_998e4c5c80f27dec552e99dfed34889a'] = 'Esporta CSV';
-$_MODULE['<{statsproduct}prestashop>statsproduct_11ff9f68afb6b8b5b8eda218d7c83a65'] = 'Vendite';
-$_MODULE['<{statsproduct}prestashop>statsproduct_a240fa27925a635b08dc28c9e4f9216d'] = 'Ordine';
-$_MODULE['<{statsproduct}prestashop>statsproduct_ce26601dac0dea138b7295f02b7620a7'] = 'Cliente';
-$_MODULE['<{statsproduct}prestashop>statsproduct_df644ae155e79abf54175bd15d75f363'] = 'Nome del prodotto';
-$_MODULE['<{statsproduct}prestashop>statsproduct_b1c94ca2fbc3e78fc30069c8d0f01680'] = 'Tutti';
-$_MODULE['<{statsproduct}prestashop>statsproduct_ff7008d8daed8cf92213ca8955a42d92'] = 'Se noti che un prodotto ha successo, viene spesso acquistato ma visualizzato raramente, dovresti collocarlo in maniera più visibile nel tuo negozio';
-$_MODULE['<{statsproduct}prestashop>statsproduct_27ce7f8b5623b2e2df568d64cf051607'] = 'Magazzino';
diff --git a/modules/statsregistrations/translations/de.php b/modules/statsregistrations/translations/de.php
deleted file mode 100644
index 0d095fd6e..000000000
--- a/modules/statsregistrations/translations/de.php
+++ /dev/null
@@ -1,21 +0,0 @@
-statsregistrations_247b3bdef50a59d5a83f23c4f1c8fa47'] = 'Besucher, die bei der Registrierung aufgehört haben:';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_76dcf557776c2b40d47b72ebcd9ac6b7'] = 'Die Gesamtzahl der erstellten Konten ist an sich keine wichtige Information. Es ist allerdings interessant, die Zahl der Eröffnungen über die Zeit gesehen zu analysieren. Dies sagt aus, ob die Dinge auf dem richtigen Weg sind.';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_2d8c349a97131b417bf7da166afb17bd'] = 'Wenn Sie Ihren Shop laufen lassen, ohne etwas zu ändern, sollte die Anzahl der Kunden-Registrierungen stabil bleiben oder leicht rückläufig sein.';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_ded9c8756dc14fd26e3150c4718cd9d0'] = 'Hier ist eine Zusammenfassung dessen, was die Eröffnung von Kundenkonten beeinflusst:';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_3493de9f70480000ac99a1d5fc021dcb'] = 'Eine Werbekampagne kann eine größere Anzahl von Besuchern anziehen. Eine sich daraus ergebende Zunahme von Kundenkonten, hängt von der \\"Qualität\\" der Kampagne ab: gezielte Werbung kann effektiver sein als breit angelegte Werbung.';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_8b15fc6468c919d299f9a601b61b95fc'] = 'Kundenkonten';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_6602bbeb2956c035fb4cb5e844a4861b'] = 'Guide';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_57a6f41a27c9baa5b402d30e97d4c1e8'] = 'Die richtige Reaktion auf die Entwicklung der Registrierungen';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_ac379194b8c2ea6c2e26be3672fdf7f7'] = 'Ein signifikanter Anstieg oder Rückgang zeigt, dass es wahrscheinlich eine Änderung in Ihrem Shop gegeben hat, Sie müssensie identifizieren, um herauszufinden, ob diese Änderung die Zahl der Anmeldungen zurückgehen lässt oder fortfahren, wenn dies vorteilhaft ist.';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_8cb5605d77d1d2f9eab6191c0e027747'] = 'Design und Benutzerfreundlichkeit sind heute wichtiger denn je: ein schlecht gewähltes oder schwer verständliches grafisches Thema kann Besuchern die Lust zum Kaufen nehmen. Sie müssen die richtige Balance zwischen einem innovativen Design und einer leichten Surfbarkeit für Besucher finden. Korrekte Rechtschreibung und Klarheit wecken ebenso mehr das Kundenvertrauen in Ihren Shop.';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_5eaafc713c2425b16202065927ea0220'] = 'Anzeige des Fortschritts der Kundenregistrierung';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_479c1246d97709e234574e1d2921994d'] = 'Besucher, die direkt nach der Anmeldung eine Bestellung vorgenommen haben:';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_998e4c5c80f27dec552e99dfed34889a'] = 'CSV-Export';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_fba0e64541196123bbf8e3737bf9287b'] = 'Anzahl der erstellten Kundenkonten';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_c53d1447202b4d629cf3b96dc4b1056d'] = 'Sonderangebote, Verkäufe, oder Wettbewerbe schaffen mehr Aufmerksamkeit und Neugier, und halten Ihren Shop nicht nur lebendig, sondern erhöhen auch die Besucherzahl. Auf diese Weise können Sie impulsive Käufer zum Kaufen animieren.';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_a751e9cc4ed4c7585ecc0d97781cb48a'] = 'Kundenkonten insgesamt:';
diff --git a/modules/statsregistrations/translations/en.php b/modules/statsregistrations/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/statsregistrations/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-statsregistrations_247b3bdef50a59d5a83f23c4f1c8fa47'] = 'Visitantes que no han pasado de la suscripción:';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_2d8c349a97131b417bf7da166afb17bd'] = 'i usted deja su tienda funcionar sin realizar cambios, el número de suscripciones de cliente puede permanecer estable o declinar levemente.';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_ded9c8756dc14fd26e3150c4718cd9d0'] = 'Aquà se muestra un sumario de lo que puede afectar a la hora de crear cuentas de clientes.';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_3493de9f70480000ac99a1d5fc021dcb'] = 'Una campaña publicitaria puede atraer un mayor número de visitantes.Un incremento de clientes registrados le dará cierta seguridad, pero depende de su \\"calidad\\": una publicidad bien dirigida puede resultar más efectiva que un campaña a gran escala.';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_76dcf557776c2b40d47b72ebcd9ac6b7'] = 'El número total de cuentas creadas no es en sí misma información importante. Sin embargo, es interesante analizar la cantidad creada en un cierto plazo. Esto indicará de una manera u otra si las cosas van por buen camino.';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_8b15fc6468c919d299f9a601b61b95fc'] = 'Cuentas cliente';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_6602bbeb2956c035fb4cb5e844a4861b'] = 'Guía';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_57a6f41a27c9baa5b402d30e97d4c1e8'] = '¿Cómo intervenir en la evolución de las suscripciones?';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_ac379194b8c2ea6c2e26be3672fdf7f7'] = 'Un aumento significativo o una disminución demuestra que ha habido probablemente un cambio en su tienda; por lo tanto, usted debe identificarlo y dar marcha atrás si ha habido una disminución de suscripciones o continuar con él si es ventajoso.';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_8cb5605d77d1d2f9eab6191c0e027747'] = 'El diseño y la accesibilidad son más importantes que nunca: una mala accesibilidad o una mala presentación gráfica puede hacer que sus visitantes se vayan. Tiene que crear un balance entre un diseño innovador que permita al visitante moverse por la red con comodidad. Un escritura clara y correcta también inspirarán más confianza para el cliente hacia su comercio.';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_5eaafc713c2425b16202065927ea0220'] = 'Mostrar la progresión de la suscripción de clientes';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_479c1246d97709e234574e1d2921994d'] = 'Visitantes que han efectuado un pedido directamente después de suscribirse:';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_998e4c5c80f27dec552e99dfed34889a'] = 'CSV Export';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_fba0e64541196123bbf8e3737bf9287b'] = 'Número de clientes que han creado una cuenta';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_c53d1447202b4d629cf3b96dc4b1056d'] = 'Ofertas especiales, rebajas o contenidos crean grandes espectativas y curiosidad, así no sólo se mantiene activo su comercio activo sino que además aumenta el tráfico. De esta manera, puede captar clientes impulsivos.';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_a751e9cc4ed4c7585ecc0d97781cb48a'] = 'Total cuentas cliente:';
diff --git a/modules/statsregistrations/translations/fr.php b/modules/statsregistrations/translations/fr.php
deleted file mode 100644
index 68e5030e4..000000000
--- a/modules/statsregistrations/translations/fr.php
+++ /dev/null
@@ -1,21 +0,0 @@
-statsregistrations_ded9c8756dc14fd26e3150c4718cd9d0'] = 'Différents modificateurs sont possibles : ';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_3493de9f70480000ac99a1d5fc021dcb'] = 'Une campagne de publicité peut attirer un grand nombre de visiteurs. De plus, une campagne de pub bien ciblée peut s\'avérer plus efficace qu\'une publicité à grande échelle.';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_247b3bdef50a59d5a83f23c4f1c8fa47'] = 'Visiteurs bloqués à la phase d\'inscription :';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_76dcf557776c2b40d47b72ebcd9ac6b7'] = 'Le nombre d\'inscrits en lui-même n\'est pas important. Il vous permet surtout d\'apprécier son évolution sur une période plus ou moins longue. ';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_2d8c349a97131b417bf7da166afb17bd'] = 'Si vous laissez votre boutique tourner sans rien changer, le nombre d\'inscriptions devrait être stable ou baisser légèrement. ';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_ac379194b8c2ea6c2e26be3672fdf7f7'] = 'Une forte croissance ou une forte baisse montre donc probablement un changement sur votre boutique. C\'est pourquoi vous devez l\'identifier de manière à pouvoir revenir sur vos pas au cas où ce changement fait décroître le nombre d\'inscriptions, ou au contraire continuer dans cette voie si celui-ci se trouve avantageux.';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_8cb5605d77d1d2f9eab6191c0e027747'] = 'Esthétique : un changement de thème peut rebuter les visiteurs. L\'orthographe et la clarté sont également à soigner. ';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_6602bbeb2956c035fb4cb5e844a4861b'] = 'Guide';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_57a6f41a27c9baa5b402d30e97d4c1e8'] = 'Comment agir sur l\'évolution des inscriptions ?';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_8b15fc6468c919d299f9a601b61b95fc'] = 'Comptes clients';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_5eaafc713c2425b16202065927ea0220'] = 'Affiche l\'évolution des créations de compte';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_c53d1447202b4d629cf3b96dc4b1056d'] = 'Les promotions, soldes ou jeux-concours attirent fortement l\'attention et la curiosité des visiteurs ; permettant non seulement d\'animer votre boutique, mais aussi d\'en augmenter son trafic. De cette manière, vous pouvez pousser un acheteur \\"spontané\\" à se lancer.';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_479c1246d97709e234574e1d2921994d'] = 'Visiteurs ayant passé une commande dès leur inscription :';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_998e4c5c80f27dec552e99dfed34889a'] = 'Export CSV';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_fba0e64541196123bbf8e3737bf9287b'] = 'Nombre de comptes créés';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_a751e9cc4ed4c7585ecc0d97781cb48a'] = 'Total de comptes créés :';
diff --git a/modules/statsregistrations/translations/it.php b/modules/statsregistrations/translations/it.php
deleted file mode 100644
index b580691e7..000000000
--- a/modules/statsregistrations/translations/it.php
+++ /dev/null
@@ -1,21 +0,0 @@
-statsregistrations_247b3bdef50a59d5a83f23c4f1c8fa47'] = 'I visitatori che si sono fermati alla fase di registrazione:';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_76dcf557776c2b40d47b72ebcd9ac6b7'] = 'Il numero totale di account creati non è di per sé un\'informazione importante. Tuttavia, è interessante analizzare il numero creato nel tempo. Questo indica se le cose sono sulla strada giusta.';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_2d8c349a97131b417bf7da166afb17bd'] = 'Se lasci che il tuo negozio vada avanti senza cambiare nulla, il numero di iscrizioni dei clienti dovrebbe rimanere stabile o diminuire leggermente.';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_ded9c8756dc14fd26e3150c4718cd9d0'] = 'Ecco un riassunto di ciò che può influenzare la creazione di account cliente:';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_3493de9f70480000ac99a1d5fc021dcb'] = 'Una campagna pubblicitaria può attrarre un numero maggiore di visitatori. Un aumento di account dei clienti che ne seguirà, che dipenderà dalla loro \\"qualità\\": le pubblicità ben mirate possono essere più efficaci di una pubblicità su larga scala.';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_8b15fc6468c919d299f9a601b61b95fc'] = 'Account clienti';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_6602bbeb2956c035fb4cb5e844a4861b'] = 'Guida';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_57a6f41a27c9baa5b402d30e97d4c1e8'] = 'Come agire sull\'evoluzione delle iscrizioni?';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_ac379194b8c2ea6c2e26be3672fdf7f7'] = 'Un significativo aumento o diminuzione dimostra che vi è stato probabilmente un cambiamento nel tuo negozio; pertanto, è necessario identificarlo in modo da effettuare degli aggiustamenti laddove questa modifica faccia diminuire il numero di registrazioni, o invece proseguire se il risultato è positivo.';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_8cb5605d77d1d2f9eab6191c0e027747'] = 'Design e semplicità d\'uso sono più importanti che mai: una grafica complicata o difficile da seguire può allontanare i visitatori. Devi trovare il giusto equilibrio tra un design innovativo e lasciare che i visitatori si muovano facilmente. Anche una corretta ortografia e una grande chiarezza ispireranno maggiore fiducia nel tuo negozio.';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_5eaafc713c2425b16202065927ea0220'] = 'Visualizzare lo stato di registrazione del cliente';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_479c1246d97709e234574e1d2921994d'] = 'I visitatori che hanno effettuato un ordine direttamente dopo la registrazione:';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_998e4c5c80f27dec552e99dfed34889a'] = 'Esporta CSV';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_fba0e64541196123bbf8e3737bf9287b'] = 'Numero di account clienti creati';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_c53d1447202b4d629cf3b96dc4b1056d'] = 'Le promozioni, le vendite, o concorsi creano una maggiore attenzione e curiosità, non solo mantengono vivace il tuo negozio, ma ne aumentano il traffico. In questo modo, puoi spingere gli acquirenti impulsivi a fare il grande passo.';
-$_MODULE['<{statsregistrations}prestashop>statsregistrations_a751e9cc4ed4c7585ecc0d97781cb48a'] = 'Totale account dei clienti:';
diff --git a/modules/statssales/translations/de.php b/modules/statssales/translations/de.php
deleted file mode 100644
index 6286996af..000000000
--- a/modules/statssales/translations/de.php
+++ /dev/null
@@ -1,25 +0,0 @@
-statssales_d7778d0c64b6ba21494c97f77a66885a'] = 'Filter';
-$_MODULE['<{statssales}prestashop>statssales_998e4c5c80f27dec552e99dfed34889a'] = 'CSV-Export';
-$_MODULE['<{statssales}prestashop>statssales_ec3e48bb9aa902ba2ad608547fdcbfdc'] = 'Verkäufe:';
-$_MODULE['<{statssales}prestashop>statssales_75288849ad081e6ef15e00c37b7570f2'] = 'Verschiedene Bestellstatus';
-$_MODULE['<{statssales}prestashop>statssales_b52b44c9d23e141b067d7e83b44bb556'] = 'Produkte';
-$_MODULE['<{statssales}prestashop>statssales_14f1c54626d722168ee62dff05ed811e'] = 'Verkäufe in';
-$_MODULE['<{statssales}prestashop>statssales_45c4b3e103155326596d6ccd2fea0f25'] = 'Verkäufe und Bestellungen';
-$_MODULE['<{statssales}prestashop>statssales_9ccb8353e945f1389a9585e7f21b5a0d'] = 'Erfolgte Bestellungen:';
-$_MODULE['<{statssales}prestashop>statssales_da80af4de99df74dd59e665adf1fac8f'] = 'Keine Bestellung für diesen Zeitraum';
-$_MODULE['<{statssales}prestashop>statssales_b63d7e91b286748a447bf3573dbc9bfb'] = 'Prozente der Bestellungen nach Status';
-$_MODULE['<{statssales}prestashop>statssales_35214bc44485bc7161f9d1bdbacad5b8'] = 'Diese Grafiken stellen die Entwicklung Ihrer Bestellungen und Verkaufsumsätze für einen bestimmten Zeitraum dar. Es ist kein fortgeschrittenes Analyse-Tool, aber Sie können die Rentabilität Ihres Shops mit einem Blick erfassen. Sie Könne auch Unterschiede im Vergleich zu anderen Zeiträumen überwachen, z.B. Weihnachten. Nur bestätigte Bestellungen werden in diesen beiden Grafiken berücksichtigt.';
-$_MODULE['<{statssales}prestashop>statssales_ecfa88580e342ade21a8403765c0dde6'] = 'In Ihrem Back Office finden Sie viele andere Bestellstatus: Scheckzahlung in Bearbeitung, Zahlung akzeptiert, Vorbereitung im Gang, Versand, Geliefert, Abgebrochen, Rückzahlung, Fehler bei Zahlung, Lagerfehlbestand sowie Zahlung durch Banküberweisung in Bearbeitung.';
-$_MODULE['<{statssales}prestashop>statssales_d60bf28bef003143f1b95edbbc08cd68'] = 'Dieses Satatus können nicht aus dem Back Office entfernt werden, neue können jedoch hinzugefügt werden.';
-$_MODULE['<{statssales}prestashop>statssales_f57f893f9fbc11843fd4c9997ec41824'] = 'Anzeige der Umsatzentwicklung und Bestellungen nach Status';
-$_MODULE['<{statssales}prestashop>statssales_b1c94ca2fbc3e78fc30069c8d0f01680'] = 'Alle';
-$_MODULE['<{statssales}prestashop>statssales_156e5c5872c9af24a5c982da07a883c2'] = 'Gekaufte Produkte:';
-$_MODULE['<{statssales}prestashop>statssales_14b2ae2d824b5dfd798a8caf35732136'] = 'Hier können Sie die Bestellstatusverteilung sehen.';
-$_MODULE['<{statssales}prestashop>statssales_6602bbeb2956c035fb4cb5e844a4861b'] = 'Guide';
-$_MODULE['<{statssales}prestashop>statssales_bb7ad89807bf69ddca986c142311f936'] = 'Produkte und Bestellungen';
-$_MODULE['<{statssales}prestashop>statssales_12c500ed0b7879105fb46af0f246be87'] = 'Bestellungen';
diff --git a/modules/statssales/translations/en.php b/modules/statssales/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/statssales/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-statssales_d7778d0c64b6ba21494c97f77a66885a'] = 'Filtrar';
-$_MODULE['<{statssales}prestashop>statssales_998e4c5c80f27dec552e99dfed34889a'] = 'CSV Export';
-$_MODULE['<{statssales}prestashop>statssales_ec3e48bb9aa902ba2ad608547fdcbfdc'] = 'Ventas:';
-$_MODULE['<{statssales}prestashop>statssales_75288849ad081e6ef15e00c37b7570f2'] = 'Varios estados de pedido';
-$_MODULE['<{statssales}prestashop>statssales_b52b44c9d23e141b067d7e83b44bb556'] = 'Productos';
-$_MODULE['<{statssales}prestashop>statssales_14f1c54626d722168ee62dff05ed811e'] = 'Ventas en';
-$_MODULE['<{statssales}prestashop>statssales_45c4b3e103155326596d6ccd2fea0f25'] = 'Ventas y pedidos';
-$_MODULE['<{statssales}prestashop>statssales_9ccb8353e945f1389a9585e7f21b5a0d'] = 'Pedidos realizados:';
-$_MODULE['<{statssales}prestashop>statssales_da80af4de99df74dd59e665adf1fac8f'] = 'No hay pedidos para este periodo';
-$_MODULE['<{statssales}prestashop>statssales_b63d7e91b286748a447bf3573dbc9bfb'] = 'Porcentaje de pedidos por estado';
-$_MODULE['<{statssales}prestashop>statssales_35214bc44485bc7161f9d1bdbacad5b8'] = 'Estos gráficos representan la evolución de los pedidos y del volumen de ventas en un periodo dado. No son herramientas de análisis avanzadas pero le permiten ver la rentabilidad de su tienda inmediatamente. También puede observar variaciones en periodos concretos, como Navidad. Sólo los pedidos válidos se incluyen en estos gráficos.';
-$_MODULE['<{statssales}prestashop>statssales_ecfa88580e342ade21a8403765c0dde6'] = 'En su Back-Office, hay varios estados de pedido disponibles: En espera de pago por cheque, Pago aceptado, Preparación en curso, En espera de entraga, Entregado, Anulado, Reembolsado, Error de pago, Productos no disponibles y en espera de pago por transferencia bancaria.';
-$_MODULE['<{statssales}prestashop>statssales_d60bf28bef003143f1b95edbbc08cd68'] = 'Estos estados no pueden suprimirse a partir del Back-Office, sin embargo puede añadir otros nuevos.';
-$_MODULE['<{statssales}prestashop>statssales_f57f893f9fbc11843fd4c9997ec41824'] = 'Mostrar la evolución de las ventas y de los pedidos por estados';
-$_MODULE['<{statssales}prestashop>statssales_b1c94ca2fbc3e78fc30069c8d0f01680'] = 'Todas';
-$_MODULE['<{statssales}prestashop>statssales_156e5c5872c9af24a5c982da07a883c2'] = 'Productos pedidos:';
-$_MODULE['<{statssales}prestashop>statssales_14b2ae2d824b5dfd798a8caf35732136'] = 'Puede ver la distribución del estado del pedido a continuación.';
-$_MODULE['<{statssales}prestashop>statssales_6602bbeb2956c035fb4cb5e844a4861b'] = 'Guía';
-$_MODULE['<{statssales}prestashop>statssales_bb7ad89807bf69ddca986c142311f936'] = 'Productos y pedidos';
-$_MODULE['<{statssales}prestashop>statssales_12c500ed0b7879105fb46af0f246be87'] = 'Pedidos';
diff --git a/modules/statssales/translations/fr.php b/modules/statssales/translations/fr.php
deleted file mode 100644
index 36782cc2b..000000000
--- a/modules/statssales/translations/fr.php
+++ /dev/null
@@ -1,25 +0,0 @@
-statssales_d7778d0c64b6ba21494c97f77a66885a'] = 'Filtrer';
-$_MODULE['<{statssales}prestashop>statssales_998e4c5c80f27dec552e99dfed34889a'] = 'Export CSV';
-$_MODULE['<{statssales}prestashop>statssales_75288849ad081e6ef15e00c37b7570f2'] = 'Plusieurs états de commande';
-$_MODULE['<{statssales}prestashop>statssales_b52b44c9d23e141b067d7e83b44bb556'] = 'Produits';
-$_MODULE['<{statssales}prestashop>statssales_14f1c54626d722168ee62dff05ed811e'] = 'Chiffre d\'affaires en';
-$_MODULE['<{statssales}prestashop>statssales_ec3e48bb9aa902ba2ad608547fdcbfdc'] = 'Chiffre d\'affaires :';
-$_MODULE['<{statssales}prestashop>statssales_45c4b3e103155326596d6ccd2fea0f25'] = 'Commandes et CA';
-$_MODULE['<{statssales}prestashop>statssales_9ccb8353e945f1389a9585e7f21b5a0d'] = 'Commandes passées :';
-$_MODULE['<{statssales}prestashop>statssales_da80af4de99df74dd59e665adf1fac8f'] = 'Aucune commande pour cette période.';
-$_MODULE['<{statssales}prestashop>statssales_b63d7e91b286748a447bf3573dbc9bfb'] = 'Pourcentage de commandes par état';
-$_MODULE['<{statssales}prestashop>statssales_35214bc44485bc7161f9d1bdbacad5b8'] = 'Ces graphiques représentent l\'évolution de vos commandes et chiffre d\'affaires pour une période donnée. Ce n\'est pas un outil d\'analyse avancé mais il vous permet toutefois de visualiser la rentabilité de votre boutique en un clin d’œil. Vous pouvez également comparer les ventes entre différentes périodes (Noël, ...). Seules les commandes valides sont inclues dans ces deux graphes.';
-$_MODULE['<{statssales}prestashop>statssales_ecfa88580e342ade21a8403765c0dde6'] = 'Au sein de votre back-office, plusieurs états de commande sont disponibles : En attente du paiement par chèque, Paiement accepté, Préparation en cours, En cours de livraison, Livré, Annulé, Remboursé, Erreur de paiement, Produits indisponibles et En attente du paiement par virement bancaire.';
-$_MODULE['<{statssales}prestashop>statssales_d60bf28bef003143f1b95edbbc08cd68'] = 'Ces états ne peuvent être supprimés depuis le back-office, cependant vous pouvez en ajouter de nouveaux.';
-$_MODULE['<{statssales}prestashop>statssales_f57f893f9fbc11843fd4c9997ec41824'] = 'Affiche l\'évolution du chiffre d\'affaires et la répartition des commandes par leurs états.';
-$_MODULE['<{statssales}prestashop>statssales_b1c94ca2fbc3e78fc30069c8d0f01680'] = 'Tout afficher';
-$_MODULE['<{statssales}prestashop>statssales_156e5c5872c9af24a5c982da07a883c2'] = 'Produits commandés :';
-$_MODULE['<{statssales}prestashop>statssales_14b2ae2d824b5dfd798a8caf35732136'] = 'La répartition des états de commande est représentée ci-dessous.';
-$_MODULE['<{statssales}prestashop>statssales_6602bbeb2956c035fb4cb5e844a4861b'] = 'Guide';
-$_MODULE['<{statssales}prestashop>statssales_bb7ad89807bf69ddca986c142311f936'] = 'Commandes et produits';
-$_MODULE['<{statssales}prestashop>statssales_12c500ed0b7879105fb46af0f246be87'] = 'Commandes';
diff --git a/modules/statssales/translations/it.php b/modules/statssales/translations/it.php
deleted file mode 100644
index 1b8b56f31..000000000
--- a/modules/statssales/translations/it.php
+++ /dev/null
@@ -1,25 +0,0 @@
-statssales_d7778d0c64b6ba21494c97f77a66885a'] = 'Filtro';
-$_MODULE['<{statssales}prestashop>statssales_998e4c5c80f27dec552e99dfed34889a'] = 'Esporta CSV';
-$_MODULE['<{statssales}prestashop>statssales_ec3e48bb9aa902ba2ad608547fdcbfdc'] = 'Vendite:';
-$_MODULE['<{statssales}prestashop>statssales_75288849ad081e6ef15e00c37b7570f2'] = 'Vari status degli ordini';
-$_MODULE['<{statssales}prestashop>statssales_b52b44c9d23e141b067d7e83b44bb556'] = 'Prodotti';
-$_MODULE['<{statssales}prestashop>statssales_14f1c54626d722168ee62dff05ed811e'] = 'Le vendite in';
-$_MODULE['<{statssales}prestashop>statssales_45c4b3e103155326596d6ccd2fea0f25'] = 'Le vendite e gli ordini';
-$_MODULE['<{statssales}prestashop>statssales_9ccb8353e945f1389a9585e7f21b5a0d'] = 'Gli ordini effettuati:';
-$_MODULE['<{statssales}prestashop>statssales_da80af4de99df74dd59e665adf1fac8f'] = 'Nessun ordine per questo periodo';
-$_MODULE['<{statssales}prestashop>statssales_b63d7e91b286748a447bf3573dbc9bfb'] = 'Percentuale degli ordini in base allo stato';
-$_MODULE['<{statssales}prestashop>statssales_35214bc44485bc7161f9d1bdbacad5b8'] = 'Questi grafici rappresentano l\'evoluzione dei tuoi ordini e del fatturato per un determinato periodo. Non è uno strumento di analisi avanzata, ma almeno puoi controllare la redditività del tuo negozio in un lampo. È inoltre possibile tenere sotto controllo la differenza rispetto ad alcuni periodi come Natale. Solo gli ordini validi sono compresi in questi due grafici.';
-$_MODULE['<{statssales}prestashop>statssales_d60bf28bef003143f1b95edbbc08cd68'] = 'Questi stati non possono essere rimossi dal back-office, ma si ha la possibilità di aggiungerne altri';
-$_MODULE['<{statssales}prestashop>statssales_ecfa88580e342ade21a8403765c0dde6'] = 'Nel tuo back-office, è possibile trovare molti stati dell\'ordine: In attesa di pagamento con assegno, Pagamento accettato, Preparazione in corso, Spedizione, Consegnato, Annullato, Rimborso, Errore di pagamento, Esaurito, e In attesa di pagamento con bonifico bancario.';
-$_MODULE['<{statssales}prestashop>statssales_f57f893f9fbc11843fd4c9997ec41824'] = 'Visualizza l\'andamento delle vendite e degli ordini per status';
-$_MODULE['<{statssales}prestashop>statssales_b1c94ca2fbc3e78fc30069c8d0f01680'] = 'Tutti';
-$_MODULE['<{statssales}prestashop>statssales_156e5c5872c9af24a5c982da07a883c2'] = 'I prodotti acquistati:';
-$_MODULE['<{statssales}prestashop>statssales_6602bbeb2956c035fb4cb5e844a4861b'] = 'Guida';
-$_MODULE['<{statssales}prestashop>statssales_bb7ad89807bf69ddca986c142311f936'] = 'Prodotti e ordini';
-$_MODULE['<{statssales}prestashop>statssales_12c500ed0b7879105fb46af0f246be87'] = 'Ordini';
-$_MODULE['<{statssales}prestashop>statssales_14b2ae2d824b5dfd798a8caf35732136'] = 'È possibile visualizzare la distribuzione dello stato dell\'ordine di seguito.';
diff --git a/modules/statssearch/translations/de.php b/modules/statssearch/translations/de.php
deleted file mode 100644
index d58ac496c..000000000
--- a/modules/statssearch/translations/de.php
+++ /dev/null
@@ -1,14 +0,0 @@
-statssearch_a29d1afff7134121b6e55590e038caa8'] = 'Anzeigen, welche Keywords von Ihren Besuchern gesucht worden sind';
-$_MODULE['<{statssearch}prestashop>statssearch_e52e6aa1a43a0187e44f048f658db5f9'] = 'Vorkommen';
-$_MODULE['<{statssearch}prestashop>statssearch_52ef9633d88a7480b3a938ff9eaa2a25'] = 'Andere';
-$_MODULE['<{statssearch}prestashop>statssearch_8c3c245232744602822902b97e65d6f9'] = 'Shop-Suche';
-$_MODULE['<{statssearch}prestashop>statssearch_867343577fa1f33caa632a19543bd252'] = 'Keywords';
-$_MODULE['<{statssearch}prestashop>statssearch_fd69c5cf902969e6fb71d043085ddee6'] = 'Ergebnisse';
-$_MODULE['<{statssearch}prestashop>statssearch_eebd23d2b8567d0d92496ac99dcd343e'] = 'Keine Keywords gesucht, die mehr als einmal gefunden wurden.';
-$_MODULE['<{statssearch}prestashop>statssearch_998e4c5c80f27dec552e99dfed34889a'] = 'CSV-Export';
-$_MODULE['<{statssearch}prestashop>statssearch_e15832aa200f342e8f4ab580b43a72a8'] = '10 erste Keywords';
diff --git a/modules/statssearch/translations/en.php b/modules/statssearch/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/statssearch/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-statssearch_a29d1afff7134121b6e55590e038caa8'] = 'Mostrar las palabras clave que han sido utilizadas por sus visitantes';
-$_MODULE['<{statssearch}prestashop>statssearch_e52e6aa1a43a0187e44f048f658db5f9'] = 'Frecuencia';
-$_MODULE['<{statssearch}prestashop>statssearch_52ef9633d88a7480b3a938ff9eaa2a25'] = 'Otros';
-$_MODULE['<{statssearch}prestashop>statssearch_8c3c245232744602822902b97e65d6f9'] = 'Búsqueda de la tienda';
-$_MODULE['<{statssearch}prestashop>statssearch_867343577fa1f33caa632a19543bd252'] = 'Palabras clave';
-$_MODULE['<{statssearch}prestashop>statssearch_fd69c5cf902969e6fb71d043085ddee6'] = 'Resultados';
-$_MODULE['<{statssearch}prestashop>statssearch_eebd23d2b8567d0d92496ac99dcd343e'] = 'ninguna palabra clave buscada más de una vez';
-$_MODULE['<{statssearch}prestashop>statssearch_998e4c5c80f27dec552e99dfed34889a'] = 'CSV Export';
-$_MODULE['<{statssearch}prestashop>statssearch_e15832aa200f342e8f4ab580b43a72a8'] = '10 primeras palabras clave';
diff --git a/modules/statssearch/translations/fr.php b/modules/statssearch/translations/fr.php
deleted file mode 100644
index 4f00789cc..000000000
--- a/modules/statssearch/translations/fr.php
+++ /dev/null
@@ -1,14 +0,0 @@
-statssearch_a29d1afff7134121b6e55590e038caa8'] = 'Affiche les mots-clés recherchés par vos visiteurs';
-$_MODULE['<{statssearch}prestashop>statssearch_e52e6aa1a43a0187e44f048f658db5f9'] = 'Occurrences';
-$_MODULE['<{statssearch}prestashop>statssearch_52ef9633d88a7480b3a938ff9eaa2a25'] = 'Autres';
-$_MODULE['<{statssearch}prestashop>statssearch_8c3c245232744602822902b97e65d6f9'] = 'Recherches de la boutique';
-$_MODULE['<{statssearch}prestashop>statssearch_867343577fa1f33caa632a19543bd252'] = 'Mots-clés';
-$_MODULE['<{statssearch}prestashop>statssearch_fd69c5cf902969e6fb71d043085ddee6'] = 'Résultats';
-$_MODULE['<{statssearch}prestashop>statssearch_eebd23d2b8567d0d92496ac99dcd343e'] = 'Aucun mot-clé recherché plus d\'une fois.';
-$_MODULE['<{statssearch}prestashop>statssearch_e15832aa200f342e8f4ab580b43a72a8'] = '10 premiers mots-clés';
-$_MODULE['<{statssearch}prestashop>statssearch_998e4c5c80f27dec552e99dfed34889a'] = 'Export CSV';
diff --git a/modules/statssearch/translations/it.php b/modules/statssearch/translations/it.php
deleted file mode 100644
index f75160cdc..000000000
--- a/modules/statssearch/translations/it.php
+++ /dev/null
@@ -1,14 +0,0 @@
-statssearch_a29d1afff7134121b6e55590e038caa8'] = 'Mostra quali parole chiave sono state ricercate dai tuoi visitatori';
-$_MODULE['<{statssearch}prestashop>statssearch_e52e6aa1a43a0187e44f048f658db5f9'] = 'Occorrenze';
-$_MODULE['<{statssearch}prestashop>statssearch_52ef9633d88a7480b3a938ff9eaa2a25'] = 'Altri';
-$_MODULE['<{statssearch}prestashop>statssearch_8c3c245232744602822902b97e65d6f9'] = 'Ricerca negozio';
-$_MODULE['<{statssearch}prestashop>statssearch_867343577fa1f33caa632a19543bd252'] = 'parole chiave';
-$_MODULE['<{statssearch}prestashop>statssearch_fd69c5cf902969e6fb71d043085ddee6'] = 'Risultati';
-$_MODULE['<{statssearch}prestashop>statssearch_eebd23d2b8567d0d92496ac99dcd343e'] = 'Nessuna parola chiave cercata più di una volta.';
-$_MODULE['<{statssearch}prestashop>statssearch_998e4c5c80f27dec552e99dfed34889a'] = 'Esporta CSV';
-$_MODULE['<{statssearch}prestashop>statssearch_e15832aa200f342e8f4ab580b43a72a8'] = 'Le prime 10 parole chiave';
diff --git a/modules/statsstock/translations/de.php b/modules/statsstock/translations/de.php
deleted file mode 100644
index 03c1ad69c..000000000
--- a/modules/statsstock/translations/de.php
+++ /dev/null
@@ -1,20 +0,0 @@
-statsstock_b718adec73e04ce3ec720dd11a06a308'] = 'ID';
-$_MODULE['<{statsstock}prestashop>statsstock_347cbf03d737b02a70a96ff204c22fbc'] = 'Anzahl total';
-$_MODULE['<{statsstock}prestashop>statsstock_62668f75fc6977f3d09df632d1585d07'] = 'Gesamtwert';
-$_MODULE['<{statsstock}prestashop>statsstock_3adbdb3ac060038aa0e6e6c138ef9873'] = 'Kategorie';
-$_MODULE['<{statsstock}prestashop>statsstock_12d3c7a4296542c62474856ec452c045'] = 'Ref.';
-$_MODULE['<{statsstock}prestashop>statsstock_7bd5825a187064017975513b95d7f7de'] = 'Vorhandene Menge für Verkauf';
-$_MODULE['<{statsstock}prestashop>statsstock_689202409e48743b914713f96d93947c'] = 'Wert';
-$_MODULE['<{statsstock}prestashop>statsstock_1b2379801de373b6b563c347014fb34b'] = 'Ihr Katalog ist leer.';
-$_MODULE['<{statsstock}prestashop>statsstock_7d74f3b92b19da5e606d737d339a9679'] = 'Artikel';
-$_MODULE['<{statsstock}prestashop>statsstock_88940d60e75cf4ff38ce27db4efc83b2'] = 'Preis *';
-$_MODULE['<{statsstock}prestashop>statsstock_a9873f90f06f9e2cfa3d048298ecca8c'] = 'Entsprechend des standard Gesamtpreises gemäß des standard Zulieferers für das Produkt. Sollte das Produkt Attribute verwenden, wird ein Durchschnittspreis verwendet.';
-$_MODULE['<{statsstock}prestashop>statsstock_4416eb048e458e909c65b5210cee2b83'] = 'Vorhandene Menge Statistiken';
-$_MODULE['<{statsstock}prestashop>statsstock_f27f89ed1aeb8108c091677cf7b99c28'] = 'Vorhandene Menge für Verkaufsbewertung';
-$_MODULE['<{statsstock}prestashop>statsstock_b1c94ca2fbc3e78fc30069c8d0f01680'] = 'Alle';
-$_MODULE['<{statsstock}prestashop>statsstock_4364f8c09d7bf97996a20840900e7b30'] = 'Durchschnittl. Preis';
diff --git a/modules/statsstock/translations/en.php b/modules/statsstock/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/statsstock/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-statsstock_b718adec73e04ce3ec720dd11a06a308'] = 'ID';
-$_MODULE['<{statsstock}prestashop>statsstock_347cbf03d737b02a70a96ff204c22fbc'] = 'Cantidades totales';
-$_MODULE['<{statsstock}prestashop>statsstock_62668f75fc6977f3d09df632d1585d07'] = 'Valor total';
-$_MODULE['<{statsstock}prestashop>statsstock_3adbdb3ac060038aa0e6e6c138ef9873'] = 'Categoría';
-$_MODULE['<{statsstock}prestashop>statsstock_12d3c7a4296542c62474856ec452c045'] = 'Ref.';
-$_MODULE['<{statsstock}prestashop>statsstock_7bd5825a187064017975513b95d7f7de'] = 'Cantidad disponible para la venta';
-$_MODULE['<{statsstock}prestashop>statsstock_689202409e48743b914713f96d93947c'] = 'Valor';
-$_MODULE['<{statsstock}prestashop>statsstock_1b2379801de373b6b563c347014fb34b'] = 'Su catálogo está vacío';
-$_MODULE['<{statsstock}prestashop>statsstock_7d74f3b92b19da5e606d737d339a9679'] = 'Artículo';
-$_MODULE['<{statsstock}prestashop>statsstock_88940d60e75cf4ff38ce27db4efc83b2'] = 'Precio*';
-$_MODULE['<{statsstock}prestashop>statsstock_a9873f90f06f9e2cfa3d048298ecca8c'] = 'Corresponde al precio de venta al por mayor defecto de acuerdo con el proveedor por defecto para el producto. Un precio medio se utiliza cuando el producto tiene atributos.';
-$_MODULE['<{statsstock}prestashop>statsstock_4416eb048e458e909c65b5210cee2b83'] = 'Estadísticas de las cantidades disponibles';
-$_MODULE['<{statsstock}prestashop>statsstock_f27f89ed1aeb8108c091677cf7b99c28'] = 'Cantidades disponibles para la valoración de la venta';
-$_MODULE['<{statsstock}prestashop>statsstock_b1c94ca2fbc3e78fc30069c8d0f01680'] = 'Todas';
-$_MODULE['<{statsstock}prestashop>statsstock_4364f8c09d7bf97996a20840900e7b30'] = 'Precio medio';
diff --git a/modules/statsstock/translations/fr.php b/modules/statsstock/translations/fr.php
deleted file mode 100644
index de504c26c..000000000
--- a/modules/statsstock/translations/fr.php
+++ /dev/null
@@ -1,20 +0,0 @@
-statsstock_b718adec73e04ce3ec720dd11a06a308'] = 'ID';
-$_MODULE['<{statsstock}prestashop>statsstock_347cbf03d737b02a70a96ff204c22fbc'] = 'Total des quantités';
-$_MODULE['<{statsstock}prestashop>statsstock_62668f75fc6977f3d09df632d1585d07'] = 'Valeur total';
-$_MODULE['<{statsstock}prestashop>statsstock_3adbdb3ac060038aa0e6e6c138ef9873'] = 'Catégorie';
-$_MODULE['<{statsstock}prestashop>statsstock_12d3c7a4296542c62474856ec452c045'] = 'Réf.';
-$_MODULE['<{statsstock}prestashop>statsstock_7bd5825a187064017975513b95d7f7de'] = 'Quantité disponible à la vente';
-$_MODULE['<{statsstock}prestashop>statsstock_689202409e48743b914713f96d93947c'] = 'Valeur';
-$_MODULE['<{statsstock}prestashop>statsstock_1b2379801de373b6b563c347014fb34b'] = 'Votre catalogue est vide.';
-$_MODULE['<{statsstock}prestashop>statsstock_7d74f3b92b19da5e606d737d339a9679'] = 'Article';
-$_MODULE['<{statsstock}prestashop>statsstock_88940d60e75cf4ff38ce27db4efc83b2'] = 'Prix*';
-$_MODULE['<{statsstock}prestashop>statsstock_a9873f90f06f9e2cfa3d048298ecca8c'] = 'Correspond au prix de vente par défaut selon le fournisseur par défaut du produit. Un prix moyen est utilisé quand le produit possède des déclinaisons.';
-$_MODULE['<{statsstock}prestashop>statsstock_4416eb048e458e909c65b5210cee2b83'] = 'Quantités statistiques disponibles';
-$_MODULE['<{statsstock}prestashop>statsstock_f27f89ed1aeb8108c091677cf7b99c28'] = 'Quantités disponibles pour la valorisation de la vente';
-$_MODULE['<{statsstock}prestashop>statsstock_b1c94ca2fbc3e78fc30069c8d0f01680'] = 'Toutes';
-$_MODULE['<{statsstock}prestashop>statsstock_4364f8c09d7bf97996a20840900e7b30'] = 'Prix moyen';
diff --git a/modules/statsstock/translations/it.php b/modules/statsstock/translations/it.php
deleted file mode 100644
index 3123c2710..000000000
--- a/modules/statsstock/translations/it.php
+++ /dev/null
@@ -1,20 +0,0 @@
-statsstock_b718adec73e04ce3ec720dd11a06a308'] = 'ID';
-$_MODULE['<{statsstock}prestashop>statsstock_347cbf03d737b02a70a96ff204c22fbc'] = 'Quantitativi totali';
-$_MODULE['<{statsstock}prestashop>statsstock_62668f75fc6977f3d09df632d1585d07'] = 'Valore totale';
-$_MODULE['<{statsstock}prestashop>statsstock_3adbdb3ac060038aa0e6e6c138ef9873'] = 'Categoria';
-$_MODULE['<{statsstock}prestashop>statsstock_12d3c7a4296542c62474856ec452c045'] = 'Rif.';
-$_MODULE['<{statsstock}prestashop>statsstock_7bd5825a187064017975513b95d7f7de'] = 'Quantità disponibile per la vendita';
-$_MODULE['<{statsstock}prestashop>statsstock_689202409e48743b914713f96d93947c'] = 'Valore';
-$_MODULE['<{statsstock}prestashop>statsstock_1b2379801de373b6b563c347014fb34b'] = 'Il tuo catalogo è vuoto.';
-$_MODULE['<{statsstock}prestashop>statsstock_7d74f3b92b19da5e606d737d339a9679'] = 'Articolo';
-$_MODULE['<{statsstock}prestashop>statsstock_88940d60e75cf4ff38ce27db4efc83b2'] = 'Prezzo *';
-$_MODULE['<{statsstock}prestashop>statsstock_a9873f90f06f9e2cfa3d048298ecca8c'] = 'Corrisponde al prezzo predefinito all\'ingrosso in base al fornitore di default per il prodotto. Un prezzo medio viene utilizzato quando il prodotto ha attributi.';
-$_MODULE['<{statsstock}prestashop>statsstock_4416eb048e458e909c65b5210cee2b83'] = 'Quantità disponibili per le statistiche';
-$_MODULE['<{statsstock}prestashop>statsstock_f27f89ed1aeb8108c091677cf7b99c28'] = 'Quantitativi disponibili per la valutazione delle vendite';
-$_MODULE['<{statsstock}prestashop>statsstock_b1c94ca2fbc3e78fc30069c8d0f01680'] = 'Tutti';
-$_MODULE['<{statsstock}prestashop>statsstock_4364f8c09d7bf97996a20840900e7b30'] = 'Prezzo medio';
diff --git a/modules/statsvisits/translations/de.php b/modules/statsvisits/translations/de.php
deleted file mode 100644
index f0d5b0502..000000000
--- a/modules/statsvisits/translations/de.php
+++ /dev/null
@@ -1,21 +0,0 @@
-statsvisits_998e4c5c80f27dec552e99dfed34889a'] = 'CSV-Export';
-$_MODULE['<{statsvisits}prestashop>statsvisits_6602bbeb2956c035fb4cb5e844a4861b'] = 'Guide';
-$_MODULE['<{statsvisits}prestashop>statsvisits_9bf5a493522a65d550f096505874873b'] = 'Diese Information ist hauptsächlich qualitativer Art: Sie müssen die Ursache eines zufälligen Besuchs erkennen.';
-$_MODULE['<{statsvisits}prestashop>statsvisits_504c16c26a96283f91fb46a69b7c8153'] = 'Besuche und Besucher';
-$_MODULE['<{statsvisits}prestashop>statsvisits_e90d50ca1e68dc66c97bd62929dcbaf1'] = 'Die Besucherentwicklungsgrafik sieht der Besuchsgrafik sehr ähnlich, liefert aber zusätzliche Informationen:';
-$_MODULE['<{statsvisits}prestashop>statsvisits_c745121a98cf1d5b26bc5299d9880d5c'] = 'Anderenfalls ist die Bilanz nicht so einfach. Es kann sich um ein ÄSthetisches oder ergonomisches Problem handeln, oder das Angebot ist unzureichend. Es kann auch sein, dass diese Besucher rein zufällig auf diese Webseite gekommen sind, ohne spezielles Interesse an Ihrem Shop; dieses Phänomen tritt häufig auf bei Suchmaschinen.';
-$_MODULE['<{statsvisits}prestashop>statsvisits_ae5d01b6efa819cc7a7c05a8c57fcc2c'] = 'Besucher';
-$_MODULE['<{statsvisits}prestashop>statsvisits_5d2b93d36c456f9dc204de59d789b777'] = 'Zeigt Statistiken über Ihre Besuche und Besucher an';
-$_MODULE['<{statsvisits}prestashop>statsvisits_f43a4cf6dcc4ec617d2296d03d26c90f'] = 'Ein Besucher ist eine unbekannte Person - die nicht registriert oder angemeldet ist - und in Ihrem Shop surft. Ein Besucher kann Ihren Shop mehrmals besuchen.';
-$_MODULE['<{statsvisits}prestashop>statsvisits_0dc434050b01c74f7a64820f84b9f464'] = 'Bestimmen Sie das Ziel eines Besuchs';
-$_MODULE['<{statsvisits}prestashop>statsvisits_b8901fb7bbfaf9b0c4724343c7cd1f90'] = 'Ein Besuch entspricht einem Internet-Benutzer, der Ihren Shop besucht. Bis zum Ende ihres Besuchs auf dieser Webseite wird nur ein Besuch gezählt.';
-$_MODULE['<{statsvisits}prestashop>statsvisits_54067074d24489ddb5654bf46642cb85'] = 'Besuche gesamt:';
-$_MODULE['<{statsvisits}prestashop>statsvisits_23e640d55e56db79971918936e95bf9d'] = 'Besucher gesamt:';
-$_MODULE['<{statsvisits}prestashop>statsvisits_e9849ece0b2ecf1eea74d92d492a47f2'] = 'Falls dies der Fall ist: Gratulation, Ihre Webseite ist gut durchdacht und gefällt.';
-$_MODULE['<{statsvisits}prestashop>statsvisits_39b960b0a5e2ebaaa638d946f1892050'] = 'Anzahl der Besuche und einmalige Besucher';
-$_MODULE['<{statsvisits}prestashop>statsvisits_d7e637a6e9ff116de2fa89551240a94d'] = 'Besuche';
diff --git a/modules/statsvisits/translations/en.php b/modules/statsvisits/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/statsvisits/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-statsvisits_998e4c5c80f27dec552e99dfed34889a'] = 'CSV Export';
-$_MODULE['<{statsvisits}prestashop>statsvisits_6602bbeb2956c035fb4cb5e844a4861b'] = 'Guía';
-$_MODULE['<{statsvisits}prestashop>statsvisits_9bf5a493522a65d550f096505874873b'] = 'Esta información es sobre todo cualitativa. Usted deberá determinar el interés de este tipo de visitas.';
-$_MODULE['<{statsvisits}prestashop>statsvisits_504c16c26a96283f91fb46a69b7c8153'] = 'Visitas y Visitantes';
-$_MODULE['<{statsvisits}prestashop>statsvisits_5d2b93d36c456f9dc204de59d789b777'] = 'Mostrar estadísticas sobre visitas y visitantes';
-$_MODULE['<{statsvisits}prestashop>statsvisits_e90d50ca1e68dc66c97bd62929dcbaf1'] = 'El gráfico de evolución visitantes es muy similar al gráfico de las visitas pero da información suplementaria';
-$_MODULE['<{statsvisits}prestashop>statsvisits_c745121a98cf1d5b26bc5299d9880d5c'] = 'En el caso contrario, la conclusión no es simple. El problema puede ser estético o ergonómico, o quizás la oferta sea insuficiente. También es posible que dichos visitantes hayan llegado a su sitio por error, sin interés particular por su tienda; este fenómeno ocurre con frecuencia con los motores de búsqueda.';
-$_MODULE['<{statsvisits}prestashop>statsvisits_ae5d01b6efa819cc7a7c05a8c57fcc2c'] = 'Visitantes';
-$_MODULE['<{statsvisits}prestashop>statsvisits_f43a4cf6dcc4ec617d2296d03d26c90f'] = 'Un visitante es una persona desconocida, que no se ha registrado ni abierto una sesión- que visita su tienda. Un visitante puede visitar su tienda varias veces.';
-$_MODULE['<{statsvisits}prestashop>statsvisits_0dc434050b01c74f7a64820f84b9f464'] = 'Determinar el interés de las visitas';
-$_MODULE['<{statsvisits}prestashop>statsvisits_b8901fb7bbfaf9b0c4724343c7cd1f90'] = 'Una visita corresponde a un usuario que visita su tienda. Hasta el final de la sesión se contabiliza una única visita.';
-$_MODULE['<{statsvisits}prestashop>statsvisits_54067074d24489ddb5654bf46642cb85'] = 'Total de visitas:';
-$_MODULE['<{statsvisits}prestashop>statsvisits_23e640d55e56db79971918936e95bf9d'] = 'Total de visitantes:';
-$_MODULE['<{statsvisits}prestashop>statsvisits_e9849ece0b2ecf1eea74d92d492a47f2'] = 'Si es el caso, enhorabuena, su sitio está bien pensado y resulta agradable.';
-$_MODULE['<{statsvisits}prestashop>statsvisits_39b960b0a5e2ebaaa638d946f1892050'] = 'Número de visitas y visitantes únicos';
-$_MODULE['<{statsvisits}prestashop>statsvisits_d7e637a6e9ff116de2fa89551240a94d'] = 'Visitas';
diff --git a/modules/statsvisits/translations/fr.php b/modules/statsvisits/translations/fr.php
deleted file mode 100644
index 2415ce5ed..000000000
--- a/modules/statsvisits/translations/fr.php
+++ /dev/null
@@ -1,21 +0,0 @@
-statsvisits_998e4c5c80f27dec552e99dfed34889a'] = 'Export CSV';
-$_MODULE['<{statsvisits}prestashop>statsvisits_6602bbeb2956c035fb4cb5e844a4861b'] = 'Guide';
-$_MODULE['<{statsvisits}prestashop>statsvisits_9bf5a493522a65d550f096505874873b'] = 'Cette information est surtout qualitative : c\'est à vous de déterminer l\'intérêt d\'une visite sans suite.';
-$_MODULE['<{statsvisits}prestashop>statsvisits_504c16c26a96283f91fb46a69b7c8153'] = 'Visites et visiteurs';
-$_MODULE['<{statsvisits}prestashop>statsvisits_5d2b93d36c456f9dc204de59d789b777'] = 'Propose des graphiques montrant l\'évolution de vos visites et visiteurs.';
-$_MODULE['<{statsvisits}prestashop>statsvisits_e90d50ca1e68dc66c97bd62929dcbaf1'] = 'Le graphique d\'évolution visiteurs ressemble fortement au graphique des visites, mais fournit des informations supplémentaires:';
-$_MODULE['<{statsvisits}prestashop>statsvisits_c745121a98cf1d5b26bc5299d9880d5c'] = 'Dans le cas contraire, la conclusion n\'est pas si simple. Le problème peut être esthétique ou ergonomique, ou alors l\'offre insuffisante. Il se peut également que ces visiteurs soient arrivées là par erreur, sans intérêt particulier pour votre boutique ; ce phénomène arrive couramment avec les moteurs de recherche.';
-$_MODULE['<{statsvisits}prestashop>statsvisits_ae5d01b6efa819cc7a7c05a8c57fcc2c'] = 'Visiteurs';
-$_MODULE['<{statsvisits}prestashop>statsvisits_f43a4cf6dcc4ec617d2296d03d26c90f'] = 'On appelle visiteur une personne inconnue - non inscrite ou non connectée - naviguant sur votre boutique. Un visiteur peut donc visiter votre boutique plusieurs fois.';
-$_MODULE['<{statsvisits}prestashop>statsvisits_0dc434050b01c74f7a64820f84b9f464'] = 'Déterminez l\'intérêt d\'une visite';
-$_MODULE['<{statsvisits}prestashop>statsvisits_54067074d24489ddb5654bf46642cb85'] = 'Nombre total de visites';
-$_MODULE['<{statsvisits}prestashop>statsvisits_b8901fb7bbfaf9b0c4724343c7cd1f90'] = 'Une visite correspond au passage d\'un internaute sur votre boutique. Une seule visite est comptée pour toute la durée de sa session.';
-$_MODULE['<{statsvisits}prestashop>statsvisits_23e640d55e56db79971918936e95bf9d'] = 'Nombre total de visiteurs';
-$_MODULE['<{statsvisits}prestashop>statsvisits_e9849ece0b2ecf1eea74d92d492a47f2'] = 'Si c\'est le cas, alors félicitations, votre site est bien conçu et plaît indéniablement.';
-$_MODULE['<{statsvisits}prestashop>statsvisits_39b960b0a5e2ebaaa638d946f1892050'] = 'Nombre de visites et visiteurs uniques';
-$_MODULE['<{statsvisits}prestashop>statsvisits_d7e637a6e9ff116de2fa89551240a94d'] = 'Visites';
diff --git a/modules/statsvisits/translations/it.php b/modules/statsvisits/translations/it.php
deleted file mode 100644
index 04f1ae3ea..000000000
--- a/modules/statsvisits/translations/it.php
+++ /dev/null
@@ -1,21 +0,0 @@
-statsvisits_998e4c5c80f27dec552e99dfed34889a'] = 'Esporta CSV';
-$_MODULE['<{statsvisits}prestashop>statsvisits_6602bbeb2956c035fb4cb5e844a4861b'] = 'Guida';
-$_MODULE['<{statsvisits}prestashop>statsvisits_9bf5a493522a65d550f096505874873b'] = 'Questa informazione è prevalentemente qualitativa: è necessario determinare l\'interesse di una visita errata.';
-$_MODULE['<{statsvisits}prestashop>statsvisits_504c16c26a96283f91fb46a69b7c8153'] = 'Visite e visitatori';
-$_MODULE['<{statsvisits}prestashop>statsvisits_5d2b93d36c456f9dc204de59d789b777'] = 'Visualizza le statistiche relative alle visite e visitatori';
-$_MODULE['<{statsvisits}prestashop>statsvisits_e90d50ca1e68dc66c97bd62929dcbaf1'] = 'Il grafico di evoluzione dei visitatori ricorda molto il grafico delle visite, ma fornisce ulteriori informazioni:';
-$_MODULE['<{statsvisits}prestashop>statsvisits_c745121a98cf1d5b26bc5299d9880d5c'] = 'In caso contrario, la conclusione non è così semplice. Il problema può essere estetico o ergonomico, oppure l\'offerta non è sufficiente. E\' anche possibile che questi visitatori sono arrivati qui per errore, senza particolare interesse per il tuo negozio, questo fenomeno spesso accade con i motori di ricerca.';
-$_MODULE['<{statsvisits}prestashop>statsvisits_ae5d01b6efa819cc7a7c05a8c57fcc2c'] = 'Visitatori';
-$_MODULE['<{statsvisits}prestashop>statsvisits_f43a4cf6dcc4ec617d2296d03d26c90f'] = 'Un visitatore è una persona sconosciuta - che non si è registrata o iscritta - e naviga nel tuo negozio. Un visitatore può venire a visitare il tuo negozio molte volte.';
-$_MODULE['<{statsvisits}prestashop>statsvisits_0dc434050b01c74f7a64820f84b9f464'] = 'Determinare l\'interesse di una visita';
-$_MODULE['<{statsvisits}prestashop>statsvisits_b8901fb7bbfaf9b0c4724343c7cd1f90'] = 'Una visita corrisponde ad un utente di Internet che viene nel tuo negozio. Fino alla fine della sessione, una sola visita viene conteggiata.';
-$_MODULE['<{statsvisits}prestashop>statsvisits_54067074d24489ddb5654bf46642cb85'] = 'Visite totali:';
-$_MODULE['<{statsvisits}prestashop>statsvisits_23e640d55e56db79971918936e95bf9d'] = 'Totale visitatori:';
-$_MODULE['<{statsvisits}prestashop>statsvisits_e9849ece0b2ecf1eea74d92d492a47f2'] = 'Se questo è il caso, complimenti, il tuo sito è ben congegnato e piacevole.';
-$_MODULE['<{statsvisits}prestashop>statsvisits_39b960b0a5e2ebaaa638d946f1892050'] = 'Numero di visite e visitatori unici';
-$_MODULE['<{statsvisits}prestashop>statsvisits_d7e637a6e9ff116de2fa89551240a94d'] = 'Visite';
diff --git a/modules/trackingfront/translations/de.php b/modules/trackingfront/translations/de.php
deleted file mode 100644
index 3330acdbc..000000000
--- a/modules/trackingfront/translations/de.php
+++ /dev/null
@@ -1,52 +0,0 @@
-account_0323de4f66a1700e2173e9bcdce02715'] = 'Abmelden';
-$_MODULE['<{trackingfront}prestashop>account_1dd1c5fb7f25cd41b291d43a89e3aefd'] = 'Heute';
-$_MODULE['<{trackingfront}prestashop>account_49ee3087348e8d44e1feda1917443987'] = 'Name';
-$_MODULE['<{trackingfront}prestashop>account_d7e637a6e9ff116de2fa89551240a94d'] = 'Besuche';
-$_MODULE['<{trackingfront}prestashop>account_a85eba4c6c699122b2bb1387ea4813ad'] = 'Warenkorb';
-$_MODULE['<{trackingfront}prestashop>account_b450fdef2453e92c31263a70f14fbd7b'] = '¤';
-$_MODULE['<{trackingfront}prestashop>login_8954e140059f7b2544469f40161ba507'] = 'Mitgliederbereich';
-$_MODULE['<{trackingfront}prestashop>trackingfront_a28735af01fbb1e35371cb120985ac47'] = 'Anmeldungen';
-$_MODULE['<{trackingfront}prestashop>trackingfront_51d53cd2ecdae6b5dd3397875197e898'] = 'Klick-Gebühr';
-$_MODULE['<{trackingfront}prestashop>account_1e6d57e813355689e9c77e947d73ad8f'] = 'Von:';
-$_MODULE['<{trackingfront}prestashop>account_b718adec73e04ce3ec720dd11a06a308'] = 'ID';
-$_MODULE['<{trackingfront}prestashop>account_ae5d01b6efa819cc7a7c05a8c57fcc2c'] = 'Besucher';
-$_MODULE['<{trackingfront}prestashop>account_0bcef9c45bd8a48eda1b26eb0c61c869'] = '%';
-$_MODULE['<{trackingfront}prestashop>login_dc647eb65e6711e155375218212b3964'] = 'Kennwort';
-$_MODULE['<{trackingfront}prestashop>trackingfront_703c2b69e5d9f7072b7db5338214448b'] = 'ungültiges Kennwort';
-$_MODULE['<{trackingfront}prestashop>trackingfront_ae5d01b6efa819cc7a7c05a8c57fcc2c'] = 'Besucher';
-$_MODULE['<{trackingfront}prestashop>trackingfront_86190054fc32554662ffbb12b717e8d0'] = 'Prozent-Gebühr';
-$_MODULE['<{trackingfront}prestashop>trackingfront_11ff9f68afb6b8b5b8eda218d7c83a65'] = 'Verkäufe';
-$_MODULE['<{trackingfront}prestashop>trackingfront_89741aae300253f498b0993fa678fa18'] = 'Bestellrate';
-$_MODULE['<{trackingfront}prestashop>account_8954e140059f7b2544469f40161ba507'] = 'Mitgliederbereich';
-$_MODULE['<{trackingfront}prestashop>account_537c66b24ef5c83b7382cdc3f34885f2'] = 'Jahr';
-$_MODULE['<{trackingfront}prestashop>account_453aceb005ceaf54a47da15fee8b2a26'] = 'Seiten';
-$_MODULE['<{trackingfront}prestashop>account_43005b13d452a4ad6f2d8e29b499c55a'] = 'Reg.-Rate';
-$_MODULE['<{trackingfront}prestashop>account_e14c8640d236365d11a060832b219a11'] = 'Best.-Rate';
-$_MODULE['<{trackingfront}prestashop>header_bf15e68d25d8a2b7664950ba7385ed0a'] = 'Mitgliedschaft';
-$_MODULE['<{trackingfront}prestashop>trackingfront_68d4e1b474858937b300e27273283f41'] = 'Ermöglichen Sie Ihren Mitgliedern, auf ihre eigenen Statistiken zugreifen.';
-$_MODULE['<{trackingfront}prestashop>trackingfront_6f658a5bbec855ca5ae4ef4c94eb5d43'] = 'ungültige Anmeldung';
-$_MODULE['<{trackingfront}prestashop>trackingfront_962c91be4b1056412febf0c272760814'] = 'Kennwort ist erforderlich';
-$_MODULE['<{trackingfront}prestashop>trackingfront_10965b2740f42ad4887932c35cee26ab'] = 'Einmalige Besucher';
-$_MODULE['<{trackingfront}prestashop>trackingfront_200f5c9c419f0a53d5d361eff7b33abc'] = 'Anmeldungsrate';
-$_MODULE['<{trackingfront}prestashop>trackingfront_8f5ac7793b2547cd025a7335f4934d26'] = 'Anmeldung ist erforderlich';
-$_MODULE['<{trackingfront}prestashop>trackingfront_d3139f39f1ad6324c80a9ddd50cc7867'] = 'Setenaufrufe';
-$_MODULE['<{trackingfront}prestashop>account_7cbb885aa1164b390a0bc050a64e1812'] = 'Monat';
-$_MODULE['<{trackingfront}prestashop>account_33caa076f23f453dd4061726f3706325'] = 'An:';
-$_MODULE['<{trackingfront}prestashop>account_591411cc8927851db2002208676d8330'] = 'Reg.';
-$_MODULE['<{trackingfront}prestashop>account_a9841e29f2c8180709b16cd2a13c55fe'] = 'Best.';
-$_MODULE['<{trackingfront}prestashop>account_11ff9f68afb6b8b5b8eda218d7c83a65'] = 'Verkäufe';
-$_MODULE['<{trackingfront}prestashop>account_316853cc3718335f11c048e33b9be98a'] = 'Klicken Sie auf';
-$_MODULE['<{trackingfront}prestashop>login_bf15e68d25d8a2b7664950ba7385ed0a'] = 'Mitgliedschaft';
-$_MODULE['<{trackingfront}prestashop>login_99dea78007133396a7b8ed70578ac6ae'] = 'Anmelden';
-$_MODULE['<{trackingfront}prestashop>login_bffe9a3c9a7e00ba00a11749e022d911'] = 'Anmelden';
-$_MODULE['<{trackingfront}prestashop>trackingfront_e8a827db4eca37d2c6cdef8e406f6fa9'] = 'Tracking - Front Office';
-$_MODULE['<{trackingfront}prestashop>trackingfront_c41c77e4dddc04b1e0752a6050ae5656'] = 'Authentifizierung fehlgeschlagen';
-$_MODULE['<{trackingfront}prestashop>trackingfront_d7e637a6e9ff116de2fa89551240a94d'] = 'Besuche';
-$_MODULE['<{trackingfront}prestashop>trackingfront_7442e29d7d53e549b78d93c46b8cdcfc'] = 'Bestellungen';
-$_MODULE['<{trackingfront}prestashop>trackingfront_2e27c4006a026eacfc1f85b41bf9bc4c'] = 'Grundgebühr';
-$_MODULE['<{trackingfront}prestashop>trackingfront_da9cb586c6689202ca65cd77fd9b84ef'] = 'Durchschnittlicher Warenkorb';
diff --git a/modules/trackingfront/translations/en.php b/modules/trackingfront/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/trackingfront/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-account_0323de4f66a1700e2173e9bcdce02715'] = 'Identificarse';
-$_MODULE['<{trackingfront}prestashop>account_1dd1c5fb7f25cd41b291d43a89e3aefd'] = 'Hoy';
-$_MODULE['<{trackingfront}prestashop>account_49ee3087348e8d44e1feda1917443987'] = 'Nombre';
-$_MODULE['<{trackingfront}prestashop>account_d7e637a6e9ff116de2fa89551240a94d'] = 'Visitas';
-$_MODULE['<{trackingfront}prestashop>account_a85eba4c6c699122b2bb1387ea4813ad'] = 'carrito';
-$_MODULE['<{trackingfront}prestashop>account_b450fdef2453e92c31263a70f14fbd7b'] = '¤';
-$_MODULE['<{trackingfront}prestashop>login_8954e140059f7b2544469f40161ba507'] = 'Espacio afiliación';
-$_MODULE['<{trackingfront}prestashop>trackingfront_a28735af01fbb1e35371cb120985ac47'] = 'Registros';
-$_MODULE['<{trackingfront}prestashop>trackingfront_51d53cd2ecdae6b5dd3397875197e898'] = 'Comisión por clic';
-$_MODULE['<{trackingfront}prestashop>account_1e6d57e813355689e9c77e947d73ad8f'] = 'De:';
-$_MODULE['<{trackingfront}prestashop>account_b718adec73e04ce3ec720dd11a06a308'] = 'ID';
-$_MODULE['<{trackingfront}prestashop>account_ae5d01b6efa819cc7a7c05a8c57fcc2c'] = 'Visitantes';
-$_MODULE['<{trackingfront}prestashop>account_0bcef9c45bd8a48eda1b26eb0c61c869'] = '%';
-$_MODULE['<{trackingfront}prestashop>login_dc647eb65e6711e155375218212b3964'] = 'Contraseña';
-$_MODULE['<{trackingfront}prestashop>trackingfront_703c2b69e5d9f7072b7db5338214448b'] = 'contraseña no válida';
-$_MODULE['<{trackingfront}prestashop>trackingfront_ae5d01b6efa819cc7a7c05a8c57fcc2c'] = 'Visitantes';
-$_MODULE['<{trackingfront}prestashop>trackingfront_86190054fc32554662ffbb12b717e8d0'] = 'Comisión en porcentaje';
-$_MODULE['<{trackingfront}prestashop>trackingfront_11ff9f68afb6b8b5b8eda218d7c83a65'] = 'Ventas';
-$_MODULE['<{trackingfront}prestashop>trackingfront_89741aae300253f498b0993fa678fa18'] = 'Evolución pedidos';
-$_MODULE['<{trackingfront}prestashop>account_8954e140059f7b2544469f40161ba507'] = 'Espacio afiliación';
-$_MODULE['<{trackingfront}prestashop>account_537c66b24ef5c83b7382cdc3f34885f2'] = 'Año';
-$_MODULE['<{trackingfront}prestashop>account_453aceb005ceaf54a47da15fee8b2a26'] = 'Páginas';
-$_MODULE['<{trackingfront}prestashop>account_43005b13d452a4ad6f2d8e29b499c55a'] = 'evolución Reg.';
-$_MODULE['<{trackingfront}prestashop>account_e14c8640d236365d11a060832b219a11'] = 'pedido Reg.';
-$_MODULE['<{trackingfront}prestashop>header_bf15e68d25d8a2b7664950ba7385ed0a'] = 'Afiliación';
-$_MODULE['<{trackingfront}prestashop>trackingfront_68d4e1b474858937b300e27273283f41'] = 'Permitir a sus afiliados a tener acceso a sus estadísticas.';
-$_MODULE['<{trackingfront}prestashop>trackingfront_8f5ac7793b2547cd025a7335f4934d26'] = 'El login es necesario';
-$_MODULE['<{trackingfront}prestashop>trackingfront_6f658a5bbec855ca5ae4ef4c94eb5d43'] = 'login no válido';
-$_MODULE['<{trackingfront}prestashop>trackingfront_962c91be4b1056412febf0c272760814'] = 'se necesita una contraseña';
-$_MODULE['<{trackingfront}prestashop>trackingfront_10965b2740f42ad4887932c35cee26ab'] = 'Visitantes únicos';
-$_MODULE['<{trackingfront}prestashop>trackingfront_d3139f39f1ad6324c80a9ddd50cc7867'] = 'Páginas vistas';
-$_MODULE['<{trackingfront}prestashop>trackingfront_200f5c9c419f0a53d5d361eff7b33abc'] = 'Evolución de registros';
-$_MODULE['<{trackingfront}prestashop>account_7cbb885aa1164b390a0bc050a64e1812'] = 'Mes';
-$_MODULE['<{trackingfront}prestashop>account_33caa076f23f453dd4061726f3706325'] = 'a:';
-$_MODULE['<{trackingfront}prestashop>account_591411cc8927851db2002208676d8330'] = 'Reg.';
-$_MODULE['<{trackingfront}prestashop>account_a9841e29f2c8180709b16cd2a13c55fe'] = 'Pedido';
-$_MODULE['<{trackingfront}prestashop>account_11ff9f68afb6b8b5b8eda218d7c83a65'] = 'Ventas';
-$_MODULE['<{trackingfront}prestashop>account_316853cc3718335f11c048e33b9be98a'] = 'clic';
-$_MODULE['<{trackingfront}prestashop>login_bf15e68d25d8a2b7664950ba7385ed0a'] = 'Afiliación';
-$_MODULE['<{trackingfront}prestashop>login_99dea78007133396a7b8ed70578ac6ae'] = 'Login';
-$_MODULE['<{trackingfront}prestashop>login_bffe9a3c9a7e00ba00a11749e022d911'] = 'Log in';
-$_MODULE['<{trackingfront}prestashop>trackingfront_e8a827db4eca37d2c6cdef8e406f6fa9'] = 'Tracking-Front office';
-$_MODULE['<{trackingfront}prestashop>trackingfront_c41c77e4dddc04b1e0752a6050ae5656'] = 'autentificación errónea';
-$_MODULE['<{trackingfront}prestashop>trackingfront_d7e637a6e9ff116de2fa89551240a94d'] = 'Visitas';
-$_MODULE['<{trackingfront}prestashop>trackingfront_7442e29d7d53e549b78d93c46b8cdcfc'] = 'Pedidos';
-$_MODULE['<{trackingfront}prestashop>trackingfront_2e27c4006a026eacfc1f85b41bf9bc4c'] = 'Comisión de base';
-$_MODULE['<{trackingfront}prestashop>trackingfront_da9cb586c6689202ca65cd77fd9b84ef'] = 'Carrito medio';
diff --git a/modules/trackingfront/translations/fr.php b/modules/trackingfront/translations/fr.php
deleted file mode 100644
index 79ef33ae5..000000000
--- a/modules/trackingfront/translations/fr.php
+++ /dev/null
@@ -1,52 +0,0 @@
-account_0323de4f66a1700e2173e9bcdce02715'] = 'Déconnexion';
-$_MODULE['<{trackingfront}prestashop>account_1dd1c5fb7f25cd41b291d43a89e3aefd'] = 'Aujourd\'hui';
-$_MODULE['<{trackingfront}prestashop>account_49ee3087348e8d44e1feda1917443987'] = 'Nom';
-$_MODULE['<{trackingfront}prestashop>account_d7e637a6e9ff116de2fa89551240a94d'] = 'Visites';
-$_MODULE['<{trackingfront}prestashop>account_a85eba4c6c699122b2bb1387ea4813ad'] = 'Panier';
-$_MODULE['<{trackingfront}prestashop>account_b450fdef2453e92c31263a70f14fbd7b'] = '¤';
-$_MODULE['<{trackingfront}prestashop>login_8954e140059f7b2544469f40161ba507'] = 'Espace affilié';
-$_MODULE['<{trackingfront}prestashop>trackingfront_a28735af01fbb1e35371cb120985ac47'] = 'Inscriptions';
-$_MODULE['<{trackingfront}prestashop>trackingfront_51d53cd2ecdae6b5dd3397875197e898'] = 'Commission au clic';
-$_MODULE['<{trackingfront}prestashop>account_1e6d57e813355689e9c77e947d73ad8f'] = 'Du :';
-$_MODULE['<{trackingfront}prestashop>account_b718adec73e04ce3ec720dd11a06a308'] = 'ID';
-$_MODULE['<{trackingfront}prestashop>account_ae5d01b6efa819cc7a7c05a8c57fcc2c'] = 'Visiteurs';
-$_MODULE['<{trackingfront}prestashop>account_0bcef9c45bd8a48eda1b26eb0c61c869'] = '%';
-$_MODULE['<{trackingfront}prestashop>login_dc647eb65e6711e155375218212b3964'] = 'Mot de passe';
-$_MODULE['<{trackingfront}prestashop>trackingfront_703c2b69e5d9f7072b7db5338214448b'] = 'mot de passe non valable';
-$_MODULE['<{trackingfront}prestashop>trackingfront_ae5d01b6efa819cc7a7c05a8c57fcc2c'] = 'Visiteurs';
-$_MODULE['<{trackingfront}prestashop>trackingfront_86190054fc32554662ffbb12b717e8d0'] = 'Commission %';
-$_MODULE['<{trackingfront}prestashop>trackingfront_11ff9f68afb6b8b5b8eda218d7c83a65'] = 'Ventes';
-$_MODULE['<{trackingfront}prestashop>trackingfront_89741aae300253f498b0993fa678fa18'] = 'Taux de commandes';
-$_MODULE['<{trackingfront}prestashop>account_8954e140059f7b2544469f40161ba507'] = 'Espace affilié';
-$_MODULE['<{trackingfront}prestashop>account_537c66b24ef5c83b7382cdc3f34885f2'] = 'Année';
-$_MODULE['<{trackingfront}prestashop>account_453aceb005ceaf54a47da15fee8b2a26'] = 'Pages vues';
-$_MODULE['<{trackingfront}prestashop>account_43005b13d452a4ad6f2d8e29b499c55a'] = 'Tx insc.';
-$_MODULE['<{trackingfront}prestashop>account_e14c8640d236365d11a060832b219a11'] = 'Tx com.';
-$_MODULE['<{trackingfront}prestashop>header_bf15e68d25d8a2b7664950ba7385ed0a'] = 'Affiliation';
-$_MODULE['<{trackingfront}prestashop>trackingfront_68d4e1b474858937b300e27273283f41'] = 'Permet aux affiliés de consulter leurs statistiques.';
-$_MODULE['<{trackingfront}prestashop>trackingfront_8f5ac7793b2547cd025a7335f4934d26'] = 'identifiant requis';
-$_MODULE['<{trackingfront}prestashop>trackingfront_6f658a5bbec855ca5ae4ef4c94eb5d43'] = 'identifiant non valable';
-$_MODULE['<{trackingfront}prestashop>trackingfront_962c91be4b1056412febf0c272760814'] = 'mot de passe requis';
-$_MODULE['<{trackingfront}prestashop>trackingfront_10965b2740f42ad4887932c35cee26ab'] = 'Visiteurs uniques';
-$_MODULE['<{trackingfront}prestashop>trackingfront_d3139f39f1ad6324c80a9ddd50cc7867'] = 'Pages vues';
-$_MODULE['<{trackingfront}prestashop>trackingfront_200f5c9c419f0a53d5d361eff7b33abc'] = 'Taux d\'inscription';
-$_MODULE['<{trackingfront}prestashop>account_33caa076f23f453dd4061726f3706325'] = 'au :';
-$_MODULE['<{trackingfront}prestashop>account_591411cc8927851db2002208676d8330'] = 'Inscriptions';
-$_MODULE['<{trackingfront}prestashop>account_a9841e29f2c8180709b16cd2a13c55fe'] = 'Com.';
-$_MODULE['<{trackingfront}prestashop>account_11ff9f68afb6b8b5b8eda218d7c83a65'] = 'Ventes';
-$_MODULE['<{trackingfront}prestashop>account_316853cc3718335f11c048e33b9be98a'] = 'Clics';
-$_MODULE['<{trackingfront}prestashop>account_7cbb885aa1164b390a0bc050a64e1812'] = 'Mois';
-$_MODULE['<{trackingfront}prestashop>login_bf15e68d25d8a2b7664950ba7385ed0a'] = 'Affiliation';
-$_MODULE['<{trackingfront}prestashop>login_bffe9a3c9a7e00ba00a11749e022d911'] = 'Connexion';
-$_MODULE['<{trackingfront}prestashop>trackingfront_e8a827db4eca37d2c6cdef8e406f6fa9'] = 'Affiliation - Accès boutique';
-$_MODULE['<{trackingfront}prestashop>trackingfront_c41c77e4dddc04b1e0752a6050ae5656'] = 'identifiation échouée';
-$_MODULE['<{trackingfront}prestashop>trackingfront_d7e637a6e9ff116de2fa89551240a94d'] = 'Visites';
-$_MODULE['<{trackingfront}prestashop>trackingfront_7442e29d7d53e549b78d93c46b8cdcfc'] = 'Commandes';
-$_MODULE['<{trackingfront}prestashop>trackingfront_2e27c4006a026eacfc1f85b41bf9bc4c'] = 'Commission €';
-$_MODULE['<{trackingfront}prestashop>trackingfront_da9cb586c6689202ca65cd77fd9b84ef'] = 'Panier moyen';
-$_MODULE['<{trackingfront}prestashop>login_99dea78007133396a7b8ed70578ac6ae'] = 'Identifiant';
diff --git a/modules/trackingfront/translations/it.php b/modules/trackingfront/translations/it.php
deleted file mode 100644
index 881c080d7..000000000
--- a/modules/trackingfront/translations/it.php
+++ /dev/null
@@ -1,52 +0,0 @@
-account_0323de4f66a1700e2173e9bcdce02715'] = 'Logout';
-$_MODULE['<{trackingfront}prestashop>account_1dd1c5fb7f25cd41b291d43a89e3aefd'] = 'Oggi';
-$_MODULE['<{trackingfront}prestashop>account_49ee3087348e8d44e1feda1917443987'] = 'Nome';
-$_MODULE['<{trackingfront}prestashop>account_d7e637a6e9ff116de2fa89551240a94d'] = 'Visite';
-$_MODULE['<{trackingfront}prestashop>account_a85eba4c6c699122b2bb1387ea4813ad'] = 'Carrello';
-$_MODULE['<{trackingfront}prestashop>account_b450fdef2453e92c31263a70f14fbd7b'] = '¤';
-$_MODULE['<{trackingfront}prestashop>login_8954e140059f7b2544469f40161ba507'] = 'Spazio affiliazione';
-$_MODULE['<{trackingfront}prestashop>trackingfront_a28735af01fbb1e35371cb120985ac47'] = 'Registrazioni';
-$_MODULE['<{trackingfront}prestashop>trackingfront_51d53cd2ecdae6b5dd3397875197e898'] = 'Tariffa clic';
-$_MODULE['<{trackingfront}prestashop>account_1e6d57e813355689e9c77e947d73ad8f'] = 'Da:';
-$_MODULE['<{trackingfront}prestashop>account_b718adec73e04ce3ec720dd11a06a308'] = 'ID';
-$_MODULE['<{trackingfront}prestashop>account_ae5d01b6efa819cc7a7c05a8c57fcc2c'] = 'Visitatori';
-$_MODULE['<{trackingfront}prestashop>account_0bcef9c45bd8a48eda1b26eb0c61c869'] = '%';
-$_MODULE['<{trackingfront}prestashop>login_dc647eb65e6711e155375218212b3964'] = 'Password';
-$_MODULE['<{trackingfront}prestashop>trackingfront_703c2b69e5d9f7072b7db5338214448b'] = 'password non valida';
-$_MODULE['<{trackingfront}prestashop>trackingfront_ae5d01b6efa819cc7a7c05a8c57fcc2c'] = 'Visitatori';
-$_MODULE['<{trackingfront}prestashop>trackingfront_86190054fc32554662ffbb12b717e8d0'] = 'Tariffa percentuale';
-$_MODULE['<{trackingfront}prestashop>trackingfront_11ff9f68afb6b8b5b8eda218d7c83a65'] = 'Vendite';
-$_MODULE['<{trackingfront}prestashop>trackingfront_89741aae300253f498b0993fa678fa18'] = 'Tasso ordini';
-$_MODULE['<{trackingfront}prestashop>account_8954e140059f7b2544469f40161ba507'] = 'Spazio affiliazione';
-$_MODULE['<{trackingfront}prestashop>account_537c66b24ef5c83b7382cdc3f34885f2'] = 'Anno';
-$_MODULE['<{trackingfront}prestashop>account_453aceb005ceaf54a47da15fee8b2a26'] = 'Pagine';
-$_MODULE['<{trackingfront}prestashop>account_43005b13d452a4ad6f2d8e29b499c55a'] = 'Tasso di reg.';
-$_MODULE['<{trackingfront}prestashop>account_e14c8640d236365d11a060832b219a11'] = 'Tasso di ord.';
-$_MODULE['<{trackingfront}prestashop>header_bf15e68d25d8a2b7664950ba7385ed0a'] = 'Affiliazione';
-$_MODULE['<{trackingfront}prestashop>trackingfront_68d4e1b474858937b300e27273283f41'] = 'Permetti ai tuoi affiliati di accedere alle proprie statistiche.';
-$_MODULE['<{trackingfront}prestashop>trackingfront_8f5ac7793b2547cd025a7335f4934d26'] = 'È richiesto il login';
-$_MODULE['<{trackingfront}prestashop>trackingfront_6f658a5bbec855ca5ae4ef4c94eb5d43'] = 'accesso non valido';
-$_MODULE['<{trackingfront}prestashop>trackingfront_962c91be4b1056412febf0c272760814'] = 'è richiesta la password';
-$_MODULE['<{trackingfront}prestashop>trackingfront_10965b2740f42ad4887932c35cee26ab'] = 'Visitatori unici';
-$_MODULE['<{trackingfront}prestashop>trackingfront_d3139f39f1ad6324c80a9ddd50cc7867'] = 'Pagine viste';
-$_MODULE['<{trackingfront}prestashop>trackingfront_200f5c9c419f0a53d5d361eff7b33abc'] = 'Tasso registrazione';
-$_MODULE['<{trackingfront}prestashop>account_7cbb885aa1164b390a0bc050a64e1812'] = 'Mese';
-$_MODULE['<{trackingfront}prestashop>account_33caa076f23f453dd4061726f3706325'] = 'A:';
-$_MODULE['<{trackingfront}prestashop>account_591411cc8927851db2002208676d8330'] = 'Reg.';
-$_MODULE['<{trackingfront}prestashop>account_a9841e29f2c8180709b16cd2a13c55fe'] = 'Ord.';
-$_MODULE['<{trackingfront}prestashop>account_11ff9f68afb6b8b5b8eda218d7c83a65'] = 'Vendite';
-$_MODULE['<{trackingfront}prestashop>account_316853cc3718335f11c048e33b9be98a'] = 'Fare clic su';
-$_MODULE['<{trackingfront}prestashop>login_bf15e68d25d8a2b7664950ba7385ed0a'] = 'Affiliazione';
-$_MODULE['<{trackingfront}prestashop>login_99dea78007133396a7b8ed70578ac6ae'] = 'Login';
-$_MODULE['<{trackingfront}prestashop>login_bffe9a3c9a7e00ba00a11749e022d911'] = 'Entra';
-$_MODULE['<{trackingfront}prestashop>trackingfront_e8a827db4eca37d2c6cdef8e406f6fa9'] = 'Tracking - Front office';
-$_MODULE['<{trackingfront}prestashop>trackingfront_c41c77e4dddc04b1e0752a6050ae5656'] = 'autenticazione fallita';
-$_MODULE['<{trackingfront}prestashop>trackingfront_d7e637a6e9ff116de2fa89551240a94d'] = 'Visite';
-$_MODULE['<{trackingfront}prestashop>trackingfront_7442e29d7d53e549b78d93c46b8cdcfc'] = 'Ordini';
-$_MODULE['<{trackingfront}prestashop>trackingfront_2e27c4006a026eacfc1f85b41bf9bc4c'] = 'Tariffa di base';
-$_MODULE['<{trackingfront}prestashop>trackingfront_da9cb586c6689202ca65cd77fd9b84ef'] = 'Carrello medio';
diff --git a/modules/vatnumber/translations/de.php b/modules/vatnumber/translations/de.php
deleted file mode 100644
index a0b9428f6..000000000
--- a/modules/vatnumber/translations/de.php
+++ /dev/null
@@ -1,16 +0,0 @@
-vatnumber_162b29cf61678af2aaac37f440265c28'] = 'Ihr Land wurde aktualisiert.';
-$_MODULE['<{vatnumber}prestashop>vatnumber_0ca51bcd22e4d7b56b6f1d8a01cefc1f'] = 'Die Überprüfung der MwSt.-Identifikationsnummer mit dem WebService ist nun aktiviert.';
-$_MODULE['<{vatnumber}prestashop>vatnumber_56564e0a106b0e0e2dc57b5a105ed639'] = 'Ihr Land';
-$_MODULE['<{vatnumber}prestashop>vatnumber_ab73ac60f122e6493f53ba7699ae2139'] = 'Aktivieren Sie die Überprüfung der MwSt.-Identifikationsnummer mit dem WebService';
-$_MODULE['<{vatnumber}prestashop>vatnumber_daa44329eceb03dc085a668376af07f5'] = 'Aktivieren Sie die Eingabe der Mehrwertsteuer innergemeinschaftlichen beim Anlegen der Adresse (Sie müssen im entsprechenden Feld ausfüllen, um keyboarding Umsatzsteuer-Identifikationsnummer zu ermöglichen)';
-$_MODULE['<{vatnumber}prestashop>vatnumber_467c214bb76759108ece49873eda44e4'] = 'Die Überprüfung der MwSt.-Identifikationsnummer mit dem WebService ist nun deaktiviert.';
-$_MODULE['<{vatnumber}prestashop>vatnumber_b0b9a606a1c251323825ca45d40964dc'] = 'Kein Standardland festgesetzt.';
-$_MODULE['<{vatnumber}prestashop>vatnumber_038b34b36ec9eaf5f96d11e17f208f1b'] = '- Wählen Sie ein Land -';
-$_MODULE['<{vatnumber}prestashop>vatnumber_38fb7d24e0d60a048f540ecb18e13376'] = 'Speichern';
-$_MODULE['<{vatnumber}prestashop>vatnumber_cee549912e318726d2c4989bb507665f'] = 'Europäische MwSt.-Identifikationsnummer';
-$_MODULE['<{vatnumber}prestashop>vatnumber_0a57ec92318a15681fb878bc2931480c'] = 'Die Überprüfung durch den Webservice ist langsam. Das Aktivieren dieser Option kann Ihren Shop verlangsamen.';
diff --git a/modules/vatnumber/translations/en.php b/modules/vatnumber/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/vatnumber/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-vatnumber_162b29cf61678af2aaac37f440265c28'] = 'Actualización de su país.';
-$_MODULE['<{vatnumber}prestashop>vatnumber_0ca51bcd22e4d7b56b6f1d8a01cefc1f'] = 'La comprobación del número de IVA con el WebService se encuentra activada.';
-$_MODULE['<{vatnumber}prestashop>vatnumber_56564e0a106b0e0e2dc57b5a105ed639'] = 'Su país';
-$_MODULE['<{vatnumber}prestashop>vatnumber_ab73ac60f122e6493f53ba7699ae2139'] = 'Activar la comprobación del número de IVA con el WebService';
-$_MODULE['<{vatnumber}prestashop>vatnumber_daa44329eceb03dc085a668376af07f5'] = 'Permite proporcionar el número de IVA intracomunitario enel momento de crear una dirección (Rellenar previamente el campo \\"Empresa\\" para poder introducir el número de IVA)';
-$_MODULE['<{vatnumber}prestashop>vatnumber_467c214bb76759108ece49873eda44e4'] = 'La comprobación del número de IVA con el WebService se encuentra desactivada.';
-$_MODULE['<{vatnumber}prestashop>vatnumber_b0b9a606a1c251323825ca45d40964dc'] = 'No hay pais por defecto';
-$_MODULE['<{vatnumber}prestashop>vatnumber_038b34b36ec9eaf5f96d11e17f208f1b'] = '--Elija un país--';
-$_MODULE['<{vatnumber}prestashop>vatnumber_38fb7d24e0d60a048f540ecb18e13376'] = 'Guardar';
-$_MODULE['<{vatnumber}prestashop>vatnumber_cee549912e318726d2c4989bb507665f'] = 'Número de IVA europeo';
-$_MODULE['<{vatnumber}prestashop>vatnumber_0a57ec92318a15681fb878bc2931480c'] = 'La comprobación del número de IVA con el WebService es lenta. Activar esta opción puede ralentizar su tienda.';
diff --git a/modules/vatnumber/translations/fr.php b/modules/vatnumber/translations/fr.php
deleted file mode 100755
index 4b12313db..000000000
--- a/modules/vatnumber/translations/fr.php
+++ /dev/null
@@ -1,16 +0,0 @@
-vatnumber_162b29cf61678af2aaac37f440265c28'] = 'Votre pays a été mis à jour.';
-$_MODULE['<{vatnumber}prestashop>vatnumber_0ca51bcd22e4d7b56b6f1d8a01cefc1f'] = 'La vérification du numéro de TVA avec le service web est maintenant activé.';
-$_MODULE['<{vatnumber}prestashop>vatnumber_56564e0a106b0e0e2dc57b5a105ed639'] = 'Votre pays';
-$_MODULE['<{vatnumber}prestashop>vatnumber_ab73ac60f122e6493f53ba7699ae2139'] = 'Activer la vérification du numéro de TVA avec le service web';
-$_MODULE['<{vatnumber}prestashop>vatnumber_daa44329eceb03dc085a668376af07f5'] = 'Permet de renseigner son numéro de TVA intra-communautaire lors de la création d\'une adresse (vous devez d\'abord renseigner le champ \\"Société\\" pour pouvoir saisir votre numéro de TVA)';
-$_MODULE['<{vatnumber}prestashop>vatnumber_467c214bb76759108ece49873eda44e4'] = 'La vérification du numéro de TVA avec le service web est maintenant désactivé.';
-$_MODULE['<{vatnumber}prestashop>vatnumber_b0b9a606a1c251323825ca45d40964dc'] = 'Pas de pays par défaut sélectionné.';
-$_MODULE['<{vatnumber}prestashop>vatnumber_038b34b36ec9eaf5f96d11e17f208f1b'] = '-- Choisissez un pays --';
-$_MODULE['<{vatnumber}prestashop>vatnumber_38fb7d24e0d60a048f540ecb18e13376'] = 'Enregistrer';
-$_MODULE['<{vatnumber}prestashop>vatnumber_cee549912e318726d2c4989bb507665f'] = 'Numéro de TVA Européen';
-$_MODULE['<{vatnumber}prestashop>vatnumber_0a57ec92318a15681fb878bc2931480c'] = 'La vérification du numéro de TVA avec le service web est lente. Activer cette option peut ralentir votre boutique.';
diff --git a/modules/vatnumber/translations/it.php b/modules/vatnumber/translations/it.php
deleted file mode 100644
index f026c7dc1..000000000
--- a/modules/vatnumber/translations/it.php
+++ /dev/null
@@ -1,16 +0,0 @@
-vatnumber_162b29cf61678af2aaac37f440265c28'] = 'Il suo paese è stato aggiornato.';
-$_MODULE['<{vatnumber}prestashop>vatnumber_0ca51bcd22e4d7b56b6f1d8a01cefc1f'] = 'Il controllo della partita IVA con il WebService è ora abilitato.';
-$_MODULE['<{vatnumber}prestashop>vatnumber_56564e0a106b0e0e2dc57b5a105ed639'] = 'Il tuo paese';
-$_MODULE['<{vatnumber}prestashop>vatnumber_ab73ac60f122e6493f53ba7699ae2139'] = 'Abilita il controllo della partita IVA con il WebService';
-$_MODULE['<{vatnumber}prestashop>vatnumber_daa44329eceb03dc085a668376af07f5'] = 'Abilita inserimento del numero di Partita IVA intracomunitaria quando si crea l\'indirizzo (è necessario compilare il campo società per consentire partita IVA digitazione)';
-$_MODULE['<{vatnumber}prestashop>vatnumber_467c214bb76759108ece49873eda44e4'] = 'Il controllo della partita IVA con il WebService è ora disattivato.';
-$_MODULE['<{vatnumber}prestashop>vatnumber_b0b9a606a1c251323825ca45d40964dc'] = 'Nessuna Nazione di default è impostata.';
-$_MODULE['<{vatnumber}prestashop>vatnumber_038b34b36ec9eaf5f96d11e17f208f1b'] = '- Scegli un paese -';
-$_MODULE['<{vatnumber}prestashop>vatnumber_38fb7d24e0d60a048f540ecb18e13376'] = 'Salva';
-$_MODULE['<{vatnumber}prestashop>vatnumber_cee549912e318726d2c4989bb507665f'] = 'Partita IVA Europea';
-$_MODULE['<{vatnumber}prestashop>vatnumber_0a57ec92318a15681fb878bc2931480c'] = 'La verifica da parte del webservice è lenta. L\'attivazione di questa opzione può rallentare il tuo negozio.';
diff --git a/modules/watermark/translations/de.php b/modules/watermark/translations/de.php
deleted file mode 100644
index 99817afde..000000000
--- a/modules/watermark/translations/de.php
+++ /dev/null
@@ -1,31 +0,0 @@
-watermark_e7bbd7019d9f73bc63f406de1422d989'] = 'Wasserzeichen-Bild muss um hochgeladen werden, damit dieses Modul richtig funktioniert';
-$_MODULE['<{watermark}prestashop>watermark_a9cac4be0fa0b815376b96f49e1435d7'] = 'Es ist mindestens eine Bildart erforderlich.';
-$_MODULE['<{watermark}prestashop>watermark_b670770ad59c1f8e7fb65f276074172b'] = 'Bild muss im GIF-Format sein';
-$_MODULE['<{watermark}prestashop>watermark_130aab6764f25267c79cef371270eb2a'] = 'Ein Fehler ist während des Uploads des Wasserzeichens aufgetreten : %1$s nach %2$s';
-$_MODULE['<{watermark}prestashop>watermark_8d92a725c5abead5353e60e0b2fc7d6d'] = 'Wählen Sie die Bildarten für den Wasserzeichenschutz';
-$_MODULE['<{watermark}prestashop>watermark_220d9102465c9223781b8f99af48c154'] = 'Das Wasserzeichen ist kein echtes gif, bitte UMKONVERTIEREN und nicht umbenennen';
-$_MODULE['<{watermark}prestashop>watermark_78d0b1c450a31c9728488a6b0a893e8a'] = 'Transparenz ist nicht im zulässigen Bereich.';
-$_MODULE['<{watermark}prestashop>watermark_cc99ba657a4a5ecf9d2d7cb974d25596'] = 'Sobald Sie das Modul eingestellt haben, müssen Sie die Bilder mit Hilfe des Tools in Präferenzen> wieder herstellen. Das Wasserzeichen wird in jedem Fall automatisch zu den neuen Bildern hinzugefügt.';
-$_MODULE['<{watermark}prestashop>watermark_c23549e174914e9796db47d27c49eb95'] = 'Noch kein Wasserzeichen hochgeladen';
-$_MODULE['<{watermark}prestashop>watermark_ce4ca541df51a63fd8e78e0da29e1d44'] = 'Muss im GIF-Format sein';
-$_MODULE['<{watermark}prestashop>watermark_3ccc25c1409aec574beb82bad14b5ebc'] = 'Wasserzeichen-Transparenz (0-100)';
-$_MODULE['<{watermark}prestashop>watermark_acf0fa79a73731e7d70cb208a62c249a'] = 'Wasserzeichen X align';
-$_MODULE['<{watermark}prestashop>watermark_489f2e730102b59aec48b5c27d2cbe1c'] = 'Wasserzeichen Y align';
-$_MODULE['<{watermark}prestashop>watermark_ee20bb60493f049175fc10c35acd2272'] = 'Wasserzeichen';
-$_MODULE['<{watermark}prestashop>watermark_8d7c07bcea7e80d072308e4bd4cc37b0'] = 'Bild schützen durch ein Wasserzeichen';
-$_MODULE['<{watermark}prestashop>watermark_3a1f788dbe8957be92048606cf0d3fcb'] = 'X-Align ist nicht im zulässigen Bereich.';
-$_MODULE['<{watermark}prestashop>watermark_c888438d14855d7d96a2724ee9c306bd'] = 'Einstellungen aktualisiert';
-$_MODULE['<{watermark}prestashop>watermark_c0275788cf97660b52ab23f1f8c7c8d7'] = 'Wasserzeichen-Details';
-$_MODULE['<{watermark}prestashop>watermark_b17f3f4dcf653a5776792498a9b44d6a'] = 'Einstellungen aktualisieren';
-$_MODULE['<{watermark}prestashop>watermark_fa214007826415a21a8456e3e09f999d'] = 'Sie sind sicher, dass Sie Ihre Daten löschen wollen?';
-$_MODULE['<{watermark}prestashop>watermark_f26d820220f1db94ea35bb61d95a80f4'] = 'Transparenz ist erforderlich.';
-$_MODULE['<{watermark}prestashop>watermark_d31c2d99614d8e16430d2d8c99c1f2b0'] = 'Y-Align ist erforderlich.';
-$_MODULE['<{watermark}prestashop>watermark_8fe9c39f4bf87082caabcf3650970c71'] = 'Y-Align ist nicht im zulässigen Bereich.';
-$_MODULE['<{watermark}prestashop>watermark_c2cf8e33c907a4cc689881dc8fa571c2'] = 'X-Align ist erforderlich.';
-$_MODULE['<{watermark}prestashop>watermark_444bcb3a3fcf8389296c49467f27e1d6'] = 'ok';
-$_MODULE['<{watermark}prestashop>watermark_c9519bff5a6fe31e0f26b1c52dad7ad8'] = 'Wasserzeichen-Datei';
diff --git a/modules/watermark/translations/en.php b/modules/watermark/translations/en.php
deleted file mode 100644
index 9839c82f9..000000000
--- a/modules/watermark/translations/en.php
+++ /dev/null
@@ -1,4 +0,0 @@
-watermark_e7bbd7019d9f73bc63f406de1422d989'] = 'La imagen de la Marca de agua (filigrana) tiene que ser cargada para que este módulo funcione correctamente';
-$_MODULE['<{watermark}prestashop>watermark_a9cac4be0fa0b815376b96f49e1435d7'] = 'Se requiere al menos un tipo de imagen.';
-$_MODULE['<{watermark}prestashop>watermark_b670770ad59c1f8e7fb65f276074172b'] = 'La imagen debe ser en formato GIF';
-$_MODULE['<{watermark}prestashop>watermark_130aab6764f25267c79cef371270eb2a'] = 'Ocurrió un error al cargar marca de agua: %1$s en %2$s';
-$_MODULE['<{watermark}prestashop>watermark_8d92a725c5abead5353e60e0b2fc7d6d'] = 'Elija el tipo de imagen para proteger la filigrana';
-$_MODULE['<{watermark}prestashop>watermark_220d9102465c9223781b8f99af48c154'] = 'Su imagen filigrana no es un verdadero formato gif, conviértalo en lugar de renombrarlo';
-$_MODULE['<{watermark}prestashop>watermark_78d0b1c450a31c9728488a6b0a893e8a'] = 'La transparencia no esta en la gama permitida';
-$_MODULE['<{watermark}prestashop>watermark_cc99ba657a4a5ecf9d2d7cb974d25596'] = 'Una vez que haya creado el módulo, tiene que regenerar las imágenes a utilizar en la herramienta Preferencias> Imágenes. Sin embargo, la filigrana se añadirá automáticamente en las nuevas imágenes.';
-$_MODULE['<{watermark}prestashop>watermark_c23549e174914e9796db47d27c49eb95'] = 'La marca de agua no se ha subido';
-$_MODULE['<{watermark}prestashop>watermark_ce4ca541df51a63fd8e78e0da29e1d44'] = 'Debe ser en formato GIF';
-$_MODULE['<{watermark}prestashop>watermark_3ccc25c1409aec574beb82bad14b5ebc'] = 'Transparencia de la marca de agua (0-100)';
-$_MODULE['<{watermark}prestashop>watermark_acf0fa79a73731e7d70cb208a62c249a'] = 'Alineación X de la marca de agua';
-$_MODULE['<{watermark}prestashop>watermark_489f2e730102b59aec48b5c27d2cbe1c'] = 'Alineación Y de la marca de agua';
-$_MODULE['<{watermark}prestashop>watermark_ee20bb60493f049175fc10c35acd2272'] = 'Marca de agua (filigrana)';
-$_MODULE['<{watermark}prestashop>watermark_8d7c07bcea7e80d072308e4bd4cc37b0'] = 'Proteja la imagen por una marca de agua';
-$_MODULE['<{watermark}prestashop>watermark_3a1f788dbe8957be92048606cf0d3fcb'] = 'Alineación X no permitida.';
-$_MODULE['<{watermark}prestashop>watermark_c888438d14855d7d96a2724ee9c306bd'] = 'Actualización realizada con éxito';
-$_MODULE['<{watermark}prestashop>watermark_c0275788cf97660b52ab23f1f8c7c8d7'] = 'Detalles de la filigrana';
-$_MODULE['<{watermark}prestashop>watermark_b17f3f4dcf653a5776792498a9b44d6a'] = 'Ajustes actualizados';
-$_MODULE['<{watermark}prestashop>watermark_fa214007826415a21a8456e3e09f999d'] = '¿Está seguro de que desea eliminar sus datos?';
-$_MODULE['<{watermark}prestashop>watermark_f26d820220f1db94ea35bb61d95a80f4'] = 'La transparencia es obligatoria';
-$_MODULE['<{watermark}prestashop>watermark_d31c2d99614d8e16430d2d8c99c1f2b0'] = 'Se necesita alineación Y';
-$_MODULE['<{watermark}prestashop>watermark_8fe9c39f4bf87082caabcf3650970c71'] = 'Alineación Y no permitida.';
-$_MODULE['<{watermark}prestashop>watermark_c2cf8e33c907a4cc689881dc8fa571c2'] = 'Se necesita alineación X';
-$_MODULE['<{watermark}prestashop>watermark_444bcb3a3fcf8389296c49467f27e1d6'] = 'ok';
-$_MODULE['<{watermark}prestashop>watermark_c9519bff5a6fe31e0f26b1c52dad7ad8'] = 'Archivo de la filigrana';
diff --git a/modules/watermark/translations/fr.php b/modules/watermark/translations/fr.php
deleted file mode 100644
index 366ff2033..000000000
--- a/modules/watermark/translations/fr.php
+++ /dev/null
@@ -1,31 +0,0 @@
-watermark_e7bbd7019d9f73bc63f406de1422d989'] = 'Une image de filigrane doit être mise en ligne pour que le module fonctionne correctement.';
-$_MODULE['<{watermark}prestashop>watermark_a9cac4be0fa0b815376b96f49e1435d7'] = 'Au moins un type d\'image doit être selectionné.';
-$_MODULE['<{watermark}prestashop>watermark_b670770ad59c1f8e7fb65f276074172b'] = 'L\'image doit être au format GIF';
-$_MODULE['<{watermark}prestashop>watermark_130aab6764f25267c79cef371270eb2a'] = 'Une erreur est survenue durant la récupération du filigrane : %1$s à %2$s';
-$_MODULE['<{watermark}prestashop>watermark_8d92a725c5abead5353e60e0b2fc7d6d'] = 'Choisissez les types d\'image pour lesquels le filigrane doit s\'appliquer.';
-$_MODULE['<{watermark}prestashop>watermark_220d9102465c9223781b8f99af48c154'] = 'Votre image filigrane n\'est pas un vrai fichier GIF, veuillez le convertir au lieu de changer l\'extension.';
-$_MODULE['<{watermark}prestashop>watermark_78d0b1c450a31c9728488a6b0a893e8a'] = 'Valeur incorrecte pour la transparence.';
-$_MODULE['<{watermark}prestashop>watermark_cc99ba657a4a5ecf9d2d7cb974d25596'] = 'Une fois que vous avez configuré le module, vous devez regénérer les images à l\'aide de l\'outil disponible dans la page \\"Images\\" du menu \\"Préférence\\". Notez que le filigrane sera intégré automatiquement aux nouvelles images que vous mettrez en ligne.';
-$_MODULE['<{watermark}prestashop>watermark_c23549e174914e9796db47d27c49eb95'] = 'Aucun filigrane pour le moment.';
-$_MODULE['<{watermark}prestashop>watermark_ce4ca541df51a63fd8e78e0da29e1d44'] = 'Doit être au format GIF';
-$_MODULE['<{watermark}prestashop>watermark_3ccc25c1409aec574beb82bad14b5ebc'] = 'Transparence';
-$_MODULE['<{watermark}prestashop>watermark_acf0fa79a73731e7d70cb208a62c249a'] = 'Alignement horizontal';
-$_MODULE['<{watermark}prestashop>watermark_489f2e730102b59aec48b5c27d2cbe1c'] = 'Alignement vertical';
-$_MODULE['<{watermark}prestashop>watermark_ee20bb60493f049175fc10c35acd2272'] = 'Filigrane';
-$_MODULE['<{watermark}prestashop>watermark_8d7c07bcea7e80d072308e4bd4cc37b0'] = 'Protégez vos images avec un filigrane';
-$_MODULE['<{watermark}prestashop>watermark_3a1f788dbe8957be92048606cf0d3fcb'] = 'Valeur incorrecte pour l\'alignement horizontal.';
-$_MODULE['<{watermark}prestashop>watermark_c888438d14855d7d96a2724ee9c306bd'] = 'Paramètres sauvegardés';
-$_MODULE['<{watermark}prestashop>watermark_c0275788cf97660b52ab23f1f8c7c8d7'] = 'Configuration du filigrane';
-$_MODULE['<{watermark}prestashop>watermark_b17f3f4dcf653a5776792498a9b44d6a'] = 'Enregistrer';
-$_MODULE['<{watermark}prestashop>watermark_fa214007826415a21a8456e3e09f999d'] = 'Êtes-vous sûr de vouloir tout supprimer ?';
-$_MODULE['<{watermark}prestashop>watermark_f26d820220f1db94ea35bb61d95a80f4'] = 'La transparence est requise.';
-$_MODULE['<{watermark}prestashop>watermark_d31c2d99614d8e16430d2d8c99c1f2b0'] = 'Alignement vertical requis.';
-$_MODULE['<{watermark}prestashop>watermark_8fe9c39f4bf87082caabcf3650970c71'] = 'Valeur incorrecte pour l\'alignement vertical.';
-$_MODULE['<{watermark}prestashop>watermark_c2cf8e33c907a4cc689881dc8fa571c2'] = 'Alignement horizontal requis.';
-$_MODULE['<{watermark}prestashop>watermark_444bcb3a3fcf8389296c49467f27e1d6'] = 'OK';
-$_MODULE['<{watermark}prestashop>watermark_c9519bff5a6fe31e0f26b1c52dad7ad8'] = 'Fichier du filigrane';
diff --git a/modules/watermark/translations/it.php b/modules/watermark/translations/it.php
deleted file mode 100644
index 6d158bb8e..000000000
--- a/modules/watermark/translations/it.php
+++ /dev/null
@@ -1,31 +0,0 @@
-watermark_e7bbd7019d9f73bc63f406de1422d989'] = 'L\'immagine filigrana deve essere caricata affinché questo modulo funzioni correttamente';
-$_MODULE['<{watermark}prestashop>watermark_a9cac4be0fa0b815376b96f49e1435d7'] = 'Almeno un tipo di immagine è richiesto.';
-$_MODULE['<{watermark}prestashop>watermark_b670770ad59c1f8e7fb65f276074172b'] = 'immagine deve essere in formato GIF';
-$_MODULE['<{watermark}prestashop>watermark_130aab6764f25267c79cef371270eb2a'] = 'Si è verificato un errore durante il caricamento della filigrana: %1$s a %2$s';
-$_MODULE['<{watermark}prestashop>watermark_8d92a725c5abead5353e60e0b2fc7d6d'] = 'Scegli i tipi di immagine per la protezione della filigrana';
-$_MODULE['<{watermark}prestashop>watermark_220d9102465c9223781b8f99af48c154'] = 'l\'immagine della filigrana non è un vero e proprio gif, per favore CONVERTI e non rinominarlo';
-$_MODULE['<{watermark}prestashop>watermark_78d0b1c450a31c9728488a6b0a893e8a'] = 'La trasparenza non è nel range ammesso.';
-$_MODULE['<{watermark}prestashop>watermark_cc99ba657a4a5ecf9d2d7cb974d25596'] = 'Una volta impostato il modulo, è necessario rigenerare le immagini usando lo strumento in Preferenze> Foto. Tuttavia, la filigrana verrà aggiunta automaticamente alle nuove immagini.';
-$_MODULE['<{watermark}prestashop>watermark_c23549e174914e9796db47d27c49eb95'] = 'Nessuna filigrana ancora caricata';
-$_MODULE['<{watermark}prestashop>watermark_ce4ca541df51a63fd8e78e0da29e1d44'] = 'Deve essere in formato GIF';
-$_MODULE['<{watermark}prestashop>watermark_3ccc25c1409aec574beb82bad14b5ebc'] = 'Trasparenza filigrana (0-100)';
-$_MODULE['<{watermark}prestashop>watermark_acf0fa79a73731e7d70cb208a62c249a'] = 'Filigrana X align';
-$_MODULE['<{watermark}prestashop>watermark_489f2e730102b59aec48b5c27d2cbe1c'] = 'Filigrana Y align';
-$_MODULE['<{watermark}prestashop>watermark_ee20bb60493f049175fc10c35acd2272'] = 'Filigrana';
-$_MODULE['<{watermark}prestashop>watermark_8d7c07bcea7e80d072308e4bd4cc37b0'] = 'Proteggi immagine con la filigrana';
-$_MODULE['<{watermark}prestashop>watermark_3a1f788dbe8957be92048606cf0d3fcb'] = 'X-Align non è nel range ammesso.';
-$_MODULE['<{watermark}prestashop>watermark_c888438d14855d7d96a2724ee9c306bd'] = 'Impostazioni aggiornate';
-$_MODULE['<{watermark}prestashop>watermark_c0275788cf97660b52ab23f1f8c7c8d7'] = 'Dettagli filigrana';
-$_MODULE['<{watermark}prestashop>watermark_b17f3f4dcf653a5776792498a9b44d6a'] = 'Aggiorna le impostazioni';
-$_MODULE['<{watermark}prestashop>watermark_fa214007826415a21a8456e3e09f999d'] = 'Sei sicuro di voler cancellare i tuoi dati?';
-$_MODULE['<{watermark}prestashop>watermark_f26d820220f1db94ea35bb61d95a80f4'] = 'La trasparenza è richiesta.';
-$_MODULE['<{watermark}prestashop>watermark_d31c2d99614d8e16430d2d8c99c1f2b0'] = 'Y-Align è richiesto.';
-$_MODULE['<{watermark}prestashop>watermark_8fe9c39f4bf87082caabcf3650970c71'] = 'Y-align non è nel range ammesso.';
-$_MODULE['<{watermark}prestashop>watermark_c2cf8e33c907a4cc689881dc8fa571c2'] = 'X-Align è richiesto.';
-$_MODULE['<{watermark}prestashop>watermark_444bcb3a3fcf8389296c49467f27e1d6'] = 'ok';
-$_MODULE['<{watermark}prestashop>watermark_c9519bff5a6fe31e0f26b1c52dad7ad8'] = 'File filigrana';
diff --git a/pdf/invoice.tax-tab.tpl b/pdf/invoice.tax-tab.tpl
index b8479cc9f..bcc6d4b67 100755
--- a/pdf/invoice.tax-tab.tpl
+++ b/pdf/invoice.tax-tab.tpl
@@ -43,7 +43,12 @@
{if isset($product_tax_breakdown)}
{foreach $product_tax_breakdown as $rate => $product_tax_infos}