@@ -0,0 +1,188 @@
|
||||
<?php
|
||||
if (!defined('_PS_VERSION_')) {
|
||||
exit;
|
||||
}
|
||||
class AddShareThis extends Module
|
||||
{
|
||||
function __construct()
|
||||
{
|
||||
$this->name = 'addsharethis';
|
||||
$this->author = 'Custom';
|
||||
$this->tab = 'front_office_features';
|
||||
$this->need_instance = 0;
|
||||
$this->_directory = dirname(__FILE__);
|
||||
parent::__construct();
|
||||
$this->displayName = $this->l('Add Sharethis');
|
||||
$this->description = $this->l('Display social count button on the home page');
|
||||
}
|
||||
|
||||
public function install()
|
||||
{
|
||||
Configuration::updateValue('CONF_ROW', 'ea22d519-9f98-4018-99a9-5b5f1b100fa8');
|
||||
Configuration::updateValue('ADDTHISSHARE_TWITTER',1);
|
||||
Configuration::updateValue('ADDTHISSHARE_GOOGLE',1);
|
||||
Configuration::updateValue('ADDTHISSHARE_PINTEREST',1);
|
||||
Configuration::updateValue('ADDTHISSHARE_FACEBOOK',1);
|
||||
if (!parent::install() OR
|
||||
|
||||
!$this->registerHook('Extraright') OR
|
||||
!$this->registerHook('header'))
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
public function uninstall()
|
||||
{
|
||||
if (!parent::uninstall() OR
|
||||
!Configuration::deleteByName('CONF_ROW') OR
|
||||
!Configuration::deleteByName('ADDTHISSHARE_TWITTER') OR
|
||||
!Configuration::deleteByName('ADDTHISSHARE_GOOGLE') OR
|
||||
!Configuration::deleteByName('ADDTHISSHARE_PINTEREST') OR
|
||||
!Configuration::deleteByName('ADDTHISSHARE_FACEBOOK') OR
|
||||
!$this->unregisterHook('Extraright') OR
|
||||
!$this->unregisterHook('header'))
|
||||
return false;
|
||||
else return true;
|
||||
}
|
||||
|
||||
public function getContent()
|
||||
{
|
||||
|
||||
$this->_html .= '<h2>'.$this->displayName.'<span style=" float:right;"></span></h2><div class="clear"></div>';
|
||||
if (isset($_POST['submitCog'])) $this->updateCog();
|
||||
|
||||
if (Tools::isSubmit('submitCog'))
|
||||
{
|
||||
$conf_row = Tools::getValue('conf_row');
|
||||
Configuration::updateValue('CONF_ROW', $conf_row);
|
||||
|
||||
}
|
||||
$this->_html .= '
|
||||
<fieldset class="space" id="cogField">
|
||||
<legend><img src="'.$this->_path.'logo.png" alt="" title="" /> '.$this->l('Configuration').'</legend>
|
||||
<form id="cogForm" name="cogForm" method="post" action="'.Tools::safeOutput($_SERVER['REQUEST_URI']).'">
|
||||
<br/>
|
||||
<em>'.$this->l('(Key in your account statistic http://sharethis.com)').'</em>
|
||||
<div class="clearfix"></div><br/><br/>
|
||||
<label>'.$this->l('Publisher Pub Key:').'</label>
|
||||
<div class="margin-form">
|
||||
<input type="text" name="conf_row" id="conf_row" size="60" value="'.Tools::getValue('conf_row', Configuration::get('CONF_ROW')).'" />
|
||||
</div><br/><br/>
|
||||
<div class="margin-form">
|
||||
<input style="margin:-8px 20px 0 0;" type="checkbox" name="Twitter" id="Twitter" '.( (Configuration::get('ADDTHISSHARE_TWITTER') == 1) ? 'checked="checked"' : '').' />
|
||||
<img src="'.($this->_path).'img/twitter.gif" />
|
||||
</div>
|
||||
<div class="margin-form">
|
||||
<input style="margin:-8px 20px 0 0;" type="checkbox" name="Google" id="Google" '.( (Configuration::get('ADDTHISSHARE_GOOGLE') == 1) ? 'checked="checked"' : '').' />
|
||||
<img src="'.($this->_path).'img/google.gif" />
|
||||
</div>
|
||||
<div class="margin-form">
|
||||
<input style="margin:-8px 20px 0 0;" type="checkbox" name="Pinterest" id="Pinterest" '.( (Configuration::get('ADDTHISSHARE_PINTEREST') == 1) ? 'checked="checked"' : '').' />
|
||||
<img src="'.($this->_path).'img/pinterest.gif" />
|
||||
</div>
|
||||
<div class="margin-form">
|
||||
<input style="margin:-8px 20px 0 0;" type="checkbox" name="Facebook" id="Facebook" '.( (Configuration::get('ADDTHISSHARE_FACEBOOK') == 1) ? 'checked="checked"' : '').' />
|
||||
<img src="'.($this->_path).'img/facebook.gif" />
|
||||
</div>
|
||||
<br/><br/><div class="margin-form">
|
||||
<input type="submit" class="button" name="submitCog" id="submitCog" value="'.$this->l('Save').'" />
|
||||
</div>
|
||||
</form>
|
||||
</fieldset>';
|
||||
|
||||
return $this->_html;
|
||||
}
|
||||
|
||||
public function updateCog()
|
||||
{
|
||||
Configuration::updateValue('ADDTHISSHARE_TWITTER', (isset($_POST['Twitter']) ? 1 : 0));
|
||||
Configuration::updateValue('ADDTHISSHARE_GOOGLE', (isset($_POST['Google']) ? 1 : 0));
|
||||
Configuration::updateValue('ADDTHISSHARE_PINTEREST', (isset($_POST['Pinterest']) ? 1 : 0));
|
||||
Configuration::updateValue('ADDTHISSHARE_FACEBOOK', (isset($_POST['Facebook']) ? 1 : 0));
|
||||
|
||||
}
|
||||
|
||||
|
||||
function hookDisplayHeader($params)
|
||||
{
|
||||
global $smarty, $cookie;
|
||||
global $link;
|
||||
$product = new Product((int)Tools::getValue('id_product'), false, (int)$cookie->id_lang);
|
||||
$productLink = $link->getProductLink($product);
|
||||
$images = $product->getImages((int)$cookie->id_lang);
|
||||
foreach ($images AS $k => $image)
|
||||
if ($image['cover'])
|
||||
{
|
||||
$cover['id_image'] = (int)$product->id.'-'.(int)$image['id_image'];
|
||||
$cover['legend'] = $image['legend'];
|
||||
}
|
||||
if (!isset($cover))
|
||||
$cover = array('id_image' => Language::getIsoById((int)$cookie->id_lang).'-default', 'legend' => 'No picture');
|
||||
$this->context->smarty->assign(array(
|
||||
'cover' => $cover,
|
||||
'product' => $product,
|
||||
'productLink' => $productLink,
|
||||
'this_path' => $this->_path
|
||||
));
|
||||
return $this->display(__FILE__, 'addsharethis_header.tpl');
|
||||
}
|
||||
|
||||
public function hookExtraRight($params)
|
||||
{
|
||||
global $smarty, $cookie, $link;
|
||||
|
||||
$conf_row = Configuration::get('CONF_ROW');
|
||||
$this->context->smarty->assign(array(
|
||||
'conf_row' => $conf_row,
|
||||
));
|
||||
|
||||
if (Configuration::get('ADDTHISSHARE_TWITTER') == 1)
|
||||
$data['twitter'] = '<span class="st_twitter_hcount sharebtn" displayText="Tweet"></span>';
|
||||
if (Configuration::get('ADDTHISSHARE_GOOGLE') == 1)
|
||||
{
|
||||
$data['google'] = '<span class="st_googleplus_hcount" displayText="Google +"></span>';
|
||||
}
|
||||
if (Configuration::get('ADDTHISSHARE_PINTEREST') == 1)
|
||||
$data['pinterest'] = '<span class="st_pinterest_hcount sharebtn" displayText="Pinterest"></span>';
|
||||
|
||||
if (Configuration::get('ADDTHISSHARE_FACEBOOK') == 1)
|
||||
$data['facebook'] = '<span class="st_facebook_hcount sharebtn" displayText="Facebook"></span>';
|
||||
|
||||
|
||||
$smarty->assign('addsharethis_data', $data);
|
||||
|
||||
|
||||
return $this->display(__FILE__, 'addsharethis.tpl');
|
||||
}
|
||||
|
||||
function hookLeftColumn($params)
|
||||
{
|
||||
return $this->hookExtraRight($params);
|
||||
}
|
||||
|
||||
function hookFooter($params)
|
||||
{
|
||||
return $this->hookExtraRight($params);
|
||||
}
|
||||
|
||||
function hookHome($params)
|
||||
{
|
||||
return $this->hookExtraRight($params);
|
||||
}
|
||||
|
||||
function hookExtraleft($params)
|
||||
{
|
||||
return $this->hookExtraRight($params);
|
||||
}
|
||||
function hookProductActions($params)
|
||||
{
|
||||
return $this->hookExtraRight($params);
|
||||
}
|
||||
|
||||
function hookProductFooter($params)
|
||||
{
|
||||
return $this->hookExtraRight($params);
|
||||
}
|
||||
|
||||
}
|
||||
?>
|
||||
@@ -0,0 +1,25 @@
|
||||
<link rel="stylesheet" type="text/css" href="{$module_dir}css/addsharethis.css"/>
|
||||
{if isset($addsharethis_data)}
|
||||
<div id="ShareDiv" class="addsharethis">
|
||||
<div class="addsharethisinner">
|
||||
<script type="text/javascript">var switchTo5x=true;</script>
|
||||
<script type="text/javascript" src="http://w.sharethis.com/button/buttons.js"></script>
|
||||
{literal}
|
||||
<script type="text/javascript">stLight.options({publisher: "{/literal}{$conf_row}{literal}", nativeCount:true });</script>
|
||||
{/literal}
|
||||
{if isset($addsharethis_data.twitter)}
|
||||
{$addsharethis_data.twitter}
|
||||
{/if}
|
||||
{if isset($addsharethis_data.google)}
|
||||
{$addsharethis_data.google}
|
||||
{/if}
|
||||
{if isset($addsharethis_data.pinterest)}
|
||||
{$addsharethis_data.pinterest}
|
||||
{/if}
|
||||
{if isset($addsharethis_data.facebook)}
|
||||
{$addsharethis_data.facebook}
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
<meta property="og:image" content="{$link->getImageLink($product->link_rewrite, $cover.id_image, large_default)}" />
|
||||
|
||||
@@ -0,0 +1,36 @@
|
||||
<link rel="stylesheet" type="text/css" href="{$module_dir}css/addsharethis.css"/>
|
||||
{if isset($addsharethis_data)}
|
||||
<div class="addsharethis topaddsharethis">
|
||||
<div class="addsharethisinner">
|
||||
{if isset($addsharethis_data.twitter)}
|
||||
{$addsharethis_data.twitter}
|
||||
{/if}
|
||||
{if isset($addsharethis_data.google)}
|
||||
{$addsharethis_data.google}
|
||||
{/if}
|
||||
{if isset($addsharethis_data.pinterest)}
|
||||
{$addsharethis_data.pinterest}
|
||||
{/if}
|
||||
{if isset($addsharethis_data.facebook)}
|
||||
{$addsharethis_data.facebook}
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
<script type="text/javascript">
|
||||
$(function(){
|
||||
$(".addsharethis").addClass("loader");
|
||||
$(window).load(function() {
|
||||
$(".addsharethis").removeClass("loader");
|
||||
$(".addsharethisinner").show(400);
|
||||
});
|
||||
});
|
||||
$(function(){
|
||||
$(".addsharethis .sharebtn").click(function(){
|
||||
$(this).find("img").show("medium");
|
||||
})
|
||||
});
|
||||
</script>
|
||||
<script type="text/javascript">var switchTo5x=true;</script>
|
||||
<script type="text/javascript" src="http://w.sharethis.com/button/buttons.js"></script>
|
||||
<script type="text/javascript">{literal}stLight.options({publisher: "{/literal}{$conf_row}{literal}", doNotHash: false, doNotCopy: false, hashAddressBar: false});{/literal}</script>
|
||||
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<module>
|
||||
<name>addsharethis</name>
|
||||
<displayName><![CDATA[Add Sharethis]]></displayName>
|
||||
<version><![CDATA[]]></version>
|
||||
<description><![CDATA[Display social count button on the home page]]></description>
|
||||
<author><![CDATA[Custom]]></author>
|
||||
<tab><![CDATA[front_office_features]]></tab>
|
||||
<is_configurable>1</is_configurable>
|
||||
<need_instance>0</need_instance>
|
||||
<limited_countries></limited_countries>
|
||||
</module>
|
||||
@@ -0,0 +1,6 @@
|
||||
.topaddsharethis{ position:absolute; right:-170px; top:160px; width:150px;}
|
||||
.stButton .stFb, .stButton .stTwbutton, .stButton .stMainServices, .stButton .stButton_gradient {height:22px !important;}
|
||||
.stButton .stButton_gradient:hover {background: -moz-linear-gradient(center top , #D5D5D5 0px, #EFEFEF 48%, #FFFFFF 94%) repeat scroll 0 0 transparent!important;}
|
||||
.stButton .chicklets:hover{ opacity:1!important;}
|
||||
.stButton{ margin-bottom:15px;}
|
||||
.addsharethis .stButton:hover{ opacity:0.6;}
|
||||
@@ -0,0 +1,4 @@
|
||||
<?php
|
||||
|
||||
global $_MODULE;
|
||||
$_MODULE = array();
|
||||
|
After Width: | Height: | Size: 723 B |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 2.2 KiB |
|
After Width: | Height: | Size: 2.5 KiB |
|
After Width: | Height: | Size: 2.4 KiB |
|
After Width: | Height: | Size: 468 B |
|
After Width: | Height: | Size: 3.7 KiB |
@@ -0,0 +1,133 @@
|
||||
<?php
|
||||
/*
|
||||
* 2007-2013 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 <contact@prestashop.com>
|
||||
* @copyright 2007-2013 PrestaShop SA
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
if (!defined('_PS_VERSION_'))
|
||||
exit;
|
||||
|
||||
class Blockquickview extends Module
|
||||
{
|
||||
public function __construct()
|
||||
{
|
||||
$this->name = 'blockquickview';
|
||||
$this->tab = 'front_office_features';
|
||||
$this->version = '1.0';
|
||||
parent::__construct();
|
||||
$this->displayName = $this->l('Quick view');
|
||||
$this->description = $this->l('Add Quick information about product.');
|
||||
}
|
||||
|
||||
public function install()
|
||||
{
|
||||
Configuration::updateValue('PS_QUICK_VIEW',1);
|
||||
if (!parent::install())
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
public function uninstall()
|
||||
{
|
||||
if (!parent::uninstall() OR
|
||||
!Configuration::deleteByName('PS_QUICK_VIEW'))
|
||||
return false;
|
||||
else return true;
|
||||
}
|
||||
|
||||
|
||||
public function getContent()
|
||||
{
|
||||
$html = '';
|
||||
// If we try to update the settings
|
||||
if (Tools::isSubmit('submitModule'))
|
||||
{
|
||||
Configuration::updateValue('PS_QUICK_VIEW', Tools::getValue('PS_QUICK_VIEW'));
|
||||
$html .= $this->displayConfirmation($this->l('Configuration updated'));
|
||||
}
|
||||
$html .= $this->renderForm();
|
||||
return $html;
|
||||
}
|
||||
|
||||
public function renderForm()
|
||||
{
|
||||
$fields_form = array(
|
||||
'form' => array(
|
||||
'legend' => array(
|
||||
'title' => $this->l('Settings'),
|
||||
'icon' => 'icon-cogs'
|
||||
),
|
||||
'input' => array(
|
||||
array(
|
||||
'type' => 'switch',
|
||||
'label' => $this->l('Display Quick view'),
|
||||
'name' => 'PS_QUICK_VIEW',
|
||||
'values' => array(
|
||||
array(
|
||||
'id' => 'active_on',
|
||||
'value' => 1,
|
||||
'label' => $this->l('Enabled')
|
||||
),
|
||||
array(
|
||||
'id' => 'active_off',
|
||||
'value' => 0,
|
||||
'label' => $this->l('Disabled')
|
||||
)
|
||||
),
|
||||
),
|
||||
),
|
||||
'submit' => array(
|
||||
'title' => $this->l('Save'),
|
||||
'class' => 'btn btn-primary')
|
||||
),
|
||||
);
|
||||
|
||||
$helper = new HelperForm();
|
||||
$helper->show_toolbar = false;
|
||||
$helper->table = $this->table;
|
||||
$lang = new Language((int)Configuration::get('PS_LANG_DEFAULT'));
|
||||
$helper->default_form_language = $lang->id;
|
||||
$helper->allow_employee_form_lang = Configuration::get('PS_BO_ALLOW_EMPLOYEE_FORM_LANG') ? Configuration::get('PS_BO_ALLOW_EMPLOYEE_FORM_LANG') : 0;
|
||||
$this->fields_form = array();
|
||||
|
||||
$helper->identifier = $this->identifier;
|
||||
$helper->submit_action = 'submitModule';
|
||||
$helper->currentIndex = $this->context->link->getAdminLink('AdminModules', false).'&configure='.$this->name.'&tab_module='.$this->tab.'&module_name='.$this->name;
|
||||
$helper->token = Tools::getAdminTokenLite('AdminModules');
|
||||
$helper->tpl_vars = array(
|
||||
'fields_value' => $this->getConfigFieldsValues(),
|
||||
'languages' => $this->context->controller->getLanguages(),
|
||||
'id_language' => $this->context->language->id
|
||||
);
|
||||
|
||||
return $helper->generateForm(array($fields_form));
|
||||
}
|
||||
|
||||
public function getConfigFieldsValues()
|
||||
{
|
||||
return array(
|
||||
'PS_QUICK_VIEW' => Tools::getValue('PS_QUICK_VIEW', Configuration::get('PS_QUICK_VIEW')),
|
||||
);
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<module>
|
||||
<name>blockquickview</name>
|
||||
<displayName><![CDATA[Quick view]]></displayName>
|
||||
<version><![CDATA[1.0]]></version>
|
||||
<description><![CDATA[Add Quick information about product.]]></description>
|
||||
<author><![CDATA[]]></author>
|
||||
<tab><![CDATA[front_office_features]]></tab>
|
||||
<is_configurable>1</is_configurable>
|
||||
<need_instance>1</need_instance>
|
||||
<limited_countries></limited_countries>
|
||||
</module>
|
||||
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/*
|
||||
* 2007-2013 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 <contact@prestashop.com>
|
||||
* @copyright 2007-2013 PrestaShop SA␍
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
|
||||
header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
|
||||
|
||||
header('Cache-Control: no-store, no-cache, must-revalidate');
|
||||
header('Cache-Control: post-check=0, pre-check=0', false);
|
||||
header('Pragma: no-cache');
|
||||
|
||||
header('Location: ../../');
|
||||
exit;
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 1.2 KiB |
@@ -23,13 +23,13 @@
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
|
||||
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
|
||||
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
|
||||
|
||||
|
||||
header("Cache-Control: no-store, no-cache, must-revalidate");
|
||||
header("Cache-Control: post-check=0, pre-check=0", false);
|
||||
header("Pragma: no-cache");
|
||||
|
||||
|
||||
header("Location: ../");
|
||||
exit;
|
||||
exit;
|
||||
@@ -217,13 +217,14 @@ $(function(){ldelim}
|
||||
<textarea class="form-control" id="other" name="other" cols="26" rows="3" onkeyup="if (validate_{$address_validation.other.validate}($(this).val())) $(this).parent().removeClass('form-error').addClass('form-ok'); else $(this).parent().addClass('form-error').removeClass('form-ok');
|
||||
">{if isset($smarty.post.other)}{$smarty.post.other}{else}{if isset($address->other)}{$address->other|escape:'html'}{/if}{/if}</textarea>
|
||||
</div>
|
||||
{if isset($one_phone_at_least) && $one_phone_at_least}
|
||||
<p class="inline-infos required">{l s='You must register at least one phone number.'}</p>
|
||||
{/if}
|
||||
<div class="form-group">
|
||||
<div class="form-group phone-number">
|
||||
<label for="phone">{l s='Home phone'}</label>
|
||||
<input type="tel" id="phone" class="form-control" name="phone" value="{if isset($smarty.post.phone)}{$smarty.post.phone}{else}{if isset($address->phone)}{$address->phone|escape:'html'}{/if}{/if}" onkeyup="if (validate_{$address_validation.phone.validate}($(this).val())) $(this).parent().removeClass('form-error').addClass('form-ok'); else $(this).parent().addClass('form-error').removeClass('form-ok');" />
|
||||
</div>
|
||||
{if isset($one_phone_at_least) && $one_phone_at_least}
|
||||
<p class="inline-infos required">{l s='You must register at least one phone number.'}</p>
|
||||
{/if}
|
||||
<div class="clearfix"></div>
|
||||
<div class="{if isset($one_phone_at_least) && $one_phone_at_least}required {/if}form-group">
|
||||
<label for="phone_mobile">{l s='Mobile phone'}{if isset($one_phone_at_least) && $one_phone_at_least} <sup>*</sup>{/if}</label>
|
||||
<input type="tel" id="phone_mobile" class="form-control" name="phone_mobile" value="{if isset($smarty.post.phone_mobile)}{$smarty.post.phone_mobile}{else}{if isset($address->phone_mobile)}{$address->phone_mobile|escape:'html'}{/if}{/if}" onkeyup="if (validate_{$address_validation.phone_mobile.validate}($(this).val())) $(this).parent().removeClass('form-error').addClass('form-ok'); else $(this).parent().addClass('form-error').removeClass('form-ok');" />
|
||||
|
||||
@@ -124,7 +124,7 @@
|
||||
{/if}
|
||||
|
||||
<div class="clearfix main-page-indent">
|
||||
<a href="{$link->getPageLink('address', true)|escape:'html'}" title="{l s='Add an address'}" class="btn btn-default button button-medium"><span>{l s='Add an address'}<i class="icon-chevron-right right"></i></span></a>
|
||||
<a href="{$link->getPageLink('address', true)|escape:'html'}" title="{l s='Add an address'}" class="btn btn-default button button-medium"><span>{l s='Add a new address'}<i class="icon-chevron-right right"></i></span></a>
|
||||
</div>
|
||||
|
||||
<ul class="footer_links clearfix">
|
||||
|
||||
@@ -377,7 +377,7 @@ $(document).ready(function() {
|
||||
<p class="cart_navigation required submit clearfix">
|
||||
<span><sup>*</sup>{l s='Required field'}</span>
|
||||
<input type="hidden" name="display_guest_checkout" value="1" />
|
||||
<button type="submit" class="button btn btn-default button-medium" name="submitGuestAccount" id="submitGuestAccount"><span>{l s='Continue'}<i class="icon-chevron-right right"></i></span></button>
|
||||
<button type="submit" class="button btn btn-default button-medium" name="submitGuestAccount" id="submitGuestAccount"><span>{l s='Proceed to checkout'}<i class="icon-chevron-right right"></i></span></button>
|
||||
</p>
|
||||
</form>
|
||||
{/if}
|
||||
|
||||
@@ -47,10 +47,7 @@
|
||||
</div>
|
||||
{else}
|
||||
<!-- Category image -->
|
||||
<div class="content_scene_cat_bg" {if $category->id_image}style="background:url({$link->getCatImageLink($category->link_rewrite, $category->id_image, 'category_default')|escape:'html'}) 0 0 no-repeat; min-height:{$categorySize.height}px;" {/if}>
|
||||
|
||||
|
||||
|
||||
<div class="content_scene_cat_bg" {if $category->id_image}style="background:url({$link->getCatImageLink($category->link_rewrite, $category->id_image, 'category_default')|escape:'html'}) 0 bottom no-repeat; background-size:contain; min-height:{$categorySize.height}px;" {/if}>
|
||||
{if $category->description}
|
||||
<div class="cat_desc">
|
||||
<h1 class="category-name">
|
||||
@@ -96,13 +93,13 @@
|
||||
<div class="subcategory-image">
|
||||
<a href="{$link->getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'htmlall':'UTF-8'}" title="{$subcategory.name|escape:'htmlall':'UTF-8'}" class="img">
|
||||
{if $subcategory.id_image}
|
||||
<img src="{$link->getCatImageLink($subcategory.link_rewrite, $subcategory.id_image, 'medium_default')|escape:'html'}" alt="" width="{$mediumSize.width}" height="{$mediumSize.height}" />
|
||||
<img class="replace-2x" src="{$link->getCatImageLink($subcategory.link_rewrite, $subcategory.id_image, 'medium_default')|escape:'html'}" alt="" width="{$mediumSize.width}" height="{$mediumSize.height}" />
|
||||
{else}
|
||||
<img src="{$img_cat_dir}default-medium_default.jpg" alt="" width="{$mediumSize.width}" height="{$mediumSize.height}" />
|
||||
<img class="replace-2x" src="{$img_cat_dir}default-medium_default.jpg" alt="" width="{$mediumSize.width}" height="{$mediumSize.height}" />
|
||||
{/if}
|
||||
</a>
|
||||
</div>
|
||||
<h5><a class="subcategory-name" href="{$link->getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'htmlall':'UTF-8'}">{$subcategory.name|escape:'htmlall':'UTF-8'}</a></h5>
|
||||
<h5><a class="subcategory-name" href="{$link->getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'htmlall':'UTF-8'}">{$subcategory.name|truncate:25:'...'|escape:'htmlall':'UTF-8'|truncate:350}</a></h5>
|
||||
{if $subcategory.description}
|
||||
<div class="cat_desc">{$subcategory.description}</div>
|
||||
{/if}
|
||||
|
||||
@@ -406,13 +406,13 @@ p {
|
||||
|
||||
.lead {
|
||||
margin-bottom: 18px;
|
||||
font-size: 14.95px;
|
||||
font-size: 13px;
|
||||
font-weight: 200;
|
||||
line-height: 1.4;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.lead {
|
||||
font-size: 19.5px;
|
||||
font-size: 13px;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -488,19 +488,19 @@ h6 {
|
||||
}
|
||||
|
||||
h1, .h1 {
|
||||
font-size: 33px;
|
||||
font-size: 26px;
|
||||
}
|
||||
|
||||
h2, .h2 {
|
||||
font-size: 27px;
|
||||
font-size: 26px;
|
||||
}
|
||||
|
||||
h3, .h3 {
|
||||
font-size: 23px;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
h4, .h4 {
|
||||
font-size: 17px;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
h5, .h5 {
|
||||
@@ -508,15 +508,15 @@ h5, .h5 {
|
||||
}
|
||||
|
||||
h6, .h6 {
|
||||
font-size: 12px;
|
||||
font-size: 0px;
|
||||
}
|
||||
|
||||
h1 small, .h1 small {
|
||||
font-size: 23px;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
h2 small, .h2 small {
|
||||
font-size: 17px;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
h3 small, .h3 small,
|
||||
@@ -610,7 +610,7 @@ blockquote {
|
||||
border-left: 5px solid #eeeeee;
|
||||
}
|
||||
blockquote p {
|
||||
font-size: 16.25px;
|
||||
font-size: 13px;
|
||||
font-weight: 300;
|
||||
line-height: 1.25;
|
||||
}
|
||||
@@ -1687,7 +1687,7 @@ legend {
|
||||
width: 100%;
|
||||
padding: 0;
|
||||
margin-bottom: 18px;
|
||||
font-size: 19.5px;
|
||||
font-size: 13px;
|
||||
line-height: inherit;
|
||||
color: #333333;
|
||||
border: 0;
|
||||
@@ -1766,16 +1766,16 @@ input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-i
|
||||
background-color: white;
|
||||
border: 1px solid #d6d4d4;
|
||||
border-radius: 0px;
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0);
|
||||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0);
|
||||
-webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
|
||||
transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
|
||||
}
|
||||
.form-control:focus {
|
||||
border-color: #66afe9;
|
||||
outline: 0;
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
|
||||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0), 0 0 8px rgba(102, 175, 233, 0);
|
||||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0), 0 0 8px rgba(102, 175, 233, 0);
|
||||
}
|
||||
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
|
||||
cursor: not-allowed;
|
||||
@@ -1902,13 +1902,13 @@ textarea.input-lg, .input-group-lg > textarea.form-control,
|
||||
}
|
||||
.has-warning .form-control {
|
||||
border-color: white;
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0);
|
||||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0);
|
||||
}
|
||||
.has-warning .form-control:focus {
|
||||
border-color: #e6e6e6;
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px white;
|
||||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px white;
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0), 0 0 6px white;
|
||||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0), 0 0 6px white;
|
||||
}
|
||||
.has-warning .input-group-addon {
|
||||
color: white;
|
||||
@@ -1922,13 +1922,13 @@ textarea.input-lg, .input-group-lg > textarea.form-control,
|
||||
}
|
||||
.has-error .form-control {
|
||||
border-color: white;
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0);
|
||||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0);
|
||||
}
|
||||
.has-error .form-control:focus {
|
||||
border-color: #e6e6e6;
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px white;
|
||||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px white;
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0), 0 0 6px white;
|
||||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0), 0 0 6px white;
|
||||
}
|
||||
.has-error .input-group-addon {
|
||||
color: white;
|
||||
@@ -1942,13 +1942,13 @@ textarea.input-lg, .input-group-lg > textarea.form-control,
|
||||
}
|
||||
.has-success .form-control {
|
||||
border-color: white;
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0);
|
||||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0);
|
||||
}
|
||||
.has-success .form-control:focus {
|
||||
border-color: #e6e6e6;
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px white;
|
||||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px white;
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0), 0 0 6px white;
|
||||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0), 0 0 6px white;
|
||||
}
|
||||
.has-success .input-group-addon {
|
||||
color: white;
|
||||
@@ -2052,14 +2052,14 @@ textarea.input-lg, .input-group-lg > textarea.form-control,
|
||||
.btn:active, .btn.active {
|
||||
outline: 0;
|
||||
background-image: none;
|
||||
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
||||
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
||||
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0);
|
||||
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0);
|
||||
}
|
||||
.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
|
||||
cursor: not-allowed;
|
||||
pointer-events: none;
|
||||
opacity: 0.65;
|
||||
filter: alpha(opacity=65);
|
||||
opacity: 0;
|
||||
filter: alpha(opacity=0);
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
@@ -2170,18 +2170,18 @@ textarea.input-lg, .input-group-lg > textarea.form-control,
|
||||
|
||||
.btn-success {
|
||||
color: white;
|
||||
background-color: #5cb85c;
|
||||
border-color: #4cae4c;
|
||||
background-color: #46a74e;
|
||||
border-color: #3e9546;
|
||||
}
|
||||
.btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active {
|
||||
color: white;
|
||||
background-color: #47a447;
|
||||
border-color: #398439;
|
||||
background-color: #3a8a41;
|
||||
border-color: #2c6a31;
|
||||
}
|
||||
.open .btn-success.dropdown-toggle {
|
||||
color: white;
|
||||
background-color: #47a447;
|
||||
border-color: #398439;
|
||||
background-color: #3a8a41;
|
||||
border-color: #2c6a31;
|
||||
}
|
||||
.btn-success:active, .btn-success.active {
|
||||
background-image: none;
|
||||
@@ -2190,8 +2190,8 @@ textarea.input-lg, .input-group-lg > textarea.form-control,
|
||||
background-image: none;
|
||||
}
|
||||
.btn-success.disabled, .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled:active, .btn-success.disabled.active, .btn-success[disabled], .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled]:active, .btn-success[disabled].active, fieldset[disabled] .btn-success, fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success:active, fieldset[disabled] .btn-success.active {
|
||||
background-color: #5cb85c;
|
||||
border-color: #4cae4c;
|
||||
background-color: #46a74e;
|
||||
border-color: #3e9546;
|
||||
}
|
||||
|
||||
.btn-info {
|
||||
@@ -3159,8 +3159,8 @@ input[type="button"].btn-block {
|
||||
border: 1px solid #cccccc;
|
||||
border: 1px solid rgba(0, 0, 0, 0.15);
|
||||
border-radius: 0px;
|
||||
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
||||
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
||||
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0);
|
||||
box-shadow: 0 6px 12px rgba(0, 0, 0, 0);
|
||||
background-clip: padding-box;
|
||||
}
|
||||
.dropdown-menu.pull-right {
|
||||
@@ -3376,8 +3376,8 @@ input[type="button"].btn-block {
|
||||
}
|
||||
|
||||
.btn-group.open .dropdown-toggle {
|
||||
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
||||
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
||||
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0);
|
||||
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0);
|
||||
}
|
||||
|
||||
.btn .caret {
|
||||
@@ -3771,7 +3771,7 @@ input[type="button"].btn-block {
|
||||
padding-right: 15px;
|
||||
padding-left: 15px;
|
||||
border-top: 1px solid transparent;
|
||||
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
|
||||
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0);
|
||||
-webkit-overflow-scrolling: touch;
|
||||
}
|
||||
.navbar-collapse:before, .navbar-collapse:after {
|
||||
@@ -3957,8 +3957,8 @@ input[type="button"].btn-block {
|
||||
padding: 10px 15px;
|
||||
border-top: 1px solid transparent;
|
||||
border-bottom: 1px solid transparent;
|
||||
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
|
||||
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
|
||||
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0), 0 1px 0 rgba(255, 255, 255, 0);
|
||||
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0), 0 1px 0 rgba(255, 255, 255, 0);
|
||||
margin-top: 9px;
|
||||
margin-bottom: 9px;
|
||||
}
|
||||
@@ -4340,14 +4340,14 @@ input[type="button"].btn-block {
|
||||
.label {
|
||||
display: inline;
|
||||
padding: .2em .6em .3em;
|
||||
font-size: 75%;
|
||||
font-size: 100%;
|
||||
font-weight: bold;
|
||||
line-height: 1;
|
||||
color: white;
|
||||
text-align: center;
|
||||
white-space: nowrap;
|
||||
vertical-align: baseline;
|
||||
border-radius: .25em;
|
||||
border-radius: 0;
|
||||
}
|
||||
.label[href]:hover, .label[href]:focus {
|
||||
color: white;
|
||||
@@ -4373,10 +4373,11 @@ input[type="button"].btn-block {
|
||||
}
|
||||
|
||||
.label-success {
|
||||
background-color: #5cb85c;
|
||||
background-color: #55c65e;
|
||||
border: 1px solid #36943e;
|
||||
}
|
||||
.label-success[href]:hover, .label-success[href]:focus {
|
||||
background-color: #449d44;
|
||||
background-color: #3aae43;
|
||||
}
|
||||
|
||||
.label-info {
|
||||
@@ -4387,10 +4388,11 @@ input[type="button"].btn-block {
|
||||
}
|
||||
|
||||
.label-warning {
|
||||
background-color: #f0ad4e;
|
||||
background-color: #fe9126;
|
||||
border: 1px solid #e4752b;
|
||||
}
|
||||
.label-warning[href]:hover, .label-warning[href]:focus {
|
||||
background-color: #ec971f;
|
||||
background-color: #f07701;
|
||||
}
|
||||
|
||||
.label-danger {
|
||||
@@ -4442,9 +4444,9 @@ a.list-group-item.active > .badge,
|
||||
.jumbotron {
|
||||
padding: 30px;
|
||||
margin-bottom: 30px;
|
||||
font-size: 19.5px;
|
||||
font-size: 13px;
|
||||
font-weight: 200;
|
||||
line-height: 2.14286;
|
||||
line-height: 1.42857;
|
||||
color: inherit;
|
||||
background-color: #eeeeee;
|
||||
}
|
||||
@@ -4460,15 +4462,15 @@ a.list-group-item.active > .badge,
|
||||
}
|
||||
@media screen and (min-width: 768px) {
|
||||
.jumbotron {
|
||||
padding-top: 48px;
|
||||
padding-bottom: 48px;
|
||||
padding-top: 30px;
|
||||
padding-bottom: 30px;
|
||||
}
|
||||
.container .jumbotron {
|
||||
padding-left: 60px;
|
||||
padding-right: 60px;
|
||||
}
|
||||
.jumbotron h1 {
|
||||
font-size: 58.5px;
|
||||
font-size: 52px;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4621,8 +4623,8 @@ a.thumbnail:focus {
|
||||
margin-bottom: 18px;
|
||||
background-color: whitesmoke;
|
||||
border-radius: 0px;
|
||||
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
||||
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
||||
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0);
|
||||
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0);
|
||||
}
|
||||
|
||||
.progress-bar {
|
||||
@@ -4633,17 +4635,17 @@ a.thumbnail:focus {
|
||||
color: white;
|
||||
text-align: center;
|
||||
background-color: #428bca;
|
||||
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
|
||||
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
|
||||
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0);
|
||||
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0);
|
||||
-webkit-transition: width 0.6s ease;
|
||||
transition: width 0.6s ease;
|
||||
}
|
||||
|
||||
.progress-striped .progress-bar {
|
||||
background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
|
||||
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||||
background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||||
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||||
background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0)), color-stop(0.75, rgba(255, 255, 255, 0)), color-stop(0.75, transparent), to(transparent));
|
||||
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 75%, transparent 75%, transparent);
|
||||
background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 75%, transparent 75%, transparent);
|
||||
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 75%, transparent 75%, transparent);
|
||||
background-size: 40px 40px;
|
||||
}
|
||||
|
||||
@@ -4656,43 +4658,43 @@ a.thumbnail:focus {
|
||||
}
|
||||
|
||||
.progress-bar-success {
|
||||
background-color: #5cb85c;
|
||||
background-color: #46a74e;
|
||||
}
|
||||
.progress-striped .progress-bar-success {
|
||||
background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
|
||||
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||||
background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||||
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||||
background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0)), color-stop(0.75, rgba(255, 255, 255, 0)), color-stop(0.75, transparent), to(transparent));
|
||||
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 75%, transparent 75%, transparent);
|
||||
background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 75%, transparent 75%, transparent);
|
||||
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 75%, transparent 75%, transparent);
|
||||
}
|
||||
|
||||
.progress-bar-info {
|
||||
background-color: #5bc0de;
|
||||
}
|
||||
.progress-striped .progress-bar-info {
|
||||
background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
|
||||
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||||
background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||||
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||||
background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0)), color-stop(0.75, rgba(255, 255, 255, 0)), color-stop(0.75, transparent), to(transparent));
|
||||
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 75%, transparent 75%, transparent);
|
||||
background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 75%, transparent 75%, transparent);
|
||||
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 75%, transparent 75%, transparent);
|
||||
}
|
||||
|
||||
.progress-bar-warning {
|
||||
background-color: #f0ad4e;
|
||||
}
|
||||
.progress-striped .progress-bar-warning {
|
||||
background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
|
||||
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||||
background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||||
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||||
background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0)), color-stop(0.75, rgba(255, 255, 255, 0)), color-stop(0.75, transparent), to(transparent));
|
||||
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 75%, transparent 75%, transparent);
|
||||
background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 75%, transparent 75%, transparent);
|
||||
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 75%, transparent 75%, transparent);
|
||||
}
|
||||
|
||||
.progress-bar-danger {
|
||||
background-color: #d9534f;
|
||||
}
|
||||
.progress-striped .progress-bar-danger {
|
||||
background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
|
||||
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||||
background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||||
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
|
||||
background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0)), color-stop(0.75, rgba(255, 255, 255, 0)), color-stop(0.75, transparent), to(transparent));
|
||||
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 75%, transparent 75%, transparent);
|
||||
background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 75%, transparent 75%, transparent);
|
||||
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 75%, transparent 75%, transparent);
|
||||
}
|
||||
|
||||
.media,
|
||||
@@ -4797,8 +4799,8 @@ a.list-group-item:hover, a.list-group-item:focus {
|
||||
background-color: white;
|
||||
border: 1px solid transparent;
|
||||
border-radius: 0px;
|
||||
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
|
||||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
|
||||
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0);
|
||||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0);
|
||||
}
|
||||
|
||||
.panel-body {
|
||||
@@ -4849,7 +4851,7 @@ a.list-group-item:hover, a.list-group-item:focus {
|
||||
.panel-title {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
font-size: 15px;
|
||||
font-size: 13px;
|
||||
}
|
||||
.panel-title > a {
|
||||
color: inherit;
|
||||
@@ -4981,12 +4983,12 @@ a.list-group-item:hover, a.list-group-item:focus {
|
||||
background-color: whitesmoke;
|
||||
border: 1px solid #e3e3e3;
|
||||
border-radius: 0px;
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
|
||||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
|
||||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0);
|
||||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0);
|
||||
}
|
||||
.well blockquote {
|
||||
border-color: #ddd;
|
||||
border-color: rgba(0, 0, 0, 0.15);
|
||||
border-color: rgba(0, 0, 0, 0);
|
||||
}
|
||||
|
||||
.well-lg {
|
||||
@@ -5001,20 +5003,20 @@ a.list-group-item:hover, a.list-group-item:focus {
|
||||
|
||||
.close {
|
||||
float: right;
|
||||
font-size: 19.5px;
|
||||
font-size: 13px;
|
||||
font-weight: bold;
|
||||
line-height: 1;
|
||||
color: black;
|
||||
text-shadow: 0 1px 0 white;
|
||||
opacity: 0.2;
|
||||
filter: alpha(opacity=20);
|
||||
opacity: 0;
|
||||
filter: alpha(opacity=0);
|
||||
}
|
||||
.close:hover, .close:focus {
|
||||
color: black;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
opacity: 0.5;
|
||||
filter: alpha(opacity=50);
|
||||
opacity: 0;
|
||||
filter: alpha(opacity=0);
|
||||
}
|
||||
|
||||
button.close {
|
||||
@@ -5077,8 +5079,8 @@ body.modal-open {
|
||||
border: 1px solid #999999;
|
||||
border: 1px solid rgba(0, 0, 0, 0.2);
|
||||
border-radius: 6px;
|
||||
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
|
||||
box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
|
||||
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0);
|
||||
box-shadow: 0 3px 9px rgba(0, 0, 0, 0);
|
||||
background-clip: padding-box;
|
||||
outline: none;
|
||||
}
|
||||
@@ -5097,8 +5099,8 @@ body.modal-open {
|
||||
filter: alpha(opacity=0);
|
||||
}
|
||||
.modal-backdrop.in {
|
||||
opacity: 0.5;
|
||||
filter: alpha(opacity=50);
|
||||
opacity: 0;
|
||||
filter: alpha(opacity=0);
|
||||
}
|
||||
|
||||
.modal-header {
|
||||
@@ -5157,8 +5159,8 @@ body.modal-open {
|
||||
}
|
||||
|
||||
.modal-content {
|
||||
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
|
||||
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
|
||||
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0);
|
||||
box-shadow: 0 5px 15px rgba(0, 0, 0, 0);
|
||||
}
|
||||
}
|
||||
.tooltip {
|
||||
@@ -5172,8 +5174,8 @@ body.modal-open {
|
||||
filter: alpha(opacity=0);
|
||||
}
|
||||
.tooltip.in {
|
||||
opacity: 0.9;
|
||||
filter: alpha(opacity=90);
|
||||
opacity: 0;
|
||||
filter: alpha(opacity=0);
|
||||
}
|
||||
.tooltip.top {
|
||||
margin-top: -3px;
|
||||
@@ -5277,8 +5279,8 @@ body.modal-open {
|
||||
border: 1px solid #cccccc;
|
||||
border: 1px solid rgba(0, 0, 0, 0.2);
|
||||
border-radius: 6px;
|
||||
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
||||
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
|
||||
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0);
|
||||
box-shadow: 0 5px 10px rgba(0, 0, 0, 0);
|
||||
white-space: normal;
|
||||
}
|
||||
.popover.top {
|
||||
@@ -5455,28 +5457,28 @@ body.modal-open {
|
||||
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
|
||||
}
|
||||
.carousel-control.left {
|
||||
background-image: -webkit-gradient(linear, 0% top, 100% top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
|
||||
background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.5) 0%), color-stop(rgba(0, 0, 0, 0.0001) 100%));
|
||||
background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
|
||||
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
|
||||
background-image: -webkit-gradient(linear, 0% top, 100% top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0)));
|
||||
background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0) 0%), color-stop(rgba(0, 0, 0, 0) 100%));
|
||||
background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
|
||||
background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#00000000', GradientType=1);
|
||||
}
|
||||
.carousel-control.right {
|
||||
left: auto;
|
||||
right: 0;
|
||||
background-image: -webkit-gradient(linear, 0% top, 100% top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
|
||||
background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0%), color-stop(rgba(0, 0, 0, 0.5) 100%));
|
||||
background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
|
||||
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
|
||||
background-image: -webkit-gradient(linear, 0% top, 100% top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0)));
|
||||
background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0) 0%), color-stop(rgba(0, 0, 0, 0) 100%));
|
||||
background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
|
||||
background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#00000000', GradientType=1);
|
||||
}
|
||||
.carousel-control:hover, .carousel-control:focus {
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
opacity: 0.9;
|
||||
filter: alpha(opacity=90);
|
||||
opacity: 0;
|
||||
filter: alpha(opacity=0);
|
||||
}
|
||||
.carousel-control .icon-prev,
|
||||
.carousel-control .icon-next,
|
||||
|
||||
@@ -9,14 +9,25 @@
|
||||
margin-bottom: 26px;
|
||||
}
|
||||
.content_scene_cat .content_scene_cat_bg {
|
||||
padding: 18px 0 10px 42px;
|
||||
background-color: #403d3b;
|
||||
padding: 18px 10px 10px 42px;
|
||||
background-color: #464646 !important;
|
||||
}
|
||||
@media (max-width: 1199px) {
|
||||
.content_scene_cat .content_scene_cat_bg {
|
||||
padding: 10px 10px 10px 15px;
|
||||
}
|
||||
}
|
||||
.content_scene_cat h1.category-name {
|
||||
font: 600 42px/51px "Open Sans", sans-serif;
|
||||
color: #fff;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
@media (max-width: 1199px) {
|
||||
.content_scene_cat h1.category-name {
|
||||
font-size: 25px;
|
||||
line-height: 30px;
|
||||
}
|
||||
}
|
||||
.content_scene_cat p {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
@@ -44,7 +55,7 @@
|
||||
************************************************************************************************ */
|
||||
#subcategories {
|
||||
border-top: 1px solid #d6d4d4;
|
||||
padding: 15px 0 13px 0;
|
||||
padding: 15px 0 0px 0;
|
||||
}
|
||||
#subcategories p.subcategory-heading {
|
||||
font-weight: bold;
|
||||
@@ -59,6 +70,8 @@
|
||||
width: 128px;
|
||||
margin-left: 20px;
|
||||
text-align: center;
|
||||
margin-bottom: 13px;
|
||||
height: 202px;
|
||||
}
|
||||
#subcategories ul li .subcategory-image {
|
||||
padding-bottom: 8px;
|
||||
|
||||
@@ -20,6 +20,7 @@
|
||||
-webkit-box-shadow: rgba(0, 0, 0, 0) 0px 5px 13px;
|
||||
-moz-box-shadow: rgba(0, 0, 0, 0) 0px 5px 13px;
|
||||
box-shadow: rgba(0, 0, 0, 0) 0px 5px 13px;
|
||||
/* min 992px max 1199px */
|
||||
}
|
||||
.contact-form-box fieldset {
|
||||
padding: 0 19px 21px 19px;
|
||||
@@ -36,9 +37,21 @@
|
||||
}
|
||||
.contact-form-box .col-md-3 {
|
||||
padding-left: 0;
|
||||
/* max 991px */
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
.contact-form-box .col-md-3 {
|
||||
padding-right: 0;
|
||||
}
|
||||
}
|
||||
.contact-form-box .col-md-9 {
|
||||
padding-right: 0;
|
||||
/* max 991px */
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
.contact-form-box .col-md-9 {
|
||||
padding-left: 0;
|
||||
}
|
||||
}
|
||||
.contact-form-box #desc_contact0 {
|
||||
display: none;
|
||||
@@ -56,6 +69,14 @@
|
||||
max-width: 270px;
|
||||
width: 100%;
|
||||
}
|
||||
.contact-form-box input.form-control {
|
||||
max-width: 270px;
|
||||
}
|
||||
@media (min-width: 992px) and (max-width: 1199px) {
|
||||
.contact-form-box div.uploader span.filename {
|
||||
width: 114px;
|
||||
}
|
||||
}
|
||||
|
||||
/**************************************************************************
|
||||
Contact Page Bottom Banners Styles
|
||||
|
||||
@@ -67,6 +67,9 @@ body {
|
||||
line-height: 18px;
|
||||
font-size: 13px;
|
||||
}
|
||||
body.content_only {
|
||||
background: none;
|
||||
}
|
||||
|
||||
textarea {
|
||||
resize: none;
|
||||
@@ -105,6 +108,11 @@ textarea {
|
||||
}
|
||||
|
||||
/* text **************************************************************************************** */
|
||||
a, a:focus, a:active {
|
||||
text-decoration: none;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
p.info-title {
|
||||
font-weight: bold;
|
||||
color: #333;
|
||||
@@ -128,11 +136,33 @@ p.info-account {
|
||||
}
|
||||
.alert ul, .alert ol {
|
||||
padding-left: 15px;
|
||||
margin-left: 27px;
|
||||
}
|
||||
.alert ul li, .alert ol li {
|
||||
list-style-type: decimal;
|
||||
font-weight: normal;
|
||||
}
|
||||
.alert.alert-success {
|
||||
text-shadow: 1px 1px rgba(0, 0, 0, 0);
|
||||
}
|
||||
.alert.alert-success:before {
|
||||
font-family: "FontAwesome";
|
||||
content: "";
|
||||
font-size: 20px;
|
||||
vertical-align: -2px;
|
||||
padding-right: 7px;
|
||||
}
|
||||
.alert.alert-danger {
|
||||
text-shadow: 1px 1px rgba(0, 0, 0, 0);
|
||||
}
|
||||
.alert.alert-danger:before {
|
||||
font-family: "FontAwesome";
|
||||
content: "";
|
||||
font-size: 20px;
|
||||
vertical-align: -2px;
|
||||
padding-right: 7px;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.required sup {
|
||||
color: #f13340;
|
||||
@@ -149,6 +179,13 @@ label {
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.checkbox {
|
||||
line-height: 16px;
|
||||
}
|
||||
.checkbox label {
|
||||
color: #777777;
|
||||
}
|
||||
|
||||
.close {
|
||||
opacity: 1;
|
||||
}
|
||||
@@ -173,6 +210,8 @@ span.exclusive_mini, span.exclusive_small, span.exclusive, span.exclusive_large,
|
||||
color: #000;
|
||||
background: url(../img/bg_bt.gif) repeat-x 0 0 #f4b61b;
|
||||
cursor: pointer;
|
||||
white-space: normal;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
*:first-child + html input.button_mini, *:first-child + html input.button_small, *:first-child + html input.button, *:first-child + html input.button_large,
|
||||
@@ -318,16 +357,36 @@ input.button_large, input.button_large_disabled, input.exclusive_large, input.ex
|
||||
padding: 10px 10px 10px 14px;
|
||||
border: 1px solid;
|
||||
border-color: #74d578;
|
||||
/* max 480px */
|
||||
}
|
||||
@media (max-width: 480px) {
|
||||
.button.button-medium span {
|
||||
font-size: 15px;
|
||||
padding-right: 7px;
|
||||
padding-left: 7px;
|
||||
}
|
||||
}
|
||||
.button.button-medium i.left {
|
||||
font-size: 24px;
|
||||
vertical-align: -2px;
|
||||
margin: -4px 10px 0 0;
|
||||
display: inline-block;
|
||||
/* max 480px */
|
||||
}
|
||||
@media (max-width: 480px) {
|
||||
.button.button-medium i.left {
|
||||
margin-right: 5px;
|
||||
}
|
||||
}
|
||||
.button.button-medium i.right {
|
||||
margin-right: 0;
|
||||
margin-left: 9px;
|
||||
/* max 480px */
|
||||
}
|
||||
@media (max-width: 480px) {
|
||||
.button.button-medium i.right {
|
||||
margin-left: 5px;
|
||||
}
|
||||
}
|
||||
.button.button-medium:hover {
|
||||
background: #3aa04c;
|
||||
@@ -441,6 +500,14 @@ input.button_large, input.button_large_disabled, input.exclusive_large, input.ex
|
||||
background: -ms-linear-gradient(top, #f7f7f7 0%, #ededed 100%);
|
||||
background: linear-gradient(to bottom, #f7f7f7 0%, #ededed 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f7f7f7', endColorstr='#ededed',GradientType=0 );
|
||||
/* max 480px */
|
||||
}
|
||||
@media (max-width: 480px) {
|
||||
.button.exclusive-medium span {
|
||||
font-size: 15px;
|
||||
padding-right: 7px;
|
||||
padding-left: 7px;
|
||||
}
|
||||
}
|
||||
.button.exclusive-medium:hover {
|
||||
border-color: #9e9e9e #c2c2c2 #c8c8c8 #c2c2c2;
|
||||
@@ -634,6 +701,10 @@ table.table_block td {
|
||||
padding: 0 5px 0 3px;
|
||||
display: inline-block;
|
||||
}
|
||||
.price-percent-reduction.small {
|
||||
font: 700 14px/17px Arial, Helvetica, sans-serif;
|
||||
padding: 1px 6px;
|
||||
}
|
||||
|
||||
/***************************************************************************************************
|
||||
Labels New/Sale
|
||||
@@ -781,9 +852,34 @@ table.table_block td {
|
||||
padding: 9px 10px 9px 20px;
|
||||
}
|
||||
.box.box-small .dark {
|
||||
margin-top: 10px;
|
||||
padding-top: 10px;
|
||||
padding-right: 20px;
|
||||
margin-bottom: 0;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.page-product-box {
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
|
||||
.product-box {
|
||||
width: 178px;
|
||||
float: left;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.product-box .product-image {
|
||||
border: 1px solid #d6d4d4;
|
||||
background: white;
|
||||
padding: 5px;
|
||||
display: block;
|
||||
margin-bottom: 11px;
|
||||
}
|
||||
.product-box .product-image img {
|
||||
max-width: 100%;
|
||||
width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
/* BLOCK .block ******************************************************************************** */
|
||||
@@ -973,6 +1069,7 @@ table.table_block td {
|
||||
padding: 0px 0px 17px 0px;
|
||||
margin-bottom: 30px;
|
||||
border-bottom: 1px solid #d6d4d4;
|
||||
overflow: hidden;
|
||||
}
|
||||
.page-heading span.heading-counter {
|
||||
font: bold 13px/22px Arial, Helvetica, sans-serif;
|
||||
@@ -980,6 +1077,16 @@ table.table_block td {
|
||||
color: #333;
|
||||
text-transform: none;
|
||||
}
|
||||
@media (max-width: 480px) {
|
||||
.page-heading span.heading-counter {
|
||||
float: none;
|
||||
display: block;
|
||||
padding-top: 5px;
|
||||
}
|
||||
}
|
||||
.page-heading span.lighter {
|
||||
color: #9c9c9c;
|
||||
}
|
||||
.page-heading.bottom-indent {
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
@@ -1000,9 +1107,24 @@ table.table_block td {
|
||||
border-bottom: 1px solid #d6d4d4;
|
||||
}
|
||||
|
||||
h3.page-product-heading {
|
||||
color: #555454;
|
||||
text-transform: uppercase;
|
||||
font-family: "Open Sans", sans-serif;
|
||||
font-weight: 600;
|
||||
font-size: 18px;
|
||||
line-height: 20px;
|
||||
padding: 14px 20px 17px;
|
||||
margin: 0 0 20px;
|
||||
position: relative;
|
||||
border: 1px solid #d6d4d4;
|
||||
border-bottom: none;
|
||||
background: #fbfbfb;
|
||||
}
|
||||
|
||||
/* BLOCK .footer_links (cms pages) ************************************************************* */
|
||||
ul.footer_links {
|
||||
padding: 20px 0 50px 0;
|
||||
padding: 20px 0 0px 0;
|
||||
border-top: 1px solid #d6d4d4;
|
||||
}
|
||||
ul.footer_links li {
|
||||
@@ -1024,8 +1146,14 @@ ul.footer_links li + li {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.content_sortPagiBar .sortPagiBar #productsSortForm select {
|
||||
width: 192px;
|
||||
max-width: 192px;
|
||||
float: left;
|
||||
/* max 991px */
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
.content_sortPagiBar .sortPagiBar #productsSortForm select {
|
||||
max-width: 160px;
|
||||
}
|
||||
}
|
||||
.content_sortPagiBar .sortPagiBar #productsSortForm .selector {
|
||||
float: left;
|
||||
@@ -1034,7 +1162,7 @@ ul.footer_links li + li {
|
||||
float: left;
|
||||
}
|
||||
.content_sortPagiBar .sortPagiBar .nbrItemPage select {
|
||||
width: 59px;
|
||||
max-width: 59px;
|
||||
float: left;
|
||||
}
|
||||
.content_sortPagiBar .sortPagiBar .nbrItemPage .clearfix > span {
|
||||
@@ -1098,10 +1226,35 @@ ul.footer_links li + li {
|
||||
float: right;
|
||||
width: 530px;
|
||||
text-align: center;
|
||||
/* min 992px max 1199px */
|
||||
/* max 991px */
|
||||
}
|
||||
@media (min-width: 992px) and (max-width: 1199px) {
|
||||
.top-pagination-content div.pagination, .bottom-pagination-content div.pagination {
|
||||
width: 380px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
.top-pagination-content div.pagination, .bottom-pagination-content div.pagination {
|
||||
float: left;
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
.top-pagination-content div.pagination .showall, .bottom-pagination-content div.pagination .showall {
|
||||
float: right;
|
||||
margin: 8px 53px 8px 14px;
|
||||
/* min 992px max 1199px */
|
||||
/* max 991px */
|
||||
}
|
||||
@media (min-width: 992px) and (max-width: 1199px) {
|
||||
.top-pagination-content div.pagination .showall, .bottom-pagination-content div.pagination .showall {
|
||||
margin-right: 11px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
.top-pagination-content div.pagination .showall, .bottom-pagination-content div.pagination .showall {
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
.top-pagination-content div.pagination .showall .btn span, .bottom-pagination-content div.pagination .showall .btn span {
|
||||
font-size: 13px;
|
||||
@@ -1162,12 +1315,26 @@ ul.footer_links li + li {
|
||||
}
|
||||
.top-pagination-content .compare-form, .bottom-pagination-content .compare-form {
|
||||
float: right;
|
||||
/* max 479px */
|
||||
}
|
||||
@media (max-width: 479px) {
|
||||
.top-pagination-content .compare-form, .bottom-pagination-content .compare-form {
|
||||
float: left;
|
||||
width: 100%;
|
||||
text-align: left;
|
||||
padding-bottom: 10px;
|
||||
clear: both;
|
||||
}
|
||||
}
|
||||
.top-pagination-content .product-count, .bottom-pagination-content .product-count {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
padding: 22px 0 0 0;
|
||||
padding: 11px 0 0 0;
|
||||
float: left;
|
||||
/* max 991px */
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
.top-pagination-content .product-count, .bottom-pagination-content .product-count {
|
||||
clear: left;
|
||||
}
|
||||
}
|
||||
|
||||
.bottom-pagination-content {
|
||||
@@ -1178,11 +1345,16 @@ ul.footer_links li + li {
|
||||
ul.step {
|
||||
margin-bottom: 30px;
|
||||
overflow: hidden;
|
||||
-webkit-border-radius: 4px;
|
||||
-moz-border-radius: 4px;
|
||||
-ms-border-radius: 4px;
|
||||
-o-border-radius: 4px;
|
||||
border-radius: 4px;
|
||||
/*min 480px*/
|
||||
}
|
||||
@media (min-width: 480px) {
|
||||
ul.step {
|
||||
-webkit-border-radius: 4px;
|
||||
-moz-border-radius: 4px;
|
||||
-ms-border-radius: 4px;
|
||||
-o-border-radius: 4px;
|
||||
border-radius: 4px;
|
||||
}
|
||||
}
|
||||
ul.step li {
|
||||
float: left;
|
||||
@@ -1193,6 +1365,13 @@ ul.step li {
|
||||
border-bottom-color: #9a9a9a;
|
||||
border-right-color: #b7b7b7;
|
||||
border-left-width: 0px;
|
||||
/* max 480px */
|
||||
}
|
||||
@media (max-width: 479px) {
|
||||
ul.step li {
|
||||
width: 100%;
|
||||
border-left-width: 1px;
|
||||
}
|
||||
}
|
||||
ul.step li a, ul.step li span, ul.step li.step_current span, ul.step li.step_current_end span {
|
||||
display: block;
|
||||
@@ -1203,18 +1382,21 @@ ul.step li a, ul.step li span, ul.step li.step_current span, ul.step li.step_cur
|
||||
font-weight: bold;
|
||||
text-shadow: 1px 1px white;
|
||||
position: relative;
|
||||
/* min 991px */
|
||||
}
|
||||
ul.step li a:after, ul.step li span:after, ul.step li.step_current span:after, ul.step li.step_current_end span:after {
|
||||
content: ".";
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: -31px;
|
||||
z-index: 0;
|
||||
text-indent: -5000px;
|
||||
display: block;
|
||||
width: 31px;
|
||||
height: 52px;
|
||||
margin-top: -2px;
|
||||
@media (min-width: 992px) {
|
||||
ul.step li a:after, ul.step li span:after, ul.step li.step_current span:after, ul.step li.step_current_end span:after {
|
||||
content: ".";
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: -31px;
|
||||
z-index: 0;
|
||||
text-indent: -5000px;
|
||||
display: block;
|
||||
width: 31px;
|
||||
height: 52px;
|
||||
margin-top: -2px;
|
||||
}
|
||||
}
|
||||
ul.step li a:focus, ul.step li span:focus, ul.step li.step_current span:focus, ul.step li.step_current_end span:focus {
|
||||
text-decoration: none;
|
||||
@@ -1223,22 +1405,32 @@ ul.step li a:focus, ul.step li span:focus, ul.step li.step_current span:focus, u
|
||||
ul.step li.first {
|
||||
border-left-width: 1px;
|
||||
border-left-color: #b7b7b7;
|
||||
-moz-border-radius-topleft: 4px;
|
||||
-webkit-border-top-left-radius: 4px;
|
||||
border-top-left-radius: 4px;
|
||||
-moz-border-radius-bottomleft: 4px;
|
||||
-webkit-border-bottom-left-radius: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
/*min 480px*/
|
||||
}
|
||||
@media (min-width: 480px) {
|
||||
ul.step li.first {
|
||||
-moz-border-radius-topleft: 4px;
|
||||
-webkit-border-top-left-radius: 4px;
|
||||
border-top-left-radius: 4px;
|
||||
-moz-border-radius-bottomleft: 4px;
|
||||
-webkit-border-bottom-left-radius: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
}
|
||||
}
|
||||
ul.step li.first span, ul.step li.first a {
|
||||
-moz-border-radius-topleft: 4px;
|
||||
-webkit-border-top-left-radius: 4px;
|
||||
border-top-left-radius: 4px;
|
||||
-moz-border-radius-bottomleft: 4px;
|
||||
-webkit-border-bottom-left-radius: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
z-index: 5;
|
||||
padding-left: 13px !important;
|
||||
/*min 480px*/
|
||||
}
|
||||
@media (min-width: 480px) {
|
||||
ul.step li.first span, ul.step li.first a {
|
||||
-moz-border-radius-topleft: 4px;
|
||||
-webkit-border-top-left-radius: 4px;
|
||||
border-top-left-radius: 4px;
|
||||
-moz-border-radius-bottomleft: 4px;
|
||||
-webkit-border-bottom-left-radius: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
}
|
||||
}
|
||||
ul.step li.second span, ul.step li.second a {
|
||||
z-index: 4;
|
||||
@@ -1250,22 +1442,29 @@ ul.step li.four span, ul.step li.four a {
|
||||
z-index: 2;
|
||||
}
|
||||
ul.step li.last {
|
||||
-moz-border-radius-topright: 4px;
|
||||
-webkit-border-top-right-radius: 4px;
|
||||
border-top-right-radius: 4px;
|
||||
-moz-border-radius-bottomright: 4px;
|
||||
-webkit-border-bottom-right-radius: 4px;
|
||||
border-bottom-right-radius: 4px;
|
||||
/*min 480px*/
|
||||
}
|
||||
ul.step li.last span {
|
||||
-moz-border-radius-topright: 4px;
|
||||
-webkit-border-top-right-radius: 4px;
|
||||
border-top-right-radius: 4px;
|
||||
-moz-border-radius-bottomright: 4px;
|
||||
-webkit-border-bottom-right-radius: 4px;
|
||||
border-bottom-right-radius: 4px;
|
||||
z-index: 1;
|
||||
}
|
||||
@media (min-width: 480px) {
|
||||
ul.step li.last {
|
||||
-moz-border-radius-topright: 4px;
|
||||
-webkit-border-top-right-radius: 4px;
|
||||
border-top-right-radius: 4px;
|
||||
-moz-border-radius-bottomright: 4px;
|
||||
-webkit-border-bottom-right-radius: 4px;
|
||||
border-bottom-right-radius: 4px;
|
||||
}
|
||||
ul.step li.last span {
|
||||
-moz-border-radius-topright: 4px;
|
||||
-webkit-border-top-right-radius: 4px;
|
||||
border-top-right-radius: 4px;
|
||||
-moz-border-radius-bottomright: 4px;
|
||||
-webkit-border-bottom-right-radius: 4px;
|
||||
border-bottom-right-radius: 4px;
|
||||
}
|
||||
}
|
||||
ul.step li.step_current {
|
||||
font-weight: bold;
|
||||
background: #42b856;
|
||||
@@ -1284,10 +1483,15 @@ ul.step li.step_current span {
|
||||
border: 1px solid;
|
||||
border-color: #73ca77 #74c776 #74c175 #74c776;
|
||||
position: relative;
|
||||
padding-left: 38px;
|
||||
/* min 991px */
|
||||
}
|
||||
ul.step li.step_current span:after {
|
||||
background: url(../img/order-step-a.png) right 0 no-repeat;
|
||||
@media (min-width: 992px) {
|
||||
ul.step li.step_current span {
|
||||
padding-left: 38px;
|
||||
}
|
||||
ul.step li.step_current span:after {
|
||||
background: url(../img/order-step-a.png) right 0 no-repeat;
|
||||
}
|
||||
}
|
||||
ul.step li.step_current_end {
|
||||
font-weight: bold;
|
||||
@@ -1305,11 +1509,16 @@ ul.step li.step_todo span {
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f7f7f7', endColorstr='#ededed',GradientType=0 );
|
||||
border: 1px solid;
|
||||
border-color: #fff;
|
||||
padding-left: 38px;
|
||||
position: relative;
|
||||
/* min 991px */
|
||||
}
|
||||
ul.step li.step_todo span:after {
|
||||
background: url(../img/order-step-current.png) right 0 no-repeat;
|
||||
@media (min-width: 992px) {
|
||||
ul.step li.step_todo span {
|
||||
padding-left: 38px;
|
||||
}
|
||||
ul.step li.step_todo span:after {
|
||||
background: url(../img/order-step-current.png) right 0 no-repeat;
|
||||
}
|
||||
}
|
||||
ul.step li.step_done {
|
||||
border-color: #666666 #5f5f5f #292929 #5f5f5f;
|
||||
@@ -1327,16 +1536,40 @@ ul.step li.step_done a {
|
||||
background: -ms-linear-gradient(top, #727171 0%, #666666 100%);
|
||||
background: linear-gradient(to bottom, #727171 0%, #666666 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#727171', endColorstr='#666666',GradientType=0 );
|
||||
padding-left: 38px;
|
||||
/* min 991px */
|
||||
}
|
||||
ul.step li.step_done a:after {
|
||||
background: url(../img/order-step-done.png) right 0 no-repeat;
|
||||
@media (min-width: 992px) {
|
||||
ul.step li.step_done a {
|
||||
padding-left: 38px;
|
||||
}
|
||||
ul.step li.step_done a:after {
|
||||
background: url(../img/order-step-done.png) right 0 no-repeat;
|
||||
}
|
||||
}
|
||||
ul.step li.step_done.step_done_last a:after {
|
||||
background: url(../img/order-step-done-last.png) right 0 no-repeat;
|
||||
ul.step li.step_done.step_done_last {
|
||||
/* min 991px */
|
||||
}
|
||||
ul.step li#step_end span:after {
|
||||
display: none;
|
||||
@media (min-width: 992px) {
|
||||
ul.step li.step_done.step_done_last a:after {
|
||||
background: url(../img/order-step-done-last.png) right 0 no-repeat;
|
||||
}
|
||||
}
|
||||
ul.step li#step_end span {
|
||||
/* min 991px */
|
||||
}
|
||||
@media (min-width: 992px) {
|
||||
ul.step li#step_end span:after {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
ul.step li em {
|
||||
font-style: normal;
|
||||
/* min 480px max 767px */
|
||||
}
|
||||
@media (min-width: 480px) and (max-width: 767px) {
|
||||
ul.step li em {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
/* module productcomments ********************************************************************** */
|
||||
@@ -1371,7 +1604,7 @@ ul.step li#step_end span:after {
|
||||
}
|
||||
|
||||
.star, .star a {
|
||||
background: url(modules/productcomments/img/star.gif) no-repeat 0 0;
|
||||
background: url(modules/productcomments/img/star.png) no-repeat 0 0;
|
||||
}
|
||||
|
||||
.cancel a, .star a {
|
||||
@@ -1393,12 +1626,6 @@ div.star_hover a, div.star a:hover {
|
||||
margin: 10px 0 10px 0;
|
||||
}
|
||||
|
||||
.pack_price {
|
||||
float: right;
|
||||
margin-right: 3px;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.confirmation {
|
||||
margin: 0 0 10px;
|
||||
padding: 10px;
|
||||
@@ -1824,6 +2051,13 @@ div.star_hover a, div.star a:hover {
|
||||
-moz-box-shadow: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
@media (max-width: 480px) {
|
||||
.cart_navigation > span {
|
||||
display: block;
|
||||
width: 100%;
|
||||
padding-bottom: 15px;
|
||||
}
|
||||
}
|
||||
|
||||
/* step 1 - cart ******************************************************************************* */
|
||||
.cart_last_product {
|
||||
@@ -1879,12 +2113,23 @@ a.price_discount_delete:hover {
|
||||
#cart_summary tbody td.cart_product img {
|
||||
border: 1px solid #d6d4d4;
|
||||
}
|
||||
#cart_summary tbody td.cart_unit {
|
||||
text-align: center;
|
||||
}
|
||||
#cart_summary tbody td.cart_unit .price span {
|
||||
display: block;
|
||||
}
|
||||
#cart_summary tbody td.cart_unit .price span.price-percent-reduction {
|
||||
margin: 5px auto;
|
||||
display: inline-block;
|
||||
}
|
||||
#cart_summary tbody td.cart_unit .price span.old-price {
|
||||
text-decoration: line-through;
|
||||
}
|
||||
#cart_summary tbody td.cart_description small {
|
||||
display: block;
|
||||
padding: 5px 0 0 0;
|
||||
}
|
||||
#cart_summary tfoot td.text-right {
|
||||
font-weight: bold;
|
||||
color: #333;
|
||||
@@ -2088,6 +2333,9 @@ table#cart_summary .gift-icon {
|
||||
.order_carrier_content .delivery_options_address .carrier_title {
|
||||
margin-bottom: 17px;
|
||||
}
|
||||
.order_carrier_content + div {
|
||||
padding-bottom: 15px;
|
||||
}
|
||||
|
||||
#carrierTable {
|
||||
border: 1px solid #999;
|
||||
@@ -2250,11 +2498,24 @@ p.cheque-indent {
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
#address .form-group .form-control, #identity .form-group .form-control, #account-creation_form .form-group .form-control, #new_account_form .form-group .form-control, #opc_account_form .form-group .form-control, #authentication .form-group .form-control {
|
||||
width: 271px;
|
||||
max-width: 271px;
|
||||
}
|
||||
#address .form-group#adress_alias, #identity .form-group#adress_alias, #account-creation_form .form-group#adress_alias, #new_account_form .form-group#adress_alias, #opc_account_form .form-group#adress_alias, #authentication .form-group#adress_alias {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
#address .form-group.phone-number, #identity .form-group.phone-number, #account-creation_form .form-group.phone-number, #new_account_form .form-group.phone-number, #opc_account_form .form-group.phone-number, #authentication .form-group.phone-number {
|
||||
float: left;
|
||||
width: 270px;
|
||||
margin-right: 13px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
#address .form-group.phone-number + p, #identity .form-group.phone-number + p, #account-creation_form .form-group.phone-number + p, #new_account_form .form-group.phone-number + p, #opc_account_form .form-group.phone-number + p, #authentication .form-group.phone-number + p {
|
||||
padding: 23px 0 0 0px;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
#identity #center_column form.std .row, #authentication #center_column form.std .row, #order-opc #center_column form.std .row {
|
||||
margin-left: -5px;
|
||||
@@ -2263,10 +2524,10 @@ p.cheque-indent {
|
||||
#identity #center_column form.std .row .col-xs-4, #authentication #center_column form.std .row .col-xs-4, #order-opc #center_column form.std .row .col-xs-4 {
|
||||
padding-left: 5px;
|
||||
padding-right: 5px;
|
||||
width: 94px;
|
||||
max-width: 94px;
|
||||
}
|
||||
#identity #center_column form.std .row .col-xs-4 .form-control, #authentication #center_column form.std .row .col-xs-4 .form-control, #order-opc #center_column form.std .row .col-xs-4 .form-control {
|
||||
width: 84px;
|
||||
max-width: 84px;
|
||||
}
|
||||
#identity #center_column .footer_links, #authentication #center_column .footer_links, #order-opc #center_column .footer_links {
|
||||
border: none;
|
||||
@@ -2342,6 +2603,12 @@ p.cheque-indent {
|
||||
#manufacturers_list.list li .mansup-container, #suppliers_list.list li .mansup-container {
|
||||
border-top: 1px solid #d6d4d4;
|
||||
padding: 31px 0 30px 0;
|
||||
/* < 768 */
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
#manufacturers_list.list li .mansup-container, #suppliers_list.list li .mansup-container {
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
#manufacturers_list.list li:first-child .mansup-container, #suppliers_list.list li:first-child .mansup-container {
|
||||
border-top: 0;
|
||||
@@ -2355,16 +2622,42 @@ p.cheque-indent {
|
||||
}
|
||||
#manufacturers_list.list li .middle-side, #suppliers_list.list li .middle-side {
|
||||
padding-left: 0;
|
||||
/* < 768 */
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
#manufacturers_list.list li .middle-side, #suppliers_list.list li .middle-side {
|
||||
padding-right: 15px;
|
||||
padding-left: 15px;
|
||||
}
|
||||
}
|
||||
#manufacturers_list.list li .right-side-content, #suppliers_list.list li .right-side-content {
|
||||
border-left: 1px solid #d6d4d4;
|
||||
padding: 0 0 32px 31px;
|
||||
min-height: 108px;
|
||||
/* < 768 */
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
#manufacturers_list.list li .right-side-content, #suppliers_list.list li .right-side-content {
|
||||
min-height: 1px;
|
||||
padding: 0;
|
||||
border: none;
|
||||
}
|
||||
}
|
||||
#manufacturers_list.list li .right-side-content .product-counter, #suppliers_list.list li .right-side-content .product-counter {
|
||||
position: relative;
|
||||
top: -6px;
|
||||
margin-bottom: 12px;
|
||||
/* < 768 */
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
#manufacturers_list.list li .right-side-content .product-counter, #suppliers_list.list li .right-side-content .product-counter {
|
||||
top: 0;
|
||||
}
|
||||
}
|
||||
#manufacturers_list.grid, #suppliers_list.grid {
|
||||
/* > 1199 */
|
||||
/*768 -> 1199*/
|
||||
/*< 768 */
|
||||
}
|
||||
#manufacturers_list.grid li, #suppliers_list.grid li {
|
||||
text-align: center;
|
||||
@@ -2383,11 +2676,26 @@ p.cheque-indent {
|
||||
#manufacturers_list.grid li .product-container .product-counter, #suppliers_list.grid li .product-container .product-counter {
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
#manufacturers_list.grid li.first-in-line, #suppliers_list.grid li.first-in-line {
|
||||
clear: left;
|
||||
@media (min-width: 1200px) {
|
||||
#manufacturers_list.grid li.first-in-line, #suppliers_list.grid li.first-in-line {
|
||||
clear: left;
|
||||
}
|
||||
#manufacturers_list.grid li.last-line .product-container, #suppliers_list.grid li.last-line .product-container {
|
||||
border-bottom: none;
|
||||
}
|
||||
}
|
||||
#manufacturers_list.grid li.last-line .product-container, #suppliers_list.grid li.last-line .product-container {
|
||||
border-bottom: none;
|
||||
@media (min-width: 768px) and (max-width: 1199px) {
|
||||
#manufacturers_list.grid li.first-item-of-tablet-line, #suppliers_list.grid li.first-item-of-tablet-line {
|
||||
clear: left;
|
||||
}
|
||||
#manufacturers_list.grid li.last-tablet-line .product-container, #suppliers_list.grid li.last-tablet-line .product-container {
|
||||
border-bottom: none;
|
||||
}
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
#manufacturers_list.grid li.item-last .product-container, #suppliers_list.grid li.item-last .product-container {
|
||||
border-bottom: none;
|
||||
}
|
||||
}
|
||||
|
||||
#manufacturer .description_box, #supplier .description_box {
|
||||
@@ -2400,12 +2708,43 @@ p.cheque-indent {
|
||||
}
|
||||
#manufacturer .bottom-pagination-content, #manufacturer .top-pagination-content, #supplier .bottom-pagination-content, #supplier .top-pagination-content {
|
||||
min-height: 69px;
|
||||
/* < 480*/
|
||||
}
|
||||
#manufacturer .bottom-pagination-content #pagination, #manufacturer .top-pagination-content #pagination, #supplier .bottom-pagination-content #pagination, #supplier .top-pagination-content #pagination {
|
||||
/* 480 -> 1199 */
|
||||
}
|
||||
@media (min-width: 480px) and (max-width: 1199px) {
|
||||
#manufacturer .bottom-pagination-content #pagination, #manufacturer .top-pagination-content #pagination, #supplier .bottom-pagination-content #pagination, #supplier .top-pagination-content #pagination {
|
||||
width: auto;
|
||||
text-align: right;
|
||||
}
|
||||
}
|
||||
#manufacturer .bottom-pagination-content #pagination .showall, #manufacturer .top-pagination-content #pagination .showall, #supplier .bottom-pagination-content #pagination .showall, #supplier .top-pagination-content #pagination .showall {
|
||||
margin-right: 201px;
|
||||
margin-right: 0;
|
||||
/* > 1199 */
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
#manufacturer .bottom-pagination-content #pagination .showall, #manufacturer .top-pagination-content #pagination .showall, #supplier .bottom-pagination-content #pagination .showall, #supplier .top-pagination-content #pagination .showall {
|
||||
margin-right: 201px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 480px) {
|
||||
#manufacturer .bottom-pagination-content .product-count, #manufacturer .bottom-pagination-content #pagination, #manufacturer .top-pagination-content .product-count, #manufacturer .top-pagination-content #pagination, #supplier .bottom-pagination-content .product-count, #supplier .bottom-pagination-content #pagination, #supplier .top-pagination-content .product-count, #supplier .top-pagination-content #pagination {
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
#manufacturer .bottom-pagination-content .product-count .showall, #manufacturer .bottom-pagination-content #pagination .showall, #manufacturer .top-pagination-content .product-count .showall, #manufacturer .top-pagination-content #pagination .showall, #supplier .bottom-pagination-content .product-count .showall, #supplier .bottom-pagination-content #pagination .showall, #supplier .top-pagination-content .product-count .showall, #supplier .top-pagination-content #pagination .showall {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
#manufacturer .top-pagination-content.bottom-line, #supplier .top-pagination-content.bottom-line {
|
||||
border-bottom: 1px solid #d6d4d4;
|
||||
/* < 767 */
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
#manufacturer .top-pagination-content.bottom-line, #supplier .top-pagination-content.bottom-line {
|
||||
border-top: 1px solid #d6d4d4;
|
||||
}
|
||||
}
|
||||
|
||||
/*****************************************************************************************************
|
||||
@@ -2426,8 +2765,27 @@ table.discount i.icon-remove {
|
||||
/*****************************************************************************************************
|
||||
GUEST TRACKING
|
||||
******************************************************************************************************/
|
||||
#guestTracking {
|
||||
/* > 1200px */
|
||||
}
|
||||
#guestTracking .form-control {
|
||||
width: 271px;
|
||||
max-width: 271px;
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
#guestTracking .form-group {
|
||||
overflow: hidden;
|
||||
}
|
||||
#guestTracking .form-group i {
|
||||
padding-left: 10px;
|
||||
}
|
||||
#guestTracking .form-control {
|
||||
float: left;
|
||||
}
|
||||
#guestTracking label {
|
||||
float: left;
|
||||
clear: both;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
/*****************************************************************************************************
|
||||
@@ -2468,10 +2826,22 @@ table.discount i.icon-remove {
|
||||
#pagenotfound .pagenotfound label {
|
||||
font-weight: normal;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
#pagenotfound .pagenotfound label {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
#pagenotfound .pagenotfound .form-control {
|
||||
max-width: 293px;
|
||||
display: inline-block;
|
||||
margin-right: 5px;
|
||||
/* max 767px */
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
#pagenotfound .pagenotfound .form-control {
|
||||
margin: 0 auto 15px auto;
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
#pagenotfound .pagenotfound .buttons {
|
||||
padding: 48px 0 20px 0;
|
||||
@@ -2605,7 +2975,7 @@ form#sendComment h3 {
|
||||
}
|
||||
|
||||
.star, .star a {
|
||||
background: url(modules/productcomments/img/star.gif) no-repeat 0 0;
|
||||
background: url(modules/productcomments/img/star.png) no-repeat 0 0;
|
||||
}
|
||||
|
||||
div.star_on a {
|
||||
@@ -2662,7 +3032,7 @@ div.star_hover a, div.star a:hover {
|
||||
float: left;
|
||||
}
|
||||
.radio-inline .checker span, .checkbox .checker span {
|
||||
top: 3px;
|
||||
top: 0px;
|
||||
}
|
||||
.radio-inline div.radio, .checkbox div.radio {
|
||||
display: inline-block;
|
||||
@@ -2671,3 +3041,26 @@ div.star_hover a, div.star a:hover {
|
||||
float: left;
|
||||
top: 0px;
|
||||
}
|
||||
|
||||
.fancybox-skin {
|
||||
background: #fff !important;
|
||||
}
|
||||
|
||||
.fancybox-skin .fancybox-close {
|
||||
top: 8px;
|
||||
right: 8px;
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
background: none;
|
||||
font-size: 28px;
|
||||
line-height: 28px;
|
||||
color: #333333;
|
||||
text-align: center;
|
||||
}
|
||||
.fancybox-skin .fancybox-close:hover {
|
||||
color: #515151;
|
||||
}
|
||||
.fancybox-skin .fancybox-close:after {
|
||||
content: "";
|
||||
font-family: "FontAwesome";
|
||||
}
|
||||
|
||||
@@ -0,0 +1,61 @@
|
||||
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic,800,800italic);
|
||||
.footable {
|
||||
width: 100%;
|
||||
}
|
||||
.footable.breakpoint > tbody > tr.footable-detail-show > td {
|
||||
border-bottom: none;
|
||||
}
|
||||
.footable.breakpoint > tbody > tr.footable-detail-show > td > span.footable-toggle:before {
|
||||
font-family: "FontAwesome";
|
||||
content: "";
|
||||
}
|
||||
.footable.breakpoint > tbody > tr:hover:not(.footable-row-detail) {
|
||||
cursor: pointer;
|
||||
}
|
||||
.footable.breakpoint > tbody > tr > td.footable-cell-detail {
|
||||
background: #eee;
|
||||
border-top: none;
|
||||
}
|
||||
.footable.breakpoint > tbody > tr > td > span.footable-toggle {
|
||||
display: inline-block;
|
||||
font-family: "FontAwesome";
|
||||
speak: none;
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
font-variant: normal;
|
||||
text-transform: none;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
padding-right: 5px;
|
||||
font-size: 14px;
|
||||
}
|
||||
.footable.breakpoint > tbody > tr > td > span.footable-toggle:before {
|
||||
font-family: "FontAwesome";
|
||||
content: "";
|
||||
}
|
||||
.footable.breakpoint.toggle-medium > tbody > tr > td > span.footable-toggle {
|
||||
font-size: 18px;
|
||||
}
|
||||
.footable.breakpoint.toggle-large > tbody > tr > td > span.footable-toggle {
|
||||
font-size: 24px;
|
||||
}
|
||||
.footable .footable-row-detail-inner {
|
||||
display: table;
|
||||
}
|
||||
.footable .footable-row-detail-row {
|
||||
display: table-row;
|
||||
line-height: 1.5em;
|
||||
}
|
||||
.footable .footable-row-detail-group {
|
||||
display: block;
|
||||
line-height: 2em;
|
||||
font-size: 1.2em;
|
||||
font-weight: bold;
|
||||
}
|
||||
.footable .footable-row-detail-name {
|
||||
display: table-cell;
|
||||
font-weight: bold;
|
||||
padding-right: 0.5em;
|
||||
}
|
||||
.footable .footable-row-detail-value {
|
||||
display: table-cell;
|
||||
}
|
||||
@@ -0,0 +1,181 @@
|
||||
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic,800,800italic);
|
||||
/**
|
||||
* BxSlider v4.0 - Fully loaded, responsive content slider
|
||||
* http://bxslider.com
|
||||
*
|
||||
* Written by: Steven Wanderski, 2012
|
||||
* http://stevenwanderski.com
|
||||
* (while drinking Belgian ales and listening to jazz)
|
||||
*
|
||||
* CEO and founder of bxCreative, LTD
|
||||
* http://bxcreative.com
|
||||
*/
|
||||
#crossselling_list, .accessories-block .block_content, #productscategory_list {
|
||||
/** RESET AND LAYOUT
|
||||
===================================*/
|
||||
/** THEME
|
||||
===================================*/
|
||||
/* LOADER */
|
||||
/* PAGER */
|
||||
/* DIRECTION CONTROLS (NEXT / PREV) */
|
||||
/* AUTO CONTROLS (START / STOP) */
|
||||
/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */
|
||||
/* IMAGE CAPTIONS */
|
||||
}
|
||||
#crossselling_list .bx-wrapper, .accessories-block .block_content .bx-wrapper, #productscategory_list .bx-wrapper {
|
||||
position: relative;
|
||||
padding: 0;
|
||||
*zoom: 1;
|
||||
margin: 0 !important;
|
||||
}
|
||||
#crossselling_list .bx-wrapper img, .accessories-block .block_content .bx-wrapper img, #productscategory_list .bx-wrapper img {
|
||||
max-width: 100%;
|
||||
display: block;
|
||||
}
|
||||
#crossselling_list .bx-wrapper .bx-pager,
|
||||
#crossselling_list .bx-wrapper .bx-controls-auto, .accessories-block .block_content .bx-wrapper .bx-pager,
|
||||
.accessories-block .block_content .bx-wrapper .bx-controls-auto, #productscategory_list .bx-wrapper .bx-pager,
|
||||
#productscategory_list .bx-wrapper .bx-controls-auto {
|
||||
position: absolute;
|
||||
bottom: -30px;
|
||||
width: 100%;
|
||||
}
|
||||
#crossselling_list .bx-wrapper .bx-loading, .accessories-block .block_content .bx-wrapper .bx-loading, #productscategory_list .bx-wrapper .bx-loading {
|
||||
min-height: 50px;
|
||||
background: url(images/bx_loader.gif) center center no-repeat;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: 2000;
|
||||
display: none;
|
||||
}
|
||||
#crossselling_list .bx-wrapper .bx-pager, .accessories-block .block_content .bx-wrapper .bx-pager, #productscategory_list .bx-wrapper .bx-pager {
|
||||
text-align: center;
|
||||
font-size: .85em;
|
||||
font-family: Arial;
|
||||
font-weight: bold;
|
||||
color: #666;
|
||||
padding-top: 20px;
|
||||
}
|
||||
#crossselling_list .bx-wrapper .bx-pager .bx-pager-item,
|
||||
#crossselling_list .bx-wrapper .bx-controls-auto .bx-controls-auto-item, .accessories-block .block_content .bx-wrapper .bx-pager .bx-pager-item,
|
||||
.accessories-block .block_content .bx-wrapper .bx-controls-auto .bx-controls-auto-item, #productscategory_list .bx-wrapper .bx-pager .bx-pager-item,
|
||||
#productscategory_list .bx-wrapper .bx-controls-auto .bx-controls-auto-item {
|
||||
display: inline-block;
|
||||
*zoom: 1;
|
||||
*display: inline;
|
||||
}
|
||||
#crossselling_list .bx-wrapper .bx-pager.bx-default-pager a, .accessories-block .block_content .bx-wrapper .bx-pager.bx-default-pager a, #productscategory_list .bx-wrapper .bx-pager.bx-default-pager a {
|
||||
text-indent: -9999px;
|
||||
display: block;
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
margin: 0 5px;
|
||||
background: #000;
|
||||
outline: 0;
|
||||
-webkit-border-radius: 5px;
|
||||
-moz-border-radius: 5px;
|
||||
-ms-border-radius: 5px;
|
||||
-o-border-radius: 5px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
#crossselling_list .bx-wrapper .bx-pager.bx-default-pager a:hover,
|
||||
#crossselling_list .bx-wrapper .bx-pager.bx-default-pager a.active, .accessories-block .block_content .bx-wrapper .bx-pager.bx-default-pager a:hover,
|
||||
.accessories-block .block_content .bx-wrapper .bx-pager.bx-default-pager a.active, #productscategory_list .bx-wrapper .bx-pager.bx-default-pager a:hover,
|
||||
#productscategory_list .bx-wrapper .bx-pager.bx-default-pager a.active {
|
||||
background: #000;
|
||||
}
|
||||
#crossselling_list .bx-wrapper .bx-controls-direction a, .accessories-block .block_content .bx-wrapper .bx-controls-direction a, #productscategory_list .bx-wrapper .bx-controls-direction a {
|
||||
margin-top: 38px;
|
||||
height: 20px;
|
||||
width: 20px;
|
||||
line-height: 0;
|
||||
position: absolute;
|
||||
top: 40%;
|
||||
margin-top: -10px;
|
||||
font-size: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
#crossselling_list .bx-wrapper .bx-controls-direction a:before, .accessories-block .block_content .bx-wrapper .bx-controls-direction a:before, #productscategory_list .bx-wrapper .bx-controls-direction a:before {
|
||||
padding-left: 2px;
|
||||
color: #c0c0c0;
|
||||
font-family: FontAwesome;
|
||||
font-size: 20px;
|
||||
line-height: 22px;
|
||||
}
|
||||
#crossselling_list .bx-wrapper .bx-controls-direction a:hover:before, .accessories-block .block_content .bx-wrapper .bx-controls-direction a:hover:before, #productscategory_list .bx-wrapper .bx-controls-direction a:hover:before {
|
||||
color: #333;
|
||||
}
|
||||
#crossselling_list .bx-next, .accessories-block .block_content .bx-next, #productscategory_list .bx-next {
|
||||
right: 10px;
|
||||
}
|
||||
#crossselling_list .bx-next:before, .accessories-block .block_content .bx-next:before, #productscategory_list .bx-next:before {
|
||||
content: "";
|
||||
}
|
||||
#crossselling_list .bx-prev, .accessories-block .block_content .bx-prev, #productscategory_list .bx-prev {
|
||||
left: 10px;
|
||||
}
|
||||
#crossselling_list .bx-prev:before, .accessories-block .block_content .bx-prev:before, #productscategory_list .bx-prev:before {
|
||||
content: "";
|
||||
}
|
||||
#crossselling_list .bx-wrapper .bx-controls-direction a.disabled, .accessories-block .block_content .bx-wrapper .bx-controls-direction a.disabled, #productscategory_list .bx-wrapper .bx-controls-direction a.disabled {
|
||||
display: none;
|
||||
}
|
||||
#crossselling_list .bx-wrapper .bx-controls-auto, .accessories-block .block_content .bx-wrapper .bx-controls-auto, #productscategory_list .bx-wrapper .bx-controls-auto {
|
||||
text-align: center;
|
||||
}
|
||||
#crossselling_list .bx-wrapper .bx-controls-auto .bx-start, .accessories-block .block_content .bx-wrapper .bx-controls-auto .bx-start, #productscategory_list .bx-wrapper .bx-controls-auto .bx-start {
|
||||
display: block;
|
||||
text-indent: -9999px;
|
||||
width: 10px;
|
||||
height: 11px;
|
||||
outline: 0;
|
||||
background: url(images/controls.png) -86px -11px no-repeat;
|
||||
margin: 0 3px;
|
||||
}
|
||||
#crossselling_list .bx-wrapper .bx-controls-auto .bx-start:hover,
|
||||
#crossselling_list .bx-wrapper .bx-controls-auto .bx-start.active, .accessories-block .block_content .bx-wrapper .bx-controls-auto .bx-start:hover,
|
||||
.accessories-block .block_content .bx-wrapper .bx-controls-auto .bx-start.active, #productscategory_list .bx-wrapper .bx-controls-auto .bx-start:hover,
|
||||
#productscategory_list .bx-wrapper .bx-controls-auto .bx-start.active {
|
||||
background-position: -86px 0;
|
||||
}
|
||||
#crossselling_list .bx-wrapper .bx-controls-auto .bx-stop, .accessories-block .block_content .bx-wrapper .bx-controls-auto .bx-stop, #productscategory_list .bx-wrapper .bx-controls-auto .bx-stop {
|
||||
display: block;
|
||||
text-indent: -9999px;
|
||||
width: 9px;
|
||||
height: 11px;
|
||||
outline: 0;
|
||||
background: url(images/controls.png) -86px -44px no-repeat;
|
||||
margin: 0 3px;
|
||||
}
|
||||
#crossselling_list .bx-wrapper .bx-controls-auto .bx-stop:hover,
|
||||
#crossselling_list .bx-wrapper .bx-controls-auto .bx-stop.active, .accessories-block .block_content .bx-wrapper .bx-controls-auto .bx-stop:hover,
|
||||
.accessories-block .block_content .bx-wrapper .bx-controls-auto .bx-stop.active, #productscategory_list .bx-wrapper .bx-controls-auto .bx-stop:hover,
|
||||
#productscategory_list .bx-wrapper .bx-controls-auto .bx-stop.active {
|
||||
background-position: -86px -33px;
|
||||
}
|
||||
#crossselling_list .bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager, .accessories-block .block_content .bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager, #productscategory_list .bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
|
||||
text-align: left;
|
||||
width: 80%;
|
||||
}
|
||||
#crossselling_list .bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto, .accessories-block .block_content .bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto, #productscategory_list .bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
|
||||
right: 0;
|
||||
width: 35px;
|
||||
}
|
||||
#crossselling_list .bx-wrapper .bx-caption, .accessories-block .block_content .bx-wrapper .bx-caption, #productscategory_list .bx-wrapper .bx-caption {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
background: #666\9;
|
||||
background: rgba(80, 80, 80, 0);
|
||||
width: 100%;
|
||||
}
|
||||
#crossselling_list .bx-wrapper .bx-caption span, .accessories-block .block_content .bx-wrapper .bx-caption span, #productscategory_list .bx-wrapper .bx-caption span {
|
||||
color: #fff;
|
||||
font-family: Arial;
|
||||
display: block;
|
||||
font-size: .85em;
|
||||
padding: 10px;
|
||||
}
|
||||
@@ -1,404 +0,0 @@
|
||||
/*
|
||||
* Core Owl Carousel CSS File
|
||||
* v1.24
|
||||
*/
|
||||
/* clearfix */
|
||||
.owl-carousel .owl-wrapper:after {
|
||||
content: ".";
|
||||
display: block;
|
||||
clear: both;
|
||||
visibility: hidden;
|
||||
line-height: 0;
|
||||
height: 0;
|
||||
}
|
||||
|
||||
/* display none until init */
|
||||
.owl-carousel {
|
||||
display: none;
|
||||
position: relative;
|
||||
width: 100%;
|
||||
-ms-touch-action: pan-y;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.owl-carousel .owl-wrapper {
|
||||
display: none;
|
||||
position: relative;
|
||||
-webkit-transform: translate3d(0px, 0px, 0px);
|
||||
}
|
||||
|
||||
.owl-carousel .owl-wrapper-outer {
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
margin: 0 -10px;
|
||||
}
|
||||
|
||||
.owl-carousel .owl-wrapper-outer.autoHeight {
|
||||
-webkit-transition: height 500ms ease-in-out;
|
||||
-moz-transition: height 500ms ease-in-out;
|
||||
-ms-transition: height 500ms ease-in-out;
|
||||
-o-transition: height 500ms ease-in-out;
|
||||
transition: height 500ms ease-in-out;
|
||||
}
|
||||
|
||||
.owl-carousel .owl-item {
|
||||
float: left;
|
||||
width: 200px !important;
|
||||
}
|
||||
|
||||
.owl-controls .owl-page,
|
||||
.owl-controls .owl-buttons div {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.owl-controls {
|
||||
-webkit-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
||||
}
|
||||
|
||||
/* mouse grab icon */
|
||||
.grabbing {
|
||||
cursor: url(grabbing.png) 8 8, move;
|
||||
}
|
||||
|
||||
/* fix */
|
||||
.owl-carousel .owl-wrapper,
|
||||
.owl-carousel .owl-item {
|
||||
-webkit-backface-visibility: hidden;
|
||||
-moz-backface-visibility: hidden;
|
||||
-ms-backface-visibility: hidden;
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
-moz-transform: translate3d(0, 0, 0);
|
||||
-ms-transform: translate3d(0, 0, 0);
|
||||
}
|
||||
|
||||
/* CSS3 Transitions */
|
||||
.owl-origin {
|
||||
-webkit-perspective: 1200px;
|
||||
-webkit-perspective-origin-x: 50%;
|
||||
-webkit-perspective-origin-y: 50%;
|
||||
-moz-perspective: 1200px;
|
||||
-moz-perspective-origin-x: 50%;
|
||||
-moz-perspective-origin-y: 50%;
|
||||
perspective: 1200px;
|
||||
}
|
||||
|
||||
/* fade */
|
||||
.owl-fade-out {
|
||||
z-index: 10;
|
||||
-webkit-animation: fadeOut .7s both ease;
|
||||
-moz-animation: fadeOut .7s both ease;
|
||||
animation: fadeOut .7s both ease;
|
||||
}
|
||||
|
||||
.owl-fade-in {
|
||||
-webkit-animation: fadeIn .7s both ease;
|
||||
-moz-animation: fadeIn .7s both ease;
|
||||
animation: fadeIn .7s both ease;
|
||||
}
|
||||
|
||||
/* backSlide */
|
||||
.owl-backSlide-out {
|
||||
-webkit-animation: backSlideOut 1s both ease;
|
||||
-moz-animation: backSlideOut 1s both ease;
|
||||
animation: backSlideOut 1s both ease;
|
||||
}
|
||||
|
||||
.owl-backSlide-in {
|
||||
-webkit-animation: backSlideIn 1s both ease;
|
||||
-moz-animation: backSlideIn 1s both ease;
|
||||
animation: backSlideIn 1s both ease;
|
||||
}
|
||||
|
||||
/* goDown */
|
||||
.owl-goDown-out {
|
||||
-webkit-animation: scaleToFade .7s ease both;
|
||||
-moz-animation: scaleToFade .7s ease both;
|
||||
animation: scaleToFade .7s ease both;
|
||||
}
|
||||
|
||||
.owl-goDown-in {
|
||||
-webkit-animation: goDown .6s ease both;
|
||||
-moz-animation: goDown .6s ease both;
|
||||
animation: goDown .6s ease both;
|
||||
}
|
||||
|
||||
/* scaleUp */
|
||||
.owl-fadeUp-in {
|
||||
-webkit-animation: scaleUpFrom .5s ease both;
|
||||
-moz-animation: scaleUpFrom .5s ease both;
|
||||
animation: scaleUpFrom .5s ease both;
|
||||
}
|
||||
|
||||
.owl-fadeUp-out {
|
||||
-webkit-animation: scaleUpTo .5s ease both;
|
||||
-moz-animation: scaleUpTo .5s ease both;
|
||||
animation: scaleUpTo .5s ease both;
|
||||
}
|
||||
|
||||
/* Keyframes */
|
||||
/*empty*/
|
||||
@-webkit-keyframes empty {
|
||||
0% {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes empty {
|
||||
0% {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes empty {
|
||||
0% {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes fadeIn {
|
||||
0% {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes fadeIn {
|
||||
0% {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fadeIn {
|
||||
0% {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes fadeOut {
|
||||
0% {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes fadeOut {
|
||||
0% {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fadeOut {
|
||||
0% {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes backSlideOut {
|
||||
25% {
|
||||
opacity: .5;
|
||||
-webkit-transform: translateZ(-500px);
|
||||
}
|
||||
|
||||
75% {
|
||||
opacity: .5;
|
||||
-webkit-transform: translateZ(-500px) translateX(-200%);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: .5;
|
||||
-webkit-transform: translateZ(-500px) translateX(-200%);
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes backSlideOut {
|
||||
25% {
|
||||
opacity: .5;
|
||||
-moz-transform: translateZ(-500px);
|
||||
}
|
||||
|
||||
75% {
|
||||
opacity: .5;
|
||||
-moz-transform: translateZ(-500px) translateX(-200%);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: .5;
|
||||
-moz-transform: translateZ(-500px) translateX(-200%);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes backSlideOut {
|
||||
25% {
|
||||
opacity: .5;
|
||||
transform: translateZ(-500px);
|
||||
}
|
||||
|
||||
75% {
|
||||
opacity: .5;
|
||||
transform: translateZ(-500px) translateX(-200%);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: .5;
|
||||
transform: translateZ(-500px) translateX(-200%);
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes backSlideIn {
|
||||
0%, 25% {
|
||||
opacity: .5;
|
||||
-webkit-transform: translateZ(-500px) translateX(200%);
|
||||
}
|
||||
|
||||
75% {
|
||||
opacity: .5;
|
||||
-webkit-transform: translateZ(-500px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
-webkit-transform: translateZ(0) translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes backSlideIn {
|
||||
0%, 25% {
|
||||
opacity: .5;
|
||||
-moz-transform: translateZ(-500px) translateX(200%);
|
||||
}
|
||||
|
||||
75% {
|
||||
opacity: .5;
|
||||
-moz-transform: translateZ(-500px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
-moz-transform: translateZ(0) translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes backSlideIn {
|
||||
0%, 25% {
|
||||
opacity: .5;
|
||||
transform: translateZ(-500px) translateX(200%);
|
||||
}
|
||||
|
||||
75% {
|
||||
opacity: .5;
|
||||
transform: translateZ(-500px);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: translateZ(0) translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes scaleToFade {
|
||||
to {
|
||||
opacity: 0;
|
||||
-webkit-transform: scale(0.8);
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes scaleToFade {
|
||||
to {
|
||||
opacity: 0;
|
||||
-moz-transform: scale(0.8);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes scaleToFade {
|
||||
to {
|
||||
opacity: 0;
|
||||
transform: scale(0.8);
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes goDown {
|
||||
from {
|
||||
-webkit-transform: translateY(-100%);
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes goDown {
|
||||
from {
|
||||
-moz-transform: translateY(-100%);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes goDown {
|
||||
from {
|
||||
transform: translateY(-100%);
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes scaleUpFrom {
|
||||
from {
|
||||
opacity: 0;
|
||||
-webkit-transform: scale(1.5);
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes scaleUpFrom {
|
||||
from {
|
||||
opacity: 0;
|
||||
-moz-transform: scale(1.5);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes scaleUpFrom {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: scale(1.5);
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes scaleUpTo {
|
||||
to {
|
||||
opacity: 0;
|
||||
-webkit-transform: scale(1.5);
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes scaleUpTo {
|
||||
to {
|
||||
opacity: 0;
|
||||
-moz-transform: scale(1.5);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes scaleUpTo {
|
||||
to {
|
||||
opacity: 0;
|
||||
transform: scale(1.5);
|
||||
}
|
||||
}
|
||||
@@ -1,93 +0,0 @@
|
||||
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic,800,800italic);
|
||||
/*
|
||||
* Owl Carousel Owl Demo Theme
|
||||
* v1.24
|
||||
*/
|
||||
.owl-theme {
|
||||
/* Styling Next and Prev buttons */
|
||||
/* preloading images */
|
||||
}
|
||||
.owl-theme .owl-controls {
|
||||
margin-top: 10px;
|
||||
text-align: center;
|
||||
}
|
||||
.owl-theme .owl-controls {
|
||||
/* Styling Pagination*/
|
||||
/* If PaginationNumbers is true */
|
||||
}
|
||||
.owl-theme .owl-controls .owl-buttons div {
|
||||
margin-top: 38px;
|
||||
height: 20px;
|
||||
width: 20px;
|
||||
line-height: 0;
|
||||
position: absolute;
|
||||
top: 40%;
|
||||
margin-top: -10px;
|
||||
font-size: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
.owl-theme .owl-controls .owl-buttons div:before {
|
||||
padding-left: 2px;
|
||||
color: #c0c0c0;
|
||||
font-family: FontAwesome;
|
||||
font-size: 20px;
|
||||
line-height: 22px;
|
||||
}
|
||||
.owl-theme .owl-controls .owl-buttons div:hover:before {
|
||||
color: #333;
|
||||
}
|
||||
.owl-theme .owl-controls .owl-next {
|
||||
right: 10px;
|
||||
}
|
||||
.owl-theme .owl-controls .owl-next:before {
|
||||
content: "";
|
||||
}
|
||||
.owl-theme .owl-controls .owl-prev {
|
||||
left: 10px;
|
||||
}
|
||||
.owl-theme .owl-controls .owl-prev:before {
|
||||
content: "";
|
||||
}
|
||||
.owl-theme .owl-controls .owl-pagination {
|
||||
display: none;
|
||||
}
|
||||
.owl-theme .owl-controls .owl-page {
|
||||
display: inline-block;
|
||||
zoom: 1;
|
||||
*display: inline;
|
||||
/*IE7 life-saver */
|
||||
}
|
||||
.owl-theme .owl-controls .owl-page span {
|
||||
display: block;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
margin: 5px 7px;
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
|
||||
opacity: 0;
|
||||
-webkit-border-radius: 20px;
|
||||
-moz-border-radius: 20px;
|
||||
-ms-border-radius: 20px;
|
||||
-o-border-radius: 20px;
|
||||
border-radius: 20px;
|
||||
background: #869791;
|
||||
}
|
||||
.owl-theme .owl-controls .owl-page.active span, .owl-theme .owl-controls.clickable .owl-page:hover span {
|
||||
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
|
||||
opacity: 1;
|
||||
}
|
||||
.owl-theme .owl-controls .owl-page span.owl-numbers {
|
||||
height: auto;
|
||||
width: auto;
|
||||
color: #FFF;
|
||||
padding: 2px 10px;
|
||||
font-size: 12px;
|
||||
-webkit-border-radius: 30px;
|
||||
-moz-border-radius: 30px;
|
||||
-ms-border-radius: 30px;
|
||||
-o-border-radius: 30px;
|
||||
border-radius: 30px;
|
||||
}
|
||||
.owl-theme .owl-item.loading {
|
||||
min-height: 150px;
|
||||
background: url(AjaxLoader.gif) no-repeat center center;
|
||||
}
|
||||
@@ -0,0 +1,38 @@
|
||||
/* Foundation v2.1.4 http://foundation.zurb.com */
|
||||
/* Artfully masterminded by ZURB */
|
||||
|
||||
/* --------------------------------------------------
|
||||
Table of Contents
|
||||
-----------------------------------------------------
|
||||
:: Shared Styles
|
||||
:: Page Name 1
|
||||
:: Page Name 2
|
||||
*/
|
||||
|
||||
|
||||
/* -----------------------------------------
|
||||
Shared Styles
|
||||
----------------------------------------- */
|
||||
|
||||
table th { font-weight: bold; }
|
||||
table td, table th { padding: 9px 10px; text-align: left; }
|
||||
|
||||
/* Mobile */
|
||||
@media only screen and (max-width: 767px) {
|
||||
|
||||
table.responsive { margin-bottom: 0; }
|
||||
|
||||
.pinned { position: absolute; left: 0; top: 0; background: #fff; width: 35%; overflow: hidden; overflow-x: scroll; border-right: 1px solid #ccc; border-left: 1px solid #ccc; }
|
||||
.pinned table { border-right: none; border-left: none; width: 100%; }
|
||||
.pinned table th, .pinned table td { white-space: nowrap; }
|
||||
.pinned td:last-child { border-bottom: 0; }
|
||||
|
||||
div.table-wrapper { position: relative; margin-bottom: 20px; overflow: hidden; border-right: 1px solid #ccc; }
|
||||
div.table-wrapper div.scrollable { margin-left: 35%; }
|
||||
div.table-wrapper div.scrollable { overflow: scroll; overflow-y: hidden; }
|
||||
|
||||
table.responsive td, table.responsive th { position: relative; white-space: nowrap; overflow: hidden; }
|
||||
table.responsive th:first-child, table.responsive td:first-child, table.responsive td:first-child, table.responsive.pinned td { display: none; }
|
||||
|
||||
|
||||
}
|
||||
@@ -3,9 +3,15 @@
|
||||
Maintenance Page Styles
|
||||
**********************************************************************/
|
||||
#maintenance {
|
||||
margin: 126px 0 0 0;
|
||||
padding: 91px 48px 365px 297px;
|
||||
background: url(../img/bg_maintenance.png) no-repeat;
|
||||
margin-top: 50px;
|
||||
/* > 1200 */
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
#maintenance {
|
||||
margin: 126px 0 0 0;
|
||||
padding: 91px 48px 365px 297px;
|
||||
background: url(../img/bg_maintenance.png) no-repeat;
|
||||
}
|
||||
}
|
||||
#maintenance .logo {
|
||||
margin-bottom: 31px;
|
||||
|
||||
@@ -51,9 +51,11 @@
|
||||
position: relative;
|
||||
}
|
||||
#cart_block dd {
|
||||
padding: 10px 20px;
|
||||
position: relative;
|
||||
}
|
||||
#cart_block dd li {
|
||||
padding: 10px 20px;
|
||||
}
|
||||
#cart_block dd li .deleteCustomizableProduct {
|
||||
top: 12px !important;
|
||||
right: 15px !important;
|
||||
@@ -98,7 +100,7 @@
|
||||
display: none;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 132px;
|
||||
top: 95px;
|
||||
height: auto;
|
||||
width: 270px;
|
||||
background: #484848;
|
||||
@@ -153,7 +155,8 @@
|
||||
}
|
||||
|
||||
#cart_block #cart_block_shipping_cost,
|
||||
#cart_block #cart_block_total {
|
||||
#cart_block #cart_block_total,
|
||||
#cart_block #cart_block_wrapping_cost {
|
||||
float: right;
|
||||
}
|
||||
|
||||
@@ -217,6 +220,8 @@
|
||||
}
|
||||
#layer_cart .layer_cart_product {
|
||||
padding: 30px 30px 30px 30px;
|
||||
overflow: hidden;
|
||||
position: static;
|
||||
}
|
||||
#layer_cart .layer_cart_product h2 {
|
||||
font: 400 23px/29px Arial, Helvetica, sans-serif;
|
||||
@@ -224,12 +229,25 @@
|
||||
margin-bottom: 22px;
|
||||
padding-right: 100px;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
#layer_cart .layer_cart_product h2 {
|
||||
font-size: 18px;
|
||||
padding-right: 0;
|
||||
line-height: normal;
|
||||
}
|
||||
}
|
||||
#layer_cart .layer_cart_product h2 i {
|
||||
font-size: 30px;
|
||||
line-height: 30px;
|
||||
float: left;
|
||||
padding-right: 8px;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
#layer_cart .layer_cart_product h2 i {
|
||||
font-size: 22px;
|
||||
line-height: 22px;
|
||||
}
|
||||
}
|
||||
#layer_cart .layer_cart_product .product-image-container {
|
||||
max-width: 178px;
|
||||
border: 1px solid #d6d4d4;
|
||||
@@ -237,6 +255,13 @@
|
||||
float: left;
|
||||
margin-right: 30px;
|
||||
}
|
||||
@media (max-width: 480px) {
|
||||
#layer_cart .layer_cart_product .product-image-container {
|
||||
float: none;
|
||||
margin-right: 0;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
}
|
||||
#layer_cart .layer_cart_product .layer_cart_product_info {
|
||||
padding: 38px 0 0 0;
|
||||
}
|
||||
@@ -253,15 +278,30 @@
|
||||
#layer_cart .layer_cart_cart {
|
||||
background: #fafafa;
|
||||
border-left: 1px solid #d6d4d4;
|
||||
padding: 21px 30px 90px 30px;
|
||||
padding: 21px 30px 170px 30px;
|
||||
-webkit-border-radius: 0px 4px 4px 0px;
|
||||
-moz-border-radius: 0px 4px 4px 0px;
|
||||
-ms-border-radius: 0px 4px 4px 0px;
|
||||
-o-border-radius: 0px 4px 4px 0px;
|
||||
border-radius: 0px 4px 4px 0px;
|
||||
min-height: 318px;
|
||||
position: relative;
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
#layer_cart .layer_cart_cart {
|
||||
min-height: 318px;
|
||||
}
|
||||
}
|
||||
@media (min-width: 992px) and (max-width: 1199px) {
|
||||
#layer_cart .layer_cart_cart {
|
||||
min-height: 360px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
#layer_cart .layer_cart_cart {
|
||||
border-left: none;
|
||||
border-top: 1px solid #d6d4d4;
|
||||
}
|
||||
}
|
||||
#layer_cart .layer_cart_cart h2 {
|
||||
font: 400 23px/29px Arial, Helvetica, sans-serif;
|
||||
color: #333;
|
||||
@@ -269,6 +309,11 @@
|
||||
padding-bottom: 13px;
|
||||
margin-bottom: 17px;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
#layer_cart .layer_cart_cart h2 {
|
||||
font-size: 18px;
|
||||
}
|
||||
}
|
||||
#layer_cart .layer_cart_cart .layer_cart_row {
|
||||
padding: 0 0 7px 0;
|
||||
}
|
||||
@@ -289,7 +334,7 @@
|
||||
padding-right: 5px;
|
||||
color: #777777;
|
||||
}
|
||||
#layer_cart .layer_cart_cart .cross {
|
||||
#layer_cart .cross {
|
||||
position: absolute;
|
||||
right: 7px;
|
||||
top: 8px;
|
||||
@@ -297,15 +342,16 @@
|
||||
height: 25px;
|
||||
cursor: pointer;
|
||||
color: #333;
|
||||
z-index: 2;
|
||||
}
|
||||
#layer_cart .layer_cart_cart .cross:before {
|
||||
#layer_cart .cross:before {
|
||||
content: "";
|
||||
display: block;
|
||||
font-family: "FontAwesome";
|
||||
font-size: 25px;
|
||||
line-height: 25px;
|
||||
}
|
||||
#layer_cart .layer_cart_cart .cross:hover {
|
||||
#layer_cart .cross:hover {
|
||||
color: #515151;
|
||||
}
|
||||
#layer_cart .continue {
|
||||
@@ -315,18 +361,84 @@
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
#blockcart_list {
|
||||
width: 232px;
|
||||
/************************************************************************
|
||||
Layer Cart Caroucel
|
||||
*************************************************************************/
|
||||
#layer_cart .crossseling .crossseling-content {
|
||||
border-top: 1px solid #d6d4d4;
|
||||
padding: 26px 30px 40px 30px;
|
||||
position: relative;
|
||||
}
|
||||
#layer_cart .crossseling h2 {
|
||||
font: 400 23px/26px Arial, Helvetica, sans-serif;
|
||||
color: #333333;
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
#layer_cart .crossseling #blockcart_list {
|
||||
max-width: 773px;
|
||||
width: 84%;
|
||||
margin: 0 auto;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
#blockcart_list ul {
|
||||
#layer_cart .crossseling #blockcart_list ul {
|
||||
display: block;
|
||||
height: 90px;
|
||||
}
|
||||
|
||||
#blockcart_list li {
|
||||
list-style-type: none;
|
||||
#layer_cart .crossseling #blockcart_list ul li {
|
||||
float: left;
|
||||
width: 58px;
|
||||
width: 178px;
|
||||
margin: 0 0px 0 0;
|
||||
}
|
||||
#layer_cart .crossseling #blockcart_list ul li .product-image-container {
|
||||
border: 1px solid #d6d4d4;
|
||||
text-align: center;
|
||||
padding: 5px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
#layer_cart .crossseling #blockcart_list ul li .product-image-container img {
|
||||
width: 100%;
|
||||
}
|
||||
#layer_cart .crossseling #blockcart_list ul li .product-name {
|
||||
padding-bottom: 5px;
|
||||
}
|
||||
#layer_cart .crossseling #blockcart_list ul li .product-name a {
|
||||
font-size: 15px;
|
||||
line-height: 20px;
|
||||
}
|
||||
#layer_cart .crossseling #blockcart_list a.bx-prev, #layer_cart .crossseling #blockcart_list a.bx-next {
|
||||
display: block;
|
||||
font-family: "FontAwesome";
|
||||
font-size: 20px;
|
||||
line-height: 20px;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
color: #333;
|
||||
text-indent: -5000px;
|
||||
position: absolute;
|
||||
top: 45%;
|
||||
margin-top: -20px;
|
||||
}
|
||||
#layer_cart .crossseling #blockcart_list a.bx-prev:after, #layer_cart .crossseling #blockcart_list a.bx-next:after {
|
||||
display: block;
|
||||
text-indent: 0;
|
||||
}
|
||||
#layer_cart .crossseling #blockcart_list a.bx-prev:hover, #layer_cart .crossseling #blockcart_list a.bx-next:hover {
|
||||
color: #c0c0c0;
|
||||
}
|
||||
#layer_cart .crossseling #blockcart_list a.bx-prev.disabled, #layer_cart .crossseling #blockcart_list a.bx-next.disabled {
|
||||
display: none;
|
||||
}
|
||||
#layer_cart .crossseling #blockcart_list a.bx-prev {
|
||||
left: 5%;
|
||||
}
|
||||
#layer_cart .crossseling #blockcart_list a.bx-prev:after {
|
||||
content: "";
|
||||
}
|
||||
#layer_cart .crossseling #blockcart_list a.bx-next {
|
||||
right: 5%;
|
||||
}
|
||||
#layer_cart .crossseling #blockcart_list a.bx-next:after {
|
||||
content: "";
|
||||
}
|
||||
#layer_cart .crossseling #blockcart_list .bx-controls {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
@@ -22,22 +22,6 @@
|
||||
margin-right: 6px;
|
||||
}
|
||||
|
||||
/* bt add */
|
||||
.add_wishlist_button a {
|
||||
padding: 5px 7px 5px 18px;
|
||||
}
|
||||
|
||||
.add_wishlist_button a span {
|
||||
z-index: 10;
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: -1px;
|
||||
left: -12px;
|
||||
height: 26px;
|
||||
width: 26px;
|
||||
background: url(img/icon/pict_add_wishlist.png) no-repeat 0 0 transparent;
|
||||
}
|
||||
|
||||
/* block */
|
||||
#wishlist_block #wishlist_block_list {
|
||||
margin-bottom: 20px;
|
||||
@@ -118,21 +102,23 @@
|
||||
}
|
||||
|
||||
#module-blockwishlist-mywishlist .wishlistLinkTop ul.display_list {
|
||||
border-bottom: 1px dotted #ccc;
|
||||
border-bottom: 1px solid #d6d4d4;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
#module-blockwishlist-mywishlist .wishlistLinkTop ul.display_list a {
|
||||
display: inline-block;
|
||||
color: #333;
|
||||
margin: 10px 10px 10px 0px;
|
||||
font-weight: bold;
|
||||
}
|
||||
#module-blockwishlist-mywishlist .wishlistLinkTop ul.display_list a:hover {
|
||||
color: #515151;
|
||||
}
|
||||
|
||||
#module-blockwishlist-mywishlist .wishlistLinkTop li {
|
||||
float: left;
|
||||
}
|
||||
|
||||
#module-blockwishlist-mywishlist .wishlistLinkTop .display_list li a {
|
||||
display: inline-block;
|
||||
padding: 7px 11px 5px 22px;
|
||||
color: #333;
|
||||
background: url(img/arrow_right_2.png) no-repeat 10px 10px transparent;
|
||||
}
|
||||
|
||||
#module-blockwishlist-mywishlist .wishlistLinkTop #hideSendWishlist {
|
||||
float: right;
|
||||
}
|
||||
@@ -144,17 +130,53 @@
|
||||
|
||||
/* wlp_bought ****************************************** */
|
||||
/* wlp_bought_list */
|
||||
ul.wlp_bought_list li .inner-content {
|
||||
ul.wlp_bought_list li {
|
||||
margin-bottom: 30px;
|
||||
/*> 992px*/
|
||||
/*768px x 991px*/
|
||||
}
|
||||
ul.wlp_bought_list li .product_image {
|
||||
padding: 9px;
|
||||
border: 1px solid #d6d4d4;
|
||||
margin-bottom: 20px;
|
||||
max-width: 270px;
|
||||
}
|
||||
ul.wlp_bought_list li .product-name {
|
||||
margin-bottom: 10px;
|
||||
padding-right: 20px;
|
||||
}
|
||||
ul.wlp_bought_list li .product-name small {
|
||||
display: block;
|
||||
font-size: 11px;
|
||||
}
|
||||
ul.wlp_bought_list li .product-name small a {
|
||||
font-size: 11px;
|
||||
}
|
||||
ul.wlp_bought_list li .product_infos {
|
||||
position: relative;
|
||||
}
|
||||
ul.wlp_bought_list li .btn_action .btn {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
@media (min-width: 992px) {
|
||||
ul.wlp_bought_list li.first-in-line {
|
||||
clear: left;
|
||||
}
|
||||
}
|
||||
@media (min-width: 768px) and (max-width: 991px) {
|
||||
ul.wlp_bought_list li.first-item-of-tablet-line {
|
||||
clear: left;
|
||||
}
|
||||
}
|
||||
|
||||
.wishlistLinkTop .submit {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
ul.wlp_bought_list li .lnkdel {
|
||||
position: absolute;
|
||||
top: 5px;
|
||||
right: 5px;
|
||||
top: 0px;
|
||||
right: 0px;
|
||||
display: block;
|
||||
height: 12px;
|
||||
width: 12px;
|
||||
text-indent: -5000px;
|
||||
background: url(img/icon/delete.gif) no-repeat 0 0;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic,800,800italic);
|
||||
@@ -15,9 +15,15 @@
|
||||
#homepage-slider {
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
padding-top: 30px;
|
||||
margin-bottom: 30px;
|
||||
padding-top: 29px;
|
||||
margin-bottom: 35px;
|
||||
max-width: 779px;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
#homepage-slider #homeslider {
|
||||
margin: 0 auto;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/*****************************************************************************
|
||||
@@ -25,35 +31,38 @@
|
||||
********************************************************************************/
|
||||
/** RESET AND LAYOUT
|
||||
===================================*/
|
||||
.bx-wrapper {
|
||||
#homepage-slider {
|
||||
/** THEME
|
||||
===================================*/
|
||||
/* LOADER */
|
||||
/* PAGER */
|
||||
/* DIRECTION CONTROLS (NEXT / PREV) */
|
||||
/* AUTO CONTROLS (START / STOP) */
|
||||
/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */
|
||||
/* IMAGE CAPTIONS */
|
||||
}
|
||||
#homepage-slider .bx-wrapper {
|
||||
position: relative;
|
||||
padding: 0;
|
||||
*zoom: 1;
|
||||
}
|
||||
.bx-wrapper a {
|
||||
#homepage-slider .bx-wrapper a {
|
||||
display: block;
|
||||
}
|
||||
.bx-wrapper img {
|
||||
#homepage-slider .bx-wrapper img {
|
||||
display: block;
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
/** THEME
|
||||
===================================*/
|
||||
.bx-wrapper .bx-viewport {
|
||||
#homepage-slider .bx-wrapper .bx-viewport {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.bx-wrapper .bx-pager,
|
||||
.bx-wrapper .bx-controls-auto {
|
||||
#homepage-slider .bx-wrapper .bx-pager,
|
||||
#homepage-slider .bx-wrapper .bx-controls-auto {
|
||||
position: absolute;
|
||||
bottom: -30px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/* LOADER */
|
||||
.bx-wrapper .bx-loading {
|
||||
#homepage-slider .bx-wrapper .bx-loading {
|
||||
min-height: 50px;
|
||||
background: url(images/bx_loader.gif) center center no-repeat white;
|
||||
height: 100%;
|
||||
@@ -63,9 +72,7 @@
|
||||
left: 0;
|
||||
z-index: 2000;
|
||||
}
|
||||
|
||||
/* PAGER */
|
||||
.bx-wrapper .bx-pager {
|
||||
#homepage-slider .bx-wrapper .bx-pager {
|
||||
text-align: center;
|
||||
font-size: .85em;
|
||||
font-family: Arial;
|
||||
@@ -73,15 +80,13 @@
|
||||
color: #666;
|
||||
padding-top: 20px;
|
||||
}
|
||||
|
||||
.bx-wrapper .bx-pager .bx-pager-item,
|
||||
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
|
||||
#homepage-slider .bx-wrapper .bx-pager .bx-pager-item,
|
||||
#homepage-slider .bx-wrapper .bx-controls-auto .bx-controls-auto-item {
|
||||
display: inline-block;
|
||||
*zoom: 1;
|
||||
*display: inline;
|
||||
}
|
||||
|
||||
.bx-wrapper .bx-pager.bx-default-pager a {
|
||||
#homepage-slider .bx-wrapper .bx-pager.bx-default-pager a {
|
||||
background: #666;
|
||||
text-indent: -9999px;
|
||||
display: block;
|
||||
@@ -93,52 +98,71 @@
|
||||
-webkit-border-radius: 5px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
.bx-wrapper .bx-pager.bx-default-pager a:hover,
|
||||
.bx-wrapper .bx-pager.bx-default-pager a.active {
|
||||
#homepage-slider .bx-wrapper .bx-pager.bx-default-pager a:hover,
|
||||
#homepage-slider .bx-wrapper .bx-pager.bx-default-pager a.active {
|
||||
background: #000;
|
||||
}
|
||||
|
||||
/* DIRECTION CONTROLS (NEXT / PREV) */
|
||||
.bx-wrapper .bx-prev {
|
||||
left: 10px;
|
||||
background: url(images/controls.png) no-repeat 0 -32px;
|
||||
#homepage-slider .bx-wrapper .bx-prev {
|
||||
right: 60px;
|
||||
}
|
||||
|
||||
.bx-wrapper .bx-next {
|
||||
#homepage-slider .bx-wrapper .bx-prev:after {
|
||||
content: "";
|
||||
}
|
||||
#homepage-slider .bx-wrapper .bx-next {
|
||||
right: 10px;
|
||||
background: url(images/controls.png) no-repeat -43px -32px;
|
||||
}
|
||||
|
||||
.bx-wrapper .bx-prev:hover {
|
||||
background-position: 0 0;
|
||||
#homepage-slider .bx-wrapper .bx-next:after {
|
||||
content: "";
|
||||
}
|
||||
|
||||
.bx-wrapper .bx-next:hover {
|
||||
background-position: -43px 0;
|
||||
}
|
||||
|
||||
.bx-wrapper .bx-controls-direction a {
|
||||
#homepage-slider .bx-wrapper .bx-controls-direction a {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
margin-top: -16px;
|
||||
bottom: 10px;
|
||||
outline: 0;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
width: 52px;
|
||||
height: 52px;
|
||||
text-indent: -9999px;
|
||||
z-index: 9999;
|
||||
border: 2px solid #fff;
|
||||
}
|
||||
|
||||
.bx-wrapper .bx-controls-direction a.disabled {
|
||||
#homepage-slider .bx-wrapper .bx-controls-direction a:before {
|
||||
height: 48px;
|
||||
width: 48px;
|
||||
display: block;
|
||||
background: #fff;
|
||||
content: ".";
|
||||
opacity: 0.14;
|
||||
text-indent: -9999px;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
#homepage-slider .bx-wrapper .bx-controls-direction a:after {
|
||||
display: block;
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
color: #fff;
|
||||
text-indent: 0;
|
||||
text-align: center;
|
||||
font-size: 21px;
|
||||
font-family: "FontAwesome";
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: 2;
|
||||
padding: 16px 0 0 0;
|
||||
}
|
||||
#homepage-slider .bx-wrapper .bx-controls-direction a:hover:before {
|
||||
background: #333;
|
||||
opacity: 0.83;
|
||||
}
|
||||
#homepage-slider .bx-wrapper .bx-controls-direction a.disabled {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* AUTO CONTROLS (START / STOP) */
|
||||
.bx-wrapper .bx-controls-auto {
|
||||
#homepage-slider .bx-wrapper .bx-controls-auto {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.bx-wrapper .bx-controls-auto .bx-start {
|
||||
#homepage-slider .bx-wrapper .bx-controls-auto .bx-start {
|
||||
display: block;
|
||||
text-indent: -9999px;
|
||||
width: 10px;
|
||||
@@ -147,13 +171,11 @@
|
||||
background: url(images/controls.png) -86px -11px no-repeat;
|
||||
margin: 0 3px;
|
||||
}
|
||||
|
||||
.bx-wrapper .bx-controls-auto .bx-start:hover,
|
||||
.bx-wrapper .bx-controls-auto .bx-start.active {
|
||||
#homepage-slider .bx-wrapper .bx-controls-auto .bx-start:hover,
|
||||
#homepage-slider .bx-wrapper .bx-controls-auto .bx-start.active {
|
||||
background-position: -86px 0;
|
||||
}
|
||||
|
||||
.bx-wrapper .bx-controls-auto .bx-stop {
|
||||
#homepage-slider .bx-wrapper .bx-controls-auto .bx-stop {
|
||||
display: block;
|
||||
text-indent: -9999px;
|
||||
width: 9px;
|
||||
@@ -162,25 +184,19 @@
|
||||
background: url(images/controls.png) -86px -44px no-repeat;
|
||||
margin: 0 3px;
|
||||
}
|
||||
|
||||
.bx-wrapper .bx-controls-auto .bx-stop:hover,
|
||||
.bx-wrapper .bx-controls-auto .bx-stop.active {
|
||||
#homepage-slider .bx-wrapper .bx-controls-auto .bx-stop:hover,
|
||||
#homepage-slider .bx-wrapper .bx-controls-auto .bx-stop.active {
|
||||
background-position: -86px -33px;
|
||||
}
|
||||
|
||||
/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */
|
||||
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
|
||||
#homepage-slider .bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
|
||||
text-align: left;
|
||||
width: 80%;
|
||||
}
|
||||
|
||||
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
|
||||
#homepage-slider .bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
|
||||
right: 0;
|
||||
width: 35px;
|
||||
}
|
||||
|
||||
/* IMAGE CAPTIONS */
|
||||
.bx-wrapper .bx-caption {
|
||||
#homepage-slider .bx-wrapper .bx-caption {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
@@ -188,8 +204,7 @@
|
||||
background: rgba(80, 80, 80, 0.75);
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.bx-wrapper .bx-caption span {
|
||||
#homepage-slider .bx-wrapper .bx-caption span {
|
||||
color: #fff;
|
||||
font-family: Arial;
|
||||
display: block;
|
||||
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
@@ -86,7 +86,7 @@
|
||||
#product_comments_block_extra .comments_note {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
#product_comments_block_extra #product_comments_block_extra .comments_note span,
|
||||
#product_comments_block_extra .comments_note span,
|
||||
#product_comments_block_extra .star_content {
|
||||
float: left;
|
||||
color: #333;
|
||||
@@ -95,10 +95,10 @@
|
||||
margin-top: 1px;
|
||||
}
|
||||
#product_comments_block_extra div.star {
|
||||
background: url(img/star.gif) no-repeat 0 0;
|
||||
background: url(img/star.png) no-repeat 0 0;
|
||||
}
|
||||
#product_comments_block_extra div.star_on {
|
||||
background: url(img/star.gif) no-repeat 0 -13px;
|
||||
background: url(img/star.png) no-repeat 0 -13px;
|
||||
}
|
||||
#product_comments_block_extra .comments_advices {
|
||||
clear: both;
|
||||
@@ -254,7 +254,7 @@
|
||||
}
|
||||
#product_comments_block_tab div.star,
|
||||
#product_comments_block_tab div.star_on {
|
||||
background: url(img/star.gif) no-repeat 0 0 transparent;
|
||||
background: url(img/star.png) no-repeat 0 0;
|
||||
}
|
||||
#product_comments_block_tab div.star_on {
|
||||
background-position: 0 -13px;
|
||||
@@ -285,8 +285,13 @@
|
||||
margin: 0;
|
||||
}
|
||||
#product_comments_block_tab div.comment_details li {
|
||||
padding: 2px 0 2px 12px;
|
||||
background: url(img/bg_li.png) no-repeat 1px 45% white;
|
||||
padding: 2px 0 2px;
|
||||
}
|
||||
#product_comments_block_tab div.comment_details li:before {
|
||||
font-family: FontAwesome;
|
||||
content: "";
|
||||
color: #333;
|
||||
margin-right: 8px;
|
||||
}
|
||||
#product_comments_block_tab div.comment_details .title_block {
|
||||
text-transform: capitalize;
|
||||
|
||||
@@ -1,50 +0,0 @@
|
||||
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic,800,800italic);
|
||||
h2.productscategory_h2 {
|
||||
margin: 40px 0 20px 0;
|
||||
padding: 10px 0;
|
||||
border-bottom: 1px solid #ccc;
|
||||
font-size: 18px;
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
#productscategory {
|
||||
overflow: auto;
|
||||
margin-left: -10px;
|
||||
}
|
||||
|
||||
#productscategory_list {
|
||||
overflow: hidden;
|
||||
}
|
||||
#productscategory_list ul {
|
||||
list-style-type: none;
|
||||
overflow: hidden;
|
||||
}
|
||||
#productscategory_list li a.lnk_img {
|
||||
display: block;
|
||||
}
|
||||
|
||||
#productscategory_noscroll {
|
||||
height: 220px;
|
||||
width: 100%;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
#productscategory_scroll_left, #productscategory_scroll_right {
|
||||
background: url("img/thumbs_left.gif") no-repeat center;
|
||||
text-indent: -3000px;
|
||||
display: block;
|
||||
width: 9px;
|
||||
height: 18px;
|
||||
float: left;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
#productscategory_scroll_right {
|
||||
background-image: url("img/thumbs_right.gif");
|
||||
}
|
||||
|
||||
@media screen and (-webkit-min-device-pixel-ratio: 0) {
|
||||
#productscategory_list li {
|
||||
margin: 0 7px;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic,800,800italic);
|
||||
#stripe-payment-form {
|
||||
line-height: 20px;
|
||||
padding-bottom: 7px;
|
||||
@@ -6,7 +7,7 @@
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
#stripe-payment-form .form-group input.stripe-card-number {
|
||||
width: 263px;
|
||||
max-width: 263px;
|
||||
}
|
||||
#stripe-payment-form .block-left {
|
||||
float: left;
|
||||
@@ -33,24 +34,38 @@
|
||||
#stripe-payment-form .stripe-card-cvc-info:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
#stripe-payment-form .stripe-card-expiry-year.form-control, #stripe-payment-form .stripe-card-expiry-month.form-control {
|
||||
#stripe-payment-form #uniform-month, #stripe-payment-form .stripe-card-expiry-year.form-control, #stripe-payment-form #uniform-year, #stripe-payment-form .stripe-card-expiry-month.form-control {
|
||||
float: left;
|
||||
}
|
||||
#stripe-payment-form .stripe-card-expiry-year.form-control {
|
||||
width: 68px;
|
||||
}
|
||||
#stripe-payment-form .stripe-card-expiry-month.form-control {
|
||||
#stripe-payment-form #uniform-month, #stripe-payment-form .stripe-card-expiry-month.form-control {
|
||||
width: 115px;
|
||||
margin-right: 10px;
|
||||
}
|
||||
#stripe-payment-form .stripe-line {
|
||||
margin-bottom: 11px;
|
||||
}
|
||||
@media (max-width: 479px) {
|
||||
#stripe-payment-form .stripe-line .form-group {
|
||||
clear: left;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
#stripe-payment-form .ckeckbox {
|
||||
margin-bottom: 11px;
|
||||
}
|
||||
#stripe-payment-form .ckeckbox .checker {
|
||||
float: left;
|
||||
}
|
||||
#stripe-payment-form .ckeckbox .checker span {
|
||||
top: 2px;
|
||||
}
|
||||
#stripe-payment-form .ckeckbox label {
|
||||
font-weight: normal;
|
||||
cursor: pointer;
|
||||
color: #777777;
|
||||
}
|
||||
|
||||
a.stripe-card-cvc-info div.cvc-info {
|
||||
|
||||
@@ -29,7 +29,7 @@
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
#order-opc .form-group .form-control {
|
||||
width: 271px;
|
||||
max-width: 271px;
|
||||
}
|
||||
#order-opc .lost_password {
|
||||
display: inline-block;
|
||||
|
||||
@@ -11,19 +11,6 @@
|
||||
margin: 2px 0 31px;
|
||||
}
|
||||
|
||||
.product-image {
|
||||
border: 1px solid #d6d4d4;
|
||||
background: white;
|
||||
padding: 5px;
|
||||
display: block;
|
||||
margin-bottom: 14px;
|
||||
}
|
||||
.product-image img {
|
||||
max-width: 100%;
|
||||
width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.product-heading-h5 {
|
||||
color: #333;
|
||||
font-weight: bold;
|
||||
@@ -32,7 +19,6 @@
|
||||
|
||||
.box-security .product-heading-h5 {
|
||||
margin: 3px 0 -8px;
|
||||
/*max 1199px*/
|
||||
}
|
||||
@media (max-width: 1199px) {
|
||||
.box-security .product-heading-h5 {
|
||||
@@ -40,43 +26,21 @@
|
||||
}
|
||||
}
|
||||
|
||||
.name-product {
|
||||
#productscategory_list .product-name,
|
||||
.accessories-block .product-name {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
.name-product a {
|
||||
#productscategory_list .product-name a,
|
||||
.accessories-block .product-name a {
|
||||
font-size: 15px;
|
||||
line-height: 18px;
|
||||
color: #3a3939;
|
||||
}
|
||||
.name-product a:hover {
|
||||
#productscategory_list .product-name a:hover,
|
||||
.accessories-block .product-name a:hover {
|
||||
color: #999999;
|
||||
}
|
||||
|
||||
.product-box {
|
||||
width: 178px;
|
||||
margin: 0 10px;
|
||||
float: left;
|
||||
}
|
||||
|
||||
h3.page-product-heading {
|
||||
color: #555454;
|
||||
text-transform: uppercase;
|
||||
font-family: "Open Sans", sans-serif;
|
||||
font-weight: 600;
|
||||
font-size: 18px;
|
||||
line-height: 20px;
|
||||
padding: 14px 20px 17px;
|
||||
margin: 0 0 20px;
|
||||
position: relative;
|
||||
border: 1px solid #d6d4d4;
|
||||
border-bottom: none;
|
||||
background: #fbfbfb;
|
||||
}
|
||||
|
||||
.page-product-box {
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
|
||||
img {
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
@@ -88,7 +52,6 @@ img {
|
||||
padding: 5px;
|
||||
border: 1px solid #dbdbdb;
|
||||
background: #fff;
|
||||
/*max 767px*/
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
#pb-right-column #image-block {
|
||||
@@ -150,9 +113,6 @@ img {
|
||||
overflow: hidden;
|
||||
float: left;
|
||||
width: 392px;
|
||||
/*min 992px max 1199px*/
|
||||
/* min 768px max 991px*/
|
||||
/*max 767px*/
|
||||
}
|
||||
@media (min-width: 992px) and (max-width: 1199px) {
|
||||
#thumbs_list {
|
||||
@@ -186,7 +146,6 @@ img {
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
/*min 768px max 991px*/
|
||||
}
|
||||
@media (min-width: 768px) and (max-width: 991px) {
|
||||
#thumbs_list li {
|
||||
@@ -223,7 +182,6 @@ img {
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
/*min 768px max 991px*/
|
||||
}
|
||||
@media (min-width: 768px) and (max-width: 991px) {
|
||||
#thumbs_list li img {
|
||||
@@ -236,7 +194,6 @@ span.view_scroll_spacer {
|
||||
float: left;
|
||||
width: 39px;
|
||||
padding-left: 12px;
|
||||
/*min 768px max 991px*/
|
||||
}
|
||||
@media (min-width: 768px) and (max-width: 991px) {
|
||||
span.view_scroll_spacer {
|
||||
@@ -253,7 +210,6 @@ span.view_scroll_spacer {
|
||||
line-height: 0;
|
||||
font-size: 0;
|
||||
overflow: hidden;
|
||||
/*min 768px max 991px*/
|
||||
}
|
||||
@media (min-width: 768px) and (max-width: 991px) {
|
||||
#view_scroll_left,
|
||||
@@ -289,6 +245,9 @@ span.view_scroll_spacer {
|
||||
.resetimg {
|
||||
padding: 10px 0 0;
|
||||
}
|
||||
.resetimg #resetImages i {
|
||||
margin-right: 6px;
|
||||
}
|
||||
|
||||
/* link list */
|
||||
#usefull_link_block {
|
||||
@@ -296,13 +255,20 @@ span.view_scroll_spacer {
|
||||
}
|
||||
#usefull_link_block li {
|
||||
float: left;
|
||||
/*min 768px max 991px*/
|
||||
border-left: 1px solid #d6d4d4;
|
||||
padding-left: 20px;
|
||||
margin-left: 20px;
|
||||
}
|
||||
@media (min-width: 768px) and (max-width: 991px) {
|
||||
#usefull_link_block li {
|
||||
float: none !important;
|
||||
}
|
||||
}
|
||||
#usefull_link_block li:first-child {
|
||||
margin: 0;
|
||||
border: none;
|
||||
padding: 0;
|
||||
}
|
||||
#usefull_link_block li a {
|
||||
color: #777676;
|
||||
font-weight: bold;
|
||||
@@ -324,12 +290,6 @@ span.view_scroll_spacer {
|
||||
#usefull_link_block li a:hover {
|
||||
color: #000;
|
||||
}
|
||||
#usefull_link_block li.print {
|
||||
border-left: 1px solid #d6d4d4;
|
||||
padding-left: 20px;
|
||||
margin-left: 20px;
|
||||
/*min 768px max 991px*/
|
||||
}
|
||||
@media (min-width: 768px) and (max-width: 991px) {
|
||||
#usefull_link_block li.print {
|
||||
margin: 8px 0 0;
|
||||
@@ -340,9 +300,62 @@ span.view_scroll_spacer {
|
||||
#usefull_link_block li.print a:before {
|
||||
content: "";
|
||||
}
|
||||
#usefull_link_block li.sendtofriend {
|
||||
margin: 0;
|
||||
border: none;
|
||||
padding: 0;
|
||||
}
|
||||
#usefull_link_block li.sendtofriend a:before {
|
||||
content: "";
|
||||
}
|
||||
#usefull_link_block li#left_share_fb {
|
||||
clear: both;
|
||||
float: none;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
#usefull_link_block li#left_share_fb a {
|
||||
padding-left: 18px;
|
||||
}
|
||||
#usefull_link_block li#left_share_fb a:before {
|
||||
content: "";
|
||||
}
|
||||
#usefull_link_block li#favoriteproducts_block_extra_remove,
|
||||
#usefull_link_block li#favoriteproducts_block_extra_add,
|
||||
#usefull_link_block li#favoriteproducts_block_extra_removed,
|
||||
#usefull_link_block li#favoriteproducts_block_extra_added {
|
||||
cursor: pointer;
|
||||
font-weight: bold;
|
||||
clear: both;
|
||||
float: none;
|
||||
margin-bottom: 8px;
|
||||
padding-left: 24px;
|
||||
margin-left: 0;
|
||||
border: none;
|
||||
position: relative;
|
||||
}
|
||||
#usefull_link_block li#favoriteproducts_block_extra_remove:before,
|
||||
#usefull_link_block li#favoriteproducts_block_extra_add:before,
|
||||
#usefull_link_block li#favoriteproducts_block_extra_removed:before,
|
||||
#usefull_link_block li#favoriteproducts_block_extra_added:before {
|
||||
font-family: FontAwesome;
|
||||
color: #333;
|
||||
font-size: 19px;
|
||||
line-height: 24px;
|
||||
position: absolute;
|
||||
top: -2px;
|
||||
left: 0;
|
||||
font-weight: normal;
|
||||
content: "";
|
||||
}
|
||||
#usefull_link_block li#favoriteproducts_block_extra_remove:hover,
|
||||
#usefull_link_block li#favoriteproducts_block_extra_add:hover,
|
||||
#usefull_link_block li#favoriteproducts_block_extra_removed:hover,
|
||||
#usefull_link_block li#favoriteproducts_block_extra_added:hover {
|
||||
color: #000;
|
||||
}
|
||||
#usefull_link_block li#favoriteproducts_block_extra_removed:before {
|
||||
content: "";
|
||||
}
|
||||
|
||||
/* pb-left-column ****************************************************************************** */
|
||||
#pb-left-column {
|
||||
@@ -422,11 +435,6 @@ span.view_scroll_spacer {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.ie7 #pb-left-column #buy_block label {
|
||||
margin-right: 5px;
|
||||
float: left;
|
||||
}
|
||||
|
||||
#short_description_block #short_description_content {
|
||||
padding: 0 0 15px;
|
||||
}
|
||||
@@ -447,17 +455,13 @@ span.view_scroll_spacer {
|
||||
}
|
||||
|
||||
#attributes .attribute_list {
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.ie7 #attributes .attribute_list {
|
||||
display: inline;
|
||||
zoom: 1;
|
||||
float: right;
|
||||
#attributes .attribute_list .form-control {
|
||||
max-width: 230px;
|
||||
}
|
||||
|
||||
#attributes .attribute_list ul {
|
||||
list-style: none;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
@@ -478,10 +482,6 @@ span.view_scroll_spacer {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.ie7 #attributes .attribute_list span {
|
||||
margin-top: 1px;
|
||||
}
|
||||
|
||||
#attributes .attribute_list #color_to_pick_list {
|
||||
list-style-type: none;
|
||||
}
|
||||
@@ -516,7 +516,7 @@ span.view_scroll_spacer {
|
||||
padding: 18px 19px 12px;
|
||||
}
|
||||
|
||||
.box-info-product #add_to_cart {
|
||||
.box-info-product .exclusive {
|
||||
padding: 0;
|
||||
border-top: 1px solid #0079b6;
|
||||
border-right: 1px solid #006fa8;
|
||||
@@ -528,9 +528,9 @@ span.view_scroll_spacer {
|
||||
-o-border-radius: 5px;
|
||||
border-radius: 5px;
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
display: block;
|
||||
}
|
||||
.box-info-product #add_to_cart:before {
|
||||
.box-info-product .exclusive:before {
|
||||
font-family: FontAwesome;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
@@ -541,32 +541,22 @@ span.view_scroll_spacer {
|
||||
line-height: 47px;
|
||||
text-shadow: 0 1px #015883;
|
||||
content: "";
|
||||
z-index: 10;
|
||||
z-index: 2;
|
||||
width: 51px;
|
||||
text-align: center;
|
||||
border-top: 1px solid #06b2e6;
|
||||
border-right: 1px solid #06b2e6;
|
||||
border-left: 1px solid #06b2e6;
|
||||
border-bottom: 1px solid #06b2e6;
|
||||
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #009ad0), color-stop(100%, #007ab7));
|
||||
background-image: -webkit-linear-gradient(#009ad0, #007ab7);
|
||||
background-image: -moz-linear-gradient(#009ad0, #007ab7);
|
||||
background-image: -o-linear-gradient(#009ad0, #007ab7);
|
||||
background-image: linear-gradient(#009ad0, #007ab7);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#009ad0', endColorstr='#007ab7',GradientType=0 );
|
||||
border: 1px solid #06b2e6;
|
||||
-webkit-border-radius: 5px 0 0 5px;
|
||||
-moz-border-radius: 5px 0 0 5px;
|
||||
-ms-border-radius: 5px 0 0 5px;
|
||||
-o-border-radius: 5px 0 0 5px;
|
||||
border-radius: 5px 0 0 5px;
|
||||
/*max 991px*/
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
.box-info-product #add_to_cart:before {
|
||||
.box-info-product .exclusive:before {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
.box-info-product #add_to_cart:after {
|
||||
.box-info-product .exclusive:after {
|
||||
background: url(../img/border-1.gif) repeat-y 0 0;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
@@ -574,16 +564,15 @@ span.view_scroll_spacer {
|
||||
left: 51px;
|
||||
content: "";
|
||||
width: 1px;
|
||||
z-index: 10;
|
||||
/* max 991px*/
|
||||
z-index: 2;
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
.box-info-product #add_to_cart:after {
|
||||
.box-info-product .exclusive:after {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.box-info-product .exclusive {
|
||||
.box-info-product .exclusive span {
|
||||
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #009ad0), color-stop(100%, #007ab7));
|
||||
background-image: -webkit-linear-gradient(#009ad0, #007ab7);
|
||||
background-image: -moz-linear-gradient(#009ad0, #007ab7);
|
||||
@@ -604,25 +593,27 @@ span.view_scroll_spacer {
|
||||
border-bottom: 1px solid #06b2e6;
|
||||
text-shadow: 0 1px #015883;
|
||||
padding: 12px 36px 14px 82px;
|
||||
text-align: right;
|
||||
color: #fff;
|
||||
display: block !important;
|
||||
/* max 1199px*/
|
||||
/*max 991px*/
|
||||
-webkit-transition: all 0s ease;
|
||||
-moz-transition: all 0s ease;
|
||||
-o-transition: all 0s ease;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
@media (max-width: 1199px) {
|
||||
.box-info-product .exclusive {
|
||||
.box-info-product .exclusive span {
|
||||
padding: 12px 22px 14px 70px;
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
.box-info-product .exclusive {
|
||||
.box-info-product .exclusive span {
|
||||
padding: 8px 12px 10px;
|
||||
text-align: left;
|
||||
}
|
||||
}
|
||||
.box-info-product .exclusive:hover {
|
||||
|
||||
.box-info-product .exclusive:hover span {
|
||||
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #007ab7), color-stop(100%, #009ad0));
|
||||
background-image: -webkit-linear-gradient(#007ab7, #009ad0);
|
||||
background-image: -moz-linear-gradient(#007ab7, #009ad0);
|
||||
@@ -664,6 +655,11 @@ table.table-produst-discounts {
|
||||
margin: 0 0 20px;
|
||||
background: #fff;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
table.table-produst-discounts {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
table.table-produst-discounts tr th {
|
||||
background: #fbfbfb;
|
||||
color: #333;
|
||||
@@ -715,17 +711,12 @@ table.table-produst-discounts tr th {
|
||||
width: 78px;
|
||||
height: 27px;
|
||||
padding: 0 6px;
|
||||
float: left;
|
||||
border: 1px solid #d6d4d4;
|
||||
/*min 768px max 991px*/
|
||||
}
|
||||
@media (min-width: 768px) and (max-width: 991px) {
|
||||
#quantity_wanted_p input {
|
||||
width: 100%;
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
}
|
||||
#quantity_wanted_p button {
|
||||
margin-top: -2px;
|
||||
#quantity_wanted_p .btn {
|
||||
float: left;
|
||||
margin-left: 3px;
|
||||
}
|
||||
#quantity_wanted_p label {
|
||||
display: block;
|
||||
@@ -766,6 +757,8 @@ table.table-produst-discounts tr th {
|
||||
background: #ff7430;
|
||||
border: 1px solid #ea5e1a;
|
||||
padding: 4px 8px 3px;
|
||||
position: relative;
|
||||
top: 1px;
|
||||
}
|
||||
|
||||
#availability_statut,
|
||||
@@ -830,7 +823,6 @@ table.table-produst-discounts tr th {
|
||||
line-height: 32px;
|
||||
font-family: "Open Sans", sans-serif;
|
||||
color: #333;
|
||||
/*max 991px*/
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
.our_price_display {
|
||||
@@ -884,8 +876,7 @@ table.table-produst-discounts tr th {
|
||||
}
|
||||
}
|
||||
.ie9 .content_prices #add_to_cart .exclusive, .ie9 .content_prices #add_to_cart .exclusive_disabled,
|
||||
.ie8 .content_prices #add_to_cart .exclusive, .ie8 .content_prices #add_to_cart .exclusive_disabled,
|
||||
.ie7 .content_prices #add_to_cart .exclusive, .ie7 .content_prices #add_to_cart .exclusive_disabled {
|
||||
.ie8 .content_prices #add_to_cart .exclusive, .ie8 .content_prices #add_to_cart .exclusive_disabled {
|
||||
padding: 8px 7px 4px 15px;
|
||||
line-height: 12px;
|
||||
}
|
||||
@@ -986,13 +977,6 @@ table.table-produst-discounts tr th {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
/* PACK ##################################################################### */
|
||||
#blockpack {
|
||||
margin-top: 20px;
|
||||
padding-top: 20px;
|
||||
border-top: 1px dotted #999;
|
||||
}
|
||||
|
||||
/* PERSONNALISATION ##################################################################### */
|
||||
.customization_block p.infoCustomizable {
|
||||
margin: 10px 0 20px;
|
||||
@@ -1040,3 +1024,194 @@ ul#uploadable_files, ul#text_fields {
|
||||
.accessories_block div ul li .s_title_block a, .accessories_block div ul li .s_title_block span {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/******************************************************************
|
||||
Quick View Styles
|
||||
******************************************************************/
|
||||
#product.content_only div#primary_block, #product.content_only section#primary_block {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
#product.content_only div#primary_block, #product.content_only section#primary_block {
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
#product.content_only div#primary_block div#pb-right-column, #product.content_only section#primary_block div#pb-right-column {
|
||||
padding: 20px 20px 5px 35px;
|
||||
width: 47%;
|
||||
}
|
||||
@media (max-width: 479px) {
|
||||
#product.content_only div#primary_block div#pb-right-column, #product.content_only section#primary_block div#pb-right-column {
|
||||
width: 100%;
|
||||
float: none;
|
||||
}
|
||||
}
|
||||
#product.content_only div#primary_block div#pb-right-column span.view_scroll_spacer, #product.content_only section#primary_block div#pb-right-column span.view_scroll_spacer {
|
||||
width: 38px;
|
||||
padding-left: 10px;
|
||||
}
|
||||
#product.content_only div#primary_block div#pb-right-column #thumbs_list, #product.content_only section#primary_block div#pb-right-column #thumbs_list {
|
||||
width: 392px;
|
||||
}
|
||||
#product.content_only div#primary_block div#pb-left-column, #product.content_only section#primary_block div#pb-left-column {
|
||||
padding: 20px 20px 60px 0px;
|
||||
width: 27.5%;
|
||||
margin-bottom: 0;
|
||||
min-height: 623px;
|
||||
height: 100%;
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
#product.content_only div#primary_block div#pb-left-column, #product.content_only section#primary_block div#pb-left-column {
|
||||
min-height: 440px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 479px) {
|
||||
#product.content_only div#primary_block div#pb-left-column, #product.content_only section#primary_block div#pb-left-column {
|
||||
width: 100%;
|
||||
float: none;
|
||||
}
|
||||
}
|
||||
#product.content_only div#primary_block div#pb-left-column .product_comments_block_extra, #product.content_only section#primary_block div#pb-left-column .product_comments_block_extra {
|
||||
padding-right: 0;
|
||||
}
|
||||
@media (max-width: 479px) {
|
||||
#product.content_only div#primary_block div#pb-left-column .comments_advices li, #product.content_only section#primary_block div#pb-left-column .comments_advices li {
|
||||
display: block;
|
||||
}
|
||||
#product.content_only div#primary_block div#pb-left-column .comments_advices a.reviews, #product.content_only section#primary_block div#pb-left-column .comments_advices a.reviews {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: none;
|
||||
}
|
||||
}
|
||||
#product.content_only div#primary_block div#pb-left-column #ShareDiv, #product.content_only section#primary_block div#pb-left-column #ShareDiv {
|
||||
position: absolute;
|
||||
bottom: 8px;
|
||||
}
|
||||
#product.content_only div#primary_block div#pb-right-column1, #product.content_only section#primary_block div#pb-right-column1 {
|
||||
width: 25.5%;
|
||||
padding-right: 15px;
|
||||
padding-left: 0;
|
||||
}
|
||||
#product.content_only div#primary_block div#pb-right-column1 .box-info-product, #product.content_only section#primary_block div#pb-right-column1 .box-info-product {
|
||||
border-top-width: 0px;
|
||||
border-right: none;
|
||||
border-bottom: none;
|
||||
min-height: 623px;
|
||||
height: 100%;
|
||||
-webkit-border-radius: 0 4px 4px 0;
|
||||
-moz-border-radius: 0 4px 4px 0;
|
||||
-ms-border-radius: 0 4px 4px 0;
|
||||
-o-border-radius: 0 4px 4px 0;
|
||||
border-radius: 0 4px 4px 0;
|
||||
position: relative;
|
||||
padding-bottom: 125px;
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
#product.content_only div#primary_block div#pb-right-column1 .box-info-product, #product.content_only section#primary_block div#pb-right-column1 .box-info-product {
|
||||
-webkit-border-radius: 0;
|
||||
-moz-border-radius: 0;
|
||||
-ms-border-radius: 0;
|
||||
-o-border-radius: 0;
|
||||
border-radius: 0;
|
||||
border: 1px solid #d6d4d4;
|
||||
}
|
||||
}
|
||||
#product.content_only div#primary_block div#pb-right-column1 .box-info-product #add_to_cart .exclusive, #product.content_only section#primary_block div#pb-right-column1 .box-info-product #add_to_cart .exclusive {
|
||||
display: block;
|
||||
width: 100%;
|
||||
}
|
||||
#product.content_only div#primary_block div#pb-right-column1 .box-info-product #add_to_cart .exclusive:before, #product.content_only div#primary_block div#pb-right-column1 .box-info-product #add_to_cart .exclusive:after, #product.content_only section#primary_block div#pb-right-column1 .box-info-product #add_to_cart .exclusive:before, #product.content_only section#primary_block div#pb-right-column1 .box-info-product #add_to_cart .exclusive:after {
|
||||
display: block;
|
||||
}
|
||||
#product.content_only div#primary_block div#pb-right-column1 .box-info-product #add_to_cart .exclusive span, #product.content_only section#primary_block div#pb-right-column1 .box-info-product #add_to_cart .exclusive span {
|
||||
font-size: 20px;
|
||||
text-align: center;
|
||||
}
|
||||
@media (max-width: 1199px) {
|
||||
#product.content_only div#primary_block div#pb-right-column1 .box-info-product #add_to_cart .exclusive span, #product.content_only section#primary_block div#pb-right-column1 .box-info-product #add_to_cart .exclusive span {
|
||||
padding: 12px 22px 14px 70px;
|
||||
font-size: 20px;
|
||||
}
|
||||
}
|
||||
#product.content_only div#primary_block div#pb-right-column1 .box-info-product .box-cart-bottom, #product.content_only section#primary_block div#pb-right-column1 .box-info-product .box-cart-bottom {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
left: 0;
|
||||
}
|
||||
#product.content_only div#primary_block div#pb-right-column1 #attributes .attribute_list .form-control, #product.content_only section#primary_block div#pb-right-column1 #attributes .attribute_list .form-control {
|
||||
width: 230px;
|
||||
}
|
||||
#product.content_only div#primary_block div#pb-right-column1 .product_attributes, #product.content_only div#primary_block div#pb-right-column1 .box-cart-bottom, #product.content_only section#primary_block div#pb-right-column1 .product_attributes, #product.content_only section#primary_block div#pb-right-column1 .box-cart-bottom {
|
||||
-webkit-box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px;
|
||||
-moz-box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px;
|
||||
box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px;
|
||||
}
|
||||
#product.content_only div#primary_block div#pb-right-column1 .product_attributes, #product.content_only section#primary_block div#pb-right-column1 .product_attributes {
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
.addsharethisinner .stButton .stArrow {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
@media (max-width: 1050px) {
|
||||
#product.content_only div#primary_block div#pb-right-column, #product.content_only section#primary_block div#pb-right-column {
|
||||
width: 100%;
|
||||
padding-right: 15px;
|
||||
}
|
||||
#product.content_only div#primary_block div#pb-right-column #image-block, #product.content_only div#primary_block div#pb-right-column #views_block, #product.content_only section#primary_block div#pb-right-column #image-block, #product.content_only section#primary_block div#pb-right-column #views_block {
|
||||
max-width: 470px;
|
||||
width: 100%;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
#product.content_only div#primary_block div#pb-right-column #thumbs_list li, #product.content_only section#primary_block div#pb-right-column #thumbs_list li {
|
||||
width: 90px;
|
||||
height: 90px;
|
||||
}
|
||||
#product.content_only div#primary_block div#pb-right-column #thumbs_list li img, #product.content_only section#primary_block div#pb-right-column #thumbs_list li img {
|
||||
width: 82px;
|
||||
height: 82px;
|
||||
}
|
||||
#product.content_only div#primary_block div#pb-left-column, #product.content_only section#primary_block div#pb-left-column {
|
||||
width: 50%;
|
||||
float: left;
|
||||
padding-left: 35px;
|
||||
}
|
||||
#product.content_only div#primary_block div#pb-right-column1, #product.content_only section#primary_block div#pb-right-column1 {
|
||||
width: 50%;
|
||||
float: left;
|
||||
}
|
||||
#product.content_only div#primary_block div#pb-right-column1 .box-info-product, #product.content_only section#primary_block div#pb-right-column1 .box-info-product {
|
||||
border-top-width: 1px;
|
||||
min-height: 1px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 1050px) and (max-width: 479px) {
|
||||
#product.content_only div#primary_block, #product.content_only section#primary_block {
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
@media (max-width: 1050px) and (max-width: 479px) {
|
||||
#product.content_only div#primary_block div#pb-left-column, #product.content_only section#primary_block div#pb-left-column {
|
||||
width: 100%;
|
||||
float: none;
|
||||
padding-left: 15px;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
}
|
||||
@media (max-width: 1050px) and (max-width: 479px) {
|
||||
#product.content_only div#primary_block div#pb-right-column1, #product.content_only section#primary_block div#pb-right-column1 {
|
||||
margin-top: 10px;
|
||||
width: 100%;
|
||||
float: none;
|
||||
padding-left: 15px;
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -30,6 +30,32 @@ ul.product_list .color-list-container ul li a {
|
||||
height: 23px;
|
||||
margin: 1px;
|
||||
}
|
||||
ul.product_list .product-image-container .quick-view {
|
||||
font: 700 13px/16px Arial, Helvetica, sans-serif;
|
||||
color: #777676;
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
margin: -21px 0 0 -53px;
|
||||
padding: 13px 0 0;
|
||||
background: rgba(255, 255, 255, 0.82);
|
||||
width: 107px;
|
||||
height: 43px;
|
||||
text-align: center;
|
||||
-webkit-box-shadow: rgba(0, 0, 0, 0.16) 0 2px 8px;
|
||||
-moz-box-shadow: rgba(0, 0, 0, 0.16) 0 2px 8px;
|
||||
box-shadow: rgba(0, 0, 0, 0.16) 0 2px 8px;
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
ul.product_list .product-image-container .quick-view {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
ul.product_list .product-image-container .quick-view {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
/*******************************************************
|
||||
Product list(Grid) Styles
|
||||
@@ -38,6 +64,11 @@ ul.product_list.grid > li {
|
||||
margin-bottom: 20px;
|
||||
text-align: center;
|
||||
}
|
||||
@media (min-width: 480px) and (max-width: 767px) {
|
||||
ul.product_list.grid > li {
|
||||
width: 50%;
|
||||
}
|
||||
}
|
||||
ul.product_list.grid > li .product-container {
|
||||
background: #fff;
|
||||
padding: 0;
|
||||
@@ -49,6 +80,13 @@ ul.product_list.grid > li .product-container .product-image-container {
|
||||
margin-bottom: 13px;
|
||||
position: relative;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
ul.product_list.grid > li .product-container .product-image-container {
|
||||
max-width: 290px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
}
|
||||
ul.product_list.grid > li .product-container .product-image-container .content_price {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
@@ -82,17 +120,25 @@ ul.product_list.grid > li .product-container .old-price {
|
||||
margin-right: 5px;
|
||||
}
|
||||
ul.product_list.grid > li .product-container .button-container {
|
||||
display: none;
|
||||
margin-bottom: 14px;
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
ul.product_list.grid > li .product-container .button-container {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
ul.product_list.grid > li .product-container .button-container .ajax_add_to_cart_button, ul.product_list.grid > li .product-container .button-container span.button {
|
||||
margin-right: 6px;
|
||||
}
|
||||
ul.product_list.grid > li .product-container .functional-buttons {
|
||||
display: none;
|
||||
background: url(../img/functional-bt-shadow.png) repeat-x;
|
||||
padding: 11px 0 5px;
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
ul.product_list.grid > li .product-container .functional-buttons {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
ul.product_list.grid > li .product-container .functional-buttons div {
|
||||
width: 50%;
|
||||
float: left;
|
||||
@@ -109,38 +155,80 @@ ul.product_list.grid > li .product-container .functional-buttons div a:hover, ul
|
||||
ul.product_list.grid > li .product-container .functional-buttons div.wishlist {
|
||||
border-right: 1px solid #d6d4d4;
|
||||
}
|
||||
@media (min-width: 992px) and (max-width: 1199px) {
|
||||
ul.product_list.grid > li .product-container .functional-buttons div.wishlist {
|
||||
border-right: 0;
|
||||
}
|
||||
ul.product_list.grid > li .product-container .functional-buttons div.wishlist i {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
@media (min-width: 480px) and (max-width: 767px) {
|
||||
ul.product_list.grid > li .product-container .functional-buttons div.wishlist {
|
||||
border-right: 0;
|
||||
}
|
||||
ul.product_list.grid > li .product-container .functional-buttons div.wishlist i {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
ul.product_list.grid > li .product-container .functional-buttons div.compare:before {
|
||||
content: "";
|
||||
display: inline-block;
|
||||
font-family: 'FontAwesome';
|
||||
}
|
||||
@media (min-width: 992px) and (max-width: 1199px) {
|
||||
ul.product_list.grid > li .product-container .functional-buttons div.compare:before {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
@media (min-width: 480px) and (max-width: 767px) {
|
||||
ul.product_list.grid > li .product-container .functional-buttons div.compare:before {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
ul.product_list.grid > li .product-container .functional-buttons div.compare.compare.checked:before {
|
||||
content: "";
|
||||
}
|
||||
ul.product_list.grid > li .product-container:hover {
|
||||
-webkit-box-shadow: rgba(0, 0, 0, 0.17) 0 0 13px;
|
||||
-moz-box-shadow: rgba(0, 0, 0, 0.17) 0 0 13px;
|
||||
box-shadow: rgba(0, 0, 0, 0.17) 0 0 13px;
|
||||
margin-bottom: -48px;
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
@media (min-width: 1200px) {
|
||||
ul.product_list.grid > li .product-container:hover {
|
||||
-webkit-box-shadow: rgba(0, 0, 0, 0.17) 0 0 13px;
|
||||
-moz-box-shadow: rgba(0, 0, 0, 0.17) 0 0 13px;
|
||||
box-shadow: rgba(0, 0, 0, 0.17) 0 0 13px;
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
}
|
||||
ul.product_list.grid > li .product-container:hover .content_price {
|
||||
display: none;
|
||||
}
|
||||
ul.product_list.grid > li .product-container:hover .product-image-container .content_price {
|
||||
display: block;
|
||||
}
|
||||
ul.product_list.grid > li .product-container:hover .product-image-container .quick-view {
|
||||
display: block;
|
||||
}
|
||||
ul.product_list.grid > li .product-container:hover .button-container, ul.product_list.grid > li .product-container:hover .functional-buttons {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
ul.product_list.grid > li .product-container:hover .content_price {
|
||||
display: none;
|
||||
@media (min-width: 992px) {
|
||||
ul.product_list.grid > li.first-in-line {
|
||||
clear: left;
|
||||
}
|
||||
}
|
||||
ul.product_list.grid > li .product-container:hover .product-image-container .content_price {
|
||||
display: block;
|
||||
}
|
||||
ul.product_list.grid > li .product-container:hover .button-container, ul.product_list.grid > li .product-container:hover .functional-buttons {
|
||||
display: block;
|
||||
}
|
||||
ul.product_list.grid > li.first-in-line {
|
||||
clear: left;
|
||||
@media (min-width: 480px) and (max-width: 991px) {
|
||||
ul.product_list.grid > li.first-item-of-tablet-line {
|
||||
clear: left;
|
||||
}
|
||||
}
|
||||
|
||||
/*******************************************************
|
||||
Product list(List) Styles
|
||||
********************************************************/
|
||||
@media (max-width: 479px) {
|
||||
ul.product_list.list > li .left-block {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
ul.product_list.list > li .product-container {
|
||||
border-top: 1px solid #d6d4d4;
|
||||
padding: 30px 0 30px;
|
||||
@@ -150,6 +238,12 @@ ul.product_list.list > li .product-image-container {
|
||||
border: 1px solid #d6d4d4;
|
||||
padding: 9px;
|
||||
}
|
||||
@media (max-width: 479px) {
|
||||
ul.product_list.list > li .product-image-container {
|
||||
max-width: 290px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
}
|
||||
ul.product_list.list > li .product-image-container .content_price {
|
||||
display: none !important;
|
||||
}
|
||||
@@ -166,30 +260,89 @@ ul.product_list.list > li h5 {
|
||||
ul.product_list.list > li .product-desc {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
ul.product_list.list > li .right-block .right-block-content {
|
||||
border-left: 1px solid #d6d4d4;
|
||||
padding-left: 30px;
|
||||
padding-bottom: 16px;
|
||||
@media (max-width: 479px) {
|
||||
ul.product_list.list > li .center-block {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
@media (min-width: 992px) {
|
||||
ul.product_list.list > li .right-block .right-block-content {
|
||||
margin: 0;
|
||||
border-left: 1px solid #d6d4d4;
|
||||
padding-left: 15px;
|
||||
padding-bottom: 16px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
ul.product_list.list > li .right-block .right-block-content {
|
||||
padding-top: 20px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 479px) {
|
||||
ul.product_list.list > li .right-block .right-block-content {
|
||||
padding-top: 5px;
|
||||
}
|
||||
}
|
||||
ul.product_list.list > li .right-block .right-block-content .content_price {
|
||||
padding-bottom: 24px;
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
ul.product_list.list > li .right-block .right-block-content .content_price {
|
||||
padding-top: 13px;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
}
|
||||
@media (max-width: 479px) {
|
||||
ul.product_list.list > li .right-block .right-block-content .content_price {
|
||||
padding-top: 0;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
ul.product_list.list > li .right-block .right-block-content .content_price span {
|
||||
display: inline-block;
|
||||
margin-top: -4px;
|
||||
margin-bottom: 14px;
|
||||
}
|
||||
ul.product_list.list > li .right-block .right-block-content .content_price span.price-percent-reduction {
|
||||
margin-left: 8px;
|
||||
ul.product_list.list > li .right-block .right-block-content .content_price span.old-price {
|
||||
margin-right: 8px;
|
||||
}
|
||||
ul.product_list.list > li .right-block .right-block-content .button-container {
|
||||
overflow: hidden;
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
@media (max-width: 479px) {
|
||||
ul.product_list.list > li .right-block .right-block-content .button-container {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
ul.product_list.list > li .right-block .right-block-content .button-container .btn {
|
||||
float: left;
|
||||
clear: both;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
@media (min-width: 992px) {
|
||||
ul.product_list.list > li .right-block .right-block-content .button-container .btn {
|
||||
float: left;
|
||||
clear: both;
|
||||
}
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
ul.product_list.list > li .right-block .right-block-content .functional-buttons {
|
||||
clear: both;
|
||||
}
|
||||
ul.product_list.list > li .right-block .right-block-content .functional-buttons > div {
|
||||
float: left;
|
||||
padding-top: 0 !important;
|
||||
padding-right: 20px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 479px) {
|
||||
ul.product_list.list > li .right-block .right-block-content .functional-buttons {
|
||||
float: none;
|
||||
display: inline-block;
|
||||
}
|
||||
ul.product_list.list > li .right-block .right-block-content .functional-buttons a i, ul.product_list.list > li .right-block .right-block-content .functional-buttons a:before, ul.product_list.list > li .right-block .right-block-content .functional-buttons label i, ul.product_list.list > li .right-block .right-block-content .functional-buttons label:before {
|
||||
display: none !important;
|
||||
}
|
||||
}
|
||||
ul.product_list.list > li .right-block .right-block-content .functional-buttons a, ul.product_list.list > li .right-block .right-block-content .functional-buttons label {
|
||||
font-weight: bold;
|
||||
color: #777676;
|
||||
@@ -244,19 +397,28 @@ ul.product_list.list > li .right-block .right-block-content .functional-buttons
|
||||
ul.product_list.list > li .right-block .right-block-content .functional-buttons .compare label:hover:before {
|
||||
background: #333333;
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
ul.product_list.list > li:hover .product-image-container .quick-view {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
@media (max-width: 479px) {
|
||||
ul.product_list.list > li {
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
/*******************************************************
|
||||
Product list(Index page) Styles
|
||||
********************************************************/
|
||||
#index ul.product_list > li {
|
||||
border-bottom: 1px solid #d6d4d4;
|
||||
#index ul.product_list.tab-pane > li {
|
||||
padding-bottom: 35px;
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
#index ul.product_list > li .availability {
|
||||
#index ul.product_list.tab-pane > li .availability {
|
||||
display: none;
|
||||
}
|
||||
#index ul.product_list > li.last-line {
|
||||
#index ul.product_list.tab-pane > li.last-line {
|
||||
border: none;
|
||||
padding-bottom: 0;
|
||||
margin-bottom: 0;
|
||||
|
||||
@@ -14,6 +14,13 @@
|
||||
#stores .address-input {
|
||||
float: left;
|
||||
margin-right: 19px;
|
||||
/* max 767px */
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
#stores .address-input {
|
||||
width: 100%;
|
||||
margin: 0 0 20px 0;
|
||||
}
|
||||
}
|
||||
#stores .address-input label {
|
||||
margin-right: 5px;
|
||||
@@ -60,7 +67,7 @@
|
||||
margin-left: 5px;
|
||||
}
|
||||
#stores #locationSelect {
|
||||
width: 356px;
|
||||
max-width: 356px;
|
||||
visibility: hidden;
|
||||
}
|
||||
#stores #stores-table {
|
||||
@@ -73,6 +80,19 @@
|
||||
background: #fbfbfb;
|
||||
width: 46px;
|
||||
}
|
||||
#stores #stores-table tbody td.name {
|
||||
/* max 767px */
|
||||
}
|
||||
#stores #stores-table tbody td.name span {
|
||||
padding-left: 15px;
|
||||
}
|
||||
@media (max-width: 767px) {
|
||||
#stores #stores-table tbody td.name img {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.store-image img {
|
||||
width: 100%;
|
||||
min-width: 100px;
|
||||
}
|
||||
|
||||
@@ -27,16 +27,16 @@
|
||||
<h1 class="page-heading">{l s='My vouchers'}</h1>
|
||||
|
||||
{if isset($cart_rules) && count($cart_rules) && $nb_cart_rules}
|
||||
<table class="discount table table-bordered">
|
||||
<table class="discount table table-bordered footab">
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="discount_code first_item">{l s='Code'}</th>
|
||||
<th class="discount_description item">{l s='Description'}</th>
|
||||
<th class="discount_quantity item">{l s='Quantity'}</th>
|
||||
<th class="discount_value item">{l s='Value'}*</th>
|
||||
<th class="discount_minimum item">{l s='Minimum'}</th>
|
||||
<th class="discount_cumulative item">{l s='Cumulative'}</th>
|
||||
<th class="discount_expiration_date last_item">{l s='Expiration date'}</th>
|
||||
<th data-hide="phone,tablet" class="discount_value item">{l s='Value'}*</th>
|
||||
<th data-hide="phone,tablet" class="discount_minimum item">{l s='Minimum'}</th>
|
||||
<th data-hide="phone,tablet" class="discount_cumulative item">{l s='Cumulative'}</th>
|
||||
<th data-hide="phone" class="discount_expiration_date last_item">{l s='Expiration date'}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
||||
@@ -56,8 +56,8 @@
|
||||
<link href="{$css_dir}/font-awesome.css" rel="stylesheet" type="text/css" media="all" />
|
||||
<link href="{$css_dir}/jquery/uniform.default.css" rel="stylesheet" type="text/css" media="all" />
|
||||
<link href="{$css_dir}/highdpi.css" rel="stylesheet" media="only screen and (-webkit-min-device-pixel-ratio: 2)" />
|
||||
<link href="{$css_dir}jquery/owl-carousel/owl.carousel.css" rel="stylesheet" type="text/css" media="all" />
|
||||
<link href="{$css_dir}jquery/owl-carousel/owl.theme.css" rel="stylesheet" type="text/css" media="all" />
|
||||
<link href="{$css_dir}/jquery/footable.core.css" rel="stylesheet" type="text/css" media="all" />
|
||||
<link href="{$css_dir}jquery/jquery.bxslider.css" rel="stylesheet" type="text/css" media="all" />
|
||||
{if isset($css_files)}
|
||||
{foreach from=$css_files key=css_uri item=media}
|
||||
<link href="{$css_uri}" rel="stylesheet" type="text/css" media="{$media}" />
|
||||
@@ -71,8 +71,9 @@
|
||||
<script src="{$js_dir}/tools/bootstrap.min.js"></script>
|
||||
<script src="{$js_dir}/tools/jquery.total-storage.min.js"></script>
|
||||
<script src="{$js_dir}/jquery/jquery.uniform-modify.js"></script>
|
||||
<script src="{$js_dir}/jquery/owl.carousel.js"></script>
|
||||
<script src="{$js_dir}/jquery/highdpi.js"></script>
|
||||
<script src="{$js_dir}/jquery/jquery.bxslider.js"></script>
|
||||
<script src="{$js_dir}/jquery/footable.js"></script>
|
||||
{$HOOK_HEADER}
|
||||
</head>
|
||||
|
||||
@@ -87,7 +88,7 @@
|
||||
<div class="banner-top">
|
||||
<div class="container">
|
||||
<a href="#">
|
||||
<img class="banner-top" src="{$img_dir}top-banner.gif" alt="banner-top"/>
|
||||
<img class="banner-top img-responsive" src="{$img_dir}top-banner.gif" alt="banner-top"/>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -33,16 +33,16 @@
|
||||
|
||||
<div class="block-center" id="block-history">
|
||||
{if $orders && count($orders)}
|
||||
<table id="order-list" class="table table-bordered">
|
||||
<table id="order-list" class="table table-bordered footab">
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="first_item">{l s='Order reference'}</th>
|
||||
<th class="item">{l s='Date'}</th>
|
||||
<th class="item">{l s='Total price'}</th>
|
||||
<th class="item">{l s='Payment: '}</th>
|
||||
<th data-hide="phone" class="item">{l s='Total price'}</th>
|
||||
<th data-hide="phone,tablet" class="item">{l s='Payment: '}</th>
|
||||
<th class="item">{l s='Status'}</th>
|
||||
<th class="item">{l s='Invoice'}</th>
|
||||
<th class="last_item"> </th>
|
||||
<th data-hide="phone,tablet" class="item">{l s='Invoice'}</th>
|
||||
<th data-hide="phone,tablet" class="last_item"> </th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
||||
@@ -59,21 +59,9 @@
|
||||
<input class="form-control" type="text" name="lastname" id="lastname" value="{$smarty.post.lastname}" />
|
||||
</div>
|
||||
<div class="required form-group">
|
||||
<label for="email">{l s='Email'} <sup>*</sup></label>
|
||||
<label for="email">{l s='E-mail address'} <sup>*</sup></label>
|
||||
<input class="form-control" type="email" name="email" id="email" value="{$smarty.post.email}" />
|
||||
</div>
|
||||
<div class="required form-group">
|
||||
<label for="old_passwd">{l s='Current Password'} <sup>*</sup></label>
|
||||
<input class="form-control" type="password" name="old_passwd" id="old_passwd" />
|
||||
</div>
|
||||
<div class="password form-group">
|
||||
<label for="passwd">{l s='New Password'}</label>
|
||||
<input class="form-control" type="password" name="passwd" id="passwd" />
|
||||
</div>
|
||||
<div class="password form-group">
|
||||
<label for="confirmation">{l s='Confirmation'}</label>
|
||||
<input class="form-control" type="password" name="confirmation" id="confirmation" />
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label>{l s='Date of Birth'}</label>
|
||||
<div class="row">
|
||||
@@ -117,6 +105,18 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="required form-group">
|
||||
<label for="old_passwd">{l s='Current Password'} <sup>*</sup></label>
|
||||
<input class="form-control" type="password" name="old_passwd" id="old_passwd" />
|
||||
</div>
|
||||
<div class="password form-group">
|
||||
<label for="passwd">{l s='New Password'}</label>
|
||||
<input class="form-control" type="password" name="passwd" id="passwd" />
|
||||
</div>
|
||||
<div class="password form-group">
|
||||
<label for="confirmation">{l s='Confirmation'}</label>
|
||||
<input class="form-control" type="password" name="confirmation" id="confirmation" />
|
||||
</div>
|
||||
{if $newsletter}
|
||||
<div class="checkbox">
|
||||
<label for="newsletter">
|
||||
|
||||
@@ -611,6 +611,7 @@ function updateCartSummary(json)
|
||||
initial_price = '';
|
||||
if (typeof(product_list[i].price_without_quantity_discount) !== 'undefined')
|
||||
initial_price = formatCurrency(product_list[i].price_without_quantity_discount, currencyFormat, currencySign, currencyBlank);
|
||||
priceReductionPercent = Math.floor((product_list[i].price_without_quantity_discount - product_list[i].price)/product_list[i].price_without_quantity_discount * -100);
|
||||
var current_price = '';
|
||||
if (priceDisplayMethod !== 0)
|
||||
current_price = formatCurrency(product_list[i].price, currencyFormat, currencySign, currencyBlank);
|
||||
@@ -618,14 +619,14 @@ function updateCartSummary(json)
|
||||
current_price = formatCurrency(product_list[i].price_wt, currencyFormat, currencySign, currencyBlank);
|
||||
if (reduction && typeof(initial_price) !== 'undefined')
|
||||
if (initial_price !== '' && product_list[i].price_without_quantity_discount > product_list[i].price)
|
||||
initial_price_text = '<span class="old-price">' + initial_price + '</span>';
|
||||
initial_price_text = '<span class="price-percent-reduction small">'+priceReductionPercent+'%</span><span class="old-price">' + initial_price + '</span>';
|
||||
|
||||
var key_for_blockcart = product_list[i].id_product + '_' + product_list[i].id_product_attribute + '_' + product_list[i].id_address_delivery;
|
||||
var key_for_blockcart_nocustom = product_list[i].id_product + '_' + product_list[i].id_product_attribute + '_' + ((product_list[i].id_customization && product_list[i].quantity_without_customization != product_list[i].quantity)? 'nocustom' : '0') + '_' + product_list[i].id_address_delivery;
|
||||
|
||||
if (priceDisplayMethod !== 0)
|
||||
{
|
||||
$('#product_price_' + key_for_blockcart).html(initial_price_text + current_price);
|
||||
$('#product_price_' + key_for_blockcart).html('<span class="price">' + current_price + '</span>' + initial_price_text);
|
||||
if (typeof(product_list[i].customizationQuantityTotal) !== 'undefined' && product_list[i].customizationQuantityTotal > 0)
|
||||
$('#total_product_price_' + key_for_blockcart).html(formatCurrency(product_list[i].total_customization, currencyFormat, currencySign, currencyBlank));
|
||||
else
|
||||
@@ -635,7 +636,7 @@ function updateCartSummary(json)
|
||||
}
|
||||
else
|
||||
{
|
||||
$('#product_price_' + key_for_blockcart).html(initial_price_text + current_price);
|
||||
$('#product_price_' + key_for_blockcart).html('<span class="price">' + current_price + '</span>' + initial_price_text);
|
||||
if (typeof(product_list[i].customizationQuantityTotal) !== 'undefined' && product_list[i].customizationQuantityTotal > 0)
|
||||
$('#total_product_price_' + key_for_blockcart).html(formatCurrency(product_list[i].total_customization_wt, currencyFormat, currencySign, currencyBlank));
|
||||
else
|
||||
|
||||
@@ -34,6 +34,7 @@ function showOrder(mode, var_content, file)
|
||||
$('#block-order-detail').fadeOut('slow', function()
|
||||
{
|
||||
$(this).html(data);
|
||||
$('.footab').footable();
|
||||
/* if return is allowed*/
|
||||
if ($('#order-detail-content .order_cb').length > 0)
|
||||
{
|
||||
|
||||
@@ -0,0 +1,785 @@
|
||||
/*!
|
||||
* FooTable - Awesome Responsive Tables
|
||||
* Version : 2.0.1.2
|
||||
* http://fooplugins.com/plugins/footable-jquery/
|
||||
*
|
||||
* Requires jQuery - http://jquery.com/
|
||||
*
|
||||
* Copyright 2013 Steven Usher & Brad Vincent
|
||||
* Released under the MIT license
|
||||
* You are free to use FooTable in commercial projects as long as this copyright header is left intact.
|
||||
*
|
||||
* Date: 21 Sep 2013
|
||||
*/
|
||||
(function ($, w, undefined) {
|
||||
w.footable = {
|
||||
options: {
|
||||
delay: 100, // The number of millseconds to wait before triggering the react event
|
||||
breakpoints: { // The different screen resolution breakpoints
|
||||
phone: 480,
|
||||
tablet: 1024
|
||||
},
|
||||
parsers: { // The default parser to parse the value out of a cell (values are used in building up row detail)
|
||||
alpha: function (cell) {
|
||||
return $(cell).data('value') || $.trim($(cell).text());
|
||||
},
|
||||
numeric: function (cell) {
|
||||
var val = $(cell).data('value') || $(cell).text().replace(/[^0-9.\-]/g, '');
|
||||
val = parseFloat(val);
|
||||
if (isNaN(val)) val = 0;
|
||||
return val;
|
||||
}
|
||||
},
|
||||
addRowToggle: true,
|
||||
calculateWidthOverride: null,
|
||||
toggleSelector: ' > tbody > tr:not(.footable-row-detail)', //the selector to show/hide the detail row
|
||||
columnDataSelector: '> thead > tr:last-child > th, > thead > tr:last-child > td', //the selector used to find the column data in the thead
|
||||
detailSeparator: ':', //the separator character used when building up the detail row
|
||||
toggleHTMLElement: '<span />', // override this if you want to insert a click target rather than use a background image.
|
||||
createGroupedDetail: function (data) {
|
||||
var groups = { '_none': { 'name': null, 'data': [] } };
|
||||
for (var i = 0; i < data.length; i++) {
|
||||
var groupid = data[i].group;
|
||||
if (groupid !== null) {
|
||||
if (!(groupid in groups))
|
||||
groups[groupid] = { 'name': data[i].groupName || data[i].group, 'data': [] };
|
||||
|
||||
groups[groupid].data.push(data[i]);
|
||||
} else {
|
||||
groups._none.data.push(data[i]);
|
||||
}
|
||||
}
|
||||
return groups;
|
||||
},
|
||||
createDetail: function (element, data, createGroupedDetail, separatorChar, classes) {
|
||||
/// <summary>This function is used by FooTable to generate the detail view seen when expanding a collapsed row.</summary>
|
||||
/// <param name="element">This is the div that contains all the detail row information, anything could be added to it.</param>
|
||||
/// <param name="data">
|
||||
/// This is an array of objects containing the cell information for the current row.
|
||||
/// These objects look like the below:
|
||||
/// obj = {
|
||||
/// 'name': String, // The name of the column
|
||||
/// 'value': Object, // The value parsed from the cell using the parsers. This could be a string, a number or whatever the parser outputs.
|
||||
/// 'display': String, // This is the actual HTML from the cell, so if you have images etc you want moved this is the one to use and is the default value used.
|
||||
/// 'group': String, // This is the identifier used in the data-group attribute of the column.
|
||||
/// 'groupName': String // This is the actual name of the group the column belongs to.
|
||||
/// }
|
||||
/// </param>
|
||||
/// <param name="createGroupedDetail">The grouping function to group the data</param>
|
||||
/// <param name="separatorChar">The separator charactor used</param>
|
||||
/// <param name="classes">The array of class names used to build up the detail row</param>
|
||||
|
||||
var groups = createGroupedDetail(data);
|
||||
for (var group in groups) {
|
||||
if (groups[group].data.length === 0) continue;
|
||||
if (group !== '_none') element.append('<div class="' + classes.detailInnerGroup + '">' + groups[group].name + '</div>');
|
||||
|
||||
for (var j = 0; j < groups[group].data.length; j++) {
|
||||
var separator = (groups[group].data[j].name) ? separatorChar : '';
|
||||
element.append('<div class="' + classes.detailInnerRow + '"><div class="' + classes.detailInnerName + '">' + groups[group].data[j].name + separator + '</div><div class="' + classes.detailInnerValue + '">' + groups[group].data[j].display + '</div></div>');
|
||||
}
|
||||
}
|
||||
},
|
||||
classes: {
|
||||
main: 'footable',
|
||||
loading: 'footable-loading',
|
||||
loaded: 'footable-loaded',
|
||||
toggle: 'footable-toggle',
|
||||
disabled: 'footable-disabled',
|
||||
detail: 'footable-row-detail',
|
||||
detailCell: 'footable-row-detail-cell',
|
||||
detailInner: 'footable-row-detail-inner',
|
||||
detailInnerRow: 'footable-row-detail-row',
|
||||
detailInnerGroup: 'footable-row-detail-group',
|
||||
detailInnerName: 'footable-row-detail-name',
|
||||
detailInnerValue: 'footable-row-detail-value',
|
||||
detailShow: 'footable-detail-show'
|
||||
},
|
||||
triggers: {
|
||||
initialize: 'footable_initialize', //trigger this event to force FooTable to reinitialize
|
||||
resize: 'footable_resize', //trigger this event to force FooTable to resize
|
||||
redraw: 'footable_redraw', //trigger this event to force FooTable to redraw
|
||||
toggleRow: 'footable_toggle_row', //trigger this event to force FooTable to toggle a row
|
||||
expandFirstRow: 'footable_expand_first_row', //trigger this event to force FooTable to expand the first row
|
||||
expandAll: 'footable_expand_all', //trigger this event to force FooTable to expand all rows
|
||||
collapseAll: 'footable_collapse_all' //trigger this event to force FooTable to collapse all rows
|
||||
},
|
||||
events: {
|
||||
alreadyInitialized: 'footable_already_initialized', //fires when the FooTable has already been initialized
|
||||
initializing: 'footable_initializing', //fires before FooTable starts initializing
|
||||
initialized: 'footable_initialized', //fires after FooTable has finished initializing
|
||||
resizing: 'footable_resizing', //fires before FooTable resizes
|
||||
resized: 'footable_resized', //fires after FooTable has resized
|
||||
redrawn: 'footable_redrawn', //fires after FooTable has redrawn
|
||||
breakpoint: 'footable_breakpoint', //fires inside the resize function, when a breakpoint is hit
|
||||
columnData: 'footable_column_data', //fires when setting up column data. Plugins should use this event to capture their own info about a column
|
||||
rowDetailUpdating: 'footable_row_detail_updating', //fires before a detail row is updated
|
||||
rowDetailUpdated: 'footable_row_detail_updated', //fires when a detail row is being updated
|
||||
rowCollapsed: 'footable_row_collapsed', //fires when a row is collapsed
|
||||
rowExpanded: 'footable_row_expanded', //fires when a row is expanded
|
||||
rowRemoved: 'footable_row_removed', //fires when a row is removed
|
||||
reset: 'footable_reset' //fires when FooTable is reset
|
||||
},
|
||||
debug: false, // Whether or not to log information to the console.
|
||||
log: null
|
||||
},
|
||||
|
||||
version: {
|
||||
major: 0, minor: 5,
|
||||
toString: function () {
|
||||
return w.footable.version.major + '.' + w.footable.version.minor;
|
||||
},
|
||||
parse: function (str) {
|
||||
version = /(\d+)\.?(\d+)?\.?(\d+)?/.exec(str);
|
||||
return {
|
||||
major: parseInt(version[1], 10) || 0,
|
||||
minor: parseInt(version[2], 10) || 0,
|
||||
patch: parseInt(version[3], 10) || 0
|
||||
};
|
||||
}
|
||||
},
|
||||
|
||||
plugins: {
|
||||
_validate: function (plugin) {
|
||||
///<summary>Simple validation of the <paramref name="plugin"/> to make sure any members called by FooTable actually exist.</summary>
|
||||
///<param name="plugin">The object defining the plugin, this should implement a string property called "name" and a function called "init".</param>
|
||||
|
||||
if (!$.isFunction(plugin)) {
|
||||
if (w.footable.options.debug === true) console.error('Validation failed, expected type "function", received type "{0}".', typeof plugin);
|
||||
return false;
|
||||
}
|
||||
var p = new plugin();
|
||||
if (typeof p['name'] !== 'string') {
|
||||
if (w.footable.options.debug === true) console.error('Validation failed, plugin does not implement a string property called "name".', p);
|
||||
return false;
|
||||
}
|
||||
if (!$.isFunction(p['init'])) {
|
||||
if (w.footable.options.debug === true) console.error('Validation failed, plugin "' + p['name'] + '" does not implement a function called "init".', p);
|
||||
return false;
|
||||
}
|
||||
if (w.footable.options.debug === true) console.log('Validation succeeded for plugin "' + p['name'] + '".', p);
|
||||
return true;
|
||||
},
|
||||
registered: [], // An array containing all registered plugins.
|
||||
register: function (plugin, options) {
|
||||
///<summary>Registers a <paramref name="plugin"/> and its default <paramref name="options"/> with FooTable.</summary>
|
||||
///<param name="plugin">The plugin that should implement a string property called "name" and a function called "init".</param>
|
||||
///<param name="options">The default options to merge with the FooTable's base options.</param>
|
||||
|
||||
if (w.footable.plugins._validate(plugin)) {
|
||||
w.footable.plugins.registered.push(plugin);
|
||||
if (typeof options === 'object') $.extend(true, w.footable.options, options);
|
||||
}
|
||||
},
|
||||
load: function(instance){
|
||||
var loaded = [], registered, i;
|
||||
for(i = 0; i < w.footable.plugins.registered.length; i++){
|
||||
try {
|
||||
registered = w.footable.plugins.registered[i];
|
||||
loaded.push(new registered(instance));
|
||||
} catch (err) {
|
||||
if (w.footable.options.debug === true) console.error(err);
|
||||
}
|
||||
}
|
||||
return loaded;
|
||||
},
|
||||
init: function (instance) {
|
||||
///<summary>Loops through all registered plugins and calls the "init" method supplying the current <paramref name="instance"/> of the FooTable as the first parameter.</summary>
|
||||
///<param name="instance">The current instance of the FooTable that the plugin is being initialized for.</param>
|
||||
|
||||
for (var i = 0; i < instance.plugins.length; i++) {
|
||||
try {
|
||||
instance.plugins[i]['init'](instance);
|
||||
} catch (err) {
|
||||
if (w.footable.options.debug === true) console.error(err);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
var instanceCount = 0;
|
||||
|
||||
$.fn.footable = function (options) {
|
||||
///<summary>The main constructor call to initialize the plugin using the supplied <paramref name="options"/>.</summary>
|
||||
///<param name="options">
|
||||
///<para>A JSON object containing user defined options for the plugin to use. Any options not supplied will have a default value assigned.</para>
|
||||
///<para>Check the documentation or the default options object above for more information on available options.</para>
|
||||
///</param>
|
||||
|
||||
options = options || {};
|
||||
var o = $.extend(true, {}, w.footable.options, options); //merge user and default options
|
||||
return this.each(function () {
|
||||
instanceCount++;
|
||||
var footable = new Footable(this, o, instanceCount);
|
||||
$(this).data('footable', footable);
|
||||
});
|
||||
};
|
||||
|
||||
//helper for using timeouts
|
||||
function Timer() {
|
||||
///<summary>Simple timer object created around a timeout.</summary>
|
||||
var t = this;
|
||||
t.id = null;
|
||||
t.busy = false;
|
||||
t.start = function (code, milliseconds) {
|
||||
///<summary>Starts the timer and waits the specified amount of <paramref name="milliseconds"/> before executing the supplied <paramref name="code"/>.</summary>
|
||||
///<param name="code">The code to execute once the timer runs out.</param>
|
||||
///<param name="milliseconds">The time in milliseconds to wait before executing the supplied <paramref name="code"/>.</param>
|
||||
|
||||
if (t.busy) {
|
||||
return;
|
||||
}
|
||||
t.stop();
|
||||
t.id = setTimeout(function () {
|
||||
code();
|
||||
t.id = null;
|
||||
t.busy = false;
|
||||
}, milliseconds);
|
||||
t.busy = true;
|
||||
};
|
||||
t.stop = function () {
|
||||
///<summary>Stops the timer if its runnning and resets it back to its starting state.</summary>
|
||||
|
||||
if (t.id !== null) {
|
||||
clearTimeout(t.id);
|
||||
t.id = null;
|
||||
t.busy = false;
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
function Footable(t, o, id) {
|
||||
///<summary>Inits a new instance of the plugin.</summary>
|
||||
///<param name="t">The main table element to apply this plugin to.</param>
|
||||
///<param name="o">The options supplied to the plugin. Check the defaults object to see all available options.</param>
|
||||
///<param name="id">The id to assign to this instance of the plugin.</param>
|
||||
|
||||
var ft = this;
|
||||
ft.id = id;
|
||||
ft.table = t;
|
||||
ft.options = o;
|
||||
ft.breakpoints = [];
|
||||
ft.breakpointNames = '';
|
||||
ft.columns = {};
|
||||
ft.plugins = w.footable.plugins.load(ft);
|
||||
|
||||
var opt = ft.options,
|
||||
cls = opt.classes,
|
||||
evt = opt.events,
|
||||
trg = opt.triggers,
|
||||
indexOffset = 0;
|
||||
|
||||
// This object simply houses all the timers used in the FooTable.
|
||||
ft.timers = {
|
||||
resize: new Timer(),
|
||||
register: function (name) {
|
||||
ft.timers[name] = new Timer();
|
||||
return ft.timers[name];
|
||||
}
|
||||
};
|
||||
|
||||
ft.init = function () {
|
||||
var $window = $(w), $table = $(ft.table);
|
||||
|
||||
w.footable.plugins.init(ft);
|
||||
|
||||
if ($table.hasClass(cls.loaded)) {
|
||||
//already loaded FooTable for the table, so don't init again
|
||||
ft.raise(evt.alreadyInitialized);
|
||||
return;
|
||||
}
|
||||
|
||||
//raise the initializing event
|
||||
ft.raise(evt.initializing);
|
||||
|
||||
$table.addClass(cls.loading);
|
||||
|
||||
// Get the column data once for the life time of the plugin
|
||||
$table.find(opt.columnDataSelector).each(function () {
|
||||
var data = ft.getColumnData(this);
|
||||
ft.columns[data.index] = data;
|
||||
});
|
||||
|
||||
// Create a nice friendly array to work with out of the breakpoints object.
|
||||
for (var name in opt.breakpoints) {
|
||||
ft.breakpoints.push({ 'name': name, 'width': opt.breakpoints[name] });
|
||||
ft.breakpointNames += (name + ' ');
|
||||
}
|
||||
|
||||
// Sort the breakpoints so the smallest is checked first
|
||||
ft.breakpoints.sort(function (a, b) {
|
||||
return a['width'] - b['width'];
|
||||
});
|
||||
|
||||
$table
|
||||
.unbind(trg.initialize)
|
||||
//bind to FooTable initialize trigger
|
||||
.bind(trg.initialize, function () {
|
||||
//remove previous "state" (to "force" a resize)
|
||||
$table.removeData('footable_info');
|
||||
$table.data('breakpoint', '');
|
||||
|
||||
//trigger the FooTable resize
|
||||
$table.trigger(trg.resize);
|
||||
|
||||
//remove the loading class
|
||||
$table.removeClass(cls.loading);
|
||||
|
||||
//add the FooTable and loaded class
|
||||
$table.addClass(cls.loaded).addClass(cls.main);
|
||||
|
||||
//raise the initialized event
|
||||
ft.raise(evt.initialized);
|
||||
})
|
||||
.unbind(trg.redraw)
|
||||
//bind to FooTable redraw trigger
|
||||
.bind(trg.redraw, function () {
|
||||
ft.redraw();
|
||||
})
|
||||
.unbind(trg.resize)
|
||||
//bind to FooTable resize trigger
|
||||
.bind(trg.resize, function () {
|
||||
ft.resize();
|
||||
})
|
||||
.unbind(trg.expandFirstRow)
|
||||
//bind to FooTable expandFirstRow trigger
|
||||
.bind(trg.expandFirstRow, function () {
|
||||
$table.find(opt.toggleSelector).first().not('.' + cls.detailShow).trigger(trg.toggleRow);
|
||||
})
|
||||
.unbind(trg.expandAll)
|
||||
//bind to FooTable expandFirstRow trigger
|
||||
.bind(trg.expandAll, function () {
|
||||
$table.find(opt.toggleSelector).not('.' + cls.detailShow).trigger(trg.toggleRow);
|
||||
})
|
||||
.unbind(trg.collapseAll)
|
||||
//bind to FooTable expandFirstRow trigger
|
||||
.bind(trg.collapseAll, function () {
|
||||
$table.find('.' + cls.detailShow).trigger(trg.toggleRow);
|
||||
});
|
||||
|
||||
//trigger a FooTable initialize
|
||||
$table.trigger(trg.initialize);
|
||||
|
||||
//bind to window resize
|
||||
$window
|
||||
.bind('resize.footable', function () {
|
||||
ft.timers.resize.stop();
|
||||
ft.timers.resize.start(function () {
|
||||
ft.raise(trg.resize);
|
||||
}, opt.delay);
|
||||
});
|
||||
};
|
||||
|
||||
ft.addRowToggle = function () {
|
||||
if (!opt.addRowToggle) return;
|
||||
|
||||
var $table = $(ft.table),
|
||||
hasToggleColumn = false;
|
||||
|
||||
//first remove all toggle spans
|
||||
$table.find('span.' + cls.toggle).remove();
|
||||
|
||||
for (var c in ft.columns) {
|
||||
var col = ft.columns[c];
|
||||
if (col.toggle) {
|
||||
hasToggleColumn = true;
|
||||
var selector = '> tbody > tr:not(.' + cls.detail + ',.' + cls.disabled + ') > td:nth-child(' + (parseInt(col.index, 10) + 1) + ')';
|
||||
$table.find(selector).not('.' + cls.detailCell).prepend($(opt.toggleHTMLElement).addClass(cls.toggle));
|
||||
return;
|
||||
}
|
||||
}
|
||||
//check if we have an toggle column. If not then add it to the first column just to be safe
|
||||
if (!hasToggleColumn) {
|
||||
$table
|
||||
.find('> tbody > tr:not(.' + cls.detail + ',.' + cls.disabled + ') > td:first-child')
|
||||
.not('.' + cls.detailCell)
|
||||
.prepend($(opt.toggleHTMLElement).addClass(cls.toggle));
|
||||
}
|
||||
};
|
||||
|
||||
ft.setColumnClasses = function () {
|
||||
$table = $(ft.table);
|
||||
for (var c in ft.columns) {
|
||||
var col = ft.columns[c];
|
||||
if (col.className !== null) {
|
||||
var selector = '', first = true;
|
||||
$.each(col.matches, function (m, match) { //support for colspans
|
||||
if (!first) selector += ', ';
|
||||
selector += '> tbody > tr:not(.' + cls.detail + ') > td:nth-child(' + (parseInt(match, 10) + 1) + ')';
|
||||
first = false;
|
||||
});
|
||||
//add the className to the cells specified by data-class="blah"
|
||||
$table.find(selector).not('.' + cls.detailCell).addClass(col.className);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
//moved this out into it's own function so that it can be called from other add-ons
|
||||
ft.bindToggleSelectors = function () {
|
||||
var $table = $(ft.table);
|
||||
|
||||
if (!ft.hasAnyBreakpointColumn()) return;
|
||||
|
||||
$table.find(opt.toggleSelector).unbind(trg.toggleRow).bind(trg.toggleRow, function (e) {
|
||||
var $row = $(this).is('tr') ? $(this) : $(this).parents('tr:first');
|
||||
ft.toggleDetail($row);
|
||||
});
|
||||
|
||||
$table.find(opt.toggleSelector).unbind('click.footable').bind('click.footable', function (e) {
|
||||
if ($table.is('.breakpoint') && $(e.target).is('td,.'+ cls.toggle)) {
|
||||
$(this).trigger(trg.toggleRow);
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
ft.parse = function (cell, column) {
|
||||
var parser = opt.parsers[column.type] || opt.parsers.alpha;
|
||||
return parser(cell);
|
||||
};
|
||||
|
||||
ft.getColumnData = function (th) {
|
||||
var $th = $(th), hide = $th.data('hide'), index = $th.index();
|
||||
hide = hide || '';
|
||||
hide = jQuery.map(hide.split(','), function (a) {
|
||||
return jQuery.trim(a);
|
||||
});
|
||||
var data = {
|
||||
'index': index,
|
||||
'hide': { },
|
||||
'type': $th.data('type') || 'alpha',
|
||||
'name': $th.data('name') || $.trim($th.text()),
|
||||
'ignore': $th.data('ignore') || false,
|
||||
'toggle': $th.data('toggle') || false,
|
||||
'className': $th.data('class') || null,
|
||||
'matches': [],
|
||||
'names': { },
|
||||
'group': $th.data('group') || null,
|
||||
'groupName': null
|
||||
};
|
||||
|
||||
if (data.group !== null) {
|
||||
var $group = $(ft.table).find('> thead > tr.footable-group-row > th[data-group="' + data.group + '"], > thead > tr.footable-group-row > td[data-group="' + data.group + '"]').first();
|
||||
data.groupName = ft.parse($group, { 'type': 'alpha' });
|
||||
}
|
||||
|
||||
var pcolspan = parseInt($th.prev().attr('colspan') || 0, 10);
|
||||
indexOffset += pcolspan > 1 ? pcolspan - 1 : 0;
|
||||
var colspan = parseInt($th.attr('colspan') || 0, 10), curindex = data.index + indexOffset;
|
||||
if (colspan > 1) {
|
||||
var names = $th.data('names');
|
||||
names = names || '';
|
||||
names = names.split(',');
|
||||
for (var i = 0; i < colspan; i++) {
|
||||
data.matches.push(i + curindex);
|
||||
if (i < names.length) data.names[i + curindex] = names[i];
|
||||
}
|
||||
} else {
|
||||
data.matches.push(curindex);
|
||||
}
|
||||
|
||||
data.hide['default'] = ($th.data('hide') === "all") || ($.inArray('default', hide) >= 0);
|
||||
|
||||
var hasBreakpoint = false;
|
||||
for (var name in opt.breakpoints) {
|
||||
data.hide[name] = ($th.data('hide') === "all") || ($.inArray(name, hide) >= 0);
|
||||
hasBreakpoint = hasBreakpoint || data.hide[name];
|
||||
}
|
||||
data.hasBreakpoint = hasBreakpoint;
|
||||
var e = ft.raise(evt.columnData, { 'column': { 'data': data, 'th': th } });
|
||||
return e.column.data;
|
||||
};
|
||||
|
||||
ft.getViewportWidth = function () {
|
||||
return window.innerWidth || (document.body ? document.body.offsetWidth : 0);
|
||||
};
|
||||
|
||||
ft.calculateWidth = function ($table, info) {
|
||||
if (jQuery.isFunction(opt.calculateWidthOverride)) {
|
||||
return opt.calculateWidthOverride($table, info);
|
||||
}
|
||||
if (info.viewportWidth < info.width) info.width = info.viewportWidth;
|
||||
if (info.parentWidth < info.width) info.width = info.parentWidth;
|
||||
return info;
|
||||
};
|
||||
|
||||
ft.hasBreakpointColumn = function (breakpoint) {
|
||||
for (var c in ft.columns) {
|
||||
if (ft.columns[c].hide[breakpoint]) {
|
||||
if (ft.columns[c].ignore) {
|
||||
continue;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
};
|
||||
|
||||
ft.hasAnyBreakpointColumn = function () {
|
||||
for (var c in ft.columns) {
|
||||
if (ft.columns[c].hasBreakpoint) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
};
|
||||
|
||||
ft.resize = function () {
|
||||
var $table = $(ft.table);
|
||||
|
||||
if (!$table.is(':visible')) {
|
||||
return;
|
||||
} //we only care about FooTables that are visible
|
||||
|
||||
if (!ft.hasAnyBreakpointColumn()) {
|
||||
return;
|
||||
} //we only care about FooTables that have breakpoints
|
||||
|
||||
var info = {
|
||||
'width': $table.width(), //the table width
|
||||
'viewportWidth': ft.getViewportWidth(), //the width of the viewport
|
||||
'parentWidth': $table.parent().width() //the width of the parent
|
||||
};
|
||||
|
||||
info = ft.calculateWidth($table, info);
|
||||
|
||||
var pinfo = $table.data('footable_info');
|
||||
$table.data('footable_info', info);
|
||||
ft.raise(evt.resizing, { 'old': pinfo, 'info': info });
|
||||
|
||||
// This (if) statement is here purely to make sure events aren't raised twice as mobile safari seems to do
|
||||
if (!pinfo || (pinfo && pinfo.width && pinfo.width !== info.width)) {
|
||||
|
||||
var current = null, breakpoint;
|
||||
for (var i = 0; i < ft.breakpoints.length; i++) {
|
||||
breakpoint = ft.breakpoints[i];
|
||||
if (breakpoint && breakpoint.width && info.width <= breakpoint.width) {
|
||||
current = breakpoint;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
var breakpointName = (current === null ? 'default' : current['name']),
|
||||
hasBreakpointFired = ft.hasBreakpointColumn(breakpointName),
|
||||
previousBreakpoint = $table.data('breakpoint');
|
||||
|
||||
$table
|
||||
.data('breakpoint', breakpointName)
|
||||
.removeClass('default breakpoint').removeClass(ft.breakpointNames)
|
||||
.addClass(breakpointName + (hasBreakpointFired ? ' breakpoint' : ''));
|
||||
|
||||
//only do something if the breakpoint has changed
|
||||
if (breakpointName !== previousBreakpoint) {
|
||||
//trigger a redraw
|
||||
$table.trigger(trg.redraw);
|
||||
//raise a breakpoint event
|
||||
ft.raise(evt.breakpoint, { 'breakpoint': breakpointName, 'info': info });
|
||||
}
|
||||
}
|
||||
|
||||
ft.raise(evt.resized, { 'old': pinfo, 'info': info });
|
||||
};
|
||||
|
||||
ft.redraw = function () {
|
||||
//add the toggler to each row
|
||||
ft.addRowToggle();
|
||||
|
||||
//bind the toggle selector click events
|
||||
ft.bindToggleSelectors();
|
||||
|
||||
//set any cell classes defined for the columns
|
||||
ft.setColumnClasses();
|
||||
|
||||
var $table = $(ft.table),
|
||||
breakpointName = $table.data('breakpoint'),
|
||||
hasBreakpointFired = ft.hasBreakpointColumn(breakpointName);
|
||||
|
||||
$table
|
||||
.find('> tbody > tr:not(.' + cls.detail + ')').data('detail_created', false).end()
|
||||
.find('> thead > tr:last-child > th')
|
||||
.each(function () {
|
||||
var data = ft.columns[$(this).index()], selector = '', first = true;
|
||||
$.each(data.matches, function (m, match) {
|
||||
if (!first) {
|
||||
selector += ', ';
|
||||
}
|
||||
var count = match + 1;
|
||||
selector += '> tbody > tr:not(.' + cls.detail + ') > td:nth-child(' + count + ')';
|
||||
selector += ', > tfoot > tr:not(.' + cls.detail + ') > td:nth-child(' + count + ')';
|
||||
selector += ', > colgroup > col:nth-child(' + count + ')';
|
||||
first = false;
|
||||
});
|
||||
|
||||
selector += ', > thead > tr[data-group-row="true"] > th[data-group="' + data.group + '"]';
|
||||
var $column = $table.find(selector).add(this);
|
||||
if (data.hide[breakpointName] === false) $column.show();
|
||||
else $column.hide();
|
||||
|
||||
if ($table.find('> thead > tr.footable-group-row').length === 1) {
|
||||
var $groupcols = $table.find('> thead > tr:last-child > th[data-group="' + data.group + '"]:visible, > thead > tr:last-child > th[data-group="' + data.group + '"]:visible'),
|
||||
$group = $table.find('> thead > tr.footable-group-row > th[data-group="' + data.group + '"], > thead > tr.footable-group-row > td[data-group="' + data.group + '"]'),
|
||||
groupspan = 0;
|
||||
|
||||
$.each($groupcols, function () {
|
||||
groupspan += parseInt($(this).attr('colspan') || 1, 10);
|
||||
});
|
||||
|
||||
if (groupspan > 0) $group.attr('colspan', groupspan).show();
|
||||
else $group.hide();
|
||||
}
|
||||
})
|
||||
.end()
|
||||
.find('> tbody > tr.' + cls.detailShow).each(function () {
|
||||
ft.createOrUpdateDetailRow(this);
|
||||
});
|
||||
|
||||
$table.find('> tbody > tr.' + cls.detailShow + ':visible').each(function () {
|
||||
var $next = $(this).next();
|
||||
if ($next.hasClass(cls.detail)) {
|
||||
if (!hasBreakpointFired) $next.hide();
|
||||
else $next.show();
|
||||
}
|
||||
});
|
||||
|
||||
// adding .footable-first-column and .footable-last-column to the first and last th and td of each row in order to allow
|
||||
// for styling if the first or last column is hidden (which won't work using :first-child or :last-child)
|
||||
$table.find('> thead > tr > th.footable-last-column, > tbody > tr > td.footable-last-column').removeClass('footable-last-column');
|
||||
$table.find('> thead > tr > th.footable-first-column, > tbody > tr > td.footable-first-column').removeClass('footable-first-column');
|
||||
$table.find('> thead > tr, > tbody > tr')
|
||||
.find('> th:visible:last, > td:visible:last')
|
||||
.addClass('footable-last-column')
|
||||
.end()
|
||||
.find('> th:visible:first, > td:visible:first')
|
||||
.addClass('footable-first-column');
|
||||
|
||||
ft.raise(evt.redrawn);
|
||||
};
|
||||
|
||||
ft.toggleDetail = function (row) {
|
||||
var $row = (row.jquery) ? row : $(row),
|
||||
$next = $row.next();
|
||||
|
||||
//check if the row is already expanded
|
||||
if ($row.hasClass(cls.detailShow)) {
|
||||
$row.removeClass(cls.detailShow);
|
||||
|
||||
//only hide the next row if it's a detail row
|
||||
if ($next.hasClass(cls.detail)) $next.hide();
|
||||
|
||||
ft.raise(evt.rowCollapsed, { 'row': $row[0] });
|
||||
|
||||
} else {
|
||||
ft.createOrUpdateDetailRow($row[0]);
|
||||
$row.addClass(cls.detailShow)
|
||||
.next().show();
|
||||
|
||||
ft.raise(evt.rowExpanded, { 'row': $row[0] });
|
||||
}
|
||||
};
|
||||
|
||||
ft.removeRow = function (row) {
|
||||
var $row = (row.jquery) ? row : $(row);
|
||||
if ($row.hasClass(cls.detail)) {
|
||||
$row = $row.prev();
|
||||
}
|
||||
var $next = $row.next();
|
||||
if ($row.data('detail_created') === true) {
|
||||
//remove the detail row
|
||||
$next.remove();
|
||||
}
|
||||
$row.remove();
|
||||
|
||||
//raise event
|
||||
ft.raise(evt.rowRemoved);
|
||||
};
|
||||
|
||||
ft.appendRow = function (row) {
|
||||
var $row = (row.jquery) ? row : $(row);
|
||||
$(ft.table).find('tbody').append($row);
|
||||
|
||||
//redraw the table
|
||||
ft.redraw();
|
||||
};
|
||||
|
||||
ft.getColumnFromTdIndex = function (index) {
|
||||
/// <summary>Returns the correct column data for the supplied index taking into account colspans.</summary>
|
||||
/// <param name="index">The index to retrieve the column data for.</param>
|
||||
/// <returns type="json">A JSON object containing the column data for the supplied index.</returns>
|
||||
var result = null;
|
||||
for (var column in ft.columns) {
|
||||
if ($.inArray(index, ft.columns[column].matches) >= 0) {
|
||||
result = ft.columns[column];
|
||||
break;
|
||||
}
|
||||
}
|
||||
return result;
|
||||
};
|
||||
|
||||
ft.createOrUpdateDetailRow = function (actualRow) {
|
||||
var $row = $(actualRow), $next = $row.next(), $detail, values = [];
|
||||
if ($row.data('detail_created') === true) return true;
|
||||
|
||||
if ($row.is(':hidden')) return false; //if the row is hidden for some reason (perhaps filtered) then get out of here
|
||||
ft.raise(evt.rowDetailUpdating, { 'row': $row, 'detail': $next });
|
||||
$row.find('> td:hidden').each(function () {
|
||||
var index = $(this).index(), column = ft.getColumnFromTdIndex(index), name = column.name;
|
||||
if (column.ignore === true) return true;
|
||||
|
||||
if (index in column.names) name = column.names[index];
|
||||
values.push({ 'name': name, 'value': ft.parse(this, column), 'display': $.trim($(this).html()), 'group': column.group, 'groupName': column.groupName });
|
||||
return true;
|
||||
});
|
||||
if (values.length === 0) return false; //return if we don't have any data to show
|
||||
var colspan = $row.find('> td:visible').length;
|
||||
var exists = $next.hasClass(cls.detail);
|
||||
if (!exists) { // Create
|
||||
$next = $('<tr class="' + cls.detail + '"><td class="' + cls.detailCell + '"><div class="' + cls.detailInner + '"></div></td></tr>');
|
||||
$row.after($next);
|
||||
}
|
||||
$next.find('> td:first').attr('colspan', colspan);
|
||||
$detail = $next.find('.' + cls.detailInner).empty();
|
||||
opt.createDetail($detail, values, opt.createGroupedDetail, opt.detailSeparator, cls);
|
||||
$row.data('detail_created', true);
|
||||
ft.raise(evt.rowDetailUpdated, { 'row': $row, 'detail': $next });
|
||||
return !exists;
|
||||
};
|
||||
|
||||
ft.raise = function (eventName, args) {
|
||||
|
||||
if (ft.options.debug === true && $.isFunction(ft.options.log)) ft.options.log(eventName, 'event');
|
||||
|
||||
args = args || { };
|
||||
var def = { 'ft': ft };
|
||||
$.extend(true, def, args);
|
||||
var e = $.Event(eventName, def);
|
||||
if (!e.ft) {
|
||||
$.extend(true, e, def);
|
||||
} //pre jQuery 1.6 which did not allow data to be passed to event object constructor
|
||||
$(ft.table).trigger(e);
|
||||
return e;
|
||||
};
|
||||
|
||||
//reset the state of FooTable
|
||||
ft.reset = function() {
|
||||
var $table = $(ft.table);
|
||||
$table.removeData('footable_info')
|
||||
.data('breakpoint', '')
|
||||
.removeClass(cls.loading)
|
||||
.removeClass(cls.loaded);
|
||||
|
||||
$table.find(opt.toggleSelector).unbind(trg.toggleRow).unbind('click.footable');
|
||||
|
||||
$table.find('> tbody > tr').removeClass(cls.detailShow);
|
||||
|
||||
$table.find('> tbody > tr.' + cls.detail).remove();
|
||||
|
||||
ft.raise(evt.reset);
|
||||
};
|
||||
|
||||
ft.init();
|
||||
return ft;
|
||||
}
|
||||
})(jQuery, window);
|
||||
$(function () {
|
||||
$('.footab').footable();
|
||||
});
|
||||
@@ -1,8 +1,9 @@
|
||||
function highdpi_init() {
|
||||
if(jQuery('.replace-2x').css('font-size') == "1px") {
|
||||
var els = jQuery("img.replace-2x").get();
|
||||
if($('.replace-2x').css('font-size') == "1px") {
|
||||
|
||||
var els = $("img.replace-2x").get();
|
||||
for(var i = 0; i < els.length; i++) {
|
||||
var src = els[i].src
|
||||
var src = els[i].src;
|
||||
src = src.replace(".png", "2x.png");
|
||||
src = src.replace(".jpg", "2x.jpg");
|
||||
src = src.replace(".gif", "2x.gif");
|
||||
@@ -10,6 +11,31 @@ function highdpi_init() {
|
||||
}
|
||||
}
|
||||
}
|
||||
jQuery(document).ready(function() {
|
||||
$(document).ready(function() {
|
||||
|
||||
highdpi_init();
|
||||
});
|
||||
|
||||
$(".replace-2x").each( function ()
|
||||
{
|
||||
$.ajax({
|
||||
url:$(this).attr('src'),
|
||||
type:'HEAD',
|
||||
error:function(){
|
||||
|
||||
if($('.replace-2x').css('font-size') == "1px") {
|
||||
|
||||
var els = $("img.replace-2x").get();
|
||||
for(var i = 0; i < els.length; i++) {
|
||||
var src = els[i].src;
|
||||
src = src.replace("2x.png", ".png");
|
||||
src = src.replace("2x.jpg", ".jpg");
|
||||
src = src.replace("2x.gif", ".gif");
|
||||
els[i].src = src;
|
||||
}
|
||||
}
|
||||
},
|
||||
success:function(){}
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
@@ -41,7 +41,7 @@ var ajaxCart = {
|
||||
return false;
|
||||
});
|
||||
//for product page 'add' button...
|
||||
$('#add_to_cart input').unbind('click').click(function(){
|
||||
$('#add_to_cart button').unbind('click').click(function(){
|
||||
ajaxCart.add( $('#product_page_product_id').val(), $('#idCombination').val(), true, null, $('#quantity_wanted').val(), null);
|
||||
return false;
|
||||
});
|
||||
@@ -169,7 +169,7 @@ var ajaxCart = {
|
||||
|
||||
//reactive the button when adding has finished
|
||||
if (addedFromProductPage)
|
||||
$('#add_to_cart input').removeAttr('disabled').addClass('exclusive').removeClass('exclusive_disabled');
|
||||
$('#add_to_cart button').removeAttr('disabled').removeClass('disabled');
|
||||
else
|
||||
$('.ajax_add_to_cart_button').removeAttr('disabled');
|
||||
},
|
||||
@@ -185,7 +185,7 @@ var ajaxCart = {
|
||||
//disabled the button when adding to not double add if user double click
|
||||
if (addedFromProductPage)
|
||||
{
|
||||
$('#add_to_cart input').attr('disabled', true).removeClass('exclusive').addClass('exclusive_disabled');
|
||||
$('#add_to_cart button').attr('disabled', true).addClass('disabled');
|
||||
$('.filled').removeClass('filled');
|
||||
}
|
||||
else
|
||||
@@ -208,32 +208,36 @@ var ajaxCart = {
|
||||
if (whishlist && !jsonData.errors)
|
||||
WishlistAddProductCart(whishlist[0], idProduct, idCombination, whishlist[1]);
|
||||
|
||||
// add the picture to the cart
|
||||
var $element = $(callerElement).parents('.ajax_block_product').find('a.product_image img,a.product_img_link img');
|
||||
if (!$element.length)
|
||||
$element = $('#bigpic');
|
||||
var $picture = $element.clone();
|
||||
var pictureOffsetOriginal = $element.offset();
|
||||
pictureOffsetOriginal.right = $(window).innerWidth() - pictureOffsetOriginal.left - $element.width();
|
||||
// add the picture to the cart
|
||||
var $element = $(callerElement).parents('.ajax_block_product').find('a.product_image img,a.product_img_link img');
|
||||
if (!$element.length)
|
||||
$element = $('#bigpic');
|
||||
var $picture = $element.clone();
|
||||
var pictureOffsetOriginal = $element.offset();
|
||||
pictureOffsetOriginal.right = $(window).innerWidth() - pictureOffsetOriginal.left - $element.width();
|
||||
|
||||
if ($picture.length)
|
||||
{
|
||||
$picture.css({
|
||||
position: 'absolute',
|
||||
top: pictureOffsetOriginal.top,
|
||||
right: pictureOffsetOriginal.right
|
||||
});
|
||||
}
|
||||
|
||||
var pictureOffset = $picture.offset();
|
||||
var cartBlock = $('#cart_block');
|
||||
if (!$('#cart_block')[0] || !$('#cart_block').offset().top || !$('#cart_block').offset().left)
|
||||
cartBlock = $('#shopping_cart');
|
||||
var cartBlockOffset = cartBlock.offset();
|
||||
cartBlockOffset.right = $(window).innerWidth() - cartBlockOffset.left - cartBlock.width();
|
||||
if ($picture.length)
|
||||
{
|
||||
$picture.css({
|
||||
position: 'absolute',
|
||||
top: pictureOffsetOriginal.top,
|
||||
right: pictureOffsetOriginal.right
|
||||
});
|
||||
}
|
||||
if (typeof(contentOnly) != 'undefined') {
|
||||
var $contentOnly = contentOnly;
|
||||
}
|
||||
var pictureOffset = $picture.offset();
|
||||
if (($contentOnly && $contentOnly !=true) || !$contentOnly) {
|
||||
var cartBlock = $('#cart_block');
|
||||
if (!$('#cart_block')[0] || !$('#cart_block').offset().top || !$('#cart_block').offset().left)
|
||||
cartBlock = $('#shopping_cart');
|
||||
var cartBlockOffset = cartBlock.offset();
|
||||
cartBlockOffset.right = $(window).innerWidth() - cartBlockOffset.left - cartBlock.width();
|
||||
}
|
||||
|
||||
// Check if the block cart is activated for the animation
|
||||
if (cartBlockOffset != undefined && $picture.length)
|
||||
if (cartBlockOffset != undefined && $picture.length && (($contentOnly && $contentOnly !=true) || !$contentOnly))
|
||||
{
|
||||
$picture.appendTo('body');
|
||||
$picture
|
||||
@@ -263,15 +267,20 @@ var ajaxCart = {
|
||||
}
|
||||
});
|
||||
}
|
||||
else
|
||||
else if ($contentOnly && $contentOnly !=false) {
|
||||
window.parent.ajaxCart.updateCartInformation(jsonData, addedFromProductPage);
|
||||
ajaxCart.updateCartInformation(jsonData, addedFromProductPage);
|
||||
}
|
||||
else {
|
||||
ajaxCart.updateCartInformation(jsonData, addedFromProductPage);
|
||||
}
|
||||
},
|
||||
error: function(XMLHttpRequest, textStatus, errorThrown)
|
||||
{
|
||||
alert("Impossible to add the product to the cart.\n\ntextStatus: '" + textStatus + "'\nerrorThrown: '" + errorThrown + "'\nresponseText:\n" + XMLHttpRequest.responseText);
|
||||
//reactive the button when adding has finished
|
||||
if (addedFromProductPage)
|
||||
$('#add_to_cart input').removeAttr('disabled').addClass('exclusive').removeClass('exclusive_disabled');
|
||||
$('#add_to_cart button').removeAttr('disabled').removeClass('disabled');
|
||||
else
|
||||
$(callerElement).removeAttr('disabled');
|
||||
}
|
||||
@@ -487,7 +496,7 @@ var ajaxCart = {
|
||||
content += '<span class="remove_link"></span>';
|
||||
content += '</dt>';
|
||||
if (this.hasAttributes)
|
||||
content += '<dd id="cart_block_combination_of_' + domIdProduct + '" class="unvisible">';
|
||||
content += '<dd id="cart_block_combination_of_' + domIdProduct + '" class="unvisible">';
|
||||
if (this.hasCustomizedDatas)
|
||||
content += ajaxCart.displayNewCustomizedDatas(this);
|
||||
if (this.hasAttributes) content += '</dd>';
|
||||
@@ -606,8 +615,8 @@ var ajaxCart = {
|
||||
var t = $('#layer_cart').outerHeight(true);
|
||||
if (t < h)
|
||||
var n = parseInt(((h-t) / 2) + s) + 'px';
|
||||
$('.layer_cart_overlay').css('width',$('body').width());
|
||||
$('.layer_cart_overlay').css('height',$('body').height());
|
||||
$('.layer_cart_overlay').css('width','100%');
|
||||
$('.layer_cart_overlay').css('height','100%');
|
||||
$('.layer_cart_overlay').show();
|
||||
$('#layer_cart').css({'top': n}).fadeIn('fast');
|
||||
crossselling_serialScroll();
|
||||
@@ -771,12 +780,13 @@ $(document).ready(function()
|
||||
});
|
||||
|
||||
$('#cart_navigation input').click(function(){
|
||||
$(this).attr('disabled', true).removeClass('exclusive').addClass('exclusive_disabled');
|
||||
$(this).attr('disabled', true).addClass('disabled');
|
||||
$(this).closest("form").get(0).submit();
|
||||
});
|
||||
|
||||
$('#layer_cart .cross, #layer_cart .continue, .layer_cart_overlay').click(function(){
|
||||
$('.layer_cart_overlay').hide(); $('#layer_cart').fadeOut('fast'); return false;
|
||||
$('.layer_cart_overlay').hide();
|
||||
$('#layer_cart').fadeOut('fast'); return false;
|
||||
});
|
||||
});
|
||||
|
||||
@@ -795,35 +805,16 @@ function HoverWatcher(selector){
|
||||
})
|
||||
}
|
||||
|
||||
function crossselling_serialScrollFixLock(event, targeted, scrolled, items, position)
|
||||
{
|
||||
serialScrollNbImages = $('#blockcart_list li:visible').length;
|
||||
serialScrollNbImagesDisplayed = 4;
|
||||
|
||||
var leftArrow = position == 0 ? true : false;
|
||||
var rightArrow = position + serialScrollNbImagesDisplayed >= serialScrollNbImages ? true : false;
|
||||
|
||||
$('#blockcart_scroll_left').css('cursor', leftArrow ? 'default' : 'pointer').css('display', leftArrow ? 'none' : 'block').fadeTo(0, leftArrow ? 0 : 1);
|
||||
$('#blockcart_scroll_right').css('cursor', rightArrow ? 'default' : 'pointer').fadeTo(0, rightArrow ? 0 : 1).css('display', rightArrow ? 'none' : 'block');
|
||||
return true;
|
||||
}
|
||||
|
||||
function crossselling_serialScroll()
|
||||
{
|
||||
$('#blockcart_list').serialScroll({
|
||||
items:'li:visible',
|
||||
prev:'#blockcart_scroll_left',
|
||||
next:'#blockcart_scroll_right',
|
||||
axis:'x',
|
||||
offset:0,
|
||||
start:0,
|
||||
stop:true,
|
||||
onBefore:crossselling_serialScrollFixLock,
|
||||
duration:300,
|
||||
step: 1,
|
||||
lazy: true,
|
||||
lock: false,
|
||||
force:false
|
||||
$('#blockcart_caroucel').bxSlider({
|
||||
minSlides: 2,
|
||||
maxSlides: 4,
|
||||
slideWidth: 178,
|
||||
slideMargin: 20,
|
||||
moveSlides: 1,
|
||||
infiniteLoop: false,
|
||||
hideControlOnEnd: true,
|
||||
pager: false
|
||||
});
|
||||
$('#blockcart_list').trigger('goto', 0);
|
||||
}
|
||||
@@ -0,0 +1,38 @@
|
||||
/*
|
||||
* 2007-2013 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 <contact@prestashop.com>
|
||||
* @copyright 2007-2013 PrestaShop SA
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
$(document).ready(function() {
|
||||
$('#crossselling_list_car').bxSlider({
|
||||
minSlides: 2,
|
||||
maxSlides: 6,
|
||||
slideWidth: 178,
|
||||
slideMargin: 20,
|
||||
pager: false,
|
||||
nextText: '',
|
||||
prevText: '',
|
||||
moveSlides:1,
|
||||
infiniteLoop:false,
|
||||
hideControlOnEnd: true
|
||||
});
|
||||
});
|
||||
@@ -24,7 +24,7 @@
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
$(function(){
|
||||
$(document).ready(function(){
|
||||
|
||||
if (typeof(homeslider_speed) == 'undefined')
|
||||
homeslider_speed = 500;
|
||||
@@ -33,5 +33,14 @@ $(function(){
|
||||
if (typeof(homeslider_loop) == 'undefined')
|
||||
homeslider_loop = true;
|
||||
|
||||
$('#homeslider').bxSlider();
|
||||
$('#homeslider').bxSlider({
|
||||
infiniteLoop: homeslider_loop,
|
||||
hideControlOnEnd: true,
|
||||
pager: false,
|
||||
autoHover: true,
|
||||
auto: homeslider_loop,
|
||||
speed: homeslider_speed,
|
||||
pause: homeslider_pause,
|
||||
controls: true
|
||||
});
|
||||
});
|
||||
@@ -0,0 +1,38 @@
|
||||
/*
|
||||
* 2007-2013 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 <contact@prestashop.com>
|
||||
* @copyright 2007-2013 PrestaShop SA
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
$(document).ready(function() {
|
||||
$('#bxslider1').bxSlider({
|
||||
minSlides: 2,
|
||||
maxSlides: 6,
|
||||
slideWidth: 178,
|
||||
slideMargin: 20,
|
||||
pager: false,
|
||||
nextText: '',
|
||||
prevText: '',
|
||||
moveSlides:1,
|
||||
infiniteLoop:false,
|
||||
hideControlOnEnd: true
|
||||
});
|
||||
});
|
||||
@@ -62,6 +62,7 @@ function updatePaymentMethodsDisplay()
|
||||
success: function(json)
|
||||
{
|
||||
updatePaymentMethods(json);
|
||||
$("select.form-control,input[type='checkbox']").uniform();
|
||||
}
|
||||
});
|
||||
$(this).fadeOut('slow');
|
||||
|
||||
@@ -511,7 +511,7 @@ $(document).ready(function()
|
||||
stop:true,
|
||||
onBefore:serialScrollFixLock,
|
||||
duration:700,
|
||||
step: 2,
|
||||
step: 1,
|
||||
lazy: true,
|
||||
lock: false,
|
||||
force:false,
|
||||
@@ -570,12 +570,14 @@ $(document).ready(function()
|
||||
$('#resetImages').click(function() {
|
||||
refreshProductImages(0);
|
||||
});
|
||||
|
||||
$('.thickbox').fancybox({
|
||||
'hideOnContentClick': true,
|
||||
'transitionIn' : 'elastic',
|
||||
'transitionOut' : 'elastic'
|
||||
});
|
||||
if (contentOnly == false)
|
||||
$('.thickbox').fancybox({
|
||||
'hideOnContentClick': true,
|
||||
'transitionIn' : 'elastic',
|
||||
'transitionOut' : 'elastic'
|
||||
});
|
||||
else
|
||||
$('.thickbox').click(function(){return false})
|
||||
});
|
||||
|
||||
function saveCustomization()
|
||||
@@ -726,3 +728,35 @@ function checkUrl()
|
||||
}
|
||||
}
|
||||
}
|
||||
// product quantity change buttons
|
||||
$(document).ready(function(){
|
||||
// The button to increment the product value
|
||||
$('.product_quantity_up').click(function(e){
|
||||
e.preventDefault();
|
||||
fieldName = $(this).attr('rel');
|
||||
var currentVal = parseInt($('input[name='+fieldName+']').val());
|
||||
if (quantityAvailable > 0) {
|
||||
quantityAvailableT = quantityAvailable;
|
||||
} else {
|
||||
quantityAvailableT = 100000000;
|
||||
}
|
||||
if (!isNaN(currentVal) && currentVal < quantityAvailableT) {
|
||||
$('input[name='+fieldName+']').val(currentVal + 1).trigger('keyup');
|
||||
} else {
|
||||
$('input[name='+fieldName+']').val(quantityAvailableT);
|
||||
}
|
||||
return false;
|
||||
});
|
||||
// The button to decrement the product value
|
||||
$(".product_quantity_down").click(function(e) {
|
||||
e.preventDefault();
|
||||
fieldName = $(this).attr('rel');
|
||||
var currentVal = parseInt($('input[name='+fieldName+']').val());
|
||||
if (!isNaN(currentVal) && currentVal > 1) {
|
||||
$('input[name='+fieldName+']').val(currentVal - 1).trigger('keyup');
|
||||
} else {
|
||||
$('input[name='+fieldName+']').val(1);
|
||||
}
|
||||
return false;
|
||||
});
|
||||
});
|
||||
|
||||
@@ -22,12 +22,21 @@
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
$(document).ready(function() {
|
||||
$('.quick-view').hover(function() {
|
||||
function quick_view() {
|
||||
$('.quick-view').click(function() {
|
||||
$.fancybox({
|
||||
'type': 'iframe',
|
||||
'href': this.href+'&content_only=1'
|
||||
'padding': 0,
|
||||
'width': 1087,
|
||||
'height': 610,
|
||||
'type': 'iframe',
|
||||
'href': this.rel+'&content_only=1'
|
||||
});
|
||||
ajaxCart.refresh();
|
||||
return false;
|
||||
});
|
||||
}
|
||||
$(document).ready(function() {
|
||||
quick_view();
|
||||
});
|
||||
|
||||
|
||||
|
||||
@@ -1,997 +0,0 @@
|
||||
<?php
|
||||
|
||||
global $_LANG;
|
||||
$_LANG = array();
|
||||
|
||||
$_LANG['live_edit_282f96c7d1ed98d24606d209dcad9842'] = 'Position des modules sauvée';
|
||||
$_LANG['live_edit_49d4a9317844948aa594330102d79026'] = 'Etes-vous sûr ? Si vous fermez cette fenêtre, sa position ne sera pas sauvée';
|
||||
$_LANG['live_edit_d3d2e617335f08df83599665eef8a418'] = 'Fermer';
|
||||
$_LANG['live_edit_ea4788705e6873b424c65e91c2846b19'] = 'Annuler';
|
||||
$_LANG['live_edit_70d9be9b139893aa6c69b5e77e614311'] = 'Confirmer';
|
||||
$_LANG['live_edit_1b7c6a7f9b72974ede874b8fba9547a0'] = 'Ajouter ce module';
|
||||
$_LANG['live_edit_da87eac3848a0d55560bdd129a0e134b'] = 'Impossible de supprimer le module de ce hook';
|
||||
$_LANG['live_edit_79030d996976f29a5e986a42d8f026e5'] = 'Impossible d\'enregistrer la position du module';
|
||||
$_LANG['live_edit_3c5b87f318f203adbfcc5d6a68959359'] = 'Impossible de charger la liste des modules';
|
||||
$_LANG['live_edit_c9cc8cce247e49bae79f15173ce97354'] = 'Enregistrer';
|
||||
$_LANG['live_edit_d8dcfab18b3a6eba56d617dd1dcb1ba7'] = 'Fermer Live Edit';
|
||||
$_LANG['404_44b1d05764b093cb00c25b8228cb87d3'] = 'Page introuvable';
|
||||
$_LANG['404_6554aae881e40036cac1f5710a4c52c1'] = 'La page que vous avez demandée n\'existe plus';
|
||||
$_LANG['404_9bec38acab82302a8cf6fbb9182da21f'] = 'Pour rechercher un produit, saisissez son nom dans le champ ci-dessous';
|
||||
$_LANG['404_a68ba7d969d1294a35138fa501dfb078'] = 'Chercher dans les produits de notre catalogue :';
|
||||
$_LANG['404_8cf04a9734132302f96da8e113e80ce5'] = 'Accueil';
|
||||
$_LANG['404_13348442cc6a27032d2b4aa28b75a5d3'] = 'Rechercher';
|
||||
$_LANG['addresses_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'Mon compte';
|
||||
$_LANG['addresses_e45be0a0d4a0b62b15694c1a631e6e62'] = 'Mes adresses';
|
||||
$_LANG['addresses_a6d373cdb986fc009a5a040a4c3d8c1d'] = 'Choisissez vos adresses de facturation et de livraison. Ces dernières seront présélectionnées lors de vos commandes. Vous pouvez également ajouter d\'autres adresses, ce qui est particulièrement intéressant pour envoyer des cadeaux ou recevoir votre commande au bureau.';
|
||||
$_LANG['addresses_aa5e970d64eb228f31669d3411171f92'] = 'Vos adresses sont listées ci-dessous.';
|
||||
$_LANG['addresses_e380ae58f85252c076e131862857de35'] = 'Pensez à les tenir à jour si ces dernières venaient à changer.';
|
||||
$_LANG['addresses_06933067aafd48425d67bcb01bba5cb6'] = 'Mettre à jour';
|
||||
$_LANG['addresses_729a51874fe901b092899e9e8b31c97a'] = 'Êtes-vous sûr ?';
|
||||
$_LANG['addresses_f2a6c498fb90ee345d997f888fce3b18'] = 'Supprimer';
|
||||
$_LANG['addresses_56d3db43fb7f323139022a29d57276d8'] = 'Aucune adresse disponible.';
|
||||
$_LANG['addresses_b15e1100a6196acba01ef7aaa5b2a9e5'] = 'Ajouter une adresse';
|
||||
$_LANG['addresses_3c7d34ae915c6664189dab2aebb02307'] = 'Ajouter une adresse';
|
||||
$_LANG['addresses_a958dbb46713e59856c35f89e5092a5e'] = 'Retour à votre compte';
|
||||
$_LANG['addresses_8cf04a9734132302f96da8e113e80ce5'] = 'Accueil';
|
||||
$_LANG['address_3908e1afa0ff22fbf112aff3c5ba55c1'] = 'Vos adresses';
|
||||
$_LANG['address_e9b6b3aa3cab28048d3879710882e1de'] = 'Modifier cette adresse';
|
||||
$_LANG['address_d7f172af352aa5232de5295afeaa68e5'] = 'Pour ajouter une nouvelle adresse, merci de remplir ce formulaire.';
|
||||
$_LANG['address_19f823c6453c2b1ffd09cb715214813d'] = 'Champ requis';
|
||||
$_LANG['address_455175f3f5be6306247babb349c0515a'] = 'Votre adresse';
|
||||
$_LANG['address_393d8c6bc7a04264bd9523dc8c92b818'] = 'Nouvelle adresse';
|
||||
$_LANG['address_b60bb13a87fe3ae5463aeb0980a5a8a1'] = 'Numéro d\'identification fiscale :';
|
||||
$_LANG['address_ea318a4ad37f0c2d2c368e6c958ed551'] = 'DNI / NIF / NIE';
|
||||
$_LANG['address_1c76cbfe21c6f44c1d1e59d54f3e4420'] = 'Société';
|
||||
$_LANG['address_7cb32e708d6b961d476baced73d362bb'] = 'Numéro de TVA';
|
||||
$_LANG['address_20db0bfeecd8fe60533206a2b5e9891a'] = 'Prénom';
|
||||
$_LANG['address_8d3f5eff9c40ee315d452392bed5309b'] = 'Nom';
|
||||
$_LANG['address_dd7bf230fde8d4836917806aff6a6b27'] = 'Adresse';
|
||||
$_LANG['address_846a54955f32846032981f8fe48c35ff'] = 'Adresse (2)';
|
||||
$_LANG['address_d30f507473129e70c4b962ceccf175cf'] = 'Code postal';
|
||||
$_LANG['address_57d056ed0984166336b7879c2af3657f'] = 'Ville';
|
||||
$_LANG['address_59716c97497eb9694541f7c3d37b1a4d'] = 'Pays';
|
||||
$_LANG['address_46a2a41cc6e552044816a2d04634545d'] = 'Etat';
|
||||
$_LANG['address_0f68b904e33d9ac04605aecc958bcf52'] = 'Informations supplémentaires';
|
||||
$_LANG['address_eeabead01c6c6f25f22bf0b041df58a9'] = 'Vous devez enregistrer au moins un numéro de téléphone';
|
||||
$_LANG['address_fe66abce284ec8589e7d791185b5c442'] = 'Téléphone domicile';
|
||||
$_LANG['address_41c2fff4867cc204120f001e7af20f7a'] = 'Téléphone portable';
|
||||
$_LANG['address_89a9a0e5aec9360bc3b0141c8d42e586'] = 'Donnez un titre à cette adresse pour la retrouver plus facilement';
|
||||
$_LANG['address_ae7bdef7fe2bbbbf02c11e92c5fceb40'] = 'Mon adresse';
|
||||
$_LANG['address_c9cc8cce247e49bae79f15173ce97354'] = 'Valider';
|
||||
$_LANG['authentication_c75f7811d70d17dbcd88e9d03752cbed'] = 'Identifiez-vous';
|
||||
$_LANG['authentication_5bef23eb7efff2736c5583bda59e5eb7'] = 'Créez votre compte';
|
||||
$_LANG['authentication_2fdfd506efea08144c0794c32ca8250a'] = 'Créez votre compte';
|
||||
$_LANG['authentication_cb430603758e73c64b8e1fef814b0be0'] = 'Il y a une erreur';
|
||||
$_LANG['authentication_59ba30f362294e33f80618c601fd2801'] = 'Il y a %s erreurs';
|
||||
$_LANG['authentication_07b66aebbc092434ec2f0558f229ad53'] = 'Saisissez votre adresse e-mail pour créer votre compte';
|
||||
$_LANG['authentication_b357b524e740bc85b9790a0712d84a30'] = 'Adresse e-mail';
|
||||
$_LANG['authentication_db879b00e657fc85f7873343f11df21c'] = 'Déjà inscrit?';
|
||||
$_LANG['authentication_dc647eb65e6711e155375218212b3964'] = 'Mot de passe';
|
||||
$_LANG['authentication_57478054ae00730105f1bfe535b2225e'] = 'Récupérez votre mot de passe';
|
||||
$_LANG['authentication_01a569ddc6cf67ddec2a683f0a5f5956'] = 'Mot de passe oublié ?';
|
||||
$_LANG['authentication_d87f73e8ff8d933ed2ba5ddf25040827'] = 'Commande instantanée';
|
||||
$_LANG['authentication_b78a3223503896721cca1303f776159b'] = 'Civilité';
|
||||
$_LANG['authentication_20db0bfeecd8fe60533206a2b5e9891a'] = 'Prénom';
|
||||
$_LANG['authentication_8d3f5eff9c40ee315d452392bed5309b'] = 'Nom';
|
||||
$_LANG['authentication_10803b83a68db8f7e7a33e3b41e184d0'] = 'Date de naissance';
|
||||
$_LANG['authentication_86f5978d9b80124f509bdb71786e929e'] = 'Janvier';
|
||||
$_LANG['authentication_659e59f062c75f81259d22786d6c44aa'] = 'Février';
|
||||
$_LANG['authentication_fa3e5edac607a88d8fd7ecb9d6d67424'] = 'Mars';
|
||||
$_LANG['authentication_3fcf026bbfffb63fb24b8de9d0446949'] = 'Avril';
|
||||
$_LANG['authentication_195fbb57ffe7449796d23466085ce6d8'] = 'Mai';
|
||||
$_LANG['authentication_688937ccaf2a2b0c45a1c9bbba09698d'] = 'Juin';
|
||||
$_LANG['authentication_1b539f6f34e8503c97f6d3421346b63c'] = 'Juillet';
|
||||
$_LANG['authentication_41ba70891fb6f39327d8ccb9b1dafb84'] = 'Août';
|
||||
$_LANG['authentication_cc5d90569e1c8313c2b1c2aab1401174'] = 'Septembre';
|
||||
$_LANG['authentication_eca60ae8611369fe28a02e2ab8c5d12e'] = 'Octobre';
|
||||
$_LANG['authentication_7e823b37564da492ca1629b4732289a8'] = 'Novembre';
|
||||
$_LANG['authentication_82331503174acbae012b2004f6431fa5'] = 'Décembre';
|
||||
$_LANG['authentication_93edfc7af9b6471b30030cf17646e36c'] = 'S\'inscrire à la newsletter';
|
||||
$_LANG['authentication_baca087296e01b5d69799dd53bcd7950'] = 'Recevez les offres spéciales de nos partenaires';
|
||||
$_LANG['authentication_af0f5bdc5be121b9307687aeeae38c17'] = 'Adresse de livraison';
|
||||
$_LANG['authentication_1c76cbfe21c6f44c1d1e59d54f3e4420'] = 'Société';
|
||||
$_LANG['authentication_7cb32e708d6b961d476baced73d362bb'] = 'Numéro de TVA';
|
||||
$_LANG['authentication_dd7bf230fde8d4836917806aff6a6b27'] = 'Adresse';
|
||||
$_LANG['authentication_d30f507473129e70c4b962ceccf175cf'] = 'Code postal';
|
||||
$_LANG['authentication_57d056ed0984166336b7879c2af3657f'] = 'Ville';
|
||||
$_LANG['authentication_59716c97497eb9694541f7c3d37b1a4d'] = 'Pays';
|
||||
$_LANG['authentication_46a2a41cc6e552044816a2d04634545d'] = 'Etat';
|
||||
$_LANG['authentication_bcc254b55c4a1babdf1dcb82c207506b'] = 'Téléphone';
|
||||
$_LANG['authentication_ae7bdef7fe2bbbbf02c11e92c5fceb40'] = 'Mon adresse';
|
||||
$_LANG['authentication_c773457e85b990c10f8823eacb21346c'] = 'Identification fiscale';
|
||||
$_LANG['authentication_b60bb13a87fe3ae5463aeb0980a5a8a1'] = 'Numéro d\'identification';
|
||||
$_LANG['authentication_ea318a4ad37f0c2d2c368e6c958ed551'] = 'DNI / NIF / NIE';
|
||||
$_LANG['authentication_19f823c6453c2b1ffd09cb715214813d'] = 'Champs obligatoires';
|
||||
$_LANG['authentication_a0bfb8e59e6c13fc8d990781f77694fe'] = 'Continuer';
|
||||
$_LANG['authentication_6335a00a08fde0fbb8f6d6630cdadd92'] = 'Vos informations personnelles';
|
||||
$_LANG['authentication_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'E-mail';
|
||||
$_LANG['authentication_f430bd2f85c4424dabd003de2ddf370c'] = '(5 caractères min.)';
|
||||
$_LANG['authentication_1011bae349c34405e0c47931fc7ef8ad'] = 'Vos informations société';
|
||||
$_LANG['authentication_4f68183551e5dbd7c341347ffe308682'] = 'SIRET';
|
||||
$_LANG['authentication_85fb93a8ee9440499692da24a1621769'] = 'APE';
|
||||
$_LANG['authentication_15bbb9d0bbf25e8d2978de1168c749dc'] = 'Site web';
|
||||
$_LANG['authentication_455175f3f5be6306247babb349c0515a'] = 'Votre adresse';
|
||||
$_LANG['authentication_d83893e5c6dab1264313e6a0bc77814b'] = 'Numéro dans la rue, boîte postale, nom de la société';
|
||||
$_LANG['authentication_846a54955f32846032981f8fe48c35ff'] = 'Adresse (2)';
|
||||
$_LANG['authentication_261ed9f602d575774ae05f2d9f3003da'] = 'Appartement, suite, bloc, bâtiment, étage, etc.';
|
||||
$_LANG['authentication_0f68b904e33d9ac04605aecc958bcf52'] = 'Informations complémentaires';
|
||||
$_LANG['authentication_eeabead01c6c6f25f22bf0b041df58a9'] = 'Vous devez enregistrer au moins un numéro de téléphone';
|
||||
$_LANG['authentication_fe66abce284ec8589e7d791185b5c442'] = 'Téléphone domicile';
|
||||
$_LANG['authentication_41c2fff4867cc204120f001e7af20f7a'] = 'Téléphone portable';
|
||||
$_LANG['authentication_d973a0b6f38ebe7c83094d3dc4e04ae5'] = 'Donnez un titre à cette adresse pour la retrouver plus facilement';
|
||||
$_LANG['authentication_0ba7583639a274c434bbe6ef797115a4'] = 'S\'inscrire';
|
||||
$_LANG['best-sales_3cb29f0ccc5fd220a97df89dafe46290'] = 'Meilleures ventes';
|
||||
$_LANG['best-sales_73d3cc7826075c127caaadb0e20162ab'] = 'Pas de meilleures ventes pour le moment.';
|
||||
$_LANG['best-sales_d3da97e2d9aee5c8fbe03156ad051c99'] = 'Plus d\'infos';
|
||||
$_LANG['breadcrumb_56cf8b33ab527ab81b4f6b3ceac090dd'] = 'retour à Accueil';
|
||||
$_LANG['breadcrumb_8cf04a9734132302f96da8e113e80ce5'] = 'Accueil';
|
||||
$_LANG['category-count_5f2df0ffebf79a6357f7fa93e472872b'] = 'Aucun produit dans cette catégorie.';
|
||||
$_LANG['category-count_057502b41589e4fcff2f77eb0b122669'] = 'Il y a %d produit.';
|
||||
$_LANG['category-count_a9d48596a6537347711527bab8fcd152'] = 'Il y a %d produits.';
|
||||
$_LANG['category_d3da97e2d9aee5c8fbe03156ad051c99'] = 'Plus';
|
||||
$_LANG['category_f73cc399b5ce12735a57f03414f09ef9'] = 'Sous-catégories';
|
||||
$_LANG['category_2f4e54ec9bebe1122b5c23217e764828'] = 'Cette catégorie est actuellement indisponible.';
|
||||
$_LANG['category-tree-branch_e191aafd204a3bd9d62862f7ccf13f39'] = 'Voir les produits de cette catégorie';
|
||||
$_LANG['cms_24a26cffdfea04302a5bc20b9bce6626'] = 'Cette page CMS n\'est pas visible par vos clients.';
|
||||
$_LANG['cms_110a4b01beabd53b661a47d4b44bd7a8'] = 'Publier';
|
||||
$_LANG['cms_0557fa923dcee4d0f86b1409f5c2167f'] = 'Retour';
|
||||
$_LANG['cms_d3c42ceb9bee8c44815b53f36e496925'] = 'Liste des sous-catégorie(s) de %s :';
|
||||
$_LANG['cms_e02aaa9a02ed0955984af6508675d242'] = 'Liste des pages dans %s :';
|
||||
$_LANG['cms_eecc2cef7e0fa128ecb0557b66486539'] = 'Cette page n\'existe pas';
|
||||
$_LANG['contact-form_bbaff12800505b22a853e8b7f4eb6a22'] = 'Contact';
|
||||
$_LANG['contact-form_2273d1167a6212812d95dc8fadbae78e'] = 'Service client';
|
||||
$_LANG['contact-form_d754a9e8cb640da12849a040f3ca8176'] = 'Votre réponse';
|
||||
$_LANG['contact-form_02d4482d332e1aef3437cd61c9bcc624'] = 'Contactez-nous';
|
||||
$_LANG['contact-form_4ec1c39345fe8820d68463eea8803b0f'] = 'Votre message a bien été envoyé à notre équipe.';
|
||||
$_LANG['contact-form_8cf04a9734132302f96da8e113e80ce5'] = 'Accueil';
|
||||
$_LANG['contact-form_7c9d4636fc5ed97bb78bc2aac486beab'] = 'Votre message a déjà été envoyé.';
|
||||
$_LANG['contact-form_0880266daff3ed4c441adb888658c47c'] = 'Pour des questions à propos d\'une commande ou des informations sur nos produits';
|
||||
$_LANG['contact-form_b3e4d8d61f99bac80e6aa1774d73445b'] = 'Envoyez un message';
|
||||
$_LANG['contact-form_6c27c08f40e1b0d9901deb9ff5f722f7'] = 'Objet';
|
||||
$_LANG['contact-form_7bc873cba11f035df692c3549366c722'] = '-- Choisir --';
|
||||
$_LANG['contact-form_b357b524e740bc85b9790a0712d84a30'] = 'Votre adresse e-mail';
|
||||
$_LANG['contact-form_5d4710f9a8250b13164a82c94d5b00d1'] = 'Référence de commande';
|
||||
$_LANG['contact-form_deb10517653c255364175796ace3553f'] = 'Produit';
|
||||
$_LANG['contact-form_13d6078da2e6592822ede083931d6826'] = 'Fichier';
|
||||
$_LANG['contact-form_4c2a8fe7eaf24721cc7a9f0175115bd4'] = 'Message';
|
||||
$_LANG['contact-form_94966d90747b97d1f0f206c98a8b1ac3'] = 'Envoyer';
|
||||
$_LANG['contact-form_d79cf3f429596f77db95c65074663a54'] = 'Numéro de commande';
|
||||
$_LANG['contact-form_cfe1b4b75fb8dc152b124f9305835a11'] = 'Votre message';
|
||||
$_LANG['discount_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'Mon compte';
|
||||
$_LANG['discount_95d2137c196c7f84df5753ed78f18332'] = 'Vos bons de réductions';
|
||||
$_LANG['discount_ca0dbad92a874b2f69b549293387925e'] = 'Code';
|
||||
$_LANG['discount_b5a7adde1af5c87d7fd797b6245c2a39'] = 'Description';
|
||||
$_LANG['discount_694e8d1f2ee056f98ee488bdc4982d73'] = 'Quantité';
|
||||
$_LANG['discount_689202409e48743b914713f96d93947c'] = 'Valeur';
|
||||
$_LANG['discount_a1d0ec6d56f8833a078b5a7ac4caf2d4'] = 'Minimum';
|
||||
$_LANG['discount_eb2527806a7e1ef48009eaaa785368fe'] = 'Cumulable';
|
||||
$_LANG['discount_8c1279db4db86553e4b9682f78cf500e'] = 'Date d\'expiration';
|
||||
$_LANG['discount_f4a0d7cb0cd45214c8ca5912c970de13'] = 'Taxes comprises';
|
||||
$_LANG['discount_befcac0f9644a7abee43e69f49252ac4'] = 'Taxes exclues';
|
||||
$_LANG['discount_29aa46cc3d2677c7e0f216910df600ff'] = 'Frais de port offerts';
|
||||
$_LANG['discount_6adf97f83acf6453d4a6a4b1070f3754'] = 'aucun';
|
||||
$_LANG['discount_93cba07454f06a4a960172bbd6e2a435'] = 'Oui';
|
||||
$_LANG['discount_bafd7322c6e97d25b6299b5d6fe8920b'] = 'Non';
|
||||
$_LANG['discount_d3f5baf7537ec2a40ade00599a8da8c6'] = 'Vous ne possédez pas de bon de réduction.';
|
||||
$_LANG['discount_a958dbb46713e59856c35f89e5092a5e'] = 'Retour à votre compte';
|
||||
$_LANG['discount_8cf04a9734132302f96da8e113e80ce5'] = 'Accueil';
|
||||
$_LANG['errors_9ead913c5b7c87efda39ca9640c46ae4'] = 'Il y a %d erreurs';
|
||||
$_LANG['errors_5fbddd8d4e0d8c7a868272f2f171df09'] = 'Il y a %d erreur';
|
||||
$_LANG['errors_0557fa923dcee4d0f86b1409f5c2167f'] = 'Retour';
|
||||
$_LANG['footer_a5ea2dfa0714015b950c49835945ec19'] = 'Consulter la version mobile du site';
|
||||
$_LANG['footer_08f800aff1c944464c18d790827e3876'] = 'Consulter la version standard du site';
|
||||
$_LANG['footer_e4045598261988d9988c594243a9434d'] = 'Conditions générales de vente';
|
||||
$_LANG['guest-tracking_3aedb5d3a3e36f7bb6baf1fbb9497894'] = 'Suivi de commande';
|
||||
$_LANG['guest-tracking_43b2f3ca9c34b5934ff858549406f556'] = 'Pour plus d\'avantages...';
|
||||
$_LANG['guest-tracking_301e91952e2edcfa7b67ea7d984c8f22'] = 'Votre compte invité a été transformé avec succès en un compte client. Vous pouvez maintenant vous connecter sur cette';
|
||||
$_LANG['guest-tracking_a16574242b3bbe2fc5ec9dc26fe4deb2'] = 'page';
|
||||
$_LANG['guest-tracking_109636f722b8fccc95d072b2760a6282'] = 'Transformez votre compte invité en compte client et profitez de :';
|
||||
$_LANG['guest-tracking_7a8fe8aaa64e691d82f429d39e0df3a5'] = 'Profiter d\'un accès sécurisé et personnalisé';
|
||||
$_LANG['guest-tracking_93aef17b1541efc1c3f8bd6679972096'] = 'Passage de commande rapide et facile';
|
||||
$_LANG['guest-tracking_1f1015bbef5f42d858e8486397ad8f3e'] = 'Des retours produits plus faciles';
|
||||
$_LANG['guest-tracking_3b6bf3c0c07b89dc86f415117a1f0b80'] = 'Définissez votre mot de passe :';
|
||||
$_LANG['guest-tracking_94966d90747b97d1f0f206c98a8b1ac3'] = 'Envoyer';
|
||||
$_LANG['guest-tracking_a82be0f551b8708bc08eb33cd9ded0cf'] = 'Informations';
|
||||
$_LANG['guest-tracking_0257141296804a3d11cb843ea121037c'] = 'Cliquez ici pour vous connecter à votre compte client';
|
||||
$_LANG['guest-tracking_d2948a89e47a4ad7eb8412c1c260ea88'] = 'Afin de suivre votre commande, merci d\'entrer les informations suivantes :';
|
||||
$_LANG['guest-tracking_63c193f613dd3d9d6c16da7678efda2a'] = 'Référence du paiement';
|
||||
$_LANG['guest-tracking_92dbb751eb9457441af82a53f3cfae54'] = 'Par exemple : QIIXJXNUI ou QIIXJXNUI#1';
|
||||
$_LANG['guest-tracking_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'E-mail :';
|
||||
$_LANG['header_0fcd4065ff78fceb3083316ddb958bc1'] = 'Vous ne pouvez pas créer de nouvelle commande depuis votre pays :';
|
||||
$_LANG['header_a85eba4c6c699122b2bb1387ea4813ad'] = 'Panier';
|
||||
$_LANG['header_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'Mon compte';
|
||||
$_LANG['header_c75f7811d70d17dbcd88e9d03752cbed'] = 'Identifiez-vous';
|
||||
$_LANG['history_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'Mon compte';
|
||||
$_LANG['history_782c8b38bce4f2f6975ca7f33ac8189b'] = 'Historique de vos commandes';
|
||||
$_LANG['history_06b05d09714a236f1e285a6b5c83a209'] = 'Vous trouverez ici vos commandes passées depuis la création de votre compte';
|
||||
$_LANG['history_116cb47fe026f7a3679486e086426a64'] = 'Si vous venez de passer une commande, celle-ci peut mettre du temps pour être validée. Veuillez recharger cette page si votre commande ne s\'affiche pas.';
|
||||
$_LANG['history_5d4710f9a8250b13164a82c94d5b00d1'] = 'Référence du paiement';
|
||||
$_LANG['history_44749712dbec183e983dcd78a7736c41'] = 'Date';
|
||||
$_LANG['history_0eede552438475bdfe820c13f24c9399'] = 'Prix total';
|
||||
$_LANG['history_bd0e34e5be6447844e6f262d51f1a9dc'] = 'Paiement';
|
||||
$_LANG['history_ec53a8c4f07baed5d8825072c89799be'] = 'Statut';
|
||||
$_LANG['history_466eadd40b3c10580e3ab4e8061161ce'] = 'Facture';
|
||||
$_LANG['history_1b6324ace95b17a01323052fda855989'] = 'Produit(s) à télécharger';
|
||||
$_LANG['history_bcd1b68617759b1dfcff0403a6b5a8d1'] = 'PDF';
|
||||
$_LANG['history_27792947ed5d5da7c0d1f43327ed9dab'] = 'détails';
|
||||
$_LANG['history_332c80b1838dc515f5031e09da3b7f3f'] = 'Re-commander';
|
||||
$_LANG['history_5acc2ceeb883ba07cef2d02ea382f242'] = 'Vous n\'avez pas encore passé de commande';
|
||||
$_LANG['history_0b3db27bc15f682e92ff250ebb167d4b'] = 'Retour à votre compte';
|
||||
$_LANG['history_8cf04a9734132302f96da8e113e80ce5'] = 'Accueil';
|
||||
$_LANG['history_01abfc750a0c942167651c40d088531d'] = 'n°';
|
||||
$_LANG['identity_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'Mon compte';
|
||||
$_LANG['identity_6335a00a08fde0fbb8f6d6630cdadd92'] = 'Vos informations personnelles';
|
||||
$_LANG['identity_94d33283c51fdd4a296157461259aee0'] = 'Vos informations personnelles ont été mises à jour.';
|
||||
$_LANG['identity_29224ba63cde6e9f1e16691138bdf954'] = 'Votre mot de passe a été mis à jour.';
|
||||
$_LANG['identity_21102621bd5856b350ae86db3aeed9fc'] = 'N\'hésitez pas à modifier vos informations personnelles si celles-ci ont changé.';
|
||||
$_LANG['identity_19f823c6453c2b1ffd09cb715214813d'] = 'Champs requis';
|
||||
$_LANG['identity_b78a3223503896721cca1303f776159b'] = 'Civilité';
|
||||
$_LANG['identity_20db0bfeecd8fe60533206a2b5e9891a'] = 'Prénom';
|
||||
$_LANG['identity_8d3f5eff9c40ee315d452392bed5309b'] = 'Nom';
|
||||
$_LANG['identity_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'E-mail';
|
||||
$_LANG['identity_4bc28f132d571b160ba407e143915de2'] = 'Mot de passe actuel';
|
||||
$_LANG['identity_ae3bb2a1ac61750150b606298091d38a'] = 'Nouveau mot de passe';
|
||||
$_LANG['identity_f4d1ea475eaa85102e2b4e6d95da84bd'] = 'Confirmation';
|
||||
$_LANG['identity_10803b83a68db8f7e7a33e3b41e184d0'] = 'Date de naissance';
|
||||
$_LANG['identity_86f5978d9b80124f509bdb71786e929e'] = 'Janvier';
|
||||
$_LANG['identity_659e59f062c75f81259d22786d6c44aa'] = 'Février';
|
||||
$_LANG['identity_fa3e5edac607a88d8fd7ecb9d6d67424'] = 'Mars';
|
||||
$_LANG['identity_3fcf026bbfffb63fb24b8de9d0446949'] = 'Avril';
|
||||
$_LANG['identity_195fbb57ffe7449796d23466085ce6d8'] = 'Mai';
|
||||
$_LANG['identity_688937ccaf2a2b0c45a1c9bbba09698d'] = 'Juin';
|
||||
$_LANG['identity_1b539f6f34e8503c97f6d3421346b63c'] = 'Juillet';
|
||||
$_LANG['identity_41ba70891fb6f39327d8ccb9b1dafb84'] = 'Août';
|
||||
$_LANG['identity_cc5d90569e1c8313c2b1c2aab1401174'] = 'Septembre';
|
||||
$_LANG['identity_eca60ae8611369fe28a02e2ab8c5d12e'] = 'Octobre';
|
||||
$_LANG['identity_7e823b37564da492ca1629b4732289a8'] = 'Novembre';
|
||||
$_LANG['identity_82331503174acbae012b2004f6431fa5'] = 'Décembre';
|
||||
$_LANG['identity_93edfc7af9b6471b30030cf17646e36c'] = 'S\'inscrire à la newsletter';
|
||||
$_LANG['identity_baca087296e01b5d69799dd53bcd7950'] = 'Recevez les offres spéciales de nos partenaires';
|
||||
$_LANG['identity_c9cc8cce247e49bae79f15173ce97354'] = 'Valider';
|
||||
$_LANG['identity_ea460dd8c3ac592e8224d8fe3ef774c7'] = 'Conformément aux dispositions de la loi du n°78-17 du 6 janvier 1978, vous disposez d\'un droit d\'accès, de rectification et d\'opposition sur les données nominatives vous concernant.';
|
||||
$_LANG['identity_a958dbb46713e59856c35f89e5092a5e'] = 'Retour à votre compte';
|
||||
$_LANG['identity_8cf04a9734132302f96da8e113e80ce5'] = 'Accueil';
|
||||
$_LANG['maintenance_fef882af64a6b9c88dbc5e6cce2607bc'] = 'Pour cause de maintenance, votre boutique en ligne est temporairement inaccessible.';
|
||||
$_LANG['maintenance_a022ff58716d4cf34050cb68e7f12fcf'] = 'Nous nous excusons pour la gêne occasionnée. Merci de revenir plus tard.';
|
||||
$_LANG['manufacturer-list_0e1e874dde345d19583102a9fd63fb7e'] = 'Marques';
|
||||
$_LANG['manufacturer-list_ce7bdbaa2a5998973271d85172456ee6'] = 'Il n\'y aucun fabricant.';
|
||||
$_LANG['manufacturer-list_8a535d7f40eb9e738248d555675b572e'] = 'Il y a %d marque.';
|
||||
$_LANG['manufacturer-list_40a1d0763fd669e33d8663d15eb91cfb'] = 'Il y a %d marques.';
|
||||
$_LANG['manufacturer-list_0397cbccfd02272abd38f8933b865218'] = '%d article';
|
||||
$_LANG['manufacturer-list_864c665aea5e824772fda0e678c3ac4d'] = '%d articles';
|
||||
$_LANG['manufacturer-list_3426bf3cca12b1f6550fd8bd36171e2f'] = 'voir les articles';
|
||||
$_LANG['manufacturer_4c8d12a46c2deb4898979acfd4e23f6a'] = 'Liste des produits de la marque :';
|
||||
$_LANG['manufacturer_d3da97e2d9aee5c8fbe03156ad051c99'] = 'Plus';
|
||||
$_LANG['manufacturer_a65ed5e8df4b1c2bb34844f81cc9b451'] = 'Pas de produit pour ce fabricant.';
|
||||
$_LANG['manufacturer_0e1e874dde345d19583102a9fd63fb7e'] = 'Fabricants';
|
||||
$_LANG['my-account_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'Mon compte';
|
||||
$_LANG['my-account_4b0afa9e8d3cdefd4fb21faebe22ef5f'] = 'Votre compte est maintenant créé.';
|
||||
$_LANG['my-account_67afe6ed34ec3a7b3d5d5d91143cdfde'] = 'Bienvenue sur votre page d\'accueil. Vous pouvez gérer vos informations personnelles, vos commandes ainsi que vos adresses.';
|
||||
$_LANG['my-account_f4c5b2b545efb89fefa11fd6c9da1cb3'] = 'Ajouter ma première adresse';
|
||||
$_LANG['my-account_7442e29d7d53e549b78d93c46b8cdcfc'] = 'Commandes';
|
||||
$_LANG['my-account_f232e81d15c0f2b9a4b1853465aaf18a'] = 'Historique et détails de mes commandes';
|
||||
$_LANG['my-account_e06d7593c1cd6dabef450be6c3da7091'] = 'Retours produit';
|
||||
$_LANG['my-account_89080f0eedbd5491a93157930f1e45fc'] = 'Mes retours produit';
|
||||
$_LANG['my-account_d1a365ea7809ae5831c6d9f86886630c'] = 'Avoirs';
|
||||
$_LANG['my-account_9132bc7bac91dd4e1c453d4e96edf219'] = 'Mes avoirs';
|
||||
$_LANG['my-account_284b47b0bb63ae2df3b29f0e691d6fcf'] = 'Adresses';
|
||||
$_LANG['my-account_e45be0a0d4a0b62b15694c1a631e6e62'] = 'Mes adresses';
|
||||
$_LANG['my-account_a82be0f551b8708bc08eb33cd9ded0cf'] = 'Informations';
|
||||
$_LANG['my-account_4c8a50af0ebcf49be0cf4e0f67f37595'] = 'Mes informations personnelles';
|
||||
$_LANG['my-account_a82868319826fb092b73968e661b5b38'] = 'Bons de réduction';
|
||||
$_LANG['my-account_95d2137c196c7f84df5753ed78f18332'] = 'Mes bons de réductions';
|
||||
$_LANG['my-account_8cf04a9734132302f96da8e113e80ce5'] = 'Accueil';
|
||||
$_LANG['my-account_c87aacf5673fada1108c9f809d354311'] = 'Se déconnecter';
|
||||
$_LANG['nbr-product-page_498f79c4c5bbde77f1bceb6c86fd0f6d'] = 'Lister :';
|
||||
$_LANG['nbr-product-page_21a1f0b4726f9f6cbced2bc8747ec44f'] = 'produits par page';
|
||||
$_LANG['new-products_9ff0635f5737513b1a6f559ac2bff745'] = 'Nouveaux produits';
|
||||
$_LANG['new-products_d58424783355b6da2dedc302f2bf4065'] = 'Pas de nouveaux produits';
|
||||
$_LANG['order-address-multishipping-products_d28f8bbb0740354aae5456da9cc56d0e'] = 'Choisissez une adresse de livraison :';
|
||||
$_LANG['order-address-multishipping-products_a4d3b161ce1309df1c4e25df28694b7b'] = 'Valider';
|
||||
$_LANG['order-address-multishipping-products_bb6275503ffe7e64cf768216ee0de066'] = 'Les quantités de certains produits ont été changées, veuillez les vérifier.';
|
||||
$_LANG['order-address-multishipping-products_713abca3b7abddc0445099b23c0a3697'] = 'Livrer à plusieurs adresses';
|
||||
$_LANG['order-address-multishipping-products_deb10517653c255364175796ace3553f'] = 'Produit';
|
||||
$_LANG['order-address-multishipping-products_b5a7adde1af5c87d7fd797b6245c2a39'] = 'Description';
|
||||
$_LANG['order-address-multishipping-products_12d3c7a4296542c62474856ec452c045'] = 'Réf.';
|
||||
$_LANG['order-address-multishipping-products_03ab340b3f99e03cff9e84314ead38c0'] = 'Qté';
|
||||
$_LANG['order-address-multishipping-products_0c458988127eb2150776881e2ef3f0c4'] = 'Adresse de livraison';
|
||||
$_LANG['order-address-multishipping_deb10517653c255364175796ace3553f'] = 'produit';
|
||||
$_LANG['order-address-multishipping_068f80c7519d0528fb08e82137a72131'] = 'produits';
|
||||
$_LANG['order-address-multishipping_db671b8ceed664eaecb59a4e6075ec9f'] = 'Veuillez d\'abord choisir une adresse';
|
||||
$_LANG['order-address-multishipping_da9d6ec2998a07c31ec9eb93c9f254ed'] = 'Votre adresse de facturation';
|
||||
$_LANG['order-address-multishipping_8a8c9edb5531fa2f822295d1830d090f'] = 'Votre adresse de livraison';
|
||||
$_LANG['order-address-multishipping_06933067aafd48425d67bcb01bba5cb6'] = 'Mise à jour';
|
||||
$_LANG['order-address-multishipping_284b47b0bb63ae2df3b29f0e691d6fcf'] = 'Adresses';
|
||||
$_LANG['order-address-multishipping_82a7d396bbd6f6fef648578b4ae2ea81'] = 'Choisissez une adresse de facturation :';
|
||||
$_LANG['order-address-multishipping_ec211f7c20af43e742bf2570c3cb84f9'] = 'Ajouter';
|
||||
$_LANG['order-address-multishipping_b15e1100a6196acba01ef7aaa5b2a9e5'] = 'Ajouter une nouvelle adresse';
|
||||
$_LANG['order-address-multishipping_d93651d012e77dac5581b08db33195b2'] = 'Si vous souhaitez ajouter un commentaire à propos de votre commande, s\'il vous plaît écrivez-dessous.';
|
||||
$_LANG['order-address-multishipping_dd1f775e443ff3b9a89270713580a51b'] = 'Précédent';
|
||||
$_LANG['order-address-multishipping_10ac3d04253ef7e1ddc73e6091c0cd55'] = 'Suivant';
|
||||
$_LANG['order-address-product-line_ec211f7c20af43e742bf2570c3cb84f9'] = 'Ajouter';
|
||||
$_LANG['order-address-product-line_1d9baf077ee87921f57a8fe42d510b65'] = 'Retirer';
|
||||
$_LANG['order-address-product-line_e716b72edf18038c04664e9b21569177'] = 'Vous devez choisir une quantité minimale de %d pour ce produit';
|
||||
$_LANG['order-address-product-line_07177f134a19f8965265d014b5b81645'] = 'Créer une nouvelle adresse';
|
||||
$_LANG['order-address-product-line_713abca3b7abddc0445099b23c0a3697'] = 'Livrer à plusieurs adresses';
|
||||
$_LANG['order-address_f5bf48aa40cad7891eb709fcf1fde128'] = 'produit';
|
||||
$_LANG['order-address_86024cad1e83101d97359d7351051156'] = 'produits';
|
||||
$_LANG['order-address_da9d6ec2998a07c31ec9eb93c9f254ed'] = 'Votre adresse de facturation';
|
||||
$_LANG['order-address_8a8c9edb5531fa2f822295d1830d090f'] = 'Votre adresse de livraison';
|
||||
$_LANG['order-address_06933067aafd48425d67bcb01bba5cb6'] = 'Mettre à jour';
|
||||
$_LANG['order-address_284b47b0bb63ae2df3b29f0e691d6fcf'] = 'Adresses';
|
||||
$_LANG['order-address_e744ae5ff1db45c76911ee834b7fafcd'] = 'Livraison multiple';
|
||||
$_LANG['order-address_6e1a71b786b5180af99406f87bbdbe0d'] = 'Indiquez une adresse de livraison pour chaque produit commandé.';
|
||||
$_LANG['order-address_1a2ba42c10f64d9f42a857a22da4ec5d'] = 'Je tiens à préciser une adresse de livraison pour chaque produits que je commande.';
|
||||
$_LANG['order-address_1ab8cb7be68e5988a1e9b5b8d8024711'] = 'Choisissez les adresses de livraison';
|
||||
$_LANG['order-address_7f6584ea7fc7f8b41b53f554f6c0183d'] = 'Indiquez une adresse de livraison pour chaque produit.';
|
||||
$_LANG['order-address_82a7d396bbd6f6fef648578b4ae2ea81'] = 'Choisissez une adresse de facturation :';
|
||||
$_LANG['order-address_d0748d2df4aed77bd7591b3ac6c52c83'] = 'Choisissez une adresse de livraison :';
|
||||
$_LANG['order-address_390b4c95516a4b7faf97389ca46fc0c7'] = 'Utiliser la même adresse pour la facturation';
|
||||
$_LANG['order-address_ec211f7c20af43e742bf2570c3cb84f9'] = 'Ajouter';
|
||||
$_LANG['order-address_b15e1100a6196acba01ef7aaa5b2a9e5'] = 'Ajoutez une nouvelle adresse';
|
||||
$_LANG['order-address_d93651d012e77dac5581b08db33195b2'] = 'Si vous voulez nous laisser un message à propos de votre commande, merci de bien vouloir le renseigner dans le champ ci-contre';
|
||||
$_LANG['order-address_dd1f775e443ff3b9a89270713580a51b'] = 'Précédent';
|
||||
$_LANG['order-address_10ac3d04253ef7e1ddc73e6091c0cd55'] = 'Suivant';
|
||||
$_LANG['order-address_879f6b8877752685a966564d072f498f'] = 'Votre panier est vide.';
|
||||
$_LANG['order-address_5af5f631f774a71445e3028253874394'] = 'Cette boutique n\'a pas accepté votre nouvelle commande.';
|
||||
$_LANG['order-carrier_deb10517653c255364175796ace3553f'] = 'produit';
|
||||
$_LANG['order-carrier_068f80c7519d0528fb08e82137a72131'] = 'produits';
|
||||
$_LANG['order-carrier_5508a53851720a210e50f7b8a6f66f46'] = 'Vous devez accepter les conditions générales de vente pour passer à l\'étape suivante';
|
||||
$_LANG['order-carrier_b24ce0cd392a5b0b8dedc66c25213594'] = 'Gratuit !';
|
||||
$_LANG['order-carrier_66f51e43606e2baebb8e9c3bfe965da4'] = 'Frais de port';
|
||||
$_LANG['order-carrier_6f05787682585c32498e88bcd2ea88fc'] = 'Méthodes de livraison';
|
||||
$_LANG['order-carrier_e085dcd05d73bdd5afe338e5b6e42a18'] = 'Choisissez votre mode de livraison';
|
||||
$_LANG['order-carrier_3818429ccff49b9d6ab2b4a9a137a00a'] = 'Aucun transporteur n\'est nécessaire pour cette commande';
|
||||
$_LANG['order-carrier_9193b58520051d8b59ca64a5cc5353ff'] = 'J\'accepte de recevoir ma commande dans un emballage recyclé';
|
||||
$_LANG['order-carrier_cc9b9807af9192bed55cb1e92ba28844'] = 'Choisissez une option de livraison pour l\'adresse :';
|
||||
$_LANG['order-carrier_8fb37535c12fbe2899ab442ec474c157'] = 'Choisissez une option de livraison';
|
||||
$_LANG['order-carrier_b6dddfff5178ce64364ca3f683930354'] = 'Le meilleur prix et meilleur note';
|
||||
$_LANG['order-carrier_c2a32e7734b79d54eaaddb651707b403'] = 'Le plus rapide';
|
||||
$_LANG['order-carrier_b1992d8f7c58180c1ebd461b7d502423'] = 'Le meilleur prix';
|
||||
$_LANG['order-carrier_1f87346a16cf80c372065de3c54c86d9'] = 'TTC';
|
||||
$_LANG['order-carrier_21034ae6d01a83e702839a72ba8a77b0'] = 'HT';
|
||||
$_LANG['order-carrier_e06b4fd44aa19916cbbb34d7ca26efa1'] = 'Produit concerné :';
|
||||
$_LANG['order-carrier_9960807cfb66a03002a9b7777c4a96c5'] = 'Produits concernés :';
|
||||
$_LANG['order-carrier_2d51d96d770cc2244be31a85e608de19'] = 'Aucun transporteur disponible.';
|
||||
$_LANG['order-carrier_a6cc8cbe3fa07d0fca172c36a603332c'] = 'Aucun transporteur disponible pour l\'adresse \"%s\".';
|
||||
$_LANG['order-carrier_0d9175fe89fb80d815e7d03698b6e83a'] = 'Cadeau';
|
||||
$_LANG['order-carrier_32224bd6487699ea66652d3dc502455d'] = 'Je souhaite que ma commande soit emballée dans un papier-cadeau.';
|
||||
$_LANG['order-carrier_5c2dfd55fea1f5c6adef500fcb6403b4'] = 'Supp. de';
|
||||
$_LANG['order-carrier_bf46d59ab4c5096d169c1a5eb39cc0c1'] = 'Vous pouvez ajouter un message d\'accompagnement à votre commande.';
|
||||
$_LANG['order-carrier_e4045598261988d9988c594243a9434d'] = 'Conditions générales de vente';
|
||||
$_LANG['order-carrier_ad88a6c9e8c880f23639321d78ec859d'] = 'J\'ai lu les conditions générales de vente et j\'y adhère sans réserve.';
|
||||
$_LANG['order-carrier_d53afd7ef9af5405df040482add9b153'] = '(Lire les Conditions générales de vente)';
|
||||
$_LANG['order-carrier_dd1f775e443ff3b9a89270713580a51b'] = 'Précédent';
|
||||
$_LANG['order-carrier_10ac3d04253ef7e1ddc73e6091c0cd55'] = 'Suivant';
|
||||
$_LANG['order-carrier_bd5b551d1757a856d9f2d01dc7850080'] = 'Laissez un message';
|
||||
$_LANG['order-carrier_d93651d012e77dac5581b08db33195b2'] = 'Si vous souhaitez ajouter un commentaire sur votre commande, veuillez l\'écrire ci-dessous.';
|
||||
$_LANG['order-carrier_f5bf48aa40cad7891eb709fcf1fde128'] = 'produit';
|
||||
$_LANG['order-carrier_86024cad1e83101d97359d7351051156'] = 'produits';
|
||||
$_LANG['order-carrier_879f6b8877752685a966564d072f498f'] = 'Votre panier est vide.';
|
||||
$_LANG['order-carrier_5af5f631f774a71445e3028253874394'] = 'Cette boutique n\'a pas accepté votre nouvelle commande.';
|
||||
$_LANG['order-carrier_0a5737e9ac4d4cdbf41e473674c0e557'] = 'J\'ai lu les conditions générales de vente et j\'y adhère sans réserve.';
|
||||
$_LANG['order-confirmation_fb077ecba55e5552916bde26d8b9e794'] = 'Confirmation de commande';
|
||||
$_LANG['order-confirmation_e19e31ddb54b493059808ec4f2dab4cb'] = 'Votre numéro de commande est le :';
|
||||
$_LANG['order-confirmation_9be66ab020fd0ffb9dd22756969b8dc7'] = 'Votre numéro de commande a été envoyé par mail.';
|
||||
$_LANG['order-confirmation_4082ea29b4f196c4f60533500139725a'] = 'Suivre ma commande';
|
||||
$_LANG['order-confirmation_9390390581f54c65d6acfc8da4e17362'] = 'Retour aux commandes';
|
||||
$_LANG['order-detail_332c80b1838dc515f5031e09da3b7f3f'] = 'Re-commander';
|
||||
$_LANG['order-detail_6332e7985befad227455d60812bd1449'] = 'Référence de la commande %s – passée le';
|
||||
$_LANG['order-detail_914419aa32f04011357d3b604a86d7eb'] = 'Transporteur';
|
||||
$_LANG['order-detail_f0aaaae189e9c7711931a65ffcd22543'] = 'Méthode de paiement :';
|
||||
$_LANG['order-detail_e682495785e844d491378817aa34aa3f'] = 'Téléchargez votre facture au format PDF';
|
||||
$_LANG['order-detail_755bb0834a77079fd1330b555b69e6bf'] = 'Vous avez accepté de recevoir votre commande dans un emballage recyclé.';
|
||||
$_LANG['order-detail_e14bc5cef02df7369b604ea3885adb96'] = 'Vous avez demandé un papier cadeau pour cette commande.';
|
||||
$_LANG['order-detail_4c2a8fe7eaf24721cc7a9f0175115bd4'] = 'Message';
|
||||
$_LANG['order-detail_978c7c1b6214ab576cd8425896b29339'] = 'Suivre votre commande pas à pas';
|
||||
$_LANG['order-detail_44749712dbec183e983dcd78a7736c41'] = 'Date';
|
||||
$_LANG['order-detail_ec53a8c4f07baed5d8825072c89799be'] = 'Statut';
|
||||
$_LANG['order-detail_ced55d097872ab13bf177e8d31db396f'] = 'Cliquez sur le lien suivant pour suivre la livraison de votre commande';
|
||||
$_LANG['order-detail_780c462e85ba4399a5d42e88f69a15ca'] = 'Facturation';
|
||||
$_LANG['order-detail_065ab3a28ca4f16f55f103adc7d0226f'] = 'Livraison';
|
||||
$_LANG['order-detail_63d5049791d9d79d86e9a108b0a999ca'] = 'Référence';
|
||||
$_LANG['order-detail_deb10517653c255364175796ace3553f'] = 'Produit';
|
||||
$_LANG['order-detail_694e8d1f2ee056f98ee488bdc4982d73'] = 'Quantité';
|
||||
$_LANG['order-detail_fdfac28b5ad628f25649d9c2eb4fc62e'] = 'Retourné';
|
||||
$_LANG['order-detail_6c957f72dc8cdacc75762f2cbdcdfaf2'] = 'Prix unitaire';
|
||||
$_LANG['order-detail_0eede552438475bdfe820c13f24c9399'] = 'Prix total';
|
||||
$_LANG['order-detail_2370a4958c4ebe6d6c8045cd49a6b392'] = 'Total produits HT :';
|
||||
$_LANG['order-detail_db205f01b4fd580fb5daa9072d96849d'] = 'Total produits';
|
||||
$_LANG['order-detail_1f87346a16cf80c372065de3c54c86d9'] = 'TTC';
|
||||
$_LANG['order-detail_2633d6725607d13e80f5e30514b91fbe'] = 'Total des bons de réduction :';
|
||||
$_LANG['order-detail_31f52379817244bb67196c880749cfd8'] = 'Total emballage cadeau :';
|
||||
$_LANG['order-detail_f4e8b53a114e5a17d051ab84d326cae5'] = 'Total frais de port';
|
||||
$_LANG['order-detail_96b0141273eabab320119c467cdcaf17'] = 'Total :';
|
||||
$_LANG['order-detail_c060ca8505d0aa094635fbf9beac94b0'] = 'télécharger ce produit';
|
||||
$_LANG['order-detail_aec9b5b1c2f91ccdef8e25f5f1dac86a'] = 'Télécharger le produit';
|
||||
$_LANG['order-detail_be686376cddb23d0227444ccc3c4b5b7'] = 'Bons de réduction :';
|
||||
$_LANG['order-detail_3956298bcfc047e15b0e0d218492ce09'] = 'Retour de marchandise';
|
||||
$_LANG['order-detail_bef8403608dc4cb3ade799f63dd4bf59'] = 'Si vous désirez nous retourner un ou plusieurs produits, veuillez cocher chacun d\'entre eux et spécifier un motif de retour, puis valider.';
|
||||
$_LANG['order-detail_25e93b63e91b5555bd458c89b1916678'] = 'Générer un retour';
|
||||
$_LANG['order-detail_8c489d0946f66d17d73f26366a4bf620'] = 'Poids';
|
||||
$_LANG['order-detail_552a0d8c17d95d5dbdc0c28217024f5a'] = 'Prix du transport';
|
||||
$_LANG['order-detail_5068c162a60b5859f973f701333f45c5'] = 'Numéro de suivi';
|
||||
$_LANG['order-detail_41de6d6cfb8953c021bbe4ba0701c8a1'] = 'Messages';
|
||||
$_LANG['order-detail_5da618e8e4b89c66fe86e32cdafde142'] = 'Expéditeur';
|
||||
$_LANG['order-detail_9ead913c5b7c87efda39ca9640c46ae4'] = 'Il y a %d erreurs';
|
||||
$_LANG['order-detail_5fbddd8d4e0d8c7a868272f2f171df09'] = 'Il y a %d erreur';
|
||||
$_LANG['order-detail_0c478a7069ab13f446e9e765cffd1550'] = 'Message envoyé avec succès';
|
||||
$_LANG['order-detail_58b3d8603dffe8484e90c0ca371921ac'] = 'Ajouter un message :';
|
||||
$_LANG['order-detail_d93651d012e77dac5581b08db33195b2'] = 'Si vous voulez nous laisser un message à propos de votre commande, veuillez l\'écrire ici.';
|
||||
$_LANG['order-detail_7bc873cba11f035df692c3549366c722'] = '- Choisissez -';
|
||||
$_LANG['order-detail_94966d90747b97d1f0f206c98a8b1ac3'] = 'Envoyer';
|
||||
$_LANG['order-detail_3d056974128aa7405c1941a684b8279d'] = 'Vous ne pouvez pas faire de retour de marchandise avec un compte invité';
|
||||
$_LANG['order-detail_a240fa27925a635b08dc28c9e4f9216d'] = 'Commande';
|
||||
$_LANG['order-detail_01abfc750a0c942167651c40d088531d'] = 'n°';
|
||||
$_LANG['order-detail_0557fa923dcee4d0f86b1409f5c2167f'] = 'Retour';
|
||||
$_LANG['order-detail_b09eeb5676544c14685b96209dde1b1a'] = 'Commande n°%s - Commandé le';
|
||||
$_LANG['order-detail_284b47b0bb63ae2df3b29f0e691d6fcf'] = 'Adresses';
|
||||
$_LANG['order-detail_466eadd40b3c10580e3ab4e8061161ce'] = 'Facture';
|
||||
$_LANG['order-detail_f5d74ea75357b5e139854c14f8e24fe3'] = 'Détail de la commande';
|
||||
$_LANG['order-detail_336d5ebc5436534e61d16e63ddfca327'] = '-';
|
||||
$_LANG['order-follow_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'Mon compte';
|
||||
$_LANG['order-follow_bfc23574a242be4531bcb29877ac1d8a'] = 'Retour produits';
|
||||
$_LANG['order-follow_8a6034d3379499b66d730aa17e007683'] = 'Vous n\'avez pas un nombre suffisant de produits pour générer un autre retour !';
|
||||
$_LANG['order-follow_229ca46a5d762e19a428f59449c916ad'] = 'Merci de spécifier un motif de retour !';
|
||||
$_LANG['order-follow_cbd22dcb89c7ff53e1d58959352b278e'] = 'Veuillez donner la raison de votre retour produit';
|
||||
$_LANG['order-follow_25e93b63e91b5555bd458c89b1916678'] = 'Générer un retour';
|
||||
$_LANG['order-follow_e6f6a5e58ee6d010f22e4b3dbd756213'] = 'Merci de cocher au moins un produit à retourner.';
|
||||
$_LANG['order-follow_1819b587867a9c604a4d21c753756b4a'] = 'Veuillez indiquer la quantité voulue pour chaque produit coché.';
|
||||
$_LANG['order-follow_9bb4b32641712af2309584a5e97c0f73'] = 'Cette commande ne peut pas être retournée.';
|
||||
$_LANG['order-follow_9cf9ab35a1b24314913bb739d25a0b36'] = 'Voici la liste des retours produits en cours';
|
||||
$_LANG['order-follow_988fd738de9c6d177440c5dcf69e73ce'] = 'Retour';
|
||||
$_LANG['order-follow_a240fa27925a635b08dc28c9e4f9216d'] = 'Commande';
|
||||
$_LANG['order-follow_d442cb92c3b031eceacbfe87605b9356'] = 'Etat du retour';
|
||||
$_LANG['order-follow_446faa7da2d42ba4ffeda73cb119dd91'] = 'Date d\'émission';
|
||||
$_LANG['order-follow_0d3cfc2fe56119651ee7848f3e32d84d'] = 'Etiquette de retour';
|
||||
$_LANG['order-follow_01abfc750a0c942167651c40d088531d'] = 'n°';
|
||||
$_LANG['order-follow_cc894fffb019b528d12951b74d6d2b6e'] = 'Retour de marchandise';
|
||||
$_LANG['order-follow_daf51d7d9e10e6a469434ae548d9a173'] = 'Imprimer';
|
||||
$_LANG['order-follow_15ef0f1f63c1e8a9fb8abad024939262'] = 'Vous n\'avez aucun retour de marchandise créé.';
|
||||
$_LANG['order-follow_a958dbb46713e59856c35f89e5092a5e'] = 'Retour à votre compte';
|
||||
$_LANG['order-follow_8cf04a9734132302f96da8e113e80ce5'] = 'Accueil';
|
||||
$_LANG['order-opc-new-account_08bd40c7543007ad06e4fce31618f6ec'] = 'Compte';
|
||||
$_LANG['order-opc-new-account_db879b00e657fc85f7873343f11df21c'] = 'Déjà inscrit ?';
|
||||
$_LANG['order-opc-new-account_936ccdb97115e9f35a11d35e3d5b5cad'] = 'Cliquez ici';
|
||||
$_LANG['order-opc-new-account_b357b524e740bc85b9790a0712d84a30'] = 'Adresse e-mail';
|
||||
$_LANG['order-opc-new-account_dc647eb65e6711e155375218212b3964'] = 'Mot de passe';
|
||||
$_LANG['order-opc-new-account_01a569ddc6cf67ddec2a683f0a5f5956'] = 'Mot de passe oublié?';
|
||||
$_LANG['order-opc-new-account_99dea78007133396a7b8ed70578ac6ae'] = 'Identifiez-vous';
|
||||
$_LANG['order-opc-new-account_c28639657b4e3352241f83d8b6021e4e'] = 'Nouveau client';
|
||||
$_LANG['order-opc-new-account_766d4aaf3e045538be23f9a9e17a1593'] = 'Commande instantanée';
|
||||
$_LANG['order-opc-new-account_12819315d9cf421dcaac8122a71ececa'] = 'Commander en tant qu\'invité';
|
||||
$_LANG['order-opc-new-account_d50965b89f4bf0dfbc5b1f13052421a4'] = 'Créez votre compte dès aujourd\'hui et profitez :';
|
||||
$_LANG['order-opc-new-account_7a8fe8aaa64e691d82f429d39e0df3a5'] = 'Accès personnalisé et sécurisé';
|
||||
$_LANG['order-opc-new-account_ce025dc66f590f8c03ad9556bc376d9e'] = 'Une prise de commande facile et rapide';
|
||||
$_LANG['order-opc-new-account_4efcd04126e90b74c744bab6c66b6e63'] = 'Adresse de livraison différente de celle de facturation';
|
||||
$_LANG['order-opc-new-account_2fdfd506efea08144c0794c32ca8250a'] = 'Créer un compte';
|
||||
$_LANG['order-opc-new-account_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'E-mail';
|
||||
$_LANG['order-opc-new-account_58357b08947453bff66da9b47b3da168'] = '(min. 5 caractères.)';
|
||||
$_LANG['order-opc-new-account_b78a3223503896721cca1303f776159b'] = 'Titre';
|
||||
$_LANG['order-opc-new-account_20db0bfeecd8fe60533206a2b5e9891a'] = 'Prénom';
|
||||
$_LANG['order-opc-new-account_8d3f5eff9c40ee315d452392bed5309b'] = 'Nom';
|
||||
$_LANG['order-opc-new-account_10803b83a68db8f7e7a33e3b41e184d0'] = 'Date de naissance';
|
||||
$_LANG['order-opc-new-account_86f5978d9b80124f509bdb71786e929e'] = 'Janvier';
|
||||
$_LANG['order-opc-new-account_659e59f062c75f81259d22786d6c44aa'] = 'Février';
|
||||
$_LANG['order-opc-new-account_fa3e5edac607a88d8fd7ecb9d6d67424'] = 'Mars';
|
||||
$_LANG['order-opc-new-account_3fcf026bbfffb63fb24b8de9d0446949'] = 'Avril';
|
||||
$_LANG['order-opc-new-account_195fbb57ffe7449796d23466085ce6d8'] = 'Mai';
|
||||
$_LANG['order-opc-new-account_688937ccaf2a2b0c45a1c9bbba09698d'] = 'Juin';
|
||||
$_LANG['order-opc-new-account_1b539f6f34e8503c97f6d3421346b63c'] = 'Juillet';
|
||||
$_LANG['order-opc-new-account_41ba70891fb6f39327d8ccb9b1dafb84'] = 'Août';
|
||||
$_LANG['order-opc-new-account_cc5d90569e1c8313c2b1c2aab1401174'] = 'Septembre';
|
||||
$_LANG['order-opc-new-account_eca60ae8611369fe28a02e2ab8c5d12e'] = 'Octobre';
|
||||
$_LANG['order-opc-new-account_7e823b37564da492ca1629b4732289a8'] = 'Novembre';
|
||||
$_LANG['order-opc-new-account_82331503174acbae012b2004f6431fa5'] = 'Décembre';
|
||||
$_LANG['order-opc-new-account_93edfc7af9b6471b30030cf17646e36c'] = 'S\'inscrire à notre newsletter';
|
||||
$_LANG['order-opc-new-account_baca087296e01b5d69799dd53bcd7950'] = 'Recevoir des offres spéciales de nos partenaires';
|
||||
$_LANG['order-opc-new-account_af0f5bdc5be121b9307687aeeae38c17'] = 'Adresse de livraison';
|
||||
$_LANG['order-opc-new-account_1c76cbfe21c6f44c1d1e59d54f3e4420'] = 'Société';
|
||||
$_LANG['order-opc-new-account_dd7bf230fde8d4836917806aff6a6b27'] = 'Adresse';
|
||||
$_LANG['order-opc-new-account_846a54955f32846032981f8fe48c35ff'] = 'Adresse (ligne 2)';
|
||||
$_LANG['order-opc-new-account_bd9014fe70f4f8bb1beed74e3b708483'] = 'Code postal';
|
||||
$_LANG['order-opc-new-account_57d056ed0984166336b7879c2af3657f'] = 'Ville';
|
||||
$_LANG['order-opc-new-account_59716c97497eb9694541f7c3d37b1a4d'] = 'Pays';
|
||||
$_LANG['order-opc-new-account_7cb32e708d6b961d476baced73d362bb'] = 'Numéro de TVA';
|
||||
$_LANG['order-opc-new-account_46a2a41cc6e552044816a2d04634545d'] = 'État';
|
||||
$_LANG['order-opc-new-account_b60bb13a87fe3ae5463aeb0980a5a8a1'] = 'Numéro d\'identification fiscale';
|
||||
$_LANG['order-opc-new-account_ea318a4ad37f0c2d2c368e6c958ed551'] = 'DNI / NIF / NIE';
|
||||
$_LANG['order-opc-new-account_0f68b904e33d9ac04605aecc958bcf52'] = 'Informations complémentaires';
|
||||
$_LANG['order-opc-new-account_eeabead01c6c6f25f22bf0b041df58a9'] = 'Vous devez enregistrer au moins un numéro de téléphone';
|
||||
$_LANG['order-opc-new-account_fe66abce284ec8589e7d791185b5c442'] = 'Téléphone';
|
||||
$_LANG['order-opc-new-account_41c2fff4867cc204120f001e7af20f7a'] = 'Téléphone portable';
|
||||
$_LANG['order-opc-new-account_ae7bdef7fe2bbbbf02c11e92c5fceb40'] = 'Mon adresse';
|
||||
$_LANG['order-opc-new-account_aee0c5ed0554d46465080ed36d1d93ab'] = 'Je souhaite utiliser une autre adresse pour la facturation';
|
||||
$_LANG['order-opc-new-account_601d8c4b9f72fc1862013c19b677a499'] = 'Adresse de facturation';
|
||||
$_LANG['order-opc-new-account_d30f507473129e70c4b962ceccf175cf'] = 'Code postal';
|
||||
$_LANG['order-opc-new-account_2eac22e71eedb5bdb8f94a1354964017'] = 'Mon adresse de facturation';
|
||||
$_LANG['order-opc-new-account_c9cc8cce247e49bae79f15173ce97354'] = 'Enregistrer';
|
||||
$_LANG['order-opc-new-account_6a35e1439d14f62e7177f59c175c886f'] = 'Les informations du compte ont été enregistrées avec succès';
|
||||
$_LANG['order-opc-new-account_19f823c6453c2b1ffd09cb715214813d'] = 'Champs obligatoires';
|
||||
$_LANG['order-opc_a40cab5994f36d4c48103a22ca082e8f'] = 'Votre panier';
|
||||
$_LANG['order-opc_78fa1019f9a9759b45c76e186393756f'] = 'Cette boutique n\'a pas accepté votre nouvelle commande.';
|
||||
$_LANG['order-opc_1f87346a16cf80c372065de3c54c86d9'] = 'TTC';
|
||||
$_LANG['order-opc_21034ae6d01a83e702839a72ba8a77b0'] = 'HT';
|
||||
$_LANG['order-opc_ea295188b69aa5e04810abcc38b2b2be'] = 'a été sélectionné';
|
||||
$_LANG['order-opc_9504d494016e17a6de7e7b51da637bc4'] = 'Aucun transporteur n\'a été sélectionné';
|
||||
$_LANG['order-opc_238a062a6a2543fd85d6616a8506fbe8'] = 'Pas de transporteur nécessaire pour cette commande';
|
||||
$_LANG['order-opc_2e75f367f058646a1ba2fd01ceb74423'] = 'Aucune condition générale de vente doit être acceptée';
|
||||
$_LANG['order-opc_d236af51d8eac54fe7c366af1f6b358c'] = 'Les conditions générales de vente ont été acceptées';
|
||||
$_LANG['order-opc_25d8efaba32cb44a922a727f20eaa002'] = 'Les conditions générales de vente n\'ont pas été acceptées';
|
||||
$_LANG['order-opc_4ce81305b7edb043d0a7a5c75cab17d0'] = 'Il y a';
|
||||
$_LANG['order-opc_fe816ec4b30c11a39edfd8b0a4cfab49'] = 'erreur(s)';
|
||||
$_LANG['order-opc_af0f5bdc5be121b9307687aeeae38c17'] = 'Adresse de livraison';
|
||||
$_LANG['order-opc_601d8c4b9f72fc1862013c19b677a499'] = 'Adresse de facturation';
|
||||
$_LANG['order-opc_449374f661344e843453c4e189ddeed8'] = 'Modifier mon adresse';
|
||||
$_LANG['order-opc_d87f73e8ff8d933ed2ba5ddf25040827'] = 'Commande instantanée';
|
||||
$_LANG['order-opc_ad52144224a9fb9e04b8b9ef22ce36f7'] = 'Veuillez d\'abord choisir une adresse';
|
||||
$_LANG['order-opc_879f6b8877752685a966564d072f498f'] = 'Votre panier est vide';
|
||||
$_LANG['order-opc_a240fa27925a635b08dc28c9e4f9216d'] = 'Commande';
|
||||
$_LANG['order-opc_42cc8aa1d968de2ca40d35fbc2aaf4cf'] = 'Cette boutique ne peut pas prendre de commandes.';
|
||||
$_LANG['order-opc_c6995d6cc084c192bc2e742f052a5c74'] = 'Livraison gratuite !';
|
||||
$_LANG['order-payment_f5bf48aa40cad7891eb709fcf1fde128'] = 'produit';
|
||||
$_LANG['order-payment_86024cad1e83101d97359d7351051156'] = 'produits';
|
||||
$_LANG['order-payment_59319ac504f7ad04ae16126cf49e7f7e'] = 'Votre méthode de paiement';
|
||||
$_LANG['order-payment_e747da89afc98485bb90928d397e9821'] = 'Choisissez votre méthode de paiement';
|
||||
$_LANG['order-payment_deb10517653c255364175796ace3553f'] = 'Produit';
|
||||
$_LANG['order-payment_b5a7adde1af5c87d7fd797b6245c2a39'] = 'Description';
|
||||
$_LANG['order-payment_9ff9c46512c186ebae182519a55dc6a9'] = 'Disp.';
|
||||
$_LANG['order-payment_6c957f72dc8cdacc75762f2cbdcdfaf2'] = 'Prix unitaire';
|
||||
$_LANG['order-payment_03ab340b3f99e03cff9e84314ead38c0'] = 'Qté';
|
||||
$_LANG['order-payment_96b0141273eabab320119c467cdcaf17'] = 'Total';
|
||||
$_LANG['order-payment_2370a4958c4ebe6d6c8045cd49a6b392'] = 'Total produit HT :';
|
||||
$_LANG['order-payment_db205f01b4fd580fb5daa9072d96849d'] = 'Total produits :';
|
||||
$_LANG['order-payment_ebaee01719541f61281c16ba22ebbfde'] = 'Total produit TTC :';
|
||||
$_LANG['order-payment_5cfa28d1182c6bd5bbd1af0bd459efbe'] = 'Total papiers cadeaux HT :';
|
||||
$_LANG['order-payment_31f52379817244bb67196c880749cfd8'] = 'Total papiers cadeaux :';
|
||||
$_LANG['order-payment_59816dd41a0dab043184d5ab19e2edaf'] = 'Total papiers cadeaux TTC :';
|
||||
$_LANG['order-payment_66f51e43606e2baebb8e9c3bfe965da4'] = 'Transport:';
|
||||
$_LANG['order-payment_ecba3578d8cd65126d4a47c76b3c9c2d'] = 'Livraison gratuite !';
|
||||
$_LANG['order-payment_f246a17c095de09e043cc1cb917481da'] = 'Total transport HT :';
|
||||
$_LANG['order-payment_f4e8b53a114e5a17d051ab84d326cae5'] = 'Total transport :';
|
||||
$_LANG['order-payment_e93f43fa527c3534aeca987091d6c049'] = 'Total transport TTC :';
|
||||
$_LANG['order-payment_9816a5054cd05761b6765fbef0062b29'] = 'Total bons d\'achats HT :';
|
||||
$_LANG['order-payment_ada0f55ef37f4928c5cd970f378c15e8'] = 'Total bons d\'achats :';
|
||||
$_LANG['order-payment_19809527da8b7308e45e2dc6ac40cca9'] = 'Total bons d\'achats TTC:';
|
||||
$_LANG['order-payment_598a4c4d56197cc1f6bca50b20aa484a'] = 'Total taxes :';
|
||||
$_LANG['order-payment_a82868319826fb092b73968e661b5b38'] = 'Bons d\'achats';
|
||||
$_LANG['order-payment_444bcb3a3fcf8389296c49467f27e1d6'] = 'ok';
|
||||
$_LANG['order-payment_f7b96335c6a33477579e43f3da368507'] = 'Profitez de nos offres';
|
||||
$_LANG['order-payment_1ac6ee29e9e68fb71bad91c1d34348cc'] = '%s :';
|
||||
$_LANG['order-payment_1021f02536dc46ab3b07c269949e4de7'] = 'Texte #%s :';
|
||||
$_LANG['order-payment_f2a6c498fb90ee345d997f888fce3b18'] = 'Supprimer';
|
||||
$_LANG['order-payment_c8cd21bd2e33378f10611bc4498cf96f'] = 'Supprimer cette personnalisation';
|
||||
$_LANG['order-payment_ec211f7c20af43e742bf2570c3cb84f9'] = 'Ajouter';
|
||||
$_LANG['order-payment_1d9baf077ee87921f57a8fe42d510b65'] = 'Soustraire';
|
||||
$_LANG['order-payment_8e1263b23607508e7ba8ff39aec8031d'] = 'Aucun module de paiement n\'a encore été installé.';
|
||||
$_LANG['order-payment_dd1f775e443ff3b9a89270713580a51b'] = 'Précédent';
|
||||
$_LANG['order-payment_879f6b8877752685a966564d072f498f'] = 'Votre panier est vide.';
|
||||
$_LANG['order-payment_5af5f631f774a71445e3028253874394'] = 'Cette boutique n\'a pas accepté votre nouvelle commande.';
|
||||
$_LANG['order-payment_3a5199ec2407f4b2f90496072ea8f006'] = 'Total produit HT :';
|
||||
$_LANG['order-payment_543ae6adeb524f98cc7d3c816a1ec1e3'] = 'Total produits :';
|
||||
$_LANG['order-payment_29cfbfc41066134782f966beefd63a4e'] = 'Total produit TTC :';
|
||||
$_LANG['order-payment_b935a8c55ff8c1c967d6f848b375db81'] = 'Total papiers cadeaux TTC :';
|
||||
$_LANG['order-payment_9a7dfcdac1fa244d3ddb36a9c0662c9e'] = 'Total transport HT :';
|
||||
$_LANG['order-payment_691b338fa68b3c177c6ebbc745624c6a'] = 'Total transport :';
|
||||
$_LANG['order-payment_1d4c9008fd49770971ffc2e8f32df870'] = 'Total transport TTC :';
|
||||
$_LANG['order-payment_4e59b98d7fa1d964bfd9841ad5c34980'] = 'Total bons d\'achats HT :';
|
||||
$_LANG['order-payment_2633d6725607d13e80f5e30514b91fbe'] = 'Total bons d\'achats :';
|
||||
$_LANG['order-payment_28e014bf2ccc53bc1a8042ca57ca6645'] = 'Total bons d\'achats TTC:';
|
||||
$_LANG['order-payment_66c4c5112f455a19afde47829df363fa'] = 'Total :';
|
||||
$_LANG['order-return_dfd57af0760925d5574fda1794d14de5'] = 'Retour n°';
|
||||
$_LANG['order-return_ed2b5c0139cec8ad2873829dc1117d50'] = 'du';
|
||||
$_LANG['order-return_88be9ea838e21273267409d76af3b284'] = 'Nous avons enregistré votre demande de retour.';
|
||||
$_LANG['order-return_dd0b8feb4eb6c389c284518f5683017c'] = 'Nous vous rappelons que votre colis doit nous être retourné dans les';
|
||||
$_LANG['order-return_ea62a2e28a800c367509773730120a67'] = 'jours après réception de votre commande.';
|
||||
$_LANG['order-return_6f1f2e16c84468614218f62ca6b42ba2'] = 'Situation actuelle de votre retour produit :';
|
||||
$_LANG['order-return_b24be74c768f02b296d4e8f41be486fb'] = 'Liste des articles à retourner :';
|
||||
$_LANG['order-return_63d5049791d9d79d86e9a108b0a999ca'] = 'Référence';
|
||||
$_LANG['order-return_deb10517653c255364175796ace3553f'] = 'Produit';
|
||||
$_LANG['order-return_694e8d1f2ee056f98ee488bdc4982d73'] = 'Quantité';
|
||||
$_LANG['order-return_1ac6ee29e9e68fb71bad91c1d34348cc'] = '%s :';
|
||||
$_LANG['order-return_48b9f22728151bb3cdf1a73c0a00b0aa'] = 'RAPPEL :';
|
||||
$_LANG['order-return_2b79d007c64009edf92d06f7cb280b25'] = 'Tous les produits doivent être retournés dans leur emballage et leur état d\'origine.';
|
||||
$_LANG['order-return_f3ba7c2fb2c65ad6fa1b1efd30573a8d'] = 'Veuillez imprimer ce';
|
||||
$_LANG['order-return_955b51949c0e756934c02c521f7f9405'] = 'document PDF';
|
||||
$_LANG['order-return_e81874a861e2b26ea2c4ecce9f378078'] = 'et le glisser dans votre colis.';
|
||||
$_LANG['order-return_d9d95b7fdffceaaa11c6bbae7b3bfa37'] = 'Le colis doit être livré à l\'adresse correcte';
|
||||
$_LANG['order-return_b1dceda8ca0eeb9fd9a4457bb613b67b'] = 'voir le document PDF';
|
||||
$_LANG['order-return_16dafae9102750489087d1d087b72aba'] = 'Dès réception de votre colis, nous procéderons au remboursement du montant de votre commande et vous en informerons par mail.';
|
||||
$_LANG['order-return_f393a2fe17dc0cacff53a136479b845d'] = 'Veuillez nous contacter pour toute question.';
|
||||
$_LANG['order-return_f637120d9f24c366b382ede6c21cddf0'] = 'Si les conditions de retour listées ci-dessus ne sont pas respectées, nous nous réservons le droit de refuser votre colis ou votre remboursement.';
|
||||
$_LANG['order-return_44a9edeffb86277f007fa90d96689a6d'] = 'Vous devez attendre notre confirmation avant de nous retourner les produits.';
|
||||
$_LANG['order-slip_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'Mon compte';
|
||||
$_LANG['order-slip_d1a365ea7809ae5831c6d9f86886630c'] = 'Avoirs';
|
||||
$_LANG['order-slip_77346fbddedb12894e80d8a9132b6b87'] = 'Liste des avoirs reçus suite à des annulations de commandes';
|
||||
$_LANG['order-slip_cf3bae95c5f6023d5a10fe415b205a45'] = 'Avoir';
|
||||
$_LANG['order-slip_a240fa27925a635b08dc28c9e4f9216d'] = 'Commande';
|
||||
$_LANG['order-slip_446faa7da2d42ba4ffeda73cb119dd91'] = 'Date d\'émission';
|
||||
$_LANG['order-slip_3cb6ea48a427bf3a1687302e3b764c27'] = 'Afficher l\'avoir';
|
||||
$_LANG['order-slip_e28cc69f9aa3068eddb76dd508b11da2'] = 'n°%s';
|
||||
$_LANG['order-slip_591286c3b4f075453e55532838ce0044'] = 'avoir';
|
||||
$_LANG['order-slip_bcd1b68617759b1dfcff0403a6b5a8d1'] = 'PDF';
|
||||
$_LANG['order-slip_0ba830b7ca1513a4882ce5aac84030b8'] = 'Vous n\'avez reçu aucun avoir';
|
||||
$_LANG['order-slip_a958dbb46713e59856c35f89e5092a5e'] = 'Retour à votre compte';
|
||||
$_LANG['order-slip_8cf04a9734132302f96da8e113e80ce5'] = 'Accueil';
|
||||
$_LANG['order-slip_01abfc750a0c942167651c40d088531d'] = 'n°';
|
||||
$_LANG['order-steps_290612199861c31d1036b185b4e69b75'] = 'Résumé';
|
||||
$_LANG['order-steps_99dea78007133396a7b8ed70578ac6ae'] = 'Identifiez-vous';
|
||||
$_LANG['order-steps_dd7bf230fde8d4836917806aff6a6b27'] = 'Adresse';
|
||||
$_LANG['order-steps_ea9cf7e47ff33b2be14e6dd07cbcefc6'] = 'Frais de port';
|
||||
$_LANG['order-steps_c453a4b8e8d98e82f35b67f433e3b4da'] = 'Paiement';
|
||||
$_LANG['pagination_dd1f775e443ff3b9a89270713580a51b'] = 'Précédent';
|
||||
$_LANG['pagination_10ac3d04253ef7e1ddc73e6091c0cd55'] = 'Suivant';
|
||||
$_LANG['pagination_e0aa021e21dddbd6d8cecec71e9cf564'] = 'OK';
|
||||
$_LANG['pagination_6c583afb157e33bfb5b7c3d4114c4dd5'] = 'produits';
|
||||
$_LANG['password_c75f7811d70d17dbcd88e9d03752cbed'] = 'Identification';
|
||||
$_LANG['password_0fb655f37529ad006eb0d503e23e10f1'] = 'Mot de passe oublié';
|
||||
$_LANG['password_01a569ddc6cf67ddec2a683f0a5f5956'] = 'Mot de passe oublié';
|
||||
$_LANG['password_f15b7d9b716da1d46ba073df11d4a8d0'] = 'Votre mot de passe a été renouvelé et a été envoyé à votre adresse e-mail.';
|
||||
$_LANG['password_8859f6ab28ba3d2384b269bcfa36ac33'] = 'Un e-mail de confirmation a été envoyé à votre adresse e-mail :';
|
||||
$_LANG['password_ad6de86f2f344d447d78a139fc16bd72'] = 'Veuillez renseigner votre adresse e-mail afin de recevoir votre nouveau mot de passe.';
|
||||
$_LANG['password_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'Saisissez votre adresse e-mail :';
|
||||
$_LANG['password_0d0e2934af7d3bc4e7263fcb1f9bc51c'] = 'Récupérer';
|
||||
$_LANG['password_d28f8b8bba7b45bc5103b23b4f21b4fd'] = 'Retour à la page d\'identification';
|
||||
$_LANG['password_95e6faaba5e8b016e5f9bcf5ea6c8270'] = 'Retour à la page d\'identification';
|
||||
$_LANG['prices-drop_c8f312df214e2295809027c6ca79d232'] = 'Promotions';
|
||||
$_LANG['prices-drop_701ddcee4495ef7a80e99750caf63941'] = 'Aucune promotion.';
|
||||
$_LANG['product-compare_216adaf4e98dc62ec3abeab51b9fc57f'] = 'Veuillez choisir au moins 1 produit.';
|
||||
$_LANG['product-compare_90723749917a82bf3ff8a73247d32ffb'] = 'Vous ne pouvez pas ajouter plus de %d produit(s) dans le comparateur.';
|
||||
$_LANG['product-compare_7eece51cf3938103677db7a5051ef8f5'] = 'Comparer';
|
||||
$_LANG['product-list_77798ad342555ffa834758a2aaa6fc11'] = 'Comparer';
|
||||
$_LANG['product-list_03c2e7e41ffc181a4e84080b4710e81e'] = 'Nouveau';
|
||||
$_LANG['product-list_800e90e940e7f1fb938b0fda5137f38c'] = 'En solde !';
|
||||
$_LANG['product-list_ca2bf12169883f4982d8fe34b7e3c618'] = 'Prix réduit !';
|
||||
$_LANG['product-list_78945de8de090e90045d299651a68a9b'] = 'En stock';
|
||||
$_LANG['product-list_cb3c718c905f00adbb6735f55bfb38ef'] = 'Produit disponible avec d\'autres options';
|
||||
$_LANG['product-list_b55197a49e8c4cd8c314bc2aa39d6feb'] = 'Stock épuisé';
|
||||
$_LANG['product-list_03de921a8ea82897e13d33d66c28b4db'] = 'Exclusivité web !';
|
||||
$_LANG['product-list_2d0f6b8300be19cf35e89e66f0677f95'] = 'Ajouter au panier';
|
||||
$_LANG['product-list_4351cfebe4b61d8aa5efa1d020710005'] = 'Voir le produit';
|
||||
$_LANG['products-comparison_4dbce7d8fae730e09fce9e83433c77ff'] = 'Comparaison de produits';
|
||||
$_LANG['products-comparison_4351cfebe4b61d8aa5efa1d020710005'] = 'Plus d\'infos';
|
||||
$_LANG['products-comparison_800e90e940e7f1fb938b0fda5137f38c'] = 'En solde!';
|
||||
$_LANG['products-comparison_ca2bf12169883f4982d8fe34b7e3c618'] = 'Prix réduit!';
|
||||
$_LANG['products-comparison_db0404dd6d32e0926c9adecd9ba193f3'] = 'par %s';
|
||||
$_LANG['products-comparison_8c751c4aab0db0b811cdfbddf0b4ea56'] = 'Disponibilité:';
|
||||
$_LANG['products-comparison_c1f0d3df31869ee3093120a670be37dd'] = 'Ce produit n\'est plus en stock';
|
||||
$_LANG['products-comparison_1063e38cb53d94d386f21227fcd84717'] = 'Retirer';
|
||||
$_LANG['products-comparison_2d0f6b8300be19cf35e89e66f0677f95'] = 'Ajouter au panier';
|
||||
$_LANG['products-comparison_d6295c05503596b3ed3528aee83e3ef7'] = 'Fonctionnalités';
|
||||
$_LANG['products-comparison_f5e15309ff0396474b8421ef48871d0b'] = 'Aucune fonctionnalité à comparer';
|
||||
$_LANG['products-comparison_234a9674e80b9c04a685075ad3ea6950'] = 'Aucun produit dans le comparateur';
|
||||
$_LANG['product-sort_33d8042bd735c559cc3206f4bc99aedc'] = 'Tri';
|
||||
$_LANG['product-sort_cfab1ba8c67c7c838db98d666f02a132'] = '--';
|
||||
$_LANG['product-sort_7f284e119af971a952e4b29f0875fc60'] = 'Le moins cher';
|
||||
$_LANG['product-sort_03590cca8220917788b5a6c25fa39a15'] = 'Le plus cher';
|
||||
$_LANG['product-sort_5820b5a5298779a25d98c41173b931bd'] = 'De A à Z';
|
||||
$_LANG['product-sort_4f4f552919d5a7ad3435b5fdb7fcae61'] = 'De Z à A';
|
||||
$_LANG['product-sort_fcebe56087b9373f15514831184fa572'] = 'Produits en stock';
|
||||
$_LANG['product-sort_c9e06afd258999a1c59d9fce7d9c86c0'] = 'Référence : croissante';
|
||||
$_LANG['product-sort_526e1c4e51dca91d2aeea20808766e74'] = 'Référence : décroissante';
|
||||
$_LANG['product_28a623fd7e9d81936b562dc5241a16a7'] = 'Ce produit n\'existe pas dans cette déclinaison. Vous pouvez néanmoins en sélectionner une autre.';
|
||||
$_LANG['product_bc0f7082192ef02e934a036cf4991789'] = 'Ce produit n\'est plus en stock';
|
||||
$_LANG['product_fa3638ce880fddddb872f53943933487'] = 'avec ces options mais reste disponible avec d\'autres options';
|
||||
$_LANG['product_476efcbaed950dd513ffc08e4e9a632f'] = 'Envoi en cours, veuillez patienter...';
|
||||
$_LANG['product_3b6d056ac93fc7b1947c3bc2ce720aaf'] = 'Veuillez remplir tous les champs, puis enregistrer votre personnalisation';
|
||||
$_LANG['product_f9ddd507fdf437437efdcb333a0f4ff0'] = 'Ce produit n\'est pas visible par vos clients.';
|
||||
$_LANG['product_110a4b01beabd53b661a47d4b44bd7a8'] = 'Publier';
|
||||
$_LANG['product_0557fa923dcee4d0f86b1409f5c2167f'] = 'Retour';
|
||||
$_LANG['product_9369ba148ee259473fc1fb4939b6c2e8'] = 'Agrandir';
|
||||
$_LANG['product_9981d2af851e4b4a4ea612d59f08ab9c'] = 'Autres vues';
|
||||
$_LANG['product_dd1f775e443ff3b9a89270713580a51b'] = 'Précédent';
|
||||
$_LANG['product_10ac3d04253ef7e1ddc73e6091c0cd55'] = 'Suivant';
|
||||
$_LANG['product_ea4788705e6873b424c65e91c2846b19'] = 'Annulé';
|
||||
$_LANG['product_02ea084dc2ef3e9965dbba4ec87d2f9b'] = 'Afficher toutes les images';
|
||||
$_LANG['product_13dba24862cf9128167a59100e154c8d'] = 'Imprimer';
|
||||
$_LANG['product_2b56b60f878922093facd42284848a0c'] = 'Plus de détails';
|
||||
$_LANG['product_e54a973d0c3342dac6ee7d9e145c6f83'] = 'Contenu du pack';
|
||||
$_LANG['product_98b0a68a7e4c7b265a5ca9a0b733d96e'] = 'Choisissez un coloris :';
|
||||
$_LANG['product_3dd42bfc8345e82c43b4a40a3426ec49'] = 'Référence :';
|
||||
$_LANG['product_3d0d1f906e27800531e054a3b6787b7c'] = 'Quantité :';
|
||||
$_LANG['product_e376237cca06a37330137147d20b0848'] = 'Ce produit n\'est pas vendu à l\'unité. Vous devez sélectionner au moins';
|
||||
$_LANG['product_d3f098af54fd27484e1b6168dfe6ae10'] = 'quantité pour ce produit.';
|
||||
$_LANG['product_8c751c4aab0db0b811cdfbddf0b4ea56'] = 'Disponibilité :';
|
||||
$_LANG['product_ea254ced8be4adb6c4a2750e84087da6'] = 'Date de disponibilité:';
|
||||
$_LANG['product_c2d72061078b4d4b862b060edbef1b9d'] = 'pièce disponible';
|
||||
$_LANG['product_574ce4e0b9b99a55c2ea0435bfd920e3'] = 'pièces disponibles';
|
||||
$_LANG['product_0d83f0026f6d2923b2aa3a208156918c'] = 'Attention : dernières pièces disponibles !';
|
||||
$_LANG['product_03de921a8ea82897e13d33d66c28b4db'] = 'Exclusivité web';
|
||||
$_LANG['product_887ee91702c962a70b87cbef07bbcaec'] = 'HT';
|
||||
$_LANG['product_e2e79605fc9450ec17957cf0e910f5c6'] = 'TTC';
|
||||
$_LANG['product_588907ab2d492aca0b07b5bf9c931eea'] = 'En solde';
|
||||
$_LANG['product_800e90e940e7f1fb938b0fda5137f38c'] = 'En solde !';
|
||||
$_LANG['product_ca2bf12169883f4982d8fe34b7e3c618'] = 'Prix réduit !';
|
||||
$_LANG['product_9a9a97ca85af73f90515e72745f730f0'] = 'au lieu de';
|
||||
$_LANG['product_f4d72a64acd8929c0cc9ed96a7a336cc'] = 'dont';
|
||||
$_LANG['product_441ca5553df52b87e87513c6b88927d3'] = 'd\'éco-participation';
|
||||
$_LANG['product_a134618182b99ff9151d7e0b6b92410a'] = '(ne sera pas compris dans la réduction)';
|
||||
$_LANG['product_fe3838c7c11aa406dd956566e17360d5'] = 'par';
|
||||
$_LANG['product_2d0f6b8300be19cf35e89e66f0677f95'] = 'Ajouter au panier';
|
||||
$_LANG['product_b1cff9892b2dde30a5f5cfb393c02423'] = 'Prix dégressifs';
|
||||
$_LANG['product_deb10517653c255364175796ace3553f'] = 'produit';
|
||||
$_LANG['product_1ed52421fcb149d2c392e987047165bc'] = 'à partir de (qté)';
|
||||
$_LANG['product_104d9898c04874d0fbac36e125fa1369'] = 'remise';
|
||||
$_LANG['product_71948aa4f6e12cdaa5e2e63a5eb8f142'] = 'En savoir plus';
|
||||
$_LANG['product_7dcd185f890fd28f69d1ed210292d77f'] = 'Fiche technique';
|
||||
$_LANG['product_801ab24683a4a8c433c6eb40c48bcd9d'] = 'Télécharger';
|
||||
$_LANG['product_98edb85b00d9527ad5acebe451b3fae6'] = 'Accessoires';
|
||||
$_LANG['product_54c02ba7929b1fda4847991a45b58a48'] = 'Personnalisation';
|
||||
$_LANG['product_d3da97e2d9aee5c8fbe03156ad051c99'] = 'Plus';
|
||||
$_LANG['product_4351cfebe4b61d8aa5efa1d020710005'] = 'Voir';
|
||||
$_LANG['product_d5a90effea572da2df11559161c0930b'] = 'Après avoir enregistré votre personnalisation, n\'oubliez pas d\'ajouter le produit au panier.';
|
||||
$_LANG['product_e5a75e83f9fd2f5fdff337a46227b3c3'] = 'Formats acceptés : GIF, JPG, PNG';
|
||||
$_LANG['product_b11ddc7e1671c0bd22dc89dd757508d4'] = 'Images';
|
||||
$_LANG['product_f2a6c498fb90ee345d997f888fce3b18'] = 'Supprimer';
|
||||
$_LANG['product_fd26de1a9f14da358bed04e29b04a89d'] = 'Sélectionnez une image sur votre ordinateur';
|
||||
$_LANG['product_9dffbf69ffba8bc38bc4e01abf4b1675'] = 'Textes';
|
||||
$_LANG['product_c9cc8cce247e49bae79f15173ce97354'] = 'Enregistrer';
|
||||
$_LANG['product_7f8c1eb3bfb1d0f94b20515f3cc5a211'] = 'champs requis';
|
||||
$_LANG['restricted-country_cf8092a0be7b972d6cee3db90bfaf923'] = 'Vous ne pouvez pas accéder à notre boutique depuis votre pays. Veuillez nous excuser de la gêne occasionnée.';
|
||||
$_LANG['scenes_d3d2e617335f08df83599665eef8a418'] = 'Fermer';
|
||||
$_LANG['scenes_03c2e7e41ffc181a4e84080b4710e81e'] = 'Nouveau';
|
||||
$_LANG['scenes_800e90e940e7f1fb938b0fda5137f38c'] = 'En solde !';
|
||||
$_LANG['scenes_ca2bf12169883f4982d8fe34b7e3c618'] = 'Prix réduit !';
|
||||
$_LANG['search_13348442cc6a27032d2b4aa28b75a5d3'] = 'Recherchez';
|
||||
$_LANG['search_05cf990f79d935b0ea6105855adef686'] = 'Retour à la page précédente';
|
||||
$_LANG['search_b2c56c8b57680e576c61c1b5df0d0c2d'] = 'Aucun résultat trouvé';
|
||||
$_LANG['search_a4bb6bf91165c149d73930f43ad4ef69'] = 'Veuillez saisir un mot-clé pour effectuer une recherche';
|
||||
$_LANG['search_3a93aed43691aed28d2ce3a53d3c63f8'] = '%d résultat a été trouvé.';
|
||||
$_LANG['search_a09e4037d02313230a191007246e1694'] = '%d résultats ont été trouvés.';
|
||||
$_LANG['shopping-cart-product-line_a59ba454f256953d318ac200a50d67d1'] = 'Offert !';
|
||||
$_LANG['shopping-cart-product-line_ec211f7c20af43e742bf2570c3cb84f9'] = 'Ajouter';
|
||||
$_LANG['shopping-cart-product-line_1d9baf077ee87921f57a8fe42d510b65'] = 'Enlever';
|
||||
$_LANG['shopping-cart-product-line_e716b72edf18038c04664e9b21569177'] = 'Vous devez avoir acheté au moins %d de ce produit.';
|
||||
$_LANG['shopping-cart-product-line_f2a6c498fb90ee345d997f888fce3b18'] = 'Supprimer';
|
||||
$_LANG['shopping-cart_a40cab5994f36d4c48103a22ca082e8f'] = 'Votre panier';
|
||||
$_LANG['shopping-cart_ff578eb1d07934124f4b9339ecfd2bf6'] = 'Récapitulatif de la commande';
|
||||
$_LANG['shopping-cart_4b0afa9e8d3cdefd4fb21faebe22ef5f'] = 'Votre compte est maintenant créé.';
|
||||
$_LANG['shopping-cart_879f6b8877752685a966564d072f498f'] = 'Votre panier est vide.';
|
||||
$_LANG['shopping-cart_5af5f631f774a71445e3028253874394'] = 'Cette boutique n\'a pas accepté votre nouvelle commande.';
|
||||
$_LANG['shopping-cart_f5bf48aa40cad7891eb709fcf1fde128'] = 'produit';
|
||||
$_LANG['shopping-cart_86024cad1e83101d97359d7351051156'] = 'produits';
|
||||
$_LANG['shopping-cart_b4f90d226d5212c67236540da6b5c2da'] = 'Dernier produit ajouté';
|
||||
$_LANG['shopping-cart_d6bf6fa1b9ec58788836df2f1019cdb0'] = 'Votre panier contient';
|
||||
$_LANG['shopping-cart_deb10517653c255364175796ace3553f'] = 'Produit';
|
||||
$_LANG['shopping-cart_b5a7adde1af5c87d7fd797b6245c2a39'] = 'Description';
|
||||
$_LANG['shopping-cart_12d3c7a4296542c62474856ec452c045'] = 'Réf.';
|
||||
$_LANG['shopping-cart_6c957f72dc8cdacc75762f2cbdcdfaf2'] = 'Prix unitaire';
|
||||
$_LANG['shopping-cart_03ab340b3f99e03cff9e84314ead38c0'] = 'Qté';
|
||||
$_LANG['shopping-cart_96b0141273eabab320119c467cdcaf17'] = 'Total';
|
||||
$_LANG['shopping-cart_2370a4958c4ebe6d6c8045cd49a6b392'] = 'Total produits HT :';
|
||||
$_LANG['shopping-cart_db205f01b4fd580fb5daa9072d96849d'] = 'Total produits';
|
||||
$_LANG['shopping-cart_ebaee01719541f61281c16ba22ebbfde'] = 'Total produits TTC :';
|
||||
$_LANG['shopping-cart_68c1f7726dbf6e8c073350b2fb3a1604'] = 'Total emballage cadeau TTC :';
|
||||
$_LANG['shopping-cart_0559e7888ca7513e71dad1c954a4b44d'] = 'Total emballage cadeau :';
|
||||
$_LANG['shopping-cart_ea9cf7e47ff33b2be14e6dd07cbcefc6'] = 'Transport:';
|
||||
$_LANG['shopping-cart_ecba3578d8cd65126d4a47c76b3c9c2d'] = 'Livraison gratuite !';
|
||||
$_LANG['shopping-cart_f246a17c095de09e043cc1cb917481da'] = 'Total frais de port HT :';
|
||||
$_LANG['shopping-cart_f4e8b53a114e5a17d051ab84d326cae5'] = 'Total frais de port';
|
||||
$_LANG['shopping-cart_e93f43fa527c3534aeca987091d6c049'] = 'Total frais de port TTC :';
|
||||
$_LANG['shopping-cart_28e014bf2ccc53bc1a8042ca57ca6645'] = 'Total bons d\'achats TTC:';
|
||||
$_LANG['shopping-cart_9816a5054cd05761b6765fbef0062b29'] = 'Total bons de réduction HT :';
|
||||
$_LANG['shopping-cart_ada0f55ef37f4928c5cd970f378c15e8'] = 'Total bons de réduction';
|
||||
$_LANG['shopping-cart_8faf99e02e4d0ccb4dd933404f87a4ea'] = 'Total HT :';
|
||||
$_LANG['shopping-cart_65b2eb8951e9008b9594b2c7444bc9cb'] = 'Total taxes :';
|
||||
$_LANG['shopping-cart_a82868319826fb092b73968e661b5b38'] = 'Bons de réduction';
|
||||
$_LANG['shopping-cart_e0aa021e21dddbd6d8cecec71e9cf564'] = 'ok';
|
||||
$_LANG['shopping-cart_12a7a93d72ded50311b52c7d0a853e3c'] = 'Profitez de nos offres :';
|
||||
$_LANG['shopping-cart_2fb3b950fd7711136f7f251ae5fbdbdc'] = 'Texte n°';
|
||||
$_LANG['shopping-cart_853ae90f0351324bd73ea615e6487517'] = ':';
|
||||
$_LANG['shopping-cart_ec211f7c20af43e742bf2570c3cb84f9'] = 'Ajouter';
|
||||
$_LANG['shopping-cart_1d9baf077ee87921f57a8fe42d510b65'] = 'Enlever';
|
||||
$_LANG['shopping-cart_f2a6c498fb90ee345d997f888fce3b18'] = 'Supprimer';
|
||||
$_LANG['shopping-cart_30efeba472c0bc4d0747d0109948a714'] = 'Envoyer les produits disponibles en premier.';
|
||||
$_LANG['shopping-cart_fcb508ac320051bb4723fb938b33de0d'] = 'Je tiens à préciser une adresse de livraison pour chaque produit commandé.';
|
||||
$_LANG['shopping-cart_af0f5bdc5be121b9307687aeeae38c17'] = 'Adresse de livraison';
|
||||
$_LANG['shopping-cart_601d8c4b9f72fc1862013c19b677a499'] = 'Adresse de facturation';
|
||||
$_LANG['shopping-cart_10ac3d04253ef7e1ddc73e6091c0cd55'] = 'Suivant';
|
||||
$_LANG['shopping-cart_300225ee958b6350abc51805dab83c24'] = 'Continuer mes achats';
|
||||
$_LANG['shopping-cart_5b9434f7af6c145e8523b93c9ed5ddde'] = 'Liste des produits';
|
||||
$_LANG['shopping-cart_e78b6f4eb3be046f4d25c07ce54954d4'] = 'Réf. :';
|
||||
$_LANG['shopping-cart_a23048e27d3360662e56525a2405e7f9'] = 'Liste des bons de réduction';
|
||||
$_LANG['shopping-cart_f8f5730f2ee46b88120ff192190fb7cd'] = 'Bons de réduction :';
|
||||
$_LANG['shopping-cart_9137796c15dd92e5553c3f29574d0968'] = 'Code de réduction :';
|
||||
$_LANG['shopping-cart_94966d90747b97d1f0f206c98a8b1ac3'] = 'Envoyer';
|
||||
$_LANG['shopping-cart_7395559a94fa7a25907a155cda78afa0'] = 'Confirmer la commande';
|
||||
$_LANG['sitemap_5813ce0ec7196c492c97596718f71969'] = 'Plan du site';
|
||||
$_LANG['sitemap_24cc85476cb8ec1a03192f09231e742b'] = 'Nos offres';
|
||||
$_LANG['sitemap_2e62a20e0e24a34b6da16e369b755dde'] = 'Voir un nouveau produit';
|
||||
$_LANG['sitemap_9ff0635f5737513b1a6f559ac2bff745'] = 'Nouveaux produits';
|
||||
$_LANG['sitemap_c70dd243e00d616ac8d4fa6949e46b26'] = 'Voir une des meilleures ventes';
|
||||
$_LANG['sitemap_01f7ac959c1e6ebbb2e0ee706a7a5255'] = 'Meilleures ventes';
|
||||
$_LANG['sitemap_d5ccde648010f8198e3506b1e4e1d318'] = 'Voir un produit en promotion';
|
||||
$_LANG['sitemap_c8f312df214e2295809027c6ca79d232'] = 'Promotions';
|
||||
$_LANG['sitemap_34305c555e765cb6b4fbb20d4f4d6121'] = 'Voir la liste des fabricants';
|
||||
$_LANG['sitemap_0e1e874dde345d19583102a9fd63fb7e'] = 'Marques';
|
||||
$_LANG['sitemap_2a75c8350e354ef6e2a842dfdf299214'] = 'Voir la liste des fournisseurs';
|
||||
$_LANG['sitemap_a00e46e856e637f8fd077b4fd710c9e2'] = 'Fournisseurs';
|
||||
$_LANG['sitemap_a0623b78a5f2cfe415d9dbbd4428ea40'] = 'Votre Compte';
|
||||
$_LANG['sitemap_48da3f6e6609ef3fce034fd48414e11f'] = 'Gérer mon compte client';
|
||||
$_LANG['sitemap_0dff7dbe97fdc822935db4663162b9b9'] = 'Gérer mes informations personnelles';
|
||||
$_LANG['sitemap_2433db5a329ea473271a3cd8c013362e'] = 'Informations personnelles';
|
||||
$_LANG['sitemap_775dc7a055a18907b183037a80c6eed9'] = 'Voir mon carnet d\'adresses';
|
||||
$_LANG['sitemap_284b47b0bb63ae2df3b29f0e691d6fcf'] = 'Adresses';
|
||||
$_LANG['sitemap_042fe826ace5f92b2477da18b0e7d0b7'] = 'Voir mes réductions';
|
||||
$_LANG['sitemap_9d5bf15117441a1b52eb1f0808e4aad3'] = 'Réduction';
|
||||
$_LANG['sitemap_60df547fe45851a472b9680811b3689d'] = 'Voir mon historique de commande';
|
||||
$_LANG['sitemap_782c8b38bce4f2f6975ca7f33ac8189b'] = 'Historique des commandes';
|
||||
$_LANG['sitemap_c75f7811d70d17dbcd88e9d03752cbed'] = 'Identification';
|
||||
$_LANG['sitemap_1aa668d559a3a32a44796aeee6978a59'] = 'Créer un nouveau compte';
|
||||
$_LANG['sitemap_4394c8d8e63c470de62ced3ae85de5ae'] = 'Déconnexion';
|
||||
$_LANG['sitemap_af1b98adf7f686b84cd0b443e022b7a0'] = 'Catégories';
|
||||
$_LANG['sitemap_453aceb005ceaf54a47da15fee8b2a26'] = 'Pages';
|
||||
$_LANG['sitemap_bbaff12800505b22a853e8b7f4eb6a22'] = 'Contact';
|
||||
$_LANG['sitemap_59107b284bf28196b69063b109b644ef'] = 'Nos magasins';
|
||||
$_LANG['sitemap_34c869c542dee932ef8cd96d2f91cae6'] = 'Nos magasins';
|
||||
$_LANG['sitemap_62f5d708d6ad1fa1ddd9429a65cccbea'] = 'Toutes les catégories';
|
||||
$_LANG['sitemap_8cf04a9734132302f96da8e113e80ce5'] = 'Accueil';
|
||||
$_LANG['store_infos_6f8522e0610541f1ef215a22ffa66ff6'] = 'Lundi';
|
||||
$_LANG['store_infos_5792315f09a5d54fb7e3d066672b507f'] = 'Mardi';
|
||||
$_LANG['store_infos_796c163589f295373e171842f37265d5'] = 'Mercredi';
|
||||
$_LANG['store_infos_78ae6f0cd191d25147e252dc54768238'] = 'Jeudi';
|
||||
$_LANG['store_infos_c33b138a163847cdb6caeeb7c9a126b4'] = 'Vendredi';
|
||||
$_LANG['store_infos_8b7051187b9191cdcdae6ed5a10e5adc'] = 'Samedi';
|
||||
$_LANG['store_infos_9d1a0949c39e66a0cd65240bc0ac9177'] = 'Dimanche';
|
||||
$_LANG['store_infos_a75e076c6fa3af6798371ae003c68364'] = 'Horaires :';
|
||||
$_LANG['stores_34c869c542dee932ef8cd96d2f91cae6'] = 'Nos magasins';
|
||||
$_LANG['stores_f8be99e56d4207f6df76e12bd32e0fea'] = 'Voici la liste détaillée de nos magasins, n\'hésitez pas à nous contacter :';
|
||||
$_LANG['stores_7ab6c2300ac1d74d35cadcfb39254827'] = 'Aucun magasin trouvé, essayez de sélectionner un rayon plus large';
|
||||
$_LANG['stores_e80ba8cf66845d479eb275578353e358'] = 'boutique trouvée - voir les détails :';
|
||||
$_LANG['stores_c3d0689b0ded3217c1b4fef6e9513930'] = 'boutiques trouvées - voir les résultats :';
|
||||
$_LANG['stores_673ae02fffb72f0fe68a66f096a01347'] = 'Téléphone :';
|
||||
$_LANG['stores_a9407a9201ef1b64f0c567ed291574ba'] = 'Itinéraire';
|
||||
$_LANG['stores_9e076f5885f5cc16a4b5aeb8de4adff5'] = 'Introuvable';
|
||||
$_LANG['stores_dd8e04bdafcdc0ff0a6be34cd74394c0'] = 'Saisissez un lieu (ex. : un code postal, une adresse, une ville ou un pays) afin de trouver les boutiques les plus proches.';
|
||||
$_LANG['stores_12e8c7785484eb1547a9793a6b8603f9'] = 'Votre adresse :';
|
||||
$_LANG['stores_8519118a6eee0dcbb6118528f3f7febb'] = 'Adresse, code postal, ville, Etat ou pays';
|
||||
$_LANG['stores_326684a8cb097db086be681022d9ae46'] = 'Rayon :';
|
||||
$_LANG['stores_13348442cc6a27032d2b4aa28b75a5d3'] = 'Rechercher';
|
||||
$_LANG['stores_01abfc750a0c942167651c40d088531d'] = 'N°';
|
||||
$_LANG['stores_fdb0c388de01d545017cdf9ccf00eb72'] = 'Magasin';
|
||||
$_LANG['stores_dd7bf230fde8d4836917806aff6a6b27'] = 'Adresse';
|
||||
$_LANG['stores_0aa6f4210bf373c95eda00232e93cd98'] = 'Distance';
|
||||
$_LANG['supplier-list_a00e46e856e637f8fd077b4fd710c9e2'] = 'Fournisseurs';
|
||||
$_LANG['supplier-list_44cc6cf69e752cd267e29e71ac4175ff'] = 'Il n\'y a aucun fournisseur.';
|
||||
$_LANG['supplier-list_bf1f33501d576cce01509b67e2260242'] = 'Il y a %d fournisseur.';
|
||||
$_LANG['supplier-list_70e0158b4815b0ad6be5f86a11e3a3b4'] = 'Il y a %d fournisseurs.';
|
||||
$_LANG['supplier-list_0397cbccfd02272abd38f8933b865218'] = '%d produit';
|
||||
$_LANG['supplier-list_864c665aea5e824772fda0e678c3ac4d'] = '%d produits';
|
||||
$_LANG['supplier-list_c61ab4204f572e9b3aa84a040e0dab31'] = 'voir les produits';
|
||||
$_LANG['supplier_4bbacadd33aff22ab7468fa4f9efd717'] = 'Liste des produits du fournisseur';
|
||||
$_LANG['supplier_71a863ca23a2b5d1dc82e60b908576b5'] = 'Pas de produit pour ce fournisseur.';
|
||||
$_LANG['supplier_a00e46e856e637f8fd077b4fd710c9e2'] = 'Fournisseurs';
|
||||
$_LANG['supplier_d3da97e2d9aee5c8fbe03156ad051c99'] = 'Plus d\'infos';
|
||||
$_LANG['authentication-choice_2fdfd506efea08144c0794c32ca8250a'] = 'Créez votre compte';
|
||||
$_LANG['authentication-choice_0b2c9f6cb541db5d223143a645492ddd'] = 'Saisissez votre adresse e-mail pour créer votre compte';
|
||||
$_LANG['authentication-choice_b357b524e740bc85b9790a0712d84a30'] = 'Adresse e-mail';
|
||||
$_LANG['authentication-choice_db879b00e657fc85f7873343f11df21c'] = 'Déjà enregistré ?';
|
||||
$_LANG['authentication-choice_dc647eb65e6711e155375218212b3964'] = 'Mot de passe';
|
||||
$_LANG['authentication-choice_01a569ddc6cf67ddec2a683f0a5f5956'] = 'Mot de passe oublié ?';
|
||||
$_LANG['authentication-choice_99dea78007133396a7b8ed70578ac6ae'] = 'Connexion';
|
||||
$_LANG['authentication-create-account_6335a00a08fde0fbb8f6d6630cdadd92'] = 'Vos informations personnelles';
|
||||
$_LANG['authentication-create-account_b78a3223503896721cca1303f776159b'] = 'Titre';
|
||||
$_LANG['authentication-create-account_20db0bfeecd8fe60533206a2b5e9891a'] = 'Prénom';
|
||||
$_LANG['authentication-create-account_8d3f5eff9c40ee315d452392bed5309b'] = 'Nom';
|
||||
$_LANG['authentication-create-account_01401fe9a93df81d28637e5218597b76'] = 'E-mail';
|
||||
$_LANG['authentication-create-account_dc647eb65e6711e155375218212b3964'] = 'Mot de passe';
|
||||
$_LANG['authentication-create-account_bf2957630c4209f61a388a08c2154915'] = '(min. 5 caractères.)';
|
||||
$_LANG['authentication-create-account_10803b83a68db8f7e7a33e3b41e184d0'] = 'Date de naissance';
|
||||
$_LANG['authentication-create-account_86f5978d9b80124f509bdb71786e929e'] = 'Janvier';
|
||||
$_LANG['authentication-create-account_659e59f062c75f81259d22786d6c44aa'] = 'Février';
|
||||
$_LANG['authentication-create-account_fa3e5edac607a88d8fd7ecb9d6d67424'] = 'Mars';
|
||||
$_LANG['authentication-create-account_3fcf026bbfffb63fb24b8de9d0446949'] = 'Avril';
|
||||
$_LANG['authentication-create-account_195fbb57ffe7449796d23466085ce6d8'] = 'Mai';
|
||||
$_LANG['authentication-create-account_688937ccaf2a2b0c45a1c9bbba09698d'] = 'Juin';
|
||||
$_LANG['authentication-create-account_1b539f6f34e8503c97f6d3421346b63c'] = 'Juillet';
|
||||
$_LANG['authentication-create-account_41ba70891fb6f39327d8ccb9b1dafb84'] = 'Août';
|
||||
$_LANG['authentication-create-account_cc5d90569e1c8313c2b1c2aab1401174'] = 'Septembre';
|
||||
$_LANG['authentication-create-account_eca60ae8611369fe28a02e2ab8c5d12e'] = 'Octobre';
|
||||
$_LANG['authentication-create-account_7e823b37564da492ca1629b4732289a8'] = 'Novembre';
|
||||
$_LANG['authentication-create-account_82331503174acbae012b2004f6431fa5'] = 'Décembre';
|
||||
$_LANG['authentication-create-account_93edfc7af9b6471b30030cf17646e36c'] = 'S\'inscrire à notre newsletter';
|
||||
$_LANG['authentication-create-account_baca087296e01b5d69799dd53bcd7950'] = 'Recevoir des offres spéciales de nos partenaires';
|
||||
$_LANG['authentication-create-account_1011bae349c34405e0c47931fc7ef8ad'] = 'Vos informations société';
|
||||
$_LANG['authentication-create-account_1c76cbfe21c6f44c1d1e59d54f3e4420'] = 'Entreprise';
|
||||
$_LANG['authentication-create-account_4f68183551e5dbd7c341347ffe308682'] = 'SIRET';
|
||||
$_LANG['authentication-create-account_85fb93a8ee9440499692da24a1621769'] = 'APE';
|
||||
$_LANG['authentication-create-account_15bbb9d0bbf25e8d2978de1168c749dc'] = 'Site Web';
|
||||
$_LANG['authentication-create-account_455175f3f5be6306247babb349c0515a'] = 'Votre adresse';
|
||||
$_LANG['authentication-create-account_7cb32e708d6b961d476baced73d362bb'] = 'Numéro TVA';
|
||||
$_LANG['authentication-create-account_dd7bf230fde8d4836917806aff6a6b27'] = 'Adresse';
|
||||
$_LANG['authentication-create-account_a6ee9085d7a0d0f894765d9d3ed50c6b'] = 'Numéro dans la rue, boîte postale, nom de la société';
|
||||
$_LANG['authentication-create-account_846a54955f32846032981f8fe48c35ff'] = 'Adresse (ligne 2)';
|
||||
$_LANG['authentication-create-account_261ed9f602d575774ae05f2d9f3003da'] = 'Appartement, suite, bloc, bâtiment, étage, etc.';
|
||||
$_LANG['authentication-create-account_d30f507473129e70c4b962ceccf175cf'] = 'Code postal';
|
||||
$_LANG['authentication-create-account_57d056ed0984166336b7879c2af3657f'] = 'Ville';
|
||||
$_LANG['authentication-create-account_59716c97497eb9694541f7c3d37b1a4d'] = 'Pays';
|
||||
$_LANG['authentication-create-account_46a2a41cc6e552044816a2d04634545d'] = 'État';
|
||||
$_LANG['authentication-create-account_0f68b904e33d9ac04605aecc958bcf52'] = 'Informations complémentaires';
|
||||
$_LANG['authentication-create-account_39916f579f264041641c122e68e545d5'] = 'Vous devez enregistrer au moins un numéro de téléphone';
|
||||
$_LANG['authentication-create-account_fe66abce284ec8589e7d791185b5c442'] = 'Téléphone fixe';
|
||||
$_LANG['authentication-create-account_41c2fff4867cc204120f001e7af20f7a'] = 'Téléphone mobile';
|
||||
$_LANG['authentication-create-account_f9b479c47658c53084b56edcc3a2cd3a'] = 'Donnez un titre à cette adresse pour la retrouver plus facilement';
|
||||
$_LANG['authentication-create-account_ae7bdef7fe2bbbbf02c11e92c5fceb40'] = 'Mon adresse';
|
||||
$_LANG['authentication-create-account_c773457e85b990c10f8823eacb21346c'] = 'Identification fiscale';
|
||||
$_LANG['authentication-create-account_b60bb13a87fe3ae5463aeb0980a5a8a1'] = 'Numéro d\'identification fiscale';
|
||||
$_LANG['authentication-create-account_ea318a4ad37f0c2d2c368e6c958ed551'] = 'DNI / NIF / NIE';
|
||||
$_LANG['authentication-create-account_0ba7583639a274c434bbe6ef797115a4'] = 'Enregistrer';
|
||||
$_LANG['authentication-create-account_19f823c6453c2b1ffd09cb715214813d'] = 'Champ requis';
|
||||
$_LANG['category-product-list_800e90e940e7f1fb938b0fda5137f38c'] = 'En solde !';
|
||||
$_LANG['category-product-list_ca2bf12169883f4982d8fe34b7e3c618'] = 'Prix réduit !';
|
||||
$_LANG['category-product-list_78945de8de090e90045d299651a68a9b'] = 'Disponibles';
|
||||
$_LANG['category-product-list_cb3c718c905f00adbb6735f55bfb38ef'] = 'Disponible avec différentes options';
|
||||
$_LANG['category-product-list_b55197a49e8c4cd8c314bc2aa39d6feb'] = 'Rupture de stock';
|
||||
$_LANG['category-product-list_d0fcb89c94b29d6ab2db749ff688dc7c'] = 'Exclusivité web !';
|
||||
$_LANG['category-product-list_03c2e7e41ffc181a4e84080b4710e81e'] = 'Nouveau';
|
||||
$_LANG['category-product-sort_33d8042bd735c559cc3206f4bc99aedc'] = 'Trier par';
|
||||
$_LANG['category-product-sort_7f284e119af971a952e4b29f0875fc60'] = 'Le moins cher';
|
||||
$_LANG['category-product-sort_03590cca8220917788b5a6c25fa39a15'] = 'Le plus cher';
|
||||
$_LANG['category-product-sort_5820b5a5298779a25d98c41173b931bd'] = 'De A à Z';
|
||||
$_LANG['category-product-sort_4f4f552919d5a7ad3435b5fdb7fcae61'] = 'De Z à A';
|
||||
$_LANG['category-product-sort_fcebe56087b9373f15514831184fa572'] = 'Produits en stock';
|
||||
$_LANG['category-product-sort_c9e06afd258999a1c59d9fce7d9c86c0'] = 'Référence : croissante';
|
||||
$_LANG['category-product-sort_526e1c4e51dca91d2aeea20808766e74'] = 'Référence : décroissante';
|
||||
$_LANG['order-detail-product-li_63d5049791d9d79d86e9a108b0a999ca'] = 'Référence';
|
||||
$_LANG['order-detail-product-li_694e8d1f2ee056f98ee488bdc4982d73'] = 'Quantité';
|
||||
$_LANG['order-detail-product-li_6c957f72dc8cdacc75762f2cbdcdfaf2'] = 'Prix unique';
|
||||
$_LANG['order-detail-product-li_0eede552438475bdfe820c13f24c9399'] = 'Prix total';
|
||||
$_LANG['order-detail-product-li_853ae90f0351324bd73ea615e6487517'] = ':';
|
||||
$_LANG['order-detail-product-li_c060ca8505d0aa094635fbf9beac94b0'] = 'télécharger ce produit';
|
||||
$_LANG['order-detail-product-li_aec9b5b1c2f91ccdef8e25f5f1dac86a'] = 'Télécharger le produit';
|
||||
$_LANG['order-opc-address_dd7bf230fde8d4836917806aff6a6b27'] = 'Adresse';
|
||||
$_LANG['order-opc-address_af0f5bdc5be121b9307687aeeae38c17'] = 'Adresse de livraison';
|
||||
$_LANG['order-opc-address_145769de0753212cb6f89a997ce200bc'] = 'Changer l\'adresse :';
|
||||
$_LANG['order-opc-address_601d8c4b9f72fc1862013c19b677a499'] = 'Adresse de facturation';
|
||||
$_LANG['order-opc-address_89fda22cffba3209fa31607fe96e4ed1'] = 'Vous devez préciser votre adresse de livraison ainsi que votre adresse de facturation.';
|
||||
$_LANG['order-opc-address_b15e1100a6196acba01ef7aaa5b2a9e5'] = 'Ajoutez une nouvelle adresse';
|
||||
$_LANG['order-opc-carrier_66f51e43606e2baebb8e9c3bfe965da4'] = 'Expédition';
|
||||
$_LANG['order-opc-carrier_f5bf48aa40cad7891eb709fcf1fde128'] = 'Produit';
|
||||
$_LANG['order-opc-carrier_86024cad1e83101d97359d7351051156'] = 'Produits';
|
||||
$_LANG['order-opc-carrier_5508a53851720a210e50f7b8a6f66f46'] = 'Vous devez accepter les conditions d\'utilisation avant de continuer';
|
||||
$_LANG['order-opc-carrier_e085dcd05d73bdd5afe338e5b6e42a18'] = 'Choisissez votre mode de livraison';
|
||||
$_LANG['order-opc-carrier_1f87346a16cf80c372065de3c54c86d9'] = 'TTC';
|
||||
$_LANG['order-opc-carrier_21034ae6d01a83e702839a72ba8a77b0'] = 'HT';
|
||||
$_LANG['order-opc-carrier_b24ce0cd392a5b0b8dedc66c25213594'] = 'Gratuit';
|
||||
$_LANG['order-opc-carrier_e06b4fd44aa19916cbbb34d7ca26efa1'] = 'Produit concerné:';
|
||||
$_LANG['order-opc-carrier_9960807cfb66a03002a9b7777c4a96c5'] = 'Produits concernés:';
|
||||
$_LANG['order-opc-carrier_0fce1189b263c211a8239fb0e9df004d'] = 'J\'accepte de recevoir ma commande dans un emballage recyclé';
|
||||
$_LANG['order-opc-carrier_0d9175fe89fb80d815e7d03698b6e83a'] = 'Cadeau';
|
||||
$_LANG['order-opc-carrier_32224bd6487699ea66652d3dc502455d'] = 'Je souhaite un emballage cadeau.';
|
||||
$_LANG['order-opc-carrier_5c2dfd55fea1f5c6adef500fcb6403b4'] = 'Coût supplémentaire de';
|
||||
$_LANG['order-opc-carrier_bf46d59ab4c5096d169c1a5eb39cc0c1'] = 'Vous pouvez ajouter un message à votre cadeau:';
|
||||
$_LANG['order-opc-carrier_e4045598261988d9988c594243a9434d'] = 'Conditions générales de vente';
|
||||
$_LANG['order-opc-carrier_ad88a6c9e8c880f23639321d78ec859d'] = 'J\'ai lu les conditions générales de vente et j\'y adhère sans réserve.';
|
||||
$_LANG['order-opc-carrier_c1fb97680f5f203d44744a2355ed87ae'] = '(Lire les Conditions générales de vente)';
|
||||
$_LANG['order-opc-payment_bd0e34e5be6447844e6f262d51f1a9dc'] = 'Paiement';
|
||||
$_LANG['pages-list_5813ce0ec7196c492c97596718f71969'] = 'Plan du site';
|
||||
$_LANG['pages-list_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'Mon compte';
|
||||
$_LANG['pages-list_bbaff12800505b22a853e8b7f4eb6a22'] = 'Contact';
|
||||
$_LANG['product-desc-features_71948aa4f6e12cdaa5e2e63a5eb8f142'] = 'En savoir plus';
|
||||
$_LANG['product-desc-features_7dcd185f890fd28f69d1ed210292d77f'] = 'Fiche technique';
|
||||
$_LANG['product-desc-features_801ab24683a4a8c433c6eb40c48bcd9d'] = 'Téléchargement';
|
||||
$_LANG['product-desc-features_98edb85b00d9527ad5acebe451b3fae6'] = 'Accessoires';
|
||||
$_LANG['product-desc-features_4351cfebe4b61d8aa5efa1d020710005'] = 'Voir';
|
||||
$_LANG['product-desc-features_cb3c718c905f00adbb6735f55bfb38ef'] = 'Disponible avec différentes options';
|
||||
$_LANG['product-desc-features_b55197a49e8c4cd8c314bc2aa39d6feb'] = 'Rupture de stock';
|
||||
$_LANG['product-desc-features_2d0f6b8300be19cf35e89e66f0677f95'] = 'Ajouter au panier';
|
||||
$_LANG['product-js_3536d9c388d7375db82358f74072f5c4'] = 'Ce produit n\'existe pas dans cette déclinaison. Vous pouvez néanmoins en sélectionner une autre.';
|
||||
$_LANG['product-js_bc0f7082192ef02e934a036cf4991789'] = 'Ce produit n\'est plus en stock';
|
||||
$_LANG['product-js_9173701581f0213f0104e064479e4ca3'] = 'avec ces options mais reste disponible avec d\'autres options';
|
||||
$_LANG['product-js_78a2d6a3d6741d9d2cbff658d5df7cd8'] = 'Envoi en cours, veuillez patienter...';
|
||||
$_LANG['product-js_0d9e08f309dc15da39fe0850ef180d90'] = 'Veuillez remplir tous les champs requis, puis enregistrer votre personnalisation.';
|
||||
$_LANG['product-prices_03de921a8ea82897e13d33d66c28b4db'] = 'Exclusivité web';
|
||||
$_LANG['product-prices_800e90e940e7f1fb938b0fda5137f38c'] = 'En solde !';
|
||||
$_LANG['product-prices_58ef6750a23ba432fc1377b7de085d9f'] = 'HT';
|
||||
$_LANG['product-prices_7bb63c7de5a5ee79356083a12f21e1e8'] = 'au lieu de';
|
||||
$_LANG['product-prices_d436eb0fd9de10b54a828ce6435f7e81'] = 'dont';
|
||||
$_LANG['product-prices_f85524c253c150e88136df3999ac3fd4'] = 'd\'éco-participation';
|
||||
$_LANG['product-prices_a134618182b99ff9151d7e0b6b92410a'] = '(ne sera pas compris dans la réduction)';
|
||||
$_LANG['product-prices_fe3838c7c11aa406dd956566e17360d5'] = 'par';
|
||||
$_LANG['product-quantity-discount_b1cff9892b2dde30a5f5cfb393c02423'] = 'Prix dégressifs';
|
||||
$_LANG['product-quantity-discount_f5bf48aa40cad7891eb709fcf1fde128'] = 'produit';
|
||||
$_LANG['product-quantity-discount_1b793b463a1c296e1327d7048c201cc3'] = 'à partir de (qté)';
|
||||
$_LANG['product-quantity-discount_e2dc6c48c56de466f6d13781796abf3d'] = 'remise';
|
||||
$_LANG['product-quantity-discount_a8653ee50c469163457071f807f79cfd'] = 'Il n\'y a pas de remise en fonction de la quantité pour ce produit.';
|
||||
$_LANG['shopping-cart-gift-line_e78b6f4eb3be046f4d25c07ce54954d4'] = 'Réf.:';
|
||||
$_LANG['shopping-cart-gift-line_a59ba454f256953d318ac200a50d67d1'] = 'Cadeau!';
|
||||
@@ -0,0 +1,998 @@
|
||||
<?php
|
||||
|
||||
global $_LANG;
|
||||
$_LANG = array();
|
||||
|
||||
$_LANG['live_edit_282f96c7d1ed98d24606d209dcad9842'] = 'Расположение модулей сохранено';
|
||||
$_LANG['live_edit_f3dd9ec6ab54a73a369896f52bb5943c'] = 'Вы уверены? Если вы закроете это окно, ваши изменения не будут сохранены.';
|
||||
$_LANG['live_edit_d3d2e617335f08df83599665eef8a418'] = 'Закрыть';
|
||||
$_LANG['live_edit_ea4788705e6873b424c65e91c2846b19'] = 'Отменить';
|
||||
$_LANG['live_edit_70d9be9b139893aa6c69b5e77e614311'] = 'Подтвердить';
|
||||
$_LANG['live_edit_1b7c6a7f9b72974ede874b8fba9547a0'] = 'Добавить данный модуль';
|
||||
$_LANG['live_edit_da87eac3848a0d55560bdd129a0e134b'] = 'Не удалось удалить хук';
|
||||
$_LANG['live_edit_79030d996976f29a5e986a42d8f026e5'] = 'Не удалось сохранить расположение модулей';
|
||||
$_LANG['live_edit_3c5b87f318f203adbfcc5d6a68959359'] = 'Не удалось загрузить список модулей';
|
||||
$_LANG['live_edit_c9cc8cce247e49bae79f15173ce97354'] = 'Сохранить';
|
||||
$_LANG['live_edit_d8dcfab18b3a6eba56d617dd1dcb1ba7'] = 'Закрыть редактор';
|
||||
$_LANG['404_44b1d05764b093cb00c25b8228cb87d3'] = 'Страница недоступна';
|
||||
$_LANG['404_6554aae881e40036cac1f5710a4c52c1'] = 'Извините, запрошеной вами страницы не существует';
|
||||
$_LANG['404_9bec38acab82302a8cf6fbb9182da21f'] = 'Для поиска товара введите его наименование в следующее поле';
|
||||
$_LANG['404_a68ba7d969d1294a35138fa501dfb078'] = 'Поиск в каталоге:';
|
||||
$_LANG['404_8cf04a9734132302f96da8e113e80ce5'] = 'На главную';
|
||||
$_LANG['404_13348442cc6a27032d2b4aa28b75a5d3'] = 'Поиск';
|
||||
$_LANG['addresses_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'Личный кабинет';
|
||||
$_LANG['addresses_e45be0a0d4a0b62b15694c1a631e6e62'] = 'Мои адреса доставки';
|
||||
$_LANG['addresses_a6d373cdb986fc009a5a040a4c3d8c1d'] = 'Пожалуйста укажите основной адрес, который будет использоваться для доставки покупок. Можно указать несколько адресов, чтобы в дальнейшем иметь отправлять подарки или получать покупки в офисе. Вы можете быстро выбирать любой из них.';
|
||||
$_LANG['addresses_aa5e970d64eb228f31669d3411171f92'] = 'Ваши адреса перечислены ниже.';
|
||||
$_LANG['addresses_e380ae58f85252c076e131862857de35'] = 'Не забывайте обновлять адреса в случае их изменения.';
|
||||
$_LANG['addresses_06933067aafd48425d67bcb01bba5cb6'] = 'Изменить';
|
||||
$_LANG['addresses_729a51874fe901b092899e9e8b31c97a'] = 'Вы уверены?';
|
||||
$_LANG['addresses_f2a6c498fb90ee345d997f888fce3b18'] = 'Удалить';
|
||||
$_LANG['addresses_56d3db43fb7f323139022a29d57276d8'] = 'Вы не добавили ни одного адреса.';
|
||||
$_LANG['addresses_b15e1100a6196acba01ef7aaa5b2a9e5'] = 'Добавить новый адрес';
|
||||
$_LANG['addresses_3c7d34ae915c6664189dab2aebb02307'] = 'Добавить адрес';
|
||||
$_LANG['addresses_a958dbb46713e59856c35f89e5092a5e'] = 'Вернуться в личный кабинет';
|
||||
$_LANG['addresses_8cf04a9734132302f96da8e113e80ce5'] = 'На главную';
|
||||
$_LANG['address_3908e1afa0ff22fbf112aff3c5ba55c1'] = 'Ваши адреса доставки';
|
||||
$_LANG['address_e9b6b3aa3cab28048d3879710882e1de'] = 'Изменить адрес';
|
||||
$_LANG['address_d7f172af352aa5232de5295afeaa68e5'] = 'Чтобы добавить адрес, заполните эту форму:';
|
||||
$_LANG['address_19f823c6453c2b1ffd09cb715214813d'] = 'Обязательные поля';
|
||||
$_LANG['address_455175f3f5be6306247babb349c0515a'] = 'Ваш адрес';
|
||||
$_LANG['address_393d8c6bc7a04264bd9523dc8c92b818'] = 'Новый адрес';
|
||||
$_LANG['address_b60bb13a87fe3ae5463aeb0980a5a8a1'] = 'Идентификационный номер';
|
||||
$_LANG['address_ea318a4ad37f0c2d2c368e6c958ed551'] = 'Идентификационный номер';
|
||||
$_LANG['address_1c76cbfe21c6f44c1d1e59d54f3e4420'] = 'Организация';
|
||||
$_LANG['address_7cb32e708d6b961d476baced73d362bb'] = 'Номер плательщика НДС';
|
||||
$_LANG['address_20db0bfeecd8fe60533206a2b5e9891a'] = 'Имя';
|
||||
$_LANG['address_8d3f5eff9c40ee315d452392bed5309b'] = 'Фамилия';
|
||||
$_LANG['address_dd7bf230fde8d4836917806aff6a6b27'] = 'Адрес';
|
||||
$_LANG['address_846a54955f32846032981f8fe48c35ff'] = 'Адрес (продолжение)';
|
||||
$_LANG['address_d30f507473129e70c4b962ceccf175cf'] = 'Почтовый индекс';
|
||||
$_LANG['address_57d056ed0984166336b7879c2af3657f'] = 'Город';
|
||||
$_LANG['address_59716c97497eb9694541f7c3d37b1a4d'] = 'Страна';
|
||||
$_LANG['address_46a2a41cc6e552044816a2d04634545d'] = 'Регион';
|
||||
$_LANG['address_0f68b904e33d9ac04605aecc958bcf52'] = 'Дополнительная информация';
|
||||
$_LANG['address_eeabead01c6c6f25f22bf0b041df58a9'] = 'Вам необходимо указать по крайней мере один номер телефона';
|
||||
$_LANG['address_fe66abce284ec8589e7d791185b5c442'] = 'Домашний телефон';
|
||||
$_LANG['address_41c2fff4867cc204120f001e7af20f7a'] = 'Мобильный телефон';
|
||||
$_LANG['address_89a9a0e5aec9360bc3b0141c8d42e586'] = 'Название указанного адреса, например \"Дом\" или \"Работа\"';
|
||||
$_LANG['address_ae7bdef7fe2bbbbf02c11e92c5fceb40'] = 'Дом';
|
||||
$_LANG['address_c9cc8cce247e49bae79f15173ce97354'] = 'Сохранить';
|
||||
$_LANG['authentication_c75f7811d70d17dbcd88e9d03752cbed'] = 'Авторизация';
|
||||
$_LANG['authentication_5bef23eb7efff2736c5583bda59e5eb7'] = 'Зарегистрироваться';
|
||||
$_LANG['authentication_2fdfd506efea08144c0794c32ca8250a'] = 'Зарегистрироваться';
|
||||
$_LANG['authentication_cb430603758e73c64b8e1fef814b0be0'] = 'Обнаружена ошибка';
|
||||
$_LANG['authentication_59ba30f362294e33f80618c601fd2801'] = 'Обнаружено %s ошибок';
|
||||
$_LANG['authentication_07b66aebbc092434ec2f0558f229ad53'] = 'Для регистрации укажите пожалуйста свой адрес электронной почты (E-mail)';
|
||||
$_LANG['authentication_b357b524e740bc85b9790a0712d84a30'] = 'E-mail адрес';
|
||||
$_LANG['authentication_db879b00e657fc85f7873343f11df21c'] = 'Уже зарегистрированы в нашем магазине?';
|
||||
$_LANG['authentication_dc647eb65e6711e155375218212b3964'] = 'Пароль';
|
||||
$_LANG['authentication_57478054ae00730105f1bfe535b2225e'] = 'Восстановить пароль';
|
||||
$_LANG['authentication_01a569ddc6cf67ddec2a683f0a5f5956'] = 'Забыли пароль?';
|
||||
$_LANG['authentication_d87f73e8ff8d933ed2ba5ddf25040827'] = 'Быстрое оформление заказа';
|
||||
$_LANG['authentication_b78a3223503896721cca1303f776159b'] = 'Пол';
|
||||
$_LANG['authentication_20db0bfeecd8fe60533206a2b5e9891a'] = 'Имя';
|
||||
$_LANG['authentication_8d3f5eff9c40ee315d452392bed5309b'] = 'Фамилия';
|
||||
$_LANG['authentication_10803b83a68db8f7e7a33e3b41e184d0'] = 'Дата рождения';
|
||||
$_LANG['authentication_86f5978d9b80124f509bdb71786e929e'] = 'Январь';
|
||||
$_LANG['authentication_659e59f062c75f81259d22786d6c44aa'] = 'Февраль';
|
||||
$_LANG['authentication_fa3e5edac607a88d8fd7ecb9d6d67424'] = 'Март';
|
||||
$_LANG['authentication_3fcf026bbfffb63fb24b8de9d0446949'] = 'Апрель';
|
||||
$_LANG['authentication_195fbb57ffe7449796d23466085ce6d8'] = 'Май';
|
||||
$_LANG['authentication_688937ccaf2a2b0c45a1c9bbba09698d'] = 'Июнь';
|
||||
$_LANG['authentication_1b539f6f34e8503c97f6d3421346b63c'] = 'Июль';
|
||||
$_LANG['authentication_41ba70891fb6f39327d8ccb9b1dafb84'] = 'Август';
|
||||
$_LANG['authentication_cc5d90569e1c8313c2b1c2aab1401174'] = 'Сентябрь';
|
||||
$_LANG['authentication_eca60ae8611369fe28a02e2ab8c5d12e'] = 'Октябрь';
|
||||
$_LANG['authentication_7e823b37564da492ca1629b4732289a8'] = 'Ноябрь';
|
||||
$_LANG['authentication_82331503174acbae012b2004f6431fa5'] = 'Декабрь';
|
||||
$_LANG['authentication_93edfc7af9b6471b30030cf17646e36c'] = 'Подписаться на рассылку';
|
||||
$_LANG['authentication_baca087296e01b5d69799dd53bcd7950'] = 'Получать специальные предложения от наших партнеров';
|
||||
$_LANG['authentication_af0f5bdc5be121b9307687aeeae38c17'] = 'Адрес доставки';
|
||||
$_LANG['authentication_1c76cbfe21c6f44c1d1e59d54f3e4420'] = 'Организация';
|
||||
$_LANG['authentication_7cb32e708d6b961d476baced73d362bb'] = 'Номер плательщика НДС';
|
||||
$_LANG['authentication_dd7bf230fde8d4836917806aff6a6b27'] = 'Адрес';
|
||||
$_LANG['authentication_d30f507473129e70c4b962ceccf175cf'] = 'Почтовый индекс';
|
||||
$_LANG['authentication_57d056ed0984166336b7879c2af3657f'] = 'Город';
|
||||
$_LANG['authentication_59716c97497eb9694541f7c3d37b1a4d'] = 'Страна';
|
||||
$_LANG['authentication_46a2a41cc6e552044816a2d04634545d'] = 'Регион';
|
||||
$_LANG['authentication_bcc254b55c4a1babdf1dcb82c207506b'] = 'Номер телефона';
|
||||
$_LANG['authentication_ae7bdef7fe2bbbbf02c11e92c5fceb40'] = 'Мой адрес';
|
||||
$_LANG['authentication_c773457e85b990c10f8823eacb21346c'] = 'Налоговый номер';
|
||||
$_LANG['authentication_b60bb13a87fe3ae5463aeb0980a5a8a1'] = 'Идентификационный номер';
|
||||
$_LANG['authentication_ea318a4ad37f0c2d2c368e6c958ed551'] = 'Идентификационный номер';
|
||||
$_LANG['authentication_19f823c6453c2b1ffd09cb715214813d'] = 'Обязательные поля';
|
||||
$_LANG['authentication_a0bfb8e59e6c13fc8d990781f77694fe'] = 'Продолжить';
|
||||
$_LANG['authentication_6335a00a08fde0fbb8f6d6630cdadd92'] = 'Ваша персональная информация';
|
||||
$_LANG['authentication_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'E-mail';
|
||||
$_LANG['authentication_f430bd2f85c4424dabd003de2ddf370c'] = '(минимум 5 символов)';
|
||||
$_LANG['authentication_1011bae349c34405e0c47931fc7ef8ad'] = 'Информация о вашей компании';
|
||||
$_LANG['authentication_4f68183551e5dbd7c341347ffe308682'] = 'Глобальный Идентификационный Номер Предприятия';
|
||||
$_LANG['authentication_85fb93a8ee9440499692da24a1621769'] = 'APE';
|
||||
$_LANG['authentication_15bbb9d0bbf25e8d2978de1168c749dc'] = 'Адрес сайта';
|
||||
$_LANG['authentication_455175f3f5be6306247babb349c0515a'] = 'Ваш адрес';
|
||||
$_LANG['authentication_d83893e5c6dab1264313e6a0bc77814b'] = 'Адрес';
|
||||
$_LANG['authentication_846a54955f32846032981f8fe48c35ff'] = 'Адрес (продолжение)';
|
||||
$_LANG['authentication_261ed9f602d575774ae05f2d9f3003da'] = 'Номер дома, корпуса, квартиры';
|
||||
$_LANG['authentication_0f68b904e33d9ac04605aecc958bcf52'] = 'Дополнительная информация';
|
||||
$_LANG['authentication_eeabead01c6c6f25f22bf0b041df58a9'] = 'Вам необходимо указать хотя бы один телефонный номер';
|
||||
$_LANG['authentication_fe66abce284ec8589e7d791185b5c442'] = 'Домашний телефон';
|
||||
$_LANG['authentication_41c2fff4867cc204120f001e7af20f7a'] = 'Мобильный телефон';
|
||||
$_LANG['authentication_d973a0b6f38ebe7c83094d3dc4e04ae5'] = 'Название указанного адреса, например \"Дом\" или \"Работа\"';
|
||||
$_LANG['authentication_0ba7583639a274c434bbe6ef797115a4'] = 'Зарегистрироваться';
|
||||
$_LANG['best-sales_3cb29f0ccc5fd220a97df89dafe46290'] = 'Лидеры продаж';
|
||||
$_LANG['best-sales_73d3cc7826075c127caaadb0e20162ab'] = 'Нет лидеров продаж.';
|
||||
$_LANG['best-sales_d3da97e2d9aee5c8fbe03156ad051c99'] = 'Еще';
|
||||
$_LANG['breadcrumb_56cf8b33ab527ab81b4f6b3ceac090dd'] = 'Вернуться на главную';
|
||||
$_LANG['breadcrumb_8cf04a9734132302f96da8e113e80ce5'] = 'Главная';
|
||||
$_LANG['category-count_5f2df0ffebf79a6357f7fa93e472872b'] = 'Нет товаров в этой категории.';
|
||||
$_LANG['category-count_057502b41589e4fcff2f77eb0b122669'] = '%d товар.';
|
||||
$_LANG['category-count_a9d48596a6537347711527bab8fcd152'] = '%d товаров.';
|
||||
$_LANG['category_d3da97e2d9aee5c8fbe03156ad051c99'] = 'Больше';
|
||||
$_LANG['category_f73cc399b5ce12735a57f03414f09ef9'] = 'Подкатегории';
|
||||
$_LANG['category_2f4e54ec9bebe1122b5c23217e764828'] = 'В данный момент эта категория недоступна.';
|
||||
$_LANG['category-tree-branch_e191aafd204a3bd9d62862f7ccf13f39'] = 'Просмотреть товары';
|
||||
$_LANG['cms_24a26cffdfea04302a5bc20b9bce6626'] = 'Эта страница не видна покупателям.';
|
||||
$_LANG['cms_110a4b01beabd53b661a47d4b44bd7a8'] = 'Опубликовать';
|
||||
$_LANG['cms_0557fa923dcee4d0f86b1409f5c2167f'] = 'Назад';
|
||||
$_LANG['cms_d3c42ceb9bee8c44815b53f36e496925'] = 'Список подкатегорий в %s:';
|
||||
$_LANG['cms_e02aaa9a02ed0955984af6508675d242'] = 'Список страниц в %s:';
|
||||
$_LANG['cms_eecc2cef7e0fa128ecb0557b66486539'] = 'Страница не существует.';
|
||||
$_LANG['contact-form_bbaff12800505b22a853e8b7f4eb6a22'] = 'Обратная связь';
|
||||
$_LANG['contact-form_2273d1167a6212812d95dc8fadbae78e'] = 'Служба поддержки клиентов';
|
||||
$_LANG['contact-form_d754a9e8cb640da12849a040f3ca8176'] = 'Ваш ответ';
|
||||
$_LANG['contact-form_02d4482d332e1aef3437cd61c9bcc624'] = 'Обратная связь';
|
||||
$_LANG['contact-form_4ec1c39345fe8820d68463eea8803b0f'] = 'Ваше сообщение успешно отправлено в поддержку.';
|
||||
$_LANG['contact-form_8cf04a9734132302f96da8e113e80ce5'] = 'На главную';
|
||||
$_LANG['contact-form_7c9d4636fc5ed97bb78bc2aac486beab'] = 'Ваше сообщение уже было отправлено.';
|
||||
$_LANG['contact-form_0880266daff3ed4c441adb888658c47c'] = 'Для вопросов о наших товарах или оформлении заказа';
|
||||
$_LANG['contact-form_b3e4d8d61f99bac80e6aa1774d73445b'] = 'Отправить сообщение';
|
||||
$_LANG['contact-form_6c27c08f40e1b0d9901deb9ff5f722f7'] = 'Тема';
|
||||
$_LANG['contact-form_7bc873cba11f035df692c3549366c722'] = '-- Выберите --';
|
||||
$_LANG['contact-form_b357b524e740bc85b9790a0712d84a30'] = 'E-mail адрес';
|
||||
$_LANG['contact-form_5d4710f9a8250b13164a82c94d5b00d1'] = 'Номер (ссылка) заказа:';
|
||||
$_LANG['contact-form_deb10517653c255364175796ace3553f'] = 'Товар';
|
||||
$_LANG['contact-form_13d6078da2e6592822ede083931d6826'] = 'Прикрепить файл';
|
||||
$_LANG['contact-form_4c2a8fe7eaf24721cc7a9f0175115bd4'] = 'Сообщение';
|
||||
$_LANG['contact-form_94966d90747b97d1f0f206c98a8b1ac3'] = 'Отправить';
|
||||
$_LANG['contact-form_d79cf3f429596f77db95c65074663a54'] = 'ID заказа';
|
||||
$_LANG['contact-form_cfe1b4b75fb8dc152b124f9305835a11'] = 'Ваше сообщение';
|
||||
$_LANG['discount_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'Личный кабинет';
|
||||
$_LANG['discount_95d2137c196c7f84df5753ed78f18332'] = 'Мои купоны';
|
||||
$_LANG['discount_ca0dbad92a874b2f69b549293387925e'] = 'Код купона';
|
||||
$_LANG['discount_b5a7adde1af5c87d7fd797b6245c2a39'] = 'Описание';
|
||||
$_LANG['discount_694e8d1f2ee056f98ee488bdc4982d73'] = 'Количество';
|
||||
$_LANG['discount_689202409e48743b914713f96d93947c'] = 'Значение';
|
||||
$_LANG['discount_a1d0ec6d56f8833a078b5a7ac4caf2d4'] = 'Минимум';
|
||||
$_LANG['discount_eb2527806a7e1ef48009eaaa785368fe'] = 'Суммарно (итого)';
|
||||
$_LANG['discount_8c1279db4db86553e4b9682f78cf500e'] = 'Действителен до';
|
||||
$_LANG['discount_f4a0d7cb0cd45214c8ca5912c970de13'] = 'включая НДС';
|
||||
$_LANG['discount_befcac0f9644a7abee43e69f49252ac4'] = 'Без налога';
|
||||
$_LANG['discount_29aa46cc3d2677c7e0f216910df600ff'] = 'Бесплатная доставка';
|
||||
$_LANG['discount_6adf97f83acf6453d4a6a4b1070f3754'] = 'Нет';
|
||||
$_LANG['discount_93cba07454f06a4a960172bbd6e2a435'] = 'Да';
|
||||
$_LANG['discount_bafd7322c6e97d25b6299b5d6fe8920b'] = 'Нет';
|
||||
$_LANG['discount_d3f5baf7537ec2a40ade00599a8da8c6'] = 'У вас нет купонов на скидку.';
|
||||
$_LANG['discount_a958dbb46713e59856c35f89e5092a5e'] = 'Вернуться в Личный кабинет';
|
||||
$_LANG['discount_8cf04a9734132302f96da8e113e80ce5'] = 'На главную';
|
||||
$_LANG['errors_9ead913c5b7c87efda39ca9640c46ae4'] = 'Обнаружено %d ошибок';
|
||||
$_LANG['errors_5fbddd8d4e0d8c7a868272f2f171df09'] = 'Обнаружена %d ошибка';
|
||||
$_LANG['errors_0557fa923dcee4d0f86b1409f5c2167f'] = 'Назад';
|
||||
$_LANG['footer_a5ea2dfa0714015b950c49835945ec19'] = 'Перейти к мобильной версии сайта';
|
||||
$_LANG['footer_08f800aff1c944464c18d790827e3876'] = 'Перейти к полной версии сайта';
|
||||
$_LANG['footer_e4045598261988d9988c594243a9434d'] = 'Условия обслуживания';
|
||||
$_LANG['guest-tracking_3aedb5d3a3e36f7bb6baf1fbb9497894'] = 'Гостевое отслеживание заказа';
|
||||
$_LANG['guest-tracking_43b2f3ca9c34b5934ff858549406f556'] = 'Для получения преимуществ...';
|
||||
$_LANG['guest-tracking_301e91952e2edcfa7b67ea7d984c8f22'] = 'Ваша учетная запись гостя была успешно преобразована в клиентскую. Теперь вы можете войти на этой';
|
||||
$_LANG['guest-tracking_a16574242b3bbe2fc5ec9dc26fe4deb2'] = 'странице';
|
||||
$_LANG['guest-tracking_109636f722b8fccc95d072b2760a6282'] = 'Изменить свою гостевую учетную запись на клиентскую';
|
||||
$_LANG['guest-tracking_7a8fe8aaa64e691d82f429d39e0df3a5'] = 'Личные настройки и безопасность';
|
||||
$_LANG['guest-tracking_93aef17b1541efc1c3f8bd6679972096'] = 'Быстрое оформление заказов';
|
||||
$_LANG['guest-tracking_1f1015bbef5f42d858e8486397ad8f3e'] = 'Удобное отслеживание заказов';
|
||||
$_LANG['guest-tracking_3b6bf3c0c07b89dc86f415117a1f0b80'] = 'Укажите пароль:';
|
||||
$_LANG['guest-tracking_94966d90747b97d1f0f206c98a8b1ac3'] = 'Отправить';
|
||||
$_LANG['guest-tracking_a82be0f551b8708bc08eb33cd9ded0cf'] = 'Информация';
|
||||
$_LANG['guest-tracking_0257141296804a3d11cb843ea121037c'] = 'Нажмите для входа в аккаунт пользователя';
|
||||
$_LANG['guest-tracking_d2948a89e47a4ad7eb8412c1c260ea88'] = 'Для отслеживания заказа пожалуйста укажите следующую информацию:';
|
||||
$_LANG['guest-tracking_63c193f613dd3d9d6c16da7678efda2a'] = 'Номер заказа:';
|
||||
$_LANG['guest-tracking_92dbb751eb9457441af82a53f3cfae54'] = 'Например: QIIXJXNUI или QIIXJXNUI#1';
|
||||
$_LANG['guest-tracking_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'E-mail:';
|
||||
$_LANG['header_0fcd4065ff78fceb3083316ddb958bc1'] = 'К сожалению, вы не можете совершать покупки из вашей страны.';
|
||||
$_LANG['header_a85eba4c6c699122b2bb1387ea4813ad'] = 'Корзина';
|
||||
$_LANG['header_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'Моя учетная запись';
|
||||
$_LANG['header_c75f7811d70d17dbcd88e9d03752cbed'] = 'Авторизация';
|
||||
$_LANG['history_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'Моя учетная запись';
|
||||
$_LANG['history_782c8b38bce4f2f6975ca7f33ac8189b'] = 'История заказов';
|
||||
$_LANG['history_06b05d09714a236f1e285a6b5c83a209'] = 'Список заказов, оформленных вами с момента регистрации в нашем магазине';
|
||||
$_LANG['history_116cb47fe026f7a3679486e086426a64'] = 'Если вы оформили заказ только что, может потребоваться несколько минут для его обработки. Обновите, пожалуйста, страницу, если заказа не хватает.';
|
||||
$_LANG['history_5d4710f9a8250b13164a82c94d5b00d1'] = 'Номер заказа:';
|
||||
$_LANG['history_44749712dbec183e983dcd78a7736c41'] = 'Дата';
|
||||
$_LANG['history_0eede552438475bdfe820c13f24c9399'] = 'Общая сумма';
|
||||
$_LANG['history_bd0e34e5be6447844e6f262d51f1a9dc'] = 'Оплата';
|
||||
$_LANG['history_ec53a8c4f07baed5d8825072c89799be'] = 'Состояние';
|
||||
$_LANG['history_466eadd40b3c10580e3ab4e8061161ce'] = 'Счет';
|
||||
$_LANG['history_1b6324ace95b17a01323052fda855989'] = 'Товары для скачивания';
|
||||
$_LANG['history_bcd1b68617759b1dfcff0403a6b5a8d1'] = 'PDF';
|
||||
$_LANG['history_27792947ed5d5da7c0d1f43327ed9dab'] = 'подробнее';
|
||||
$_LANG['history_332c80b1838dc515f5031e09da3b7f3f'] = 'Заказать повторно';
|
||||
$_LANG['history_5acc2ceeb883ba07cef2d02ea382f242'] = 'Вы еще не размещали заказов.';
|
||||
$_LANG['history_0b3db27bc15f682e92ff250ebb167d4b'] = 'Вернуться в вашу учетную запись';
|
||||
$_LANG['history_8cf04a9734132302f96da8e113e80ce5'] = 'На главную';
|
||||
$_LANG['history_01abfc750a0c942167651c40d088531d'] = '№';
|
||||
$_LANG['identity_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'Учетная запись';
|
||||
$_LANG['identity_6335a00a08fde0fbb8f6d6630cdadd92'] = 'Ваша личная информация';
|
||||
$_LANG['identity_94d33283c51fdd4a296157461259aee0'] = 'Ваша личная информация успешно обновлена.';
|
||||
$_LANG['identity_29224ba63cde6e9f1e16691138bdf954'] = 'Ваш пароль был отправлен на email:';
|
||||
$_LANG['identity_21102621bd5856b350ae86db3aeed9fc'] = 'Пожалуйста, не забывайте обновлять личную информацию в случае любых изменений.';
|
||||
$_LANG['identity_19f823c6453c2b1ffd09cb715214813d'] = 'Обязательное для заполнения поле';
|
||||
$_LANG['identity_b78a3223503896721cca1303f776159b'] = 'Пол';
|
||||
$_LANG['identity_20db0bfeecd8fe60533206a2b5e9891a'] = 'Имя';
|
||||
$_LANG['identity_8d3f5eff9c40ee315d452392bed5309b'] = 'Фамилия';
|
||||
$_LANG['identity_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'E-mail';
|
||||
$_LANG['identity_4bc28f132d571b160ba407e143915de2'] = 'Текущий пароль';
|
||||
$_LANG['identity_ae3bb2a1ac61750150b606298091d38a'] = 'Новый пароль';
|
||||
$_LANG['identity_f4d1ea475eaa85102e2b4e6d95da84bd'] = 'Подтвердите пароль';
|
||||
$_LANG['identity_10803b83a68db8f7e7a33e3b41e184d0'] = 'Дата рождения';
|
||||
$_LANG['identity_86f5978d9b80124f509bdb71786e929e'] = 'Январь';
|
||||
$_LANG['identity_659e59f062c75f81259d22786d6c44aa'] = 'Февраль';
|
||||
$_LANG['identity_fa3e5edac607a88d8fd7ecb9d6d67424'] = 'Март';
|
||||
$_LANG['identity_3fcf026bbfffb63fb24b8de9d0446949'] = 'Апрель';
|
||||
$_LANG['identity_195fbb57ffe7449796d23466085ce6d8'] = 'Май';
|
||||
$_LANG['identity_688937ccaf2a2b0c45a1c9bbba09698d'] = 'Июнь';
|
||||
$_LANG['identity_1b539f6f34e8503c97f6d3421346b63c'] = 'Июль';
|
||||
$_LANG['identity_41ba70891fb6f39327d8ccb9b1dafb84'] = 'Август';
|
||||
$_LANG['identity_cc5d90569e1c8313c2b1c2aab1401174'] = 'Сентябрь';
|
||||
$_LANG['identity_eca60ae8611369fe28a02e2ab8c5d12e'] = 'Октябрь';
|
||||
$_LANG['identity_7e823b37564da492ca1629b4732289a8'] = 'Ноябрь';
|
||||
$_LANG['identity_82331503174acbae012b2004f6431fa5'] = 'Декабрь';
|
||||
$_LANG['identity_93edfc7af9b6471b30030cf17646e36c'] = 'Подписаться на рассылку';
|
||||
$_LANG['identity_baca087296e01b5d69799dd53bcd7950'] = 'Получать уведомления о специальных предложениях';
|
||||
$_LANG['identity_c9cc8cce247e49bae79f15173ce97354'] = 'Сохранить';
|
||||
$_LANG['identity_ea460dd8c3ac592e8224d8fe3ef774c7'] = '[Укажите дополнительную информацию о конфиденциальности данных, если требуется]';
|
||||
$_LANG['identity_a958dbb46713e59856c35f89e5092a5e'] = 'Вернуться в вашу учетную запись';
|
||||
$_LANG['identity_8cf04a9734132302f96da8e113e80ce5'] = 'На главную';
|
||||
$_LANG['maintenance_fef882af64a6b9c88dbc5e6cce2607bc'] = 'В связи с техническими работами, наш магазин временно не работает.';
|
||||
$_LANG['maintenance_a022ff58716d4cf34050cb68e7f12fcf'] = 'Приносим извинения за неудобства, попробуйте пожалуйста позже.';
|
||||
$_LANG['manufacturer-list_0e1e874dde345d19583102a9fd63fb7e'] = 'Производители:';
|
||||
$_LANG['manufacturer-list_ce7bdbaa2a5998973271d85172456ee6'] = 'Нет производителей.';
|
||||
$_LANG['manufacturer-list_8a535d7f40eb9e738248d555675b572e'] = 'Всего %d производитель.';
|
||||
$_LANG['manufacturer-list_40a1d0763fd669e33d8663d15eb91cfb'] = 'Всего %d производителя(ей).';
|
||||
$_LANG['manufacturer-list_0397cbccfd02272abd38f8933b865218'] = '%d товар';
|
||||
$_LANG['manufacturer-list_864c665aea5e824772fda0e678c3ac4d'] = '%d товара(ов)';
|
||||
$_LANG['manufacturer-list_3426bf3cca12b1f6550fd8bd36171e2f'] = 'просмотреть товары';
|
||||
$_LANG['manufacturer_4c8d12a46c2deb4898979acfd4e23f6a'] = 'Список товаров по производителю';
|
||||
$_LANG['manufacturer_d3da97e2d9aee5c8fbe03156ad051c99'] = 'Больше';
|
||||
$_LANG['manufacturer_a65ed5e8df4b1c2bb34844f81cc9b451'] = 'Нет товаров этого производителя.';
|
||||
$_LANG['manufacturer_0e1e874dde345d19583102a9fd63fb7e'] = 'Производители:';
|
||||
$_LANG['my-account_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'Моя учетная запись';
|
||||
$_LANG['my-account_4b0afa9e8d3cdefd4fb21faebe22ef5f'] = 'Ваша учетная запись создана.';
|
||||
$_LANG['my-account_67afe6ed34ec3a7b3d5d5d91143cdfde'] = 'Добро пожаловать в вашу учетную запись. Здесь вы можете управлять вашими заказами и редактировать адреса.';
|
||||
$_LANG['my-account_f4c5b2b545efb89fefa11fd6c9da1cb3'] = 'Добавить мой адрес';
|
||||
$_LANG['my-account_7442e29d7d53e549b78d93c46b8cdcfc'] = 'Заказы';
|
||||
$_LANG['my-account_f232e81d15c0f2b9a4b1853465aaf18a'] = 'История и подробности моих заказов';
|
||||
$_LANG['my-account_e06d7593c1cd6dabef450be6c3da7091'] = 'Возврат товаров';
|
||||
$_LANG['my-account_89080f0eedbd5491a93157930f1e45fc'] = 'Мои возвраты';
|
||||
$_LANG['my-account_d1a365ea7809ae5831c6d9f86886630c'] = 'Кредиты';
|
||||
$_LANG['my-account_9132bc7bac91dd4e1c453d4e96edf219'] = 'Мои кредиты';
|
||||
$_LANG['my-account_284b47b0bb63ae2df3b29f0e691d6fcf'] = 'Сохраненные адреса';
|
||||
$_LANG['my-account_e45be0a0d4a0b62b15694c1a631e6e62'] = 'Мои сохраненные адреса';
|
||||
$_LANG['my-account_a82be0f551b8708bc08eb33cd9ded0cf'] = 'Информация';
|
||||
$_LANG['my-account_4c8a50af0ebcf49be0cf4e0f67f37595'] = 'Моя личная информация';
|
||||
$_LANG['my-account_a82868319826fb092b73968e661b5b38'] = 'Купоны';
|
||||
$_LANG['my-account_95d2137c196c7f84df5753ed78f18332'] = 'Мои купоны';
|
||||
$_LANG['my-account_8cf04a9734132302f96da8e113e80ce5'] = 'На главную';
|
||||
$_LANG['my-account_c87aacf5673fada1108c9f809d354311'] = 'Выйти';
|
||||
$_LANG['nbr-product-page_498f79c4c5bbde77f1bceb6c86fd0f6d'] = 'Показать:';
|
||||
$_LANG['nbr-product-page_21a1f0b4726f9f6cbced2bc8747ec44f'] = 'товаров на странице';
|
||||
$_LANG['new-products_9ff0635f5737513b1a6f559ac2bff745'] = 'Новинки';
|
||||
$_LANG['new-products_d58424783355b6da2dedc302f2bf4065'] = 'В данный момент нет новинок.';
|
||||
$_LANG['order-address-multishipping-products_d28f8bbb0740354aae5456da9cc56d0e'] = 'Выберите адрес доставки:';
|
||||
$_LANG['order-address-multishipping-products_a4d3b161ce1309df1c4e25df28694b7b'] = 'Отправить';
|
||||
$_LANG['order-address-multishipping-products_bb6275503ffe7e64cf768216ee0de066'] = 'Доступное количество для некоторых товаров изменилось, пожалуйста проверьте их.';
|
||||
$_LANG['order-address-multishipping-products_713abca3b7abddc0445099b23c0a3697'] = 'Отправить на несколько адресов';
|
||||
$_LANG['order-address-multishipping-products_deb10517653c255364175796ace3553f'] = 'Товар';
|
||||
$_LANG['order-address-multishipping-products_b5a7adde1af5c87d7fd797b6245c2a39'] = 'Описание';
|
||||
$_LANG['order-address-multishipping-products_12d3c7a4296542c62474856ec452c045'] = 'Арт.';
|
||||
$_LANG['order-address-multishipping-products_03ab340b3f99e03cff9e84314ead38c0'] = 'Кол-во';
|
||||
$_LANG['order-address-multishipping-products_0c458988127eb2150776881e2ef3f0c4'] = 'Адрес доставки';
|
||||
$_LANG['order-address-multishipping_deb10517653c255364175796ace3553f'] = 'товар';
|
||||
$_LANG['order-address-multishipping_068f80c7519d0528fb08e82137a72131'] = 'товаров';
|
||||
$_LANG['order-address-multishipping_db671b8ceed664eaecb59a4e6075ec9f'] = 'Пожалуйста, начните с выбора адреса';
|
||||
$_LANG['order-address-multishipping_da9d6ec2998a07c31ec9eb93c9f254ed'] = 'Ваш платежный адрес';
|
||||
$_LANG['order-address-multishipping_8a8c9edb5531fa2f822295d1830d090f'] = 'Ваш адрес доставки';
|
||||
$_LANG['order-address-multishipping_06933067aafd48425d67bcb01bba5cb6'] = 'Обновить';
|
||||
$_LANG['order-address-multishipping_284b47b0bb63ae2df3b29f0e691d6fcf'] = 'Адреса';
|
||||
$_LANG['order-address-multishipping_82a7d396bbd6f6fef648578b4ae2ea81'] = 'Выбрать платежный адрес:';
|
||||
$_LANG['order-address-multishipping_ec211f7c20af43e742bf2570c3cb84f9'] = 'Добавить';
|
||||
$_LANG['order-address-multishipping_b15e1100a6196acba01ef7aaa5b2a9e5'] = 'Добавить новый адрес';
|
||||
$_LANG['order-address-multishipping_d93651d012e77dac5581b08db33195b2'] = 'Если вы хотите добавить комментарий к заказу, пожалуйста, напишите его ниже.';
|
||||
$_LANG['order-address-multishipping_dd1f775e443ff3b9a89270713580a51b'] = 'Предыдущий';
|
||||
$_LANG['order-address-multishipping_10ac3d04253ef7e1ddc73e6091c0cd55'] = 'Следующий';
|
||||
$_LANG['order-address-product-line_ec211f7c20af43e742bf2570c3cb84f9'] = 'Добавить';
|
||||
$_LANG['order-address-product-line_1d9baf077ee87921f57a8fe42d510b65'] = 'Удалить';
|
||||
$_LANG['order-address-product-line_e716b72edf18038c04664e9b21569177'] = 'Вы должны заказать минимум %d единиц этого товара.';
|
||||
$_LANG['order-address-product-line_07177f134a19f8965265d014b5b81645'] = 'Создать новый адрес';
|
||||
$_LANG['order-address-product-line_713abca3b7abddc0445099b23c0a3697'] = 'Отправить на несколько адресов';
|
||||
$_LANG['order-address_f5bf48aa40cad7891eb709fcf1fde128'] = 'товар';
|
||||
$_LANG['order-address_86024cad1e83101d97359d7351051156'] = 'товаров';
|
||||
$_LANG['order-address_da9d6ec2998a07c31ec9eb93c9f254ed'] = 'Адрес оплаты';
|
||||
$_LANG['order-address_8a8c9edb5531fa2f822295d1830d090f'] = 'Ваш адрес доставки';
|
||||
$_LANG['order-address_06933067aafd48425d67bcb01bba5cb6'] = 'Изменить';
|
||||
$_LANG['order-address_284b47b0bb63ae2df3b29f0e691d6fcf'] = 'Адреса';
|
||||
$_LANG['order-address_e744ae5ff1db45c76911ee834b7fafcd'] = 'Доставка на несколько адресов';
|
||||
$_LANG['order-address_6e1a71b786b5180af99406f87bbdbe0d'] = 'Задать разный адрес доставки для каждого товара в заказе.';
|
||||
$_LANG['order-address_1a2ba42c10f64d9f42a857a22da4ec5d'] = 'Я хочу задать разный адрес доставки для каждого товара в заказе.';
|
||||
$_LANG['order-address_1ab8cb7be68e5988a1e9b5b8d8024711'] = 'Выбрать адрес доставки';
|
||||
$_LANG['order-address_7f6584ea7fc7f8b41b53f554f6c0183d'] = 'Задать разный адрес доставки для каждого товара.';
|
||||
$_LANG['order-address_82a7d396bbd6f6fef648578b4ae2ea81'] = 'Выберите адрес оплаты';
|
||||
$_LANG['order-address_d0748d2df4aed77bd7591b3ac6c52c83'] = 'Выберите адрес доставки';
|
||||
$_LANG['order-address_390b4c95516a4b7faf97389ca46fc0c7'] = 'Использовать этот же адрес для оплаты заказа';
|
||||
$_LANG['order-address_ec211f7c20af43e742bf2570c3cb84f9'] = 'Добавить';
|
||||
$_LANG['order-address_b15e1100a6196acba01ef7aaa5b2a9e5'] = 'Добавить новый адрес';
|
||||
$_LANG['order-address_d93651d012e77dac5581b08db33195b2'] = 'Если вы хотели бы добавить комментарий к вашему заказу, пожалуйста, напишите его тут:';
|
||||
$_LANG['order-address_dd1f775e443ff3b9a89270713580a51b'] = 'Назад';
|
||||
$_LANG['order-address_10ac3d04253ef7e1ddc73e6091c0cd55'] = 'Вперед';
|
||||
$_LANG['order-address_879f6b8877752685a966564d072f498f'] = 'Ваша корзина пуста.';
|
||||
$_LANG['order-address_5af5f631f774a71445e3028253874394'] = 'Ваш заказ не принят.';
|
||||
$_LANG['order-carrier_deb10517653c255364175796ace3553f'] = 'товар';
|
||||
$_LANG['order-carrier_068f80c7519d0528fb08e82137a72131'] = 'товаров';
|
||||
$_LANG['order-carrier_5508a53851720a210e50f7b8a6f66f46'] = 'Вы должны принять наши условия обслуживания перед тем как продолжить оформление.';
|
||||
$_LANG['order-carrier_b24ce0cd392a5b0b8dedc66c25213594'] = 'Бесплатно!';
|
||||
$_LANG['order-carrier_66f51e43606e2baebb8e9c3bfe965da4'] = 'Доставка';
|
||||
$_LANG['order-carrier_6f05787682585c32498e88bcd2ea88fc'] = 'Способы доставки';
|
||||
$_LANG['order-carrier_e085dcd05d73bdd5afe338e5b6e42a18'] = 'Выберите способ доставки';
|
||||
$_LANG['order-carrier_3818429ccff49b9d6ab2b4a9a137a00a'] = 'Для данного заказа доставка не требуется';
|
||||
$_LANG['order-carrier_9193b58520051d8b59ca64a5cc5353ff'] = 'Я согласен на получение заказа в переработанной упаковке';
|
||||
$_LANG['order-carrier_cc9b9807af9192bed55cb1e92ba28844'] = 'Выберите способ доставки для адреса:';
|
||||
$_LANG['order-carrier_8fb37535c12fbe2899ab442ec474c157'] = 'Выберите способ доставки';
|
||||
$_LANG['order-carrier_b6dddfff5178ce64364ca3f683930354'] = 'Лучшая цена и скорость доставки';
|
||||
$_LANG['order-carrier_c2a32e7734b79d54eaaddb651707b403'] = 'Самый быстрый';
|
||||
$_LANG['order-carrier_b1992d8f7c58180c1ebd461b7d502423'] = 'Лучшая цена';
|
||||
$_LANG['order-carrier_1f87346a16cf80c372065de3c54c86d9'] = '(с НДС)';
|
||||
$_LANG['order-carrier_21034ae6d01a83e702839a72ba8a77b0'] = '(без НДС)';
|
||||
$_LANG['order-carrier_e06b4fd44aa19916cbbb34d7ca26efa1'] = 'касается товара:';
|
||||
$_LANG['order-carrier_9960807cfb66a03002a9b7777c4a96c5'] = 'касается товаров:';
|
||||
$_LANG['order-carrier_2d51d96d770cc2244be31a85e608de19'] = 'Нет доступных способов доставки.';
|
||||
$_LANG['order-carrier_a6cc8cbe3fa07d0fca172c36a603332c'] = 'Нет доступных способов доставки по адресу \"%s\".';
|
||||
$_LANG['order-carrier_0d9175fe89fb80d815e7d03698b6e83a'] = 'Подарок';
|
||||
$_LANG['order-carrier_32224bd6487699ea66652d3dc502455d'] = 'Используйте подарочную упаковка';
|
||||
$_LANG['order-carrier_5c2dfd55fea1f5c6adef500fcb6403b4'] = 'Дополнительные расходы';
|
||||
$_LANG['order-carrier_bf46d59ab4c5096d169c1a5eb39cc0c1'] = 'Если требуется, напишите текст записки к подарку:';
|
||||
$_LANG['order-carrier_e4045598261988d9988c594243a9434d'] = 'Условия обслуживания';
|
||||
$_LANG['order-carrier_ad88a6c9e8c880f23639321d78ec859d'] = 'Я ознакомлен(а) и согласен(на) с Условиями обслуживания.';
|
||||
$_LANG['order-carrier_d53afd7ef9af5405df040482add9b153'] = '(Прочитать Условия обслуживания)';
|
||||
$_LANG['order-carrier_dd1f775e443ff3b9a89270713580a51b'] = 'Назад';
|
||||
$_LANG['order-carrier_10ac3d04253ef7e1ddc73e6091c0cd55'] = 'Вперед';
|
||||
$_LANG['order-carrier_bd5b551d1757a856d9f2d01dc7850080'] = 'Оставить сообщение';
|
||||
$_LANG['order-carrier_d93651d012e77dac5581b08db33195b2'] = 'Если вы хотели бы добавить комментарий к вашему заказу, пожалуйста, напишите его тут:';
|
||||
$_LANG['order-carrier_f5bf48aa40cad7891eb709fcf1fde128'] = 'товар';
|
||||
$_LANG['order-carrier_86024cad1e83101d97359d7351051156'] = 'товаров';
|
||||
$_LANG['order-carrier_879f6b8877752685a966564d072f498f'] = 'Ваша корзина пуста.';
|
||||
$_LANG['order-carrier_5af5f631f774a71445e3028253874394'] = 'Ваш заказ не принят.';
|
||||
$_LANG['order-carrier_0a5737e9ac4d4cdbf41e473674c0e557'] = 'Я ознакомлен(а) и согласен(на) с Условиями обслуживания.';
|
||||
$_LANG['order-confirmation_fb077ecba55e5552916bde26d8b9e794'] = 'Подтверждение заказа';
|
||||
$_LANG['order-confirmation_e19e31ddb54b493059808ec4f2dab4cb'] = 'ID вашего заказа:';
|
||||
$_LANG['order-confirmation_9be66ab020fd0ffb9dd22756969b8dc7'] = 'ID вашего заказа было выслано на Ваш e-mail.';
|
||||
$_LANG['order-confirmation_4082ea29b4f196c4f60533500139725a'] = 'Контроль состояния заказа';
|
||||
$_LANG['order-confirmation_9390390581f54c65d6acfc8da4e17362'] = 'Вернуться к заказам';
|
||||
$_LANG['order-detail_332c80b1838dc515f5031e09da3b7f3f'] = 'Повторный заказ';
|
||||
$_LANG['order-detail_6332e7985befad227455d60812bd1449'] = 'Номер (ссылка) заказа размещенного %s';
|
||||
$_LANG['order-detail_914419aa32f04011357d3b604a86d7eb'] = 'Способ доставки';
|
||||
$_LANG['order-detail_f0aaaae189e9c7711931a65ffcd22543'] = 'Способ оплаты:';
|
||||
$_LANG['order-detail_e682495785e844d491378817aa34aa3f'] = 'Скачать счет в .PDF файле';
|
||||
$_LANG['order-detail_755bb0834a77079fd1330b555b69e6bf'] = 'Вы дали разрешение на получение заказа в переработанной упаковке.';
|
||||
$_LANG['order-detail_e14bc5cef02df7369b604ea3885adb96'] = 'Вы добавили подарочную упаковку к своему заказу.';
|
||||
$_LANG['order-detail_4c2a8fe7eaf24721cc7a9f0175115bd4'] = 'Сообщение';
|
||||
$_LANG['order-detail_978c7c1b6214ab576cd8425896b29339'] = 'Следите за вашим заказом';
|
||||
$_LANG['order-detail_44749712dbec183e983dcd78a7736c41'] = 'Дата';
|
||||
$_LANG['order-detail_ec53a8c4f07baed5d8825072c89799be'] = 'Состояние';
|
||||
$_LANG['order-detail_ced55d097872ab13bf177e8d31db396f'] = 'Нажмите ссылку для отслеживания доставки вашего заказа';
|
||||
$_LANG['order-detail_780c462e85ba4399a5d42e88f69a15ca'] = 'Платеж';
|
||||
$_LANG['order-detail_065ab3a28ca4f16f55f103adc7d0226f'] = 'Доставка';
|
||||
$_LANG['order-detail_63d5049791d9d79d86e9a108b0a999ca'] = 'Артикул';
|
||||
$_LANG['order-detail_deb10517653c255364175796ace3553f'] = 'Товар';
|
||||
$_LANG['order-detail_694e8d1f2ee056f98ee488bdc4982d73'] = 'Кол-во';
|
||||
$_LANG['order-detail_fdfac28b5ad628f25649d9c2eb4fc62e'] = 'Возвращено';
|
||||
$_LANG['order-detail_6c957f72dc8cdacc75762f2cbdcdfaf2'] = 'Цена за единицу';
|
||||
$_LANG['order-detail_0eede552438475bdfe820c13f24c9399'] = 'Итого';
|
||||
$_LANG['order-detail_2370a4958c4ebe6d6c8045cd49a6b392'] = 'Итого за товары (без НДС):';
|
||||
$_LANG['order-detail_db205f01b4fd580fb5daa9072d96849d'] = 'Итого за товары';
|
||||
$_LANG['order-detail_1f87346a16cf80c372065de3c54c86d9'] = '(с НДС)';
|
||||
$_LANG['order-detail_2633d6725607d13e80f5e30514b91fbe'] = 'Итого купонов:';
|
||||
$_LANG['order-detail_31f52379817244bb67196c880749cfd8'] = 'Итого за подарочную упаковку:';
|
||||
$_LANG['order-detail_f4e8b53a114e5a17d051ab84d326cae5'] = 'Итого доставка';
|
||||
$_LANG['order-detail_96b0141273eabab320119c467cdcaf17'] = 'Итого:';
|
||||
$_LANG['order-detail_c060ca8505d0aa094635fbf9beac94b0'] = 'скачать этот товар';
|
||||
$_LANG['order-detail_aec9b5b1c2f91ccdef8e25f5f1dac86a'] = 'Скачать товар';
|
||||
$_LANG['order-detail_be686376cddb23d0227444ccc3c4b5b7'] = 'Купон:';
|
||||
$_LANG['order-detail_8c489d0946f66d17d73f26366a4bf620'] = 'Вес';
|
||||
$_LANG['order-detail_552a0d8c17d95d5dbdc0c28217024f5a'] = 'Стоимость доставки';
|
||||
$_LANG['order-detail_5068c162a60b5859f973f701333f45c5'] = 'Номер отслеживания';
|
||||
$_LANG['order-detail_3956298bcfc047e15b0e0d218492ce09'] = 'Возврат товара';
|
||||
$_LANG['order-detail_bef8403608dc4cb3ade799f63dd4bf59'] = 'Если вы хотите вернуть один или несколько товаров, пожалуйста, отметьте соответствующие поля и поясните причину. Затем нажмите на кнопку ниже.';
|
||||
$_LANG['order-detail_25e93b63e91b5555bd458c89b1916678'] = 'Создать возвратную накладную';
|
||||
$_LANG['order-detail_41de6d6cfb8953c021bbe4ba0701c8a1'] = 'Сообщения';
|
||||
$_LANG['order-detail_5da618e8e4b89c66fe86e32cdafde142'] = 'От';
|
||||
$_LANG['order-detail_9ead913c5b7c87efda39ca9640c46ae4'] = 'Имеется %d ошибок';
|
||||
$_LANG['order-detail_5fbddd8d4e0d8c7a868272f2f171df09'] = 'Имеется %d ошибка';
|
||||
$_LANG['order-detail_0c478a7069ab13f446e9e765cffd1550'] = 'Сообщение успешно отправлено';
|
||||
$_LANG['order-detail_58b3d8603dffe8484e90c0ca371921ac'] = 'Добавить сообщение:';
|
||||
$_LANG['order-detail_d93651d012e77dac5581b08db33195b2'] = 'Если хотите, можете добавить комментарий по Вашему заказу ниже.';
|
||||
$_LANG['order-detail_7bc873cba11f035df692c3549366c722'] = '-- Выбрать --';
|
||||
$_LANG['order-detail_94966d90747b97d1f0f206c98a8b1ac3'] = 'Отправить';
|
||||
$_LANG['order-detail_3d056974128aa7405c1941a684b8279d'] = 'Невозможно осуществить возврат товара, используя гостевую учетную запись.';
|
||||
$_LANG['order-detail_a240fa27925a635b08dc28c9e4f9216d'] = 'Заказ';
|
||||
$_LANG['order-detail_01abfc750a0c942167651c40d088531d'] = '№';
|
||||
$_LANG['order-detail_0557fa923dcee4d0f86b1409f5c2167f'] = 'Назад';
|
||||
$_LANG['order-detail_b09eeb5676544c14685b96209dde1b1a'] = 'Заказ #%s - оформлен';
|
||||
$_LANG['order-detail_284b47b0bb63ae2df3b29f0e691d6fcf'] = 'Адреса';
|
||||
$_LANG['order-detail_466eadd40b3c10580e3ab4e8061161ce'] = 'Счет';
|
||||
$_LANG['order-detail_f5d74ea75357b5e139854c14f8e24fe3'] = 'Подробности заказа';
|
||||
$_LANG['order-detail_336d5ebc5436534e61d16e63ddfca327'] = '-';
|
||||
$_LANG['order-follow_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'Моя учетная запись';
|
||||
$_LANG['order-follow_bfc23574a242be4531bcb29877ac1d8a'] = 'Возвратная накладная (ВН)';
|
||||
$_LANG['order-follow_8a6034d3379499b66d730aa17e007683'] = 'У вас не достаточно товаров для запроса еще одного возврата.';
|
||||
$_LANG['order-follow_229ca46a5d762e19a428f59449c916ad'] = 'Просьба предоставить разъяснения по вашей ВН.';
|
||||
$_LANG['order-follow_cbd22dcb89c7ff53e1d58959352b278e'] = 'Просьба указать разъяснения по вашей ВН:';
|
||||
$_LANG['order-follow_25e93b63e91b5555bd458c89b1916678'] = 'Создать возвратную накладную';
|
||||
$_LANG['order-follow_e6f6a5e58ee6d010f22e4b3dbd756213'] = 'Выберите хотя бы один товар для возврата';
|
||||
$_LANG['order-follow_1819b587867a9c604a4d21c753756b4a'] = 'Укажите количество для выбранных товаров';
|
||||
$_LANG['order-follow_9bb4b32641712af2309584a5e97c0f73'] = 'Этот заказ не может быть возвращен';
|
||||
$_LANG['order-follow_9cf9ab35a1b24314913bb739d25a0b36'] = 'Вы отправили заявку на возврат товара';
|
||||
$_LANG['order-follow_988fd738de9c6d177440c5dcf69e73ce'] = 'Возврат';
|
||||
$_LANG['order-follow_a240fa27925a635b08dc28c9e4f9216d'] = 'Заказ';
|
||||
$_LANG['order-follow_d442cb92c3b031eceacbfe87605b9356'] = 'Статус посылки';
|
||||
$_LANG['order-follow_446faa7da2d42ba4ffeda73cb119dd91'] = 'Дата отправки';
|
||||
$_LANG['order-follow_0d3cfc2fe56119651ee7848f3e32d84d'] = 'Квитанция возврата';
|
||||
$_LANG['order-follow_01abfc750a0c942167651c40d088531d'] = '№';
|
||||
$_LANG['order-follow_cc894fffb019b528d12951b74d6d2b6e'] = 'Возврата заказа';
|
||||
$_LANG['order-follow_daf51d7d9e10e6a469434ae548d9a173'] = 'Распечатать';
|
||||
$_LANG['order-follow_15ef0f1f63c1e8a9fb8abad024939262'] = 'У вас нет разрешений для возврата товара';
|
||||
$_LANG['order-follow_a958dbb46713e59856c35f89e5092a5e'] = 'Вернуться в учетную запись';
|
||||
$_LANG['order-follow_8cf04a9734132302f96da8e113e80ce5'] = 'На главную';
|
||||
$_LANG['order-opc-new-account_08bd40c7543007ad06e4fce31618f6ec'] = 'Учетная запись';
|
||||
$_LANG['order-opc-new-account_db879b00e657fc85f7873343f11df21c'] = 'Уже зарегистрированы?';
|
||||
$_LANG['order-opc-new-account_936ccdb97115e9f35a11d35e3d5b5cad'] = 'Нажмите здесь';
|
||||
$_LANG['order-opc-new-account_b357b524e740bc85b9790a0712d84a30'] = 'Адрес электронной почты';
|
||||
$_LANG['order-opc-new-account_dc647eb65e6711e155375218212b3964'] = 'Пароль';
|
||||
$_LANG['order-opc-new-account_01a569ddc6cf67ddec2a683f0a5f5956'] = 'Забыли пароль?';
|
||||
$_LANG['order-opc-new-account_99dea78007133396a7b8ed70578ac6ae'] = 'Войти';
|
||||
$_LANG['order-opc-new-account_c28639657b4e3352241f83d8b6021e4e'] = 'Новый клиент';
|
||||
$_LANG['order-opc-new-account_766d4aaf3e045538be23f9a9e17a1593'] = 'Мгновенный заказ';
|
||||
$_LANG['order-opc-new-account_12819315d9cf421dcaac8122a71ececa'] = 'Оформить заказ как гость';
|
||||
$_LANG['order-opc-new-account_d50965b89f4bf0dfbc5b1f13052421a4'] = 'Создайте свой аккаунт сегодня и наслаждайтесь:';
|
||||
$_LANG['order-opc-new-account_7a8fe8aaa64e691d82f429d39e0df3a5'] = 'Персонализированный и безопасный доступ';
|
||||
$_LANG['order-opc-new-account_ce025dc66f590f8c03ad9556bc376d9e'] = 'Быстрая и простая оплата заказов';
|
||||
$_LANG['order-opc-new-account_4efcd04126e90b74c744bab6c66b6e63'] = 'Разделить адрес оплаты и доставки';
|
||||
$_LANG['order-opc-new-account_2fdfd506efea08144c0794c32ca8250a'] = 'Создать учетную запись';
|
||||
$_LANG['order-opc-new-account_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'E-mail';
|
||||
$_LANG['order-opc-new-account_58357b08947453bff66da9b47b3da168'] = '(5 символов минимум)';
|
||||
$_LANG['order-opc-new-account_b78a3223503896721cca1303f776159b'] = 'Название';
|
||||
$_LANG['order-opc-new-account_20db0bfeecd8fe60533206a2b5e9891a'] = 'Имя';
|
||||
$_LANG['order-opc-new-account_8d3f5eff9c40ee315d452392bed5309b'] = 'Фамилия';
|
||||
$_LANG['order-opc-new-account_10803b83a68db8f7e7a33e3b41e184d0'] = 'Дата рождения';
|
||||
$_LANG['order-opc-new-account_86f5978d9b80124f509bdb71786e929e'] = 'Январь';
|
||||
$_LANG['order-opc-new-account_659e59f062c75f81259d22786d6c44aa'] = 'Февраль';
|
||||
$_LANG['order-opc-new-account_fa3e5edac607a88d8fd7ecb9d6d67424'] = 'Март';
|
||||
$_LANG['order-opc-new-account_3fcf026bbfffb63fb24b8de9d0446949'] = 'Апрель';
|
||||
$_LANG['order-opc-new-account_195fbb57ffe7449796d23466085ce6d8'] = 'Май';
|
||||
$_LANG['order-opc-new-account_688937ccaf2a2b0c45a1c9bbba09698d'] = 'Июнь';
|
||||
$_LANG['order-opc-new-account_1b539f6f34e8503c97f6d3421346b63c'] = 'Июль';
|
||||
$_LANG['order-opc-new-account_41ba70891fb6f39327d8ccb9b1dafb84'] = 'Август';
|
||||
$_LANG['order-opc-new-account_cc5d90569e1c8313c2b1c2aab1401174'] = 'Сентябрь';
|
||||
$_LANG['order-opc-new-account_eca60ae8611369fe28a02e2ab8c5d12e'] = 'Октябрь';
|
||||
$_LANG['order-opc-new-account_7e823b37564da492ca1629b4732289a8'] = 'Ноябрь';
|
||||
$_LANG['order-opc-new-account_82331503174acbae012b2004f6431fa5'] = 'Декабрь';
|
||||
$_LANG['order-opc-new-account_93edfc7af9b6471b30030cf17646e36c'] = 'Подпишитесь на нашу рассылку';
|
||||
$_LANG['order-opc-new-account_baca087296e01b5d69799dd53bcd7950'] = 'Получать специальные предложения от наших партнеров';
|
||||
$_LANG['order-opc-new-account_af0f5bdc5be121b9307687aeeae38c17'] = 'Адрес доставки';
|
||||
$_LANG['order-opc-new-account_1c76cbfe21c6f44c1d1e59d54f3e4420'] = 'Компания';
|
||||
$_LANG['order-opc-new-account_dd7bf230fde8d4836917806aff6a6b27'] = 'Адрес';
|
||||
$_LANG['order-opc-new-account_846a54955f32846032981f8fe48c35ff'] = 'Адрес (продолжение)';
|
||||
$_LANG['order-opc-new-account_bd9014fe70f4f8bb1beed74e3b708483'] = 'Почтовый индекс';
|
||||
$_LANG['order-opc-new-account_57d056ed0984166336b7879c2af3657f'] = 'Город';
|
||||
$_LANG['order-opc-new-account_59716c97497eb9694541f7c3d37b1a4d'] = 'Страна';
|
||||
$_LANG['order-opc-new-account_7cb32e708d6b961d476baced73d362bb'] = 'Номер плательщика НДС';
|
||||
$_LANG['order-opc-new-account_46a2a41cc6e552044816a2d04634545d'] = 'Регион';
|
||||
$_LANG['order-opc-new-account_b60bb13a87fe3ae5463aeb0980a5a8a1'] = 'Идентификационный номер';
|
||||
$_LANG['order-opc-new-account_ea318a4ad37f0c2d2c368e6c958ed551'] = 'DNI / NIF / NIE';
|
||||
$_LANG['order-opc-new-account_0f68b904e33d9ac04605aecc958bcf52'] = 'Дополнительная информация';
|
||||
$_LANG['order-opc-new-account_eeabead01c6c6f25f22bf0b041df58a9'] = 'Вам необходимо указать хотя бы один телефонный номер';
|
||||
$_LANG['order-opc-new-account_fe66abce284ec8589e7d791185b5c442'] = 'Домашний телефон';
|
||||
$_LANG['order-opc-new-account_41c2fff4867cc204120f001e7af20f7a'] = 'Мобильный телефон';
|
||||
$_LANG['order-opc-new-account_ae7bdef7fe2bbbbf02c11e92c5fceb40'] = 'Мой адрес';
|
||||
$_LANG['order-opc-new-account_aee0c5ed0554d46465080ed36d1d93ab'] = 'Пожалуйста, используйте другой адрес для выставленных счетов';
|
||||
$_LANG['order-opc-new-account_601d8c4b9f72fc1862013c19b677a499'] = 'Адрес для счетов';
|
||||
$_LANG['order-opc-new-account_d30f507473129e70c4b962ceccf175cf'] = 'Почтовый индекс';
|
||||
$_LANG['order-opc-new-account_2eac22e71eedb5bdb8f94a1354964017'] = 'Мой адрес для счетов';
|
||||
$_LANG['order-opc-new-account_c9cc8cce247e49bae79f15173ce97354'] = 'Сохранить';
|
||||
$_LANG['order-opc-new-account_6a35e1439d14f62e7177f59c175c886f'] = 'Информация успешно сохранена';
|
||||
$_LANG['order-opc-new-account_19f823c6453c2b1ffd09cb715214813d'] = 'Обязательное поле';
|
||||
$_LANG['order-opc_a40cab5994f36d4c48103a22ca082e8f'] = 'Ваша корзина';
|
||||
$_LANG['order-opc_78fa1019f9a9759b45c76e186393756f'] = 'Ваш новый заказ не принят.';
|
||||
$_LANG['order-opc_1f87346a16cf80c372065de3c54c86d9'] = '(с НДС)';
|
||||
$_LANG['order-opc_21034ae6d01a83e702839a72ba8a77b0'] = '(без НДС)';
|
||||
$_LANG['order-opc_ea295188b69aa5e04810abcc38b2b2be'] = 'выбрано';
|
||||
$_LANG['order-opc_9504d494016e17a6de7e7b51da637bc4'] = 'Не выбран способ доставки';
|
||||
$_LANG['order-opc_238a062a6a2543fd85d6616a8506fbe8'] = 'Для этого заказа не требуется доставка';
|
||||
$_LANG['order-opc_2e75f367f058646a1ba2fd01ceb74423'] = 'Ознакомление с правилами работы магазина не требуется';
|
||||
$_LANG['order-opc_d236af51d8eac54fe7c366af1f6b358c'] = 'Правила работы магазина приняты';
|
||||
$_LANG['order-opc_25d8efaba32cb44a922a727f20eaa002'] = 'Правила работы магазина не приняты';
|
||||
$_LANG['order-opc_4ce81305b7edb043d0a7a5c75cab17d0'] = 'Имеется';
|
||||
$_LANG['order-opc_fe816ec4b30c11a39edfd8b0a4cfab49'] = 'ошибка(и)';
|
||||
$_LANG['order-opc_af0f5bdc5be121b9307687aeeae38c17'] = 'Адрес доставки';
|
||||
$_LANG['order-opc_601d8c4b9f72fc1862013c19b677a499'] = 'Адрес оплаты';
|
||||
$_LANG['order-opc_449374f661344e843453c4e189ddeed8'] = 'Редактировать адрес';
|
||||
$_LANG['order-opc_d87f73e8ff8d933ed2ba5ddf25040827'] = 'Быстрое оформление заказа';
|
||||
$_LANG['order-opc_ad52144224a9fb9e04b8b9ef22ce36f7'] = 'Пожалуйста, начните с выбора адреса';
|
||||
$_LANG['order-opc_879f6b8877752685a966564d072f498f'] = 'Ваша корзина пуста.';
|
||||
$_LANG['order-opc_a240fa27925a635b08dc28c9e4f9216d'] = 'Заказ';
|
||||
$_LANG['order-opc_42cc8aa1d968de2ca40d35fbc2aaf4cf'] = 'Этот магазин не принимает заказы.';
|
||||
$_LANG['order-opc_c6995d6cc084c192bc2e742f052a5c74'] = 'Бесплатная доставка!';
|
||||
$_LANG['order-payment_f5bf48aa40cad7891eb709fcf1fde128'] = 'товар';
|
||||
$_LANG['order-payment_86024cad1e83101d97359d7351051156'] = 'товары';
|
||||
$_LANG['order-payment_59319ac504f7ad04ae16126cf49e7f7e'] = 'Ваш способ оплаты';
|
||||
$_LANG['order-payment_e747da89afc98485bb90928d397e9821'] = 'Выберите способ оплаты';
|
||||
$_LANG['order-payment_deb10517653c255364175796ace3553f'] = 'Товар';
|
||||
$_LANG['order-payment_b5a7adde1af5c87d7fd797b6245c2a39'] = 'Описание';
|
||||
$_LANG['order-payment_9ff9c46512c186ebae182519a55dc6a9'] = 'Доступно';
|
||||
$_LANG['order-payment_6c957f72dc8cdacc75762f2cbdcdfaf2'] = 'Цена за единицу';
|
||||
$_LANG['order-payment_03ab340b3f99e03cff9e84314ead38c0'] = 'Количество';
|
||||
$_LANG['order-payment_96b0141273eabab320119c467cdcaf17'] = 'Всего';
|
||||
$_LANG['order-payment_2370a4958c4ebe6d6c8045cd49a6b392'] = 'Итого товаров (без налогов):';
|
||||
$_LANG['order-payment_db205f01b4fd580fb5daa9072d96849d'] = 'Итого товаров:';
|
||||
$_LANG['order-payment_ebaee01719541f61281c16ba22ebbfde'] = 'Итого товаров (с налогами):';
|
||||
$_LANG['order-payment_5cfa28d1182c6bd5bbd1af0bd459efbe'] = 'Итого подарочная упаковка (без налогов):';
|
||||
$_LANG['order-payment_31f52379817244bb67196c880749cfd8'] = 'Итого подарочная упаковка:';
|
||||
$_LANG['order-payment_59816dd41a0dab043184d5ab19e2edaf'] = 'Итого подарочная упаковка (с налогами):';
|
||||
$_LANG['order-payment_66f51e43606e2baebb8e9c3bfe965da4'] = 'Доставка:';
|
||||
$_LANG['order-payment_ecba3578d8cd65126d4a47c76b3c9c2d'] = 'Бесплатная доставка!';
|
||||
$_LANG['order-payment_f246a17c095de09e043cc1cb917481da'] = 'Итого доставка (без налогов):';
|
||||
$_LANG['order-payment_f4e8b53a114e5a17d051ab84d326cae5'] = 'Итого доставка:';
|
||||
$_LANG['order-payment_e93f43fa527c3534aeca987091d6c049'] = 'Итого доставка (с налогами):';
|
||||
$_LANG['order-payment_9816a5054cd05761b6765fbef0062b29'] = 'Итого купонов (без налогов):';
|
||||
$_LANG['order-payment_ada0f55ef37f4928c5cd970f378c15e8'] = 'Итого купонов:';
|
||||
$_LANG['order-payment_19809527da8b7308e45e2dc6ac40cca9'] = 'Итого купонов (с налогами):';
|
||||
$_LANG['order-payment_598a4c4d56197cc1f6bca50b20aa484a'] = 'Итого налогов:';
|
||||
$_LANG['order-payment_a82868319826fb092b73968e661b5b38'] = 'Купоны';
|
||||
$_LANG['order-payment_444bcb3a3fcf8389296c49467f27e1d6'] = 'ок';
|
||||
$_LANG['order-payment_f7b96335c6a33477579e43f3da368507'] = 'Воспользуйтесь нашим предложением:';
|
||||
$_LANG['order-payment_1ac6ee29e9e68fb71bad91c1d34348cc'] = '%s:';
|
||||
$_LANG['order-payment_1021f02536dc46ab3b07c269949e4de7'] = 'Текст #%s:';
|
||||
$_LANG['order-payment_f2a6c498fb90ee345d997f888fce3b18'] = 'Удалить';
|
||||
$_LANG['order-payment_c8cd21bd2e33378f10611bc4498cf96f'] = 'Удалить данную модификацию';
|
||||
$_LANG['order-payment_ec211f7c20af43e742bf2570c3cb84f9'] = 'Добавить';
|
||||
$_LANG['order-payment_1d9baf077ee87921f57a8fe42d510b65'] = 'Убрать';
|
||||
$_LANG['order-payment_8e1263b23607508e7ba8ff39aec8031d'] = 'Нет доступных способов оплаты.';
|
||||
$_LANG['order-payment_dd1f775e443ff3b9a89270713580a51b'] = 'Назад';
|
||||
$_LANG['order-payment_879f6b8877752685a966564d072f498f'] = 'Ваша корзина пуста.';
|
||||
$_LANG['order-payment_5af5f631f774a71445e3028253874394'] = 'Ваш заказ не принят.';
|
||||
$_LANG['order-payment_3a5199ec2407f4b2f90496072ea8f006'] = 'Итого товаров (без налогов):';
|
||||
$_LANG['order-payment_543ae6adeb524f98cc7d3c816a1ec1e3'] = 'Итого товаров:';
|
||||
$_LANG['order-payment_29cfbfc41066134782f966beefd63a4e'] = 'Итого товаров (с налогами):';
|
||||
$_LANG['order-payment_b935a8c55ff8c1c967d6f848b375db81'] = 'Итого подарочная упаковка (с налогами):';
|
||||
$_LANG['order-payment_9a7dfcdac1fa244d3ddb36a9c0662c9e'] = 'Итого доставка (без налогов):';
|
||||
$_LANG['order-payment_691b338fa68b3c177c6ebbc745624c6a'] = 'Итого доставка:';
|
||||
$_LANG['order-payment_1d4c9008fd49770971ffc2e8f32df870'] = 'Итого доставка (с налогами):';
|
||||
$_LANG['order-payment_4e59b98d7fa1d964bfd9841ad5c34980'] = 'Итого купонов (без налогов):';
|
||||
$_LANG['order-payment_2633d6725607d13e80f5e30514b91fbe'] = 'Итого купонов:';
|
||||
$_LANG['order-payment_28e014bf2ccc53bc1a8042ca57ca6645'] = 'Итого купонов (с налогами):';
|
||||
$_LANG['order-payment_66c4c5112f455a19afde47829df363fa'] = 'Итого:';
|
||||
$_LANG['order-return_dfd57af0760925d5574fda1794d14de5'] = '№ВН';
|
||||
$_LANG['order-return_ed2b5c0139cec8ad2873829dc1117d50'] = 'на';
|
||||
$_LANG['order-return_88be9ea838e21273267409d76af3b284'] = 'Ваш запрос на возврат зарегистрирован';
|
||||
$_LANG['order-return_dd0b8feb4eb6c389c284518f5683017c'] = 'Заказ должен быть возвращен в течение';
|
||||
$_LANG['order-return_ea62a2e28a800c367509773730120a67'] = 'дней после получения заказа.';
|
||||
$_LANG['order-return_6f1f2e16c84468614218f62ca6b42ba2'] = 'Текущее состояние вашего возврата товара:';
|
||||
$_LANG['order-return_b24be74c768f02b296d4e8f41be486fb'] = 'Список товаров для возврата:';
|
||||
$_LANG['order-return_63d5049791d9d79d86e9a108b0a999ca'] = 'Артикул';
|
||||
$_LANG['order-return_deb10517653c255364175796ace3553f'] = 'Товар';
|
||||
$_LANG['order-return_694e8d1f2ee056f98ee488bdc4982d73'] = 'Кол-во';
|
||||
$_LANG['order-return_1ac6ee29e9e68fb71bad91c1d34348cc'] = '%s:';
|
||||
$_LANG['order-return_48b9f22728151bb3cdf1a73c0a00b0aa'] = 'НАПОМИНАНИЕ:';
|
||||
$_LANG['order-return_2b79d007c64009edf92d06f7cb280b25'] = 'Все товары должны возвращены в оригинальной упаковке без повреждения или износа.';
|
||||
$_LANG['order-return_f3ba7c2fb2c65ad6fa1b1efd30573a8d'] = 'Пожалуйста, распечатайте';
|
||||
$_LANG['order-return_955b51949c0e756934c02c521f7f9405'] = 'PDF документ';
|
||||
$_LANG['order-return_e81874a861e2b26ea2c4ecce9f378078'] = 'и вложите это в ваш пакет.';
|
||||
$_LANG['order-return_d9d95b7fdffceaaa11c6bbae7b3bfa37'] = 'Смотрите PDF документ';
|
||||
$_LANG['order-return_b1dceda8ca0eeb9fd9a4457bb613b67b'] = 'для сверки адреса';
|
||||
$_LANG['order-return_16dafae9102750489087d1d087b72aba'] = 'После получения посылки, вам отправят уведомление по электронной почте. Затем мы начнем процедуру полного возврата средств за заказ.';
|
||||
$_LANG['order-return_f393a2fe17dc0cacff53a136479b845d'] = 'Дайте нам знать, если у вас есть какие-либо вопросы.';
|
||||
$_LANG['order-return_f637120d9f24c366b382ede6c21cddf0'] = 'Если перечисленных выше условия возврата не соблюдаются, мы оставляем за собой право отказать в замене и/или возмещении.';
|
||||
$_LANG['order-return_44a9edeffb86277f007fa90d96689a6d'] = 'Вы должны получить наше подтверждение, прежде чем вернуть товар.';
|
||||
$_LANG['order-slip_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'Моя учетная запись';
|
||||
$_LANG['order-slip_d1a365ea7809ae5831c6d9f86886630c'] = 'Кредитные квитанции';
|
||||
$_LANG['order-slip_77346fbddedb12894e80d8a9132b6b87'] = 'Квитанции, полученные после возврата';
|
||||
$_LANG['order-slip_cf3bae95c5f6023d5a10fe415b205a45'] = 'Кредитная квитанция';
|
||||
$_LANG['order-slip_a240fa27925a635b08dc28c9e4f9216d'] = 'Заказ';
|
||||
$_LANG['order-slip_446faa7da2d42ba4ffeda73cb119dd91'] = 'Дата публикации';
|
||||
$_LANG['order-slip_3cb6ea48a427bf3a1687302e3b764c27'] = 'Просмотр кредитной квитанции';
|
||||
$_LANG['order-slip_e28cc69f9aa3068eddb76dd508b11da2'] = '#%s';
|
||||
$_LANG['order-slip_591286c3b4f075453e55532838ce0044'] = 'Квитанция заказа';
|
||||
$_LANG['order-slip_bcd1b68617759b1dfcff0403a6b5a8d1'] = 'PDF';
|
||||
$_LANG['order-slip_0ba830b7ca1513a4882ce5aac84030b8'] = 'Вы не получали кредитов.';
|
||||
$_LANG['order-slip_a958dbb46713e59856c35f89e5092a5e'] = 'Вернуться в учетную запись';
|
||||
$_LANG['order-slip_8cf04a9734132302f96da8e113e80ce5'] = 'На главную';
|
||||
$_LANG['order-slip_01abfc750a0c942167651c40d088531d'] = '№';
|
||||
$_LANG['order-steps_290612199861c31d1036b185b4e69b75'] = 'Выбор';
|
||||
$_LANG['order-steps_99dea78007133396a7b8ed70578ac6ae'] = 'Авторизация';
|
||||
$_LANG['order-steps_dd7bf230fde8d4836917806aff6a6b27'] = 'Адрес';
|
||||
$_LANG['order-steps_ea9cf7e47ff33b2be14e6dd07cbcefc6'] = 'Доставка';
|
||||
$_LANG['order-steps_c453a4b8e8d98e82f35b67f433e3b4da'] = 'Оплата';
|
||||
$_LANG['pagination_dd1f775e443ff3b9a89270713580a51b'] = 'Назад';
|
||||
$_LANG['pagination_10ac3d04253ef7e1ddc73e6091c0cd55'] = 'Далее';
|
||||
$_LANG['pagination_e0aa021e21dddbd6d8cecec71e9cf564'] = 'ОК';
|
||||
$_LANG['pagination_6c583afb157e33bfb5b7c3d4114c4dd5'] = 'товаров:';
|
||||
$_LANG['password_c75f7811d70d17dbcd88e9d03752cbed'] = 'Авторизация';
|
||||
$_LANG['password_0fb655f37529ad006eb0d503e23e10f1'] = 'Забыли пароль';
|
||||
$_LANG['password_01a569ddc6cf67ddec2a683f0a5f5956'] = 'Забыли пароль?';
|
||||
$_LANG['password_f15b7d9b716da1d46ba073df11d4a8d0'] = 'Ваш пароль изменен и подтверждение выслано на e-mail адрес:';
|
||||
$_LANG['password_8859f6ab28ba3d2384b269bcfa36ac33'] = 'На ваш e-mail адрес было отправлено письмо с подтверждением:';
|
||||
$_LANG['password_ad6de86f2f344d447d78a139fc16bd72'] = 'Введите пожалуйста e-mail адрес использованный при регистрации. На него будет выслан ваш новый пароль.';
|
||||
$_LANG['password_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'E-mail:';
|
||||
$_LANG['password_0d0e2934af7d3bc4e7263fcb1f9bc51c'] = 'Восстановить пароль';
|
||||
$_LANG['password_d28f8b8bba7b45bc5103b23b4f21b4fd'] = 'Вернуться к форме \"Вход\"';
|
||||
$_LANG['password_95e6faaba5e8b016e5f9bcf5ea6c8270'] = 'Назад к форме \"Вход\"';
|
||||
$_LANG['prices-drop_c8f312df214e2295809027c6ca79d232'] = 'Цены снижены';
|
||||
$_LANG['prices-drop_701ddcee4495ef7a80e99750caf63941'] = 'Нет снижения цен.';
|
||||
$_LANG['product-compare_216adaf4e98dc62ec3abeab51b9fc57f'] = 'Выберите по крайней мере один товар';
|
||||
$_LANG['product-compare_90723749917a82bf3ff8a73247d32ffb'] = 'Нельзя добавить больше чем %d товаров для сравнения';
|
||||
$_LANG['product-compare_7eece51cf3938103677db7a5051ef8f5'] = 'Сравнить';
|
||||
$_LANG['product-list_77798ad342555ffa834758a2aaa6fc11'] = 'Выбрать для сравнения';
|
||||
$_LANG['product-list_03c2e7e41ffc181a4e84080b4710e81e'] = 'Новый';
|
||||
$_LANG['product-list_800e90e940e7f1fb938b0fda5137f38c'] = 'Распродажа!';
|
||||
$_LANG['product-list_ca2bf12169883f4982d8fe34b7e3c618'] = 'Цена снижена!';
|
||||
$_LANG['product-list_78945de8de090e90045d299651a68a9b'] = 'В наличии';
|
||||
$_LANG['product-list_cb3c718c905f00adbb6735f55bfb38ef'] = 'Продукт доступен в различных вариантах';
|
||||
$_LANG['product-list_b55197a49e8c4cd8c314bc2aa39d6feb'] = 'Нет в наличии';
|
||||
$_LANG['product-list_03de921a8ea82897e13d33d66c28b4db'] = 'Только онлайн!';
|
||||
$_LANG['product-list_2d0f6b8300be19cf35e89e66f0677f95'] = 'В корзину';
|
||||
$_LANG['product-list_4351cfebe4b61d8aa5efa1d020710005'] = 'Подробнее';
|
||||
$_LANG['products-comparison_4dbce7d8fae730e09fce9e83433c77ff'] = 'Сравнение товаров';
|
||||
$_LANG['products-comparison_4351cfebe4b61d8aa5efa1d020710005'] = 'Просмотр';
|
||||
$_LANG['products-comparison_800e90e940e7f1fb938b0fda5137f38c'] = 'Распродажа!';
|
||||
$_LANG['products-comparison_ca2bf12169883f4982d8fe34b7e3c618'] = 'Цена снижена!';
|
||||
$_LANG['products-comparison_db0404dd6d32e0926c9adecd9ba193f3'] = 'за %s';
|
||||
$_LANG['products-comparison_8c751c4aab0db0b811cdfbddf0b4ea56'] = 'Наличие:';
|
||||
$_LANG['products-comparison_c1f0d3df31869ee3093120a670be37dd'] = 'Товара нет в наличии';
|
||||
$_LANG['products-comparison_1063e38cb53d94d386f21227fcd84717'] = 'Убрать';
|
||||
$_LANG['products-comparison_2d0f6b8300be19cf35e89e66f0677f95'] = 'Добавить в корзину';
|
||||
$_LANG['products-comparison_d6295c05503596b3ed3528aee83e3ef7'] = 'Характеристики';
|
||||
$_LANG['products-comparison_f5e15309ff0396474b8421ef48871d0b'] = 'Нет характеристик для сравнения';
|
||||
$_LANG['products-comparison_234a9674e80b9c04a685075ad3ea6950'] = 'Не добавлено товаров для сравнения';
|
||||
$_LANG['product-sort_33d8042bd735c559cc3206f4bc99aedc'] = 'Сортировать по';
|
||||
$_LANG['product-sort_cfab1ba8c67c7c838db98d666f02a132'] = '--';
|
||||
$_LANG['product-sort_7f284e119af971a952e4b29f0875fc60'] = 'Цена, по возрастанию';
|
||||
$_LANG['product-sort_03590cca8220917788b5a6c25fa39a15'] = 'Цена, по убыванию';
|
||||
$_LANG['product-sort_5820b5a5298779a25d98c41173b931bd'] = 'По названию товара, от А до Я';
|
||||
$_LANG['product-sort_4f4f552919d5a7ad3435b5fdb7fcae61'] = 'По названию товара, от Я до А';
|
||||
$_LANG['product-sort_fcebe56087b9373f15514831184fa572'] = 'По наличию';
|
||||
$_LANG['product-sort_c9e06afd258999a1c59d9fce7d9c86c0'] = 'Артикул, по возрастанию';
|
||||
$_LANG['product-sort_526e1c4e51dca91d2aeea20808766e74'] = 'Артикул, по возрастанию';
|
||||
$_LANG['product_28a623fd7e9d81936b562dc5241a16a7'] = 'Данная модификация отсутствует. Пожалуйста, выберите другую.';
|
||||
$_LANG['product_bc0f7082192ef02e934a036cf4991789'] = 'Этого товара нет в наличии';
|
||||
$_LANG['product_fa3638ce880fddddb872f53943933487'] = 'с указанными характеристиками, выберите другие';
|
||||
$_LANG['product_476efcbaed950dd513ffc08e4e9a632f'] = 'Пожалуйста подождите...';
|
||||
$_LANG['product_3b6d056ac93fc7b1947c3bc2ce720aaf'] = 'Пожалуйста заполните все требуемые поля, затем сохраните модификацию.';
|
||||
$_LANG['product_f9ddd507fdf437437efdcb333a0f4ff0'] = 'Этот товар не виден покупателям.';
|
||||
$_LANG['product_110a4b01beabd53b661a47d4b44bd7a8'] = 'Опубликовать';
|
||||
$_LANG['product_0557fa923dcee4d0f86b1409f5c2167f'] = 'Назад';
|
||||
$_LANG['product_9369ba148ee259473fc1fb4939b6c2e8'] = 'Посмотреть польный размер';
|
||||
$_LANG['product_9981d2af851e4b4a4ea612d59f08ab9c'] = 'Другие виды';
|
||||
$_LANG['product_dd1f775e443ff3b9a89270713580a51b'] = 'Предыдущая';
|
||||
$_LANG['product_10ac3d04253ef7e1ddc73e6091c0cd55'] = 'Следующая';
|
||||
$_LANG['product_ea4788705e6873b424c65e91c2846b19'] = 'Отмена';
|
||||
$_LANG['product_02ea084dc2ef3e9965dbba4ec87d2f9b'] = 'Показать все фотографии';
|
||||
$_LANG['product_13dba24862cf9128167a59100e154c8d'] = 'Распечатать';
|
||||
$_LANG['product_2b56b60f878922093facd42284848a0c'] = 'Подробнее';
|
||||
$_LANG['product_e54a973d0c3342dac6ee7d9e145c6f83'] = 'Содержимое упаковки';
|
||||
$_LANG['product_98b0a68a7e4c7b265a5ca9a0b733d96e'] = 'Выберите цвет:';
|
||||
$_LANG['product_3dd42bfc8345e82c43b4a40a3426ec49'] = 'Артикул:';
|
||||
$_LANG['product_3d0d1f906e27800531e054a3b6787b7c'] = 'Количество:';
|
||||
$_LANG['product_e376237cca06a37330137147d20b0848'] = 'Данный товар не продается по одной единице. Вы должны выбрать по крайней мере';
|
||||
$_LANG['product_d3f098af54fd27484e1b6168dfe6ae10'] = 'единиц данного товара.';
|
||||
$_LANG['product_8c751c4aab0db0b811cdfbddf0b4ea56'] = 'Наличие:';
|
||||
$_LANG['product_ea254ced8be4adb6c4a2750e84087da6'] = 'Будет доступен:';
|
||||
$_LANG['product_c2d72061078b4d4b862b060edbef1b9d'] = 'шт на складе';
|
||||
$_LANG['product_574ce4e0b9b99a55c2ea0435bfd920e3'] = 'шт в наличии';
|
||||
$_LANG['product_0d83f0026f6d2923b2aa3a208156918c'] = 'Внимание: ограниченное количество товара в наличии!';
|
||||
$_LANG['product_03de921a8ea82897e13d33d66c28b4db'] = 'Только онлайн';
|
||||
$_LANG['product_887ee91702c962a70b87cbef07bbcaec'] = 'без НДС';
|
||||
$_LANG['product_e2e79605fc9450ec17957cf0e910f5c6'] = 'с НДС';
|
||||
$_LANG['product_588907ab2d492aca0b07b5bf9c931eea'] = 'Распродажа';
|
||||
$_LANG['product_800e90e940e7f1fb938b0fda5137f38c'] = 'Распродажа!';
|
||||
$_LANG['product_ca2bf12169883f4982d8fe34b7e3c618'] = 'Цена снижена!';
|
||||
$_LANG['product_9a9a97ca85af73f90515e72745f730f0'] = 'вместо';
|
||||
$_LANG['product_f4d72a64acd8929c0cc9ed96a7a336cc'] = 'включить';
|
||||
$_LANG['product_441ca5553df52b87e87513c6b88927d3'] = 'для эко налога';
|
||||
$_LANG['product_a134618182b99ff9151d7e0b6b92410a'] = '(скидка не распространяется)';
|
||||
$_LANG['product_fe3838c7c11aa406dd956566e17360d5'] = 'за';
|
||||
$_LANG['product_2d0f6b8300be19cf35e89e66f0677f95'] = 'Добавить в корзину';
|
||||
$_LANG['product_b1cff9892b2dde30a5f5cfb393c02423'] = 'Скидка';
|
||||
$_LANG['product_deb10517653c255364175796ace3553f'] = 'товар';
|
||||
$_LANG['product_1ed52421fcb149d2c392e987047165bc'] = 'от (количество)';
|
||||
$_LANG['product_104d9898c04874d0fbac36e125fa1369'] = 'скидка';
|
||||
$_LANG['product_71948aa4f6e12cdaa5e2e63a5eb8f142'] = 'Подробнее';
|
||||
$_LANG['product_7dcd185f890fd28f69d1ed210292d77f'] = 'Характеристики';
|
||||
$_LANG['product_801ab24683a4a8c433c6eb40c48bcd9d'] = 'Скачать';
|
||||
$_LANG['product_98edb85b00d9527ad5acebe451b3fae6'] = 'Аксессуары';
|
||||
$_LANG['product_54c02ba7929b1fda4847991a45b58a48'] = 'Модификация товара';
|
||||
$_LANG['product_d3da97e2d9aee5c8fbe03156ad051c99'] = 'Больше';
|
||||
$_LANG['product_4351cfebe4b61d8aa5efa1d020710005'] = 'Смотреть';
|
||||
$_LANG['product_d5a90effea572da2df11559161c0930b'] = 'После сохранения модифицированного товара не забудьте добавить его в корзину.';
|
||||
$_LANG['product_e5a75e83f9fd2f5fdff337a46227b3c3'] = 'Допустимые форматы файлов: GIF, JPG, PNG';
|
||||
$_LANG['product_b11ddc7e1671c0bd22dc89dd757508d4'] = 'Картинки';
|
||||
$_LANG['product_f2a6c498fb90ee345d997f888fce3b18'] = 'Удалить';
|
||||
$_LANG['product_fd26de1a9f14da358bed04e29b04a89d'] = 'Пожалуйста, выберите файл с изображением с жесткого диска';
|
||||
$_LANG['product_9dffbf69ffba8bc38bc4e01abf4b1675'] = 'Тексты';
|
||||
$_LANG['product_c9cc8cce247e49bae79f15173ce97354'] = 'Сохранить';
|
||||
$_LANG['product_7f8c1eb3bfb1d0f94b20515f3cc5a211'] = 'обязательные поля';
|
||||
$_LANG['restricted-country_cf8092a0be7b972d6cee3db90bfaf923'] = 'Вы не можете посещать магазин из вашей страны. Приносим свои извинения за неудобства.';
|
||||
$_LANG['scenes_d3d2e617335f08df83599665eef8a418'] = 'Закрыть';
|
||||
$_LANG['scenes_03c2e7e41ffc181a4e84080b4710e81e'] = 'Новая';
|
||||
$_LANG['scenes_800e90e940e7f1fb938b0fda5137f38c'] = 'Распродажа!';
|
||||
$_LANG['scenes_ca2bf12169883f4982d8fe34b7e3c618'] = 'Цена снижена!';
|
||||
$_LANG['search_13348442cc6a27032d2b4aa28b75a5d3'] = 'Поиск';
|
||||
$_LANG['search_05cf990f79d935b0ea6105855adef686'] = 'Возврат на предыдущую страницу';
|
||||
$_LANG['search_b2c56c8b57680e576c61c1b5df0d0c2d'] = 'Извините, по вашему запросу ничего не найдено';
|
||||
$_LANG['search_a4bb6bf91165c149d73930f43ad4ef69'] = 'Введите слово для поиска';
|
||||
$_LANG['search_3a93aed43691aed28d2ce3a53d3c63f8'] = '%d результат был найден.';
|
||||
$_LANG['search_a09e4037d02313230a191007246e1694'] = '%d результатов было найдено.';
|
||||
$_LANG['shopping-cart-product-line_a59ba454f256953d318ac200a50d67d1'] = 'Подарок!';
|
||||
$_LANG['shopping-cart-product-line_ec211f7c20af43e742bf2570c3cb84f9'] = 'Добавить';
|
||||
$_LANG['shopping-cart-product-line_1d9baf077ee87921f57a8fe42d510b65'] = 'Вычесть';
|
||||
$_LANG['shopping-cart-product-line_e716b72edf18038c04664e9b21569177'] = 'Необходимо купить минимум %d таких товаров';
|
||||
$_LANG['shopping-cart-product-line_f2a6c498fb90ee345d997f888fce3b18'] = 'Удалить';
|
||||
$_LANG['shopping-cart_a40cab5994f36d4c48103a22ca082e8f'] = 'Ваша корзина';
|
||||
$_LANG['shopping-cart_ff578eb1d07934124f4b9339ecfd2bf6'] = 'Состояние корзины';
|
||||
$_LANG['shopping-cart_4b0afa9e8d3cdefd4fb21faebe22ef5f'] = 'Ваша учетная запись создана.';
|
||||
$_LANG['shopping-cart_879f6b8877752685a966564d072f498f'] = 'Ваша корзина пуста.';
|
||||
$_LANG['shopping-cart_5af5f631f774a71445e3028253874394'] = 'Ваш заказ не принят.';
|
||||
$_LANG['shopping-cart_f5bf48aa40cad7891eb709fcf1fde128'] = 'товар';
|
||||
$_LANG['shopping-cart_86024cad1e83101d97359d7351051156'] = 'товаров';
|
||||
$_LANG['shopping-cart_b4f90d226d5212c67236540da6b5c2da'] = 'Последний добавленный товар';
|
||||
$_LANG['shopping-cart_d6bf6fa1b9ec58788836df2f1019cdb0'] = 'Ваша корзина содержит:';
|
||||
$_LANG['shopping-cart_deb10517653c255364175796ace3553f'] = 'Товар';
|
||||
$_LANG['shopping-cart_b5a7adde1af5c87d7fd797b6245c2a39'] = 'Описание';
|
||||
$_LANG['shopping-cart_12d3c7a4296542c62474856ec452c045'] = 'Арт.';
|
||||
$_LANG['shopping-cart_6c957f72dc8cdacc75762f2cbdcdfaf2'] = 'Цена за шт.';
|
||||
$_LANG['shopping-cart_03ab340b3f99e03cff9e84314ead38c0'] = 'Кол-во';
|
||||
$_LANG['shopping-cart_96b0141273eabab320119c467cdcaf17'] = 'Итого:';
|
||||
$_LANG['shopping-cart_2370a4958c4ebe6d6c8045cd49a6b392'] = 'Итого товаров (без налогов):';
|
||||
$_LANG['shopping-cart_db205f01b4fd580fb5daa9072d96849d'] = 'Итого товаров:';
|
||||
$_LANG['shopping-cart_ebaee01719541f61281c16ba22ebbfde'] = 'Итого купонов (с налогами):';
|
||||
$_LANG['shopping-cart_68c1f7726dbf6e8c073350b2fb3a1604'] = 'Итого стоимость подарочной упаковки (с налогами):';
|
||||
$_LANG['shopping-cart_0559e7888ca7513e71dad1c954a4b44d'] = 'Итого подарочная упаковка:';
|
||||
$_LANG['shopping-cart_ea9cf7e47ff33b2be14e6dd07cbcefc6'] = 'Доставка:';
|
||||
$_LANG['shopping-cart_ecba3578d8cd65126d4a47c76b3c9c2d'] = 'Бесплатная доставка!';
|
||||
$_LANG['shopping-cart_f246a17c095de09e043cc1cb917481da'] = 'Итого доставка (без налогов):';
|
||||
$_LANG['shopping-cart_f4e8b53a114e5a17d051ab84d326cae5'] = 'Итого за доставку:';
|
||||
$_LANG['shopping-cart_e93f43fa527c3534aeca987091d6c049'] = 'Итого доставка (с налогами):';
|
||||
$_LANG['shopping-cart_28e014bf2ccc53bc1a8042ca57ca6645'] = 'Итого купонов (с налогами):';
|
||||
$_LANG['shopping-cart_9816a5054cd05761b6765fbef0062b29'] = 'Итого купонов (без налогов):';
|
||||
$_LANG['shopping-cart_ada0f55ef37f4928c5cd970f378c15e8'] = 'Итого купонов:';
|
||||
$_LANG['shopping-cart_8faf99e02e4d0ccb4dd933404f87a4ea'] = 'Итого (исключая налог):';
|
||||
$_LANG['shopping-cart_65b2eb8951e9008b9594b2c7444bc9cb'] = 'Итого налогов:';
|
||||
$_LANG['shopping-cart_a82868319826fb092b73968e661b5b38'] = 'Купоны';
|
||||
$_LANG['shopping-cart_e0aa021e21dddbd6d8cecec71e9cf564'] = 'ОК';
|
||||
$_LANG['shopping-cart_12a7a93d72ded50311b52c7d0a853e3c'] = 'Воспользуйтесь нашими предложениями';
|
||||
$_LANG['shopping-cart_2fb3b950fd7711136f7f251ae5fbdbdc'] = 'Текст №';
|
||||
$_LANG['shopping-cart_853ae90f0351324bd73ea615e6487517'] = ':';
|
||||
$_LANG['shopping-cart_ec211f7c20af43e742bf2570c3cb84f9'] = 'Добавить';
|
||||
$_LANG['shopping-cart_1d9baf077ee87921f57a8fe42d510b65'] = 'Уменьшить';
|
||||
$_LANG['shopping-cart_f2a6c498fb90ee345d997f888fce3b18'] = 'Удалить';
|
||||
$_LANG['shopping-cart_30efeba472c0bc4d0747d0109948a714'] = 'Выслать товары в наличии в первую очередь';
|
||||
$_LANG['shopping-cart_fcb508ac320051bb4723fb938b33de0d'] = 'Я хочу указать адрес доставки для каждого отдельного товара';
|
||||
$_LANG['shopping-cart_af0f5bdc5be121b9307687aeeae38c17'] = 'Адрес доставки';
|
||||
$_LANG['shopping-cart_601d8c4b9f72fc1862013c19b677a499'] = 'Адрес плательщика';
|
||||
$_LANG['shopping-cart_10ac3d04253ef7e1ddc73e6091c0cd55'] = 'Далее';
|
||||
$_LANG['shopping-cart_300225ee958b6350abc51805dab83c24'] = 'Продолжить покупки';
|
||||
$_LANG['shopping-cart_5b9434f7af6c145e8523b93c9ed5ddde'] = 'Список товаров';
|
||||
$_LANG['shopping-cart_e78b6f4eb3be046f4d25c07ce54954d4'] = 'Реф:';
|
||||
$_LANG['shopping-cart_a23048e27d3360662e56525a2405e7f9'] = 'Список купонов';
|
||||
$_LANG['shopping-cart_f8f5730f2ee46b88120ff192190fb7cd'] = 'Купон:';
|
||||
$_LANG['shopping-cart_9137796c15dd92e5553c3f29574d0968'] = 'Код копона:';
|
||||
$_LANG['shopping-cart_94966d90747b97d1f0f206c98a8b1ac3'] = 'Отправить';
|
||||
$_LANG['shopping-cart_7395559a94fa7a25907a155cda78afa0'] = 'Подтвердите заказ';
|
||||
$_LANG['sitemap_5813ce0ec7196c492c97596718f71969'] = 'Карта сайта';
|
||||
$_LANG['sitemap_24cc85476cb8ec1a03192f09231e742b'] = 'Наши предложения';
|
||||
$_LANG['sitemap_2e62a20e0e24a34b6da16e369b755dde'] = 'Просмотреть новые товары';
|
||||
$_LANG['sitemap_9ff0635f5737513b1a6f559ac2bff745'] = 'Новые товары';
|
||||
$_LANG['sitemap_c70dd243e00d616ac8d4fa6949e46b26'] = 'Просмотреть самые продаваемые товары';
|
||||
$_LANG['sitemap_01f7ac959c1e6ebbb2e0ee706a7a5255'] = 'Лидеры продаж';
|
||||
$_LANG['sitemap_d5ccde648010f8198e3506b1e4e1d318'] = 'Просмотреть товары со скидкой';
|
||||
$_LANG['sitemap_c8f312df214e2295809027c6ca79d232'] = 'Скидка';
|
||||
$_LANG['sitemap_34305c555e765cb6b4fbb20d4f4d6121'] = 'Просмотреть список производителей';
|
||||
$_LANG['sitemap_0e1e874dde345d19583102a9fd63fb7e'] = 'Производители';
|
||||
$_LANG['sitemap_2a75c8350e354ef6e2a842dfdf299214'] = 'Просмотреть список поставщиков';
|
||||
$_LANG['sitemap_a00e46e856e637f8fd077b4fd710c9e2'] = 'Поставщики';
|
||||
$_LANG['sitemap_a0623b78a5f2cfe415d9dbbd4428ea40'] = 'Личный кабинет';
|
||||
$_LANG['sitemap_48da3f6e6609ef3fce034fd48414e11f'] = 'Управление моей учетной записью';
|
||||
$_LANG['sitemap_0dff7dbe97fdc822935db4663162b9b9'] = 'Управление моими личными данными';
|
||||
$_LANG['sitemap_2433db5a329ea473271a3cd8c013362e'] = 'Личная информация';
|
||||
$_LANG['sitemap_775dc7a055a18907b183037a80c6eed9'] = 'Просмотреть список моих адресов';
|
||||
$_LANG['sitemap_284b47b0bb63ae2df3b29f0e691d6fcf'] = 'Адреса';
|
||||
$_LANG['sitemap_042fe826ace5f92b2477da18b0e7d0b7'] = 'Просмотреть список моих скидок';
|
||||
$_LANG['sitemap_9d5bf15117441a1b52eb1f0808e4aad3'] = 'Скидки';
|
||||
$_LANG['sitemap_60df547fe45851a472b9680811b3689d'] = 'Просмотреть список моих заказов';
|
||||
$_LANG['sitemap_782c8b38bce4f2f6975ca7f33ac8189b'] = 'История заказов';
|
||||
$_LANG['sitemap_c75f7811d70d17dbcd88e9d03752cbed'] = 'Авторизация';
|
||||
$_LANG['sitemap_1aa668d559a3a32a44796aeee6978a59'] = 'Создать новую учетную запись';
|
||||
$_LANG['sitemap_4394c8d8e63c470de62ced3ae85de5ae'] = 'Выйти';
|
||||
$_LANG['sitemap_af1b98adf7f686b84cd0b443e022b7a0'] = 'Категории:';
|
||||
$_LANG['sitemap_453aceb005ceaf54a47da15fee8b2a26'] = 'Страницы';
|
||||
$_LANG['sitemap_bbaff12800505b22a853e8b7f4eb6a22'] = 'Обратная связь';
|
||||
$_LANG['sitemap_59107b284bf28196b69063b109b644ef'] = 'Список наших магазинов';
|
||||
$_LANG['sitemap_34c869c542dee932ef8cd96d2f91cae6'] = 'Пункты выдачи';
|
||||
$_LANG['sitemap_62f5d708d6ad1fa1ddd9429a65cccbea'] = 'Все категории';
|
||||
$_LANG['sitemap_8cf04a9734132302f96da8e113e80ce5'] = 'Главная';
|
||||
$_LANG['store_infos_6f8522e0610541f1ef215a22ffa66ff6'] = 'Понедельник';
|
||||
$_LANG['store_infos_5792315f09a5d54fb7e3d066672b507f'] = 'Вторник';
|
||||
$_LANG['store_infos_796c163589f295373e171842f37265d5'] = 'Среда';
|
||||
$_LANG['store_infos_78ae6f0cd191d25147e252dc54768238'] = 'Четверг';
|
||||
$_LANG['store_infos_c33b138a163847cdb6caeeb7c9a126b4'] = 'Пятница';
|
||||
$_LANG['store_infos_8b7051187b9191cdcdae6ed5a10e5adc'] = 'Суббота';
|
||||
$_LANG['store_infos_9d1a0949c39e66a0cd65240bc0ac9177'] = 'Воскресение';
|
||||
$_LANG['store_infos_a75e076c6fa3af6798371ae003c68364'] = 'Часы работы:';
|
||||
$_LANG['stores_34c869c542dee932ef8cd96d2f91cae6'] = 'Наши магазины';
|
||||
$_LANG['stores_f8be99e56d4207f6df76e12bd32e0fea'] = 'Информация о расположении наших магазинов:';
|
||||
$_LANG['stores_7ab6c2300ac1d74d35cadcfb39254827'] = 'Не найдено магазинов, попробуйте увеличить радиус поиска';
|
||||
$_LANG['stores_e80ba8cf66845d479eb275578353e358'] = 'Найден магазин, подробнее:';
|
||||
$_LANG['stores_c3d0689b0ded3217c1b4fef6e9513930'] = 'Найденные магазины, подробнее:';
|
||||
$_LANG['stores_673ae02fffb72f0fe68a66f096a01347'] = 'Телефон:';
|
||||
$_LANG['stores_a9407a9201ef1b64f0c567ed291574ba'] = 'Как добраться';
|
||||
$_LANG['stores_9e076f5885f5cc16a4b5aeb8de4adff5'] = 'Не найдено';
|
||||
$_LANG['stores_dd8e04bdafcdc0ff0a6be34cd74394c0'] = 'Введите местоположение (например: почтовый индекс, адрес, город или страна), чтобы найти ближайший магазин.';
|
||||
$_LANG['stores_12e8c7785484eb1547a9793a6b8603f9'] = 'Ваше местоположение:';
|
||||
$_LANG['stores_8519118a6eee0dcbb6118528f3f7febb'] = 'Адрес, город, страна';
|
||||
$_LANG['stores_326684a8cb097db086be681022d9ae46'] = 'Радиус:';
|
||||
$_LANG['stores_13348442cc6a27032d2b4aa28b75a5d3'] = 'Поиск';
|
||||
$_LANG['stores_01abfc750a0c942167651c40d088531d'] = '№';
|
||||
$_LANG['stores_fdb0c388de01d545017cdf9ccf00eb72'] = 'Магазин';
|
||||
$_LANG['stores_dd7bf230fde8d4836917806aff6a6b27'] = 'Адрес';
|
||||
$_LANG['stores_0aa6f4210bf373c95eda00232e93cd98'] = 'Расстояние';
|
||||
$_LANG['supplier-list_a00e46e856e637f8fd077b4fd710c9e2'] = 'Поставщики';
|
||||
$_LANG['supplier-list_44cc6cf69e752cd267e29e71ac4175ff'] = 'Нет поставщиков';
|
||||
$_LANG['supplier-list_bf1f33501d576cce01509b67e2260242'] = 'Всего %d поставщик.';
|
||||
$_LANG['supplier-list_70e0158b4815b0ad6be5f86a11e3a3b4'] = 'Всего %d поставщиков.';
|
||||
$_LANG['supplier-list_0397cbccfd02272abd38f8933b865218'] = '%d товар';
|
||||
$_LANG['supplier-list_864c665aea5e824772fda0e678c3ac4d'] = '%d товаров';
|
||||
$_LANG['supplier-list_c61ab4204f572e9b3aa84a040e0dab31'] = 'смотреть товары';
|
||||
$_LANG['supplier_4bbacadd33aff22ab7468fa4f9efd717'] = 'Список товаров по поставщику:';
|
||||
$_LANG['supplier_71a863ca23a2b5d1dc82e60b908576b5'] = 'Нет товаров этого поставщика.';
|
||||
$_LANG['supplier_a00e46e856e637f8fd077b4fd710c9e2'] = 'Поставщики';
|
||||
$_LANG['supplier_d3da97e2d9aee5c8fbe03156ad051c99'] = 'Больше';
|
||||
$_LANG['authentication-choice_2fdfd506efea08144c0794c32ca8250a'] = 'Зарегистрироваться';
|
||||
$_LANG['authentication-choice_0b2c9f6cb541db5d223143a645492ddd'] = 'Для регистрации укажите пожалуйста свой E-mail';
|
||||
$_LANG['authentication-choice_b357b524e740bc85b9790a0712d84a30'] = 'E-mail';
|
||||
$_LANG['authentication-choice_db879b00e657fc85f7873343f11df21c'] = 'Уже зарегистрированы в нашем магазине?';
|
||||
$_LANG['authentication-choice_dc647eb65e6711e155375218212b3964'] = 'Пароль';
|
||||
$_LANG['authentication-choice_01a569ddc6cf67ddec2a683f0a5f5956'] = 'Забыли пароль?';
|
||||
$_LANG['authentication-choice_99dea78007133396a7b8ed70578ac6ae'] = 'Войти';
|
||||
$_LANG['authentication-create-account_6335a00a08fde0fbb8f6d6630cdadd92'] = 'Ваша личная информация';
|
||||
$_LANG['authentication-create-account_b78a3223503896721cca1303f776159b'] = 'Название';
|
||||
$_LANG['authentication-create-account_20db0bfeecd8fe60533206a2b5e9891a'] = 'Имя';
|
||||
$_LANG['authentication-create-account_8d3f5eff9c40ee315d452392bed5309b'] = 'Фамилия';
|
||||
$_LANG['authentication-create-account_01401fe9a93df81d28637e5218597b76'] = 'E-mail';
|
||||
$_LANG['authentication-create-account_dc647eb65e6711e155375218212b3964'] = 'Пароль';
|
||||
$_LANG['authentication-create-account_bf2957630c4209f61a388a08c2154915'] = '(5 символов минимум)';
|
||||
$_LANG['authentication-create-account_10803b83a68db8f7e7a33e3b41e184d0'] = 'Дата рождения';
|
||||
$_LANG['authentication-create-account_86f5978d9b80124f509bdb71786e929e'] = 'Январь';
|
||||
$_LANG['authentication-create-account_659e59f062c75f81259d22786d6c44aa'] = 'Февраль';
|
||||
$_LANG['authentication-create-account_fa3e5edac607a88d8fd7ecb9d6d67424'] = 'Март';
|
||||
$_LANG['authentication-create-account_3fcf026bbfffb63fb24b8de9d0446949'] = 'Апрель';
|
||||
$_LANG['authentication-create-account_195fbb57ffe7449796d23466085ce6d8'] = 'Май';
|
||||
$_LANG['authentication-create-account_688937ccaf2a2b0c45a1c9bbba09698d'] = 'Июнь';
|
||||
$_LANG['authentication-create-account_1b539f6f34e8503c97f6d3421346b63c'] = 'Июль';
|
||||
$_LANG['authentication-create-account_41ba70891fb6f39327d8ccb9b1dafb84'] = 'Август';
|
||||
$_LANG['authentication-create-account_cc5d90569e1c8313c2b1c2aab1401174'] = 'Сентябрь';
|
||||
$_LANG['authentication-create-account_eca60ae8611369fe28a02e2ab8c5d12e'] = 'Октябрь';
|
||||
$_LANG['authentication-create-account_7e823b37564da492ca1629b4732289a8'] = 'Ноябрь';
|
||||
$_LANG['authentication-create-account_82331503174acbae012b2004f6431fa5'] = 'Декабрь';
|
||||
$_LANG['authentication-create-account_93edfc7af9b6471b30030cf17646e36c'] = 'Подпишитесь на нашу рассылку';
|
||||
$_LANG['authentication-create-account_baca087296e01b5d69799dd53bcd7950'] = 'Получать специальные предложения от наших партнеров';
|
||||
$_LANG['authentication-create-account_1011bae349c34405e0c47931fc7ef8ad'] = 'Информация о вашей компании';
|
||||
$_LANG['authentication-create-account_1c76cbfe21c6f44c1d1e59d54f3e4420'] = 'Компания';
|
||||
$_LANG['authentication-create-account_4f68183551e5dbd7c341347ffe308682'] = 'SIRET';
|
||||
$_LANG['authentication-create-account_85fb93a8ee9440499692da24a1621769'] = 'APE';
|
||||
$_LANG['authentication-create-account_15bbb9d0bbf25e8d2978de1168c749dc'] = 'Адрес сайта';
|
||||
$_LANG['authentication-create-account_455175f3f5be6306247babb349c0515a'] = 'Ваш адрес';
|
||||
$_LANG['authentication-create-account_7cb32e708d6b961d476baced73d362bb'] = 'НДС';
|
||||
$_LANG['authentication-create-account_dd7bf230fde8d4836917806aff6a6b27'] = 'Адрес:';
|
||||
$_LANG['authentication-create-account_a6ee9085d7a0d0f894765d9d3ed50c6b'] = 'Улица, дом, название компании';
|
||||
$_LANG['authentication-create-account_846a54955f32846032981f8fe48c35ff'] = 'Адрес (продолжение)';
|
||||
$_LANG['authentication-create-account_261ed9f602d575774ae05f2d9f3003da'] = 'Номер дома';
|
||||
$_LANG['authentication-create-account_d30f507473129e70c4b962ceccf175cf'] = 'Почтовый индекс';
|
||||
$_LANG['authentication-create-account_57d056ed0984166336b7879c2af3657f'] = 'Город';
|
||||
$_LANG['authentication-create-account_59716c97497eb9694541f7c3d37b1a4d'] = 'Страна';
|
||||
$_LANG['authentication-create-account_46a2a41cc6e552044816a2d04634545d'] = 'Регион';
|
||||
$_LANG['authentication-create-account_0f68b904e33d9ac04605aecc958bcf52'] = 'Дополнительная информация';
|
||||
$_LANG['authentication-create-account_39916f579f264041641c122e68e545d5'] = 'Вы должны указать по крайней мере один номер телефона';
|
||||
$_LANG['authentication-create-account_fe66abce284ec8589e7d791185b5c442'] = 'Домашний телефон';
|
||||
$_LANG['authentication-create-account_41c2fff4867cc204120f001e7af20f7a'] = 'Мобильный телефон';
|
||||
$_LANG['authentication-create-account_f9b479c47658c53084b56edcc3a2cd3a'] = 'Название указанного адреса, например \"Дом\" или \"Работа\"';
|
||||
$_LANG['authentication-create-account_ae7bdef7fe2bbbbf02c11e92c5fceb40'] = 'Мой адрес';
|
||||
$_LANG['authentication-create-account_c773457e85b990c10f8823eacb21346c'] = 'Налоговый номер';
|
||||
$_LANG['authentication-create-account_b60bb13a87fe3ae5463aeb0980a5a8a1'] = 'Идентификационный номер';
|
||||
$_LANG['authentication-create-account_ea318a4ad37f0c2d2c368e6c958ed551'] = 'Идентификационный номер';
|
||||
$_LANG['authentication-create-account_0ba7583639a274c434bbe6ef797115a4'] = 'Зарегистрироваться';
|
||||
$_LANG['authentication-create-account_19f823c6453c2b1ffd09cb715214813d'] = 'Обязательное поле';
|
||||
$_LANG['category-product-list_800e90e940e7f1fb938b0fda5137f38c'] = 'Распродажа!';
|
||||
$_LANG['category-product-list_ca2bf12169883f4982d8fe34b7e3c618'] = 'Цена снижена!';
|
||||
$_LANG['category-product-list_78945de8de090e90045d299651a68a9b'] = 'В наличии';
|
||||
$_LANG['category-product-list_cb3c718c905f00adbb6735f55bfb38ef'] = 'Продукт доступен в различных вариантах';
|
||||
$_LANG['category-product-list_b55197a49e8c4cd8c314bc2aa39d6feb'] = 'Нет в наличии';
|
||||
$_LANG['category-product-list_d0fcb89c94b29d6ab2db749ff688dc7c'] = 'Только онлайн!';
|
||||
$_LANG['category-product-list_03c2e7e41ffc181a4e84080b4710e81e'] = 'Новый';
|
||||
$_LANG['category-product-sort_33d8042bd735c559cc3206f4bc99aedc'] = 'Сортировать по';
|
||||
$_LANG['category-product-sort_7f284e119af971a952e4b29f0875fc60'] = 'Цена, по возрастанию';
|
||||
$_LANG['category-product-sort_03590cca8220917788b5a6c25fa39a15'] = 'Цена, по убыванию';
|
||||
$_LANG['category-product-sort_5820b5a5298779a25d98c41173b931bd'] = 'По названию товара, от А до Я';
|
||||
$_LANG['category-product-sort_4f4f552919d5a7ad3435b5fdb7fcae61'] = 'Товар, Я-А';
|
||||
$_LANG['category-product-sort_fcebe56087b9373f15514831184fa572'] = 'По наличию';
|
||||
$_LANG['category-product-sort_c9e06afd258999a1c59d9fce7d9c86c0'] = 'Артикул, по возрастанию';
|
||||
$_LANG['category-product-sort_526e1c4e51dca91d2aeea20808766e74'] = 'Артикул, по убыванию';
|
||||
$_LANG['order-detail-product-li_63d5049791d9d79d86e9a108b0a999ca'] = 'Артикул';
|
||||
$_LANG['order-detail-product-li_694e8d1f2ee056f98ee488bdc4982d73'] = 'Количество';
|
||||
$_LANG['order-detail-product-li_6c957f72dc8cdacc75762f2cbdcdfaf2'] = 'Цена';
|
||||
$_LANG['order-detail-product-li_0eede552438475bdfe820c13f24c9399'] = 'Итого';
|
||||
$_LANG['order-detail-product-li_853ae90f0351324bd73ea615e6487517'] = ':';
|
||||
$_LANG['order-detail-product-li_c060ca8505d0aa094635fbf9beac94b0'] = 'скачать этот товар';
|
||||
$_LANG['order-detail-product-li_aec9b5b1c2f91ccdef8e25f5f1dac86a'] = 'Скачать товар';
|
||||
$_LANG['order-opc-address_dd7bf230fde8d4836917806aff6a6b27'] = 'Адреса:';
|
||||
$_LANG['order-opc-address_af0f5bdc5be121b9307687aeeae38c17'] = 'Адрес доставки:';
|
||||
$_LANG['order-opc-address_145769de0753212cb6f89a997ce200bc'] = 'Изменить адрес:';
|
||||
$_LANG['order-opc-address_601d8c4b9f72fc1862013c19b677a499'] = 'Адрес плательщика:';
|
||||
$_LANG['order-opc-address_89fda22cffba3209fa31607fe96e4ed1'] = 'Необходимо указать адрес доставки и расчетный адрес.';
|
||||
$_LANG['order-opc-address_b15e1100a6196acba01ef7aaa5b2a9e5'] = 'Добавить новый адрес';
|
||||
$_LANG['order-opc-carrier_66f51e43606e2baebb8e9c3bfe965da4'] = 'Доставка';
|
||||
$_LANG['order-opc-carrier_f5bf48aa40cad7891eb709fcf1fde128'] = 'товар';
|
||||
$_LANG['order-opc-carrier_86024cad1e83101d97359d7351051156'] = 'товаров';
|
||||
$_LANG['order-opc-carrier_5508a53851720a210e50f7b8a6f66f46'] = 'Вы должны принять наши условия обслуживания перед тем как продолжить оформление.';
|
||||
$_LANG['order-opc-carrier_e085dcd05d73bdd5afe338e5b6e42a18'] = 'Выберите способ доставки';
|
||||
$_LANG['order-opc-carrier_1f87346a16cf80c372065de3c54c86d9'] = '(с НДС)';
|
||||
$_LANG['order-opc-carrier_21034ae6d01a83e702839a72ba8a77b0'] = '(без НДС)';
|
||||
$_LANG['order-opc-carrier_b24ce0cd392a5b0b8dedc66c25213594'] = 'Бесплатно!';
|
||||
$_LANG['order-opc-carrier_e06b4fd44aa19916cbbb34d7ca26efa1'] = 'касается товара:';
|
||||
$_LANG['order-opc-carrier_9960807cfb66a03002a9b7777c4a96c5'] = 'касается товаров:';
|
||||
$_LANG['order-opc-carrier_0fce1189b263c211a8239fb0e9df004d'] = 'Я согласен на получение заказа в переработанной упаковке';
|
||||
$_LANG['order-opc-carrier_0d9175fe89fb80d815e7d03698b6e83a'] = 'Подарок';
|
||||
$_LANG['order-opc-carrier_32224bd6487699ea66652d3dc502455d'] = 'Мне нужна подарочная упаковка';
|
||||
$_LANG['order-opc-carrier_5c2dfd55fea1f5c6adef500fcb6403b4'] = 'Дополнительные расходы';
|
||||
$_LANG['order-opc-carrier_bf46d59ab4c5096d169c1a5eb39cc0c1'] = 'Если требуется, напишите здесь ваши пожелания к подарочной упаковке:';
|
||||
$_LANG['order-opc-carrier_e4045598261988d9988c594243a9434d'] = 'Условия обслуживания';
|
||||
$_LANG['order-opc-carrier_ad88a6c9e8c880f23639321d78ec859d'] = 'Я ознакомлен(а) и согласен(на) с Условиями обслуживания.';
|
||||
$_LANG['order-opc-carrier_c1fb97680f5f203d44744a2355ed87ae'] = '(Прочитать пользовательское соглашение)';
|
||||
$_LANG['order-opc-payment_bd0e34e5be6447844e6f262d51f1a9dc'] = 'Оплата';
|
||||
$_LANG['pages-list_5813ce0ec7196c492c97596718f71969'] = 'Карта сайта';
|
||||
$_LANG['pages-list_d95cf4ab2cbf1dfb63f066b50558b07d'] = 'Моя учетная запись';
|
||||
$_LANG['pages-list_bbaff12800505b22a853e8b7f4eb6a22'] = 'Обратная связь';
|
||||
$_LANG['product-desc-features_71948aa4f6e12cdaa5e2e63a5eb8f142'] = 'О товаре';
|
||||
$_LANG['product-desc-features_7dcd185f890fd28f69d1ed210292d77f'] = 'Характеристики';
|
||||
$_LANG['product-desc-features_801ab24683a4a8c433c6eb40c48bcd9d'] = 'Скачать';
|
||||
$_LANG['product-desc-features_98edb85b00d9527ad5acebe451b3fae6'] = 'Аксессуары';
|
||||
$_LANG['product-desc-features_4351cfebe4b61d8aa5efa1d020710005'] = 'Просмотреть';
|
||||
$_LANG['product-desc-features_cb3c718c905f00adbb6735f55bfb38ef'] = 'Продукт доступен в различных вариантах';
|
||||
$_LANG['product-desc-features_b55197a49e8c4cd8c314bc2aa39d6feb'] = 'Нет в наличии';
|
||||
$_LANG['product-desc-features_2d0f6b8300be19cf35e89e66f0677f95'] = 'Добавить в корзину';
|
||||
$_LANG['product-js_3536d9c388d7375db82358f74072f5c4'] = 'Данная модификация отсутствует. Пожалуйста, выберите другую.';
|
||||
$_LANG['product-js_bc0f7082192ef02e934a036cf4991789'] = 'Товара нет в наличии';
|
||||
$_LANG['product-js_9173701581f0213f0104e064479e4ca3'] = 'с указанными характеристиками, но есть с другими';
|
||||
$_LANG['product-js_78a2d6a3d6741d9d2cbff658d5df7cd8'] = 'Пожалуйста подождите...';
|
||||
$_LANG['product-js_0d9e08f309dc15da39fe0850ef180d90'] = 'Пожалуйста заполните все необходимые поля, затем сохраните настройки.';
|
||||
$_LANG['product-prices_03de921a8ea82897e13d33d66c28b4db'] = 'Только онлайн';
|
||||
$_LANG['product-prices_800e90e940e7f1fb938b0fda5137f38c'] = 'Распродажа!';
|
||||
$_LANG['product-prices_58ef6750a23ba432fc1377b7de085d9f'] = 'Без НДС';
|
||||
$_LANG['product-prices_7bb63c7de5a5ee79356083a12f21e1e8'] = 'вместо';
|
||||
$_LANG['product-prices_d436eb0fd9de10b54a828ce6435f7e81'] = 'включить';
|
||||
$_LANG['product-prices_f85524c253c150e88136df3999ac3fd4'] = 'для эко налога';
|
||||
$_LANG['product-prices_a134618182b99ff9151d7e0b6b92410a'] = '(скидка не распространяется)';
|
||||
$_LANG['product-prices_fe3838c7c11aa406dd956566e17360d5'] = 'за';
|
||||
$_LANG['product-quantity-discount_b1cff9892b2dde30a5f5cfb393c02423'] = 'Скидка';
|
||||
$_LANG['product-quantity-discount_f5bf48aa40cad7891eb709fcf1fde128'] = 'товар';
|
||||
$_LANG['product-quantity-discount_1b793b463a1c296e1327d7048c201cc3'] = 'от (количество)';
|
||||
$_LANG['product-quantity-discount_e2dc6c48c56de466f6d13781796abf3d'] = 'скидка';
|
||||
$_LANG['product-quantity-discount_a8653ee50c469163457071f807f79cfd'] = 'Для этого товара нет скидок в зависимости от количества';
|
||||
$_LANG['shopping-cart-gift-line_e78b6f4eb3be046f4d25c07ce54954d4'] = 'Реф:';
|
||||
$_LANG['shopping-cart-gift-line_a59ba454f256953d318ac200a50d67d1'] = 'Подарок!';
|
||||
$_LANG['live_edit_49d4a9317844948aa594330102d79026'] = 'Вы уверены? Если вы закроете это окно, его положение не будет сохранено.';
|
||||
@@ -26,15 +26,15 @@
|
||||
{capture name=path}{l s='Manufacturers:'}{/capture}
|
||||
|
||||
<h1 class="page-heading product-listing">
|
||||
{l s='Manufacturers:'}
|
||||
{l s='Brands'}
|
||||
{strip}
|
||||
<span class="heading-counter">
|
||||
{if $nbManufacturers == 0}{l s='There are no manufacturers.'}
|
||||
{else}
|
||||
{if $nbManufacturers == 1}
|
||||
{l s='There is %d manufacturer.' sprintf=$nbManufacturers}
|
||||
{l s='There is %d brand' sprintf=$nbManufacturers}
|
||||
{else}
|
||||
{l s='There are %d manufacturers.' sprintf=$nbManufacturers}
|
||||
{l s='There are %d brands' sprintf=$nbManufacturers}
|
||||
{/if}
|
||||
{/if}
|
||||
</span>
|
||||
@@ -46,12 +46,13 @@
|
||||
|
||||
{if $nbManufacturers > 0}
|
||||
<div class="content_sortPagiBar">
|
||||
<div class="sortPagiBar clearfix">
|
||||
<div class="sortPagiBar clearfix hidden-xs">
|
||||
<ul class="display">
|
||||
<li class="display-title">{l s='View:'}</li>
|
||||
<li id="grid"><a onclick="display('grid');"><i class="icon-th-large"></i>{l s='Grid'}</a></li>
|
||||
<li id="list"><a onclick="display('list');"><i class="icon-th-list"></i>{l s='List'}</a></li>
|
||||
</ul>
|
||||
{include file="./nbr-product-page.tpl"}
|
||||
</div>
|
||||
<div class="top-pagination-content clearfix bottom-line">
|
||||
{include file="$tpl_dir./pagination.tpl"}
|
||||
@@ -68,7 +69,7 @@
|
||||
{math equation="(total%perLineT)" total=$smarty.foreach.manufacturers.total perLineT=$nbItemsPerLineTablet assign=totModuloTablet}
|
||||
{if $totModulo == 0}{assign var='totModulo' value=$nbItemsPerLine}{/if}
|
||||
{if $totModuloTablet == 0}{assign var='totModuloTablet' value=$nbItemsPerLineTablet}{/if}
|
||||
<li class="{if $smarty.foreach.manufacturers.iteration%$nbItemsPerLine == 0} last-in-line{elseif $smarty.foreach.manufacturers.iteration%$nbItemsPerLine == 1} first-in-line{/if} {if $smarty.foreach.manufacturers.iteration > ($smarty.foreach.manufacturers.total - $totModulo)}last-line{/if} {if $smarty.foreach.manufacturers.iteration%$nbItemsPerLineTablet == 0}last-item-of-tablet-line{elseif $smarty.foreach.manufacturers.iteration%$nbItemsPerLineTablet == 1}first-item-of-tablet-line{/if} {if $smarty.foreach.manufacturers.iteration > ($smarty.foreach.manufacturers.total - $totModuloTablet)}last-tablet-line{/if}">
|
||||
<li class="{if $smarty.foreach.manufacturers.iteration%$nbItemsPerLine == 0} last-in-line{elseif $smarty.foreach.manufacturers.iteration%$nbItemsPerLine == 1} first-in-line{/if} {if $smarty.foreach.manufacturers.iteration > ($smarty.foreach.manufacturers.total - $totModulo)}last-line{/if} {if $smarty.foreach.manufacturers.iteration%$nbItemsPerLineTablet == 0}last-item-of-tablet-line{elseif $smarty.foreach.manufacturers.iteration%$nbItemsPerLineTablet == 1}first-item-of-tablet-line{/if} {if $smarty.foreach.manufacturers.iteration > ($smarty.foreach.manufacturers.total - $totModuloTablet)}last-tablet-line{/if}{if $smarty.foreach.manufacturers.last} item-last{/if}">
|
||||
<div class="left-side">
|
||||
<!-- logo -->
|
||||
<div class="logo">
|
||||
@@ -112,13 +113,13 @@
|
||||
function display(view) {
|
||||
if (view == 'list') {
|
||||
$('#manufacturers_list').attr('class', 'list row');
|
||||
$('#manufacturers_list > li').removeClass('col-xs-12 col-md-6 col-lg-4').addClass('col-xs-12');
|
||||
$('#manufacturers_list > li').removeClass('col-xs-12 col-sm-6 col-lg-4').addClass('col-xs-12');
|
||||
$('#manufacturers_list > li').each(function(index, element) {
|
||||
html = '';
|
||||
html = '<div class="mansup-container"><div class="row">';
|
||||
html += '<div class="left-side col-xs-12 col-md-3">' + $(element).find('.left-side').html() + '</div>';
|
||||
html += '<div class="middle-side col-xs-12 col-md-5">'+ $(element).find('.middle-side').html() +'</div>';
|
||||
html += '<div class="right-side col-xs-12 col-md-4"><div class="right-side-content">'+ $(element).find('.right-side-content').html() + '</div></div>';
|
||||
html += '<div class="left-side col-xs-12 col-sm-3">' + $(element).find('.left-side').html() + '</div>';
|
||||
html += '<div class="middle-side col-xs-12 col-sm-5">'+ $(element).find('.middle-side').html() +'</div>';
|
||||
html += '<div class="right-side col-xs-12 col-sm-4"><div class="right-side-content">'+ $(element).find('.right-side-content').html() + '</div></div>';
|
||||
html += '</div></div>';
|
||||
$(element).html(html);
|
||||
});
|
||||
@@ -127,7 +128,7 @@
|
||||
$.totalStorage('display', 'list');
|
||||
} else {
|
||||
$('#manufacturers_list').attr('class', 'grid row');
|
||||
$('#manufacturers_list > li').removeClass('col-xs-12').addClass('col-xs-12 col-md-6 col-lg-4');
|
||||
$('#manufacturers_list > li').removeClass('col-xs-12').addClass('col-xs-12 col-sm-6 col-lg-4');
|
||||
$('#manufacturers_list > li').each(function(index, element) {
|
||||
html = '';
|
||||
html += '<div class="product-container">';
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
global $_MODULE;
|
||||
$_MODULE = array();
|
||||
|
||||
$_MODULE['<{bankwire}prestashop>bankwire_c888438d14855d7d96a2724ee9c306bd'] = 'Your settings have been updated.';
|
||||
$_MODULE['<{bankwire}prestashop>bankwire_5dd532f0a63d89c5af0243b74732f63c'] = 'Contact details';
|
||||
$_MODULE['<{bankwire}prestashop>bankwire_3ec365dd533ddb7ef3d1c111186ce872'] = 'Details';
|
||||
$_MODULE['<{bankwire}prestashop>payment_execution_e2867a925cba382f1436d1834bb52a1c'] = 'The total amount of your order comes to:';
|
||||
$_MODULE['<{bankwire}prestashop>payment_execution_1f87346a16cf80c372065de3c54c86d9'] = '(tax incl.)';
|
||||
$_MODULE['<{bankwire}prestashop>payment_return_b2f40690858b404ed10e62bdf422c704'] = 'Amount';
|
||||
$_MODULE['<{bankwire}prestashop>payment_return_63fb3f7c94ee5d8027bf599885de279d'] = 'Do not forget to insert your order number #%d in the subject of your bank wire.';
|
||||
$_MODULE['<{bankwire}prestashop>payment_eb1d50032721fa4c9d3518c417f91b9d'] = 'Pay by bank wire (order processing will take more time)';
|
||||
@@ -0,0 +1,54 @@
|
||||
<?php
|
||||
|
||||
global $_MODULE;
|
||||
$_MODULE = array();
|
||||
|
||||
$_MODULE['<{bankwire}prestashop>bankwire_85ee0d0492a4e37e6c183520f5d59c40'] = 'Bonifico Bancario';
|
||||
$_MODULE['<{bankwire}prestashop>bankwire_65104b0722c068ec3e8ac48153af597b'] = 'Accetta pagamenti tramite bonifico bancario.';
|
||||
$_MODULE['<{bankwire}prestashop>bankwire_cbe0a99684b145e77f3e14174ac212e3'] = 'Sei sicuro di voler cancellare questi dati?';
|
||||
$_MODULE['<{bankwire}prestashop>bankwire_0ea0227283d959415eda0cfa31d9f718'] = 'Il proprietario dell\'account e i dati devono essere configurati per usare questo modulo correttamente.';
|
||||
$_MODULE['<{bankwire}prestashop>bankwire_a02758d758e8bec77a33d7f392eb3f8a'] = 'Nessuna valuta impostata per questo modulo.';
|
||||
$_MODULE['<{bankwire}prestashop>bankwire_bfa43217dfe8261ee7cb040339085677'] = 'I dati dell\'account sono obbligatori.';
|
||||
$_MODULE['<{bankwire}prestashop>bankwire_ccab155f173ac76f79eb192703f86b18'] = 'Il proprietario dell\'account è obbligatorio.';
|
||||
$_MODULE['<{bankwire}prestashop>bankwire_c888438d14855d7d96a2724ee9c306bd'] = 'Impostazioni aggiornate';
|
||||
$_MODULE['<{bankwire}prestashop>bankwire_c1be305030739396775edaca9813f77d'] = 'Questo modulo ti permette di accettare pagamenti tramite bonifico bancario.';
|
||||
$_MODULE['<{bankwire}prestashop>bankwire_c2886e6bed60f357b08b6e99ac390c25'] = 'Se il cliente sceglie questa modalità di pagamento, l\'ordine cambierà il proprio status in \'attesa di pagamento\'.';
|
||||
$_MODULE['<{bankwire}prestashop>bankwire_f001fc4497defe598043407d06be06e5'] = 'Pertanto, dovrai confermare l\'ordine non appena ricevi il bonifico';
|
||||
$_MODULE['<{bankwire}prestashop>bankwire_5dd532f0a63d89c5af0243b74732f63c'] = 'Informazioni di contatto';
|
||||
$_MODULE['<{bankwire}prestashop>bankwire_51634daae434ad5789f89024b20e4dac'] = 'Specifica i dati del bonifico bancario per i clienti.';
|
||||
$_MODULE['<{bankwire}prestashop>bankwire_857216dd1b374de9bf54068fcd78a8f3'] = 'Intestatario del conto';
|
||||
$_MODULE['<{bankwire}prestashop>bankwire_3ec365dd533ddb7ef3d1c111186ce872'] = 'Dati';
|
||||
$_MODULE['<{bankwire}prestashop>bankwire_5fe24fbb39b58daacb7c7905ba6e3534'] = 'Come filiale della banca, codice IBAN, BIC, ecc...';
|
||||
$_MODULE['<{bankwire}prestashop>bankwire_f9a1a1bb716cbae0503d351ea2af4b34'] = 'Indirizzo della banca';
|
||||
$_MODULE['<{bankwire}prestashop>bankwire_b17f3f4dcf653a5776792498a9b44d6a'] = 'Aggiorna le impostazioni';
|
||||
$_MODULE['<{bankwire}prestashop>validation_e2b7dec8fa4b498156dfee6e4c84b156'] = 'Questo metodo di pagamento non è disponibile.';
|
||||
$_MODULE['<{bankwire}prestashop>payment_execution_99227bacb2b4dfa29ce1701ac265a923'] = 'Pagamento bonifico bancario.';
|
||||
$_MODULE['<{bankwire}prestashop>payment_execution_f1d3b424cd68795ecaa552883759aceb'] = 'Sintesi dell\'ordine';
|
||||
$_MODULE['<{bankwire}prestashop>payment_execution_879f6b8877752685a966564d072f498f'] = 'Il carrello è vuoto.';
|
||||
$_MODULE['<{bankwire}prestashop>payment_execution_05adcee99142c1a60fb38bb1330bbbc1'] = 'Bonifico bancario';
|
||||
$_MODULE['<{bankwire}prestashop>payment_execution_afda466128ee0594745d9f8152699b74'] = 'Hai scelto di pagare con bonifico bancario.';
|
||||
$_MODULE['<{bankwire}prestashop>payment_execution_c884ed19483d45970c5bf23a681e2dd2'] = 'Ecco un breve riepilogo del tuo ordine:';
|
||||
$_MODULE['<{bankwire}prestashop>payment_execution_e2867a925cba382f1436d1834bb52a1c'] = 'L\'importo totale del tuo ordine è';
|
||||
$_MODULE['<{bankwire}prestashop>payment_execution_1f87346a16cf80c372065de3c54c86d9'] = '(tasse incl.)';
|
||||
$_MODULE['<{bankwire}prestashop>payment_execution_b28be4c423d93e02081f4e79fe2434e8'] = 'Si accettano diverse valute da inviare tramite bonifico bancario.';
|
||||
$_MODULE['<{bankwire}prestashop>payment_execution_a7a08622ee5c8019b57354b99b7693b2'] = 'Scegli una delle seguenti:';
|
||||
$_MODULE['<{bankwire}prestashop>payment_execution_a854d894458d66d92cabf0411c499ef4'] = 'Accettiamo le seguente valute da inviare tramite bonifico bancario:';
|
||||
$_MODULE['<{bankwire}prestashop>payment_execution_3dd021316505c0204989f984246c6ff1'] = 'Le informazioni sul conto corrente saranno visualizzate nella pagina successiva.';
|
||||
$_MODULE['<{bankwire}prestashop>payment_execution_93c1f9dffc8c38b2c108d449a9181d92'] = 'Conferma l\'ordine cliccando su \'confermo il mio ordine\'';
|
||||
$_MODULE['<{bankwire}prestashop>payment_execution_baa62374832554652160fe5a827b2741'] = 'Confermo il mio ordine';
|
||||
$_MODULE['<{bankwire}prestashop>payment_execution_569fd05bdafa1712c4f6be5b153b8418'] = 'Altri metodi di pagamento';
|
||||
$_MODULE['<{bankwire}prestashop>payment_return_88526efe38fd18179a127024aba8c1d7'] = 'Il tuo ordine su %s è completo.';
|
||||
$_MODULE['<{bankwire}prestashop>payment_return_1f8cdc30326f1f930b0c87b25fdac965'] = 'Inviaci un bonifico bancario con';
|
||||
$_MODULE['<{bankwire}prestashop>payment_return_b2f40690858b404ed10e62bdf422c704'] = 'Importo';
|
||||
$_MODULE['<{bankwire}prestashop>payment_return_5ca0b1b910f393ed1f9f6fa99e414255'] = 'Beneficiario';
|
||||
$_MODULE['<{bankwire}prestashop>payment_return_d717aa33e18263b8405ba00e94353cdc'] = 'Con questi dati';
|
||||
$_MODULE['<{bankwire}prestashop>payment_return_984482eb9ff11e6310fef641d2268a2a'] = 'Istituto bancario';
|
||||
$_MODULE['<{bankwire}prestashop>payment_return_63fb3f7c94ee5d8027bf599885de279d'] = 'Non dimenticarti di inserire il tuo numero d\'ordine n.%d nel campo oggetto del tuo bonifico';
|
||||
$_MODULE['<{bankwire}prestashop>payment_return_1faa25b80a8d31e5ef25a78d3336606d'] = 'Non dimenticarti di inserire il riferimento d\'ordine %s nel campo oggetto del tuo bonifico.';
|
||||
$_MODULE['<{bankwire}prestashop>payment_return_19c419a8a4f1cd621853376a930a2e24'] = 'Ti è stata inviata una email con queste informazioni.';
|
||||
$_MODULE['<{bankwire}prestashop>payment_return_b9a1cae09e5754424e33764777cfcaa0'] = 'Il tuo ordine verrà inviato non appena avremo ricevuto la tua transazione.';
|
||||
$_MODULE['<{bankwire}prestashop>payment_return_ca7e41a658753c87973936d7ce2429a8'] = 'Per eventuali domande o per ulteriori informazioni, contatta la nostra';
|
||||
$_MODULE['<{bankwire}prestashop>payment_return_dfe239de8c0b2453a8e8f7657a191d5d'] = 'assistenza clienti';
|
||||
$_MODULE['<{bankwire}prestashop>payment_return_d15feee53d81ea16269e54d4784fa123'] = 'Abbiamo notato un problema con il tuo ordine. Se pensi che sia un errore, puoi contattare il nostro';
|
||||
$_MODULE['<{bankwire}prestashop>payment_5e1695822fc5af98f6b749ea3cbc9b4c'] = 'Paga con bonifico bancario';
|
||||
$_MODULE['<{bankwire}prestashop>payment_eb1d50032721fa4c9d3518c417f91b9d'] = 'Paga con bonifico bancario (l\'elaborazione dell\'ordine sarà più lunga)';
|
||||
@@ -66,12 +66,12 @@
|
||||
<p>
|
||||
- {l s='Bank wire account information will be displayed on the next page.' mod='bankwire'}
|
||||
<br />
|
||||
- {l s='Please confirm your order by clicking "Place my order."' mod='bankwire'}.
|
||||
- {l s='Please confirm your order by clicking "I confirm my order."' mod='bankwire'}.
|
||||
</p>
|
||||
</div>
|
||||
<p class="cart_navigation clearfix" id="cart_navigation">
|
||||
<a href="{$link->getPageLink('order', true, NULL, "step=3")|escape:'html'}" class="button-exclusive btn btn-default"><i class="icon-chevron-left"></i>{l s='Other payment methods' mod='bankwire'}</a>
|
||||
<button type="submit" class="button btn btn-default button-medium"><span>{l s='Place my order' mod='bankwire'}<i class="icon-chevron-right right"></i></span></button>
|
||||
<button type="submit" class="button btn btn-default button-medium"><span>{l s='I confirm my order' mod='bankwire'}<i class="icon-chevron-right right"></i></span></button>
|
||||
</p>
|
||||
</form>
|
||||
{/if}
|
||||
|
||||
@@ -33,7 +33,7 @@
|
||||
"link": "{$link->getProductLink($product.id_product, $product.link_rewrite, $product.category, null, null, $product.id_shop, $product.id_product_attribute)|addslashes|replace:'\\\'':'\''}",
|
||||
"quantity": {$product.cart_quantity|intval},
|
||||
"image": "{$link->getImageLink($product.link_rewrite, $product.id_image, 'home_default')|addslashes|replace:'\\\'':'\''}",
|
||||
"image_cart": "{$link->getImageLink($product.link_rewrite, $product.id_image, 'cart_default')|addslashes|replace:'\\\'':'\''}",
|
||||
"image_cart": "{$link->getImageLink($product.link_rewrite, $product.id_image, 'cart_default')|addslashes|replace:'\\\'':'\''}",
|
||||
"priceByLine": "{if $priceDisplay == $smarty.const.PS_TAX_EXC}{displayWtPrice|html_entity_decode:2:'UTF-8' p=$product.total}{else}{displayWtPrice|html_entity_decode:2:'UTF-8' p=$product.total_wt}{/if}",
|
||||
"name": "{$product.name|html_entity_decode:2:'UTF-8'|truncate:15:'...':true|escape:'htmlall'}",
|
||||
"price": "{if $priceDisplay == $smarty.const.PS_TAX_EXC}{displayWtPrice|html_entity_decode:2:'UTF-8' p=$product.total}{else}{displayWtPrice|html_entity_decode:2:'UTF-8' p=$product.total_wt}{/if}",
|
||||
|
||||
@@ -99,9 +99,12 @@ var generated_date = {$smarty.now|intval};
|
||||
</div>
|
||||
<span class="remove_link">{if !isset($customizedDatas.$productId.$productAttributeId) && (!isset($product.is_gift) || !$product.is_gift)}<a rel="nofollow" class="ajax_cart_block_remove_link" href="{$link->getPageLink('cart', true, NULL, "delete=1&id_product={$product.id_product}&ipa={$product.id_product_attribute}&id_address_delivery={$product.id_address_delivery}&token={$static_token}", true)|escape:'html'}" title="{l s='remove this product from my cart' mod='blockcart'}"> </a>{/if}</span>
|
||||
</dt>
|
||||
{if isset($product.attributes_small) && isset($customizedDatas.$productId.$productAttributeId[$product.id_address_delivery])}
|
||||
{if isset($product.attributes_small)}
|
||||
<dd id="cart_block_combination_of_{$product.id_product}{if $product.id_product_attribute}_{$product.id_product_attribute}{/if}_{$product.id_address_delivery|intval}" class="{if $smarty.foreach.myLoop.first}first_item{elseif $smarty.foreach.myLoop.last}last_item{else}item{/if}">
|
||||
{/if}
|
||||
|
||||
<!-- Customizable datas -->
|
||||
{if isset($customizedDatas.$productId.$productAttributeId[$product.id_address_delivery])}
|
||||
{if !isset($product.attributes_small)}<dd id="cart_block_combination_of_{$product.id_product}_{if $product.id_product_attribute}{$product.id_product_attribute}{else}0{/if}_{if $product.id_address_delivery}{$product.id_address_delivery}{else}0{/if}" class="{if $smarty.foreach.myLoop.first}first_item{elseif $smarty.foreach.myLoop.last}last_item{else}item{/if}">{/if}
|
||||
<ul class="cart_block_customizations" id="customization_{$productId}_{$productAttributeId}">
|
||||
{foreach from=$customizedDatas.$productId.$productAttributeId[$product.id_address_delivery] key='id_customization' item='customization' name='customizations'}
|
||||
@@ -186,51 +189,52 @@ var generated_date = {$smarty.now|intval};
|
||||
</div>
|
||||
</div>
|
||||
<div id="layer_cart">
|
||||
<div class="layer_cart_product col-xs-12 col-md-6">
|
||||
<h2><i class="icon-ok"></i>{l s='Product successfully added to your shopping cart' mod='blockcart'}</h2>
|
||||
<div class="product-image-container">
|
||||
<img class="layer_cart_img img-responsive" alt="img" src="{$base_dir}img/404.gif"/>
|
||||
</div>
|
||||
<div class="layer_cart_product_info">
|
||||
<span id="layer_cart_product_title" class="product-name"></span>
|
||||
<span id="layer_cart_product_attributes"></span>
|
||||
<div><strong class="dark">{l s='Quantity:' mod='blockcart'}</strong><span id="layer_cart_product_quantity"></span></div>
|
||||
<div><strong class="dark">{l s='Total:' mod='blockcart'}</strong><span id="layer_cart_product_price"></span></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="layer_cart_cart col-xs-12 col-md-6">
|
||||
<span class="cross" title="{l s='Close window' mod='blockcart'}"></span>
|
||||
<h2><span>{l s='Cart:' mod='blockcart'}</span> <span class="ajax_cart_quantity">{$cart_qties}</span> <span class="ajax_cart_product_txt{if $cart_qties > 1} unvisible{/if}">{l s='item' mod='blockcart'}</span><span class="ajax_cart_product_txt_s{if $cart_qties < 2} unvisible{/if}">{l s='items' mod='blockcart'}</span></h2>
|
||||
<div class="layer_cart_row">
|
||||
<strong class="dark">{l s='Total products' mod='blockcart'}{if $priceDisplay == 1} {l s='(tax exclu.):' mod='blockcart'}{else} {l s='(tax incl.):' mod='blockcart'}{/if}</strong>
|
||||
<span class="ajax_block_products_total">{if $cart_qties > 0}{convertPrice price=$cart->getOrderTotal(false, Cart::ONLY_PRODUCTS)}{/if}</span>
|
||||
</div>
|
||||
{if $show_wrapping}
|
||||
<div class="layer_cart_row">
|
||||
<strong class="dark">{l s='Wrapping' mod='blockcart'}{if $priceDisplay == 1} {l s='(tax exclu.):' mod='blockcart'}{else} {l s='(tax incl.):' mod='blockcart'}{/if}</strong>
|
||||
<span class="price cart_block_wrapping_cost">{if $priceDisplay == 1}{convertPrice price=$cart->getOrderTotal(false, Cart::ONLY_WRAPPING)}{else}{convertPrice price=$cart->getOrderTotal(true, Cart::ONLY_WRAPPING)}{/if}</span>
|
||||
</div>
|
||||
{/if}
|
||||
<div class="layer_cart_row">
|
||||
<strong class="dark">{l s='Total shipping (tax exclu.):' mod='blockcart'}</strong>
|
||||
<span class="ajax_cart_shipping_cost">{if $shipping_cost_float == 0}{l s='Free shipping!' mod='blockcart'}{else}{$shipping_cost}{/if}</span>
|
||||
</div>
|
||||
{if $show_tax && isset($tax_cost)}
|
||||
<div class="layer_cart_row">
|
||||
<strong class="dark">{l s='Tax' mod='blockcart'}</strong>
|
||||
<span id="cart_block_tax_cost" class="price ajax_cart_tax_cost">{$tax_cost}</span>
|
||||
<div class="clearfix">
|
||||
<div class="layer_cart_product col-xs-12 col-md-6">
|
||||
<span class="cross" title="{l s='Close window' mod='blockcart'}"></span>
|
||||
<h2><i class="icon-ok"></i>{l s='Product successfully added to your shopping cart' mod='blockcart'}</h2>
|
||||
<div class="product-image-container">
|
||||
<img class="layer_cart_img img-responsive" alt="img" src="{$base_dir}img/404.gif"/>
|
||||
</div>
|
||||
<div class="layer_cart_product_info">
|
||||
<span id="layer_cart_product_title" class="product-name"></span>
|
||||
<span id="layer_cart_product_attributes"></span>
|
||||
<div><strong class="dark">{l s='Quantity:' mod='blockcart'}</strong><span id="layer_cart_product_quantity"></span></div>
|
||||
<div><strong class="dark">{l s='Total:' mod='blockcart'}</strong><span id="layer_cart_product_price"></span></div>
|
||||
</div>
|
||||
{/if}
|
||||
<div class="layer_cart_row">
|
||||
<strong class="dark">{l s='Total' mod='blockcart'}{if $priceDisplay == 1} {l s='(tax exclu.):' mod='blockcart'}{else} {l s='(tax incl.):' mod='blockcart'}{/if}</strong>
|
||||
<span class="ajax_cart_total">{if $cart_qties > 0}{if $priceDisplay == 1}{convertPrice price=$cart->getOrderTotal(false)}{else}{convertPrice price=$cart->getOrderTotal(true)}{/if}{/if}</span>
|
||||
</div>
|
||||
<span class="freeshipping{if $cart_qties > 0 && ($free_shipping <= 0 || $shipping_cost_float == 0)} unvisible{/if}"><span>{l s='Spend just' mod='blockcart'}</span> <span class="ajax_cart_free_shipping">{convertPrice price=$free_shipping}</span><span> {l s='more and get' mod='blockcart'}</span> <span>{l s='FREE SHIPPING!' mod='blockcart'}</span></span>
|
||||
<div class="button-container">
|
||||
<span class="continue btn btn-default button exclusive-medium" title="{l s='Continue shopping' mod='blockcart'}"><span><i class="icon-chevron-left left"></i>{l s='Continue shopping' mod='blockcart'}</span></span>
|
||||
<a class="btn btn-default button button-medium" href="{$link->getPageLink("$order_process", true)|escape:'html'}" title="{l s='Procedd to checkout' mod='blockcart'}" rel="nofollow"><span>{l s='Procedd to checkout' mod='blockcart'}<i class="icon-chevron-right right"></i></span></a>
|
||||
<div class="layer_cart_cart col-xs-12 col-md-6">
|
||||
<h2><span>{l s='Cart:' mod='blockcart'}</span> <span class="ajax_cart_quantity">{$cart_qties}</span> <span class="ajax_cart_product_txt{if $cart_qties > 1} unvisible{/if}">{l s='item' mod='blockcart'}</span><span class="ajax_cart_product_txt_s{if $cart_qties < 2} unvisible{/if}">{l s='items' mod='blockcart'}</span></h2>
|
||||
<div class="layer_cart_row">
|
||||
<strong class="dark">{l s='Total products' mod='blockcart'}{if $priceDisplay == 1} {l s='(tax exclu.):' mod='blockcart'}{else} {l s='(tax incl.):' mod='blockcart'}{/if}</strong>
|
||||
<span class="ajax_block_products_total">{if $cart_qties > 0}{convertPrice price=$cart->getOrderTotal(false, Cart::ONLY_PRODUCTS)}{/if}</span>
|
||||
</div>
|
||||
{if $show_wrapping}
|
||||
<div class="layer_cart_row">
|
||||
<strong class="dark">{l s='Wrapping' mod='blockcart'}{if $priceDisplay == 1} {l s='(tax exclu.):' mod='blockcart'}{else} {l s='(tax incl.):' mod='blockcart'}{/if}</strong>
|
||||
<span class="price cart_block_wrapping_cost">{if $priceDisplay == 1}{convertPrice price=$cart->getOrderTotal(false, Cart::ONLY_WRAPPING)}{else}{convertPrice price=$cart->getOrderTotal(true, Cart::ONLY_WRAPPING)}{/if}</span>
|
||||
</div>
|
||||
{/if}
|
||||
<div class="layer_cart_row">
|
||||
<strong class="dark">{l s='Total shipping (tax exclu.):' mod='blockcart'}</strong>
|
||||
<span class="ajax_cart_shipping_cost">{if $shipping_cost_float == 0}{l s='Free shipping!' mod='blockcart'}{else}{$shipping_cost}{/if}</span>
|
||||
</div>
|
||||
{if $show_tax && isset($tax_cost)}
|
||||
<div class="layer_cart_row">
|
||||
<strong class="dark">{l s='Tax' mod='blockcart'}</strong>
|
||||
<span id="cart_block_tax_cost" class="price ajax_cart_tax_cost">{$tax_cost}</span>
|
||||
</div>
|
||||
{/if}
|
||||
<div class="layer_cart_row">
|
||||
<strong class="dark">{l s='Total' mod='blockcart'}{if $priceDisplay == 1} {l s='(tax exclu.):' mod='blockcart'}{else} {l s='(tax incl.):' mod='blockcart'}{/if}</strong>
|
||||
<span class="ajax_cart_total">{if $cart_qties > 0}{if $priceDisplay == 1}{convertPrice price=$cart->getOrderTotal(false)}{else}{convertPrice price=$cart->getOrderTotal(true)}{/if}{/if}</span>
|
||||
</div>
|
||||
<div class="button-container">
|
||||
<span class="continue btn btn-default button exclusive-medium" title="{l s='Continue shopping' mod='blockcart'}"><span><i class="icon-chevron-left left"></i>{l s='Continue shopping' mod='blockcart'}</span></span>
|
||||
<a class="btn btn-default button button-medium" href="{$link->getPageLink("$order_process", true)|escape:'html'}" title="{l s='Procedd to checkout' mod='blockcart'}" rel="nofollow"><span>{l s='Proceed to checkout' mod='blockcart'}<i class="icon-chevron-right right"></i></span></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="crossseling"></div>
|
||||
</div>
|
||||
<div class="layer_cart_overlay"></div>
|
||||
|
||||
@@ -0,0 +1,50 @@
|
||||
{*
|
||||
* 2007-2013 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 <contact@prestashop.com>
|
||||
* @copyright 2007-2013 PrestaShop SA
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*}
|
||||
|
||||
|
||||
{if isset($orderProducts) && count($orderProducts) > 0}
|
||||
<div class="crossseling-content">
|
||||
<h2>{l s='Customers who bought this product also bought' mod='blockcart'}</h2>
|
||||
<div id="blockcart_list">
|
||||
<ul id="blockcart_caroucel">
|
||||
{foreach from=$orderProducts item='orderProduct' name=orderProduct}
|
||||
<li>
|
||||
<div class="product-image-container">
|
||||
<a href="{$orderProduct.link}" title="{$orderProduct.name|htmlspecialchars}" class="lnk_img">
|
||||
<img class="img-responsive" src="{$orderProduct.image}" alt="{$orderProduct.name|htmlspecialchars}" />
|
||||
</a>
|
||||
</div>
|
||||
<p class="product-name"><a href="{$orderProduct.link}" title="{$orderProduct.name|htmlspecialchars}">{$orderProduct.name|truncate:15:'...'|escape:'htmlall':'UTF-8'}</a></p>
|
||||
{if $orderProduct.show_price == 1 AND !isset($restricted_country_mode) AND !$PS_CATALOG_MODE}
|
||||
<span class="price_display">
|
||||
<span class="price">{convertPrice price=$orderProduct.displayed_price}</span>
|
||||
</span>
|
||||
{/if}
|
||||
</li>
|
||||
{/foreach}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
@@ -24,9 +24,8 @@
|
||||
*}
|
||||
|
||||
<!-- Block categories module -->
|
||||
{if $blockCategTree && $blockCategTree.children|@count}
|
||||
<div id="categories_block_left" class="block">
|
||||
<h4 class="title_block">{if isset($currentCategory)}{$currentCategory->name|escape}{else}{l s='Categories' mod='blockcategories'}{/if}</h4>
|
||||
<p class="title_block">{l s='Categories' mod='blockcategories'}</p>
|
||||
<div class="block_content">
|
||||
<ul class="tree {if $isDhtml}dhtml{/if}">
|
||||
{foreach from=$blockCategTree.children item=child name=blockCategTree}
|
||||
@@ -46,5 +45,4 @@
|
||||
</script>
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
<!-- /Block categories module -->
|
||||
|
||||
@@ -30,7 +30,7 @@
|
||||
{if $special}
|
||||
<ul>
|
||||
<li class="clearfix">
|
||||
<a class="products-block-image" href="{$special.link|escape:'html'}"><img src="{$link->getImageLink($special.link_rewrite, $special.id_image, 'small_default')|escape:'html'}" alt="{$special.legend|escape:html:'UTF-8'}" title="{$special.name|escape:html:'UTF-8'}" /></a>
|
||||
<a class="products-block-image" href="{$special.link|escape:'html'}"><img class="replace-2x img-responsive" src="{$link->getImageLink($special.link_rewrite, $special.id_image, 'small_default')|escape:'html'}" alt="{$special.legend|escape:html:'UTF-8'}" title="{$special.name|escape:html:'UTF-8'}" /></a>
|
||||
<div class="product-content">
|
||||
<h5><a class="product-name" href="{$special.link|escape:'html'}" title="{$special.name|escape:html:'UTF-8'}">{$special.name|escape:html:'UTF-8'}</a></h5>
|
||||
{if isset($special.description_short) && $special.description_short}
|
||||
|
||||
@@ -27,7 +27,7 @@
|
||||
<div id="stores_block_left" class="block">
|
||||
<p class="title_block"><a href="{$link->getPageLink('stores')|escape:'html'}" title="{l s='Our stores' mod='blockstore'}">{l s='Our stores' mod='blockstore'}</a></p>
|
||||
<div class="block_content blockstore">
|
||||
<p class="store_image"><a href="{$link->getPageLink('stores')|escape:'html'}" title="{l s='Our stores' mod='blockstore'}"><img src="{$module_dir}{$store_img}" alt="{l s='Our stores' mod='blockstore'}" /></a></p>
|
||||
<p class="store_image"><a href="{$link->getPageLink('stores')|escape:'html'}" title="{l s='Our stores' mod='blockstore'}"><img class="img-responsive" src="{$module_dir}{$store_img}" alt="{l s='Our stores' mod='blockstore'}" /></a></p>
|
||||
<p class="store-description">Lorem ipsum dolor sit amet conse ctetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magn.</p>
|
||||
<div>
|
||||
<a class="btn btn-default button button-small" href="{$link->getPageLink('stores')|escape:'html'}" title="{l s='Our stores' mod='blockstore'}"><span>{l s='Discover our stores' mod='blockstore'}<i class="icon-chevron-right right"></i></span></a>
|
||||
|
||||
@@ -43,71 +43,86 @@
|
||||
<label>{l s='Permalink' mod='blockwishlist'}:</label>
|
||||
<input type="text" class="form-control" value="{$base_dir_ssl}modules/blockwishlist/view.php?token={$token_wish|escape:'htmlall':'UTF-8'}" readonly="readonly" /></p>
|
||||
<p class="submit">
|
||||
<a href="#" id="showSendWishlist" class="button_account exclusive" onclick="WishlistVisibility('wl_send', 'SendWishlist'); return false;" title="{l s='Send this wishlist' mod='blockwishlist'}">{l s='Send this wishlist' mod='blockwishlist'}</a>
|
||||
<a href="#" id="showSendWishlist" class="btn btn-default button button-small" onclick="WishlistVisibility('wl_send', 'SendWishlist'); return false;" title="{l s='Send this wishlist' mod='blockwishlist'}"><span>{l s='Send this wishlist' mod='blockwishlist'}</span></a>
|
||||
</p>
|
||||
{/if}
|
||||
<div class="wlp_bought">
|
||||
{assign var='nbItemsPerLine' value=4}
|
||||
{assign var='nbItemsPerLineTablet' value=3}
|
||||
{assign var='nbLi' value=$products|@count}
|
||||
{math equation="nbLi/nbItemsPerLine" nbLi=$nbLi nbItemsPerLine=$nbItemsPerLine assign=nbLines}
|
||||
{math equation="nbLi/nbItemsPerLineTablet" nbLi=$nbLi nbItemsPerLineTablet=$nbItemsPerLineTablet assign=nbLinesTablet}
|
||||
<ul class="row wlp_bought_list">
|
||||
{foreach from=$products item=product name=i}
|
||||
<li id="wlp_{$product.id_product}_{$product.id_product_attribute}" class="col-xs-12 col-sm-4 col-md-3">
|
||||
<div class="inner-content">
|
||||
<a href="javascript:;" class="lnkdel" onclick="WishlistProductManage('wlp_bought', 'delete', '{$id_wishlist}', '{$product.id_product}', '{$product.id_product_attribute}', $('#quantity_{$product.id_product}_{$product.id_product_attribute}').val(), $('#priority_{$product.id_product}_{$product.id_product_attribute}').val());" title="{l s='Delete' mod='blockwishlist'}">» {l s='Delete' mod='blockwishlist'}</a>
|
||||
{math equation="(total%perLine)" total=$smarty.foreach.i.total perLine=$nbItemsPerLine assign=totModulo}
|
||||
{math equation="(total%perLineT)" total=$smarty.foreach.i.total perLineT=$nbItemsPerLineTablet assign=totModuloTablet}
|
||||
{if $totModulo == 0}{assign var='totModulo' value=$nbItemsPerLine}{/if}
|
||||
{if $totModuloTablet == 0}{assign var='totModuloTablet' value=$nbItemsPerLineTablet}{/if}
|
||||
<li id="wlp_{$product.id_product}_{$product.id_product_attribute}" class="col-xs-12 col-sm-4 col-md-3 {if $smarty.foreach.i.iteration%$nbItemsPerLine == 0} last-in-line{elseif $smarty.foreach.i.iteration%$nbItemsPerLine == 1} first-in-line{/if} {if $smarty.foreach.i.iteration > ($smarty.foreach.i.total - $totModulo)}last-line{/if} {if $smarty.foreach.i.iteration%$nbItemsPerLineTablet == 0}last-item-of-tablet-line{elseif $smarty.foreach.i.iteration%$nbItemsPerLineTablet == 1}first-item-of-tablet-line{/if} {if $smarty.foreach.i.iteration > ($smarty.foreach.i.total - $totModuloTablet)}last-tablet-line{/if}">
|
||||
<div class="row">
|
||||
<div class="col-xs-6 col-sm-12">
|
||||
<div class="product_image">
|
||||
<a href="{$link->getProductlink($product.id_product, $product.link_rewrite, $product.category_rewrite)|escape:'html'}" title="{l s='Product detail' mod='blockwishlist'}">
|
||||
<img src="{$link->getImageLink($product.link_rewrite, $product.cover, 'medium_default')|escape:'html'}" alt="{$product.name|escape:'htmlall':'UTF-8'}" />
|
||||
<img class="replace-2x img-responsive" src="{$link->getImageLink($product.link_rewrite, $product.cover, 'home_default')|escape:'html'}" alt="{$product.name|escape:'htmlall':'UTF-8'}" />
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xs-6 col-sm-12">
|
||||
<div class="product_infos">
|
||||
<p id="s_title" class="product_name">{$product.name|truncate:30:'...'|escape:'htmlall':'UTF-8'}</p>
|
||||
<span class="wishlist_product_detail">
|
||||
{if isset($product.attributes_small)}
|
||||
<small><a href="{$link->getProductlink($product.id_product, $product.link_rewrite, $product.category_rewrite)|escape:'html'}" title="{l s='Product detail' mod='blockwishlist'}">{$product.attributes_small|escape:'htmlall':'UTF-8'}</a></small>
|
||||
<a href="javascript:;" class="lnkdel" onclick="WishlistProductManage('wlp_bought', 'delete', '{$id_wishlist}', '{$product.id_product}', '{$product.id_product_attribute}', $('#quantity_{$product.id_product}_{$product.id_product_attribute}').val(), $('#priority_{$product.id_product}_{$product.id_product_attribute}').val());" title="{l s='Delete' mod='blockwishlist'}"><i class="icon-remove-sign"></i></a>
|
||||
<p id="s_title" class="product-name">
|
||||
{$product.name|truncate:30:'...'|escape:'htmlall':'UTF-8'}
|
||||
{if isset($product.attributes_small)}
|
||||
<small><a href="{$link->getProductlink($product.id_product, $product.link_rewrite, $product.category_rewrite)|escape:'html'}" title="{l s='Product detail' mod='blockwishlist'}">{$product.attributes_small|escape:'htmlall':'UTF-8'}</a></small>
|
||||
{/if}
|
||||
</p>
|
||||
<div class="wishlist_product_detail">
|
||||
<p class="form-group">
|
||||
<label for="quantity_{$product.id_product}_{$product.id_product_attribute}">{l s='Quantity' mod='blockwishlist'}:</label>
|
||||
<input type="text" class="form-control" id="quantity_{$product.id_product}_{$product.id_product_attribute}" value="{$product.quantity|intval}" size="3" />
|
||||
<label for="quantity_{$product.id_product}_{$product.id_product_attribute}">{l s='Quantity' mod='blockwishlist'}:</label>
|
||||
<input type="text" class="form-control grey" id="quantity_{$product.id_product}_{$product.id_product_attribute}" value="{$product.quantity|intval}" size="3" />
|
||||
</p>
|
||||
<p class="form-group">
|
||||
<label for="priority_{$product.id_product}_{$product.id_product_attribute}">{l s='Priority' mod='blockwishlist'}:</label>
|
||||
<select id="priority_{$product.id_product}_{$product.id_product_attribute}" class="form-control">
|
||||
<select id="priority_{$product.id_product}_{$product.id_product_attribute}" class="form-control grey">
|
||||
<option value="0"{if $product.priority eq 0} selected="selected"{/if}>{l s='High' mod='blockwishlist'}</option>
|
||||
<option value="1"{if $product.priority eq 1} selected="selected"{/if}>{l s='Medium' mod='blockwishlist'}</option>
|
||||
<option value="2"{if $product.priority eq 2} selected="selected"{/if}>{l s='Low' mod='blockwishlist'}</option>
|
||||
</select>
|
||||
</p>
|
||||
</span>
|
||||
</p>
|
||||
</div>
|
||||
<div class="btn_action">
|
||||
<a href="javascript:;" class="btn btn-default button button-small" onclick="WishlistProductManage('wlp_bought_{$product.id_product_attribute}', 'update', '{$id_wishlist}', '{$product.id_product}', '{$product.id_product_attribute}', $('#quantity_{$product.id_product}_{$product.id_product_attribute}').val(), $('#priority_{$product.id_product}_{$product.id_product_attribute}').val());" title="{l s='Save' mod='blockwishlist'}"><span>{l s='Save' mod='blockwishlist'}</span></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="btn_action">
|
||||
<a href="javascript:;" class="exclusive lnksave" onclick="WishlistProductManage('wlp_bought_{$product.id_product_attribute}', 'update', '{$id_wishlist}', '{$product.id_product}', '{$product.id_product_attribute}', $('#quantity_{$product.id_product}_{$product.id_product_attribute}').val(), $('#priority_{$product.id_product}_{$product.id_product_attribute}').val());" title="{l s='Save' mod='blockwishlist'}">{l s='Save' mod='blockwishlist'}</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
{/foreach}
|
||||
</ul>
|
||||
</div>
|
||||
{if !$refresh}
|
||||
<form method="post" class="wl_send std hidden" onsubmit="return (false);">
|
||||
<form method="post" class="wl_send box unvisible" onsubmit="return (false);">
|
||||
<fieldset>
|
||||
<p class="required">
|
||||
<div class="required form-group">
|
||||
<label for="email1">{l s='Email' mod='blockwishlist'}1 <sup>*</sup></label>
|
||||
<input type="text" name="email1" id="email1" />
|
||||
</p>
|
||||
<input type="text" name="email1" id="email1" class="form-control" />
|
||||
</div>
|
||||
{section name=i loop=11 start=2}
|
||||
<p>
|
||||
<div class="form-group">
|
||||
<label for="email{$smarty.section.i.index}">{l s='Email' mod='blockwishlist'}{$smarty.section.i.index}</label>
|
||||
<input type="text" name="email{$smarty.section.i.index}" id="email{$smarty.section.i.index}" />
|
||||
</p>
|
||||
<input type="text" name="email{$smarty.section.i.index}" id="email{$smarty.section.i.index}" class="form-control" />
|
||||
</div>
|
||||
{/section}
|
||||
<p class="submit">
|
||||
<input class="button" type="submit" value="{l s='Send' mod='blockwishlist'}" name="submitWishlist" onclick="WishlistSend('wl_send', '{$id_wishlist}', 'email');" />
|
||||
</p>
|
||||
<div class="submit">
|
||||
<button class="btn btn-default button button-small" type="submit" name="submitWishlist" onclick="WishlistSend('wl_send', '{$id_wishlist}', 'email');"><span>{l s='Send' mod='blockwishlist'}</span></button>
|
||||
</div>
|
||||
<p class="required">
|
||||
<sup>*</sup> {l s='Required field'}
|
||||
</p>
|
||||
</fieldset>
|
||||
</form>
|
||||
{if count($productsBoughts)}
|
||||
<table class="wlp_bought_infos hidden std">
|
||||
<table class="wlp_bought_infos unvisible table table-bordered table-responsive">
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="first_item">{l s='Product' mod='blockwishlist'}</td>
|
||||
|
||||
@@ -22,12 +22,11 @@
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*}
|
||||
|
||||
<div id="view_wishlist">
|
||||
<h1 class="page-heading">{l s='Wishlist' mod='blockwishlist'}</h1>
|
||||
<h1 class="page-heading bottom-indent">{l s='Wishlist' mod='blockwishlist'}</h1>
|
||||
{if $wishlists}
|
||||
<p>
|
||||
{l s='Other wishlists of' mod='blockwishlist'} {$current_wishlist.firstname} {$current_wishlist.lastname}:
|
||||
<strong class="dark">{l s='Other wishlists of' mod='blockwishlist'} {$current_wishlist.firstname} {$current_wishlist.lastname}:</strong>
|
||||
{foreach from=$wishlists item=wishlist name=i}
|
||||
{if $wishlist.id_wishlist != $current_wishlist.id_wishlist}
|
||||
<a href="{$base_dir_ssl}modules/blockwishlist/view.php?token={$wishlist.token}" title="{$wishlist.name}" rel="nofollow">{$wishlist.name}</a>
|
||||
@@ -40,26 +39,40 @@
|
||||
{/if}
|
||||
|
||||
<div class="wlp_bought">
|
||||
{assign var='nbItemsPerLine' value=3}
|
||||
{assign var='nbItemsPerLineTablet' value=2}
|
||||
{assign var='nbLi' value=$products|@count}
|
||||
{math equation="nbLi/nbItemsPerLine" nbLi=$nbLi nbItemsPerLine=$nbItemsPerLine assign=nbLines}
|
||||
{math equation="nbLi/nbItemsPerLineTablet" nbLi=$nbLi nbItemsPerLineTablet=$nbItemsPerLineTablet assign=nbLinesTablet}
|
||||
<ul class="row wlp_bought_list">
|
||||
{foreach from=$products item=product name=i}
|
||||
<li id="wlp_{$product.id_product}_{$product.id_product_attribute}" class="col-xs-12 col-sm-4 col-md-3">
|
||||
<div class="inner-content">
|
||||
<div class="product_image">
|
||||
{math equation="(total%perLine)" total=$smarty.foreach.i.total perLine=$nbItemsPerLine assign=totModulo}
|
||||
{math equation="(total%perLineT)" total=$smarty.foreach.i.total perLineT=$nbItemsPerLineTablet assign=totModuloTablet}
|
||||
{if $totModulo == 0}{assign var='totModulo' value=$nbItemsPerLine}{/if}
|
||||
{if $totModuloTablet == 0}{assign var='totModuloTablet' value=$nbItemsPerLineTablet}{/if}
|
||||
<li id="wlp_{$product.id_product}_{$product.id_product_attribute}" class="ajax_block_product col-xs-12 col-sm-6 col-md-4 {if $smarty.foreach.i.iteration%$nbItemsPerLine == 0} last-in-line{elseif $smarty.foreach.i.iteration%$nbItemsPerLine == 1} first-in-line{/if} {if $smarty.foreach.i.iteration > ($smarty.foreach.i.total - $totModulo)}last-line{/if} {if $smarty.foreach.i.iteration%$nbItemsPerLineTablet == 0}last-item-of-tablet-line{elseif $smarty.foreach.i.iteration%$nbItemsPerLineTablet == 1}first-item-of-tablet-line{/if} {if $smarty.foreach.i.iteration > ($smarty.foreach.i.total - $totModuloTablet)}last-tablet-line{/if}">
|
||||
<div class="row">
|
||||
<div class="col-xs-6 col-sm-12">
|
||||
<div class="product_image">
|
||||
<a href="{$link->getProductlink($product.id_product, $product.link_rewrite, $product.category_rewrite)|escape:'html'}" title="{l s='Product detail' mod='blockwishlist'}">
|
||||
<img src="{$link->getImageLink($product.link_rewrite, $product.cover, 'medium_default')|escape:'html'}" alt="{$product.name|escape:'htmlall':'UTF-8'}" />
|
||||
<img class="replace-2x img-responsive" src="{$link->getImageLink($product.link_rewrite, $product.cover, 'home_default')|escape:'html'}" alt="{$product.name|escape:'htmlall':'UTF-8'}" />
|
||||
</a>
|
||||
</div>
|
||||
<div class="product_infos">
|
||||
<p id="s_title" class="product_name">{$product.name|truncate:30:'...'|escape:'htmlall':'UTF-8'}</p>
|
||||
</div>
|
||||
<div class="col-xs-6 col-sm-12">
|
||||
<div class="product_infos">
|
||||
<p id="s_title" class="product-name">
|
||||
{$product.name|truncate:30:'...'|escape:'htmlall':'UTF-8'}
|
||||
{if isset($product.attributes_small)}
|
||||
<a href="{$link->getProductlink($product.id_product, $product.link_rewrite, $product.category_rewrite)|escape:'html'}" title="{l s='Product detail' mod='blockwishlist'}"><small>{$product.attributes_small|escape:'htmlall':'UTF-8'}</small></a>
|
||||
{/if}
|
||||
</p>
|
||||
<div class="wishlist_product_detail">
|
||||
{if isset($product.attributes_small)}
|
||||
<a href="{$link->getProductlink($product.id_product, $product.link_rewrite, $product.category_rewrite)|escape:'html'}" title="{l s='Product detail' mod='blockwishlist'}"><small>{$product.attributes_small|escape:'htmlall':'UTF-8'}</small></a>
|
||||
{/if}
|
||||
<p class="form-group">
|
||||
<label for="quantity_{$product.id_product}_{$product.id_product_attribute}">{l s='Quantity' mod='blockwishlist'}:</label>
|
||||
<input class="form-control" type="text" id="quantity_{$product.id_product}_{$product.id_product_attribute}" value="{$product.quantity|intval}" size="3" />
|
||||
<input class="form-control grey" type="text" id="quantity_{$product.id_product}_{$product.id_product_attribute}" value="{$product.quantity|intval}" size="3" />
|
||||
</p>
|
||||
<p class="form-group">
|
||||
<p class="form-group selector1">
|
||||
<label>{l s='Priority' mod='blockwishlist'}: </label>
|
||||
<select id="priority_{$product.id_product}_{$product.id_product_attribute}" class="form-control">
|
||||
<option value="0"{if $product.priority eq 0} selected="selected"{/if}>{l s='High' mod='blockwishlist'}</option>
|
||||
@@ -67,25 +80,26 @@
|
||||
<option value="2"{if $product.priority eq 2} selected="selected"{/if}>{l s='Low' mod='blockwishlist'}</option>
|
||||
</select>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="btn_action">
|
||||
<a class="button_small clear" href="{$link->getProductLink($product.id_product, $product.link_rewrite, $product.category_rewrite)|escape:'html'}" title="{l s='View' mod='blockwishlist'}" rel="nofollow">{l s='View' mod='blockwishlist'}</a>
|
||||
{if isset($product.attribute_quantity) AND $product.attribute_quantity >= 1 OR !isset($product.attribute_quantity) AND $product.product_quantity >= 1}
|
||||
{if !$ajax}
|
||||
<form id="addtocart_{$product.id_product|intval}_{$product.id_product_attribute|intval}" action="{$link->getPageLink('cart')|escape:'html'}" method="post">
|
||||
<p class="hidden">
|
||||
<input type="hidden" name="id_product" value="{$product.id_product|intval}" id="product_page_product_id" />
|
||||
<input type="hidden" name="add" value="1" />
|
||||
<input type="hidden" name="token" value="{$token}" />
|
||||
<input type="hidden" name="id_product_attribute" id="idCombination" value="{$product.id_product_attribute|intval}" />
|
||||
</p>
|
||||
</form>
|
||||
<div class="btn_action">
|
||||
{if isset($product.attribute_quantity) AND $product.attribute_quantity >= 1 OR !isset($product.attribute_quantity) AND $product.product_quantity >= 1}
|
||||
{if !$ajax}
|
||||
<form id="addtocart_{$product.id_product|intval}_{$product.id_product_attribute|intval}" action="{$link->getPageLink('cart')|escape:'html'}" method="post">
|
||||
<p class="hidden">
|
||||
<input type="hidden" name="id_product" value="{$product.id_product|intval}" id="product_page_product_id" />
|
||||
<input type="hidden" name="add" value="1" />
|
||||
<input type="hidden" name="token" value="{$token}" />
|
||||
<input type="hidden" name="id_product_attribute" id="idCombination" value="{$product.id_product_attribute|intval}" />
|
||||
</p>
|
||||
</form>
|
||||
{/if}
|
||||
<a href="javascript:;" class="button ajax_add_to_cart_button btn btn-default" onclick="WishlistBuyProduct('{$token|escape:'htmlall':'UTF-8'}', '{$product.id_product}', '{$product.id_product_attribute}', '{$product.id_product}_{$product.id_product_attribute}', this, {$ajax});" title="{l s='Add to cart' mod='homefeatured'}" rel="nofollow"><span>{l s='Add to cart' mod='blockwishlist'}</span></a>
|
||||
{else}
|
||||
<span class="button ajax_add_to_cart_button btn btn-default disabled"><span>{l s='Add to cart' mod='blockwishlist'}</span></span>
|
||||
{/if}
|
||||
<a href="javascript:;" class="exclusive" onclick="WishlistBuyProduct('{$token|escape:'htmlall':'UTF-8'}', '{$product.id_product}', '{$product.id_product_attribute}', '{$product.id_product}_{$product.id_product_attribute}', this, {$ajax});" title="{l s='Add to cart' mod='homefeatured'}" rel="nofollow">{l s='Add to cart' mod='blockwishlist'}</a>
|
||||
{else}
|
||||
<span class="exclusive">{l s='Add to cart' mod='blockwishlist'}</span>
|
||||
{/if}
|
||||
<a class="button lnk_view btn btn-default" href="{$link->getProductLink($product.id_product, $product.link_rewrite, $product.category_rewrite)|escape:'html'}" title="{l s='View' mod='blockwishlist'}" rel="nofollow"><span>{l s='View' mod='blockwishlist'}</span></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
global $_MODULE;
|
||||
$_MODULE = array();
|
||||
|
||||
$_MODULE['<{cheque}prestashop>cheque_7b4cc4f79be9aae43efd53b4ae5cba4d'] = 'Payment by check';
|
||||
$_MODULE['<{cheque}prestashop>cheque_c888438d14855d7d96a2724ee9c306bd'] = 'Your settings have been updated.';
|
||||
$_MODULE['<{cheque}prestashop>cheque_5dd532f0a63d89c5af0243b74732f63c'] = 'Contact details';
|
||||
$_MODULE['<{cheque}prestashop>cheque_dd7bf230fde8d4836917806aff6a6b27'] = 'Address';
|
||||
$_MODULE['<{cheque}prestashop>payment_execution_060bf2d587991d8f090a1309b285291c'] = 'Payments by check';
|
||||
$_MODULE['<{cheque}prestashop>payment_execution_1f87346a16cf80c372065de3c54c86d9'] = '(tax incl.)';
|
||||
$_MODULE['<{cheque}prestashop>payment_execution_0881a11f7af33bc1b43e437391129d66'] = 'Please confirm your order by clicking \'I confirm my order\'';
|
||||
$_MODULE['<{cheque}prestashop>payment_execution_46b9e3665f187c739c55983f757ccda0'] = 'I confirm my order';
|
||||
$_MODULE['<{cheque}prestashop>payment_return_e1c54fdba2544646684f41ace03b5fda'] = 'Do not forget to include your order number #%d.';
|
||||
$_MODULE['<{cheque}prestashop>payment_return_4761b03b53bc2b3bd948bb7443a26f31'] = 'Do not forget to include your order reference %s.';
|
||||
$_MODULE['<{cheque}prestashop>payment_return_0db71da7150c27142eef9d22b843b4a9'] = 'If you have questions, comments or concerns, please contact our';
|
||||
$_MODULE['<{cheque}prestashop>payment_841728ede901f5134574c4656aba5464'] = 'Pay by check (order processing will take more time)';
|
||||
@@ -0,0 +1,49 @@
|
||||
<?php
|
||||
|
||||
global $_MODULE;
|
||||
$_MODULE = array();
|
||||
|
||||
$_MODULE['<{cheque}prestashop>cheque_7b4cc4f79be9aae43efd53b4ae5cba4d'] = 'Assegno';
|
||||
$_MODULE['<{cheque}prestashop>cheque_14e41f4cfd99b10766cc15676d8cda66'] = 'Questo modulo permette di accettare pagamenti tramite assegno.';
|
||||
$_MODULE['<{cheque}prestashop>cheque_e09484ba6c16bc20236b63cc0d87ee95'] = 'Sei sicuro di voler cancellare i tuoi dati?';
|
||||
$_MODULE['<{cheque}prestashop>cheque_10afbbb4dcb65d825785d196ffb294dd'] = '\'All\'ordine di\' e l\'indirizzo devono essere configurati per poter utilizzare questo modulo correttamente';
|
||||
$_MODULE['<{cheque}prestashop>cheque_e2d93539acef2afbbadf8542351fb2b4'] = 'Nessuna valuta impostata per questo modulo';
|
||||
$_MODULE['<{cheque}prestashop>cheque_94ce8bec7334b16916823f53ebe936d7'] = 'Il campo \"all\'ordine di\" è obbligatorio.';
|
||||
$_MODULE['<{cheque}prestashop>cheque_4b5e20a521d31cc44b9690bd35eaacfc'] = 'Indirizzo obbligatorio.';
|
||||
$_MODULE['<{cheque}prestashop>cheque_c888438d14855d7d96a2724ee9c306bd'] = 'Impostazioni aggiornate';
|
||||
$_MODULE['<{cheque}prestashop>cheque_aa646de3f8d345490b22b72d4a505dcd'] = 'Se il cliente sceglie questa modalità di pagamento, l\'ordine cambierà il proprio status in \"attesa di pagamento\".';
|
||||
$_MODULE['<{cheque}prestashop>cheque_8c88bbf5712292b26e2a6bbeb0a7b5c4'] = 'Pertanto, sarà necessario confermare l\'ordine non appena si riceve un assegno.';
|
||||
$_MODULE['<{cheque}prestashop>cheque_5dd532f0a63d89c5af0243b74732f63c'] = 'Dettagli di contatto';
|
||||
$_MODULE['<{cheque}prestashop>cheque_119100c9e7b17d9cfe7b1d6c64259a04'] = 'Si prega di specificare il nome e l\'indirizzo a cui i clienti dovranno inviare il loro assegno';
|
||||
$_MODULE['<{cheque}prestashop>cheque_75475839e69bef6ed57a8200a5a71d37'] = 'All\'ordine di';
|
||||
$_MODULE['<{cheque}prestashop>cheque_dd7bf230fde8d4836917806aff6a6b27'] = 'Indirizzo';
|
||||
$_MODULE['<{cheque}prestashop>cheque_b17f3f4dcf653a5776792498a9b44d6a'] = 'Aggiorna le impostazioni';
|
||||
$_MODULE['<{cheque}prestashop>validation_e2b7dec8fa4b498156dfee6e4c84b156'] = 'Questo metodo di pagamento non è disponibile.';
|
||||
$_MODULE['<{cheque}prestashop>payment_execution_8520b283b0884394b13b80d5689628b3'] = 'Pagamento con assegno';
|
||||
$_MODULE['<{cheque}prestashop>payment_execution_f1d3b424cd68795ecaa552883759aceb'] = 'Riepilogo dell\'ordine';
|
||||
$_MODULE['<{cheque}prestashop>payment_execution_060bf2d587991d8f090a1309b285291c'] = 'Assegno';
|
||||
$_MODULE['<{cheque}prestashop>payment_execution_76ca011e4772bfcce26aecd42c598510'] = 'Hai scelto di pagare con assegno.';
|
||||
$_MODULE['<{cheque}prestashop>payment_execution_c884ed19483d45970c5bf23a681e2dd2'] = 'Ecco un breve riepilogo del tuo ordine:';
|
||||
$_MODULE['<{cheque}prestashop>payment_execution_3b3b41f131194e747489ef93e778ed0d'] = 'L\'importo totale del tuo ordine è:';
|
||||
$_MODULE['<{cheque}prestashop>payment_execution_1f87346a16cf80c372065de3c54c86d9'] = '(tasse incl.)';
|
||||
$_MODULE['<{cheque}prestashop>payment_execution_7b1c6e78d93817f61f2b1bbc2108a803'] = 'Si accettano più valute per gli assegni.';
|
||||
$_MODULE['<{cheque}prestashop>payment_execution_a7a08622ee5c8019b57354b99b7693b2'] = 'Scegli una delle seguenti:';
|
||||
$_MODULE['<{cheque}prestashop>payment_execution_f73ad0f08052884ff465749bf48b55ce'] = 'Accettiamo le seguente valuta da inviare tramite assegno:';
|
||||
$_MODULE['<{cheque}prestashop>payment_execution_7135ff14c7931e1c8e9d33aff3dfc7f7'] = 'Le informazioni sul titolare dell\'assegno e l\'indirizzo verranno visualizzate nella pagina successiva.';
|
||||
$_MODULE['<{cheque}prestashop>payment_execution_0881a11f7af33bc1b43e437391129d66'] = 'Conferma l\'ordine cliccando su \'confermo il mio ordine\'';
|
||||
$_MODULE['<{cheque}prestashop>payment_execution_46b9e3665f187c739c55983f757ccda0'] = 'Confermo il mio ordine';
|
||||
$_MODULE['<{cheque}prestashop>payment_execution_569fd05bdafa1712c4f6be5b153b8418'] = 'Altri metodi di pagamento';
|
||||
$_MODULE['<{cheque}prestashop>payment_return_88526efe38fd18179a127024aba8c1d7'] = 'Il tuo ordine su %s è completo.';
|
||||
$_MODULE['<{cheque}prestashop>payment_return_61da27a5dd1f8ced46c77b0feaa9e159'] = 'Vi preghiamo di inviarci un assegno con:';
|
||||
$_MODULE['<{cheque}prestashop>payment_return_543baa3e0ca83589be12aff8036b5fe6'] = 'Importo pagamento.';
|
||||
$_MODULE['<{cheque}prestashop>payment_return_9b8f932b1412d130ece5045ecafd1b42'] = 'Pagabile all\'ordine di';
|
||||
$_MODULE['<{cheque}prestashop>payment_return_9a94f1d749a3de5d299674d6c685e416'] = 'Spedire a';
|
||||
$_MODULE['<{cheque}prestashop>payment_return_e1c54fdba2544646684f41ace03b5fda'] = 'Non dimenticare di inserire il tuo numero d\'ordine n.%d.';
|
||||
$_MODULE['<{cheque}prestashop>payment_return_4761b03b53bc2b3bd948bb7443a26f31'] = 'Non dimenticare di inserire il riferimento ordine %s.';
|
||||
$_MODULE['<{cheque}prestashop>payment_return_610abe74e72f00210e3dcb91a0a3f717'] = 'Ti è stata inviata una email con queste informazioni.';
|
||||
$_MODULE['<{cheque}prestashop>payment_return_ffd2478830ca2f519f7fe7ee259d4b96'] = 'Il tuo ordine verrà inviato non appena avremo ricevuto il pagamento.';
|
||||
$_MODULE['<{cheque}prestashop>payment_return_0db71da7150c27142eef9d22b843b4a9'] = 'Per eventuali domande o per ulteriori informazioni, contatta la nostra';
|
||||
$_MODULE['<{cheque}prestashop>payment_return_decce112a9e64363c997b04aa71b7cb8'] = 'assistenza clienti.';
|
||||
$_MODULE['<{cheque}prestashop>payment_return_9bdf695c5a30784327137011da6ef568'] = 'Abbiamo notato un problema con il tuo ordine. Se pensi che questo sia un errore, contatta la nostra';
|
||||
$_MODULE['<{cheque}prestashop>payment_f05fd8637f8a6281466a507fcb56baec'] = 'Paga con assegno.';
|
||||
$_MODULE['<{cheque}prestashop>payment_841728ede901f5134574c4656aba5464'] = 'Paga con assegno (l\'elaborazione dell\'ordine sarà più lenta).';
|
||||
@@ -0,0 +1,44 @@
|
||||
{*
|
||||
* 2007-2013 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 <contact@prestashop.com>
|
||||
* @copyright 2007-2013 PrestaShop SA
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*}
|
||||
{if isset($orderProducts) && count($orderProducts)}
|
||||
<section id="crossselling" class="page-product-box">
|
||||
<h3 class="productscategory_h2 page-product-heading">{l s='Customers who bought this product also bought:' mod='crossselling'}</h3>
|
||||
<div id="crossselling_list">
|
||||
<ul id="crossselling_list_car" class="clearfix">
|
||||
{foreach from=$orderProducts item='orderProduct' name=orderProduct}
|
||||
<li class="product-box item">
|
||||
<a href="{$orderProduct.link}" title="{$orderProduct.name|htmlspecialchars}" class="lnk_img product-image"><img src="{$orderProduct.image}" alt="{$orderProduct.name|htmlspecialchars}" /></a>
|
||||
<p class="product_name"><a href="{$orderProduct.link}" title="{$orderProduct.name|htmlspecialchars}">{$orderProduct.name|truncate:15:'...'|escape:'htmlall':'UTF-8'}</a></p>
|
||||
{if $crossDisplayPrice AND $orderProduct.show_price == 1 AND !isset($restricted_country_mode) AND !$PS_CATALOG_MODE}
|
||||
<p class="price_display">
|
||||
<span class="price">{convertPrice price=$orderProduct.displayed_price}</span>
|
||||
</p>
|
||||
{/if}
|
||||
</li>
|
||||
{/foreach}
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
{/if}
|
||||
@@ -56,11 +56,11 @@ $('document').ready(function()
|
||||
{capture name=path}
|
||||
<a href="{$link->getPageLink('my-account', true)|escape:'htmlall':'UTF-8'}">
|
||||
{l s='My account' mod='favoriteproducts'}</a>
|
||||
<span class="navigation-pipe">{$navigationPipe}</span><span class="navigation_page">{l s='My favorite products.' mod='favoriteproducts'}</span>
|
||||
<span class="navigation-pipe">{$navigationPipe}</span><span class="navigation_page">{l s='My favorite products' mod='favoriteproducts'}</span>
|
||||
{/capture}
|
||||
|
||||
<div id="favoriteproducts_block_account">
|
||||
<h1 class="page-heading">{l s='My favorite products.' mod='favoriteproducts'}</h1>
|
||||
<h1 class="page-heading">{l s='My favorite products' mod='favoriteproducts'}</h1>
|
||||
{if $favoriteProducts}
|
||||
<ul class="row">
|
||||
{foreach from=$favoriteProducts item=favoriteProduct}
|
||||
|
||||
@@ -24,5 +24,5 @@
|
||||
*}
|
||||
|
||||
<li class="favoriteproducts">
|
||||
<a href="{$link->getModuleLink('favoriteproducts', 'account')|escape:'htmlall':'UTF-8'}" title="{l s='My favorite products.' mod='favoriteproducts'}">{if !$in_footer}<i class="icon-heart-empty"></i><span>{l s='My favorite products.' mod='favoriteproducts'}</span>{else}{l s='My favorite products.' mod='favoriteproducts'}{/if}</a>
|
||||
<a href="{$link->getModuleLink('favoriteproducts', 'account')|escape:'htmlall':'UTF-8'}" title="{l s='My favorite products.' mod='favoriteproducts'}">{if !$in_footer}<i class="icon-heart-empty"></i><span>{l s='My favorite products' mod='favoriteproducts'}</span>{else}{l s='My favorite products' mod='favoriteproducts'}{/if}</a>
|
||||
</li>
|
||||
|
||||
@@ -41,13 +41,13 @@ var homeslider_pause = {$homeslider.pause};
|
||||
</script>
|
||||
{/if}
|
||||
{if isset($homeslider_slides)}
|
||||
<div id="homepage-slider" class="col-xs-12">
|
||||
<div id="homepage-slider">
|
||||
<ul id="homeslider">
|
||||
{foreach from=$homeslider_slides item=slide}
|
||||
{if $slide.active}
|
||||
<li>
|
||||
<a href="{$slide.url|escape:'htmlall':'UTF-8'}" title="{$slide.description|escape:'htmlall':'UTF-8'}">
|
||||
<img src="{$smarty.const._MODULE_DIR_}homeslider/images/{$slide.image|escape:'htmlall':'UTF-8'}" alt="{$slide.legend|escape:'htmlall':'UTF-8'}" />
|
||||
<img src="{$smarty.const._MODULE_DIR_}homeslider/images/{$slide.image|escape:'htmlall':'UTF-8'}" alt="{$slide.legend|escape:'htmlall':'UTF-8'}" />
|
||||
</a>
|
||||
</li>
|
||||
{/if}
|
||||
|
||||
@@ -35,7 +35,7 @@ $(function(){
|
||||
});
|
||||
</script>
|
||||
|
||||
{if $logged == 1 || $nbComments != 0}
|
||||
{if ($logged == 1 || $nbComments != 0) && !$content_only}
|
||||
</div><!-- Close the OosHook -->
|
||||
<div id="product_comments_block_extra">
|
||||
{if $nbComments != 0}
|
||||
|
||||
@@ -22,57 +22,30 @@
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*}
|
||||
|
||||
{if count($categoryProducts) > 0 && $categoryProducts !== false}
|
||||
<section class="clearfix blockproductscategory">
|
||||
<section class="page-product-box blockproductscategory">
|
||||
<h3 class="productscategory_h3 page-product-heading">{$categoryProducts|@count} {l s='other products in the same category:' mod='productscategory'}</h3>
|
||||
<div id="{if count($categoryProducts) > 5}productscategory{else}productscategory_noscroll{/if}">
|
||||
|
||||
<div id="productscategory_list">
|
||||
|
||||
<article id="owl-carousel1" class="owl-carousel clearfix" {if count($categoryProducts) > 5}style="width: {math equation="width * nbImages" width=107 nbImages=$categoryProducts|@count}px"{/if} >
|
||||
<ul id="bxslider1" class="bxslider clearfix">
|
||||
{foreach from=$categoryProducts item='categoryProduct' name=categoryProduct}
|
||||
<div class="product-box item" {if count($categoryProducts) < 6}{/if}>
|
||||
<a href="{$link->getProductLink($categoryProduct.id_product, $categoryProduct.link_rewrite, $categoryProduct.category, $categoryProduct.ean13)}" class="lnk_img product-image product_image" title="{$categoryProduct.name|htmlspecialchars}"><img src="{$link->getImageLink($categoryProduct.link_rewrite, $categoryProduct.id_image, 'home_default')|escape:'html'}" alt="{$categoryProduct.name|htmlspecialchars}" /></a>
|
||||
<li class="product-box item">
|
||||
<a href="{$link->getProductLink($categoryProduct.id_product, $categoryProduct.link_rewrite, $categoryProduct.category, $categoryProduct.ean13)}" class="lnk_img product-image" title="{$categoryProduct.name|htmlspecialchars}"><img src="{$link->getImageLink($categoryProduct.link_rewrite, $categoryProduct.id_image, 'home_default')|escape:'html'}" alt="{$categoryProduct.name|htmlspecialchars}" /></a>
|
||||
|
||||
<h5 class="name-product">
|
||||
<h5 class="product-name">
|
||||
<a href="{$link->getProductLink($categoryProduct.id_product, $categoryProduct.link_rewrite, $categoryProduct.category, $categoryProduct.ean13)|escape:'html'}" title="{$categoryProduct.name|htmlspecialchars}">{$categoryProduct.name|truncate:14:'...'|escape:'htmlall':'UTF-8'}</a>
|
||||
</h5>
|
||||
{if $ProdDisplayPrice AND $categoryProduct.show_price == 1 AND !isset($restricted_country_mode) AND !$PS_CATALOG_MODE}
|
||||
<p class="price_display">
|
||||
<span class="price">{convertPrice price=$categoryProduct.displayed_price}</span>
|
||||
<span class="price{if isset($categoryProduct.specific_prices) && $categoryProduct.specific_prices} special-price{/if}">{convertPrice price=$categoryProduct.displayed_price}</span>
|
||||
{if isset($categoryProduct.specific_prices.reduction) && $categoryProduct.specific_prices.reduction && $categoryProduct.specific_prices.reduction_type == 'percentage'}<span class="price-percent-reduction small">-{$categoryProduct.specific_prices.reduction * 100}%</span>{/if}
|
||||
{if isset($categoryProduct.specific_prices) && $categoryProduct.specific_prices}<span class="old-price">{displayWtPrice p=$categoryProduct.price_without_reduction}</span>{/if}
|
||||
</p>
|
||||
{else}
|
||||
<br />
|
||||
{/if}
|
||||
</div>
|
||||
</li>
|
||||
{/foreach}
|
||||
</article>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$('#productscategory_list').trigger('goto', [{$middlePosition}-3]);
|
||||
</script>
|
||||
</section>
|
||||
{/if}
|
||||
|
||||
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function() {
|
||||
$("#owl-carousel1").owlCarousel({
|
||||
items :6,
|
||||
lazyLoad : true,
|
||||
navigation : true,
|
||||
navigationText : ["",""],
|
||||
pagination : false,
|
||||
|
||||
dragBeforeAnimFinish : false,
|
||||
mouseDrag : false,
|
||||
touchDrag : false,
|
||||
|
||||
addClassActive : true,
|
||||
transitionStyle : true
|
||||
});
|
||||
|
||||
});
|
||||
</script>
|
||||
{/if}
|
||||
@@ -97,10 +97,9 @@
|
||||
</div>
|
||||
</div>
|
||||
{if isset($stripe_save_tokens_ask)}
|
||||
<div class="ckeckbox">
|
||||
<label class="lowercase" for="stripe_save_token">
|
||||
<div class="ckeckbox">
|
||||
<input type="checkbox" name="stripe_save_token" id="stripe_save_token" value="1" />
|
||||
{l s='Store this credit card info for later use' mod='stripejs'}</label>
|
||||
<label class="lowercase" for="stripe_save_token">{l s='Store this credit card info for later use' mod='stripejs'}</label>
|
||||
</div>
|
||||
{/if}
|
||||
<button type="submit" class="stripe-submit-button btn-default btn button button-small"><span>{l s='Submit Payment' mod='stripejs'}<i class="icon-chevron-right right"></i></span></button>
|
||||
|
||||
@@ -23,7 +23,6 @@
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*}
|
||||
|
||||
{if isset($p) AND $p}
|
||||
{if isset($smarty.get.id_category) && $smarty.get.id_category && isset($category)}
|
||||
{assign var='requestPage' value=$link->getPaginationLink('category', $category, false, false, true, false)}
|
||||
@@ -41,7 +40,7 @@
|
||||
<!-- nbr product/page -->
|
||||
{if $nb_products > $products_per_page}
|
||||
<form action="{if !is_array($requestNb)}{$requestNb}{else}{$requestNb.requestUrl}{/if}" method="get" class="nbrItemPage">
|
||||
<div class="clearfix">
|
||||
<div class="clearfix selector1">
|
||||
{if isset($search_query) AND $search_query}<input type="hidden" name="search_query" value="{$search_query|escape:'htmlall':'UTF-8'}" />{/if}
|
||||
{if isset($tag) AND $tag AND !is_array($tag)}<input type="hidden" name="tag" value="{$tag|escape:'htmlall':'UTF-8'}" />{/if}
|
||||
<label for="nb_item{if isset($paginationId)}_{$paginationId}{/if}">{l s='Show'}</label>
|
||||
|
||||
@@ -29,13 +29,14 @@
|
||||
QtyChanged = '{l s='Some product quantities have changed. Please check them' js=1}';
|
||||
ShipToAnOtherAddress = '{l s='Ship to multiple addresses' js=1}';
|
||||
</script>
|
||||
<div id="order-detail-content" class="table_block">
|
||||
<div id="order-detail-content" class="table_block table-responsive">
|
||||
<table id="cart_summary" class="table table-bordered multishipping-cart">
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="cart_product first_item">{l s='Product'}</th>
|
||||
<th class="cart_description item">{l s='Description'}</th>
|
||||
<th class="cart_ref item">{l s='Ref.'}</th>
|
||||
<th class="cart_avail item">{l s='Avail.'}</th>
|
||||
<th class="cart_quantity item">{l s='Qty'}</th>
|
||||
<th class="shipping_address last_item">{l s='Shipping address'}</th>
|
||||
</tr>
|
||||
|
||||
@@ -171,7 +171,7 @@
|
||||
<p id="address_invoice_form" class="select" {if $cart->id_address_invoice == $cart->id_address_delivery}style="display: none;"{/if}>
|
||||
|
||||
{if $addresses|@count >= 1}
|
||||
<div class="form-group">
|
||||
<div class="form-group selector1">
|
||||
<label for="id_address_invoice" class="strong">{l s='Choose a billing address:'}</label>
|
||||
<select name="id_address_invoice" id="id_address_invoice" class="address_select form-control" onchange="updateAddressesDisplay();{if $opc}updateAddressSelection();{/if}">
|
||||
{section loop=$addresses step=-1 name=address}
|
||||
@@ -204,11 +204,11 @@
|
||||
<input type="hidden" class="hidden" name="step" value="2" />
|
||||
<input type="hidden" name="back" value="{$back}" />
|
||||
{if $back}
|
||||
<a href="{$link->getPageLink('order', true, NULL, "step=0&back={$back}")|escape:'html'}" title="{l s='Previous'}" class="button-exclusive btn btn-default"><i class="icon-chevron-left"></i>{l s='Previous'}</a>
|
||||
<a href="{$link->getPageLink('order', true, NULL, "step=0&back={$back}")|escape:'html'}" title="{l s='Previous'}" class="button-exclusive btn btn-default"><i class="icon-chevron-left"></i>{l s='Continue Shopping'}</a>
|
||||
{else}
|
||||
<a href="{$link->getPageLink('order', true, NULL, "step=0")|escape:'html'}" title="{l s='Previous'}" class="button-exclusive btn btn-default"><i class="icon-chevron-left"></i>{l s='Previous'}</a>
|
||||
<a href="{$link->getPageLink('order', true, NULL, "step=0")|escape:'html'}" title="{l s='Previous'}" class="button-exclusive btn btn-default"><i class="icon-chevron-left"></i>{l s='Continue Shopping'}</a>
|
||||
{/if}
|
||||
<button type="submit" name="processAddress" class="button btn btn-default button-medium"><span>{l s='Next'}<i class="icon-chevron-right right"></i></span></button>
|
||||
<button type="submit" name="processAddress" class="button btn btn-default button-medium"><span>{l s='Proceed to checkout'}<i class="icon-chevron-right right"></i></span></button>
|
||||
</p>
|
||||
</form>
|
||||
{else}
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
{if isset($product.attributes) && $product.attributes}<small><a href="{$link->getProductLink($product.id_product, $product.link_rewrite, $product.category)|escape:'htmlall':'UTF-8'}">{$product.attributes|escape:'htmlall':'UTF-8'}</a></small>{/if}
|
||||
</td>
|
||||
<td class="cart_ref">{if $product.reference}{$product.reference|escape:'htmlall':'UTF-8'}{else}--{/if}</td>
|
||||
<td class="cart_avail">{if $product.stock_quantity > 0}<span class="label label-success">{l s='In Stock'}</span>{else}<span class="label label-warning">{l s='Out of Stock'}</span>{/if}</td>
|
||||
<td class="cart_quantity {if isset($customizedDatas.$productId.$productAttributeId) AND $quantityDisplayed == 0} text-center {/if}">
|
||||
{if isset($cannotModify) AND $cannotModify == 1}
|
||||
<span>{if $quantityDisplayed == 0 AND isset($customizedDatas.$productId.$productAttributeId)}{$customizedDatas.$productId.$productAttributeId|@count}{else}{$product.cart_quantity-$quantityDisplayed}{/if}</span>
|
||||
@@ -52,24 +53,26 @@
|
||||
</td>
|
||||
<td>
|
||||
<form method="post" action="{$link->getPageLink('cart', true, NULL, "token={$token_cart}")|escape:'html'}">
|
||||
<input type="hidden" name="id_product" value="{$product.id_product}" />
|
||||
<input type="hidden" name="id_product_attribute" value="{$product.id_product_attribute}" />
|
||||
<select name="address_delivery" id="select_address_delivery_{$product.id_product}_{$product.id_product_attribute}_{$product.id_address_delivery|intval}" class="cart_address_delivery form-control">
|
||||
{if $product.id_address_delivery == 0 && $delivery->id == 0}
|
||||
<option></option>
|
||||
{/if}
|
||||
<option value="-1">{l s='Create a new address'}</option>
|
||||
{foreach $address_list as $address}
|
||||
<option value="{$address.id_address}"
|
||||
{if ($product.id_address_delivery > 0 && $product.id_address_delivery == $address.id_address) || ($product.id_address_delivery == 0 && $address.id_address == $delivery->id)}
|
||||
selected="selected"
|
||||
{/if}
|
||||
>
|
||||
{$address.alias}
|
||||
</option>
|
||||
{/foreach}
|
||||
<option value="-2">{l s='Ship to multiple addresses'}</option>
|
||||
</select>
|
||||
<div class="selector2">
|
||||
<input type="hidden" name="id_product" value="{$product.id_product}" />
|
||||
<input type="hidden" name="id_product_attribute" value="{$product.id_product_attribute}" />
|
||||
<select name="address_delivery" id="select_address_delivery_{$product.id_product}_{$product.id_product_attribute}_{$product.id_address_delivery|intval}" class="cart_address_delivery form-control">
|
||||
{if $product.id_address_delivery == 0 && $delivery->id == 0}
|
||||
<option></option>
|
||||
{/if}
|
||||
<option value="-1">{l s='Create a new address'}</option>
|
||||
{foreach $address_list as $address}
|
||||
<option value="{$address.id_address}"
|
||||
{if ($product.id_address_delivery > 0 && $product.id_address_delivery == $address.id_address) || ($product.id_address_delivery == 0 && $address.id_address == $delivery->id)}
|
||||
selected="selected"
|
||||
{/if}
|
||||
>
|
||||
{$address.alias}
|
||||
</option>
|
||||
{/foreach}
|
||||
<option value="-2">{l s='Ship to multiple addresses'}</option>
|
||||
</select>
|
||||
</div>
|
||||
</form>
|
||||
</td>
|
||||
</tr>
|
||||
@@ -208,7 +208,7 @@
|
||||
<div class="addresses clearfix">
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-sm-6">
|
||||
<div class="address_delivery select form-group">
|
||||
<div class="address_delivery select form-group selector1">
|
||||
<label for="id_address_delivery">{if $cart->isVirtualCart()}{l s='Choose a billing address:'}{else}{l s='Choose a delivery address:'}{/if}</label>
|
||||
<select name="id_address_delivery" id="id_address_delivery" class="address_select form-control" onchange="updateAddressesDisplay();{if $opc}updateAddressSelection();{/if}">
|
||||
|
||||
@@ -224,7 +224,7 @@
|
||||
</p>
|
||||
</div>
|
||||
<div class="col-xs-12 col-sm-6">
|
||||
<p id="address_invoice_form" class="select form-group" {if $cart->id_address_invoice == $cart->id_address_delivery}style="display: none;"{/if}>
|
||||
<div id="address_invoice_form" class="select form-group selector1" {if $cart->id_address_invoice == $cart->id_address_delivery}style="display: none;"{/if}>
|
||||
|
||||
{if $addresses|@count > 1}
|
||||
<label for="id_address_invoice" class="strong">{l s='Choose a billing address:'}</label>
|
||||
@@ -236,7 +236,7 @@
|
||||
{else}
|
||||
<a href="{$link->getPageLink('address', true, NULL, "back={$back_order_page}?step=1&select_address=1{if $back}&mod={$back}{/if}")|escape:'html'}" title="{l s='Add'}" class="button button-small btn btn-default"><span>{l s='Add a new address'}<i class="icon-chevron-right right"></i></span></a>
|
||||
{/if}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
@@ -263,8 +263,8 @@
|
||||
<p class="cart_navigation clearfix">
|
||||
<input type="hidden" class="hidden" name="step" value="2" />
|
||||
<input type="hidden" name="back" value="{$back}" />
|
||||
<a href="{$link->getPageLink($back_order_page, true, NULL, "step=0{if $back}&back={$back}{/if}")|escape:'html'}" title="{l s='Previous'}" class="button-exclusive btn btn-default"><i class="icon-chevron-left"></i>{l s='Previous'}</a>
|
||||
<button type="submit" name="processAddress" class="button btn btn-default button-medium"><span>{l s='Next'}<i class="icon-chevron-right right"></i></span></button>
|
||||
<a href="{$link->getPageLink($back_order_page, true, NULL, "step=0{if $back}&back={$back}{/if}")|escape:'html'}" title="{l s='Previous'}" class="button-exclusive btn btn-default"><i class="icon-chevron-left"></i>{l s='Continue Shopping'}</a>
|
||||
<button type="submit" name="processAddress" class="button btn btn-default button-medium"><span>{l s='Proceed to checkout'}<i class="icon-chevron-right right"></i></span></button>
|
||||
</p>
|
||||
</form>
|
||||
{else}
|
||||
|
||||
@@ -281,20 +281,27 @@
|
||||
</div>
|
||||
|
||||
{if !$opc}
|
||||
<div class="clearfix">
|
||||
<p><strong class="dark">{l s='Leave a message'}</strong></p>
|
||||
<div class="form-group">
|
||||
<p>{l s='If you would like to add a comment about your order, please write it in the field below.'}</p>
|
||||
<textarea class="form-control" cols="120" rows="2" name="message" id="message">{if isset($oldMessage)}{$oldMessage|escape:'htmlall':'UTF-8'}{/if}</textarea>
|
||||
</div>
|
||||
</div>
|
||||
<p class="cart_navigation clearfix">
|
||||
<input type="hidden" name="step" value="3" />
|
||||
<input type="hidden" name="back" value="{$back}" />
|
||||
{if !$is_guest}
|
||||
{if $back}
|
||||
<a href="{$link->getPageLink('order', true, NULL, "step=1&back={$back}&multi-shipping={$multi_shipping}")|escape:'html'}" title="{l s='Previous'}" class="button-exclusive btn btn-default"><i class="icon-chevron-left"></i>{l s='Previous'}</a>
|
||||
<a href="{$link->getPageLink('order', true, NULL, "step=1&back={$back}&multi-shipping={$multi_shipping}")|escape:'html'}" title="{l s='Previous'}" class="button-exclusive btn btn-default"><i class="icon-chevron-left"></i>{l s='Continue shopping'}</a>
|
||||
{else}
|
||||
<a href="{$link->getPageLink('order', true, NULL, "step=1&multi-shipping={$multi_shipping}")|escape:'html'}" title="{l s='Previous'}" class="button-exclusive btn btn-default"><i class="icon-chevron-left"></i>{l s='Previous'}</a>
|
||||
<a href="{$link->getPageLink('order', true, NULL, "step=1&multi-shipping={$multi_shipping}")|escape:'html'}" title="{l s='Previous'}" class="button-exclusive btn btn-default"><i class="icon-chevron-left"></i>{l s='Continue shopping'}</a>
|
||||
{/if}
|
||||
{else}
|
||||
<a href="{$link->getPageLink('order', true, NULL, "multi-shipping={$multi_shipping}")|escape:'html'}" title="{l s='Previous'}" class="button-exclusive btn btn-default"><i class="icon-chevron-left"></i>{l s='Previous'}</a>
|
||||
<a href="{$link->getPageLink('order', true, NULL, "multi-shipping={$multi_shipping}")|escape:'html'}" title="{l s='Previous'}" class="button-exclusive btn btn-default"><i class="icon-chevron-left"></i>{l s='Continue shopping'}</a>
|
||||
{/if}
|
||||
{if isset($virtual_cart) && $virtual_cart || (isset($delivery_option_list) && !empty($delivery_option_list))}
|
||||
<button type="submit" name="processCarrier" class="button btn btn-default standard-checkout button-medium"><span>{l s='Next'}<i class="icon-chevron-right right"></i></span></button>
|
||||
<button type="submit" name="processCarrier" class="button btn btn-default standard-checkout button-medium"><span>{l s='Proceed to checkout'}<i class="icon-chevron-right right"></i></span></button>
|
||||
{/if}
|
||||
</p>
|
||||
</form>
|
||||
|
||||
@@ -113,7 +113,7 @@
|
||||
</div>
|
||||
{$HOOK_ORDERDETAILDISPLAYED}
|
||||
{if !$is_guest}<form action="{$link->getPageLink('order-follow', true)|escape:'html'}" method="post">{/if}
|
||||
<div id="order-detail-content" class="table_block">
|
||||
<div id="order-detail-content" class="table_block table-responsive">
|
||||
<table class="table table-bordered">
|
||||
<thead>
|
||||
<tr>
|
||||
@@ -351,14 +351,14 @@
|
||||
</table>
|
||||
</div>
|
||||
{if $order->getShipping()|count > 0}
|
||||
<table class="table table-bordered">
|
||||
<table class="table table-bordered footab">
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="first_item">{l s='Date'}</th>
|
||||
<th class="item">{l s='Carrier'}</th>
|
||||
<th class="item">{l s='Weight'}</th>
|
||||
<th class="item">{l s='Shipping cost'}</th>
|
||||
<th class="last_item">{l s='Tracking number'}</th>
|
||||
<th data-hide="phone" class="item">{l s='Weight'}</th>
|
||||
<th data-hide="phone" class="item">{l s='Shipping cost'}</th>
|
||||
<th data-hide="phone" class="last_item">{l s='Tracking number'}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
||||
@@ -56,14 +56,14 @@
|
||||
<p class="info-title">{l s='Here is a list of pending merchandise returns'}.</p>
|
||||
<div class="block-center" id="block-history">
|
||||
{if $ordersReturn && count($ordersReturn)}
|
||||
<table id="order-list" class="table table-bordered">
|
||||
<table id="order-list" class="table table-bordered footab">
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="first_item">{l s='Return'}</th>
|
||||
<th class="item">{l s='Order'}</th>
|
||||
<th class="item">{l s='Package status'}</th>
|
||||
<th class="item">{l s='Date issued'}</th>
|
||||
<th class="last_item">{l s='Return slip'}</th>
|
||||
<th data-hide="phone"class="item">{l s='Package status'}</th>
|
||||
<th data-hide="phone,tablet" class="item">{l s='Date issued'}</th>
|
||||
<th data-hide="phone,tablet" class="last_item">{l s='Return slip'}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
||||
@@ -56,13 +56,13 @@
|
||||
|
||||
{if $HOOK_PAYMENT}
|
||||
{if !$opc}
|
||||
<div id="order-detail-content" class="table_block">
|
||||
<div id="order-detail-content" class="table_block table-responsive">
|
||||
<table id="cart_summary" class="table table-bordered">
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="cart_product first_item">{l s='Product'}</th>
|
||||
<th class="cart_description item">{l s='Description'}</th>
|
||||
<th class="cart_availability item">{l s='Avail.'}</th>
|
||||
<th class="cart_availability item">{l s='Ref.'}</th>
|
||||
<th class="cart_unit item">{l s='Unit price'}</th>
|
||||
<th class="cart_quantity item">{l s='Qty'}</th>
|
||||
<th class="cart_total last_item">{l s='Total'}</th>
|
||||
@@ -334,7 +334,7 @@
|
||||
{/if}
|
||||
|
||||
{if !$opc}
|
||||
<p class="cart_navigation clearfix"><a href="{$link->getPageLink('order', true, NULL, "step=2")|escape:'html'}" title="{l s='Previous'}" class="button-exclusive btn btn-default"><i class="icon-chevron-left"></i>{l s='Previous'}</a></p>
|
||||
<p class="cart_navigation clearfix"><a href="{$link->getPageLink('order', true, NULL, "step=2")|escape:'html'}" title="{l s='Previous'}" class="button-exclusive btn btn-default"><i class="icon-chevron-left"></i>{l s='Continue shopping'}</a></p>
|
||||
{else}
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
@@ -29,13 +29,13 @@
|
||||
<p class="info-title">{l s='Credit slips you have received after cancelled orders'}.</p>
|
||||
<div class="block-center" id="block-history">
|
||||
{if $ordersSlip && count($ordersSlip)}
|
||||
<table id="order-list" class="table table-bordered">
|
||||
<table id="order-list" class="table table-bordered footab">
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="first_item">{l s='Credit slip'}</th>
|
||||
<th class="item">{l s='Order'}</th>
|
||||
<th class="item">{l s='Date issued'}</th>
|
||||
<th class="last_item">{l s='View credit slip'}</th>
|
||||
<th data-hide="phone" class="last_item">{l s='View credit slip'}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
||||