first commit
4
modules/leoslideshow/Readme.md
Normal file
@@ -0,0 +1,4 @@
|
||||
# Onlide guide
|
||||
http://www.leotheme.com/support/prestashop-16x-guides.html
|
||||
|
||||
|
||||
133
modules/leoslideshow/classes/LeoSlideshowConfig.php
Normal file
@@ -0,0 +1,133 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2015 Leotheme
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* Adds image, text or video to your homepage.
|
||||
*
|
||||
* DISCLAIMER
|
||||
*
|
||||
* @author leotheme <leotheme@gmail.com>
|
||||
* @copyright 2007-2015 Leotheme
|
||||
* @license http://leotheme.com - prestashop template provider
|
||||
*/
|
||||
|
||||
if (!class_exists('LeoSlideshowConfig')) {
|
||||
|
||||
class LeoSlideshowConfig
|
||||
{
|
||||
const DISABLE = '0';
|
||||
const ENABLE = '1';
|
||||
|
||||
public static function getArrayOptions($ids = array(), $names = array())
|
||||
{
|
||||
$res = array();
|
||||
foreach ($names as $key => $val) {
|
||||
# module validation
|
||||
unset($val);
|
||||
|
||||
$res[] = array(
|
||||
'id' => $ids[$key],
|
||||
'name' => $names[$key],
|
||||
);
|
||||
}
|
||||
return $res;
|
||||
}
|
||||
const IVIEW_TIMER_360BAR = '360Bar';
|
||||
const IVIEW_TIMER_BAR = 'Bar';
|
||||
const IVIEW_TIMER_PIE = 'Pie';
|
||||
|
||||
public static function getTimerStyle()
|
||||
{
|
||||
$ids = array(self::IVIEW_TIMER_360BAR, self::IVIEW_TIMER_BAR, self::IVIEW_TIMER_PIE);
|
||||
$names = array('360Bar', 'Bar', 'Pie');
|
||||
return self::getArrayOptions($ids, $names);
|
||||
}
|
||||
|
||||
public static function getTimerPosition()
|
||||
{
|
||||
$ids = array('top-left', 'top-right', 'top-center', 'middle', 'bottom-left', 'bottom-right', 'bottom-center');
|
||||
$names = array('Top Left', 'Top Right', 'Top Center', 'Middle', 'Bottom Left', 'Bottom Right', 'Bottom Center');
|
||||
return self::getArrayOptions($ids, $names);
|
||||
}
|
||||
|
||||
public static function getTimerBarStrokeStyle()
|
||||
{
|
||||
$ids = array('solid', 'none', 'hidden', 'dotted', 'dashed', 'double', 'groove', 'ridge', 'inset', 'outset', 'initial');
|
||||
$names = array('Solid', 'None', 'Hidden', 'Dotted', 'Dashed', 'Double', 'Groove', 'Ridge', 'Inset', 'Outset', 'Initial');
|
||||
return self::getArrayOptions($ids, $names);
|
||||
}
|
||||
const IVIEW_NAV_THUMBNAIL = 'thumbnail';
|
||||
const IVIEW_NAV_BULLET = 'bullet';
|
||||
|
||||
public static function getNavigatorType()
|
||||
{
|
||||
$ids = array(self::IVIEW_NAV_THUMBNAIL, self::IVIEW_NAV_BULLET);
|
||||
$names = array('Thumbnail', 'Bullet',);
|
||||
return self::getArrayOptions($ids, $names);
|
||||
}
|
||||
|
||||
public static function getFx()
|
||||
{
|
||||
/*
|
||||
$ids = array('random', 'left-curtain', 'right-curtain', 'top-curtain', 'bottom-curtain', 'strip-down-right', 'strip-down-left',
|
||||
'strip-up-right', 'strip-up-left', 'strip-up-down', 'strip-up-down-left', 'strip-left-right', 'strip-left-right-down', 'slide-in-right',
|
||||
'slide-in-left', 'slide-in-up', 'slide-in-down', 'fade', 'block-random', 'block-fade', 'block-fade-reverse', 'block-expand',
|
||||
'block-expand-reverse', 'block-expand-random', 'zigzag-top', 'zigzag-bottom', 'zigzag-grow-top', 'zigzag-grow-bottom', 'zigzag-drop-top',
|
||||
'zigzag-drop-bottom', 'strip-left-fade', 'strip-right-fade', 'strip-top-fade', 'strip-bottom-fade', 'block-drop-random');
|
||||
$names = array('Random', 'Left Curtain', 'Right Curtain', 'Top Curtain', 'Bottom Curtain', 'Strip Down Right', 'Strip Down Left',
|
||||
'Strip Up Right', 'Strip Up Left', 'Strip Up Down', 'Strip Up Down Left', 'Strip Left Right', 'Strip Left Right Down', 'Slide In Right',
|
||||
'Slide In Left', 'Slide In Up', 'Slide In Down', 'Fade', 'Block Random', 'Block Fade', 'Block Fade Reverse', 'Block Expand',
|
||||
'Block Expand Reverse', 'Block Expand Random', 'Zigzag Top', 'Zigzag Bottom', 'Zigzag Grow Top', 'Zigzag Grow Bottom', 'Zigzag Drop Top',
|
||||
'Zigzag Drop Bottom', 'Strip Left Fade', 'Strip Right Fade', 'Strip Top Fade', 'Strip Bottom Fade', 'Block Drop Random');
|
||||
*/
|
||||
$ids = array('random', 'left-curtain', 'right-curtain', 'top-curtain', 'bottom-curtain', 'strip-down-right', 'strip-down-left',
|
||||
'strip-up-right', 'strip-up-left', 'strip-up-down', 'strip-up-down-left', 'strip-left-right', 'strip-left-right-down', 'slide-in-right',
|
||||
'slide-in-left', 'slide-in-up', 'slide-in-down', 'fade', 'strip-left-fade', 'strip-right-fade', 'strip-top-fade', 'strip-bottom-fade');
|
||||
$names = array('Random', 'Left Curtain', 'Right Curtain', 'Top Curtain', 'Bottom Curtain', 'Strip Down Right', 'Strip Down Left',
|
||||
'Strip Up Right', 'Strip Up Left', 'Strip Up Down', 'Strip Up Down Left', 'Strip Left Right', 'Strip Left Right Down', 'Slide In Right',
|
||||
'Slide In Left', 'Slide In Up', 'Slide In Down', 'Fade', 'Strip Left Fade', 'Strip Right Fade', 'Strip Top Fade', 'Strip Bottom Fade');
|
||||
return self::getArrayOptions($ids, $names);
|
||||
}
|
||||
|
||||
public static function getCaptionTransition()
|
||||
{
|
||||
$ids = array('wipeLeft', 'wipeRight', 'wipeTop', 'wipeBottom', 'expandLeft', 'expandRight', 'expandTop', 'expandBottom', 'fade');
|
||||
$names = array('Wipe Left', 'Wipe Right', 'Wipe Top', 'Wipe Bottom', 'Expand Left', 'Expand Right', 'Expand Top', 'Expand Bottom', 'Fade');
|
||||
return self::getArrayOptions($ids, $names);
|
||||
}
|
||||
const TIMER_HIDE_AUTO = '1';
|
||||
const TIMER_HIDE_STOP = '2';
|
||||
const TIMER_SHOW_AUTO = '3';
|
||||
const TIMER_SHOW_STOP = '4';
|
||||
|
||||
public static function getTimerOption()
|
||||
{
|
||||
$ids = array(self::TIMER_SHOW_AUTO, self::TIMER_HIDE_AUTO, self::TIMER_HIDE_STOP);
|
||||
$names = array('Show and Autorun', 'Hide and Autorun', 'Hide and no Autorun');
|
||||
|
||||
return self::getArrayOptions($ids, $names);
|
||||
}
|
||||
|
||||
public static function test()
|
||||
{
|
||||
$ids = array('', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '');
|
||||
$names = array('', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '');
|
||||
return self::getArrayOptions($ids, $names);
|
||||
}
|
||||
|
||||
const VERSION_FREE = '0';
|
||||
const VERSION_PRO = '1';
|
||||
const VERSION_CURRENT = '1';
|
||||
|
||||
public static function getPermission()
|
||||
{
|
||||
if (self::VERSION_CURRENT == self::VERSION_PRO) {
|
||||
return true;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
261
modules/leoslideshow/classes/LeoSlideshowGroup.php
Normal file
@@ -0,0 +1,261 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2015 Leotheme
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* Adds image, text or video to your homepage.
|
||||
*
|
||||
* DISCLAIMER
|
||||
*
|
||||
* @author leotheme <leotheme@gmail.com>
|
||||
* @copyright 2007-2015 Leotheme
|
||||
* @license http://leotheme.com - prestashop template provider
|
||||
*/
|
||||
|
||||
if (!defined('_PS_VERSION_')) {
|
||||
# module validation
|
||||
exit;
|
||||
}
|
||||
|
||||
class LeoSlideshowGroup extends ObjectModel
|
||||
{
|
||||
|
||||
public $title;
|
||||
public $active;
|
||||
public $hook;
|
||||
public $id_shop;
|
||||
public $params;
|
||||
public $active_ap;
|
||||
public $data = array();
|
||||
public $randkey;
|
||||
public $leo_module = null;
|
||||
|
||||
/**
|
||||
* @see ObjectModel::$definition
|
||||
*/
|
||||
public function setModule($module)
|
||||
{
|
||||
$this->leo_module = $module;
|
||||
}
|
||||
|
||||
public static $definition = array(
|
||||
'table' => 'leoslideshow_groups',
|
||||
'primary' => 'id_leoslideshow_groups',
|
||||
'fields' => array(
|
||||
'title' => array('type' => self::TYPE_STRING, 'lang' => false, 'validate' => 'isCleanHtml', 'required' => true, 'size' => 255),
|
||||
'active' => array('type' => self::TYPE_BOOL, 'validate' => 'isBool', 'required' => true),
|
||||
'hook' => array('type' => self::TYPE_STRING, 'lang' => false, 'validate' => 'isCleanHtml', 'size' => 64),
|
||||
'id_shop' => array('type' => self::TYPE_INT, 'validate' => 'isunsignedInt', 'required' => true),
|
||||
'params' => array('type' => self::TYPE_HTML, 'lang' => false),
|
||||
'active_ap' => array('type' => self::TYPE_BOOL, 'validate' => 'isBool'),
|
||||
'randkey' => array('type' => self::TYPE_STRING, 'lang' => false, 'size' => 255),
|
||||
)
|
||||
);
|
||||
|
||||
public function add($autodate = true, $null_values = false)
|
||||
{
|
||||
$res = parent::add($autodate, $null_values);
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
public static function groupExists($id_group)
|
||||
{
|
||||
$req = 'SELECT gr.`id_leoslideshow_groups` as id_group
|
||||
FROM `' . _DB_PREFIX_ . 'leoslideshow_groups` gr
|
||||
WHERE gr.`id_leoslideshow_groups` = ' . (int) $id_group;
|
||||
$row = Db::getInstance(_PS_USE_SQL_SLAVE_)->getRow($req);
|
||||
return ($row);
|
||||
}
|
||||
|
||||
public function getGroups($active, $id_shop)
|
||||
{
|
||||
$this->context = Context::getContext();
|
||||
if (!isset($id_shop)) {
|
||||
$id_shop = $this->context->shop->id;
|
||||
}
|
||||
$req = 'SELECT * FROM `' . _DB_PREFIX_ . 'leoslideshow' . '_groups` gr
|
||||
WHERE (`id_shop` = ' . (int) $id_shop . ')' . ($active ? ' AND gr.`active` = 1' : ' ');
|
||||
return Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS($req);
|
||||
}
|
||||
|
||||
/**
|
||||
* Delele all Slides follow id_group
|
||||
*/
|
||||
public static function deleteAllSlider($id_group)
|
||||
{
|
||||
$sql = 'SELECT sl.`id_leoslideshow_slides` as id
|
||||
FROM `' . _DB_PREFIX_ . 'leoslideshow_slides` sl
|
||||
WHERE sl.`id_group` = ' . (int) $id_group;
|
||||
$sliders = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS($sql);
|
||||
|
||||
if ($sliders) {
|
||||
$where = '';
|
||||
foreach ($sliders as $sli) {
|
||||
# module validation
|
||||
$where .= $where ? ',' . (int) $sli['id'] : (int) $sli['id'];
|
||||
}
|
||||
|
||||
# SLIDE
|
||||
$sql = 'DELETE FROM `' . _DB_PREFIX_ . 'leoslideshow_slides` '
|
||||
. 'WHERE `id_leoslideshow_slides` IN (' . $where . ')';
|
||||
Db::getInstance()->execute($sql);
|
||||
|
||||
# SLIDE_LANG
|
||||
$sql = 'DELETE FROM `' . _DB_PREFIX_ . 'leoslideshow_slides_lang` '
|
||||
. 'WHERE `id_leoslideshow_slides` IN (' . $where . ')';
|
||||
Db::getInstance()->execute($sql);
|
||||
}
|
||||
}
|
||||
|
||||
public function delete()
|
||||
{
|
||||
$res = parent::delete();
|
||||
|
||||
if ($res) {
|
||||
$this->deleteAllSlider((int) $this->id);
|
||||
}
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get and validate StartWithSlide field.
|
||||
*/
|
||||
public static function showStartWithSlide($start_with_slide = 0, $slider = array())
|
||||
{
|
||||
$result = 1;
|
||||
if (is_array($slider)) {
|
||||
$start_with_slide = (int) $start_with_slide;
|
||||
$slider_num = count($slider);
|
||||
// 1 <= $start_with_slide <= $slider_num
|
||||
if (1 <= $start_with_slide && $start_with_slide <= $slider_num) {
|
||||
$result = $start_with_slide;
|
||||
}
|
||||
}
|
||||
|
||||
$result--; // index begin from 0
|
||||
return $result;
|
||||
}
|
||||
|
||||
public function getDelay()
|
||||
{
|
||||
$temp_result = Tools::jsonDecode(LeoSlideshowSlide::base64Decode($this->params), true);
|
||||
$result = $temp_result['delay'];
|
||||
|
||||
return $result;
|
||||
}
|
||||
|
||||
public static function getGroupOption()
|
||||
{
|
||||
$result = array();
|
||||
$mod_group = new LeoSlideshowGroup();
|
||||
$groups = $mod_group->getGroups(null, null);
|
||||
|
||||
foreach ($groups as $group) {
|
||||
$temp = array();
|
||||
$temp['id'] = $group['id_leoslideshow_groups'];
|
||||
$temp['name'] = $group['title'];
|
||||
$result[] = $temp;
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get group to frontend
|
||||
*/
|
||||
public static function getActiveGroupByHook($hook_name = '', $active = 1)
|
||||
{
|
||||
$id_shop = Context::getContext()->shop->id;
|
||||
$sql = 'SELECT * FROM ' . _DB_PREFIX_ . 'leoslideshow_groups gr
|
||||
WHERE gr.id_shop = ' . (int) $id_shop . ' AND gr.hook = "' . pSQL($hook_name) . '"' . ($active ? ' AND gr.`active` = 1' : ' ') . '
|
||||
ORDER BY gr.id_leoslideshow_groups';
|
||||
|
||||
return Db::getInstance(_PS_USE_SQL_SLAVE_)->getRow($sql);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get group to preview
|
||||
*/
|
||||
public static function getGroupByID($id_group)
|
||||
{
|
||||
$sql = 'SELECT * FROM ' . _DB_PREFIX_ . 'leoslideshow_groups gr
|
||||
WHERE gr.id_leoslideshow_groups = ' . (int) $id_group;
|
||||
|
||||
return Db::getInstance(_PS_USE_SQL_SLAVE_)->getRow($sql);
|
||||
}
|
||||
|
||||
public function setData($data = array())
|
||||
{
|
||||
if (is_array($data)) {
|
||||
$this->data = $data;
|
||||
}
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function getData()
|
||||
{
|
||||
return $this->data;
|
||||
}
|
||||
|
||||
public function beforeLoad()
|
||||
{
|
||||
$data = $this->data;
|
||||
|
||||
#Timer
|
||||
if ($data['timer_show'] == LeoSlideshowConfig::TIMER_HIDE_AUTO) {
|
||||
$data['autoAdvance'] = 1;
|
||||
} elseif ($data['timer_show'] == LeoSlideshowConfig::TIMER_HIDE_STOP) {
|
||||
$data['autoAdvance'] = 0;
|
||||
} elseif ($data['timer_show'] == LeoSlideshowConfig::TIMER_SHOW_AUTO) {
|
||||
$data['autoAdvance'] = 1;
|
||||
} elseif ($data['timer_show'] == LeoSlideshowConfig::TIMER_SHOW_STOP) {
|
||||
$data['autoAdvance'] = 0;
|
||||
}
|
||||
|
||||
# Navigator
|
||||
if ($data['navigator_type'] == LeoSlideshowConfig::IVIEW_NAV_THUMBNAIL) {
|
||||
$data['controlNavThumbs'] = 1;
|
||||
} elseif ($data['navigator_type'] == LeoSlideshowConfig::IVIEW_NAV_BULLET) {
|
||||
$data['controlNavThumbs'] = 0;
|
||||
}
|
||||
|
||||
# Multi language
|
||||
$data['playLabel'] = $this->leo_module->l('Play');
|
||||
$data['pauseLabel'] = $this->leo_module->l('Pause');
|
||||
$data['closeLabel'] = $this->leo_module->l('Close');
|
||||
$data['nextLabel'] = $this->leo_module->l('Next');
|
||||
$data['previousLabel'] = $this->leo_module->l('Previous');
|
||||
|
||||
$this->data = $data;
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function loadFrontEnd()
|
||||
{
|
||||
return $this->getData();
|
||||
}
|
||||
|
||||
public function count()
|
||||
{
|
||||
$sql = 'SELECT id_leoslideshow_groups FROM ' . _DB_PREFIX_ . 'leoslideshow_groups';
|
||||
$groups = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS($sql);
|
||||
$number_groups = count($groups);
|
||||
return $number_groups;
|
||||
}
|
||||
|
||||
public static function autoCreateKey()
|
||||
{
|
||||
$sql = 'SELECT ' . self::$definition['primary'] . ' FROM ' . _DB_PREFIX_ . self::$definition['table'] .
|
||||
' WHERE randkey IS NULL OR randkey = ""';
|
||||
|
||||
$rows = Db::getInstance()->executes($sql);
|
||||
foreach ($rows as $row) {
|
||||
$mod_group = new LeoSlideshowGroup((int) $row[self::$definition['primary']]);
|
||||
include_once(_PS_MODULE_DIR_ . 'leoslideshow/libs/Helper.php');
|
||||
$mod_group->randkey = LeoSlideshowHelper::genKey();
|
||||
$mod_group->update();
|
||||
}
|
||||
}
|
||||
}
|
||||
436
modules/leoslideshow/classes/LeoSlideshowSlide.php
Normal file
@@ -0,0 +1,436 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2015 Leotheme
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* Adds image, text or video to your homepage.
|
||||
*
|
||||
* DISCLAIMER
|
||||
*
|
||||
* @author leotheme <leotheme@gmail.com>
|
||||
* @copyright 2007-2015 Leotheme
|
||||
* @license http://leotheme.com - prestashop template provider
|
||||
*/
|
||||
|
||||
if (!defined('_PS_VERSION_')) {
|
||||
# module validation
|
||||
exit;
|
||||
}
|
||||
|
||||
class LeoSlideshowSlide extends ObjectModel
|
||||
{
|
||||
|
||||
public $title;
|
||||
public $link;
|
||||
public $image;
|
||||
public $id_group;
|
||||
public $position;
|
||||
public $active;
|
||||
public $params;
|
||||
public $thumbnail;
|
||||
public $video;
|
||||
public $layersparams;
|
||||
|
||||
/**
|
||||
* @see ObjectModel::$definition
|
||||
*/
|
||||
public static $definition = array(
|
||||
'table' => 'leoslideshow_slides',
|
||||
'primary' => 'id_leoslideshow_slides',
|
||||
'multilang' => true,
|
||||
'fields' => array(
|
||||
'active' => array('type' => self::TYPE_BOOL, 'validate' => 'isBool', 'required' => true),
|
||||
'id_group' => array('type' => self::TYPE_INT, 'validate' => 'isunsignedInt', 'required' => true),
|
||||
'position' => array('type' => self::TYPE_INT, 'validate' => 'isunsignedInt', 'required' => true),
|
||||
# Lang fields
|
||||
'title' => array('type' => self::TYPE_STRING, 'lang' => true, 'validate' => 'isCleanHtml', 'required' => true, 'size' => 255),
|
||||
'link' => array('type' => self::TYPE_STRING, 'lang' => true, 'validate' => 'isUrl', 'required' => false, 'size' => 255),
|
||||
'image' => array('type' => self::TYPE_STRING, 'lang' => true, 'validate' => 'isCleanHtml'),
|
||||
'thumbnail' => array('type' => self::TYPE_STRING, 'lang' => true, 'validate' => 'isCleanHtml'),
|
||||
'params' => array('type' => self::TYPE_HTML, 'lang' => false),
|
||||
'video' => array('type' => self::TYPE_HTML, 'lang' => true),
|
||||
'layersparams' => array('type' => self::TYPE_HTML, 'lang' => true)
|
||||
)
|
||||
);
|
||||
|
||||
public function add($autodate = true, $null_values = false)
|
||||
{
|
||||
$res = parent::add($autodate, $null_values);
|
||||
return $res;
|
||||
}
|
||||
|
||||
public function delete()
|
||||
{
|
||||
$res = true;
|
||||
|
||||
// $images = $this->image;
|
||||
// foreach ($images as $image) {
|
||||
// if (preg_match('/sample/', $image) === 0)
|
||||
// if ($image && file_exists(dirname(__FILE__).'/images/'.$image))
|
||||
// $res &= @unlink(dirname(__FILE__).'/images/'.$image);
|
||||
// }
|
||||
|
||||
$res &= $this->reOrderPositions();
|
||||
|
||||
$sql = 'DELETE FROM `' . _DB_PREFIX_ . 'leoslideshow_slides`
|
||||
WHERE `id_leoslideshow_slides` = ' . (int) $this->id;
|
||||
$res &= Db::getInstance()->execute($sql);
|
||||
|
||||
$res &= parent::delete();
|
||||
return $res;
|
||||
}
|
||||
|
||||
public static function sliderExist($id_slider)
|
||||
{
|
||||
return Db::getInstance(_PS_USE_SQL_SLAVE_)->getRow('SELECT gr.`id_leoslideshow_slides` as id
|
||||
FROM `' . _DB_PREFIX_ . 'leoslideshow_slides` gr
|
||||
WHERE gr.`id_leoslideshow_slides` = ' . (int) $id_slider);
|
||||
}
|
||||
|
||||
public function reOrderPositions()
|
||||
{
|
||||
$id_slide = $this->id;
|
||||
|
||||
$sql = 'SELECT MAX(hss.`position`) as position
|
||||
FROM `' . _DB_PREFIX_ . 'leoslideshow_slides` hss
|
||||
WHERE hss.`id_group` = ' . (int) $this->id_group;
|
||||
$max = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS($sql);
|
||||
|
||||
if ((int) $max == (int) $id_slide) {
|
||||
# module validation
|
||||
return true;
|
||||
}
|
||||
|
||||
$sql = 'SELECT hss.`position` as position, hss.`id_leoslideshow_slides` as id_slide
|
||||
FROM `' . _DB_PREFIX_ . 'leoslideshow_slides` hss
|
||||
WHERE hss.`id_group` = ' . (int) $this->id_group . ' AND hss.`position` > ' . (int) $this->position;
|
||||
$rows = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS($sql);
|
||||
|
||||
foreach ($rows as $row) {
|
||||
$current_slide = new LeoSlideshowSlide($row['id_slide']);
|
||||
--$current_slide->position;
|
||||
$current_slide->update();
|
||||
unset($current_slide);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
public function getDelay()
|
||||
{
|
||||
$temp_result = Tools::jsonDecode(LeoSlideshowSlide::base64Decode($this->params), true);
|
||||
$result = $temp_result['delay'];
|
||||
|
||||
return $result;
|
||||
}
|
||||
|
||||
/**
|
||||
* System get Delay value from GROUP when SLIDER's Delay <= 0
|
||||
*/
|
||||
public static function showDelay($slide_id = 0, $delay = null, $group_delay = null)
|
||||
{
|
||||
$default = 9000;
|
||||
|
||||
# Get Delay form SLIDER
|
||||
if ($delay > 0) {
|
||||
# module validation
|
||||
return $delay;
|
||||
}
|
||||
|
||||
if (!empty($slide_id)) {
|
||||
$mod_slide = new LeoSlideshowSlide($slide_id);
|
||||
$s_delay = $mod_slide->getDelay();
|
||||
if ($s_delay > 0) {
|
||||
# module validation
|
||||
return $s_delay;
|
||||
}
|
||||
}
|
||||
# Get Delay form GROUP
|
||||
if ($group_delay > 0) {
|
||||
# module validation
|
||||
return $group_delay;
|
||||
}
|
||||
|
||||
if (!empty($slide_id)) {
|
||||
$mod_slide = new LeoSlideshowSlide($slide_id);
|
||||
$mod_group = new LeoSlideshowGroup($mod_slide->id_group);
|
||||
$g_delay = $mod_group->getDelay();
|
||||
if ($g_delay > 0) {
|
||||
# module validation
|
||||
return $g_delay;
|
||||
}
|
||||
}
|
||||
|
||||
return $default;
|
||||
}
|
||||
|
||||
public static function renderTarget($target = '')
|
||||
{
|
||||
$html = '_self';
|
||||
if (!empty($target)) {
|
||||
if (LeoSlideshowStatus::SLIDER_TARGET_SAME == $target) {
|
||||
# module validation
|
||||
$html = '_self';
|
||||
} elseif (LeoSlideshowStatus::SLIDER_TARGET_NEW == $target) {
|
||||
$html = '_blank';
|
||||
}
|
||||
}
|
||||
return $html;
|
||||
}
|
||||
|
||||
public function mergeData($data = array())
|
||||
{
|
||||
if (is_array($data)) {
|
||||
foreach ($data as $key => $value) {
|
||||
# module validation
|
||||
$this->$key = $value;
|
||||
}
|
||||
}
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function mergeSlider($data = array())
|
||||
{
|
||||
return $this->mergeData($data);
|
||||
}
|
||||
|
||||
public function mergeParams($pattern)
|
||||
{
|
||||
$params_data = array_merge($pattern, Tools::jsonDecode(LeoSlideshowSlide::base64Decode($this->params), true));
|
||||
$this->mergeData($params_data);
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function validate($module)
|
||||
{
|
||||
$start_timestamp = strtotime($this->start_date_time);
|
||||
$end_timestamp = strtotime($this->end_date_time);
|
||||
|
||||
if ($end_timestamp == 0 && $start_timestamp == 0) {
|
||||
# module validation
|
||||
// $end_timestamp, $start_timestamp are valid
|
||||
} elseif ($end_timestamp > $start_timestamp && $end_timestamp != 0 && $start_timestamp != 0) {
|
||||
# module validation
|
||||
// $end_timestamp, $start_timestamp are valid
|
||||
} else {
|
||||
# module validation
|
||||
throw new Exception($module->l("'Start End Time' must be equal or more than 'Start Date Time'"));
|
||||
}
|
||||
}
|
||||
|
||||
public function getStatusTime()
|
||||
{
|
||||
$timestamp = time();
|
||||
$start_date_time = strtotime($this->start_date_time);
|
||||
$end_date_time = strtotime($this->end_date_time);
|
||||
|
||||
if ($this->active == LeoSlideshowStatus::SLIDER_STATUS_DISABLE) {
|
||||
# module validation
|
||||
return LeoSlideshowStatus::SLIDER_STATUS_DISABLE;
|
||||
}
|
||||
|
||||
# NOT SET TIME
|
||||
if ($this->active == LeoSlideshowStatus::SLIDER_STATUS_ENABLE && $start_date_time == 0 && $end_date_time == 0) {
|
||||
# module validation
|
||||
return LeoSlideshowStatus::SLIDER_STATUS_ENABLE;
|
||||
}
|
||||
|
||||
// HAVE SET TIME
|
||||
if ($this->active == LeoSlideshowStatus::SLIDER_STATUS_ENABLE && $start_date_time <= $timestamp && $timestamp <= $end_date_time) {
|
||||
# module validation
|
||||
return LeoSlideshowStatus::SLIDER_STATUS_ENABLE;
|
||||
}
|
||||
|
||||
if ($this->active == LeoSlideshowStatus::SLIDER_STATUS_ENABLE && $timestamp < $start_date_time) {
|
||||
# module validation
|
||||
return LeoSlideshowStatus::SLIDER_STATUS_COMING;
|
||||
}
|
||||
|
||||
# DEFAULT
|
||||
return LeoSlideshowStatus::SLIDER_STATUS_DISABLE;
|
||||
}
|
||||
|
||||
public static function filterSlider($sliders = array(), $slider_data = array())
|
||||
{
|
||||
// echo '<pre>';
|
||||
// print_r($sliders);
|
||||
// echo '============';
|
||||
foreach ($sliders as $key => $slider) {
|
||||
$mod_slide = new LeoSlideshowSlide();
|
||||
$mod_slide->mergeSlider($slider)->mergeParams($slider_data);
|
||||
if ($mod_slide->getStatusTime() == LeoSlideshowStatus::SLIDER_STATUS_ENABLE) {
|
||||
# module validation
|
||||
# data is valid
|
||||
} else {
|
||||
unset($sliders[$key]);
|
||||
# module validation
|
||||
}
|
||||
}
|
||||
// echo '<pre>';
|
||||
// print_r($sliders);die();
|
||||
|
||||
return $sliders;
|
||||
}
|
||||
|
||||
public static function base64Decode($data)
|
||||
{
|
||||
return call_user_func('base64_decode', $data);
|
||||
}
|
||||
|
||||
public static function base64Encode($data)
|
||||
{
|
||||
return call_user_func('base64_encode', $data);
|
||||
}
|
||||
|
||||
/**
|
||||
* remove data follow language : delete layer in Deleting Language
|
||||
*/
|
||||
public function completeDatabase($param = array())
|
||||
{
|
||||
if (isset($param['lang']) && !empty($param['lang'])) {
|
||||
$languages = Context::getContext()->controller->getLanguages();
|
||||
$lang_arr = array();
|
||||
foreach ($languages as $lang) {
|
||||
# module validation
|
||||
$lang_arr[] = $lang['id_lang'];
|
||||
}
|
||||
|
||||
foreach ($this->layersparams as $key => $value) {
|
||||
if (!in_array($key, $lang_arr)) {
|
||||
unset($this->title[$key]);
|
||||
unset($this->link[$key]);
|
||||
unset($this->image[$key]);
|
||||
unset($this->thumbnail[$key]);
|
||||
unset($this->video[$key]);
|
||||
unset($this->layersparams[$key]);
|
||||
}
|
||||
# module validation
|
||||
unset($value);
|
||||
}
|
||||
}
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function debug()
|
||||
{
|
||||
$languages = Context::getContext()->controller->getLanguages();
|
||||
|
||||
# layersparams_debug
|
||||
$this->layersparams_debug = array();
|
||||
foreach ($this->layersparams as $key => $value) {
|
||||
$lang_iso = '';
|
||||
foreach ($languages as $lang) {
|
||||
if ($lang['id_lang'] == $key) {
|
||||
$lang_iso = $lang['iso_code'];
|
||||
}
|
||||
}
|
||||
$this->layersparams_debug['lang_id_' . $key . '_' . $lang_iso] = Tools::jsonDecode(LeoSlideshowSlide::base64Decode($value), true);
|
||||
}
|
||||
unset($this->layersparams);
|
||||
|
||||
# params_debug
|
||||
$this->params_debug = array();
|
||||
foreach ($this->params as $key => $value) {
|
||||
$lang_iso = '';
|
||||
foreach ($languages as $lang) {
|
||||
if ($lang['id_lang'] == $key) {
|
||||
$lang_iso = $lang['iso_code'];
|
||||
}
|
||||
}
|
||||
$this->params_debug['lang_id_' . $key . '_' . $lang_iso] = Tools::jsonDecode(LeoSlideshowSlide::base64Decode($value), true);
|
||||
}
|
||||
unset($this->params);
|
||||
|
||||
# video_debug
|
||||
$this->video_debug = array();
|
||||
foreach ($this->params as $key => $value) {
|
||||
$lang_iso = '';
|
||||
foreach ($languages as $lang) {
|
||||
if ($lang['id_lang'] == $key) {
|
||||
$lang_iso = $lang['iso_code'];
|
||||
}
|
||||
}
|
||||
$this->video_debug['lang_id_' . $key . '_' . $lang_iso] = Tools::jsonDecode(LeoSlideshowSlide::base64Decode($value), true);
|
||||
}
|
||||
unset($this->video);
|
||||
unset($this->def);
|
||||
unset($this->fieldsRequired);
|
||||
unset($this->fieldsSize);
|
||||
unset($this->fieldsValidate);
|
||||
unset($this->fieldsRequiredLang);
|
||||
unset($this->fieldsSizeLang);
|
||||
unset($this->webserviceParameters);
|
||||
unset($this->fieldsValidateLang);
|
||||
unset($this->tables);
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get Background-color, or image
|
||||
*/
|
||||
public static function getBackground($group = array(), &$slider = array())
|
||||
{
|
||||
if (isset($group['background_image']) && $group['background_image'] == '1') {
|
||||
# BACKGROUND IS IMAGE
|
||||
$slider['background_type'] = 'image';
|
||||
$slider['background_color'] = '';
|
||||
|
||||
if (isset($slider['image']) && $slider['image'] != '') {
|
||||
# module validation
|
||||
// get form slide
|
||||
} elseif (isset($group['background_url']) && $group['background_url'] != '') {
|
||||
# module validation
|
||||
$slider['image'] = $group['background_url']; // get image from group
|
||||
} else {
|
||||
// slide and group dont have image
|
||||
$slider['background_type'] = 'image';
|
||||
$slider['image'] = 'views/img/blank.gif';
|
||||
}
|
||||
} elseif (isset($group['background_image']) && $group['background_image'] == '0') {
|
||||
# BACKGROUND IS COLOR
|
||||
$slider['background_type'] = 'color';
|
||||
$slider['image'] = 'views/img/blank.gif';
|
||||
|
||||
if (isset($slider['video']['background_color']) && $slider['video']['background_color'] != '') {
|
||||
# module validation
|
||||
// get form slide
|
||||
} elseif (isset($group['background_color']) && $group['background_color'] != '') {
|
||||
# module validation
|
||||
$slider['image'] = $group['background_color']; // get image from group
|
||||
} else {
|
||||
// Slide and Group dont have image
|
||||
$slider['background_type'] = 'image';
|
||||
$slider['image'] = 'img/blank.gif';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public static function showBulletCustomHTML($slide_params, $sliders)
|
||||
{
|
||||
if ($slide_params['navigator_type'] == LeoSlideshowConfig::IVIEW_NAV_BULLET && $slide_params['enable_custom_html_bullet'] == LeoSlideshowConfig::ENABLE) {
|
||||
foreach ($sliders as $key => &$slider) {
|
||||
$slider['enable_custom_html_bullet'] = LeoSlideshowConfig::ENABLE;
|
||||
$slider['bullet_class'] = $slider['params']['bullet_class'];
|
||||
unset($slider['params']['bullet_class']);
|
||||
$slider['bullet_description'] = isset($slider['video']['bullet_description']) ? $slider['video']['bullet_description'] : '';
|
||||
unset($slider['video']['bullet_description']);
|
||||
unset($key);
|
||||
}
|
||||
} else {
|
||||
foreach ($sliders as $key => &$slider) {
|
||||
# module validation
|
||||
$slider['enable_custom_html_bullet'] = LeoSlideshowConfig::DISABLE;
|
||||
}
|
||||
}
|
||||
return $sliders;
|
||||
}
|
||||
|
||||
public function count()
|
||||
{
|
||||
$sql = 'SELECT id_leoslideshow_slides FROM ' . _DB_PREFIX_ . 'leoslideshow_slides';
|
||||
$groups = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS($sql);
|
||||
$number_groups = count($groups);
|
||||
return $number_groups;
|
||||
}
|
||||
}
|
||||
48
modules/leoslideshow/classes/LeoSlideshowStatus.php
Normal file
@@ -0,0 +1,48 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2015 Leotheme
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* Adds image, text or video to your homepage.
|
||||
*
|
||||
* DISCLAIMER
|
||||
*
|
||||
* @author leotheme <leotheme@gmail.com>
|
||||
* @copyright 2007-2015 Leotheme
|
||||
* @license http://leotheme.com - prestashop template provider
|
||||
*/
|
||||
|
||||
if (!defined('_PS_VERSION_')) {
|
||||
# module validation
|
||||
exit;
|
||||
}
|
||||
|
||||
class LeoSlideshowStatus extends Module
|
||||
{
|
||||
private static $instance = null;
|
||||
|
||||
public static function getInstance()
|
||||
{
|
||||
if (self::$instance == null) {
|
||||
# module validation
|
||||
self::$instance = new LeoSlideshowStatus();
|
||||
}
|
||||
return self::$instance;
|
||||
}
|
||||
const SLIDER_TARGET_SAME = 'same';
|
||||
const SLIDER_TARGET_NEW = 'new';
|
||||
|
||||
public function getSliderTargetOption()
|
||||
{
|
||||
return array(
|
||||
array('id' => self::SLIDER_TARGET_SAME, 'name' => $this->l('Same Window')),
|
||||
array('id' => self::SLIDER_TARGET_NEW, 'name' => $this->l('New Window')),
|
||||
);
|
||||
}
|
||||
const SLIDER_STATUS_DISABLE = '0';
|
||||
const SLIDER_STATUS_ENABLE = '1';
|
||||
const SLIDER_STATUS_COMING = '2';
|
||||
const GROUP_STATUS_DISABLE = '0';
|
||||
const GROUP_STATUS_ENABLE = '1';
|
||||
}
|
||||
35
modules/leoslideshow/classes/index.php
Normal file
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2014 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-2014 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;
|
||||
12
modules/leoslideshow/config.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<module>
|
||||
<name>leoslideshow</name>
|
||||
<displayName><![CDATA[Leo Slideshow for your homepage]]></displayName>
|
||||
<version><![CDATA[1.0.5]]></version>
|
||||
<description><![CDATA[Adds image, text or video to your homepage.]]></description>
|
||||
<author><![CDATA[LeoTheme]]></author>
|
||||
<tab><![CDATA[front_office_features]]></tab>
|
||||
<is_configurable>1</is_configurable>
|
||||
<need_instance>0</need_instance>
|
||||
<limited_countries></limited_countries>
|
||||
</module>
|
||||
373
modules/leoslideshow/controllers/admin/AdminLeoSlideshow.php
Normal file
@@ -0,0 +1,373 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2015 Leotheme
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* Adds image, text or video to your homepage.
|
||||
*
|
||||
* DISCLAIMER
|
||||
*
|
||||
* @author leotheme <leotheme@gmail.com>
|
||||
* @copyright 2007-2015 Leotheme
|
||||
* @license http://leotheme.com - prestashop template provider
|
||||
*/
|
||||
|
||||
if (!defined('_PS_VERSION_')) {
|
||||
# module validation
|
||||
exit;
|
||||
}
|
||||
|
||||
class AdminLeoSlideshowController extends ModuleAdminController
|
||||
{
|
||||
protected $max_image_size = null;
|
||||
public $theme_name;
|
||||
public $img_path;
|
||||
public $img_url;
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
$this->bootstrap = true;
|
||||
$this->max_image_size = (int)Configuration::get('PS_PRODUCT_PICTURE_MAX_SIZE');
|
||||
parent::__construct();
|
||||
$this->theme_name = LeoSlideshowHelper::getThemeName();
|
||||
$this->img_path = LeoSlideshowHelper::getImgThemeDir();
|
||||
$this->img_url = LeoSlideshowHelper::getImgThemeUrl();
|
||||
}
|
||||
|
||||
public function setMedia($isNewTheme = false)
|
||||
{
|
||||
$media_dir = $this->module->getMediaDir();
|
||||
$this->addCss(__PS_BASE_URI__.$media_dir.'css/admin/admincontroller.css', 'all');
|
||||
return parent::setMedia($isNewTheme);
|
||||
}
|
||||
|
||||
public function postProcess()
|
||||
{
|
||||
if (count($this->errors) > 0) {
|
||||
if ($this->ajax) {
|
||||
$array = array('hasError' => true, 'errors' => $this->errors[0]);
|
||||
die(Tools::jsonEncode($array));
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
if (($img_name = Tools::getValue('imgName', false)) !== false) {
|
||||
# module validation
|
||||
unlink($this->img_path.$img_name);
|
||||
}
|
||||
|
||||
if ($reload_slider_image = Tools::getValue('reloadSliderImage')) {
|
||||
//DONGND:: reload list image after delete
|
||||
$tpl = $this->createTemplate('imagemanager.tpl');
|
||||
$sort_by = Tools::getValue('sortBy');
|
||||
|
||||
$images = $this->getImageList($sort_by);
|
||||
$tpl->assign(array(
|
||||
'images' => $images,
|
||||
'reloadSliderImage' => $reload_slider_image,
|
||||
'link' => $this->context->link,
|
||||
));
|
||||
if ($reload_slider_image) {
|
||||
# module validation
|
||||
die(Tools::jsonEncode($tpl->fetch()));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
parent::postProcess();
|
||||
}
|
||||
|
||||
public function importGroup()
|
||||
{
|
||||
$type = Tools::strtolower(Tools::substr(strrchr($_FILES['import_file']['name'], '.'), 1));
|
||||
|
||||
if (isset($_FILES['import_file']) && $type == 'txt' && isset($_FILES['import_file']['tmp_name']) && !empty($_FILES['import_file']['tmp_name'])) {
|
||||
include_once(_PS_MODULE_DIR_.'leoslideshow/classes/LeoSlideshowGroup.php');
|
||||
include_once(_PS_MODULE_DIR_.'leoslideshow/classes/LeoSlideshowSlide.php');
|
||||
|
||||
$content = Tools::file_get_contents($_FILES['import_file']['tmp_name']);
|
||||
$content = Tools::jsonDecode(LeoSlideshowSlide::base64Decode($content), true);
|
||||
|
||||
//DONGND:: validate if file not match
|
||||
if (!is_array($content) || !isset($content['id_leoslideshow_groups']) || $content['id_leoslideshow_groups'] == '') {
|
||||
return false;
|
||||
}
|
||||
$language_field = array('title', 'link', 'image', 'thumbnail', 'video', 'layersparams');
|
||||
$languages = Language::getLanguages();
|
||||
$lang_list = array();
|
||||
foreach ($languages as $lang) {
|
||||
# module validation
|
||||
$lang_list[$lang['iso_code']] = $lang['id_lang'];
|
||||
}
|
||||
|
||||
$override_group = Tools::getValue('override_group');
|
||||
|
||||
//override or edit
|
||||
if ($override_group && LeoSlideshowGroup::groupExists($content['id_leoslideshow_groups'])) {
|
||||
$mod_group = new LeoSlideshowGroup($content['id_leoslideshow_groups']);
|
||||
//edit group
|
||||
$mod_group = $this->setDataForGroup($mod_group, $content);
|
||||
if (!$mod_group->update()) {
|
||||
# module validation
|
||||
return false;
|
||||
}
|
||||
LeoSlideshowGroup::deleteAllSlider($content['id_leoslideshow_groups']);
|
||||
|
||||
foreach ($content['sliders'] as $slider) {
|
||||
$mod_slide = new LeoSlideshowSlide();
|
||||
foreach ($slider as $key => $val) {
|
||||
if (in_array($key, $language_field)) {
|
||||
foreach ($val as $key_lang => $val_lang) {
|
||||
# module validation
|
||||
$mod_slide->{$key}[$lang_list[$key_lang]] = $val_lang;
|
||||
}
|
||||
} else {
|
||||
# module validation
|
||||
$mod_slide->{$key} = $val;
|
||||
}
|
||||
}
|
||||
$mod_slide->id_group = $mod_group->id;
|
||||
if (isset($slider['id']) && $slider['id'] && LeoSlideshowSlide::sliderExist($slider['id'])) {
|
||||
# module validation
|
||||
$mod_slide->update();
|
||||
} else {
|
||||
# module validation
|
||||
$mod_slide->add();
|
||||
}
|
||||
}
|
||||
} else {
|
||||
$mod_group = new LeoSlideshowGroup();
|
||||
$mod_group = $this->setDataForGroup($mod_group, $content);
|
||||
$mod_group->randkey = LeoSlideshowHelper::genKey();
|
||||
if (!$mod_group->add()) {
|
||||
# module validation
|
||||
return false;
|
||||
}
|
||||
|
||||
foreach ($content['sliders'] as $slider) {
|
||||
$mod_slide = new LeoSlideshowSlide();
|
||||
foreach ($slider as $key => $val) {
|
||||
if (in_array($key, $language_field)) {
|
||||
foreach ($val as $key_lang => $val_lang) {
|
||||
# module validation
|
||||
$mod_slide->{$key}[$lang_list[$key_lang]] = $val_lang;
|
||||
}
|
||||
} else {
|
||||
# module validation
|
||||
$mod_slide->{$key} = $val;
|
||||
}
|
||||
}
|
||||
$mod_slide->id_group = $mod_group->id;
|
||||
$mod_slide->id = 0;
|
||||
$mod_slide->add();
|
||||
}
|
||||
}
|
||||
//add new
|
||||
//return true;
|
||||
}
|
||||
Tools::redirectAdmin('index.php?controller=AdminModules&token='.Tools::getAdminTokenLite('AdminModules').'&configure=leoslideshow&tab_module=leotheme&module_name=leoslideshow&conf=4');
|
||||
// return false;
|
||||
}
|
||||
|
||||
public function setDataForGroup($group, $content)
|
||||
{
|
||||
$group->title = $content['title'];
|
||||
$group->id_shop = $this->context->shop->id;
|
||||
$group->hook = $content['hook'];
|
||||
$group->active = $content['active'];
|
||||
$group->params = $content['params'];
|
||||
$group->sliders = $content['sliders'];
|
||||
return $group;
|
||||
}
|
||||
/*
|
||||
* get all slider data
|
||||
*/
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* renderForm contains all necessary initialization needed for all tabs
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function renderList()
|
||||
{
|
||||
$media_dir = $this->module->getMediaDir();
|
||||
$typo = Tools::getValue('typo');
|
||||
if ($typo) {
|
||||
if (file_exists(_PS_THEME_DIR_.'assets/css/modules/leoslideshow/views/css/typo/typo.css')) {
|
||||
$typo_dir = _THEME_DIR_.'assets/css/modules/leoslideshow/views/css/typo/typo.css';
|
||||
} else {
|
||||
if (file_exists(_PS_THEME_DIR_.'modules/leoslideshow/views/css/typo/typo.css')) {
|
||||
$typo_dir = _THEME_DIR_.str_replace('//', '/', 'modules/leoslideshow').'/views/css/typo/typo.css';
|
||||
} else {
|
||||
$typo_dir = __PS_BASE_URI__.$media_dir.'/css/typo/typo.css';
|
||||
}
|
||||
}
|
||||
|
||||
$this->addCss($typo_dir, 'all');
|
||||
$this->addJS(__PS_BASE_URI__.$media_dir.'js/admin/jquery-ui-1.10.3.custom.min.js');
|
||||
|
||||
$content = Tools::file_get_contents($this->context->link->getMediaLink($typo_dir));
|
||||
preg_match_all('#\.tp-caption\.(\w+)\s*{\s*#', $content, $matches);
|
||||
|
||||
if (isset($matches[1])) {
|
||||
# module validation
|
||||
$captions = $matches[1];
|
||||
}
|
||||
$tpl = $this->createTemplate('typo.tpl');
|
||||
$tpl->assign(array(
|
||||
'typoDir' => $typo_dir,
|
||||
'captions' => $captions,
|
||||
'field' => Tools::getValue('field')
|
||||
));
|
||||
return $tpl->fetch();
|
||||
}
|
||||
|
||||
//this code for select or upload IMG
|
||||
$tpl = $this->createTemplate('imagemanager.tpl');
|
||||
$sort_by = Tools::getValue('sortBy');
|
||||
$reload_slider_image = Tools::getValue('reloadSliderImage');
|
||||
$images = $this->getImageList($sort_by);
|
||||
$tpl->assign(array(
|
||||
'images' => $images,
|
||||
'reloadSliderImage' => $reload_slider_image,
|
||||
));
|
||||
if ($reload_slider_image) {
|
||||
# module validation
|
||||
die(Tools::jsonEncode($tpl->fetch()));
|
||||
}
|
||||
|
||||
$image_uploader = new HelperImageUploader('file');
|
||||
$image_uploader->setSavePath($this->img_path);
|
||||
$url = Context::getContext()->link->getAdminLink('AdminLeoSlideshow').'&ajax=1&action=addSliderImage';
|
||||
$image_uploader->setMultiple(true)->setUseAjax(true)->setUrl($url);
|
||||
|
||||
$tpl->assign(array(
|
||||
'countImages' => count($images),
|
||||
'images' => $images,
|
||||
'max_image_size' => $this->max_image_size / 1024 / 1024,
|
||||
'image_uploader' => $image_uploader->render(),
|
||||
'imgManUrl' => Context::getContext()->link->getAdminLink('AdminLeoSlideshow'),
|
||||
'token' => $this->token,
|
||||
'imgUploadDir' => $this->img_path
|
||||
));
|
||||
|
||||
return $tpl->fetch();
|
||||
}
|
||||
|
||||
public function getImageList($sort_by)
|
||||
{
|
||||
$path = $this->img_path;
|
||||
$this->createFolderUpImage();
|
||||
$images = glob($path.'{*.jpeg,*.JPEG,*.jpg,*.JPG,*.gif,*.GIF,*.png,*.PNG}', GLOB_BRACE);
|
||||
if (!$images) {
|
||||
# module validation
|
||||
$images = $this->getAllImage($path);
|
||||
}
|
||||
|
||||
if ($sort_by == 'name_desc') {
|
||||
# module validation
|
||||
rsort($images);
|
||||
}
|
||||
|
||||
if ($sort_by == 'date' || $sort_by == 'date_desc') {
|
||||
# module validation
|
||||
array_multisort(array_map('filemtime', $images), SORT_NUMERIC, SORT_DESC, $images);
|
||||
}
|
||||
if ($sort_by == 'date_desc') {
|
||||
# module validation
|
||||
rsort($images);
|
||||
}
|
||||
|
||||
$result = array();
|
||||
foreach ($images as &$file) {
|
||||
$file_info = pathinfo($file);
|
||||
$result[] = array('name' => $file_info['basename'], 'link' => $this->img_url.$file_info['basename']);
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
|
||||
public function getAllImage($path)
|
||||
{
|
||||
$images = array();
|
||||
foreach (scandir($path) as $d) {
|
||||
if (preg_match('/(.*)\.(jpg|png|gif|jpeg)$/', $d)) {
|
||||
# module validation
|
||||
$images[] = $d;
|
||||
}
|
||||
}
|
||||
return $images;
|
||||
}
|
||||
|
||||
public function ajaxProcessaddSliderImage()
|
||||
{
|
||||
if (isset($_FILES['file'])) {
|
||||
$image_uploader = new HelperUploader('file');
|
||||
$this->createFolderUpImage();
|
||||
$image_uploader->setSavePath($this->img_path);
|
||||
$image_uploader->setAcceptTypes(array('jpeg', 'gif', 'png', 'jpg'))->setMaxSize($this->max_image_size);
|
||||
$files = $image_uploader->process();
|
||||
$total_errors = array();
|
||||
|
||||
foreach ($files as &$file) {
|
||||
$errors = array();
|
||||
// Evaluate the memory required to resize the image: if it's too much, you can't resize it.
|
||||
if (!ImageManager::checkImageMemoryLimit($file['save_path'])) {
|
||||
# module validation
|
||||
$errors[] = Tools::displayError('Due to memory limit restrictions, this image cannot be loaded. Please increase your memory_limit value via your server\'s configuration settings. ');
|
||||
}
|
||||
|
||||
if (count($errors)) {
|
||||
# module validation
|
||||
$total_errors = array_merge($total_errors, $errors);
|
||||
}
|
||||
|
||||
//unlink($file['save_path']);
|
||||
//Necesary to prevent hacking
|
||||
unset($file['save_path']);
|
||||
|
||||
//Add image preview and delete url
|
||||
}
|
||||
|
||||
if (count($total_errors)) {
|
||||
# module validation
|
||||
$this->context->controller->errors = array_merge($this->context->controller->errors, $total_errors);
|
||||
}
|
||||
|
||||
$images = $this->getImageList('date');
|
||||
$tpl = $this->createTemplate('imagemanager.tpl');
|
||||
$tpl->assign(array(
|
||||
'images' => $images,
|
||||
'reloadSliderImage' => 1,
|
||||
'link' => Context::getContext()->link
|
||||
));
|
||||
die(Tools::jsonEncode($tpl->fetch()));
|
||||
}
|
||||
}
|
||||
|
||||
public function createFolderUpImage()
|
||||
{
|
||||
if (!is_dir($this->img_path)) {
|
||||
mkdir($this->img_path, 0755, true);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* PERMISSION ACCOUNT demo@demo.com
|
||||
* OVERRIDE CORE
|
||||
*/
|
||||
public function initProcess()
|
||||
{
|
||||
parent::initProcess();
|
||||
if (count($this->errors) <= 0) {
|
||||
if (($module_instance = Module::getInstanceByName('leoslideshow'))) {
|
||||
if (!$module_instance->access('configure')) {
|
||||
$this->errors[] = $this->trans('You do not have permission to configure this.', array(), 'Admin.Notifications.Error');
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2015 Leotheme
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* Adds image, text or video to your homepage.
|
||||
*
|
||||
* DISCLAIMER
|
||||
*
|
||||
* @author leotheme <leotheme@gmail.com>
|
||||
* @copyright 2007-2015 Leotheme
|
||||
* @license http://leotheme.com - prestashop template provider
|
||||
*/
|
||||
|
||||
if (!defined('_PS_VERSION_')) {
|
||||
# module validation
|
||||
exit;
|
||||
}
|
||||
|
||||
class AdminLeoSlideshowMenuModuleController extends ModuleAdminControllerCore
|
||||
{
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct();
|
||||
if (Configuration::get('LEOSLIDESHOW_GROUP_DE') && Configuration::get('LEOSLIDESHOW_GROUP_DE') != '') {
|
||||
$url = 'index.php?controller=adminmodules&configure=leoslideshow&editgroup=1&id_group='.Configuration::get('LEOSLIDESHOW_GROUP_DE').'&tab_module=front_office_features&module_name=leoslideshow&token='.Tools::getAdminTokenLite('AdminModules');
|
||||
} else {
|
||||
$url = 'index.php?controller=adminmodules&configure=leoslideshow&tab_module=front_office_features&module_name=leoslideshow&token='.Tools::getAdminTokenLite('AdminModules');
|
||||
}
|
||||
Tools::redirectAdmin($url);
|
||||
}
|
||||
}
|
||||
35
modules/leoslideshow/controllers/admin/index.php
Normal file
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2014 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-2014 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;
|
||||
35
modules/leoslideshow/controllers/front/index.php
Normal file
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2014 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-2014 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;
|
||||
437
modules/leoslideshow/controllers/front/preview.php
Normal file
@@ -0,0 +1,437 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2015 Leotheme
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* Adds image, text or video to your homepage.
|
||||
*
|
||||
* DISCLAIMER
|
||||
*
|
||||
* @author leotheme <leotheme@gmail.com>
|
||||
* @copyright 2007-2015 Leotheme
|
||||
* @license http://leotheme.com - prestashop template provider
|
||||
*/
|
||||
|
||||
if (!defined('_PS_VERSION_')) {
|
||||
# module validation
|
||||
exit;
|
||||
}
|
||||
|
||||
class LeoSlideshowPreviewModuleFrontController extends ModuleFrontController
|
||||
{
|
||||
private $name_module = 'leoslideshow';
|
||||
public $theme_name;
|
||||
public $img_path;
|
||||
public $img_url;
|
||||
public $slider_data = '';
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct();
|
||||
$this->theme_name = LeoSlideshowHelper::getThemeName();
|
||||
$this->img_path = LeoSlideshowHelper::getImgThemeDir();
|
||||
$this->img_url = LeoSlideshowHelper::getImgThemeUrl();
|
||||
|
||||
include_once($this->module->getLocalPath().$this->name_module.'.php');
|
||||
}
|
||||
|
||||
/**
|
||||
* @see FrontController::initContent()
|
||||
*/
|
||||
public function display()
|
||||
{
|
||||
$media_dir = $this->module->getMediaDir();
|
||||
// tpl in theme folder or module folder
|
||||
if (file_exists(_PS_THEME_DIR_.'modules/leoslideshow/views/templates/front/leoslideshow.tpl')) {
|
||||
# module validation
|
||||
$leoslideshow_tpl = 1;
|
||||
} else {
|
||||
$leoslideshow_tpl = 0;
|
||||
}
|
||||
if (file_exists(_PS_THEME_DIR_.'modules/leoslideshow/views/css/typo/typo.css')) {
|
||||
# module validation
|
||||
$typo_dir = _THEME_DIR_.str_replace('//', '/', 'modules/leoslideshow').'views/css/typo/typo.css';
|
||||
} else {
|
||||
# module validation
|
||||
$typo_dir = __PS_BASE_URI__.$media_dir.'/css/typo/typo.css';
|
||||
}
|
||||
if (file_exists(_PS_THEME_DIR_.'assets/css/modules/leoslideshow/views/css/typo/typo.css')) {
|
||||
# module validation
|
||||
$typo_dir = _THEME_DIR_.'assets/css/modules/leoslideshow/views/css/typo/typo.css';
|
||||
} else {
|
||||
# module validation
|
||||
$typo_dir = __PS_BASE_URI__.$media_dir.'/css/typo/typo.css';
|
||||
}
|
||||
$this->addCSS($typo_dir, 'all');
|
||||
$this->addCSS(__PS_BASE_URI__.$media_dir.'css/iView/iview.css', 'all');
|
||||
$this->addCSS(__PS_BASE_URI__.$media_dir.'css/iView/skin_4_responsive/style.css', 'all');
|
||||
|
||||
$this->addJS(__PS_BASE_URI__.$media_dir.'js/iView/raphael-min.js');
|
||||
$this->addJS(__PS_BASE_URI__.$media_dir.'js/iView/iview.js');
|
||||
|
||||
if (!is_dir(_PS_ROOT_DIR_.'/cache/'.$this->name_module)) {
|
||||
# module validation
|
||||
mkdir(_PS_ROOT_DIR_.'/cache/'.$this->name_module, 0755, true);
|
||||
}
|
||||
|
||||
# PREVIEW GROUP
|
||||
$id_group = Tools::getValue('id_group');
|
||||
$id_lang = $this->context->language->id;
|
||||
if ($id_group) {
|
||||
$group = LeoSlideshowGroup::getGroupByID($id_group);
|
||||
if (!Tools::getValue('id_slider') && !Tools::getValue('preview')) {
|
||||
# module validation
|
||||
$sliders = $this->getSlides($id_group, $id_lang, 1);
|
||||
}
|
||||
}
|
||||
|
||||
if (!isset($group) || !$group) {
|
||||
# module validation
|
||||
return false;
|
||||
}
|
||||
|
||||
$id_slider = Tools::getValue('id_slide');
|
||||
if ($id_slider && !Tools::getValue('preview')) {
|
||||
# module validation
|
||||
$sliders = $this->getSlide($id_slider, $id_lang);
|
||||
}
|
||||
|
||||
if (Tools::getValue('preview')) {
|
||||
$slider_preview_data = trim(html_entity_decode((Tools::getValue('slider_preview_data'))));
|
||||
$slider_preview_data = Tools::jsonDecode($slider_preview_data);
|
||||
// echo '<pre>';
|
||||
// print_r($slider_preview_data);die();
|
||||
foreach ($slider_preview_data as $key => $val) {
|
||||
# module validation
|
||||
$sliders[0][$key] = $val;
|
||||
}
|
||||
$tmp_slider = array();
|
||||
$tmp_slider = $sliders[0]['params'];
|
||||
$sliders[0]['params'] = array();
|
||||
foreach ($tmp_slider as $key => $val) {
|
||||
# module validation
|
||||
$sliders[0]['params'][$key] = $val;
|
||||
}
|
||||
$tmp_slider = $sliders[0]['video'];
|
||||
$sliders[0]['video'] = array();
|
||||
foreach ($tmp_slider as $key => $val) {
|
||||
# module validation
|
||||
$sliders[0]['video'][$key] = $val;
|
||||
}
|
||||
$tmp_slider = $sliders[0]['layers'];
|
||||
$sliders[0]['layers'] = array();
|
||||
foreach ($tmp_slider as $key => $val) {
|
||||
foreach ($val as $k => $v) {
|
||||
# module validation
|
||||
$sliders[0]['layersparams'][$key][$k] = $v;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (!isset($sliders) || !$sliders) {
|
||||
# module validation
|
||||
return false;
|
||||
}
|
||||
$this->name = 'leoslideshow';
|
||||
$slider_module = new LeoSlideshow();
|
||||
$group_data = $slider_module->group_data;
|
||||
$this->slider_data = $slider_module->slider_data;
|
||||
$slider_params = Tools::jsonDecode(LeoSlideshowSlide::base64Decode($group['params']), true);
|
||||
// echo '<pre>';
|
||||
// print_r($slider_params);die();
|
||||
$slider_params = array_merge($group_data, $slider_params);
|
||||
$mod_group = new LeoSlideshowGroup();
|
||||
$mod_group->setModule($this->module);
|
||||
$slider_params = $mod_group->setData($slider_params)->beforeLoad()->loadFrontEnd();
|
||||
if (isset($slider_params['fullwidth']) && (!empty($slider_params['fullwidth']) || $slider_params['fullwidth'] == 'boxed')) {
|
||||
# module validation
|
||||
$slider_params['image_cropping'] = false;
|
||||
}
|
||||
|
||||
$slider_params['hide_navigator_after'] = $slider_params['show_navigator'] ? 0 : $slider_params['hide_navigator_after'];
|
||||
$slider_params['slider_class'] = trim(isset($slider_params['fullwidth']) && !empty($slider_params['fullwidth']) ? $slider_params['fullwidth'] : 'boxed');
|
||||
$slider_fullwidth = $slider_params['slider_class'] == 'boxed' ? 'off' : 'on';
|
||||
|
||||
// generate back-ground
|
||||
if ($slider_params['background_image'] && $slider_params['background_url'] && file_exists($this->img_path.$slider_params['background_url'])) {
|
||||
# module validation
|
||||
$slider_params['background'] = 'background: url('.$this->img_url.$slider_params['background_url'].') no-repeat scroll left 0 '.$slider_params['background_color'].';';
|
||||
} else {
|
||||
# module validation
|
||||
$slider_params['background'] = 'background-color:'.$slider_params['background_color'];
|
||||
}
|
||||
|
||||
//include library genimage
|
||||
if (!class_exists('PhpThumbFactory')) {
|
||||
# module validation
|
||||
require_once _PS_MODULE_DIR_.'leoslideshow/libs/phpthumb/ThumbLib.inc.php';
|
||||
}
|
||||
|
||||
$white_main_img = __PS_BASE_URI__.'modules/'.$this->name.'/views/img/white50.png';
|
||||
|
||||
//process slider
|
||||
foreach ($sliders as $key => $slider) {
|
||||
if (!Tools::getValue('preview')) {
|
||||
$slider['layers'] = array();
|
||||
$slider['params'] = array_merge($this->slider_data, Tools::jsonDecode(LeoSlideshowSlide::base64Decode($slider['params']), true));
|
||||
$slider['layersparams'] = Tools::jsonDecode(LeoSlideshowSlide::base64Decode($slider['layersparams']), true);
|
||||
$slider['video'] = Tools::jsonDecode(LeoSlideshowSlide::base64Decode($slider['video']), true);
|
||||
}
|
||||
$slider['data_link'] = '';
|
||||
if ($slider['params']['enable_link'] && $slider['link']) {
|
||||
// $slider['data_link'] = 'data-link="'.$slider['link'].'"';
|
||||
// $slider['data_target'] = 'data-target="'.LeoSlideshowSlide::renderTarget($slider['params']['target']).'"';
|
||||
$slider['data_link'] = $slider['link'];
|
||||
$slider['data_target'] = LeoSlideshowSlide::renderTarget($slider['params']['target']);
|
||||
} else {
|
||||
# module validation
|
||||
$slider['data_target'] = '';
|
||||
}
|
||||
|
||||
$slider['data_delay'] = (int)$slider['params']['delay'];
|
||||
|
||||
//videoURL
|
||||
$slider['videoURL'] = '';
|
||||
$slider['video']['active'] = '0';
|
||||
if ($slider['video']['usevideo'] == 'youtube' || $slider['video']['usevideo'] == 'vimeo') {
|
||||
$slider['video']['active'] = '1';
|
||||
$slider['video']['videoURL'] = Tools::getCurrentUrlProtocolPrefix() . 'player.vimeo.com/video/'.$slider['video']['videoid'].'/';
|
||||
if ($slider['video']['usevideo'] == 'youtube') {
|
||||
# module validation
|
||||
$slider['video']['videoURL'] = Tools::getCurrentUrlProtocolPrefix() . 'www.youtube.com/embed/'.$slider['video']['videoid'].'/';
|
||||
}
|
||||
}
|
||||
|
||||
if ($slider['video']['videoauto'] == 1) {
|
||||
# module validation
|
||||
$slider['video']['videoauto'] = 'autoplay=1';
|
||||
} else {
|
||||
# module validation
|
||||
$slider['video']['videoauto'] = 'autoplay=0';
|
||||
}
|
||||
|
||||
// $slider['background_color'] = '';
|
||||
//DONGND:: background color for preview
|
||||
if (!isset($slider['background_color']) || $slider['background_color'] == '') {
|
||||
$slider['background_color'] = '';
|
||||
if (isset($slider_params['background_color']) && $slider_params['background_color']) {
|
||||
# module validation
|
||||
$slider['background_color'] = $slider_params['background_color'];
|
||||
}
|
||||
}
|
||||
|
||||
if (isset($slider['video']['background_color']) && $slider['video']['background_color']) {
|
||||
# module validation
|
||||
$slider['background_color'] = $slider['video']['background_color'];
|
||||
}
|
||||
// echo '<pre>';
|
||||
// print_r($slider);
|
||||
LeoSlideshowSlide::getBackground($slider_params, $slider);
|
||||
// echo '<pre>';
|
||||
// print_r($slider);
|
||||
// echo '<pre>';
|
||||
// print_r($slider['image']);
|
||||
if ($slider['image'] == '') {
|
||||
# module validation
|
||||
$slider['image'] = 'views/img/blank.gif';
|
||||
}
|
||||
// echo '<pre>';
|
||||
// print_r($this->img_path.$slider['image']);
|
||||
if ($slider_params['image_cropping']) {
|
||||
//gender main_image
|
||||
if ($slider['image'] && file_exists($this->img_path.$slider['image'])) {
|
||||
# module validation
|
||||
$slider['main_image'] = $this->renderThumb($slider['image'], $slider_params['width'], $slider_params['height']);
|
||||
} else {
|
||||
# module validation
|
||||
$slider['main_image'] = $white_main_img;
|
||||
}
|
||||
|
||||
if ($slider['thumbnail'] && file_exists($this->img_path.$slider['thumbnail'])) {
|
||||
# module validation
|
||||
//$slider['thumbnail'] = $this->renderThumb($slider['thumbnail'], $sliderParams['thumbnail_width'], $sliderParams['thumbnail_height']);
|
||||
} else if ($slider['image'] && file_exists($this->img_path.$slider['image'])) {
|
||||
# module validation
|
||||
//$slider['thumbnail'] = $this->renderThumb($slider['image'], $sliderParams['thumbnail_width'], $sliderParams['thumbnail_height']);
|
||||
} else {
|
||||
# module validation
|
||||
$slider['thumbnail'] = $white_main_img;
|
||||
}
|
||||
} else {
|
||||
$slider['main_image'] = __PS_BASE_URI__.'modules/leoslideshow'.'/views/img/blank.gif';
|
||||
|
||||
if ($slider['image'] && file_exists($this->img_path.$slider['image'])) {
|
||||
# module validation
|
||||
$slider['main_image'] = $this->img_url.$slider['image'];
|
||||
} else if (((Tools::substr($slider['image'], 0, 7) == 'http://')) || ((Tools::substr($slider['image'], 0, 8) == 'https://')) || ((Tools::substr($slider['image'], 0, 10) == 'data:image'))) {
|
||||
# Image External Link
|
||||
$slider['main_image'] = $slider['image'];
|
||||
}
|
||||
|
||||
if ($slider['thumbnail'] && file_exists($this->img_path.$slider['thumbnail'])) {
|
||||
# module validation
|
||||
$slider['thumbnail'] = $this->img_url.$slider['thumbnail'];
|
||||
} else if ($slider['image'] && file_exists($this->img_path.$slider['image'])) {
|
||||
# module validation
|
||||
$slider['thumbnail'] = $slider['main_image'];
|
||||
} else if (((Tools::substr($slider['thumbnail'], 0, 7) == 'http://')) || ((Tools::substr($slider['thumbnail'], 0, 8) == 'https://')) || ((Tools::substr($slider['thumbnail'], 0, 10) == 'data:image'))) {
|
||||
# Image External Link
|
||||
$slider['thumbnail'] = $slider['thumbnail'];
|
||||
} else {
|
||||
# module validation
|
||||
$slider['thumbnail'] = $white_main_img;
|
||||
}
|
||||
}
|
||||
|
||||
if (isset($slider['layersparams']) && $slider['layersparams']) {
|
||||
foreach ($slider['layersparams'] as $k => &$layer_css) {
|
||||
if ($layer_css['layer_status'] == 0) {
|
||||
unset($slider['layersparams'][$k]);
|
||||
continue;
|
||||
}
|
||||
|
||||
$layer_css_val = '';
|
||||
if (isset($layer_css['layer_font_size']) && $layer_css['layer_font_size']) {
|
||||
# module validation
|
||||
$layer_css_val = 'font-size:'.$layer_css['layer_font_size'];
|
||||
}
|
||||
if (isset($layer_css['layer_background_color']) && $layer_css['layer_background_color']) {
|
||||
# module validation
|
||||
$layer_css_val .= ($layer_css_val != '' ? ';' : '').'background-color:'.$layer_css['layer_background_color'];
|
||||
}
|
||||
if (isset($layer_css['layer_color']) && $layer_css['layer_color']) {
|
||||
# module validation
|
||||
$layer_css_val .= ($layer_css_val != '' ? ';' : '').'color:'.$layer_css['layer_color'];
|
||||
}
|
||||
$layer_css['css'] = $layer_css_val;
|
||||
if (!isset($layer_css['layer_link'])) {
|
||||
# module validation
|
||||
$layer_css['layer_link'] = $slider['link'];
|
||||
}
|
||||
$layer_css['layer_target'] = LeoSlideshowSlide::renderTarget($layer_css['layer_target']);
|
||||
if (isset($layer_css['layer_caption']) && $layer_css['layer_caption']) {
|
||||
# module validation
|
||||
$layer_css['layer_caption'] = utf8_decode($layer_css['layer_caption']);
|
||||
}
|
||||
if (isset($layer_css['layer_type']) && $layer_css['layer_type'] == 'image') {
|
||||
if (((Tools::substr($layer_css['layer_content'], 0, 4) != 'http')) && ((Tools::substr($layer_css['layer_content'], 0, 8) != 'data:image'))) {
|
||||
$layer_css['layer_content'] = $this->img_url. $layer_css['layer_content'];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
$sliders[$key] = $slider;
|
||||
}
|
||||
// die();
|
||||
$slider_params['start_with_slide'] = LeoSlideshowGroup::showStartWithSlide($slider_params['start_with_slide'], $sliders);
|
||||
$sliders = LeoSlideshowSlide::showBulletCustomHTML($slider_params, $sliders);
|
||||
$slider_params['playLabel'] = LeoSlideshowHelper::l('Play');
|
||||
$slider_params['pauseLabel'] = LeoSlideshowHelper::l('Pause');
|
||||
$slider_params['closeLabel'] = LeoSlideshowHelper::l('Close');
|
||||
$slider_params['rtl'] = $this->context->language->is_rtl;
|
||||
// echo '<pre>';
|
||||
// print_r($sliders);die();
|
||||
$this->context->smarty->assign(array(
|
||||
'sliderParams' => $slider_params,
|
||||
'sliders' => $sliders,
|
||||
'sliderIDRand' => rand(20, rand()),
|
||||
'sliderFullwidth' => $slider_fullwidth,
|
||||
'sliderImgUrl' => $this->img_url,
|
||||
'leoslideshow_tpl' => $leoslideshow_tpl,
|
||||
'rand_num' => uniqid(),
|
||||
));
|
||||
// print_r($leoslideshow_tpl);die();
|
||||
// $this->setTemplate('preview.tpl');
|
||||
|
||||
if ($leoslideshow_tpl == 1) {
|
||||
if (!file_exists(_PS_THEME_DIR_.'modules/leoslideshow/views/templates/front/preview.tpl')) {
|
||||
@copy(_PS_MODULE_DIR_.'leoslideshow/views/templates/front/preview.tpl', _PS_THEME_DIR_.'modules/leoslideshow/views/templates/front/preview.tpl');
|
||||
}
|
||||
|
||||
$this->setTemplate('../modules/leoslideshow/views/templates/front/preview.tpl');
|
||||
} else {
|
||||
$this->setTemplate('module:leoslideshow/views/templates/front/preview.tpl');
|
||||
}
|
||||
|
||||
parent::display();
|
||||
}
|
||||
|
||||
public function renderThumb($src_file, $width, $height)
|
||||
{
|
||||
$sub_folder = '/';
|
||||
if (!$src_file) {
|
||||
# module validation
|
||||
return '';
|
||||
}
|
||||
if (strpos($src_file, '/') !== false) {
|
||||
$path = @pathinfo($src_file);
|
||||
if (strpos($path['dirname'], '/') !== -1) {
|
||||
$sub_folder = $path['dirname'].'/';
|
||||
$folder_list = explode('/', $path['dirname']);
|
||||
$tmp_folder = '/';
|
||||
foreach ($folder_list as $value) {
|
||||
if ($value) {
|
||||
if (!is_dir(_PS_ROOT_DIR_.'/cache/'.$this->name_module.$tmp_folder.$value)) {
|
||||
# module validation
|
||||
mkdir(_PS_ROOT_DIR_.'/cache/'.$this->name_module.$tmp_folder.$value, 0755, true);
|
||||
}
|
||||
|
||||
$tmp_folder .= $value.'/';
|
||||
}
|
||||
}
|
||||
}
|
||||
$image_name = $path['basename'];
|
||||
} else {
|
||||
# module validation
|
||||
$image_name = $src_file;
|
||||
}
|
||||
|
||||
$path = '';
|
||||
if (file_exists($this->img_path.$src_file)) {
|
||||
//return image url
|
||||
$path = __PS_BASE_URI__.'cache/'.$this->name_module.$sub_folder.$width.'_'.$height.'_'.$image_name;
|
||||
$save_path = _PS_ROOT_DIR_.'/cache/'.$this->name_module.$sub_folder.$width.'_'.$height.'_'.$image_name;
|
||||
if (!file_exists($save_path)) {
|
||||
$thumb = PhpThumbFactory::create($this->img_path.$src_file);
|
||||
$thumb->adaptiveResize($width, $height);
|
||||
$thumb->save($save_path);
|
||||
}
|
||||
}
|
||||
|
||||
return $path;
|
||||
}
|
||||
|
||||
/**
|
||||
* get all slider data
|
||||
*/
|
||||
public function getSlides($id_group, $id_lang, $active = null)
|
||||
{
|
||||
$this->context = Context::getContext();
|
||||
if (!$id_lang) {
|
||||
# module validation
|
||||
$id_lang = $this->context->language->id;
|
||||
}
|
||||
|
||||
$sql = 'SELECT lsl.`id_leoslideshow_slides` as id_slide,lsl.*,lsll.*
|
||||
FROM '._DB_PREFIX_.'leoslideshow_slides lsl
|
||||
LEFT JOIN '._DB_PREFIX_.'leoslideshow_slides_lang lsll ON (lsl.id_leoslideshow_slides = lsll.id_leoslideshow_slides)
|
||||
WHERE lsl.id_group = '.(int)$id_group.'
|
||||
AND lsll.id_lang = '.(int)$id_lang.
|
||||
($active ? ' AND lsl.`active` = 1' : ' ').'
|
||||
ORDER BY lsl.position';
|
||||
return Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS($sql);
|
||||
}
|
||||
|
||||
/**
|
||||
* get all slider data
|
||||
*/
|
||||
public function getSlide($id_slider, $id_lang)
|
||||
{
|
||||
$sql = 'SELECT lsl.`id_leoslideshow_slides` as id_slide, lsl.*,lsll.*
|
||||
FROM '._DB_PREFIX_.'leoslideshow_slides lsl
|
||||
LEFT JOIN '._DB_PREFIX_.'leoslideshow_slides_lang lsll ON (lsl.id_leoslideshow_slides = lsll.id_leoslideshow_slides)
|
||||
WHERE lsl.id_leoslideshow_slides= '.(int)$id_slider.' AND lsll.id_lang = '.(int)$id_lang;
|
||||
return Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS($sql);
|
||||
}
|
||||
}
|
||||
35
modules/leoslideshow/controllers/index.php
Normal file
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2014 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-2014 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;
|
||||
35
modules/leoslideshow/index.php
Normal file
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2014 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-2014 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;
|
||||
3248
modules/leoslideshow/leoslideshow.php
Normal file
104
modules/leoslideshow/libs/Helper.php
Normal file
@@ -0,0 +1,104 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2015 Leotheme
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* Adds image, text or video to your homepage.
|
||||
*
|
||||
* DISCLAIMER
|
||||
*
|
||||
* @author leotheme <leotheme@gmail.com>
|
||||
* @copyright 2007-2015 Leotheme
|
||||
* @license http://leotheme.com - prestashop template provider
|
||||
*/
|
||||
|
||||
if (!class_exists('LeoSlideshowHelper')) {
|
||||
|
||||
class LeoSlideshowHelper
|
||||
{
|
||||
const MODULE_NAME = 'leoslideshow';
|
||||
|
||||
public static function l($string, $specific = false, $name = '')
|
||||
{
|
||||
if (empty($name)) {
|
||||
$name = self::MODULE_NAME;
|
||||
}
|
||||
return Translate::getModuleTranslation($name, $string, ($specific) ? $specific : $name);
|
||||
}
|
||||
|
||||
/**
|
||||
* Copy js, css to theme folder
|
||||
*/
|
||||
public static function copyToTheme()
|
||||
{
|
||||
include_once(_PS_MODULE_DIR_.'leoslideshow/libs/phpcopy.php');
|
||||
|
||||
$theme_dir = _PS_ROOT_DIR_.'/themes/'.LeoSlideshowHelper::getThemeName().'/';
|
||||
$module_dir = _PS_MODULE_DIR_.self::MODULE_NAME.'/';
|
||||
|
||||
$theme_js_dir = $theme_dir.'js/modules/leoslideshow/views/js';
|
||||
$theme_css_dir = $theme_dir.'css/modules/leoslideshow/views/css';
|
||||
|
||||
// Create js folder
|
||||
mkdir($theme_js_dir, 0755, true);
|
||||
PhpCopy::safeCopy($module_dir.'views/js/', $theme_js_dir);
|
||||
|
||||
// Create css folder
|
||||
mkdir($theme_css_dir, 0755, true);
|
||||
PhpCopy::safeCopy($module_dir.'views/css/', $theme_css_dir);
|
||||
|
||||
$url = 'index.php?controller=adminmodules&configure=leoslideshow&token='.Tools::getAdminTokenLite('AdminModules')
|
||||
.'&tab_module=front_office_features&module_name=leoslideshow';
|
||||
Tools::redirectAdmin($url);
|
||||
}
|
||||
|
||||
public static function getImgThemeUrl()
|
||||
{
|
||||
# LeoSlideshowHelper::getImgThemeUrl()
|
||||
static $img_theme_url;
|
||||
if (!$img_theme_url) {
|
||||
// Not exit image or icon
|
||||
// $img_theme_url = _THEME_IMG_DIR_.'modules/leoslideshow/';
|
||||
$img_theme_url = _THEMES_DIR_.self::getThemeName().'/assets/img/modules/leoslideshow/';
|
||||
}
|
||||
|
||||
return $img_theme_url;
|
||||
}
|
||||
|
||||
public static function getImgThemeDir()
|
||||
{
|
||||
static $img_theme_dir;
|
||||
if (!$img_theme_dir) {
|
||||
$img_theme_dir = _PS_ALL_THEMES_DIR_.LeoSlideshowHelper::getThemeName().'/assets/img/modules/leoslideshow/';
|
||||
}
|
||||
return $img_theme_dir;
|
||||
}
|
||||
|
||||
public static function genKey()
|
||||
{
|
||||
return md5(time().rand());
|
||||
}
|
||||
|
||||
public static function getThemeName()
|
||||
{
|
||||
static $theme_name;
|
||||
if (!$theme_name) {
|
||||
# DEFAULT SINGLE_SHOP
|
||||
$theme_name = _THEME_NAME_;
|
||||
|
||||
# GET THEME_NAME MULTI_SHOP
|
||||
if (Shop::getTotalShops(false, null) >= 2) {
|
||||
$id_shop = Context::getContext()->shop->id;
|
||||
|
||||
$shop_arr = Shop::getShop($id_shop);
|
||||
if (is_array($shop_arr) && !empty($shop_arr)) {
|
||||
$theme_name = $shop_arr['theme_name'];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return $theme_name;
|
||||
}
|
||||
}
|
||||
}
|
||||
25
modules/leoslideshow/libs/LeoValidate.php
Normal file
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2015 Leotheme
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* Adds image, text or video to your homepage.
|
||||
*
|
||||
* DISCLAIMER
|
||||
*
|
||||
* @author leotheme <leotheme@gmail.com>
|
||||
* @copyright 2007-2015 Leotheme
|
||||
* @license http://leotheme.com - prestashop template provider
|
||||
*/
|
||||
|
||||
if (!defined('_PS_VERSION_')) {
|
||||
# module validation
|
||||
exit;
|
||||
}
|
||||
|
||||
|
||||
class Datasample
|
||||
{
|
||||
|
||||
}
|
||||
35
modules/leoslideshow/libs/index.php
Normal file
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2014 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-2014 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;
|
||||
96
modules/leoslideshow/libs/phpcopy.php
Normal file
@@ -0,0 +1,96 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2015 Leotheme
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* Adds image, text or video to your homepage.
|
||||
*
|
||||
* DISCLAIMER
|
||||
*
|
||||
* @author leotheme <leotheme@gmail.com>
|
||||
* @copyright 2007-2015 Leotheme
|
||||
* @license http://leotheme.com - prestashop template provider
|
||||
*/
|
||||
|
||||
if (!class_exists('phpcopy')) {
|
||||
|
||||
class PhpCopy
|
||||
{
|
||||
|
||||
/**
|
||||
* @reference http://snipplr.com/view/74297/copy-files-and-folder-recursive/
|
||||
* copy and override
|
||||
*/
|
||||
public static function cpy($source, $dest)
|
||||
{
|
||||
if (is_dir($source)) {
|
||||
$dir_handle = opendir($source);
|
||||
while ($file = readdir($dir_handle)) {
|
||||
if ($file != "." && $file != "..") {
|
||||
if (is_dir($source."/".$file)) {
|
||||
if (!is_dir($dest."/".$file)) {
|
||||
mkdir($dest."/".$file);
|
||||
}
|
||||
self::cpy($source."/".$file, $dest."/".$file);
|
||||
} else {
|
||||
// if this is file then copy
|
||||
copy($source."/".$file, $dest."/".$file);
|
||||
}
|
||||
}
|
||||
}
|
||||
closedir($dir_handle);
|
||||
} else {
|
||||
// if this is file then copy
|
||||
copy($source, $dest);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Copy but not override
|
||||
*/
|
||||
public static function safeCopy($source, $dest)
|
||||
{
|
||||
if (is_dir($source)) {
|
||||
$dir_handle = opendir($source);
|
||||
while ($file = readdir($dir_handle)) {
|
||||
if ($file != "." && $file != "..") {
|
||||
if (is_dir($source."/".$file)) {
|
||||
if (!is_dir($dest."/".$file)) {
|
||||
mkdir($dest."/".$file);
|
||||
}
|
||||
self::safeCopy($source."/".$file, $dest."/".$file);
|
||||
} else {
|
||||
if (is_file($dest."/".$file) === false) {
|
||||
// if this is file then copy
|
||||
copy($source."/".$file, $dest."/".$file);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
closedir($dir_handle);
|
||||
} else {
|
||||
if (is_file($dest) === false) {
|
||||
// if this is file then copy
|
||||
// if the destination file already exists, it will NOT be overwritten.
|
||||
copy($source, $dest);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* create folder foler path : a/b/c/d
|
||||
* recursively create a long directory path
|
||||
*/
|
||||
public static function createPath($path)
|
||||
{
|
||||
if (is_dir($path)) {
|
||||
# module validation
|
||||
return true;
|
||||
}
|
||||
$prev_path = Tools::substr($path, 0, strrpos($path, '/', -2) + 1);
|
||||
$return = self::createPath($prev_path);
|
||||
return ($return && is_writable($prev_path)) ? mkdir($path) : false;
|
||||
}
|
||||
}
|
||||
}
|
||||
1035
modules/leoslideshow/libs/phpthumb/GdThumb.inc.php
Normal file
220
modules/leoslideshow/libs/phpthumb/PhpThumb.inc.php
Normal file
@@ -0,0 +1,220 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2015 Leotheme
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* Adds image, text or video to your homepage.
|
||||
*
|
||||
* DISCLAIMER
|
||||
*
|
||||
* @author leotheme <leotheme@gmail.com>
|
||||
* @copyright 2007-2015 Leotheme
|
||||
* @license http://leotheme.com - prestashop template provider
|
||||
*/
|
||||
|
||||
/**
|
||||
* PhpThumb Object
|
||||
*
|
||||
* This singleton object is essentially a function library that helps with core validation
|
||||
* and loading of the core classes and plugins. There isn't really any need to access it directly,
|
||||
* unless you're developing a plugin and need to take advantage of any of the functionality contained
|
||||
* within.
|
||||
*
|
||||
* If you're not familiar with singleton patterns, here's how you get an instance of this class (since you
|
||||
* can't create one via the new keyword):
|
||||
* <code>$pt = PhpThumb::getInstance();</code>
|
||||
*
|
||||
* It's that simple! Outside of that, there's no need to modify anything within this class, unless you're doing
|
||||
* some crazy customization... then knock yourself out! :)
|
||||
*
|
||||
* @package PhpThumb
|
||||
* @subpackage Core
|
||||
*/
|
||||
class PhpThumb
|
||||
{
|
||||
/**
|
||||
* Instance of self
|
||||
*
|
||||
* @var object PhpThumb
|
||||
*/
|
||||
protected static $_instance;
|
||||
/**
|
||||
* The plugin registry
|
||||
*
|
||||
* This is where all plugins to be loaded are stored. Data about the plugin is
|
||||
* provided, and currently consists of:
|
||||
* - loaded: true/false
|
||||
* - implementation: gd/imagick/both
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $_registry;
|
||||
/**
|
||||
* What implementations are available
|
||||
*
|
||||
* This stores what implementations are available based on the loaded
|
||||
* extensions in PHP, NOT whether or not the class files are present.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $_implementations;
|
||||
|
||||
/**
|
||||
* Returns an instance of self
|
||||
*
|
||||
* This is the usual singleton function that returns / instantiates the object
|
||||
*
|
||||
* @return PhpThumb
|
||||
*/
|
||||
public static function getInstance()
|
||||
{
|
||||
if (!(self::$_instance instanceof self)) {
|
||||
self::$_instance = new self();
|
||||
}
|
||||
|
||||
return self::$_instance;
|
||||
}
|
||||
|
||||
/**
|
||||
* Class constructor
|
||||
*
|
||||
* Initializes all the variables, and does some preliminary validation / checking of stuff
|
||||
*
|
||||
*/
|
||||
private function __construct()
|
||||
{
|
||||
$this->_registry = array();
|
||||
$this->_implementations = array('gd' => false, 'imagick' => false);
|
||||
|
||||
$this->getImplementations();
|
||||
}
|
||||
|
||||
/**
|
||||
* Finds out what implementations are available
|
||||
*
|
||||
* This function loops over $this->_implementations and validates that the required extensions are loaded.
|
||||
*
|
||||
* I had planned on attempting to load them dynamically via dl(), but that would provide more overhead than I
|
||||
* was comfortable with (and would probably fail 99% of the time anyway)
|
||||
*
|
||||
*/
|
||||
private function getImplementations()
|
||||
{
|
||||
foreach ($this->_implementations as $extension => $loaded) {
|
||||
if ($loaded) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (extension_loaded($extension)) {
|
||||
$this->_implementations[$extension] = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns whether or not $implementation is valid (available)
|
||||
*
|
||||
* If 'all' is passed, true is only returned if ALL implementations are available.
|
||||
*
|
||||
* You can also pass 'n/a', which always returns true
|
||||
*
|
||||
* @return bool
|
||||
* @param string $implementation
|
||||
*/
|
||||
public function isValidImplementation($implementation)
|
||||
{
|
||||
if ($implementation == 'n/a') {
|
||||
return true;
|
||||
}
|
||||
|
||||
if ($implementation == 'all') {
|
||||
foreach ($this->_implementations as $imp => $value) {
|
||||
if ($value == false) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
if (array_key_exists($implementation, $this->_implementations)) {
|
||||
return $this->_implementations[$implementation];
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Registers a plugin in the registry
|
||||
*
|
||||
* Adds a plugin to the registry if it isn't already loaded, and if the provided
|
||||
* implementation is valid. Note that you can pass the following special keywords
|
||||
* for implementation:
|
||||
* - all - Requires that all implementations be available
|
||||
* - n/a - Doesn't require any implementation
|
||||
*
|
||||
* When a plugin is added to the registry, it's added as a key on $this->_registry with the value
|
||||
* being an array containing the following keys:
|
||||
* - loaded - whether or not the plugin has been "loaded" into the core class
|
||||
* - implementation - what implementation this plugin is valid for
|
||||
*
|
||||
* @return bool
|
||||
* @param string $pluginName
|
||||
* @param string $implementation
|
||||
*/
|
||||
public function registerPlugin($pluginName, $implementation)
|
||||
{
|
||||
if (!array_key_exists($pluginName, $this->_registry) && $this->isValidImplementation($implementation)) {
|
||||
$this->_registry[$pluginName] = array('loaded' => false, 'implementation' => $implementation);
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loads all the plugins in $pluginPath
|
||||
*
|
||||
* All this function does is include all files inside the $pluginPath directory. The plugins themselves
|
||||
* will not be added to the registry unless you've properly added the code to do so inside your plugin file.
|
||||
*
|
||||
* @param string $pluginPath
|
||||
*/
|
||||
public function loadPlugins($pluginPath)
|
||||
{
|
||||
// strip the trailing slash if present
|
||||
if (Tools::substr($pluginPath, Tools::strlen($pluginPath) - 1, 1) == '/') {
|
||||
$pluginPath = Tools::substr($pluginPath, 0, Tools::strlen($pluginPath) - 1);
|
||||
}
|
||||
|
||||
if ($handle = opendir($pluginPath)) {
|
||||
while (false !== ($file = readdir($handle))) {
|
||||
if ($file == '.' || $file == '..' || $file == '.svn' || $file == 'index.php') {
|
||||
continue;
|
||||
}
|
||||
|
||||
include_once($pluginPath.'/'.$file);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the plugin registry for the supplied implementation
|
||||
*
|
||||
* @return array
|
||||
* @param string $implementation
|
||||
*/
|
||||
public function getPluginRegistry($implementation)
|
||||
{
|
||||
$returnArray = array();
|
||||
|
||||
foreach ($this->_registry as $plugin => $meta) {
|
||||
if ($meta['implementation'] == 'n/a' || $meta['implementation'] == $implementation) {
|
||||
$returnArray[$plugin] = $meta;
|
||||
}
|
||||
}
|
||||
|
||||
return $returnArray;
|
||||
}
|
||||
}
|
||||
13
modules/leoslideshow/libs/phpthumb/README.md
Normal file
@@ -0,0 +1,13 @@
|
||||
# PHP Thumb
|
||||
|
||||
PHP Thumb is a light-weight image manipulation library
|
||||
aimed at thumbnail generation. It features the ability to
|
||||
resize by width, height, and percentage, create custom crops,
|
||||
or square crops from the center, and rotate the image. You can
|
||||
also easily add custom functionality to the library through plugins.
|
||||
It also features the ability to perform multiple manipulations per
|
||||
instance (also known as chaining), without the need to save and
|
||||
re-initialize the class with every manipulation.
|
||||
|
||||
More information and documentation is available at the project's
|
||||
homepage: [http://phpthumb.gxdlabs.com](http://phpthumb.gxdlabs.com)
|
||||
304
modules/leoslideshow/libs/phpthumb/ThumbBase.inc.php
Normal file
@@ -0,0 +1,304 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2015 Leotheme
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* Adds image, text or video to your homepage.
|
||||
*
|
||||
* DISCLAIMER
|
||||
*
|
||||
* @author leotheme <leotheme@gmail.com>
|
||||
* @copyright 2007-2015 Leotheme
|
||||
* @license http://leotheme.com - prestashop template provider
|
||||
*/
|
||||
|
||||
/**
|
||||
* ThumbBase Class Definition
|
||||
*
|
||||
* This is the base class that all implementations must extend. It contains the
|
||||
* core variables and functionality common to all implementations, as well as the functions that
|
||||
* allow plugins to augment those classes.
|
||||
*
|
||||
* @package PhpThumb
|
||||
* @subpackage Core
|
||||
*/
|
||||
abstract class ThumbBase
|
||||
{
|
||||
/**
|
||||
* All imported objects
|
||||
*
|
||||
* An array of imported plugin objects
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $imported;
|
||||
/**
|
||||
* All imported object functions
|
||||
*
|
||||
* An array of all methods added to this class by imported plugin objects
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $importedFunctions;
|
||||
/**
|
||||
* The last error message raised
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $errorMessage;
|
||||
/**
|
||||
* Whether or not the current instance has any errors
|
||||
*
|
||||
* @var bool
|
||||
*/
|
||||
protected $hasError;
|
||||
/**
|
||||
* The name of the file we're manipulating
|
||||
*
|
||||
* This must include the path to the file (absolute paths recommended)
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $fileName;
|
||||
/**
|
||||
* What the file format is (mime-type)
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $format;
|
||||
/**
|
||||
* Whether or not the image is hosted remotely
|
||||
*
|
||||
* @var bool
|
||||
*/
|
||||
protected $remoteImage;
|
||||
/**
|
||||
* Whether or not the current image is an actual file, or the raw file data
|
||||
*
|
||||
* By "raw file data" it's meant that we're actually passing the result of something
|
||||
* like file_get_contents() or perhaps from a database blob
|
||||
*
|
||||
* @var bool
|
||||
*/
|
||||
protected $isDataStream;
|
||||
|
||||
/**
|
||||
* Class constructor
|
||||
*
|
||||
* @return ThumbBase
|
||||
*/
|
||||
public function __construct($fileName, $isDataStream = false)
|
||||
{
|
||||
$this->imported = array();
|
||||
$this->importedFunctions = array();
|
||||
$this->errorMessage = null;
|
||||
$this->hasError = false;
|
||||
$this->fileName = $fileName;
|
||||
$this->remoteImage = false;
|
||||
$this->isDataStream = $isDataStream;
|
||||
|
||||
$this->fileExistsAndReadable();
|
||||
}
|
||||
|
||||
/**
|
||||
* Imports plugins in $registry to the class
|
||||
*
|
||||
* @param array $registry
|
||||
*/
|
||||
public function importPlugins($registry)
|
||||
{
|
||||
foreach ($registry as $plugin => $meta) {
|
||||
$this->imports($plugin);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Imports a plugin
|
||||
*
|
||||
* This is where all the plugins magic happens! This function "loads" the plugin functions, making them available as
|
||||
* methods on the class.
|
||||
*
|
||||
* @param string $object The name of the object to import / "load"
|
||||
*/
|
||||
protected function imports($object)
|
||||
{
|
||||
// the new object to import
|
||||
$newImport = new $object();
|
||||
// the name of the new object (class name)
|
||||
$importName = get_class($newImport);
|
||||
// the new functions to import
|
||||
$importFunctions = get_class_methods($newImport);
|
||||
|
||||
// add the object to the registry
|
||||
array_push($this->imported, array($importName, $newImport));
|
||||
|
||||
// add the methods to the registry
|
||||
foreach ($importFunctions as $key => $functionName) {
|
||||
$this->importedFunctions[$functionName] = &$newImport;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Checks to see if $this->fileName exists and is readable
|
||||
*
|
||||
*/
|
||||
protected function fileExistsAndReadable()
|
||||
{
|
||||
if ($this->isDataStream === true) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (stristr($this->fileName, 'http://') !== false) {
|
||||
$this->remoteImage = true;
|
||||
return;
|
||||
}
|
||||
|
||||
if (!file_exists($this->fileName)) {
|
||||
$this->triggerError('Image file not found: '.$this->fileName);
|
||||
} elseif (!is_readable($this->fileName)) {
|
||||
$this->triggerError('Image file not readable: '.$this->fileName);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets $this->errorMessage to $errorMessage and throws an exception
|
||||
*
|
||||
* Also sets $this->hasError to true, so even if the exceptions are caught, we don't
|
||||
* attempt to proceed with any other functions
|
||||
*
|
||||
* @param string $errorMessage
|
||||
*/
|
||||
protected function triggerError($errorMessage)
|
||||
{
|
||||
$this->hasError = true;
|
||||
$this->errorMessage = $errorMessage;
|
||||
|
||||
throw new Exception($errorMessage);
|
||||
}
|
||||
|
||||
/**
|
||||
* Calls plugin / imported functions
|
||||
*
|
||||
* This is also where a fair amount of plugins magaic happens. This magic method is called whenever an "undefined" class
|
||||
* method is called in code, and we use that to call an imported function.
|
||||
*
|
||||
* You should NEVER EVER EVER invoke this function manually. The universe will implode if you do... seriously ;)
|
||||
*
|
||||
* @param string $method
|
||||
* @param array $args
|
||||
*/
|
||||
public function __call($method, $args)
|
||||
{
|
||||
if (array_key_exists($method, $this->importedFunctions)) {
|
||||
$args[] = $this;
|
||||
return call_user_func_array(array($this->importedFunctions[$method], $method), $args);
|
||||
}
|
||||
|
||||
throw new BadMethodCallException('Call to undefined method/class function: '.$method);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns $imported.
|
||||
* @see ThumbBase::$imported
|
||||
* @return array
|
||||
*/
|
||||
public function getImported()
|
||||
{
|
||||
return $this->imported;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns $importedFunctions.
|
||||
* @see ThumbBase::$importedFunctions
|
||||
* @return array
|
||||
*/
|
||||
public function getImportedFunctions()
|
||||
{
|
||||
return $this->importedFunctions;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns $errorMessage.
|
||||
*
|
||||
* @see ThumbBase::$errorMessage
|
||||
*/
|
||||
public function getErrorMessage()
|
||||
{
|
||||
return $this->errorMessage;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets $errorMessage.
|
||||
*
|
||||
* @param object $errorMessage
|
||||
* @see ThumbBase::$errorMessage
|
||||
*/
|
||||
public function setErrorMessage($errorMessage)
|
||||
{
|
||||
$this->errorMessage = $errorMessage;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns $fileName.
|
||||
*
|
||||
* @see ThumbBase::$fileName
|
||||
*/
|
||||
public function getFileName()
|
||||
{
|
||||
return $this->fileName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets $fileName.
|
||||
*
|
||||
* @param object $fileName
|
||||
* @see ThumbBase::$fileName
|
||||
*/
|
||||
public function setFileName($fileName)
|
||||
{
|
||||
$this->fileName = $fileName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns $format.
|
||||
*
|
||||
* @see ThumbBase::$format
|
||||
*/
|
||||
public function getFormat()
|
||||
{
|
||||
return $this->format;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets $format.
|
||||
*
|
||||
* @param object $format
|
||||
* @see ThumbBase::$format
|
||||
*/
|
||||
public function setFormat($format)
|
||||
{
|
||||
$this->format = $format;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns $hasError.
|
||||
*
|
||||
* @see ThumbBase::$hasError
|
||||
*/
|
||||
public function getHasError()
|
||||
{
|
||||
return $this->hasError;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets $hasError.
|
||||
*
|
||||
* @param object $hasError
|
||||
* @see ThumbBase::$hasError
|
||||
*/
|
||||
public function setHasError($hasError)
|
||||
{
|
||||
$this->hasError = $hasError;
|
||||
}
|
||||
}
|
||||
129
modules/leoslideshow/libs/phpthumb/ThumbLib.inc.php
Normal file
@@ -0,0 +1,129 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2015 Leotheme
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* Adds image, text or video to your homepage.
|
||||
*
|
||||
* DISCLAIMER
|
||||
*
|
||||
* @author leotheme <leotheme@gmail.com>
|
||||
* @copyright 2007-2015 Leotheme
|
||||
* @license http://leotheme.com - prestashop template provider
|
||||
*/
|
||||
|
||||
// define some useful constants
|
||||
define('THUMBLIB_BASE_PATH', dirname(__FILE__));
|
||||
define('THUMBLIB_PLUGIN_PATH', THUMBLIB_BASE_PATH.'/thumb_plugins/');
|
||||
define('DEFAULT_THUMBLIB_IMPLEMENTATION', 'gd');
|
||||
|
||||
/**
|
||||
* Include the PhpThumb Class
|
||||
*/
|
||||
require_once THUMBLIB_BASE_PATH.'/PhpThumb.inc.php';
|
||||
/**
|
||||
* Include the ThumbBase Class
|
||||
*/
|
||||
require_once THUMBLIB_BASE_PATH.'/ThumbBase.inc.php';
|
||||
/**
|
||||
* Include the GdThumb Class
|
||||
*/
|
||||
require_once THUMBLIB_BASE_PATH.'/GdThumb.inc.php';
|
||||
|
||||
/**
|
||||
* PhpThumbFactory Object
|
||||
*
|
||||
* This class is responsible for making sure everything is set up and initialized properly,
|
||||
* and returning the appropriate thumbnail class instance. It is the only recommended way
|
||||
* of using this library, and if you try and circumvent it, the sky will fall on your head :)
|
||||
*
|
||||
* Basic use is easy enough. First, make sure all the settings meet your needs and environment...
|
||||
* these are the static variables defined at the beginning of the class.
|
||||
*
|
||||
* Once that's all set, usage is pretty easy. You can simply do something like:
|
||||
* <code>$thumb = PhpThumbFactory::create('/path/to/file.png');</code>
|
||||
*
|
||||
* Refer to the documentation for the create function for more information
|
||||
*
|
||||
* @package PhpThumb
|
||||
* @subpackage Core
|
||||
*/
|
||||
class PhpThumbFactory
|
||||
{
|
||||
/**
|
||||
* Which implemenation of the class should be used by default
|
||||
*
|
||||
* Currently, valid options are:
|
||||
* - imagick
|
||||
* - gd
|
||||
*
|
||||
* These are defined in the implementation map variable, inside the create function
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public static $defaultImplemenation = DEFAULT_THUMBLIB_IMPLEMENTATION;
|
||||
/**
|
||||
* Where the plugins can be loaded from
|
||||
*
|
||||
* Note, it's important that this path is properly defined. It is very likely that you'll
|
||||
* have to change this, as the assumption here is based on a relative path.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public static $pluginPath = THUMBLIB_PLUGIN_PATH;
|
||||
|
||||
/**
|
||||
* Factory Function
|
||||
*
|
||||
* This function returns the correct thumbnail object, augmented with any appropriate plugins.
|
||||
* It does so by doing the following:
|
||||
* - Getting an instance of PhpThumb
|
||||
* - Loading plugins
|
||||
* - Validating the default implemenation
|
||||
* - Returning the desired default implementation if possible
|
||||
* - Returning the GD implemenation if the default isn't available
|
||||
* - Throwing an exception if no required libraries are present
|
||||
*
|
||||
* @return GdThumb
|
||||
* @uses PhpThumb
|
||||
* @param string $filename The path and file to load [optional]
|
||||
*/
|
||||
public static function create($filename = null, $options = array(), $isDataStream = false)
|
||||
{
|
||||
// map our implementation to their class names
|
||||
$implementationMap = array
|
||||
(
|
||||
'imagick' => 'ImagickThumb',
|
||||
'gd' => 'GdThumb'
|
||||
);
|
||||
|
||||
// grab an instance of PhpThumb
|
||||
$pt = PhpThumb::getInstance();
|
||||
// load the plugins
|
||||
$pt->loadPlugins(self::$pluginPath);
|
||||
|
||||
$toReturn = null;
|
||||
$implementation = self::$defaultImplemenation;
|
||||
|
||||
// attempt to load the default implementation
|
||||
if ($pt->isValidImplementation(self::$defaultImplemenation)) {
|
||||
$imp = $implementationMap[self::$defaultImplemenation];
|
||||
$toReturn = new $imp($filename, $options, $isDataStream);
|
||||
}
|
||||
// load the gd implementation if default failed
|
||||
else if ($pt->isValidImplementation('gd')) {
|
||||
$imp = $implementationMap['gd'];
|
||||
$implementation = 'gd';
|
||||
$toReturn = new $imp($filename, $options, $isDataStream);
|
||||
}
|
||||
// throw an exception if we can't load
|
||||
else {
|
||||
throw new Exception('You must have either the GD or iMagick extension loaded to use this library');
|
||||
}
|
||||
|
||||
$registry = $pt->getPluginRegistry($implementation);
|
||||
$toReturn->importPlugins($registry);
|
||||
return $toReturn;
|
||||
}
|
||||
}
|
||||
35
modules/leoslideshow/libs/phpthumb/index.php
Normal file
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2014 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-2014 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;
|
||||
@@ -0,0 +1,149 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2015 Leotheme
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* Adds image, text or video to your homepage.
|
||||
*
|
||||
* DISCLAIMER
|
||||
*
|
||||
* @author leotheme <leotheme@gmail.com>
|
||||
* @copyright 2007-2015 Leotheme
|
||||
* @license http://leotheme.com - prestashop template provider
|
||||
*/
|
||||
|
||||
/**
|
||||
* GD Reflection Lib Plugin
|
||||
*
|
||||
* This plugin allows you to create those fun Apple(tm)-style reflections in your images
|
||||
*
|
||||
* @package PhpThumb
|
||||
* @subpackage Plugins
|
||||
*/
|
||||
class GdReflectionLib
|
||||
{
|
||||
/**
|
||||
* Instance of GdThumb passed to this class
|
||||
*
|
||||
* @var GdThumb
|
||||
*/
|
||||
protected $parentInstance;
|
||||
protected $currentDimensions;
|
||||
protected $workingImage;
|
||||
protected $newImage;
|
||||
protected $options;
|
||||
|
||||
public function createReflection($percent, $reflection, $white, $border, $borderColor, &$that)
|
||||
{
|
||||
// bring stuff from the parent class into this class...
|
||||
$this->parentInstance = $that;
|
||||
$this->currentDimensions = $this->parentInstance->getCurrentDimensions();
|
||||
$this->workingImage = $this->parentInstance->getWorkingImage();
|
||||
$this->newImage = $this->parentInstance->getOldImage();
|
||||
$this->options = $this->parentInstance->getOptions();
|
||||
|
||||
$width = $this->currentDimensions['width'];
|
||||
$height = $this->currentDimensions['height'];
|
||||
$reflectionHeight = intval($height * ($reflection / 100));
|
||||
$newHeight = $height + $reflectionHeight;
|
||||
$reflectedPart = $height * ($percent / 100);
|
||||
|
||||
$this->workingImage = imagecreatetruecolor($width, $newHeight);
|
||||
|
||||
imagealphablending($this->workingImage, true);
|
||||
|
||||
$colorToPaint = imagecolorallocatealpha($this->workingImage, 255, 255, 255, 0);
|
||||
imagefilledrectangle($this->workingImage, 0, 0, $width, $newHeight, $colorToPaint);
|
||||
|
||||
imagecopyresampled
|
||||
(
|
||||
$this->workingImage, $this->newImage, 0, 0, 0, $reflectedPart, $width, $reflectionHeight, $width, ($height - $reflectedPart)
|
||||
);
|
||||
|
||||
$this->imageFlipVertical();
|
||||
|
||||
imagecopy($this->workingImage, $this->newImage, 0, 0, 0, 0, $width, $height);
|
||||
|
||||
imagealphablending($this->workingImage, true);
|
||||
|
||||
for ($i = 0; $i < $reflectionHeight; $i++) {
|
||||
$colorToPaint = imagecolorallocatealpha($this->workingImage, 255, 255, 255, ($i / $reflectionHeight * -1 + 1) * $white);
|
||||
|
||||
imagefilledrectangle($this->workingImage, 0, $height + $i, $width, $height + $i, $colorToPaint);
|
||||
}
|
||||
|
||||
if ($border == true) {
|
||||
$rgb = $this->hex2rgb($borderColor, false);
|
||||
$colorToPaint = imagecolorallocate($this->workingImage, $rgb[0], $rgb[1], $rgb[2]);
|
||||
|
||||
imageline($this->workingImage, 0, 0, $width, 0, $colorToPaint); //top line
|
||||
imageline($this->workingImage, 0, $height, $width, $height, $colorToPaint); //bottom line
|
||||
imageline($this->workingImage, 0, 0, 0, $height, $colorToPaint); //left line
|
||||
imageline($this->workingImage, $width - 1, 0, $width - 1, $height, $colorToPaint); //right line
|
||||
}
|
||||
|
||||
if ($this->parentInstance->getFormat() == 'PNG') {
|
||||
$colorTransparent = imagecolorallocatealpha
|
||||
(
|
||||
$this->workingImage, $this->options['alphaMaskColor'][0], $this->options['alphaMaskColor'][1], $this->options['alphaMaskColor'][2], 0
|
||||
);
|
||||
|
||||
imagefill($this->workingImage, 0, 0, $colorTransparent);
|
||||
imagesavealpha($this->workingImage, true);
|
||||
}
|
||||
|
||||
$this->parentInstance->setOldImage($this->workingImage);
|
||||
$this->currentDimensions['width'] = $width;
|
||||
$this->currentDimensions['height'] = $newHeight;
|
||||
$this->parentInstance->setCurrentDimensions($this->currentDimensions);
|
||||
|
||||
return $that;
|
||||
}
|
||||
|
||||
/**
|
||||
* Flips the image vertically
|
||||
*
|
||||
*/
|
||||
protected function imageFlipVertical()
|
||||
{
|
||||
$x_i = imagesx($this->workingImage);
|
||||
$y_i = imagesy($this->workingImage);
|
||||
|
||||
for ($x = 0; $x < $x_i; $x++) {
|
||||
for ($y = 0; $y < $y_i; $y++) {
|
||||
imagecopy($this->workingImage, $this->workingImage, $x, $y_i - $y - 1, $x, $y, 1, 1);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Converts a hex color to rgb tuples
|
||||
*
|
||||
* @return mixed
|
||||
* @param string $hex
|
||||
* @param bool $asString
|
||||
*/
|
||||
protected function hex2rgb($hex, $asString = false)
|
||||
{
|
||||
// strip off any leading #
|
||||
if (0 === strpos($hex, '#')) {
|
||||
$hex = Tools::substr($hex, 1);
|
||||
} elseif (0 === strpos($hex, '&H')) {
|
||||
$hex = Tools::substr($hex, 2);
|
||||
}
|
||||
|
||||
// break into hex 3-tuple
|
||||
$cutpoint = ceil(Tools::strlen($hex) / 2) - 1;
|
||||
$rgb = explode(':', wordwrap($hex, $cutpoint, ':', $cutpoint), 3);
|
||||
|
||||
// convert each tuple to decimal
|
||||
$rgb[0] = (isset($rgb[0]) ? hexdec($rgb[0]) : 0);
|
||||
$rgb[1] = (isset($rgb[1]) ? hexdec($rgb[1]) : 0);
|
||||
$rgb[2] = (isset($rgb[2]) ? hexdec($rgb[2]) : 0);
|
||||
|
||||
return ($asString ? "{$rgb[0]} {$rgb[1]} {$rgb[2]}" : $rgb);
|
||||
}
|
||||
}
|
||||
$pt = PhpThumb::getInstance();
|
||||
$pt->registerPlugin('GdReflectionLib', 'gd');
|
||||
36
modules/leoslideshow/libs/phpthumb/thumb_plugins/index.php
Normal file
@@ -0,0 +1,36 @@
|
||||
<?php
|
||||
/*
|
||||
* 2007-2014 PrestaShop
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This source file is subject to the Open Software License (OSL 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/osl-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-2014 PrestaShop SA
|
||||
* @version Release: $Revision$
|
||||
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
|
||||
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
|
||||
|
||||
header("Cache-Control: no-store, no-cache, must-revalidate");
|
||||
header("Cache-Control: post-check=0, pre-check=0", false);
|
||||
header("Pragma: no-cache");
|
||||
|
||||
header("Location: ../");
|
||||
exit;
|
||||
BIN
modules/leoslideshow/logo.gif
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
modules/leoslideshow/logo.png
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2015 Leotheme
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* Adds image, text or video to your homepage.
|
||||
*
|
||||
* DISCLAIMER
|
||||
*
|
||||
* @author leotheme <leotheme@gmail.com>
|
||||
* @copyright 2007-2015 Leotheme
|
||||
* @license http://leotheme.com - prestashop template provider
|
||||
*/
|
||||
|
||||
class CmsController extends CmsControllerCore
|
||||
{
|
||||
|
||||
public function display()
|
||||
{
|
||||
if ((bool) Module::isEnabled('leoslideshow')) {
|
||||
$leoslideshow = Module::getInstanceByName('leoslideshow');
|
||||
$leoslideshow->processCMS();
|
||||
}
|
||||
|
||||
return parent::display();
|
||||
}
|
||||
}
|
||||
35
modules/leoslideshow/override/controllers/front/index.php
Normal file
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2014 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-2014 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;
|
||||
35
modules/leoslideshow/override/controllers/index.php
Normal file
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2014 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-2014 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;
|
||||
35
modules/leoslideshow/override/index.php
Normal file
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2014 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-2014 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;
|
||||
273
modules/leoslideshow/translations/ar.php
Normal file
@@ -0,0 +1,273 @@
|
||||
<?php
|
||||
|
||||
global $_MODULE;
|
||||
$_MODULE = array();
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_359142c1a00ba1320090e98b3e89f31c'] = 'ليو عرض لصفحتك الرئيسية';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_ee8726e003319356246eb21ebc1db4c9'] = 'ويضيف نص او صورة او فيديو إلى صفحتك الرئيسية.';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_d85886451e1218b8ccf9e252c5bb4350'] = 'كان استيراد ناجحة';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_96ff377127e787e778c7fa509cec0805'] = 'إضافة المنزلق الجديدة';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_896cf81ef83de359d014303b411775f5'] = 'كنت editting المنزلق:';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_bafd7322c6e97d25b6299b5d6fe8920b'] = 'لا';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_c57adbcab6a8e9a9a7e1a5eed4fe095e'] = 'المتزلج عنوان';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_2faec1f9f8cc7f8f40d521c4dd574f49'] = 'تمكين';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_8f497c1a3d15af9e0c215019f26b887d'] = 'تأخير';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_03937134cedab9078be39a77ee3a48a0'] = 'تجمع';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_f8c4099117a331ba6af4c2f4c64d3206'] = 'تمكين لينك';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_97e7c9a7d06eac006a28bf05467fcc8b'] = 'صلة';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_1b4162db9604f60e25faf845f196c641'] = 'فتح الارتباط في';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_c64ba88161c14076346c7956b3cec01b'] = 'بدء التاريخ الوقت';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_72ceb723c02a8c846b72d42415cb68be'] = 'بداية نهاية الوقت';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_96392af11bfd8b07486040ea1fa1c43a'] = 'عدد رصاصة الفئة';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_8745e453a1d24888f5c4cf220a35e005'] = 'رصاصة الوصف';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_b7c161bb87bb0308fb25e6f68d0a5632'] = 'صورة مصغرة';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_34e2d1989a1dbf75cd631596133ee5ee'] = 'فيديو';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_04e0385c10aefee8e4681617d2f3ef40'] = 'تلاشى';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_ca0e203a4c824c71225fcd22383d90da'] = 'باختصار من الأعلى';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_9e9dacdae0eadf059bbff56ac24246db'] = 'باختصار من القاع';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_298187b8fe9867f7398cfe7f3e0887ac'] = 'باختصار من اليمين';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_4d28f45f82ea38dd60da8b9b048dc88a'] = 'باختصار من اليسار';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_43d6d00265c1285b7ea01becc0c4eb24'] = 'منذ فترة طويلة من الأعلى';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_f0d368a20fe5220282be4f437e60d29a'] = 'منذ فترة طويلة من القاع';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_3cf41b58dd0eec02d7037a2f90d96648'] = 'منذ فترة طويلة من اليمين';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_edf11430c6f1c0c490a68c360c956b08'] = 'منذ فترة طويلة من اليسار';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_efc77c1f5477e662b74ebd703c90c8ba'] = 'تدوير عشوائي';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_63582074b0e39ca541eba9757409e40d'] = 'إضافة مجموعة جديدة';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_d23303cd157eee2b44ed01a20afd8616'] = 'كنت editting مجموعة:';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_6d1ca8184c6a1f11ecccfa17f8f9048a'] = 'محاصر';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_4b5a9713994cdd44bc37de1b41878493'] = 'عرض كامل';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_b915c3f2926eb2dacadf11e7c5b904d7'] = 'مخبأة في أجهزة كبيرة';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_200120bcca3122c156ec816080fe07d9'] = 'مخبأة في أجهزة متوسطة';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_6255dcec0f04135fa161d03e6bb46ea2'] = 'مخبأة في الأجهزة الصغيرة';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_87147971120558dba2382337684846fe'] = 'مخبأة في أجهزة صغيرة إضافية';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_6840b02c2234cbeba4daa985c97d6f0f'] = 'مخبأة في الهواتف الذكية';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_c54f9f209ed8fb4683e723daa4955377'] = 'إعدادات عامة';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_f5b8c6ef0a73d5b71de9ebdc492e5d69'] = 'عنوان المجموعة';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_26a6b0b5fb2892e829a76462bdb2d753'] = 'تظهر في هوك';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_bf4fd5935d3f742456e100fa6f55ccc2'] = 'الشريحة بدءا';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_011a69cb9cff027d0cbae7789003448a'] = 'توقيت التشغيل التلقائي ';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_2f0a37e2770a29e7978be42bc49b1c4f'] = 'إيقاف الموقت في التحويم';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_6209ab799e6826f0d634e104aaaec3cf'] = 'عشوائية ابتداء الشريحة';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_0ae935f86c2f8fc6f43110de1342d2c9'] = 'عرض الوضع الشرائح';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_807b017408ec31eabe113d455de5478d'] = 'متوسطة وكبيرة المكتبية العرض';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_460bab33b9e10419211172ee43c8d395'] = 'الأجهزة الصغيرة أقراص العرض';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_b445886e2d8c5d2986fd126ae988d9c2'] = 'أجهزة الهواتف صغيرة اضافية';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_4a080e0d7581c156809dea894b74c514'] = 'وضع محاصر: يمكنك التكوين عرض الشرائح. سيعرض تعويم مع وحدة أخرى';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_30bbe9a92a88cdfc5b6061df1d313976'] = 'وضع عرض كامل: إن عرض شرائح 100% في حاوية من hook_slideshow. عليك أن التكوين عرض من وحدة أخرى في hook_slideshow';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_c9cc8cce247e49bae79f15173ce97354'] = 'حفظ';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_2d01f00b9941ebb47d2b1533f728eacf'] = 'إعداد صورة';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_0f81a4678116db23dd11270f73309ca7'] = 'صورة الاقتصاص';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_903a813657245702616d09b0a5600cd2'] = 'إيقاف السيارات هو استخدام طريقة \"محاصر\" لعرض الشرائح';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_7c1ca41bb61dedd0e0f5e6e239e7140c'] = 'عرض الصورة';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_633d2e2088142bb6a2f1ce05daa1bf62'] = 'استخدام لصورة تغيير حجم وماكس الطول';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_73272b37e90e93583b05761520dc45b5'] = 'ارتفاع الصورة';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_55e8a668d10aa67b9acfdaf6909e013b'] = 'إعداد CSS';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_98369609669478919c74c916440e9978'] = 'هامش';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_510dcb9fa548932bc4c8741c06896389'] = 'الحشو (الحدود)';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_504429941c068c463030b67a18187f7a'] = 'مشاهدة صورة الخلفية';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_8f971fd7d7e17d3cec243dd259a93171'] = 'نعم، سوف الواجهة تظهر صورة الخلفية. لا، لن الواجهة تظهر لون الخلفية.';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_abd809c9e3c1c08e97740f86b8ceabfb'] = 'الصورة الخلفية';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_75e7422f2fe253fc69d3f6c148d197ee'] = 'لون الخلفية';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_a02d25d021341196276d17c7ae24c7ef'] = 'فئة المجموعة';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_adcad7ce2aca48a7f88414e50da147c7'] = 'الملاح والتوجيه';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_c5b640f779e0ca8e2b76e49891ed8489'] = 'تمكن المستكشف';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_51b9c120a4645dfd0571a1357b5b51a2'] = 'نوع الملاح';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_7b0f64b7066620dd6d26d881d7a17871'] = 'تمكين HTML مخصصة';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_8b0b994c9e56b3812f1705213063c391'] = 'تلميح الأدوات Thumbnai';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_68365abb13a327bd7401e1ead8de7e5b'] = 'عتبة X موقف';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_46563346a237fd839ae1714f206488ca'] = 'عتبة موقف Y';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_86284b33a5f68d33f9c21d90d2bdc431'] = 'صورة مصغرة العرض';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_8b394d6ed5585431f701406734498024'] = 'الصور المصغرة الطول';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_bad6a5dd8c28e6b14f8e986615e3dc98'] = 'غموض';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_582b60c91fde8e275cefee35beeabfd4'] = 'تمكين التوجيه';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_164a2bd395c6278a12f2019f2ab9e24a'] = 'لوحة المفاتيح';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_432cd4e9c4f26cf4c0a817a63cc47a6b'] = 'خيارات الموقت';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_9c17720fb2870ebf4d25d4dc0b6f2ee3'] = 'توقيت ستايل';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_52f5e0bc3859bc5f5e25130b6c7e8881'] = 'موضع';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_468a3af419ebf8d45f4dd1384fde23db'] = 'تعيين التعتيم لالموقت في بكسل. القيمة 0 إلى 1. السابق 0.6';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_a9ded1e5ce5d75814730bb4caaf49419'] = 'خلفية';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_89e820c36ba4be89c0235aa83bbb246a'] = 'توقيت اللون';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_0a19b152e2c510b525e5eae0f75ff495'] = 'توقيت قطر';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_c569023b7adcc5540e6f4b24d3bdd180'] = 'توقيت الحشو';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_326e09a04c9a52903a7be9f10be60152'] = 'توقيت السكتة الدماغية';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_070554647306343cbea29ebfdd278ba8'] = 'الحدود';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_475c80ecff56299d3527cf51af68e48c'] = 'لون الحدود';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_21c3e4abcdab4e034e0e6bd0a6102545'] = 'نمط الحدود';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_d6b6b668dbca9d4fe774bb654226ebe3'] = 'الرسوم المتحركة';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_95c83e8b2bf2ae1d113861416895f77a'] = 'سرعة تغيير الشريحة';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_c06376319a0fe51160856f82f6958d82'] = 'شرائط الشرائح';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_44cf224a05586c6cd263937dce0c06e4'] = 'العمود الشرائح';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_74a3ad3fdbf9c23efe27af590bb2112f'] = 'صف الشرائح';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_33a05a0d6129e94a4eab0a1ddbb5de25'] = 'شرح سرعة';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_23e02379eb117ea7cbe09c54485251c8'] = 'شرح التعتيم';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_93cba07454f06a4a960172bbd6e2a435'] = 'نعم فعلا';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_b09bbc28bf2f0236af89e8f195b77f43'] = 'id_group غير صالح';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_523fa30bf3faf569a9d8f5e12634981f'] = 'قيمة تأخير غير صالحة';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_d1d198f2cc45f78a4a363a6be6d9b103'] = 'قيمة العرض غير صالحة';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_1e78e1260623bc5142751aee99e3b071'] = 'قيمة الارتفاع غير صالحة';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_7e77822e7637952cad00cbfd35e5c578'] = 'قيمة لون الخلفية غير صالحة';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_29f0a01f865107f8ef31f47d04e0f63b'] = 'لا يمكن إضافة مجموعة.';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_923f7854e5bda70f7fac6a5d95761d8d'] = 'لا يمكن تحديث المجموعة.';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_ccb2cfd379b6f4b5d3dd360647c50fd3'] = 'كان الوضع تغير من مجموعة ناجحة';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_7f82c65d548588c8d5412463c182e450'] = 'تعذر تحديث التكوين.';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_694267331c7ceb141d81802bd2ea349a'] = 'حذف المجموعة';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_7e711a7e58d3e2303fb330185c06a6b8'] = 'كان الوضع تغير الشريحة ناجحة';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_bb6abf21a6c70c5740d93093b5518954'] = 'وأضافت الشرائح';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_2408a2e1f3548bc838ad6e40c7dad229'] = 'انقر لتمكين';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_1073a919db0dd5cecdf9bfa7a27ffa31'] = 'انقر لذوي الاحتياجات الخاصة';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_76ad3ac84a702b0497cd6be8e8886d34'] = 'id_slide غير صالح';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_cdf841e01e10cae6355f72e6838808eb'] = 'لا يمكن إضافة الشريحة.';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_eb28485b92fbf9201918698245ec6430'] = 'تعذر تحديث الشريحة.';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_472b99d1861b19f82c7647f008f90059'] = 'الشريحة لا يمكن أن يكون الحذف.';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_6ef1182ba7dc5cbb84637abf08510af9'] = 'تكرار ل';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_808aae9efa59b6a31f868ad2f4d7cc56'] = 'الشريحة لا يمكن أن تكون مكررة.';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshowgroup_de3c731be5633838089a07179d301d7b'] = 'لعب';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshowgroup_105b296a83f9c105355403f3332af50f'] = 'وقفة';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshowgroup_d3d2e617335f08df83599665eef8a418'] = 'قريب';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshowgroup_10ac3d04253ef7e1ddc73e6091c0cd55'] = 'التالى';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshowgroup_dd1f775e443ff3b9a89270713580a51b'] = 'سابق';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshowstatus_6bbc812b658152e5e40808989ea3e53b'] = 'نفس النافذة';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshowstatus_7a115fe2bd8b94ead1550a2da953cf87'] = 'نافذة جديدة';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_1b9abf135ccb7ed2f2cd9c155137c351'] = 'تصفح';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_dc30bc0c7914db5918da4263fce93ad2'] = 'واضح';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_cfb7ed2a89b2febec5c605dd5a0add9d'] = 'المجموعة خلف الأرض';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_434f4ca11924baf76d1992b2cd0d504c'] = 'انقر لتحميل أو حدد ظهر الأرض';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_3e150eb1b70e449b80a8a216278ddfc1'] = 'المجموعة المعاينة';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_d9c974a800466ccd94c42de8fb08dd76'] = 'معاينة ل';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_c9cc8cce247e49bae79f15173ce97354'] = 'حفظ';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_7782518f59cd91a2a712ef5e32ec5f4b'] = 'يدير المتزلجون';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_3bf12d4578fb0274f9ff8d4090a97bd2'] = 'المجموعة التصدير والمتزلجون';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_95143365aa9eab9135674624bcb05a00'] = 'حذف مختارة المجموعة؟';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_f2a6c498fb90ee345d997f888fce3b18'] = 'حذف';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_56b3014fad57ca689e86cde0d4143cde'] = 'حفظ المتزلج';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_2b946b08a5f3b98a946605e450789621'] = 'نوع الفيديو';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_bafd7322c6e97d25b6299b5d6fe8920b'] = 'لا';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_970cfba66b8380fb97b742e4571356c6'] = 'موقع YouTube';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_15db599e0119be476d71bfc1fda72217'] = 'فيميو';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_3e78e8704c6152536ec480501e9f4868'] = 'معرف الفيديو';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_50ca24c05b4dafa2ef236d15ae66a001'] = 'تشغيل تلقائي';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_93cba07454f06a4a960172bbd6e2a435'] = 'نعم فعلا';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_ddb9370afdc2b94184e6940840efe690'] = 'إدراج فئات جديدة أو تحديد لتبديل المحتوى عبر نقاط العرض';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_9c368b768277accfb3b2bc50ac35a884'] = 'اختر خلفية المنزلق';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_1908624a0bca678cd26b99bfd405324e'] = 'حجم الملف';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_f2a6c498fb90ee345d997f888fce3b18'] = 'حذف';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_3fcbe6bd34e9279ec2c7b13adf7e4095'] = 'لقد وصلت إلى حد (%s) من الملفات لتحميل، الرجاء إزالة الملفات لمتابعة التحميل';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_d39ec66f08507e26fe86aa5325d070df'] = 'إضافة ملفات';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_58be4de806253a6ee411b6c0c99296c7'] = 'اضف ملف';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_c7de86f69db264c3950d8ae46ed2e33f'] = 'تحميل الملفات';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_ffeed24e8e4fd763c1d0d02c6e5d6e15'] = 'رفع ملف';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_8077d1c510a7f18c7e9b6057f61c1c6d'] = 'ترتيب صورة بواسطة';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_49ee3087348e8d44e1feda1917443987'] = 'اسم';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_1b7bb88b3317fe166424fa9e7535e1a9'] = 'اسم تنازلي';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_80ccccd39ce6134340fccbf76eb379ae'] = 'التاريخ عدل';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_386133d672ac6450c029501cc023bf21'] = 'تاريخ تنازلي التعديل';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_009044df8c709bfdefa065ae7fa733e1'] = 'ملفات %s يمكنك تحميل كحد أقصى';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_b21f085d08623fc7a5a9da204cc66c8c'] = 'إزالة الملف';
|
||||
$_MODULE['<{leoslideshow}prestashop>imagemanager_0478d675b6c6d55451b48531ef7e41dd'] = 'مدير الصور';
|
||||
$_MODULE['<{leoslideshow}prestashop>imagemanager_fb2ea703b13d059f6b7ea5da806021df'] = 'شكل:';
|
||||
$_MODULE['<{leoslideshow}prestashop>imagemanager_b908c2f34052b5276e0bf50f0e042211'] = 'حجم الملف:';
|
||||
$_MODULE['<{leoslideshow}prestashop>imagemanager_2f972dbb48435d9b8087d7e3c22daa09'] = 'ميغابايت كحد أقصى.';
|
||||
$_MODULE['<{leoslideshow}prestashop>imagemanager_0c3e7c5e60811c948a6a3f3f764e1a26'] = 'اضغط للعرض';
|
||||
$_MODULE['<{leoslideshow}prestashop>imagemanager_4351cfebe4b61d8aa5efa1d020710005'] = 'رأي';
|
||||
$_MODULE['<{leoslideshow}prestashop>imagemanager_00b33d7acfa6a3da639e51dade102df3'] = 'حذف الصورة المحددة؟';
|
||||
$_MODULE['<{leoslideshow}prestashop>imagemanager_f2a6c498fb90ee345d997f888fce3b18'] = 'حذف';
|
||||
$_MODULE['<{leoslideshow}prestashop>imagemanager_b82f932f209c2fe588c3290527ead490'] = 'إذا كنت لا يمكن تحديث الصورة. يرجى تعيين إذن 755 للمجلد';
|
||||
$_MODULE['<{leoslideshow}prestashop>imagemanager_26de4d3e04796d6486136c5b8203c3ac'] = 'تحميل صورة';
|
||||
$_MODULE['<{leoslideshow}prestashop>typo_10de4bc81f754b19b0d27246a0589c05'] = 'ملاحظة';
|
||||
$_MODULE['<{leoslideshow}prestashop>typo_6eb01d95c679674a59feb31d8dc5e59a'] = 'هذه الأخطاء المطبعية تحت تزداد في ملف';
|
||||
$_MODULE['<{leoslideshow}prestashop>typo_6befab5735b45621bb2a51ea174308b2'] = 'يمكنك فتح هذا الملف وتضيف لك أسلوب المغلق وسيتم سرده هنا !!!';
|
||||
$_MODULE['<{leoslideshow}prestashop>typo_52b3c15c0538e8ab2978d3c52f65fcb4'] = 'لاختيار واحد، أنت فوق النص من كل الخطأ المطبعي';
|
||||
$_MODULE['<{leoslideshow}prestashop>typo_7f1b7ac0737d17ec2abe392a8fe374ca'] = 'استخدام هذا توضيحية الخطأ المطبعي';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_de3c731be5633838089a07179d301d7b'] = 'لعب';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_105b296a83f9c105355403f3332af50f'] = 'وقفة';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_d3d2e617335f08df83599665eef8a418'] = 'قريب';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_10ac3d04253ef7e1ddc73e6091c0cd55'] = 'التالى';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_dd1f775e443ff3b9a89270713580a51b'] = 'سابق';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_75267df40e119a3e6174762f493f9245'] = 'هل تريد نسخ CSS، JS مجلد إلى مجلد موضوع الحالي؟';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_6622d333c33cfaf951fcf592c5834c79'] = 'نسخة CSS، JS إلى موضوع';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_2b432d7a07f4e34f5f350577e6ad7502'] = 'قائمة المجموعة';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_5a048522c38f75873335b2af3a5579d1'] = 'انقر لرؤية دليل التكوين';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_28974c2c793e780427dfb571b26443e6'] = 'اسم المجموعة';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_ec53a8c4f07baed5d8825072c89799be'] = 'الحالة';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_d1ecdda3b9584ecacc31b4ef6a9a1e9b'] = 'إضافة مجموعة جديدة';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_379d5e7e8c9f09972e0915714abad8d3'] = 'تحرير المجموعة';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_7dce122004969d56ae2e0245cb754d35'] = 'تحرير';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_c46942232f660ea828d88c66f5612c88'] = 'Editting';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_95143365aa9eab9135674624bcb05a00'] = 'حذف مختارة المجموعة؟';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_f2a6c498fb90ee345d997f888fce3b18'] = 'حذف';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_d9c974a800466ccd94c42de8fb08dd76'] = 'معاينة ل';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_3e150eb1b70e449b80a8a216278ddfc1'] = 'المجموعة المعاينة';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_3bf12d4578fb0274f9ff8d4090a97bd2'] = 'المجموعة التصدير والمتزلجون';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_4aaa9f1d1cba55f447323dfd66dac4d6'] = 'الصحيح المجموعة المحتوى';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_3721cd84044cd53000f32c20814963ad'] = 'لغة نسخة افتراضية إلى أخرى';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_7782518f59cd91a2a712ef5e32ec5f4b'] = 'يدير المتزلجون';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_062154b1e6f62a7e8de36088ddba1077'] = 'المجموعة استيراد';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_92fbf0e5d97b8afd7e73126b52bdc4bb'] = 'اختيار ملف';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_4ba17c9e4d2a1225b21ca1d1516c0a8e'] = 'يرجى تحميل *. TXT فقط';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_ddd783edcc555eebd5f92a2c3579a183'] = 'مجموعة Overide أم لا:';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_93cba07454f06a4a960172bbd6e2a435'] = 'نعم فعلا';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_bafd7322c6e97d25b6299b5d6fe8920b'] = 'لا';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_72d6d7a1885885bb55a565fd1070581a'] = 'استيراد';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_dfed52002899e6e3584d6f7ce7a798b8'] = 'هل أنت متأكد من تجاوز مجموعة؟';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_e57706046ca57c358dc156fdf9f05863'] = 'يرجى تحميل ملف txt';
|
||||
$_MODULE['<{leoslideshow}prestashop>panel_c54f9f209ed8fb4683e723daa4955377'] = 'إعدادات عامة';
|
||||
$_MODULE['<{leoslideshow}prestashop>panel_2d01f00b9941ebb47d2b1533f728eacf'] = 'إعداد صورة';
|
||||
$_MODULE['<{leoslideshow}prestashop>panel_55e8a668d10aa67b9acfdaf6909e013b'] = 'إعداد CSS';
|
||||
$_MODULE['<{leoslideshow}prestashop>panel_adcad7ce2aca48a7f88414e50da147c7'] = 'الملاح والتوجيه';
|
||||
$_MODULE['<{leoslideshow}prestashop>panel_432cd4e9c4f26cf4c0a817a63cc47a6b'] = 'خيارات الموقت';
|
||||
$_MODULE['<{leoslideshow}prestashop>panel_d6b6b668dbca9d4fe774bb654226ebe3'] = 'الرسوم المتحركة';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_c82324ebbcea34f55627a897b37190e3'] = 'قائمة الشرائح';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_c5f09f37e1e182ec28fa64732d9b712c'] = 'ارجع الى';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_c46942232f660ea828d88c66f5612c88'] = 'Editting';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_004bf6c9a40003140292e97330236c53'] = 'عمل';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_ab6fc089945137346f2b97f134193669'] = 'إضغط للتعديل';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_a95aab06fa9a0112d727ca07f65c399e'] = 'هل أنت متأكد أنك تريد حذف هذا المنزلق؟';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_38e56b404a51696528d84bfcb42e9c2a'] = 'حذف هذا المنزلق';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_1170a3fe82829410667a35d6ca4d38ee'] = 'هل أنت متأكد أنك تريد تكرار هذا المنزلق؟';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_0437deaeea8ac07f1733a45cd8ff2acf'] = 'تكرار هذا المنزلق';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_31fde7b05ac8952dacf4af8a704074ec'] = 'معاينة';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_d9c974a800466ccd94c42de8fb08dd76'] = 'معاينة ل';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_56b3014fad57ca689e86cde0d4143cde'] = 'حفظ المتزلج';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_d151b73738a19260cd1bcb51dbbf441a'] = 'معاينة هذا المنزلق';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_807fd2f402e8258ad4ea79b4a7c1320b'] = 'عمل أدوات';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_b9c49611cfda3259a2b837b39489e650'] = 'إضافة صورة';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_a1abe8ec1de81fdd62fb9952931bd692'] = 'إضافة فيديو';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_70bd09c0bb64f38d33a139ac12d9e052'] = 'إضافة نص';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_f2a6c498fb90ee345d997f888fce3b18'] = 'حذف';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_1298798308dfb56829d42c252adbd973'] = 'خلفية';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_1fb35365025e2d5bc236e336abb4a4de'] = 'تعيين صورة الخلفية';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_1063e38cb53d94d386f21227fcd84717'] = 'إزالة';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_75e7422f2fe253fc69d3f6c148d197ee'] = 'لون الخلفية';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_2b946b08a5f3b98a946605e450789621'] = 'نوع الفيديو';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_3e78e8704c6152536ec480501e9f4868'] = 'معرف الفيديو';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_3196f674ac1ce6b9c30c73afca17e6e2'] = 'على سبيل المثال يوتيوب';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_eec6c4bdbd339edf8cbea68becb85244'] = 'ارتفاع';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_32954654ac8fe66a1d09be19001de2d4'] = 'عرض';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_403825785a196c752a3a33f9c2b3e2e3'] = 'البحث عن فيديو';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_4fd49e14c4b3bdc72bf23ae86d25861e'] = 'استخدام هذا الفيديو';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_d3d2e617335f08df83599665eef8a418'] = 'قريب';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_7c9a4efd10f85664107ec6c632ce2c54'] = 'جمع طبقة';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_5e04afd5c9dfad5d70719af678409b56'] = 'بيانات تحرير طبقة';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_5f06cfc98e39dc14d2e8bc10a1a32558'] = 'الطبقة نمط';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_ee552178ecab509c3b2dc4be12d2b062'] = 'إدراج الخطأ المطبعي';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_19372730cd500fdc6454525757673875'] = 'شرح الاكواد';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_4fb2981861d56dce54c0d1e6d14a7c1d'] = 'تسمح تعليمات برمجية إدراج HTML';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_9b1d0abb705608d037a11c86fc75a1f1'] = 'حجم الخط';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_8903861290617267b361478ab7f16f31'] = 'لون الخط';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_06b9281e396db002010bde1de57262eb'] = 'السيارات';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_97e7c9a7d06eac006a28bf05467fcc8b'] = 'صلة';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_aad575df89fbd4d7503053c15de80757'] = 'يفتح في';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_52f5e0bc3859bc5f5e25130b6c7e8881'] = 'موضع';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_a4ffdcf0dc1f31b9acaf295d75b51d00'] = 'أعلى';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_945d5e233cf7d6240f6b783b36a374ff'] = 'اليسار';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_afedf9afee367f51f98d7cf030c976a6'] = 'انتقال';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_04e0385c10aefee8e4681617d2f3ef40'] = 'تلاشى';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_61f5bf1c77069ece391f35e27583675d'] = 'مسح اليسار';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_b9eabe4385c91d66ad87ddde44fd782a'] = 'مسح اليمين';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_e3c5263f63e757fa13252802790c44ec'] = 'مسح الأعلى';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_443f13b9f4f56b65816a2f648a571781'] = 'مسح القاع';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_b7b90e3c3e37f052204b3172e1b8fa9c'] = 'توسيع اليسار';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_a71cf38a27ad237be24a28ac9493daa3'] = 'توسيع حق';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_6af2757e84f1dafd6bc8edb78acc4339'] = 'توسيع الأعلى';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_c5007443ea70e4a3539fb6dc2df538bd'] = 'توسيع القاع';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_ed69308e766971217d568137ac305339'] = 'صورة الإدارة';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_d56b378daee3483c4354826b5a34f883'] = 'الرجاء إدخال العنوان من التمرير لجميع اللغات';
|
||||
273
modules/leoslideshow/translations/de.php
Normal file
@@ -0,0 +1,273 @@
|
||||
<?php
|
||||
|
||||
global $_MODULE;
|
||||
$_MODULE = array();
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_359142c1a00ba1320090e98b3e89f31c'] = 'Leo Diashow für Ihre Homepage';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_ee8726e003319356246eb21ebc1db4c9'] = 'Fügt Ihrer Homepage Bild, Text oder Video hinzu.';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_d85886451e1218b8ccf9e252c5bb4350'] = 'Import erfolgreich';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_96ff377127e787e778c7fa509cec0805'] = 'Neuen Slider hinzufügen';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_896cf81ef83de359d014303b411775f5'] = 'Sie bearbeiten den Regler:';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_bafd7322c6e97d25b6299b5d6fe8920b'] = 'Nein';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_c57adbcab6a8e9a9a7e1a5eed4fe095e'] = 'Schieberegler';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_2faec1f9f8cc7f8f40d521c4dd574f49'] = 'Aktivieren';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_8f497c1a3d15af9e0c215019f26b887d'] = 'Verzögern';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_03937134cedab9078be39a77ee3a48a0'] = 'Gruppe';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_f8c4099117a331ba6af4c2f4c64d3206'] = 'Link aktivieren';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_97e7c9a7d06eac006a28bf05467fcc8b'] = 'Link';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_1b4162db9604f60e25faf845f196c641'] = 'Link öffnen';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_c64ba88161c14076346c7956b3cec01b'] = 'Startdatum Uhrzeit';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_72ceb723c02a8c846b72d42415cb68be'] = 'Start Ende Zeit';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_96392af11bfd8b07486040ea1fa1c43a'] = 'Nummer der Aufzählungsnummer';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_8745e453a1d24888f5c4cf220a35e005'] = 'Bullet Beschreibung';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_b7c161bb87bb0308fb25e6f68d0a5632'] = 'Miniaturansicht';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_34e2d1989a1dbf75cd631596133ee5ee'] = 'Video';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_04e0385c10aefee8e4681617d2f3ef40'] = 'Verblassen';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_ca0e203a4c824c71225fcd22383d90da'] = 'Kurz von oben';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_9e9dacdae0eadf059bbff56ac24246db'] = 'Kurz von unten';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_298187b8fe9867f7398cfe7f3e0887ac'] = 'Kurz von rechts';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_4d28f45f82ea38dd60da8b9b048dc88a'] = 'Kurz von links';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_43d6d00265c1285b7ea01becc0c4eb24'] = 'Lange von oben';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_f0d368a20fe5220282be4f437e60d29a'] = 'Lange von unten';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_3cf41b58dd0eec02d7037a2f90d96648'] = 'Lange von rechts';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_edf11430c6f1c0c490a68c360c956b08'] = 'Lange von links';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_efc77c1f5477e662b74ebd703c90c8ba'] = 'Zufälliges Drehen';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_63582074b0e39ca541eba9757409e40d'] = 'Neue Gruppe hinzufügen';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_d23303cd157eee2b44ed01a20afd8616'] = 'Sie bearbeiten Gruppe:';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_6d1ca8184c6a1f11ecccfa17f8f9048a'] = 'Boxed';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_4b5a9713994cdd44bc37de1b41878493'] = 'Gesamtbreite';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_b915c3f2926eb2dacadf11e7c5b904d7'] = 'In großen Geräten ausgeblendet';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_200120bcca3122c156ec816080fe07d9'] = 'Versteckt in mittleren Geräten';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_6255dcec0f04135fa161d03e6bb46ea2'] = 'Versteckt in kleinen Geräten';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_87147971120558dba2382337684846fe'] = 'Versteckt in Extra kleine Geräte';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_6840b02c2234cbeba4daa985c97d6f0f'] = 'Versteckt in Smart Phone';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_c54f9f209ed8fb4683e723daa4955377'] = 'Allgemeine Einstellung';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_f5b8c6ef0a73d5b71de9ebdc492e5d69'] = 'Gruppentitel';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_26a6b0b5fb2892e829a76462bdb2d753'] = 'Anzeigen im Haken';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_bf4fd5935d3f742456e100fa6f55ccc2'] = 'Starten der Folie';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_011a69cb9cff027d0cbae7789003448a'] = 'Zeitgeber Autorun ';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_2f0a37e2770a29e7978be42bc49b1c4f'] = 'Zeitschaltuhr An Hover';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_6209ab799e6826f0d634e104aaaec3cf'] = 'Zufällige Startfolie';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_0ae935f86c2f8fc6f43110de1342d2c9'] = 'Slideshow Breite Modus';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_807b017408ec31eabe113d455de5478d'] = 'Mittlere und große Desktops Breite';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_460bab33b9e10419211172ee43c8d395'] = 'Kleine Geräte Tablets Breite';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_b445886e2d8c5d2986fd126ae988d9c2'] = 'Extra kleine Geräte Telefone';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_4a080e0d7581c156809dea894b74c514'] = 'Modus Boxed: Sie können die Breite der Diashow konfigurieren. Es zeigt Schwimmer mit anderem Modul an';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_30bbe9a92a88cdfc5b6061df1d313976'] = 'Modus FullWidth: Die Diashow zeigt 100% im Container der hook_slideshow an. Sie müssen die Breite des anderen Moduls in hook_slideshow konfigurieren';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_c9cc8cce247e49bae79f15173ce97354'] = 'sparen';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_2d01f00b9941ebb47d2b1533f728eacf'] = 'Bildeinstellung';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_0f81a4678116db23dd11270f73309ca7'] = 'Bildbeschneidung';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_903a813657245702616d09b0a5600cd2'] = 'Automatische Abschaltung ist Sie Modus \"Boxed\" für die Diashow verwenden';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_7c1ca41bb61dedd0e0f5e6e239e7140c'] = 'Bild breite';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_633d2e2088142bb6a2f1ce05daa1bf62'] = 'Verwenden Sie für die Größe Bild und Max-Höhe';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_73272b37e90e93583b05761520dc45b5'] = 'Bildhöhe';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_55e8a668d10aa67b9acfdaf6909e013b'] = 'CSS-Einstellung';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_98369609669478919c74c916440e9978'] = 'Marge';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_510dcb9fa548932bc4c8741c06896389'] = 'Polsterung (Rand)';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_504429941c068c463030b67a18187f7a'] = 'Hintergrundbild anzeigen';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_8f971fd7d7e17d3cec243dd259a93171'] = 'Ja, Frontend zeigt Hintergrundbild an. Nein, Frontend zeigt Hintergrundfarbe an.';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_abd809c9e3c1c08e97740f86b8ceabfb'] = 'Hintergrundbild';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_75e7422f2fe253fc69d3f6c148d197ee'] = 'Hintergrundfarbe';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_a02d25d021341196276d17c7ae24c7ef'] = 'Gruppenunterricht';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_adcad7ce2aca48a7f88414e50da147c7'] = 'Navigator und Richtung';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_c5b640f779e0ca8e2b76e49891ed8489'] = 'Navigator aktivieren';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_51b9c120a4645dfd0571a1357b5b51a2'] = 'Navigator-Typ';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_7b0f64b7066620dd6d26d881d7a17871'] = 'Benutzerdefinierte HTML-Aktivierung';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_8b0b994c9e56b3812f1705213063c391'] = 'Kurzinfo';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_68365abb13a327bd7401e1ead8de7e5b'] = 'X-Positionsschwelle';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_46563346a237fd839ae1714f206488ca'] = 'Y-Positionsschwelle';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_86284b33a5f68d33f9c21d90d2bdc431'] = 'Thumbnail Breite';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_8b394d6ed5585431f701406734498024'] = 'Thumbnail-Höhe';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_bad6a5dd8c28e6b14f8e986615e3dc98'] = 'Opazität';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_582b60c91fde8e275cefee35beeabfd4'] = 'Richtung aktivieren';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_164a2bd395c6278a12f2019f2ab9e24a'] = 'Schlüsselbrett';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_432cd4e9c4f26cf4c0a817a63cc47a6b'] = 'Timer-Optionen';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_9c17720fb2870ebf4d25d4dc0b6f2ee3'] = 'Zeitgeber-Art';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_52f5e0bc3859bc5f5e25130b6c7e8881'] = 'Position';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_468a3af419ebf8d45f4dd1384fde23db'] = 'Stellen Sie Deckkraft für Timer in Pixel. Der Wert ist 0 bis 1. Ex 0.6';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_a9ded1e5ce5d75814730bb4caaf49419'] = 'Hintergrund';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_89e820c36ba4be89c0235aa83bbb246a'] = 'Zeitgeber-Farbe';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_0a19b152e2c510b525e5eae0f75ff495'] = 'Timerdurchmesser';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_c569023b7adcc5540e6f4b24d3bdd180'] = 'Zeitgeber';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_326e09a04c9a52903a7be9f10be60152'] = 'Zeitschaltuhr';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_070554647306343cbea29ebfdd278ba8'] = 'Rand';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_475c80ecff56299d3527cf51af68e48c'] = 'Randfarbe';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_21c3e4abcdab4e034e0e6bd0a6102545'] = 'Border-Stil';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_d6b6b668dbca9d4fe774bb654226ebe3'] = 'Animation';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_95c83e8b2bf2ae1d113861416895f77a'] = 'Geschwindigkeit, zum des Dias zu ändern';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_c06376319a0fe51160856f82f6958d82'] = 'Schiebeleisten';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_44cf224a05586c6cd263937dce0c06e4'] = 'Dia-Säule';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_74a3ad3fdbf9c23efe27af590bb2112f'] = 'Schieben Sie Reihe';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_33a05a0d6129e94a4eab0a1ddbb5de25'] = 'Beschriftungsgeschwindigkeit';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_23e02379eb117ea7cbe09c54485251c8'] = 'Deckkraft Deckkraft';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_93cba07454f06a4a960172bbd6e2a435'] = 'ja';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_b09bbc28bf2f0236af89e8f195b77f43'] = 'Ungültige id_group';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_523fa30bf3faf569a9d8f5e12634981f'] = 'Ungültiger Delaywert';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_d1d198f2cc45f78a4a363a6be6d9b103'] = 'Ungültiger Width-Wert';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_1e78e1260623bc5142751aee99e3b071'] = 'Ungültiger Höhenwert';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_7e77822e7637952cad00cbfd35e5c578'] = 'Ungültiger Wert für Hintergrundfarbe';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_29f0a01f865107f8ef31f47d04e0f63b'] = 'Die Gruppe konnte nicht hinzugefügt werden.';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_923f7854e5bda70f7fac6a5d95761d8d'] = 'Die Gruppe konnte nicht aktualisiert werden.';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_ccb2cfd379b6f4b5d3dd360647c50fd3'] = 'Der Änderungsstatus der Gruppe war erfolgreich';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_7f82c65d548588c8d5412463c182e450'] = 'Die Konfiguration konnte nicht aktualisiert werden.';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_694267331c7ceb141d81802bd2ea349a'] = 'Gruppe gelöscht';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_7e711a7e58d3e2303fb330185c06a6b8'] = 'Der Status der Folie war erfolgreich';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_bb6abf21a6c70c5740d93093b5518954'] = 'Folie hinzugefügt';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_2408a2e1f3548bc838ad6e40c7dad229'] = 'Klicken Sie auf Aktiviert';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_1073a919db0dd5cecdf9bfa7a27ffa31'] = 'Klicken Sie auf Deaktiviert';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_76ad3ac84a702b0497cd6be8e8886d34'] = 'Ungültiges id_slide';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_cdf841e01e10cae6355f72e6838808eb'] = 'Die Folie konnte nicht hinzugefügt werden.';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_eb28485b92fbf9201918698245ec6430'] = 'Die Folie konnte nicht aktualisiert werden.';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_472b99d1861b19f82c7647f008f90059'] = 'Die Folie konnte nicht gelöscht werden.';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_6ef1182ba7dc5cbb84637abf08510af9'] = 'Duplizieren von';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_808aae9efa59b6a31f868ad2f4d7cc56'] = 'Die Folie konnte nicht dupliziert werden.';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshowgroup_de3c731be5633838089a07179d301d7b'] = 'Spielen';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshowgroup_105b296a83f9c105355403f3332af50f'] = 'Pause';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshowgroup_d3d2e617335f08df83599665eef8a418'] = 'Schließen';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshowgroup_10ac3d04253ef7e1ddc73e6091c0cd55'] = 'Nächster';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshowgroup_dd1f775e443ff3b9a89270713580a51b'] = 'Zurück';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshowstatus_6bbc812b658152e5e40808989ea3e53b'] = 'Gleiches Fenster';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshowstatus_7a115fe2bd8b94ead1550a2da953cf87'] = 'Neues Fenster';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_1b9abf135ccb7ed2f2cd9c155137c351'] = 'Durchsuchen';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_dc30bc0c7914db5918da4263fce93ad2'] = 'Klar';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_cfb7ed2a89b2febec5c605dd5a0add9d'] = 'Gruppe Hintergrund';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_434f4ca11924baf76d1992b2cd0d504c'] = 'Klicken Sie, um einen Hintergrund zu laden oder auszuwählen';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_3e150eb1b70e449b80a8a216278ddfc1'] = 'Vorschau Gruppe';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_d9c974a800466ccd94c42de8fb08dd76'] = 'Vorschau für';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_c9cc8cce247e49bae79f15173ce97354'] = 'sparen';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_7782518f59cd91a2a712ef5e32ec5f4b'] = 'Verwaltet Schieberegler';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_3bf12d4578fb0274f9ff8d4090a97bd2'] = 'Export Group und Schieberegler';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_95143365aa9eab9135674624bcb05a00'] = 'Ausgewählte Gruppe löschen?';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_f2a6c498fb90ee345d997f888fce3b18'] = 'Löschen';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_56b3014fad57ca689e86cde0d4143cde'] = 'Speichern Sie Slider';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_2b946b08a5f3b98a946605e450789621'] = 'Video-Typ';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_bafd7322c6e97d25b6299b5d6fe8920b'] = 'Nein';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_970cfba66b8380fb97b742e4571356c6'] = 'Youtube';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_15db599e0119be476d71bfc1fda72217'] = 'Vimeo';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_3e78e8704c6152536ec480501e9f4868'] = 'Video-ID';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_50ca24c05b4dafa2ef236d15ae66a001'] = 'Automatisches Abspielen';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_93cba07454f06a4a960172bbd6e2a435'] = 'ja';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_ddb9370afdc2b94184e6940840efe690'] = 'Fügen Sie neue ein oder wählen Sie Klassen für das Umschalten von Inhalten über Viewport-Haltepunkte aus';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_9c368b768277accfb3b2bc50ac35a884'] = 'Schieberegler-Hintergrund auswählen';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_1908624a0bca678cd26b99bfd405324e'] = 'Dateigröße';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_f2a6c498fb90ee345d997f888fce3b18'] = 'Löschen';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_3fcbe6bd34e9279ec2c7b13adf7e4095'] = 'Sie haben das Limit (%s) der Dateien zum Hochladen erreicht, entfernen Sie bitte Dateien, um weiter hochzuladen';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_d39ec66f08507e26fe86aa5325d070df'] = 'Dateien hinzufügen';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_58be4de806253a6ee411b6c0c99296c7'] = 'Datei hinzufügen';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_c7de86f69db264c3950d8ae46ed2e33f'] = 'Daten hochladen';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_ffeed24e8e4fd763c1d0d02c6e5d6e15'] = 'Datei hochladen';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_8077d1c510a7f18c7e9b6057f61c1c6d'] = 'Bestellen Image By';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_49ee3087348e8d44e1feda1917443987'] = 'Name';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_1b7bb88b3317fe166424fa9e7535e1a9'] = 'Name DESC';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_80ccccd39ce6134340fccbf76eb379ae'] = 'Datum geändert';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_386133d672ac6450c029501cc023bf21'] = 'Datum Geänderter DESC';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_009044df8c709bfdefa065ae7fa733e1'] = 'Sie können maximal %s Dateien hochladen';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_b21f085d08623fc7a5a9da204cc66c8c'] = 'Datei löschen';
|
||||
$_MODULE['<{leoslideshow}prestashop>imagemanager_0478d675b6c6d55451b48531ef7e41dd'] = 'Bilder-Manager';
|
||||
$_MODULE['<{leoslideshow}prestashop>imagemanager_fb2ea703b13d059f6b7ea5da806021df'] = 'Format:';
|
||||
$_MODULE['<{leoslideshow}prestashop>imagemanager_b908c2f34052b5276e0bf50f0e042211'] = 'Dateigröße:';
|
||||
$_MODULE['<{leoslideshow}prestashop>imagemanager_2f972dbb48435d9b8087d7e3c22daa09'] = 'MB max.';
|
||||
$_MODULE['<{leoslideshow}prestashop>imagemanager_0c3e7c5e60811c948a6a3f3f764e1a26'] = 'Klicke zum Zeigen';
|
||||
$_MODULE['<{leoslideshow}prestashop>imagemanager_4351cfebe4b61d8aa5efa1d020710005'] = 'Aussicht';
|
||||
$_MODULE['<{leoslideshow}prestashop>imagemanager_00b33d7acfa6a3da639e51dade102df3'] = 'Ausgewähltes Bild löschen?';
|
||||
$_MODULE['<{leoslideshow}prestashop>imagemanager_f2a6c498fb90ee345d997f888fce3b18'] = 'Löschen';
|
||||
$_MODULE['<{leoslideshow}prestashop>imagemanager_b82f932f209c2fe588c3290527ead490'] = 'Wenn Sie Image nicht aktualisieren können. Bitte legen Sie für den Ordner die Berechtigung 755 fest';
|
||||
$_MODULE['<{leoslideshow}prestashop>imagemanager_26de4d3e04796d6486136c5b8203c3ac'] = 'Laden Sie ein Bild hoch';
|
||||
$_MODULE['<{leoslideshow}prestashop>typo_10de4bc81f754b19b0d27246a0589c05'] = 'HINWEIS';
|
||||
$_MODULE['<{leoslideshow}prestashop>typo_6eb01d95c679674a59feb31d8dc5e59a'] = 'Diese unter Tippfehler sind immer in der Datei';
|
||||
$_MODULE['<{leoslideshow}prestashop>typo_6befab5735b45621bb2a51ea174308b2'] = 'Können Sie diese Datei öffnen und fügen Sie Ihre CSS-Stil und es wird hier aufgeführt werden!';
|
||||
$_MODULE['<{leoslideshow}prestashop>typo_52b3c15c0538e8ab2978d3c52f65fcb4'] = 'Um einen auszuwählen, klicken Sie auf den Text eines jeden Tippfehlers';
|
||||
$_MODULE['<{leoslideshow}prestashop>typo_7f1b7ac0737d17ec2abe392a8fe374ca'] = 'Verwenden Sie diese Beschriftung Tippfehler';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_de3c731be5633838089a07179d301d7b'] = 'Spielen';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_105b296a83f9c105355403f3332af50f'] = 'Pause';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_d3d2e617335f08df83599665eef8a418'] = 'Schließen';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_10ac3d04253ef7e1ddc73e6091c0cd55'] = 'Nächster';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_dd1f775e443ff3b9a89270713580a51b'] = 'Zurück';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_75267df40e119a3e6174762f493f9245'] = 'Möchten Sie den Ordner CSS, JS auf den aktuellen Themenordner kopieren?';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_6622d333c33cfaf951fcf592c5834c79'] = 'Kopieren Sie CSS, JS zum Thema';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_2b432d7a07f4e34f5f350577e6ad7502'] = 'Gruppenliste';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_5a048522c38f75873335b2af3a5579d1'] = 'Klicken Sie hier, um die Konfigurationsanleitung anzuzeigen';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_28974c2c793e780427dfb571b26443e6'] = 'Gruppenname';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_ec53a8c4f07baed5d8825072c89799be'] = 'Status';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_d1ecdda3b9584ecacc31b4ef6a9a1e9b'] = 'Neue Gruppe hinzufügen';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_379d5e7e8c9f09972e0915714abad8d3'] = 'Gruppe bearbeiten';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_7dce122004969d56ae2e0245cb754d35'] = 'Bearbeiten';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_c46942232f660ea828d88c66f5612c88'] = 'Bearbeitung';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_95143365aa9eab9135674624bcb05a00'] = 'Ausgewählte Gruppe löschen?';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_f2a6c498fb90ee345d997f888fce3b18'] = 'Löschen';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_d9c974a800466ccd94c42de8fb08dd76'] = 'Vorschau für';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_3e150eb1b70e449b80a8a216278ddfc1'] = 'Vorschau Gruppe';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_3bf12d4578fb0274f9ff8d4090a97bd2'] = 'Export Group und Schieberegler';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_4aaa9f1d1cba55f447323dfd66dac4d6'] = 'Korrigieren Sie den Gruppeninhalt';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_3721cd84044cd53000f32c20814963ad'] = 'Kopieren Sie die Standardsprache in eine andere Sprache';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_7782518f59cd91a2a712ef5e32ec5f4b'] = 'Verwaltet Schieberegler';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_062154b1e6f62a7e8de36088ddba1077'] = 'Import Gruppe';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_92fbf0e5d97b8afd7e73126b52bdc4bb'] = 'Wählen Sie eine Datei aus';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_4ba17c9e4d2a1225b21ca1d1516c0a8e'] = 'Bitte laden Sie nur * .txt hoch';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_ddd783edcc555eebd5f92a2c3579a183'] = 'Overide Gruppe oder nicht:';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_93cba07454f06a4a960172bbd6e2a435'] = 'ja';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_bafd7322c6e97d25b6299b5d6fe8920b'] = 'Nein';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_72d6d7a1885885bb55a565fd1070581a'] = 'Einführen';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_dfed52002899e6e3584d6f7ce7a798b8'] = 'Möchten Sie die Gruppe wirklich außer Kraft setzen?';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_e57706046ca57c358dc156fdf9f05863'] = 'Bitte txt-Datei hochladen';
|
||||
$_MODULE['<{leoslideshow}prestashop>panel_c54f9f209ed8fb4683e723daa4955377'] = 'Allgemeine Einstellung';
|
||||
$_MODULE['<{leoslideshow}prestashop>panel_2d01f00b9941ebb47d2b1533f728eacf'] = 'Bildeinstellung';
|
||||
$_MODULE['<{leoslideshow}prestashop>panel_55e8a668d10aa67b9acfdaf6909e013b'] = 'CSS-Einstellung';
|
||||
$_MODULE['<{leoslideshow}prestashop>panel_adcad7ce2aca48a7f88414e50da147c7'] = 'Navigator und Richtung';
|
||||
$_MODULE['<{leoslideshow}prestashop>panel_432cd4e9c4f26cf4c0a817a63cc47a6b'] = 'Timer-Optionen';
|
||||
$_MODULE['<{leoslideshow}prestashop>panel_d6b6b668dbca9d4fe774bb654226ebe3'] = 'Animation';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_c82324ebbcea34f55627a897b37190e3'] = 'Folienliste';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_c5f09f37e1e182ec28fa64732d9b712c'] = 'Zurück zu';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_c46942232f660ea828d88c66f5612c88'] = 'Bearbeitung';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_004bf6c9a40003140292e97330236c53'] = 'Aktion';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_ab6fc089945137346f2b97f134193669'] = 'Zum Bearbeiten anklicken';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_a95aab06fa9a0112d727ca07f65c399e'] = 'Möchten Sie diesen Schieberegler wirklich löschen?';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_38e56b404a51696528d84bfcb42e9c2a'] = 'Delete Dieser Schieberegler';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_1170a3fe82829410667a35d6ca4d38ee'] = 'Sind Sie sicher, dass Sie diesen Schieberegler duplizieren möchten?';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_0437deaeea8ac07f1733a45cd8ff2acf'] = 'Duplizieren Sie diesen Schieberegler';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_31fde7b05ac8952dacf4af8a704074ec'] = 'Vorschau';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_d9c974a800466ccd94c42de8fb08dd76'] = 'Vorschau für';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_56b3014fad57ca689e86cde0d4143cde'] = 'Speichern Sie Slider';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_d151b73738a19260cd1bcb51dbbf441a'] = 'Vorschau Diese Slider';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_807fd2f402e8258ad4ea79b4a7c1320b'] = 'Werkzeuge Aktion';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_b9c49611cfda3259a2b837b39489e650'] = 'Bild hinzufügen';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_a1abe8ec1de81fdd62fb9952931bd692'] = 'Video hinzufügen';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_70bd09c0bb64f38d33a139ac12d9e052'] = 'Text hinzufügen';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_f2a6c498fb90ee345d997f888fce3b18'] = 'Löschen';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_1298798308dfb56829d42c252adbd973'] = 'Hintergrund';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_1fb35365025e2d5bc236e336abb4a4de'] = 'Hintergrundbild einstellen';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_1063e38cb53d94d386f21227fcd84717'] = 'Entfernen';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_75e7422f2fe253fc69d3f6c148d197ee'] = 'Hintergrundfarbe';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_2b946b08a5f3b98a946605e450789621'] = 'Video-Typ';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_3e78e8704c6152536ec480501e9f4868'] = 'Video-ID';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_3196f674ac1ce6b9c30c73afca17e6e2'] = 'Zum Beispiel YouTube';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_eec6c4bdbd339edf8cbea68becb85244'] = 'Höhe';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_32954654ac8fe66a1d09be19001de2d4'] = 'Breite';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_403825785a196c752a3a33f9c2b3e2e3'] = 'Finde Video';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_4fd49e14c4b3bdc72bf23ae86d25861e'] = 'Verwenden Sie dieses Video';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_d3d2e617335f08df83599665eef8a418'] = 'Schließen';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_7c9a4efd10f85664107ec6c632ce2c54'] = 'Schichtenansammlung';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_5e04afd5c9dfad5d70719af678409b56'] = 'Ebenendaten bearbeiten';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_5f06cfc98e39dc14d2e8bc10a1a32558'] = 'Klasse-Stil';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_ee552178ecab509c3b2dc4be12d2b062'] = 'Geben Sie Typo ein';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_19372730cd500fdc6454525757673875'] = 'Beschriftung Html';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_4fb2981861d56dce54c0d1e6d14a7c1d'] = 'Lassen Sie HTML-Code einfügen';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_9b1d0abb705608d037a11c86fc75a1f1'] = 'Schriftgröße';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_8903861290617267b361478ab7f16f31'] = 'Textfarbe';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_06b9281e396db002010bde1de57262eb'] = 'Auto';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_97e7c9a7d06eac006a28bf05467fcc8b'] = 'Link';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_aad575df89fbd4d7503053c15de80757'] = 'Öffnen Sie in';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_52f5e0bc3859bc5f5e25130b6c7e8881'] = 'Position';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_a4ffdcf0dc1f31b9acaf295d75b51d00'] = 'Oben';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_945d5e233cf7d6240f6b783b36a374ff'] = 'Links';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_afedf9afee367f51f98d7cf030c976a6'] = 'Übergang';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_04e0385c10aefee8e4681617d2f3ef40'] = 'Verblassen';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_61f5bf1c77069ece391f35e27583675d'] = 'Wischen Sie nach links';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_b9eabe4385c91d66ad87ddde44fd782a'] = 'Wischen Sie nach rechts';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_e3c5263f63e757fa13252802790c44ec'] = 'Wischen';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_443f13b9f4f56b65816a2f648a571781'] = 'Wischen Sie unten';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_b7b90e3c3e37f052204b3172e1b8fa9c'] = 'Erweitern Linke';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_a71cf38a27ad237be24a28ac9493daa3'] = 'Erweitern Sie Rechts';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_6af2757e84f1dafd6bc8edb78acc4339'] = 'Erweitern Sie Top';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_c5007443ea70e4a3539fb6dc2df538bd'] = 'Unten erweitern';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_ed69308e766971217d568137ac305339'] = 'Bildverwaltung';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_d56b378daee3483c4354826b5a34f883'] = 'Bitte geben Sie den Titel des Schiebereglers für alle Sprache ein';
|
||||
29
modules/leoslideshow/translations/en.php
Normal file
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
/**
|
||||
* Leo Theme for Prestashop 1.6.x
|
||||
*
|
||||
* @author http://www.leotheme.com
|
||||
* @copyright Copyright (C) October 2013 LeoThemes.com <@emai:leotheme@gmail.com>
|
||||
* <info@leotheme.com>.All rights reserved.
|
||||
* @license GNU General Public License version 2
|
||||
*/
|
||||
|
||||
global $_MODULE;
|
||||
$_MODULE = array();
|
||||
|
||||
$_MODULE['<{homeslider}prestashop>homeslider_93cba07454f06a4a960172bbd6e2a435'] = 'Yes';
|
||||
$_MODULE['<{homeslider}prestashop>homeslider_bafd7322c6e97d25b6299b5d6fe8920b'] = 'No';
|
||||
$_MODULE['<{homeslider}prestashop>homeslider_c9cc8cce247e49bae79f15173ce97354'] = 'Save';
|
||||
$_MODULE['<{homeslider}prestashop>homeslider_7dce122004969d56ae2e0245cb754d35'] = 'Edit';
|
||||
$_MODULE['<{homeslider}prestashop>homeslider_f2a6c498fb90ee345d997f888fce3b18'] = 'Delete';
|
||||
$_MODULE['<{homeslider}prestashop>homeslider_51ec9bf4aaeab1b25bb57f9f8d4de557'] = 'Title';
|
||||
$_MODULE['<{homeslider}prestashop>homeslider_3b3d06023f6353f8fd05f859b298573e'] = 'URL';
|
||||
$_MODULE['<{homeslider}prestashop>homeslider_8046c95f98fc714db47978092bb24264'] = 'Legend';
|
||||
$_MODULE['<{homeslider}prestashop>homeslider_d0042a700e9bdf79689d63ee6846dc0e'] = 'Description';
|
||||
$_MODULE['<{homeslider}prestashop>homeslider_3d091e856cb7615d1ccb96bc759b5a92'] = 'Active';
|
||||
$_MODULE['<{homeslider}prestashop>homeslider_ea4788705e6873b424c65e91c2846b19'] = 'Cancel';
|
||||
$_MODULE['<{homeslider}prestashop>homeslider_20015706a8cbd457cbb6ea3e7d5dc9b3'] = 'The block configuration has been updated.';
|
||||
$_MODULE['<{homeslider}prestashop>homeslider_b9f5c797ebbf55adccdd8539a65a0241'] = 'Disabled';
|
||||
$_MODULE['<{homeslider}prestashop>homeslider_00d23a76e43b46dae9ec7aa9dcbebb32'] = 'Enabled';
|
||||
$_MODULE['<{homeslider}prestashop>homeslider_4d3d769b812b6faa6b76e1a8abaece2d'] = 'Active';
|
||||
$_MODULE['<{homeslider}prestashop>homeslider_f4f70727dc34561dfde1a3c529b6205c'] = 'Settings';
|
||||
273
modules/leoslideshow/translations/es.php
Normal file
@@ -0,0 +1,273 @@
|
||||
<?php
|
||||
|
||||
global $_MODULE;
|
||||
$_MODULE = array();
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_359142c1a00ba1320090e98b3e89f31c'] = 'Leo Presentación para su página de inicio';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_ee8726e003319356246eb21ebc1db4c9'] = 'Añade imagen, texto o vídeo a su página de inicio.';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_d85886451e1218b8ccf9e252c5bb4350'] = 'La importación se ha realizado correctamente';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_96ff377127e787e778c7fa509cec0805'] = 'Añadir nuevo deslizador';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_896cf81ef83de359d014303b411775f5'] = 'Estás editting deslizador:';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_bafd7322c6e97d25b6299b5d6fe8920b'] = 'No';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_c57adbcab6a8e9a9a7e1a5eed4fe095e'] = 'deslizador Título';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_2faec1f9f8cc7f8f40d521c4dd574f49'] = 'Habilitar';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_8f497c1a3d15af9e0c215019f26b887d'] = 'Retrasar';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_03937134cedab9078be39a77ee3a48a0'] = 'Grupo';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_f8c4099117a331ba6af4c2f4c64d3206'] = 'Habilitar Enlace';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_97e7c9a7d06eac006a28bf05467fcc8b'] = 'Enlazar';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_1b4162db9604f60e25faf845f196c641'] = 'Abrir enlace en una';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_c64ba88161c14076346c7956b3cec01b'] = 'Fecha de Inicio Hora';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_72ceb723c02a8c846b72d42415cb68be'] = 'Inicio Hora de finalización';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_96392af11bfd8b07486040ea1fa1c43a'] = 'Clase Número de bala';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_8745e453a1d24888f5c4cf220a35e005'] = 'bullet Descripción';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_b7c161bb87bb0308fb25e6f68d0a5632'] = 'Miniatura';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_34e2d1989a1dbf75cd631596133ee5ee'] = 'Vídeo';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_04e0385c10aefee8e4681617d2f3ef40'] = 'Descolorarse';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_ca0e203a4c824c71225fcd22383d90da'] = 'Corto de Arriba';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_9e9dacdae0eadf059bbff56ac24246db'] = 'Corto desde abajo';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_298187b8fe9867f7398cfe7f3e0887ac'] = 'Corto de Derecho';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_4d28f45f82ea38dd60da8b9b048dc88a'] = 'Corto de la izquierda';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_43d6d00265c1285b7ea01becc0c4eb24'] = 'Long de Top';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_f0d368a20fe5220282be4f437e60d29a'] = 'De largo desde la parte inferior';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_3cf41b58dd0eec02d7037a2f90d96648'] = 'De largo desde la derecha';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_edf11430c6f1c0c490a68c360c956b08'] = 'De largo desde la izquierda';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_efc77c1f5477e662b74ebd703c90c8ba'] = 'Girar al azar';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_63582074b0e39ca541eba9757409e40d'] = 'Añadir nuevo grupo';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_d23303cd157eee2b44ed01a20afd8616'] = 'Estás grupo editting:';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_6d1ca8184c6a1f11ecccfa17f8f9048a'] = 'en caja';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_4b5a9713994cdd44bc37de1b41878493'] = 'Anchura completa';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_b915c3f2926eb2dacadf11e7c5b904d7'] = 'Oculta en dispositivos de gran tamaño';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_200120bcca3122c156ec816080fe07d9'] = 'Oculta en dispositivos Mediano';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_6255dcec0f04135fa161d03e6bb46ea2'] = 'Oculta en dispositivos pequeños';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_87147971120558dba2382337684846fe'] = 'Escondido en pequeños dispositivos adicionales';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_6840b02c2234cbeba4daa985c97d6f0f'] = 'Escondido en Móvil';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_c54f9f209ed8fb4683e723daa4955377'] = 'Ajustes generales';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_f5b8c6ef0a73d5b71de9ebdc492e5d69'] = 'grupo Título';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_26a6b0b5fb2892e829a76462bdb2d753'] = 'Mostrar en Hook';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_bf4fd5935d3f742456e100fa6f55ccc2'] = 'A partir de diapositivas';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_011a69cb9cff027d0cbae7789003448a'] = 'temporizador de ejecución automática ';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_2f0a37e2770a29e7978be42bc49b1c4f'] = 'Fin de contador En la libración';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_6209ab799e6826f0d634e104aaaec3cf'] = 'Slide partida aleatorio';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_0ae935f86c2f8fc6f43110de1342d2c9'] = 'Presentación de la anchura del';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_807b017408ec31eabe113d455de5478d'] = 'Medianas y grandes ordenadores de sobremesa Anchura';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_460bab33b9e10419211172ee43c8d395'] = 'Pequeños dispositivos Tablets Ancho';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_b445886e2d8c5d2986fd126ae988d9c2'] = 'Dispositivos Móviles Extra Pequeño';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_4a080e0d7581c156809dea894b74c514'] = 'El modo en caja: Puede configurarlo ancho de diapositivas. Se mostrará flotador con otro módulo';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_30bbe9a92a88cdfc5b6061df1d313976'] = 'Modo de ancho completo: La presentación de diapositivas se muestran el 100% en un recipiente de hook_slideshow. Tienes que config ancho de otro módulo en hook_slideshow';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_c9cc8cce247e49bae79f15173ce97354'] = 'Salvar';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_2d01f00b9941ebb47d2b1533f728eacf'] = 'Configuración de imagen';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_0f81a4678116db23dd11270f73309ca7'] = 'El recorte de imágenes';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_903a813657245702616d09b0a5600cd2'] = 'Apagado Automático es utilizar el modo \"BOXED\" para la presentación de diapositivas';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_7c1ca41bb61dedd0e0f5e6e239e7140c'] = 'ancho de la imagen';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_633d2e2088142bb6a2f1ce05daa1bf62'] = 'Usar tamaño de imagen y Max-Altura de';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_73272b37e90e93583b05761520dc45b5'] = 'Altura de imagen';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_55e8a668d10aa67b9acfdaf6909e013b'] = 'CSS Marco';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_98369609669478919c74c916440e9978'] = 'Margen';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_510dcb9fa548932bc4c8741c06896389'] = 'El relleno (frontera)';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_504429941c068c463030b67a18187f7a'] = 'Mostrar la imagen de fondo';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_8f971fd7d7e17d3cec243dd259a93171'] = 'Sí, Frontend mostrará la imagen de fondo. No, Frontend mostrará el color de fondo.';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_abd809c9e3c1c08e97740f86b8ceabfb'] = 'Imagen de fondo';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_75e7422f2fe253fc69d3f6c148d197ee'] = 'Color de fondo';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_a02d25d021341196276d17c7ae24c7ef'] = 'grupo Clase';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_adcad7ce2aca48a7f88414e50da147c7'] = 'Navigator y Dirección';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_c5b640f779e0ca8e2b76e49891ed8489'] = 'Habilitar Navigator';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_51b9c120a4645dfd0571a1357b5b51a2'] = 'Tipo Navigator';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_7b0f64b7066620dd6d26d881d7a17871'] = 'Habilitar HTML personalizado';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_8b0b994c9e56b3812f1705213063c391'] = 'Información sobre la herramienta Thumbnai';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_68365abb13a327bd7401e1ead8de7e5b'] = 'umbral de posición X';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_46563346a237fd839ae1714f206488ca'] = 'umbral de posición Y';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_86284b33a5f68d33f9c21d90d2bdc431'] = 'Ancho de miniaturas';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_8b394d6ed5585431f701406734498024'] = 'Altura miniatura';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_bad6a5dd8c28e6b14f8e986615e3dc98'] = 'Opacidad';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_582b60c91fde8e275cefee35beeabfd4'] = 'Habilitar Dirección';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_164a2bd395c6278a12f2019f2ab9e24a'] = 'Teclado';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_432cd4e9c4f26cf4c0a817a63cc47a6b'] = 'Opciones de temporizador';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_9c17720fb2870ebf4d25d4dc0b6f2ee3'] = 'Estilo temporizador';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_52f5e0bc3859bc5f5e25130b6c7e8881'] = 'Posición';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_468a3af419ebf8d45f4dd1384fde23db'] = 'Ajustar la opacidad de temporizador en píxeles. El valor es 0 a 1. Ex 0,6';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_a9ded1e5ce5d75814730bb4caaf49419'] = 'Fondo';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_89e820c36ba4be89c0235aa83bbb246a'] = 'ajustador de color';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_0a19b152e2c510b525e5eae0f75ff495'] = 'Diámetro temporizador';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_c569023b7adcc5540e6f4b24d3bdd180'] = 'Relleno temporizador';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_326e09a04c9a52903a7be9f10be60152'] = 'Stroke temporizador';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_070554647306343cbea29ebfdd278ba8'] = 'Frontera';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_475c80ecff56299d3527cf51af68e48c'] = 'Color del borde';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_21c3e4abcdab4e034e0e6bd0a6102545'] = 'Estilo de borde';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_d6b6b668dbca9d4fe774bb654226ebe3'] = 'Animación';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_95c83e8b2bf2ae1d113861416895f77a'] = 'Velocidad para cambiar diapositivas';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_c06376319a0fe51160856f82f6958d82'] = 'Las tiras de diapositivas';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_44cf224a05586c6cd263937dce0c06e4'] = 'columna de diapositivas';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_74a3ad3fdbf9c23efe27af590bb2112f'] = 'Fila de diapositivas';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_33a05a0d6129e94a4eab0a1ddbb5de25'] = 'Leyenda velocidad';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_23e02379eb117ea7cbe09c54485251c8'] = 'Opacidad de Subtítulos';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_93cba07454f06a4a960172bbd6e2a435'] = 'Sí';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_b09bbc28bf2f0236af89e8f195b77f43'] = 'id_group no válido';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_523fa30bf3faf569a9d8f5e12634981f'] = 'Valor de retardo no válido';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_d1d198f2cc45f78a4a363a6be6d9b103'] = 'Ancho valor no válido';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_1e78e1260623bc5142751aee99e3b071'] = 'Altura valor no válido';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_7e77822e7637952cad00cbfd35e5c578'] = 'valor de color de fondo no válido';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_29f0a01f865107f8ef31f47d04e0f63b'] = 'No se pudo agregar el grupo.';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_923f7854e5bda70f7fac6a5d95761d8d'] = 'El grupo no pudo ser actualizado.';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_ccb2cfd379b6f4b5d3dd360647c50fd3'] = 'Cambio de estado del grupo fue un éxito';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_7f82c65d548588c8d5412463c182e450'] = 'La configuración no pudo ser actualizado.';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_694267331c7ceb141d81802bd2ea349a'] = 'grupo borrado';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_7e711a7e58d3e2303fb330185c06a6b8'] = 'Cambiar el estado de la diapositiva se ha realizado correctamente';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_bb6abf21a6c70c5740d93093b5518954'] = 'Slide añadió';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_2408a2e1f3548bc838ad6e40c7dad229'] = 'Haga clic en Habilitado';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_1073a919db0dd5cecdf9bfa7a27ffa31'] = 'Haga clic para discapacitados';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_76ad3ac84a702b0497cd6be8e8886d34'] = 'id_slide no válido';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_cdf841e01e10cae6355f72e6838808eb'] = 'No se pudo agregar la diapositiva.';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_eb28485b92fbf9201918698245ec6430'] = 'La diapositiva no se pudo actualizar.';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_472b99d1861b19f82c7647f008f90059'] = 'La corredera no podría ser borrado.';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_6ef1182ba7dc5cbb84637abf08510af9'] = 'Duplicado de';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_808aae9efa59b6a31f868ad2f4d7cc56'] = 'La diapositiva no puede ser duplicado.';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshowgroup_de3c731be5633838089a07179d301d7b'] = 'Jugar';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshowgroup_105b296a83f9c105355403f3332af50f'] = 'Pausa';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshowgroup_d3d2e617335f08df83599665eef8a418'] = 'Cerca';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshowgroup_10ac3d04253ef7e1ddc73e6091c0cd55'] = 'Siguiente';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshowgroup_dd1f775e443ff3b9a89270713580a51b'] = 'Anterior';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshowstatus_6bbc812b658152e5e40808989ea3e53b'] = 'la misma ventana';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshowstatus_7a115fe2bd8b94ead1550a2da953cf87'] = 'Nueva ventana';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_1b9abf135ccb7ed2f2cd9c155137c351'] = 'Vistazo';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_dc30bc0c7914db5918da4263fce93ad2'] = 'Claro';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_cfb7ed2a89b2febec5c605dd5a0add9d'] = 'Grupo back-ground';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_434f4ca11924baf76d1992b2cd0d504c'] = 'Haga clic para cargar o seleccionar un back-ground';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_3e150eb1b70e449b80a8a216278ddfc1'] = 'Grupo de previsualización';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_d9c974a800466ccd94c42de8fb08dd76'] = 'Para vista previa';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_c9cc8cce247e49bae79f15173ce97354'] = 'Salvar';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_7782518f59cd91a2a712ef5e32ec5f4b'] = 'gestiona Sliders';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_3bf12d4578fb0274f9ff8d4090a97bd2'] = 'Grupo de exportación y controles deslizantes';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_95143365aa9eab9135674624bcb05a00'] = 'Eliminar grupo seleccionado?';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_f2a6c498fb90ee345d997f888fce3b18'] = 'Borrar';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_56b3014fad57ca689e86cde0d4143cde'] = 'Guardar deslizante';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_2b946b08a5f3b98a946605e450789621'] = 'Tipo de vídeo';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_bafd7322c6e97d25b6299b5d6fe8920b'] = 'No';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_970cfba66b8380fb97b742e4571356c6'] = 'Youtube';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_15db599e0119be476d71bfc1fda72217'] = 'vimeo';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_3e78e8704c6152536ec480501e9f4868'] = 'ID de vídeo';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_50ca24c05b4dafa2ef236d15ae66a001'] = 'Auto reproducción';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_93cba07454f06a4a960172bbd6e2a435'] = 'Sí';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_ddb9370afdc2b94184e6940840efe690'] = 'insertar nuevas clases o seleccionar para alternar contenido a través de los puntos de corte de ventana gráfica';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_9c368b768277accfb3b2bc50ac35a884'] = 'Elija un fondo deslizante';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_1908624a0bca678cd26b99bfd405324e'] = 'Tamaño del archivo';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_f2a6c498fb90ee345d997f888fce3b18'] = 'Borrar';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_3fcbe6bd34e9279ec2c7b13adf7e4095'] = 'Has alcanzado el límite (%s) de datos para cargar, por favor, elimine los archivos para continuar subiendo';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_d39ec66f08507e26fe86aa5325d070df'] = 'Agregar archivos';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_58be4de806253a6ee411b6c0c99296c7'] = 'Agregar archivo';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_c7de86f69db264c3950d8ae46ed2e33f'] = 'Subir archivos';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_ffeed24e8e4fd763c1d0d02c6e5d6e15'] = 'Subir archivo';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_8077d1c510a7f18c7e9b6057f61c1c6d'] = 'Por orden de la imagen';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_49ee3087348e8d44e1feda1917443987'] = 'Nombre';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_1b7bb88b3317fe166424fa9e7535e1a9'] = 'nombre DESC';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_80ccccd39ce6134340fccbf76eb379ae'] = 'Fecha modificada';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_386133d672ac6450c029501cc023bf21'] = 'Fecha de modificación DESC';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_009044df8c709bfdefa065ae7fa733e1'] = 'Puede cargar un máximo de %s archivos';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_b21f085d08623fc7a5a9da204cc66c8c'] = 'Remover archivo';
|
||||
$_MODULE['<{leoslideshow}prestashop>imagemanager_0478d675b6c6d55451b48531ef7e41dd'] = 'Administrador de imágenes';
|
||||
$_MODULE['<{leoslideshow}prestashop>imagemanager_fb2ea703b13d059f6b7ea5da806021df'] = 'Formato:';
|
||||
$_MODULE['<{leoslideshow}prestashop>imagemanager_b908c2f34052b5276e0bf50f0e042211'] = 'Tamaño del archivo:';
|
||||
$_MODULE['<{leoslideshow}prestashop>imagemanager_2f972dbb48435d9b8087d7e3c22daa09'] = 'MB máx.';
|
||||
$_MODULE['<{leoslideshow}prestashop>imagemanager_0c3e7c5e60811c948a6a3f3f764e1a26'] = 'Click para ver';
|
||||
$_MODULE['<{leoslideshow}prestashop>imagemanager_4351cfebe4b61d8aa5efa1d020710005'] = 'Ver';
|
||||
$_MODULE['<{leoslideshow}prestashop>imagemanager_00b33d7acfa6a3da639e51dade102df3'] = 'Eliminar imagen seleccionado?';
|
||||
$_MODULE['<{leoslideshow}prestashop>imagemanager_f2a6c498fb90ee345d997f888fce3b18'] = 'Borrar';
|
||||
$_MODULE['<{leoslideshow}prestashop>imagemanager_b82f932f209c2fe588c3290527ead490'] = 'Si no puede actualizar la imagen. Por favor, establecer el permiso 755 para la carpeta';
|
||||
$_MODULE['<{leoslideshow}prestashop>imagemanager_26de4d3e04796d6486136c5b8203c3ac'] = 'Subir una imagen';
|
||||
$_MODULE['<{leoslideshow}prestashop>typo_10de4bc81f754b19b0d27246a0589c05'] = 'NOTA';
|
||||
$_MODULE['<{leoslideshow}prestashop>typo_6eb01d95c679674a59feb31d8dc5e59a'] = 'Estos errores tipográficos A continuación están recibiendo en el archivo';
|
||||
$_MODULE['<{leoslideshow}prestashop>typo_6befab5735b45621bb2a51ea174308b2'] = 'se puede abrir este archivo y añada la suya estilo CSS y será enumerado aquí !!!';
|
||||
$_MODULE['<{leoslideshow}prestashop>typo_52b3c15c0538e8ab2978d3c52f65fcb4'] = 'Para seleccionar uno, haga clic en el texto de cada Typos';
|
||||
$_MODULE['<{leoslideshow}prestashop>typo_7f1b7ac0737d17ec2abe392a8fe374ca'] = 'Usar este Leyenda del error tipográfico';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_de3c731be5633838089a07179d301d7b'] = 'Jugar';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_105b296a83f9c105355403f3332af50f'] = 'Pausa';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_d3d2e617335f08df83599665eef8a418'] = 'Cerca';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_10ac3d04253ef7e1ddc73e6091c0cd55'] = 'Siguiente';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_dd1f775e443ff3b9a89270713580a51b'] = 'Anterior';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_75267df40e119a3e6174762f493f9245'] = '¿Quieres copiar CSS, JS carpeta a carpeta del tema actual?';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_6622d333c33cfaf951fcf592c5834c79'] = 'Copia CSS, JS para el tema';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_2b432d7a07f4e34f5f350577e6ad7502'] = 'Lista de grupos';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_5a048522c38f75873335b2af3a5579d1'] = 'Haga clic para ver una guía de configuración';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_28974c2c793e780427dfb571b26443e6'] = 'Nombre del grupo';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_ec53a8c4f07baed5d8825072c89799be'] = 'Estado';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_d1ecdda3b9584ecacc31b4ef6a9a1e9b'] = 'Añadir un nuevo grupo';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_379d5e7e8c9f09972e0915714abad8d3'] = 'Editar grupo';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_7dce122004969d56ae2e0245cb754d35'] = 'Editar';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_c46942232f660ea828d88c66f5612c88'] = 'editting';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_95143365aa9eab9135674624bcb05a00'] = 'Eliminar grupo seleccionado?';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_f2a6c498fb90ee345d997f888fce3b18'] = 'Borrar';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_d9c974a800466ccd94c42de8fb08dd76'] = 'Para vista previa';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_3e150eb1b70e449b80a8a216278ddfc1'] = 'Grupo de previsualización';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_3bf12d4578fb0274f9ff8d4090a97bd2'] = 'Grupo de exportación y controles deslizantes';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_4aaa9f1d1cba55f447323dfd66dac4d6'] = 'Grupo correcta contenido';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_3721cd84044cd53000f32c20814963ad'] = 'idioma por defecto copia a otra';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_7782518f59cd91a2a712ef5e32ec5f4b'] = 'gestiona Sliders';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_062154b1e6f62a7e8de36088ddba1077'] = 'Grupo de importación';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_92fbf0e5d97b8afd7e73126b52bdc4bb'] = 'Escoge un archivo';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_4ba17c9e4d2a1225b21ca1d1516c0a8e'] = 'Por favor, sube * .txt solamente';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_ddd783edcc555eebd5f92a2c3579a183'] = 'grupo overide o no:';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_93cba07454f06a4a960172bbd6e2a435'] = 'Sí';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_bafd7322c6e97d25b6299b5d6fe8920b'] = 'No';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_72d6d7a1885885bb55a565fd1070581a'] = 'Importar';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_dfed52002899e6e3584d6f7ce7a798b8'] = '¿Seguro de anular grupo?';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_e57706046ca57c358dc156fdf9f05863'] = 'Por favor, sube el archivo txt';
|
||||
$_MODULE['<{leoslideshow}prestashop>panel_c54f9f209ed8fb4683e723daa4955377'] = 'Ajustes generales';
|
||||
$_MODULE['<{leoslideshow}prestashop>panel_2d01f00b9941ebb47d2b1533f728eacf'] = 'Configuración de imagen';
|
||||
$_MODULE['<{leoslideshow}prestashop>panel_55e8a668d10aa67b9acfdaf6909e013b'] = 'CSS Marco';
|
||||
$_MODULE['<{leoslideshow}prestashop>panel_adcad7ce2aca48a7f88414e50da147c7'] = 'Navigator y Dirección';
|
||||
$_MODULE['<{leoslideshow}prestashop>panel_432cd4e9c4f26cf4c0a817a63cc47a6b'] = 'Opciones de temporizador';
|
||||
$_MODULE['<{leoslideshow}prestashop>panel_d6b6b668dbca9d4fe774bb654226ebe3'] = 'Animación';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_c82324ebbcea34f55627a897b37190e3'] = 'lista de diapositivas';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_c5f09f37e1e182ec28fa64732d9b712c'] = 'De regreso';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_c46942232f660ea828d88c66f5612c88'] = 'editting';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_004bf6c9a40003140292e97330236c53'] = 'Acción';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_ab6fc089945137346f2b97f134193669'] = 'Haz click para editar';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_a95aab06fa9a0112d727ca07f65c399e'] = '¿Está seguro de que quiere eliminar este control?';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_38e56b404a51696528d84bfcb42e9c2a'] = 'Eliminar Este deslizador';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_1170a3fe82829410667a35d6ca4d38ee'] = '¿Está seguro de que desea duplicar esta barra de desplazamiento?';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_0437deaeea8ac07f1733a45cd8ff2acf'] = 'Duplicar este control deslizante';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_31fde7b05ac8952dacf4af8a704074ec'] = 'Avance';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_d9c974a800466ccd94c42de8fb08dd76'] = 'Para vista previa';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_56b3014fad57ca689e86cde0d4143cde'] = 'Guardar deslizante';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_d151b73738a19260cd1bcb51dbbf441a'] = 'Ver este material deslizante';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_807fd2f402e8258ad4ea79b4a7c1320b'] = 'Herramientas Acción';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_b9c49611cfda3259a2b837b39489e650'] = 'Añadir imagen';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_a1abe8ec1de81fdd62fb9952931bd692'] = 'Añadir video';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_70bd09c0bb64f38d33a139ac12d9e052'] = 'Añadir texto';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_f2a6c498fb90ee345d997f888fce3b18'] = 'Borrar';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_1298798308dfb56829d42c252adbd973'] = 'Fondo';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_1fb35365025e2d5bc236e336abb4a4de'] = 'Conjunto de imagen de fondo';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_1063e38cb53d94d386f21227fcd84717'] = 'retirar';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_75e7422f2fe253fc69d3f6c148d197ee'] = 'Color de fondo';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_2b946b08a5f3b98a946605e450789621'] = 'Tipo de vídeo';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_3e78e8704c6152536ec480501e9f4868'] = 'ID de vídeo';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_3196f674ac1ce6b9c30c73afca17e6e2'] = 'por ejemplo youtube';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_eec6c4bdbd339edf8cbea68becb85244'] = 'Altura';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_32954654ac8fe66a1d09be19001de2d4'] = 'Anchura';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_403825785a196c752a3a33f9c2b3e2e3'] = 'Encontrar un video';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_4fd49e14c4b3bdc72bf23ae86d25861e'] = 'Use este vídeo';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_d3d2e617335f08df83599665eef8a418'] = 'Cerca';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_7c9a4efd10f85664107ec6c632ce2c54'] = 'Colección capa';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_5e04afd5c9dfad5d70719af678409b56'] = 'Editar capa de datos';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_5f06cfc98e39dc14d2e8bc10a1a32558'] = 'Estilo de la clase';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_ee552178ecab509c3b2dc4be12d2b062'] = 'Insertar Typos';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_19372730cd500fdc6454525757673875'] = 'Leyenda HTML';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_4fb2981861d56dce54c0d1e6d14a7c1d'] = 'Permitir que el código html inserto';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_9b1d0abb705608d037a11c86fc75a1f1'] = 'tamaño de fuente';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_8903861290617267b361478ab7f16f31'] = 'Color de texto';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_06b9281e396db002010bde1de57262eb'] = 'Auto';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_97e7c9a7d06eac006a28bf05467fcc8b'] = 'Enlazar';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_aad575df89fbd4d7503053c15de80757'] = 'Abrelo';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_52f5e0bc3859bc5f5e25130b6c7e8881'] = 'Posición';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_a4ffdcf0dc1f31b9acaf295d75b51d00'] = 'Parte superior';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_945d5e233cf7d6240f6b783b36a374ff'] = 'Izquierda';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_afedf9afee367f51f98d7cf030c976a6'] = 'Transición';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_04e0385c10aefee8e4681617d2f3ef40'] = 'Descolorarse';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_61f5bf1c77069ece391f35e27583675d'] = 'Borrado hacia la izquierda';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_b9eabe4385c91d66ad87ddde44fd782a'] = 'Barrido hacia la derecha';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_e3c5263f63e757fa13252802790c44ec'] = 'limpie Top';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_443f13b9f4f56b65816a2f648a571781'] = 'Limpie el fondo';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_b7b90e3c3e37f052204b3172e1b8fa9c'] = 'expandir izquierda';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_a71cf38a27ad237be24a28ac9493daa3'] = 'ampliar el derecho';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_6af2757e84f1dafd6bc8edb78acc4339'] = 'ampliar Top';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_c5007443ea70e4a3539fb6dc2df538bd'] = 'expandir Bottom';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_ed69308e766971217d568137ac305339'] = 'Gestión de la imagen';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_d56b378daee3483c4354826b5a34f883'] = 'Por favor, título de entrada del control deslizante para todo lenguaje';
|
||||
273
modules/leoslideshow/translations/fr.php
Normal file
@@ -0,0 +1,273 @@
|
||||
<?php
|
||||
|
||||
global $_MODULE;
|
||||
$_MODULE = array();
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_359142c1a00ba1320090e98b3e89f31c'] = 'Leo Diaporama pour votre page d\'accueil';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_ee8726e003319356246eb21ebc1db4c9'] = 'Ajoute image, texte ou vidéo à votre page d\'accueil.';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_d85886451e1218b8ccf9e252c5bb4350'] = 'Importation a réussi';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_96ff377127e787e778c7fa509cec0805'] = 'Ajouter un nouveau curseur';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_896cf81ef83de359d014303b411775f5'] = 'Vous Editting curseur:';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_bafd7322c6e97d25b6299b5d6fe8920b'] = 'Non';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_c57adbcab6a8e9a9a7e1a5eed4fe095e'] = 'curseur Titre';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_2faec1f9f8cc7f8f40d521c4dd574f49'] = 'Activer';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_8f497c1a3d15af9e0c215019f26b887d'] = 'Retard';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_03937134cedab9078be39a77ee3a48a0'] = 'Groupe';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_f8c4099117a331ba6af4c2f4c64d3206'] = 'Enable Link';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_97e7c9a7d06eac006a28bf05467fcc8b'] = 'Lien';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_1b4162db9604f60e25faf845f196c641'] = 'Ouvrir le lien dans';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_c64ba88161c14076346c7956b3cec01b'] = 'Date de début Heure';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_72ceb723c02a8c846b72d42415cb68be'] = 'Start Time End';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_96392af11bfd8b07486040ea1fa1c43a'] = 'Bullet Nombre classe';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_8745e453a1d24888f5c4cf220a35e005'] = 'Bullet description de';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_b7c161bb87bb0308fb25e6f68d0a5632'] = 'La vignette';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_34e2d1989a1dbf75cd631596133ee5ee'] = 'Vidéo';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_04e0385c10aefee8e4681617d2f3ef40'] = 'Fade';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_ca0e203a4c824c71225fcd22383d90da'] = 'Court de Top';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_9e9dacdae0eadf059bbff56ac24246db'] = 'Court de Bottom';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_298187b8fe9867f7398cfe7f3e0887ac'] = 'Court de droit';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_4d28f45f82ea38dd60da8b9b048dc88a'] = 'Court de gauche';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_43d6d00265c1285b7ea01becc0c4eb24'] = 'Long de Top';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_f0d368a20fe5220282be4f437e60d29a'] = 'Long de Bottom';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_3cf41b58dd0eec02d7037a2f90d96648'] = 'Long de droit';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_edf11430c6f1c0c490a68c360c956b08'] = 'Long de gauche';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_efc77c1f5477e662b74ebd703c90c8ba'] = 'aléatoire Rotation';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_63582074b0e39ca541eba9757409e40d'] = 'Ajouter un nouveau groupe';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_d23303cd157eee2b44ed01a20afd8616'] = 'Vous êtes un groupe Editting:';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_6d1ca8184c6a1f11ecccfa17f8f9048a'] = 'Boxed';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_4b5a9713994cdd44bc37de1b41878493'] = 'Pleine largeur';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_b915c3f2926eb2dacadf11e7c5b904d7'] = 'Caché dans les grands appareils';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_200120bcca3122c156ec816080fe07d9'] = 'Caché dans les dispositifs Medium';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_6255dcec0f04135fa161d03e6bb46ea2'] = 'Caché dans les petits appareils';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_87147971120558dba2382337684846fe'] = 'Caché dans les petits appareils supplémentaires';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_6840b02c2234cbeba4daa985c97d6f0f'] = 'Caché dans Smart Phone';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_c54f9f209ed8fb4683e723daa4955377'] = 'Cadre général';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_f5b8c6ef0a73d5b71de9ebdc492e5d69'] = 'Groupe Titre';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_26a6b0b5fb2892e829a76462bdb2d753'] = 'Montrer à Hook';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_bf4fd5935d3f742456e100fa6f55ccc2'] = 'Diapositive Démarrage';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_011a69cb9cff027d0cbae7789003448a'] = 'Minuteur Autorun ';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_2f0a37e2770a29e7978be42bc49b1c4f'] = 'Stop Timer On Hover';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_6209ab799e6826f0d634e104aaaec3cf'] = 'Aléatoire Démarrage Glisser';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_0ae935f86c2f8fc6f43110de1342d2c9'] = 'Largeur mode Diaporama';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_807b017408ec31eabe113d455de5478d'] = 'Ordinateurs de bureau Medium et Large Largeur';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_460bab33b9e10419211172ee43c8d395'] = 'Petits appareils comprimés Largeur';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_b445886e2d8c5d2986fd126ae988d9c2'] = 'Appareils extra petites Téléphones';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_4a080e0d7581c156809dea894b74c514'] = 'Mode Boxed: Vous pouvez config largeur du diaporama. Il affichera flotteur avec autre module';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_30bbe9a92a88cdfc5b6061df1d313976'] = 'Mode FullWidth: Le diaporama affichera 100% dans le conteneur de hook_slideshow. Vous devez config la largeur de l\'autre module dans hook_slideshow';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_c9cc8cce247e49bae79f15173ce97354'] = 'sauvegarder';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_2d01f00b9941ebb47d2b1533f728eacf'] = 'Réglage de l\'image';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_0f81a4678116db23dd11270f73309ca7'] = 'image Recadrage';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_903a813657245702616d09b0a5600cd2'] = 'Auto désactiver est vous utilisez le mode \"Boxed\" pour le diaporama';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_7c1ca41bb61dedd0e0f5e6e239e7140c'] = 'Largeur de l\'image';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_633d2e2088142bb6a2f1ce05daa1bf62'] = 'Utiliser l\'image de redimensionnement et Max-hauteur pour';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_73272b37e90e93583b05761520dc45b5'] = 'hauteur de l\'image';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_55e8a668d10aa67b9acfdaf6909e013b'] = 'CSS Cadre';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_98369609669478919c74c916440e9978'] = 'Marge';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_510dcb9fa548932bc4c8741c06896389'] = 'Rembourrage (frontière)';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_504429941c068c463030b67a18187f7a'] = 'Montrer l\'image de fond';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_8f971fd7d7e17d3cec243dd259a93171'] = 'Oui, Frontend montrera l\'image d\'arrière-plan. Non, Frontend affichera la couleur de fond.';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_abd809c9e3c1c08e97740f86b8ceabfb'] = 'Image de fond';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_75e7422f2fe253fc69d3f6c148d197ee'] = 'Couleur de fond';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_a02d25d021341196276d17c7ae24c7ef'] = 'Groupe classe';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_adcad7ce2aca48a7f88414e50da147c7'] = 'Navigator et direction';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_c5b640f779e0ca8e2b76e49891ed8489'] = 'Activer Navigator';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_51b9c120a4645dfd0571a1357b5b51a2'] = 'Type de Navigator';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_7b0f64b7066620dd6d26d881d7a17871'] = 'HTML personnalisée Activer';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_8b0b994c9e56b3812f1705213063c391'] = 'tooltip Thumbnai';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_68365abb13a327bd7401e1ead8de7e5b'] = 'seuil de position X';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_46563346a237fd839ae1714f206488ca'] = 'Y seuil de position';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_86284b33a5f68d33f9c21d90d2bdc431'] = 'Miniature Largeur';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_8b394d6ed5585431f701406734498024'] = 'Thumbnail Hauteur';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_bad6a5dd8c28e6b14f8e986615e3dc98'] = 'Opacité';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_582b60c91fde8e275cefee35beeabfd4'] = 'Activer Direction';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_164a2bd395c6278a12f2019f2ab9e24a'] = 'Clavier';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_432cd4e9c4f26cf4c0a817a63cc47a6b'] = 'options de minuterie';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_9c17720fb2870ebf4d25d4dc0b6f2ee3'] = 'style de minuterie';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_52f5e0bc3859bc5f5e25130b6c7e8881'] = 'Position';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_468a3af419ebf8d45f4dd1384fde23db'] = 'Réglez l\'opacité pour Timer dans pixel. La valeur est 0 à 1. Ex 0,6';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_a9ded1e5ce5d75814730bb4caaf49419'] = 'Contexte';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_89e820c36ba4be89c0235aa83bbb246a'] = 'Couleur Minuteur';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_0a19b152e2c510b525e5eae0f75ff495'] = 'Diamètre de la minuterie';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_c569023b7adcc5540e6f4b24d3bdd180'] = 'Minuteur Rembourrage';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_326e09a04c9a52903a7be9f10be60152'] = 'Stroke Timer';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_070554647306343cbea29ebfdd278ba8'] = 'Frontière';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_475c80ecff56299d3527cf51af68e48c'] = 'Couleur de la bordure';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_21c3e4abcdab4e034e0e6bd0a6102545'] = 'Style de bordure';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_d6b6b668dbca9d4fe774bb654226ebe3'] = 'Animation';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_95c83e8b2bf2ae1d113861416895f77a'] = 'Vitesse de changer diapositive';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_c06376319a0fe51160856f82f6958d82'] = 'Bandes de diapositives';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_44cf224a05586c6cd263937dce0c06e4'] = 'Faites glisser la colonne';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_74a3ad3fdbf9c23efe27af590bb2112f'] = 'Diapositive Row';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_33a05a0d6129e94a4eab0a1ddbb5de25'] = 'Légende Vitesse';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_23e02379eb117ea7cbe09c54485251c8'] = 'Légende Opacité';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_93cba07454f06a4a960172bbd6e2a435'] = 'Oui';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_b09bbc28bf2f0236af89e8f195b77f43'] = 'id_group Invalid';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_523fa30bf3faf569a9d8f5e12634981f'] = 'valeur de retard non valide';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_d1d198f2cc45f78a4a363a6be6d9b103'] = 'valeur Largeur non valide';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_1e78e1260623bc5142751aee99e3b071'] = 'valeur Hauteur non valide';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_7e77822e7637952cad00cbfd35e5c578'] = 'Invalid valeur de couleur d\'arrière-plan';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_29f0a01f865107f8ef31f47d04e0f63b'] = 'Le groupe n\'a pas pu être ajouté.';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_923f7854e5bda70f7fac6a5d95761d8d'] = 'Le groupe n\'a pas pu être mis à jour.';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_ccb2cfd379b6f4b5d3dd360647c50fd3'] = 'Changer le statut de groupe a réussi';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_7f82c65d548588c8d5412463c182e450'] = 'La configuration n\'a pas pu être mis à jour.';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_694267331c7ceb141d81802bd2ea349a'] = 'groupe supprimé';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_7e711a7e58d3e2303fb330185c06a6b8'] = 'Changer le statut de la diapositive a réussi';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_bb6abf21a6c70c5740d93093b5518954'] = 'Diapositive ajouté';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_2408a2e1f3548bc838ad6e40c7dad229'] = 'Cliquez sur Activé';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_1073a919db0dd5cecdf9bfa7a27ffa31'] = 'Cliquez sur Désactivé';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_76ad3ac84a702b0497cd6be8e8886d34'] = 'id_slide Invalid';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_cdf841e01e10cae6355f72e6838808eb'] = 'La lame ne peut être ajouté.';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_eb28485b92fbf9201918698245ec6430'] = 'La diapositive n\'a pas pu être mis à jour.';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_472b99d1861b19f82c7647f008f90059'] = 'La diapositive ne pouvait pas être supprimer.';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_6ef1182ba7dc5cbb84637abf08510af9'] = 'Dupliquer des';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_808aae9efa59b6a31f868ad2f4d7cc56'] = 'La diapositive ne pouvait pas être double.';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshowgroup_de3c731be5633838089a07179d301d7b'] = 'Jouer';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshowgroup_105b296a83f9c105355403f3332af50f'] = 'Pause';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshowgroup_d3d2e617335f08df83599665eef8a418'] = 'Fermer';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshowgroup_10ac3d04253ef7e1ddc73e6091c0cd55'] = 'Prochain';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshowgroup_dd1f775e443ff3b9a89270713580a51b'] = 'précédent';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshowstatus_6bbc812b658152e5e40808989ea3e53b'] = 'même fenêtre';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshowstatus_7a115fe2bd8b94ead1550a2da953cf87'] = 'Nouvelle fenetre';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_1b9abf135ccb7ed2f2cd9c155137c351'] = 'Feuilleter';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_dc30bc0c7914db5918da4263fce93ad2'] = 'Clair';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_cfb7ed2a89b2febec5c605dd5a0add9d'] = 'Groupe Back-sol';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_434f4ca11924baf76d1992b2cd0d504c'] = 'Cliquez pour télécharger ou sélectionner un back-sol';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_3e150eb1b70e449b80a8a216278ddfc1'] = 'Aperçu Groupe';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_d9c974a800466ccd94c42de8fb08dd76'] = 'Aperçu Pour';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_c9cc8cce247e49bae79f15173ce97354'] = 'sauvegarder';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_7782518f59cd91a2a712ef5e32ec5f4b'] = 'Gère Sliders';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_3bf12d4578fb0274f9ff8d4090a97bd2'] = 'Groupe et curseurs Export';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_95143365aa9eab9135674624bcb05a00'] = 'Supprimer la sélection du groupe?';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_f2a6c498fb90ee345d997f888fce3b18'] = 'Effacer';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_56b3014fad57ca689e86cde0d4143cde'] = 'Enregistrer curseur';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_2b946b08a5f3b98a946605e450789621'] = 'Type de vidéo';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_bafd7322c6e97d25b6299b5d6fe8920b'] = 'Non';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_970cfba66b8380fb97b742e4571356c6'] = 'Youtube';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_15db599e0119be476d71bfc1fda72217'] = 'Vimeo';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_3e78e8704c6152536ec480501e9f4868'] = 'video ID';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_50ca24c05b4dafa2ef236d15ae66a001'] = 'Lecture automatique';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_93cba07454f06a4a960172bbd6e2a435'] = 'Oui';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_ddb9370afdc2b94184e6940840efe690'] = 'insérer des classes nouvelles ou sélectionnez pour basculer contenu à travers des points d\'arrêt de viewport';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_9c368b768277accfb3b2bc50ac35a884'] = 'Sélectionnez fond curseur';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_1908624a0bca678cd26b99bfd405324e'] = 'Taille du fichier';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_f2a6c498fb90ee345d997f888fce3b18'] = 'Effacer';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_3fcbe6bd34e9279ec2c7b13adf7e4095'] = 'Vous avez atteint la limite (%s) des fichiers à télécharger, veuillez supprimer les fichiers pour continuer à télécharger';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_d39ec66f08507e26fe86aa5325d070df'] = 'Ajouter des fichiers';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_58be4de806253a6ee411b6c0c99296c7'] = 'Ajouter le fichier';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_c7de86f69db264c3950d8ae46ed2e33f'] = 'Télécharger des fichiers';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_ffeed24e8e4fd763c1d0d02c6e5d6e15'] = 'Téléverser un fichier';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_8077d1c510a7f18c7e9b6057f61c1c6d'] = 'Ordre Image par';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_49ee3087348e8d44e1feda1917443987'] = 'prénom';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_1b7bb88b3317fe166424fa9e7535e1a9'] = 'Nom DESC';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_80ccccd39ce6134340fccbf76eb379ae'] = 'Date modifiée';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_386133d672ac6450c029501cc023bf21'] = 'Date de modification DESC';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_009044df8c709bfdefa065ae7fa733e1'] = 'Vous pouvez télécharger un maximum de %s fichiers';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_b21f085d08623fc7a5a9da204cc66c8c'] = 'Effacer le fichier';
|
||||
$_MODULE['<{leoslideshow}prestashop>imagemanager_0478d675b6c6d55451b48531ef7e41dd'] = 'Images Gestionnaire';
|
||||
$_MODULE['<{leoslideshow}prestashop>imagemanager_fb2ea703b13d059f6b7ea5da806021df'] = 'Format:';
|
||||
$_MODULE['<{leoslideshow}prestashop>imagemanager_b908c2f34052b5276e0bf50f0e042211'] = 'Taille du fichier:';
|
||||
$_MODULE['<{leoslideshow}prestashop>imagemanager_2f972dbb48435d9b8087d7e3c22daa09'] = 'Mo max.';
|
||||
$_MODULE['<{leoslideshow}prestashop>imagemanager_0c3e7c5e60811c948a6a3f3f764e1a26'] = 'Clique pour voir';
|
||||
$_MODULE['<{leoslideshow}prestashop>imagemanager_4351cfebe4b61d8aa5efa1d020710005'] = 'Vue';
|
||||
$_MODULE['<{leoslideshow}prestashop>imagemanager_00b33d7acfa6a3da639e51dade102df3'] = 'Supprimer l\'image sélectionnée?';
|
||||
$_MODULE['<{leoslideshow}prestashop>imagemanager_f2a6c498fb90ee345d997f888fce3b18'] = 'Effacer';
|
||||
$_MODULE['<{leoslideshow}prestashop>imagemanager_b82f932f209c2fe588c3290527ead490'] = 'Si vous ne pouvez pas mettre à jour l\'image. S\'il vous plaît définir l\'autorisation 755 pour le dossier';
|
||||
$_MODULE['<{leoslideshow}prestashop>imagemanager_26de4d3e04796d6486136c5b8203c3ac'] = 'Télécharger une image';
|
||||
$_MODULE['<{leoslideshow}prestashop>typo_10de4bc81f754b19b0d27246a0589c05'] = 'REMARQUE';
|
||||
$_MODULE['<{leoslideshow}prestashop>typo_6eb01d95c679674a59feb31d8dc5e59a'] = 'Ces Typos ci-dessous obtiennent dans le fichier';
|
||||
$_MODULE['<{leoslideshow}prestashop>typo_6befab5735b45621bb2a51ea174308b2'] = 'vous pouvez ouvrir ce fichier et ajoutez le vôtre style css et il sera répertorié ici !!!';
|
||||
$_MODULE['<{leoslideshow}prestashop>typo_52b3c15c0538e8ab2978d3c52f65fcb4'] = 'Pour sélectionner un, vous cliquez sur le texte de chaque Typo';
|
||||
$_MODULE['<{leoslideshow}prestashop>typo_7f1b7ac0737d17ec2abe392a8fe374ca'] = 'Utilisez cette légende Typo';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_de3c731be5633838089a07179d301d7b'] = 'Jouer';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_105b296a83f9c105355403f3332af50f'] = 'Pause';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_d3d2e617335f08df83599665eef8a418'] = 'Fermer';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_10ac3d04253ef7e1ddc73e6091c0cd55'] = 'Prochain';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_dd1f775e443ff3b9a89270713580a51b'] = 'précédent';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_75267df40e119a3e6174762f493f9245'] = 'Voulez-vous copier CSS, JS dossier dans le dossier de thème actuel?';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_6622d333c33cfaf951fcf592c5834c79'] = 'Copie CSS, JS à thème';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_2b432d7a07f4e34f5f350577e6ad7502'] = 'Liste des groupes';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_5a048522c38f75873335b2af3a5579d1'] = 'Cliquez pour voir le guide de configuration';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_28974c2c793e780427dfb571b26443e6'] = 'Nom de groupe';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_ec53a8c4f07baed5d8825072c89799be'] = 'statut';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_d1ecdda3b9584ecacc31b4ef6a9a1e9b'] = 'Ajouter un nouveau groupe';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_379d5e7e8c9f09972e0915714abad8d3'] = 'Modifier le groupe';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_7dce122004969d56ae2e0245cb754d35'] = 'modifier';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_c46942232f660ea828d88c66f5612c88'] = 'Editting';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_95143365aa9eab9135674624bcb05a00'] = 'Supprimer la sélection du groupe?';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_f2a6c498fb90ee345d997f888fce3b18'] = 'Effacer';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_d9c974a800466ccd94c42de8fb08dd76'] = 'Aperçu Pour';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_3e150eb1b70e449b80a8a216278ddfc1'] = 'Aperçu Groupe';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_3bf12d4578fb0274f9ff8d4090a97bd2'] = 'Groupe et curseurs Export';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_4aaa9f1d1cba55f447323dfd66dac4d6'] = 'Contenu correct du groupe';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_3721cd84044cd53000f32c20814963ad'] = 'langue Copie par défaut à d\'autres';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_7782518f59cd91a2a712ef5e32ec5f4b'] = 'Gère Sliders';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_062154b1e6f62a7e8de36088ddba1077'] = 'import Group';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_92fbf0e5d97b8afd7e73126b52bdc4bb'] = 'Choisissez un fichier';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_4ba17c9e4d2a1225b21ca1d1516c0a8e'] = 'S\'il vous plaît télécharger * .txt uniquement';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_ddd783edcc555eebd5f92a2c3579a183'] = 'groupe Overide ou non:';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_93cba07454f06a4a960172bbd6e2a435'] = 'Oui';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_bafd7322c6e97d25b6299b5d6fe8920b'] = 'Non';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_72d6d7a1885885bb55a565fd1070581a'] = 'Importer';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_dfed52002899e6e3584d6f7ce7a798b8'] = 'Etes-vous sûr de remplacer un groupe?';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_e57706046ca57c358dc156fdf9f05863'] = 'S\'il vous plaît télécharger le fichier txt';
|
||||
$_MODULE['<{leoslideshow}prestashop>panel_c54f9f209ed8fb4683e723daa4955377'] = 'Cadre général';
|
||||
$_MODULE['<{leoslideshow}prestashop>panel_2d01f00b9941ebb47d2b1533f728eacf'] = 'Réglage de l\'image';
|
||||
$_MODULE['<{leoslideshow}prestashop>panel_55e8a668d10aa67b9acfdaf6909e013b'] = 'CSS Cadre';
|
||||
$_MODULE['<{leoslideshow}prestashop>panel_adcad7ce2aca48a7f88414e50da147c7'] = 'Navigator et direction';
|
||||
$_MODULE['<{leoslideshow}prestashop>panel_432cd4e9c4f26cf4c0a817a63cc47a6b'] = 'options de minuterie';
|
||||
$_MODULE['<{leoslideshow}prestashop>panel_d6b6b668dbca9d4fe774bb654226ebe3'] = 'Animation';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_c82324ebbcea34f55627a897b37190e3'] = 'liste Diapositives';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_c5f09f37e1e182ec28fa64732d9b712c'] = 'Retour à';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_c46942232f660ea828d88c66f5612c88'] = 'Editting';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_004bf6c9a40003140292e97330236c53'] = 'action';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_ab6fc089945137346f2b97f134193669'] = 'Cliquez sur Modifier';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_a95aab06fa9a0112d727ca07f65c399e'] = 'Êtes-vous sûr de vouloir supprimer ce curseur?';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_38e56b404a51696528d84bfcb42e9c2a'] = 'Supprimer Ce curseur';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_1170a3fe82829410667a35d6ca4d38ee'] = 'Etes-vous sûr que vous voulez dupliquer ce curseur?';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_0437deaeea8ac07f1733a45cd8ff2acf'] = 'Dupliquer Ce curseur';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_31fde7b05ac8952dacf4af8a704074ec'] = 'Aperçu';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_d9c974a800466ccd94c42de8fb08dd76'] = 'Aperçu Pour';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_56b3014fad57ca689e86cde0d4143cde'] = 'Enregistrer curseur';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_d151b73738a19260cd1bcb51dbbf441a'] = 'Aperçu Ce curseur';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_807fd2f402e8258ad4ea79b4a7c1320b'] = 'Outils d\'action';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_b9c49611cfda3259a2b837b39489e650'] = 'Ajouter une image';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_a1abe8ec1de81fdd62fb9952931bd692'] = 'Ajouter la vidéo';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_70bd09c0bb64f38d33a139ac12d9e052'] = 'Ajouter du texte';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_f2a6c498fb90ee345d997f888fce3b18'] = 'Effacer';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_1298798308dfb56829d42c252adbd973'] = 'Contexte';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_1fb35365025e2d5bc236e336abb4a4de'] = 'Set Background Image';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_1063e38cb53d94d386f21227fcd84717'] = 'Retirer';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_75e7422f2fe253fc69d3f6c148d197ee'] = 'Couleur de fond';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_2b946b08a5f3b98a946605e450789621'] = 'Type de vidéo';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_3e78e8704c6152536ec480501e9f4868'] = 'video ID';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_3196f674ac1ce6b9c30c73afca17e6e2'] = 'par exemple youtube';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_eec6c4bdbd339edf8cbea68becb85244'] = 'la taille';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_32954654ac8fe66a1d09be19001de2d4'] = 'Largeur';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_403825785a196c752a3a33f9c2b3e2e3'] = 'Trouver vidéo';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_4fd49e14c4b3bdc72bf23ae86d25861e'] = 'Utilisez cette vidéo';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_d3d2e617335f08df83599665eef8a418'] = 'Fermer';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_7c9a4efd10f85664107ec6c632ce2c54'] = 'Collection Layer';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_5e04afd5c9dfad5d70719af678409b56'] = 'Modifier les données de la couche';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_5f06cfc98e39dc14d2e8bc10a1a32558'] = 'Class style';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_ee552178ecab509c3b2dc4be12d2b062'] = 'Insérer Typo';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_19372730cd500fdc6454525757673875'] = 'Légende Html';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_4fb2981861d56dce54c0d1e6d14a7c1d'] = 'Autoriser le code html insert';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_9b1d0abb705608d037a11c86fc75a1f1'] = 'taille de police';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_8903861290617267b361478ab7f16f31'] = 'Couleur de texte';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_06b9281e396db002010bde1de57262eb'] = 'Auto';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_97e7c9a7d06eac006a28bf05467fcc8b'] = 'Lien';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_aad575df89fbd4d7503053c15de80757'] = 'Ouvrir dans';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_52f5e0bc3859bc5f5e25130b6c7e8881'] = 'Position';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_a4ffdcf0dc1f31b9acaf295d75b51d00'] = 'Sommet';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_945d5e233cf7d6240f6b783b36a374ff'] = 'À gauche';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_afedf9afee367f51f98d7cf030c976a6'] = 'Transition';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_04e0385c10aefee8e4681617d2f3ef40'] = 'Fade';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_61f5bf1c77069ece391f35e27583675d'] = 'essuyez gauche';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_b9eabe4385c91d66ad87ddde44fd782a'] = 'essuyez droit';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_e3c5263f63e757fa13252802790c44ec'] = 'essuyez Top';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_443f13b9f4f56b65816a2f648a571781'] = 'essuyez Bottom';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_b7b90e3c3e37f052204b3172e1b8fa9c'] = 'Développez gauche';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_a71cf38a27ad237be24a28ac9493daa3'] = 'Développer droit';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_6af2757e84f1dafd6bc8edb78acc4339'] = 'Développer Top';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_c5007443ea70e4a3539fb6dc2df538bd'] = 'Développez Bottom';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_ed69308e766971217d568137ac305339'] = 'Gestion des images';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_d56b378daee3483c4354826b5a34f883'] = 'Please titre entrée du curseur pour toutes les langues';
|
||||
35
modules/leoslideshow/translations/index.php
Normal file
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2014 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-2014 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;
|
||||
273
modules/leoslideshow/translations/it.php
Normal file
@@ -0,0 +1,273 @@
|
||||
<?php
|
||||
|
||||
global $_MODULE;
|
||||
$_MODULE = array();
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_359142c1a00ba1320090e98b3e89f31c'] = 'Slideshow Leo per la tua home page';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_ee8726e003319356246eb21ebc1db4c9'] = 'Aggiunge immagine, testo o un video alla tua home page.';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_d85886451e1218b8ccf9e252c5bb4350'] = 'L\'importazione ha avuto successo';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_96ff377127e787e778c7fa509cec0805'] = 'Aggiungere nuovo slider';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_896cf81ef83de359d014303b411775f5'] = 'Stai Editting cursore:';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_bafd7322c6e97d25b6299b5d6fe8920b'] = 'No';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_c57adbcab6a8e9a9a7e1a5eed4fe095e'] = 'Slider Titolo';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_2faec1f9f8cc7f8f40d521c4dd574f49'] = 'consentire';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_8f497c1a3d15af9e0c215019f26b887d'] = 'Ritardo';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_03937134cedab9078be39a77ee3a48a0'] = 'Gruppo';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_f8c4099117a331ba6af4c2f4c64d3206'] = 'Abilita link';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_97e7c9a7d06eac006a28bf05467fcc8b'] = 'collegamento';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_1b4162db9604f60e25faf845f196c641'] = 'Link Apri in';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_c64ba88161c14076346c7956b3cec01b'] = 'Inizia Data Ora';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_72ceb723c02a8c846b72d42415cb68be'] = 'Inizio Fine Tempo';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_96392af11bfd8b07486040ea1fa1c43a'] = 'Numero proiettile Class';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_8745e453a1d24888f5c4cf220a35e005'] = 'proiettile Descrizione';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_b7c161bb87bb0308fb25e6f68d0a5632'] = 'Thumbnail';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_34e2d1989a1dbf75cd631596133ee5ee'] = 'Video';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_04e0385c10aefee8e4681617d2f3ef40'] = 'dissolvenza';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_ca0e203a4c824c71225fcd22383d90da'] = 'Breve da Top';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_9e9dacdae0eadf059bbff56ac24246db'] = 'Breve dalla parte inferiore';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_298187b8fe9867f7398cfe7f3e0887ac'] = 'Breve da destra';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_4d28f45f82ea38dd60da8b9b048dc88a'] = 'Breve da sinistra';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_43d6d00265c1285b7ea01becc0c4eb24'] = 'Lungo da Top';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_f0d368a20fe5220282be4f437e60d29a'] = 'Lungo dalla parte inferiore';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_3cf41b58dd0eec02d7037a2f90d96648'] = 'Lungo da destra';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_edf11430c6f1c0c490a68c360c956b08'] = 'Lungo da sinistra';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_efc77c1f5477e662b74ebd703c90c8ba'] = 'casuale Ruota';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_63582074b0e39ca541eba9757409e40d'] = 'Aggiungi nuovo gruppo';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_d23303cd157eee2b44ed01a20afd8616'] = 'Stai Editting gruppo:';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_6d1ca8184c6a1f11ecccfa17f8f9048a'] = 'boxed';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_4b5a9713994cdd44bc37de1b41878493'] = 'Intera larghezza';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_b915c3f2926eb2dacadf11e7c5b904d7'] = 'Nascosto in dispositivi di grandi dimensioni';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_200120bcca3122c156ec816080fe07d9'] = 'Nascosto in dispositivi media';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_6255dcec0f04135fa161d03e6bb46ea2'] = 'Nascosto in dispositivi piccoli';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_87147971120558dba2382337684846fe'] = 'Nascosto in piccoli dispositivi aggiuntivi';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_6840b02c2234cbeba4daa985c97d6f0f'] = 'Nascosto in Smart Phone';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_c54f9f209ed8fb4683e723daa4955377'] = 'Impostazioni generali';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_f5b8c6ef0a73d5b71de9ebdc492e5d69'] = 'Gruppo Titolo';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_26a6b0b5fb2892e829a76462bdb2d753'] = 'Show di Hook';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_bf4fd5935d3f742456e100fa6f55ccc2'] = 'Far scorrere partire';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_011a69cb9cff027d0cbae7789003448a'] = 'Timer Autorun ';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_2f0a37e2770a29e7978be42bc49b1c4f'] = 'Timer stop al passaggio del mouse';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_6209ab799e6826f0d634e104aaaec3cf'] = 'Casuale Presentazione di partenza';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_0ae935f86c2f8fc6f43110de1342d2c9'] = 'Modalità Larghezza Slideshow';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_807b017408ec31eabe113d455de5478d'] = 'Desktop Medium e Large Larghezza';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_460bab33b9e10419211172ee43c8d395'] = 'Piccoli dispositivi Compresse Larghezza';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_b445886e2d8c5d2986fd126ae988d9c2'] = 'Extra piccoli dispositivi cellulari';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_4a080e0d7581c156809dea894b74c514'] = 'Modalità inscatolato: È possibile config larghezza della presentazione. Mostrerà galleggiante con altri moduli';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_30bbe9a92a88cdfc5b6061df1d313976'] = 'Modalità di spessore pieno: La presentazione mostrerà al 100% in un contenitore di hook_slideshow. Bisogna config larghezza altro modulo in hook_slideshow';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_c9cc8cce247e49bae79f15173ce97354'] = 'Salvare';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_2d01f00b9941ebb47d2b1533f728eacf'] = 'immagine Impostazione';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_0f81a4678116db23dd11270f73309ca7'] = 'immagine ritaglio';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_903a813657245702616d09b0a5600cd2'] = 'Auto spegnere è si utilizza la modalità \"boxed\" per presentazione';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_7c1ca41bb61dedd0e0f5e6e239e7140c'] = 'Larghezza immagine';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_633d2e2088142bb6a2f1ce05daa1bf62'] = 'Utilizzare Image Resize e Max-altezza per';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_73272b37e90e93583b05761520dc45b5'] = 'Altezza immagine';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_55e8a668d10aa67b9acfdaf6909e013b'] = 'Impostazione CSS';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_98369609669478919c74c916440e9978'] = 'Margine';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_510dcb9fa548932bc4c8741c06896389'] = 'Padding (confine)';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_504429941c068c463030b67a18187f7a'] = 'Visualizza immagine di sfondo';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_8f971fd7d7e17d3cec243dd259a93171'] = 'Sì, Frontend sarà immagine di sfondo mostrerà. No, Frontend mostrerà colore di sfondo.';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_abd809c9e3c1c08e97740f86b8ceabfb'] = 'Immagine di sfondo';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_75e7422f2fe253fc69d3f6c148d197ee'] = 'Colore di sfondo';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_a02d25d021341196276d17c7ae24c7ef'] = 'Class Group';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_adcad7ce2aca48a7f88414e50da147c7'] = 'Navigator e Direzione';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_c5b640f779e0ca8e2b76e49891ed8489'] = 'Abilita Navigator';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_51b9c120a4645dfd0571a1357b5b51a2'] = 'Navigator Tipo';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_7b0f64b7066620dd6d26d881d7a17871'] = 'HTML personalizzato Abilita';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_8b0b994c9e56b3812f1705213063c391'] = 'tooltip Thumbnai';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_68365abb13a327bd7401e1ead8de7e5b'] = 'Soglia posizione X';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_46563346a237fd839ae1714f206488ca'] = 'Soglia posizione Y';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_86284b33a5f68d33f9c21d90d2bdc431'] = 'Thumbnail Larghezza';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_8b394d6ed5585431f701406734498024'] = 'Thumbnail Altezza';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_bad6a5dd8c28e6b14f8e986615e3dc98'] = 'Opacità';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_582b60c91fde8e275cefee35beeabfd4'] = 'Abilita Direzione';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_164a2bd395c6278a12f2019f2ab9e24a'] = 'Tastiera';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_432cd4e9c4f26cf4c0a817a63cc47a6b'] = 'Opzioni timer';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_9c17720fb2870ebf4d25d4dc0b6f2ee3'] = 'Stile Timer';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_52f5e0bc3859bc5f5e25130b6c7e8881'] = 'Posizione';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_468a3af419ebf8d45f4dd1384fde23db'] = 'Impostare l\'opacità per Timer in pixel. Il valore è 0 a 1. Ex 0.6';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_a9ded1e5ce5d75814730bb4caaf49419'] = 'sfondo';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_89e820c36ba4be89c0235aa83bbb246a'] = 'analizzatore colore';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_0a19b152e2c510b525e5eae0f75ff495'] = 'Timer Diametro';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_c569023b7adcc5540e6f4b24d3bdd180'] = 'Timer Imbottitura';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_326e09a04c9a52903a7be9f10be60152'] = 'Timer Stroke';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_070554647306343cbea29ebfdd278ba8'] = 'Confine';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_475c80ecff56299d3527cf51af68e48c'] = 'Colore del bordo';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_21c3e4abcdab4e034e0e6bd0a6102545'] = 'Stile del bordo';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_d6b6b668dbca9d4fe774bb654226ebe3'] = 'Animazione';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_95c83e8b2bf2ae1d113861416895f77a'] = 'Velocità per passare slitta';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_c06376319a0fe51160856f82f6958d82'] = 'strisce di diapositive';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_44cf224a05586c6cd263937dce0c06e4'] = 'Far scorrere Colonna';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_74a3ad3fdbf9c23efe27af590bb2112f'] = 'Far scorrere Row';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_33a05a0d6129e94a4eab0a1ddbb5de25'] = 'Didascalia Velocità';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_23e02379eb117ea7cbe09c54485251c8'] = 'Didascalia Opacità';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_93cba07454f06a4a960172bbd6e2a435'] = 'sì';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_b09bbc28bf2f0236af89e8f195b77f43'] = 'id_group non valido';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_523fa30bf3faf569a9d8f5e12634981f'] = 'valore di ritardo non valido';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_d1d198f2cc45f78a4a363a6be6d9b103'] = 'valore di larghezza non valido';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_1e78e1260623bc5142751aee99e3b071'] = 'valore di altezza non valido';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_7e77822e7637952cad00cbfd35e5c578'] = 'Non valido valore del colore di sfondo';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_29f0a01f865107f8ef31f47d04e0f63b'] = 'Il gruppo non ha potuto essere aggiunto.';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_923f7854e5bda70f7fac6a5d95761d8d'] = 'Il gruppo non ha potuto essere aggiornato.';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_ccb2cfd379b6f4b5d3dd360647c50fd3'] = 'Cambio status del gruppo ha avuto successo';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_7f82c65d548588c8d5412463c182e450'] = 'La configurazione non potrebbe essere aggiornato.';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_694267331c7ceb141d81802bd2ea349a'] = 'Gruppo cancellato';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_7e711a7e58d3e2303fb330185c06a6b8'] = 'Modificare lo stato di diapositive ha avuto successo';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_bb6abf21a6c70c5740d93093b5518954'] = 'Far scorrere aggiunto';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_2408a2e1f3548bc838ad6e40c7dad229'] = 'Fare clic su Attivato';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_1073a919db0dd5cecdf9bfa7a27ffa31'] = 'Fare clic su Disabilitato';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_76ad3ac84a702b0497cd6be8e8886d34'] = 'id_slide non valido';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_cdf841e01e10cae6355f72e6838808eb'] = 'La slitta non può essere aggiunto.';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_eb28485b92fbf9201918698245ec6430'] = 'La slitta non può essere aggiornato.';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_472b99d1861b19f82c7647f008f90059'] = 'La diapositiva non poteva essere di eliminazione.';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_6ef1182ba7dc5cbb84637abf08510af9'] = 'duplicato di';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_808aae9efa59b6a31f868ad2f4d7cc56'] = 'La diapositiva non poteva essere duplicato.';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshowgroup_de3c731be5633838089a07179d301d7b'] = 'Giocare';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshowgroup_105b296a83f9c105355403f3332af50f'] = 'Pausa';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshowgroup_d3d2e617335f08df83599665eef8a418'] = 'Vicino';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshowgroup_10ac3d04253ef7e1ddc73e6091c0cd55'] = 'Il prossimo';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshowgroup_dd1f775e443ff3b9a89270713580a51b'] = 'Precedente';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshowstatus_6bbc812b658152e5e40808989ea3e53b'] = 'stessa finestra';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshowstatus_7a115fe2bd8b94ead1550a2da953cf87'] = 'Nuova finestra';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_1b9abf135ccb7ed2f2cd9c155137c351'] = 'Navigare';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_dc30bc0c7914db5918da4263fce93ad2'] = 'Pulire';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_cfb7ed2a89b2febec5c605dd5a0add9d'] = 'Gruppo back-ground';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_434f4ca11924baf76d1992b2cd0d504c'] = 'Fare clic per caricare o selezionare un back-ground';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_3e150eb1b70e449b80a8a216278ddfc1'] = 'anteprima Gruppo';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_d9c974a800466ccd94c42de8fb08dd76'] = 'anteprima Per';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_c9cc8cce247e49bae79f15173ce97354'] = 'Salvare';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_7782518f59cd91a2a712ef5e32ec5f4b'] = 'gestisce Sliders';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_3bf12d4578fb0274f9ff8d4090a97bd2'] = 'Gruppo Export e cursori';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_95143365aa9eab9135674624bcb05a00'] = 'Elimina selezionati Gruppo?';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_f2a6c498fb90ee345d997f888fce3b18'] = 'cancellare';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_56b3014fad57ca689e86cde0d4143cde'] = 'Salva Slider';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_2b946b08a5f3b98a946605e450789621'] = 'Tipo Video';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_bafd7322c6e97d25b6299b5d6fe8920b'] = 'No';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_970cfba66b8380fb97b742e4571356c6'] = 'Youtube';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_15db599e0119be476d71bfc1fda72217'] = 'Vimeo';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_3e78e8704c6152536ec480501e9f4868'] = 'Video ID';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_50ca24c05b4dafa2ef236d15ae66a001'] = 'Riproduzione automatica';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_93cba07454f06a4a960172bbd6e2a435'] = 'sì';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_ddb9370afdc2b94184e6940840efe690'] = 'inserire classi nuove o selezionare per la commutazione contenuti attraverso i punti di interruzione viewport';
|
||||
$_MODULE['<{leoslideshow}prestashop>form_9c368b768277accfb3b2bc50ac35a884'] = 'Seleziona sfondo cursore';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_1908624a0bca678cd26b99bfd405324e'] = 'Dimensione del file';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_f2a6c498fb90ee345d997f888fce3b18'] = 'cancellare';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_3fcbe6bd34e9279ec2c7b13adf7e4095'] = 'Hai raggiunto il limite (%s) del file da caricare, si prega di rimuovere i file per continuare a caricare';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_d39ec66f08507e26fe86aa5325d070df'] = 'Aggiungere i file';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_58be4de806253a6ee411b6c0c99296c7'] = 'Aggiungi file';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_c7de86f69db264c3950d8ae46ed2e33f'] = 'Caricare files';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_ffeed24e8e4fd763c1d0d02c6e5d6e15'] = 'Caricare un file';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_8077d1c510a7f18c7e9b6057f61c1c6d'] = 'Order By Immagine';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_49ee3087348e8d44e1feda1917443987'] = 'Nome';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_1b7bb88b3317fe166424fa9e7535e1a9'] = 'nome DESC';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_80ccccd39ce6134340fccbf76eb379ae'] = 'Data modificata';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_386133d672ac6450c029501cc023bf21'] = 'Datdi Modified';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_009044df8c709bfdefa065ae7fa733e1'] = 'È possibile caricare un massimo di file %s';
|
||||
$_MODULE['<{leoslideshow}prestashop>ajax_b21f085d08623fc7a5a9da204cc66c8c'] = 'Rimuovi il file';
|
||||
$_MODULE['<{leoslideshow}prestashop>imagemanager_0478d675b6c6d55451b48531ef7e41dd'] = 'immagini Responsabile';
|
||||
$_MODULE['<{leoslideshow}prestashop>imagemanager_fb2ea703b13d059f6b7ea5da806021df'] = 'Formato:';
|
||||
$_MODULE['<{leoslideshow}prestashop>imagemanager_b908c2f34052b5276e0bf50f0e042211'] = 'Dimensione del file:';
|
||||
$_MODULE['<{leoslideshow}prestashop>imagemanager_2f972dbb48435d9b8087d7e3c22daa09'] = 'MB max.';
|
||||
$_MODULE['<{leoslideshow}prestashop>imagemanager_0c3e7c5e60811c948a6a3f3f764e1a26'] = 'Clicca per visualizzare';
|
||||
$_MODULE['<{leoslideshow}prestashop>imagemanager_4351cfebe4b61d8aa5efa1d020710005'] = 'vista';
|
||||
$_MODULE['<{leoslideshow}prestashop>imagemanager_00b33d7acfa6a3da639e51dade102df3'] = 'Elimina immagine selezionata?';
|
||||
$_MODULE['<{leoslideshow}prestashop>imagemanager_f2a6c498fb90ee345d997f888fce3b18'] = 'cancellare';
|
||||
$_MODULE['<{leoslideshow}prestashop>imagemanager_b82f932f209c2fe588c3290527ead490'] = 'Se non è possibile aggiornare immagine. Si prega di impostare permessi 755 per la cartella';
|
||||
$_MODULE['<{leoslideshow}prestashop>imagemanager_26de4d3e04796d6486136c5b8203c3ac'] = 'Carica un\'immagine';
|
||||
$_MODULE['<{leoslideshow}prestashop>typo_10de4bc81f754b19b0d27246a0589c05'] = 'NOTA';
|
||||
$_MODULE['<{leoslideshow}prestashop>typo_6eb01d95c679674a59feb31d8dc5e59a'] = 'Questi Typos Di seguito sono sempre nel file';
|
||||
$_MODULE['<{leoslideshow}prestashop>typo_6befab5735b45621bb2a51ea174308b2'] = 'è possibile aprire questo file e aggiungere il vostro stile css e sarà elencato qui !!!';
|
||||
$_MODULE['<{leoslideshow}prestashop>typo_52b3c15c0538e8ab2978d3c52f65fcb4'] = 'Per selezionare uno, fare clic sul testo di ogni Typo';
|
||||
$_MODULE['<{leoslideshow}prestashop>typo_7f1b7ac0737d17ec2abe392a8fe374ca'] = 'Utilizzare tale voce Typo';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_de3c731be5633838089a07179d301d7b'] = 'Giocare';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_105b296a83f9c105355403f3332af50f'] = 'Pausa';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_d3d2e617335f08df83599665eef8a418'] = 'Vicino';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_10ac3d04253ef7e1ddc73e6091c0cd55'] = 'Il prossimo';
|
||||
$_MODULE['<{leoslideshow}prestashop>leoslideshow_dd1f775e443ff3b9a89270713580a51b'] = 'Precedente';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_75267df40e119a3e6174762f493f9245'] = 'Vuoi copiare CSS, JS cartella per cartella del tema attuale?';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_6622d333c33cfaf951fcf592c5834c79'] = 'Copia CSS, JS a tema';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_2b432d7a07f4e34f5f350577e6ad7502'] = 'List Group';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_5a048522c38f75873335b2af3a5579d1'] = 'Clicca per vedere guida di configurazione';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_28974c2c793e780427dfb571b26443e6'] = 'Nome del gruppo';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_ec53a8c4f07baed5d8825072c89799be'] = 'Stato';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_d1ecdda3b9584ecacc31b4ef6a9a1e9b'] = 'Aggiungere un nuovo gruppo';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_379d5e7e8c9f09972e0915714abad8d3'] = 'Modifica gruppo';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_7dce122004969d56ae2e0245cb754d35'] = 'Modifica';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_c46942232f660ea828d88c66f5612c88'] = 'editting';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_95143365aa9eab9135674624bcb05a00'] = 'Elimina selezionati Gruppo?';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_f2a6c498fb90ee345d997f888fce3b18'] = 'cancellare';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_d9c974a800466ccd94c42de8fb08dd76'] = 'anteprima Per';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_3e150eb1b70e449b80a8a216278ddfc1'] = 'anteprima Gruppo';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_3bf12d4578fb0274f9ff8d4090a97bd2'] = 'Gruppo Export e cursori';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_4aaa9f1d1cba55f447323dfd66dac4d6'] = 'Corretto Content Group';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_3721cd84044cd53000f32c20814963ad'] = 'lingua Copia di default ad altri';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_7782518f59cd91a2a712ef5e32ec5f4b'] = 'gestisce Sliders';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_062154b1e6f62a7e8de36088ddba1077'] = 'Gruppo Import';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_92fbf0e5d97b8afd7e73126b52bdc4bb'] = 'Scegliere un file';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_4ba17c9e4d2a1225b21ca1d1516c0a8e'] = 'Si prega di caricare * solo .txt';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_ddd783edcc555eebd5f92a2c3579a183'] = 'gruppo Overide o no:';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_93cba07454f06a4a960172bbd6e2a435'] = 'sì';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_bafd7322c6e97d25b6299b5d6fe8920b'] = 'No';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_72d6d7a1885885bb55a565fd1070581a'] = 'Importare';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_dfed52002899e6e3584d6f7ce7a798b8'] = 'Sei sicuro di voler sovrascrivere gruppo?';
|
||||
$_MODULE['<{leoslideshow}prestashop>group_list_e57706046ca57c358dc156fdf9f05863'] = 'Si prega di caricare file txt';
|
||||
$_MODULE['<{leoslideshow}prestashop>panel_c54f9f209ed8fb4683e723daa4955377'] = 'Impostazioni generali';
|
||||
$_MODULE['<{leoslideshow}prestashop>panel_2d01f00b9941ebb47d2b1533f728eacf'] = 'immagine Impostazione';
|
||||
$_MODULE['<{leoslideshow}prestashop>panel_55e8a668d10aa67b9acfdaf6909e013b'] = 'Impostazione CSS';
|
||||
$_MODULE['<{leoslideshow}prestashop>panel_adcad7ce2aca48a7f88414e50da147c7'] = 'Navigator e Direzione';
|
||||
$_MODULE['<{leoslideshow}prestashop>panel_432cd4e9c4f26cf4c0a817a63cc47a6b'] = 'Opzioni timer';
|
||||
$_MODULE['<{leoslideshow}prestashop>panel_d6b6b668dbca9d4fe774bb654226ebe3'] = 'Animazione';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_c82324ebbcea34f55627a897b37190e3'] = 'lista diapositive';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_c5f09f37e1e182ec28fa64732d9b712c'] = 'Torna';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_c46942232f660ea828d88c66f5612c88'] = 'editting';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_004bf6c9a40003140292e97330236c53'] = 'Azione';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_ab6fc089945137346f2b97f134193669'] = 'Clicca per modificare';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_a95aab06fa9a0112d727ca07f65c399e'] = 'Sei sicuro di voler eliminare questo dispositivo di scorrimento?';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_38e56b404a51696528d84bfcb42e9c2a'] = 'Elimina questo dispositivo di scorrimento';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_1170a3fe82829410667a35d6ca4d38ee'] = 'Sei sicuro di voler duplicare questo cursore?';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_0437deaeea8ac07f1733a45cd8ff2acf'] = 'Duplicate questo cursore';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_31fde7b05ac8952dacf4af8a704074ec'] = 'Anteprima';
|
||||
$_MODULE['<{leoslideshow}prestashop>slide_list_d9c974a800466ccd94c42de8fb08dd76'] = 'anteprima Per';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_56b3014fad57ca689e86cde0d4143cde'] = 'Salva Slider';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_d151b73738a19260cd1bcb51dbbf441a'] = 'Anteprima Questo Slider';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_807fd2f402e8258ad4ea79b4a7c1320b'] = 'Strumenti d\'azione';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_b9c49611cfda3259a2b837b39489e650'] = 'Aggiungi immagine';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_a1abe8ec1de81fdd62fb9952931bd692'] = 'Aggiungi video';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_70bd09c0bb64f38d33a139ac12d9e052'] = 'Aggiungi testo';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_f2a6c498fb90ee345d997f888fce3b18'] = 'cancellare';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_1298798308dfb56829d42c252adbd973'] = 'Sfondo';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_1fb35365025e2d5bc236e336abb4a4de'] = 'Imposta immagine di sfondo';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_1063e38cb53d94d386f21227fcd84717'] = 'Rimuovere';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_75e7422f2fe253fc69d3f6c148d197ee'] = 'Colore di sfondo';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_2b946b08a5f3b98a946605e450789621'] = 'Tipo Video';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_3e78e8704c6152536ec480501e9f4868'] = 'Video ID';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_3196f674ac1ce6b9c30c73afca17e6e2'] = 'per esempio YouTube';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_eec6c4bdbd339edf8cbea68becb85244'] = 'Altezza';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_32954654ac8fe66a1d09be19001de2d4'] = 'Larghezza';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_403825785a196c752a3a33f9c2b3e2e3'] = 'Trova Video';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_4fd49e14c4b3bdc72bf23ae86d25861e'] = 'Utilizzare questo video';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_d3d2e617335f08df83599665eef8a418'] = 'Vicino';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_7c9a4efd10f85664107ec6c632ce2c54'] = 'strato Collection';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_5e04afd5c9dfad5d70719af678409b56'] = 'Modifica layer dati';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_5f06cfc98e39dc14d2e8bc10a1a32558'] = 'stile di classe';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_ee552178ecab509c3b2dc4be12d2b062'] = 'Inserire Typo';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_19372730cd500fdc6454525757673875'] = 'Didascalia Html';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_4fb2981861d56dce54c0d1e6d14a7c1d'] = 'Consentire Codice Inserisci html';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_9b1d0abb705608d037a11c86fc75a1f1'] = 'dimensione del font';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_8903861290617267b361478ab7f16f31'] = 'Colore del testo';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_06b9281e396db002010bde1de57262eb'] = 'Auto';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_97e7c9a7d06eac006a28bf05467fcc8b'] = 'collegamento';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_aad575df89fbd4d7503053c15de80757'] = 'aprire in';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_52f5e0bc3859bc5f5e25130b6c7e8881'] = 'Posizione';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_a4ffdcf0dc1f31b9acaf295d75b51d00'] = 'Superiore';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_945d5e233cf7d6240f6b783b36a374ff'] = 'Sinistra';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_afedf9afee367f51f98d7cf030c976a6'] = 'Transizione';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_04e0385c10aefee8e4681617d2f3ef40'] = 'dissolvenza';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_61f5bf1c77069ece391f35e27583675d'] = 'pulire sinistra';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_b9eabe4385c91d66ad87ddde44fd782a'] = 'pulire destro';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_e3c5263f63e757fa13252802790c44ec'] = 'Wipe Top';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_443f13b9f4f56b65816a2f648a571781'] = 'pulire inferiore';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_b7b90e3c3e37f052204b3172e1b8fa9c'] = 'Expand sinistra';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_a71cf38a27ad237be24a28ac9493daa3'] = 'Expand destro';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_6af2757e84f1dafd6bc8edb78acc4339'] = 'Expand Top';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_c5007443ea70e4a3539fb6dc2df538bd'] = 'Expand inferiore';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_ed69308e766971217d568137ac305339'] = 'Gestione immagine';
|
||||
$_MODULE['<{leoslideshow}prestashop>slider_editor_d56b378daee3483c4354826b5a34f883'] = 'Si prega di titolo di ingresso del dispositivo di scorrimento per tutte le lingue';
|
||||
39
modules/leoslideshow/views/css/admin/admincontroller.css
Normal file
@@ -0,0 +1,39 @@
|
||||
.adminleoslideshow #header, .adminleoslideshow #footer, .adminleoslideshow #nav-sidebar, .page-head{
|
||||
display: none;
|
||||
}
|
||||
.page-sidebar #content, .adminleoslideshow #main{margin: 0;padding: 0}
|
||||
#list-imgs {
|
||||
padding-left: 0;
|
||||
padding-bottom: 1px;
|
||||
margin-bottom: 20px;
|
||||
list-style: none;
|
||||
overflow: hidden;
|
||||
}
|
||||
#list-imgs li a{
|
||||
font-size: 11px
|
||||
}
|
||||
#list-imgs li {
|
||||
float: left;
|
||||
width: 20%;
|
||||
height: 115px;
|
||||
padding: 10px 5px;
|
||||
margin: 0 -1px -1px 0;
|
||||
font-size: 12px;
|
||||
line-height: 1.4;
|
||||
text-align: center;
|
||||
border: 1px solid #ddd;
|
||||
}
|
||||
.img-row{
|
||||
overflow: hidden;
|
||||
height: 80px;
|
||||
}
|
||||
.typos{
|
||||
padding: 10px
|
||||
}
|
||||
.typos-wrap .typo {
|
||||
position: relative;
|
||||
min-height: 60px;
|
||||
}
|
||||
.typos-wrap .typo-big{
|
||||
min-height: 123px
|
||||
}
|
||||
35
modules/leoslideshow/views/css/admin/index.php
Normal file
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2014 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-2014 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;
|
||||
370
modules/leoslideshow/views/css/admin/style.css
Normal file
@@ -0,0 +1,370 @@
|
||||
.ui-dialog{
|
||||
z-index: 99999;
|
||||
}
|
||||
.ui-dialog .ui-dialog-titlebar-close span{
|
||||
margin:-8px !important;
|
||||
}
|
||||
#slides li li{
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.clearfix:after {
|
||||
content: ".";
|
||||
display: block;
|
||||
clear: both;
|
||||
visibility: hidden;
|
||||
line-height: 0;
|
||||
height: 0;
|
||||
}
|
||||
.nullimg{display: none}
|
||||
|
||||
.clearfix {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
html[xmlns] .clearfix {
|
||||
display: block;
|
||||
}
|
||||
|
||||
* html .clearfix {
|
||||
height: 1%;
|
||||
}
|
||||
|
||||
h3 span { color:#FAA732;}
|
||||
|
||||
.box > .heading{
|
||||
-webkit-border-radius: 7px 7px 7px 7px;
|
||||
-moz-border-radius: 7px 7px 7px 7px;
|
||||
-khtml-border-radius: 7px 7px 7px 7px;
|
||||
border-radius: 7px 7px 7px 7px;
|
||||
}
|
||||
|
||||
.slider-params-wrap{
|
||||
background: #f9f9f9;
|
||||
padding: 12px;
|
||||
clear: both;
|
||||
}
|
||||
.page-content{ padding:30px 0; }
|
||||
.pull-right{ float: right;}
|
||||
/**
|
||||
* Group Page Name
|
||||
*/
|
||||
|
||||
.groups {
|
||||
width: 300px; float: left;
|
||||
}
|
||||
.group-form{ overflow: hidden; float: left; min-width: 60%; }
|
||||
.groups ul{padding-left: 18px }
|
||||
.groups ul li { font-weight: bold; padding: 6px 0}
|
||||
.groups ul li .active{ color: #5BB75B }
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
.buttons > div{ float: left; padding: 8px 12px; background: #000; color: #FFF}
|
||||
/****/
|
||||
.slider-foot .layer-collection-wrapper{ float: right; }
|
||||
.slider-foot .layer-form {overflow: hidden;}
|
||||
|
||||
div.layer-form {
|
||||
background-color: #FFFFFF;
|
||||
border: 1px solid #DDDDDD;
|
||||
margin: 10px 0;
|
||||
padding: 11px;
|
||||
float: left; width: 45%
|
||||
}
|
||||
|
||||
/*******/
|
||||
.slider-layers{margin-top: 10px;}
|
||||
.slider-toolbar{
|
||||
overflow: hidden;
|
||||
background: #F5F5F5;
|
||||
width: 70px;
|
||||
padding: 12px 6px;
|
||||
border: 1px solid rgba(0, 0, 0, 0.15);
|
||||
font-size: 10px;
|
||||
margin: 109px auto 0;
|
||||
-webkit-border-radius: 6px;
|
||||
-moz-border-radius: 6px;
|
||||
border-radius: 6px;
|
||||
-webkit-box-shadow: 0 1px 4px rgba(0,0,0,.065);
|
||||
-moz-box-shadow: 0 1px 4px rgba(0,0,0,.065);
|
||||
box-shadow: 0 1px 4px rgba(0,0,0,.065);
|
||||
}
|
||||
.slider-toolbar ul{ padding: 0; margin: 0}
|
||||
.slider-toolbar li{
|
||||
display: block;
|
||||
|
||||
margin: 0 0 -1px;
|
||||
padding: 8px 1px;
|
||||
text-align: center;
|
||||
border-bottom: 1px solid #f3f3f3;
|
||||
|
||||
display: block;
|
||||
margin: 2px;
|
||||
|
||||
background: #3A87AD;
|
||||
color: #FFF;
|
||||
font-size: 11px;
|
||||
cursor: hand; cursor: pointer;
|
||||
border-radius: 10px 10px 10px 10px; -moz-transition:all 0.5s
|
||||
}
|
||||
.slider-toolbar li:hover{ background: #1BA6E5;-moz-transition:all 0.5s; }
|
||||
.slider-toolbar .icon{
|
||||
height: 35px;
|
||||
margin: 0 auto;
|
||||
|
||||
width: 35px;
|
||||
|
||||
}
|
||||
.slider-toolbar .icon-image{
|
||||
background: url("../../img/admin/image.png") no-repeat scroll left 0;
|
||||
|
||||
}
|
||||
.slider-toolbar .icon-video{
|
||||
background: url("../../img/admin/video.png") no-repeat scroll left 0;
|
||||
}
|
||||
.slider-toolbar .icon-text{
|
||||
background: url("../../img/admin/text.png") no-repeat scroll left 0;
|
||||
}
|
||||
.slider-toolbar .icon-delete{
|
||||
background: url("../../img/admin/delete.png") no-repeat scroll left 0;
|
||||
}
|
||||
.btn-delete{ padding-top:20px;color: red;}
|
||||
.slider-toolbar h4{ text-align: center; font-size: 11px; }
|
||||
|
||||
.slider-editor-wrap{
|
||||
position: relative;
|
||||
width: 980px;
|
||||
height: 400px;
|
||||
border: solid 1px #888;
|
||||
}
|
||||
.slider-layers .simage{
|
||||
overflow: hidden;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.slider-layers .slider-editor {
|
||||
top: 0;
|
||||
right: 0;
|
||||
position: absolute;
|
||||
overflow: hidden;
|
||||
width: 980px;
|
||||
height: 400px;
|
||||
}
|
||||
|
||||
|
||||
.dialog-video{
|
||||
position: absolute;
|
||||
top: 80px;
|
||||
background: #FFF;
|
||||
z-index: 99999;
|
||||
left: 120px;
|
||||
border: solid 1px #000;
|
||||
padding: 12px 20px;
|
||||
display: none;
|
||||
min-width: 500px;
|
||||
min-height: 300px;
|
||||
max-width: 680px;
|
||||
display: none ;
|
||||
}
|
||||
/**********************/
|
||||
.slider-editor {
|
||||
|
||||
}
|
||||
.slider-editor .in-active{
|
||||
visibility: hidden;
|
||||
}
|
||||
.slider-editor .draggable-item{
|
||||
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
left: 10px;
|
||||
padding:0;
|
||||
|
||||
cursor: hand;cursor: pointer;
|
||||
|
||||
}
|
||||
|
||||
.slider-editor .layer-active{
|
||||
box-shadow: 1px 1px 2px 1px rgba(217,110,74,0.45), 1px 1px 5px 2px rgba(221,221,221,1), 1px 1px 10px 5px rgba(221,221,221,1);
|
||||
-webkit-box-shadow: 1px 1px 2px 1px rgba(217,110,74,0.45), 1px 1px 5px 2px rgba(221,221,221,1), 1px 1px 10px 5px rgba(221,221,221,1);
|
||||
-moz-box-shadow: 1px 1px 2px 1px rgba(217,110,74,0.45), 1px 1px 5px 2px rgba(221,221,221,1), 1px 1px 10px 5px rgba(221,221,221,1);
|
||||
|
||||
}
|
||||
.layers-wrapper{ position: relative; }
|
||||
.slider-foot{position: relative; }
|
||||
/****/
|
||||
#layer-form{ display: none; }
|
||||
.layer-form {
|
||||
minx-width: 500px;
|
||||
|
||||
padding: 12px;
|
||||
margin:12px 0;
|
||||
background-color: #FFF;
|
||||
border: 1px solid #DDDDDD;
|
||||
}
|
||||
.layer-form table.form tr td{ font-size: 10px }
|
||||
.layer-form table.form tr > td:first-child{
|
||||
width: 70px;
|
||||
font-size: 100%;
|
||||
}
|
||||
.layer-form textarea{resize: vertical}
|
||||
.slider-form label{
|
||||
margin-left: 12px;
|
||||
}
|
||||
/****/
|
||||
.layer-collection-wrapper { width: 48%; padding: 15px 12px 30px; margin-left: 12px; margin-top: 12px; border: 1px solid #DDDDDD }
|
||||
.layer-collection .layer-active{ background: #f6f6f6; border: 1px solid #ccc }
|
||||
.layer-index{ background: #fff; padding: 5px 8px; margin-bottom: 1px; cursor:hand; cursor: pointer;
|
||||
border: solid 1px #eee; overflow: hidden;
|
||||
}
|
||||
|
||||
.layer-index span{
|
||||
margin: 0 5px;
|
||||
padding: 5px 12px;
|
||||
}
|
||||
.layer-index .layer-index-caption{
|
||||
display: block;
|
||||
float: left;
|
||||
font-size: 12px;
|
||||
height: 24px;
|
||||
overflow: hidden;
|
||||
width: 235px;
|
||||
}
|
||||
.layer-index .i-no{ background:#D9EDF7; margin-left: 0; display: block; float: left;}
|
||||
.layer-index .status { display: block; float: right; background: #F2DEDE;}
|
||||
.layer-index .input-time{ float: right; }
|
||||
.layer-index .in-active{ background: #ccc }
|
||||
|
||||
.slider-wrap { position: relative; padding:6px 0 8px;}
|
||||
.slider-wrap .t-start, .slider-wrap .t-end { position: absolute; bottom:4px ; left:0; z-index: 10;font-size: 9px }
|
||||
.slider-wrap .t-end { left: auto; right: 0}
|
||||
.layer-index .slider-timing{ display: block; clear: both; height: 5px; width: 80%; margin:0 auto; }
|
||||
|
||||
.layer-index .ui-slider .ui-slider-handle { width: 8px; top: -7px; }
|
||||
|
||||
.layer-content {}
|
||||
.layer-content .caption-layer, .layer-content .btn-change-img,.layer-content .btn-change-video{
|
||||
display: none;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
font-size: 10px;
|
||||
background: red; padding: 3px 5px;
|
||||
background-color: #F2DEDE
|
||||
}
|
||||
|
||||
.layer-content .caption-layer{ top: 0; }
|
||||
.layer-content .btn-change-img, .layer-content .btn-change-video{ bottom: 0;}
|
||||
|
||||
.layer-content:hover .caption-layer, .layer-content:hover .btn-change-img , .layer-content:hover .btn-change-video{
|
||||
display: block;
|
||||
}
|
||||
.layer_video .content-sample{ width: 190px; height: 190px; background: green;}
|
||||
.layer_image .content-sample{ width: 190px; height: 190px; background: #888;}
|
||||
|
||||
.buttons .pull-right {float:right}
|
||||
.buttons .btn {
|
||||
background: none repeat scroll 0 0 #003A88;
|
||||
border-radius: 10px 10px 10px 10px;
|
||||
color: #FFFFFF;
|
||||
display: inline-block;
|
||||
padding: 10px 15px;
|
||||
text-decoration: none;
|
||||
margin-right: 12px;
|
||||
font-weight: bold;
|
||||
font-size: 11px; text-align: center;
|
||||
cursor: pointer;cursor: hand; border:#f3f3f3 solid 3px;
|
||||
}
|
||||
td .buttons .btn{ padding:5px 12px; font-weight: normal; margin:0;}
|
||||
.buttons .grey{ background: #5BB75B; color:#fff }
|
||||
.buttons .orange {
|
||||
background: #FAA732;
|
||||
}
|
||||
.buttons .btn:hover{ border:#CCC solid 3px;}
|
||||
|
||||
/*
|
||||
*
|
||||
*/
|
||||
.group-sliders > div{ display: block; width: 200px; height: 115px; overflow: hidden; background: #CCC; float:left; margin: 5px 8px; position: relative; }
|
||||
.group-sliders > div div{ font-size: 11px; padding:3px 5px; position: absolute;bottom: 0; left: 0; }
|
||||
.group-sliders > div a.image { display: block; width: 100%;height: 100%}
|
||||
.slider-item.active{background: #999}
|
||||
.new-slider-item a { display: block;width: 100%; height: 100%; background: url(../../img/admin/plus_orange.png) no-repeat center center #888; }
|
||||
.new-slider-item div{position: absolute;bottom: 0;left: 0; color: #f3f3f3; padding:12px; }
|
||||
.slider-status,.slider-clone, .slider-delete{
|
||||
position: absolute; top: 6px; left: 6px; display: block; width: 20px; height: 20px; background: red; overflow: hidden;text-indent: -999em;
|
||||
}
|
||||
.slider-clone{left: auto;right:6px;background: url(../../img/admin/copy.png) no-repeat center center }
|
||||
.slider-delete{left: auto;right:36px;background: url(../../img/admin/delete.gif) no-repeat center center }
|
||||
|
||||
.slider-status-off{ background: #000 }
|
||||
.upload-img-form{
|
||||
border: 1px solid #EEEEEE;
|
||||
display: inline-block;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.action-simage{position: absolute;z-index: 100;top: -18px}
|
||||
.action-simage a{color: red;}
|
||||
.back-ground{margin-bottom: 20px;border:1px solid #DDDDDD;padding: 10px;position: relative;height: 50px}
|
||||
.back-ground lable{line-height: 24px}
|
||||
.title-back{font-weight: bold;left: -1px;position: absolute;top: -20px;}
|
||||
.text-attr td{padding: 2px}
|
||||
|
||||
.leo-width-val{float:left;width: 45px}
|
||||
.leo-add-column,.leo-w-option, .leo-change-width{height: 30px}
|
||||
.leo-width{width: 328px;float: left;height: 17px;background: url(../../img/admin/colsize.png);background-position:-3px -3px}
|
||||
ul.leo-col-class li{display: inline-block;padding: 5px 10px}
|
||||
|
||||
.leo-w-2 { background-position:-3px -255px }
|
||||
.leo-w-2-4 { background-position:-3px -234px }
|
||||
.leo-w-3 { background-position:-3px -213px }
|
||||
.leo-w-4 { background-position:-3px -192px }
|
||||
.leo-w-4-8 { background-position:-3px -171px }
|
||||
.leo-w-6{background-position:-3px -129px}
|
||||
.leo-w-7-2 { background-position:-3px -108px }
|
||||
.leo-w-8 { background-position:-3px -87px }
|
||||
.leo-w-9 { background-position:-3px -66px }
|
||||
.leo-w-9-6 { background-position:-3px -45px }
|
||||
.leo-w-10 { background-position:-3px -24px }
|
||||
|
||||
/***************DONGND:: CSS for tab config BEGIN *******************/
|
||||
.leoslideshow-tablist a:hover, .leoslideshow-tablist li.active a {
|
||||
border-bottom: medium none !important;
|
||||
border-top: 3px solid #25b9d7 !important;
|
||||
}
|
||||
|
||||
.leoslideshow-tablist a:focus {
|
||||
border-bottom: medium none !important;
|
||||
border-top: 3px solid #25b9d7 !important;
|
||||
}
|
||||
|
||||
#slideshowgeneralsetting .panel {
|
||||
display: none;
|
||||
}
|
||||
#slideshowgeneralsetting .panel.active {
|
||||
display: block;
|
||||
}
|
||||
|
||||
#slideshowgeneralsetting .panel {
|
||||
border-radius: 0 0 5px 5px !important;
|
||||
}
|
||||
.nav-tabs a:focus {
|
||||
outline: medium none;
|
||||
}
|
||||
|
||||
#slides li
|
||||
{
|
||||
list-style: none;
|
||||
margin: 0 0 4px 0;
|
||||
padding: 10px;
|
||||
background-color: #F4E6C9;
|
||||
border: #CCCCCC solid 1px;
|
||||
color:#000;
|
||||
}
|
||||
/***************DONGND:: CSS for tab config END *******************/
|
||||
|
||||
|
||||
35
modules/leoslideshow/views/css/iView/index.php
Normal file
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2014 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-2014 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;
|
||||
146
modules/leoslideshow/views/css/iView/iview.css
Normal file
@@ -0,0 +1,146 @@
|
||||
/* The slider */
|
||||
.iviewSlider {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* The timer in the Slider */
|
||||
.iview-timer {
|
||||
position: absolute;
|
||||
z-index: 100;
|
||||
border-radius: 5px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.iview-timer div {
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
/* The Preloader in the Slider */
|
||||
.iview-preloader {
|
||||
position: absolute;
|
||||
z-index: 1000;
|
||||
-webkit-border-radius: 3px;
|
||||
-moz-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
border: #000 1px solid;
|
||||
padding: 1px;
|
||||
width: 100px;
|
||||
height: 3px;
|
||||
}
|
||||
.iview-preloader div {
|
||||
float: left;
|
||||
-webkit-border-radius: 2px;
|
||||
-moz-border-radius: 2px;
|
||||
border-radius: 2px;
|
||||
height: 3px;
|
||||
background: #000;
|
||||
width: 0px;
|
||||
}
|
||||
|
||||
/* The strips and boxes in the Slider */
|
||||
.iview-strip {
|
||||
display:block;
|
||||
position:absolute;
|
||||
z-index:5;
|
||||
}
|
||||
.iview-block {
|
||||
display:block;
|
||||
position:absolute;
|
||||
z-index:5;
|
||||
}
|
||||
|
||||
/* Direction nav styles (e.g. Next & Prev) */
|
||||
.iview-directionNav a {
|
||||
position:absolute;
|
||||
top:45%;
|
||||
z-index:9;
|
||||
cursor:pointer;
|
||||
}
|
||||
.iview-prevNav {
|
||||
left:0px;
|
||||
}
|
||||
.iview-nextNav {
|
||||
right:0px;
|
||||
}
|
||||
|
||||
/* Control nav styles (e.g. 1,2,3...) */
|
||||
.iview-controlNav {
|
||||
position:absolute;
|
||||
z-index:9;
|
||||
}
|
||||
.iview-controlNav a {
|
||||
z-index:9;
|
||||
cursor:pointer;
|
||||
}
|
||||
.iview-controlNav a.active {
|
||||
font-weight:bold;
|
||||
}
|
||||
.iview-controlNav .iview-items ul {
|
||||
list-style: none;
|
||||
}
|
||||
.iview-controlNav .iview-items ul li {
|
||||
display: inline;
|
||||
position: relative;
|
||||
}
|
||||
.iview-controlNav .iview-tooltip {
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
/* The captions in the Slider */
|
||||
.tp-caption {
|
||||
position:absolute;
|
||||
z-index:4;
|
||||
overflow: hidden;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
/* The video show in the Slider */
|
||||
.iview-video-show {
|
||||
background: #000;
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: 101;
|
||||
}
|
||||
.iview-video-show .iview-video-container {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
.iview-video-show .iview-video-container a.iview-video-close {
|
||||
position: absolute;
|
||||
right: 10px;
|
||||
top: 10px;
|
||||
background: #222;
|
||||
color: #FFF;
|
||||
height: 20px;
|
||||
width: 20px;
|
||||
text-align: center;
|
||||
line-height: 29px;
|
||||
font-size: 22px;
|
||||
font-weight: bold;
|
||||
overflow: hidden;
|
||||
-webkit-border-radius: 15px;
|
||||
-moz-border-radius: 15px;
|
||||
border-radius: 15px;
|
||||
}
|
||||
.iview-video-show .iview-video-container a.iview-video-close:hover {
|
||||
background: #444;
|
||||
}
|
||||
|
||||
/********************DONGND:: CSS for preview BEGIN******************************/
|
||||
#module-leoslideshow-preview .content-only
|
||||
{
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
#module-leoslideshow-preview .container
|
||||
{
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#module-leoslideshow-preview .leo-paneltool
|
||||
{
|
||||
display: none;
|
||||
}
|
||||
/********************DONGND:: CSS for preview END******************************/
|
||||
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2014 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-2014 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;
|
||||
201
modules/leoslideshow/views/css/iView/skin_1_regular/style.css
Normal file
@@ -0,0 +1,201 @@
|
||||
.container {
|
||||
display: block;
|
||||
width: 910px;
|
||||
margin: 0px auto;
|
||||
}
|
||||
|
||||
.iview {
|
||||
display: block;
|
||||
width: 900px;
|
||||
height: 500px;
|
||||
background: #000;
|
||||
background: rgba(0, 0, 0, 0.7);
|
||||
padding: 5px;
|
||||
border-radius: 5px;
|
||||
position: relative;
|
||||
-webkit-box-shadow: 0 38px 30px -18px rgba(0, 0, 0, 0.5);
|
||||
-moz-box-shadow: 0 38px 30px -18px rgba(0, 0, 0, 0.5);
|
||||
box-shadow: 0 38px 30px -18px rgba(0, 0, 0, 0.5);
|
||||
margin: 40px auto;
|
||||
}
|
||||
|
||||
.iview .iviewSlider {
|
||||
display: block;
|
||||
width: 900px;
|
||||
height: 500px;
|
||||
overflow: hidden;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.iview-controlNav {
|
||||
position: absolute;
|
||||
bottom: 30px;
|
||||
left: 347px;
|
||||
height: 44px;
|
||||
}
|
||||
|
||||
.iview-controlNav a {
|
||||
text-indent: -9999px;
|
||||
}
|
||||
|
||||
.iview-controlNav a.iview-controlPrevNav {
|
||||
float: left;
|
||||
width: 50px;
|
||||
height: 44px;
|
||||
background: url('../../../img/iView/slider-controls.png') no-repeat;
|
||||
}
|
||||
|
||||
.iview-controlNav a.iview-controlNextNav {
|
||||
float: left;
|
||||
width: 50px;
|
||||
height: 44px;
|
||||
background: url('../../../img/iView/slider-controls.png') no-repeat -50px 0px;
|
||||
}
|
||||
|
||||
.iview-controlNav div.iview-items {
|
||||
float: left;
|
||||
padding: 0px 10px 0px 10px;
|
||||
height: 44px;
|
||||
background: url('../../../img/iView/nav-bg.png');
|
||||
}
|
||||
|
||||
.iview-controlNav a.iview-control {
|
||||
padding: 0px;
|
||||
float: left;
|
||||
width: 11px;
|
||||
height: 12px;
|
||||
background: url('../../../img/iView/bullets.png') no-repeat;
|
||||
line-height: 0px;
|
||||
}
|
||||
|
||||
.iview-controlNav a.iview-control.active {
|
||||
background-position: 0px -12px;
|
||||
}
|
||||
|
||||
.tp-caption {
|
||||
background: url('../../../img/iView/caption-bg.png');
|
||||
color: #FFF;
|
||||
border-radius: 3px;
|
||||
padding: 10px 15px;
|
||||
font-family: Verdana;
|
||||
font-size: 12px;
|
||||
text-shadow: #000 1px 1px 0px;
|
||||
}
|
||||
|
||||
.tp-caption.caption1 {
|
||||
font-size: 36px;
|
||||
font-weight: bold;
|
||||
height: 45px;
|
||||
}
|
||||
|
||||
.tp-caption.caption2 {
|
||||
background: #00b4ff;
|
||||
font-size: 36px;
|
||||
font-weight: bold;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
.tp-caption.caption3 {
|
||||
background: #FFF;
|
||||
color: #000;
|
||||
font-size: 26px;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
.tp-caption.caption4 {
|
||||
font-size: 22px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.tp-caption.caption5 {
|
||||
background: #c4302b;
|
||||
box-shadow: rgba(0, 0, 0, 0.7) 10px 10px 15px 0px;
|
||||
font-size: 20px;
|
||||
font-weight: bold;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
.tp-caption.caption6 {
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.tp-caption.caption7 {
|
||||
text-align: left;
|
||||
font-size: 11px;
|
||||
color: #888;
|
||||
border-radius: 0px;
|
||||
}
|
||||
|
||||
.tp-caption.caption7 div {
|
||||
line-height: 200%;
|
||||
}
|
||||
|
||||
.tp-caption.caption7 h3 {
|
||||
margin-bottom: 20px;
|
||||
color: #FFF;
|
||||
}
|
||||
|
||||
.tp-caption.blackcaption {
|
||||
background: #000;
|
||||
box-shadow: rgba(0, 0, 0, 0.7) 10px 10px 15px 0px;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
.iview-preloader {
|
||||
border: #666 1px solid;
|
||||
width: 150px
|
||||
}
|
||||
|
||||
.iview-preloader div {
|
||||
background: #666;
|
||||
}
|
||||
|
||||
.iview-controlNav div.iview-items ul li {
|
||||
padding: 0px;
|
||||
float: left;
|
||||
width: 11px;
|
||||
height: 12px;
|
||||
margin: 3px;
|
||||
margin-top: 16px;
|
||||
line-height: 0px;
|
||||
}
|
||||
|
||||
.iview .iview-tooltip {
|
||||
display: none;
|
||||
position: absolute;
|
||||
background: url('../../../img/iView/tooltip.png') no-repeat;
|
||||
width: 124px;
|
||||
height: 90px;
|
||||
bottom: 30px;
|
||||
left: -67px;
|
||||
padding: 10px;
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
.iview .iview-tooltip div.holder {
|
||||
display: block;
|
||||
width: 124px;
|
||||
height: 84px;
|
||||
overflow: hidden;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
.iview .iview-tooltip div.holder div.container {
|
||||
display: block;
|
||||
width: 4000px;
|
||||
}
|
||||
|
||||
.iview .iview-tooltip div.holder div.container div {
|
||||
float: left;
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
width: 124px;
|
||||
height: 84px;
|
||||
left: -50%;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.iview .iview-tooltip div.holder div.container div img {
|
||||
height: 84px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2014 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-2014 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;
|
||||
193
modules/leoslideshow/views/css/iView/skin_2_multiple/style.css
Normal file
@@ -0,0 +1,193 @@
|
||||
.container {
|
||||
display: block;
|
||||
width: 910px;
|
||||
margin: 0px auto;
|
||||
}
|
||||
|
||||
.iview, .iview2 {
|
||||
display: block;
|
||||
width: 900px;
|
||||
height: 400px;
|
||||
background: #000;
|
||||
background: rgba(0, 0, 0, 0.7);
|
||||
padding: 5px;
|
||||
border-radius: 5px;
|
||||
position: relative;
|
||||
-webkit-box-shadow: 0 38px 30px -18px rgba(0, 0, 0, 0.5);
|
||||
-moz-box-shadow: 0 38px 30px -18px rgba(0, 0, 0, 0.5);
|
||||
box-shadow: 0 38px 30px -18px rgba(0, 0, 0, 0.5);
|
||||
margin: 40px auto;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.iview2 {
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.iview .iviewSlider, .iview2 .iviewSlider {
|
||||
display: block;
|
||||
width: 900px;
|
||||
height: 400px;
|
||||
overflow: hidden;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.iview div.iview-directionNav {
|
||||
position: absolute;
|
||||
top: 187px;
|
||||
left: 0px;
|
||||
z-index: 9;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.iview div.iview-directionNav a {
|
||||
display: block;
|
||||
cursor: pointer;
|
||||
position: absolute;
|
||||
width: 27px;
|
||||
height: 27px;
|
||||
background-image: url(../../../img/iView/bg_direction_nav.png);
|
||||
text-indent: -9999px;
|
||||
-webkit-transition: left 0.3s ease-in-out;
|
||||
-webkit-transition-property: left,right;
|
||||
-moz-transition: left 0.3s ease-in-out;
|
||||
-moz-transition-property: left,right;
|
||||
-o-transition: left 0.3s ease-in-out;
|
||||
-o-transition-property: left,right;
|
||||
-ms-transition: left 0.3s ease-in-out;
|
||||
-ms-transition-property: left,right;
|
||||
transition: left 0.3s ease-in-out;
|
||||
transition-property: left,right;
|
||||
}
|
||||
|
||||
.iview div.iview-directionNav a.iview-nextNav {
|
||||
right: -27px;
|
||||
background-position: 27px 0px;
|
||||
}
|
||||
|
||||
.iview div.iview-directionNav a.iview-prevNav {
|
||||
left: -27px;
|
||||
background-position: 0px 0px
|
||||
}
|
||||
|
||||
.iview.iview-hover div.iview-directionNav a.iview-nextNav {
|
||||
right: 20px;
|
||||
}
|
||||
|
||||
.iview.iview-hover div.iview-directionNav a.iview-prevNav {
|
||||
left: 20px;
|
||||
}
|
||||
|
||||
.iview2 .iview-controlNav {
|
||||
position: absolute;
|
||||
bottom: 20px;
|
||||
left: 418px;
|
||||
}
|
||||
|
||||
.iview2 .iview-controlNav a {
|
||||
text-indent: -9999px;
|
||||
}
|
||||
|
||||
.iview2 .iview-controlNav a.iview-control {
|
||||
padding: 0px;
|
||||
float: left;
|
||||
width: 11px;
|
||||
height: 11px;
|
||||
background: url('../../../img/iView/bullets_2.png') no-repeat 0px 0px;
|
||||
line-height: 0px;
|
||||
margin-right: 7px;
|
||||
}
|
||||
|
||||
.iview2 .iview-controlNav a.iview-control.active {
|
||||
background-position: 0px -11px;
|
||||
}
|
||||
|
||||
.iview2 div.iview-directionNav {
|
||||
position: absolute;
|
||||
top: 150px;
|
||||
left: 0px;
|
||||
z-index: 9;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.iview2 div.iview-directionNav a {
|
||||
display: block;
|
||||
cursor: pointer;
|
||||
position: absolute;
|
||||
width: 40px;
|
||||
height: 100px;
|
||||
background-image: url(../../../img/iView/nav_paddles.png);
|
||||
text-indent: -9999px;
|
||||
}
|
||||
|
||||
.iview2 div.iview-directionNav a:active {
|
||||
background-image: url(../../../img/iView/nav_paddles_down.png);
|
||||
}
|
||||
|
||||
.iview2 div.iview-directionNav a.iview-nextNav {
|
||||
right: 20px;
|
||||
background-position: 56px 0px;
|
||||
}
|
||||
|
||||
.iview2 div.iview-directionNav a.iview-prevNav {
|
||||
left: 20px;
|
||||
background-position: -16px 0px
|
||||
}
|
||||
|
||||
.tp-caption {
|
||||
background: url('../../../img/iView/caption-bg.png');
|
||||
color: #FFF;
|
||||
border-radius: 3px;
|
||||
padding: 10px 15px;
|
||||
font-family: Verdana;
|
||||
font-size: 12px;
|
||||
text-shadow: #000 1px 1px 0px;
|
||||
}
|
||||
|
||||
.tp-caption.video-caption {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.tp-caption.caption1 {
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
.tp-caption.caption2 {
|
||||
background: #FFF;
|
||||
color: #000;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
.tp-caption.caption3 {
|
||||
background: #c4302b;
|
||||
box-shadow: rgba(0, 0, 0, 0.7) 10px 10px 15px 0px;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
.tp-caption.caption3 div {
|
||||
line-height: 150%;
|
||||
text-align: justify;
|
||||
}
|
||||
|
||||
.tp-caption.caption4 {
|
||||
background: #00b4ff;
|
||||
font-size: 36px;
|
||||
font-weight: bold;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
.tp-caption.caption5 {
|
||||
background: #FFF;
|
||||
color: #000;
|
||||
font-size: 26px;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
.iview-preloader {
|
||||
border: #666 1px solid;
|
||||
width: 150px
|
||||
}
|
||||
|
||||
.iview-preloader div {
|
||||
background: #666;
|
||||
}
|
||||
35
modules/leoslideshow/views/css/iView/skin_3_api/index.php
Normal file
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2014 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-2014 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;
|
||||
86
modules/leoslideshow/views/css/iView/skin_3_api/style.css
Normal file
@@ -0,0 +1,86 @@
|
||||
.container {
|
||||
display: block;
|
||||
width: 910px;
|
||||
margin: 0px auto;
|
||||
}
|
||||
|
||||
.iview {
|
||||
display: block;
|
||||
width: 900px;
|
||||
background: #000;
|
||||
background: rgba(0, 0, 0, 0.7);
|
||||
padding: 5px;
|
||||
border-radius: 5px;
|
||||
position: relative;
|
||||
-webkit-box-shadow: 0 38px 30px -18px rgba(0, 0, 0, 0.5);
|
||||
-moz-box-shadow: 0 38px 30px -18px rgba(0, 0, 0, 0.5);
|
||||
box-shadow: 0 38px 30px -18px rgba(0, 0, 0, 0.5);
|
||||
margin: 40px auto;
|
||||
}
|
||||
|
||||
.iview .iviewSlider{
|
||||
display: block;
|
||||
width: 900px;
|
||||
height: 400px;
|
||||
overflow: hidden;
|
||||
border-radius: 4px 4px 0px 0px;
|
||||
}
|
||||
|
||||
.iview-controlNav {
|
||||
position: static;
|
||||
height: 45px;
|
||||
text-align: center;
|
||||
background: url('../../../img/iView/navigation-bg.png');
|
||||
border-radius: 0px 0px 4px 4px;
|
||||
}
|
||||
|
||||
.iview-controlNav .iview-items {
|
||||
display: block;
|
||||
padding: 0px 20px;
|
||||
}
|
||||
|
||||
.iview-controlNav a img {
|
||||
height: 30px;
|
||||
border: #000 1px solid;
|
||||
margin: 7px 7px 0px 0px;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
.iview-controlNav a.active img {
|
||||
border-color: #999;
|
||||
}
|
||||
|
||||
.tp-caption {
|
||||
background: url('../../../img/iView/caption-bg.png');
|
||||
color: #FFF;
|
||||
border-radius: 3px;
|
||||
padding: 10px 15px;
|
||||
font-family: Verdana;
|
||||
font-size: 12px;
|
||||
text-shadow: #000 1px 1px 0px;
|
||||
}
|
||||
|
||||
.tp-caption.caption1 {
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
.tp-caption.caption2 {
|
||||
background: #FFF;
|
||||
color: #000;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
.tp-caption.caption3 {
|
||||
background: #c4302b;
|
||||
box-shadow: rgba(0, 0, 0, 0.7) 10px 10px 15px 0px;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
.iview-preloader {
|
||||
border: #666 1px solid;
|
||||
width: 150px
|
||||
}
|
||||
|
||||
.iview-preloader div {
|
||||
background: #666;
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2014 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-2014 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;
|
||||
127
modules/leoslideshow/views/css/iView/skin_4_responsive/style.css
Normal file
@@ -0,0 +1,127 @@
|
||||
.container {
|
||||
display: block;
|
||||
margin: 0px auto;
|
||||
}
|
||||
|
||||
.iview {
|
||||
display: block;
|
||||
min-width: 300px;
|
||||
background: #000;
|
||||
background: rgba(0, 0, 0, 0.7);
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.iview .iviewSlider {
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
width: 100%; /* hard fixed (ex 950px) is enable responsive, auto not responve*/
|
||||
}
|
||||
|
||||
|
||||
.iview div.iview-directionNav {
|
||||
position: absolute;
|
||||
top: 47%;
|
||||
left: 0px;
|
||||
z-index: 9;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.iview div.iview-directionNav a {
|
||||
display: block;
|
||||
cursor: pointer;
|
||||
position: absolute;
|
||||
width: 27px;
|
||||
height: 27px;
|
||||
background-image: url(../../../img/iView/bg_direction_nav.png);
|
||||
text-indent: -9999px;
|
||||
-webkit-transition: left 0.3s ease-in-out;
|
||||
-webkit-transition-property: left,right;
|
||||
-moz-transition: left 0.3s ease-in-out;
|
||||
-moz-transition-property: left,right;
|
||||
-o-transition: left 0.3s ease-in-out;
|
||||
-o-transition-property: left,right;
|
||||
-ms-transition: left 0.3s ease-in-out;
|
||||
-ms-transition-property: left,right;
|
||||
transition: left 0.3s ease-in-out;
|
||||
transition-property: left,right;
|
||||
}
|
||||
|
||||
.iview div.iview-directionNav a.iview-nextNav {
|
||||
right: -27px;
|
||||
background-position: 27px 0px;
|
||||
}
|
||||
|
||||
.iview div.iview-directionNav a.iview-prevNav {
|
||||
left: -27px;
|
||||
background-position: 0px 0px
|
||||
}
|
||||
|
||||
.iview.iview-hover div.iview-directionNav a.iview-nextNav {
|
||||
right: 20px;
|
||||
}
|
||||
|
||||
.iview.iview-hover div.iview-directionNav a.iview-prevNav {
|
||||
left: 20px;
|
||||
}
|
||||
|
||||
.tp-caption.data-link:hover{
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.slide_config.data-link:hover {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.iview-preloader {
|
||||
border: #666 1px solid;
|
||||
width: 150px
|
||||
}
|
||||
|
||||
.iview-preloader div {
|
||||
background: #666;
|
||||
}
|
||||
.iview-timer {
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
.iview-timer div {
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
.iview .iview-tooltip {
|
||||
display: none;
|
||||
position: absolute;
|
||||
background: url('../../../img/iView/tooltip.png') no-repeat;
|
||||
|
||||
}
|
||||
|
||||
.iview .iview-tooltip div.holder {
|
||||
display: block;
|
||||
width: 124px;
|
||||
height: 84px;
|
||||
overflow: hidden;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
.iview .iview-tooltip div.holder div.container {
|
||||
display: block;
|
||||
width: 4000px;
|
||||
}
|
||||
|
||||
.iview .iview-tooltip div.holder div.container div {
|
||||
float: left;
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
width: 124px;
|
||||
height: 84px;
|
||||
left: -50%;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.iview .iview-tooltip div.holder div.container div img {
|
||||
height: 84px;
|
||||
margin: 0 auto;
|
||||
max-width: 100%;
|
||||
}
|
||||
35
modules/leoslideshow/views/css/iView/skin_5_banner/index.php
Normal file
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2014 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-2014 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;
|
||||
162
modules/leoslideshow/views/css/iView/skin_5_banner/style.css
Normal file
@@ -0,0 +1,162 @@
|
||||
.container {
|
||||
display: block;
|
||||
margin: 0px auto;
|
||||
}
|
||||
|
||||
.iview {
|
||||
display: block;
|
||||
width: 728px;
|
||||
background: #000;
|
||||
background: rgba(0, 0, 0, 1);
|
||||
padding: 5px;
|
||||
position: relative;
|
||||
margin: 40px auto;
|
||||
overflow: hidden;
|
||||
-webkit-box-shadow: 0 38px 30px -18px rgba(0, 0, 0, 0.5);
|
||||
-moz-box-shadow: 0 38px 30px -18px rgba(0, 0, 0, 0.5);
|
||||
box-shadow: 0 38px 30px -18px rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
.iview .iviewSlider {
|
||||
display: block;
|
||||
width: 728px;
|
||||
height: 90px;
|
||||
margin: 0px auto;
|
||||
}
|
||||
|
||||
.iview2 {
|
||||
display: block;
|
||||
width: 300px;
|
||||
background: #000;
|
||||
background: rgba(0, 0, 0, 1);
|
||||
padding: 5px;
|
||||
position: relative;
|
||||
margin: 40px auto;
|
||||
overflow: hidden;
|
||||
-webkit-box-shadow: 0 38px 30px -18px rgba(0, 0, 0, 0.5);
|
||||
-moz-box-shadow: 0 38px 30px -18px rgba(0, 0, 0, 0.5);
|
||||
box-shadow: 0 38px 30px -18px rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
.iview2 .iviewSlider {
|
||||
display: block;
|
||||
width: 300px;
|
||||
height: 600px;
|
||||
margin: 0px auto;
|
||||
}
|
||||
|
||||
.iview div.iview-directionNav {
|
||||
position: absolute;
|
||||
top: 37%;
|
||||
left: 0px;
|
||||
z-index: 9;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.iview2 div.iview-directionNav {
|
||||
top: 49%;
|
||||
}
|
||||
|
||||
.iview div.iview-directionNav a {
|
||||
display: block;
|
||||
cursor: pointer;
|
||||
position: absolute;
|
||||
width: 27px;
|
||||
height: 27px;
|
||||
background-image: url(../../../img/iView/bg_direction_nav_white.png);
|
||||
text-indent: -9999px;
|
||||
-webkit-transition: left 0.3s ease-in-out;
|
||||
-webkit-transition-property: left,right;
|
||||
-moz-transition: left 0.3s ease-in-out;
|
||||
-moz-transition-property: left,right;
|
||||
-o-transition: left 0.3s ease-in-out;
|
||||
-o-transition-property: left,right;
|
||||
-ms-transition: left 0.3s ease-in-out;
|
||||
-ms-transition-property: left,right;
|
||||
transition: left 0.3s ease-in-out;
|
||||
transition-property: left,right;
|
||||
}
|
||||
|
||||
.iview div.iview-directionNav a.iview-nextNav {
|
||||
right: -27px;
|
||||
background-position: 27px 0px;
|
||||
}
|
||||
|
||||
.iview div.iview-directionNav a.iview-prevNav {
|
||||
left: -27px;
|
||||
background-position: 0px 0px
|
||||
}
|
||||
|
||||
.iview.iview-hover div.iview-directionNav a.iview-nextNav {
|
||||
right: 20px;
|
||||
}
|
||||
|
||||
.iview.iview-hover div.iview-directionNav a.iview-prevNav {
|
||||
left: 20px;
|
||||
}
|
||||
|
||||
.iview2 .iview-controlNav {
|
||||
position: absolute;
|
||||
bottom: 30px;
|
||||
left: 133px;
|
||||
}
|
||||
|
||||
.iview2 .iview-controlNav a {
|
||||
text-indent: -9999px;
|
||||
}
|
||||
|
||||
.iview2 .iview-controlNav a.iview-control {
|
||||
padding: 0px;
|
||||
float: left;
|
||||
width: 11px;
|
||||
height: 11px;
|
||||
background: url('../../../img/iView/bullets_2.png') no-repeat 0px 0px;
|
||||
line-height: 0px;
|
||||
margin-right: 7px;
|
||||
}
|
||||
|
||||
.iview2 .iview-controlNav a.iview-control.active {
|
||||
background-position: 0px -11px;
|
||||
}
|
||||
|
||||
.tp-caption {
|
||||
background: url('../../../img/iView/caption-bg.png');
|
||||
color: #FFF;
|
||||
border-radius: 3px;
|
||||
padding: 10px 15px;
|
||||
font-family: Verdana;
|
||||
font-size: 12px;
|
||||
text-shadow: #000 1px 1px 0px;
|
||||
}
|
||||
|
||||
.tp-caption.caption1 {
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
.tp-caption.caption2 {
|
||||
background: #FFF;
|
||||
color: #000;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
.tp-caption.caption3 {
|
||||
background: #c4302b;
|
||||
box-shadow: rgba(0, 0, 0, 0.7) 10px 10px 15px 0px;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
.iview-preloader {
|
||||
border: #666 1px solid;
|
||||
width: 150px
|
||||
}
|
||||
|
||||
.iview-preloader div {
|
||||
background: #666;
|
||||
}
|
||||
.iview-timer {
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
.iview-timer div {
|
||||
border-radius: 10px;
|
||||
}
|
||||
35
modules/leoslideshow/views/css/index.php
Normal file
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2014 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-2014 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;
|
||||
@@ -0,0 +1,15 @@
|
||||
.jscom, .mix htcom { color: #4040c2; }
|
||||
.com { color: green; }
|
||||
.regexp { color: maroon; }
|
||||
.string { color: teal; }
|
||||
.keywords { color: blue; }
|
||||
.global { color: #008; }
|
||||
.numbers { color: #880; }
|
||||
.comm { color: green; }
|
||||
.tag { color: blue; }
|
||||
.entity { color: blue; }
|
||||
.string { color: teal; }
|
||||
.aname { color: maroon; }
|
||||
.avalue { color: maroon; }
|
||||
.jquery { color: #00a; }
|
||||
.plugin { color: red; }
|
||||
@@ -0,0 +1,47 @@
|
||||
/**********************************
|
||||
|
||||
Name: cmxform Styles
|
||||
|
||||
***********************************/
|
||||
form.cmxform {
|
||||
width: 370px;
|
||||
font-size: 1.0em;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
form.cmxform legend {
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
form.cmxform legend, form.cmxform label {
|
||||
color: #333;
|
||||
}
|
||||
|
||||
form.cmxform fieldset {
|
||||
border: none;
|
||||
border-top: 1px solid #C9DCA6;
|
||||
background: url(../../../img/jquery-validation-1.9.0/cmxform-fieldset.gif) left bottom repeat-x;
|
||||
background-color: #F8FDEF;
|
||||
}
|
||||
|
||||
form.cmxform fieldset fieldset {
|
||||
background: none;
|
||||
}
|
||||
|
||||
form.cmxform fieldset p, form.cmxform fieldset fieldset {
|
||||
padding: 5px 10px 7px;
|
||||
background: url(../../../img/jquery-validation-1.9.0/cmxform-divider.gif) left bottom repeat-x;
|
||||
}
|
||||
|
||||
form.cmxform label.error, label.error {
|
||||
/* remove the next line when you have trouble in IE6 with labels in list */
|
||||
color: red;
|
||||
font-style: italic;
|
||||
font-weight: normal;
|
||||
}
|
||||
div.error { display: none; }
|
||||
input { border: 1px solid black; }
|
||||
input.checkbox { border: none }
|
||||
input:focus { border: 1px dotted black; }
|
||||
input.error { border: 1px dotted red; }
|
||||
form.cmxform .gray * { color: gray; }
|
||||
@@ -0,0 +1,55 @@
|
||||
/**********************************
|
||||
|
||||
Use: cmxform template
|
||||
|
||||
***********************************/
|
||||
form.cmxform fieldset {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
form.cmxform legend {
|
||||
padding: 0 2px;
|
||||
font-weight: bold;
|
||||
_margin: 0 -7px; /* IE Win */
|
||||
}
|
||||
|
||||
form.cmxform label {
|
||||
display: inline-block;
|
||||
line-height: 1.8;
|
||||
vertical-align: top;
|
||||
cursor: hand;
|
||||
}
|
||||
|
||||
form.cmxform fieldset p {
|
||||
list-style: none;
|
||||
padding: 5px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
form.cmxform fieldset fieldset {
|
||||
border: none;
|
||||
margin: 3px 0 0;
|
||||
}
|
||||
|
||||
form.cmxform fieldset fieldset legend {
|
||||
padding: 0 0 5px;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
form.cmxform fieldset fieldset label {
|
||||
display: block;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
form.cmxform label { width: 100px; } /* Width of labels */
|
||||
form.cmxform fieldset fieldset label { margin-left: 103px; } /* Width plus 3 (html space) */
|
||||
form.cmxform label.error {
|
||||
margin-left: 103px;
|
||||
width: 220px;
|
||||
}
|
||||
|
||||
form.cmxform input.submit {
|
||||
margin-left: 103px;
|
||||
}
|
||||
|
||||
/*\*//*/ form.cmxform legend { display: inline-block; } /* IE Mac legend fix */
|
||||
@@ -0,0 +1,21 @@
|
||||
body, div { font-family: 'lucida grande', helvetica, verdana, arial, sans-serif }
|
||||
body { margin: 0; padding: 0; font-size: small; color: #333 }
|
||||
h1, h2 { font-family: 'trebuchet ms', verdana, arial; padding: 10px; margin: 0 }
|
||||
h1 { font-size: large }
|
||||
/*#main { padding: 1em; }*/
|
||||
#banner { padding: 15px; background-color: #06b; color: white; font-size: large; border-bottom: 1px solid #ccc;
|
||||
background: url(../../../img/jquery-validation-1.9.0/bg.gif) repeat-x; text-align: center }
|
||||
#banner a { color: white; }
|
||||
|
||||
p { margin: 10px 0; }
|
||||
|
||||
li { margin-left: 10px; }
|
||||
|
||||
h3 { margin: 1em 0 0; }
|
||||
|
||||
h1 { font-size: 2em; }
|
||||
h2 { font-size: 1.8em; }
|
||||
h3 { font-size: 1.6em; }
|
||||
h4 { font-size: 1.4em; }
|
||||
h5 { font-size: 1.2em; }
|
||||
|
||||
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2014 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-2014 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;
|
||||
@@ -0,0 +1,61 @@
|
||||
/**********************************
|
||||
|
||||
Use: Reset Styles for all browsers
|
||||
|
||||
***********************************/
|
||||
|
||||
body, p, blockquote {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
a img, iframe { border: none; }
|
||||
|
||||
/* Headers
|
||||
------------------------------*/
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-size: 100%;
|
||||
}
|
||||
|
||||
/* Lists
|
||||
------------------------------*/
|
||||
|
||||
ul, ol, dl, li, dt, dd {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/* Links
|
||||
------------------------------*/
|
||||
|
||||
a, a:link {}
|
||||
a:visited {}
|
||||
a:hover {}
|
||||
a:active {}
|
||||
|
||||
/* Forms
|
||||
------------------------------*/
|
||||
|
||||
form, fieldset {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
fieldset { border: 1px solid #000; }
|
||||
|
||||
legend {
|
||||
padding: 0;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
input, textarea, select {
|
||||
margin: 0;
|
||||
padding: 1px;
|
||||
font-size: 100%;
|
||||
font-family: inherit;
|
||||
}
|
||||
|
||||
select { padding: 0; }
|
||||
@@ -0,0 +1,11 @@
|
||||
/**********************************
|
||||
|
||||
Use: Main Screen Import
|
||||
|
||||
***********************************/
|
||||
|
||||
@import "reset.css";
|
||||
/*@import "core.css";*/
|
||||
|
||||
@import "cmxformTemplate.css";
|
||||
@import "cmxform.css";
|
||||
35
modules/leoslideshow/views/css/typo/index.php
Normal file
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2014 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-2014 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;
|
||||
1137
modules/leoslideshow/views/css/typo/typo.css
Normal file
BIN
modules/leoslideshow/views/img/admin/colsize.png
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
modules/leoslideshow/views/img/admin/coming.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
modules/leoslideshow/views/img/admin/copy.png
Normal file
|
After Width: | Height: | Size: 613 B |
BIN
modules/leoslideshow/views/img/admin/delete.gif
Normal file
|
After Width: | Height: | Size: 579 B |
BIN
modules/leoslideshow/views/img/admin/delete.png
Normal file
|
After Width: | Height: | Size: 4.4 KiB |
BIN
modules/leoslideshow/views/img/admin/image.png
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
35
modules/leoslideshow/views/img/admin/index.php
Normal file
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2014 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-2014 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;
|
||||
BIN
modules/leoslideshow/views/img/admin/plus_orange.png
Normal file
|
After Width: | Height: | Size: 5.5 KiB |
BIN
modules/leoslideshow/views/img/admin/text.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
modules/leoslideshow/views/img/admin/video.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
modules/leoslideshow/views/img/black50.png
Normal file
|
After Width: | Height: | Size: 259 B |
BIN
modules/leoslideshow/views/img/blank.gif
Normal file
|
After Width: | Height: | Size: 799 B |
35
modules/leoslideshow/views/img/demo/index.php
Normal file
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2014 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-2014 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;
|
||||
BIN
modules/leoslideshow/views/img/demo/sample_slider_1.png
Normal file
|
After Width: | Height: | Size: 263 KiB |
BIN
modules/leoslideshow/views/img/demo/sample_slider_2.jpg
Normal file
|
After Width: | Height: | Size: 98 KiB |
BIN
modules/leoslideshow/views/img/demo/sample_slider_3.png
Normal file
|
After Width: | Height: | Size: 277 KiB |
BIN
modules/leoslideshow/views/img/iView/bg_direction_nav.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
modules/leoslideshow/views/img/iView/bg_direction_nav_white.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
modules/leoslideshow/views/img/iView/bullets.png
Normal file
|
After Width: | Height: | Size: 3.3 KiB |
BIN
modules/leoslideshow/views/img/iView/bullets_2.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
modules/leoslideshow/views/img/iView/caption-bg.png
Normal file
|
After Width: | Height: | Size: 930 B |
35
modules/leoslideshow/views/img/iView/index.php
Normal file
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2014 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-2014 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;
|
||||
BIN
modules/leoslideshow/views/img/iView/nav-bg.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
modules/leoslideshow/views/img/iView/nav_paddles.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
modules/leoslideshow/views/img/iView/nav_paddles_down.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
modules/leoslideshow/views/img/iView/navigation-bg.png
Normal file
|
After Width: | Height: | Size: 2.3 KiB |
BIN
modules/leoslideshow/views/img/iView/slider-controls.png
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
BIN
modules/leoslideshow/views/img/iView/timer-bar-bg.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
modules/leoslideshow/views/img/iView/tooltip.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
modules/leoslideshow/views/img/iView/topbar-active.png
Normal file
|
After Width: | Height: | Size: 930 B |
BIN
modules/leoslideshow/views/img/iView/topbar-hover.png
Normal file
|
After Width: | Height: | Size: 930 B |
BIN
modules/leoslideshow/views/img/iView/topbar.png
Normal file
|
After Width: | Height: | Size: 227 B |
35
modules/leoslideshow/views/img/index.php
Normal file
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2014 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-2014 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;
|
||||
BIN
modules/leoslideshow/views/img/jquery-validation-1.9.0/bg.gif
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 220 B |