- Ticket 1166 -> Orden de los idiomas ES FR EN RU git-svn-id: https://192.168.0.254/svn/Proyectos.EstudioJuridicoAlmagro_Web/trunk@2 c22fe52d-42d7-ba4f-95f7-33effcf65713
181 lines
4.4 KiB
PHP
181 lines
4.4 KiB
PHP
<?php
|
|
global $wpv_slider_styles, $wpv_slider_effects, $wpv_slider_wavetypes, $wpv_slider_resizing;
|
|
|
|
return array(
|
|
array(
|
|
'name' => __('Header Slider', 'wpv'),
|
|
'type' => 'start'
|
|
),
|
|
array(
|
|
'name' => __('Enable featured posts in header slider', 'wpv'),
|
|
'id' => 'enable-featured-posts',
|
|
'type' => 'toggle',
|
|
),
|
|
|
|
array(
|
|
'name' => __('Full width header slider', 'wpv'),
|
|
'id' => 'has-fullwidth-slider',
|
|
'type' => 'toggle',
|
|
),
|
|
|
|
array(
|
|
'name' => __('Slider style', 'wpv'),
|
|
'desc' => __('The "shrink" style doesn\'t work work with a full width slider', 'wpv'),
|
|
'id' => 'header-slider-effect',
|
|
'type' => 'select',
|
|
'options' => $wpv_slider_effects,
|
|
),
|
|
|
|
array(
|
|
'name' => __('Slide resizing method', 'wpv'),
|
|
'desc' => __('"crop" - Display the content as is, centered and cropped if needed <br /> "fit" - Resize proportionally untill both sides are less or equal to the available space <br /> "stretch" - Resize both sides to match the available space without keeping proportions.', 'wpv'),
|
|
'id' => 'header-slider-resizing',
|
|
'type' => 'select',
|
|
'options' => $wpv_slider_resizing,
|
|
),
|
|
|
|
array(
|
|
'name' => __('Pause time', 'wpv'),
|
|
'id' => 'header-slider-pausetime',
|
|
'type' => 'range',
|
|
'min' => 500,
|
|
'max' => 60000
|
|
),
|
|
array(
|
|
'name' => __('Pause on hover', 'wpv'),
|
|
'id' => 'header-slider-pauseonhover',
|
|
'type' => 'toggle',
|
|
),
|
|
array(
|
|
'name' => __('Animation time', 'wpv'),
|
|
'id' => 'header-slider-animationtime',
|
|
'type' => 'range',
|
|
'min' => 0,
|
|
'max' => 10000
|
|
),
|
|
array(
|
|
'name' => __('Autostart', 'wpv'),
|
|
'id' => 'header-slider-direction',
|
|
'type' => 'select',
|
|
'options' => array(
|
|
'none' => __('Disable autostart', 'wpv'),
|
|
'left' => __('Left (backwards)', 'wpv'),
|
|
'right' => __('Right (forwards)', 'wpv'),
|
|
)
|
|
),
|
|
|
|
array(
|
|
'name' => __('"Previous" button text', 'wpv'),
|
|
'id' => 'header-slider-prevtext',
|
|
'type' => 'text',
|
|
),
|
|
array(
|
|
'name' => __('"Next" button text', 'wpv'),
|
|
'id' => 'header-slider-nexttext',
|
|
'type' => 'text',
|
|
),
|
|
|
|
array(
|
|
'name' => __('Easing', 'wpv'),
|
|
'desc' => __('Animation easings are most visible with sliding type effects', 'wpv'),
|
|
'id' => 'header-slider-easing',
|
|
'type' => 'select',
|
|
'options' => array(
|
|
'swing' => 'swing',
|
|
'linear' => 'linear',
|
|
'easeInQuad' => 'easeInQuad',
|
|
'easeOutQuad' => 'easeOutQuad',
|
|
'easeInOutQuad' => 'easeInOutQuad',
|
|
'easeInCubic' => 'easeInCubic',
|
|
'easeOutCubic' => 'easeOutCubic',
|
|
'easeInOutCubic' => 'easeInOutCubic',
|
|
'easeInQuart' => 'easeInQuart',
|
|
'easeOutQuart' => 'easeOutQuart',
|
|
'easeInOutQuart' => 'easeInOutQuart',
|
|
'easeInQuint' => 'easeInQuint',
|
|
'easeOutQuint' => 'easeOutQuint',
|
|
'easeInOutQuint' => 'easeInOutQuint',
|
|
'easeInSine' => 'easeInSine',
|
|
'easeOutSine' => 'easeOutSine',
|
|
'easeInOutSine' => 'easeInOutSine',
|
|
'easeInExpo' => 'easeInExpo',
|
|
'easeOutExpo' => 'easeOutExpo',
|
|
'easeInOutExpo' => 'easeInOutExpo',
|
|
'easeInCirc' => 'easeInCirc',
|
|
'easeOutCirc' => 'easeOutCirc',
|
|
'easeInOutCirc' => 'easeInOutCirc',
|
|
'easeInElastic' => 'easeInElastic',
|
|
'easeOutElastic' => 'easeOutElastic',
|
|
'easeInOutElastic' => 'easeInOutElastic',
|
|
'easeInBack' => 'easeInBack',
|
|
'easeOutBack' => 'easeOutBack',
|
|
'easeInOutBack' => 'easeInOutBack',
|
|
)
|
|
),
|
|
|
|
array(
|
|
'name' => __('Caption animation time', 'wpv'),
|
|
'id' => 'header-slider-captiontime',
|
|
'type' => 'range',
|
|
'min' => 0,
|
|
'max' => 10000
|
|
),
|
|
|
|
|
|
array(
|
|
'name' => __('Grid options', 'wpv'),
|
|
'type' => 'separator',
|
|
),
|
|
|
|
array(
|
|
'text' => __('For optimum performance, please mind that rows*cols should not exceed 50', 'wpv'),
|
|
'type' => 'info',
|
|
'class' => 'sticked'
|
|
),
|
|
|
|
array(
|
|
'name' => __('Visible grid', 'wpv'),
|
|
'id' => 'header-slider-visiblegrid',
|
|
'type' => 'toggle',
|
|
),
|
|
|
|
array(
|
|
'name' => __('Grid color', 'wpv'),
|
|
'id' => 'header-slider-gridcolor',
|
|
'type' => 'color',
|
|
),
|
|
|
|
array(
|
|
'name' => __('Grid rows', 'wpv'),
|
|
'id' => 'header-slider-rows',
|
|
'type' => 'range',
|
|
'min' => 1,
|
|
'max' => 10
|
|
),
|
|
array(
|
|
'name' => __('Grid cols', 'wpv'),
|
|
'id' => 'header-slider-cols',
|
|
'type' => 'range',
|
|
'min' => 1,
|
|
'max' => 10
|
|
),
|
|
|
|
array(
|
|
'name' => __('Wave type', 'wpv'),
|
|
'id' => 'header-slider-wavetype',
|
|
'type' => 'select',
|
|
'options' => $wpv_slider_wavetypes
|
|
),
|
|
|
|
array(
|
|
'name' => __('Sub-slide duration', 'wpv'),
|
|
'id' => 'header-slider-subslideduration',
|
|
'type' => 'range',
|
|
'min' => 0,
|
|
'max' => 5000
|
|
),
|
|
|
|
array(
|
|
'type' => 'end'
|
|
),
|
|
); |