diff --git a/admin-dev/tabs/AdminImages.php b/admin-dev/tabs/AdminImages.php index de4db8cfb..e3dff8b50 100644 --- a/admin-dev/tabs/AdminImages.php +++ b/admin-dev/tabs/AdminImages.php @@ -463,7 +463,7 @@ class AdminImages extends AdminTab '

 '. $this->l('After moving all of your product images, for best performance go to the '). ''.$this->l('product preferences tab').''. - $this->l(' and set "Activate legacy images compatibility" to NO.').' + $this->l(' and set "Use the legacy image filesystem" to NO.').'
diff --git a/classes/FrontController.php b/classes/FrontController.php index c454e5daf..cfc297a83 100755 --- a/classes/FrontController.php +++ b/classes/FrontController.php @@ -618,13 +618,14 @@ class FrontControllerCore extends Controller $stop = (int)($pages_nb); $this->context->smarty->assign('nb_products', $nbProducts); $pagination_infos = array( - 'pages_nb' => (int)($pages_nb), - 'p' => (int)($this->p), - 'n' => (int)($this->n), + 'products_per_page' => (int)Configuration::get('PS_PRODUCTS_PER_PAGE'), + 'pages_nb' => $pages_nb, + 'p' => $this->p, + 'n' => $this->n, 'nArray' => $nArray, - 'range' => (int)($range), - 'start' => (int)($start), - 'stop' => (int)($stop), + 'range' => $range, + 'start' => $start, + 'stop' => $stop, 'current_url' => $current_url ); $this->context->smarty->assign($pagination_infos); diff --git a/classes/Order.php b/classes/Order.php index 5d8e0a944..5cb91e041 100644 --- a/classes/Order.php +++ b/classes/Order.php @@ -377,7 +377,7 @@ class OrderCore extends ObjectModel if (!$id_order_state) $id_order_state = 0; - if (!isset(self::$_historyCache[$id_order_state]) OR $no_hidden) + if (!isset(self::$_historyCache[$this->id.'_'.$id_order_state]) OR $no_hidden) { $id_lang = $id_lang ? (int)($id_lang) : 'o.`id_lang`'; $result = Db::getInstance()->executeS(' @@ -393,9 +393,9 @@ class OrderCore extends ObjectModel ORDER BY oh.date_add DESC, oh.id_order_history DESC'); if ($no_hidden) return $result; - self::$_historyCache[$id_order_state] = $result; + self::$_historyCache[$this->id.'_'.$id_order_state] = $result; } - return self::$_historyCache[$id_order_state]; + return self::$_historyCache[$this->id.'_'.$id_order_state]; } public function getProductsDetail() diff --git a/install-dev/index.php b/install-dev/index.php index 5eb426517..fc43866f6 100644 --- a/install-dev/index.php +++ b/install-dev/index.php @@ -992,6 +992,9 @@ if ($lm->getIncludeTradFilename())   + +

+

@@ -1323,6 +1326,11 @@ if ($lm->getIncludeTradFilename()) } ?> + +
+ +
+

diff --git a/install-dev/langs/de.php b/install-dev/langs/de.php index 15dc5625e..07012e48d 100644 --- a/install-dev/langs/de.php +++ b/install-dev/langs/de.php @@ -140,6 +140,7 @@ $_LANG['Update is complete!'] = 'Aktualisierung beendet!'; $_LANG['Upgrade: get the latest stable version!'] = 'Aktualisierung: Installieren Sie die neueste Version von PrestaShop'; $_LANG['Verify now!'] = 'Testen der SQL-Verbindung'; $_LANG['Verify system compatibility'] = 'Systemkompatibilit√§t'; +$_LANG['WARNING: For more security, you must delete the \'install\' folder.'] = 'VORSICHT: Aus Sicherheitsgr√ºnden l√∂schen Sie bitte den Ordner \'/install\'.'; $_LANG['Warning: a manual backup is HIGHLY recommended before continuing!'] = 'Vorsicht: eine manuelle Sicherung ist UNERL√ÑSSLICH, bevor mit der Aktualisierung der PrestaShop-Anwendung begonnen wird, um jeglichen versehentlichen Datenverlust zu verhindern'; $_LANG['Welcome'] = 'Willkommen'; $_LANG['Welcome to the PrestaShop %s Installer'] = 'Willkommen bei der Installation von PrestaShop %s'; diff --git a/install-dev/langs/es.php b/install-dev/langs/es.php index d541d619b..db241b098 100644 --- a/install-dev/langs/es.php +++ b/install-dev/langs/es.php @@ -138,6 +138,7 @@ $_LANG['Update is complete!'] = '¬°Actualización completa!'; $_LANG['Upgrade: get the latest stable version!'] = 'Actualización: instale la última versión de PrestaShop'; $_LANG['Verify now!'] = '¬°Pruebe ahora!'; $_LANG['Verify system compatibility'] = 'Compatibilidad sistema'; +$_LANG['WARNING: For more security, you must delete the \'install\' folder.'] = 'ATENCION : para más seguridad, por favor suprima la carpeta \'/install\'.'; $_LANG['Warning: a manual backup is HIGHLY recommended before continuing!'] = '¬°Atención: se recomienda hacer una copia de seguridad manual antes de continuar!'; $_LANG['Welcome'] = 'Bienvenido'; $_LANG['Welcome to the PrestaShop %s Installer'] = 'Bienvenido a la instalación de PrestaShop %s'; diff --git a/install-dev/langs/fr.php b/install-dev/langs/fr.php index 0f8d9113e..116f3c0dc 100644 --- a/install-dev/langs/fr.php +++ b/install-dev/langs/fr.php @@ -141,6 +141,7 @@ $_LANG['Update is complete!'] = 'Mise à jour terminée !'; $_LANG['Upgrade: get the latest stable version!'] = 'Mise à jour : installez la dernière version de PrestaShop'; $_LANG['Verify now!'] = 'Tester la connexion'; $_LANG['Verify system compatibility'] = 'Compatibilité système'; +$_LANG['WARNING: For more security, you must delete the \'install\' folder.'] = 'ATTENTION : pour plus de sécurité, merci de supprimer le dossier \'/install\'.'; $_LANG['Warning: a manual backup is HIGHLY recommended before continuing!'] = 'Attention : une sauvegarde manuelle est INDISPENSABLE avant de procéder à la mise à jour de l\'application PrestaShop, cela afin de prévenir toute perte de données accidentelle'; $_LANG['Welcome'] = 'Bienvenue'; $_LANG['Welcome to the PrestaShop %s Installer'] = 'Bienvenue dans l\'installation de PrestaShop %s'; diff --git a/install-dev/langs/it.php b/install-dev/langs/it.php index 5e3343c1e..2435ea48a 100644 --- a/install-dev/langs/it.php +++ b/install-dev/langs/it.php @@ -140,6 +140,7 @@ $_LANG['Update is complete!'] = 'Aggiornamento terminato!'; $_LANG['Upgrade: get the latest stable version!'] = 'Aggiornamento installa l\'ultima versione di PrestaShop'; $_LANG['Verify now!'] = 'Prova la connessione SQL'; $_LANG['Verify system compatibility'] = 'Compatibilità sistema'; +$_LANG['WARNING: For more security, you must delete the \'install\' folder.'] = 'ATTENZIONE: per motivi di sicurezza, adesso devi cancellare la cartella \'install\'.'; $_LANG['Warning: a manual backup is HIGHLY recommended before continuing!'] = 'Attenzione: E\' FONDAMENTALE un backup manuale prima di continuare l\'aggiornamento dell\'applicazione Prestashop, al fine di evitare la perdita accidentale di dati.'; $_LANG['Welcome'] = 'Benvenuto'; $_LANG['Welcome to the PrestaShop %s Installer'] = 'Benvenuto nell\'installazione di PrestaShop %s'; diff --git a/install-dev/langs/us.php b/install-dev/langs/us.php index a129cbc3b..af858fec2 100644 --- a/install-dev/langs/us.php +++ b/install-dev/langs/us.php @@ -64,6 +64,7 @@ $_LANG['This is not a valid image file.'] = 'Invalid image file'; $_LANG['Too long!'] = 'Too long'; $_LANG['Upgrade: get the latest stable version!'] = 'Update: Get the latest stable version'; $_LANG['Verify system compatibility'] = 'System Compatibility'; +$_LANG['WARNING: For more security, you must delete the \'install\' folder.'] = 'WARNING: For more security, you must delete the \'install\'.'; $_LANG['Warning: a manual backup is HIGHLY recommended before continuing!'] = 'WARNING! A manual backup is HIGHLY recommended before continuing.'; $_LANG['Welcome'] = 'Welcome!'; $_LANG['Welcome to the PrestaShop '.INSTALL_VERSION.' Installer.'] = 'Welcome to the PrestaShop™ v'.INSTALL_VERSION.' Installer wizard.'; diff --git a/install-dev/model.php b/install-dev/model.php index 1fd315c97..588c82693 100644 --- a/install-dev/model.php +++ b/install-dev/model.php @@ -48,8 +48,8 @@ if (file_exists(INSTALL_PATH.'/../config/settings.inc.php')) // setting the memory limit to 128M only if current is lower $memory_limit = ini_get('memory_limit'); -if ( substr($memory_limit,-1) != 'G' - AND ((substr($memory_limit,-1) == 'M' AND substr($memory_limit,0,-1) < 128) +if ( substr($memory_limit,-1) != 'G' + AND ((substr($memory_limit,-1) == 'M' AND substr($memory_limit,0,-1) < 128) OR is_numeric($memory_limit) AND (intval($memory_limit) < 131072)) ){ @ini_set('memory_limit','128M'); @@ -108,9 +108,9 @@ if (isset($_GET['method'])) case 'doUpgrade' : require_once('xml/doUpgrade.php'); break; - + case 'getVersionFromDb' : require_once('xml/getVersionFromDb.php'); break; } -} \ No newline at end of file +} diff --git a/modules/autoupgrade/AdminSelfUpgrade.php b/modules/autoupgrade/AdminSelfUpgrade.php index d9573accc..1d2938c7b 100644 --- a/modules/autoupgrade/AdminSelfUpgrade.php +++ b/modules/autoupgrade/AdminSelfUpgrade.php @@ -243,12 +243,12 @@ class AdminSelfUpgrade extends AdminSelfTab $this->_fieldsAutoUpgrade['PS_AUTOUP_KEEP_TRAD'] = array( 'title' => $this->l('Keep translations'), 'cast' => 'intval', 'validation' => 'isBool', - 'type' => 'bool', 'desc'=>$this->l('If set too yes, you will keep all your translations'), + 'type' => 'bool', 'desc'=>$this->l('If set to yes, you will keep all your translations'), ); $this->_fieldsAutoUpgrade['PS_AUTOUP_CUSTOM_MOD_DESACT'] = array( - 'title' => $this->l('Desactivate custom modules'), 'cast' => 'intval', 'validation' => 'isBool', - 'type' => 'bool', 'desc'=>$this->l('If you don\'t desactivate your modules, you can have some compatibility problem and the Modules page might not load correctly.'), + 'title' => $this->l('Deactivate custom modules'), 'cast' => 'intval', 'validation' => 'isBool', + 'type' => 'bool', 'desc'=>$this->l('If you don\'t deactivate your modules, you can have some compatibility problems and the Modules page might not load correctly.'), ); // allow manual mode only for dev if (defined('_PS_MODE_DEV_') AND _PS_MODE_DEV_) diff --git a/modules/autoupgrade/Tools14.php b/modules/autoupgrade/Tools14.php index 25ff9bd6d..98f677ae8 100644 --- a/modules/autoupgrade/Tools14.php +++ b/modules/autoupgrade/Tools14.php @@ -1,6 +1,4 @@ getPageLink($explode[0], true); + // don't use ssl if url is home page + // used when logout for example + $useSSL = !empty($url); + $url = $link->getPageLink($explode[0], $useSSL); if (isset($explode[1])) $url .= '?'.$explode[1]; $baseUri = ''; @@ -213,7 +219,13 @@ class Tools14Core */ public static function usingSecureMode() { - return !(empty($_SERVER['HTTPS']) OR strtolower($_SERVER['HTTPS']) == 'off'); + if (isset($_SERVER['HTTPS'])) + return ($_SERVER['HTTPS'] == 1 || strtolower($_SERVER['HTTPS']) == 'on'); + // $_SERVER['SSL'] exists only in some specific configuration + if (isset($_SERVER['SSL'])) + return ($_SERVER['SSL'] == 1 || strtolower($_SERVER['SSL']) == 'on'); + + return false; } /** @@ -466,18 +478,13 @@ class Tools14Core */ public static function displayDate($date, $id_lang, $full = false, $separator = '-') { - if (!$date OR !strtotime($date)) + if (!$date OR !($time = strtotime($date))) return $date; if (!Validate::isDate($date) OR !Validate::isBool($full)) die (self::displayError('Invalid date')); - $tmpTab = explode($separator, substr($date, 0, 10)); - $hour = ' '.substr($date, -8); - $language = Language::getLanguage((int)($id_lang)); - if ($language AND strtolower($language['iso_code']) == 'fr') - return ($tmpTab[2].'-'.$tmpTab[1].'-'.$tmpTab[0].($full ? $hour : '')); - else - return ($tmpTab[0].'-'.$tmpTab[1].'-'.$tmpTab[2].($full ? $hour : '')); + $language = Language::getLanguage((int)$id_lang); + return date($full ? $language['date_format_full'] : $language['date_format_lite'], $time); } /** @@ -490,8 +497,8 @@ class Tools14Core public static function safeOutput($string, $html = false) { if (!$html) - $string = @htmlentities(strip_tags($string), ENT_QUOTES, 'utf-8'); - return $string; + $string = strip_tags($string); + return @Tools::htmlentitiesUTF8($string, ENT_QUOTES);; } public static function htmlentitiesUTF8($string, $type = ENT_QUOTES) @@ -537,7 +544,8 @@ class Tools14Core /** * Display an error according to an error code * - * @param integer $code Error code + * @param string $string Error message + * @param boolean $htmlentities By default at true for parsing error message with htmlentities */ public static function displayError($string = 'Fatal error', $htmlentities = true) { @@ -636,6 +644,7 @@ class Tools14Core /* Categories specifics meta tags */ elseif ($id_category = self::getValue('id_category')) { + $page_number = (int)self::getValue('p'); $row = Db::getInstance(_PS_USE_SQL_SLAVE_)->getRow(' SELECT `name`, `meta_title`, `meta_description`, `meta_keywords`, `description` FROM `'._DB_PREFIX_.'category_lang` @@ -644,6 +653,13 @@ class Tools14Core { if (empty($row['meta_description'])) $row['meta_description'] = strip_tags($row['description']); + + // Paginate title + if (!empty($row['meta_title'])) + $row['meta_title'] = $row['meta_title'].(!empty($page_number) ? ' ('.$page_number.')' : '').' - '.Configuration::get('PS_SHOP_NAME'); + else + $row['meta_title'] = $row['name'].(!empty($page_number) ? ' ('.$page_number.')' : '').' - '.Configuration::get('PS_SHOP_NAME'); + return self::completeMetaTags($row, $row['name']); } } @@ -651,6 +667,7 @@ class Tools14Core /* Manufacturers specifics meta tags */ elseif ($id_manufacturer = self::getValue('id_manufacturer')) { + $page_number = (int)self::getValue('p'); $row = Db::getInstance(_PS_USE_SQL_SLAVE_)->getRow(' SELECT `name`, `meta_title`, `meta_description`, `meta_keywords` FROM `'._DB_PREFIX_.'manufacturer_lang` ml @@ -660,9 +677,9 @@ class Tools14Core { if (empty($row['meta_description'])) $row['meta_description'] = strip_tags($row['meta_description']); - if (!empty($row['meta_title'])) - $row['meta_title'] = $row['meta_title'].' - '.Configuration::get('PS_SHOP_NAME'); - return self::completeMetaTags($row, $row['name']); + $row['meta_title'] .= $row['name'] . (!empty($page_number) ? ' ('.$page_number.')' : ''); + $row['meta_title'] .= ' - '.Configuration::get('PS_SHOP_NAME'); + return self::completeMetaTags($row, $row['meta_title']); } } @@ -739,11 +756,11 @@ class Tools14Core { global $cookie; - if ($metaTags['meta_title'] == NULL) + if (empty($metaTags['meta_title'])) $metaTags['meta_title'] = $defaultValue.' - '.Configuration::get('PS_SHOP_NAME'); - if ($metaTags['meta_description'] == NULL) + if (empty($metaTags['meta_description'])) $metaTags['meta_description'] = Configuration::get('PS_META_DESCRIPTION', (int)($cookie->id_lang)) ? Configuration::get('PS_META_DESCRIPTION', (int)($cookie->id_lang)) : ''; - if ($metaTags['meta_keywords'] == NULL) + if (empty($metaTags['meta_keywords'])) $metaTags['meta_keywords'] = Configuration::get('PS_META_KEYWORDS', (int)($cookie->id_lang)) ? Configuration::get('PS_META_KEYWORDS', (int)($cookie->id_lang)) : ''; return $metaTags; } @@ -957,6 +974,29 @@ class Tools14Core $str = mb_strtolower($str, 'utf-8'); $str = trim($str); + $str = self::replaceAccentedChars($str); + + // Remove all non-whitelist chars. + $str = preg_replace('/[^a-zA-Z0-9\s\'\:\/\[\]-]/','', $str); + $str = preg_replace('/[\s\'\:\/\[\]-]+/',' ', $str); + $str = preg_replace('/[ ]/','-', $str); + $str = preg_replace('/[\/]/','-', $str); + + // If it was not possible to lowercase the string with mb_strtolower, we do it after the transformations. + // This way we lose fewer special chars. + $str = strtolower($str); + + return $str; + } + + /** + * Replace all accented chars by their equivalent non accented chars. + * + * @param string $str + * @return string + */ + public static function replaceAccentedChars($str) + { $str = preg_replace('/[\x{0105}\x{0104}\x{00E0}\x{00E1}\x{00E2}\x{00E3}\x{00E4}\x{00E5}]/u','a', $str); $str = preg_replace('/[\x{00E7}\x{010D}\x{0107}\x{0106}]/u','c', $str); $str = preg_replace('/[\x{010F}]/u','d', $str); @@ -974,17 +1014,6 @@ class Tools14Core $str = preg_replace('/[\x{017C}\x{017A}\x{017B}\x{0179}\x{017E}]/u','z', $str); $str = preg_replace('/[\x{00E6}]/u','ae', $str); $str = preg_replace('/[\x{0153}]/u','oe', $str); - - // Remove all non-whitelist chars. - $str = preg_replace('/[^a-zA-Z0-9\s\'\:\/\[\]-]/','', $str); - $str = preg_replace('/[\s\'\:\/\[\]-]+/',' ', $str); - $str = preg_replace('/[ ]/','-', $str); - $str = preg_replace('/[\/]/','-', $str); - - // If it was not possible to lowercase the string with mb_strtolower, we do it after the transformations. - // This way we lose fewer special chars. - $str = strtolower($str); - return $str; } @@ -1228,15 +1257,20 @@ class Tools14Core return self::$file_exists_cache[$filename]; } - public static function file_get_contents($url, $useIncludePath = false, $streamContext = NULL) + public static function file_get_contents($url, $useIncludePath = false, $streamContext = NULL, $curlTimeOut = 5) { + if ($streamContext == NULL) + $streamContext = @stream_context_create(array('http' => array('timeout' => 5))); + if (in_array(ini_get('allow_url_fopen'), array('On', 'on', '1'))) - return file_get_contents($url, $useIncludePath, $streamContext); - elseif (function_exists('curl_init')) + return @file_get_contents($url, $useIncludePath, $streamContext); + elseif (function_exists('curl_init') && in_array(ini_get('allow_url_fopen'), array('On', 'on', '1'))) { $curl = curl_init(); curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); curl_setopt($curl, CURLOPT_URL, $url); + curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, $curlTimeOut); + curl_setopt($curl, CURLOPT_TIMEOUT, $curlTimeOut); $content = curl_exec($curl); curl_close($curl); return $content; @@ -1248,11 +1282,7 @@ class Tools14Core public static function simplexml_load_file($url, $class_name = null) { if (in_array(ini_get('allow_url_fopen'), array('On', 'on', '1'))) - return simplexml_load_file($url, $class_name); - elseif (function_exists('curl_init')) - { return simplexml_load_string(Tools::file_get_contents($url), $class_name); - } else return false; } @@ -1721,18 +1751,12 @@ class Tools14Core $tab['RewriteRule']['content']['^c/([0-9]+)(\-[_a-zA-Z0-9-]*)/[_a-zA-Z0-9-]*\.jpg$'] = 'img/c/$1$2.jpg [L]'; $tab['RewriteRule']['content']['^c/([a-zA-Z-]+)/[a-zA-Z0-9-]+\.jpg$'] = 'img/c/$1.jpg [L]'; - $tab['RewriteRule']['content']['^([0-9]+)\-[a-zA-Z0-9-]*\.html'] = 'product.php?id_product=$1 [QSA,L]'; - $tab['RewriteRule']['content']['^([0-9]+)\-[a-zA-Z0-9-]*'] = 'category.php?id_category=$1 [QSA,L]'; - $tab['RewriteRule']['content']['^[a-zA-Z0-9-]*/([0-9]+)\-[a-zA-Z0-9-]*\.html'] = 'product.php?id_product=$1 [QSA,L]'; - $tab['RewriteRule']['content']['^([0-9]+)__([a-zA-Z0-9-]*)'] = 'supplier.php?id_supplier=$1 [QSA,L]'; - $tab['RewriteRule']['content']['^([0-9]+)_([a-zA-Z0-9-]*)'] = 'manufacturer.php?id_manufacturer=$1 [QSA,L]'; - $tab['RewriteRule']['content']['^content/([0-9]+)\-([a-zA-Z0-9-]*)'] = 'cms.php?id_cms=$1 [QSA,L]'; - $tab['RewriteRule']['content']['^content/category/([0-9]+)\-([a-zA-Z0-9-]*)'] = 'cms.php?id_cms_category=$1 [QSA,L]'; if ($multilang) { $tab['RewriteRule']['content']['^([a-z]{2})/[a-zA-Z0-9-]*/([0-9]+)\-[a-zA-Z0-9-]*\.html'] = 'product.php?id_product=$2&isolang=$1 [QSA,L]'; $tab['RewriteRule']['content']['^([a-z]{2})/([0-9]+)\-[a-zA-Z0-9-]*\.html'] = 'product.php?id_product=$2&isolang=$1 [QSA,L]'; + $tab['RewriteRule']['content']['^([a-z]{2})/([0-9]+)\-[a-zA-Z0-9-]*(/[a-zA-Z0-9-]*)+'] = 'category.php?id_category=$2&isolang=$1&noredirect=1 [QSA,L]'; $tab['RewriteRule']['content']['^([a-z]{2})/([0-9]+)\-[a-zA-Z0-9-]*'] = 'category.php?id_category=$2&isolang=$1 [QSA,L]'; $tab['RewriteRule']['content']['^([a-z]{2})/content/([0-9]+)\-[a-zA-Z0-9-]*'] = 'cms.php?isolang=$1&id_cms=$2 [QSA,L]'; $tab['RewriteRule']['content']['^([a-z]{2})/content/category/([0-9]+)\-[a-zA-Z0-9-]*'] = 'cms.php?isolang=$1&id_cms_category=$2 [QSA,L]'; @@ -1745,6 +1769,9 @@ class Tools14Core $tab['RewriteRule']['content']['^([0-9]+)\-[a-zA-Z0-9-]*\.html'] = 'product.php?id_product=$1 [QSA,L]'; $tab['RewriteRule']['content']['^[a-zA-Z0-9-]*/([0-9]+)\-[a-zA-Z0-9-]*\.html'] = 'product.php?id_product=$1 [QSA,L]'; + // Notice : the id_category rule has to be after product rules. + // If not, category with number in their name will result a bug + $tab['RewriteRule']['content']['^([0-9]+)\-[a-zA-Z0-9-]*(/[a-zA-Z0-9-]*)+'] = 'category.php?id_category=$1&noredirect=1 [QSA,L]'; $tab['RewriteRule']['content']['^([0-9]+)\-[a-zA-Z0-9-]*'] = 'category.php?id_category=$1 [QSA,L]'; $tab['RewriteRule']['content']['^([0-9]+)__([a-zA-Z0-9-]*)'] = 'supplier.php?id_supplier=$1 [QSA,L]'; $tab['RewriteRule']['content']['^([0-9]+)_([a-zA-Z0-9-]*)'] = 'manufacturer.php?id_manufacturer=$1 [QSA,L]'; @@ -2058,14 +2085,26 @@ FileETag INode MTime Size * @param string $type by|way * @param string $value If no index given, use default order from admin -> pref -> products */ - public static function getProductsOrder($type, $value = null) + public static function getProductsOrder($type, $value = null, $prefix = false) { switch ($type) { case 'by' : + $orderByPrefix = ''; + if($prefix) { + if ($value == 'id_product' || $value == 'date_add' || $value == 'price') + $orderByPrefix = 'p.'; + elseif ($value == 'name') + $orderByPrefix = 'pl.'; + elseif ($value == 'manufacturer') + $orderByPrefix = 'm.'; + elseif ($value == 'position' || empty($value)) + $orderByPrefix = 'cp.'; + } + $value = (is_null($value) || $value === false || $value === '') ? (int)Configuration::get('PS_PRODUCTS_ORDER_BY') : $value; $list = array(0 => 'name', 1 => 'price', 2 => 'date_add', 3 => 'date_upd', 4 => 'position', 5 => 'manufacturer_name', 6 => 'quantity'); - return ((isset($list[$value])) ? $list[$value] : ((in_array($value, $list)) ? $value : 'position')); + return $orderByPrefix.((isset($list[$value])) ? $list[$value] : ((in_array($value, $list)) ? $value : 'position')); break; case 'way' : @@ -2208,292 +2247,3 @@ FileETag INode MTime Size } } -// if FB class is already loaded, just enable it. else, enable it only if fb.php exists and is loaded -if (!defined('PS_USE_FIREPHP') AND class_exists('FB',false)) - define('PS_USE_FIREPHP',true); -elseif (file_exists(dirname(__FILE__).DIRECTORY_SEPARATOR.'fb.php')) -{ - if (!defined('PS_USE_FIREPHP')) - { - require_once(dirname(__FILE__).DIRECTORY_SEPARATOR.'fb.php'); - define('PS_USE_FIREPHP',true); - } - else - define('PS_USE_FIREPHP',false); -} -else - if(!defined('PS_USE_FIREPHP')) - define('PS_USE_FIREPHP',class_exists('FB',false)); - - -class Tools14 extends Tools14Core -{ - - /** - * Redirect user to another page after 5 sec - * - * @param string $url Desired URL - * @param string $baseUri Base URI (optional) - */ - public static function redirect($url, $baseUri = __PS_BASE_URI__) - { - if (strpos($url, 'http://') === FALSE && strpos($url, 'https://') === FALSE) - { - global $link; - if (strpos($url, $baseUri) !== FALSE && strpos($url, $baseUri) == 0) - $url = substr($url, strlen($baseUri)); - $explode = explode('?', $url); - $url = $link->getPageLink($explode[0], true); - if (isset($explode[1])) - $url .= '?'.$explode[1]; - $baseUri = ''; - } - - if (isset($_SERVER['HTTP_REFERER']) AND ($url == $_SERVER['HTTP_REFERER'])) - header('Refresh: 5; url='.$_SERVER['HTTP_REFERER']); - else - header('Refresh: 5; url='.$baseUri.$url); - echo '

Redirection automatique dans 5 secondes

'.$url.''; - exit; - - } - - - /** - * Redirect url wich allready PS_BASE_URI after 5 sec - * - * @param string $url Desired URL - */ - public static function redirectLink($url) - { - if (!preg_match('@^https?://@i', $url)) - { - global $link; - if (strpos($url, __PS_BASE_URI__) !== FALSE && strpos($url, __PS_BASE_URI__) == 0) - $url = substr($url, strlen(__PS_BASE_URI__)); - $explode = explode('?', $url); - $url = $link->getPageLink($explode[0]); - if (isset($explode[1])) - $url .= '?'.$explode[1]; - } - - header('Refresh: 5; url='.$url); - echo '

Redirection automatique dans 5 secondes

'.$url.''; - exit; - } - /** - * Redirect user to another admin page after 5 sec - * - * @param string $url Desired URL - */ - public static function redirectAdmin($url) - { - header('Refresh: 5; url='.$url); - echo '

Redirection automatique dans 5 secondes

'.$url.''; - exit; - } - - - /** - * Display an error with detailed object - * (display in firefox console if Firephp is enabled) - * - * @param mixed $object - * @param boolean $kill - * @return $object if $kill = false; - */ - public static function dieObject($object, $kill = true) - { - if (PS_USE_FIREPHP) - FB::error($object); - else - return parent::dieObject($object,$kill); - - if ($kill) - die('END'); - return $object; - } - - /** - * ALIAS OF dieObject() - Display an error with detailed object - * (display in firefox console if Firephp is enabled) - * - * @param object $object Object to display - */ - public static function d($obj, $kill = true) - { - if (PS_USE_FIREPHP) - FB::error($obj); - else - parent::d($obj,$kill); - - if ($kill) - die('END'); - return $object; - } - - /** - * ALIAS OF dieObject() - Display an error with detailed object but don't stop the execution - * (display in firefox console if Firephp is enabled) - * - * @param object $object Object to display - */ - public static function p($object) - { - if (PS_USE_FIREPHP) - FB::info($object); - else - return parent::p($object); - return $object; - } - - /** - * Display a warning message indicating that the method is deprecated - * (display in firefox console if Firephp is enabled) - */ - public static function displayAsDeprecated() - { - - if (_PS_DISPLAY_COMPATIBILITY_WARNING_) - { - $backtrace = debug_backtrace(); - $callee = next($backtrace); - if (PS_USE_FIREPHP) - FB::warn('Function '.$callee['function'].'() is deprecated in '.$callee['file'].' on line '.$callee['line'].'
', 'Deprecated method'); - else - trigger_error('Function '.$callee['function'].'() is deprecated in '.$callee['file'].' on line '.$callee['line'].'
', E_USER_WARNING); - - $message = Tools::displayError('The function').' '.$callee['function'].' ('.Tools::displayError('Line').' '.$callee['line'].') '.Tools::displayError('is deprecated and will be removed in the next major version.'); - Logger::addLog($message, 3, $callee['class']); - } - } - - /** - * Display a warning message indicating that the parameter is deprecated - * (display in firefox console if Firephp is enabled) - */ - public static function displayParameterAsDeprecated($parameter) - { - if (_PS_DISPLAY_COMPATIBILITY_WARNING_) - { - $backtrace = debug_backtrace(); - $callee = next($backtrace); - trigger_error('Parameter '.$parameter.' in function '.$callee['function'].'() is deprecated in '.$callee['file'].' on line '.$callee['Line'].'
', E_USER_WARNING); - - if (PS_USE_FIREPHP) - FB::trace('Parameter '.$parameter.' in function '.$callee['function'].'() is deprecated in '.$callee['file'].' on line '.$callee['Line'].'
', 'deprecated parameter'); - else - $message = Tools::displayError('The parameter').' '.$parameter.' '.Tools::displayError(' in function ').' '.$callee['function'].' ('.Tools::displayError('Line').' '.$callee['Line'].') '.Tools::displayError('is deprecated and will be removed in the next major version.'); - - Logger::addLog($message, 3, $callee['class']); - } - } - - /** - * use of FirePHP::error() if allowed - * - * @param mixed $obj - * @param string $label - * @return void - */ - public static function error($obj, $label = '') - { - if (PS_USE_FIREPHP) - FB::error($obj, $label); - } - - /** - * use of FirePHP::warn() if allowed - * - * @param mixed $obj - * @param string $label - * @return void - */ - public static function warn($obj, $label = '') - { - if (PS_USE_FIREPHP) - FB::warn($obj, $label); - } - - /** - * use of FirePHP::info() if allowed - * - * @param mixed $obj - * @param string $label - * @return void - */ - public static function info($obj, $label = '') - { - if (PS_USE_FIREPHP) - FB::info($obj, $label); - } - - /** - * use of FirePHP::log() if allowed - * - * @param mixed $obj - * @param string $label - * @return void - */ - public static function log($obj, $label = '') - { - if (PS_USE_FIREPHP) - FB::log($obj,$label); - } - /** - * display debug_backtrace() - * (display in firefox console if Firephp is enabled) - * - * @param mixed $obj - * @return void - */ - public static function trace($obj = NULL, $label = '') - { - if (PS_USE_FIREPHP) - FB::trace($obj, $label); - else{ - Tools::p($obj); - echo'

'.$label.'


'; - debug_print_backtrace(); - echo '
'; - } - } -} -// Add some convenient shortcut - -if (!function_exists('error')) -{ - function error($obj, $label = ''){ - return Tools::error($obj, $label); - } -} - -if (!function_exists('warn')) -{ - function warn($obj, $label = ''){ - return Tools::warn($obj,$label); - } -} - -if (!function_exists('info')) -{ - function info($obj, $label = ''){ - return Tools::info($obj, $label); - } -} - -if (!function_exists('log')) -{ - function log($obj, $label = ''){ - return Tools::log($obj, $label); - } -} - -if (!function_exists('trace')) -{ - function trace($obj, $label = ''){ - return Tools::trace($obj, $label); - } -} - - diff --git a/modules/blocklayered/blocklayered-no-products.tpl b/modules/blocklayered/blocklayered-no-products.tpl new file mode 100644 index 000000000..7f0de7883 --- /dev/null +++ b/modules/blocklayered/blocklayered-no-products.tpl @@ -0,0 +1,28 @@ +{* +* 2007-2011 PrestaShop +* +* NOTICE OF LICENSE +* +* This source file is subject to the Academic Free License (AFL 3.0) +* that is bundled with this package in the file LICENSE.txt. +* It is also available through the world-wide-web at this URL: +* http://opensource.org/licenses/afl-3.0.php +* If you did not receive a copy of the license and are unable to +* obtain it through the world-wide-web, please send an email +* to license@prestashop.com so we can send you a copy immediately. +* +* DISCLAIMER +* +* Do not edit or add to this file if you wish to upgrade PrestaShop to newer +* versions in the future. If you wish to customize PrestaShop for your +* needs please refer to http://www.prestashop.com for more information. +* +* @author PrestaShop SA +* @copyright 2007-2011 PrestaShop SA +* @version Release: $Revision$ +* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) +* International Registred Trademark & Property of PrestaShop SA +*} +
+

{l s='There are no products.'}

+
diff --git a/modules/blocklayered/blocklayered-price-indexer.php b/modules/blocklayered/blocklayered-price-indexer.php index 46ba22ca9..fd4118760 100644 --- a/modules/blocklayered/blocklayered-price-indexer.php +++ b/modules/blocklayered/blocklayered-price-indexer.php @@ -18,7 +18,7 @@ if (!Tools::getValue('ajax')) } // Return a content without waiting the end of index execution - header('Location: '.Tools::getProtocol().Tools::getHttpHost().'/modules/blocklayered/blocklayered-price-indexer.php?token='.Tools::getValue('token') .'&return_message='.(int)Tools::getValue('cursor')); + header('Location: '.Tools::getProtocol().Tools::getHttpHost().__PS_BASE_URI__.'modules/blocklayered/blocklayered-price-indexer.php?token='.Tools::getValue('token') .'&return_message='.(int)Tools::getValue('cursor')); flush(); } if(Tools::getValue('full')) diff --git a/modules/blocklayered/blocklayered.css b/modules/blocklayered/blocklayered.css index 1eea1e2a8..5ee9d203e 100644 --- a/modules/blocklayered/blocklayered.css +++ b/modules/blocklayered/blocklayered.css @@ -73,3 +73,6 @@ #layered_block_left ul li .disabled { color: #666; } +#product_list .warning { + margin-top: 13px; +} \ No newline at end of file diff --git a/modules/blocklayered/blocklayered.js b/modules/blocklayered/blocklayered.js index 250fcfa7c..4c87c67ac 100644 --- a/modules/blocklayered/blocklayered.js +++ b/modules/blocklayered/blocklayered.js @@ -242,8 +242,12 @@ function reloadContent(params_plus) data += '&orderby='+splitData[0]+'&orderway='+splitData[1]; } + var slideUp = true; if(params_plus == undefined) + { params_plus = ''; + slideUp = false; + } // Get nb items per page var n = ''; @@ -311,6 +315,9 @@ function reloadContent(params_plus) current_friendly_url = '#/'; window.location = current_friendly_url; lockLocationChecking = true; + + if(slideUp) + $.scrollTo('#product_list', 400); } }); ajaxQueries.push(ajaxQuery); diff --git a/modules/blocklayered/blocklayered.php b/modules/blocklayered/blocklayered.php index b709706dc..4906d6171 100644 --- a/modules/blocklayered/blocklayered.php +++ b/modules/blocklayered/blocklayered.php @@ -858,7 +858,7 @@ class BlockLayered extends Module if (($nbProducts > 0 && !$full || $cursor < $nbProducts && $full) && !$ajax) { $token = substr(Tools::encrypt('blocklayered/index'), 0, 10); - if (!Tools::file_get_contents(Tools::getProtocol().Tools::getHttpHost().'/modules/blocklayered/blocklayered-price-indexer.php?token='.$token.'&cursor='.(int)$cursor.'&full='.(int)$full)) + if (!Tools::file_get_contents(Tools::getProtocol().Tools::getHttpHost().__PS_BASE_URI__.'modules/blocklayered/blocklayered-price-indexer.php?token='.$token.'&cursor='.(int)$cursor.'&full='.(int)$full)) self::indexPrices((int)$cursor, (int)$full); return $cursor; } @@ -1025,6 +1025,11 @@ class BlockLayered extends Module { global $smarty, $cookie; + // No filters => module disable + if ($filterBlock = $this->getFilterBlock($this->getSelectedFilters())) + if ($filterBlock['nbr_filterBlocks'] == 0) + return false; + if (Tools::getValue('id_category', Tools::getValue('id_category_layered', 1)) == 1) return; @@ -1034,7 +1039,6 @@ class BlockLayered extends Module $categoryTitle = (empty($category->meta_title[$idLang])?$category->name[$idLang]:$category->meta_title[$idLang]); // Generate meta title and meta description - $filterBlock = self::getFilterBlock($this->getSelectedFilters()); $title = ''; if (is_array($filterBlock['title_values'])) foreach ($filterBlock['title_values'] as $key => $val) @@ -1056,6 +1060,7 @@ class BlockLayered extends Module $this->context->controller->addJs($this->_path.'blocklayered.js'); $this->context->controller->addJqueryUI('ui.slider'); $this->context->controller->addCSS($this->_path.'blocklayered.css', 'all'); + Tools::addJS(_PS_JS_DIR_.'jquery/jquery.scrollTo-1.4.2-min.js'); } public function hookFooter($params) @@ -2090,13 +2095,15 @@ class BlockLayered extends Module INNER JOIN '._DB_PREFIX_.'attribute_group_lang agl ON agl.id_attribute_group = lpa.id_attribute_group AND agl.id_lang = '.(int)$cookie->id_lang.' - LEFT JOIN '._DB_PREFIX_.'category_product cp ON (cp.id_product = p.id_product) - INNER JOIN '._DB_PREFIX_.'category c ON (c.id_category = cp.id_category AND c.nleft >= '.(int)$parent->nleft.' AND c.nright <= '.(int)$parent->nright.') LEFT JOIN '._DB_PREFIX_.'layered_indexable_attribute_group_lang_value liagl ON (liagl.id_attribute_group = lpa.id_attribute_group AND liagl.id_lang = '.(int)$cookie->id_lang.') LEFT JOIN '._DB_PREFIX_.'layered_indexable_attribute_lang_value lial ON (lial.id_attribute = lpa.id_attribute AND lial.id_lang = '.(int)$cookie->id_lang.') '; - $sqlQuery['where'] = 'WHERE a.id_attribute_group = '.(int)$filter['id_value'].' '; + $sqlQuery['where'] = 'WHERE a.id_attribute_group = '.(int)$filter['id_value'].' + AND p.id_product IN ( + SELECT id_product + FROM '._DB_PREFIX_.'category_product cp + INNER JOIN '._DB_PREFIX_.'category c ON (c.id_category = cp.id_category AND c.nleft >= '.(int)$parent->nleft.' AND c.nright <= '.(int)$parent->nright.')) '; $sqlQuery['group'] = ' GROUP BY lpa.id_attribute ORDER BY id_attribute_group, id_attribute'; @@ -2143,10 +2150,16 @@ class BlockLayered extends Module if (method_exists('BlockLayered', $methodName) && (!in_array($filter['type'], array('price', 'weight')) && $filter['type'] != $filterTmp['type'] || $filter['type'] == $filterTmp['type'])) { - if ($filter['type'] == $filterTmp['type']) - $subQueryFilter = self::$methodName(array(), $filter['type'] == $filterTmp['type']); + if ($filter['type'] == $filterTmp['type'] && $filter['id_value'] == $filterTmp['id_value']) + $subQueryFilter = self::$methodName(array(), true); else - $subQueryFilter = self::$methodName(@$selectedFilters[$filterTmp['type']], $filter['type'] == $filterTmp['type']); + { + if (!is_null($filterTmp['id_value'])) + $selected_filters_cleaned = $this->cleanFilterByIdValue(@$selectedFilters[$filterTmp['type']], $filterTmp['id_value']); + else + $selected_filters_cleaned = @$selectedFilters[$filterTmp['type']]; + $subQueryFilter = self::$methodName($selected_filters_cleaned, $filter['type'] == $filterTmp['type']); + } foreach ($subQueryFilter as $key => $value) $sqlQuery[$key] .= $value; } @@ -2471,12 +2484,29 @@ class BlockLayered extends Module return $cache; } + public function cleanFilterByIdValue($attributes, $id_value) + { + $selected_filters = array(); + if (is_array($attributes)) + foreach ($attributes as $attribute) + { + $attribute_data = explode('_', $attribute); + if ($attribute_data[0] == $id_value) + $selected_filters[] = $attribute_data[1]; + } + return $selected_filters; + } + public function generateFiltersBlock($selectedFilters) { global $smarty; if($filterBlock = $this->getFilterBlock($selectedFilters)) { - $smarty->assign($this->getFilterBlock($selectedFilters)); + if ($filterBlock['nbr_filterBlocks'] == 0) + return false; + + $smarty->assign($filterBlock); + return $this->display(__FILE__, 'blocklayered.tpl'); } else @@ -2795,10 +2825,15 @@ class BlockLayered extends Module else $categoryCount = ''; + if ($nbProducts == 0) + $product_list_tpl = 'blocklayered-no-products.tpl'; + else + $product_list_tpl = _PS_THEME_DIR_.'product-list.tpl'; + /* We are sending an array in jSon to the .js controller, it will update both the filters and the products zones */ return Tools::jsonEncode(array( 'filtersBlock' => $this->generateFiltersBlock($selectedFilters), - 'productList' => $smarty->fetch(_PS_THEME_DIR_.'product-list.tpl'), + 'productList' => $smarty->fetch($product_list_tpl), 'pagination' => $smarty->fetch(_PS_THEME_DIR_.'pagination.tpl'), 'categoryCount' => $categoryCount)); } diff --git a/modules/blocklayered/fr.php b/modules/blocklayered/fr.php index 1b3182b79..728332a99 100644 --- a/modules/blocklayered/fr.php +++ b/modules/blocklayered/fr.php @@ -2,6 +2,7 @@ global $_MODULE; $_MODULE = array(); +$_MODULE['<{blocklayered}prestashop>blocklayered-no-products_5c9838becf9bbce28ba90a7426daf171'] = 'Il n\'y a pas de produits.'; $_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_af1b98adf7f686b84cd0b443e022b7a0'] = 'Catégories'; diff --git a/modules/ebay/config.xml b/modules/ebay/config.xml index ca58c2e0f..d6c4bfd6e 100755 --- a/modules/ebay/config.xml +++ b/modules/ebay/config.xml @@ -2,7 +2,7 @@ ebay - + diff --git a/modules/ebay/ebay.php b/modules/ebay/ebay.php index 96f2bec8e..710799eb5 100755 --- a/modules/ebay/ebay.php +++ b/modules/ebay/ebay.php @@ -59,7 +59,7 @@ class Ebay extends Module { $this->name = 'ebay'; $this->tab = 'market_place'; - $this->version = '1.3'; + $this->version = '1.3.1'; $this->author = 'PrestaShop'; parent::__construct (); $this->displayName = $this->l('eBay'); @@ -913,7 +913,7 @@ class Ebay extends Module return '

'.$this->l('You have to configure "General Settings" tab before using this tab.').'


'; // Load categories only if necessary - if (Db::getInstance()->getValue('SELECT COUNT(`id_ebay_category_configuration`) FROM `'._DB_PREFIX_.'ebay_category_configuration`') > 4 && Tools::getValue('section') != 'category') + if (Db::getInstance()->getValue('SELECT COUNT(`id_ebay_category_configuration`) FROM `'._DB_PREFIX_.'ebay_category_configuration`') >= 1 && Tools::getValue('section') != 'category') return '

'.$this->l('Your categories have already been configured.').'

'; @@ -1281,10 +1281,12 @@ class Ebay extends Module eBaySyncProduct(option); } + var counter = 0; function eBaySyncProduct(option) { + counter++; $.ajax({ - url: \''._MODULE_DIR_.'ebay/ajax/eBaySyncProduct.php?token='.Configuration::get('EBAY_SECURITY_TOKEN').'&option=\'+option+\'&time='.pSQL(date('Ymdhis').rand()).'\', + url: \''._MODULE_DIR_.'ebay/ajax/eBaySyncProduct.php?token='.Configuration::get('EBAY_SECURITY_TOKEN').'&option=\'+option+\'&time='.pSQL(date('Ymdhis')).'\'+counter, success: function(data) { tab = data.split("|"); @@ -1554,9 +1556,9 @@ class Ebay extends Module $images = $product->getImages($this->id_lang); foreach ($images as $image) { - $pictures[] = str_replace('https://', 'http://', $prefix.$this->context->link->getImageLink('', $product->id.'-'.$image['id_image'], null)); - $picturesMedium[] = str_replace('https://', 'http://', $prefix.$this->context->link->getImageLink('', $product->id.'-'.$image['id_image'], 'medium')); - $picturesLarge[] = str_replace('https://', 'http://', $prefix.$this->context->link->getImageLink('', $product->id.'-'.$image['id_image'], 'large')); + $pictures[] = str_replace('https://', 'http://', $prefix.$this->context->link->getImageLink('ebay', $product->id.'-'.$image['id_image'], 'large')); + $picturesMedium[] = str_replace('https://', 'http://', $prefix.$this->context->link->getImageLink('ebay', $product->id.'-'.$image['id_image'], 'medium')); + $picturesLarge[] = str_replace('https://', 'http://', $prefix.$this->context->link->getImageLink('ebay', $product->id.'-'.$image['id_image'], 'large')); } // Load Variations @@ -1618,6 +1620,7 @@ class Ebay extends Module 'name' => str_replace('&', '&', $product->name), 'brand' => $product->manufacturer_name, 'description' => $product->description, + 'description_short' => $product->description_short, 'price' => $price, 'quantity' => $product->quantity, 'categoryId' => $categoryDefaultCache[$product->id_category_default]['id_category_ref'], @@ -1644,8 +1647,8 @@ class Ebay extends Module // Load eBay Description $datas['description'] = str_replace( - array('{DESCRIPTION}', '{EBAY_IDENTIFIER}', '{EBAY_SHOP}', '{SLOGAN}', '{PRODUCT_NAME}'), - array($datas['description'], Configuration::get('EBAY_IDENTIFIER'), Configuration::get('EBAY_SHOP'), '', $product->name), + array('{DESCRIPTION_SHORT}', '{DESCRIPTION}', '{EBAY_IDENTIFIER}', '{EBAY_SHOP}', '{SLOGAN}', '{PRODUCT_NAME}'), + array($datas['description_short'], $datas['description'], Configuration::get('EBAY_IDENTIFIER'), Configuration::get('EBAY_SHOP'), '', $product->name), Configuration::get('EBAY_PRODUCT_TEMPLATE') ); diff --git a/modules/importerosc/importerosc.php b/modules/importerosc/importerosc.php index 8ee5e51e8..78ae22da1 100644 --- a/modules/importerosc/importerosc.php +++ b/modules/importerosc/importerosc.php @@ -303,7 +303,7 @@ class importerosc extends ImportModule foreach($combinations as& $combination) { $combination['association'] = array('product_attribute_combination' => array($combination['options_values_id'] => $combination['id_product_attribute'])); - unset($combination['options_values_price']); + unset($combination['options_values_id']); } return $this->autoFormat($combinations, $identifier); } diff --git a/modules/mondialrelay/AdminMondialRelay.php b/modules/mondialrelay/AdminMondialRelay.php index b510d390d..6a1fd509f 100755 --- a/modules/mondialrelay/AdminMondialRelay.php +++ b/modules/mondialrelay/AdminMondialRelay.php @@ -64,7 +64,7 @@ class AdminMondialRelay extends AdminTab $html .= '
'. $this->l('Thanks to kindly correct the following errors on '). ' '. + (int)Tab::getIdFromClassName('AdminContact').(int)$this->context->id_employee).'" style="color:#f00;"> '. $this->l('the contact page').':
    '; foreach($errorListTicket as $type => $error) $html .= '
  • '.$type.': '.$error.'
  • '; diff --git a/modules/mondialrelay/fr.php b/modules/mondialrelay/fr.php index 3efd59f50..7d059d8d0 100755 --- a/modules/mondialrelay/fr.php +++ b/modules/mondialrelay/fr.php @@ -46,6 +46,7 @@ $_MODULE['<{mondialrelay}prestashop>mondialrelay_c888438d14855d7d96a2724ee9c306b $_MODULE['<{mondialrelay}prestashop>mondialrelay_07213a0161f52846ab198be103b5ab43'] = 'erreurs'; $_MODULE['<{mondialrelay}prestashop>mondialrelay_cb5e100e5a9a3e7f6d1fd97512215282'] = 'erreur'; $_MODULE['<{mondialrelay}prestashop>mondialrelay_350c1cc4343826a89f08a33bb49c6d98'] = 'Configuration du Module Mondial Relay'; +$_MODULE['<{mondialrelay}prestashop>mondialrelay_192a5439bcfb850e8885cd4b5e01ced4'] = 'Essayez de désactiver le cache et de forcer la compilation smarty si vous rencontrez le moindre problème après une mise à jour du module'; $_MODULE['<{mondialrelay}prestashop>mondialrelay_d21a9f93917604d5490ad529a7cf1ff9'] = 'Pour créer un transporteur Mondial Relay'; $_MODULE['<{mondialrelay}prestashop>mondialrelay_c6a2e6af5fff47adb3afd780b97d9b4b'] = 'Remplissez et sauvegarder vos paramètres Mondial Relay'; $_MODULE['<{mondialrelay}prestashop>mondialrelay_94fbe32464fcfa902feed9f256439833'] = 'Créez un transporteur via le formulaire ‘’ajouter un transporteur’’ ci-dessous'; diff --git a/modules/mondialrelay/mondialrelay.php b/modules/mondialrelay/mondialrelay.php index 8752dd5f4..20360bd96 100755 --- a/modules/mondialrelay/mondialrelay.php +++ b/modules/mondialrelay/mondialrelay.php @@ -540,37 +540,26 @@ class MondialRelay extends Module { } + /* + ** Update the carrier id to use the new one if changed + */ public function hookupdateCarrier($params) { - // TODO : History shipping - /*if ((int)($params['id_carrier']) != (int)($params['carrier']->id)) + if ((int)($params['id_carrier']) != (int)($params['carrier']->id)) { - $serviceSelected = Db::getInstance()->getRow('SELECT * FROM `'._DB_PREFIX_.'mr_method` WHERE `id_carrier` = '.(int)$params['id_carrier']); - $update = array('id_carrier' => (int)($params['carrier']->id), 'id_carrier_history' => pSQL($serviceSelected['id_carrier_history'].'|'.(int)($params['carrier']->id))); - Db::getInstance()->autoExecute(_DB_PREFIX_.'mr_method', $update, 'UPDATE', '`id_carrier` = '.(int)$params['id_carrier']); - }*/ - - // TODO : Delete for shipping history - $new_carrier = $params['carrier']; - // Depends of the Prestashop version, the matches key isn't the same - if ((_PS_VERSION_ >= '1.4' && $new_carrier->external_module_name == 'mondialrelay') || - $new_carrier->name = 'mondialrelay') - { - $mr_data = Db::getInstance()->getRow(' - SELECT * - FROM `'._DB_PREFIX_.'mr_method` - WHERE `id_carrier` = '.(int)($params['id_carrier'])); - Db::getInstance()->execute(' INSERT INTO `'._DB_PREFIX_.'mr_method` (mr_Name, mr_Pays_list, mr_ModeCol, mr_ModeLiv, mr_ModeAss, id_carrier) - VALUES ( - "'.pSQL($mr_data['mr_Name']).'", - "'.pSQL($mr_data['mr_Pays_list']).'", - "'.pSQL($mr_data['mr_ModeCol']).'", - "'.pSQL($mr_data['mr_ModeLiv']).'", - "'.pSQL($mr_data['mr_ModeAss']).'", - '.(int)($new_carrier->id).')'); + ( + SELECT + mr_Name, + mr_Pays_list, + mr_ModeCol, + mr_ModeLiv, + mr_ModeAss, + "'.(int)$params['carrier']->id.'" + FROM `'._DB_PREFIX_.'mr_method` + WHERE id_carrier ='.(int)$params['id_carrier'].')'); } } diff --git a/modules/ogone/docs/en4.png b/modules/ogone/docs/en4.png index 5f090d1aa..96f852cf7 100644 Binary files a/modules/ogone/docs/en4.png and b/modules/ogone/docs/en4.png differ diff --git a/modules/ogone/ogone.php b/modules/ogone/ogone.php index ecd6ddf0c..38c5434fc 100644 --- a/modules/ogone/ogone.php +++ b/modules/ogone/ogone.php @@ -36,7 +36,7 @@ class Ogone extends PaymentModule { $this->name = 'ogone'; $this->tab = 'payments_gateways'; - $this->version = '2.1'; + $this->version = '2.2'; parent::__construct(); diff --git a/modules/prestafraud/prestafraud.php b/modules/prestafraud/prestafraud.php index dadaa8d45..2fd553c0e 100644 --- a/modules/prestafraud/prestafraud.php +++ b/modules/prestafraud/prestafraud.php @@ -401,7 +401,7 @@ class PrestaFraud extends Module $order->addChild('payment_name', $paymentModule->displayName); $order->addChild('payment_type', (int)$configured_payments[$paymentModule->id]); $order->addChild('order_date', $params['order']->date_add); - $order->addChild('order_ip_address', $this->_getIpByCart($id_cart)); + $order->addChild('order_ip_address', $this->_getIpByCart((int)$params['order']->id_cart)); $carrier = new Carrier((int)$params['order']->id_carrier); $carrier_infos = $order->addChild('carrier_infos'); diff --git a/modules/shopimporter/ajax.php b/modules/shopimporter/ajax.php index eb1aa5f87..1e05d5a06 100644 --- a/modules/shopimporter/ajax.php +++ b/modules/shopimporter/ajax.php @@ -3,7 +3,7 @@ include_once('../../config/config.inc.php'); include_once('../../init.php'); include_once('../../modules/shopimporter/shopimporter.php'); -ini_set('display_errors', 'off'); + $moduleName = Tools::getValue('moduleName'); @@ -210,4 +210,4 @@ if (Tools::isSubmit('displayConfigConnector')) die($importModule->displayConfigConnector()); } } -?> +?> \ No newline at end of file diff --git a/themes/prestashop/lang/en.php b/themes/prestashop/lang/en.php index 697d7f9b4..f67424616 100644 --- a/themes/prestashop/lang/en.php +++ b/themes/prestashop/lang/en.php @@ -2,5 +2,736 @@ global $_LANG; $_LANG = array(); +$_LANG['404_1d3ac0a5826e47e3c2761085e97877f6'] = 'Page not available'; +$_LANG['404_902b0d55fddef6f8d651fe1035b7d4bd'] = 'Error'; +$_LANG['404_4f4816c6984e3c832882b39d8fecbd2c'] = 'We\'re sorry, but the Web address you entered is no longer available'; +$_LANG['404_21dfea356c48679a5ce6671ee307d2a4'] = 'To find a product, please type its name in the field below'; +$_LANG['404_a68ba7d969d1294a35138fa501dfb078'] = 'Search our product catalog:'; +$_LANG['404_13348442cc6a27032d2b4aa28b75a5d3'] = 'Search'; +$_LANG['404_8cf04a9734132302f96da8e113e80ce5'] = 'Home'; +$_LANG['address_3908e1afa0ff22fbf112aff3c5ba55c1'] = 'Your addresses'; +$_LANG['address_e9b6b3aa3cab28048d3879710882e1de'] = 'Modify address'; +$_LANG['address_d7f172af352aa5232de5295afeaa68e5'] = 'To add a new address, please fill out the form below.'; +$_LANG['address_455175f3f5be6306247babb349c0515a'] = 'Your address'; +$_LANG['address_393d8c6bc7a04264bd9523dc8c92b818'] = 'New address'; +$_LANG['address_b60bb13a87fe3ae5463aeb0980a5a8a1'] = 'Identification number'; +$_LANG['address_ea318a4ad37f0c2d2c368e6c958ed551'] = 'DNI / NIF / NIE'; +$_LANG['address_7cb32e708d6b961d476baced73d362bb'] = 'VAT number'; +$_LANG['address_1c76cbfe21c6f44c1d1e59d54f3e4420'] = 'Company'; +$_LANG['address_20db0bfeecd8fe60533206a2b5e9891a'] = 'First name'; +$_LANG['address_8d3f5eff9c40ee315d452392bed5309b'] = 'Last name'; +$_LANG['address_dd7bf230fde8d4836917806aff6a6b27'] = 'Address'; +$_LANG['address_846a54955f32846032981f8fe48c35ff'] = 'Address (Line 2)'; +$_LANG['address_d30f507473129e70c4b962ceccf175cf'] = 'Zip / Postal Code'; +$_LANG['address_57d056ed0984166336b7879c2af3657f'] = 'City'; +$_LANG['address_59716c97497eb9694541f7c3d37b1a4d'] = 'Country'; +$_LANG['address_46a2a41cc6e552044816a2d04634545d'] = 'State'; +$_LANG['address_0f68b904e33d9ac04605aecc958bcf52'] = 'Additional information'; +$_LANG['address_39916f579f264041641c122e68e545d5'] = 'You must register at least one phone number'; +$_LANG['address_fe66abce284ec8589e7d791185b5c442'] = 'Home phone'; +$_LANG['address_41c2fff4867cc204120f001e7af20f7a'] = 'Mobile phone'; +$_LANG['address_6c1c4d5a22e3d6ed8385e7287233396f'] = 'Assign an address title for future reference'; +$_LANG['address_ae7bdef7fe2bbbbf02c11e92c5fceb40'] = 'My address'; +$_LANG['address_dd1f775e443ff3b9a89270713580a51b'] = 'Previous'; +$_LANG['address_c9cc8cce247e49bae79f15173ce97354'] = 'Save'; +$_LANG['address_19f823c6453c2b1ffd09cb715214813d'] = 'Required field'; +$_LANG['addresses_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'My account'; +$_LANG['addresses_e45be0a0d4a0b62b15694c1a631e6e62'] = 'My addresses'; +$_LANG['addresses_f8fe2f1fff8cf1e32b1891fd7b4a65fe'] = 'Please configure the desired billing and delivery addresses to be preselected when placing an order. You may also add additional addresses, which can be useful for sending gifts or receiving an order at your office.'; +$_LANG['addresses_aa5e970d64eb228f31669d3411171f92'] = 'Your addresses are listed below.'; +$_LANG['addresses_cf8f33fb835a556eb3aa8e71a88e7b34'] = 'Be sure to update them if they have changed.'; +$_LANG['addresses_06933067aafd48425d67bcb01bba5cb6'] = 'Update'; +$_LANG['addresses_729a51874fe901b092899e9e8b31c97a'] = 'Are you sure?'; +$_LANG['addresses_f2a6c498fb90ee345d997f888fce3b18'] = 'Delete'; +$_LANG['addresses_b32dd33df738183cb85ab8ea714f8026'] = 'No addresses available.'; +$_LANG['addresses_bed08e8af70a98c1a8361f13ec477be0'] = 'Add new address'; +$_LANG['addresses_3c7d34ae915c6664189dab2aebb02307'] = 'Add an address'; +$_LANG['addresses_0b3db27bc15f682e92ff250ebb167d4b'] = 'Back to your account'; +$_LANG['addresses_8cf04a9734132302f96da8e113e80ce5'] = 'Home'; +$_LANG['authentication_99dea78007133396a7b8ed70578ac6ae'] = 'Login'; +$_LANG['authentication_bffe9a3c9a7e00ba00a11749e022d911'] = 'Log in'; +$_LANG['authentication_5bef23eb7efff2736c5583bda59e5eb7'] = 'Create your account'; +$_LANG['authentication_d726bc5637e9f053917227ec02f6c9d7'] = 'Enter your e-mail address to create an account'; +$_LANG['authentication_8b5dd64ab8d0b8158906796b53a200e2'] = 'E-mail address'; +$_LANG['authentication_5f0258bf719ab828e20edf91e4fb24a7'] = 'Already registered?'; +$_LANG['authentication_dc647eb65e6711e155375218212b3964'] = 'Password'; +$_LANG['authentication_01a569ddc6cf67ddec2a683f0a5f5956'] = 'Forgot your password?'; +$_LANG['authentication_766d4aaf3e045538be23f9a9e17a1593'] = 'Instant Checkout'; +$_LANG['authentication_b78a3223503896721cca1303f776159b'] = 'Title'; +$_LANG['authentication_127469a6b4253ebb77adccc0dd48461e'] = 'Mr.'; +$_LANG['authentication_29e32764941c30d1bb41c601014fbdbd'] = 'Ms.'; +$_LANG['authentication_20db0bfeecd8fe60533206a2b5e9891a'] = 'First name'; +$_LANG['authentication_8d3f5eff9c40ee315d452392bed5309b'] = 'Last name'; +$_LANG['authentication_10803b83a68db8f7e7a33e3b41e184d0'] = 'Date of Birth'; +$_LANG['authentication_86f5978d9b80124f509bdb71786e929e'] = 'January'; +$_LANG['authentication_659e59f062c75f81259d22786d6c44aa'] = 'February'; +$_LANG['authentication_fa3e5edac607a88d8fd7ecb9d6d67424'] = 'March'; +$_LANG['authentication_3fcf026bbfffb63fb24b8de9d0446949'] = 'April'; +$_LANG['authentication_195fbb57ffe7449796d23466085ce6d8'] = 'May'; +$_LANG['authentication_688937ccaf2a2b0c45a1c9bbba09698d'] = 'June'; +$_LANG['authentication_1b539f6f34e8503c97f6d3421346b63c'] = 'July'; +$_LANG['authentication_41ba70891fb6f39327d8ccb9b1dafb84'] = 'August'; +$_LANG['authentication_cc5d90569e1c8313c2b1c2aab1401174'] = 'September'; +$_LANG['authentication_eca60ae8611369fe28a02e2ab8c5d12e'] = 'October'; +$_LANG['authentication_7e823b37564da492ca1629b4732289a8'] = 'November'; +$_LANG['authentication_82331503174acbae012b2004f6431fa5'] = 'December'; +$_LANG['authentication_6f6162d3a052bb330e9c60285c74c6c9'] = 'Sign up for our newsletter'; +$_LANG['authentication_ac135c86084a47630c9eadb4edd5ef75'] = 'Receive special offers from our partners'; +$_LANG['authentication_af0f5bdc5be121b9307687aeeae38c17'] = 'Delivery address'; +$_LANG['authentication_1c76cbfe21c6f44c1d1e59d54f3e4420'] = 'Company'; +$_LANG['authentication_7cb32e708d6b961d476baced73d362bb'] = 'VAT number'; +$_LANG['authentication_dd7bf230fde8d4836917806aff6a6b27'] = 'Address'; +$_LANG['authentication_d30f507473129e70c4b962ceccf175cf'] = 'Zip / Postal Code'; +$_LANG['authentication_57d056ed0984166336b7879c2af3657f'] = 'City'; +$_LANG['authentication_59716c97497eb9694541f7c3d37b1a4d'] = 'Country'; +$_LANG['authentication_46a2a41cc6e552044816a2d04634545d'] = 'State'; +$_LANG['authentication_bcc254b55c4a1babdf1dcb82c207506b'] = 'Phone'; +$_LANG['authentication_ae7bdef7fe2bbbbf02c11e92c5fceb40'] = 'My address'; +$_LANG['authentication_c773457e85b990c10f8823eacb21346c'] = 'Tax identification'; +$_LANG['authentication_b60bb13a87fe3ae5463aeb0980a5a8a1'] = 'Identification number'; +$_LANG['authentication_ea318a4ad37f0c2d2c368e6c958ed551'] = 'DNI / NIF / NIE'; +$_LANG['authentication_19f823c6453c2b1ffd09cb715214813d'] = 'Required field'; +$_LANG['authentication_a0bfb8e59e6c13fc8d990781f77694fe'] = 'Continue'; +$_LANG['authentication_6335a00a08fde0fbb8f6d6630cdadd92'] = 'Your personal information'; +$_LANG['authentication_1e884e3078d9978e216a027ecd57fb34'] = 'E-mail'; +$_LANG['authentication_bf2957630c4209f61a388a08c2154915'] = '(5 characters min.)'; +$_LANG['authentication_455175f3f5be6306247babb349c0515a'] = 'Your address'; +$_LANG['authentication_ae47812e00631626815f5f75ad1abbbd'] = 'Street address, P.O. box, company name, c/o'; +$_LANG['authentication_846a54955f32846032981f8fe48c35ff'] = 'Address (Line 2)'; +$_LANG['authentication_092daa39d2b825e4a7fe9b31c2080ecb'] = 'Apartment, suite, unit, building, floor, etc.'; +$_LANG['authentication_0f68b904e33d9ac04605aecc958bcf52'] = 'Additional information'; +$_LANG['authentication_39916f579f264041641c122e68e545d5'] = 'You must register at least one phone number'; +$_LANG['authentication_fe66abce284ec8589e7d791185b5c442'] = 'Home phone'; +$_LANG['authentication_41c2fff4867cc204120f001e7af20f7a'] = 'Mobile phone'; +$_LANG['authentication_6c1c4d5a22e3d6ed8385e7287233396f'] = 'Assign an address alias for future reference'; +$_LANG['authentication_0ba7583639a274c434bbe6ef797115a4'] = 'Register'; +$_LANG['best-sales_3cb29f0ccc5fd220a97df89dafe46290'] = 'Top sellers'; +$_LANG['best-sales_32af07c9205de16855c50c3d20a51698'] = 'No top sellers.'; +$_LANG['breadcrumb_157f518779095e8206908ff1268f10a7'] = 'return to'; +$_LANG['breadcrumb_8cf04a9734132302f96da8e113e80ce5'] = 'Home'; +$_LANG['category-count_5c9838becf9bbce28ba90a7426daf171'] = 'There are no products.'; +$_LANG['category-count_4ce81305b7edb043d0a7a5c75cab17d0'] = 'There is'; +$_LANG['category-count_6357d3551190ec7e79371a8570121d3a'] = 'There are'; +$_LANG['category-count_b30e141e947fd1b73ad9a02c2c37e7a2'] = 'product.'; +$_LANG['category-count_aac098b07937926af675e5b248734d50'] = 'products.'; +$_LANG['category_f73cc399b5ce12735a57f03414f09ef9'] = 'Subcategories'; +$_LANG['category_ff32f7dba36bcd6d0a4214cd80253c3a'] = 'There are no products in this category.'; +$_LANG['category_2f4e54ec9bebe1122b5c23217e764828'] = 'This category is currently unavailable.'; +$_LANG['cms_24a26cffdfea04302a5bc20b9bce6626'] = 'This CMS page is not visible to your customers.'; +$_LANG['cms_110a4b01beabd53b661a47d4b44bd7a8'] = 'Publish'; +$_LANG['cms_0557fa923dcee4d0f86b1409f5c2167f'] = 'Back'; +$_LANG['cms_e0ca0b16f77072932795a4b2f35b9615'] = 'List of sub categories in'; +$_LANG['cms_853ae90f0351324bd73ea615e6487517'] = ':'; +$_LANG['cms_94f2ffbd057be87ffd94b487f490ab53'] = 'List of pages in'; +$_LANG['cms_eecc2cef7e0fa128ecb0557b66486539'] = 'This page does not exist.'; +$_LANG['contact-form_bbaff12800505b22a853e8b7f4eb6a22'] = 'Contact'; +$_LANG['contact-form_d5552e0564007d93ff5937a9cb3bc491'] = 'Customer Service'; +$_LANG['contact-form_d754a9e8cb640da12849a040f3ca8176'] = 'Your reply'; +$_LANG['contact-form_02d4482d332e1aef3437cd61c9bcc624'] = 'Contact us'; +$_LANG['contact-form_4ec1c39345fe8820d68463eea8803b0f'] = 'Your message has been successfully sent to our team.'; +$_LANG['contact-form_8cf04a9734132302f96da8e113e80ce5'] = 'Home'; +$_LANG['contact-form_7c9d4636fc5ed97bb78bc2aac486beab'] = 'Your message has already been sent.'; +$_LANG['contact-form_0880266daff3ed4c441adb888658c47c'] = 'For questions about an order or for more information about our products'; +$_LANG['contact-form_cc5fd9b9f1cad59fcff97a1f21f34304'] = 'Send a message'; +$_LANG['contact-form_6c27c08f40e1b0d9901deb9ff5f722f7'] = 'Subject Heading'; +$_LANG['contact-form_7bc873cba11f035df692c3549366c722'] = '-- Choose --'; +$_LANG['contact-form_8b5dd64ab8d0b8158906796b53a200e2'] = 'E-mail address'; +$_LANG['contact-form_d79cf3f429596f77db95c65074663a54'] = 'Order ID'; +$_LANG['contact-form_deb10517653c255364175796ace3553f'] = 'Product'; +$_LANG['contact-form_13d6078da2e6592822ede083931d6826'] = 'Attach File'; +$_LANG['contact-form_4c2a8fe7eaf24721cc7a9f0175115bd4'] = 'Message'; +$_LANG['contact-form_94966d90747b97d1f0f206c98a8b1ac3'] = 'Send'; +$_LANG['discount_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'My account'; +$_LANG['discount_f030b242608a016c5e80d53d2faf555b'] = 'My vouchers'; +$_LANG['discount_ca0dbad92a874b2f69b549293387925e'] = 'Code'; +$_LANG['discount_b5a7adde1af5c87d7fd797b6245c2a39'] = 'Description'; +$_LANG['discount_694e8d1f2ee056f98ee488bdc4982d73'] = 'Quantity'; +$_LANG['discount_689202409e48743b914713f96d93947c'] = 'Value'; +$_LANG['discount_a1d0ec6d56f8833a078b5a7ac4caf2d4'] = 'Minimum'; +$_LANG['discount_eb2527806a7e1ef48009eaaa785368fe'] = 'Cumulative'; +$_LANG['discount_8c1279db4db86553e4b9682f78cf500e'] = 'Expiration date'; +$_LANG['discount_29aa46cc3d2677c7e0f216910df600ff'] = 'Free shipping'; +$_LANG['discount_334c4a4c42fdb79d7ebc3e73b517e6f8'] = 'None'; +$_LANG['discount_93cba07454f06a4a960172bbd6e2a435'] = 'Yes'; +$_LANG['discount_bafd7322c6e97d25b6299b5d6fe8920b'] = 'No'; +$_LANG['discount_f4a0d7cb0cd45214c8ca5912c970de13'] = 'Tax included'; +$_LANG['discount_5b54dccf3cb10410cee693309f409324'] = 'You do not have any vouchers.'; +$_LANG['discount_0b3db27bc15f682e92ff250ebb167d4b'] = 'Back to your account'; +$_LANG['discount_8cf04a9734132302f96da8e113e80ce5'] = 'Home'; +$_LANG['errors_6357d3551190ec7e79371a8570121d3a'] = 'There are'; +$_LANG['errors_4ce81305b7edb043d0a7a5c75cab17d0'] = 'There is'; +$_LANG['errors_07213a0161f52846ab198be103b5ab43'] = 'errors'; +$_LANG['errors_cb5e100e5a9a3e7f6d1fd97512215282'] = 'error'; +$_LANG['errors_0557fa923dcee4d0f86b1409f5c2167f'] = 'Back'; +$_LANG['guest-tracking_77cd9fa27c50288413e2ead667fdda84'] = 'Track your order'; +$_LANG['guest-tracking_b5a4f215d9c7e8fbc20532f1e7e03e9e'] = 'Create your customer account'; +$_LANG['guest-tracking_943a199b38fa52e39a1ee77b46aed98f'] = 'Your guest account has been successfully transformed into a customer account. You can now log-in on this'; +$_LANG['guest-tracking_71860c77c6745379b0d44304d66b6a13'] = 'page'; +$_LANG['guest-tracking_109636f722b8fccc95d072b2760a6282'] = 'Transform your guest account into a customer account and enjoy:'; +$_LANG['guest-tracking_7661b3dd0ed101708b4c5ba8948ef03d'] = 'Personal and secure access'; +$_LANG['guest-tracking_d019547a449e74a964252e9f0077ba3d'] = 'Quick and easy check out'; +$_LANG['guest-tracking_1f1015bbef5f42d858e8486397ad8f3e'] = 'Easier merchandise return'; +$_LANG['guest-tracking_6f789eb510f8b335b306e05ac7b17bec'] = 'Define your password:'; +$_LANG['guest-tracking_a4d3b161ce1309df1c4e25df28694b7b'] = 'Submit'; +$_LANG['guest-tracking_a82be0f551b8708bc08eb33cd9ded0cf'] = 'Information'; +$_LANG['guest-tracking_4d0e5e8b1d1499804f5b525e9b553f5d'] = 'Click here to log-in to your customer account'; +$_LANG['guest-tracking_d2948a89e47a4ad7eb8412c1c260ea88'] = 'To track your order, please enter the following information:'; +$_LANG['guest-tracking_83fa39a28a4d159061c408fbd6a249e7'] = 'Order ID:'; +$_LANG['guest-tracking_d51b1df43394fe14cd03d5bcb3a7216b'] = 'For example: 010123'; +$_LANG['guest-tracking_df1555fe48479f594280a2e03f9a8186'] = 'E-mail:'; +$_LANG['guest-tracking_f0d1e86ef00ea0cae0b5a1d3adc8b0c1'] = 'View my order'; +$_LANG['header_0fcd4065ff78fceb3083316ddb958bc1'] = 'You cannot place a new order from your country.'; +$_LANG['history_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'My account'; +$_LANG['history_782c8b38bce4f2f6975ca7f33ac8189b'] = 'Order history'; +$_LANG['history_26aa02964b3c2f82231e4c064150e29e'] = 'Here are the orders you have placed since the creation of your account'; +$_LANG['history_3e6efdbf10e06032e7f0ff19aa43bb79'] = 'If you have just placed an order, it may take a few minutes for it to be validated. Please refresh this page if your order is missing.'; +$_LANG['history_a240fa27925a635b08dc28c9e4f9216d'] = 'Order'; +$_LANG['history_44749712dbec183e983dcd78a7736c41'] = 'Date'; +$_LANG['history_0eede552438475bdfe820c13f24c9399'] = 'Total price'; +$_LANG['history_c453a4b8e8d98e82f35b67f433e3b4da'] = 'Payment'; +$_LANG['history_ec53a8c4f07baed5d8825072c89799be'] = 'Status'; +$_LANG['history_466eadd40b3c10580e3ab4e8061161ce'] = 'Invoice'; +$_LANG['history_1b6324ace95b17a01323052fda855989'] = 'Products to download'; +$_LANG['history_01abfc750a0c942167651c40d088531d'] = '#'; +$_LANG['history_bcd1b68617759b1dfcff0403a6b5a8d1'] = 'PDF'; +$_LANG['history_27792947ed5d5da7c0d1f43327ed9dab'] = 'details'; +$_LANG['history_332c80b1838dc515f5031e09da3b7f3f'] = 'Reorder'; +$_LANG['history_5acc2ceeb883ba07cef2d02ea382f242'] = 'You have not placed any orders.'; +$_LANG['history_0b3db27bc15f682e92ff250ebb167d4b'] = 'Back to Your Account'; +$_LANG['history_8cf04a9734132302f96da8e113e80ce5'] = 'Home'; +$_LANG['identity_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'My account'; +$_LANG['identity_6335a00a08fde0fbb8f6d6630cdadd92'] = 'Your personal information'; +$_LANG['identity_94d33283c51fdd4a296157461259aee0'] = 'Your personal information has been successfully updated.'; +$_LANG['identity_8514d6418c5a503c4accac47e764ce11'] = 'Your password has been sent to your e-mail:'; +$_LANG['identity_91724108825d34f1636cda352524df67'] = 'Please be sure to update your personal information if it has changed.'; +$_LANG['identity_19f823c6453c2b1ffd09cb715214813d'] = 'Required field'; +$_LANG['identity_b78a3223503896721cca1303f776159b'] = 'Title'; +$_LANG['identity_127469a6b4253ebb77adccc0dd48461e'] = 'Mr.'; +$_LANG['identity_29e32764941c30d1bb41c601014fbdbd'] = 'Ms.'; +$_LANG['identity_20db0bfeecd8fe60533206a2b5e9891a'] = 'First name'; +$_LANG['identity_8d3f5eff9c40ee315d452392bed5309b'] = 'Last name'; +$_LANG['identity_1e884e3078d9978e216a027ecd57fb34'] = 'E-mail'; +$_LANG['identity_4bc28f132d571b160ba407e143915de2'] = 'Current Password'; +$_LANG['identity_ae3bb2a1ac61750150b606298091d38a'] = 'New Password'; +$_LANG['identity_f4d1ea475eaa85102e2b4e6d95da84bd'] = 'Confirmation'; +$_LANG['identity_10803b83a68db8f7e7a33e3b41e184d0'] = 'Date of Birth'; +$_LANG['identity_86f5978d9b80124f509bdb71786e929e'] = 'January'; +$_LANG['identity_659e59f062c75f81259d22786d6c44aa'] = 'February'; +$_LANG['identity_fa3e5edac607a88d8fd7ecb9d6d67424'] = 'March'; +$_LANG['identity_3fcf026bbfffb63fb24b8de9d0446949'] = 'April'; +$_LANG['identity_195fbb57ffe7449796d23466085ce6d8'] = 'May'; +$_LANG['identity_688937ccaf2a2b0c45a1c9bbba09698d'] = 'June'; +$_LANG['identity_1b539f6f34e8503c97f6d3421346b63c'] = 'July'; +$_LANG['identity_41ba70891fb6f39327d8ccb9b1dafb84'] = 'August'; +$_LANG['identity_cc5d90569e1c8313c2b1c2aab1401174'] = 'September'; +$_LANG['identity_eca60ae8611369fe28a02e2ab8c5d12e'] = 'October'; +$_LANG['identity_7e823b37564da492ca1629b4732289a8'] = 'November'; +$_LANG['identity_82331503174acbae012b2004f6431fa5'] = 'December'; +$_LANG['identity_6f6162d3a052bb330e9c60285c74c6c9'] = 'Sign up for our newsletter'; +$_LANG['identity_ac135c86084a47630c9eadb4edd5ef75'] = 'Receive special offers from our partners'; +$_LANG['identity_c9cc8cce247e49bae79f15173ce97354'] = 'Save'; +$_LANG['identity_b340f66ef028af40a01d073966d593a9'] = '[Insert customer data privacy clause or law here, if applicable]'; +$_LANG['identity_0b3db27bc15f682e92ff250ebb167d4b'] = 'Back to your account'; +$_LANG['identity_8cf04a9734132302f96da8e113e80ce5'] = 'Home'; +$_LANG['maintenance_e1d4f332b928d40fa3f9df3b7795da4f'] = 'In order to perform site maintenance, our online shop is closed temporarily. We apologize for the inconvenience and ask that you please try again later.'; +$_LANG['manufacturer-list_2377be3c2ad9b435ba277a73f0f1ca76'] = 'Manufacturers'; +$_LANG['manufacturer-list_ce7bdbaa2a5998973271d85172456ee6'] = 'There are no manufacturers.'; +$_LANG['manufacturer-list_4ce81305b7edb043d0a7a5c75cab17d0'] = 'There is'; +$_LANG['manufacturer-list_6357d3551190ec7e79371a8570121d3a'] = 'There are'; +$_LANG['manufacturer-list_17fc949d3618e4e954ad9c3b6005378d'] = 'manufacturer.'; +$_LANG['manufacturer-list_3fa2b11f3f485404874b0e209b5be196'] = 'manufacturers.'; +$_LANG['manufacturer-list_f5bf48aa40cad7891eb709fcf1fde128'] = 'product'; +$_LANG['manufacturer-list_86024cad1e83101d97359d7351051156'] = 'products'; +$_LANG['manufacturer-list_3426bf3cca12b1f6550fd8bd36171e2f'] = 'view products'; +$_LANG['manufacturer_2f09fc3dc3fc1518375e48a05ccabe2d'] = 'List of products by manufacturer'; +$_LANG['manufacturer_a65ed5e8df4b1c2bb34844f81cc9b451'] = 'No products for this manufacturer.'; +$_LANG['my-account_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'My account'; +$_LANG['my-account_c75db6799ed40b04a5f0fe865cb75020'] = 'Welcome to your account. Here, you can manage your addresses and orders.'; +$_LANG['my-account_7442e29d7d53e549b78d93c46b8cdcfc'] = 'Orders'; +$_LANG['my-account_d1c55b03aa566f1dbe40569fe957c496'] = 'History and details of my orders'; +$_LANG['my-account_e06d7593c1cd6dabef450be6c3da7091'] = 'Merchandise returns'; +$_LANG['my-account_89080f0eedbd5491a93157930f1e45fc'] = 'My merchandise returns'; +$_LANG['my-account_d1a365ea7809ae5831c6d9f86886630c'] = 'Credit slips'; +$_LANG['my-account_9132bc7bac91dd4e1c453d4e96edf219'] = 'My credit slips'; +$_LANG['my-account_284b47b0bb63ae2df3b29f0e691d6fcf'] = 'Addresses'; +$_LANG['my-account_e45be0a0d4a0b62b15694c1a631e6e62'] = 'My addresses'; +$_LANG['my-account_a82be0f551b8708bc08eb33cd9ded0cf'] = 'Information'; +$_LANG['my-account_4c8a50af0ebcf49be0cf4e0f67f37595'] = 'My personal information'; +$_LANG['my-account_a82868319826fb092b73968e661b5b38'] = 'Vouchers'; +$_LANG['my-account_95d2137c196c7f84df5753ed78f18332'] = 'My vouchers'; +$_LANG['my-account_8cf04a9734132302f96da8e113e80ce5'] = 'Home'; +$_LANG['new-products_9ff0635f5737513b1a6f559ac2bff745'] = 'New products'; +$_LANG['new-products_d58424783355b6da2dedc302f2bf4065'] = 'No new products.'; +$_LANG['order-address_f5bf48aa40cad7891eb709fcf1fde128'] = 'product'; +$_LANG['order-address_86024cad1e83101d97359d7351051156'] = 'products'; +$_LANG['order-address_da9d6ec2998a07c31ec9eb93c9f254ed'] = 'Your billing address'; +$_LANG['order-address_8a8c9edb5531fa2f822295d1830d090f'] = 'Your delivery address'; +$_LANG['order-address_06933067aafd48425d67bcb01bba5cb6'] = 'Update'; +$_LANG['order-address_284b47b0bb63ae2df3b29f0e691d6fcf'] = 'Addresses'; +$_LANG['order-address_d0748d2df4aed77bd7591b3ac6c52c83'] = 'Choose a delivery address:'; +$_LANG['order-address_d40f5cb3e1fbb5760a8d2a44a1241d4d'] = 'Use the delivery address as the billing address.'; +$_LANG['order-address_82a7d396bbd6f6fef648578b4ae2ea81'] = 'Choose a billing address:'; +$_LANG['order-address_ec211f7c20af43e742bf2570c3cb84f9'] = 'Add'; +$_LANG['order-address_b15e1100a6196acba01ef7aaa5b2a9e5'] = 'Add a new address'; +$_LANG['order-address_617096c86d35478132502be00e12e016'] = 'If you would like to add a comment about your order, please write it below.'; +$_LANG['order-address_dd1f775e443ff3b9a89270713580a51b'] = 'Previous'; +$_LANG['order-address_10ac3d04253ef7e1ddc73e6091c0cd55'] = 'Next'; +$_LANG['order-carrier_f5bf48aa40cad7891eb709fcf1fde128'] = 'product'; +$_LANG['order-carrier_86024cad1e83101d97359d7351051156'] = 'products'; +$_LANG['order-carrier_5508a53851720a210e50f7b8a6f66f46'] = 'You must agree to the terms of service before continuing.'; +$_LANG['order-carrier_e7a6ca4e744870d455a57b644f696457'] = 'Free!'; +$_LANG['order-carrier_ea9cf7e47ff33b2be14e6dd07cbcefc6'] = 'Shipping'; +$_LANG['order-carrier_6f05787682585c32498e88bcd2ea88fc'] = 'Delivery methods'; +$_LANG['order-carrier_e4045598261988d9988c594243a9434d'] = 'Terms of service'; +$_LANG['order-carrier_605eef3cad421619ce034ab48415190f'] = 'I agree to the terms of service and will adhere to them unconditionally.'; +$_LANG['order-carrier_674bb1e64d73fb88b873caf79ba06128'] = '(read)'; +$_LANG['order-carrier_e085dcd05d73bdd5afe338e5b6e42a18'] = 'Choose your delivery method'; +$_LANG['order-carrier_c8c4080207cd4f02548c8cb6285bd16b'] = 'No carrier needed for this order'; +$_LANG['order-carrier_0fce1189b263c211a8239fb0e9df004d'] = 'I agree to receive my order in recycled packaging'; +$_LANG['order-carrier_8f90815af11493295587f91f571c2f95'] = 'There are no carriers available that deliver to this address.'; +$_LANG['order-carrier_914419aa32f04011357d3b604a86d7eb'] = 'Carrier'; +$_LANG['order-carrier_a82be0f551b8708bc08eb33cd9ded0cf'] = 'Information'; +$_LANG['order-carrier_3601146c4e948c32b6424d2c0a7f0118'] = 'Price'; +$_LANG['order-carrier_21034ae6d01a83e702839a72ba8a77b0'] = '(tax excl.)'; +$_LANG['order-carrier_1f87346a16cf80c372065de3c54c86d9'] = '(tax incl.)'; +$_LANG['order-carrier_0d9175fe89fb80d815e7d03698b6e83a'] = 'Gift'; +$_LANG['order-carrier_ea3bd794dfeb4537c194ee43899516ed'] = 'I would like my order to be gift-wrapped.'; +$_LANG['order-carrier_5c2dfd55fea1f5c6adef500fcb6403b4'] = 'Additional cost of'; +$_LANG['order-carrier_b4e59f3a4554655a099738382ebedbff'] = 'If you wish, you can add a note to the gift:'; +$_LANG['order-carrier_dd1f775e443ff3b9a89270713580a51b'] = 'Previous'; +$_LANG['order-carrier_10ac3d04253ef7e1ddc73e6091c0cd55'] = 'Next'; +$_LANG['order-carrier_bd5b551d1757a856d9f2d01dc7850080'] = 'Leave a message'; +$_LANG['order-carrier_617096c86d35478132502be00e12e016'] = 'If you would like to add a comment about your order, please write it below.'; +$_LANG['order-confirmation_fb077ecba55e5552916bde26d8b9e794'] = 'Order confirmation'; +$_LANG['order-confirmation_e19e31ddb54b493059808ec4f2dab4cb'] = 'Your order ID is:'; +$_LANG['order-confirmation_c3b59dc92773203d09404d887676376f'] = 'Your order ID has been sent to you via e-mail.'; +$_LANG['order-confirmation_4082ea29b4f196c4f60533500139725a'] = 'Follow my order'; +$_LANG['order-confirmation_9390390581f54c65d6acfc8da4e17362'] = 'Back to orders'; +$_LANG['order-detail_d0b7240c8f04f7c73fb5c063042ab86b'] = 'Order placed on'; +$_LANG['order-detail_332c80b1838dc515f5031e09da3b7f3f'] = 'Reorder'; +$_LANG['order-detail_9aa2b51093a63aec1983d31dac4dc0f0'] = 'Follow your order step-by-step'; +$_LANG['order-detail_44749712dbec183e983dcd78a7736c41'] = 'Date'; +$_LANG['order-detail_ec53a8c4f07baed5d8825072c89799be'] = 'Status'; +$_LANG['order-detail_ced55d097872ab13bf177e8d31db396f'] = 'Click the following link to track the delivery of your order'; +$_LANG['order-detail_2ca3deb5cd68fa9119b285804fab572f'] = 'Order:'; +$_LANG['order-detail_01abfc750a0c942167651c40d088531d'] = '#'; +$_LANG['order-detail_f8617a92ba0a0a4eabee724eab7c9f48'] = 'Carrier:'; +$_LANG['order-detail_c1f6368d15f7c13c4e5e8f70c68c747f'] = 'Payment method:'; +$_LANG['order-detail_0e27a6c47d2529f58f60d0e28dcbafd7'] = 'Download your invoice as a PDF file'; +$_LANG['order-detail_755bb0834a77079fd1330b555b69e6bf'] = 'You have given permission to receive your order in recycled packaging.'; +$_LANG['order-detail_8efd9e9597e94fe3397c831f2ed1b7bd'] = 'You requested gift-wrapping for your order.'; +$_LANG['order-detail_940663fd4428d2c86f9a4780b6574028'] = 'Message:'; +$_LANG['order-detail_466eadd40b3c10580e3ab4e8061161ce'] = 'Invoice'; +$_LANG['order-detail_065ab3a28ca4f16f55f103adc7d0226f'] = 'Delivery'; +$_LANG['order-detail_63d5049791d9d79d86e9a108b0a999ca'] = 'Reference'; +$_LANG['order-detail_deb10517653c255364175796ace3553f'] = 'Product'; +$_LANG['order-detail_694e8d1f2ee056f98ee488bdc4982d73'] = 'Quantity'; +$_LANG['order-detail_6c957f72dc8cdacc75762f2cbdcdfaf2'] = 'Unit price'; +$_LANG['order-detail_0eede552438475bdfe820c13f24c9399'] = 'Total price'; +$_LANG['order-detail_3a5199ec2407f4b2f90496072ea8f006'] = 'Total products (tax excl.):'; +$_LANG['order-detail_db205f01b4fd580fb5daa9072d96849d'] = 'Total products'; +$_LANG['order-detail_1f87346a16cf80c372065de3c54c86d9'] = '(tax incl.)'; +$_LANG['order-detail_2633d6725607d13e80f5e30514b91fbe'] = 'Total vouchers:'; +$_LANG['order-detail_a12925b3d2beb085f9a024d8098b41dd'] = 'Total gift-wrapping:'; +$_LANG['order-detail_f4e8b53a114e5a17d051ab84d326cae5'] = 'Total shipping'; +$_LANG['order-detail_66c4c5112f455a19afde47829df363fa'] = 'Total:'; +$_LANG['order-detail_853ae90f0351324bd73ea615e6487517'] = ':'; +$_LANG['order-detail_d8ea8f57bff2e29a27f3821ae74968bd'] = 'download this product'; +$_LANG['order-detail_aec9b5b1c2f91ccdef8e25f5f1dac86a'] = 'Download product'; +$_LANG['order-detail_f8f5730f2ee46b88120ff192190fb7cd'] = 'Voucher:'; +$_LANG['order-detail_336d5ebc5436534e61d16e63ddfca327'] = '-'; +$_LANG['order-detail_3956298bcfc047e15b0e0d218492ce09'] = 'Merchandise return'; +$_LANG['order-detail_ac8f8f0de7595f3e4e813e3a1065a061'] = 'If you wish to return one or more products, please mark the corresponding boxes and provide an explanation for the return. Then click the button below.'; +$_LANG['order-detail_f70389e39824fbcf34c2382a1ba9a458'] = 'Make a RMA slip'; +$_LANG['order-detail_41de6d6cfb8953c021bbe4ba0701c8a1'] = 'Messages'; +$_LANG['order-detail_5da618e8e4b89c66fe86e32cdafde142'] = 'From'; +$_LANG['order-detail_4c2a8fe7eaf24721cc7a9f0175115bd4'] = 'Message'; +$_LANG['order-detail_6357d3551190ec7e79371a8570121d3a'] = 'There are'; +$_LANG['order-detail_4ce81305b7edb043d0a7a5c75cab17d0'] = 'There is'; +$_LANG['order-detail_07213a0161f52846ab198be103b5ab43'] = 'errors'; +$_LANG['order-detail_cb5e100e5a9a3e7f6d1fd97512215282'] = 'error'; +$_LANG['order-detail_37c06f5486d3068a0a9604552c7e081f'] = 'Add a message:'; +$_LANG['order-detail_617096c86d35478132502be00e12e016'] = 'f you would like to add a comment about your order, please write it below.'; +$_LANG['order-detail_94966d90747b97d1f0f206c98a8b1ac3'] = 'Send'; +$_LANG['order-detail_a9979df9e349275e2d86f7af03e24d14'] = 'You cannot make a merchandise return with a guest account'; +$_LANG['order-follow_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'My account'; +$_LANG['order-follow_bfc23574a242be4531bcb29877ac1d8a'] = 'Return Merchandise Authorization (RMA)'; +$_LANG['order-follow_2e99578f8bd14385bc5bcc2608e7b938'] = 'You do not have enough products to request another merchandise return.'; +$_LANG['order-follow_229ca46a5d762e19a428f59449c916ad'] = 'Please provide an explanation for your RMA.'; +$_LANG['order-follow_e6f6a5e58ee6d010f22e4b3dbd756213'] = 'Please check at least one product you would like to return.'; +$_LANG['order-follow_93d4be62cede66eb788f5ca8046bac7f'] = 'Please provide a quantity for the product you checked.'; +$_LANG['order-follow_9bb4b32641712af2309584a5e97c0f73'] = 'This order cannot be returned.'; +$_LANG['order-follow_e1b6d8e31d5a3dee879dddc77c492b81'] = 'Here are the merchandise returns you have made'; +$_LANG['order-follow_988fd738de9c6d177440c5dcf69e73ce'] = 'Return'; +$_LANG['order-follow_a240fa27925a635b08dc28c9e4f9216d'] = 'Order'; +$_LANG['order-follow_d442cb92c3b031eceacbfe87605b9356'] = 'Package status'; +$_LANG['order-follow_446faa7da2d42ba4ffeda73cb119dd91'] = 'Date issued'; +$_LANG['order-follow_0d3cfc2fe56119651ee7848f3e32d84d'] = 'Return slip'; +$_LANG['order-follow_01abfc750a0c942167651c40d088531d'] = '#'; +$_LANG['order-follow_cc894fffb019b528d12951b74d6d2b6e'] = 'Order return'; +$_LANG['order-follow_daf51d7d9e10e6a469434ae548d9a173'] = 'Print out'; +$_LANG['order-follow_3976e0f730b236b1cf619dc80f78488e'] = 'You have no return merchandise authorizations.'; +$_LANG['order-follow_0b3db27bc15f682e92ff250ebb167d4b'] = 'Back to your account'; +$_LANG['order-follow_8cf04a9734132302f96da8e113e80ce5'] = 'Home'; +$_LANG['order-opc-new-account_08bd40c7543007ad06e4fce31618f6ec'] = 'Account'; +$_LANG['order-opc-new-account_db879b00e657fc85f7873343f11df21c'] = 'Already registered?'; +$_LANG['order-opc-new-account_936ccdb97115e9f35a11d35e3d5b5cad'] = 'Click here'; +$_LANG['order-opc-new-account_8b5dd64ab8d0b8158906796b53a200e2'] = 'E-mail address'; +$_LANG['order-opc-new-account_dc647eb65e6711e155375218212b3964'] = 'Password'; +$_LANG['order-opc-new-account_bffe9a3c9a7e00ba00a11749e022d911'] = 'Log in'; +$_LANG['order-opc-new-account_01a569ddc6cf67ddec2a683f0a5f5956'] = 'Forgot your password?'; +$_LANG['order-opc-new-account_c28639657b4e3352241f83d8b6021e4e'] = 'New Customer'; +$_LANG['order-opc-new-account_766d4aaf3e045538be23f9a9e17a1593'] = 'Instant Checkout'; +$_LANG['order-opc-new-account_357e8e55cf47b6f04c354179b303105a'] = 'Checkout as guest'; +$_LANG['order-opc-new-account_d50965b89f4bf0dfbc5b1f13052421a4'] = 'Create your account today and enjoy:'; +$_LANG['order-opc-new-account_7a8fe8aaa64e691d82f429d39e0df3a5'] = 'Personalized and secure access'; +$_LANG['order-opc-new-account_dec9cc6702179299ae451c11633915c6'] = 'Fast and easy check out'; +$_LANG['order-opc-new-account_4efcd04126e90b74c744bab6c66b6e63'] = 'Separate billing and shipping addresses'; +$_LANG['order-opc-new-account_2fdfd506efea08144c0794c32ca8250a'] = 'Create an account'; +$_LANG['order-opc-new-account_1e884e3078d9978e216a027ecd57fb34'] = 'E-mail'; +$_LANG['order-opc-new-account_bf2957630c4209f61a388a08c2154915'] = '(5 characters min.)'; +$_LANG['order-opc-new-account_b78a3223503896721cca1303f776159b'] = 'Title'; +$_LANG['order-opc-new-account_127469a6b4253ebb77adccc0dd48461e'] = 'Mr.'; +$_LANG['order-opc-new-account_29e32764941c30d1bb41c601014fbdbd'] = 'Ms.'; +$_LANG['order-opc-new-account_20db0bfeecd8fe60533206a2b5e9891a'] = 'First name'; +$_LANG['order-opc-new-account_8d3f5eff9c40ee315d452392bed5309b'] = 'Last name'; +$_LANG['order-opc-new-account_10803b83a68db8f7e7a33e3b41e184d0'] = 'Date of Birth'; +$_LANG['order-opc-new-account_86f5978d9b80124f509bdb71786e929e'] = 'January'; +$_LANG['order-opc-new-account_659e59f062c75f81259d22786d6c44aa'] = 'February'; +$_LANG['order-opc-new-account_fa3e5edac607a88d8fd7ecb9d6d67424'] = 'March'; +$_LANG['order-opc-new-account_3fcf026bbfffb63fb24b8de9d0446949'] = 'April'; +$_LANG['order-opc-new-account_195fbb57ffe7449796d23466085ce6d8'] = 'May'; +$_LANG['order-opc-new-account_688937ccaf2a2b0c45a1c9bbba09698d'] = 'June'; +$_LANG['order-opc-new-account_1b539f6f34e8503c97f6d3421346b63c'] = 'July'; +$_LANG['order-opc-new-account_41ba70891fb6f39327d8ccb9b1dafb84'] = 'August'; +$_LANG['order-opc-new-account_cc5d90569e1c8313c2b1c2aab1401174'] = 'September'; +$_LANG['order-opc-new-account_eca60ae8611369fe28a02e2ab8c5d12e'] = 'October'; +$_LANG['order-opc-new-account_7e823b37564da492ca1629b4732289a8'] = 'November'; +$_LANG['order-opc-new-account_82331503174acbae012b2004f6431fa5'] = 'December'; +$_LANG['order-opc-new-account_6f6162d3a052bb330e9c60285c74c6c9'] = 'Sign up for our newsletter'; +$_LANG['order-opc-new-account_ac135c86084a47630c9eadb4edd5ef75'] = 'Receive special offers from our partners'; +$_LANG['order-opc-new-account_af0f5bdc5be121b9307687aeeae38c17'] = 'Delivery address'; +$_LANG['order-opc-new-account_1c76cbfe21c6f44c1d1e59d54f3e4420'] = 'Company'; +$_LANG['order-opc-new-account_dd7bf230fde8d4836917806aff6a6b27'] = 'Address'; +$_LANG['order-opc-new-account_846a54955f32846032981f8fe48c35ff'] = 'Address (Line 2)'; +$_LANG['order-opc-new-account_bd9014fe70f4f8bb1beed74e3b708483'] = 'Zip / Postal code'; +$_LANG['order-opc-new-account_57d056ed0984166336b7879c2af3657f'] = 'City'; +$_LANG['order-opc-new-account_59716c97497eb9694541f7c3d37b1a4d'] = 'Country'; +$_LANG['order-opc-new-account_7cb32e708d6b961d476baced73d362bb'] = 'VAT number'; +$_LANG['order-opc-new-account_46a2a41cc6e552044816a2d04634545d'] = 'State'; +$_LANG['order-opc-new-account_b60bb13a87fe3ae5463aeb0980a5a8a1'] = 'Identification number'; +$_LANG['order-opc-new-account_ea318a4ad37f0c2d2c368e6c958ed551'] = 'DNI / NIF / NIE'; +$_LANG['order-opc-new-account_0f68b904e33d9ac04605aecc958bcf52'] = 'Additional information'; +$_LANG['order-opc-new-account_fe66abce284ec8589e7d791185b5c442'] = 'Home phone'; +$_LANG['order-opc-new-account_41c2fff4867cc204120f001e7af20f7a'] = 'Mobile phone'; +$_LANG['order-opc-new-account_ae7bdef7fe2bbbbf02c11e92c5fceb40'] = 'My address'; +$_LANG['order-opc-new-account_aee0c5ed0554d46465080ed36d1d93ab'] = 'Please use another address for invoice'; +$_LANG['order-opc-new-account_601d8c4b9f72fc1862013c19b677a499'] = 'Invoice address'; +$_LANG['order-opc-new-account_d30f507473129e70c4b962ceccf175cf'] = 'Zip / Postal Code'; +$_LANG['order-opc-new-account_2eac22e71eedb5bdb8f94a1354964017'] = 'My Invoice address'; +$_LANG['order-opc-new-account_c9cc8cce247e49bae79f15173ce97354'] = 'Save'; +$_LANG['order-opc-new-account_6a35e1439d14f62e7177f59c175c886f'] = 'Account information saved successfully'; +$_LANG['order-opc-new-account_19f823c6453c2b1ffd09cb715214813d'] = 'Required field'; +$_LANG['order-opc_a40cab5994f36d4c48103a22ca082e8f'] = 'Your shopping cart'; +$_LANG['order-opc_5af5f631f774a71445e3028253874394'] = 'Your new order was not accepted.'; +$_LANG['order-opc_1f87346a16cf80c372065de3c54c86d9'] = '(tax incl.)'; +$_LANG['order-opc_21034ae6d01a83e702839a72ba8a77b0'] = '(tax excl.)'; +$_LANG['order-opc_ea295188b69aa5e04810abcc38b2b2be'] = 'has been selected'; +$_LANG['order-opc_9504d494016e17a6de7e7b51da637bc4'] = 'No carrier has been selected'; +$_LANG['order-opc_238a062a6a2543fd85d6616a8506fbe8'] = 'No carrier is needed for this order'; +$_LANG['order-opc_88b99d999766e043c9367b813b66cf58'] = 'No terms of service must be accepted'; +$_LANG['order-opc_889fd2ddcd304e00d3b35d94a06c74af'] = 'Terms of service have been accepted'; +$_LANG['order-opc_acd1d53aa434518183134b5459faf18b'] = 'Terms of service have not been accepted'; +$_LANG['order-opc_4ce81305b7edb043d0a7a5c75cab17d0'] = 'There is'; +$_LANG['order-opc_466ec9f29b485204ef53818459da48af'] = 'error(s)'; +$_LANG['order-opc_af0f5bdc5be121b9307687aeeae38c17'] = 'Delivery address'; +$_LANG['order-opc_601d8c4b9f72fc1862013c19b677a499'] = 'Invoice address'; +$_LANG['order-opc_449374f661344e843453c4e189ddeed8'] = 'Modify my address'; +$_LANG['order-opc_d87f73e8ff8d933ed2ba5ddf25040827'] = 'Instant checkout'; +$_LANG['order-opc_879f6b8877752685a966564d072f498f'] = 'Your shopping cart is empty.'; +$_LANG['order-payment_f5bf48aa40cad7891eb709fcf1fde128'] = 'product'; +$_LANG['order-payment_86024cad1e83101d97359d7351051156'] = 'products'; +$_LANG['order-payment_59319ac504f7ad04ae16126cf49e7f7e'] = 'Your payment method'; +$_LANG['order-payment_9e6d9b3daa15e41d36806a289c42674d'] = 'Choose your payment method'; +$_LANG['order-payment_df33aeec3bf8aa7e8c63b2c4b04898c5'] = 'Please select your preferred payment method to pay the amount of'; +$_LANG['order-payment_1f87346a16cf80c372065de3c54c86d9'] = '(tax incl.)'; +$_LANG['order-payment_8e1263b23607508e7ba8ff39aec8031d'] = 'No payment modules have been installed.'; +$_LANG['order-payment_dd1f775e443ff3b9a89270713580a51b'] = 'Previous'; +$_LANG['order-return_dfd57af0760925d5574fda1794d14de5'] = 'RE#'; +$_LANG['order-return_ed2b5c0139cec8ad2873829dc1117d50'] = 'on'; +$_LANG['order-return_88be9ea838e21273267409d76af3b284'] = 'We have logged your return request.'; +$_LANG['order-return_dd0b8feb4eb6c389c284518f5683017c'] = 'Your package must be returned to us within'; +$_LANG['order-return_ea62a2e28a800c367509773730120a67'] = 'days of receiving your order.'; +$_LANG['order-return_c412711583768a1e9c2deafe9243eee9'] = 'Current status of your merchandise return:'; +$_LANG['order-return_17806a71d233a243594b1210af57c245'] = 'List of items marked as returned:'; +$_LANG['order-return_63d5049791d9d79d86e9a108b0a999ca'] = 'Reference'; +$_LANG['order-return_deb10517653c255364175796ace3553f'] = 'Product'; +$_LANG['order-return_694e8d1f2ee056f98ee488bdc4982d73'] = 'Quantity'; +$_LANG['order-return_853ae90f0351324bd73ea615e6487517'] = ':'; +$_LANG['order-return_fbbd47b7e45c0ad3fe0bf70539b5a2d4'] = 'REMINDER:'; +$_LANG['order-return_1ca819fd1ccd9dfc3a091c66b778271f'] = 'All products must be returned in their original packaging without damage or wear.'; +$_LANG['order-return_f3ba7c2fb2c65ad6fa1b1efd30573a8d'] = 'Please print out the'; +$_LANG['order-return_28128d7dd99113d5978358aa2f4ab5f4'] = 'PDF return slip'; +$_LANG['order-return_3ae26d5af95a7494d0101d3e129d91af'] = 'and include it with your package.'; +$_LANG['order-return_66ee99389edd5e92826b6b9556a7eab8'] = 'Please see PDF return slip'; +$_LANG['order-return_b1dceda8ca0eeb9fd9a4457bb613b67b'] = 'for the correct address'; +$_LANG['order-return_c65ff655c5fd1d03cf7b39496929a507'] = 'Upon receiving your package, we will notify you by e-mail. We will then begin processing the reimbursement of your order total.'; +$_LANG['order-return_2d0620950a4d96ae301ba7a98e528714'] = 'Please let us know if you have any questions.'; +$_LANG['order-return_f637120d9f24c366b382ede6c21cddf0'] = 'If the conditions of return listed above are not respected, we reserve the right to refuse your package and/or reimbursement.'; +$_LANG['order-return_2a161a7d653aa950ebe6e3637e036048'] = 'You must wait for our confirmation before returning any merchandise.'; +$_LANG['order-slip_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'My account'; +$_LANG['order-slip_d1a365ea7809ae5831c6d9f86886630c'] = 'Credit slips'; +$_LANG['order-slip_77346fbddedb12894e80d8a9132b6b87'] = 'Credit slips you have received after cancelled orders'; +$_LANG['order-slip_cf3bae95c5f6023d5a10fe415b205a45'] = 'Credit slip'; +$_LANG['order-slip_a240fa27925a635b08dc28c9e4f9216d'] = 'Order'; +$_LANG['order-slip_446faa7da2d42ba4ffeda73cb119dd91'] = 'Date issued'; +$_LANG['order-slip_3cb6ea48a427bf3a1687302e3b764c27'] = 'View credit slip'; +$_LANG['order-slip_01abfc750a0c942167651c40d088531d'] = '#'; +$_LANG['order-slip_591286c3b4f075453e55532838ce0044'] = 'Order slip'; +$_LANG['order-slip_bcd1b68617759b1dfcff0403a6b5a8d1'] = 'PDF'; +$_LANG['order-slip_0ba830b7ca1513a4882ce5aac84030b8'] = 'You have not received any credit slips.'; +$_LANG['order-slip_0b3db27bc15f682e92ff250ebb167d4b'] = 'Back to your account'; +$_LANG['order-slip_8cf04a9734132302f96da8e113e80ce5'] = 'Home'; +$_LANG['order-steps_290612199861c31d1036b185b4e69b75'] = 'Summary'; +$_LANG['order-steps_99dea78007133396a7b8ed70578ac6ae'] = 'Login'; +$_LANG['order-steps_dd7bf230fde8d4836917806aff6a6b27'] = 'Address'; +$_LANG['order-steps_ea9cf7e47ff33b2be14e6dd07cbcefc6'] = 'Shipping'; +$_LANG['order-steps_c453a4b8e8d98e82f35b67f433e3b4da'] = 'Payment'; +$_LANG['pagination_dd1f775e443ff3b9a89270713580a51b'] = 'Previous'; +$_LANG['pagination_10ac3d04253ef7e1ddc73e6091c0cd55'] = 'Next'; +$_LANG['pagination_e0aa021e21dddbd6d8cecec71e9cf564'] = 'OK'; +$_LANG['pagination_6c583afb157e33bfb5b7c3d4114c4dd5'] = 'items:'; +$_LANG['password_0fb655f37529ad006eb0d503e23e10f1'] = 'Forgot your password?'; +$_LANG['password_031887b627de11e30c85fef623422df2'] = 'Your password has been successfully reset and a confirmation has been sent to your e-mail address:'; +$_LANG['password_10911a0ad07a041ea43230e25faad2d7'] = 'A confirmation e-mail has been sent to your address:'; +$_LANG['password_55ad28443587997ac4fa56386ec2fc1d'] = 'Please enter the e-mail address used to register. We will send your new password to that address.'; +$_LANG['password_df1555fe48479f594280a2e03f9a8186'] = 'E-mail:'; +$_LANG['password_0d0e2934af7d3bc4e7263fcb1f9bc51c'] = 'Retrieve Password'; +$_LANG['password_d28f8b8bba7b45bc5103b23b4f21b4fd'] = 'Return to Login'; +$_LANG['password_95e6faaba5e8b016e5f9bcf5ea6c8270'] = 'Back to Login'; +$_LANG['prices-drop_c8f312df214e2295809027c6ca79d232'] = 'Price drop'; +$_LANG['prices-drop_62e15ca272c14c03aa52b64c8caf2334'] = 'No price drop.'; +$_LANG['product-compare_97f014aa339f5b37951f100fb1a086d8'] = 'Please select at least one product'; +$_LANG['product-compare_fe22c6b5957bca5380f9cf6529fea8c5'] = 'You cannot add more than'; +$_LANG['product-compare_1a3addc6c8dccf79752c39ca4a3b6423'] = 'product(s) to the product comparison'; +$_LANG['product-compare_7eece51cf3938103677db7a5051ef8f5'] = 'Compare'; +$_LANG['product-list_03c2e7e41ffc181a4e84080b4710e81e'] = 'New'; +$_LANG['product-list_800e90e940e7f1fb938b0fda5137f38c'] = 'On sale!'; +$_LANG['product-list_ca2bf12169883f4982d8fe34b7e3c618'] = 'Reduced price!'; +$_LANG['product-list_d0fcb89c94b29d6ab2db749ff688dc7c'] = 'Online only!'; +$_LANG['product-list_78945de8de090e90045d299651a68a9b'] = 'Available'; +$_LANG['product-list_cb3c718c905f00adbb6735f55bfb38ef'] = 'Product available with different options'; +$_LANG['product-list_b55197a49e8c4cd8c314bc2aa39d6feb'] = 'Out of stock'; +$_LANG['product-list_2d0f6b8300be19cf35e89e66f0677f95'] = 'Add to cart'; +$_LANG['product-list_4351cfebe4b61d8aa5efa1d020710005'] = 'View'; +$_LANG['product-list_77798ad342555ffa834758a2aaa6fc11'] = 'Select to compare'; +$_LANG['product-sort_cfab1ba8c67c7c838db98d666f02a132'] = '--'; +$_LANG['product-sort_b3c4afbd8ec3b1e28710fcbdc8cc0549'] = 'Price: lowest first'; +$_LANG['product-sort_29ca2c66ccf5f39e95890f08204b3e85'] = 'Price: highest first'; +$_LANG['product-sort_5820b5a5298779a25d98c41173b931bd'] = 'Product Name: A to Z'; +$_LANG['product-sort_4f4f552919d5a7ad3435b5fdb7fcae61'] = 'Product Name: Z to A'; +$_LANG['product-sort_baf800c24fcb4b5721f22a5a88f1f41a'] = 'In-stock first'; +$_LANG['product-sort_33d8042bd735c559cc3206f4bc99aedc'] = 'Sort by'; +$_LANG['product_e4aae275fc6b4d57daab4431b8bf736c'] = 'The combination does not exist for this product. Please choose another.'; +$_LANG['product_bc0f7082192ef02e934a036cf4991789'] = 'This product is no longer in stock'; +$_LANG['product_9173701581f0213f0104e064479e4ca3'] = 'with those attributes but is available with others'; +$_LANG['product_78a2d6a3d6741d9d2cbff658d5df7cd8'] = 'Uploading in progress, please wait...'; +$_LANG['product_c1f25211403ec7459f265788cdbee403'] = 'Please fill in all required fields, then save the customization.'; +$_LANG['product_f9ddd507fdf437437efdcb333a0f4ff0'] = 'This product is not visible to your customers.'; +$_LANG['product_110a4b01beabd53b661a47d4b44bd7a8'] = 'Publish'; +$_LANG['product_0557fa923dcee4d0f86b1409f5c2167f'] = 'Back'; +$_LANG['product_9981d2af851e4b4a4ea612d59f08ab9c'] = 'Other views'; +$_LANG['product_dd1f775e443ff3b9a89270713580a51b'] = 'Previous'; +$_LANG['product_10ac3d04253ef7e1ddc73e6091c0cd55'] = 'Next'; +$_LANG['product_ea4788705e6873b424c65e91c2846b19'] = 'Cancel'; +$_LANG['product_02ea084dc2ef3e9965dbba4ec87d2f9b'] = 'Display all pictures'; +$_LANG['product_13dba24862cf9128167a59100e154c8d'] = 'Print'; +$_LANG['product_c6beb9157a0e29e604ad5ec484488608'] = 'View full size'; +$_LANG['product_2b56b60f878922093facd42284848a0c'] = 'More details'; +$_LANG['product_e54a973d0c3342dac6ee7d9e145c6f83'] = 'Pack content'; +$_LANG['product_98b0a68a7e4c7b265a5ca9a0b733d96e'] = 'Pick a color:'; +$_LANG['product_588907ab2d492aca0b07b5bf9c931eea'] = 'On sale'; +$_LANG['product_800e90e940e7f1fb938b0fda5137f38c'] = 'On sale!'; +$_LANG['product_ca2bf12169883f4982d8fe34b7e3c618'] = 'Reduced price!'; +$_LANG['product_887ee91702c962a70b87cbef07bbcaec'] = 'tax excl.'; +$_LANG['product_e2e79605fc9450ec17957cf0e910f5c6'] = 'tax incl.'; +$_LANG['product_ae0f500600029a1a5426495e82204ba6'] = '(price reduced by'; +$_LANG['product_9371d7a2e3ae86a00aab4771e39d255d'] = ')'; +$_LANG['product_7bb63c7de5a5ee79356083a12f21e1e8'] = 'instead of'; +$_LANG['product_d436eb0fd9de10b54a828ce6435f7e81'] = 'include'; +$_LANG['product_f85524c253c150e88136df3999ac3fd4'] = 'for green tax'; +$_LANG['product_a134618182b99ff9151d7e0b6b92410a'] = '(not impacted by the discount)'; +$_LANG['product_fe3838c7c11aa406dd956566e17360d5'] = 'per'; +$_LANG['product_ea23e12cae068315b351f8d36d432d76'] = 'Reference:'; +$_LANG['product_2c59ffd0a6631127450d729861975719'] = 'Quantity:'; +$_LANG['product_07d814a3df5cfd2d637e77b215519034'] = 'You must add'; +$_LANG['product_f3bbad73b35f19730399b3da21c3ef32'] = 'as a minimum quantity to buy this product.'; +$_LANG['product_8c751c4aab0db0b811cdfbddf0b4ea56'] = 'Availability:'; +$_LANG['product_4b98be16b76b0941840140f2043432a9'] = 'item in stock'; +$_LANG['product_e16d56df08bbd47e53e153fc6dfc8ad8'] = 'items in stock'; +$_LANG['product_0d83f0026f6d2923b2aa3a208156918c'] = 'Warning: Last items in stock!'; +$_LANG['product_03de921a8ea82897e13d33d66c28b4db'] = 'Online only'; +$_LANG['product_2d0f6b8300be19cf35e89e66f0677f95'] = 'Add to cart'; +$_LANG['product_47f1a471a7f6a74053869cdb9cbf05bb'] = 'Quantity discount'; +$_LANG['product_8beee69f53dcd358f9e333de43a3f506'] = 'quantities'; +$_LANG['product_221d2a4bfdae13dbd5aeff3b02adb8c1'] = 'quantity'; +$_LANG['product_71948aa4f6e12cdaa5e2e63a5eb8f142'] = 'More info'; +$_LANG['product_7dcd185f890fd28f69d1ed210292d77f'] = 'Data sheet'; +$_LANG['product_801ab24683a4a8c433c6eb40c48bcd9d'] = 'Download'; +$_LANG['product_98edb85b00d9527ad5acebe451b3fae6'] = 'Accessories'; +$_LANG['product_d3da97e2d9aee5c8fbe03156ad051c99'] = 'More'; +$_LANG['product_4351cfebe4b61d8aa5efa1d020710005'] = 'View'; +$_LANG['product_cb3c718c905f00adbb6735f55bfb38ef'] = 'Product available with different options'; +$_LANG['product_b55197a49e8c4cd8c314bc2aa39d6feb'] = 'Out of stock'; +$_LANG['product_54c02ba7929b1fda4847991a45b58a48'] = 'Product customization'; +$_LANG['product_d5a90effea572da2df11559161c0930b'] = 'After saving your customized product, remember to add it to your cart.'; +$_LANG['product_e5a75e83f9fd2f5fdff337a46227b3c3'] = 'Allowed file formats are: GIF, JPG, PNG'; +$_LANG['product_b11ddc7e1671c0bd22dc89dd757508d4'] = 'Pictures'; +$_LANG['product_f2a6c498fb90ee345d997f888fce3b18'] = 'Delete'; +$_LANG['product_bb87e047206ecce912eec2afb5c29d6a'] = 'Please select an image file from your hard drive'; +$_LANG['product_8957b8a4d2d2d8f7e4c5f7a4c365255f'] = 'Texts'; +$_LANG['product_c9cc8cce247e49bae79f15173ce97354'] = 'Save'; +$_LANG['product_7f8c1eb3bfb1d0f94b20515f3cc5a211'] = 'required fields'; +$_LANG['products-comparison_4dbce7d8fae730e09fce9e83433c77ff'] = 'Product Comparison'; +$_LANG['products-comparison_d3da97e2d9aee5c8fbe03156ad051c99'] = 'More'; +$_LANG['products-comparison_800e90e940e7f1fb938b0fda5137f38c'] = 'On sale!'; +$_LANG['products-comparison_ca2bf12169883f4982d8fe34b7e3c618'] = 'Reduced price!'; +$_LANG['products-comparison_fe3838c7c11aa406dd956566e17360d5'] = 'per'; +$_LANG['products-comparison_8c751c4aab0db0b811cdfbddf0b4ea56'] = 'Availability:'; +$_LANG['products-comparison_bc0f7082192ef02e934a036cf4991789'] = 'This product is no longer in stock'; +$_LANG['products-comparison_1063e38cb53d94d386f21227fcd84717'] = 'Remove'; +$_LANG['products-comparison_4351cfebe4b61d8aa5efa1d020710005'] = 'View'; +$_LANG['products-comparison_2d0f6b8300be19cf35e89e66f0677f95'] = 'Add to cart'; +$_LANG['products-comparison_98f770b0af18ca763421bac22b4b6805'] = 'Features'; +$_LANG['products-comparison_f5e15309ff0396474b8421ef48871d0b'] = 'No features to compare'; +$_LANG['products-comparison_25257586d1e6d1404a80d2bc6505236f'] = 'There are no products in the comparison'; +$_LANG['restricted-country_4ea06a9e8f9054fff852b1421f9f474b'] = 'You cannot access our store from your country. We apologize for the inconvenience.'; +$_LANG['scenes_d3d2e617335f08df83599665eef8a418'] = 'Close'; +$_LANG['scenes_03c2e7e41ffc181a4e84080b4710e81e'] = 'New'; +$_LANG['scenes_800e90e940e7f1fb938b0fda5137f38c'] = 'On sale!'; +$_LANG['scenes_ca2bf12169883f4982d8fe34b7e3c618'] = 'Reduced price!'; +$_LANG['search_13348442cc6a27032d2b4aa28b75a5d3'] = 'Search'; +$_LANG['search_e9cbf16b6f16ee339f45a841b915c47c'] = 'Return to previous page'; +$_LANG['search_974056479706646f1e092ada9e3cfc2b'] = 'No results found for your search'; +$_LANG['search_e59894bdfd0b523f5036ff21fa905474'] = 'Please type a search keyword'; +$_LANG['search_374a2615c744dd856979150a5fcc285e'] = 'result has been found.'; +$_LANG['search_e214e4077f303dd6547d22217ae84cc9'] = 'results have been found.'; +$_LANG['shopping-cart-product-line_78945de8de090e90045d299651a68a9b'] = 'Available'; +$_LANG['shopping-cart-product-line_b55197a49e8c4cd8c314bc2aa39d6feb'] = 'Out of stock'; +$_LANG['shopping-cart-product-line_f2a6c498fb90ee345d997f888fce3b18'] = 'Delete'; +$_LANG['shopping-cart-product-line_ec211f7c20af43e742bf2570c3cb84f9'] = 'Add'; +$_LANG['shopping-cart-product-line_1d9baf077ee87921f57a8fe42d510b65'] = 'Subtract'; +$_LANG['shopping-cart-product-line_07c5e982fa212f517539c266b7d5a166'] = 'You must purchase a minimum of'; +$_LANG['shopping-cart-product-line_a2c97afedb345264c3c8fb81011bd010'] = 'of this product.'; +$_LANG['shopping-cart_a40cab5994f36d4c48103a22ca082e8f'] = 'Your shopping cart'; +$_LANG['shopping-cart_5f6b9be870bc784ecc15ddb5dcf7f22e'] = 'Shopping cart summary'; +$_LANG['shopping-cart_879f6b8877752685a966564d072f498f'] = 'Your shopping cart is empty.'; +$_LANG['shopping-cart_5af5f631f774a71445e3028253874394'] = 'This store has not accepted your new order.'; +$_LANG['shopping-cart_f5bf48aa40cad7891eb709fcf1fde128'] = 'product'; +$_LANG['shopping-cart_86024cad1e83101d97359d7351051156'] = 'products'; +$_LANG['shopping-cart_80501a4e00716f2b94f22a465db82b51'] = 'Last product added'; +$_LANG['shopping-cart_ab88d481b4332548cd3ca2aa26fd6edc'] = 'Your shopping cart contents'; +$_LANG['shopping-cart_deb10517653c255364175796ace3553f'] = 'Product'; +$_LANG['shopping-cart_b5a7adde1af5c87d7fd797b6245c2a39'] = 'Description'; +$_LANG['shopping-cart_12d3c7a4296542c62474856ec452c045'] = 'Ref.'; +$_LANG['shopping-cart_9ff9c46512c186ebae182519a55dc6a9'] = 'Avail.'; +$_LANG['shopping-cart_6c957f72dc8cdacc75762f2cbdcdfaf2'] = 'Unit price'; +$_LANG['shopping-cart_03ab340b3f99e03cff9e84314ead38c0'] = 'Qty'; +$_LANG['shopping-cart_96b0141273eabab320119c467cdcaf17'] = 'Total'; +$_LANG['shopping-cart_db205f01b4fd580fb5daa9072d96849d'] = 'Total products'; +$_LANG['shopping-cart_21034ae6d01a83e702839a72ba8a77b0'] = '(tax excl.)'; +$_LANG['shopping-cart_853ae90f0351324bd73ea615e6487517'] = ':'; +$_LANG['shopping-cart_1f87346a16cf80c372065de3c54c86d9'] = '(tax incl.)'; +$_LANG['shopping-cart_543ae6adeb524f98cc7d3c816a1ec1e3'] = 'Total products:'; +$_LANG['shopping-cart_ada0f55ef37f4928c5cd970f378c15e8'] = 'Total vouchers'; +$_LANG['shopping-cart_2633d6725607d13e80f5e30514b91fbe'] = 'Total vouchers:'; +$_LANG['shopping-cart_9cc000efe3e783af5bf114f2e6573156'] = 'Total gift-wrapping'; +$_LANG['shopping-cart_a12925b3d2beb085f9a024d8098b41dd'] = 'Total gift-wrapping:'; +$_LANG['shopping-cart_f4e8b53a114e5a17d051ab84d326cae5'] = 'Total shipping'; +$_LANG['shopping-cart_691b338fa68b3c177c6ebbc745624c6a'] = 'Total shipping:'; +$_LANG['shopping-cart_1ad9dce3d19b51de499eeaa71418435b'] = 'Total (tax excl.):'; +$_LANG['shopping-cart_856ab109229e8acfcddd5c6766a8d956'] = 'Subtotal:'; +$_LANG['shopping-cart_598a4c4d56197cc1f6bca50b20aa484a'] = 'Total tax:'; +$_LANG['shopping-cart_7ca91e615742b38bf7c41101b246fe95'] = 'Estimated Sales Tax:'; +$_LANG['shopping-cart_d4262a684450da4efdd912182c32f4d1'] = 'Total (tax incl.):'; +$_LANG['shopping-cart_66c4c5112f455a19afde47829df363fa'] = 'Total:'; +$_LANG['shopping-cart_67db993438213ca5b77a394bce7d7b41'] = 'Remaining amount to be added to your cart to get free shipping:'; +$_LANG['shopping-cart_2fb3b950fd7711136f7f251ae5fbdbdc'] = 'Text #'; +$_LANG['shopping-cart_f2a6c498fb90ee345d997f888fce3b18'] = 'Delete'; +$_LANG['shopping-cart_c8cd21bd2e33378f10611bc4498cf96f'] = 'Delete this customization'; +$_LANG['shopping-cart_ec211f7c20af43e742bf2570c3cb84f9'] = 'Add'; +$_LANG['shopping-cart_1d9baf077ee87921f57a8fe42d510b65'] = 'Subtract'; +$_LANG['shopping-cart_a82868319826fb092b73968e661b5b38'] = 'Vouchers'; +$_LANG['shopping-cart_bcc7582c9a66be8187578997794a9c1f'] = 'Code:'; +$_LANG['shopping-cart_f7b96335c6a33477579e43f3da368507'] = 'Take advantage of our offers:'; +$_LANG['shopping-cart_af0f5bdc5be121b9307687aeeae38c17'] = 'Delivery address'; +$_LANG['shopping-cart_601d8c4b9f72fc1862013c19b677a499'] = 'Invoice address'; +$_LANG['shopping-cart_f8617a92ba0a0a4eabee724eab7c9f48'] = 'Carrier:'; +$_LANG['shopping-cart_914419aa32f04011357d3b604a86d7eb'] = 'Carrier'; +$_LANG['shopping-cart_10ac3d04253ef7e1ddc73e6091c0cd55'] = 'Next'; +$_LANG['shopping-cart_300225ee958b6350abc51805dab83c24'] = 'Continue shopping'; +$_LANG['sitemap_5813ce0ec7196c492c97596718f71969'] = 'Sitemap'; +$_LANG['sitemap_24cc85476cb8ec1a03192f09231e742b'] = 'Our offers'; +$_LANG['sitemap_9ff0635f5737513b1a6f559ac2bff745'] = 'New products'; +$_LANG['sitemap_3cb29f0ccc5fd220a97df89dafe46290'] = 'Top sellers'; +$_LANG['sitemap_c8f312df214e2295809027c6ca79d232'] = 'Price drop'; +$_LANG['sitemap_2377be3c2ad9b435ba277a73f0f1ca76'] = 'Manufacturers'; +$_LANG['sitemap_1814d65a76028fdfbadab64a5a8076df'] = 'Suppliers'; +$_LANG['sitemap_a0623b78a5f2cfe415d9dbbd4428ea40'] = 'Your Account'; +$_LANG['sitemap_2433db5a329ea473271a3cd8c013362e'] = 'Personal information'; +$_LANG['sitemap_284b47b0bb63ae2df3b29f0e691d6fcf'] = 'Addresses'; +$_LANG['sitemap_9d5bf15117441a1b52eb1f0808e4aad3'] = 'Discounts'; +$_LANG['sitemap_782c8b38bce4f2f6975ca7f33ac8189b'] = 'Order history'; +$_LANG['sitemap_af1b98adf7f686b84cd0b443e022b7a0'] = 'Categories'; +$_LANG['sitemap_453aceb005ceaf54a47da15fee8b2a26'] = 'Pages'; +$_LANG['sitemap_bbaff12800505b22a853e8b7f4eb6a22'] = 'Contact'; +$_LANG['sitemap_34c869c542dee932ef8cd96d2f91cae6'] = 'Our stores'; +$_LANG['store_infos_6f8522e0610541f1ef215a22ffa66ff6'] = 'Monday'; +$_LANG['store_infos_5792315f09a5d54fb7e3d066672b507f'] = 'Tuesday'; +$_LANG['store_infos_796c163589f295373e171842f37265d5'] = 'Wednesday'; +$_LANG['store_infos_78ae6f0cd191d25147e252dc54768238'] = 'Thursday'; +$_LANG['store_infos_c33b138a163847cdb6caeeb7c9a126b4'] = 'Friday'; +$_LANG['store_infos_8b7051187b9191cdcdae6ed5a10e5adc'] = 'Saturday'; +$_LANG['store_infos_9d1a0949c39e66a0cd65240bc0ac9177'] = 'Sunday'; +$_LANG['store_infos_ad179a1071ebd8b00e0ff4718301dcea'] = 'Hours:'; +$_LANG['stores_34c869c542dee932ef8cd96d2f91cae6'] = 'Our stores'; +$_LANG['stores_518c79bc64c2d9e528c1d56f7f2df9ac'] = 'Here are the details of our stores, feel free to contact us:'; +$_LANG['stores_bea91105dec892251f9a0ec77ccdb182'] = 'No store found, try to select a wider radius'; +$_LANG['stores_6cbcb5b200332cd223fd4f35f2f1a659'] = 'store found - see details:'; +$_LANG['stores_6f7d0fc651c0564078d1f2f004e9c9de'] = 'stores found - see all results:'; +$_LANG['stores_673ae02fffb72f0fe68a66f096a01347'] = 'Phone:'; +$_LANG['stores_c556562cb1ccde3e1013ad55b47ce9ae'] = 'Get Directions'; +$_LANG['stores_9e076f5885f5cc16a4b5aeb8de4adff5'] = 'Not found'; +$_LANG['stores_b0bd4576e0f72c464860f7e52a6f48ca'] = 'Enter a location (e.g. zip / postal code, address, city or country) in order to find the nearest stores.'; +$_LANG['stores_12e8c7785484eb1547a9793a6b8603f9'] = 'Your location:'; +$_LANG['stores_74c037d72a34d5aa5fe1440ec7426f36'] = 'Address, zip / postal code, city, state or country'; +$_LANG['stores_326684a8cb097db086be681022d9ae46'] = 'Radius:'; +$_LANG['stores_13348442cc6a27032d2b4aa28b75a5d3'] = 'Search'; +$_LANG['stores_01abfc750a0c942167651c40d088531d'] = '#'; +$_LANG['stores_fdb0c388de01d545017cdf9ccf00eb72'] = 'Store'; +$_LANG['stores_dd7bf230fde8d4836917806aff6a6b27'] = 'Address'; +$_LANG['stores_0aa6f4210bf373c95eda00232e93cd98'] = 'Distance'; +$_LANG['supplier-list_1814d65a76028fdfbadab64a5a8076df'] = 'Suppliers'; +$_LANG['supplier-list_44cc6cf69e752cd267e29e71ac4175ff'] = 'There are no suppliers.'; +$_LANG['supplier-list_4ce81305b7edb043d0a7a5c75cab17d0'] = 'There is'; +$_LANG['supplier-list_6357d3551190ec7e79371a8570121d3a'] = 'There are'; +$_LANG['supplier-list_13c6f6474ae3e11e2c2da11c07c05174'] = 'supplier.'; +$_LANG['supplier-list_285e963189303f5819e77ec7450673af'] = 'suppliers.'; +$_LANG['supplier-list_f5bf48aa40cad7891eb709fcf1fde128'] = 'product'; +$_LANG['supplier-list_86024cad1e83101d97359d7351051156'] = 'products'; +$_LANG['supplier-list_3426bf3cca12b1f6550fd8bd36171e2f'] = 'view products'; +$_LANG['supplier_4bbacadd33aff22ab7468fa4f9efd717'] = 'List of products by supplier:'; +$_LANG['supplier_71a863ca23a2b5d1dc82e60b908576b5'] = 'No products for this supplier.'; +$_LANG['live_edit_282f96c7d1ed98d24606d209dcad9842'] = 'Module position saved'; +$_LANG['live_edit_b5a7416281b1e9483305b7cdeb9db954'] = 'Are you sure? If you close this window, its position won\'t be saved.'; +$_LANG['live_edit_d3d2e617335f08df83599665eef8a418'] = 'Close'; +$_LANG['live_edit_ea4788705e6873b424c65e91c2846b19'] = 'Cancel'; +$_LANG['live_edit_70d9be9b139893aa6c69b5e77e614311'] = 'Confirm'; +$_LANG['live_edit_1b7c6a7f9b72974ede874b8fba9547a0'] = 'Add this module'; +$_LANG['live_edit_da87eac3848a0d55560bdd129a0e134b'] = 'Unable to unregister hook'; +$_LANG['live_edit_79030d996976f29a5e986a42d8f026e5'] = 'Unable to save module position'; +$_LANG['live_edit_3c5b87f318f203adbfcc5d6a68959359'] = 'Failed to load module list'; +$_LANG['live_edit_c9cc8cce247e49bae79f15173ce97354'] = 'Save'; +$_LANG['live_edit_d8dcfab18b3a6eba56d617dd1dcb1ba7'] = 'Close LiveEdit'; -?> +?> \ No newline at end of file diff --git a/themes/prestashop/pagination.tpl b/themes/prestashop/pagination.tpl index 859beddc8..dd6ec4319 100644 --- a/themes/prestashop/pagination.tpl +++ b/themes/prestashop/pagination.tpl @@ -81,7 +81,7 @@ {/if}
{/if} - {if $nb_products > 10} + {if $nb_products > $products_per_page}

{if isset($search_query) AND $search_query}{/if} @@ -109,4 +109,4 @@ {/if}

-{/if} \ No newline at end of file +{/if} diff --git a/translations/en/admin.php b/translations/en/admin.php index 3f5ad5b3c..06d4937e1 100644 --- a/translations/en/admin.php +++ b/translations/en/admin.php @@ -1103,7 +1103,7 @@ $_LANGADM['AdminImages0fb0d96026cc27f8a45d6cb909289903'] = 'You can choose to ke $_LANGADM['AdminImages6e9b08be274aa15f116c641e4c9b8599'] = 'You can also decide to move your images to the new storage system: in this case, click on the \"Move images\" button below. Please be patient, this can take several minutes.'; $_LANGADM['AdminImages1bd266b7c30df50f9b77b0e0f55f2878'] = 'After moving all of your product images, for best performance go to the '; $_LANGADM['AdminImagese686877843ac3c9f4c45aaea265fe59c'] = 'product preferences tab'; -$_LANGADM['AdminImages8b82bc51644c14c234bb3b635b2e2d1c'] = 'and set \"Activate legacy images compatibility\" to NO.'; +$_LANGADM['AdminImagesfb3164a4f7305b347948b8aca17c1735'] = 'and set \"Use the legacy image filesystem\" option to \"No\".'; $_LANGADM['AdminImagesff17d73fa2731689640e8afa0f591b0f'] = 'JPEG images have a small file size and standard quality. PNG images have a bigger file size, a higher quality and support transparency. Note that in all cases the image files will have the .jpg extension.'; $_LANGADM['AdminImagesff167676b1516b34e7f9be0fea5349d6'] = 'WARNING: This feature may not be compatible with your theme or with some modules. In particular, PNG mode is not compatible with the Watermark module. If you encounter any issue, turn it off by selecting \"Use JPEG\".'; $_LANGADM['AdminImages42ceb344b0aaf896b362b0db70b46f98'] = 'Image quality'; @@ -1134,7 +1134,11 @@ $_LANGADM['AdminImporte92cfa244b5eb9025d07522080468445'] = 'Ecotax'; $_LANGADM['AdminImport694e8d1f2ee056f98ee488bdc4982d73'] = 'Quantity'; $_LANGADM['AdminImport8c489d0946f66d17d73f26366a4bf620'] = 'Weight'; $_LANGADM['AdminImport7a1920d61156abc05a60135aefe8bc67'] = 'Default'; +$_LANGADM['AdminImport9b93b45649ec5961b8cc84e905964683'] = 'Image position'; +$_LANGADM['AdminImport9c163d2934fbdd2775356db804d451fc'] = 'Position of the product image to use for this combination. If you use this field, leave image URL empty.'; $_LANGADM['AdminImport427b6d816d7fdd86cabe48d8180a3cc9'] = 'Image URL'; +$_LANGADM['AdminImport14913d7e9d486e77b5c8d085e3797f94'] = 'Delete existing images (0 = No, 1 = Yes)'; +$_LANGADM['AdminImporte6691747add3b37b9c381b8d9476fd4c'] = 'If you do not fill in this column but you fill in the column \"Image URLs (x,y,z...)\", all previously uploaded product images will be deleted and replaced by these new images'; $_LANGADM['AdminImportb718adec73e04ce3ec720dd11a06a308'] = 'ID'; $_LANGADM['AdminImportfd0dcc6233b026d257763713c133cf72'] = 'Active (0/1)'; $_LANGADM['AdminImport2688a544cd5ac33f27ab78c8d8c3acaa'] = 'Name *'; @@ -1147,7 +1151,7 @@ $_LANGADM['AdminImportc1a59288c830561834340f6e7d969401'] = 'URL rewritten'; $_LANGADM['AdminImportdf8ffb90c945e796f2cfd9265325b9c3'] = 'Categories (x,y,z...)'; $_LANGADM['AdminImport4da86e0470f0b14e4e516442202a8d26'] = 'Price tax excl.'; $_LANGADM['AdminImportf0a8011e2482cf9351b7bf565c7950ad'] = 'Price tax incl.'; -$_LANGADM['AdminImport070ed01b52ff55b770f6a04fbe4f5c0c'] = 'Tax rules id'; +$_LANGADM['AdminImport070ed01b52ff55b770f6a04fbe4f5c0c'] = 'Tax rules ID'; $_LANGADM['AdminImportb548dcad953710689b3066823b90f517'] = 'On sale (0/1)'; $_LANGADM['AdminImportb30690be173bcd4a83df0cd68f89a385'] = 'Discount amount'; $_LANGADM['AdminImport5d01d5588119abec82fd8004995de275'] = 'Discount percent'; @@ -1159,11 +1163,15 @@ $_LANGADM['AdminImportec136b444eede3bc85639fac0dd06229'] = 'Supplier'; $_LANGADM['AdminImportc0bd7654d5b278e65f21cf4e9153fdb4'] = 'Manufacturer'; $_LANGADM['AdminImportc1069a480848e06782b81b8bea9c0c94'] = 'Short description'; $_LANGADM['AdminImportbede52f418b34b1ab0db65f9450bdfc3'] = 'Tags (x,y,z...)'; -$_LANGADM['AdminImport927f1f2b947a6e113e98af5ae86fcc49'] = 'Text when in-stock'; -$_LANGADM['AdminImport77493578c6e0675711fe7355a8457668'] = 'Text if back-order allowed'; +$_LANGADM['AdminImport927f1f2b947a6e113e98af5ae86fcc49'] = 'Text when in stock'; +$_LANGADM['AdminImport77493578c6e0675711fe7355a8457668'] = 'Text when backorder allowed'; +$_LANGADM['AdminImportf2149c422ab7577f063b69a2884d17f0'] = 'Available for order'; +$_LANGADM['AdminImportb1a2a959c20b1bd847895e73a5fddbc9'] = 'Product creation date'; +$_LANGADM['AdminImporte1a5e653bc356ed6745d6814d50213eb'] = 'Show price'; $_LANGADM['AdminImport4d2589e1bcd4263cb99927b59f0f88d2'] = 'Image URLs (x,y,z...)'; $_LANGADM['AdminImport21021ea0e52be8e9c599f4dff41e5be0'] = 'Feature'; -$_LANGADM['AdminImport71d0ceacdf562024f2d4c3a76d3b63e4'] = 'Only available online'; +$_LANGADM['AdminImport71d0ceacdf562024f2d4c3a76d3b63e4'] = 'Available online only'; +$_LANGADM['AdminImport9e2941b3c81256fac10392aaca4ccfde'] = 'Condition'; $_LANGADM['AdminImporta10d0bff85112a2b35f885a38088cd20'] = 'Active (0/1)'; $_LANGADM['AdminImport892b3288390ef6ba2f710255a88cff45'] = 'Gender ID (Mr = 1, Ms = 2, else 9)'; $_LANGADM['AdminImportfd90e8dd48a4f75b240cc0f87b1da451'] = 'E-mail *'; @@ -1172,7 +1180,7 @@ $_LANGADM['AdminImporte791ac244233afc29b6f16f20b6e8e1f'] = 'Birthday (yyyy-mm-dd $_LANGADM['AdminImport8340505ddafcba256c7b9b2b8643bffd'] = 'Lastname *'; $_LANGADM['AdminImport06f3fb7ee08834bb2e77d55f61c090be'] = 'Firstname *'; $_LANGADM['AdminImportb884d81a33fb67e1d4fe450b3cbde8d6'] = 'Newsletter (0/1)'; -$_LANGADM['AdminImport59bb75350cf3a0b65c338572cdc80ef8'] = 'Opt in (0/1)'; +$_LANGADM['AdminImport59bb75350cf3a0b65c338572cdc80ef8'] = 'Opt-in (0/1)'; $_LANGADM['AdminImport01f30cc97564a56c119068478c42c1a6'] = 'Alias *'; $_LANGADM['AdminImportf90e807b74928118048a1a6fa65ebfe5'] = 'Customer e-mail'; $_LANGADM['AdminImport1c76cbfe21c6f44c1d1e59d54f3e4420'] = 'Company'; @@ -1187,36 +1195,50 @@ $_LANGADM['AdminImportbcc254b55c4a1babdf1dcb82c207506b'] = 'Phone'; $_LANGADM['AdminImport5020eaae41baf0caa37bcb73b4a12934'] = 'Mobile Phone'; $_LANGADM['AdminImport7cb32e708d6b961d476baced73d362bb'] = 'VAT number'; $_LANGADM['AdminImporte81c4e4f2b7b93b481e13a8553c2ae1b'] = 'or'; +$_LANGADM['AdminImport4059b0251f66a18cb56f544728796875'] = 'Info'; $_LANGADM['AdminImport87aae49bd054f2cfa4b7b395dee5f2d3'] = 'Discount is invalid'; $_LANGADM['AdminImport99af56daf9ee280b15e8ed79d75f0255'] = 'Tags list'; $_LANGADM['AdminImport998b344cff693ad388a14ba89b1523c7'] = 'is invalid'; -$_LANGADM['AdminImportd2cbb6d5d88d4e31c190e535a57b1de5'] = 'Supplier not valid'; -$_LANGADM['AdminImport4fc9f126d937e438ca06874284019dc3'] = 'The .CSV file has been imported into your shop.'; +$_LANGADM['AdminImportd2cbb6d5d88d4e31c190e535a57b1de5'] = 'Supplier is invalid'; +$_LANGADM['AdminImport4fc9f126d937e438ca06874284019dc3'] = 'Your .CSV file has been sucessfully imported into your shop.'; $_LANGADM['AdminImportfb30e78874e1485a0d7e3fa8ae5f7d61'] = 'directory import on admin directory must be writable (CHMOD 755 / 777)'; +$_LANGADM['AdminImport9db4c047fbc2df77e904876ca407a10a'] = 'Sample CSV Import Files'; +$_LANGADM['AdminImportc0cad1da1e9b23dd6e383276f8e3950e'] = 'Sample Categories file'; +$_LANGADM['AdminImportc0bc21edce0f247286513a9f524a3c3e'] = 'Sample Products file'; +$_LANGADM['AdminImport0a8b4817e5c1e8849b9cbd65997441b5'] = 'Sample Combinations file'; +$_LANGADM['AdminImport1b10c2304e2f49d53c39bc40fd393335'] = 'Sample Customers file'; +$_LANGADM['AdminImport2f5e75d22f59829ba10e2e6276321af8'] = 'Sample Addresses file'; +$_LANGADM['AdminImport54b4744bfd46cc4e06988ee168b13abf'] = 'Sample Manufacturers file'; +$_LANGADM['AdminImport156629ee3d24b3979f322c21ae137eb3'] = 'Sample Suppliers file'; $_LANGADM['AdminImport91412465ea9169dfd901dd5e7c96dd99'] = 'Upload'; -$_LANGADM['AdminImport792744786ed30c5623dd1cf0c16f4ffe'] = 'Select a file'; -$_LANGADM['AdminImport4a12ec732a35b911b2abfd483386366f'] = 'You can also upload your file by FTP and put it in'; -$_LANGADM['AdminImport84005574d8d764336cd8e9207de82506'] = 'Allowed files are only UTF-8 and iso-8859-1 encoded ones'; +$_LANGADM['AdminImport792744786ed30c5623dd1cf0c16f4ffe'] = 'Select .CSV a file to import'; +$_LANGADM['AdminImport4a12ec732a35b911b2abfd483386366f'] = 'You can also upload your .CSV file using FTP and upload it to'; +$_LANGADM['AdminImport84005574d8d764336cd8e9207de82506'] = 'Only UTF-8 and ISO-8859-1 encoding are allowed'; $_LANGADM['AdminImport05fd7d5b9c8aa44117e13d22445b42ee'] = 'Are you sure you want to delete'; $_LANGADM['AdminImportd1457b72c3fb323a2671125aef3eab5d'] = '?'; $_LANGADM['AdminImport72d6d7a1885885bb55a565fd1070581a'] = 'Import'; -$_LANGADM['AdminImport7b415a851d29284e119147dd2192737a'] = 'Select which entity to import:'; +$_LANGADM['AdminImport7b415a851d29284e119147dd2192737a'] = 'Select what you would like to import:'; $_LANGADM['AdminImport0e87c23180c781f97b01557106e25962'] = 'Select your .CSV file:'; $_LANGADM['AdminImporteb3e0d29bf7cbcc03b883b65a7f8457e'] = 'files available'; $_LANGADM['AdminImportc740d734b391a2925bb3e49dd04fdd77'] = 'file available'; -$_LANGADM['AdminImport0cdacf949575a8424fc1ef1515c78d3c'] = 'Select language of the file (the locale must be installed):'; -$_LANGADM['AdminImportbe750b2c24ba5c283445bdb62a692a4f'] = 'iso-8859-1 encoded file'; +$_LANGADM['AdminImport0cdacf949575a8424fc1ef1515c78d3c'] = 'Select file language (The PHP locale must be available, see http://php.net/manual/en/class.locale.php):'; +$_LANGADM['AdminImportbe750b2c24ba5c283445bdb62a692a4f'] = 'ISO-8859-1 encoded file'; $_LANGADM['AdminImport3f761068f17769a19635a176fb7e4339'] = 'Field separator:'; $_LANGADM['AdminImportb070d64c5a2f10b4b8eb361ba4f61833'] = 'e.g. '; $_LANGADM['AdminImportbf8a4a7e7e5c9cff1528294e1b1dd3f0'] = 'Multiple value separator:'; $_LANGADM['AdminImport0450d266974d92724ff4bacc3a51952e'] = 'Delete all'; $_LANGADM['AdminImportb0b5ccb4a195a07fd3eed14affb8695f'] = 'categories'; $_LANGADM['AdminImport74b997703c3e7fc1db960f1366ba03ab'] = 'before import ?'; +$_LANGADM['AdminImport34219bb13b784f30df289c19f5dc0e31'] = 'Use product reference as key?'; $_LANGADM['AdminImportc290a5941ad6eb0d5fe8752c15c5fd78'] = 'Next step'; -$_LANGADM['AdminImport651463c8be1ff45540a213cfcae30cfc'] = 'Note that the category import does not support categories of the same name'; -$_LANGADM['AdminImportc78474e0acad6beccb0671eacf904543'] = 'Fields available'; -$_LANGADM['AdminImport1522206cca1be4bf77fff2ea9838ec2c'] = '* Required Fields'; -$_LANGADM['AdminImporte6fe8dc743bfea4d45a4d582e3f86150'] = 'Please enter a name to save.'; +$_LANGADM['AdminImport651463c8be1ff45540a213cfcae30cfc'] = 'Please note: the category import does not support multiple categories with the same name'; +$_LANGADM['AdminImportfbb6344e653db9f1e291725cd254bd9c'] = 'Please note: you can have several products with the same reference'; +$_LANGADM['AdminImport6fa9eb1f1c5bd853188d93953b6e92b2'] = 'No .CSV file is available, please upload your .CSV file above.'; +$_LANGADM['AdminImport6a84219217279f2f1ad80deda1c512d8'] = 'You can get more information about .CSV import at:'; +$_LANGADM['AdminImport950770fc8c228bda83a28836b467df5d'] = 'Learn more about .CSV format at:'; +$_LANGADM['AdminImportc78474e0acad6beccb0671eacf904543'] = 'Available fields'; +$_LANGADM['AdminImport1522206cca1be4bf77fff2ea9838ec2c'] = '* Required field'; +$_LANGADM['AdminImporte6fe8dc743bfea4d45a4d582e3f86150'] = 'Please name your matching configuration to save.'; $_LANGADM['AdminImporte4c59d4886a08fc06a4f37face87a26c'] = 'Your data'; $_LANGADM['AdminImportb5d54fa42bc065a54e2f881ef700d833'] = 'Save and load your matching configuration'; $_LANGADM['AdminImportc9cc8cce247e49bae79f15173ce97354'] = 'Save'; @@ -1226,51 +1248,51 @@ $_LANGADM['AdminImportde8a97fd084105e9d0e74b4825b40010'] = 'Please set the value $_LANGADM['AdminImportf44347857ec02907fd13f88f00ccd532'] = 'Columns cannot have the same value type'; $_LANGADM['AdminImport72ef2b9b6965d078e3c7f95487a82d1c'] = 'Skip'; $_LANGADM['AdminImport980da98409d058c365664ff7ea33dd6b'] = 'lines'; -$_LANGADM['AdminImport903ee94af7e98ce06a57d2243ddd3efd'] = 'Import CSV data'; +$_LANGADM['AdminImport903ee94af7e98ce06a57d2243ddd3efd'] = 'Import .CSV data'; $_LANGADM['AdminImport9c1628890f5db454a0b4aed7720de094'] = '<<'; $_LANGADM['AdminImport22a1dae7d65f90acd53638dc81c3f376'] = '>>'; $_LANGADM['AdminImport7abccc0f7eefd61743e408d28aac7cff'] = 'an error occurred while uploading and copying file'; -$_LANGADM['AdminImport628fbfc7462b2873bb027ee850185859'] = 'no entity selected'; +$_LANGADM['AdminImport628fbfc7462b2873bb027ee850185859'] = 'Please select what you would like to import'; $_LANGADM['AdminInformationaf3e294442744e49788883caffaeaf19'] = 'Update your PHP version'; -$_LANGADM['AdminInformationc168c59890774aa16b1c1fc49168394b'] = 'Configure your server to allow the upload file'; -$_LANGADM['AdminInformationcbd78fd00d31a53c432de73acfde28fa'] = 'Configure your server to allow the creation of directories and write to files'; +$_LANGADM['AdminInformationc168c59890774aa16b1c1fc49168394b'] = 'Configure your server to allow file uploads'; +$_LANGADM['AdminInformationcbd78fd00d31a53c432de73acfde28fa'] = 'Configure your server to allow the creation of directories and files with write permissions'; $_LANGADM['AdminInformation228dca6dcabbdec3227758a121d003f4'] = 'Enable the GD library on your server'; $_LANGADM['AdminInformation9a7d9391be763fe9cb3985176076d8c8'] = 'Enable the MySQL support on your server'; -$_LANGADM['AdminInformation4c663c632162a23d0f65510f7064aa87'] = 'Set write permissions for config folder'; -$_LANGADM['AdminInformation46f5bf0f6fa63aec1b72ad8dae7ddeba'] = 'Set write permissions for tools folder'; -$_LANGADM['AdminInformation7bb1734784c970616ce5f3a4814dadd6'] = 'Set write permissions for cache folder'; -$_LANGADM['AdminInformation2a3ff2643b520b827a90e28d94132d42'] = 'Set write permissions for sitemap.xml file'; -$_LANGADM['AdminInformation01a9d4924686f17b2133f5956d18780a'] = 'Set write permissions for img folder and subfolders/recursively'; -$_LANGADM['AdminInformation77d1a005b31f2fcdce1fcdac2a337c42'] = 'Set write permissions for mails folder and subfolders/recursively'; -$_LANGADM['AdminInformationcb78ec269534f33d27c82ac6e1c59dae'] = 'Set write permissions for modules folder and subfolders/recursively'; -$_LANGADM['AdminInformationae72ff89c480df239bc55b2ea63e99c0'] = 'Set write permissions for themes/'; -$_LANGADM['AdminInformation6991d2d7bca0854d11c9d0c92c63142a'] = '/lang/ folder and subfolders/recursively'; -$_LANGADM['AdminInformation93405bfa9b7b11e81895230d1ebff2f5'] = 'Set write permissions for translations folder and subfolders/recursively'; -$_LANGADM['AdminInformationd4e63b4d8344eb2bcc7c478470a144e7'] = 'Set write permissions for upload folder and subfolders/recursively'; -$_LANGADM['AdminInformatione5a85bc7e9867202a56449ade1060389'] = 'Set write permissions for download folder and subfolders/recursively'; -$_LANGADM['AdminInformationc71fc197a1737d2d837bdae9b5794012'] = 'Enable fopen on your server'; -$_LANGADM['AdminInformation9e987a2c638032d7659ec58e58ef3626'] = 'Set PHP register global option to off'; +$_LANGADM['AdminInformation4c663c632162a23d0f65510f7064aa87'] = 'Set write permissions for \"config\" folder'; +$_LANGADM['AdminInformation46f5bf0f6fa63aec1b72ad8dae7ddeba'] = 'Set write permissions for \"tools\" folder'; +$_LANGADM['AdminInformation7bb1734784c970616ce5f3a4814dadd6'] = 'Set write permissions for \"cache\" folder'; +$_LANGADM['AdminInformation2a3ff2643b520b827a90e28d94132d42'] = 'Set write permissions for \"sitemap.xml\" file'; +$_LANGADM['AdminInformation01a9d4924686f17b2133f5956d18780a'] = 'Set write permissions for \"img\" folder and subfolders, recursively'; +$_LANGADM['AdminInformation77d1a005b31f2fcdce1fcdac2a337c42'] = 'Set write permissions for \"mails\" folder and subfolders, recursively'; +$_LANGADM['AdminInformationcb78ec269534f33d27c82ac6e1c59dae'] = 'Set write permissions for \"modules\" folder and subfolders, recursively'; +$_LANGADM['AdminInformationae72ff89c480df239bc55b2ea63e99c0'] = 'Set write permissions for \"themes/'; +$_LANGADM['AdminInformation6991d2d7bca0854d11c9d0c92c63142a'] = '/lang/\" folder and subfolders, recursively'; +$_LANGADM['AdminInformation93405bfa9b7b11e81895230d1ebff2f5'] = 'Set write permissions for \"translations\" folder and subfolders, recursively'; +$_LANGADM['AdminInformationd4e63b4d8344eb2bcc7c478470a144e7'] = 'Set write permissions for \"upload\" folder and subfolders, recursively'; +$_LANGADM['AdminInformatione5a85bc7e9867202a56449ade1060389'] = 'Set write permissions for \"download\" folder and subfolders, recursively'; +$_LANGADM['AdminInformationc71fc197a1737d2d837bdae9b5794012'] = 'Allow the PHP fopen() function on your server'; +$_LANGADM['AdminInformation9e987a2c638032d7659ec58e58ef3626'] = 'Set PHP \"register_global\" option to \"Off\"'; $_LANGADM['AdminInformation24bdb129e9fe3a110466ea68fec1d430'] = 'Enable GZIP compression on your server'; $_LANGADM['AdminInformation15f4c82d7b2b43e31c30dd018b800c56'] = 'Required parameters'; -$_LANGADM['AdminInformatione7fda5b7b853496978bc2822541e9d89'] = 'Please consult the following error(s)'; +$_LANGADM['AdminInformatione7fda5b7b853496978bc2822541e9d89'] = 'Please fix the following error(s)'; $_LANGADM['AdminInformatione3beee990a3abfcc54a09f5727e1ee11'] = 'Optional parameters'; -$_LANGADM['AdminInformationa82be0f551b8708bc08eb33cd9ded0cf'] = 'Information'; +$_LANGADM['AdminInformationa82be0f551b8708bc08eb33cd9ded0cf'] = 'Configuration Information'; $_LANGADM['AdminInformation6a26f548831e6a8c26bfbbd9f6ec61e0'] = 'Help'; -$_LANGADM['AdminInformationdb67130c0c7e67fac8de13f4c9f053e1'] = 'This information must be indicated when you report a bug on our bug tracker or if you report a problem on our forum.'; +$_LANGADM['AdminInformationdb67130c0c7e67fac8de13f4c9f053e1'] = 'This information must be provided when you report an issue on our bug tracker or forum.'; $_LANGADM['AdminInformation0be76c14451b87542668bec6a03f102d'] = 'Information about your configuration'; $_LANGADM['AdminInformation7d30d49dcf91d103c59496aafc4e3187'] = 'Server information'; -$_LANGADM['AdminInformation768648b98e03adaf128f072119af31d3'] = 'Prestashop Version'; -$_LANGADM['AdminInformationd0ac12f046d68599acee4386c5c1f860'] = 'Server software Version'; -$_LANGADM['AdminInformationab64e3d5feb645333b320d80a84c8255'] = 'PHP Version'; -$_LANGADM['AdminInformationc26b24f06d2ee6f5b27a7f6e200711be'] = 'MySQL Version'; +$_LANGADM['AdminInformation768648b98e03adaf128f072119af31d3'] = 'Prestashop version'; +$_LANGADM['AdminInformationd0ac12f046d68599acee4386c5c1f860'] = 'Server software version'; +$_LANGADM['AdminInformationab64e3d5feb645333b320d80a84c8255'] = 'PHP version'; +$_LANGADM['AdminInformationc26b24f06d2ee6f5b27a7f6e200711be'] = 'MySQL version'; $_LANGADM['AdminInformationfc0eeb8415aed39a9d3624c7fc2fe47c'] = 'PageSpeed module for Apache installed (mod_instaweb)'; $_LANGADM['AdminInformation3aea774cdcd8f2c45549f10758a71323'] = 'Store information'; -$_LANGADM['AdminInformationd4b5a23bc61aeea35b4ce013d7e262c4'] = 'URL of your website'; -$_LANGADM['AdminInformationfaf165f191e0bbd2c13864a08ee9aa83'] = 'Theme name used'; -$_LANGADM['AdminInformation3ff44d56eb2bfbb8f0903e99a28a0819'] = 'Mail information'; +$_LANGADM['AdminInformationd4b5a23bc61aeea35b4ce013d7e262c4'] = 'Shop URL'; +$_LANGADM['AdminInformationfaf165f191e0bbd2c13864a08ee9aa83'] = 'Current theme in use'; +$_LANGADM['AdminInformation3ff44d56eb2bfbb8f0903e99a28a0819'] = 'Mail configuration'; $_LANGADM['AdminInformation3685800496ee1d4fd5cc25d805589f0e'] = 'Mail method'; -$_LANGADM['AdminInformationb285f29261478440add9d1cc0b631f0c'] = 'You use PHP mail() function.'; -$_LANGADM['AdminInformationd5995399dae916bb1393c329b3453a88'] = 'You use your own SMTP parameters'; +$_LANGADM['AdminInformationb285f29261478440add9d1cc0b631f0c'] = 'You are using the PHP mail() function.'; +$_LANGADM['AdminInformationd5995399dae916bb1393c329b3453a88'] = 'You are using your own SMTP parameters.'; $_LANGADM['AdminInformationbdd48fb41b9d0a4a1051fa22a87eb5a2'] = 'SMTP server'; $_LANGADM['AdminInformationc5d1f3e6332bf2995c1bf1395c51a9e2'] = 'SMTP user'; $_LANGADM['AdminInformationc4e9522d7b3c8c652f7f0333ff436eec'] = 'Defined'; @@ -1279,28 +1301,30 @@ $_LANGADM['AdminInformation3cffa2fabd5519beaf4c2fbd0610899b'] = 'SMTP password'; $_LANGADM['AdminInformationd7f2615c71a1567cc13cf3a7f7de0aea'] = 'Encryption'; $_LANGADM['AdminInformation60aaf44d4b562252c04db7f98497e9aa'] = 'Port'; $_LANGADM['AdminInformation8746097684bc64be8b7eff424c4debdb'] = 'Your information'; -$_LANGADM['AdminInformation724d606e1653113be000dc4079074e86'] = 'Information from you'; +$_LANGADM['AdminInformation724d606e1653113be000dc4079074e86'] = 'Your web browser'; $_LANGADM['AdminInformatione91dd9bbca6e42bb85c0f2d94aaee995'] = 'Check your configuration'; $_LANGADM['AdminInvoices1b107c8f50c81b4b3497765849934a1c'] = 'Invoice options'; $_LANGADM['AdminInvoices3ae56a835894e53600833725244b578f'] = 'Enable invoices:'; -$_LANGADM['AdminInvoices23bf11ceb4fb51647fd977aba60246d3'] = 'Select whether or not to activate invoices for your shop'; +$_LANGADM['AdminInvoices23bf11ceb4fb51647fd977aba60246d3'] = 'If enabled, your customers will be able to receive an invoice for their purchases'; $_LANGADM['AdminInvoices832d6a06e91e49828a89fb1ca4651d37'] = 'Invoice prefix:'; -$_LANGADM['AdminInvoices0df35f41ce9f64e7f14819bd4145a2be'] = 'Prefix used for invoices'; +$_LANGADM['AdminInvoices0df35f41ce9f64e7f14819bd4145a2be'] = 'Prefix used for invoice name (e.g. IN00001)'; $_LANGADM['AdminInvoicesdb2d9ca9b008f4cdb2c5902adaa84fdc'] = 'Invoice number:'; $_LANGADM['AdminInvoicesd07d0f209cc31af1d743ea84d572c77a'] = 'The next invoice will begin with this number, and then increase with each additional invoice. Set to 0 if you want to keep the current number (#'; +$_LANGADM['AdminInvoices1513c8f4f5c2d340ac3e1c3d09aeff4c'] = 'Footer Text:'; +$_LANGADM['AdminInvoicescff972b8880cbbf6753afb2706b43fc8'] = 'This text will appear at the bottom of the invoice'; $_LANGADM['AdminInvoicesc491f71acb93db711c341417e8c6be9e'] = 'Print PDF invoices'; $_LANGADM['AdminInvoices9a0a4f0869ab12a21407047290750e7a'] = 'By date'; $_LANGADM['AdminInvoices1e6d57e813355689e9c77e947d73ad8f'] = 'From:'; -$_LANGADM['AdminInvoices0b1fb1278454d848f968d419e29c253b'] = 'Format: 2007-12-31 (inclusive)'; +$_LANGADM['AdminInvoices0b1fb1278454d848f968d419e29c253b'] = 'Format: 2011-12-31 (inclusive)'; $_LANGADM['AdminInvoices33caa076f23f453dd4061726f3706325'] = 'To:'; -$_LANGADM['AdminInvoices647ad0242a9d796e3c83ecf6d6435bc2'] = 'Format: 2008-12-31 (inclusive)'; +$_LANGADM['AdminInvoices647ad0242a9d796e3c83ecf6d6435bc2'] = 'Format: 2012-12-31 (inclusive)'; $_LANGADM['AdminInvoices067af5895a7ced3197520b591f9a41eb'] = 'Generate PDF file'; -$_LANGADM['AdminInvoices70397c4b252a5168c5ec003931cea215'] = 'Required fields'; -$_LANGADM['AdminInvoicesa7bc5a8c54672ab332de0c0174dcd236'] = 'By statuses'; -$_LANGADM['AdminInvoices61fe9018991004014d12b8d81568df90'] = 'Statuses'; -$_LANGADM['AdminInvoicesfef8859b22e06e4d4918f091612bf958'] = 'You can also export orders which have not been charged yet.'; -$_LANGADM['AdminInvoicesf596633d68fc44d6c7460676060d5dcb'] = 'Invalid from date'; -$_LANGADM['AdminInvoicesff9e9791ff17e1ca431449bb2fe992c0'] = 'Invalid end date'; +$_LANGADM['AdminInvoices70397c4b252a5168c5ec003931cea215'] = 'Required field'; +$_LANGADM['AdminInvoicesa7bc5a8c54672ab332de0c0174dcd236'] = 'By order statuses'; +$_LANGADM['AdminInvoices61fe9018991004014d12b8d81568df90'] = 'Order statuses'; +$_LANGADM['AdminInvoicesfef8859b22e06e4d4918f091612bf958'] = 'You can also export orders which have not yet been charged.'; +$_LANGADM['AdminInvoicesf596633d68fc44d6c7460676060d5dcb'] = 'Invalid \"From:\" date'; +$_LANGADM['AdminInvoicesff9e9791ff17e1ca431449bb2fe992c0'] = 'Invalid \"To:\" date'; $_LANGADM['AdminInvoices366a2e6043b7f22bbb12df4a5fce45fb'] = 'No invoice found for this period'; $_LANGADM['AdminInvoicescb63a9e24da94fffad24dd2f9bcf4ca4'] = 'Invalid order statuses'; $_LANGADM['AdminInvoices9a572188372df6be754991fd8f080f16'] = 'No invoice found for this status'; @@ -1310,33 +1334,45 @@ $_LANGADM['AdminLanguages8c2857a9ad1d8f31659e35e904e20fa6'] = 'Logo'; $_LANGADM['AdminLanguages49ee3087348e8d44e1feda1917443987'] = 'Name'; $_LANGADM['AdminLanguagesad68f9bafd9bf2dcf3865dac55662fd5'] = 'ISO code'; $_LANGADM['AdminLanguagese59a41e120686e63cbb743f003bea4e6'] = 'Language code'; +$_LANGADM['AdminLanguages534fd46732986cba0efeda8701592427'] = 'Date format'; +$_LANGADM['AdminLanguagesc11566e30920ed4786e534e5332d5b87'] = 'Date format (full)'; $_LANGADM['AdminLanguages00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Enabled'; -$_LANGADM['AdminLanguages950baf75b9fd48b9cb4a3d30ffeda4ef'] = 'Languages options'; +$_LANGADM['AdminLanguages950baf75b9fd48b9cb4a3d30ffeda4ef'] = 'Language options'; $_LANGADM['AdminLanguages7c89197a7b81992ee832cb5a89fa6d9d'] = 'Default language:'; -$_LANGADM['AdminLanguages6b61093b5fc4585833f0981390993490'] = 'The default language used in shop'; +$_LANGADM['AdminLanguages6b61093b5fc4585833f0981390993490'] = 'The default language used in your shop'; +$_LANGADM['AdminLanguagesa2bc582c21c4b24f18a32d703c0a109b'] = 'You cannot delete the English language because it is a system requirement, you can only deactivate it.'; $_LANGADM['AdminLanguages6b6a046a46f8e97af0b9e92ccfda7801'] = 'you cannot delete the default language'; $_LANGADM['AdminLanguagesb2c5e7132e09b09f69a01680fbc6a140'] = 'You cannot delete the language currently in use. Please change languages before deleting.'; $_LANGADM['AdminLanguagesbdfa43896989503e31f5d965ac83fb0f'] = 'you cannot delete the language currently in use, please change languages before deleting'; $_LANGADM['AdminLanguagescc83a240095b0a0b6e1840bb7d43830c'] = 'When you delete a language, all related translations in the database will be deleted.'; $_LANGADM['AdminLanguages7dce122004969d56ae2e0245cb754d35'] = 'Edit'; -$_LANGADM['AdminLanguagesd0b04f12f9593c3d35d1bcdf9691f14b'] = 'When you delete a language, ALL RELATED TRANSLATIONS IN THE DATABASE WILL BE DELETED, are you sure you want to delete this language?'; +$_LANGADM['AdminLanguagesd0b04f12f9593c3d35d1bcdf9691f14b'] = 'When you delete a language, all related translations in the database will be deleted. Are you sure you want to delete this language?'; $_LANGADM['AdminLanguagesf2a6c498fb90ee345d997f888fce3b18'] = 'Delete'; $_LANGADM['AdminLanguages62f569dd8ef1d1651d8a73731788f99e'] = 'A language pack is available for this ISO (name is'; $_LANGADM['AdminLanguagesb77f96511c7d447e59c9361c9e464631'] = 'The compatible Prestashop version for this language and your system is: '; -$_LANGADM['AdminLanguagesced0eeffb26feb6012f17fbebfe4e7f8'] = 'After creating the language, you can import the content of the language pack, which you can download above under \"Tools - Translations\"'; +$_LANGADM['AdminLanguagesced0eeffb26feb6012f17fbebfe4e7f8'] = 'After creating a language, you can import the contents of the language pack, which you can download under \"Tools > Translations\"'; $_LANGADM['AdminLanguages1044b6aeffc2c0ae2044fd7c1a6296ba'] = 'No language pack available on prestashop.com for this ISO code'; $_LANGADM['AdminLanguages801ab24683a4a8c433c6eb40c48bcd9d'] = 'Download'; $_LANGADM['AdminLanguages3a08e2e340ab29fd9263af48193cbf8e'] = 'Languages'; $_LANGADM['AdminLanguages4e140ba723a03baa6948340bf90e2ef6'] = 'Name:'; $_LANGADM['AdminLanguages3af4c1797da60fd50670ddbb669fc0aa'] = 'ISO code:'; -$_LANGADM['AdminLanguages6b7af0b6d91545318696c648d6b466ac'] = '2-letter ISO code (e.g., fr, en, de)'; +$_LANGADM['AdminLanguages6b7af0b6d91545318696c648d6b466ac'] = '2-letter ISO code (e.g. fr, en, de)'; $_LANGADM['AdminLanguages01a3b3d8af14e844c49a3a5acc870c6b'] = 'Language code:'; -$_LANGADM['AdminLanguages8bc0a3b0cb05ff731e0fb30f35264898'] = 'Full language code (e.g., en-us, pt-br)'; +$_LANGADM['AdminLanguages8bc0a3b0cb05ff731e0fb30f35264898'] = 'Full language code (e.g. en-us, pt-br)'; +$_LANGADM['AdminLanguages104f1a7d59077b514d4105fcee0e42ff'] = 'Date format:'; +$_LANGADM['AdminLanguages9d03b9a48a9f2f06a9698d1f9484011b'] = 'Short date format (e.g., Y-m-d, d/m/Y)'; +$_LANGADM['AdminLanguages3253758a8726c828bbbdc0cc8de30410'] = 'Date format (full):'; +$_LANGADM['AdminLanguages4728927eaacb4a87f8661de4a791589b'] = 'Full date format (e.g., Y-m-d H:i:s, d/m/Y H:i)'; $_LANGADM['AdminLanguagesc907a021c935ae6144fa2ccadfe9360d'] = 'Flag:'; $_LANGADM['AdminLanguages581e03e07411d053e8c0f275f90fcabc'] = 'Upload country flag from your computer'; $_LANGADM['AdminLanguages70212b3d97d23361e0ec0bc567d7ea30'] = '\"No-picture\" image:'; $_LANGADM['AdminLanguages2426cdf3330e330b60bb7004015207ba'] = 'Image displayed when \"no picture found\"'; +$_LANGADM['AdminLanguagesaff03422ee7ccc83301ebd200479efc1'] = 'Is RTL language:'; +$_LANGADM['AdminLanguages93cba07454f06a4a960172bbd6e2a435'] = 'Yes'; $_LANGADM['AdminLanguagesb9f5c797ebbf55adccdd8539a65a0241'] = 'Disabled'; +$_LANGADM['AdminLanguagesbafd7322c6e97d25b6299b5d6fe8920b'] = 'No'; +$_LANGADM['AdminLanguagese6ced2c612d5024c1a2331cdf96e1c33'] = 'Enable if this language is read from right to left'; +$_LANGADM['AdminLanguages886815cb03a02e29a28906c196292ba0'] = '(Experimental: your theme must be compliant with RTL language)'; $_LANGADM['AdminLanguages24a23d787190f2c4812ff9ab11847a72'] = 'Status:'; $_LANGADM['AdminLanguages24a23d787190f2c4812ff9ab11847a72'] = 'Status:'; $_LANGADM['AdminLanguages4c85fb98bf7cfd94c638d0f4e4e39b92'] = 'Allow or disallow this language to be selected by the customer'; @@ -1345,7 +1381,7 @@ $_LANGADM['AdminLanguages38fb7d24e0d60a048f540ecb18e13376'] = ' Save '; $_LANGADM['AdminLanguages19f823c6453c2b1ffd09cb715214813d'] = 'Required field'; $_LANGADM['AdminLanguages0eaadb4fcb48a0a0ed7bc9868be9fbaa'] = 'Warning'; $_LANGADM['AdminLanguages43a3af99a9049fc327267d6599db63b5'] = 'This language is NOT complete and cannot be used in the Front or Back Office because some files are missing.'; -$_LANGADM['AdminLanguages095f8912cc70c6a345714cf35f0595a4'] = 'Translations files:'; +$_LANGADM['AdminLanguages095f8912cc70c6a345714cf35f0595a4'] = 'Translation files:'; $_LANGADM['AdminLanguagesce17cda4e805e146bbd1869cdeb844b4'] = 'Theme files:'; $_LANGADM['AdminLanguages6ca38c60dc2544d36428b74669fd9f56'] = 'Mail files:'; $_LANGADM['AdminLanguagesc8177e39573538431ca4c24841ee3fbe'] = 'Missing files are marked in red'; @@ -1363,7 +1399,7 @@ $_LANGADM['AdminLocalization400e03b004a1f01a467424a0ed93950a'] = 'Language local $_LANGADM['AdminLocalization19edfe6dfa17c2bded4b8112c2b273c0'] = 'Your server\'s language locale.'; $_LANGADM['AdminLocalization5ca775ace4d40c1708b816f404fb3b1c'] = 'Country locale:'; $_LANGADM['AdminLocalization8905c859634dd24f740ecd3779cff1be'] = 'Your server\'s country locale.'; -$_LANGADM['AdminLocalization67074a462da1e5a1f733c6fb8e2355f3'] = 'Localization pack import'; +$_LANGADM['AdminLocalization67074a462da1e5a1f733c6fb8e2355f3'] = 'Import localization pack'; $_LANGADM['AdminLocalization8b1b3046eb5036b08a5eda7dbaa371cd'] = 'Localization pack you want to import:'; $_LANGADM['AdminLocalization7ca0e455445740b47853fe270fe966e2'] = 'Cannot connect to prestashop.com'; $_LANGADM['AdminLocalizationeedffe39822101d8aaeaf3b1a1661926'] = 'Content to import:'; @@ -1371,7 +1407,7 @@ $_LANGADM['AdminLocalizationb8464cdd84b5f068ad72bf5c4f32163d'] = 'States'; $_LANGADM['AdminLocalization719fec04166d6fa75f89cd29ad61fa8c'] = 'Taxes'; $_LANGADM['AdminLocalizationdfcfc43722eef1eab1e4a12e50a068b1'] = 'Currencies'; $_LANGADM['AdminLocalization3a08e2e340ab29fd9263af48193cbf8e'] = 'Languages'; -$_LANGADM['AdminLocalizationafe1985cd4e5e0e87e3a7b33c9fe0a5e'] = 'Units (e.g., weight, volume, distance)'; +$_LANGADM['AdminLocalizationafe1985cd4e5e0e87e3a7b33c9fe0a5e'] = 'Units (e.g. weight, volume, distance)'; $_LANGADM['AdminLocalization6ae75b98f6c60f529bb7426e89216a37'] = ' Import '; $_LANGADM['AdminLogsb718adec73e04ce3ec720dd11a06a308'] = 'ID'; $_LANGADM['AdminLogsecb833e2dc5d6c03d4d0cddf1b15e85a'] = 'Severity (1-4)'; @@ -1382,10 +1418,10 @@ $_LANGADM['AdminLogs5f36cf760a5c474cc32a6d35d9c50d05'] = 'Error code'; $_LANGADM['AdminLogs44749712dbec183e983dcd78a7736c41'] = 'Date'; $_LANGADM['AdminLogs9176296fbbb254872bd45b186a0640db'] = 'Logs by e-mail'; $_LANGADM['AdminLogsb935e54525e9ae14fd397b5d33e85b0c'] = 'Minimum severity level:'; -$_LANGADM['AdminLogs8ae94f94d2325d227d69a939e419644a'] = 'Put \"5\" if you don\'t want to receive any emails.'; +$_LANGADM['AdminLogs8ae94f94d2325d227d69a939e419644a'] = 'Enter \"5\" if you do not want to receive any emails.'; $_LANGADM['AdminLogs0250518090d13c807ece595694bffa98'] = 'Emails will be sent to the shop owner.'; $_LANGADM['AdminLogs3979bb684920e9e9dc86e266f93d8c87'] = 'Severity levels'; -$_LANGADM['AdminLogs12fef2a1dcc2efcbc89321a5abf92736'] = 'Here\'s the meaning of severity levels:'; +$_LANGADM['AdminLogs12fef2a1dcc2efcbc89321a5abf92736'] = 'Severity level explanations:'; $_LANGADM['AdminLogsb80c52e7f679fba3c2837b42705fe779'] = 'Informative only'; $_LANGADM['AdminLogs0eaadb4fcb48a0a0ed7bc9868be9fbaa'] = 'Warning'; $_LANGADM['AdminLogs902b0d55fddef6f8d651fe1035b7d4bd'] = 'Error'; @@ -1446,21 +1482,31 @@ $_LANGADM['AdminMetab718adec73e04ce3ec720dd11a06a308'] = 'ID'; $_LANGADM['AdminMeta193cfc9be3b995831c6af2fea6650e60'] = 'Page'; $_LANGADM['AdminMetab78a3223503896721cca1303f776159b'] = 'Title'; $_LANGADM['AdminMeta1dec4f55522b828fe5dacf8478021a9e'] = 'Friendly URL'; -$_LANGADM['AdminMetabc5d446bc10f94f2132fa898d11a423a'] = 'URLs Setup'; +$_LANGADM['AdminMetabc5d446bc10f94f2132fa898d11a423a'] = 'Set up URLs'; +$_LANGADM['AdminMeta47d910fcb9af855348659f4648891203'] = 'PS directory'; +$_LANGADM['AdminMeta3e4548e11c844387433cba376b4f8433'] = 'Name of the PrestaShop directory on your Web server, bracketed by forward slashes (e.g. /shop/)'; +$_LANGADM['AdminMeta1b4b359df85800a253dd935f48ef9806'] = 'Homepage file'; +$_LANGADM['AdminMeta01511869cfaa1653ead50840cd612e70'] = 'Usually \"index.php,\" but may be different for a few hosts.'; +$_LANGADM['AdminMeta733ab2f62e8fd8e4fa60ec9b3637d02a'] = 'Shop domain name'; +$_LANGADM['AdminMeta7bd79ea619e2dabfb5ae82f970f720af'] = 'Domain name of your shop, written as a canonical URL (e.g. www.myshop.com). Keep this blank if you do not know what to do.'; +$_LANGADM['AdminMetabb52e96670fac77033d44c1027a36a36'] = 'Shop domain name for SSL'; +$_LANGADM['AdminMeta8310fa42cab7273de11394977c74679d'] = 'Domain name for the secured area of your shop, written as a canonical URL (e.g. secure.myshop.com). Keep this blank if you do not know what to do.'; $_LANGADM['AdminMetada82a2002384409477655085d5c4136e'] = 'Enable only if your server allows URL rewriting (recommended)'; $_LANGADM['AdminMeta34d6a3e98f1b347c4f1df6257cd793c5'] = 'If you turn on this feature, you must'; -$_LANGADM['AdminMeta3cf5f5fe88091d2e57f5597b184b5959'] = 'generate a .htaccess file'; +$_LANGADM['AdminMeta3cf5f5fe88091d2e57f5597b184b5959'] = 'generate an .htaccess file'; +$_LANGADM['AdminMeta44bc5350d0a72d6f348aaeebb4004d8e'] = 'Automatically redirect to Canonical url'; +$_LANGADM['AdminMetae73d8e659020c1acff040a3a3eaf9d21'] = 'Recommended, but your theme must be compliant'; $_LANGADM['AdminMeta0af89096135210f23a49637e3d9f3a60'] = 'Meta-Tags'; $_LANGADM['AdminMetadbb5f11eab5c5c375c4c5face47ddf1e'] = 'Page:'; $_LANGADM['AdminMetae1a7478962f9872f0765922496b26851'] = 'There is no page available!'; $_LANGADM['AdminMetaf7d367e5791685828ef2f3d6f2148484'] = 'Name of the related page'; -$_LANGADM['AdminMetad65773e40ecde8c2b27057f09fc868ff'] = 'Page\'s title:'; +$_LANGADM['AdminMetad65773e40ecde8c2b27057f09fc868ff'] = 'Page title:'; $_LANGADM['AdminMeta6252c0f2c2ed83b7b06dfca86d4650bb'] = 'Invalid characters:'; $_LANGADM['AdminMetae67422bc0428fba3af157a4d4851d2b4'] = 'Title of this page'; $_LANGADM['AdminMetaa6bb76858f8b4b61c050ad7a7ac57e06'] = 'Meta description:'; -$_LANGADM['AdminMeta82fa9d45784fa48b4a37f4e225de5451'] = 'A short description'; +$_LANGADM['AdminMeta82fa9d45784fa48b4a37f4e225de5451'] = 'A short description of your shop'; $_LANGADM['AdminMeta394deec8b4e901394f69ad41095b1ecc'] = 'Meta keywords:'; -$_LANGADM['AdminMetac12e753c3108c17350db4e5990ff626e'] = 'List of keywords'; +$_LANGADM['AdminMetac12e753c3108c17350db4e5990ff626e'] = 'List of keywords for search engines'; $_LANGADM['AdminMeta36bdb6de116cea25f90c6ff3e2c0e100'] = 'Rewritten URL:'; $_LANGADM['AdminMeta2affaa9860b7565fac919c53798b398d'] = 'Example : \"contacts\" for http://mysite.com/shop/contacts to redirect to http://mysite.com/shop/contact-form.php'; $_LANGADM['AdminMeta38fb7d24e0d60a048f540ecb18e13376'] = ' Save '; @@ -1473,7 +1519,7 @@ $_LANGADM['AdminModules6ff063fbc860a79759a7369ac32cee22'] = 'Checkout'; $_LANGADM['AdminModules5dc6d69e21ca0f5779b9cfeae1154f05'] = 'Content Management'; $_LANGADM['AdminModules0095a9fa74d1713e43e370a7d7846224'] = 'Export'; $_LANGADM['AdminModules7d4eb04d5b71acb455329b4d6e228388'] = 'Front Office Features'; -$_LANGADM['AdminModulescef02fed5f63407268c2c0202d1d3708'] = 'I18n & Localization'; +$_LANGADM['AdminModulescef02fed5f63407268c2c0202d1d3708'] = 'Internationalization & Localization'; $_LANGADM['AdminModules335676135e0f03d2756262a437c95a0e'] = 'Merchandizing'; $_LANGADM['AdminModules5b985caa89b2ca61bbeee91a896c610d'] = 'Migration Tools'; $_LANGADM['AdminModulese77ecbf1af4f4c210146d351f8dfbc3b'] = 'Payments & Gateways'; @@ -1485,6 +1531,7 @@ $_LANGADM['AdminModulesd88946b678e4c2f251d4e292e8142291'] = 'SEO'; $_LANGADM['AdminModules8b875b0fceeb6000f40332b9e0c8df36'] = 'Shipping & Logistics'; $_LANGADM['AdminModules5f17a788546ddb43236732f8b0bdfd7e'] = 'Slideshows'; $_LANGADM['AdminModulesa8b87a22bdd589f5d056645941a01841'] = 'Smart Shopping'; +$_LANGADM['AdminModulescc50be8368055ce40af5f926b8ba5eef'] = 'Marketplace'; $_LANGADM['AdminModules222e1825c6eb93a516fba01be7861ddd'] = 'Social Networks'; $_LANGADM['AdminModules3182ea023795eb83ed0ce3beea5beb73'] = 'Other Modules'; $_LANGADM['AdminModules551746895fb66f979bce758992475bfc'] = 'no file selected'; @@ -1493,23 +1540,24 @@ $_LANGADM['AdminModulese55f75a29310d7b60f7ac1d390c8ae42'] = 'Module'; $_LANGADM['AdminModules0557fa923dcee4d0f86b1409f5c2167f'] = 'Back'; $_LANGADM['AdminModules53103fcc4656f55c219b600ded3c7438'] = 'Manage hooks'; $_LANGADM['AdminModulescbabf7f87548581cdb2329bda9023c22'] = 'Manage translations:'; +$_LANGADM['AdminModules02684cc6b6ea1811a064f475a5fd1d18'] = 'Authors'; $_LANGADM['AdminModules96e36efe70e72835ae51946e2650f9e7'] = 'Add a new module'; $_LANGADM['AdminModules141be25d6cbf58bd13da78f7102f8323'] = 'Add a module from my computer'; $_LANGADM['AdminModules3c68e6875a6e023501e84f0dee439713'] = 'Add a module from PrestaShop Addons'; $_LANGADM['AdminModules13348442cc6a27032d2b4aa28b75a5d3'] = 'Search'; -$_LANGADM['AdminModulescc5df44726705000d55c4d0d0266f206'] = 'The module must be either a zip file or a tarball.'; +$_LANGADM['AdminModulescc5df44726705000d55c4d0d0266f206'] = 'The module must be either a .zip file or a tarball.'; $_LANGADM['AdminModules5b48d0f5735d2f9b73a8f3ec7c4858ba'] = 'Module file'; -$_LANGADM['AdminModules5815819625f2a7b13017e31a3d1af0dd'] = 'Upload the module from your computer.'; +$_LANGADM['AdminModules5815819625f2a7b13017e31a3d1af0dd'] = 'Upload a module from your computer.'; $_LANGADM['AdminModules8634e049945e0e8562673698a1abb485'] = 'Upload this module'; $_LANGADM['AdminModulesc25d750d2eddb83507fc2ba18fa78782'] = 'Module URL'; -$_LANGADM['AdminModulesc52057a18e7202b3aa98f5b34d0c748a'] = 'Download the module directly from a website.'; +$_LANGADM['AdminModulesc52057a18e7202b3aa98f5b34d0c748a'] = 'Download a module directly from a website.'; $_LANGADM['AdminModules4be55b9233bbb7cd6201501723b118ed'] = 'Download this module'; $_LANGADM['AdminModulesd87ec4c65196916e14f131724e4e603d'] = 'Open all tabs'; $_LANGADM['AdminModules8da5006b9b85fdb71d1239fcca8f63de'] = 'Close all tabs'; $_LANGADM['AdminModules00c3388449f7c4d73cc8c417d7d38554'] = 'All Modules'; $_LANGADM['AdminModules5976afe9ba86f2fdc39868d5282b02fa'] = 'Native Modules'; -$_LANGADM['AdminModules4cf4871b73927be08c4d9cd5874f899f'] = 'Partners Modules'; -$_LANGADM['AdminModulesc3ba72d64cf29d2df49198be13ff9e50'] = 'Others Modules'; +$_LANGADM['AdminModules4cf4871b73927be08c4d9cd5874f899f'] = 'Partner Modules'; +$_LANGADM['AdminModulesc3ba72d64cf29d2df49198be13ff9e50'] = 'Other Modules'; $_LANGADM['AdminModules9472e641f3ca4a8e3704f4fa9adc7835'] = 'Installed & Non Installed'; $_LANGADM['AdminModulesd9e87fc7a13ba398295447791c67b586'] = 'Installed Modules'; $_LANGADM['AdminModulesdb35d7e7450a0534ecc64bbaf554922b'] = 'Non Installed Modules'; @@ -1526,6 +1574,7 @@ $_LANGADM['AdminModuleseb5534a6983af195fab96bffe2ca4549'] = 'Module enabled'; $_LANGADM['AdminModulesa753d00275ac2a01fb62f29bcd3d7403'] = 'Module installed but with warnings'; $_LANGADM['AdminModulesefab7397e527d5501f6d83dd6cd0466b'] = 'Module disabled'; $_LANGADM['AdminModules5cd043a1b14e0369f9d6270c2257a81a'] = 'Module not installed'; +$_LANGADM['AdminModulesdf3f079de6961496f0460dcfdbf9bca3'] = 'by'; $_LANGADM['AdminModules349838fb1d851d3e2014b9fe39203275'] = 'Install'; $_LANGADM['AdminModulesa27dfe771799a09fd55fea73286eb6ab'] = 'Uninstall'; $_LANGADM['AdminModules29c632cf1c7f140b6e86f3af04df48d4'] = 'Install the selection'; @@ -1539,10 +1588,14 @@ $_LANGADM['AdminModulesf2a6c498fb90ee345d997f888fce3b18'] = 'Delete'; $_LANGADM['AdminModulesbcfaccebf745acfd5e75351095a5394a'] = 'Disable'; $_LANGADM['AdminModules2faec1f9f8cc7f8f40d521c4dd574f49'] = 'Enable'; $_LANGADM['AdminModulesf1206f9fadc5ce41694f69129aecac26'] = 'Configure'; +$_LANGADM['AdminModules3488a51eb7f723d65daeff912e69b177'] = 'Selected filters'; $_LANGADM['AdminModulesPositions51a8b3a61ad63d4e5df2ce86870e39b8'] = 'Transplant a module'; $_LANGADM['AdminModulesPositions498f79c4c5bbde77f1bceb6c86fd0f6d'] = 'Show'; $_LANGADM['AdminModulesPositions4ba24d91566786f5315acf453418dbb6'] = 'All modules'; -$_LANGADM['AdminModulesPositions6d7c1e5020617c62ce515b7d9d610dd8'] = 'Display non-positionable hook'; +$_LANGADM['AdminModulesPositions6d7c1e5020617c62ce515b7d9d610dd8'] = 'Display non-positionable hooks'; +$_LANGADM['AdminModulesPositions8e278f6a1ae38a12b2378eec8d08aa4f'] = 'LiveEdit'; +$_LANGADM['AdminModulesPositions0e914d3a9383dca6cf82f48659c41688'] = 'Click here to be redirected to the front office of your shop where you can move and delete modules directly.'; +$_LANGADM['AdminModulesPositions6c60f3604bf60b7521bfc60e9c4f65ca'] = 'Run LiveEdit'; $_LANGADM['AdminModulesPositionsfeb6f2e19409f021e5fd65c51d21d254'] = 'Unhook the selection'; $_LANGADM['AdminModulesPositions0eb9b3af2e4a00837a1b1a854c9ea18c'] = 'modules'; $_LANGADM['AdminModulesPositions22884db148f0ffb0d830ba431102b0b5'] = 'module'; @@ -1555,7 +1608,9 @@ $_LANGADM['AdminModulesPositions605e21f380bbda2912e12a4c16737227'] = 'No module $_LANGADM['AdminModulesPositionse55f75a29310d7b60f7ac1d390c8ae42'] = 'Module'; $_LANGADM['AdminModulesPositions98a11cd6082576d0b5c84f37bde0b380'] = 'Hook into'; $_LANGADM['AdminModulesPositionsd5f1381c5f97f928df4ef8d18c2a27c0'] = 'Exceptions'; -$_LANGADM['AdminModulesPositions9ee91b01130064edd60d330a3888d17e'] = 'Please specify those files for which you do not want the module to be displayed'; +$_LANGADM['AdminModulesPositions9ee91b01130064edd60d330a3888d17e'] = 'Please specify the files for which you do not want the module to be displayed'; +$_LANGADM['AdminModulesPositions4343bf7ca200e246f3bd9f451a707a77'] = 'These files are located in your base directory'; +$_LANGADM['AdminModulesPositions8399e2c9acea28c205621d4ecd4d8bcb'] = 'e.g. '; $_LANGADM['AdminModulesPositions8a6617dfa35ce54642fc61fd53935a91'] = 'Please type each filename separated by a comma'; $_LANGADM['AdminModulesPositionsc9cc8cce247e49bae79f15173ce97354'] = 'Save'; $_LANGADM['AdminModulesPositions19f823c6453c2b1ffd09cb715214813d'] = 'Required field'; @@ -1575,7 +1630,7 @@ $_LANGADM['AdminOrdersc453a4b8e8d98e82f35b67f433e3b4da'] = 'Payment'; $_LANGADM['AdminOrdersec53a8c4f07baed5d8825072c89799be'] = 'Status'; $_LANGADM['AdminOrders44749712dbec183e983dcd78a7736c41'] = 'Date'; $_LANGADM['AdminOrdersbcd1b68617759b1dfcff0403a6b5a8d1'] = 'PDF'; -$_LANGADM['AdminOrdersce06c769dac054ae0bed803d833f3f1c'] = 'Credit Slip concerning the order #'; +$_LANGADM['AdminOrdersce06c769dac054ae0bed803d833f3f1c'] = 'Credit Slip for order #'; $_LANGADM['AdminOrderse183b47cb3af26aadf83cddda0d47453'] = 'customized'; $_LANGADM['AdminOrderse78b6f4eb3be046f4d25c07ce54954d4'] = 'Ref:'; $_LANGADM['AdminOrdersdd70925db57b570bcb660d68c30d5e0b'] = 'Ref Supplier:'; @@ -1595,11 +1650,12 @@ $_LANGADM['AdminOrders1d949d2235747b894bbaae35fbf44f1d'] = 'Customer information $_LANGADM['AdminOrders01abfc750a0c942167651c40d088531d'] = '#'; $_LANGADM['AdminOrders08907d6524467f598eaeeb0ec85fa715'] = 'This order has been placed by a'; $_LANGADM['AdminOrders084e0343a0486ff05530df6c705c8bb4'] = 'guest'; -$_LANGADM['AdminOrders80e915c39ca9254655d2802979aa698b'] = 'Transform to customer'; +$_LANGADM['AdminOrders80e915c39ca9254655d2802979aa698b'] = 'Transform guest into customer'; $_LANGADM['AdminOrdersaf5730c209cb9ef0ddb9f7dc91a50e4e'] = 'This feature will generate a random password and send an e-mail to the customer'; +$_LANGADM['AdminOrders81fe7d0c685ca9f1829f5ff52370d06e'] = 'A registered customer account already exists with this email address'; $_LANGADM['AdminOrders1402e450396cb76b53b95f6e1746d700'] = 'Account registered:'; $_LANGADM['AdminOrdersb157524c4be8c2fc80e5ef2f0b1bf1e6'] = 'Valid orders placed:'; -$_LANGADM['AdminOrders5a80b1a10d36fdb4c05b87e01cb7abc9'] = 'Total paid since registration:'; +$_LANGADM['AdminOrders5a80b1a10d36fdb4c05b87e01cb7abc9'] = 'Total spent since registration:'; $_LANGADM['AdminOrdersfb61758d0f0fda4ba867c3d5a46c16a7'] = 'Sources'; $_LANGADM['AdminOrders1e6d57e813355689e9c77e947d73ad8f'] = 'From:'; $_LANGADM['AdminOrders33caa076f23f453dd4061726f3706325'] = 'To:'; @@ -1613,18 +1669,18 @@ $_LANGADM['AdminOrdersfd5f7a8ff6ee357c83f108926c18210d'] = 'Total weight:'; $_LANGADM['AdminOrdersf8617a92ba0a0a4eabee724eab7c9f48'] = 'Carrier:'; $_LANGADM['AdminOrdersea0b24419607e128a129c0c384d9b72a'] = 'Delivery slip #'; $_LANGADM['AdminOrdersf3ebde38fb84b9d5677bf2600e4270da'] = 'Tracking number:'; -$_LANGADM['AdminOrders4422db6dbadf8e15dec32da8bc2e885f'] = 'Track the shipment'; -$_LANGADM['AdminOrders8588fd6e73a866096416593954bd98f2'] = 'Set shipping number'; +$_LANGADM['AdminOrders4422db6dbadf8e15dec32da8bc2e885f'] = 'Track this shipment'; +$_LANGADM['AdminOrders8588fd6e73a866096416593954bd98f2'] = 'Set shipping #'; $_LANGADM['AdminOrdersf5d74ea75357b5e139854c14f8e24fe3'] = 'Order details'; $_LANGADM['AdminOrdersb5a83868feaf5e67aee62ac69fe4d3d4'] = 'Original cart:'; $_LANGADM['AdminOrders580034e942d61c23826cb31dc2cb3c89'] = 'Cart #'; -$_LANGADM['AdminOrdersff22b5cb66c61ec9785919d33f48ee3b'] = 'Payment mode:'; +$_LANGADM['AdminOrdersff22b5cb66c61ec9785919d33f48ee3b'] = 'Payment method:'; $_LANGADM['AdminOrders068f80c7519d0528fb08e82137a72131'] = 'Products'; $_LANGADM['AdminOrders9d5bf15117441a1b52eb1f0808e4aad3'] = 'Discounts'; $_LANGADM['AdminOrdersba794350deb07c0c96fe73bd12239059'] = 'Wrapping'; $_LANGADM['AdminOrdersea9cf7e47ff33b2be14e6dd07cbcefc6'] = 'Shipping'; $_LANGADM['AdminOrders482af2fbf8fede13613a03b1b1fec7d1'] = 'Paid:'; -$_LANGADM['AdminOrders38cea52ef18b15dfe649d5183871dee0'] = 'Recycled package:'; +$_LANGADM['AdminOrders38cea52ef18b15dfe649d5183871dee0'] = 'Recycled packaging:'; $_LANGADM['AdminOrders09dcc3b32a3b46e280067eb50780cfc3'] = 'Gift wrapping:'; $_LANGADM['AdminOrders940663fd4428d2c86f9a4780b6574028'] = 'Message:'; $_LANGADM['AdminOrders0c458988127eb2150776881e2ef3f0c4'] = 'Shipping address'; @@ -1632,7 +1688,7 @@ $_LANGADM['AdminOrders601d8c4b9f72fc1862013c19b677a499'] = 'Invoice address'; $_LANGADM['AdminOrders8281efa2494e3344518040d38c11eb8a'] = 'Cannot return this product'; $_LANGADM['AdminOrders15776e1ba343092478723387aa0844d9'] = 'Quantity to cancel is greater than quantity available'; $_LANGADM['AdminOrdersdeb10517653c255364175796ace3553f'] = 'Product'; -$_LANGADM['AdminOrdersfbaedde498cdead4f2780217646e9ba1'] = 'UP'; +$_LANGADM['AdminOrdersfbaedde498cdead4f2780217646e9ba1'] = 'Unit Price'; $_LANGADM['AdminOrders03ab340b3f99e03cff9e84314ead38c0'] = 'Qty'; $_LANGADM['AdminOrderscc61945cbbf46721a053467c395c666f'] = 'Refunded'; $_LANGADM['AdminOrdersfdfac28b5ad628f25649d9c2eb4fc62e'] = 'Returned'; @@ -1640,7 +1696,7 @@ $_LANGADM['AdminOrders27ce7f8b5623b2e2df568d64cf051607'] = 'Stock'; $_LANGADM['AdminOrders988fd738de9c6d177440c5dcf69e73ce'] = 'Return'; $_LANGADM['AdminOrders76f0ed934de85cc7131910b32ede7714'] = 'Refund'; $_LANGADM['AdminOrdersea4788705e6873b424c65e91c2846b19'] = 'Cancel'; -$_LANGADM['AdminOrders81a45bb93f6dc37a6c0dcc3af725d331'] = 'According to the group of this customer, prices are printed:'; +$_LANGADM['AdminOrders81a45bb93f6dc37a6c0dcc3af725d331'] = 'For this customer group, prices are displayed as:'; $_LANGADM['AdminOrders5f9a97c1e1ac934b2eb46a9888c3bc8c'] = 'tax excluded.'; $_LANGADM['AdminOrders341216368d7ecd01ce32b8b9892293cf'] = 'tax included.'; $_LANGADM['AdminOrdersef5f330df17f8c955005c26466c2463c'] = 'Merchandise returns are disabled'; @@ -1669,7 +1725,7 @@ $_LANGADM['AdminOrderscb1766c2f66e428afb3b74a67c045370'] = 'Mark this message as $_LANGADM['AdminOrdersdc5f499e83aef4f6811faa4081631740'] = 'At'; $_LANGADM['AdminOrdersd98a07f84921b24ee30f86fd8cd85c3c'] = 'from'; $_LANGADM['AdminOrders73bd682c8a8613f6c009f1b802dc2cef'] = 'Private:'; -$_LANGADM['AdminOrders20d1f35b42c6d4939d789a775880ba21'] = 'When you read a message, please click on the green check.'; +$_LANGADM['AdminOrders20d1f35b42c6d4939d789a775880ba21'] = 'When you read a message, please click on the green check to mark it as read.'; $_LANGADM['AdminOrderse06d7593c1cd6dabef450be6c3da7091'] = 'Merchandise returns'; $_LANGADM['AdminOrders737c6aff6b2dd08403139539f31a3f7e'] = 'No merchandise return for this order.'; $_LANGADM['AdminOrderscf3bae95c5f6023d5a10fe415b205a45'] = 'Credit slip'; @@ -1686,17 +1742,17 @@ $_LANGADM['AdminOrdersStates510f6a8fda6eb21f9ff01954e034a29a'] = 'For security r $_LANGADM['AdminOrdersStates33af8066d3c83110d4bd897f687cedd2'] = 'Order statuses'; $_LANGADM['AdminOrdersStates46d654225b4ccc1607fd1af012d18e12'] = 'Status name:'; $_LANGADM['AdminOrdersStatesa4bb440d400f4dc30f148b44d08680b4'] = 'Invalid characters: numbers and'; -$_LANGADM['AdminOrdersStatesbf068ace28aa095e354ff02a01d32f1e'] = 'Order status (e.g., \'Pending\')'; +$_LANGADM['AdminOrdersStatesbf068ace28aa095e354ff02a01d32f1e'] = 'Order status (e.g. \'Pending\')'; $_LANGADM['AdminOrdersStates37242ae69082dfc3ec9d365a18a9606e'] = 'Icon:'; $_LANGADM['AdminOrdersStatesffd3346d0bd6c20f4748a4ba3f5886b9'] = 'Upload an icon from your computer (File type: .gif, suggested size: 16x16)'; $_LANGADM['AdminOrdersStatesfb5a0e846f382e4f81b1c4daddcf6e4e'] = 'Color:'; -$_LANGADM['AdminOrdersStatesa6c03b9eff966268fe4de7b97f64309b'] = 'Status will be highlighted in this color. HTML colors only (e.g.,'; -$_LANGADM['AdminOrdersStates70f04749e7995edd7d59e2d034c08929'] = 'Consider the associated order as validated'; +$_LANGADM['AdminOrdersStatesa6c03b9eff966268fe4de7b97f64309b'] = 'Status will be highlighted in this color. HTML colors only (e.g. '; +$_LANGADM['AdminOrdersStates70f04749e7995edd7d59e2d034c08929'] = 'Validate the associated order'; $_LANGADM['AdminOrdersStates35388ca9e482238c6e9755d70a5a91a0'] = 'Allow customer to download and view PDF version of invoice'; $_LANGADM['AdminOrdersStates08d2ca380ff45ca948d4f825ff4c31dc'] = 'Hide this state in order for customer'; $_LANGADM['AdminOrdersStates450dcddb1c36122c2c95a91d2bceec1d'] = 'Send e-mail to customer when order is changed to this status'; $_LANGADM['AdminOrdersStates278c491bdd8a53618c149c4ac790da34'] = 'Template'; -$_LANGADM['AdminOrdersStatesd9374980cff5b423a8ad65e86e8c86b0'] = 'Please first copy your e-mail templates in the directory'; +$_LANGADM['AdminOrdersStatesd9374980cff5b423a8ad65e86e8c86b0'] = 'Please copy your e-mail templates in the directory first'; $_LANGADM['AdminOrdersStates6c9ffc43d3ce4c90a77aec20c8229a19'] = 'Only letters, number and -_ are allowed'; $_LANGADM['AdminOrdersStates31fde7b05ac8952dacf4af8a704074ec'] = 'Preview'; $_LANGADM['AdminOrdersStatesb32475cd81cfdb314b57ae77c560640f'] = 'E-mail template for both .html and .txt'; @@ -1709,28 +1765,28 @@ $_LANGADM['AdminPDF7b33872f9b52c649fda24a8fef9492bb'] = 'Font:'; $_LANGADM['AdminPDF8b28d3153d454696bef299fd0bbc2d7e'] = 'Font for PDF invoice'; $_LANGADM['AdminPPreferences068f80c7519d0528fb08e82137a72131'] = 'Products'; $_LANGADM['AdminPPreferences90dc497d9d6686ce91ad5c94524020f0'] = 'Catalog mode:'; -$_LANGADM['AdminPPreferences0a2ab45f848348a2626b7491ab6d8cdd'] = 'When active, all features for shopping will be disabled'; -$_LANGADM['AdminPPreferences11c3382637c5733a6221acf98129b298'] = 'Allow ordering out-of-stock product:'; +$_LANGADM['AdminPPreferences0a2ab45f848348a2626b7491ab6d8cdd'] = 'When active, all shopping features will be disabled'; +$_LANGADM['AdminPPreferences11c3382637c5733a6221acf98129b298'] = 'Allow ordering of out-of-stock products:'; $_LANGADM['AdminPPreferences24c3ed033892f4548a23e4c50e8f6e7f'] = 'Add to cart button is hidden when product is unavailable'; $_LANGADM['AdminPPreferences7c96e8b786ae7bf55d100a864a73b44b'] = 'Enable stock management:'; $_LANGADM['AdminPPreferences769d0fbed5bbf0bb965e0cf33d1d6334'] = 'Display available quantities on product page:'; $_LANGADM['AdminPPreferencesa655e39faa3b79bdbfdbe59be2aa1013'] = 'Enable JqZoom instead of Thickbox on product page:'; $_LANGADM['AdminPPreferences08ed0bcf3c2ad0458a120a7b46fb11aa'] = 'Display unavailable product attributes on product page:'; $_LANGADM['AdminPPreferences9b8bbcbf5a2788eb2d27b237413f7cd8'] = 'Display \"add to cart\" button when product has attributes:'; -$_LANGADM['AdminPPreferencesc7c54c4ed31886079cd525b60c8867c1'] = 'Display or hide the \"add to cart\" button on category pages for products that have attributes to force customers to see the product detail'; -$_LANGADM['AdminPPreferences3ae332007d1df0ff39971bc1ae7ae27c'] = 'Max items in the comparator:'; +$_LANGADM['AdminPPreferencesc7c54c4ed31886079cd525b60c8867c1'] = 'Display or hide the \"add to cart\" button on category pages for products that have attributes to force customers to see the product details'; +$_LANGADM['AdminPPreferences3ae332007d1df0ff39971bc1ae7ae27c'] = 'Maximum number of items for comparison:'; $_LANGADM['AdminPPreferencesca9bccbec65b9e333e8896dbe43369df'] = 'Set to 0 to disable this feature'; -$_LANGADM['AdminPPreferences9d2f8578a64b498b2d164f7cc8e9086c'] = 'Minimum purchase total required in order to validate order:'; -$_LANGADM['AdminPPreferences0499db31e756ee9a4f209cad2fafcbf4'] = 'Display last quantities when qty is lower than:'; -$_LANGADM['AdminPPreferences78ed1e99c1143172692db7f58722c93f'] = 'Number of days during which the product is considered \'new\':'; +$_LANGADM['AdminPPreferences9d2f8578a64b498b2d164f7cc8e9086c'] = 'Minimum purchase total required to validate order:'; +$_LANGADM['AdminPPreferences0499db31e756ee9a4f209cad2fafcbf4'] = 'Display remaining quantities when qty is lower than:'; +$_LANGADM['AdminPPreferences78ed1e99c1143172692db7f58722c93f'] = 'Number of days for which the product is considered \'new\':'; $_LANGADM['AdminPPreferences39cb26ab18c110579dec495581a11552'] = 'Re-direction after adding product to cart:'; -$_LANGADM['AdminPPreferences990f7aaf94657fef90a1326a88958c78'] = 'Concerns only the non-AJAX version of the cart'; +$_LANGADM['AdminPPreferences990f7aaf94657fef90a1326a88958c78'] = 'Only for non-AJAX version of the cart'; $_LANGADM['AdminPPreferences4b8d849da50c8e72f839c5c7e1abfe95'] = 'previous page'; $_LANGADM['AdminPPreferences74451598607d4a1844581e95abc69e82'] = 'cart summary'; $_LANGADM['AdminPPreferences759892e4fd5da7b789eee82dcca9df45'] = 'Products per page:'; -$_LANGADM['AdminPPreferencesca7de506b98e6e8c63285923677507de'] = 'Products displayed per page. Default is 10.'; +$_LANGADM['AdminPPreferencesca7de506b98e6e8c63285923677507de'] = 'Number of products displayed per page. Default is 10.'; $_LANGADM['AdminPPreferencese4636eaae9d9044b9ae49392197713ed'] = 'Default order by:'; -$_LANGADM['AdminPPreferencesca267c647010fcc8c76e3ccd3fddd572'] = 'Default order by for product list'; +$_LANGADM['AdminPPreferencesca267c647010fcc8c76e3ccd3fddd572'] = 'The order in which products are displayed in the product list'; $_LANGADM['AdminPPreferencesdf644ae155e79abf54175bd15d75f363'] = 'Product name'; $_LANGADM['AdminPPreferences290b7c47045d269e2ccfa69e6477acfe'] = 'Product price'; $_LANGADM['AdminPPreferences5b84212579db9037cfe4f22863b17789'] = 'Product added date'; @@ -1741,16 +1797,23 @@ $_LANGADM['AdminPPreferencesdcf765af784bde828a35fc529a1760ef'] = 'Default order $_LANGADM['AdminPPreferences18ab46929929152a148ad898fe038ccf'] = 'Default order way for product list'; $_LANGADM['AdminPPreferencescf3fb1ff52ea1eed3347ac5401ee7f0c'] = 'Ascending'; $_LANGADM['AdminPPreferencese3cf5ac19407b1a62c6fccaff675a53b'] = 'Descending'; -$_LANGADM['AdminPPreferencesc4d833424eba2cd43c9327d4943dc61f'] = 'Image generated by:'; -$_LANGADM['AdminPPreferences9df22f196a33acd0b372fe502de51211'] = 'auto'; +$_LANGADM['AdminPPreferences14d14736f0cc7bbd49ee5dbc335d7f60'] = 'Short description max size'; +$_LANGADM['AdminPPreferences9df736cf267f1f94c5a4997fecbd4e3d'] = 'Set the maximum size of product short description (in characters)'; +$_LANGADM['AdminPPreferencesc4d833424eba2cd43c9327d4943dc61f'] = 'Images generated by:'; +$_LANGADM['AdminPPreferences9df22f196a33acd0b372fe502de51211'] = 'automatic'; $_LANGADM['AdminPPreferenceseaae26a6fb20ed3ef54fb23bfa0b1fcc'] = 'width'; $_LANGADM['AdminPPreferencesb435e227d5dd201e1768b2bcb2e0aa81'] = 'height'; $_LANGADM['AdminPPreferences32465c25dfecca0db61214b9af3bd9f1'] = 'Maximum size of product pictures:'; -$_LANGADM['AdminPPreferencese57fbdf001b4b35e6ca7dcdc628ca853'] = 'The maximum size of pictures uploadable by customers (in Bytes)'; +$_LANGADM['AdminPPreferencese57fbdf001b4b35e6ca7dcdc628ca853'] = 'The maximum allowed size of pictures uploaded by customers (in Bytes)'; $_LANGADM['AdminPPreferences048a517fd1781ed314402df592f2ea68'] = 'Product pictures width:'; -$_LANGADM['AdminPPreferencesc9c4e9c1a92d9b15e0cdefc7ddb1bbd5'] = 'The maximum width of pictures uploadable by customers'; +$_LANGADM['AdminPPreferencesc9c4e9c1a92d9b15e0cdefc7ddb1bbd5'] = 'The maximum allowed width of pictures uploaded by customers (in pixels)'; $_LANGADM['AdminPPreferences9a61f5ce3180789a8455f536681cabc1'] = 'Product pictures height:'; -$_LANGADM['AdminPPreferencesdde6c96bcb0af50f18f37572267d904a'] = 'The maximum height of pictures uploadable by customers'; +$_LANGADM['AdminPPreferencesdde6c96bcb0af50f18f37572267d904a'] = 'The maximum allowed height of pictures uploaded by customers (in pixels)'; +$_LANGADM['AdminPPreferences044a77653804fe33652d68098d98121e'] = 'Use the legacy image filesystem:'; +$_LANGADM['AdminPPreferencese7ed00268dc16aecaac5a60aeb6f4c73'] = 'This should be set to yes unless you successfully moved images in Preferences > Images tab'; +$_LANGADM['AdminPPreferences88694e637431115721b5241e652a178f'] = 'Quantity discounts based on:'; +$_LANGADM['AdminPPreferences68217d833599eb6fb56f9e6d2ca24196'] = 'How to calculate quantity discounts'; +$_LANGADM['AdminPPreferencesb9208b03bcc9eb4a336258dcdcb66207'] = 'Combinations'; $_LANGADM['AdminPaymenta75b01d1ff66cd0a327bda1effa71dec'] = 'Payment modules list'; $_LANGADM['AdminPayment1f3a05f7b45df8e5c5cafaf0485eedd5'] = 'Click to see the list of payment modules.'; $_LANGADM['AdminPaymentdba77f97d76421a973d8e4903ec1b056'] = 'Payment module restrictions'; @@ -1764,10 +1827,11 @@ $_LANGADM['AdminPaymentcf7da676516ac041a93fd91755fa40f9'] = 'No payment module i $_LANGADM['AdminPayment3e15057a39314e679d553bd9b6522ec8'] = 'Customer currency'; $_LANGADM['AdminPaymentcdf4c2da827655c1ea74209dd683c903'] = 'Shop default currency'; $_LANGADM['AdminPaymente39a06ebd5bb473161c5dff3c79c80a5'] = 'Save restrictions'; +$_LANGADM['AdminPerformance32a2e7694628335252aceb0552a6f6ba'] = 'To use Memcached, you must install the Memcache PECL extension on your server.'; $_LANGADM['AdminPerformance3d064d5efb6cf2ed52cf72bfef7c7db2'] = 'To use CacheFS the directory'; $_LANGADM['AdminPerformancea9b036d3e91d53892d6a67c31327e456'] = 'must be writable'; $_LANGADM['AdminPerformancef8d698aea36fcbead2b9d5359ffca76f'] = 'Smarty'; -$_LANGADM['AdminPerformancec12c5b5693a651c1a235e9040315ad33'] = 'This forces Smarty to (re)compile templates on every invocation. This is handy for development and debugging. It should never be used in a production environment.'; +$_LANGADM['AdminPerformancec12c5b5693a651c1a235e9040315ad33'] = 'This forces Smarty to (re)compile templates on every invocation. This is handy for development and debugging, but should never be used in a production environment.'; $_LANGADM['AdminPerformance5824d53b7b15b236750314bdbf40f32a'] = 'Cache:'; $_LANGADM['AdminPerformance93cba07454f06a4a960172bbd6e2a435'] = 'Yes'; $_LANGADM['AdminPerformancebafd7322c6e97d25b6299b5d6fe8920b'] = 'No'; @@ -1793,13 +1857,13 @@ $_LANGADM['AdminPerformancef15de4c26829bbbde82a73377dee57be'] = 'Keep W3C valida $_LANGADM['AdminPerformance86d197c88189c32765b202ff04db1022'] = 'Media servers (used only with CCC)'; $_LANGADM['AdminPerformanceaee8eb501dcb805b13f843db6dc56e9b'] = 'You must enter another domain or subdomain in order to use cookieless static content.'; $_LANGADM['AdminPerformance3ed7fddd0f381c4fe4683fc9e856dbcf'] = 'Media server #1'; -$_LANGADM['AdminPerformance6acc18c03f7557fffe520276b1d92875'] = 'Name of the second domain of your shop, (e.g., myshop-media-server-1.com). If you do not have another domain, leave this field blank'; +$_LANGADM['AdminPerformance6acc18c03f7557fffe520276b1d92875'] = 'Name of the second domain of your shop, (e.g. myshop-media-server-1.com). If you do not have another domain, leave this field blank'; $_LANGADM['AdminPerformance9dafd449b62301e26c635b976b231b88'] = 'Media server #2'; -$_LANGADM['AdminPerformance41082af484e7d21ed97209e00f9acf97'] = 'Name of the third domain of your shop, (e.g., myshop-media-server-2.com). If you do not have another domain, leave this field blank'; +$_LANGADM['AdminPerformance41082af484e7d21ed97209e00f9acf97'] = 'Name of the third domain of your shop, (e.g. myshop-media-server-2.com). If you do not have another domain, leave this field blank'; $_LANGADM['AdminPerformance391e79edab921e1974705a7096055dde'] = 'Media server #3'; -$_LANGADM['AdminPerformanced909b5755af85b4f5d19f9cce0775a91'] = 'Name of the fourth domain of your shop, (e.g., myshop-media-server-3.com). If you do not have another domain, leave this field blank'; +$_LANGADM['AdminPerformanced909b5755af85b4f5d19f9cce0775a91'] = 'Name of the fourth domain of your shop, (e.g. myshop-media-server-3.com). If you do not have another domain, leave this field blank'; $_LANGADM['AdminPerformance9f8a0aaa0d8c5eeb98f607482e6f2543'] = 'Ciphering'; -$_LANGADM['AdminPerformancef8198a372da81edfca0693a81242149d'] = 'Mcrypt is faster than our custom BlowFish class, but requires the PHP extension \"mcrypt\". If you change this configuration, all cookies will be reset.'; +$_LANGADM['AdminPerformancef8198a372da81edfca0693a81242149d'] = 'Mcrypt is faster than PrestaShop\'s custom BlowFish class, but requires the PHP extension \"mcrypt\". If you change this configuration, all cookies will be reset.'; $_LANGADM['AdminPerformance4afa80e77a07f7488ce4d1bdd8c4977a'] = 'Algorithm'; $_LANGADM['AdminPerformance9535ef94bfc73ca1933e6bcfc4e64ded'] = 'Use Rijndael with mcrypt lib.'; $_LANGADM['AdminPerformancedc653b2b8f2af0dee63edabf1a7ede5b'] = 'Keep the custom BlowFish class.'; @@ -1811,14 +1875,15 @@ $_LANGADM['AdminPerformance7b351ea64247065ff0110b1f8284deb8'] = 'Enable or disab $_LANGADM['AdminPerformancef3799005455e4338e44d1d9130e4c758'] = 'Caching system:'; $_LANGADM['AdminPerformance05894ba2c918dd33592bf1bd21c347f6'] = 'Memcached'; $_LANGADM['AdminPerformance6c202452e44c42e323204da2a3a3c24a'] = 'File System'; +$_LANGADM['AdminPerformance3b690cc2c46a821f4ec11a89f0683f1c'] = 'The CacheFS system should be used only when the infrastructure contains only one front-end server. If you are not sure, ask your hosting company.'; $_LANGADM['AdminPerformance1a278351f1f4e09e91647c5ecdaecd61'] = 'Directory depth:'; $_LANGADM['AdminPerformance74c9e12c3a19cfb79b79faf579934844'] = 'Add server'; $_LANGADM['AdminPerformance9f2dedca6e0a783e7e52037b635c7c91'] = 'IP Address:'; $_LANGADM['AdminPerformance64ea53ab0a03507af104853e03c2db28'] = 'Port:'; $_LANGADM['AdminPerformance0ae00a25b134fd5949f4e08e28194b1b'] = 'Weight:'; $_LANGADM['AdminPerformance71401d51b276ed4ddcee6b6d4f6f843b'] = ' Add Server '; -$_LANGADM['AdminPerformance490aa6e856ccf208a054389e47ce0d06'] = 'Id'; -$_LANGADM['AdminPerformancef396ae69aa223c04dff639b3649ba1dd'] = 'Ip'; +$_LANGADM['AdminPerformance490aa6e856ccf208a054389e47ce0d06'] = 'ID'; +$_LANGADM['AdminPerformancef396ae69aa223c04dff639b3649ba1dd'] = 'IP address'; $_LANGADM['AdminPerformance60aaf44d4b562252c04db7f98497e9aa'] = 'Port'; $_LANGADM['AdminPerformance8c489d0946f66d17d73f26366a4bf620'] = 'Weight'; $_LANGADM['AdminPreferences6adf97f83acf6453d4a6a4b1070f3754'] = 'None'; @@ -1831,32 +1896,29 @@ $_LANGADM['AdminPreferences7fe15a347d66e291d7a1375273226205'] = 'Enable Shop'; $_LANGADM['AdminPreferences049104cffa3c1841dece50e6e41f749c'] = 'Activate or deactivate your shop. Deactivate your shop while you perform maintenance on it. Please note that the webservice will not be disabled'; $_LANGADM['AdminPreferencesdaf835712085aaaf81818e7ebfeb66b8'] = 'Maintenance IP'; $_LANGADM['AdminPreferences894cd7887e47ca0e836e31577664b1ea'] = 'IP addresses allowed to access the Front Office even if shop is disabled. Use a comma to separate them (e.g., 42.24.4.2,127.0.0.1,99.98.97.96)'; -$_LANGADM['AdminPreferences1656072e927c8d3acd24359cbb648bb5'] = 'Enable SSL'; -$_LANGADM['AdminPreferences8de64d6b49cebd2306af6ddbcd268700'] = 'If your hosting provider allows SSL, you can activate SSL encryption (https://) for customer account identification and order processing'; -$_LANGADM['AdminPreferencesed5454727fb14b9800ead242d0972184'] = 'Check IP on the cookie'; -$_LANGADM['AdminPreferences9cfc2e28ebe44b3e14f9d780d2150650'] = 'Check the IP address of the cookie in order to avoid your cookie being stolen'; -$_LANGADM['AdminPreferencese12874163bcb256726ddfe643aa53a63'] = 'Increase Front Office security'; -$_LANGADM['AdminPreferencescce43372fe8624c0edf870f417557b84'] = 'Enable or disable token on the Front Office in order to improve PrestaShop security'; -$_LANGADM['AdminPreferences16c390c0fd1efc4f493a6a861aa22d2f'] = 'Back Office help boxes'; -$_LANGADM['AdminPreferencesdc58d598b2b22e50c5af01134305a4fb'] = 'Enable yellow help boxes which are displayed under form fields in the Back Office'; +$_LANGADM['AdminPreferences049104cffa3c1841dece50e6e41f749c'] = 'Activate or deactivate your shop. You can deactivate your shop while you perform maintenance on it, but please note that the webservice will not be disabled'; +$_LANGADM['AdminPreferencesdaf835712085aaaf81818e7ebfeb66b8'] = 'Maintenance IP addresses'; +$_LANGADM['AdminPreferences894cd7887e47ca0e836e31577664b1ea'] = 'IP addresses allowed to access the Front Office even if shop is disabled. Use a comma to separate them (e.g. 42.24.4.2,127.0.0.1,99.98.97.96)'; $_LANGADM['AdminPreferencesc87330f475e4384552c0077927d26e1a'] = 'Lifetime of the Front Office cookie'; $_LANGADM['AdminPreferences6d964e25aa6aa88c8353880e00202cf4'] = 'Indicate the number of hours'; $_LANGADM['AdminPreferencese673b146824251548feecf1f3929aceb'] = 'Lifetime of the Back Office cookie'; -$_LANGADM['AdminPreferences59aad85b376259844b471a758908a3c1'] = 'Order process type'; +$_LANGADM['AdminPreferences59aad85b376259844b471a758908a3c1'] = 'Checkout process type'; $_LANGADM['AdminPreferences6c9f73b6b5d16baa641cf8343348eb8d'] = 'You can choose the order process type as either standard (5 steps) or One Page Checkout'; $_LANGADM['AdminPreferences403e42a4b26e379cb13563c98ab63067'] = 'Enable guest checkout'; -$_LANGADM['AdminPreferences11e7774c4aeee369f9de701a795fb58d'] = 'Your guest can make an order without registering'; +$_LANGADM['AdminPreferences11e7774c4aeee369f9de701a795fb58d'] = 'Your guest can place an order without registering'; $_LANGADM['AdminPreferencese4045598261988d9988c594243a9434d'] = 'Terms of service'; $_LANGADM['AdminPreferences342b52e8fe475dc8b5bf11afbfd46ea4'] = 'Require customers to accept or decline terms of service before processing the order'; $_LANGADM['AdminPreferencesd4d27f93d89b170800f7896e3e438468'] = 'Conditions of use CMS page'; -$_LANGADM['AdminPreferences6cda6c81a66d7faecf49e94a3b55e924'] = 'Choose the Conditions of use CMS page'; +$_LANGADM['AdminPreferences6cda6c81a66d7faecf49e94a3b55e924'] = 'Choose the CMS page for your Conditions of use'; $_LANGADM['AdminPreferencescd712537c39c43dcbf61e61a6df83cdd'] = 'Offer gift-wrapping'; -$_LANGADM['AdminPreferences28a318da44a83a4124b9cbcfa4978722'] = 'Suggest gift-wrapping to customer and possibility of leaving a message'; +$_LANGADM['AdminPreferences28a318da44a83a4124b9cbcfa4978722'] = 'Suggest gift-wrapping to customer with the possibility of adding a message'; $_LANGADM['AdminPreferences2a0677dae563d574fb1c50badaa4eabf'] = 'Gift-wrapping price'; $_LANGADM['AdminPreferencesc173252856179a44a9506a968359de8b'] = 'Set a price for gift-wrapping'; $_LANGADM['AdminPreferences0d8bdbe98feb696dd76760ee1374a740'] = 'Gift-wrapping tax'; $_LANGADM['AdminPreferences9311ccba175a9f2fc72e7c6a3dfb6078'] = 'Set a tax for gift-wrapping'; -$_LANGADM['AdminPreferences3aadb5e86b174ecada1174e22f5a6368'] = 'Attachment maximum size'; +$_LANGADM['AdminPreferences3aadb5e86b174ecada1174e22f5a6368'] = 'Maximum attachment size'; +$_LANGADM['AdminPreferences2ca89cca013873c7f841e1acf242b3d6'] = 'Set the maximum size of attachment files (in MB).'; +$_LANGADM['AdminPreferences12cbe1a4645659457808631047989afb'] = 'Maximum:'; $_LANGADM['AdminPreferences2ca89cca013873c7f841e1acf242b3d6'] = 'Set the maximum size of attachment files (in MegaBytes).'; $_LANGADM['AdminPreferences12cbe1a4645659457808631047989afb'] = 'Maximum:'; $_LANGADM['AdminPreferencesb667478ccafce4bff6d427a6bca06269'] = 'Offer recycled packaging'; @@ -1870,9 +1932,9 @@ $_LANGADM['AdminPreferences686a2ac82a5a64eca870ba9a55b8a675'] = 'New modules and $_LANGADM['AdminPreferencesa9fff6d50be898f47a507354626b8b8d'] = 'Hide optimization tips'; $_LANGADM['AdminPreferencese4e2107f99e82247d7e32ac7919c4416'] = 'Hide optimization tips on the back office homepage'; $_LANGADM['AdminPreferences79a8435260e0c3b17e30ccb1c6dfc75c'] = 'Display suppliers and manufacturers'; -$_LANGADM['AdminPreferences4be87dc8773fa2fb95b7b8302cb47fa9'] = 'Display manufacturers and suppliers list even if corresponding blocks are disabled'; +$_LANGADM['AdminPreferences4be87dc8773fa2fb95b7b8302cb47fa9'] = 'Display suppliers and manufacturers list even if corresponding blocks are disabled'; $_LANGADM['AdminPreferences9f47ef1ea6bca844b91ceb0322e6ae83'] = 'Use Smarty 2 instead of 3'; -$_LANGADM['AdminPreferencese0357226a7cbd43985e1b49bb30f9c55'] = 'Enable if your theme is incompatible with Smarty 3 (you should update your theme, since Smarty 2 will be unsupported from PrestaShop v1.5)'; +$_LANGADM['AdminPreferencese0357226a7cbd43985e1b49bb30f9c55'] = 'Enable if your theme is incompatible with Smarty 3 (you should update your theme, since Smarty 2 will no longer be supported starting with PrestaShop v1.5)'; $_LANGADM['AdminPreferences1b1befcb86d487715da458117710dfeb'] = 'Show notifications for new orders'; $_LANGADM['AdminPreferencesf79dc7c8a2b655f2dcae2ad1102b725b'] = 'This will display notifications when new orders will be made on your shop'; $_LANGADM['AdminPreferences8004e61ca76ff500d1e6ee92f7cb7f93'] = 'Show notifications for new customers'; @@ -1882,7 +1944,17 @@ $_LANGADM['AdminPreferences051fd283c29527d33402475333dfb1da'] = 'This will displ $_LANGADM['AdminPreferencesd5bc5fd307b108537039b6b6f98889d5'] = 'Time Zone:'; $_LANGADM['AdminPreferencesbbd6622dbbdf4bcb166f5e3f018a2351'] = 'Please click here to use HTTPS protocol before enabling SSL.'; $_LANGADM['AdminPreferences0db377921f4ce762c62526131097968f'] = 'General'; -$_LANGADM['AdminPreferencesc770d8e0d1d1943ce239c64dbd6acc20'] = 'Add my IP'; +$_LANGADM['AdminPreferences93cba07454f06a4a960172bbd6e2a435'] = 'Yes'; +$_LANGADM['AdminPreferencesbafd7322c6e97d25b6299b5d6fe8920b'] = 'No'; +$_LANGADM['AdminPreferencesc6e98a4b0af7d0f66842f744d999e436'] = 'In order to use a new theme, please follow these steps:'; +$_LANGADM['AdminPreferences432eb00cc8aace97c632fea212575b51'] = 'Import your theme using this module:'; +$_LANGADM['AdminPreferences2b5bde814a5f94ea73f447cdbcfb49fd'] = 'Theme installer'; +$_LANGADM['AdminPreferences64915993f11c4fbd47d8a6465f44125c'] = 'When your theme is imported, please select the theme from this page'; +$_LANGADM['AdminPreferences21034ae6d01a83e702839a72ba8a77b0'] = '(tax excl.)'; +$_LANGADM['AdminPreferencesc770d8e0d1d1943ce239c64dbd6acc20'] = 'Add my IP address'; +$_LANGADM['AdminPreferences6a7a397c4d4b5842440eb4eab1f7af8c'] = 'if you change your theme, the settings.inc.php file must be writable (CHMOD 755 / 777)'; +$_LANGADM['AdminPreferences38fb7d24e0d60a048f540ecb18e13376'] = ' Save '; +$_LANGADM['AdminPreferences19f823c6453c2b1ffd09cb715214813d'] = 'Required field'; $_LANGADM['AdminProductsb718adec73e04ce3ec720dd11a06a308'] = 'ID'; $_LANGADM['AdminProductsc03d53b70feba4ea842510abecd6c45e'] = 'Photo'; $_LANGADM['AdminProducts49ee3087348e8d44e1feda1917443987'] = 'Name'; @@ -1893,15 +1965,15 @@ $_LANGADM['AdminProducts694e8d1f2ee056f98ee488bdc4982d73'] = 'Quantity'; $_LANGADM['AdminProducts52f5e0bc3859bc5f5e25130b6c7e8881'] = 'Position'; $_LANGADM['AdminProducts86754577897acfb25deb69039d49d9a7'] = 'Displayed'; $_LANGADM['AdminProductsdbb768f29d6b36b627c8233b32da4f2c'] = 'File too large, maximum size allowed:'; -$_LANGADM['AdminProductsba34ea40525a4379add785228e37fe86'] = 'kb'; +$_LANGADM['AdminProductsba34ea40525a4379add785228e37fe86'] = 'kB'; $_LANGADM['AdminProductsb8cb56e655c8957c168a380aca447e9b'] = 'File size you\'re trying to upload is:'; $_LANGADM['AdminProductsaad781b9842958b4552b8edebb83c346'] = 'File copy failed'; $_LANGADM['AdminProducts06d43815fa42336629ff54da5630143c'] = 'the File'; $_LANGADM['AdminProducts6844aa7b2ea9577a34cea194362d5509'] = 'exceeds the size allowed by the server, this limit is set to'; -$_LANGADM['AdminProducts6dd757cbdd852a16f222a7d1a07eab3e'] = 'Mb'; -$_LANGADM['AdminProducts01f8544c8fd4628bc686502e8b727d95'] = 'the field'; +$_LANGADM['AdminProducts6dd757cbdd852a16f222a7d1a07eab3e'] = 'MB'; +$_LANGADM['AdminProducts01f8544c8fd4628bc686502e8b727d95'] = 'this field'; $_LANGADM['AdminProducts0a5fa53f3f20f67f98bd6c3b16df059d'] = 'is required'; -$_LANGADM['AdminProducts7e47a344b06d82a8836cbee2748a79e6'] = 'is required at least in'; +$_LANGADM['AdminProducts7e47a344b06d82a8836cbee2748a79e6'] = 'is required at in'; $_LANGADM['AdminProductsf755e8b92cb8f02c24f6f539180d45b1'] = 'is too long'; $_LANGADM['AdminProducts70f4b635847038d056e33959821a7a66'] = 'chars max'; $_LANGADM['AdminProductsbb46711b0644764f89a3d068e510295a'] = 'count now'; @@ -1922,10 +1994,12 @@ $_LANGADM['AdminProductsd144d85fc8b89f6deba2eef20d1deee7'] = 'Add a new product' $_LANGADM['AdminProducts5ece607071fe59ddc4c88dc6abfe2310'] = 'No items found'; $_LANGADM['AdminProducts07213a0161f52846ab198be103b5ab43'] = 'errors'; $_LANGADM['AdminProductscb5e100e5a9a3e7f6d1fd97512215282'] = 'error'; -$_LANGADM['AdminProductsc3543f3c6662fa1dedf70ed9c35053c0'] = 'Your product will be saved as draft'; +$_LANGADM['AdminProductsc3543f3c6662fa1dedf70ed9c35053c0'] = 'Your product will be saved as a draft'; $_LANGADM['AdminProductsf8825c9f08ff15b5ef6bc3a3898817e8'] = 'Save and preview'; $_LANGADM['AdminProductsa1dd23525470a5a87b159ff4e53675e9'] = 'Current product:'; $_LANGADM['AdminProductsc5b61a7732a63a64c9053c89119019cb'] = 'no name'; +$_LANGADM['AdminProducts873204675cdaee94cd0e27c18c0c3d0f'] = 'Decrease your stock'; +$_LANGADM['AdminProductsa55e7def30626a5de92fb5bac30e765f'] = 'Increase your stock'; $_LANGADM['AdminProductse16dd6e118732c5d1586d6aba0b62f3a'] = 'Prices'; $_LANGADM['AdminProductsb9208b03bcc9eb4a336258dcdcb66207'] = 'Combinations'; $_LANGADM['AdminProducts98f770b0af18ca763421bac22b4b6805'] = 'Features'; @@ -1937,6 +2011,7 @@ $_LANGADM['AdminProducts850611eb409c54ab510153d91572be5b'] = 'Current specific p $_LANGADM['AdminProducts386c339d37e737a436499d423a77df0c'] = 'Currency'; $_LANGADM['AdminProducts59716c97497eb9694541f7c3d37b1a4d'] = 'Country'; $_LANGADM['AdminProducts03937134cedab9078be39a77ee3a48a0'] = 'Group'; +$_LANGADM['AdminProducts3601146c4e948c32b6424d2c0a7f0118'] = 'Price'; $_LANGADM['AdminProducts21034ae6d01a83e702839a72ba8a77b0'] = '(tax excl.)'; $_LANGADM['AdminProducts9e834f13e35e4edf64863ab414a6217a'] = 'Reduction'; $_LANGADM['AdminProducts1901606ea069a83dc7beea17881ef95a'] = 'Period'; @@ -1950,7 +2025,7 @@ $_LANGADM['AdminProducts9c7f56d70e922a61254366964c01c64a'] = 'All currencies'; $_LANGADM['AdminProductsc3987e4cac14a8456515f0d200da04ee'] = 'All countries'; $_LANGADM['AdminProductse4c4c68c7515704a91d90207067dcbbe'] = 'All groups'; $_LANGADM['AdminProductsf2a6c498fb90ee345d997f888fce3b18'] = 'Delete'; -$_LANGADM['AdminProducts4d774376eedc9e76eb3ecd52629ca6d5'] = 'Priorities management'; +$_LANGADM['AdminProducts4d774376eedc9e76eb3ecd52629ca6d5'] = 'Priority management'; $_LANGADM['AdminProductsa7fd31ae96c5e8cd392b7dce990ed8f2'] = 'Sometimes one customer could fit in multiple rules, priorities allows you to define which rule to apply.'; $_LANGADM['AdminProducts77b4fe51b2eede1e804277e64ceb9a22'] = 'Priorities:'; $_LANGADM['AdminProducts48881913e6addc0c3c439f02229ac91e'] = 'Apply to all products'; @@ -1961,12 +2036,14 @@ $_LANGADM['AdminProducts06444363878572ed1fd5c9342cd5884f'] = 'Available from:'; $_LANGADM['AdminProducts01b6e20344b68835c5ed1ddedf20d531'] = 'to'; $_LANGADM['AdminProducts95b6faa9d75417fe5e7767a733ab6fb4'] = 'Starting at'; $_LANGADM['AdminProducts3e34bdebd9bd5edda27e8728904a2552'] = 'unit'; +$_LANGADM['AdminProducts290b7c47045d269e2ccfa69e6477acfe'] = 'Product price'; +$_LANGADM['AdminProducts913325468f8b6bcd59733df11213b066'] = '(tax excl.):'; $_LANGADM['AdminProducts83a3be00962f7ebef403da83d203e595'] = 'Current:'; $_LANGADM['AdminProducts9004d8f63917997431815639087b37b2'] = 'You can set this value at 0 in order to apply the default price'; $_LANGADM['AdminProductsf5a7257cb1424678ae6bebbd0c36b341'] = 'Apply a discount of:'; $_LANGADM['AdminProductsb2f40690858b404ed10e62bdf422c704'] = 'Amount'; $_LANGADM['AdminProducts37be07209f53a5d636d5c904ca9ae64c'] = 'Percentage'; -$_LANGADM['AdminProducts61946eb3e50f01d7ea339f202a2942f8'] = '(if set to \"amount\", the tax is included)'; +$_LANGADM['AdminProducts61946eb3e50f01d7ea339f202a2942f8'] = '(if set to \"amount\", tax is included)'; $_LANGADM['AdminProductsec211f7c20af43e742bf2570c3cb84f9'] = 'Add'; $_LANGADM['AdminProductsac67ede5a84eb5a1add7ff4440e9a485'] = 'required'; $_LANGADM['AdminProducts5fd58de80d182944e9c229aa4c3b8180'] = 'Add or modify customizable properties'; @@ -1981,7 +2058,7 @@ $_LANGADM['AdminProductse9cb217697088a98b1937d111d936281'] = 'Attachment'; $_LANGADM['AdminProducts6492d670e42151cc37574d99f4071f85'] = 'Filename:'; $_LANGADM['AdminProductsd0042a700e9bdf79689d63ee6846dc0e'] = 'Description:'; $_LANGADM['AdminProducts0b27918290ff5323bea1e3b78a9cf04e'] = 'File'; -$_LANGADM['AdminProductsab335fe79ef8a5e26c0dbc23332a7148'] = 'Upload file from your computer'; +$_LANGADM['AdminProductsab335fe79ef8a5e26c0dbc23332a7148'] = 'Upload a file from your computer'; $_LANGADM['AdminProducts92b69747c04b60634ec738b2e0d01abc'] = 'Add a new attachment file'; $_LANGADM['AdminProducts19f823c6453c2b1ffd09cb715214813d'] = 'Required field'; $_LANGADM['AdminProducts9d38722749ec2101e437414ac2a743f9'] = 'Attachments for this product:'; @@ -2015,7 +2092,7 @@ $_LANGADM['AdminProductsebcc39462e6620a8cf432194084a5483'] = 'Options:'; $_LANGADM['AdminProducts6a6d01ddaa8fb712f673a6c94525f149'] = 'available for order'; $_LANGADM['AdminProductscc3eb602e84d53395873953f354be5b3'] = 'display price'; $_LANGADM['AdminProducts165cd22134a317e1feceeb858c3660cf'] = 'show price'; -$_LANGADM['AdminProducts70424709b86c615fa200079c455d5e46'] = 'online only'; +$_LANGADM['AdminProducts70424709b86c615fa200079c455d5e46'] = 'Only available online'; $_LANGADM['AdminProducts284dd90023a7ddf940af524df216b9fc'] = 'online only (not sold in store)'; $_LANGADM['AdminProductsed51222f31afbf17ca5f3b0654db8969'] = 'Condition:'; $_LANGADM['AdminProducts03c2e7e41ffc181a4e84080b4710e81e'] = 'New'; @@ -2023,7 +2100,7 @@ $_LANGADM['AdminProducts019d1ca7d50cc54b995f60d456435e87'] = 'Used'; $_LANGADM['AdminProducts6da03a74721a0554b7143254225cc08a'] = 'Refurbished'; $_LANGADM['AdminProductsf4a275a931b82e5058bc8ffad8b8e5bd'] = 'Manufacturer:'; $_LANGADM['AdminProducts7825865597f0b1673524f56e335f3675'] = 'Choose (optional)'; -$_LANGADM['AdminProducts4cf86e65aa090f9e3acbfaba9f6af9a4'] = 'Are you sure you want to delete product information entered?'; +$_LANGADM['AdminProducts4cf86e65aa090f9e3acbfaba9f6af9a4'] = 'Are you sure you want to delete entered product information?'; $_LANGADM['AdminProducts686e697538050e4664636337cc3b834f'] = 'Create'; $_LANGADM['AdminProducts90bf278fe4384c50cd3ba3eb9d3c5393'] = 'Supplier:'; $_LANGADM['AdminProducts6d166a0253ed1e35debeceeb2f1e9e0b'] = 'Are you sure you want to delete entered product information?'; @@ -2050,10 +2127,10 @@ $_LANGADM['AdminProducts7e93b54f29abc0e84d489bf739a67e5f'] = 'Number of download $_LANGADM['AdminProductsc8360cc476fc8b5ee9a4db494220058d'] = 'Number of authorized downloads per customer'; $_LANGADM['AdminProducts8c1279db4db86553e4b9682f78cf500e'] = 'Expiration date'; $_LANGADM['AdminProducts2b05e1a0e6c62dbf0018af09ed38f4e0'] = 'Format: YYYY-MM-DD'; -$_LANGADM['AdminProducts65be3ad50ca00caff377d6a988c3823c'] = 'No expiration date if you leave this blank'; +$_LANGADM['AdminProducts65be3ad50ca00caff377d6a988c3823c'] = 'Leave this blank for no expiration date'; $_LANGADM['AdminProducts58fd2b2308056ad80255a322b305742b'] = 'Number of days'; $_LANGADM['AdminProducts44118d6d6ecd2f24f53ec6393a66baa1'] = 'How many days this file can be accessed by customers'; -$_LANGADM['AdminProducts282c59515d1ea09d37d4d9980bba3e58'] = 'set to zero for unlimited access'; +$_LANGADM['AdminProducts282c59515d1ea09d37d4d9980bba3e58'] = 'Set to zero for unlimited access'; $_LANGADM['AdminProducts2aa2ef9d99efe99c01d0c1fb2a3838e5'] = 'Pre-tax wholesale price:'; $_LANGADM['AdminProducts8a1c241e92c26b92eaae87afa337eaa3'] = 'The wholesale price at which you bought this product'; $_LANGADM['AdminProductse8fce60a7ce078b55bd02a1c25748f16'] = 'Pre-tax retail price:'; @@ -2069,18 +2146,20 @@ $_LANGADM['AdminProducts90b9d77dd96eaf4b15ff80bf8ef6fcfe'] = 'Unit price without $_LANGADM['AdminProductsfe3838c7c11aa406dd956566e17360d5'] = 'per'; $_LANGADM['AdminProductse81c4e4f2b7b93b481e13a8553c2ae1b'] = 'or'; $_LANGADM['AdminProducts913bb5260c0b1fbd1d76d8140360dd19'] = 'with tax'; -$_LANGADM['AdminProductsb2a474662dea2c96d1bc18cee6208eef'] = 'Eg. $15 per Lb'; +$_LANGADM['AdminProductsb2a474662dea2c96d1bc18cee6208eef'] = 'e.g. $15 per lb'; $_LANGADM['AdminProducts184dba60ea740430441d13a7e8213691'] = 'Display \"on sale\" icon on product page and text on product listing'; $_LANGADM['AdminProducts7b988b81a5fe3114360063de23f49016'] = 'Final retail price:'; $_LANGADM['AdminProductse2e79605fc9450ec17957cf0e910f5c6'] = 'tax incl.'; $_LANGADM['AdminProducts887ee91702c962a70b87cbef07bbcaec'] = 'tax excl.'; $_LANGADM['AdminProducts6aa641a49246a5538f692e9884fbe96e'] = 'You can define many discounts and specific price rules in the Prices tab'; $_LANGADM['AdminProducts90a38214f3409698c7110ce3217b7f22'] = 'Stock Movement:'; +$_LANGADM['AdminProductsf3045501284c98ea60713a3a8d27e8d7'] = 'Choose the reason and enter the quantity that you want to increase or decrease your stock'; $_LANGADM['AdminProducts3c6c92395ebfd9ba66296793ee901854'] = 'Initial stock:'; $_LANGADM['AdminProducts006b4cc15322f7951d9100716edcac07'] = 'Minimum quantity:'; $_LANGADM['AdminProductsb287d004082f0d743a49dc7360d4fbbe'] = 'The minimum quantity to buy this product (set to 1 to disable this feature)'; $_LANGADM['AdminProducts3b8c1da80dae1d62561a6d04d2f68dd5'] = 'Quantity in stock:'; -$_LANGADM['AdminProducts6606420385ad3fd14c70b8ffa210e407'] = 'You used combinations, for this reason you can\'t edit your stock quantity here, but in the Combinations tab'; +$_LANGADM['AdminProducts6606420385ad3fd14c70b8ffa210e407'] = 'You cannot edit your stock quantity here because you used combinations, please make edits in the the \"Combinations\" tab'; +$_LANGADM['AdminProductsd74838fbbeb384c01d7294db33c36ec3'] = 'The stock management is disabled'; $_LANGADM['AdminProducts10b8ce36a973c8009b521b39488a89a7'] = 'Additional shipping cost:'; $_LANGADM['AdminProductsb6ef48322d4d59004db9f650344c1a8f'] = 'Carrier tax will be applied.'; $_LANGADM['AdminProducts3e565755572fa5df48eb811c62619098'] = 'Displayed text when in-stock:'; @@ -2093,6 +2172,13 @@ $_LANGADM['AdminProductse5f7f63d66023847e693fd34bea09d41'] = 'Default:'; $_LANGADM['AdminProducts0871f875dff8224be3247ccedea01024'] = 'as set in'; $_LANGADM['AdminProductsd0834fcec6337785ee749c8f5464f6f6'] = 'Preferences'; $_LANGADM['AdminProducts9d9aa88574c4dab04ddd8356c377357d'] = 'Default category:'; +$_LANGADM['AdminProducts3faccbfcb5f35451302dcaff3af6cd3f'] = 'Please select a default category.'; +$_LANGADM['AdminProducts8cf04a9734132302f96da8e113e80ce5'] = 'Home'; +$_LANGADM['AdminProductsef7de3f485174ff47f061ad27d83d0ee'] = 'selected'; +$_LANGADM['AdminProductsb56c3bda503a8dc4be356edb0cc31793'] = 'Collapse All'; +$_LANGADM['AdminProducts5ffd7a335dd836b3373f5ec570a58bdc'] = 'Expand All'; +$_LANGADM['AdminProducts5e9df908eafa83cb51c0a3720e8348c7'] = 'Check All'; +$_LANGADM['AdminProducts9747d23c8cc358c5ef78c51e59cd6817'] = 'Uncheck All'; $_LANGADM['AdminProductsd88946b678e4c2f251d4e292e8142291'] = 'SEO'; $_LANGADM['AdminProducts2651608f8f1c6f391f919be228a6ee62'] = 'Click here to improve product\'s rank in search engines (SEO)'; $_LANGADM['AdminProducts7b250cb374c12c42a75227ba75df7779'] = 'Meta title:'; @@ -2100,17 +2186,19 @@ $_LANGADM['AdminProducts18a2ecd7e67529945cf93821d3fc438f'] = 'Product page title $_LANGADM['AdminProductsa6bb76858f8b4b61c050ad7a7ac57e06'] = 'Meta description:'; $_LANGADM['AdminProductsb2e3e379189bcd9251937acc4dcf37e8'] = 'A single sentence for HTML header'; $_LANGADM['AdminProducts394deec8b4e901394f69ad41095b1ecc'] = 'Meta keywords:'; -$_LANGADM['AdminProducts6d3adfeed355509b6aee5588e66d0157'] = 'Keywords for HTML header, separated by a comma'; +$_LANGADM['AdminProducts6d3adfeed355509b6aee5588e66d0157'] = 'Keywords for HTML header, separated by commas'; $_LANGADM['AdminProducts02fa003c38fefcda498b876f67f4cac7'] = 'Friendly URL:'; -$_LANGADM['AdminProducts03a1790c522058303088150cfb8b7353'] = 'Only letters and the \"less\" character are allowed'; +$_LANGADM['AdminProducts03a1790c522058303088150cfb8b7353'] = 'Only letters and the minus (-) character are allowed'; $_LANGADM['AdminProducts32b919d18cfaca89383f6000dcc9c031'] = 'Generate'; -$_LANGADM['AdminProductsb06f68603b4cf2f867480c4d1eb6a611'] = 'Friendly-url from product\'s name.'; +$_LANGADM['AdminProductsb06f68603b4cf2f867480c4d1eb6a611'] = 'Friendly-url from product name.'; $_LANGADM['AdminProducts92ab5edf4194cb5a84d6808cb8d8b696'] = 'Product link will look like this:'; $_LANGADM['AdminProducts234078adec0a64008b6ae77653776cfa'] = 'Short description:'; +$_LANGADM['AdminProducts38d301f7ef549a79620e99fd8b51fa34'] = 'appears in the product lists and on the top of the product page'; +$_LANGADM['AdminProducts9be976b8052c984a95997e4a4f8eef96'] = 'appears in the body of the product page'; $_LANGADM['AdminProducts32b502f33a535f75dcbf63f6753c631e'] = 'Tags:'; -$_LANGADM['AdminProducts8fca858b27c5837dcb22c398aca5e0fc'] = 'Tags separated by commas (e.g., dvd, dvd player, hifi)'; +$_LANGADM['AdminProducts8fca858b27c5837dcb22c398aca5e0fc'] = 'Tags separated by commas (e.g. dvd, dvd player, hifi)'; $_LANGADM['AdminProductsbe26ade2055790d0e8d19eed69309574'] = 'Accessories:'; -$_LANGADM['AdminProductsd18324caa0ff21355efe5b6df70a3640'] = '(Do not forget to Save the product afterward)'; +$_LANGADM['AdminProductsd18324caa0ff21355efe5b6df70a3640'] = '(Do not forget to save the product afterward)'; $_LANGADM['AdminProducts3b263477a8ad622d76979befafd0119d'] = 'Begin typing the first letters of the product name, then select the product from the drop-down list:'; $_LANGADM['AdminProductsdd8c7d4ab211f8e57f450a015dfe4131'] = 'Add an accessory'; $_LANGADM['AdminProductsc9cc8cce247e49bae79f15173ce97354'] = 'Save'; @@ -2121,15 +2209,15 @@ $_LANGADM['AdminProducts8bf615c78d82dede20bca75a5c73615c'] = 'Add a new image to $_LANGADM['AdminProductsae21d822d879539a75c3d6fd91c2acb3'] = 'File:'; $_LANGADM['AdminProductsfb2ea703b13d059f6b7ea5da806021df'] = 'Format:'; $_LANGADM['AdminProductsb908c2f34052b5276e0bf50f0e042211'] = 'Filesize:'; -$_LANGADM['AdminProductsc820e0c1d4ae16db218626f49e7916b1'] = 'Kb max.'; +$_LANGADM['AdminProductsc820e0c1d4ae16db218626f49e7916b1'] = 'kB max.'; $_LANGADM['AdminProducts463f08adc2cb22893d99eb000a40961b'] = 'You can also upload a ZIP file containing several images. Thumbnails will be resized automatically.'; $_LANGADM['AdminProductsa5c1b06a649dafdd7773865b97e9a5e1'] = 'Caption:'; $_LANGADM['AdminProductsab8a7c6ef0f133e923365bde43364244'] = 'Forbidden characters will be automatically erased.'; $_LANGADM['AdminProducts1395dbf641e8da2c2ca3870989c3052e'] = 'Short description of the image'; $_LANGADM['AdminProducts5d2ac9845f78b96c6d4fffeddd07a6f5'] = 'Cover:'; $_LANGADM['AdminProductsce265db90a8daefd2f7ea2c290442f7b'] = 'Use as product cover?'; -$_LANGADM['AdminProductse0d58b4177b13a4822c5fb46218ab270'] = 'If you want to select this image as a product cover'; -$_LANGADM['AdminProducts75b19c5c9d220804dffa3aa5f1771bed'] = 'Thumbnails resize method:'; +$_LANGADM['AdminProductse0d58b4177b13a4822c5fb46218ab270'] = 'Click to select this image as your product cover'; +$_LANGADM['AdminProducts75b19c5c9d220804dffa3aa5f1771bed'] = 'Thumbnail resizing method:'; $_LANGADM['AdminProducts086247a9b57fde6eefee2a0c4752242d'] = 'Automatic'; $_LANGADM['AdminProductse1ba155a9f2e8c3be94020eef32a0301'] = 'Manual'; $_LANGADM['AdminProducts2efe8f2bfa223b2aa2384b79e2eda6a8'] = 'Method you want to use to generate resized thumbnails'; @@ -2145,7 +2233,7 @@ $_LANGADM['AdminProductsd5682e6409bded35ee5c6ca6c6297729'] = 'Attribute:'; $_LANGADM['AdminProductsccf096490d2671f3ea97ea9289eee5b1'] = 'EAN13:'; $_LANGADM['AdminProductsbe9469719aa6efa2fc3bd5768bc406d7'] = 'Location:'; $_LANGADM['AdminProducts62b5bb12862c2d95d5c88d1e75feb4f9'] = 'Wholesale price:'; -$_LANGADM['AdminProductsad1c17cb310c91400d25d599cf154eda'] = 'overrides Wholesale price on Information tab'; +$_LANGADM['AdminProductsad1c17cb310c91400d25d599cf154eda'] = 'Overrides wholesale price on \"Information\" tab'; $_LANGADM['AdminProducts9d2ee2dd8c264912b6dd7b1689c1b423'] = 'Impact on price:'; $_LANGADM['AdminProducts6adf97f83acf6453d4a6a4b1070f3754'] = 'None'; $_LANGADM['AdminProductsaac247ca22789872bad95dc8f6c45d37'] = 'Increase'; @@ -2154,7 +2242,7 @@ $_LANGADM['AdminProducts190733df8c1af5e4666dfad4cc554080'] = 'final product pric $_LANGADM['AdminProducts91c8f68700703b825761609b303d44e3'] = 'Impact on weight:'; $_LANGADM['AdminProductsad802655c2e83ad378868d5f448677c7'] = 'Impact on unit price :'; $_LANGADM['AdminProducts487fd4fe388baed0928898b641050983'] = 'Eco-tax:'; -$_LANGADM['AdminProductsf445f4a540768234833908cab83f9214'] = 'overrides Eco-tax on Information tab'; +$_LANGADM['AdminProductsf445f4a540768234833908cab83f9214'] = 'overrides Eco-tax on \"Information\" tab'; $_LANGADM['AdminProducts24bf9597daf212b5cfab26ca381e7008'] = 'Stock movement:'; $_LANGADM['AdminProducts461900b74731e07320ca79366df3e809'] = 'Image:'; $_LANGADM['AdminProducts29d7b46b863639e29ae8452d2320530a'] = 'Make this the default combination for this product'; @@ -2183,7 +2271,7 @@ $_LANGADM['AdminProductsb2764723575b7c88c1b21c89ee8871e8'] = 'Activate the color $_LANGADM['AdminProductsddca89873b6cb1ff542e03163dfd179c'] = 'You must save this product before adding combinations'; $_LANGADM['AdminProductsc7c2169d380b95e2e3672037c5ace793'] = 'Assign features to this product:'; $_LANGADM['AdminProductsf41afefb4495b85c7b7ddf3e1ca4387f'] = 'You can specify a value for each relevant feature regarding this product, empty fields will not be displayed.'; -$_LANGADM['AdminProductsccfc539487f4e869ef05c1607d24a772'] = 'You can either set a specific value, or select among existing pre-defined values you added previously.'; +$_LANGADM['AdminProductsccfc539487f4e869ef05c1607d24a772'] = 'You can either create a specific value or select among existing pre-defined values you added previously.'; $_LANGADM['AdminProducts21021ea0e52be8e9c599f4dff41e5be0'] = 'Feature'; $_LANGADM['AdminProducts8bcdd31a1ab28f0db60efb2087c3f235'] = 'Pre-defined value'; $_LANGADM['AdminProducts12085f07b6313b69c63a625d8e23f706'] = 'Customized value'; @@ -2191,11 +2279,14 @@ $_LANGADM['AdminProducts22eb5599cf8ccde65128467443e72099'] = 'No features define $_LANGADM['AdminProducts382b0f5185773fa0f67a8ed8056c7759'] = 'N/A'; $_LANGADM['AdminProducts544baae42433c186ff222736db985d7d'] = 'Add pre-defined values first'; $_LANGADM['AdminProducts272b044f0333918a95175f3f402092eb'] = 'Save modifications'; -$_LANGADM['AdminProducts22987d3b86cd0afd549196e94817e20f'] = 'You will lose all modifications not saved, you may want to save modifications first?'; +$_LANGADM['AdminProducts22987d3b86cd0afd549196e94817e20f'] = 'You will lose all modifications not saved, are you sure you don\'t want to save modifications first?'; $_LANGADM['AdminProductsd6ae681fcd58f1e1936ca97da36528ff'] = 'Add a new feature'; $_LANGADM['AdminProductsd1a1006c2d7ebf87d5e4d934a138e5a5'] = 'You must save this product before adding features'; $_LANGADM['AdminProducts4492081ca02b059f9e8af4ddaf0f7292'] = 'Pack'; +$_LANGADM['AdminProducts2811dedc85918c3e3ed0becd87cbb336'] = 'You cannot add downloadable products to a pack.'; $_LANGADM['AdminProductsc7a915a59b56dc898c0ae52b64bed0c5'] = 'Add an item to the pack'; +$_LANGADM['AdminProducts126ddccbd9f946b8cd46d88b304a2020'] = 'Please select at least one product.'; +$_LANGADM['AdminProductsd764262872a3bfe2b0944d1826f43a88'] = 'Please set a quantity to add a product.'; $_LANGADM['AdminProducts10cbdb4839f838ce30409739435a6070'] = 'Catalog:'; $_LANGADM['AdminProductsb61bd19699eab41bbcdabc42f83af268'] = 'Consider changing the default category.'; $_LANGADM['AdminProducts74645ed4e5e25461a664d5f68ff19098'] = 'Mark all checkbox(es) of categories in which product is to appear'; @@ -2227,6 +2318,7 @@ $_LANGADM['AdminRangePrice5da618e8e4b89c66fe86e32cdafde142'] = 'From'; $_LANGADM['AdminRangePricee12167aa0a7698e6ebc92b4ce3909b53'] = 'To'; $_LANGADM['AdminRangePricec62faf40cbefb8525a15d535d0256c5f'] = 'Price ranges'; $_LANGADM['AdminRangePriceed6f7f991fdee1625deeaf369ec3146b'] = 'Carrier to which this range will be applied'; +$_LANGADM['AdminRangePriceb3c500a9f6fbe57f05013046a29f31c6'] = 'There isn\'t any carrier available for a price range.'; $_LANGADM['AdminRangePrice1e6d57e813355689e9c77e947d73ad8f'] = 'From:'; $_LANGADM['AdminRangePrice2c39f2ba36ea6da8583198d554719eb1'] = 'Range start (included)'; $_LANGADM['AdminRangePrice33caa076f23f453dd4061726f3706325'] = 'To:'; @@ -2239,6 +2331,7 @@ $_LANGADM['AdminRangeWeight5da618e8e4b89c66fe86e32cdafde142'] = 'From'; $_LANGADM['AdminRangeWeighte12167aa0a7698e6ebc92b4ce3909b53'] = 'To'; $_LANGADM['AdminRangeWeight553024cea5b7d69013550aefba774aaa'] = 'Weight ranges'; $_LANGADM['AdminRangeWeighted6f7f991fdee1625deeaf369ec3146b'] = 'Carrier to which this range will be applied'; +$_LANGADM['AdminRangeWeightaec665fba230ca53799cf3563c696792'] = 'There isn\'t any carrier available for a weight range.'; $_LANGADM['AdminRangeWeight1e6d57e813355689e9c77e947d73ad8f'] = 'From:'; $_LANGADM['AdminRangeWeight2c39f2ba36ea6da8583198d554719eb1'] = 'Range start (included)'; $_LANGADM['AdminRangeWeight33caa076f23f453dd4061726f3706325'] = 'To:'; @@ -2370,8 +2463,8 @@ $_LANGADM['AdminReturnStates19f823c6453c2b1ffd09cb715214813d'] = 'Required field $_LANGADM['AdminScenesb718adec73e04ce3ec720dd11a06a308'] = 'ID'; $_LANGADM['AdminScenes46cff679f56896d63111deff52857fc9'] = 'Image Maps'; $_LANGADM['AdminScenescb456215c3333db0551bd0788bc258c7'] = 'Activated'; -$_LANGADM['AdminScenesefa840b68d542771392db5b9977ca895'] = 'How to map products in the image:'; -$_LANGADM['AdminScenes0360cec9ca7756b663f53c9d87cc2111'] = 'When a customer hovers over the image with the mouse, a pop-up appears displaying a brief description of the product. The customer can then click to open the product\'s full product page. To achieve this, please define the \'mapping zone\' that, when hovered over, will display the pop-up. Left-click with your mouse to draw the four-sided mapping zone, then release. Then, begin typing the name of the associated product. A list of products appears. Click the appropriate product, then click OK. Repeat these steps for each mapping zone you wish to create. When you have finished mapping zones, click Save Image Map.'; +$_LANGADM['AdminScenesefa840b68d542771392db5b9977ca895'] = 'How to map products wihin the image:'; +$_LANGADM['AdminScenes0360cec9ca7756b663f53c9d87cc2111'] = 'When a customer hovers over the image with their mouse, a pop-up appears displaying a brief description of the product. The customer can then click to open the product\'s full product page. To achieve this, please define the \'mapping zone\' that, when hovered over, will display the pop-up. Left-click and drag with your mouse to draw the four-sided mapping zone, and then release. Then, begin typing the name of the associated product. A list of products appears. Click the appropriate product, then click OK. Repeat these steps for each mapping zone you wish to create. When you have finished mapping zones, click Save Image Map.'; $_LANGADM['AdminScenes84418e651fa14682de36a551e72c2a06'] = 'Image map name:'; $_LANGADM['AdminScenes24a23d787190f2c4812ff9ab11847a72'] = 'Status:'; $_LANGADM['AdminScenes43c7582c40594c3fe32a6634ef9dcb07'] = 'Deactivated'; @@ -2380,7 +2473,7 @@ $_LANGADM['AdminScenes997fd7aaabd538817e06ff1b3289bee3'] = 'Image to be mapped:' $_LANGADM['AdminScenes0ff5840c17a19a6416cb6532fa1cd3c9'] = 'Upload image'; $_LANGADM['AdminScenesfb2ea703b13d059f6b7ea5da806021df'] = 'Format:'; $_LANGADM['AdminScenesa99236f155b9a3606d7b36262179bc17'] = 'File size:'; -$_LANGADM['AdminScenes64fd5923eb01a88c3f25ad6c841f6ede'] = 'KB max.'; +$_LANGADM['AdminScenes64fd5923eb01a88c3f25ad6c841f6ede'] = 'kB max.'; $_LANGADM['AdminScenes1af828ba283f1db4849dd627767da221'] = 'If larger than the image size setting, the image will be reduced to '; $_LANGADM['AdminScenesbc02f05b2b99eb2f72b99dba325427e9'] = '(width x height). If smaller than the image-size setting, a white background will be added in order to achieve the correct image size.'; $_LANGADM['AdminScenes7dc99a2737d301ded7dbc18b54487c4c'] = 'Note: To change image dimensions, please change the \'large_scene\' image type settings to the desired size (in Back Office > Preferences > Images).'; @@ -2391,12 +2484,19 @@ $_LANGADM['AdminScenesb667daefa504a39a424c395df58d04b1'] = 'Alternative thumbnai $_LANGADM['AdminScenesf53d1cd25e03173ba9eaa4e493636769'] = '(optional)'; $_LANGADM['AdminScenes992fce2ab1e3df0de5e94109ab6f4ba0'] = 'If you want to use a thumbnail other than one generated from simply reducing the mapped image, please upload it here.'; $_LANGADM['AdminScenesb908c2f34052b5276e0bf50f0e042211'] = 'Filesize:'; -$_LANGADM['AdminScenesc820e0c1d4ae16db218626f49e7916b1'] = 'Kb max.'; +$_LANGADM['AdminScenesc820e0c1d4ae16db218626f49e7916b1'] = 'kB max.'; $_LANGADM['AdminScenes0b24516ee8c68a18020951583bc3b8ab'] = 'Automatically resized to'; $_LANGADM['AdminScenes8a5c9824486e8c1f74cb4c4ec8f9e465'] = '(width x height)'; $_LANGADM['AdminScenesa5394858079fa378684b20a1abc0e9be'] = 'Note: To change image dimensions, please change the \'thumb_scene\' image type settings to the desired size (in Back Office > Preferences > Images).'; +$_LANGADM['AdminScenes8cf04a9734132302f96da8e113e80ce5'] = 'Home'; +$_LANGADM['AdminScenesef7de3f485174ff47f061ad27d83d0ee'] = 'selected'; +$_LANGADM['AdminScenesb56c3bda503a8dc4be356edb0cc31793'] = 'Collapse All'; +$_LANGADM['AdminScenes5ffd7a335dd836b3373f5ec570a58bdc'] = 'Expand All'; +$_LANGADM['AdminScenes5e9df908eafa83cb51c0a3720e8348c7'] = 'Check All'; +$_LANGADM['AdminScenes9747d23c8cc358c5ef78c51e59cd6817'] = 'Uncheck All'; +$_LANGADM['AdminScenes8c38776925f7cf41c090646a43157024'] = 'Categories:'; $_LANGADM['AdminScenesdf41d831253828e9852a25c72393fde8'] = 'Save Image Map(s)'; -$_LANGADM['AdminScenesf5dae0e1b3d4bc66fadd2840b4f79227'] = 'Please add a picture to continue mapping the image...'; +$_LANGADM['AdminScenesf5dae0e1b3d4bc66fadd2840b4f79227'] = 'Please add a picture to continue mapping the image.'; $_LANGADM['AdminScenes19f823c6453c2b1ffd09cb715214813d'] = 'Required field'; $_LANGADM['AdminSearcheb6b06cab0dd72e04c4da68d511facf2'] = 'Search results'; $_LANGADM['AdminSearch069aaf2bc613789c5ac5ec141d934746'] = 'Features matching your query:'; @@ -2408,10 +2508,10 @@ $_LANGADM['AdminSearch3601146c4e948c32b6424d2c0a7f0118'] = 'Price'; $_LANGADM['AdminSearch27ce7f8b5623b2e2df568d64cf051607'] = 'Stock'; $_LANGADM['AdminSearchec53a8c4f07baed5d8825072c89799be'] = 'Status'; $_LANGADM['AdminSearch06df33001c1d7187fdd81ea1f5b277aa'] = 'Actions'; -$_LANGADM['AdminSearchdaab80c5dadc81fa2d019c562f805994'] = 'Sex'; -$_LANGADM['AdminSearch1ec5f5ec77c51a968271b2ca9862907d'] = 'e-mail'; +$_LANGADM['AdminSearchdaab80c5dadc81fa2d019c562f805994'] = 'Gender'; +$_LANGADM['AdminSearch1ec5f5ec77c51a968271b2ca9862907d'] = 'E-mail address'; $_LANGADM['AdminSearch9c37b7b6ff829e977df287900543ea54'] = 'Birth date'; -$_LANGADM['AdminSearch151a3c668742e11d24b6f8e65f7f7ee6'] = 'Register date'; +$_LANGADM['AdminSearch151a3c668742e11d24b6f8e65f7f7ee6'] = 'Registration date'; $_LANGADM['AdminSearch7442e29d7d53e549b78d93c46b8cdcfc'] = 'Orders'; $_LANGADM['AdminSearch94bf3ff95d3b3870c72d1c54f7105477'] = 'categories found with'; $_LANGADM['AdminSearchce35f6a58823a8effa17a2af92949fbb'] = 'category found with'; @@ -2433,10 +2533,13 @@ $_LANGADM['AdminSearchc3b0525bb0516119f4233bc8f78ec05e'] = 'Delete this customer $_LANGADM['AdminSearch4db15b3d4b90022287ec8dce8a42a78c'] = 'Nothing found for'; $_LANGADM['AdminSearchConf13348442cc6a27032d2b4aa28b75a5d3'] = 'Search'; $_LANGADM['AdminSearchConf8a289df2d13df2450bfcc937a026dee3'] = 'Ajax search'; -$_LANGADM['AdminSearchConf00204f71aee500f89085662a40f8a555'] = 'Enable the ajax search for your visitors.'; +$_LANGADM['AdminSearchConf00204f71aee500f89085662a40f8a555'] = 'Enable ajax search for your visitors.'; +$_LANGADM['AdminSearchConf483c40354fdf24fc335387dc1785ccd2'] = 'With ajax search, the first 10 products matching the user query will appear in real time below the input field.'; $_LANGADM['AdminSearchConfbbeec9bc726c86e461b48941118e4f3b'] = 'Instant search:'; -$_LANGADM['AdminSearchConf4381a423b1c744a58a00f9921327f4f7'] = 'Minimum word length'; -$_LANGADM['AdminSearchConfc1aa7600ab8604ee230fbf068ae3e032'] = 'Only words from this size will be indexed.'; +$_LANGADM['AdminSearchConf88a84f6aa7f460b72f4a4b9dd9b9b714'] = 'Enable instant search for your visitors.'; +$_LANGADM['AdminSearchConfd125a8ad45c31bd8d3d6502b357e944a'] = 'With instant search, the results will appear immediately as the user writes a query.'; +$_LANGADM['AdminSearchConf4381a423b1c744a58a00f9921327f4f7'] = 'Minimum word length (in chars)'; +$_LANGADM['AdminSearchConfc1aa7600ab8604ee230fbf068ae3e032'] = 'Only words this size or larger will be indexed.'; $_LANGADM['AdminSearchConf5bff181421d95b49ad5ce5bb08f0ffbe'] = 'Blacklisted words'; $_LANGADM['AdminSearchConf97af9b173ce5af301daaa0aeb5419c49'] = 'Please enter the words separated by a \"|\".'; $_LANGADM['AdminSearchConf76a591808a254d4094e1c43f937b834f'] = 'Product name weight'; @@ -2449,10 +2552,17 @@ $_LANGADM['AdminSearchConfc152439199cebb7e1c27633efeaf1eda'] = 'Tags weight'; $_LANGADM['AdminSearchConf1b25f9ffbf4d185dbb985380a04732cc'] = 'Attributes weight'; $_LANGADM['AdminSearchConf4871216a35362aebc0d9908e6e288765'] = 'Features weight'; $_LANGADM['AdminSearchConfda0d18febbbe9cd4e54b68aa72f1d231'] = 'Indexation'; +$_LANGADM['AdminSearchConf1c24b90abdb6175e6c57762446db435a'] = 'The \"indexed\" products have been analyzed by PrestaShop and will appear in the results of the front office search.'; $_LANGADM['AdminSearchConfd09de235a4115d5c3ff8d8e75f2fa45c'] = 'Indexed products:'; +$_LANGADM['AdminSearchConfccbc76379314a960da40f0693ac3497b'] = 'Building the product index can take a few minutes or more. If your server stops the process before it finishes indexing, you can resume it by clicking \"Add missing products\"'; $_LANGADM['AdminSearchConf89e75b6219e4f6de0200ad94812a5655'] = 'Add missing products to index.'; $_LANGADM['AdminSearchConf26e424abe001fcfdcc85a2d59bacb567'] = 'Re-build entire index.'; $_LANGADM['AdminSearchConf2e2ef007bbe41bc68ee187fca0387520'] = 'You can set a cron job that will re-build your index using the following URL:'; +$_LANGADM['AdminSearchConfad24ffca4f9e9c0c7e80fe1512df6db9'] = 'Relevance'; +$_LANGADM['AdminSearchConfb528cee25edcbf2257878a5aead21a1d'] = 'The \"weight\" represents its importance and relevance for the ranking of the products when try a new search.'; +$_LANGADM['AdminSearchConf157ce71733eb58af6770c47cfbab1732'] = 'A word with a weight of 8 will have 4 times more value than a word with a weight of 2.'; +$_LANGADM['AdminSearchConfc0e9eaafe9282fe99cb85cf791a2dd8e'] = 'We advise that you set a greater weight for words which appear in the name or reference of a products than the ones of the description of category name. This way, the search results will be as precise and relevant as possible.'; +$_LANGADM['AdminSearchConf8c489d0946f66d17d73f26366a4bf620'] = 'Weight'; $_LANGADM['AdminSearchEnginesb718adec73e04ce3ec720dd11a06a308'] = 'ID'; $_LANGADM['AdminSearchEngines9aa1b03934893d7134a660af4204f2a9'] = 'Server'; $_LANGADM['AdminSearchEnginesb864759d534539519ceaa2c03a39d4c2'] = 'GET variable'; @@ -2474,24 +2584,26 @@ $_LANGADM['AdminShippinge3d29a6f3d7588301aa04429e686b260'] = 'According to total $_LANGADM['AdminShipping49fec5c86a3b43821fdf0d9aa7bbd935'] = 'According to total weight'; $_LANGADM['AdminShippingedba2e2f00e254e64fcb0057c0279a1d'] = 'Fees by carrier, geographical zone, and ranges'; $_LANGADM['AdminShipping006300efaf063e1705dd614ea0ae9e8b'] = 'Fees'; +$_LANGADM['AdminShippingc58f2291088838a2fd291aa70d560b30'] = 'You only have free carriers, there is no need to configure your delivery prices.'; $_LANGADM['AdminShippingf8617a92ba0a0a4eabee724eab7c9f48'] = 'Carrier:'; $_LANGADM['AdminShippingabed9eda0a174a7b32829098aa53ae4d'] = 'Zone / Range'; $_LANGADM['AdminShipping01b6e20344b68835c5ed1ddedf20d531'] = 'to'; $_LANGADM['AdminShippingb1c94ca2fbc3e78fc30069c8d0f01680'] = 'All'; +$_LANGADM['AdminShippingee40885aa3a350e6182b8ada1843ed30'] = 'This is a free carrier'; $_LANGADM['AdminShipping8c6e9d97aa1ff2b61603508a7d25e8b7'] = 'No ranges set for this carrier'; $_LANGADM['AdminShipping3c5a90ab81573c044caffb847d9157f6'] = 'Prices do not include tax.'; $_LANGADM['AdminSlipb718adec73e04ce3ec720dd11a06a308'] = 'ID'; $_LANGADM['AdminSlip6fde42aa0857eb92fc0d0c3fb1c6c8b7'] = 'ID Order'; $_LANGADM['AdminSlip446faa7da2d42ba4ffeda73cb119dd91'] = 'Date issued'; $_LANGADM['AdminSlipc95ed58f8c9573f7d58667e6847758d9'] = 'Slip'; -$_LANGADM['AdminSlipf596633d68fc44d6c7460676060d5dcb'] = 'Invalid from date'; -$_LANGADM['AdminSlipff9e9791ff17e1ca431449bb2fe992c0'] = 'Invalid end date'; +$_LANGADM['AdminSlipf596633d68fc44d6c7460676060d5dcb'] = 'Invalid \"From\" date'; +$_LANGADM['AdminSlipff9e9791ff17e1ca431449bb2fe992c0'] = 'Invalid \"To\" date'; $_LANGADM['AdminSlip97e021ec21e7594c30cbb0adbe16be6d'] = 'No order slips found for this period'; $_LANGADM['AdminSlipafa0e443a161e904a03bbbc333506256'] = 'Print PDF'; $_LANGADM['AdminSlip1e6d57e813355689e9c77e947d73ad8f'] = 'From:'; -$_LANGADM['AdminSlip0b1fb1278454d848f968d419e29c253b'] = 'Format: 2007-12-31 (inclusive)'; +$_LANGADM['AdminSlip0b1fb1278454d848f968d419e29c253b'] = 'Format: 20011-12-31 (inclusive)'; $_LANGADM['AdminSlip33caa076f23f453dd4061726f3706325'] = 'To:'; -$_LANGADM['AdminSlip647ad0242a9d796e3c83ecf6d6435bc2'] = 'Format: 2008-12-31 (inclusive)'; +$_LANGADM['AdminSlip647ad0242a9d796e3c83ecf6d6435bc2'] = 'Format: 2012-12-31 (inclusive)'; $_LANGADM['AdminSlip067af5895a7ced3197520b591f9a41eb'] = 'Generate PDF file'; $_LANGADM['AdminSlip01abfc750a0c942167651c40d088531d'] = '#'; $_LANGADM['AdminSlip4351cfebe4b61d8aa5efa1d020710005'] = 'View'; @@ -2506,7 +2618,7 @@ $_LANGADM['AdminStatesb8464cdd84b5f068ad72bf5c4f32163d'] = 'States'; $_LANGADM['AdminStates4e140ba723a03baa6948340bf90e2ef6'] = 'Name:'; $_LANGADM['AdminStates457885792537d3f4a056e776fa721a3d'] = 'State name to display in addresses and on invoices'; $_LANGADM['AdminStates3af4c1797da60fd50670ddbb669fc0aa'] = 'ISO code:'; -$_LANGADM['AdminStates2dcd278c8503e295e186209fffd676f7'] = '1 to 4 letter ISO code (search on Wikipedia if you don\'t know)'; +$_LANGADM['AdminStates2dcd278c8503e295e186209fffd676f7'] = '1 to 4 letter ISO code (search on Wikipedia if you do not know)'; $_LANGADM['AdminStatesf64be5eef68442a8f50cf535b92ad3e4'] = 'Country:'; $_LANGADM['AdminStates19ce4359133c8a012b572413ea8b58ea'] = 'Country where state, region or city is located'; $_LANGADM['AdminStatese6e42855066e7a3ae050b2c698021b14'] = 'Zone:'; @@ -2543,7 +2655,7 @@ $_LANGADM['AdminStatsTab5f075ae3e1f9d0382bb8c4632991f96f'] = 'Go'; $_LANGADM['AdminStatsTab846495f9ceed11accf8879f555936a7d'] = 'Navigation'; $_LANGADM['AdminStatsTab266e72d21719a5d0c7b8527c44c08f99'] = 'No module installed'; $_LANGADM['AdminStatsTab8290fb626ffacf21450997f25967efeb'] = 'Module not found'; -$_LANGADM['AdminStatsTabb9f69fde28fbf3d71afa1bc9e3b7dab8'] = 'Please select a module in the left column.'; +$_LANGADM['AdminStatsTabb9f69fde28fbf3d71afa1bc9e3b7dab8'] = 'Please select a module from the left column.'; $_LANGADM['AdminStatuses33af8066d3c83110d4bd897f687cedd2'] = 'Order statuses'; $_LANGADM['AdminStatuses5fb4f48b6fec81c554fb0519b0669b2f'] = 'Order return statuses'; $_LANGADM['AdminStockMvtb718adec73e04ce3ec720dd11a06a308'] = 'ID'; @@ -2553,13 +2665,20 @@ $_LANGADM['AdminStockMvtfffcb4d1e12c96b2f571f77ad25878b8'] = 'Reason'; $_LANGADM['AdminStockMvt6fde42aa0857eb92fc0d0c3fb1c6c8b7'] = 'ID Order'; $_LANGADM['AdminStockMvtf8c8b903cb2e4f297e4b96d4b9c1e98a'] = 'Employee'; $_LANGADM['AdminStockMvt7a88c0e00abd9ea4220cc8fd00892306'] = 'Stock Movement'; +$_LANGADM['AdminStockMvt4e140ba723a03baa6948340bf90e2ef6'] = 'Name:'; +$_LANGADM['AdminStockMvt85896a744f6fd84cbcd7bddb31fae8d7'] = 'Action:'; +$_LANGADM['AdminStockMvta2590f768bebc52068ba341320394860'] = 'Increase stock'; +$_LANGADM['AdminStockMvtcc5c5c2e1e8d0ea99dda086197b8b030'] = 'Decrease stock'; $_LANGADM['AdminStockMvt38fb7d24e0d60a048f540ecb18e13376'] = ' Save '; $_LANGADM['AdminStockMvtdf2dcf15625e93b34f46fe6c27f9b2c8'] = 'Stock Movements for'; +$_LANGADM['AdminStockMvta240fa27925a635b08dc28c9e4f9216d'] = 'Order'; +$_LANGADM['AdminStockMvt44749712dbec183e983dcd78a7736c41'] = 'Date'; $_LANGADM['AdminStockMvt41254dab4d830cda65e017d8ff38f9bb'] = 'Stock movement history'; -$_LANGADM['AdminStockMvtf78c5ca37035326bca5e672deb6f2705'] = 'Calculate the movement of inventory missing'; +$_LANGADM['AdminStockMvtf78c5ca37035326bca5e672deb6f2705'] = 'Calculate the movement of missing inventory'; $_LANGADM['AdminStockMvta4d3b161ce1309df1c4e25df28694b7b'] = 'Submit'; +$_LANGADM['AdminStockMvt31c6b3fdfaaa80dba2dbf92a4600524c'] = 'Sign'; $_LANGADM['AdminStockMvt49ee3087348e8d44e1feda1917443987'] = 'Name'; -$_LANGADM['AdminStockMvtd7319ffe5be44fae23cc7d312c312026'] = 'Default Stock Movement reason:'; +$_LANGADM['AdminStockMvtd7319ffe5be44fae23cc7d312c312026'] = 'Default stock movement reason:'; $_LANGADM['AdminStockMvtad800300cd0f25f7847c4de9abae4fab'] = 'Stock movement reason'; $_LANGADM['AdminStoresb718adec73e04ce3ec720dd11a06a308'] = 'ID'; $_LANGADM['AdminStores59716c97497eb9694541f7c3d37b1a4d'] = 'Country'; @@ -2579,11 +2698,11 @@ $_LANGADM['AdminStores1056348a5ee2b947804582ee224856ef'] = 'Show a simplified st $_LANGADM['AdminStoresc4d2dfcc9772ed9b143df5491e828235'] = 'No map, no search, only a store directory'; $_LANGADM['AdminStores7ef769cefe50f4eee90b1e1a22eb9172'] = 'Latitude by default:'; $_LANGADM['AdminStores5a6b8fd2f89cdbde7862a59462f58273'] = 'Longitude by default:'; -$_LANGADM['AdminStoresf08a4f32d9ce394e8d85ebffbe1a3ed3'] = 'You can also replace the icon representing your store in Google Maps. Go to the Preferences tab, and then the Appearance subtab.'; +$_LANGADM['AdminStoresf08a4f32d9ce394e8d85ebffbe1a3ed3'] = 'You can also replace the icon representing your store in Google Maps. Go to \"Preferences > Appearence\"'; $_LANGADM['AdminStores821b8ee6937cec96c30fdafbfe836d68'] = 'Stores'; $_LANGADM['AdminStores4e140ba723a03baa6948340bf90e2ef6'] = 'Name:'; $_LANGADM['AdminStores1cc70ef3820fa925ca1dd1ab645d239e'] = 'Allowed characters: letters, spaces and'; -$_LANGADM['AdminStoresca5acac9ef810c83a15e0da3babd2007'] = 'Store name, e.g. Citycentre Mall Store'; +$_LANGADM['AdminStoresca5acac9ef810c83a15e0da3babd2007'] = 'Store name (e.g. Citycentre Mall Store)'; $_LANGADM['AdminStores2bf1d5fae1c321d594fdedf05058f709'] = 'Address:'; $_LANGADM['AdminStoresdd7bf230fde8d4836917806aff6a6b27'] = 'Address'; $_LANGADM['AdminStores7515d32836da5648eb6a8f9113b7405b'] = 'Postcode/ Zip Code:'; @@ -2591,18 +2710,18 @@ $_LANGADM['AdminStoresbffb711ec36f280459d11dce315da72f'] = 'City:'; $_LANGADM['AdminStoresf64be5eef68442a8f50cf535b92ad3e4'] = 'Country:'; $_LANGADM['AdminStores18325105de95083e4a1d10b78f29c2bc'] = 'State:'; $_LANGADM['AdminStoresfcea88ad56b0839689d41643aa8abfd3'] = 'Latitude / Longitude:'; -$_LANGADM['AdminStoresbfa40b889c8fe29c2748e5d26f02d044'] = 'Store coords, eg. 45.265469 / -47.226478'; +$_LANGADM['AdminStoresbfa40b889c8fe29c2748e5d26f02d044'] = 'Store coordinates (e.g. 45.265469 / -47.226478)'; $_LANGADM['AdminStores673ae02fffb72f0fe68a66f096a01347'] = 'Phone:'; $_LANGADM['AdminStores0e2fb5b02182fd28b9b96e86ed27838f'] = 'Fax:'; $_LANGADM['AdminStores78e365acb087fd1f8d494dae0001de10'] = 'E-mail address:'; $_LANGADM['AdminStoresfc9d3df613063ee57906c461320744e2'] = 'Note:'; $_LANGADM['AdminStores24a23d787190f2c4812ff9ab11847a72'] = 'Status:'; $_LANGADM['AdminStoresb9f5c797ebbf55adccdd8539a65a0241'] = 'Disabled'; -$_LANGADM['AdminStores5c7246a637866f706a8319f8f701497e'] = 'Display or not this store'; +$_LANGADM['AdminStores5c7246a637866f706a8319f8f701497e'] = 'Whether or not to display this store'; $_LANGADM['AdminStores7da7bd98bbbcb62c935af8d362bb7a3e'] = 'Picture:'; -$_LANGADM['AdminStores134592f3d9dadf4c4f76ef7e9e12fb57'] = 'Store window picture'; +$_LANGADM['AdminStores134592f3d9dadf4c4f76ef7e9e12fb57'] = 'Storefront picture'; $_LANGADM['AdminStoresad179a1071ebd8b00e0ff4718301dcea'] = 'Hours:'; -$_LANGADM['AdminStores9021b488beef18b26de0d3bfd1acaa63'] = 'Sample: 10:00AM - 9:30PM'; +$_LANGADM['AdminStores9021b488beef18b26de0d3bfd1acaa63'] = 'e.g. 10:00AM - 9:30PM'; $_LANGADM['AdminStores6f8522e0610541f1ef215a22ffa66ff6'] = 'Monday'; $_LANGADM['AdminStores5792315f09a5d54fb7e3d066672b507f'] = 'Tuesday'; $_LANGADM['AdminStores796c163589f295373e171842f37265d5'] = 'Wednesday'; @@ -2614,7 +2733,7 @@ $_LANGADM['AdminStores38fb7d24e0d60a048f540ecb18e13376'] = ' Save '; $_LANGADM['AdminStores19f823c6453c2b1ffd09cb715214813d'] = 'Required field'; $_LANGADM['AdminSubDomainsb718adec73e04ce3ec720dd11a06a308'] = 'ID'; $_LANGADM['AdminSubDomainsbeed05bccb8b6f21466910eb4a4f142b'] = 'Subdomain'; -$_LANGADM['AdminSubDomainsfeedb03bed3f1e5339e12ecffc46eaba'] = 'Cookies are different on each subdomain of your Website. If you want to use the same cookie, please add here the subdomains used by your shop. The most common is \"www\".'; +$_LANGADM['AdminSubDomainsfeedb03bed3f1e5339e12ecffc46eaba'] = 'Cookies are different on each subdomain of your Website. If you want to use the same cookie, please add the subdomains used by your shop here. The most common is \"www\".'; $_LANGADM['AdminSubDomains51e2fe0e1a41fe9fec46ae2129bb8513'] = 'Subdomains'; $_LANGADM['AdminSubDomains463da457421d74a9ced0ac848fd90ccc'] = 'Subdomain:'; $_LANGADM['AdminSubDomains9a79e1e6cdfc1c64a71c60f2bac06c2f'] = 'Additional subdomain'; @@ -2681,17 +2800,38 @@ $_LANGADM['AdminTags19f823c6453c2b1ffd09cb715214813d'] = 'Required field'; $_LANGADM['AdminTaxRulesGroupb718adec73e04ce3ec720dd11a06a308'] = 'ID'; $_LANGADM['AdminTaxRulesGroup49ee3087348e8d44e1feda1917443987'] = 'Name'; $_LANGADM['AdminTaxRulesGroup00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Enabled'; +$_LANGADM['AdminTaxRulesGroup0a25e07dca07d53e3a4028a872759819'] = 'The tax rules allow you to define a product or a carrier with different taxes depending on the location (country, state, etc.).'; +$_LANGADM['AdminTaxRulesGroup70637b13cefc817973af3402e8d55f93'] = 'In the majority of cases, the rules created by default by PrestaShop should be enough.'; +$_LANGADM['AdminTaxRulesGroupe9e21d887c1842cb0e55db2535bad55d'] = 'If, however, you need to change them, here is an example that will help you understand how it works:'; +$_LANGADM['AdminTaxRulesGroupdb4d4f1bfd27e52952252b03e7f33614'] = 'For example, you want to apply a tax of 19.6% to a product in France and Italy, but not apply this tax to other countries. Follow these steps:'; +$_LANGADM['AdminTaxRulesGroup555f1c93c6aa30a9b28e5cb37eaade53'] = 'Click \"Add New.\"'; +$_LANGADM['AdminTaxRulesGroup72b952c58ce090f3ee1d9d622ab6b8bc'] = 'Give a name to your tax rule (e.g. \"19.6% tax rule).'; +$_LANGADM['AdminTaxRulesGroupaa2931a65abeca84f219d9d23c6130d2'] = 'Set the \'active\' field to true.'; +$_LANGADM['AdminTaxRulesGroup941e5236c41b28fd43698bf5cb44c9a0'] = 'Edit its configuration by country by associating a 19.6% tax with France and with Italy, and a tax of 0% to other countries.'; +$_LANGADM['AdminTaxRulesGroupb03b01502d3507bd3482fbe704a1b6fb'] = 'Click on Save.'; +$_LANGADM['AdminTaxRulesGroup9fbe151ea9ae9237b7683a6a749332ce'] = 'Go to your product page (Catalog tab) and associate the \"19.6% tax rule\" to your product.'; +$_LANGADM['AdminTaxRulesGroup5a3b0885f738136438cb25e3e89cfb77'] = 'Later, if you need to apply a different tax to Spain, you can simply edit the\"19.6% tax rule\" and change the tax associated with Spain.'; +$_LANGADM['AdminTaxRulesGroup6c4026779d25d01f693adaa814828099'] = 'Note: The default rate applied to your product will be based on your store\'s default country.'; $_LANGADM['AdminTaxRulesGroup8d4ae51b8b5831db49a6dcde1b83e175'] = 'Tax Rules'; $_LANGADM['AdminTaxRulesGroup6252c0f2c2ed83b7b06dfca86d4650bb'] = 'Invalid characters:'; $_LANGADM['AdminTaxRulesGroup0099c0173a3c7758b36025bdae9b4fc7'] = 'Enable:'; $_LANGADM['AdminTaxRulesGroupb9f5c797ebbf55adccdd8539a65a0241'] = 'Disabled'; $_LANGADM['AdminTaxRulesGroup9ea67be453eaccf020697b4654fc021a'] = 'Save and stay'; +$_LANGADM['AdminTaxRulesGroupb1c94ca2fbc3e78fc30069c8d0f01680'] = 'All'; +$_LANGADM['AdminTaxRulesGroup9639e32cab248434a17ab32237cb3b71'] = 'Apply'; +$_LANGADM['AdminTaxRulesGroup1d55c643fcca23b406c26198beb44992'] = 'Country / State / County'; +$_LANGADM['AdminTaxRulesGroup8b4ce6c79f9d3c26375ea887135efb47'] = 'Tax to apply'; +$_LANGADM['AdminTaxRulesGroup2199b369019504982d7374bcafcece8a'] = 'Apply country tax only'; +$_LANGADM['AdminTaxRulesGroup6a2382d57805358225c625059962483c'] = 'Apply state tax only'; +$_LANGADM['AdminTaxRulesGroup77abc71db136bf412d2c1c30656d967b'] = 'Apply both taxes'; +$_LANGADM['AdminTaxRulesGroupf68dcf7d584da9d196b2c59ac19827e7'] = 'Apply county tax only'; $_LANGADM['AdminTaxRulesGroup7475ec0d41372a307c497acb7eeea8c4'] = 'No Tax'; $_LANGADM['AdminTaxRulesGroup38fb7d24e0d60a048f540ecb18e13376'] = ' Save '; $_LANGADM['AdminTaxesb718adec73e04ce3ec720dd11a06a308'] = 'ID'; $_LANGADM['AdminTaxes49ee3087348e8d44e1feda1917443987'] = 'Name'; $_LANGADM['AdminTaxesdcb66ff6e4a2517ade22183779939c9d'] = 'Rate'; $_LANGADM['AdminTaxes00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Enabled'; +$_LANGADM['AdminTaxes5f7d9a7f76dba4bc86062ea848255f2f'] = 'If you disable the ecotax, the ecotax for all your products will be set to 0'; $_LANGADM['AdminTaxes1c669d037f8bc785f0e1a9aeb7070367'] = 'Tax options'; $_LANGADM['AdminTaxes50068b9a709a0e2da6f25210de57bb85'] = 'Enable tax:'; $_LANGADM['AdminTaxes7c9ad104937545220eb5ac67fb1ee9d9'] = 'Select whether or not to include tax on purchases'; @@ -2700,29 +2840,30 @@ $_LANGADM['AdminTaxese8cce94acc56227d96f94315fc5c0553'] = 'Select whether or not $_LANGADM['AdminTaxes6c480608ed6896b113dd2381d2a7512c'] = 'Base on:'; $_LANGADM['AdminTaxes886dc40a9367328f942e6bf6c31f3ebb'] = 'Invoice Address'; $_LANGADM['AdminTaxes2f2f0f119a907c6c67a3c6fcde0193ab'] = 'Delivery Address'; +$_LANGADM['AdminTaxes8e4157c726a8c5cf64361e2d751bc945'] = 'Use ecotax'; $_LANGADM['AdminTaxes4e00e39db9994b6baeea51eaf66399d1'] = 'Ecotax:'; $_LANGADM['AdminTaxes9010d6744cf8eada0c221b2d31be15a5'] = 'The tax to apply on the ecotax (e.g., French ecotax: 19.6%).'; $_LANGADM['AdminTaxes719fec04166d6fa75f89cd29ad61fa8c'] = 'Taxes'; $_LANGADM['AdminTaxes4e140ba723a03baa6948340bf90e2ef6'] = 'Name:'; $_LANGADM['AdminTaxes6252c0f2c2ed83b7b06dfca86d4650bb'] = 'Invalid characters:'; -$_LANGADM['AdminTaxesf444460da40424231f40202fc5de2507'] = 'Tax name to display in cart and on invoice, e.g., VAT'; +$_LANGADM['AdminTaxesf444460da40424231f40202fc5de2507'] = 'Tax name to display in cart and on invoice, e.g. VAT'; $_LANGADM['AdminTaxes9f75452921af0033334512428e29900e'] = 'Rate:'; -$_LANGADM['AdminTaxes211b840946f6b36e303291b1fe2bdb77'] = 'Format: XX.XX or XX.XXX (e.g., 19.60 or 13.925)'; +$_LANGADM['AdminTaxes211b840946f6b36e303291b1fe2bdb77'] = 'Format: XX.XX or XX.XXX (e.g. 19.60 or 13.925)'; $_LANGADM['AdminTaxes0099c0173a3c7758b36025bdae9b4fc7'] = 'Enable:'; $_LANGADM['AdminTaxesb9f5c797ebbf55adccdd8539a65a0241'] = 'Disabled'; $_LANGADM['AdminTaxes38fb7d24e0d60a048f540ecb18e13376'] = ' Save '; $_LANGADM['AdminTaxes19f823c6453c2b1ffd09cb715214813d'] = 'Required field'; $_LANGADM['AdminTaxesf2a6c498fb90ee345d997f888fce3b18'] = 'Delete'; $_LANGADM['AdminTaxes0071aa279bd1583754a544277740f047'] = 'Delete item #'; -$_LANGADM['AdminTaxes8a9b8ee83e347d62ff34dd235e97dcc3'] = 'This tax is currently in use in a tax rule. Are you sure?'; -$_LANGADM['AdminTaxes6b1f6081d484b3728b5d3637ea44f14c'] = 'This tax is currently in use in a tax rule. If you continue this tax will be removed from the tax rule, are you sure?'; +$_LANGADM['AdminTaxes8a9b8ee83e347d62ff34dd235e97dcc3'] = 'This tax is currently in use in a tax rule. Are you sure you would like to continue?'; +$_LANGADM['AdminTaxes6b1f6081d484b3728b5d3637ea44f14c'] = 'This tax is currently in use in a tax rule. If you continue this tax will be removed from the tax rule. Are you sure you would like to continue?'; $_LANGADM['AdminThemesa1c58e94227389415de133efdf78ea6e'] = 'Appearance'; $_LANGADM['AdminThemes231856676246820203ddc442e481a5eb'] = 'Header logo:'; $_LANGADM['AdminThemes86824265d3f2908928a0b5689ab9541d'] = 'Will appear on main page'; $_LANGADM['AdminThemes1b6dc1e488d9e5eba634c526cb8790f0'] = 'Mail logo:'; -$_LANGADM['AdminThemes6fa998a451d52f8bac2ca4b6cbde0c76'] = 'Will appear on e-mail headers, if undefined the Header logo will be used'; +$_LANGADM['AdminThemes6fa998a451d52f8bac2ca4b6cbde0c76'] = 'Will appear on e-mail headers. If undefined, the Header logo will be used'; $_LANGADM['AdminThemesaa94cba2130d7cdc43dd02920183bad1'] = 'Invoice logo:'; -$_LANGADM['AdminThemes788facf04ad732f605ca6f9fd5d43c6f'] = 'Will appear on invoices headers, if undefined the Header logo will be used'; +$_LANGADM['AdminThemes788facf04ad732f605ca6f9fd5d43c6f'] = 'Will appear on invoice headers. If undefined, the Header logo will be used'; $_LANGADM['AdminThemes166e58184f5f3e344a4f1741a4716c05'] = 'Favicon:'; $_LANGADM['AdminThemes9cafe07932ca5f6ed588a5852e36af8d'] = 'Will appear in the address bar of your web browser'; $_LANGADM['AdminThemes413dc5af3ee0d6d59cd83c80e91e07a7'] = 'Store icon:'; @@ -2734,7 +2875,7 @@ $_LANGADM['AdminThemesbbb572a770006c9e0e57c9e5d4bcda90'] = 'Live from PrestaShop $_LANGADM['AdminThemes0ac3a6bb56ca9b829859b5c12040e3a0'] = 'Find new themes on PrestaShop Addons!'; $_LANGADM['AdminTools442824e37ecd2fe5b938869e10e85d79'] = 'Shop Tools'; $_LANGADM['AdminToolsfd35692a2d43d6ee7b7417e7e4fe40d4'] = 'Several tools are available to manage your shop.'; -$_LANGADM['AdminToolsbae42c77a464b87efd72350dfa7c3a93'] = 'Please choose a tool by selecting a Tools sub-tab above.'; +$_LANGADM['AdminToolsbae42c77a464b87efd72350dfa7c3a93'] = 'Please choose a tool by selecting the \"Tools\" sub-tab above.'; $_LANGADM['AdminTrackinge53d0648d344037610407a88c1389ca1'] = 'Catalog tracking'; $_LANGADM['AdminTracking428a70e43c5371126c0fb675e98c61d5'] = 'List of empty categories:'; $_LANGADM['AdminTracking1679821fd0e65d65924aa77e56068814'] = 'List of disabled products:'; @@ -2756,13 +2897,13 @@ $_LANGADM['AdminTrackingdcc4db89d62ec3e757428a5811553c0b'] = 'Do you want to del $_LANGADM['AdminTracking0449f210068787074ce58175b1a2f5cf'] = 'Delete this product'; $_LANGADM['AdminTranslations91aaf01cad2d0dc0382edb323ed6e51a'] = 'Cannot create the folder'; $_LANGADM['AdminTranslations1a80fb0a74eed828b2693f30e830a237'] = 'Check directory writing permisions.'; -$_LANGADM['AdminTranslationsd797353e4c5b71edce10d34557198b81'] = 'you must select 2 languages in order to copy data from one to another'; -$_LANGADM['AdminTranslationsf31ffb564b1c234d509f4b20fbb2d068'] = 'you must select 2 themes in order to copy data from one to another'; -$_LANGADM['AdminTranslationsb0f0554e563b8ffcabe170739d126bb1'] = 'an error occurred while copying data'; -$_LANGADM['AdminTranslationsa90e087a3690a15b0c7e0f5b832b5ee8'] = 'nothing to copy! (same language and theme)'; -$_LANGADM['AdminTranslations4db37ab93548f8b7e47faebe8a5c397a'] = 'a part of the data has been copied but some language files could not be found or copied'; +$_LANGADM['AdminTranslationsd797353e4c5b71edce10d34557198b81'] = 'You must select 2 languages in order to copy data from one to another'; +$_LANGADM['AdminTranslationsf31ffb564b1c234d509f4b20fbb2d068'] = 'You must select 2 themes in order to copy data from one to another'; +$_LANGADM['AdminTranslationsb0f0554e563b8ffcabe170739d126bb1'] = 'An error occurred while copying data'; +$_LANGADM['AdminTranslationsa90e087a3690a15b0c7e0f5b832b5ee8'] = 'Nothing to copy! (same language and theme)'; +$_LANGADM['AdminTranslations4db37ab93548f8b7e47faebe8a5c397a'] = 'A part of the data has been copied but some language files could not be found or copied'; $_LANGADM['AdminTranslationsbbed16dd7d31f28047ab8237cb424888'] = 'Cannot write the theme\'s language file '; -$_LANGADM['AdminTranslationsd981715c425b3efa67098bdbb3871866'] = '. Please check write permissions.'; +$_LANGADM['AdminTranslationsd981715c425b3efa67098bdbb3871866'] = 'Please check write permissions.'; $_LANGADM['AdminTranslationseeafac73c8b9aade3a0baa5c4f371d69'] = 'Front Office translations'; $_LANGADM['AdminTranslations8a4e2d14aa85ccb1aced124f8d793708'] = 'Back Office translations'; $_LANGADM['AdminTranslations0c51ba6f28d50bdad074f18dbebe275d'] = 'Error message translations'; @@ -2771,14 +2912,21 @@ $_LANGADM['AdminTranslations1db04255ad87f7fe6d5bc91c74982612'] = 'Module transla $_LANGADM['AdminTranslations8f2a5434bb1c382919249941c915b5e3'] = 'PDF translations'; $_LANGADM['AdminTranslations693fe609a9e3f79343ab35da56fb5eed'] = 'E-mail template translations'; $_LANGADM['AdminTranslations2303c057afcbe798a5d9811d36e88050'] = 'Modify translations'; -$_LANGADM['AdminTranslations623b1500ccce270f2c5b7ac787ddf05a'] = 'Here you can modify translations for all text input into PrestaShop.'; +$_LANGADM['AdminTranslations623b1500ccce270f2c5b7ac787ddf05a'] = 'Here you can modify translations for all text input in PrestaShop.'; $_LANGADM['AdminTranslations404b4271ee96d691668bdf528724d337'] = 'First, select a section (such as Back Office or Modules), then click the flag representing the language you want to edit.'; $_LANGADM['AdminTranslations2e8d630dcde90b8b5be0468678f88551'] = 'Translation exchange'; +$_LANGADM['AdminTranslations763d71969e7ee9bff4e5dc8976501f33'] = 'Add / Update a language'; +$_LANGADM['AdminTranslationsd8f73c2c197bf664e07849db8cff86d8'] = 'You can add or update a language directly from prestashop.com here'; +$_LANGADM['AdminTranslations1179204cea308156c142ca4f2e03f5ac'] = 'If you choose to update an existing language pack, all your previous customization in the theme named prestashop will be lost. This includes front office expressions and default e-mail templates.'; +$_LANGADM['AdminTranslations4cfef51ba8ab14fc4de1439f1ed1e430'] = 'Language you want to add or update:'; $_LANGADM['AdminTranslations369b8db3e9651d0b5d8a13a5f7f9a53a'] = 'Add a language'; -$_LANGADM['AdminTranslationse1d8f264ad68caa3ced0b12042f3e62e'] = 'Cannot connect to prestashop.com to get languages list.'; +$_LANGADM['AdminTranslations57fa5be19cbdbe09aa4f555b2ee710b3'] = 'Update a language'; +$_LANGADM['AdminTranslations65ca1bc61335cf91a2d347a91629ba60'] = 'Add or update a language'; +$_LANGADM['AdminTranslationse1d8f264ad68caa3ced0b12042f3e62e'] = 'Cannot connect to prestashop.com to get language list.'; $_LANGADM['AdminTranslationsa9b6eaa5ff754aa46d30f5547a0edbf2'] = 'Import a language pack manually'; $_LANGADM['AdminTranslations838d2daba220546d9a27ad1fca0a05c7'] = 'If the name format is: isocode.gzip (e.g. fr.gzip) and the language corresponding to this package does not exist, it will automatically be created.'; -$_LANGADM['AdminTranslations8d9c80f27ea00759d8469a7aca29ee1b'] = 'Be careful, as it will replace all existing data for the destination language!'; +$_LANGADM['AdminTranslations8d9c80f27ea00759d8469a7aca29ee1b'] = 'Be careful, as this will replace all existing data for the destination language!'; +$_LANGADM['AdminTranslationsdc270a086ec1b0304c86591f402ade8d'] = 'Language pack to import:'; $_LANGADM['AdminTranslations72d6d7a1885885bb55a565fd1070581a'] = 'Import'; $_LANGADM['AdminTranslations6700e23ddf33bd4421249c9ef94d6295'] = 'Export a language'; $_LANGADM['AdminTranslationsa577e13cac9ee85d6f298e0a8deffeee'] = 'Export data from one language to a file (language pack).'; @@ -2798,8 +2946,13 @@ $_LANGADM['AdminTranslations3b54d45d2c221c50e916f3be1fc12f2a'] = 'Update transla $_LANGADM['AdminTranslationsa03365570c1c73391cb62cf9330957da'] = 'Update and stay'; $_LANGADM['AdminTranslationsd4400e655d04c51fa5cfed66e1325b92'] = 'Translate with Google (experimental)'; $_LANGADM['AdminTranslations24995bf641e65d70246d77d013e1dbeb'] = 'this language is not available on Google Translate API'; -$_LANGADM['AdminTranslationsf93c49bc4a04bbcbcb950a0740117d10'] = 'Google translate suggests :'; +$_LANGADM['AdminTranslationsf93c49bc4a04bbcbcb950a0740117d10'] = 'Google Translate suggests :'; +$_LANGADM['AdminTranslations521ade85487f9f4fc04fa6549cb2ff79'] = 'Warning, your hosting provider is using the suhosin patch for PHP, which limits the maximum number of fields to post in a form:'; +$_LANGADM['AdminTranslations9df9f71b2fc62b0ce48cbb8cb5671ee6'] = 'for suhosin.post.max_vars.'; +$_LANGADM['AdminTranslations961e2bc7e3f570a3209546330de84a00'] = 'for suhosin.request.max_vars.'; +$_LANGADM['AdminTranslations7454cc60021492205337c5cbce85df1e'] = 'Please ask your hosting provider to increase the suhosin post and request limit to'; $_LANGADM['AdminTranslations5751b8042fbb1783ff37d9afe0e3ccc4'] = 'at least.'; +$_LANGADM['AdminTranslations3b11ccd743db51cfe243c6fd122a1740'] = 'or edit the translation file manually.'; $_LANGADM['AdminTranslationsa98d4e0c14db7364bbf15e4d94c878ac'] = 'Empty string found, please edit:'; $_LANGADM['AdminTranslations4994a8ffeba4ac3140beb89e8d41f174'] = 'Language'; $_LANGADM['AdminTranslations88c0a9c6846ba06702a67bdedc3e9ebb'] = 'Front-Office translations'; @@ -2815,24 +2968,185 @@ $_LANGADM['AdminTranslations4a4ec3855ac2f9f99d29088b6cc914a1'] = 'Fields to tran $_LANGADM['AdminTranslationsd05b6ed7d2345020440df396d6da7f73'] = 'fields'; $_LANGADM['AdminTranslations7f34f2676cea244eff88e272f03a6e03'] = 'missing translation(s) on %s template(s) for %s'; $_LANGADM['AdminTranslationsb3cb7b15aa2fb2cb6675414233a3aa1b'] = 'Subject for %s:'; +$_LANGADM['AdminTranslationsc06a778aeea1249390e1e61d4772e96d'] = 'No Subject was found for %s, or subject is generated in database.'; $_LANGADM['AdminTranslations078deac9ee43d3b13c460c4fd069b925'] = 'There is a problem getting the Mail files.'; $_LANGADM['AdminTranslationsd2298f4722b53d97039abbe9d1c11a44'] = 'Please ensure that English files exist in %s folder'; $_LANGADM['AdminTranslations98ef80a9c71c74e06e1e185dff22a5d3'] = '\"title\" tag:'; $_LANGADM['AdminTranslations7084cbcddaa2af4a713a1727727b86f8'] = 'Core e-mails:'; $_LANGADM['AdminTranslations217ee9d15130fbaa142f0cf7fd4d8643'] = 'Core e-mails'; -$_LANGADM['AdminTranslationse60137f6e7d94e9c4e5dceb4e9d0c552'] = 'Modules e-mails:'; +$_LANGADM['AdminTranslationse60137f6e7d94e9c4e5dceb4e9d0c552'] = 'Module e-mails:'; $_LANGADM['AdminTranslationsd946d62db22cb9f9323968f8aac95e3f'] = 'E-mails for %s module'; -$_LANGADM['AdminTranslations25b5edb5545ada0f1b14e96fa8cd8743'] = 'Themes e-mails:'; -$_LANGADM['AdminTranslations46e89640babbc6a0e52599a92a6c13b4'] = 'e-mails'; -$_LANGADM['AdminTranslations5ded3a65f6bb72028722f9d904ffb3cc'] = 'E-mails modules in theme:'; +$_LANGADM['AdminTranslations25b5edb5545ada0f1b14e96fa8cd8743'] = 'Theme e-mails:'; +$_LANGADM['AdminTranslations46e89640babbc6a0e52599a92a6c13b4'] = 'E-mails'; +$_LANGADM['AdminTranslations5ded3a65f6bb72028722f9d904ffb3cc'] = 'E-mail modules in theme:'; +$_LANGADM['AdminTranslations338ff312cb917883ec15e66638f5e05f'] = 'Subject mail translation file not found in'; $_LANGADM['AdminTranslationsc85106cf29f5fa8c8b8e73dc916e37cd'] = 'Cannot write language file for e-mail subjects, path is:'; -$_LANGADM['AdminTranslations8a09d048735283dbc609ba0f9f705ed1'] = 'Modules translations'; +$_LANGADM['AdminTranslations8a09d048735283dbc609ba0f9f705ed1'] = 'Module translations'; $_LANGADM['AdminTranslations52d83d7ed502b33d300a8c0af2c5b455'] = 'List of Themes - Click to access theme translation:'; $_LANGADM['AdminTranslationsc21f969b5f03d33d43e04f8f136e7682'] = 'default'; $_LANGADM['AdminTranslationsa9e4402481bd9b8e36752bf731f67eb6'] = 'Theme:'; $_LANGADM['AdminTranslations53b3cae42737979c884275593a01f468'] = 'Module:'; +$_LANGADM['AdminUpgrade875b8a59022d232837491c0fdfacb4ab'] = 'Don\'t save images'; +$_LANGADM['AdminUpgradea8d6c6734da0083021561b23f2fa88cc'] = 'You can exclude the image directory from backup if you have already saved it using another method (not recommended)'; +$_LANGADM['AdminUpgradeaf98608eaedd4ba7ffd47a0204e84b23'] = 'Keep \"prestashop\" theme'; +$_LANGADM['AdminUpgrade4ea56ca1a757e426911ff20889c0e93c'] = 'If you have customized the PrestaShop default theme, you can protect it from upgrades (not recommended)'; +$_LANGADM['AdminUpgrade8413c63a6ef3717a974094785fd0b588'] = 'Keep translations'; +$_LANGADM['AdminUpgrade51bbcf7afb0f8d35501d0a7b28979b06'] = 'If set to yes, you will keep all your translations'; +$_LANGADM['AdminUpgrade8c8194a465f0163a6724907755ac1b82'] = 'Manual mode'; +$_LANGADM['AdminUpgradedd9dbd4916653d683244119a067ca467'] = 'Check this if you want to stop after each step'; +$_LANGADM['AdminUpgradee7b6d601ff4e9069e726927e211274ea'] = 'Use Subversion'; +$_LANGADM['AdminUpgradea15b09729294cf7fea1096f970a0fed4'] = 'check this if you want to use unstable SVN instead of official release'; +$_LANGADM['AdminUpgrade36be1130454bc8c4e0a41d36fa062a8b'] = 'unable to create directory %s'; +$_LANGADM['AdminUpgradee21a52b9631b01c3f1821795b8de451c'] = 'Upgrade process done. Congratulations! You can now reactivate your shop.'; +$_LANGADM['AdminUpgrade7b2f224649ef2ad10a2d73595d67a876'] = 'Starting upgrade...'; +$_LANGADM['AdminUpgrade6824d57b7af37f605bd97d34defc3761'] = 'SVN export complete. Removing sample files...'; +$_LANGADM['AdminUpgradef70307d8297e48a8783d41e6f3313d51'] = 'Error with SVN export'; +$_LANGADM['AdminUpgrade4eecd9c195e46c054ef7da6d9d1a738b'] = 'Extract complete. Removing sample files...'; +$_LANGADM['AdminUpgrade0929f38eaac3ca38801f08b7269574e0'] = 'Unable to extract %1$s into %2$s...'; +$_LANGADM['AdminUpgrade6b2d0404b7faba0e791e15a52586a149'] = 'Switching to SVN checkout (useSvn set to true)'; +$_LANGADM['AdminUpgradef0e38ac0c558a7f216ae98382b9e58f5'] = 'Shop deactivated. Now downloading (this may take some time)...'; +$_LANGADM['AdminUpgrade4f7c02592a962e40a920f32f3a24f2df'] = 'filesToUpgrade is not an array'; +$_LANGADM['AdminUpgrade3f10faa8b44a7175ae8fc5dcb8dec5de'] = 'All files upgraded. Now upgrading database'; +$_LANGADM['AdminUpgrade1ad932e3b85eb2907a817cd3e3e6907e'] = 'Error when trying to upgrade %s'; +$_LANGADM['AdminUpgrade078a325fbcc1dbd50bd9f969ce954965'] = '%2$s files left to upgrade.'; +$_LANGADM['AdminUpgrade62740df131433ec9d45bf1810eefb19b'] = 'Error during Db upgrade'; +$_LANGADM['AdminUpgrade9a2f2cf276ea9f79b31a815897c0e3e6'] = '%s ignored'; +$_LANGADM['AdminUpgrade63ded4905ba41ac4bf00373df2739576'] = 'Created dir %2$s. %3$s files left to upgrade.'; +$_LANGADM['AdminUpgrade11978affb3b0dbb16c50d571fd05de6d'] = 'Error when creating directory %s'; +$_LANGADM['AdminUpgrade1b854285afc1988b6f83414fde5943ab'] = 'Copied %1$s in %2$s. %3$s files left to upgrade.'; +$_LANGADM['AdminUpgrade0e06ce0972ad338e1d96e8589dc21b9c'] = 'Error for copy %1$s in %2$s'; +$_LANGADM['AdminUpgrade0511620a3a1d6036d3fbe47b131d7c4b'] = 'Files restored, now restoring database.'; +$_LANGADM['AdminUpgrade791403f158965a3e19f8627c7b744126'] = 'Database restored'; +$_LANGADM['AdminUpgrade5f7f50973696d0a42c1efcc07f7820a0'] = 'Your site has been restored...'; +$_LANGADM['AdminUpgrade28517b8a291c50d80aa53a078407065b'] = 'Root directory cleaned.'; +$_LANGADM['AdminUpgradebb71892737d721949538d6e1c4d3d22d'] = 'Files restored. No database backup found. Restoration complete.'; +$_LANGADM['AdminUpgradecb7dce5f6a1934d54c0d3335c7ffe841'] = 'Files restored.'; +$_LANGADM['AdminUpgrade8efc36d230f76fbfd9e4d758964e9414'] = 'Unable to extract $1$s into %2$s.'; +$_LANGADM['AdminUpgraded7624db09c15d46cd37d7709ae05e44b'] = 'No known backup. Nothing to restore.'; +$_LANGADM['AdminUpgrade09a362e2dd3800f8fbc55d3446513f65'] = 'Nothing to restore (no request found).'; +$_LANGADM['AdminUpgrade66c4cbfb21f294b233692b67356db647'] = 'Database backup done in %s. Now updating files.'; +$_LANGADM['AdminUpgrade48f95ff09327408a578e91655ed872a1'] = '%s Files to backup.'; +$_LANGADM['AdminUpgrade70960f2aa87d307170d3a1bc3e06d904'] = 'Backup files initialized in %s.'; +$_LANGADM['AdminUpgrade8cf728d701c50a59ef78b7c55fc27cd4'] = 'Backup files in progress. %s files left.'; +$_LANGADM['AdminUpgrade15b353ca964fe816547e67e1508ff85d'] = 'All files saved. Now backing up database.'; +$_LANGADM['AdminUpgradea25c4f085558c5f6e519e56257af531f'] = 'All files have been added to archive.'; +$_LANGADM['AdminUpgrade91f805cf850500bda66426aea042602f'] = '%1$s added to archive. %2$s left.'; +$_LANGADM['AdminUpgradef79479c0de75d568def0afdc1e5de04e'] = 'Error when trying to add %1$s to archive %2$s.'; +$_LANGADM['AdminUpgradeb9a2db69065827812dd4b7a7f9ffc0b1'] = 'Enable to open archive'; +$_LANGADM['AdminUpgrade2589a25910cd3d7fab7e45361c4cb39d'] = '%1$s removed. %2$s items left.'; +$_LANGADM['AdminUpgraded82eef1ba081c54686767c555670c0fe'] = 'Error when removing %1$s, %2$s items left.'; +$_LANGADM['AdminUpgrade344c592d141604c614c219fad3fa0dae'] = 'Starting to remove %1$s sample files.'; +$_LANGADM['AdminUpgrade0baf8c94d1d03d1621c17cd6eabf7b9f'] = 'All sample files removed. Now backup files.'; +$_LANGADM['AdminUpgrade84e31682487d5a0937f9184ebcf594ba'] = 'Working copy already %s up-to-date. Now exporting it into latest directory.'; +$_LANGADM['AdminUpgrade762ab46f0b1e4eae1526ca7d637926f3'] = 'SVN Update done for working copy %s. Now exporting it into latest...'; +$_LANGADM['AdminUpgradedcefd261c0dea53fdb159b218503009e'] = 'SVN Checkout done from %s. Now exporting it into latest...'; +$_LANGADM['AdminUpgrade8f4c8c87daa3bc0311cfb61b7d36e27b'] = 'SVN Checkout error.'; +$_LANGADM['AdminUpgrade0e81132066d433d212e237678e1193a3'] = 'Not allowed to use SVN.'; +$_LANGADM['AdminUpgradeb0d51f91a1118b7c39ee1835cc6c926a'] = 'Download complete. Now extracting...'; +$_LANGADM['AdminUpgrade0c0db54fe8212c1a7215005fef75d7dd'] = 'Error during download.'; +$_LANGADM['AdminUpgrade93120c07d8c5cee44042627cd493e0e0'] = 'You need allow_url_fopen for automatic download. You can also manually upload it in %s.'; +$_LANGADM['AdminUpgrade3bb38e7d0bfd5a02f7c06cae446fee86'] = 'Action %s skipped.'; +$_LANGADM['AdminUpgradeb4302e98d94591ee9afa09e769b2ee63'] = 'Action \"%1$s\" not found.'; +$_LANGADM['AdminUpgrade19f823c6453c2b1ffd09cb715214813d'] = 'Required field'; +$_LANGADM['AdminUpgrade760c4026bc5a0bd5378e6efc3f1370b4'] = 'Too long!'; +$_LANGADM['AdminUpgrade4f2e28904946a09d8c7f36dd3ee72457'] = 'Fields are different!'; +$_LANGADM['AdminUpgrade43b01d1a6c5065545c65f42003b0ab5c'] = 'This email adress is wrong!'; +$_LANGADM['AdminUpgrade2e170dfd78c2171a25605ececc0950a4'] = 'Impossible to send the email!'; +$_LANGADM['AdminUpgrade6deee80e4bdb8894331994116818558e'] = 'Cannot create settings file. If /config/settings.inc.php exists, please give this file public write permissions, or create a file named settings.inc.php in config directory.'; +$_LANGADM['AdminUpgradeaa946cb00b1c23ff6553b6f9e05da151'] = 'Cannot write settings file, please create a file named settings.inc.php in config directory.'; +$_LANGADM['AdminUpgradee930e2474c664a3a7e89ecfb8793694b'] = 'Cannot upload the file!'; +$_LANGADM['AdminUpgrade774fc7a0f56391abc5d8856f2436ca07'] = 'Data integrity is not valided. Hack attempt?'; +$_LANGADM['AdminUpgrade8fd007bf08e0717537825a3e91cb4fcc'] = 'Impossible to read the content of a MySQL content file.'; +$_LANGADM['AdminUpgradec71e825f6873f64b91efc26313614eab'] = 'Impossible the access the a MySQL content file.'; +$_LANGADM['AdminUpgrade3d5c8f1d29b1a1dc4ea0673122e0d277'] = 'Error while inserting data in the database:'; +$_LANGADM['AdminUpgrade17e1581d01152347bfaacd153b961379'] = 'The password is incorrect (alphanumeric string of at least 8 characters).'; +$_LANGADM['AdminUpgrade9b9f3b2f8a4dffcad9188c8fc4b468c8'] = 'A Prestashop database already exists, please drop it or change the prefix.'; +$_LANGADM['AdminUpgradebc5e1163a15106f9e941a7603124709d'] = 'This is not a valid file name.'; +$_LANGADM['AdminUpgradea9d82945b8603f0c8807958d7db9a24d'] = 'This is not a valid image file.'; +$_LANGADM['AdminUpgradeb37eef07b764ea58eec9afe624e20a40'] = 'Error while creating the /config/settings.inc.php file.'; +$_LANGADM['AdminUpgrade3d9f514d46849760ef1b1412e314fd99'] = 'Error:'; +$_LANGADM['AdminUpgrade504053ab4c6d648edf11624f1bea4bb4'] = 'This PrestaShop database already exists. Please revalidate your authentication informations to the database.'; +$_LANGADM['AdminUpgraded7a99f61bb284d096ea4f221784af85a'] = 'An error occurred while resizing the picture.'; +$_LANGADM['AdminUpgrade428c933bafbf262d693fbf1c22c03e5d'] = 'Database connection is available!'; +$_LANGADM['AdminUpgrade76bd190129b7aefb90fdf42f09ec3ec7'] = 'Database Server is available but database is not found.'; +$_LANGADM['AdminUpgrade045f4b5c3f990e5a26e2837495d68259'] = 'Database Server is not found. Please verify the login, password and server fields.'; +$_LANGADM['AdminUpgrade757fc72e8d69106dd2cf9da22cc7adb1'] = 'An error occurred while sending e-mail, please verify your parameters.'; +$_LANGADM['AdminUpgraded18ad19290b3bfc3cd0d7badbb6cb6a3'] = 'Impossible to write the image /img/logo.jpg. If this image already exists, please delete it.'; +$_LANGADM['AdminUpgrade2368e33e3e01d53abb9b60061ab83903'] = 'The uploaded file exceeds the upload_max_filesize directive in php.ini'; +$_LANGADM['AdminUpgradea10ef376d9f4c877ac86d8e4350116bf'] = 'The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form'; +$_LANGADM['AdminUpgradef8fe8cba1625eaf8e5c253b041d57dbd'] = 'The uploaded file was only partially uploaded'; +$_LANGADM['AdminUpgrade8c9067e52e4440d8a20e74fdc745b0c6'] = 'No file was uploaded.'; +$_LANGADM['AdminUpgrade2384d693d9af53b4727c092af7570a19'] = 'Missing a temporary folder'; +$_LANGADM['AdminUpgradef5985b2c059d5cc36968baab7585baba'] = 'Failed to write file to disk'; +$_LANGADM['AdminUpgrade9e54dfe54e03b0010c1fe70bd65cd5e6'] = 'File upload stopped by extension'; +$_LANGADM['AdminUpgrade32af3a59b50e98d254d6c03c5b320a94'] = 'Cannot convert your database\'s data to utf-8.'; +$_LANGADM['AdminUpgrade989a45a4ca01ee222f4370172bf8850d'] = 'Invalid shop name.'; +$_LANGADM['AdminUpgrade68499acecfba9d3bf0ca8711f300d3ed'] = 'Your first name contains some invalid characters'; +$_LANGADM['AdminUpgrade2399cf4ca7b49f2706f6e147a32efa78'] = 'Your last name contains some invalid characters'; +$_LANGADM['AdminUpgrade7d72600fcff52fb3a2d2f73572117311'] = 'Your database server does not support the utf-8 charset.'; +$_LANGADM['AdminUpgrade5b9bbadcf96f15e7f112c13a9e5f076e'] = 'Your MySQL server doesn\'t support this engine, please use another one like MyISAM'; +$_LANGADM['AdminUpgrade24b481455c1b72b0c2539e7d516b9582'] = 'The file /img/logo.jpg is not writable, please CHMOD 755 this file or CHMOD 777'; +$_LANGADM['AdminUpgrade5746b74663148afffd1350c97d4fcdfe'] = 'Invalid catalog mode'; +$_LANGADM['AdminUpgrade9e5459c4deb20b7842ac01e97390b334'] = 'No error code available'; +$_LANGADM['AdminUpgradedafe44b99256a7783bc37f4f949da373'] = 'This installer is too old.'; +$_LANGADM['AdminUpgrade37ce0f29c7377c827e7247fe5645a782'] = 'You already have the %s version.'; +$_LANGADM['AdminUpgrade89928a14f2090aec4fd7aff9ea983f95'] = 'There is no older version. Did you delete or rename the config/settings.inc.php file?'; +$_LANGADM['AdminUpgrade5276a8cbd9e3e467396089b267564f51'] = 'The config/settings.inc.php file was not found. Did you delete or rename this file?'; +$_LANGADM['AdminUpgrade24784d9e80638781b74c017b33d8ca0c'] = 'Can\'t find the sql upgrade files. Please verify that the /install/sql/upgrade folder is not empty)'; +$_LANGADM['AdminUpgrade580e4b216e324f675f0237cdb34b6c2d'] = 'No upgrade is possible.'; +$_LANGADM['AdminUpgradef15e7e7292b0c72894cf45a893e0d497'] = 'Error while loading sql upgrade file.'; +$_LANGADM['AdminUpgradeb8286438fbb6c7df9129fadc5316c19f'] = 'Error while inserting content into the database'; +$_LANGADM['AdminUpgrade229ee8046cafc09ddaf46fb9db710e91'] = 'Unfortunately,'; +$_LANGADM['AdminUpgradee805a556799b7cef40e9760c81d99218'] = 'SQL errors have occurred.'; +$_LANGADM['AdminUpgrade5627353fd6ac678497af3ece05087068'] = 'The config/defines.inc.php file was not found. Did you move it?'; +$_LANGADM['AdminUpgrade446c9e952debe114c86bbd9e5eea7d61'] = 'Rollback'; +$_LANGADM['AdminUpgrade4879913b16fa23f723f70a5067bda8d4'] = 'No rollback available'; +$_LANGADM['AdminUpgradefff66e9b3d962fa319c8068b5c1997cd'] = 'rollback'; +$_LANGADM['AdminUpgradeebdabc2d40aa563aabbb3ee57915a7a9'] = 'click to restore %s'; +$_LANGADM['AdminUpgradee9c57c7fbc335e66282a32617b01b9be'] = 'Your current configuration'; +$_LANGADM['AdminUpgrade2fc4ab825ce2ce9476e8a1c2211ac9b8'] = 'Root directory'; +$_LANGADM['AdminUpgrade8786f48d9cf9618cd2f5c37312ab7e50'] = 'Root directory status'; +$_LANGADM['AdminUpgraded16d80ca66261afba43f5736f6cec7e6'] = 'fully writable'; +$_LANGADM['AdminUpgrade039552aa1d74b68f01a73821f3078158'] = 'not writable recursively'; +$_LANGADM['AdminUpgrade31a962ffeb06a6cc6d58ef3ba5fae2b7'] = 'Autoupgrade allowed'; +$_LANGADM['AdminUpgrade9c30a74657158984997cca4930d6075b'] = 'This release allow autoupgrade.'; +$_LANGADM['AdminUpgradeaf566be1636d11ecc8ddb728a15520b8'] = 'This release does not allow autoupgrade'; +$_LANGADM['AdminUpgrade4d3d769b812b6faa6b76e1a8abaece2d'] = 'Active'; +$_LANGADM['AdminUpgrade3cab03c00dbd11bc3569afa0748013f0'] = 'Inactive'; +$_LANGADM['AdminUpgradeb2e1c91a22797b8d78f9c4adb01a8f17'] = 'Shop status'; +$_LANGADM['AdminUpgrade94af5df6182efd3591d0ccccaa04bd5c'] = 'PHP time limit'; +$_LANGADM['AdminUpgrade075ae3d2fc31640504f814f60e5ef713'] = 'disabled'; +$_LANGADM['AdminUpgrade783e8e29e6a8c3e22baa58a19420eb4f'] = 'seconds'; +$_LANGADM['AdminUpgrade0855d08a7348a201e2fdc454c4ee42a0'] = 'writable recursively'; +$_LANGADM['AdminUpgrade342299aeb786a06533ba00d9a04794dd'] = 'Modify your options'; +$_LANGADM['AdminUpgrade06933067aafd48425d67bcb01bba5cb6'] = 'Update'; +$_LANGADM['AdminUpgrade5d8b77b69c92370ec4e175a638019ca7'] = 'Your current prestashop version : %s'; +$_LANGADM['AdminUpgrade80e3d093272bc011b6bc661e408c7423'] = 'Last version is %1$s (%2$s)'; +$_LANGADM['AdminUpgradeb47ba7568788e46dbc7fe81e525db863'] = 'Latest Prestashop version available is:'; +$_LANGADM['AdminUpgradec97dcfb0df6daa46292a0def8a567822'] = 'Backup Database, backup files and update right now and in one click!'; +$_LANGADM['AdminUpgradea60ab62ed99ef0358b2efae592be0cdd'] = 'Upgrade PrestaShop now !'; +$_LANGADM['AdminUpgrade943f41a7241dc56c3fbc488f015a4e6a'] = 'Your shop is already up to date'; +$_LANGADM['AdminUpgrade48c7c41b72e1d678923ce3571aa65b2d'] = 'Step'; +$_LANGADM['AdminUpgradeeeb5a49c38d2d8c2baa51ed09beccf88'] = 'Upgrade steps'; +$_LANGADM['AdminUpgradec5d769685704e7ddcd70e74a6ebe50b7'] = 'Your current configuration does not allow upgrades.'; +$_LANGADM['AdminUpgradef275292b23fc43cfeb87647de9116cd5'] = 'New upgrade module'; +$_LANGADM['AdminUpgradea441b27eb6217a5a2b35a81c6402d6c0'] = 'The tab AdminUpgrade present in 1.4.4.0 and 1.4.4.1 version has been removed and those functions are now available as a module.'; +$_LANGADM['AdminUpgrade6b28abf9b513f912c60cad33e7d9656f'] = 'Please click to remove that tab and activate the autoupgrade module'; +$_LANGADM['AdminUpgrade35d388690a72b9c4dc5b77d200875e77'] = 'Previous UpgradeTab has been removed. Please go to the new Upgrade tab, or install the module first.'; +$_LANGADM['AdminUpgrade7f786b903ea8045f5b5b7e3c5a4e0385'] = 'This function is experimental. It is highly recommended to make a backup of your files and database before starting the upgrade process.'; +$_LANGADM['AdminUpgrade3a3a651c9a67bca9ac902da789466b93'] = 'Unstable upgrade'; +$_LANGADM['AdminUpgradea22eff458b4f4bce6d3232e367ff0138'] = '= \r\nYour current configuration indicate you want to upgrade your system from the unstable development branch, with no version number. If you upgrade, you will not be able to follow the official release process anymore'; +$_LANGADM['AdminUpgradedae8ace18bdcbcc6ae5aece263e14fe8'] = 'Options'; +$_LANGADM['AdminUpgradec747916b25dcb02e0e81ee84dbd966ea'] = 'You currently do not need to use this feature.'; +$_LANGADM['AdminUpgrade6b3930a184368a458be6e4429f409877'] = 'Upgrade complete. Please check your front-office (try to make an order, check theme, etc.)'; +$_LANGADM['AdminUpgrade91195bbbacc2147a736c849c46368ed8'] = 'Do you want to rollback?'; +$_LANGADM['AdminUpgradea498f9476a893d51ee02b3601678d318'] = 'Click to restore database'; +$_LANGADM['AdminUpgradef34d5debb2bba76aa3e077937a07e373'] = 'Click to restore files'; +$_LANGADM['AdminUpgrade60283aa37e2063b2ada2f99216e1332a'] = 'Your server can\'t download the file. Please upload it first using ftp in your admin / autoupgrade directory'; +$_LANGADM['AdminUpgrade6ef7ebe46f6d16cdbf9e2169e3dd048e'] = 'Please manually click the rollback button'; $_LANGADM['AdminWebservice897356954c2cd3d41b221e3f24f99bba'] = 'Key'; $_LANGADM['AdminWebservice00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Enabled'; +$_LANGADM['AdminWebservice52699c78843b98f98620186a59b0a3fa'] = 'Key description'; $_LANGADM['AdminWebservice254f642527b45bc260048e30704edb39'] = 'Configuration'; $_LANGADM['AdminWebservice1a3b3816c9c978c15939fba51f39eab4'] = 'Enable PrestaShop Webservice:'; $_LANGADM['AdminWebservicee8602bda90ef985a71054950e6f1981e'] = 'Before activating the webservice, you must be sure to: '; @@ -2862,13 +3176,14 @@ $_LANGADM['AdminWebservice028f42454a71f86007a79664b2a35882'] = 'Fast view (HEAD) $_LANGADM['AdminWebservice38fb7d24e0d60a048f540ecb18e13376'] = ' Save '; $_LANGADM['AdminWebservice19f823c6453c2b1ffd09cb715214813d'] = 'Required field'; $_LANGADM['AdminWebservicef19ee162cdc3717e4e58af2ebc837b5a'] = 'Key length must be 32 character long'; +$_LANGADM['AdminWebservice73f872e92f8bee93f070d13e2339a410'] = 'Key already exists'; $_LANGADM['AdminZonesb718adec73e04ce3ec720dd11a06a308'] = 'ID'; $_LANGADM['AdminZonesb3ff996fe5c77610359114835baf9b38'] = 'Zone'; $_LANGADM['AdminZones00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Enabled'; $_LANGADM['AdminZonesdad1f8d794ee0dd7753fe75e73b78f31'] = 'Zones'; $_LANGADM['AdminZones49ee3087348e8d44e1feda1917443987'] = 'Name'; $_LANGADM['AdminZones1cc70ef3820fa925ca1dd1ab645d239e'] = 'Allowed characters: letters, spaces and'; -$_LANGADM['AdminZonesdc1be6c34c5d1b2cb4998f961dbbf3f5'] = 'Zone name, e.g., Africa, West Coast, Neighboring Countries'; +$_LANGADM['AdminZonesdc1be6c34c5d1b2cb4998f961dbbf3f5'] = 'Zone name (e.g. Africa, West Coast, Neighboring Countries)'; $_LANGADM['AdminZones24a23d787190f2c4812ff9ab11847a72'] = 'Status:'; $_LANGADM['AdminZonesb9f5c797ebbf55adccdd8539a65a0241'] = 'Disabled'; $_LANGADM['AdminZones47726f4b1d9ceabe8b6022a762495201'] = 'Allow or disallow shipping to this zone'; @@ -2896,12 +3211,16 @@ $_LANGADM['AdminTabb85b9d2e7e1153bd3d5a4bb0f57d347b'] = 'Duplication completed s $_LANGADM['AdminTab4402aa7e384266cd7d0350c1cc9a0123'] = 'Translation added successfully but the language has not been created'; $_LANGADM['AdminTab2aa80a00e1c76b0c14ef567e0e322a0e'] = 'Module reset successfully'; $_LANGADM['AdminTab40606a2d55f7c33c732f1d3c1b5b1e66'] = 'Module deleted successfully'; +$_LANGADM['AdminTab0c6992101fe78e4f1ae3f391c485de29'] = 'Localization pack imported successfully'; $_LANGADM['AdminTabd4fecde5ac83b59cc690fd4d26d79abe'] = 'Refund Successful'; +$_LANGADM['AdminTab795aa39f13629841edad6c04d3aca405'] = 'Images successfully moved'; $_LANGADM['AdminTab0557fa923dcee4d0f86b1409f5c2167f'] = 'Back'; $_LANGADM['AdminTab630f6dc397fe74e52d5189e2c80f282b'] = 'Back to list'; $_LANGADM['AdminTab32397e87e6e403cbad4f3d26385ad6ef'] = 'You do not have permission to add here'; $_LANGADM['AdminTabddcaee4edc8938535941b620ae5ec359'] = 'You do not have permission to edit here'; +$_LANGADM['AdminTab0470d45929f27e1161330164c423b415'] = 'Set required fields for this section'; $_LANGADM['AdminTabe54b38290c8bdd95e8bc10412c9cc096'] = 'Required Fields'; +$_LANGADM['AdminTab81f32b96f6626b8968e6a0f4a9bce62e'] = 'Select the fields you would like to be required for this section.'; $_LANGADM['AdminTabee9b2f3cf31c23c944b15fb0b33d6a77'] = 'Field Name'; $_LANGADM['AdminTab38fb7d24e0d60a048f540ecb18e13376'] = ' Save '; $_LANGADM['AdminTab01f8544c8fd4628bc686502e8b727d95'] = 'the field'; @@ -2945,30 +3264,41 @@ $_LANGADM['AdminTab0071aa279bd1583754a544277740f047'] = 'Delete item #'; $_LANGADM['AdminTab6adab6d3fdf92c448d60cf8824e4851c'] = 'Delete selection'; $_LANGADM['AdminTabe25f0ecd41211b01c83e5fec41df4fe7'] = 'Delete selected items?'; $_LANGADM['AdminTabcc3787ca78f445f481069a4c047f7e7a'] = 'Choose language:'; +$_LANGADM['AdminTabb51d77dc443d4051900f1bad9fe885aa'] = 'You are currently connected with the following domain name:'; +$_LANGADM['AdminTab6aa5c0d2cbc4a0f53206777be432056a'] = 'This domain is different from the main shop domain name set in \"Preferences > SEO & URLs\":'; +$_LANGADM['AdminTab7e4b7faf0fc36dc296e66f6ea3096dcd'] = 'Click here if you want to modify the main shop domain name'; $_LANGADM['index86bbc77fd75ac02c21b84a37b260eadd'] = 'Administration panel'; -$_LANGADM['index4236a440a662cc8253d7536e5aa17942'] = 'logout'; +$_LANGADM['index4236a440a662cc8253d7536e5aa17942'] = 'Logout'; $_LANGADM['indexd70861cbe7f8c9a1241c39b3e7ef5ef2'] = 'View my shop'; -$_LANGADM['indexcbebc850f5f849e8956b5f8075f48f69'] = 'everywhere'; -$_LANGADM['index46f22f2a56ddd091f4b2b2c35c5ca989'] = 'catalog'; -$_LANGADM['index4b6f7d34a58ba399f077685951d06738'] = 'customers'; -$_LANGADM['index12c500ed0b7879105fb46af0f246be87'] = 'orders'; -$_LANGADM['index56deca22a707214865f7ea3ae6391d67'] = 'invoices'; -$_LANGADM['index8642a2f37a5d42b54ce53b1fbdd1583f'] = 'carts'; +$_LANGADM['indexf84b4e2770ec98e3db2926cd49864d2f'] = 'My preferences'; +$_LANGADM['indexcbebc850f5f849e8956b5f8075f48f69'] = 'Everywhere'; +$_LANGADM['index46f22f2a56ddd091f4b2b2c35c5ca989'] = 'Catalog'; +$_LANGADM['index4b6f7d34a58ba399f077685951d06738'] = 'Customers'; +$_LANGADM['index50d7eaecd64b277cdaac58e0cd48ad83'] = 'IP address'; +$_LANGADM['index12c500ed0b7879105fb46af0f246be87'] = 'Orders'; +$_LANGADM['index56deca22a707214865f7ea3ae6391d67'] = 'Invoices'; +$_LANGADM['index8642a2f37a5d42b54ce53b1fbdd1583f'] = 'Carts'; $_LANGADM['index13348442cc6a27032d2b4aa28b75a5d3'] = 'Search'; $_LANGADM['index4f32a32dea642737580dd71cdfd8d3c0'] = 'Quick Access'; $_LANGADM['index53cd939ae14e33855274e17a3c411fdd'] = 'For security reasons, you must also:'; +$_LANGADM['indexe99c06952f4336ce189d8df45980dca0'] = 'delete the /install folder'; $_LANGADM['index7286baef44d09300636a4b99c533523c'] = 'Load time:'; +$_LANGADM['indexbbaff12800505b22a853e8b7f4eb6a22'] = 'Contact'; +$_LANGADM['index3e937d04c1c83492260a33d926ca587c'] = 'Bug Tracker'; +$_LANGADM['indexe6a7f8a2f42cc35979973da8dfb10720'] = 'Forum'; $_LANGADM['indexeed2839c1e3e5f7069ed03b2f6d4c6dd'] = 'Back Office'; $_LANGADM['indexdb26e10564e958809d798e8048fcbc0a'] = 'Invalid security token'; $_LANGADM['indexa4da6f31ab268a5310bc475e63ab92db'] = 'I understand the risks and I really want to display this page'; -$_LANGADM['index5196611ad1bf27e9cef5375b038c04db'] = 'Take me out of here!'; -$_LANGADM['index98bbe7bd134ad088f6b211fe3bd41408'] = 'Click here to launch Administration panel'; +$_LANGADM['index5196611ad1bf27e9cef5375b038c04db'] = 'Get me out of here!'; +$_LANGADM['indexc6a8757e591d6090eb75d11e8d316f57'] = 'SSL is activated. However, your IP is allowed to use unsecure mode (Maintenance or local IP).'; +$_LANGADM['index3af4334b6b2afb79aeb803577ccc0473'] = 'SSL is activated. Please connect using the following url to log in in secure mode (https).'; +$_LANGADM['index98bbe7bd134ad088f6b211fe3bd41408'] = 'Click here to launch the Administration panel'; $_LANGADM['index6357d3551190ec7e79371a8570121d3a'] = 'There are'; $_LANGADM['index4ce81305b7edb043d0a7a5c75cab17d0'] = 'There is'; $_LANGADM['index07213a0161f52846ab198be103b5ab43'] = 'errors'; $_LANGADM['indexcb5e100e5a9a3e7f6d1fd97512215282'] = 'error'; $_LANGADM['indexafbbe4ce0486fac5cfb8685e4fcb2b8a'] = 'For security reasons, you cannot connect to the Back Office until after you have:'; -$_LANGADM['index15f1c34335ddffccb6527f9d658f2625'] = 'renamed the /admin folder (eg. '; +$_LANGADM['index15f1c34335ddffccb6527f9d658f2625'] = 'renamed the /admin folder (e.g. '; $_LANGADM['index5b0dfce240e9def88121d8e62dee1845'] = 'Please then access this page by the new url (eg. http://www.domain.tld/admin'; $_LANGADM['index78e365acb087fd1f8d494dae0001de10'] = 'E-mail address:'; $_LANGADM['indexb341a59d5636ed3d6a819137495b08a0'] = 'Password:'; @@ -2978,8 +3308,8 @@ $_LANGADM['index6d7d8cc3fae1fdd486b167b439c2a5b9'] = 'There is 1 error'; $_LANGADM['index01a569ddc6cf67ddec2a683f0a5f5956'] = 'Forgot your password?'; $_LANGADM['index34bdd7b9823059fa742afab7be9d4c58'] = 'Your password has been e-mailed to you'; $_LANGADM['indexfb080b51680e721b19b6af4293264b6c'] = 'back to login home'; -$_LANGADM['index1928895508822da82ce5c4932a114044'] = 'Please, enter your e-mail address'; -$_LANGADM['index449d3718fc3a9e9bf3f3fc0254bb5625'] = '(the one you wrote during your registration) in order to receive your access codes by e-mail'; +$_LANGADM['index1928895508822da82ce5c4932a114044'] = 'Please enter your e-mail address'; +$_LANGADM['index449d3718fc3a9e9bf3f3fc0254bb5625'] = '(the one you added during your registration) in order to receive your access codes by e-mail'; $_LANGADM['index94966d90747b97d1f0f206c98a8b1ac3'] = 'Send'; ?> \ No newline at end of file diff --git a/translations/fr/admin.php b/translations/fr/admin.php index 76ec6f854..704e7155c 100644 --- a/translations/fr/admin.php +++ b/translations/fr/admin.php @@ -1067,11 +1067,14 @@ $_LANGADM['AdminImagesed13a29f9258d2b988ea7ba9d11de98b'] = 'Ne décochez cette c $_LANGADM['AdminImages729a51874fe901b092899e9e8b31c97a'] = 'Êtes-vous sûr ?'; $_LANGADM['AdminImages874d3deed67e503cac1d8bc00417794a'] = 'Déplacer les images'; $_LANGADM['AdminImages0be9bdbde253c5d649e8667c0bae6754'] = 'PrestaShop utilise un nouveau système de stockage des images produits. Ce système offre de meilleures performances si votre boutique a un très grand nombre de produits.'; +$_LANGADM['AdminImages5e869c034d4bd6df7f278053e786e4fb'] = 'Des images dupliquées ont été trouvées pendant le déplacement des images. Ceci est probablement causé par les images de démonstration de PrestaShop. Veuillez vérifier que le dossier'; +$_LANGADM['AdminImages6ab89e213e3557e2ab248510d89051d1'] = 'ne contient que des images de démonstration, puis supprimez ce dossier.'; +$_LANGADM['AdminImages6713e1295572974656e3e04d18e77ca9'] = 'PrestaShop a détecté que votre configuration serveur n\'est pas compatible avec le nouveau système de stockage d\'images (la directive \"safe_mode\" est activée). Vous devriez continuer à utiliser le système actuel.'; $_LANGADM['AdminImages0fb0d96026cc27f8a45d6cb909289903'] = 'Vous pouvez décider de garder vos images stockées dans l\'ancien système, cela ne pose aucun problème.'; $_LANGADM['AdminImages6e9b08be274aa15f116c641e4c9b8599'] = 'Vous pouvez aussi décider de déplacer vos images vers le nouveau système de stockage : dans ce cas, cliquez sur le bouton \"Déplacer les images\" ci-dessous. Merci d\'être patient, le processus peut prendre quelques minutes.'; $_LANGADM['AdminImages1bd266b7c30df50f9b77b0e0f55f2878'] = 'Après avoir déplacé toutes vos images produit, pour des performances optimales allez aux '; $_LANGADM['AdminImagese686877843ac3c9f4c45aaea265fe59c'] = 'préférences produit'; -$_LANGADM['AdminImages8b82bc51644c14c234bb3b635b2e2d1c'] = ' et changez \"Activer la compatibilité avec les anciennes images\" à NON.'; +$_LANGADM['AdminImagesfb3164a4f7305b347948b8aca17c1735'] = ' et changez \"Utiliser l\'ancien système de stockage d\'images\" à NON.'; $_LANGADM['AdminImagesff17d73fa2731689640e8afa0f591b0f'] = 'Les images JPEG ont une taille de fichier petite et une qualité standard. Les images PNG ont une taille de fichier plus importante, une meilleure qualité, et gèrent la transparence. Notez que dans tous les cas les fichiers image auront l\'extension .jpg.'; $_LANGADM['AdminImagesff167676b1516b34e7f9be0fea5349d6'] = 'ATTENTION : Cette fonctionnalité peut ne pas être compatible avec votre thème ou avec certains modules. En particulier, le mode PNG n\'est pas compatible avec le module Filigrane. En cas de problème, désactivez cette fonctionnalité en sélectionnant \"Utiliser le JPEG\".'; $_LANGADM['AdminImages42ceb344b0aaf896b362b0db70b46f98'] = 'Qualité d\'image'; @@ -1142,6 +1145,7 @@ $_LANGADM['AdminImporte1a5e653bc356ed6745d6814d50213eb'] = 'Afficher le prix'; $_LANGADM['AdminImport4d2589e1bcd4263cb99927b59f0f88d2'] = 'URLs des images (x,y,z...)'; $_LANGADM['AdminImportecde3e896afb64e9a48781b8363b9a03'] = 'Caractéristique(Nom:Valeur:Position)'; $_LANGADM['AdminImport93b145201f52e9210402f4281ff8c188'] = 'Position de la caractéristique'; +$_LANGADM['AdminImport21021ea0e52be8e9c599f4dff41e5be0'] = 'Caractéristique'; $_LANGADM['AdminImport71d0ceacdf562024f2d4c3a76d3b63e4'] = 'Uniquement disponible en ligne'; $_LANGADM['AdminImport9e2941b3c81256fac10392aaca4ccfde'] = 'Etat'; $_LANGADM['AdminImportf8a0fa3674c3336359b77bbe8e942a2c'] = 'ID ou nom de la boutique'; @@ -1772,7 +1776,7 @@ $_LANGADM['AdminPPreferences048a517fd1781ed314402df592f2ea68'] = 'Largeur :'; $_LANGADM['AdminPPreferencesc9c4e9c1a92d9b15e0cdefc7ddb1bbd5'] = 'La largeur maximum des images envoyées par les clients'; $_LANGADM['AdminPPreferences9a61f5ce3180789a8455f536681cabc1'] = 'Hauteur :'; $_LANGADM['AdminPPreferencesdde6c96bcb0af50f18f37572267d904a'] = 'La hauteur maximum des images envoyées par les clients'; -$_LANGADM['AdminPPreferences044a77653804fe33652d68098d98121e'] = 'Activer la compatibilité avec les anciennes images'; +$_LANGADM['AdminPPreferences044a77653804fe33652d68098d98121e'] = 'Utiliser l\'ancien système de stockage d\'images'; $_LANGADM['AdminPPreferencese7ed00268dc16aecaac5a60aeb6f4c73'] = 'Ce réglage doit rester sur \"Oui\" à moins que vous n’ayez déplacé avec succès les images dans l\'onglet Préférences > Image'; $_LANGADM['AdminPaymenta75b01d1ff66cd0a327bda1effa71dec'] = 'Liste de modules de paiement'; $_LANGADM['AdminPayment1f3a05f7b45df8e5c5cafaf0485eedd5'] = 'Cliquez pour voir la liste des modules de paiement.';