Version Description
- Bug fix: sometimes, the slider got stuck at loading screen
Download this release
Release Info
Developer | fabiorino |
Plugin | Crelly Slider |
Version | 1.1.1 |
Comparing to | |
See all releases |
Code changes from version 1.1.0 to 1.1.1
- crellyslider.php +5 -3
- demo/demo.html +1 -0
- js/jquery.crellyslider.js +10 -20
- js/jquery.crellyslider.min.js +2 -2
- readme.txt +12 -11
- wordpress/admin.php +17 -17
- wordpress/ajax.php +2 -2
- wordpress/common.php +3 -3
- wordpress/elements.php +176 -176
- wordpress/frontend.php +3 -3
- wordpress/home.php +13 -13
- wordpress/languages/{crellyslider-es_ES.mo → crelly-slider-es_ES.mo} +0 -0
- wordpress/languages/{crellyslider-es_ES.po → crelly-slider-es_ES.po} +30 -38
- wordpress/languages/{crellyslider-fr_FR.mo → crelly-slider-fr_FR.mo} +0 -0
- wordpress/languages/{crellyslider-fr_FR.po → crelly-slider-fr_FR.po} +20 -28
- wordpress/languages/{crellyslider-sk_SK.mo → crelly-slider-sk_SK.mo} +0 -0
- wordpress/languages/{crellyslider-sk_SK.po → crelly-slider-sk_SK.po} +2 -2
- wordpress/languages/{crellyslider-sr_RS.mo → crelly-slider-sr_RS.mo} +0 -0
- wordpress/languages/{crellyslider-sr_RS.po → crelly-slider-sr_RS.po} +70 -42
- wordpress/languages/{crellyslider.pot → crelly-slider.pot} +13 -9
- wordpress/languages/crellyslider-de_DE.mo +0 -0
- wordpress/languages/crellyslider-de_DE.po +0 -685
- wordpress/languages/crellyslider-it_IT.mo +0 -0
- wordpress/languages/crellyslider-it_IT.po +0 -721
- wordpress/languages/crellyslider-ru_RU.mo +0 -0
- wordpress/languages/crellyslider-ru_RU.po +0 -685
- wordpress/slider.php +34 -34
- wordpress/slides.php +67 -67
crellyslider.php
CHANGED
@@ -2,10 +2,12 @@
|
|
2 |
/**
|
3 |
* Plugin Name: Crelly Slider
|
4 |
* Plugin URI: http://fabiorino1.altervista.org/projects/crellyslider
|
5 |
-
* Description:
|
6 |
-
* Version: 1.1.
|
7 |
* Author: fabiorino
|
8 |
* Author URI: http://fabiorino1.altervista.org
|
|
|
|
|
9 |
* License: MIT
|
10 |
*/
|
11 |
|
@@ -15,7 +17,7 @@
|
|
15 |
|
16 |
define('CS_DEBUG', false);
|
17 |
|
18 |
-
define('CS_VERSION', '1.1.
|
19 |
define('CS_PATH', plugin_dir_path(__FILE__));
|
20 |
define('CS_PLUGIN_URL', plugins_url() . '/crelly-slider');
|
21 |
|
2 |
/**
|
3 |
* Plugin Name: Crelly Slider
|
4 |
* Plugin URI: http://fabiorino1.altervista.org/projects/crellyslider
|
5 |
+
* Description: A free responsive slider that supports layers. Add texts, images and videos using a Drop & Builder.
|
6 |
+
* Version: 1.1.1
|
7 |
* Author: fabiorino
|
8 |
* Author URI: http://fabiorino1.altervista.org
|
9 |
+
* Text Domain: crelly-slider
|
10 |
+
* Domain Path: /wordpress/languages
|
11 |
* License: MIT
|
12 |
*/
|
13 |
|
17 |
|
18 |
define('CS_DEBUG', false);
|
19 |
|
20 |
+
define('CS_VERSION', '1.1.1');
|
21 |
define('CS_PATH', plugin_dir_path(__FILE__));
|
22 |
define('CS_PLUGIN_URL', plugins_url() . '/crelly-slider');
|
23 |
|
demo/demo.html
CHANGED
@@ -41,6 +41,7 @@
|
|
41 |
style="
|
42 |
background-color: transparent;
|
43 |
background-image: url('http://fabiorino1.altervista.org/projects/crellyslider/wp-content/uploads/2014/08/bg21.png');
|
|
|
44 |
background-position-x: 0;
|
45 |
background-position-y: 0;
|
46 |
background-repeat: repeat;
|
41 |
style="
|
42 |
background-color: transparent;
|
43 |
background-image: url('http://fabiorino1.altervista.org/projects/crellyslider/wp-content/uploads/2014/08/bg21.png');
|
44 |
+
background-color: red;
|
45 |
background-position-x: 0;
|
46 |
background-position-y: 0;
|
47 |
background-repeat: repeat;
|
js/jquery.crellyslider.js
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
* Plugin Name: Crelly Slider
|
3 |
* Plugin URI: http://fabiorino1.altervista.org/projects/crellyslider
|
4 |
* Description: The first free WordPress slider with elements animations.
|
5 |
-
* Version: 1.1.
|
6 |
* Author: fabiorino
|
7 |
* Author URI: http://fabiorino1.altervista.org
|
8 |
* License: MIT
|
@@ -156,15 +156,13 @@
|
|
156 |
setPreloader();
|
157 |
|
158 |
initVideos().done(function() {
|
159 |
-
// Timeout needed
|
160 |
-
|
161 |
-
if(document.readyState
|
162 |
-
|
163 |
-
}
|
164 |
-
else {
|
165 |
loadedWindow();
|
166 |
}
|
167 |
-
},
|
168 |
});
|
169 |
}
|
170 |
|
@@ -307,13 +305,6 @@
|
|
307 |
return def.promise();
|
308 |
}
|
309 |
|
310 |
-
// Waits until the window loads
|
311 |
-
function loadWindow() {
|
312 |
-
$(window).load(function() {
|
313 |
-
loadedWindow();
|
314 |
-
});
|
315 |
-
}
|
316 |
-
|
317 |
// Does operations after window.load is complete. Need to do it as a function for back-end compatibility
|
318 |
function loadedWindow() {
|
319 |
// Set layout for the second time
|
@@ -450,7 +441,7 @@
|
|
450 |
var img_url = getSlide(0).css('background-image');
|
451 |
img_url = img_url.replace(/^url\(["']?/, '').replace(/["']?\)$/, '');
|
452 |
|
453 |
-
if(img_url
|
454 |
addPreloaderHTML();
|
455 |
}
|
456 |
else {
|
@@ -1248,8 +1239,7 @@
|
|
1248 |
|
1249 |
// Returns the player associated to the element
|
1250 |
function getYoutubePlayer(element) {
|
1251 |
-
return youtube_videos[element.attr('id')].player;
|
1252 |
-
return false;
|
1253 |
}
|
1254 |
|
1255 |
/*
|
@@ -1341,7 +1331,7 @@
|
|
1341 |
/** ANIMATIONS **/
|
1342 |
/****************/
|
1343 |
|
1344 |
-
// WARNING: slideIn and elementIn must reset every CSS propriety to the correct value before
|
1345 |
|
1346 |
// Does slide in animation
|
1347 |
function slideIn(slide_index) {
|
@@ -2026,7 +2016,7 @@
|
|
2026 |
elementsEaseOut : 300,
|
2027 |
ignoreElementsEaseOut : false,
|
2028 |
|
2029 |
-
videoAutoplay :
|
2030 |
videoLoop : false,
|
2031 |
|
2032 |
beforeStart : function() {},
|
2 |
* Plugin Name: Crelly Slider
|
3 |
* Plugin URI: http://fabiorino1.altervista.org/projects/crellyslider
|
4 |
* Description: The first free WordPress slider with elements animations.
|
5 |
+
* Version: 1.1.1
|
6 |
* Author: fabiorino
|
7 |
* Author URI: http://fabiorino1.altervista.org
|
8 |
* License: MIT
|
156 |
setPreloader();
|
157 |
|
158 |
initVideos().done(function() {
|
159 |
+
// Timeout needed to prevent compatibility issues
|
160 |
+
var loading = setInterval(function() {
|
161 |
+
if(document.readyState == 'complete' && SLIDER.find(CRELLY).find('.cs-preloader').length > 0) { // If window.load and preloader is loaded
|
162 |
+
clearInterval(loading);
|
|
|
|
|
163 |
loadedWindow();
|
164 |
}
|
165 |
+
}, 100);
|
166 |
});
|
167 |
}
|
168 |
|
305 |
return def.promise();
|
306 |
}
|
307 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
308 |
// Does operations after window.load is complete. Need to do it as a function for back-end compatibility
|
309 |
function loadedWindow() {
|
310 |
// Set layout for the second time
|
441 |
var img_url = getSlide(0).css('background-image');
|
442 |
img_url = img_url.replace(/^url\(["']?/, '').replace(/["']?\)$/, '');
|
443 |
|
444 |
+
if(! img_url.match(/\.(jpeg|jpg|gif|png|bmp|tiff|tif)$/)) { // If there isn't a background image
|
445 |
addPreloaderHTML();
|
446 |
}
|
447 |
else {
|
1239 |
|
1240 |
// Returns the player associated to the element
|
1241 |
function getYoutubePlayer(element) {
|
1242 |
+
return youtube_videos[element.attr('id')].player;
|
|
|
1243 |
}
|
1244 |
|
1245 |
/*
|
1331 |
/** ANIMATIONS **/
|
1332 |
/****************/
|
1333 |
|
1334 |
+
// WARNING: slideIn and elementIn must reset every CSS propriety to the correct value before starting
|
1335 |
|
1336 |
// Does slide in animation
|
1337 |
function slideIn(slide_index) {
|
2016 |
elementsEaseOut : 300,
|
2017 |
ignoreElementsEaseOut : false,
|
2018 |
|
2019 |
+
videoAutoplay : false,
|
2020 |
videoLoop : false,
|
2021 |
|
2022 |
beforeStart : function() {},
|
js/jquery.crellyslider.min.js
CHANGED
@@ -2,10 +2,10 @@
|
|
2 |
* Plugin Name: Crelly Slider
|
3 |
* Plugin URI: http://fabiorino1.altervista.org/projects/crellyslider
|
4 |
* Description: The first free WordPress slider with elements animations.
|
5 |
-
* Version: 1.1.
|
6 |
* Author: fabiorino
|
7 |
* Author URI: http://fabiorino1.altervista.org
|
8 |
* License: MIT
|
9 |
*/
|
10 |
|
11 |
-
!function(e){!function(e,t,n){"function"==typeof define&&define.amd?define(["jquery"],function(i){return n(i,e,t),i.mobile}):n(e.jQuery,e,t)}(this,document,function(e,t,n,i){!function(e,t,n,i){function a(e){for(;e&&"undefined"!=typeof e.originalEvent;)e=e.originalEvent;return e}function o(t,n){var o,s,r,c,l,d,p,f,u,h=t.type;if(t=e.Event(t),t.type=n,o=t.originalEvent,s=e.event.props,h.search(/^(mouse|click)/)>-1&&(s=Y),o)for(p=s.length,c;p;)c=s[--p],t[c]=o[c];if(h.search(/mouse(down|up)|click/)>-1&&!t.which&&(t.which=1),-1!==h.search(/^touch/)&&(r=a(o),h=r.touches,l=r.changedTouches,d=h&&h.length?h[0]:l&&l.length?l[0]:i,d))for(f=0,u=P.length;u>f;f++)c=P[f],t[c]=d[c];return t}function s(t){for(var n,i,a={};t;){n=e.data(t,I);for(i in n)n[i]&&(a[i]=a.hasVirtualBinding=!0);t=t.parentNode}return a}function r(t,n){for(var i;t;){if(i=e.data(t,I),i&&(!n||i[n]))return t;t=t.parentNode}return null}function c(){X=!1}function l(){X=!0}function d(){W=0,C.length=0,z=!1,l()}function p(){c()}function f(){u(),F=setTimeout(function(){F=0,d()},e.vmouse.resetTimerDuration)}function u(){F&&(clearTimeout(F),F=0)}function h(t,n,i){var a;return(i&&i[t]||!i&&r(n.target,t))&&(a=o(n,t),e(n.target).trigger(a)),a}function v(t){var n,i=e.data(t.target,E);!z&&(!W||W!==i)&&(n=h("v"+t.type,t),n&&(n.isDefaultPrevented()&&t.preventDefault(),n.isPropagationStopped()&&t.stopPropagation(),n.isImmediatePropagationStopped()&&t.stopImmediatePropagation()))}function m(t){var n,i,o,r=a(t).touches;r&&1===r.length&&(n=t.target,i=s(n),i.hasVirtualBinding&&(W=_++,e.data(n,E,W),u(),p(),M=!1,o=a(t).touches[0],O=o.pageX,R=o.pageY,h("vmouseover",t,i),h("vmousedown",t,i)))}function y(e){X||(M||h("vmousecancel",e,s(e.target)),M=!0,f())}function g(t){if(!X){var n=a(t).touches[0],i=M,o=e.vmouse.moveDistanceThreshold,r=s(t.target);M=M||Math.abs(n.pageX-O)>o||Math.abs(n.pageY-R)>o,M&&!i&&h("vmousecancel",t,r),h("vmousemove",t,r),f()}}function b(e){if(!X){l();var t,n,i=s(e.target);h("vmouseup",e,i),M||(t=h("vclick",e,i),t&&t.isDefaultPrevented()&&(n=a(e).changedTouches[0],C.push({touchID:W,x:n.clientX,y:n.clientY}),z=!0)),h("vmouseout",e,i),M=!1,f()}}function w(t){var n,i=e.data(t,I);if(i)for(n in i)if(i[n])return!0;return!1}function k(){}function T(t){var n=t.substr(1);return{setup:function(){w(this)||e.data(this,I,{});var i=e.data(this,I);i[t]=!0,x[t]=(x[t]||0)+1,1===x[t]&&H.bind(n,v),e(this).bind(n,k),B&&(x.touchstart=(x.touchstart||0)+1,1===x.touchstart&&H.bind("touchstart",m).bind("touchend",b).bind("touchmove",g).bind("scroll",y))},teardown:function(){--x[t],x[t]||H.unbind(n,v),B&&(--x.touchstart,x.touchstart||H.unbind("touchstart",m).unbind("touchmove",g).unbind("touchend",b).unbind("scroll",y));var i=e(this),a=e.data(this,I);a&&(a[t]=!1),i.unbind(n,k),w(this)||i.removeData(I)}}}var D,S,I="virtualMouseBindings",E="virtualTouchID",N="vmouseover vmousedown vmousemove vmouseup vclick vmouseout vmousecancel".split(" "),P="clientX clientY pageX pageY screenX screenY".split(" "),L=e.event.mouseHooks?e.event.mouseHooks.props:[],Y=e.event.props.concat(L),x={},F=0,O=0,R=0,M=!1,C=[],z=!1,X=!1,B="addEventListener"in n,H=e(n),_=1,W=0;for(e.vmouse={moveDistanceThreshold:10,clickDistanceThreshold:10,resetTimerDuration:1500},S=0;S<N.length;S++)e.event.special[N[S]]=T(N[S]);B&&n.addEventListener("click",function(t){var n,i,a,o,s,r,c=C.length,l=t.target;if(c)for(n=t.clientX,i=t.clientY,D=e.vmouse.clickDistanceThreshold,a=l;a;){for(o=0;c>o;o++)if(s=C[o],r=0,a===l&&Math.abs(s.x-n)<D&&Math.abs(s.y-i)<D||e.data(a,E)===s.touchID)return t.preventDefault(),void t.stopPropagation();a=a.parentNode}},!0)}(e,t,n),function(e){e.mobile={}}(e),function(e,t){var i={touch:"ontouchend"in n};e.mobile.support=e.mobile.support||{},e.extend(e.support,i),e.extend(e.mobile.support,i)}(e),function(e,t,i){function a(t,n,a,o){var s=a.type;a.type=n,o?e.event.trigger(a,i,t):e.event.dispatch.call(t,a),a.type=s}var o=e(n),s=e.mobile.support.touch,r="touchmove scroll",c=s?"touchstart":"mousedown",l=s?"touchend":"mouseup",d=s?"touchmove":"mousemove";e.each("touchstart touchmove touchend tap taphold swipe swipeleft swiperight scrollstart scrollstop".split(" "),function(t,n){e.fn[n]=function(e){return e?this.bind(n,e):this.trigger(n)},e.attrFn&&(e.attrFn[n]=!0)}),e.event.special.scrollstart={enabled:!0,setup:function(){function t(e,t){n=t,a(o,n?"scrollstart":"scrollstop",e)}var n,i,o=this,s=e(o);s.bind(r,function(a){e.event.special.scrollstart.enabled&&(n||t(a,!0),clearTimeout(i),i=setTimeout(function(){t(a,!1)},50))})},teardown:function(){e(this).unbind(r)}},e.event.special.tap={tapholdThreshold:750,emitTapOnTaphold:!0,setup:function(){var t=this,n=e(t),i=!1;n.bind("vmousedown",function(s){function r(){clearTimeout(d)}function c(){r(),n.unbind("vclick",l).unbind("vmouseup",r),o.unbind("vmousecancel",c)}function l(e){c(),i||p!==e.target?i&&e.preventDefault():a(t,"tap",e)}if(i=!1,s.which&&1!==s.which)return!1;var d,p=s.target;n.bind("vmouseup",r).bind("vclick",l),o.bind("vmousecancel",c),d=setTimeout(function(){e.event.special.tap.emitTapOnTaphold||(i=!0),a(t,"taphold",e.Event("taphold",{target:p}))},e.event.special.tap.tapholdThreshold)})},teardown:function(){e(this).unbind("vmousedown").unbind("vclick").unbind("vmouseup"),o.unbind("vmousecancel")}},e.event.special.swipe={scrollSupressionThreshold:30,durationThreshold:1e3,horizontalDistanceThreshold:30,verticalDistanceThreshold:30,getLocation:function(e){var n=t.pageXOffset,i=t.pageYOffset,a=e.clientX,o=e.clientY;return 0===e.pageY&&Math.floor(o)>Math.floor(e.pageY)||0===e.pageX&&Math.floor(a)>Math.floor(e.pageX)?(a-=n,o-=i):(o<e.pageY-i||a<e.pageX-n)&&(a=e.pageX-n,o=e.pageY-i),{x:a,y:o}},start:function(t){var n=t.originalEvent.touches?t.originalEvent.touches[0]:t,i=e.event.special.swipe.getLocation(n);return{time:(new Date).getTime(),coords:[i.x,i.y],origin:e(t.target)}},stop:function(t){var n=t.originalEvent.touches?t.originalEvent.touches[0]:t,i=e.event.special.swipe.getLocation(n);return{time:(new Date).getTime(),coords:[i.x,i.y]}},handleSwipe:function(t,n,i,o){if(n.time-t.time<e.event.special.swipe.durationThreshold&&Math.abs(t.coords[0]-n.coords[0])>e.event.special.swipe.horizontalDistanceThreshold&&Math.abs(t.coords[1]-n.coords[1])<e.event.special.swipe.verticalDistanceThreshold){var s=t.coords[0]>n.coords[0]?"swipeleft":"swiperight";return a(i,"swipe",e.Event("swipe",{target:o,swipestart:t,swipestop:n}),!0),a(i,s,e.Event(s,{target:o,swipestart:t,swipestop:n}),!0),!0}return!1},eventInProgress:!1,setup:function(){var t,n=this,i=e(n),a={};t=e.data(this,"mobile-events"),t||(t={length:0},e.data(this,"mobile-events",t)),t.length++,t.swipe=a,a.start=function(t){if(!e.event.special.swipe.eventInProgress){e.event.special.swipe.eventInProgress=!0;var i,s=e.event.special.swipe.start(t),r=t.target,c=!1;a.move=function(t){s&&!t.isDefaultPrevented()&&(i=e.event.special.swipe.stop(t),c||(c=e.event.special.swipe.handleSwipe(s,i,n,r),c&&(e.event.special.swipe.eventInProgress=!1)),Math.abs(s.coords[0]-i.coords[0])>e.event.special.swipe.scrollSupressionThreshold&&t.preventDefault())},a.stop=function(){c=!0,e.event.special.swipe.eventInProgress=!1,o.off(d,a.move),a.move=null},o.on(d,a.move).one(l,a.stop)}},i.on(c,a.start)},teardown:function(){var t,n;t=e.data(this,"mobile-events"),t&&(n=t.swipe,delete t.swipe,t.length--,0===t.length&&e.removeData(this,"mobile-events")),n&&(n.start&&e(this).off(c,n.start),n.move&&o.off(d,n.move),n.stop&&o.off(l,n.stop))}},e.each({scrollstop:"scrollstart",taphold:"tap",swipeleft:"swipe.left",swiperight:"swipe.right"},function(t,n){e.event.special[t]={setup:function(){e(this).bind(n,e.noop)},teardown:function(){e(this).unbind(n)}}})}(e,this)});var t=document.createElement("script");t.src="https://www.youtube.com/iframe_api";var n=document.getElementsByTagName("script")[0];n.parentNode.insertBefore(t,n);(function(){function e(t){return new e.fn.init(t)}function t(e,t,n){return n.contentWindow.postMessage?(e=JSON.stringify({method:e,value:t}),void n.contentWindow.postMessage(e,s)):!1}function n(e){var t,n;try{t=JSON.parse(e.data),n=t.event||t.method}catch(i){}if("ready"!=n||o||(o=!0),!/^https?:\/\/player.vimeo.com/.test(e.origin))return!1;"*"===s&&(s=e.origin),e=t.value;var r=t.data,c=""===c?null:t.player_id;return t=c?a[c][n]:a[n],n=[],t?(void 0!==e&&n.push(e),r&&n.push(r),c&&n.push(c),0<n.length?t.apply(null,n):t.call()):!1}function i(e,t,n){n?(a[n]||(a[n]={}),a[n][e]=t):a[e]=t}var a={},o=!1,s="*";return e.fn=e.prototype={element:null,init:function(e){return"string"==typeof e&&(e=document.getElementById(e)),this.element=e,this},api:function(e,n){if(!this.element||!e)return!1;var a=this.element,o=""!==a.id?a.id:null,s=n&&n.constructor&&n.call&&n.apply?null:n,r=n&&n.constructor&&n.call&&n.apply?n:null;return r&&i(e,r,o),t(e,s,a),this},addEvent:function(e,n){if(!this.element)return!1;var a=this.element,s=""!==a.id?a.id:null;return i(e,n,s),"ready"!=e?t("addEventListener",e,a):"ready"==e&&o&&n.call(null,s),this},removeEvent:function(e){if(!this.element)return!1;var n=this.element,i=""!==n.id?n.id:null;e:{if(i&&a[i]){if(!a[i][e]){i=!1;break e}a[i][e]=null}else{if(!a[e]){i=!1;break e}a[e]=null}i=!0}"ready"!=e&&i&&t("removeEventListener",e,n)}},e.fn.init.prototype=e.fn,window.addEventListener?window.addEventListener("message",n,!1):window.attachEvent("onmessage",n),window.Froogaloop=window.$f=e})();e.CrellySlider=function(t,n){function i(){if(re.wrapInner('<div class="crellyslider" />'),re.find(ce+" > ul").addClass("cs-slides"),re.find(ce+" "+le+" > li").addClass("cs-slide"),se=L().length,0==se)return!1;if(1==se){var e=Y(0),t=re.find(ce).find(le);e.clone().prependTo(t),se++}if(n.showControls&&re.find(ce).append('<div class="cs-controls"><span class="cs-next"></span><span class="cs-previous"></span></div>'),n.showNavigation){for(var i='<div class="cs-navigation">',o=0;se>o;o++)i+='<span class="cs-slide-link"></span>';i+="</div>",re.find(ce).append(i)}n.showProgressBar?re.find(ce).append('<div class="cs-progress-bar"></div>'):re.find(ce).append('<div class="cs-progress-bar cs-progress-bar-hidden"></div>'),re.css("display","block"),n.responsive&&g(),h(),L().find(".cs-background-link").html(" ").data({left:0,top:0,"in":"none",out:"none",easeIn:0,easeOut:0,delay:0,time:"all"}),f(),a().done(function(){setTimeout(function(){"complete"!=document.readyState?r():c()},10)})}function a(){var t=new e.Deferred,n=L().find(".cs-yt-iframe, .cs-vimeo-iframe").length,i=0;return 0==n?t.resolve().promise():(L().find(".cs-yt-iframe, .cs-vimeo-iframe").each(function(){var a=e(this);a.one("load",function(){i++,i==n&&o().done(function(){s().done(function(){t.resolve()})})})}),t.promise())}function o(){var t,n=new e.Deferred,i=L(),a=i.find(pe+".cs-yt-iframe").length,o=0;return 0==a?n.resolve().promise():(i.each(function(){var i=e(this),s=i.find(pe+".cs-yt-iframe");s.each(function(){var i=e(this);i.uniqueId(),i.attr("id","cs-yt-iframe-"+i.attr("id"));var s=new YT.Player(i.attr("id"),{events:{onReady:function(){o++,o==a&&n.resolve()},onStateChange:function(e){e.data===YT.PlayerState.ENDED&&P(i,"loop")&&s.playVideo()}}});t={player:s,played_once:!1},we[i.attr("id")]=t})}),n.promise())}function s(){var t,n=new e.Deferred,i=L(),a=i.find(pe+".cs-vimeo-iframe").length,o=0;return 0==a?n.resolve().promise():(i.each(function(){var i=e(this),s=i.find(pe+".cs-vimeo-iframe");s.each(function(){var i=e(this);i.uniqueId(),i.attr("id","cs-vimeo-iframe-"+i.attr("id")),i.attr("src",i.attr("src")+"&player_id="+i.attr("id"));var s=$f(i[0]);s.addEvent("ready",function(){s.addEvent("finish",function(){ke[i.attr("id")].ended=!0}),s.addEvent("play",function(){ke[i.attr("id")].played_once=!0,ke[i.attr("id")].ended=!1}),P(i,"loop")&&s.api("setLoop",!0),o++,o==a&&n.resolve()}),t={player:s,played_once:!1,ended:!1},ke[i.attr("id")]=t})}),n.promise())}function r(){e(window).load(function(){c()})}function c(){n.responsive&&g(),h(),De=e(window).width(),l(),p(),u(),n.beforeStart(),n.responsive?m():w()}function l(){L().each(function(){var t=e(this);t.find(pe).each(function(){var t=e(this);t.find("*").each(function(){var t=e(this);d(t,!0)}),d(t,!1)}),t.css("display","none"),t.data("opacity",parseFloat(t.css("opacity")))})}function d(e,t){e.data("width",parseFloat(e.width())),e.data("height",parseFloat(e.height())),e.data("letter-spacing",parseFloat(e.css("letter-spacing"))),e.data("font-size",parseFloat(e.css("font-size"))),"px"==e.css("line-height").slice(-2).toLowerCase()?e.data("line-height",parseFloat(e.css("line-height"))):e.data("line-height",parseFloat(e.css("line-height"))*P(e,"font-size")),e.data("padding-top",parseFloat(e.css("padding-top"))),e.data("padding-right",parseFloat(e.css("padding-right"))),e.data("padding-bottom",parseFloat(e.css("padding-bottom"))),e.data("padding-left",parseFloat(e.css("padding-left"))),e.data("opacity",parseFloat(e.css("opacity"))),t||e.css("display","none")}function p(){n.responsive&&e(window).resize(function(){De!=e(window).width()&&("full-width"==n.layout&&S()!=e(re).width()||e(re).width()<S()||e(re).width()>S()&&S()<n.startWidth)&&m()}),re.find(ce).find(".cs-controls > .cs-previous").click(function(){z(N())}),re.find(ce).find(".cs-controls > .cs-next").click(function(){z(E())}),n.enableSwipe&&(re.find(ce).on("swipeleft",function(){D(),z(E())}),re.find(ce).on("swiperight",function(){D(),z(N())})),re.find(ce).find(".cs-navigation > .cs-slide-link").click(function(){z(e(this).index())}),n.pauseOnHover&&(re.find(ce).find(le).hover(function(){T()}),re.find(ce).find(le).mouseleave(function(){D()}))}function f(){function t(){re.find(ce).append('<div class="cs-preloader"><div class="cs-bg"></div><div class="cs-loader"><div class="cs-spinner"></div></div></div>'),re.find(ce).find(".cs-preloader").css({"background-color":Y(0).css("background-color"),"background-image":Y(0).css("background-image"),"background-position":Y(0).css("background-position"),"background-repeat":Y(0).css("background-repeat"),"background-size":Y(0).css("background-size")}),re.find(ce).find(".cs-preloader > .cs-bg").css({"background-color":Y(0).css("background-color"),"background-image":Y(0).css("background-image"),"background-position":Y(0).css("background-position"),"background-repeat":Y(0).css("background-repeat"),"background-size":Y(0).css("background-size")})}re.find(ce).find(le).css("visibility","hidden"),re.find(ce).find(".cs-progress-bar").css("display","none"),re.find(ce).find(".cs-navigation").css("display","none"),re.find(ce).find(".cs-controls").css("display","none");var n=Y(0).css("background-image");n=n.replace(/^url\(["']?/,"").replace(/["']?\)$/,""),""==n||"undefined"==n||"none"==n?t():e("<img>").load(function(){t()}).attr("src",n).each(function(){this.complete&&e(this).load()})}function u(){re.find(ce).find(le).css("visibility","visible"),re.find(ce).find(".cs-progress-bar").css("display","block"),re.find(ce).find(".cs-navigation").css("display","block"),re.find(ce).find(".cs-controls").css("display","block"),ne(Y(0)),Y(0).finish(),re.find(ce).find(".cs-preloader").animate({opacity:0},300,function(){re.find(ce).find(".cs-preloader").remove()})}function h(){var e,t,i=n.layout;switch(i){case"fixed":e=n.startWidth,t=n.startHeight,re.find(ce).css({width:b(e),height:b(t)}),L().css({width:b(e),height:b(t)});break;case"full-width":e=re.width(),t=n.startHeight,re.find(ce).css({width:e,height:b(t)}),L().css({width:e,height:b(t)});break;default:return!1}}function v(e){var t=(I()-n.startHeight)/2,i=(S()-n.startWidth)/2,a=0,o=0;return t>0&&(a=t),i>0&&(o=i),{top:a,left:o}}function m(){n.beforeSetResponsive();var t=L();k(!0),t.each(function(){var t=e(this),n=t.find(pe);t.finish(),ne(t),t.finish(),n.each(function(){var t=e(this);t.finish(),ae(t),t.finish(),_(t)&&A(t)})}),g(),h(),t.each(function(){var t=e(this),n=t.find(pe);n.each(function(){var t=e(this);t.find("*").each(function(){var t=e(this);y(t)}),y(t),t.finish(),oe(t),t.finish(),_(t)&&A(t)}),t.finish(),ie(t),t.finish()}),De=e(window).width(),w()}function y(e){e.css({top:b(P(e,"top")+v(e).top),left:b(P(e,"left")+v(e).left),"padding-top":b(P(e,"padding-top")),"padding-right":b(P(e,"padding-right")),"padding-bottom":b(P(e,"padding-bottom")),"padding-left":b(P(e,"padding-left"))}),e.is("input")||e.is("button")||e.text().trim().length?e.css({"line-height":b(P(e,"line-height"))+"px","letter-spacing":b(P(e,"letter-spacing")),"font-size":b(P(e,"font-size"))}):e.css({width:b(P(e,"width")),height:b(P(e,"height"))})}function g(){var e=re.width(),t=n.startWidth;Te=e>=t||!n.responsive?1:e/t}function b(e){return e*Te}function w(){n.automaticSlide?O():X(fe),me=!1}function k(t){for(var n=0;n<ge.length;n++)ge[n].clear();for(var n=0;n<be.length;n++)be[n].clear();ye.clear(),L().each(function(){var n=e(this);t?n.finish():n.stop(!0,!0),n.find(pe).each(function(){var n=e(this);t?n.finish():n.stop(!0,!0)})}),M()}function T(){if(!ue&&he){n.beforePause();var e=re.find(ce).find(".cs-progress-bar");e.stop(!0),ye.pause(),ue=!0}}function D(){if(ue&&he){n.beforeResume();var e=re.find(ce).find(".cs-progress-bar"),t=(P(Y(fe),"time"),ye.getRemaining());e.animate({width:"100%"},t),ye.resume(),ue=!1}}function S(){return re.find(ce).width()}function I(){return re.find(ce).height()}function E(){return fe+1==se?0:fe+1}function N(){return 0>fe-1?se-1:fe-1}function P(e,t){var i;switch(i=e.parent("ul").hasClass("cs-slides")?!0:!1,t){case"ease-in":return i?isNaN(parseInt(e.data(t)))?n.slidesEaseIn:parseInt(e.data(t)):isNaN(parseInt(e.data(t)))?n.elementsEaseIn:parseInt(e.data(t));case"ease-out":return i?isNaN(parseInt(e.data(t)))?n.slidesEaseOut:parseInt(e.data(t)):isNaN(parseInt(e.data(t)))?n.elementsEaseOut:parseInt(e.data(t));case"delay":return isNaN(parseInt(e.data(t)))?n.elementsDelay:parseInt(e.data(t));case"time":return i?isNaN(parseInt(e.data(t)))?n.slidesTime:parseInt(e.data(t)):"all"==e.data(t)?"all":isNaN(parseInt(e.data(t)))?n.itemsTime:parseInt(e.data(t));case"ignore-ease-out":return 1==parseInt(e.data(t))?!0:0==parseInt(e.data(t))?!1:n.ignoreElementsEaseOut;case"autoplay":return 1==parseInt(e.data(t))?!0:0==parseInt(e.data(t))?!1:n.videoAutoplay;case"loop":return 1==parseInt(e.data(t))?!0:0==parseInt(e.data(t))?!1:n.videoLoop;case"top":case"left":case"width":case"height":case"padding-top":case"padding-right":case"padding-bottom":case"padding-left":case"line-height":case"letter-spacing":case"font-size":return isNaN(parseFloat(e.data(t)))?0:parseFloat(e.data(t));case"in":case"out":case"opacity":return e.data(t);default:return!1}}function L(){return re.find(ce).find(le).find(de)}function Y(e){return L().eq(e)}function x(e,t){var n,i,a=t;this.pause=function(){clearTimeout(n),a-=new Date-i},this.resume=function(){i=new Date,clearTimeout(n),n=window.setTimeout(function(){e()},a)},this.clear=function(){clearTimeout(n)},this.getRemaining=function(){return a},this.resume()}function F(){return/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)}function O(){X(fe).done(function(){ue||(fe=E(),O())})}function R(){var e=re.find(ce).find(".cs-progress-bar");M(),e.animate({width:"100%"},P(Y(fe),"time"))}function M(){var e=re.find(ce).find(".cs-progress-bar");e.stop(),e.css("width",0)}function C(){var t=re.find(ce).find(".cs-navigation"),n=t.find("> .cs-slide-link");n.each(function(){var t=e(this);t.index()==fe?t.addClass("cs-active"):t.removeClass("cs-active")})}function z(e){e!=fe&&(he||ve)&&(k(!1),H(fe,!1,!0).done(function(){fe=e,w()}))}function X(t){n.beforeSlideStart();var i=new e.Deferred;ve=!1;for(var a=0;a<ge.length;a++)ge[a].clear();for(var a=0;a<be.length;a++)be[a].clear();ye.clear(),Y(t).finish(),ie(t),Y(t).finish();var o=Y(t).find(pe);return o.each(function(){var t=e(this);t.finish(),oe(t),t.finish()}),C(),B(t),n.automaticSlide?H(t,!0,!0).done(function(){ve=!0,i.resolve()}):H(t,!0,!1).done(function(){ve=!0,i.resolve()}),i.promise()}function B(t){var n=Y(t),i=n.find(pe),a=0,o=!1,s=new e.Deferred;return he=!1,ne(t).done(function(){R(),he=!0,o=!0,o&&a==i.length&&s.resolve()}),i.each(function(){var t=e(this),n=P(t,"delay");be.push(new x(function(){ae(t).done(function(){_(t)&&W(t),a++,o&&a==i.length&&s.resolve()})},n))}),s.promise()}function H(t,n,i){var a=Y(t),o=a.find(pe),s=n?P(a,"time")+P(a,"ease-in"):0,r=0,c=!1,l=new e.Deferred;return o.each(function(){var a=e(this),s=P(a,"time");if("all"!=s){var d=n?s:0;P(a,"ignore-ease-out")&&(r++,o.length==r&&c&&i&&(U(t),ie(t),l.resolve())),ge.push(new x(function(){oe(a).done(function(){P(a,"ignore-ease-out")||(r++,o.length==r&&c&&i&&(U(t),ie(t),l.resolve()))})},d))}}),ye=new x(function(){he=!1,M(),c=!0,o.length==r&&c&&i&&(U(t),ie(t),l.resolve()),i?o.each(function(){var n=e(this),a=P(n,"time");"all"==a&&(P(n,"ignore-ease-out")&&(r++,o.length==r&&c&&i&&(U(t),ie(t),l.resolve())),oe(n).done(function(){P(n,"ignore-ease-out")||(r++,o.length==r&&c&&i&&(U(t),ie(t),l.resolve()))}))}):l.resolve()},s),l.promise()}function _(e){return V(e)||G(e)}function W(e){V(e)?$(e):Z(e)}function U(e){J(e),ee(e)}function A(e){V(e)?Q(e):te(e)}function V(e){return e.hasClass("cs-yt-iframe")}function q(e){return we[e.attr("id")].player}function j(e){return q(e).getPlayerState()}function $(e){!P(e,"autoplay")||we[e.attr("id")].played_once||F()||q(e).playVideo(),2==j(e)&&q(e).playVideo(),we[e.attr("id")].played_once=!0}function J(t){Y(t).each(function(){var t=e(this);t.find(pe+".cs-yt-iframe").each(function(){Q(e(this))})})}function Q(e){1==j(e)&&q(e).pauseVideo()}function G(e){return e.hasClass("cs-vimeo-iframe")}function K(e){return ke[e.attr("id")].player}function Z(e){!P(e,"autoplay")||ke[e.attr("id")].played_once||F()||K(e).api("play"),K(e).api("paused")&&!ke[e.attr("id")].ended&&ke[e.attr("id")].played_once&&K(e).api("play")}function ee(t){Y(t).each(function(){var t=e(this);t.find(pe+".cs-vimeo-iframe").each(function(){te(e(this))})})}function te(e){K(e).api("pause")}function ne(t){var n=Y(t),i=P(n,"in"),a=P(n,"ease-in"),o=new e.Deferred;if("block"==n.css("display"))return o.resolve().promise();if(me)return n.css({display:"block",top:0,left:0,opacity:P(n,"opacity")}),o.resolve().promise();switch(i){case"fade":n.css({display:"block",top:0,left:0,opacity:0}),n.animate({opacity:P(n,"opacity")},a,function(){o.resolve()});break;case"fadeLeft":n.css({display:"block",top:0,left:S(),opacity:0}),n.animate({opacity:P(n,"opacity"),left:0},a,function(){o.resolve()});break;case"fadeRight":n.css({display:"block",top:0,left:-S(),opacity:0}),n.animate({opacity:P(n,"opacity"),left:0},a,function(){o.resolve()});break;case"slideLeft":n.css({display:"block",top:0,left:S(),opacity:P(n,"opacity")}),n.animate({left:0},a,function(){o.resolve()});break;case"slideRight":n.css({display:"block",top:0,left:-S(),opacity:P(n,"opacity")}),n.animate({left:0},a,function(){o.resolve()});break;case"slideUp":n.css({display:"block",top:I(),left:0,opacity:P(n,"opacity")}),n.animate({top:0},a,function(){o.resolve()});break;case"slideDown":n.css({display:"block",top:-I(),left:0,opacity:P(n,"opacity")}),n.animate({top:0},a,function(){o.resolve()});break;default:n.css({display:"block",top:0,left:0,opacity:P(n,"opacity")}),o.resolve()}return o.promise()}function ie(t){var n=Y(t),i=P(n,"out"),a=P(n,"ease-out"),o=new e.Deferred;if("none"==n.css("display"))return o.resolve().promise();switch(i){case"fade":n.animate({opacity:0},a,function(){n.css({display:"none",opacity:P(n,"opacity")}),o.resolve()});break;case"fadeLeft":n.animate({opacity:0,left:-S()},a,function(){n.css({display:"none",opacity:P(n,"opacity"),left:0}),o.resolve()});break;case"fadeRight":n.animate({opacity:0,left:S()},a,function(){n.css({display:"none",opacity:P(n,"opacity"),left:0}),o.resolve()});break;case"slideLeft":n.animate({left:-S()},a,function(){n.css({display:"none",left:0}),o.resolve()});break;case"slideRight":n.animate({left:S()},a,function(){n.css({display:"none",left:0}),o.resolve()});break;case"slideUp":n.animate({top:-I()},a,function(){n.css({display:"none",top:0}),o.resolve()});break;case"slideDown":n.animate({top:I()},a,function(){n.css({display:"none",top:0}),o.resolve()});break;default:n.css({display:"none"}),o.resolve()}return o.promise()}function ae(t){var n=t.outerWidth(),i=t.outerHeight(),a=P(t,"in"),o=P(t,"ease-in"),s=P(t,"top"),r=P(t,"left"),c=new e.Deferred;if("block"==t.css("display"))return c.resolve().promise();switch(a){case"slideDown":t.css({display:"block",top:-i,left:b(r+v(t).left),opacity:P(t,"opacity")}).animate({top:b(s+v(t).top)},o,function(){c.resolve()});break;case"slideUp":t.css({display:"block",top:I(),left:b(r+v(t).left),opacity:P(t,"opacity")}).animate({top:b(s+v(t).top)},o,function(){c.resolve()});break;case"slideLeft":t.css({display:"block",top:b(s+v(t).top),left:S(),opacity:P(t,"opacity")}).animate({left:b(r+v(t).left)},o,function(){c.resolve()});break;case"slideRight":t.css({display:"block",top:b(s+v(t).top),left:-n,opacity:P(t,"opacity")}).animate({left:b(r+v(t).left)},o,function(){c.resolve()});break;case"fade":t.css({display:"block",top:b(s+v(t).top),left:b(r+v(t).left),opacity:0}).animate({opacity:P(t,"opacity")},o,function(){c.resolve()});break;case"fadeDown":t.css({display:"block",top:-i,left:b(r+v(t).left),opacity:0}).animate({top:b(s+v(t).top),opacity:P(t,"opacity")},o,function(){c.resolve()});break;case"fadeUp":t.css({display:"block",top:I(),left:b(r+v(t).left),opacity:0}).animate({top:b(s+v(t).top),opacity:P(t,"opacity")},o,function(){c.resolve()});break;case"fadeLeft":t.css({display:"block",top:b(s+v(t).top),left:S(),opacity:0}).animate({left:b(r+v(t).left),opacity:P(t,"opacity")},o,function(){c.resolve()});break;case"fadeRight":t.css({display:"block",top:b(s+v(t).top),left:-n,opacity:0}).animate({left:b(r+v(t).left),opacity:P(t,"opacity")},o,function(){c.resolve()});break;case"fadeSmallDown":t.css({display:"block",top:b(s+v(t).top-30),left:b(r+v(t).left),opacity:0}).animate({top:b(s+v(t).top),opacity:P(t,"opacity")},o,function(){c.resolve()});break;case"fadeSmallUp":t.css({display:"block",top:b(s+v(t).top+30),left:b(r+v(t).left),opacity:0}).animate({top:b(s+v(t).top),opacity:P(t,"opacity")},o,function(){c.resolve()});break;case"fadeSmallLeft":t.css({display:"block",top:b(s+v(t).top),left:b(r+v(t).left+30),opacity:0}).animate({left:b(r+v(t).left),opacity:P(t,"opacity")},o,function(){c.resolve()});break;case"fadeSmallRight":t.css({display:"block",top:b(s+v(t).top),left:b(r+v(t).left-30),opacity:0}).animate({left:b(r+v(t).left),opacity:P(t,"opacity")},o,function(){c.resolve()});break;default:t.css({display:"block",top:b(s+v(t).top),left:b(r+v(t).left),opacity:P(t,"opacity")}),c.resolve()}return c.promise()}function oe(t){var n=t.outerWidth(),i=t.outerHeight(),a=P(t,"out"),o=P(t,"ease-out"),s=new e.Deferred;if("none"==t.css("display"))return s.resolve().promise();switch(a){case"slideDown":t.animate({top:I()},o,function(){t.css({display:"none"}),s.resolve()});break;case"slideUp":t.animate({top:-i},o,function(){t.css({display:"none"}),s.resolve()});break;case"slideLeft":t.animate({left:-n},o,function(){t.css({display:"none"}),s.resolve()});break;case"slideRight":t.animate({left:S()},o,function(){t.css({display:"none"}),s.resolve()});break;case"fade":t.animate({opacity:0},o,function(){t.css({display:"none",opacity:P(t,"opacity")}),s.resolve()});break;case"fadeDown":t.animate({top:I(),opacity:0},o,function(){t.css({display:"none",opacity:P(t,"opacity")}),s.resolve()});break;case"fadeUp":t.animate({top:-i,opacity:0},o,function(){t.css({display:"none",opacity:P(t,"opacity")}),s.resolve()});break;case"fadeLeft":t.animate({left:-n,opacity:0},o,function(){t.css({display:"none",opacity:P(t,"opacity")}),s.resolve()});break;case"fadeRight":t.animate({left:S(),opacity:0},o,function(){t.css({display:"none",opacity:P(t,"opacity")}),s.resolve()});break;case"fadeSmallDown":t.animate({top:b(P(t,"top")+v(t).top+30),opacity:0},o,function(){t.css({display:"none",opacity:P(t,"opacity")}),s.resolve()});break;case"fadeSmallUp":t.animate({top:b(P(t,"top")+v(t).top-30),opacity:0},o,function(){t.css({display:"none",opacity:P(t,"opacity")}),s.resolve()});break;case"fadeSmallLeft":t.animate({left:b(P(t,"left")+v(t).left-30),opacity:0},o,function(){t.css({display:"none",opacity:P(t,"opacity")}),s.resolve()});break;case"fadeSmallRight":t.animate({left:b(P(t,"left")+v(t).left+30),opacity:0},o,function(){t.css({display:"none",opacity:P(t,"opacity")}),s.resolve()});break;default:t.css({display:"none"}),s.resolve()}return s.promise()}var se,re=e(t),ce="div.crellyslider",le="ul.cs-slides",de="li.cs-slide",pe="> *",fe=0,ue=!1,he=!1,ve=!1,me=!0,ye=new x(function(){},0),ge=new Array,be=new Array,we={},ke={},Te=1,De=0;if("undefined"==typeof YT||"undefined"==typeof YT.Player)var Se=setInterval(function(){"undefined"!=typeof YT&&"undefined"!=typeof YT.Player&&(clearInterval(Se),i())},100);else i();this.resume=function(){D()},this.pause=function(){T()},this.nextSlide=function(){z(E())},this.previousSlide=function(){z(N())},this.changeSlide=function(e){z(e)},this.getCurrentSlide=function(){return fe},this.getTotalSlides=function(){return se}},e.fn.crellySlider=function(t){var n=e.extend({layout:"fixed",responsive:!0,startWidth:1140,startHeight:500,pauseOnHover:!0,automaticSlide:!0,showControls:!0,showNavigation:!0,showProgressBar:!0,enableSwipe:!0,slidesTime:3e3,elementsDelay:0,elementsTime:"all",slidesEaseIn:300,elementsEaseIn:300,slidesEaseOut:300,elementsEaseOut:300,ignoreElementsEaseOut:!1,videoAutoplay:!0,videoLoop:!1,beforeStart:function(){},beforeSetResponsive:function(){},beforeSlideStart:function(){},beforePause:function(){},beforeResume:function(){}},t);return this.each(function(){if(void 0==e(this).data("crellySlider")){var t=new e.CrellySlider(this,n);e(this).data("crellySlider",t)}})}}(jQuery);
|
2 |
* Plugin Name: Crelly Slider
|
3 |
* Plugin URI: http://fabiorino1.altervista.org/projects/crellyslider
|
4 |
* Description: The first free WordPress slider with elements animations.
|
5 |
+
* Version: 1.1.1
|
6 |
* Author: fabiorino
|
7 |
* Author URI: http://fabiorino1.altervista.org
|
8 |
* License: MIT
|
9 |
*/
|
10 |
|
11 |
+
!function(e){!function(e,t,n){"function"==typeof define&&define.amd?define(["jquery"],function(i){return n(i,e,t),i.mobile}):n(e.jQuery,e,t)}(this,document,function(e,t,n,i){!function(e,t,n,i){function a(e){for(;e&&"undefined"!=typeof e.originalEvent;)e=e.originalEvent;return e}function o(t,n){var o,s,r,c,l,d,p,f,u,h=t.type;if(t=e.Event(t),t.type=n,o=t.originalEvent,s=e.event.props,h.search(/^(mouse|click)/)>-1&&(s=Y),o)for(p=s.length,c;p;)c=s[--p],t[c]=o[c];if(h.search(/mouse(down|up)|click/)>-1&&!t.which&&(t.which=1),-1!==h.search(/^touch/)&&(r=a(o),h=r.touches,l=r.changedTouches,d=h&&h.length?h[0]:l&&l.length?l[0]:i,d))for(f=0,u=P.length;u>f;f++)c=P[f],t[c]=d[c];return t}function s(t){for(var n,i,a={};t;){n=e.data(t,S);for(i in n)n[i]&&(a[i]=a.hasVirtualBinding=!0);t=t.parentNode}return a}function r(t,n){for(var i;t;){if(i=e.data(t,S),i&&(!n||i[n]))return t;t=t.parentNode}return null}function c(){X=!1}function l(){X=!0}function d(){W=0,C.length=0,z=!1,l()}function p(){c()}function f(){u(),F=setTimeout(function(){F=0,d()},e.vmouse.resetTimerDuration)}function u(){F&&(clearTimeout(F),F=0)}function h(t,n,i){var a;return(i&&i[t]||!i&&r(n.target,t))&&(a=o(n,t),e(n.target).trigger(a)),a}function v(t){var n,i=e.data(t.target,E);!z&&(!W||W!==i)&&(n=h("v"+t.type,t),n&&(n.isDefaultPrevented()&&t.preventDefault(),n.isPropagationStopped()&&t.stopPropagation(),n.isImmediatePropagationStopped()&&t.stopImmediatePropagation()))}function m(t){var n,i,o,r=a(t).touches;r&&1===r.length&&(n=t.target,i=s(n),i.hasVirtualBinding&&(W=_++,e.data(n,E,W),u(),p(),M=!1,o=a(t).touches[0],O=o.pageX,R=o.pageY,h("vmouseover",t,i),h("vmousedown",t,i)))}function y(e){X||(M||h("vmousecancel",e,s(e.target)),M=!0,f())}function g(t){if(!X){var n=a(t).touches[0],i=M,o=e.vmouse.moveDistanceThreshold,r=s(t.target);M=M||Math.abs(n.pageX-O)>o||Math.abs(n.pageY-R)>o,M&&!i&&h("vmousecancel",t,r),h("vmousemove",t,r),f()}}function b(e){if(!X){l();var t,n,i=s(e.target);h("vmouseup",e,i),M||(t=h("vclick",e,i),t&&t.isDefaultPrevented()&&(n=a(e).changedTouches[0],C.push({touchID:W,x:n.clientX,y:n.clientY}),z=!0)),h("vmouseout",e,i),M=!1,f()}}function w(t){var n,i=e.data(t,S);if(i)for(n in i)if(i[n])return!0;return!1}function k(){}function D(t){var n=t.substr(1);return{setup:function(){w(this)||e.data(this,S,{});var i=e.data(this,S);i[t]=!0,x[t]=(x[t]||0)+1,1===x[t]&&H.bind(n,v),e(this).bind(n,k),B&&(x.touchstart=(x.touchstart||0)+1,1===x.touchstart&&H.bind("touchstart",m).bind("touchend",b).bind("touchmove",g).bind("scroll",y))},teardown:function(){--x[t],x[t]||H.unbind(n,v),B&&(--x.touchstart,x.touchstart||H.unbind("touchstart",m).unbind("touchmove",g).unbind("touchend",b).unbind("scroll",y));var i=e(this),a=e.data(this,S);a&&(a[t]=!1),i.unbind(n,k),w(this)||i.removeData(S)}}}var T,I,S="virtualMouseBindings",E="virtualTouchID",N="vmouseover vmousedown vmousemove vmouseup vclick vmouseout vmousecancel".split(" "),P="clientX clientY pageX pageY screenX screenY".split(" "),L=e.event.mouseHooks?e.event.mouseHooks.props:[],Y=e.event.props.concat(L),x={},F=0,O=0,R=0,M=!1,C=[],z=!1,X=!1,B="addEventListener"in n,H=e(n),_=1,W=0;for(e.vmouse={moveDistanceThreshold:10,clickDistanceThreshold:10,resetTimerDuration:1500},I=0;I<N.length;I++)e.event.special[N[I]]=D(N[I]);B&&n.addEventListener("click",function(t){var n,i,a,o,s,r,c=C.length,l=t.target;if(c)for(n=t.clientX,i=t.clientY,T=e.vmouse.clickDistanceThreshold,a=l;a;){for(o=0;c>o;o++)if(s=C[o],r=0,a===l&&Math.abs(s.x-n)<T&&Math.abs(s.y-i)<T||e.data(a,E)===s.touchID)return t.preventDefault(),void t.stopPropagation();a=a.parentNode}},!0)}(e,t,n),function(e){e.mobile={}}(e),function(e,t){var i={touch:"ontouchend"in n};e.mobile.support=e.mobile.support||{},e.extend(e.support,i),e.extend(e.mobile.support,i)}(e),function(e,t,i){function a(t,n,a,o){var s=a.type;a.type=n,o?e.event.trigger(a,i,t):e.event.dispatch.call(t,a),a.type=s}var o=e(n),s=e.mobile.support.touch,r="touchmove scroll",c=s?"touchstart":"mousedown",l=s?"touchend":"mouseup",d=s?"touchmove":"mousemove";e.each("touchstart touchmove touchend tap taphold swipe swipeleft swiperight scrollstart scrollstop".split(" "),function(t,n){e.fn[n]=function(e){return e?this.bind(n,e):this.trigger(n)},e.attrFn&&(e.attrFn[n]=!0)}),e.event.special.scrollstart={enabled:!0,setup:function(){function t(e,t){n=t,a(o,n?"scrollstart":"scrollstop",e)}var n,i,o=this,s=e(o);s.bind(r,function(a){e.event.special.scrollstart.enabled&&(n||t(a,!0),clearTimeout(i),i=setTimeout(function(){t(a,!1)},50))})},teardown:function(){e(this).unbind(r)}},e.event.special.tap={tapholdThreshold:750,emitTapOnTaphold:!0,setup:function(){var t=this,n=e(t),i=!1;n.bind("vmousedown",function(s){function r(){clearTimeout(d)}function c(){r(),n.unbind("vclick",l).unbind("vmouseup",r),o.unbind("vmousecancel",c)}function l(e){c(),i||p!==e.target?i&&e.preventDefault():a(t,"tap",e)}if(i=!1,s.which&&1!==s.which)return!1;var d,p=s.target;n.bind("vmouseup",r).bind("vclick",l),o.bind("vmousecancel",c),d=setTimeout(function(){e.event.special.tap.emitTapOnTaphold||(i=!0),a(t,"taphold",e.Event("taphold",{target:p}))},e.event.special.tap.tapholdThreshold)})},teardown:function(){e(this).unbind("vmousedown").unbind("vclick").unbind("vmouseup"),o.unbind("vmousecancel")}},e.event.special.swipe={scrollSupressionThreshold:30,durationThreshold:1e3,horizontalDistanceThreshold:30,verticalDistanceThreshold:30,getLocation:function(e){var n=t.pageXOffset,i=t.pageYOffset,a=e.clientX,o=e.clientY;return 0===e.pageY&&Math.floor(o)>Math.floor(e.pageY)||0===e.pageX&&Math.floor(a)>Math.floor(e.pageX)?(a-=n,o-=i):(o<e.pageY-i||a<e.pageX-n)&&(a=e.pageX-n,o=e.pageY-i),{x:a,y:o}},start:function(t){var n=t.originalEvent.touches?t.originalEvent.touches[0]:t,i=e.event.special.swipe.getLocation(n);return{time:(new Date).getTime(),coords:[i.x,i.y],origin:e(t.target)}},stop:function(t){var n=t.originalEvent.touches?t.originalEvent.touches[0]:t,i=e.event.special.swipe.getLocation(n);return{time:(new Date).getTime(),coords:[i.x,i.y]}},handleSwipe:function(t,n,i,o){if(n.time-t.time<e.event.special.swipe.durationThreshold&&Math.abs(t.coords[0]-n.coords[0])>e.event.special.swipe.horizontalDistanceThreshold&&Math.abs(t.coords[1]-n.coords[1])<e.event.special.swipe.verticalDistanceThreshold){var s=t.coords[0]>n.coords[0]?"swipeleft":"swiperight";return a(i,"swipe",e.Event("swipe",{target:o,swipestart:t,swipestop:n}),!0),a(i,s,e.Event(s,{target:o,swipestart:t,swipestop:n}),!0),!0}return!1},eventInProgress:!1,setup:function(){var t,n=this,i=e(n),a={};t=e.data(this,"mobile-events"),t||(t={length:0},e.data(this,"mobile-events",t)),t.length++,t.swipe=a,a.start=function(t){if(!e.event.special.swipe.eventInProgress){e.event.special.swipe.eventInProgress=!0;var i,s=e.event.special.swipe.start(t),r=t.target,c=!1;a.move=function(t){s&&!t.isDefaultPrevented()&&(i=e.event.special.swipe.stop(t),c||(c=e.event.special.swipe.handleSwipe(s,i,n,r),c&&(e.event.special.swipe.eventInProgress=!1)),Math.abs(s.coords[0]-i.coords[0])>e.event.special.swipe.scrollSupressionThreshold&&t.preventDefault())},a.stop=function(){c=!0,e.event.special.swipe.eventInProgress=!1,o.off(d,a.move),a.move=null},o.on(d,a.move).one(l,a.stop)}},i.on(c,a.start)},teardown:function(){var t,n;t=e.data(this,"mobile-events"),t&&(n=t.swipe,delete t.swipe,t.length--,0===t.length&&e.removeData(this,"mobile-events")),n&&(n.start&&e(this).off(c,n.start),n.move&&o.off(d,n.move),n.stop&&o.off(l,n.stop))}},e.each({scrollstop:"scrollstart",taphold:"tap",swipeleft:"swipe.left",swiperight:"swipe.right"},function(t,n){e.event.special[t]={setup:function(){e(this).bind(n,e.noop)},teardown:function(){e(this).unbind(n)}}})}(e,this)});var t=document.createElement("script");t.src="https://www.youtube.com/iframe_api";var n=document.getElementsByTagName("script")[0];n.parentNode.insertBefore(t,n);(function(){function e(t){return new e.fn.init(t)}function t(e,t,n){return n.contentWindow.postMessage?(e=JSON.stringify({method:e,value:t}),void n.contentWindow.postMessage(e,s)):!1}function n(e){var t,n;try{t=JSON.parse(e.data),n=t.event||t.method}catch(i){}if("ready"!=n||o||(o=!0),!/^https?:\/\/player.vimeo.com/.test(e.origin))return!1;"*"===s&&(s=e.origin),e=t.value;var r=t.data,c=""===c?null:t.player_id;return t=c?a[c][n]:a[n],n=[],t?(void 0!==e&&n.push(e),r&&n.push(r),c&&n.push(c),0<n.length?t.apply(null,n):t.call()):!1}function i(e,t,n){n?(a[n]||(a[n]={}),a[n][e]=t):a[e]=t}var a={},o=!1,s="*";return e.fn=e.prototype={element:null,init:function(e){return"string"==typeof e&&(e=document.getElementById(e)),this.element=e,this},api:function(e,n){if(!this.element||!e)return!1;var a=this.element,o=""!==a.id?a.id:null,s=n&&n.constructor&&n.call&&n.apply?null:n,r=n&&n.constructor&&n.call&&n.apply?n:null;return r&&i(e,r,o),t(e,s,a),this},addEvent:function(e,n){if(!this.element)return!1;var a=this.element,s=""!==a.id?a.id:null;return i(e,n,s),"ready"!=e?t("addEventListener",e,a):"ready"==e&&o&&n.call(null,s),this},removeEvent:function(e){if(!this.element)return!1;var n=this.element,i=""!==n.id?n.id:null;e:{if(i&&a[i]){if(!a[i][e]){i=!1;break e}a[i][e]=null}else{if(!a[e]){i=!1;break e}a[e]=null}i=!0}"ready"!=e&&i&&t("removeEventListener",e,n)}},e.fn.init.prototype=e.fn,window.addEventListener?window.addEventListener("message",n,!1):window.attachEvent("onmessage",n),window.Froogaloop=window.$f=e})();e.CrellySlider=function(t,n){function i(){if(se.wrapInner('<div class="crellyslider" />'),se.find(re+" > ul").addClass("cs-slides"),se.find(re+" "+ce+" > li").addClass("cs-slide"),oe=P().length,0==oe)return!1;if(1==oe){var e=L(0),t=se.find(re).find(ce);e.clone().prependTo(t),oe++}if(n.showControls&&se.find(re).append('<div class="cs-controls"><span class="cs-next"></span><span class="cs-previous"></span></div>'),n.showNavigation){for(var i='<div class="cs-navigation">',o=0;oe>o;o++)i+='<span class="cs-slide-link"></span>';i+="</div>",se.find(re).append(i)}n.showProgressBar?se.find(re).append('<div class="cs-progress-bar"></div>'):se.find(re).append('<div class="cs-progress-bar cs-progress-bar-hidden"></div>'),se.css("display","block"),n.responsive&&y(),u(),P().find(".cs-background-link").html(" ").data({left:0,top:0,"in":"none",out:"none",easeIn:0,easeOut:0,delay:0,time:"all"}),p(),a().done(function(){var e=setInterval(function(){"complete"==document.readyState&&se.find(re).find(".cs-preloader").length>0&&(clearInterval(e),r())},100)})}function a(){var t=new e.Deferred,n=P().find(".cs-yt-iframe, .cs-vimeo-iframe").length,i=0;return 0==n?t.resolve().promise():(P().find(".cs-yt-iframe, .cs-vimeo-iframe").each(function(){var a=e(this);a.one("load",function(){i++,i==n&&o().done(function(){s().done(function(){t.resolve()})})})}),t.promise())}function o(){var t,n=new e.Deferred,i=P(),a=i.find(de+".cs-yt-iframe").length,o=0;return 0==a?n.resolve().promise():(i.each(function(){var i=e(this),s=i.find(de+".cs-yt-iframe");s.each(function(){var i=e(this);i.uniqueId(),i.attr("id","cs-yt-iframe-"+i.attr("id"));var s=new YT.Player(i.attr("id"),{events:{onReady:function(){o++,o==a&&n.resolve()},onStateChange:function(e){e.data===YT.PlayerState.ENDED&&N(i,"loop")&&s.playVideo()}}});t={player:s,played_once:!1},be[i.attr("id")]=t})}),n.promise())}function s(){var t,n=new e.Deferred,i=P(),a=i.find(de+".cs-vimeo-iframe").length,o=0;return 0==a?n.resolve().promise():(i.each(function(){var i=e(this),s=i.find(de+".cs-vimeo-iframe");s.each(function(){var i=e(this);i.uniqueId(),i.attr("id","cs-vimeo-iframe-"+i.attr("id")),i.attr("src",i.attr("src")+"&player_id="+i.attr("id"));var s=$f(i[0]);s.addEvent("ready",function(){s.addEvent("finish",function(){we[i.attr("id")].ended=!0}),s.addEvent("play",function(){we[i.attr("id")].played_once=!0,we[i.attr("id")].ended=!1}),N(i,"loop")&&s.api("setLoop",!0),o++,o==a&&n.resolve()}),t={player:s,played_once:!1,ended:!1},we[i.attr("id")]=t})}),n.promise())}function r(){n.responsive&&y(),u(),De=e(window).width(),c(),d(),f(),n.beforeStart(),n.responsive?v():b()}function c(){P().each(function(){var t=e(this);t.find(de).each(function(){var t=e(this);t.find("*").each(function(){var t=e(this);l(t,!0)}),l(t,!1)}),t.css("display","none"),t.data("opacity",parseFloat(t.css("opacity")))})}function l(e,t){e.data("width",parseFloat(e.width())),e.data("height",parseFloat(e.height())),e.data("letter-spacing",parseFloat(e.css("letter-spacing"))),e.data("font-size",parseFloat(e.css("font-size"))),"px"==e.css("line-height").slice(-2).toLowerCase()?e.data("line-height",parseFloat(e.css("line-height"))):e.data("line-height",parseFloat(e.css("line-height"))*N(e,"font-size")),e.data("padding-top",parseFloat(e.css("padding-top"))),e.data("padding-right",parseFloat(e.css("padding-right"))),e.data("padding-bottom",parseFloat(e.css("padding-bottom"))),e.data("padding-left",parseFloat(e.css("padding-left"))),e.data("opacity",parseFloat(e.css("opacity"))),t||e.css("display","none")}function d(){n.responsive&&e(window).resize(function(){De!=e(window).width()&&("full-width"==n.layout&&T()!=e(se).width()||e(se).width()<T()||e(se).width()>T()&&T()<n.startWidth)&&v()}),se.find(re).find(".cs-controls > .cs-previous").click(function(){C(E())}),se.find(re).find(".cs-controls > .cs-next").click(function(){C(S())}),n.enableSwipe&&(se.find(re).on("swipeleft",function(){D(),C(S())}),se.find(re).on("swiperight",function(){D(),C(E())})),se.find(re).find(".cs-navigation > .cs-slide-link").click(function(){C(e(this).index())}),n.pauseOnHover&&(se.find(re).find(ce).hover(function(){k()}),se.find(re).find(ce).mouseleave(function(){D()}))}function p(){function t(){se.find(re).append('<div class="cs-preloader"><div class="cs-bg"></div><div class="cs-loader"><div class="cs-spinner"></div></div></div>'),se.find(re).find(".cs-preloader").css({"background-color":L(0).css("background-color"),"background-image":L(0).css("background-image"),"background-position":L(0).css("background-position"),"background-repeat":L(0).css("background-repeat"),"background-size":L(0).css("background-size")}),se.find(re).find(".cs-preloader > .cs-bg").css({"background-color":L(0).css("background-color"),"background-image":L(0).css("background-image"),"background-position":L(0).css("background-position"),"background-repeat":L(0).css("background-repeat"),"background-size":L(0).css("background-size")})}se.find(re).find(ce).css("visibility","hidden"),se.find(re).find(".cs-progress-bar").css("display","none"),se.find(re).find(".cs-navigation").css("display","none"),se.find(re).find(".cs-controls").css("display","none");var n=L(0).css("background-image");n=n.replace(/^url\(["']?/,"").replace(/["']?\)$/,""),n.match(/\.(jpeg|jpg|gif|png|bmp|tiff|tif)$/)?e("<img>").load(function(){t()}).attr("src",n).each(function(){this.complete&&e(this).load()}):t()}function f(){se.find(re).find(ce).css("visibility","visible"),se.find(re).find(".cs-progress-bar").css("display","block"),se.find(re).find(".cs-navigation").css("display","block"),se.find(re).find(".cs-controls").css("display","block"),te(L(0)),L(0).finish(),se.find(re).find(".cs-preloader").animate({opacity:0},300,function(){se.find(re).find(".cs-preloader").remove()})}function u(){var e,t,i=n.layout;switch(i){case"fixed":e=n.startWidth,t=n.startHeight,se.find(re).css({width:g(e),height:g(t)}),P().css({width:g(e),height:g(t)});break;case"full-width":e=se.width(),t=n.startHeight,se.find(re).css({width:e,height:g(t)}),P().css({width:e,height:g(t)});break;default:return!1}}function h(e){var t=(I()-n.startHeight)/2,i=(T()-n.startWidth)/2,a=0,o=0;return t>0&&(a=t),i>0&&(o=i),{top:a,left:o}}function v(){n.beforeSetResponsive();var t=P();w(!0),t.each(function(){var t=e(this),n=t.find(de);t.finish(),te(t),t.finish(),n.each(function(){var t=e(this);t.finish(),ie(t),t.finish(),H(t)&&U(t)})}),y(),u(),t.each(function(){var t=e(this),n=t.find(de);n.each(function(){var t=e(this);t.find("*").each(function(){var t=e(this);m(t)}),m(t),t.finish(),ae(t),t.finish(),H(t)&&U(t)}),t.finish(),ne(t),t.finish()}),De=e(window).width(),b()}function m(e){e.css({top:g(N(e,"top")+h(e).top),left:g(N(e,"left")+h(e).left),"padding-top":g(N(e,"padding-top")),"padding-right":g(N(e,"padding-right")),"padding-bottom":g(N(e,"padding-bottom")),"padding-left":g(N(e,"padding-left"))}),e.is("input")||e.is("button")||e.text().trim().length?e.css({"line-height":g(N(e,"line-height"))+"px","letter-spacing":g(N(e,"letter-spacing")),"font-size":g(N(e,"font-size"))}):e.css({width:g(N(e,"width")),height:g(N(e,"height"))})}function y(){var e=se.width(),t=n.startWidth;ke=e>=t||!n.responsive?1:e/t}function g(e){return e*ke}function b(){n.automaticSlide?F():z(pe),ve=!1}function w(t){for(var n=0;n<ye.length;n++)ye[n].clear();for(var n=0;n<ge.length;n++)ge[n].clear();me.clear(),P().each(function(){var n=e(this);t?n.finish():n.stop(!0,!0),n.find(de).each(function(){var n=e(this);t?n.finish():n.stop(!0,!0)})}),R()}function k(){if(!fe&&ue){n.beforePause();var e=se.find(re).find(".cs-progress-bar");e.stop(!0),me.pause(),fe=!0}}function D(){if(fe&&ue){n.beforeResume();var e=se.find(re).find(".cs-progress-bar"),t=(N(L(pe),"time"),me.getRemaining());e.animate({width:"100%"},t),me.resume(),fe=!1}}function T(){return se.find(re).width()}function I(){return se.find(re).height()}function S(){return pe+1==oe?0:pe+1}function E(){return 0>pe-1?oe-1:pe-1}function N(e,t){var i;switch(i=e.parent("ul").hasClass("cs-slides")?!0:!1,t){case"ease-in":return i?isNaN(parseInt(e.data(t)))?n.slidesEaseIn:parseInt(e.data(t)):isNaN(parseInt(e.data(t)))?n.elementsEaseIn:parseInt(e.data(t));case"ease-out":return i?isNaN(parseInt(e.data(t)))?n.slidesEaseOut:parseInt(e.data(t)):isNaN(parseInt(e.data(t)))?n.elementsEaseOut:parseInt(e.data(t));case"delay":return isNaN(parseInt(e.data(t)))?n.elementsDelay:parseInt(e.data(t));case"time":return i?isNaN(parseInt(e.data(t)))?n.slidesTime:parseInt(e.data(t)):"all"==e.data(t)?"all":isNaN(parseInt(e.data(t)))?n.itemsTime:parseInt(e.data(t));case"ignore-ease-out":return 1==parseInt(e.data(t))?!0:0==parseInt(e.data(t))?!1:n.ignoreElementsEaseOut;case"autoplay":return 1==parseInt(e.data(t))?!0:0==parseInt(e.data(t))?!1:n.videoAutoplay;case"loop":return 1==parseInt(e.data(t))?!0:0==parseInt(e.data(t))?!1:n.videoLoop;case"top":case"left":case"width":case"height":case"padding-top":case"padding-right":case"padding-bottom":case"padding-left":case"line-height":case"letter-spacing":case"font-size":return isNaN(parseFloat(e.data(t)))?0:parseFloat(e.data(t));case"in":case"out":case"opacity":return e.data(t);default:return!1}}function P(){return se.find(re).find(ce).find(le)}function L(e){return P().eq(e)}function Y(e,t){var n,i,a=t;this.pause=function(){clearTimeout(n),a-=new Date-i},this.resume=function(){i=new Date,clearTimeout(n),n=window.setTimeout(function(){e()},a)},this.clear=function(){clearTimeout(n)},this.getRemaining=function(){return a},this.resume()}function x(){return/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)}function F(){z(pe).done(function(){fe||(pe=S(),F())})}function O(){var e=se.find(re).find(".cs-progress-bar");R(),e.animate({width:"100%"},N(L(pe),"time"))}function R(){var e=se.find(re).find(".cs-progress-bar");e.stop(),e.css("width",0)}function M(){var t=se.find(re).find(".cs-navigation"),n=t.find("> .cs-slide-link");n.each(function(){var t=e(this);t.index()==pe?t.addClass("cs-active"):t.removeClass("cs-active")})}function C(e){e!=pe&&(ue||he)&&(w(!1),B(pe,!1,!0).done(function(){pe=e,b()}))}function z(t){n.beforeSlideStart();var i=new e.Deferred;he=!1;for(var a=0;a<ye.length;a++)ye[a].clear();for(var a=0;a<ge.length;a++)ge[a].clear();me.clear(),L(t).finish(),ne(t),L(t).finish();var o=L(t).find(de);return o.each(function(){var t=e(this);t.finish(),ae(t),t.finish()}),M(),X(t),n.automaticSlide?B(t,!0,!0).done(function(){he=!0,i.resolve()}):B(t,!0,!1).done(function(){he=!0,i.resolve()}),i.promise()}function X(t){var n=L(t),i=n.find(de),a=0,o=!1,s=new e.Deferred;return ue=!1,te(t).done(function(){O(),ue=!0,o=!0,o&&a==i.length&&s.resolve()}),i.each(function(){var t=e(this),n=N(t,"delay");ge.push(new Y(function(){ie(t).done(function(){H(t)&&_(t),a++,o&&a==i.length&&s.resolve()})},n))}),s.promise()}function B(t,n,i){var a=L(t),o=a.find(de),s=n?N(a,"time")+N(a,"ease-in"):0,r=0,c=!1,l=new e.Deferred;return o.each(function(){var a=e(this),s=N(a,"time");if("all"!=s){var d=n?s:0;N(a,"ignore-ease-out")&&(r++,o.length==r&&c&&i&&(W(t),ne(t),l.resolve())),ye.push(new Y(function(){ae(a).done(function(){N(a,"ignore-ease-out")||(r++,o.length==r&&c&&i&&(W(t),ne(t),l.resolve()))})},d))}}),me=new Y(function(){ue=!1,R(),c=!0,o.length==r&&c&&i&&(W(t),ne(t),l.resolve()),i?o.each(function(){var n=e(this),a=N(n,"time");"all"==a&&(N(n,"ignore-ease-out")&&(r++,o.length==r&&c&&i&&(W(t),ne(t),l.resolve())),ae(n).done(function(){N(n,"ignore-ease-out")||(r++,o.length==r&&c&&i&&(W(t),ne(t),l.resolve()))}))}):l.resolve()},s),l.promise()}function H(e){return A(e)||Q(e)}function _(e){A(e)?q(e):K(e)}function W(e){$(e),Z(e)}function U(e){A(e)?J(e):ee(e)}function A(e){return e.hasClass("cs-yt-iframe")}function V(e){return be[e.attr("id")].player}function j(e){return V(e).getPlayerState()}function q(e){!N(e,"autoplay")||be[e.attr("id")].played_once||x()||V(e).playVideo(),2==j(e)&&V(e).playVideo(),be[e.attr("id")].played_once=!0}function $(t){L(t).each(function(){var t=e(this);t.find(de+".cs-yt-iframe").each(function(){J(e(this))})})}function J(e){1==j(e)&&V(e).pauseVideo()}function Q(e){return e.hasClass("cs-vimeo-iframe")}function G(e){return we[e.attr("id")].player}function K(e){!N(e,"autoplay")||we[e.attr("id")].played_once||x()||G(e).api("play"),G(e).api("paused")&&!we[e.attr("id")].ended&&we[e.attr("id")].played_once&&G(e).api("play")}function Z(t){L(t).each(function(){var t=e(this);t.find(de+".cs-vimeo-iframe").each(function(){ee(e(this))})})}function ee(e){G(e).api("pause")}function te(t){var n=L(t),i=N(n,"in"),a=N(n,"ease-in"),o=new e.Deferred;if("block"==n.css("display"))return o.resolve().promise();if(ve)return n.css({display:"block",top:0,left:0,opacity:N(n,"opacity")}),o.resolve().promise();switch(i){case"fade":n.css({display:"block",top:0,left:0,opacity:0}),n.animate({opacity:N(n,"opacity")},a,function(){o.resolve()});break;case"fadeLeft":n.css({display:"block",top:0,left:T(),opacity:0}),n.animate({opacity:N(n,"opacity"),left:0},a,function(){o.resolve()});break;case"fadeRight":n.css({display:"block",top:0,left:-T(),opacity:0}),n.animate({opacity:N(n,"opacity"),left:0},a,function(){o.resolve()});break;case"slideLeft":n.css({display:"block",top:0,left:T(),opacity:N(n,"opacity")}),n.animate({left:0},a,function(){o.resolve()});break;case"slideRight":n.css({display:"block",top:0,left:-T(),opacity:N(n,"opacity")}),n.animate({left:0},a,function(){o.resolve()});break;case"slideUp":n.css({display:"block",top:I(),left:0,opacity:N(n,"opacity")}),n.animate({top:0},a,function(){o.resolve()});break;case"slideDown":n.css({display:"block",top:-I(),left:0,opacity:N(n,"opacity")}),n.animate({top:0},a,function(){o.resolve()});break;default:n.css({display:"block",top:0,left:0,opacity:N(n,"opacity")}),o.resolve()}return o.promise()}function ne(t){var n=L(t),i=N(n,"out"),a=N(n,"ease-out"),o=new e.Deferred;if("none"==n.css("display"))return o.resolve().promise();switch(i){case"fade":n.animate({opacity:0},a,function(){n.css({display:"none",opacity:N(n,"opacity")}),o.resolve()});break;case"fadeLeft":n.animate({opacity:0,left:-T()},a,function(){n.css({display:"none",opacity:N(n,"opacity"),left:0}),o.resolve()});break;case"fadeRight":n.animate({opacity:0,left:T()},a,function(){n.css({display:"none",opacity:N(n,"opacity"),left:0}),o.resolve()});break;case"slideLeft":n.animate({left:-T()},a,function(){n.css({display:"none",left:0}),o.resolve()});break;case"slideRight":n.animate({left:T()},a,function(){n.css({display:"none",left:0}),o.resolve()});break;case"slideUp":n.animate({top:-I()},a,function(){n.css({display:"none",top:0}),o.resolve()});break;case"slideDown":n.animate({top:I()},a,function(){n.css({display:"none",top:0}),o.resolve()});break;default:n.css({display:"none"}),o.resolve()}return o.promise()}function ie(t){var n=t.outerWidth(),i=t.outerHeight(),a=N(t,"in"),o=N(t,"ease-in"),s=N(t,"top"),r=N(t,"left"),c=new e.Deferred;if("block"==t.css("display"))return c.resolve().promise();switch(a){case"slideDown":t.css({display:"block",top:-i,left:g(r+h(t).left),opacity:N(t,"opacity")}).animate({top:g(s+h(t).top)},o,function(){c.resolve()});break;case"slideUp":t.css({display:"block",top:I(),left:g(r+h(t).left),opacity:N(t,"opacity")}).animate({top:g(s+h(t).top)},o,function(){c.resolve()});break;case"slideLeft":t.css({display:"block",top:g(s+h(t).top),left:T(),opacity:N(t,"opacity")}).animate({left:g(r+h(t).left)},o,function(){c.resolve()});break;case"slideRight":t.css({display:"block",top:g(s+h(t).top),left:-n,opacity:N(t,"opacity")}).animate({left:g(r+h(t).left)},o,function(){c.resolve()});break;case"fade":t.css({display:"block",top:g(s+h(t).top),left:g(r+h(t).left),opacity:0}).animate({opacity:N(t,"opacity")},o,function(){c.resolve()});break;case"fadeDown":t.css({display:"block",top:-i,left:g(r+h(t).left),opacity:0}).animate({top:g(s+h(t).top),opacity:N(t,"opacity")},o,function(){c.resolve()});break;case"fadeUp":t.css({display:"block",top:I(),left:g(r+h(t).left),opacity:0}).animate({top:g(s+h(t).top),opacity:N(t,"opacity")},o,function(){c.resolve()});break;case"fadeLeft":t.css({display:"block",top:g(s+h(t).top),left:T(),opacity:0}).animate({left:g(r+h(t).left),opacity:N(t,"opacity")},o,function(){c.resolve()});break;case"fadeRight":t.css({display:"block",top:g(s+h(t).top),left:-n,opacity:0}).animate({left:g(r+h(t).left),opacity:N(t,"opacity")},o,function(){c.resolve()});break;case"fadeSmallDown":t.css({display:"block",top:g(s+h(t).top-30),left:g(r+h(t).left),opacity:0}).animate({top:g(s+h(t).top),opacity:N(t,"opacity")},o,function(){c.resolve()});break;case"fadeSmallUp":t.css({display:"block",top:g(s+h(t).top+30),left:g(r+h(t).left),opacity:0}).animate({top:g(s+h(t).top),opacity:N(t,"opacity")},o,function(){c.resolve()});break;case"fadeSmallLeft":t.css({display:"block",top:g(s+h(t).top),left:g(r+h(t).left+30),opacity:0}).animate({left:g(r+h(t).left),opacity:N(t,"opacity")},o,function(){c.resolve()});break;case"fadeSmallRight":t.css({display:"block",top:g(s+h(t).top),left:g(r+h(t).left-30),opacity:0}).animate({left:g(r+h(t).left),opacity:N(t,"opacity")},o,function(){c.resolve()});break;default:t.css({display:"block",top:g(s+h(t).top),left:g(r+h(t).left),opacity:N(t,"opacity")}),c.resolve()}return c.promise()}function ae(t){var n=t.outerWidth(),i=t.outerHeight(),a=N(t,"out"),o=N(t,"ease-out"),s=new e.Deferred;if("none"==t.css("display"))return s.resolve().promise();switch(a){case"slideDown":t.animate({top:I()},o,function(){t.css({display:"none"}),s.resolve()});break;case"slideUp":t.animate({top:-i},o,function(){t.css({display:"none"}),s.resolve()});break;case"slideLeft":t.animate({left:-n},o,function(){t.css({display:"none"}),s.resolve()});break;case"slideRight":t.animate({left:T()},o,function(){t.css({display:"none"}),s.resolve()});break;case"fade":t.animate({opacity:0},o,function(){t.css({display:"none",opacity:N(t,"opacity")}),s.resolve()});break;case"fadeDown":t.animate({top:I(),opacity:0},o,function(){t.css({display:"none",opacity:N(t,"opacity")}),s.resolve()});break;case"fadeUp":t.animate({top:-i,opacity:0},o,function(){t.css({display:"none",opacity:N(t,"opacity")}),s.resolve()});break;case"fadeLeft":t.animate({left:-n,opacity:0},o,function(){t.css({display:"none",opacity:N(t,"opacity")}),s.resolve()});break;case"fadeRight":t.animate({left:T(),opacity:0},o,function(){t.css({display:"none",opacity:N(t,"opacity")}),s.resolve()});break;case"fadeSmallDown":t.animate({top:g(N(t,"top")+h(t).top+30),opacity:0},o,function(){t.css({display:"none",opacity:N(t,"opacity")}),s.resolve()});break;case"fadeSmallUp":t.animate({top:g(N(t,"top")+h(t).top-30),opacity:0},o,function(){t.css({display:"none",opacity:N(t,"opacity")}),s.resolve()});break;case"fadeSmallLeft":t.animate({left:g(N(t,"left")+h(t).left-30),opacity:0},o,function(){t.css({display:"none",opacity:N(t,"opacity")}),s.resolve()});break;case"fadeSmallRight":t.animate({left:g(N(t,"left")+h(t).left+30),opacity:0},o,function(){t.css({display:"none",opacity:N(t,"opacity")}),s.resolve()});break;default:t.css({display:"none"}),s.resolve()}return s.promise()}var oe,se=e(t),re="div.crellyslider",ce="ul.cs-slides",le="li.cs-slide",de="> *",pe=0,fe=!1,ue=!1,he=!1,ve=!0,me=new Y(function(){},0),ye=new Array,ge=new Array,be={},we={},ke=1,De=0;if("undefined"==typeof YT||"undefined"==typeof YT.Player)var Te=setInterval(function(){"undefined"!=typeof YT&&"undefined"!=typeof YT.Player&&(clearInterval(Te),i())},100);else i();this.resume=function(){D()},this.pause=function(){k()},this.nextSlide=function(){C(S())},this.previousSlide=function(){C(E())},this.changeSlide=function(e){C(e)},this.getCurrentSlide=function(){return pe},this.getTotalSlides=function(){return oe}},e.fn.crellySlider=function(t){var n=e.extend({layout:"fixed",responsive:!0,startWidth:1140,startHeight:500,pauseOnHover:!0,automaticSlide:!0,showControls:!0,showNavigation:!0,showProgressBar:!0,enableSwipe:!0,slidesTime:3e3,elementsDelay:0,elementsTime:"all",slidesEaseIn:300,elementsEaseIn:300,slidesEaseOut:300,elementsEaseOut:300,ignoreElementsEaseOut:!1,videoAutoplay:!1,videoLoop:!1,beforeStart:function(){},beforeSetResponsive:function(){},beforeSlideStart:function(){},beforePause:function(){},beforeResume:function(){}},t);return this.each(function(){if(void 0==e(this).data("crellySlider")){var t=new e.CrellySlider(this,n);e(this).data("crellySlider",t)}})}}(jQuery);
|
readme.txt
CHANGED
@@ -1,29 +1,27 @@
|
|
1 |
=== Crelly Slider ===
|
2 |
Contributors: fabiorino
|
3 |
-
Donate link: http://
|
4 |
-
Tags:
|
5 |
Requires at least: 3.6.0
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 1.1.
|
8 |
License: MIT
|
9 |
License URI: http://opensource.org/licenses/MIT
|
10 |
|
11 |
-
|
12 |
|
13 |
== Description ==
|
14 |
|
15 |
-
|
16 |
<br />
|
17 |
-
Crelly Slider is a Free / Open Source WordPress slider with a powerful Drag & Drop Builder. You can add Texts and Images using animations and transitions. It's perfect to display your creative content in posts and pages. With it's tons of features, Crelly Slider is the best free solution for your online WebSite.
|
18 |
<br />
|
19 |
-
<
|
20 |
-
<a href="http://fabiorino1.altervista.org/projects/crellyslider/">Official WebSite (with live demo)</a>
|
21 |
<br />
|
22 |
= User Friendly Admin Panel =
|
23 |
Crelly Slider does not require any Coding Knowledge. With the simple admin panel you will be able to create the sliders in the easiest way. Upload images with the default WordPress interface or choose colors using the picker.
|
24 |
|
25 |
= High Cross Browser Compatibility =
|
26 |
-
Most of the animations and the transitions are written in jQuery (using the "animate" function). In this way we can assure the compatibility with modern (even Android and iOs) and older browsers
|
27 |
|
28 |
= Drag and Drop Builder =
|
29 |
How can you position all the elements in to the slider area? You just simply drag them in to the desired position. Like in Powerpoint, you just have to move the object around the Slide.
|
@@ -45,7 +43,7 @@ Click Install.
|
|
45 |
<br />
|
46 |
Click Activate.
|
47 |
<br />
|
48 |
-
You can find the documentation <a href="http://
|
49 |
|
50 |
== Screenshots ==
|
51 |
|
@@ -56,6 +54,9 @@ You can find the documentation <a href="http://fabiorino1.altervista.org/project
|
|
56 |
|
57 |
== Changelog ==
|
58 |
|
|
|
|
|
|
|
59 |
= 1.1.0 =
|
60 |
* Awesome community: the slider is now translated in 8 different languages! Thank you!<br />English,<br />Italian,<br />Spanish (<a href="https://github.com/eduardoarandah">Eduardo Aranda</a>),<br />Russian (<a href="http://dymskiy.ru/">Andrey Dymskiy</a>),<br />Slovak (<a href="https://github.com/webmandesign">Oliver Juhas</a>),<br />Serbian (Branislav Pakic),<br />French (sLy kereven),<br />German (Andreas Dolinar, <a href="http://elokron.de/">Jan Adams</a>)
|
61 |
* New feature: Duplicate sliders and slides
|
1 |
=== Crelly Slider ===
|
2 |
Contributors: fabiorino
|
3 |
+
Donate link: http://crellyslider.tk/contribute-and-support/
|
4 |
+
Tags: animations, layers, texts, images, videos
|
5 |
Requires at least: 3.6.0
|
6 |
+
Tested up to: 4.7
|
7 |
+
Stable tag: 1.1.1
|
8 |
License: MIT
|
9 |
License URI: http://opensource.org/licenses/MIT
|
10 |
|
11 |
+
A free responsive slider that supports layers. Add texts, images, videos and beautify them with transitions and animations.
|
12 |
|
13 |
== Description ==
|
14 |
|
15 |
+
Crelly Slider is a Free / Open Source responsive WordPress slider that supports layers. You can add Texts, Images, YouTube/Vimeo videos using a powerful Drag & Drop Builder and animate each of them. It is perfect to display your creative content in posts and pages.
|
16 |
<br />
|
|
|
17 |
<br />
|
18 |
+
<a href="http://crellyslider.tk/">Official WebSite (with live demo)</a>
|
|
|
19 |
<br />
|
20 |
= User Friendly Admin Panel =
|
21 |
Crelly Slider does not require any Coding Knowledge. With the simple admin panel you will be able to create the sliders in the easiest way. Upload images with the default WordPress interface or choose colors using the picker.
|
22 |
|
23 |
= High Cross Browser Compatibility =
|
24 |
+
Most of the animations and the transitions are written in jQuery (using the "animate" function). In this way we can assure the compatibility with modern (even Android and iOs) and older browsers.
|
25 |
|
26 |
= Drag and Drop Builder =
|
27 |
How can you position all the elements in to the slider area? You just simply drag them in to the desired position. Like in Powerpoint, you just have to move the object around the Slide.
|
43 |
<br />
|
44 |
Click Activate.
|
45 |
<br />
|
46 |
+
You can find the documentation <a href="http://crellyslider.tk/documentation/">here</a>.
|
47 |
|
48 |
== Screenshots ==
|
49 |
|
54 |
|
55 |
== Changelog ==
|
56 |
|
57 |
+
= 1.1.1 =
|
58 |
+
* Bug fix: sometimes, the slider got stuck at loading screen
|
59 |
+
|
60 |
= 1.1.0 =
|
61 |
* Awesome community: the slider is now translated in 8 different languages! Thank you!<br />English,<br />Italian,<br />Spanish (<a href="https://github.com/eduardoarandah">Eduardo Aranda</a>),<br />Russian (<a href="http://dymskiy.ru/">Andrey Dymskiy</a>),<br />Slovak (<a href="https://github.com/webmandesign">Oliver Juhas</a>),<br />Serbian (Branislav Pakic),<br />French (sLy kereven),<br />German (Andreas Dolinar, <a href="http://elokron.de/">Jan Adams</a>)
|
62 |
* New feature: Duplicate sliders and slides
|
wordpress/admin.php
CHANGED
@@ -45,13 +45,13 @@ class CrellySliderAdmin {
|
|
45 |
>
|
46 |
|
47 |
<noscript class="cs-no-js">
|
48 |
-
<div class="cs-message cs-message-error" style="display: block;"><?php _e('JavaScript must be enabled to view this page correctly.', '
|
49 |
</noscript>
|
50 |
|
51 |
-
<div class="cs-message cs-message-ok" style="display: none;"><?php _e('Operation completed successfully.', '
|
52 |
-
<div class="cs-message cs-message-error" style="display: none;"><?php _e('Something went wrong.', '
|
53 |
<?php if(! $edit): ?>
|
54 |
-
<div class="cs-message cs-message-warning"><?php _e('When you\'ll click "Save Settings", you\'ll be able to add slides and elements.', '
|
55 |
<?php endif; ?>
|
56 |
|
57 |
<h2 class="cs-logo" title="Crelly Slider">
|
@@ -116,11 +116,11 @@ class CrellySliderAdmin {
|
|
116 |
|
117 |
<li>
|
118 |
<span class="cs-icon icon-settings"></span>
|
119 |
-
<a id="cs-show-slider-settings"><?php _e('Slider Settings', '
|
120 |
</li>
|
121 |
<li>
|
122 |
<span class="cs-icon icon-edit"></span>
|
123 |
-
<a id="cs-show-slides"><?php _e('Edit Slides', '
|
124 |
</li>
|
125 |
</ul>
|
126 |
|
@@ -140,7 +140,7 @@ class CrellySliderAdmin {
|
|
140 |
|
141 |
<br />
|
142 |
|
143 |
-
<a class="cs-button cs-is-primary cs-save-settings" data-id="<?php echo $id; ?>" href="#"><?php _e('Save Settings', '
|
144 |
|
145 |
</div>
|
146 |
|
@@ -240,16 +240,16 @@ class CrellySliderAdmin {
|
|
240 |
public static function localization() {
|
241 |
// Here the translations for the admin.js file
|
242 |
$crellyslider_translations = array(
|
243 |
-
'slide' => __('Slide', '
|
244 |
-
'slide_delete_confirm' => __('The slide will be deleted. Are you sure?', '
|
245 |
-
'slide_delete_just_one' => __('You can\'t delete this. You must have at least one slide.', '
|
246 |
-
'slider_delete_confirm' => __('The slider will be deleted. Are you sure?', '
|
247 |
-
'text_element_default_html' => __('Text element', '
|
248 |
-
'slide_live_preview' => __('Live preview', '
|
249 |
-
'slide_stop_preview' => __('Stop preview', '
|
250 |
-
'duplicate_slide' => __('Duplicate slide', '
|
251 |
-
'remove_slide' => __('Delete slide', '
|
252 |
-
'exit_without_saving' => __('All unsaved changes will be lost. Are you sure you want to leave this page?', '
|
253 |
);
|
254 |
wp_localize_script('crellyslider-admin', 'crellyslider_translations', $crellyslider_translations);
|
255 |
}
|
45 |
>
|
46 |
|
47 |
<noscript class="cs-no-js">
|
48 |
+
<div class="cs-message cs-message-error" style="display: block;"><?php _e('JavaScript must be enabled to view this page correctly.', 'crelly-slider'); ?></div>
|
49 |
</noscript>
|
50 |
|
51 |
+
<div class="cs-message cs-message-ok" style="display: none;"><?php _e('Operation completed successfully.', 'crelly-slider'); ?></div>
|
52 |
+
<div class="cs-message cs-message-error" style="display: none;"><?php _e('Something went wrong.', 'crelly-slider'); ?></div>
|
53 |
<?php if(! $edit): ?>
|
54 |
+
<div class="cs-message cs-message-warning"><?php _e('When you\'ll click "Save Settings", you\'ll be able to add slides and elements.', 'crelly-slider'); ?></div>
|
55 |
<?php endif; ?>
|
56 |
|
57 |
<h2 class="cs-logo" title="Crelly Slider">
|
116 |
|
117 |
<li>
|
118 |
<span class="cs-icon icon-settings"></span>
|
119 |
+
<a id="cs-show-slider-settings"><?php _e('Slider Settings', 'crelly-slider'); ?></a>
|
120 |
</li>
|
121 |
<li>
|
122 |
<span class="cs-icon icon-edit"></span>
|
123 |
+
<a id="cs-show-slides"><?php _e('Edit Slides', 'crelly-slider'); ?></a>
|
124 |
</li>
|
125 |
</ul>
|
126 |
|
140 |
|
141 |
<br />
|
142 |
|
143 |
+
<a class="cs-button cs-is-primary cs-save-settings" data-id="<?php echo $id; ?>" href="#"><?php _e('Save Settings', 'crelly-slider'); ?></a>
|
144 |
|
145 |
</div>
|
146 |
|
240 |
public static function localization() {
|
241 |
// Here the translations for the admin.js file
|
242 |
$crellyslider_translations = array(
|
243 |
+
'slide' => __('Slide', 'crelly-slider'),
|
244 |
+
'slide_delete_confirm' => __('The slide will be deleted. Are you sure?', 'crelly-slider'),
|
245 |
+
'slide_delete_just_one' => __('You can\'t delete this. You must have at least one slide.', 'crelly-slider'),
|
246 |
+
'slider_delete_confirm' => __('The slider will be deleted. Are you sure?', 'crelly-slider'),
|
247 |
+
'text_element_default_html' => __('Text element', 'crelly-slider'),
|
248 |
+
'slide_live_preview' => __('Live preview', 'crelly-slider'),
|
249 |
+
'slide_stop_preview' => __('Stop preview', 'crelly-slider'),
|
250 |
+
'duplicate_slide' => __('Duplicate slide', 'crelly-slider'),
|
251 |
+
'remove_slide' => __('Delete slide', 'crelly-slider'),
|
252 |
+
'exit_without_saving' => __('All unsaved changes will be lost. Are you sure you want to leave this page?', 'crelly-slider'),
|
253 |
);
|
254 |
wp_localize_script('crellyslider-admin', 'crellyslider_translations', $crellyslider_translations);
|
255 |
}
|
wordpress/ajax.php
CHANGED
@@ -279,8 +279,8 @@ function crellyslider_duplicateSlider_callback() {
|
|
279 |
|
280 |
$sliders = $wpdb->get_results('SELECT * FROM ' . $wpdb->prefix . 'crellyslider_sliders WHERE id = \'' . $slider_id . '\'', ARRAY_A);
|
281 |
foreach($sliders as $slider) {
|
282 |
-
$cloned_slider_name = $slider['name'] = $slider['name'] . '_' . __('Copy', '
|
283 |
-
$cloned_slider_alias = $slider['alias'] = $slider['alias'] . '_' . __('copy', '
|
284 |
$output = crellyslider_insertSliderSQL($slider);
|
285 |
}
|
286 |
|
279 |
|
280 |
$sliders = $wpdb->get_results('SELECT * FROM ' . $wpdb->prefix . 'crellyslider_sliders WHERE id = \'' . $slider_id . '\'', ARRAY_A);
|
281 |
foreach($sliders as $slider) {
|
282 |
+
$cloned_slider_name = $slider['name'] = $slider['name'] . '_' . __('Copy', 'crelly-slider');
|
283 |
+
$cloned_slider_alias = $slider['alias'] = $slider['alias'] . '_' . __('copy', 'crelly-slider');
|
284 |
$output = crellyslider_insertSliderSQL($slider);
|
285 |
}
|
286 |
|
wordpress/common.php
CHANGED
@@ -21,9 +21,9 @@ class CrellySliderCommon {
|
|
21 |
|
22 |
// Loads language file
|
23 |
public static function textDomain() {
|
24 |
-
$locale = apply_filters('plugin_locale', get_locale(), '
|
25 |
-
load_textdomain('
|
26 |
-
load_plugin_textdomain('
|
27 |
}
|
28 |
|
29 |
public static function loadPluginTextDomain() {
|
21 |
|
22 |
// Loads language file
|
23 |
public static function textDomain() {
|
24 |
+
$locale = apply_filters('plugin_locale', get_locale(), 'crelly-slider');
|
25 |
+
load_textdomain('crelly-slider', WP_LANG_DIR . '/crelly-slider/crelly-slider-' . $locale . '.mo');
|
26 |
+
load_plugin_textdomain('crelly-slider', false, dirname(plugin_basename(__FILE__)) . '/languages');
|
27 |
}
|
28 |
|
29 |
public static function loadPluginTextDomain() {
|
wordpress/elements.php
CHANGED
@@ -151,14 +151,14 @@ function crellyslider_printElements($edit, $slider, $slide, $elements) {
|
|
151 |
|
152 |
<div class="cs-elements-actions">
|
153 |
<div style="float: left;">
|
154 |
-
<a class="cs-add-text-element cs-button cs-is-warning"><?php _e('Add text', '
|
155 |
-
<a class="cs-add-image-element cs-button cs-is-warning"><?php _e('Add image', '
|
156 |
-
<a class="cs-add-video-element cs-button cs-is-warning"><?php _e('Add video', '
|
157 |
</div>
|
158 |
<div style="float: right;">
|
159 |
-
<a class="cs-live-preview cs-button cs-is-success"><?php _e('Live preview', '
|
160 |
-
<a class="cs-delete-element cs-button cs-is-danger cs-is-disabled"><?php _e('Delete element', '
|
161 |
-
<a class="cs-duplicate-element cs-button cs-is-primary cs-is-disabled"><?php _e('Duplicate element', '
|
162 |
</div>
|
163 |
<div style="clear: both;"></div>
|
164 |
</div>
|
@@ -212,50 +212,50 @@ function crellyslider_printTextElement($element) {
|
|
212 |
$void = !$element ? true : false;
|
213 |
|
214 |
$animations = array(
|
215 |
-
'none' => array(__('None', '
|
216 |
-
'slideDown' => array(__('Slide down', '
|
217 |
-
'slideUp' => array(__('Slide up', '
|
218 |
-
'slideLeft' => array(__('Slide left', '
|
219 |
-
'slideRight' => array(__('Slide right', '
|
220 |
-
'fade' => array(__('Fade', '
|
221 |
-
'fadeDown' => array(__('Fade down', '
|
222 |
-
'fadeUp' => array(__('Fade up', '
|
223 |
-
'fadeLeft' => array(__('Fade left', '
|
224 |
-
'fadeRight' => array(__('Fade right', '
|
225 |
-
'fadeSmallDown' => array(__('Fade small down', '
|
226 |
-
'fadeSmallUp' => array(__('Fade small up', '
|
227 |
-
'fadeSmallLeft' => array(__('Fade small left', '
|
228 |
-
'fadeSmallRight' => array(__('Fade small right', '
|
229 |
);
|
230 |
|
231 |
?>
|
232 |
<table class="cs-element-settings-list cs-text-element-settings-list cs-table">
|
233 |
<thead>
|
234 |
<tr class="odd-row">
|
235 |
-
<th colspan="3"><?php _e('Element Options', '
|
236 |
</tr>
|
237 |
</thead>
|
238 |
|
239 |
<tbody>
|
240 |
<tr class="cs-table-header">
|
241 |
-
<td><?php _e('Option', '
|
242 |
-
<td><?php _e('Parameter', '
|
243 |
-
<td><?php _e('Description', '
|
244 |
</tr>
|
245 |
<tr>
|
246 |
-
<td class="cs-name"><?php _e('Text', '
|
247 |
<td class="cs-content">
|
248 |
<?php
|
249 |
-
if($void) echo '<textarea class="cs-element-inner_html">' . __('Text element', '
|
250 |
else echo '<textarea class="cs-element-inner_html">' . stripslashes($element->inner_html) . '</textarea>';
|
251 |
?>
|
252 |
</td>
|
253 |
<td class="cs-description">
|
254 |
-
<?php _e('Write the text or the HTML.', '
|
255 |
</td>
|
256 |
</tr>
|
257 |
<tr>
|
258 |
-
<td class="cs-name"><?php _e('Left', '
|
259 |
<td class="cs-content">
|
260 |
<?php
|
261 |
if($void) echo '<input class="cs-element-data_left" type="text" value="0" />';
|
@@ -264,14 +264,14 @@ function crellyslider_printTextElement($element) {
|
|
264 |
px
|
265 |
<br />
|
266 |
<br />
|
267 |
-
<input type="button" class="cs-element-center-x cs-button cs-is-default" value="<?php _e('Center horizontally', '
|
268 |
</td>
|
269 |
<td class="cs-description">
|
270 |
-
<?php _e('Left distance in px from the start width.', '
|
271 |
</td>
|
272 |
</tr>
|
273 |
<tr>
|
274 |
-
<td class="cs-name"><?php _e('Top', '
|
275 |
<td class="cs-content">
|
276 |
<?php
|
277 |
if($void) echo '<input class="cs-element-data_top" type="text" value="0" />';
|
@@ -280,14 +280,14 @@ function crellyslider_printTextElement($element) {
|
|
280 |
px
|
281 |
<br />
|
282 |
<br />
|
283 |
-
<input type="button" class="cs-element-center-y cs-button cs-is-default" value="<?php _e('Center vertically', '
|
284 |
</td>
|
285 |
<td class="cs-description">
|
286 |
-
<?php _e('Top distance in px from the start height.', '
|
287 |
</td>
|
288 |
</tr>
|
289 |
<tr>
|
290 |
-
<td class="cs-name"><?php _e('Z - index', '
|
291 |
<td class="cs-content">
|
292 |
<?php
|
293 |
if($void) echo '<input class="cs-element-z_index" type="text" value="1" />';
|
@@ -295,11 +295,11 @@ function crellyslider_printTextElement($element) {
|
|
295 |
?>
|
296 |
</td>
|
297 |
<td class="cs-description">
|
298 |
-
<?php _e('An element with an high z-index will cover an element with a lower z-index if they overlap.', '
|
299 |
</td>
|
300 |
</tr>
|
301 |
<tr>
|
302 |
-
<td class="cs-name"><?php _e('Delay', '
|
303 |
<td class="cs-content">
|
304 |
<?php
|
305 |
if($void) echo '<input class="cs-element-data_delay" type="text" value="0" />';
|
@@ -308,11 +308,11 @@ function crellyslider_printTextElement($element) {
|
|
308 |
ms
|
309 |
</td>
|
310 |
<td class="cs-description">
|
311 |
-
<?php _e('How long will the element wait before the entrance.', '
|
312 |
</td>
|
313 |
</tr>
|
314 |
<tr>
|
315 |
-
<td class="cs-name"><?php _e('Time', '
|
316 |
<td class="cs-content">
|
317 |
<?php
|
318 |
if($void) echo '<input class="cs-element-data_time" type="text" value="all" />';
|
@@ -321,17 +321,17 @@ function crellyslider_printTextElement($element) {
|
|
321 |
ms
|
322 |
</td>
|
323 |
<td class="cs-description">
|
324 |
-
<?php _e('How long will the element be displayed during the slide execution.', '
|
325 |
<br />
|
326 |
<br />
|
327 |
-
<?php _e('Write "all" to set the entire time.', '
|
328 |
<br />
|
329 |
<br />
|
330 |
-
<?php _e('Write "3000" to set 3000 milliseconds minus delay time (so, if the delay time is 1000 milliseconds, the element will be displayed for 3000-1000=2000 milliseconds).', '
|
331 |
</td>
|
332 |
</tr>
|
333 |
<tr>
|
334 |
-
<td class="cs-name"><?php _e('In animation', '
|
335 |
<td class="cs-content">
|
336 |
<select class="cs-element-data_in">
|
337 |
<?php
|
@@ -346,11 +346,11 @@ function crellyslider_printTextElement($element) {
|
|
346 |
</select>
|
347 |
</td>
|
348 |
<td class="cs-description">
|
349 |
-
<?php _e('The in animation of the element.', '
|
350 |
</td>
|
351 |
</tr>
|
352 |
<tr>
|
353 |
-
<td class="cs-name"><?php _e('Out animation', '
|
354 |
<td class="cs-content">
|
355 |
<select class="cs-element-data_out">
|
356 |
<?php
|
@@ -365,23 +365,23 @@ function crellyslider_printTextElement($element) {
|
|
365 |
</select>
|
366 |
<br />
|
367 |
<?php
|
368 |
-
if($void) echo '<input class="cs-element-data_ignoreEaseOut" type="checkbox" />' . __('Disable synchronization with slide out animation', '
|
369 |
else {
|
370 |
if($element->data_ignoreEaseOut) {
|
371 |
-
echo '<input class="cs-element-data_ignoreEaseOut" type="checkbox" checked />' . __('Disable synchronization with slide out animation', '
|
372 |
}
|
373 |
else {
|
374 |
-
echo '<input class="cs-element-data_ignoreEaseOut" type="checkbox" />' . __('Disable synchronization with slide out animation', '
|
375 |
}
|
376 |
}
|
377 |
?>
|
378 |
</td>
|
379 |
<td class="cs-description">
|
380 |
-
<?php _e('The out animation of the element.<br /><br />Disable synchronization with slide out animation: if not checked, the slide out animation won\'t start until all the elements that have this option unchecked are animated out.', '
|
381 |
</td>
|
382 |
</tr>
|
383 |
<tr>
|
384 |
-
<td class="cs-name"><?php _e('Ease in', '
|
385 |
<td class="cs-content">
|
386 |
<?php
|
387 |
if($void) echo '<input class="cs-element-data_easeIn" type="text" value="300" />';
|
@@ -390,11 +390,11 @@ function crellyslider_printTextElement($element) {
|
|
390 |
ms
|
391 |
</td>
|
392 |
<td class="cs-description">
|
393 |
-
<?php _e('How long will the in animation take.', '
|
394 |
</td>
|
395 |
</tr>
|
396 |
<tr>
|
397 |
-
<td class="cs-name"><?php _e('Ease out', '
|
398 |
<td class="cs-content">
|
399 |
<?php
|
400 |
if($void) echo '<input class="cs-element-data_easeOut" type="text" value="300" />';
|
@@ -403,11 +403,11 @@ function crellyslider_printTextElement($element) {
|
|
403 |
ms
|
404 |
</td>
|
405 |
<td class="cs-description">
|
406 |
-
<?php _e('How long will the out animation take.', '
|
407 |
</td>
|
408 |
</tr>
|
409 |
<tr>
|
410 |
-
<td class="cs-name"><?php _e('Link', '
|
411 |
<td class="cs-content">
|
412 |
<?php
|
413 |
if($void) echo '<input class="cs-element-link" type="text" value="" />';
|
@@ -415,23 +415,23 @@ function crellyslider_printTextElement($element) {
|
|
415 |
?>
|
416 |
<br />
|
417 |
<?php
|
418 |
-
if($void) echo '<input class="cs-element-link_new_tab" type="checkbox" />' . __('Open link in a new tab', '
|
419 |
else {
|
420 |
if($element->link_new_tab) {
|
421 |
-
echo '<input class="cs-element-link_new_tab" type="checkbox" checked />' . __('Open link in a new tab', '
|
422 |
}
|
423 |
else {
|
424 |
-
echo '<input class="cs-element-link_new_tab" type="checkbox" />' . __('Open link in a new tab', '
|
425 |
}
|
426 |
}
|
427 |
?>
|
428 |
</td>
|
429 |
<td class="cs-description">
|
430 |
-
<?php _e('Open the link (e.g.: http://www.google.it) on click. Leave it empty if you don\'t want it.', '
|
431 |
</td>
|
432 |
</tr>
|
433 |
<tr>
|
434 |
-
<td class="cs-name"><?php _e('Custom CSS', '
|
435 |
<td class="cs-content">
|
436 |
<?php
|
437 |
if($void) echo '<textarea class="cs-element-custom_css"></textarea>';
|
@@ -439,11 +439,11 @@ function crellyslider_printTextElement($element) {
|
|
439 |
?>
|
440 |
</td>
|
441 |
<td class="cs-description">
|
442 |
-
<?php _e('Style the element.', '
|
443 |
</td>
|
444 |
</tr>
|
445 |
<tr>
|
446 |
-
<td class="cs-name"><?php _e('Custom classes', '
|
447 |
<td class="cs-content">
|
448 |
<?php
|
449 |
if($void) echo '<input class="cs-element-custom_css_classes" type="text" />';
|
@@ -451,7 +451,7 @@ function crellyslider_printTextElement($element) {
|
|
451 |
?>
|
452 |
</td>
|
453 |
<td class="cs-description">
|
454 |
-
<?php _e('Apply custom CSS classes to the element. The style of the classes may not work when working on backend.', '
|
455 |
</td>
|
456 |
</tr>
|
457 |
</tbody>
|
@@ -463,49 +463,49 @@ function crellyslider_printImageElement($element) {
|
|
463 |
$void = !$element ? true : false;
|
464 |
|
465 |
$animations = array(
|
466 |
-
'none' => array(__('None', '
|
467 |
-
'slideDown' => array(__('Slide down', '
|
468 |
-
'slideUp' => array(__('Slide up', '
|
469 |
-
'slideLeft' => array(__('Slide left', '
|
470 |
-
'slideRight' => array(__('Slide right', '
|
471 |
-
'fade' => array(__('Fade', '
|
472 |
-
'fadeDown' => array(__('Fade down', '
|
473 |
-
'fadeUp' => array(__('Fade up', '
|
474 |
-
'fadeLeft' => array(__('Fade left', '
|
475 |
-
'fadeRight' => array(__('Fade right', '
|
476 |
-
'fadeSmallDown' => array(__('Fade small down', '
|
477 |
-
'fadeSmallUp' => array(__('Fade small up', '
|
478 |
-
'fadeSmallLeft' => array(__('Fade small left', '
|
479 |
-
'fadeSmallRight' => array(__('Fade small right', '
|
480 |
);
|
481 |
|
482 |
?>
|
483 |
<table class="cs-element-settings-list cs-image-element-settings-list cs-table">
|
484 |
<thead>
|
485 |
<tr class="odd-row">
|
486 |
-
<th colspan="3"><?php _e('Element Options', '
|
487 |
</tr>
|
488 |
</thead>
|
489 |
<tbody>
|
490 |
<tr class="cs-table-header">
|
491 |
-
<td><?php _e('Option', '
|
492 |
-
<td><?php _e('Parameter', '
|
493 |
-
<td><?php _e('Description', '
|
494 |
</tr>
|
495 |
<tr>
|
496 |
-
<td class="cs-name"><?php _e('Modify image', '
|
497 |
<td class="cs-content">
|
498 |
<?php
|
499 |
-
if($void) echo '<input class="cs-image-element-upload-button cs-button cs-is-default" type="button" value="' . __('Open gallery', '
|
500 |
-
else echo '<input data-src="' . $element->image_src . '" data-alt="' . $element->image_alt . '" class="cs-image-element-upload-button cs-button cs-is-default" type="button" value="' . __('Open gallery', '
|
501 |
?>
|
502 |
</td>
|
503 |
<td class="cs-description">
|
504 |
-
<?php _e('Change the image source or the alt text.', '
|
505 |
</td>
|
506 |
</tr>
|
507 |
<tr>
|
508 |
-
<td class="cs-name"><?php _e('Left', '
|
509 |
<td class="cs-content">
|
510 |
<?php
|
511 |
if($void) echo '<input class="cs-element-data_left" type="text" value="0" />';
|
@@ -514,14 +514,14 @@ function crellyslider_printImageElement($element) {
|
|
514 |
px
|
515 |
<br />
|
516 |
<br />
|
517 |
-
<input type="button" class="cs-element-center-x cs-button cs-is-default" value="<?php _e('Center horizontally', '
|
518 |
</td>
|
519 |
<td class="cs-description">
|
520 |
-
<?php _e('Left distance in px from the start width.', '
|
521 |
</td>
|
522 |
</tr>
|
523 |
<tr>
|
524 |
-
<td class="cs-name"><?php _e('Top', '
|
525 |
<td class="cs-content">
|
526 |
<?php
|
527 |
if($void) echo '<input class="cs-element-data_top" type="text" value="0" />';
|
@@ -530,14 +530,14 @@ function crellyslider_printImageElement($element) {
|
|
530 |
px
|
531 |
<br />
|
532 |
<br />
|
533 |
-
<input type="button" class="cs-element-center-y cs-button cs-is-default" value="<?php _e('Center vertically', '
|
534 |
</td>
|
535 |
<td class="cs-description">
|
536 |
-
<?php _e('Top distance in px from the start height.', '
|
537 |
</td>
|
538 |
</tr>
|
539 |
<tr>
|
540 |
-
<td class="cs-name"><?php _e('Z - index', '
|
541 |
<td class="cs-content">
|
542 |
<?php
|
543 |
if($void) echo '<input class="cs-element-z_index" type="text" value="1" />';
|
@@ -545,11 +545,11 @@ function crellyslider_printImageElement($element) {
|
|
545 |
?>
|
546 |
</td>
|
547 |
<td class="cs-description">
|
548 |
-
<?php _e('An element with an high z-index will cover an element with a lower z-index if they overlap.', '
|
549 |
</td>
|
550 |
</tr>
|
551 |
<tr>
|
552 |
-
<td class="cs-name"><?php _e('Delay', '
|
553 |
<td class="cs-content">
|
554 |
<?php
|
555 |
if($void) echo '<input class="cs-element-data_delay" type="text" value="0" />';
|
@@ -558,11 +558,11 @@ function crellyslider_printImageElement($element) {
|
|
558 |
ms
|
559 |
</td>
|
560 |
<td class="cs-description">
|
561 |
-
<?php _e('How long will the element wait before the entrance.', '
|
562 |
</td>
|
563 |
</tr>
|
564 |
<tr>
|
565 |
-
<td class="cs-name"><?php _e('Time', '
|
566 |
<td class="cs-content">
|
567 |
<?php
|
568 |
if($void) echo '<input class="cs-element-data_time" type="text" value="all" />';
|
@@ -571,17 +571,17 @@ function crellyslider_printImageElement($element) {
|
|
571 |
ms
|
572 |
</td>
|
573 |
<td class="cs-description">
|
574 |
-
<?php _e('How long will the element be displayed during the slide execution.', '
|
575 |
<br />
|
576 |
<br />
|
577 |
-
<?php _e('Write "all" to set the entire time.', '
|
578 |
<br />
|
579 |
<br />
|
580 |
-
<?php _e('Write "3000" to set 3000 milliseconds minus delay time (so, if the delay time is 1000 milliseconds, the element will be displayed for 3000-1000=2000 milliseconds).', '
|
581 |
</td>
|
582 |
</tr>
|
583 |
<tr>
|
584 |
-
<td class="cs-name"><?php _e('In animation', '
|
585 |
<td class="cs-content">
|
586 |
<select class="cs-element-data_in">
|
587 |
<?php
|
@@ -596,11 +596,11 @@ function crellyslider_printImageElement($element) {
|
|
596 |
</select>
|
597 |
</td>
|
598 |
<td class="cs-description">
|
599 |
-
<?php _e('The in animation of the element.', '
|
600 |
</td>
|
601 |
</tr>
|
602 |
<tr>
|
603 |
-
<td class="cs-name"><?php _e('Out animation', '
|
604 |
<td class="cs-content">
|
605 |
<select class="cs-element-data_out">
|
606 |
<?php
|
@@ -615,23 +615,23 @@ function crellyslider_printImageElement($element) {
|
|
615 |
</select>
|
616 |
<br />
|
617 |
<?php
|
618 |
-
if($void) echo '<input class="cs-element-data_ignoreEaseOut" type="checkbox" />' . __('Disable synchronization with slide out animation', '
|
619 |
else {
|
620 |
if($element->data_ignoreEaseOut) {
|
621 |
-
echo '<input class="cs-element-data_ignoreEaseOut" type="checkbox" checked />' . __('Disable synchronization with slide out animation', '
|
622 |
}
|
623 |
else {
|
624 |
-
echo '<input class="cs-element-data_ignoreEaseOut" type="checkbox" />' . __('Disable synchronization with slide out animation', '
|
625 |
}
|
626 |
}
|
627 |
?>
|
628 |
</td>
|
629 |
<td class="cs-description">
|
630 |
-
<?php _e('The out animation of the element.<br /><br />Disable synchronization with slide out animation: if not checked, the slide out animation won\'t start until all the elements that have this option unchecked are animated out.', '
|
631 |
</td>
|
632 |
</tr>
|
633 |
<tr>
|
634 |
-
<td class="cs-name"><?php _e('Ease in', '
|
635 |
<td class="cs-content">
|
636 |
<?php
|
637 |
if($void) echo '<input class="cs-element-data_easeIn" type="text" value="300" />';
|
@@ -640,11 +640,11 @@ function crellyslider_printImageElement($element) {
|
|
640 |
ms
|
641 |
</td>
|
642 |
<td class="cs-description">
|
643 |
-
<?php _e('How long will the in animation take.', '
|
644 |
</td>
|
645 |
</tr>
|
646 |
<tr>
|
647 |
-
<td class="cs-name"><?php _e('Ease out', '
|
648 |
<td class="cs-content">
|
649 |
<?php
|
650 |
if($void) echo '<input class="cs-element-data_easeOut" type="text" value="300" />';
|
@@ -653,11 +653,11 @@ function crellyslider_printImageElement($element) {
|
|
653 |
ms
|
654 |
</td>
|
655 |
<td class="cs-description">
|
656 |
-
<?php _e('How long will the out animation take.', '
|
657 |
</td>
|
658 |
</tr>
|
659 |
<tr>
|
660 |
-
<td class="cs-name"><?php _e('Link', '
|
661 |
<td class="cs-content">
|
662 |
<?php
|
663 |
if($void) echo '<input class="cs-element-link" type="text" value="" />';
|
@@ -665,23 +665,23 @@ function crellyslider_printImageElement($element) {
|
|
665 |
?>
|
666 |
<br />
|
667 |
<?php
|
668 |
-
if($void) echo '<input class="cs-element-link_new_tab" type="checkbox" />' . __('Open link in a new tab', '
|
669 |
else {
|
670 |
if($element->link_new_tab) {
|
671 |
-
echo '<input class="cs-element-link_new_tab" type="checkbox" checked />' . __('Open link in a new tab', '
|
672 |
}
|
673 |
else {
|
674 |
-
echo '<input class="cs-element-link_new_tab" type="checkbox" />' . __('Open link in a new tab', '
|
675 |
}
|
676 |
}
|
677 |
?>
|
678 |
</td>
|
679 |
<td class="cs-description">
|
680 |
-
<?php _e('Open the link (e.g.: http://www.google.it) on click. Leave it empty if you don\'t want it.', '
|
681 |
</td>
|
682 |
</tr>
|
683 |
<tr>
|
684 |
-
<td class="cs-name"><?php _e('Custom CSS', '
|
685 |
<td class="cs-content">
|
686 |
<?php
|
687 |
if($void) echo '<textarea class="cs-element-custom_css"></textarea>';
|
@@ -689,11 +689,11 @@ function crellyslider_printImageElement($element) {
|
|
689 |
?>
|
690 |
</td>
|
691 |
<td class="cs-description">
|
692 |
-
<?php _e('Style the element.', '
|
693 |
</td>
|
694 |
</tr>
|
695 |
<tr>
|
696 |
-
<td class="cs-name"><?php _e('Custom classes', '
|
697 |
<td class="cs-content">
|
698 |
<?php
|
699 |
if($void) echo '<input class="cs-element-custom_css_classes" type="text" />';
|
@@ -701,7 +701,7 @@ function crellyslider_printImageElement($element) {
|
|
701 |
?>
|
702 |
</td>
|
703 |
<td class="cs-description">
|
704 |
-
<?php _e('Apply custom CSS classes to the element. The style of the classes may not work when working on backend.', '
|
705 |
</td>
|
706 |
</tr>
|
707 |
</tbody>
|
@@ -713,38 +713,38 @@ function crellyslider_printVideoElement($element) {
|
|
713 |
$void = !$element ? true : false;
|
714 |
|
715 |
$animations = array(
|
716 |
-
'none' => array(__('None', '
|
717 |
-
'slideDown' => array(__('Slide down', '
|
718 |
-
'slideUp' => array(__('Slide up', '
|
719 |
-
'slideLeft' => array(__('Slide left', '
|
720 |
-
'slideRight' => array(__('Slide right', '
|
721 |
-
'fade' => array(__('Fade', '
|
722 |
-
'fadeDown' => array(__('Fade down', '
|
723 |
-
'fadeUp' => array(__('Fade up', '
|
724 |
-
'fadeLeft' => array(__('Fade left', '
|
725 |
-
'fadeRight' => array(__('Fade right', '
|
726 |
-
'fadeSmallDown' => array(__('Fade small down', '
|
727 |
-
'fadeSmallUp' => array(__('Fade small up', '
|
728 |
-
'fadeSmallLeft' => array(__('Fade small left', '
|
729 |
-
'fadeSmallRight' => array(__('Fade small right', '
|
730 |
);
|
731 |
|
732 |
?>
|
733 |
<table class="cs-element-settings-list cs-video-element-settings-list cs-table">
|
734 |
<thead>
|
735 |
<tr class="odd-row">
|
736 |
-
<th colspan="3"><?php _e('Element Options', '
|
737 |
</tr>
|
738 |
</thead>
|
739 |
|
740 |
<tbody>
|
741 |
<tr class="cs-table-header">
|
742 |
-
<td><?php _e('Option', '
|
743 |
-
<td><?php _e('Parameter', '
|
744 |
-
<td><?php _e('Description', '
|
745 |
</tr>
|
746 |
<tr>
|
747 |
-
<td class="cs-name"><?php _e('Video source', '
|
748 |
<td class="cs-content">
|
749 |
<?php
|
750 |
if($void) echo '<select class="cs-element-video_src"><option selected value="youtube">YouTube</option><option value="vimeo">Vimeo</option></select>';
|
@@ -764,49 +764,49 @@ function crellyslider_printVideoElement($element) {
|
|
764 |
?>
|
765 |
</td>
|
766 |
<td class="cs-description">
|
767 |
-
<?php _e('Set source and ID.', '
|
768 |
</td>
|
769 |
</tr>
|
770 |
<tr>
|
771 |
-
<td class="cs-name"><?php _e('Loop video', '
|
772 |
<td class="cs-content">
|
773 |
<?php
|
774 |
-
if($void) echo '<select class="cs-element-video_loop"><option value="1">Yes</option><option selected value="0">No</option></select>';
|
775 |
else {
|
776 |
if($element->video_loop == 0) {
|
777 |
-
echo '<select class="cs-element-video_loop"><option value="1">Yes</option><option selected value="0">No</option></select>';
|
778 |
}
|
779 |
else {
|
780 |
-
echo '<select class="cs-element-video_loop"><option selected value="1">Yes</option><option value="0">No</option></select>';
|
781 |
}
|
782 |
}
|
783 |
?>
|
784 |
</td>
|
785 |
<td class="cs-description">
|
786 |
-
<?php _e('The video will automatically restart from the beginning when it reaches the end.', '
|
787 |
</td>
|
788 |
</tr>
|
789 |
<tr>
|
790 |
-
<td class="cs-name"><?php _e('Autoplay', '
|
791 |
<td class="cs-content">
|
792 |
<?php
|
793 |
-
if($void) echo '<select class="cs-element-video_autoplay"><option value="1">Yes</option><option selected value="0">No</option></select>';
|
794 |
else {
|
795 |
if($element->video_autoplay == 0) {
|
796 |
-
echo '<select class="cs-element-video_autoplay"><option value="1">Yes</option><option selected value="0">No</option></select>';
|
797 |
}
|
798 |
else {
|
799 |
-
echo '<select class="cs-element-video_autoplay"><option selected value="1">Yes</option><option value="0">No</option></select>';
|
800 |
}
|
801 |
}
|
802 |
?>
|
803 |
</td>
|
804 |
<td class="cs-description">
|
805 |
-
<?php _e('The video will automatically be played after the in animation.', '
|
806 |
</td>
|
807 |
</tr>
|
808 |
<tr>
|
809 |
-
<td class="cs-name"><?php _e('Left', '
|
810 |
<td class="cs-content">
|
811 |
<?php
|
812 |
if($void) echo '<input class="cs-element-data_left" type="text" value="0" />';
|
@@ -815,14 +815,14 @@ function crellyslider_printVideoElement($element) {
|
|
815 |
px
|
816 |
<br />
|
817 |
<br />
|
818 |
-
<input type="button" class="cs-element-center-x cs-button cs-is-default" value="<?php _e('Center horizontally', '
|
819 |
</td>
|
820 |
<td class="cs-description">
|
821 |
-
<?php _e('Left distance in px from the start width.', '
|
822 |
</td>
|
823 |
</tr>
|
824 |
<tr>
|
825 |
-
<td class="cs-name"><?php _e('Top', '
|
826 |
<td class="cs-content">
|
827 |
<?php
|
828 |
if($void) echo '<input class="cs-element-data_top" type="text" value="0" />';
|
@@ -831,14 +831,14 @@ function crellyslider_printVideoElement($element) {
|
|
831 |
px
|
832 |
<br />
|
833 |
<br />
|
834 |
-
<input type="button" class="cs-element-center-y cs-button cs-is-default" value="<?php _e('Center vertically', '
|
835 |
</td>
|
836 |
<td class="cs-description">
|
837 |
-
<?php _e('Top distance in px from the start height.', '
|
838 |
</td>
|
839 |
</tr>
|
840 |
<tr>
|
841 |
-
<td class="cs-name"><?php _e('Z - index', '
|
842 |
<td class="cs-content">
|
843 |
<?php
|
844 |
if($void) echo '<input class="cs-element-z_index" type="text" value="1" />';
|
@@ -846,11 +846,11 @@ function crellyslider_printVideoElement($element) {
|
|
846 |
?>
|
847 |
</td>
|
848 |
<td class="cs-description">
|
849 |
-
<?php _e('An element with an high z-index will cover an element with a lower z-index if they overlap.', '
|
850 |
</td>
|
851 |
</tr>
|
852 |
<tr>
|
853 |
-
<td class="cs-name"><?php _e('Delay', '
|
854 |
<td class="cs-content">
|
855 |
<?php
|
856 |
if($void) echo '<input class="cs-element-data_delay" type="text" value="0" />';
|
@@ -859,11 +859,11 @@ function crellyslider_printVideoElement($element) {
|
|
859 |
ms
|
860 |
</td>
|
861 |
<td class="cs-description">
|
862 |
-
<?php _e('How long will the element wait before the entrance.', '
|
863 |
</td>
|
864 |
</tr>
|
865 |
<tr>
|
866 |
-
<td class="cs-name"><?php _e('Time', '
|
867 |
<td class="cs-content">
|
868 |
<?php
|
869 |
if($void) echo '<input class="cs-element-data_time" type="text" value="all" />';
|
@@ -872,17 +872,17 @@ function crellyslider_printVideoElement($element) {
|
|
872 |
ms
|
873 |
</td>
|
874 |
<td class="cs-description">
|
875 |
-
<?php _e('How long will the element be displayed during the slide execution.', '
|
876 |
<br />
|
877 |
<br />
|
878 |
-
<?php _e('Write "all" to set the entire time.', '
|
879 |
<br />
|
880 |
<br />
|
881 |
-
<?php _e('Write "3000" to set 3000 milliseconds minus delay time (so, if the delay time is 1000 milliseconds, the element will be displayed for 3000-1000=2000 milliseconds).', '
|
882 |
</td>
|
883 |
</tr>
|
884 |
<tr>
|
885 |
-
<td class="cs-name"><?php _e('In animation', '
|
886 |
<td class="cs-content">
|
887 |
<select class="cs-element-data_in">
|
888 |
<?php
|
@@ -897,11 +897,11 @@ function crellyslider_printVideoElement($element) {
|
|
897 |
</select>
|
898 |
</td>
|
899 |
<td class="cs-description">
|
900 |
-
<?php _e('The in animation of the element.', '
|
901 |
</td>
|
902 |
</tr>
|
903 |
<tr>
|
904 |
-
<td class="cs-name"><?php _e('Out animation', '
|
905 |
<td class="cs-content">
|
906 |
<select class="cs-element-data_out">
|
907 |
<?php
|
@@ -916,23 +916,23 @@ function crellyslider_printVideoElement($element) {
|
|
916 |
</select>
|
917 |
<br />
|
918 |
<?php
|
919 |
-
if($void) echo '<input class="cs-element-data_ignoreEaseOut" type="checkbox" />' . __('Disable synchronization with slide out animation', '
|
920 |
else {
|
921 |
if($element->data_ignoreEaseOut) {
|
922 |
-
echo '<input class="cs-element-data_ignoreEaseOut" type="checkbox" checked />' . __('Disable synchronization with slide out animation', '
|
923 |
}
|
924 |
else {
|
925 |
-
echo '<input class="cs-element-data_ignoreEaseOut" type="checkbox" />' . __('Disable synchronization with slide out animation', '
|
926 |
}
|
927 |
}
|
928 |
?>
|
929 |
</td>
|
930 |
<td class="cs-description">
|
931 |
-
<?php _e('The out animation of the element.<br /><br />Disable synchronization with slide out animation: if not checked, the slide out animation won\'t start until all the elements that have this option unchecked are animated out.', '
|
932 |
</td>
|
933 |
</tr>
|
934 |
<tr>
|
935 |
-
<td class="cs-name"><?php _e('Ease in', '
|
936 |
<td class="cs-content">
|
937 |
<?php
|
938 |
if($void) echo '<input class="cs-element-data_easeIn" type="text" value="300" />';
|
@@ -941,11 +941,11 @@ function crellyslider_printVideoElement($element) {
|
|
941 |
ms
|
942 |
</td>
|
943 |
<td class="cs-description">
|
944 |
-
<?php _e('How long will the in animation take.', '
|
945 |
</td>
|
946 |
</tr>
|
947 |
<tr>
|
948 |
-
<td class="cs-name"><?php _e('Ease out', '
|
949 |
<td class="cs-content">
|
950 |
<?php
|
951 |
if($void) echo '<input class="cs-element-data_easeOut" type="text" value="300" />';
|
@@ -954,11 +954,11 @@ function crellyslider_printVideoElement($element) {
|
|
954 |
ms
|
955 |
</td>
|
956 |
<td class="cs-description">
|
957 |
-
<?php _e('How long will the out animation take.', '
|
958 |
</td>
|
959 |
</tr>
|
960 |
<tr>
|
961 |
-
<td class="cs-name"><?php _e('Custom CSS', '
|
962 |
<td class="cs-content">
|
963 |
<?php
|
964 |
if($void) echo '<textarea class="cs-element-custom_css"></textarea>';
|
@@ -966,11 +966,11 @@ function crellyslider_printVideoElement($element) {
|
|
966 |
?>
|
967 |
</td>
|
968 |
<td class="cs-description">
|
969 |
-
<?php _e('Style the element.', '
|
970 |
</td>
|
971 |
</tr>
|
972 |
<tr>
|
973 |
-
<td class="cs-name"><?php _e('Custom classes', '
|
974 |
<td class="cs-content">
|
975 |
<?php
|
976 |
if($void) echo '<input class="cs-element-custom_css_classes" type="text" />';
|
@@ -978,7 +978,7 @@ function crellyslider_printVideoElement($element) {
|
|
978 |
?>
|
979 |
</td>
|
980 |
<td class="cs-description">
|
981 |
-
<?php _e('Apply custom CSS classes to the element. The style of the classes may not work when working on backend.', '
|
982 |
</td>
|
983 |
</tr>
|
984 |
</tbody>
|
151 |
|
152 |
<div class="cs-elements-actions">
|
153 |
<div style="float: left;">
|
154 |
+
<a class="cs-add-text-element cs-button cs-is-warning"><?php _e('Add text', 'crelly-slider'); ?></a>
|
155 |
+
<a class="cs-add-image-element cs-button cs-is-warning"><?php _e('Add image', 'crelly-slider'); ?></a>
|
156 |
+
<a class="cs-add-video-element cs-button cs-is-warning"><?php _e('Add video', 'crelly-slider'); ?></a>
|
157 |
</div>
|
158 |
<div style="float: right;">
|
159 |
+
<a class="cs-live-preview cs-button cs-is-success"><?php _e('Live preview', 'crelly-slider'); ?></a>
|
160 |
+
<a class="cs-delete-element cs-button cs-is-danger cs-is-disabled"><?php _e('Delete element', 'crelly-slider'); ?></a>
|
161 |
+
<a class="cs-duplicate-element cs-button cs-is-primary cs-is-disabled"><?php _e('Duplicate element', 'crelly-slider'); ?></a>
|
162 |
</div>
|
163 |
<div style="clear: both;"></div>
|
164 |
</div>
|
212 |
$void = !$element ? true : false;
|
213 |
|
214 |
$animations = array(
|
215 |
+
'none' => array(__('None', 'crelly-slider'), false),
|
216 |
+
'slideDown' => array(__('Slide down', 'crelly-slider'), false),
|
217 |
+
'slideUp' => array(__('Slide up', 'crelly-slider'), false),
|
218 |
+
'slideLeft' => array(__('Slide left', 'crelly-slider'), false),
|
219 |
+
'slideRight' => array(__('Slide right', 'crelly-slider'), false),
|
220 |
+
'fade' => array(__('Fade', 'crelly-slider'), true),
|
221 |
+
'fadeDown' => array(__('Fade down', 'crelly-slider'), false),
|
222 |
+
'fadeUp' => array(__('Fade up', 'crelly-slider'), false),
|
223 |
+
'fadeLeft' => array(__('Fade left', 'crelly-slider'), false),
|
224 |
+
'fadeRight' => array(__('Fade right', 'crelly-slider'), false),
|
225 |
+
'fadeSmallDown' => array(__('Fade small down', 'crelly-slider'), false),
|
226 |
+
'fadeSmallUp' => array(__('Fade small up', 'crelly-slider'), false),
|
227 |
+
'fadeSmallLeft' => array(__('Fade small left', 'crelly-slider'), false),
|
228 |
+
'fadeSmallRight' => array(__('Fade small right', 'crelly-slider'), false),
|
229 |
);
|
230 |
|
231 |
?>
|
232 |
<table class="cs-element-settings-list cs-text-element-settings-list cs-table">
|
233 |
<thead>
|
234 |
<tr class="odd-row">
|
235 |
+
<th colspan="3"><?php _e('Element Options', 'crelly-slider'); ?></th>
|
236 |
</tr>
|
237 |
</thead>
|
238 |
|
239 |
<tbody>
|
240 |
<tr class="cs-table-header">
|
241 |
+
<td><?php _e('Option', 'crelly-slider'); ?></td>
|
242 |
+
<td><?php _e('Parameter', 'crelly-slider'); ?></td>
|
243 |
+
<td><?php _e('Description', 'crelly-slider'); ?></td>
|
244 |
</tr>
|
245 |
<tr>
|
246 |
+
<td class="cs-name"><?php _e('Text', 'crelly-slider'); ?></td>
|
247 |
<td class="cs-content">
|
248 |
<?php
|
249 |
+
if($void) echo '<textarea class="cs-element-inner_html">' . __('Text element', 'crelly-slider') . '</textarea>';
|
250 |
else echo '<textarea class="cs-element-inner_html">' . stripslashes($element->inner_html) . '</textarea>';
|
251 |
?>
|
252 |
</td>
|
253 |
<td class="cs-description">
|
254 |
+
<?php _e('Write the text or the HTML.', 'crelly-slider'); ?>
|
255 |
</td>
|
256 |
</tr>
|
257 |
<tr>
|
258 |
+
<td class="cs-name"><?php _e('Left', 'crelly-slider'); ?></td>
|
259 |
<td class="cs-content">
|
260 |
<?php
|
261 |
if($void) echo '<input class="cs-element-data_left" type="text" value="0" />';
|
264 |
px
|
265 |
<br />
|
266 |
<br />
|
267 |
+
<input type="button" class="cs-element-center-x cs-button cs-is-default" value="<?php _e('Center horizontally', 'crelly-slider'); ?>" />
|
268 |
</td>
|
269 |
<td class="cs-description">
|
270 |
+
<?php _e('Left distance in px from the start width.', 'crelly-slider'); ?>
|
271 |
</td>
|
272 |
</tr>
|
273 |
<tr>
|
274 |
+
<td class="cs-name"><?php _e('Top', 'crelly-slider'); ?></td>
|
275 |
<td class="cs-content">
|
276 |
<?php
|
277 |
if($void) echo '<input class="cs-element-data_top" type="text" value="0" />';
|
280 |
px
|
281 |
<br />
|
282 |
<br />
|
283 |
+
<input type="button" class="cs-element-center-y cs-button cs-is-default" value="<?php _e('Center vertically', 'crelly-slider'); ?>" />
|
284 |
</td>
|
285 |
<td class="cs-description">
|
286 |
+
<?php _e('Top distance in px from the start height.', 'crelly-slider'); ?>
|
287 |
</td>
|
288 |
</tr>
|
289 |
<tr>
|
290 |
+
<td class="cs-name"><?php _e('Z - index', 'crelly-slider'); ?></td>
|
291 |
<td class="cs-content">
|
292 |
<?php
|
293 |
if($void) echo '<input class="cs-element-z_index" type="text" value="1" />';
|
295 |
?>
|
296 |
</td>
|
297 |
<td class="cs-description">
|
298 |
+
<?php _e('An element with an high z-index will cover an element with a lower z-index if they overlap.', 'crelly-slider'); ?>
|
299 |
</td>
|
300 |
</tr>
|
301 |
<tr>
|
302 |
+
<td class="cs-name"><?php _e('Delay', 'crelly-slider'); ?></td>
|
303 |
<td class="cs-content">
|
304 |
<?php
|
305 |
if($void) echo '<input class="cs-element-data_delay" type="text" value="0" />';
|
308 |
ms
|
309 |
</td>
|
310 |
<td class="cs-description">
|
311 |
+
<?php _e('How long will the element wait before the entrance.', 'crelly-slider'); ?>
|
312 |
</td>
|
313 |
</tr>
|
314 |
<tr>
|
315 |
+
<td class="cs-name"><?php _e('Time', 'crelly-slider'); ?></td>
|
316 |
<td class="cs-content">
|
317 |
<?php
|
318 |
if($void) echo '<input class="cs-element-data_time" type="text" value="all" />';
|
321 |
ms
|
322 |
</td>
|
323 |
<td class="cs-description">
|
324 |
+
<?php _e('How long will the element be displayed during the slide execution.', 'crelly-slider'); ?>
|
325 |
<br />
|
326 |
<br />
|
327 |
+
<?php _e('Write "all" to set the entire time.', 'crelly-slider'); ?>
|
328 |
<br />
|
329 |
<br />
|
330 |
+
<?php _e('Write "3000" to set 3000 milliseconds minus delay time (so, if the delay time is 1000 milliseconds, the element will be displayed for 3000-1000=2000 milliseconds).', 'crelly-slider'); ?>
|
331 |
</td>
|
332 |
</tr>
|
333 |
<tr>
|
334 |
+
<td class="cs-name"><?php _e('In animation', 'crelly-slider'); ?></td>
|
335 |
<td class="cs-content">
|
336 |
<select class="cs-element-data_in">
|
337 |
<?php
|
346 |
</select>
|
347 |
</td>
|
348 |
<td class="cs-description">
|
349 |
+
<?php _e('The in animation of the element.', 'crelly-slider'); ?>
|
350 |
</td>
|
351 |
</tr>
|
352 |
<tr>
|
353 |
+
<td class="cs-name"><?php _e('Out animation', 'crelly-slider'); ?></td>
|
354 |
<td class="cs-content">
|
355 |
<select class="cs-element-data_out">
|
356 |
<?php
|
365 |
</select>
|
366 |
<br />
|
367 |
<?php
|
368 |
+
if($void) echo '<input class="cs-element-data_ignoreEaseOut" type="checkbox" />' . __('Disable synchronization with slide out animation', 'crelly-slider');
|
369 |
else {
|
370 |
if($element->data_ignoreEaseOut) {
|
371 |
+
echo '<input class="cs-element-data_ignoreEaseOut" type="checkbox" checked />' . __('Disable synchronization with slide out animation', 'crelly-slider');
|
372 |
}
|
373 |
else {
|
374 |
+
echo '<input class="cs-element-data_ignoreEaseOut" type="checkbox" />' . __('Disable synchronization with slide out animation', 'crelly-slider');
|
375 |
}
|
376 |
}
|
377 |
?>
|
378 |
</td>
|
379 |
<td class="cs-description">
|
380 |
+
<?php _e('The out animation of the element.<br /><br />Disable synchronization with slide out animation: if not checked, the slide out animation won\'t start until all the elements that have this option unchecked are animated out.', 'crelly-slider'); ?>
|
381 |
</td>
|
382 |
</tr>
|
383 |
<tr>
|
384 |
+
<td class="cs-name"><?php _e('Ease in', 'crelly-slider'); ?></td>
|
385 |
<td class="cs-content">
|
386 |
<?php
|
387 |
if($void) echo '<input class="cs-element-data_easeIn" type="text" value="300" />';
|
390 |
ms
|
391 |
</td>
|
392 |
<td class="cs-description">
|
393 |
+
<?php _e('How long will the in animation take.', 'crelly-slider'); ?>
|
394 |
</td>
|
395 |
</tr>
|
396 |
<tr>
|
397 |
+
<td class="cs-name"><?php _e('Ease out', 'crelly-slider'); ?></td>
|
398 |
<td class="cs-content">
|
399 |
<?php
|
400 |
if($void) echo '<input class="cs-element-data_easeOut" type="text" value="300" />';
|
403 |
ms
|
404 |
</td>
|
405 |
<td class="cs-description">
|
406 |
+
<?php _e('How long will the out animation take.', 'crelly-slider'); ?>
|
407 |
</td>
|
408 |
</tr>
|
409 |
<tr>
|
410 |
+
<td class="cs-name"><?php _e('Link', 'crelly-slider'); ?></td>
|
411 |
<td class="cs-content">
|
412 |
<?php
|
413 |
if($void) echo '<input class="cs-element-link" type="text" value="" />';
|
415 |
?>
|
416 |
<br />
|
417 |
<?php
|
418 |
+
if($void) echo '<input class="cs-element-link_new_tab" type="checkbox" />' . __('Open link in a new tab', 'crelly-slider');
|
419 |
else {
|
420 |
if($element->link_new_tab) {
|
421 |
+
echo '<input class="cs-element-link_new_tab" type="checkbox" checked />' . __('Open link in a new tab', 'crelly-slider');
|
422 |
}
|
423 |
else {
|
424 |
+
echo '<input class="cs-element-link_new_tab" type="checkbox" />' . __('Open link in a new tab', 'crelly-slider');
|
425 |
}
|
426 |
}
|
427 |
?>
|
428 |
</td>
|
429 |
<td class="cs-description">
|
430 |
+
<?php _e('Open the link (e.g.: http://www.google.it) on click. Leave it empty if you don\'t want it.', 'crelly-slider'); ?>
|
431 |
</td>
|
432 |
</tr>
|
433 |
<tr>
|
434 |
+
<td class="cs-name"><?php _e('Custom CSS', 'crelly-slider'); ?></td>
|
435 |
<td class="cs-content">
|
436 |
<?php
|
437 |
if($void) echo '<textarea class="cs-element-custom_css"></textarea>';
|
439 |
?>
|
440 |
</td>
|
441 |
<td class="cs-description">
|
442 |
+
<?php _e('Style the element.', 'crelly-slider'); ?>
|
443 |
</td>
|
444 |
</tr>
|
445 |
<tr>
|
446 |
+
<td class="cs-name"><?php _e('Custom classes', 'crelly-slider'); ?></td>
|
447 |
<td class="cs-content">
|
448 |
<?php
|
449 |
if($void) echo '<input class="cs-element-custom_css_classes" type="text" />';
|
451 |
?>
|
452 |
</td>
|
453 |
<td class="cs-description">
|
454 |
+
<?php _e('Apply custom CSS classes to the element. The style of the classes may not work when working on backend.', 'crelly-slider'); ?>
|
455 |
</td>
|
456 |
</tr>
|
457 |
</tbody>
|
463 |
$void = !$element ? true : false;
|
464 |
|
465 |
$animations = array(
|
466 |
+
'none' => array(__('None', 'crelly-slider'), false),
|
467 |
+
'slideDown' => array(__('Slide down', 'crelly-slider'), false),
|
468 |
+
'slideUp' => array(__('Slide up', 'crelly-slider'), false),
|
469 |
+
'slideLeft' => array(__('Slide left', 'crelly-slider'), false),
|
470 |
+
'slideRight' => array(__('Slide right', 'crelly-slider'), false),
|
471 |
+
'fade' => array(__('Fade', 'crelly-slider'), true),
|
472 |
+
'fadeDown' => array(__('Fade down', 'crelly-slider'), false),
|
473 |
+
'fadeUp' => array(__('Fade up', 'crelly-slider'), false),
|
474 |
+
'fadeLeft' => array(__('Fade left', 'crelly-slider'), false),
|
475 |
+
'fadeRight' => array(__('Fade right', 'crelly-slider'), false),
|
476 |
+
'fadeSmallDown' => array(__('Fade small down', 'crelly-slider'), false),
|
477 |
+
'fadeSmallUp' => array(__('Fade small up', 'crelly-slider'), false),
|
478 |
+
'fadeSmallLeft' => array(__('Fade small left', 'crelly-slider'), false),
|
479 |
+
'fadeSmallRight' => array(__('Fade small right', 'crelly-slider'), false),
|
480 |
);
|
481 |
|
482 |
?>
|
483 |
<table class="cs-element-settings-list cs-image-element-settings-list cs-table">
|
484 |
<thead>
|
485 |
<tr class="odd-row">
|
486 |
+
<th colspan="3"><?php _e('Element Options', 'crelly-slider'); ?></th>
|
487 |
</tr>
|
488 |
</thead>
|
489 |
<tbody>
|
490 |
<tr class="cs-table-header">
|
491 |
+
<td><?php _e('Option', 'crelly-slider'); ?></td>
|
492 |
+
<td><?php _e('Parameter', 'crelly-slider'); ?></td>
|
493 |
+
<td><?php _e('Description', 'crelly-slider'); ?></td>
|
494 |
</tr>
|
495 |
<tr>
|
496 |
+
<td class="cs-name"><?php _e('Modify image', 'crelly-slider'); ?></td>
|
497 |
<td class="cs-content">
|
498 |
<?php
|
499 |
+
if($void) echo '<input class="cs-image-element-upload-button cs-button cs-is-default" type="button" value="' . __('Open gallery', 'crelly-slider') . '" />';
|
500 |
+
else echo '<input data-src="' . $element->image_src . '" data-alt="' . $element->image_alt . '" class="cs-image-element-upload-button cs-button cs-is-default" type="button" value="' . __('Open gallery', 'crelly-slider') . '" />';
|
501 |
?>
|
502 |
</td>
|
503 |
<td class="cs-description">
|
504 |
+
<?php _e('Change the image source or the alt text.', 'crelly-slider'); ?>
|
505 |
</td>
|
506 |
</tr>
|
507 |
<tr>
|
508 |
+
<td class="cs-name"><?php _e('Left', 'crelly-slider'); ?></td>
|
509 |
<td class="cs-content">
|
510 |
<?php
|
511 |
if($void) echo '<input class="cs-element-data_left" type="text" value="0" />';
|
514 |
px
|
515 |
<br />
|
516 |
<br />
|
517 |
+
<input type="button" class="cs-element-center-x cs-button cs-is-default" value="<?php _e('Center horizontally', 'crelly-slider'); ?>" />
|
518 |
</td>
|
519 |
<td class="cs-description">
|
520 |
+
<?php _e('Left distance in px from the start width.', 'crelly-slider'); ?>
|
521 |
</td>
|
522 |
</tr>
|
523 |
<tr>
|
524 |
+
<td class="cs-name"><?php _e('Top', 'crelly-slider'); ?></td>
|
525 |
<td class="cs-content">
|
526 |
<?php
|
527 |
if($void) echo '<input class="cs-element-data_top" type="text" value="0" />';
|
530 |
px
|
531 |
<br />
|
532 |
<br />
|
533 |
+
<input type="button" class="cs-element-center-y cs-button cs-is-default" value="<?php _e('Center vertically', 'crelly-slider'); ?>" />
|
534 |
</td>
|
535 |
<td class="cs-description">
|
536 |
+
<?php _e('Top distance in px from the start height.', 'crelly-slider'); ?>
|
537 |
</td>
|
538 |
</tr>
|
539 |
<tr>
|
540 |
+
<td class="cs-name"><?php _e('Z - index', 'crelly-slider'); ?></td>
|
541 |
<td class="cs-content">
|
542 |
<?php
|
543 |
if($void) echo '<input class="cs-element-z_index" type="text" value="1" />';
|
545 |
?>
|
546 |
</td>
|
547 |
<td class="cs-description">
|
548 |
+
<?php _e('An element with an high z-index will cover an element with a lower z-index if they overlap.', 'crelly-slider'); ?>
|
549 |
</td>
|
550 |
</tr>
|
551 |
<tr>
|
552 |
+
<td class="cs-name"><?php _e('Delay', 'crelly-slider'); ?></td>
|
553 |
<td class="cs-content">
|
554 |
<?php
|
555 |
if($void) echo '<input class="cs-element-data_delay" type="text" value="0" />';
|
558 |
ms
|
559 |
</td>
|
560 |
<td class="cs-description">
|
561 |
+
<?php _e('How long will the element wait before the entrance.', 'crelly-slider'); ?>
|
562 |
</td>
|
563 |
</tr>
|
564 |
<tr>
|
565 |
+
<td class="cs-name"><?php _e('Time', 'crelly-slider'); ?></td>
|
566 |
<td class="cs-content">
|
567 |
<?php
|
568 |
if($void) echo '<input class="cs-element-data_time" type="text" value="all" />';
|
571 |
ms
|
572 |
</td>
|
573 |
<td class="cs-description">
|
574 |
+
<?php _e('How long will the element be displayed during the slide execution.', 'crelly-slider'); ?>
|
575 |
<br />
|
576 |
<br />
|
577 |
+
<?php _e('Write "all" to set the entire time.', 'crelly-slider'); ?>
|
578 |
<br />
|
579 |
<br />
|
580 |
+
<?php _e('Write "3000" to set 3000 milliseconds minus delay time (so, if the delay time is 1000 milliseconds, the element will be displayed for 3000-1000=2000 milliseconds).', 'crelly-slider'); ?>
|
581 |
</td>
|
582 |
</tr>
|
583 |
<tr>
|
584 |
+
<td class="cs-name"><?php _e('In animation', 'crelly-slider'); ?></td>
|
585 |
<td class="cs-content">
|
586 |
<select class="cs-element-data_in">
|
587 |
<?php
|
596 |
</select>
|
597 |
</td>
|
598 |
<td class="cs-description">
|
599 |
+
<?php _e('The in animation of the element.', 'crelly-slider'); ?>
|
600 |
</td>
|
601 |
</tr>
|
602 |
<tr>
|
603 |
+
<td class="cs-name"><?php _e('Out animation', 'crelly-slider'); ?></td>
|
604 |
<td class="cs-content">
|
605 |
<select class="cs-element-data_out">
|
606 |
<?php
|
615 |
</select>
|
616 |
<br />
|
617 |
<?php
|
618 |
+
if($void) echo '<input class="cs-element-data_ignoreEaseOut" type="checkbox" />' . __('Disable synchronization with slide out animation', 'crelly-slider');
|
619 |
else {
|
620 |
if($element->data_ignoreEaseOut) {
|
621 |
+
echo '<input class="cs-element-data_ignoreEaseOut" type="checkbox" checked />' . __('Disable synchronization with slide out animation', 'crelly-slider');
|
622 |
}
|
623 |
else {
|
624 |
+
echo '<input class="cs-element-data_ignoreEaseOut" type="checkbox" />' . __('Disable synchronization with slide out animation', 'crelly-slider');
|
625 |
}
|
626 |
}
|
627 |
?>
|
628 |
</td>
|
629 |
<td class="cs-description">
|
630 |
+
<?php _e('The out animation of the element.<br /><br />Disable synchronization with slide out animation: if not checked, the slide out animation won\'t start until all the elements that have this option unchecked are animated out.', 'crelly-slider'); ?>
|
631 |
</td>
|
632 |
</tr>
|
633 |
<tr>
|
634 |
+
<td class="cs-name"><?php _e('Ease in', 'crelly-slider'); ?></td>
|
635 |
<td class="cs-content">
|
636 |
<?php
|
637 |
if($void) echo '<input class="cs-element-data_easeIn" type="text" value="300" />';
|
640 |
ms
|
641 |
</td>
|
642 |
<td class="cs-description">
|
643 |
+
<?php _e('How long will the in animation take.', 'crelly-slider'); ?>
|
644 |
</td>
|
645 |
</tr>
|
646 |
<tr>
|
647 |
+
<td class="cs-name"><?php _e('Ease out', 'crelly-slider'); ?></td>
|
648 |
<td class="cs-content">
|
649 |
<?php
|
650 |
if($void) echo '<input class="cs-element-data_easeOut" type="text" value="300" />';
|
653 |
ms
|
654 |
</td>
|
655 |
<td class="cs-description">
|
656 |
+
<?php _e('How long will the out animation take.', 'crelly-slider'); ?>
|
657 |
</td>
|
658 |
</tr>
|
659 |
<tr>
|
660 |
+
<td class="cs-name"><?php _e('Link', 'crelly-slider'); ?></td>
|
661 |
<td class="cs-content">
|
662 |
<?php
|
663 |
if($void) echo '<input class="cs-element-link" type="text" value="" />';
|
665 |
?>
|
666 |
<br />
|
667 |
<?php
|
668 |
+
if($void) echo '<input class="cs-element-link_new_tab" type="checkbox" />' . __('Open link in a new tab', 'crelly-slider');
|
669 |
else {
|
670 |
if($element->link_new_tab) {
|
671 |
+
echo '<input class="cs-element-link_new_tab" type="checkbox" checked />' . __('Open link in a new tab', 'crelly-slider');
|
672 |
}
|
673 |
else {
|
674 |
+
echo '<input class="cs-element-link_new_tab" type="checkbox" />' . __('Open link in a new tab', 'crelly-slider');
|
675 |
}
|
676 |
}
|
677 |
?>
|
678 |
</td>
|
679 |
<td class="cs-description">
|
680 |
+
<?php _e('Open the link (e.g.: http://www.google.it) on click. Leave it empty if you don\'t want it.', 'crelly-slider'); ?>
|
681 |
</td>
|
682 |
</tr>
|
683 |
<tr>
|
684 |
+
<td class="cs-name"><?php _e('Custom CSS', 'crelly-slider'); ?></td>
|
685 |
<td class="cs-content">
|
686 |
<?php
|
687 |
if($void) echo '<textarea class="cs-element-custom_css"></textarea>';
|
689 |
?>
|
690 |
</td>
|
691 |
<td class="cs-description">
|
692 |
+
<?php _e('Style the element.', 'crelly-slider'); ?>
|
693 |
</td>
|
694 |
</tr>
|
695 |
<tr>
|
696 |
+
<td class="cs-name"><?php _e('Custom classes', 'crelly-slider'); ?></td>
|
697 |
<td class="cs-content">
|
698 |
<?php
|
699 |
if($void) echo '<input class="cs-element-custom_css_classes" type="text" />';
|
701 |
?>
|
702 |
</td>
|
703 |
<td class="cs-description">
|
704 |
+
<?php _e('Apply custom CSS classes to the element. The style of the classes may not work when working on backend.', 'crelly-slider'); ?>
|
705 |
</td>
|
706 |
</tr>
|
707 |
</tbody>
|
713 |
$void = !$element ? true : false;
|
714 |
|
715 |
$animations = array(
|
716 |
+
'none' => array(__('None', 'crelly-slider'), false),
|
717 |
+
'slideDown' => array(__('Slide down', 'crelly-slider'), false),
|
718 |
+
'slideUp' => array(__('Slide up', 'crelly-slider'), false),
|
719 |
+
'slideLeft' => array(__('Slide left', 'crelly-slider'), false),
|
720 |
+
'slideRight' => array(__('Slide right', 'crelly-slider'), false),
|
721 |
+
'fade' => array(__('Fade', 'crelly-slider'), true),
|
722 |
+
'fadeDown' => array(__('Fade down', 'crelly-slider'), false),
|
723 |
+
'fadeUp' => array(__('Fade up', 'crelly-slider'), false),
|
724 |
+
'fadeLeft' => array(__('Fade left', 'crelly-slider'), false),
|
725 |
+
'fadeRight' => array(__('Fade right', 'crelly-slider'), false),
|
726 |
+
'fadeSmallDown' => array(__('Fade small down', 'crelly-slider'), false),
|
727 |
+
'fadeSmallUp' => array(__('Fade small up', 'crelly-slider'), false),
|
728 |
+
'fadeSmallLeft' => array(__('Fade small left', 'crelly-slider'), false),
|
729 |
+
'fadeSmallRight' => array(__('Fade small right', 'crelly-slider'), false),
|
730 |
);
|
731 |
|
732 |
?>
|
733 |
<table class="cs-element-settings-list cs-video-element-settings-list cs-table">
|
734 |
<thead>
|
735 |
<tr class="odd-row">
|
736 |
+
<th colspan="3"><?php _e('Element Options', 'crelly-slider'); ?></th>
|
737 |
</tr>
|
738 |
</thead>
|
739 |
|
740 |
<tbody>
|
741 |
<tr class="cs-table-header">
|
742 |
+
<td><?php _e('Option', 'crelly-slider'); ?></td>
|
743 |
+
<td><?php _e('Parameter', 'crelly-slider'); ?></td>
|
744 |
+
<td><?php _e('Description', 'crelly-slider'); ?></td>
|
745 |
</tr>
|
746 |
<tr>
|
747 |
+
<td class="cs-name"><?php _e('Video source', 'crelly-slider'); ?></td>
|
748 |
<td class="cs-content">
|
749 |
<?php
|
750 |
if($void) echo '<select class="cs-element-video_src"><option selected value="youtube">YouTube</option><option value="vimeo">Vimeo</option></select>';
|
764 |
?>
|
765 |
</td>
|
766 |
<td class="cs-description">
|
767 |
+
<?php _e('Set source and ID.', 'crelly-slider'); ?>
|
768 |
</td>
|
769 |
</tr>
|
770 |
<tr>
|
771 |
+
<td class="cs-name"><?php _e('Loop video', 'crelly-slider'); ?></td>
|
772 |
<td class="cs-content">
|
773 |
<?php
|
774 |
+
if($void) echo '<select class="cs-element-video_loop"><option value="1">' . __('Yes', 'crelly-slider') . '</option><option selected value="0">' . __('No', 'crelly-slider') . '</option></select>';
|
775 |
else {
|
776 |
if($element->video_loop == 0) {
|
777 |
+
echo '<select class="cs-element-video_loop"><option value="1">' . __('Yes', 'crelly-slider') . '</option><option selected value="0">' . __('No', 'crelly-slider') . '</option></select>';
|
778 |
}
|
779 |
else {
|
780 |
+
echo '<select class="cs-element-video_loop"><option selected value="1">' . __('Yes', 'crelly-slider') . '</option><option value="0">' . __('No', 'crelly-slider') . '</option></select>';
|
781 |
}
|
782 |
}
|
783 |
?>
|
784 |
</td>
|
785 |
<td class="cs-description">
|
786 |
+
<?php _e('The video will automatically restart from the beginning when it reaches the end.', 'crelly-slider'); ?>
|
787 |
</td>
|
788 |
</tr>
|
789 |
<tr>
|
790 |
+
<td class="cs-name"><?php _e('Autoplay', 'crelly-slider'); ?></td>
|
791 |
<td class="cs-content">
|
792 |
<?php
|
793 |
+
if($void) echo '<select class="cs-element-video_autoplay"><option value="1">' . __('Yes', 'crelly-slider') . '</option><option selected value="0">' . __('No', 'crelly-slider') . '</option></select>';
|
794 |
else {
|
795 |
if($element->video_autoplay == 0) {
|
796 |
+
echo '<select class="cs-element-video_autoplay"><option value="1">' . __('Yes', 'crelly-slider') . '</option><option selected value="0">' . __('No', 'crelly-slider') . '</option></select>';
|
797 |
}
|
798 |
else {
|
799 |
+
echo '<select class="cs-element-video_autoplay"><option selected value="1">' . __('Yes', 'crelly-slider') . '</option><option value="0">' . __('No', 'crelly-slider') . '</option></select>';
|
800 |
}
|
801 |
}
|
802 |
?>
|
803 |
</td>
|
804 |
<td class="cs-description">
|
805 |
+
<?php _e('The video will automatically be played after the in animation.', 'crelly-slider'); ?>
|
806 |
</td>
|
807 |
</tr>
|
808 |
<tr>
|
809 |
+
<td class="cs-name"><?php _e('Left', 'crelly-slider'); ?></td>
|
810 |
<td class="cs-content">
|
811 |
<?php
|
812 |
if($void) echo '<input class="cs-element-data_left" type="text" value="0" />';
|
815 |
px
|
816 |
<br />
|
817 |
<br />
|
818 |
+
<input type="button" class="cs-element-center-x cs-button cs-is-default" value="<?php _e('Center horizontally', 'crelly-slider'); ?>" />
|
819 |
</td>
|
820 |
<td class="cs-description">
|
821 |
+
<?php _e('Left distance in px from the start width.', 'crelly-slider'); ?>
|
822 |
</td>
|
823 |
</tr>
|
824 |
<tr>
|
825 |
+
<td class="cs-name"><?php _e('Top', 'crelly-slider'); ?></td>
|
826 |
<td class="cs-content">
|
827 |
<?php
|
828 |
if($void) echo '<input class="cs-element-data_top" type="text" value="0" />';
|
831 |
px
|
832 |
<br />
|
833 |
<br />
|
834 |
+
<input type="button" class="cs-element-center-y cs-button cs-is-default" value="<?php _e('Center vertically', 'crelly-slider'); ?>" />
|
835 |
</td>
|
836 |
<td class="cs-description">
|
837 |
+
<?php _e('Top distance in px from the start height.', 'crelly-slider'); ?>
|
838 |
</td>
|
839 |
</tr>
|
840 |
<tr>
|
841 |
+
<td class="cs-name"><?php _e('Z - index', 'crelly-slider'); ?></td>
|
842 |
<td class="cs-content">
|
843 |
<?php
|
844 |
if($void) echo '<input class="cs-element-z_index" type="text" value="1" />';
|
846 |
?>
|
847 |
</td>
|
848 |
<td class="cs-description">
|
849 |
+
<?php _e('An element with an high z-index will cover an element with a lower z-index if they overlap.', 'crelly-slider'); ?>
|
850 |
</td>
|
851 |
</tr>
|
852 |
<tr>
|
853 |
+
<td class="cs-name"><?php _e('Delay', 'crelly-slider'); ?></td>
|
854 |
<td class="cs-content">
|
855 |
<?php
|
856 |
if($void) echo '<input class="cs-element-data_delay" type="text" value="0" />';
|
859 |
ms
|
860 |
</td>
|
861 |
<td class="cs-description">
|
862 |
+
<?php _e('How long will the element wait before the entrance.', 'crelly-slider'); ?>
|
863 |
</td>
|
864 |
</tr>
|
865 |
<tr>
|
866 |
+
<td class="cs-name"><?php _e('Time', 'crelly-slider'); ?></td>
|
867 |
<td class="cs-content">
|
868 |
<?php
|
869 |
if($void) echo '<input class="cs-element-data_time" type="text" value="all" />';
|
872 |
ms
|
873 |
</td>
|
874 |
<td class="cs-description">
|
875 |
+
<?php _e('How long will the element be displayed during the slide execution.', 'crelly-slider'); ?>
|
876 |
<br />
|
877 |
<br />
|
878 |
+
<?php _e('Write "all" to set the entire time.', 'crelly-slider'); ?>
|
879 |
<br />
|
880 |
<br />
|
881 |
+
<?php _e('Write "3000" to set 3000 milliseconds minus delay time (so, if the delay time is 1000 milliseconds, the element will be displayed for 3000-1000=2000 milliseconds).', 'crelly-slider'); ?>
|
882 |
</td>
|
883 |
</tr>
|
884 |
<tr>
|
885 |
+
<td class="cs-name"><?php _e('In animation', 'crelly-slider'); ?></td>
|
886 |
<td class="cs-content">
|
887 |
<select class="cs-element-data_in">
|
888 |
<?php
|
897 |
</select>
|
898 |
</td>
|
899 |
<td class="cs-description">
|
900 |
+
<?php _e('The in animation of the element.', 'crelly-slider'); ?>
|
901 |
</td>
|
902 |
</tr>
|
903 |
<tr>
|
904 |
+
<td class="cs-name"><?php _e('Out animation', 'crelly-slider'); ?></td>
|
905 |
<td class="cs-content">
|
906 |
<select class="cs-element-data_out">
|
907 |
<?php
|
916 |
</select>
|
917 |
<br />
|
918 |
<?php
|
919 |
+
if($void) echo '<input class="cs-element-data_ignoreEaseOut" type="checkbox" />' . __('Disable synchronization with slide out animation', 'crelly-slider');
|
920 |
else {
|
921 |
if($element->data_ignoreEaseOut) {
|
922 |
+
echo '<input class="cs-element-data_ignoreEaseOut" type="checkbox" checked />' . __('Disable synchronization with slide out animation', 'crelly-slider');
|
923 |
}
|
924 |
else {
|
925 |
+
echo '<input class="cs-element-data_ignoreEaseOut" type="checkbox" />' . __('Disable synchronization with slide out animation', 'crelly-slider');
|
926 |
}
|
927 |
}
|
928 |
?>
|
929 |
</td>
|
930 |
<td class="cs-description">
|
931 |
+
<?php _e('The out animation of the element.<br /><br />Disable synchronization with slide out animation: if not checked, the slide out animation won\'t start until all the elements that have this option unchecked are animated out.', 'crelly-slider'); ?>
|
932 |
</td>
|
933 |
</tr>
|
934 |
<tr>
|
935 |
+
<td class="cs-name"><?php _e('Ease in', 'crelly-slider'); ?></td>
|
936 |
<td class="cs-content">
|
937 |
<?php
|
938 |
if($void) echo '<input class="cs-element-data_easeIn" type="text" value="300" />';
|
941 |
ms
|
942 |
</td>
|
943 |
<td class="cs-description">
|
944 |
+
<?php _e('How long will the in animation take.', 'crelly-slider'); ?>
|
945 |
</td>
|
946 |
</tr>
|
947 |
<tr>
|
948 |
+
<td class="cs-name"><?php _e('Ease out', 'crelly-slider'); ?></td>
|
949 |
<td class="cs-content">
|
950 |
<?php
|
951 |
if($void) echo '<input class="cs-element-data_easeOut" type="text" value="300" />';
|
954 |
ms
|
955 |
</td>
|
956 |
<td class="cs-description">
|
957 |
+
<?php _e('How long will the out animation take.', 'crelly-slider'); ?>
|
958 |
</td>
|
959 |
</tr>
|
960 |
<tr>
|
961 |
+
<td class="cs-name"><?php _e('Custom CSS', 'crelly-slider'); ?></td>
|
962 |
<td class="cs-content">
|
963 |
<?php
|
964 |
if($void) echo '<textarea class="cs-element-custom_css"></textarea>';
|
966 |
?>
|
967 |
</td>
|
968 |
<td class="cs-description">
|
969 |
+
<?php _e('Style the element.', 'crelly-slider'); ?>
|
970 |
</td>
|
971 |
</tr>
|
972 |
<tr>
|
973 |
+
<td class="cs-name"><?php _e('Custom classes', 'crelly-slider'); ?></td>
|
974 |
<td class="cs-content">
|
975 |
<?php
|
976 |
if($void) echo '<input class="cs-element-custom_css_classes" type="text" />';
|
978 |
?>
|
979 |
</td>
|
980 |
<td class="cs-description">
|
981 |
+
<?php _e('Apply custom CSS classes to the element. The style of the classes may not work when working on backend.', 'crelly-slider'); ?>
|
982 |
</td>
|
983 |
</tr>
|
984 |
</tbody>
|
wordpress/frontend.php
CHANGED
@@ -22,7 +22,7 @@ class CrellySliderFrontend {
|
|
22 |
), $atts );
|
23 |
|
24 |
if(! $a['alias']) {
|
25 |
-
return __('You have to insert a valid alias in the shortcode', '
|
26 |
}
|
27 |
else {
|
28 |
return CrellySliderFrontend::output($a['alias'], false);
|
@@ -40,11 +40,11 @@ class CrellySliderFrontend {
|
|
40 |
|
41 |
if(! $slider) {
|
42 |
if($echo) {
|
43 |
-
_e('The slider hasn\'t been found', '
|
44 |
return;
|
45 |
}
|
46 |
else {
|
47 |
-
return __('The slider hasn\'t been found', '
|
48 |
}
|
49 |
}
|
50 |
|
22 |
), $atts );
|
23 |
|
24 |
if(! $a['alias']) {
|
25 |
+
return __('You have to insert a valid alias in the shortcode', 'crelly-slider');
|
26 |
}
|
27 |
else {
|
28 |
return CrellySliderFrontend::output($a['alias'], false);
|
40 |
|
41 |
if(! $slider) {
|
42 |
if($echo) {
|
43 |
+
_e('The slider hasn\'t been found', 'crelly-slider');
|
44 |
return;
|
45 |
}
|
46 |
else {
|
47 |
+
return __('The slider hasn\'t been found', 'crelly-slider');
|
48 |
}
|
49 |
}
|
50 |
|
wordpress/home.php
CHANGED
@@ -4,7 +4,7 @@ $sliders = $wpdb->get_results('SELECT * FROM ' . $wpdb->prefix . 'crellyslider_s
|
|
4 |
|
5 |
if(!$sliders) {
|
6 |
echo '<div class="cs-no-sliders">';
|
7 |
-
_e('No Sliders found. Please add a new one.', '
|
8 |
echo '</div>';
|
9 |
echo '<br /><br />';
|
10 |
}
|
@@ -14,16 +14,16 @@ else {
|
|
14 |
<table class="cs-sliders-list cs-table">
|
15 |
<thead>
|
16 |
<tr>
|
17 |
-
<th colspan="5"><?php _e('Sliders List', '
|
18 |
</tr>
|
19 |
</thead>
|
20 |
<tbody>
|
21 |
<tr class="cs-table-header">
|
22 |
-
<td><?php _e('ID', '
|
23 |
-
<td><?php _e('Name', '
|
24 |
-
<td><?php _e('Alias', '
|
25 |
-
<td><?php _e('Shortcode', '
|
26 |
-
<td><?php _e('Actions', '
|
27 |
</tr>
|
28 |
<?php
|
29 |
foreach($sliders as $slider) {
|
@@ -33,10 +33,10 @@ else {
|
|
33 |
echo '<td class="cs-slider-alias">' . $slider->alias . '</td>';
|
34 |
echo '<td class="cs-slider-shortcode">[crellyslider alias="' . $slider->alias . '"]</td>';
|
35 |
echo '<td>
|
36 |
-
<a class="cs-edit-slider cs-button cs-button cs-is-success" href="?page=crellyslider&view=edit&id=' . $slider->id . '">' . __('Edit Slider', '
|
37 |
-
<a class="cs-duplicate-slider cs-button cs-button cs-is-primary" href="javascript:void(0)" data-duplicate="' . $slider->id . '">' . __('Duplicate Slider', '
|
38 |
-
<a class="cs-export-slider cs-button cs-button cs-is-warning" href="javascript:void(0)" data-export="' . $slider->id . '">' . __('Export Slider', '
|
39 |
-
<a class="cs-delete-slider cs-button cs-button cs-is-danger" href="javascript:void(0)" data-delete="' . $slider->id . '">' . __('Delete Slider', '
|
40 |
</td>';
|
41 |
echo '</tr>';
|
42 |
}
|
@@ -48,6 +48,6 @@ else {
|
|
48 |
?>
|
49 |
|
50 |
<br />
|
51 |
-
<a class="cs-button cs-is-primary cs-add-slider" href="?page=crellyslider&view=add"><?php _e('Add Slider', '
|
52 |
-
<a class="cs-button cs-is-warning cs-import-slider" href="javascript:void(0)"><?php _e('Import Slider', '
|
53 |
<input id="cs-import-file" type="file" style="display: none;">
|
4 |
|
5 |
if(!$sliders) {
|
6 |
echo '<div class="cs-no-sliders">';
|
7 |
+
_e('No Sliders found. Please add a new one.', 'crelly-slider');
|
8 |
echo '</div>';
|
9 |
echo '<br /><br />';
|
10 |
}
|
14 |
<table class="cs-sliders-list cs-table">
|
15 |
<thead>
|
16 |
<tr>
|
17 |
+
<th colspan="5"><?php _e('Sliders List', 'crelly-slider'); ?></th>
|
18 |
</tr>
|
19 |
</thead>
|
20 |
<tbody>
|
21 |
<tr class="cs-table-header">
|
22 |
+
<td><?php _e('ID', 'crelly-slider'); ?></td>
|
23 |
+
<td><?php _e('Name', 'crelly-slider'); ?></td>
|
24 |
+
<td><?php _e('Alias', 'crelly-slider'); ?></td>
|
25 |
+
<td><?php _e('Shortcode', 'crelly-slider'); ?></td>
|
26 |
+
<td><?php _e('Actions', 'crelly-slider'); ?></td>
|
27 |
</tr>
|
28 |
<?php
|
29 |
foreach($sliders as $slider) {
|
33 |
echo '<td class="cs-slider-alias">' . $slider->alias . '</td>';
|
34 |
echo '<td class="cs-slider-shortcode">[crellyslider alias="' . $slider->alias . '"]</td>';
|
35 |
echo '<td>
|
36 |
+
<a class="cs-edit-slider cs-button cs-button cs-is-success" href="?page=crellyslider&view=edit&id=' . $slider->id . '">' . __('Edit Slider', 'crelly-slider') . '</a>
|
37 |
+
<a class="cs-duplicate-slider cs-button cs-button cs-is-primary" href="javascript:void(0)" data-duplicate="' . $slider->id . '">' . __('Duplicate Slider', 'crelly-slider') . '</a>
|
38 |
+
<a class="cs-export-slider cs-button cs-button cs-is-warning" href="javascript:void(0)" data-export="' . $slider->id . '">' . __('Export Slider', 'crelly-slider') . '</a>
|
39 |
+
<a class="cs-delete-slider cs-button cs-button cs-is-danger" href="javascript:void(0)" data-delete="' . $slider->id . '">' . __('Delete Slider', 'crelly-slider') . '</a>
|
40 |
</td>';
|
41 |
echo '</tr>';
|
42 |
}
|
48 |
?>
|
49 |
|
50 |
<br />
|
51 |
+
<a class="cs-button cs-is-primary cs-add-slider" href="?page=crellyslider&view=add"><?php _e('Add Slider', 'crelly-slider'); ?></a>
|
52 |
+
<a class="cs-button cs-is-warning cs-import-slider" href="javascript:void(0)"><?php _e('Import Slider', 'crelly-slider'); ?></a>
|
53 |
<input id="cs-import-file" type="file" style="display: none;">
|
wordpress/languages/{crellyslider-es_ES.mo → crelly-slider-es_ES.mo}
RENAMED
Binary file
|
wordpress/languages/{crellyslider-es_ES.po → crelly-slider-es_ES.po}
RENAMED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Crelly Slider 1.1.0\n"
|
4 |
-
"POT-Creation-Date: 2016-
|
5 |
-
"PO-Revision-Date: 2016-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: es\n"
|
@@ -31,8 +31,7 @@ msgstr "Algo salió mal."
|
|
31 |
msgid ""
|
32 |
"When you'll click \"Save Settings\", you'll be able to add slides and "
|
33 |
"elements."
|
34 |
-
msgstr ""
|
35 |
-
"Cuando hagas clic en guardar podrás agregar diapositivas y elementos."
|
36 |
|
37 |
#: ../admin.php:119
|
38 |
msgid "Slider Settings"
|
@@ -86,8 +85,8 @@ msgstr "Borrar diapositiva"
|
|
86 |
msgid ""
|
87 |
"All unsaved changes will be lost. Are you sure you want to leave this page?"
|
88 |
msgstr ""
|
89 |
-
"Se perderán los cambios sin guardar. ¿Estás seguro que deseas abandonar "
|
90 |
-
"
|
91 |
|
92 |
#: ../ajax.php:282
|
93 |
msgid "Copy"
|
@@ -117,33 +116,28 @@ msgstr "Borrar elemento"
|
|
117 |
msgid "Duplicate element"
|
118 |
msgstr "Duplicar elemento"
|
119 |
|
120 |
-
#: ../elements.php:215 ../elements.php:466 ../elements.php:716
|
121 |
-
#: ../slides.php:
|
122 |
msgid "None"
|
123 |
msgstr "Nada"
|
124 |
|
125 |
-
#: ../elements.php:216 ../elements.php:467 ../elements.php:717
|
126 |
-
#: ../slides.php:58
|
127 |
msgid "Slide down"
|
128 |
msgstr "Deslizar hacia abajo"
|
129 |
|
130 |
-
#: ../elements.php:217 ../elements.php:468 ../elements.php:718
|
131 |
-
#: ../slides.php:57
|
132 |
msgid "Slide up"
|
133 |
msgstr "Deslizar hacia arriba"
|
134 |
|
135 |
-
#: ../elements.php:218 ../elements.php:469 ../elements.php:719
|
136 |
-
#: ../slides.php:55
|
137 |
msgid "Slide left"
|
138 |
msgstr "Deslizar hacia la izquierda"
|
139 |
|
140 |
-
#: ../elements.php:219 ../elements.php:470 ../elements.php:720
|
141 |
-
#: ../slides.php:56
|
142 |
msgid "Slide right"
|
143 |
msgstr "Deslizar hacia la derecha"
|
144 |
|
145 |
-
#: ../elements.php:220 ../elements.php:471 ../elements.php:721
|
146 |
-
#: ../slides.php:52
|
147 |
msgid "Fade"
|
148 |
msgstr "Desvanecer"
|
149 |
|
@@ -155,13 +149,11 @@ msgstr "Desvanecer hacia abajo"
|
|
155 |
msgid "Fade up"
|
156 |
msgstr "Desvanecer hacia arriba"
|
157 |
|
158 |
-
#: ../elements.php:223 ../elements.php:474 ../elements.php:724
|
159 |
-
#: ../slides.php:53
|
160 |
msgid "Fade left"
|
161 |
msgstr "Desvanecer hacia la izquierda"
|
162 |
|
163 |
-
#: ../elements.php:224 ../elements.php:475 ../elements.php:725
|
164 |
-
#: ../slides.php:54
|
165 |
msgid "Fade right"
|
166 |
msgstr "Desvanecer hacia la derecha"
|
167 |
|
@@ -185,18 +177,18 @@ msgstr "Desvanecer ligeramente hacia la derecha"
|
|
185 |
msgid "Element Options"
|
186 |
msgstr "Opciones de elementos"
|
187 |
|
188 |
-
#: ../elements.php:241 ../elements.php:491 ../elements.php:742
|
189 |
-
#: ../
|
190 |
msgid "Option"
|
191 |
msgstr "Opción"
|
192 |
|
193 |
-
#: ../elements.php:242 ../elements.php:492 ../elements.php:743
|
194 |
-
#: ../
|
195 |
msgid "Parameter"
|
196 |
msgstr "Parámetro"
|
197 |
|
198 |
-
#: ../elements.php:243 ../elements.php:493 ../elements.php:744
|
199 |
-
#: ../
|
200 |
msgid "Description"
|
201 |
msgstr "Descripción"
|
202 |
|
@@ -269,8 +261,8 @@ msgstr "Escribe \"all\" para que se muestre siempre"
|
|
269 |
#: ../elements.php:330 ../elements.php:580 ../elements.php:881
|
270 |
msgid ""
|
271 |
"Write \"3000\" to set 3000 milliseconds minus delay time (so, if the delay "
|
272 |
-
"time is 1000 milliseconds, the element will be displayed for "
|
273 |
-
"
|
274 |
msgstr ""
|
275 |
"Escribe \"3000\" para establecer 3000 milisegundos menos el tiempo de "
|
276 |
"retraso (si el tiempo de retraso es de 1000 milisegundos, el elemento será "
|
@@ -303,10 +295,10 @@ msgid ""
|
|
303 |
"slide out animation: if not checked, the slide out animation won't start "
|
304 |
"until all the elements that have this option unchecked are animated out."
|
305 |
msgstr ""
|
306 |
-
"Animación de salida del elemento. <br /><br />Deshabilitar la "
|
307 |
-
"
|
308 |
-
"
|
309 |
-
"
|
310 |
|
311 |
#: ../elements.php:384 ../elements.php:634 ../elements.php:935
|
312 |
msgid "Ease in"
|
@@ -358,8 +350,8 @@ msgid ""
|
|
358 |
"Apply custom CSS classes to the element. The style of the classes may not "
|
359 |
"work when working on backend."
|
360 |
msgstr ""
|
361 |
-
"Aplicar clases personalizadas CSS al elemento. El estilo de las clases "
|
362 |
-
"
|
363 |
|
364 |
#: ../elements.php:496
|
365 |
msgid "Modify image"
|
@@ -387,8 +379,8 @@ msgstr "Repetición del video"
|
|
387 |
|
388 |
#: ../elements.php:786
|
389 |
msgid ""
|
390 |
-
"The video will automatically restart from the beginning when it reaches "
|
391 |
-
"
|
392 |
msgstr "El video automáticamente reiniciará desde el inicio cuando finalice"
|
393 |
|
394 |
#: ../elements.php:790
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Crelly Slider 1.1.0\n"
|
4 |
+
"POT-Creation-Date: 2016-10-31 15:46+0100\n"
|
5 |
+
"PO-Revision-Date: 2016-10-31 15:46+0100\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: es\n"
|
31 |
msgid ""
|
32 |
"When you'll click \"Save Settings\", you'll be able to add slides and "
|
33 |
"elements."
|
34 |
+
msgstr "Cuando hagas clic en guardar podrás agregar diapositivas y elementos."
|
|
|
35 |
|
36 |
#: ../admin.php:119
|
37 |
msgid "Slider Settings"
|
85 |
msgid ""
|
86 |
"All unsaved changes will be lost. Are you sure you want to leave this page?"
|
87 |
msgstr ""
|
88 |
+
"Se perderán los cambios sin guardar. ¿Estás seguro que deseas abandonar esta "
|
89 |
+
"página?"
|
90 |
|
91 |
#: ../ajax.php:282
|
92 |
msgid "Copy"
|
116 |
msgid "Duplicate element"
|
117 |
msgstr "Duplicar elemento"
|
118 |
|
119 |
+
#: ../elements.php:215 ../elements.php:466 ../elements.php:716 ../slides.php:51
|
120 |
+
#: ../slides.php:82 ../slides.php:127 ../slides.php:130
|
121 |
msgid "None"
|
122 |
msgstr "Nada"
|
123 |
|
124 |
+
#: ../elements.php:216 ../elements.php:467 ../elements.php:717 ../slides.php:58
|
|
|
125 |
msgid "Slide down"
|
126 |
msgstr "Deslizar hacia abajo"
|
127 |
|
128 |
+
#: ../elements.php:217 ../elements.php:468 ../elements.php:718 ../slides.php:57
|
|
|
129 |
msgid "Slide up"
|
130 |
msgstr "Deslizar hacia arriba"
|
131 |
|
132 |
+
#: ../elements.php:218 ../elements.php:469 ../elements.php:719 ../slides.php:55
|
|
|
133 |
msgid "Slide left"
|
134 |
msgstr "Deslizar hacia la izquierda"
|
135 |
|
136 |
+
#: ../elements.php:219 ../elements.php:470 ../elements.php:720 ../slides.php:56
|
|
|
137 |
msgid "Slide right"
|
138 |
msgstr "Deslizar hacia la derecha"
|
139 |
|
140 |
+
#: ../elements.php:220 ../elements.php:471 ../elements.php:721 ../slides.php:52
|
|
|
141 |
msgid "Fade"
|
142 |
msgstr "Desvanecer"
|
143 |
|
149 |
msgid "Fade up"
|
150 |
msgstr "Desvanecer hacia arriba"
|
151 |
|
152 |
+
#: ../elements.php:223 ../elements.php:474 ../elements.php:724 ../slides.php:53
|
|
|
153 |
msgid "Fade left"
|
154 |
msgstr "Desvanecer hacia la izquierda"
|
155 |
|
156 |
+
#: ../elements.php:224 ../elements.php:475 ../elements.php:725 ../slides.php:54
|
|
|
157 |
msgid "Fade right"
|
158 |
msgstr "Desvanecer hacia la derecha"
|
159 |
|
177 |
msgid "Element Options"
|
178 |
msgstr "Opciones de elementos"
|
179 |
|
180 |
+
#: ../elements.php:241 ../elements.php:491 ../elements.php:742 ../slider.php:59
|
181 |
+
#: ../slides.php:71
|
182 |
msgid "Option"
|
183 |
msgstr "Opción"
|
184 |
|
185 |
+
#: ../elements.php:242 ../elements.php:492 ../elements.php:743 ../slider.php:60
|
186 |
+
#: ../slides.php:72
|
187 |
msgid "Parameter"
|
188 |
msgstr "Parámetro"
|
189 |
|
190 |
+
#: ../elements.php:243 ../elements.php:493 ../elements.php:744 ../slider.php:61
|
191 |
+
#: ../slides.php:73
|
192 |
msgid "Description"
|
193 |
msgstr "Descripción"
|
194 |
|
261 |
#: ../elements.php:330 ../elements.php:580 ../elements.php:881
|
262 |
msgid ""
|
263 |
"Write \"3000\" to set 3000 milliseconds minus delay time (so, if the delay "
|
264 |
+
"time is 1000 milliseconds, the element will be displayed for 3000-1000=2000 "
|
265 |
+
"milliseconds)."
|
266 |
msgstr ""
|
267 |
"Escribe \"3000\" para establecer 3000 milisegundos menos el tiempo de "
|
268 |
"retraso (si el tiempo de retraso es de 1000 milisegundos, el elemento será "
|
295 |
"slide out animation: if not checked, the slide out animation won't start "
|
296 |
"until all the elements that have this option unchecked are animated out."
|
297 |
msgstr ""
|
298 |
+
"Animación de salida del elemento. <br /><br />Deshabilitar la sincronización "
|
299 |
+
"con la salida de la animación: si no está marcada, la salida de la animación "
|
300 |
+
"no comenzará hasta que todos los elementos que tengan esta opción sin marcar "
|
301 |
+
"hayan hecho su salida"
|
302 |
|
303 |
#: ../elements.php:384 ../elements.php:634 ../elements.php:935
|
304 |
msgid "Ease in"
|
350 |
"Apply custom CSS classes to the element. The style of the classes may not "
|
351 |
"work when working on backend."
|
352 |
msgstr ""
|
353 |
+
"Aplicar clases personalizadas CSS al elemento. El estilo de las clases puede "
|
354 |
+
"no funcionar mientras se trabaja en el escritorio wordpress"
|
355 |
|
356 |
#: ../elements.php:496
|
357 |
msgid "Modify image"
|
379 |
|
380 |
#: ../elements.php:786
|
381 |
msgid ""
|
382 |
+
"The video will automatically restart from the beginning when it reaches the "
|
383 |
+
"end."
|
384 |
msgstr "El video automáticamente reiniciará desde el inicio cuando finalice"
|
385 |
|
386 |
#: ../elements.php:790
|
wordpress/languages/{crellyslider-fr_FR.mo → crelly-slider-fr_FR.mo}
RENAMED
Binary file
|
wordpress/languages/{crellyslider-fr_FR.po → crelly-slider-fr_FR.po}
RENAMED
@@ -1,18 +1,18 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Crelly Slider 1.1.0\n"
|
4 |
-
"POT-Creation-Date: 2016-
|
5 |
-
"PO-Revision-Date: 2016-
|
|
|
6 |
"Language-Team: \n"
|
|
|
7 |
"MIME-Version: 1.0\n"
|
8 |
"Content-Type: text/plain; charset=UTF-8\n"
|
9 |
"Content-Transfer-Encoding: 8bit\n"
|
10 |
"X-Generator: Poedit 1.8.7\n"
|
11 |
"X-Poedit-KeywordsList: __;_e\n"
|
12 |
"X-Poedit-Basepath: .\n"
|
13 |
-
"Last-Translator: \n"
|
14 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
15 |
-
"Language: fr_FR\n"
|
16 |
"X-Poedit-SearchPath-0: ..\n"
|
17 |
|
18 |
#: ../admin.php:48
|
@@ -58,8 +58,7 @@ msgstr "La diapositive sera supprimée. Êtes-vous sûr?"
|
|
58 |
#: ../admin.php:245
|
59 |
msgid "You can't delete this. You must have at least one slide."
|
60 |
msgstr ""
|
61 |
-
"Vous ne pouvez pas supprimer cela. Vous devez avoir au moins une "
|
62 |
-
"diapositive."
|
63 |
|
64 |
#: ../admin.php:246
|
65 |
msgid "The slider will be deleted. Are you sure?"
|
@@ -120,33 +119,28 @@ msgstr "Supprimer élément"
|
|
120 |
msgid "Duplicate element"
|
121 |
msgstr "Dupliquer élément"
|
122 |
|
123 |
-
#: ../elements.php:215 ../elements.php:466 ../elements.php:716
|
124 |
-
#: ../slides.php:
|
125 |
msgid "None"
|
126 |
msgstr "Aucun"
|
127 |
|
128 |
-
#: ../elements.php:216 ../elements.php:467 ../elements.php:717
|
129 |
-
#: ../slides.php:58
|
130 |
msgid "Slide down"
|
131 |
msgstr "Glisser vers le bas"
|
132 |
|
133 |
-
#: ../elements.php:217 ../elements.php:468 ../elements.php:718
|
134 |
-
#: ../slides.php:57
|
135 |
msgid "Slide up"
|
136 |
msgstr "Glisser vers le haut"
|
137 |
|
138 |
-
#: ../elements.php:218 ../elements.php:469 ../elements.php:719
|
139 |
-
#: ../slides.php:55
|
140 |
msgid "Slide left"
|
141 |
msgstr "Glisser vers la gauche"
|
142 |
|
143 |
-
#: ../elements.php:219 ../elements.php:470 ../elements.php:720
|
144 |
-
#: ../slides.php:56
|
145 |
msgid "Slide right"
|
146 |
msgstr "Glisser vers la droite"
|
147 |
|
148 |
-
#: ../elements.php:220 ../elements.php:471 ../elements.php:721
|
149 |
-
#: ../slides.php:52
|
150 |
msgid "Fade"
|
151 |
msgstr "Fondu"
|
152 |
|
@@ -158,13 +152,11 @@ msgstr "Fondu vers le bas"
|
|
158 |
msgid "Fade up"
|
159 |
msgstr "Fondu vers le haut"
|
160 |
|
161 |
-
#: ../elements.php:223 ../elements.php:474 ../elements.php:724
|
162 |
-
#: ../slides.php:53
|
163 |
msgid "Fade left"
|
164 |
msgstr "Fondu vers la gauche"
|
165 |
|
166 |
-
#: ../elements.php:224 ../elements.php:475 ../elements.php:725
|
167 |
-
#: ../slides.php:54
|
168 |
msgid "Fade right"
|
169 |
msgstr "fondu vers la droite"
|
170 |
|
@@ -188,18 +180,18 @@ msgstr "Fondu vers la droite"
|
|
188 |
msgid "Element Options"
|
189 |
msgstr "Options de l'élément"
|
190 |
|
191 |
-
#: ../elements.php:241 ../elements.php:491 ../elements.php:742
|
192 |
-
#: ../
|
193 |
msgid "Option"
|
194 |
msgstr "Option"
|
195 |
|
196 |
-
#: ../elements.php:242 ../elements.php:492 ../elements.php:743
|
197 |
-
#: ../
|
198 |
msgid "Parameter"
|
199 |
msgstr "Paramètre"
|
200 |
|
201 |
-
#: ../elements.php:243 ../elements.php:493 ../elements.php:744
|
202 |
-
#: ../
|
203 |
msgid "Description"
|
204 |
msgstr "Description"
|
205 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Crelly Slider 1.1.0\n"
|
4 |
+
"POT-Creation-Date: 2016-10-31 15:46+0100\n"
|
5 |
+
"PO-Revision-Date: 2016-10-31 15:46+0100\n"
|
6 |
+
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
+
"Language: fr_FR\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"X-Generator: Poedit 1.8.7\n"
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: .\n"
|
|
|
15 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
|
|
16 |
"X-Poedit-SearchPath-0: ..\n"
|
17 |
|
18 |
#: ../admin.php:48
|
58 |
#: ../admin.php:245
|
59 |
msgid "You can't delete this. You must have at least one slide."
|
60 |
msgstr ""
|
61 |
+
"Vous ne pouvez pas supprimer cela. Vous devez avoir au moins une diapositive."
|
|
|
62 |
|
63 |
#: ../admin.php:246
|
64 |
msgid "The slider will be deleted. Are you sure?"
|
119 |
msgid "Duplicate element"
|
120 |
msgstr "Dupliquer élément"
|
121 |
|
122 |
+
#: ../elements.php:215 ../elements.php:466 ../elements.php:716 ../slides.php:51
|
123 |
+
#: ../slides.php:82 ../slides.php:127 ../slides.php:130
|
124 |
msgid "None"
|
125 |
msgstr "Aucun"
|
126 |
|
127 |
+
#: ../elements.php:216 ../elements.php:467 ../elements.php:717 ../slides.php:58
|
|
|
128 |
msgid "Slide down"
|
129 |
msgstr "Glisser vers le bas"
|
130 |
|
131 |
+
#: ../elements.php:217 ../elements.php:468 ../elements.php:718 ../slides.php:57
|
|
|
132 |
msgid "Slide up"
|
133 |
msgstr "Glisser vers le haut"
|
134 |
|
135 |
+
#: ../elements.php:218 ../elements.php:469 ../elements.php:719 ../slides.php:55
|
|
|
136 |
msgid "Slide left"
|
137 |
msgstr "Glisser vers la gauche"
|
138 |
|
139 |
+
#: ../elements.php:219 ../elements.php:470 ../elements.php:720 ../slides.php:56
|
|
|
140 |
msgid "Slide right"
|
141 |
msgstr "Glisser vers la droite"
|
142 |
|
143 |
+
#: ../elements.php:220 ../elements.php:471 ../elements.php:721 ../slides.php:52
|
|
|
144 |
msgid "Fade"
|
145 |
msgstr "Fondu"
|
146 |
|
152 |
msgid "Fade up"
|
153 |
msgstr "Fondu vers le haut"
|
154 |
|
155 |
+
#: ../elements.php:223 ../elements.php:474 ../elements.php:724 ../slides.php:53
|
|
|
156 |
msgid "Fade left"
|
157 |
msgstr "Fondu vers la gauche"
|
158 |
|
159 |
+
#: ../elements.php:224 ../elements.php:475 ../elements.php:725 ../slides.php:54
|
|
|
160 |
msgid "Fade right"
|
161 |
msgstr "fondu vers la droite"
|
162 |
|
180 |
msgid "Element Options"
|
181 |
msgstr "Options de l'élément"
|
182 |
|
183 |
+
#: ../elements.php:241 ../elements.php:491 ../elements.php:742 ../slider.php:59
|
184 |
+
#: ../slides.php:71
|
185 |
msgid "Option"
|
186 |
msgstr "Option"
|
187 |
|
188 |
+
#: ../elements.php:242 ../elements.php:492 ../elements.php:743 ../slider.php:60
|
189 |
+
#: ../slides.php:72
|
190 |
msgid "Parameter"
|
191 |
msgstr "Paramètre"
|
192 |
|
193 |
+
#: ../elements.php:243 ../elements.php:493 ../elements.php:744 ../slider.php:61
|
194 |
+
#: ../slides.php:73
|
195 |
msgid "Description"
|
196 |
msgstr "Description"
|
197 |
|
wordpress/languages/{crellyslider-sk_SK.mo → crelly-slider-sk_SK.mo}
RENAMED
Binary file
|
wordpress/languages/{crellyslider-sk_SK.po → crelly-slider-sk_SK.po}
RENAMED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Crelly Slider 1.1.0\n"
|
4 |
-
"POT-Creation-Date: 2016-
|
5 |
-
"PO-Revision-Date: 2016-
|
6 |
"Last-Translator: Oliver Juhas, WebMan Design\n"
|
7 |
"Language-Team: WebMan Design <webmandesigneu@gmail.com>\n"
|
8 |
"Language: sk_SK\n"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Crelly Slider 1.1.0\n"
|
4 |
+
"POT-Creation-Date: 2016-10-31 15:46+0100\n"
|
5 |
+
"PO-Revision-Date: 2016-10-31 15:46+0100\n"
|
6 |
"Last-Translator: Oliver Juhas, WebMan Design\n"
|
7 |
"Language-Team: WebMan Design <webmandesigneu@gmail.com>\n"
|
8 |
"Language: sk_SK\n"
|
wordpress/languages/{crellyslider-sr_RS.mo → crelly-slider-sr_RS.mo}
RENAMED
Binary file
|
wordpress/languages/{crellyslider-sr_RS.po → crelly-slider-sr_RS.po}
RENAMED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Crelly Slider 1.1.0\n"
|
4 |
-
"POT-Creation-Date: 2016-
|
5 |
-
"PO-Revision-Date: 2016-
|
6 |
"Last-Translator: branislav <branispak@gmail.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: sr\n"
|
@@ -16,7 +16,8 @@ msgstr ""
|
|
16 |
|
17 |
#: ../admin.php:48
|
18 |
msgid "JavaScript must be enabled to view this page correctly."
|
19 |
-
msgstr "
|
|
|
20 |
|
21 |
#: ../admin.php:51
|
22 |
msgid "Operation completed successfully."
|
@@ -27,8 +28,12 @@ msgid "Something went wrong."
|
|
27 |
msgstr "Nešto nije u redu."
|
28 |
|
29 |
#: ../admin.php:54
|
30 |
-
msgid "
|
31 |
-
|
|
|
|
|
|
|
|
|
32 |
|
33 |
#: ../admin.php:119
|
34 |
msgid "Slider Settings"
|
@@ -79,8 +84,11 @@ msgid "Delete slide"
|
|
79 |
msgstr "Obriši slajd"
|
80 |
|
81 |
#: ../admin.php:252
|
82 |
-
msgid "
|
83 |
-
|
|
|
|
|
|
|
84 |
|
85 |
#: ../ajax.php:282
|
86 |
msgid "Copy"
|
@@ -110,8 +118,8 @@ msgstr "Obriši element"
|
|
110 |
msgid "Duplicate element"
|
111 |
msgstr "Dupliraj element"
|
112 |
|
113 |
-
#: ../elements.php:215 ../elements.php:466 ../elements.php:716 ../slides.php:51
|
114 |
-
#: ../slides.php:127 ../slides.php:130
|
115 |
msgid "None"
|
116 |
msgstr "Nijedno"
|
117 |
|
@@ -171,15 +179,18 @@ msgstr "Nestajanje kratko desno"
|
|
171 |
msgid "Element Options"
|
172 |
msgstr "Opcije elementa"
|
173 |
|
174 |
-
#: ../elements.php:241 ../elements.php:491 ../elements.php:742 ../slider.php:59
|
|
|
175 |
msgid "Option"
|
176 |
msgstr "Opcije"
|
177 |
|
178 |
-
#: ../elements.php:242 ../elements.php:492 ../elements.php:743 ../slider.php:60
|
|
|
179 |
msgid "Parameter"
|
180 |
msgstr "Parametar"
|
181 |
|
182 |
-
#: ../elements.php:243 ../elements.php:493 ../elements.php:744 ../slider.php:61
|
|
|
183 |
msgid "Description"
|
184 |
msgstr "Opis"
|
185 |
|
@@ -220,7 +231,9 @@ msgid "Z - index"
|
|
220 |
msgstr "Z-indeks"
|
221 |
|
222 |
#: ../elements.php:298 ../elements.php:548 ../elements.php:849
|
223 |
-
msgid "
|
|
|
|
|
224 |
msgstr "Element sa većim z-indeksom će pokriti element sa manjim z-indeksom."
|
225 |
|
226 |
#: ../elements.php:302 ../elements.php:552 ../elements.php:853
|
@@ -231,7 +244,8 @@ msgstr "Kašnjenje"
|
|
231 |
msgid "How long will the element wait before the entrance."
|
232 |
msgstr "Koliko će vremena proći pre nego što element uđe u polje."
|
233 |
|
234 |
-
#: ../elements.php:315 ../elements.php:565 ../elements.php:866
|
|
|
235 |
msgid "Time"
|
236 |
msgstr "Vreme"
|
237 |
|
@@ -245,13 +259,16 @@ msgstr "Upiši \"all\" kako bi se zadržao do kraja."
|
|
245 |
|
246 |
#: ../elements.php:330 ../elements.php:580 ../elements.php:881
|
247 |
msgid ""
|
248 |
-
"Write \"3000\" to set 3000 milliseconds minus delay time (so, if the delay
|
249 |
-
"the element will be displayed for 3000-1000=2000
|
|
|
250 |
msgstr ""
|
251 |
-
"Upiši \"3000\" kako bi podesio 3000 milisekunde manje vreme kašnjenja
|
252 |
-
"milisekndi, element će biti prikazan tokom
|
|
|
253 |
|
254 |
-
#: ../elements.php:334 ../elements.php:584 ../elements.php:885
|
|
|
255 |
msgid "In animation"
|
256 |
msgstr "Ulazna animacija"
|
257 |
|
@@ -259,24 +276,27 @@ msgstr "Ulazna animacija"
|
|
259 |
msgid "The in animation of the element."
|
260 |
msgstr "Ulazna animacija elementa."
|
261 |
|
262 |
-
#: ../elements.php:353 ../elements.php:603 ../elements.php:904
|
|
|
263 |
msgid "Out animation"
|
264 |
msgstr "Izlazna animacija"
|
265 |
|
266 |
-
#: ../elements.php:368 ../elements.php:371 ../elements.php:374
|
267 |
-
#: ../elements.php:
|
|
|
268 |
msgid "Disable synchronization with slide out animation"
|
269 |
msgstr "Onemogući sinhronizaciju sa izlaznom animacijom slajda"
|
270 |
|
271 |
#: ../elements.php:380 ../elements.php:630 ../elements.php:931
|
272 |
msgid ""
|
273 |
-
"The out animation of the element.<br /><br />Disable synchronization with
|
274 |
-
"checked, the slide out animation won't start
|
275 |
-
"are animated out."
|
276 |
msgstr ""
|
277 |
-
"Izlazna animacija elementa.<br /><br />Onemogući sinhronizaciju sa izlaznom
|
278 |
-
"ukoliko nije štiklirano, izlazna animacija slajda neće
|
279 |
-
"elemenata koji imaju ovu opciju
|
|
|
280 |
|
281 |
#: ../elements.php:384 ../elements.php:634 ../elements.php:935
|
282 |
msgid "Ease in"
|
@@ -298,16 +318,22 @@ msgstr "Trajanje izlazne animacije."
|
|
298 |
msgid "Link"
|
299 |
msgstr "Veza"
|
300 |
|
301 |
-
#: ../elements.php:418 ../elements.php:421 ../elements.php:424
|
302 |
-
#: ../elements.php:
|
|
|
303 |
msgid "Open link in a new tab"
|
304 |
msgstr "Otvori vezu u novoj kartici"
|
305 |
|
306 |
#: ../elements.php:430 ../elements.php:680
|
307 |
-
msgid "
|
308 |
-
|
|
|
|
|
|
|
|
|
309 |
|
310 |
-
#: ../elements.php:434 ../elements.php:684 ../elements.php:961
|
|
|
311 |
msgid "Custom CSS"
|
312 |
msgstr "Prilagođeni CSS"
|
313 |
|
@@ -321,11 +347,11 @@ msgstr "Prilagođene klase"
|
|
321 |
|
322 |
#: ../elements.php:454 ../elements.php:704 ../elements.php:981
|
323 |
msgid ""
|
324 |
-
"Apply custom CSS classes to the element. The style of the classes may not
|
325 |
-
"backend."
|
326 |
msgstr ""
|
327 |
-
"Primeni prilagođene CSS klase na element. Stilovi klasa možda neće biti
|
328 |
-
"administratorskom panelu."
|
329 |
|
330 |
#: ../elements.php:496
|
331 |
msgid "Modify image"
|
@@ -352,7 +378,9 @@ msgid "Loop video"
|
|
352 |
msgstr "Reprodukuj video u petlji"
|
353 |
|
354 |
#: ../elements.php:786
|
355 |
-
msgid "
|
|
|
|
|
356 |
msgstr "Video će automatski početi od početka kada stigne do kraja."
|
357 |
|
358 |
#: ../elements.php:790
|
@@ -645,11 +673,11 @@ msgstr "Vreme za koje će slajd izaći iz polja."
|
|
645 |
|
646 |
#: ../slides.php:303
|
647 |
msgid ""
|
648 |
-
"Open the link (e.g.: http://www.google.it) when the user clicks on the
|
649 |
-
"you don't want it."
|
650 |
msgstr ""
|
651 |
-
"Otvori vezu (npr.: http://www.google.rs) kada korisnik klikne na pozadinu.
|
652 |
-
"onemogućavanje."
|
653 |
|
654 |
#: ../slides.php:315
|
655 |
msgid "Apply CSS to the slide."
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Crelly Slider 1.1.0\n"
|
4 |
+
"POT-Creation-Date: 2016-10-31 15:47+0100\n"
|
5 |
+
"PO-Revision-Date: 2016-10-31 15:47+0100\n"
|
6 |
"Last-Translator: branislav <branispak@gmail.com>\n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: sr\n"
|
16 |
|
17 |
#: ../admin.php:48
|
18 |
msgid "JavaScript must be enabled to view this page correctly."
|
19 |
+
msgstr ""
|
20 |
+
"JavaScript mora biti uključen kako bi se ova stranica ispravno prikazala."
|
21 |
|
22 |
#: ../admin.php:51
|
23 |
msgid "Operation completed successfully."
|
28 |
msgstr "Nešto nije u redu."
|
29 |
|
30 |
#: ../admin.php:54
|
31 |
+
msgid ""
|
32 |
+
"When you'll click \"Save Settings\", you'll be able to add slides and "
|
33 |
+
"elements."
|
34 |
+
msgstr ""
|
35 |
+
"Klikom na \"Sačuvaj podešavanja\" otvara se mogućnost dodavanja slajdova i "
|
36 |
+
"elemenata."
|
37 |
|
38 |
#: ../admin.php:119
|
39 |
msgid "Slider Settings"
|
84 |
msgstr "Obriši slajd"
|
85 |
|
86 |
#: ../admin.php:252
|
87 |
+
msgid ""
|
88 |
+
"All unsaved changes will be lost. Are you sure you want to leave this page?"
|
89 |
+
msgstr ""
|
90 |
+
"Sve promene koje nisu sačuvane će biti izgubljene. Da li sigurno želiš da "
|
91 |
+
"napustiš ovu stranu?"
|
92 |
|
93 |
#: ../ajax.php:282
|
94 |
msgid "Copy"
|
118 |
msgid "Duplicate element"
|
119 |
msgstr "Dupliraj element"
|
120 |
|
121 |
+
#: ../elements.php:215 ../elements.php:466 ../elements.php:716 ../slides.php:51
|
122 |
+
#: ../slides.php:82 ../slides.php:127 ../slides.php:130
|
123 |
msgid "None"
|
124 |
msgstr "Nijedno"
|
125 |
|
179 |
msgid "Element Options"
|
180 |
msgstr "Opcije elementa"
|
181 |
|
182 |
+
#: ../elements.php:241 ../elements.php:491 ../elements.php:742 ../slider.php:59
|
183 |
+
#: ../slides.php:71
|
184 |
msgid "Option"
|
185 |
msgstr "Opcije"
|
186 |
|
187 |
+
#: ../elements.php:242 ../elements.php:492 ../elements.php:743 ../slider.php:60
|
188 |
+
#: ../slides.php:72
|
189 |
msgid "Parameter"
|
190 |
msgstr "Parametar"
|
191 |
|
192 |
+
#: ../elements.php:243 ../elements.php:493 ../elements.php:744 ../slider.php:61
|
193 |
+
#: ../slides.php:73
|
194 |
msgid "Description"
|
195 |
msgstr "Opis"
|
196 |
|
231 |
msgstr "Z-indeks"
|
232 |
|
233 |
#: ../elements.php:298 ../elements.php:548 ../elements.php:849
|
234 |
+
msgid ""
|
235 |
+
"An element with an high z-index will cover an element with a lower z-index "
|
236 |
+
"if they overlap."
|
237 |
msgstr "Element sa većim z-indeksom će pokriti element sa manjim z-indeksom."
|
238 |
|
239 |
#: ../elements.php:302 ../elements.php:552 ../elements.php:853
|
244 |
msgid "How long will the element wait before the entrance."
|
245 |
msgstr "Koliko će vremena proći pre nego što element uđe u polje."
|
246 |
|
247 |
+
#: ../elements.php:315 ../elements.php:565 ../elements.php:866
|
248 |
+
#: ../slides.php:244
|
249 |
msgid "Time"
|
250 |
msgstr "Vreme"
|
251 |
|
259 |
|
260 |
#: ../elements.php:330 ../elements.php:580 ../elements.php:881
|
261 |
msgid ""
|
262 |
+
"Write \"3000\" to set 3000 milliseconds minus delay time (so, if the delay "
|
263 |
+
"time is 1000 milliseconds, the element will be displayed for 3000-1000=2000 "
|
264 |
+
"milliseconds)."
|
265 |
msgstr ""
|
266 |
+
"Upiši \"3000\" kako bi podesio 3000 milisekunde manje vreme kašnjenja "
|
267 |
+
"(dakle, ako je kašnjenje 1000 milisekndi, element će biti prikazan tokom "
|
268 |
+
"3000-1000=2000 milisekunde)."
|
269 |
|
270 |
+
#: ../elements.php:334 ../elements.php:584 ../elements.php:885
|
271 |
+
#: ../slides.php:206
|
272 |
msgid "In animation"
|
273 |
msgstr "Ulazna animacija"
|
274 |
|
276 |
msgid "The in animation of the element."
|
277 |
msgstr "Ulazna animacija elementa."
|
278 |
|
279 |
+
#: ../elements.php:353 ../elements.php:603 ../elements.php:904
|
280 |
+
#: ../slides.php:225
|
281 |
msgid "Out animation"
|
282 |
msgstr "Izlazna animacija"
|
283 |
|
284 |
+
#: ../elements.php:368 ../elements.php:371 ../elements.php:374
|
285 |
+
#: ../elements.php:618 ../elements.php:621 ../elements.php:624
|
286 |
+
#: ../elements.php:919 ../elements.php:922 ../elements.php:925
|
287 |
msgid "Disable synchronization with slide out animation"
|
288 |
msgstr "Onemogući sinhronizaciju sa izlaznom animacijom slajda"
|
289 |
|
290 |
#: ../elements.php:380 ../elements.php:630 ../elements.php:931
|
291 |
msgid ""
|
292 |
+
"The out animation of the element.<br /><br />Disable synchronization with "
|
293 |
+
"slide out animation: if not checked, the slide out animation won't start "
|
294 |
+
"until all the elements that have this option unchecked are animated out."
|
295 |
msgstr ""
|
296 |
+
"Izlazna animacija elementa.<br /><br />Onemogući sinhronizaciju sa izlaznom "
|
297 |
+
"animacijom slajda: ukoliko nije štiklirano, izlazna animacija slajda neće "
|
298 |
+
"početi sve dok se izlazna animacija svih elemenata koji imaju ovu opciju "
|
299 |
+
"isključenu ne završi."
|
300 |
|
301 |
#: ../elements.php:384 ../elements.php:634 ../elements.php:935
|
302 |
msgid "Ease in"
|
318 |
msgid "Link"
|
319 |
msgstr "Veza"
|
320 |
|
321 |
+
#: ../elements.php:418 ../elements.php:421 ../elements.php:424
|
322 |
+
#: ../elements.php:668 ../elements.php:671 ../elements.php:674
|
323 |
+
#: ../slides.php:291 ../slides.php:294 ../slides.php:297
|
324 |
msgid "Open link in a new tab"
|
325 |
msgstr "Otvori vezu u novoj kartici"
|
326 |
|
327 |
#: ../elements.php:430 ../elements.php:680
|
328 |
+
msgid ""
|
329 |
+
"Open the link (e.g.: http://www.google.it) on click. Leave it empty if you "
|
330 |
+
"don't want it."
|
331 |
+
msgstr ""
|
332 |
+
"Otvori vezu (npr.: http://www.google.rs) klikom. Ostavi prazno za "
|
333 |
+
"onemogućavanje."
|
334 |
|
335 |
+
#: ../elements.php:434 ../elements.php:684 ../elements.php:961
|
336 |
+
#: ../slides.php:307
|
337 |
msgid "Custom CSS"
|
338 |
msgstr "Prilagođeni CSS"
|
339 |
|
347 |
|
348 |
#: ../elements.php:454 ../elements.php:704 ../elements.php:981
|
349 |
msgid ""
|
350 |
+
"Apply custom CSS classes to the element. The style of the classes may not "
|
351 |
+
"work when working on backend."
|
352 |
msgstr ""
|
353 |
+
"Primeni prilagođene CSS klase na element. Stilovi klasa možda neće biti "
|
354 |
+
"vidljivi tokom rada u administratorskom panelu."
|
355 |
|
356 |
#: ../elements.php:496
|
357 |
msgid "Modify image"
|
378 |
msgstr "Reprodukuj video u petlji"
|
379 |
|
380 |
#: ../elements.php:786
|
381 |
+
msgid ""
|
382 |
+
"The video will automatically restart from the beginning when it reaches the "
|
383 |
+
"end."
|
384 |
msgstr "Video će automatski početi od početka kada stigne do kraja."
|
385 |
|
386 |
#: ../elements.php:790
|
673 |
|
674 |
#: ../slides.php:303
|
675 |
msgid ""
|
676 |
+
"Open the link (e.g.: http://www.google.it) when the user clicks on the "
|
677 |
+
"background. Leave it empty if you don't want it."
|
678 |
msgstr ""
|
679 |
+
"Otvori vezu (npr.: http://www.google.rs) kada korisnik klikne na pozadinu. "
|
680 |
+
"Ostavi prazno za onemogućavanje."
|
681 |
|
682 |
#: ../slides.php:315
|
683 |
msgid "Apply CSS to the slide."
|
wordpress/languages/{crellyslider.pot → crelly-slider.pot}
RENAMED
@@ -2,7 +2,7 @@
|
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Crelly Slider 1.1.0\n"
|
5 |
-
"POT-Creation-Date: 2016-
|
6 |
"PO-Revision-Date: 2015-03-15 13:30+0100\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
@@ -369,6 +369,18 @@ msgstr ""
|
|
369 |
msgid "Loop video"
|
370 |
msgstr ""
|
371 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
372 |
#: ../elements.php:786
|
373 |
msgid ""
|
374 |
"The video will automatically restart from the beginning when it reaches "
|
@@ -451,14 +463,6 @@ msgstr ""
|
|
451 |
msgid "Fixed"
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: ../slider.php:10
|
455 |
-
msgid "Yes"
|
456 |
-
msgstr ""
|
457 |
-
|
458 |
-
#: ../slider.php:11
|
459 |
-
msgid "No"
|
460 |
-
msgstr ""
|
461 |
-
|
462 |
#: ../slider.php:17 ../slider.php:21
|
463 |
msgid "Slider Name"
|
464 |
msgstr ""
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Crelly Slider 1.1.0\n"
|
5 |
+
"POT-Creation-Date: 2016-10-31 15:56+0100\n"
|
6 |
"PO-Revision-Date: 2015-03-15 13:30+0100\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
369 |
msgid "Loop video"
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: ../elements.php:774 ../elements.php:777 ../elements.php:780
|
373 |
+
#: ../elements.php:793 ../elements.php:796 ../elements.php:799
|
374 |
+
#: ../slider.php:10
|
375 |
+
msgid "Yes"
|
376 |
+
msgstr ""
|
377 |
+
|
378 |
+
#: ../elements.php:774 ../elements.php:777 ../elements.php:780
|
379 |
+
#: ../elements.php:793 ../elements.php:796 ../elements.php:799
|
380 |
+
#: ../slider.php:11
|
381 |
+
msgid "No"
|
382 |
+
msgstr ""
|
383 |
+
|
384 |
#: ../elements.php:786
|
385 |
msgid ""
|
386 |
"The video will automatically restart from the beginning when it reaches "
|
463 |
msgid "Fixed"
|
464 |
msgstr ""
|
465 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
466 |
#: ../slider.php:17 ../slider.php:21
|
467 |
msgid "Slider Name"
|
468 |
msgstr ""
|
wordpress/languages/crellyslider-de_DE.mo
DELETED
Binary file
|
wordpress/languages/crellyslider-de_DE.po
DELETED
@@ -1,685 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: Crelly Slider 1.1.0\n"
|
4 |
-
"POT-Creation-Date: 2016-03-09 14:27+0100\n"
|
5 |
-
"PO-Revision-Date: 2016-03-12 20:22+0100\n"
|
6 |
-
"Last-Translator: \n"
|
7 |
-
"Language-Team: \n"
|
8 |
-
"Language: de_DE\n"
|
9 |
-
"MIME-Version: 1.0\n"
|
10 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
-
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.8.7\n"
|
13 |
-
"X-Poedit-Basepath: .\n"
|
14 |
-
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
-
|
16 |
-
#: ../admin.php:48
|
17 |
-
msgid "JavaScript must be enabled to view this page correctly."
|
18 |
-
msgstr "Um die Seite korrekt anzuzeigen muss JavaScript aktiviert sein."
|
19 |
-
|
20 |
-
#: ../admin.php:51
|
21 |
-
msgid "Operation completed successfully."
|
22 |
-
msgstr "Vorgang wurde erfolgreich abgeschlossen."
|
23 |
-
|
24 |
-
#: ../admin.php:52
|
25 |
-
msgid "Something went wrong."
|
26 |
-
msgstr "Ups, etwas ist schief gelaufen."
|
27 |
-
|
28 |
-
#: ../admin.php:54
|
29 |
-
msgid ""
|
30 |
-
"When you'll click \"Save Settings\", you'll be able to add slides and "
|
31 |
-
"elements."
|
32 |
-
msgstr ""
|
33 |
-
"Nachdem Sie auf \"Save Settings\" geklickt haben, können Sie Slides und "
|
34 |
-
"Elemente hinzufügen"
|
35 |
-
|
36 |
-
#: ../admin.php:119
|
37 |
-
msgid "Slider Settings"
|
38 |
-
msgstr "Slider Einstellungen"
|
39 |
-
|
40 |
-
#: ../admin.php:123
|
41 |
-
msgid "Edit Slides"
|
42 |
-
msgstr "Slides bearbeiten"
|
43 |
-
|
44 |
-
#: ../admin.php:143
|
45 |
-
msgid "Save Settings"
|
46 |
-
msgstr "Einstellungen speichern"
|
47 |
-
|
48 |
-
#: ../admin.php:243 ../slides.php:15
|
49 |
-
msgid "Slide"
|
50 |
-
msgstr "Slide"
|
51 |
-
|
52 |
-
#: ../admin.php:244
|
53 |
-
msgid "The slide will be deleted. Are you sure?"
|
54 |
-
msgstr "Das Slide wird gelöscht - Sind Sie sicher?"
|
55 |
-
|
56 |
-
#: ../admin.php:245
|
57 |
-
msgid "You can't delete this. You must have at least one slide."
|
58 |
-
msgstr "Sie können das letzte Slide nicht löschen."
|
59 |
-
|
60 |
-
#: ../admin.php:246
|
61 |
-
msgid "The slider will be deleted. Are you sure?"
|
62 |
-
msgstr "Der Slider wird gelöscht - Sind Sie sicher?"
|
63 |
-
|
64 |
-
#: ../admin.php:247 ../elements.php:249
|
65 |
-
msgid "Text element"
|
66 |
-
msgstr "Text Element"
|
67 |
-
|
68 |
-
#: ../admin.php:248 ../elements.php:159
|
69 |
-
msgid "Live preview"
|
70 |
-
msgstr "Live Vorschau"
|
71 |
-
|
72 |
-
#: ../admin.php:249
|
73 |
-
msgid "Stop preview"
|
74 |
-
msgstr "Vorschau stoppen"
|
75 |
-
|
76 |
-
#: ../admin.php:250 ../slides.php:16
|
77 |
-
msgid "Duplicate slide"
|
78 |
-
msgstr "Slide duplizieren"
|
79 |
-
|
80 |
-
#: ../admin.php:251 ../slides.php:17
|
81 |
-
msgid "Delete slide"
|
82 |
-
msgstr "Slide löschen"
|
83 |
-
|
84 |
-
#: ../admin.php:252
|
85 |
-
msgid ""
|
86 |
-
"All unsaved changes will be lost. Are you sure you want to leave this page?"
|
87 |
-
msgstr ""
|
88 |
-
"Alle ungespeicherten Änderungen werden gelöscht - Wollen Sie die Seite "
|
89 |
-
"wirklich verlassen?"
|
90 |
-
|
91 |
-
#: ../ajax.php:282
|
92 |
-
msgid "Copy"
|
93 |
-
msgstr "Kopieren"
|
94 |
-
|
95 |
-
#: ../ajax.php:283
|
96 |
-
msgid "copy"
|
97 |
-
msgstr "kopieren"
|
98 |
-
|
99 |
-
#: ../elements.php:154
|
100 |
-
msgid "Add text"
|
101 |
-
msgstr "Text hinzufügen"
|
102 |
-
|
103 |
-
#: ../elements.php:155
|
104 |
-
msgid "Add image"
|
105 |
-
msgstr "Bild hinzufügen"
|
106 |
-
|
107 |
-
#: ../elements.php:156
|
108 |
-
msgid "Add video"
|
109 |
-
msgstr "Video hinzufügen"
|
110 |
-
|
111 |
-
#: ../elements.php:160
|
112 |
-
msgid "Delete element"
|
113 |
-
msgstr "Element löschen"
|
114 |
-
|
115 |
-
#: ../elements.php:161
|
116 |
-
msgid "Duplicate element"
|
117 |
-
msgstr "Element duplizieren"
|
118 |
-
|
119 |
-
#: ../elements.php:215 ../elements.php:466 ../elements.php:716 ../slides.php:51
|
120 |
-
#: ../slides.php:82 ../slides.php:127 ../slides.php:130
|
121 |
-
msgid "None"
|
122 |
-
msgstr "None"
|
123 |
-
|
124 |
-
#: ../elements.php:216 ../elements.php:467 ../elements.php:717 ../slides.php:58
|
125 |
-
msgid "Slide down"
|
126 |
-
msgstr "Slide runter"
|
127 |
-
|
128 |
-
#: ../elements.php:217 ../elements.php:468 ../elements.php:718 ../slides.php:57
|
129 |
-
msgid "Slide up"
|
130 |
-
msgstr "hinauf schieben"
|
131 |
-
|
132 |
-
#: ../elements.php:218 ../elements.php:469 ../elements.php:719 ../slides.php:55
|
133 |
-
msgid "Slide left"
|
134 |
-
msgstr "nach links schieben"
|
135 |
-
|
136 |
-
#: ../elements.php:219 ../elements.php:470 ../elements.php:720 ../slides.php:56
|
137 |
-
msgid "Slide right"
|
138 |
-
msgstr "nach rechts schieben"
|
139 |
-
|
140 |
-
#: ../elements.php:220 ../elements.php:471 ../elements.php:721 ../slides.php:52
|
141 |
-
msgid "Fade"
|
142 |
-
msgstr "Blenden"
|
143 |
-
|
144 |
-
#: ../elements.php:221 ../elements.php:472 ../elements.php:722
|
145 |
-
msgid "Fade down"
|
146 |
-
msgstr "unten blenden"
|
147 |
-
|
148 |
-
#: ../elements.php:222 ../elements.php:473 ../elements.php:723
|
149 |
-
msgid "Fade up"
|
150 |
-
msgstr "oben blenden"
|
151 |
-
|
152 |
-
#: ../elements.php:223 ../elements.php:474 ../elements.php:724 ../slides.php:53
|
153 |
-
msgid "Fade left"
|
154 |
-
msgstr "links blenden"
|
155 |
-
|
156 |
-
#: ../elements.php:224 ../elements.php:475 ../elements.php:725 ../slides.php:54
|
157 |
-
msgid "Fade right"
|
158 |
-
msgstr "rechts blenden"
|
159 |
-
|
160 |
-
#: ../elements.php:225 ../elements.php:476 ../elements.php:726
|
161 |
-
msgid "Fade small down"
|
162 |
-
msgstr "unten blenden(klein)"
|
163 |
-
|
164 |
-
#: ../elements.php:226 ../elements.php:477 ../elements.php:727
|
165 |
-
msgid "Fade small up"
|
166 |
-
msgstr "oben blenden(klein)"
|
167 |
-
|
168 |
-
#: ../elements.php:227 ../elements.php:478 ../elements.php:728
|
169 |
-
msgid "Fade small left"
|
170 |
-
msgstr "links blenden (klein)"
|
171 |
-
|
172 |
-
#: ../elements.php:228 ../elements.php:479 ../elements.php:729
|
173 |
-
msgid "Fade small right"
|
174 |
-
msgstr "rechts blenden (klein)"
|
175 |
-
|
176 |
-
#: ../elements.php:235 ../elements.php:486 ../elements.php:736
|
177 |
-
msgid "Element Options"
|
178 |
-
msgstr "Element Optionen"
|
179 |
-
|
180 |
-
#: ../elements.php:241 ../elements.php:491 ../elements.php:742 ../slider.php:59
|
181 |
-
#: ../slides.php:71
|
182 |
-
msgid "Option"
|
183 |
-
msgstr "Optionen"
|
184 |
-
|
185 |
-
#: ../elements.php:242 ../elements.php:492 ../elements.php:743 ../slider.php:60
|
186 |
-
#: ../slides.php:72
|
187 |
-
msgid "Parameter"
|
188 |
-
msgstr "Parameter"
|
189 |
-
|
190 |
-
#: ../elements.php:243 ../elements.php:493 ../elements.php:744 ../slider.php:61
|
191 |
-
#: ../slides.php:73
|
192 |
-
msgid "Description"
|
193 |
-
msgstr "Beschreibung"
|
194 |
-
|
195 |
-
#: ../elements.php:246
|
196 |
-
msgid "Text"
|
197 |
-
msgstr "Text"
|
198 |
-
|
199 |
-
#: ../elements.php:254
|
200 |
-
msgid "Write the text or the HTML."
|
201 |
-
msgstr "Text oder HTML eintragen"
|
202 |
-
|
203 |
-
#: ../elements.php:258 ../elements.php:508 ../elements.php:809
|
204 |
-
msgid "Left"
|
205 |
-
msgstr "Links"
|
206 |
-
|
207 |
-
#: ../elements.php:267 ../elements.php:517 ../elements.php:818
|
208 |
-
msgid "Center horizontally"
|
209 |
-
msgstr "Mitte horizontal"
|
210 |
-
|
211 |
-
#: ../elements.php:270 ../elements.php:520 ../elements.php:821
|
212 |
-
msgid "Left distance in px from the start width."
|
213 |
-
msgstr "linker Abstand in px zur Startbreite"
|
214 |
-
|
215 |
-
#: ../elements.php:274 ../elements.php:524 ../elements.php:825
|
216 |
-
msgid "Top"
|
217 |
-
msgstr "Oben"
|
218 |
-
|
219 |
-
#: ../elements.php:283 ../elements.php:533 ../elements.php:834
|
220 |
-
msgid "Center vertically"
|
221 |
-
msgstr "Mitte vertikal"
|
222 |
-
|
223 |
-
#: ../elements.php:286 ../elements.php:536 ../elements.php:837
|
224 |
-
msgid "Top distance in px from the start height."
|
225 |
-
msgstr "Oberer Abstand in px zur Starthöhr"
|
226 |
-
|
227 |
-
#: ../elements.php:290 ../elements.php:540 ../elements.php:841
|
228 |
-
msgid "Z - index"
|
229 |
-
msgstr "Z - Index"
|
230 |
-
|
231 |
-
#: ../elements.php:298 ../elements.php:548 ../elements.php:849
|
232 |
-
msgid ""
|
233 |
-
"An element with an high z-index will cover an element with a lower z-index "
|
234 |
-
"if they overlap."
|
235 |
-
msgstr ""
|
236 |
-
"Elemente mit höherem Z-Index überdecken Elemente mit niedriegerem Z-Index"
|
237 |
-
|
238 |
-
#: ../elements.php:302 ../elements.php:552 ../elements.php:853
|
239 |
-
msgid "Delay"
|
240 |
-
msgstr "Verzögerung"
|
241 |
-
|
242 |
-
#: ../elements.php:311 ../elements.php:561 ../elements.php:862
|
243 |
-
msgid "How long will the element wait before the entrance."
|
244 |
-
msgstr "Wie lange wartet das Element bevor es erscheint"
|
245 |
-
|
246 |
-
#: ../elements.php:315 ../elements.php:565 ../elements.php:866
|
247 |
-
#: ../slides.php:244
|
248 |
-
msgid "Time"
|
249 |
-
msgstr "Zeit"
|
250 |
-
|
251 |
-
#: ../elements.php:324 ../elements.php:574 ../elements.php:875
|
252 |
-
msgid "How long will the element be displayed during the slide execution."
|
253 |
-
msgstr "Wie lange wird das Element angezeigt"
|
254 |
-
|
255 |
-
#: ../elements.php:327 ../elements.php:577 ../elements.php:878
|
256 |
-
msgid "Write \"all\" to set the entire time."
|
257 |
-
msgstr "Schreibe \"all\" um die Gesamtzeit zu setzen"
|
258 |
-
|
259 |
-
#: ../elements.php:330 ../elements.php:580 ../elements.php:881
|
260 |
-
msgid ""
|
261 |
-
"Write \"3000\" to set 3000 milliseconds minus delay time (so, if the delay "
|
262 |
-
"time is 1000 milliseconds, the element will be displayed for 3000-1000=2000 "
|
263 |
-
"milliseconds)."
|
264 |
-
msgstr ""
|
265 |
-
"\"3000\" für 3000 ms (millisekunden) minus Verzögerungszeit (wenn die "
|
266 |
-
"Verzögerungszeit 1000 ms ist, wird das Element 2000 ms angezeigt "
|
267 |
-
"(3000-1000=2000)."
|
268 |
-
|
269 |
-
#: ../elements.php:334 ../elements.php:584 ../elements.php:885
|
270 |
-
#: ../slides.php:206
|
271 |
-
msgid "In animation"
|
272 |
-
msgstr "In Animation"
|
273 |
-
|
274 |
-
#: ../elements.php:349 ../elements.php:599 ../elements.php:900
|
275 |
-
msgid "The in animation of the element."
|
276 |
-
msgstr "Die Eingangs-Animation des Elements"
|
277 |
-
|
278 |
-
#: ../elements.php:353 ../elements.php:603 ../elements.php:904
|
279 |
-
#: ../slides.php:225
|
280 |
-
msgid "Out animation"
|
281 |
-
msgstr "Ausgangs-Animation"
|
282 |
-
|
283 |
-
#: ../elements.php:368 ../elements.php:371 ../elements.php:374
|
284 |
-
#: ../elements.php:618 ../elements.php:621 ../elements.php:624
|
285 |
-
#: ../elements.php:919 ../elements.php:922 ../elements.php:925
|
286 |
-
msgid "Disable synchronization with slide out animation"
|
287 |
-
msgstr "Synchronisierung mit der Ausgangsanimation nicht aktivieren"
|
288 |
-
|
289 |
-
#: ../elements.php:380 ../elements.php:630 ../elements.php:931
|
290 |
-
msgid ""
|
291 |
-
"The out animation of the element.<br /><br />Disable synchronization with "
|
292 |
-
"slide out animation: if not checked, the slide out animation won't start "
|
293 |
-
"until all the elements that have this option unchecked are animated out."
|
294 |
-
msgstr ""
|
295 |
-
"Die Ausgangs-Animation des Elements.<br /><br /> Synchronisierung mit der "
|
296 |
-
"Ausgangs-Animation nicht aktivieren: Wenn nicht markerit, beginnt die "
|
297 |
-
"Ausgangs-Animation nicht solange nicht alle Elemente die diese Option nicht "
|
298 |
-
"markiert haben, ausgeblendet sind."
|
299 |
-
|
300 |
-
#: ../elements.php:384 ../elements.php:634 ../elements.php:935
|
301 |
-
msgid "Ease in"
|
302 |
-
msgstr "Ease in"
|
303 |
-
|
304 |
-
#: ../elements.php:393 ../elements.php:643 ../elements.php:944
|
305 |
-
msgid "How long will the in animation take."
|
306 |
-
msgstr "Animationszeit"
|
307 |
-
|
308 |
-
#: ../elements.php:397 ../elements.php:647 ../elements.php:948
|
309 |
-
msgid "Ease out"
|
310 |
-
msgstr "Ease out"
|
311 |
-
|
312 |
-
#: ../elements.php:406 ../elements.php:656 ../elements.php:957
|
313 |
-
msgid "How long will the out animation take."
|
314 |
-
msgstr "Animationszeit"
|
315 |
-
|
316 |
-
#: ../elements.php:410 ../elements.php:660 ../slides.php:283
|
317 |
-
msgid "Link"
|
318 |
-
msgstr "Link"
|
319 |
-
|
320 |
-
#: ../elements.php:418 ../elements.php:421 ../elements.php:424
|
321 |
-
#: ../elements.php:668 ../elements.php:671 ../elements.php:674
|
322 |
-
#: ../slides.php:291 ../slides.php:294 ../slides.php:297
|
323 |
-
msgid "Open link in a new tab"
|
324 |
-
msgstr "In neuem Tab öffnen"
|
325 |
-
|
326 |
-
#: ../elements.php:430 ../elements.php:680
|
327 |
-
msgid ""
|
328 |
-
"Open the link (e.g.: http://www.google.it) on click. Leave it empty if you "
|
329 |
-
"don't want it."
|
330 |
-
msgstr ""
|
331 |
-
"Öffne einen Link (zB http://www.google.de) beim Klicken. Einfach leer "
|
332 |
-
"lassen, wenn dies nicht gewünscht ist."
|
333 |
-
|
334 |
-
#: ../elements.php:434 ../elements.php:684 ../elements.php:961
|
335 |
-
#: ../slides.php:307
|
336 |
-
msgid "Custom CSS"
|
337 |
-
msgstr "Custom CSS"
|
338 |
-
|
339 |
-
#: ../elements.php:442 ../elements.php:692 ../elements.php:969
|
340 |
-
msgid "Style the element."
|
341 |
-
msgstr "Element Style"
|
342 |
-
|
343 |
-
#: ../elements.php:446 ../elements.php:696 ../elements.php:973
|
344 |
-
msgid "Custom classes"
|
345 |
-
msgstr "Custom classes"
|
346 |
-
|
347 |
-
#: ../elements.php:454 ../elements.php:704 ../elements.php:981
|
348 |
-
msgid ""
|
349 |
-
"Apply custom CSS classes to the element. The style of the classes may not "
|
350 |
-
"work when working on backend."
|
351 |
-
msgstr ""
|
352 |
-
"Verwende Custom CSS Class für dieses Element. Der Style der Klasse wird im "
|
353 |
-
"Backend nicht funktionieren. "
|
354 |
-
|
355 |
-
#: ../elements.php:496
|
356 |
-
msgid "Modify image"
|
357 |
-
msgstr "Bild modifizieren"
|
358 |
-
|
359 |
-
#: ../elements.php:499 ../elements.php:500
|
360 |
-
msgid "Open gallery"
|
361 |
-
msgstr "Öffne Gallerie"
|
362 |
-
|
363 |
-
#: ../elements.php:504
|
364 |
-
msgid "Change the image source or the alt text."
|
365 |
-
msgstr "Die Bild Quelle oder den Alt-Text bearbeiten."
|
366 |
-
|
367 |
-
#: ../elements.php:747
|
368 |
-
msgid "Video source"
|
369 |
-
msgstr "Video Quelle"
|
370 |
-
|
371 |
-
#: ../elements.php:767
|
372 |
-
msgid "Set source and ID."
|
373 |
-
msgstr "Quelle und ID einstellen"
|
374 |
-
|
375 |
-
#: ../elements.php:771
|
376 |
-
msgid "Loop video"
|
377 |
-
msgstr "Loopvideo"
|
378 |
-
|
379 |
-
#: ../elements.php:786
|
380 |
-
msgid ""
|
381 |
-
"The video will automatically restart from the beginning when it reaches the "
|
382 |
-
"end."
|
383 |
-
msgstr "Das Video beginnt von neuem, wenn das Ende erreicht ist."
|
384 |
-
|
385 |
-
#: ../elements.php:790
|
386 |
-
msgid "Autoplay"
|
387 |
-
msgstr "Automatisch Starten"
|
388 |
-
|
389 |
-
#: ../elements.php:805
|
390 |
-
msgid "The video will automatically be played after the in animation."
|
391 |
-
msgstr "Das Video startet automatisch, wenn die Animation beendet ist."
|
392 |
-
|
393 |
-
#: ../frontend.php:25
|
394 |
-
msgid "You have to insert a valid alias in the shortcode"
|
395 |
-
msgstr "Bitte einen gültigen Alias in den Shortcode eintragen."
|
396 |
-
|
397 |
-
#: ../frontend.php:43 ../frontend.php:47
|
398 |
-
msgid "The slider hasn't been found"
|
399 |
-
msgstr "Der Slider kann nicht gefunden werden."
|
400 |
-
|
401 |
-
#: ../home.php:7
|
402 |
-
msgid "No Sliders found. Please add a new one."
|
403 |
-
msgstr "Keine Slider gefunden. Bitte einen neuen hinzufügen."
|
404 |
-
|
405 |
-
#: ../home.php:17
|
406 |
-
msgid "Sliders List"
|
407 |
-
msgstr "Slider Liste"
|
408 |
-
|
409 |
-
#: ../home.php:22
|
410 |
-
msgid "ID"
|
411 |
-
msgstr "ID"
|
412 |
-
|
413 |
-
#: ../home.php:23
|
414 |
-
msgid "Name"
|
415 |
-
msgstr "Name"
|
416 |
-
|
417 |
-
#: ../home.php:24
|
418 |
-
msgid "Alias"
|
419 |
-
msgstr "Alias"
|
420 |
-
|
421 |
-
#: ../home.php:25
|
422 |
-
msgid "Shortcode"
|
423 |
-
msgstr "Shortcode"
|
424 |
-
|
425 |
-
#: ../home.php:26
|
426 |
-
msgid "Actions"
|
427 |
-
msgstr "Aktionen"
|
428 |
-
|
429 |
-
#: ../home.php:36
|
430 |
-
msgid "Edit Slider"
|
431 |
-
msgstr "Slider bearbeiten"
|
432 |
-
|
433 |
-
#: ../home.php:37
|
434 |
-
msgid "Duplicate Slider"
|
435 |
-
msgstr "Slider duplizieren"
|
436 |
-
|
437 |
-
#: ../home.php:38
|
438 |
-
msgid "Export Slider"
|
439 |
-
msgstr "Slider exportieren"
|
440 |
-
|
441 |
-
#: ../home.php:39
|
442 |
-
msgid "Delete Slider"
|
443 |
-
msgstr "Slider löschen"
|
444 |
-
|
445 |
-
#: ../home.php:51
|
446 |
-
msgid "Add Slider"
|
447 |
-
msgstr "Slider hinzufügen"
|
448 |
-
|
449 |
-
#: ../home.php:52
|
450 |
-
msgid "Import Slider"
|
451 |
-
msgstr "Slider importieren"
|
452 |
-
|
453 |
-
#: ../slider.php:6
|
454 |
-
msgid "Full Width"
|
455 |
-
msgstr "Volle Breite"
|
456 |
-
|
457 |
-
#: ../slider.php:7
|
458 |
-
msgid "Fixed"
|
459 |
-
msgstr "Fixiert"
|
460 |
-
|
461 |
-
#: ../slider.php:10
|
462 |
-
msgid "Yes"
|
463 |
-
msgstr "Ja"
|
464 |
-
|
465 |
-
#: ../slider.php:11
|
466 |
-
msgid "No"
|
467 |
-
msgstr "Nein"
|
468 |
-
|
469 |
-
#: ../slider.php:17 ../slider.php:21
|
470 |
-
msgid "Slider Name"
|
471 |
-
msgstr "Slider Name"
|
472 |
-
|
473 |
-
#: ../slider.php:27
|
474 |
-
msgid "Alias:"
|
475 |
-
msgstr "Alias:"
|
476 |
-
|
477 |
-
#: ../slider.php:39
|
478 |
-
msgid "Shortcode:"
|
479 |
-
msgstr "Shortcode:"
|
480 |
-
|
481 |
-
#: ../slider.php:54
|
482 |
-
msgid "Slider General Options"
|
483 |
-
msgstr "Slider Generelle Optionen"
|
484 |
-
|
485 |
-
#: ../slider.php:64
|
486 |
-
msgid "Layout"
|
487 |
-
msgstr "Layout"
|
488 |
-
|
489 |
-
#: ../slider.php:79
|
490 |
-
msgid "Modify the layout type of the slider."
|
491 |
-
msgstr "Layouttype des Sliders verändern."
|
492 |
-
|
493 |
-
#: ../slider.php:83
|
494 |
-
msgid "Responsive"
|
495 |
-
msgstr "Responsive"
|
496 |
-
|
497 |
-
#: ../slider.php:98
|
498 |
-
msgid "The slider will be adapted to the screen size."
|
499 |
-
msgstr "Der Slider wird an die Bildschirmgröße angepasst"
|
500 |
-
|
501 |
-
#: ../slider.php:102
|
502 |
-
msgid "Start Width"
|
503 |
-
msgstr "Startbreite"
|
504 |
-
|
505 |
-
#: ../slider.php:111
|
506 |
-
msgid "The content initial width of the slider."
|
507 |
-
msgstr "Die initiale Breite des Contents im Slider"
|
508 |
-
|
509 |
-
#: ../slider.php:115
|
510 |
-
msgid "Start Height"
|
511 |
-
msgstr "Starthöhe"
|
512 |
-
|
513 |
-
#: ../slider.php:124
|
514 |
-
msgid "The content initial height of the slider."
|
515 |
-
msgstr "Die initiale Höhe des Contents im Slider"
|
516 |
-
|
517 |
-
#: ../slider.php:128
|
518 |
-
msgid "Automatic Slide"
|
519 |
-
msgstr "Automatische Slides"
|
520 |
-
|
521 |
-
#: ../slider.php:143
|
522 |
-
msgid "The slides loop is automatic."
|
523 |
-
msgstr "Die Slide-Schleife ist automatisch"
|
524 |
-
|
525 |
-
#: ../slider.php:147
|
526 |
-
msgid "Show Controls"
|
527 |
-
msgstr "Zeige Bedienelemente"
|
528 |
-
|
529 |
-
#: ../slider.php:162
|
530 |
-
msgid "Show the previous and next arrows."
|
531 |
-
msgstr "Zeige Pfeile für nächstes und letztes "
|
532 |
-
|
533 |
-
#: ../slider.php:166
|
534 |
-
msgid "Show Navigation"
|
535 |
-
msgstr "Zeige Navigation"
|
536 |
-
|
537 |
-
#: ../slider.php:181
|
538 |
-
msgid "Show the links buttons to change slide."
|
539 |
-
msgstr "Zeige Links Knöpfe zum Slide ändern."
|
540 |
-
|
541 |
-
#: ../slider.php:185
|
542 |
-
msgid "Enable swipe and drag"
|
543 |
-
msgstr "Aktiviere Ziehen und Verschieben"
|
544 |
-
|
545 |
-
#: ../slider.php:200
|
546 |
-
msgid "Enable swipe left, swipe right, drag left, drag right commands."
|
547 |
-
msgstr "Aktiviere links / rechts ziehen und verschieben Kommandos."
|
548 |
-
|
549 |
-
#: ../slider.php:204
|
550 |
-
msgid "Show Progress Bar"
|
551 |
-
msgstr "Zeige Fortschrittsbalken"
|
552 |
-
|
553 |
-
#: ../slider.php:219
|
554 |
-
msgid "Draw the progress bar during the slide execution."
|
555 |
-
msgstr "Zeichne den Fortschrittsbalken während der SLide Abarbeitung"
|
556 |
-
|
557 |
-
#: ../slider.php:223
|
558 |
-
msgid "Pause on Hover"
|
559 |
-
msgstr "Pause bei Mausüber"
|
560 |
-
|
561 |
-
#: ../slider.php:238
|
562 |
-
msgid "Pause the current slide when hovered."
|
563 |
-
msgstr "Pausiere das aktuelle Slide wenn der Mauszeiger darüber ist."
|
564 |
-
|
565 |
-
#: ../slider.php:242
|
566 |
-
msgid "Callbacks"
|
567 |
-
msgstr "Callbacks"
|
568 |
-
|
569 |
-
#: ../slider.php:260
|
570 |
-
msgid "Some jQuery functions that you can fire during the slider execution."
|
571 |
-
msgstr ""
|
572 |
-
"Einige jQuery Funktionen, die wären der Slider Abarbeitung ausgelöst werden "
|
573 |
-
"können."
|
574 |
-
|
575 |
-
#: ../slides.php:24
|
576 |
-
msgid "Add Slide"
|
577 |
-
msgstr "Slide hinzufügen"
|
578 |
-
|
579 |
-
#: ../slides.php:65
|
580 |
-
msgid "Slide Options"
|
581 |
-
msgstr "Slide Optionen"
|
582 |
-
|
583 |
-
#: ../slides.php:76
|
584 |
-
msgid "Background"
|
585 |
-
msgstr "Hintergrund"
|
586 |
-
|
587 |
-
#: ../slides.php:80 ../slides.php:124
|
588 |
-
msgid "Background image:"
|
589 |
-
msgstr "Hintergrund Grafik"
|
590 |
-
|
591 |
-
#: ../slides.php:83 ../slides.php:128 ../slides.php:131
|
592 |
-
msgid "Select image"
|
593 |
-
msgstr "Wähle Grafik"
|
594 |
-
|
595 |
-
#: ../slides.php:89 ../slides.php:138
|
596 |
-
msgid "Background color:"
|
597 |
-
msgstr "Hintergrund Farbe"
|
598 |
-
|
599 |
-
#: ../slides.php:93 ../slides.php:143 ../slides.php:145
|
600 |
-
msgid "Transparent"
|
601 |
-
msgstr "Transparent"
|
602 |
-
|
603 |
-
#: ../slides.php:97 ../slides.php:159
|
604 |
-
msgid "Enter value"
|
605 |
-
msgstr "Wert Eingabe"
|
606 |
-
|
607 |
-
#: ../slides.php:103 ../slides.php:166
|
608 |
-
msgid "Background position-x:"
|
609 |
-
msgstr "Hintergrund Position X:"
|
610 |
-
|
611 |
-
#: ../slides.php:106 ../slides.php:169
|
612 |
-
msgid "Background position-y:"
|
613 |
-
msgstr "Hintergrund Position Y:"
|
614 |
-
|
615 |
-
#: ../slides.php:112 ../slides.php:175
|
616 |
-
msgid "Background repeat:"
|
617 |
-
msgstr "Hintergrund wiederholen:"
|
618 |
-
|
619 |
-
#: ../slides.php:114 ../slides.php:178 ../slides.php:181
|
620 |
-
msgid "Repeat"
|
621 |
-
msgstr "Wiederholen"
|
622 |
-
|
623 |
-
#: ../slides.php:115 ../slides.php:179 ../slides.php:182
|
624 |
-
msgid "No repeat"
|
625 |
-
msgstr "Keine Wiederholung"
|
626 |
-
|
627 |
-
#: ../slides.php:121 ../slides.php:189
|
628 |
-
msgid "Background size:"
|
629 |
-
msgstr "Hintergrund Größe:"
|
630 |
-
|
631 |
-
#: ../slides.php:194
|
632 |
-
msgid "The background of the slide and its proprieties."
|
633 |
-
msgstr "Der Hinterung des Slides und seine Eigenschaften."
|
634 |
-
|
635 |
-
#: ../slides.php:197
|
636 |
-
msgid "Presets:"
|
637 |
-
msgstr "Voreinstellungen:"
|
638 |
-
|
639 |
-
#: ../slides.php:200
|
640 |
-
msgid "Full width responsive background image"
|
641 |
-
msgstr "Volle Breite des Responsive Hintergrundbildes"
|
642 |
-
|
643 |
-
#: ../slides.php:201
|
644 |
-
msgid "Pattern background image"
|
645 |
-
msgstr "Muster Hintergrund Bild"
|
646 |
-
|
647 |
-
#: ../slides.php:221
|
648 |
-
msgid "The in animation of the slide."
|
649 |
-
msgstr "Die Eingangsanimation des Slides"
|
650 |
-
|
651 |
-
#: ../slides.php:240
|
652 |
-
msgid "The out animation of the slide."
|
653 |
-
msgstr "Die Ausgangsanimation des Slides"
|
654 |
-
|
655 |
-
#: ../slides.php:253
|
656 |
-
msgid "The time that the slide will remain on the screen."
|
657 |
-
msgstr "Die Zeit, die das Slide am Bildschirm zu sehen ist. "
|
658 |
-
|
659 |
-
#: ../slides.php:257
|
660 |
-
msgid "Ease In"
|
661 |
-
msgstr "Ease In"
|
662 |
-
|
663 |
-
#: ../slides.php:266
|
664 |
-
msgid "The time that the slide will take to get in."
|
665 |
-
msgstr "Die Zeit die das Slide zum Erscheinen braucht."
|
666 |
-
|
667 |
-
#: ../slides.php:270
|
668 |
-
msgid "Ease Out"
|
669 |
-
msgstr "Ease Out"
|
670 |
-
|
671 |
-
#: ../slides.php:279
|
672 |
-
msgid "The time that the slide will take to get out."
|
673 |
-
msgstr "Die zeit die das Slide zum Verschwinden braucht."
|
674 |
-
|
675 |
-
#: ../slides.php:303
|
676 |
-
msgid ""
|
677 |
-
"Open the link (e.g.: http://www.google.it) when the user clicks on the "
|
678 |
-
"background. Leave it empty if you don't want it."
|
679 |
-
msgstr ""
|
680 |
-
"Öffnet den Link(zB http://www.google.de) wenn der User auf den Hintergrunde "
|
681 |
-
"klicht. Bitte leer lasen, falls nicht gewünscht."
|
682 |
-
|
683 |
-
#: ../slides.php:315
|
684 |
-
msgid "Apply CSS to the slide."
|
685 |
-
msgstr "CSS auf das Slide anwenden"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
wordpress/languages/crellyslider-it_IT.mo
DELETED
Binary file
|
wordpress/languages/crellyslider-it_IT.po
DELETED
@@ -1,721 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: Crelly Slider 1.1.0\n"
|
4 |
-
"POT-Creation-Date: 2016-03-12 22:18+0100\n"
|
5 |
-
"PO-Revision-Date: 2016-03-12 22:18+0100\n"
|
6 |
-
"Last-Translator: \n"
|
7 |
-
"Language-Team: \n"
|
8 |
-
"Language: it_IT\n"
|
9 |
-
"MIME-Version: 1.0\n"
|
10 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
-
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.8.7\n"
|
13 |
-
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
-
"X-Poedit-Basepath: .\n"
|
15 |
-
"X-Poedit-SearchPath-0: ..\n"
|
16 |
-
|
17 |
-
#: ../admin.php:48
|
18 |
-
msgid "JavaScript must be enabled to view this page correctly."
|
19 |
-
msgstr ""
|
20 |
-
"JavaScript deve essere abilitato per visualizzare correttamente questa "
|
21 |
-
"pagina."
|
22 |
-
|
23 |
-
#: ../admin.php:51
|
24 |
-
msgid "Operation completed successfully."
|
25 |
-
msgstr "Operazione completata con successo."
|
26 |
-
|
27 |
-
#: ../admin.php:52
|
28 |
-
msgid "Something went wrong."
|
29 |
-
msgstr "È stato riscontrato un problema."
|
30 |
-
|
31 |
-
#: ../admin.php:54
|
32 |
-
msgid ""
|
33 |
-
"When you'll click \"Save Settings\", you'll be able to add slides and "
|
34 |
-
"elements."
|
35 |
-
msgstr ""
|
36 |
-
"Prima di poter aggiungere slide ed elementi, dovrai cliccare \"Salva "
|
37 |
-
"impostazioni\"."
|
38 |
-
|
39 |
-
#: ../admin.php:119
|
40 |
-
msgid "Slider Settings"
|
41 |
-
msgstr "Impostazioni dello slider"
|
42 |
-
|
43 |
-
#: ../admin.php:123
|
44 |
-
msgid "Edit Slides"
|
45 |
-
msgstr "Edita slide"
|
46 |
-
|
47 |
-
#: ../admin.php:143
|
48 |
-
msgid "Save Settings"
|
49 |
-
msgstr "Salva impostazioni"
|
50 |
-
|
51 |
-
#: ../admin.php:243 ../slides.php:15
|
52 |
-
msgid "Slide"
|
53 |
-
msgstr "Slide"
|
54 |
-
|
55 |
-
#: ../admin.php:244
|
56 |
-
msgid "The slide will be deleted. Are you sure?"
|
57 |
-
msgstr "La slide verrà eliminata. Sei sicuro?"
|
58 |
-
|
59 |
-
#: ../admin.php:245
|
60 |
-
msgid "You can't delete this. You must have at least one slide."
|
61 |
-
msgstr "Impossibile eliminare. Deve essere presente almeno una slide."
|
62 |
-
|
63 |
-
#: ../admin.php:246
|
64 |
-
msgid "The slider will be deleted. Are you sure?"
|
65 |
-
msgstr "Lo slider verrà eliminato. Sei sicuro?"
|
66 |
-
|
67 |
-
#: ../admin.php:247 ../elements.php:249
|
68 |
-
msgid "Text element"
|
69 |
-
msgstr "Elemento testo"
|
70 |
-
|
71 |
-
#: ../admin.php:248 ../elements.php:159
|
72 |
-
msgid "Live preview"
|
73 |
-
msgstr "Anteprima live"
|
74 |
-
|
75 |
-
#: ../admin.php:249
|
76 |
-
msgid "Stop preview"
|
77 |
-
msgstr "Ferma anteprima"
|
78 |
-
|
79 |
-
#: ../admin.php:250 ../slides.php:16
|
80 |
-
msgid "Duplicate slide"
|
81 |
-
msgstr "Duplica slide"
|
82 |
-
|
83 |
-
#: ../admin.php:251 ../slides.php:17
|
84 |
-
msgid "Delete slide"
|
85 |
-
msgstr "Elimina slide"
|
86 |
-
|
87 |
-
#: ../admin.php:252
|
88 |
-
msgid ""
|
89 |
-
"All unsaved changes will be lost. Are you sure you want to leave this page?"
|
90 |
-
msgstr ""
|
91 |
-
"Tutte le modifiche non salvate verranno perse. Sei sicuro di voler lasciare "
|
92 |
-
"questa pagina?"
|
93 |
-
|
94 |
-
#: ../ajax.php:282
|
95 |
-
msgid "Copy"
|
96 |
-
msgstr "Copia"
|
97 |
-
|
98 |
-
#: ../ajax.php:283
|
99 |
-
msgid "copy"
|
100 |
-
msgstr "copia"
|
101 |
-
|
102 |
-
#: ../elements.php:154
|
103 |
-
msgid "Add text"
|
104 |
-
msgstr "Aggiungi testo"
|
105 |
-
|
106 |
-
#: ../elements.php:155
|
107 |
-
msgid "Add image"
|
108 |
-
msgstr "Aggiungi immagine"
|
109 |
-
|
110 |
-
#: ../elements.php:156
|
111 |
-
msgid "Add video"
|
112 |
-
msgstr "Aggiungi video"
|
113 |
-
|
114 |
-
#: ../elements.php:160
|
115 |
-
msgid "Delete element"
|
116 |
-
msgstr "Elimina elemento"
|
117 |
-
|
118 |
-
#: ../elements.php:161
|
119 |
-
msgid "Duplicate element"
|
120 |
-
msgstr "Duplica elemento"
|
121 |
-
|
122 |
-
#: ../elements.php:215 ../elements.php:466 ../elements.php:716 ../slides.php:51
|
123 |
-
#: ../slides.php:82 ../slides.php:127 ../slides.php:130
|
124 |
-
msgid "None"
|
125 |
-
msgstr "Nessuna"
|
126 |
-
|
127 |
-
#: ../elements.php:216 ../elements.php:467 ../elements.php:717 ../slides.php:58
|
128 |
-
msgid "Slide down"
|
129 |
-
msgstr "Scorri verso il basso"
|
130 |
-
|
131 |
-
#: ../elements.php:217 ../elements.php:468 ../elements.php:718 ../slides.php:57
|
132 |
-
msgid "Slide up"
|
133 |
-
msgstr "Scorri verso l'alto"
|
134 |
-
|
135 |
-
#: ../elements.php:218 ../elements.php:469 ../elements.php:719 ../slides.php:55
|
136 |
-
msgid "Slide left"
|
137 |
-
msgstr "Scorri verso sinistra"
|
138 |
-
|
139 |
-
#: ../elements.php:219 ../elements.php:470 ../elements.php:720 ../slides.php:56
|
140 |
-
msgid "Slide right"
|
141 |
-
msgstr "Scorri verso destra"
|
142 |
-
|
143 |
-
#: ../elements.php:220 ../elements.php:471 ../elements.php:721 ../slides.php:52
|
144 |
-
msgid "Fade"
|
145 |
-
msgstr "Sfuma"
|
146 |
-
|
147 |
-
#: ../elements.php:221 ../elements.php:472 ../elements.php:722
|
148 |
-
msgid "Fade down"
|
149 |
-
msgstr "Sfuma verso il basso"
|
150 |
-
|
151 |
-
#: ../elements.php:222 ../elements.php:473 ../elements.php:723
|
152 |
-
msgid "Fade up"
|
153 |
-
msgstr "Sfuma verso l'alto"
|
154 |
-
|
155 |
-
#: ../elements.php:223 ../elements.php:474 ../elements.php:724 ../slides.php:53
|
156 |
-
msgid "Fade left"
|
157 |
-
msgstr "Sfuma verso sinistra"
|
158 |
-
|
159 |
-
#: ../elements.php:224 ../elements.php:475 ../elements.php:725 ../slides.php:54
|
160 |
-
msgid "Fade right"
|
161 |
-
msgstr "Sfuma verso destra"
|
162 |
-
|
163 |
-
#: ../elements.php:225 ../elements.php:476 ../elements.php:726
|
164 |
-
msgid "Fade small down"
|
165 |
-
msgstr "Sfuma leggermente verso il basso"
|
166 |
-
|
167 |
-
#: ../elements.php:226 ../elements.php:477 ../elements.php:727
|
168 |
-
msgid "Fade small up"
|
169 |
-
msgstr "Sfuma leggermente verso l'alto"
|
170 |
-
|
171 |
-
#: ../elements.php:227 ../elements.php:478 ../elements.php:728
|
172 |
-
msgid "Fade small left"
|
173 |
-
msgstr "Sfuma leggermente verso sinistra"
|
174 |
-
|
175 |
-
#: ../elements.php:228 ../elements.php:479 ../elements.php:729
|
176 |
-
msgid "Fade small right"
|
177 |
-
msgstr "Sfuma leggermente verso destra"
|
178 |
-
|
179 |
-
#: ../elements.php:235 ../elements.php:486 ../elements.php:736
|
180 |
-
msgid "Element Options"
|
181 |
-
msgstr "Opzioni dell'elemento"
|
182 |
-
|
183 |
-
#: ../elements.php:241 ../elements.php:491 ../elements.php:742 ../slider.php:59
|
184 |
-
#: ../slides.php:71
|
185 |
-
msgid "Option"
|
186 |
-
msgstr "Opzione"
|
187 |
-
|
188 |
-
#: ../elements.php:242 ../elements.php:492 ../elements.php:743 ../slider.php:60
|
189 |
-
#: ../slides.php:72
|
190 |
-
msgid "Parameter"
|
191 |
-
msgstr "Parametro"
|
192 |
-
|
193 |
-
#: ../elements.php:243 ../elements.php:493 ../elements.php:744 ../slider.php:61
|
194 |
-
#: ../slides.php:73
|
195 |
-
msgid "Description"
|
196 |
-
msgstr "Descrizione"
|
197 |
-
|
198 |
-
#: ../elements.php:246
|
199 |
-
msgid "Text"
|
200 |
-
msgstr "Testo"
|
201 |
-
|
202 |
-
#: ../elements.php:254
|
203 |
-
msgid "Write the text or the HTML."
|
204 |
-
msgstr "Scrivi il testo o l'HTML."
|
205 |
-
|
206 |
-
#: ../elements.php:258 ../elements.php:508 ../elements.php:809
|
207 |
-
msgid "Left"
|
208 |
-
msgstr "Distanza dal margine di sinistra"
|
209 |
-
|
210 |
-
#: ../elements.php:267 ../elements.php:517 ../elements.php:818
|
211 |
-
msgid "Center horizontally"
|
212 |
-
msgstr "Centra orizzontalmente"
|
213 |
-
|
214 |
-
#: ../elements.php:270 ../elements.php:520 ../elements.php:821
|
215 |
-
msgid "Left distance in px from the start width."
|
216 |
-
msgstr "Distanza in px dal margine sinistro della larghezza di partenza."
|
217 |
-
|
218 |
-
#: ../elements.php:274 ../elements.php:524 ../elements.php:825
|
219 |
-
msgid "Top"
|
220 |
-
msgstr "Distanza dal margine superiore"
|
221 |
-
|
222 |
-
#: ../elements.php:283 ../elements.php:533 ../elements.php:834
|
223 |
-
msgid "Center vertically"
|
224 |
-
msgstr "Centra verticalmente"
|
225 |
-
|
226 |
-
#: ../elements.php:286 ../elements.php:536 ../elements.php:837
|
227 |
-
msgid "Top distance in px from the start height."
|
228 |
-
msgstr "Distanza in px dal margine superiore dell'altezza di partenza."
|
229 |
-
|
230 |
-
#: ../elements.php:290 ../elements.php:540 ../elements.php:841
|
231 |
-
msgid "Z - index"
|
232 |
-
msgstr "Z - index"
|
233 |
-
|
234 |
-
#: ../elements.php:298 ../elements.php:548 ../elements.php:849
|
235 |
-
msgid ""
|
236 |
-
"An element with an high z-index will cover an element with a lower z-index "
|
237 |
-
"if they overlap."
|
238 |
-
msgstr ""
|
239 |
-
"Se due elementi vengono sovrapposti, quello con lo z-index superiore coprirà "
|
240 |
-
"quello con lo z-index inferiore."
|
241 |
-
|
242 |
-
#: ../elements.php:302 ../elements.php:552 ../elements.php:853
|
243 |
-
msgid "Delay"
|
244 |
-
msgstr "Attesa"
|
245 |
-
|
246 |
-
#: ../elements.php:311 ../elements.php:561 ../elements.php:862
|
247 |
-
msgid "How long will the element wait before the entrance."
|
248 |
-
msgstr "Quando tempo l'elemento dovrà aspettare prima di entrare."
|
249 |
-
|
250 |
-
#: ../elements.php:315 ../elements.php:565 ../elements.php:866
|
251 |
-
#: ../slides.php:244
|
252 |
-
msgid "Time"
|
253 |
-
msgstr "Durata"
|
254 |
-
|
255 |
-
#: ../elements.php:324 ../elements.php:574 ../elements.php:875
|
256 |
-
msgid "How long will the element be displayed during the slide execution."
|
257 |
-
msgstr ""
|
258 |
-
"Per quanto tempo l'elemento verrà visualizzato durante l'esecuzione della "
|
259 |
-
"slide."
|
260 |
-
|
261 |
-
#: ../elements.php:327 ../elements.php:577 ../elements.php:878
|
262 |
-
msgid "Write \"all\" to set the entire time."
|
263 |
-
msgstr "Scrivi \"all\" per impostare tutto il tempo."
|
264 |
-
|
265 |
-
#: ../elements.php:330 ../elements.php:580 ../elements.php:881
|
266 |
-
msgid ""
|
267 |
-
"Write \"3000\" to set 3000 milliseconds minus delay time (so, if the delay "
|
268 |
-
"time is 1000 milliseconds, the element will be displayed for 3000-1000=2000 "
|
269 |
-
"milliseconds)."
|
270 |
-
msgstr ""
|
271 |
-
"Scrivi \"3000\" per impostare 3000 millisecondi meno il tempo di attesa "
|
272 |
-
"(quindi, se il tempo di attesa è 1000 millisecondi, l'elemento verrà "
|
273 |
-
"visualizzato per 3000-1000=2000 millisecondi)."
|
274 |
-
|
275 |
-
#: ../elements.php:334 ../elements.php:584 ../elements.php:885
|
276 |
-
#: ../slides.php:206
|
277 |
-
msgid "In animation"
|
278 |
-
msgstr "Animazione d'entrata"
|
279 |
-
|
280 |
-
#: ../elements.php:349 ../elements.php:599 ../elements.php:900
|
281 |
-
msgid "The in animation of the element."
|
282 |
-
msgstr "L'animazione d'entrata dell'elemento."
|
283 |
-
|
284 |
-
#: ../elements.php:353 ../elements.php:603 ../elements.php:904
|
285 |
-
#: ../slides.php:225
|
286 |
-
msgid "Out animation"
|
287 |
-
msgstr "Animazione d'uscita"
|
288 |
-
|
289 |
-
#: ../elements.php:368 ../elements.php:371 ../elements.php:374
|
290 |
-
#: ../elements.php:618 ../elements.php:621 ../elements.php:624
|
291 |
-
#: ../elements.php:919 ../elements.php:922 ../elements.php:925
|
292 |
-
msgid "Disable synchronization with slide out animation"
|
293 |
-
msgstr "Disabilita la sincronizzazione con l'animazione d'uscita della slide"
|
294 |
-
|
295 |
-
#: ../elements.php:380 ../elements.php:630 ../elements.php:931
|
296 |
-
msgid ""
|
297 |
-
"The out animation of the element.<br /><br />Disable synchronization with "
|
298 |
-
"slide out animation: if not checked, the slide out animation won't start "
|
299 |
-
"until all the elements that have this option unchecked are animated out."
|
300 |
-
msgstr ""
|
301 |
-
"L'animazione d'uscita dell'elemento.<br /><br />Disabilita la "
|
302 |
-
"sincronizzazione con l'animazione d'uscita della slide: se non viene "
|
303 |
-
"spuntato, l'animazione d'uscita della slide non comincerà fino a quando "
|
304 |
-
"tutti gli elementi che hanno quest'opzione spuntata non avranno completato "
|
305 |
-
"l'animazione d'uscita."
|
306 |
-
|
307 |
-
#: ../elements.php:384 ../elements.php:634 ../elements.php:935
|
308 |
-
msgid "Ease in"
|
309 |
-
msgstr "Tempo d'entrata"
|
310 |
-
|
311 |
-
#: ../elements.php:393 ../elements.php:643 ../elements.php:944
|
312 |
-
msgid "How long will the in animation take."
|
313 |
-
msgstr "Quanto durerà l'animazione d'entrata."
|
314 |
-
|
315 |
-
#: ../elements.php:397 ../elements.php:647 ../elements.php:948
|
316 |
-
msgid "Ease out"
|
317 |
-
msgstr "Tempo d'uscita"
|
318 |
-
|
319 |
-
#: ../elements.php:406 ../elements.php:656 ../elements.php:957
|
320 |
-
msgid "How long will the out animation take."
|
321 |
-
msgstr "Quanto durerà l'animazione d'uscita."
|
322 |
-
|
323 |
-
#: ../elements.php:410 ../elements.php:660 ../slides.php:283
|
324 |
-
msgid "Link"
|
325 |
-
msgstr "Link"
|
326 |
-
|
327 |
-
#: ../elements.php:418 ../elements.php:421 ../elements.php:424
|
328 |
-
#: ../elements.php:668 ../elements.php:671 ../elements.php:674
|
329 |
-
#: ../slides.php:291 ../slides.php:294 ../slides.php:297
|
330 |
-
msgid "Open link in a new tab"
|
331 |
-
msgstr "Apri il link in una nuova scheda"
|
332 |
-
|
333 |
-
#: ../elements.php:430 ../elements.php:680
|
334 |
-
msgid ""
|
335 |
-
"Open the link (e.g.: http://www.google.it) on click. Leave it empty if you "
|
336 |
-
"don't want it."
|
337 |
-
msgstr ""
|
338 |
-
"Apri il link (es.: http://www.google.it) al click. Lascia il campo di testo "
|
339 |
-
"vuoto se non ti serve."
|
340 |
-
|
341 |
-
#: ../elements.php:434 ../elements.php:684 ../elements.php:961
|
342 |
-
#: ../slides.php:307
|
343 |
-
msgid "Custom CSS"
|
344 |
-
msgstr "CSS personalizzato"
|
345 |
-
|
346 |
-
#: ../elements.php:442 ../elements.php:692 ../elements.php:969
|
347 |
-
msgid "Style the element."
|
348 |
-
msgstr "Dai dello stile all'elemento."
|
349 |
-
|
350 |
-
#: ../elements.php:446 ../elements.php:696 ../elements.php:973
|
351 |
-
msgid "Custom classes"
|
352 |
-
msgstr "Classi personalizzate"
|
353 |
-
|
354 |
-
#: ../elements.php:454 ../elements.php:704 ../elements.php:981
|
355 |
-
msgid ""
|
356 |
-
"Apply custom CSS classes to the element. The style of the classes may not "
|
357 |
-
"work when working on backend."
|
358 |
-
msgstr ""
|
359 |
-
"Aggiungi classi CSS personalizzate all'elemento. Lo stile delle classi "
|
360 |
-
"potrebbe non funzionare mentre si lavora nel backend."
|
361 |
-
|
362 |
-
#: ../elements.php:496
|
363 |
-
msgid "Modify image"
|
364 |
-
msgstr "Modifica immagine"
|
365 |
-
|
366 |
-
#: ../elements.php:499 ../elements.php:500
|
367 |
-
msgid "Open gallery"
|
368 |
-
msgstr "Apri galleria"
|
369 |
-
|
370 |
-
#: ../elements.php:504
|
371 |
-
msgid "Change the image source or the alt text."
|
372 |
-
msgstr "Cambia immagine o modifica il testo alternativo."
|
373 |
-
|
374 |
-
#: ../elements.php:747
|
375 |
-
msgid "Video source"
|
376 |
-
msgstr "Source del video"
|
377 |
-
|
378 |
-
#: ../elements.php:767
|
379 |
-
msgid "Set source and ID."
|
380 |
-
msgstr "Imposta source ed ID."
|
381 |
-
|
382 |
-
#: ../elements.php:771
|
383 |
-
msgid "Loop video"
|
384 |
-
msgstr "Riproduci a ciclo continuo"
|
385 |
-
|
386 |
-
#: ../elements.php:786
|
387 |
-
msgid ""
|
388 |
-
"The video will automatically restart from the beginning when it reaches the "
|
389 |
-
"end."
|
390 |
-
msgstr "Il video ricomincerà automaticamente quando finisce."
|
391 |
-
|
392 |
-
#: ../elements.php:790
|
393 |
-
msgid "Autoplay"
|
394 |
-
msgstr "Riproduci automaticamente"
|
395 |
-
|
396 |
-
#: ../elements.php:805
|
397 |
-
msgid "The video will automatically be played after the in animation."
|
398 |
-
msgstr "Il video sarà riprodotto automaticamente dono l'animazione d'entrata."
|
399 |
-
|
400 |
-
#: ../frontend.php:25
|
401 |
-
msgid "You have to insert a valid alias in the shortcode"
|
402 |
-
msgstr "Devi inserire uno shortcode contenente un alias valido"
|
403 |
-
|
404 |
-
#: ../frontend.php:43 ../frontend.php:47
|
405 |
-
msgid "The slider hasn't been found"
|
406 |
-
msgstr "Lo slider non è stato trovato"
|
407 |
-
|
408 |
-
#: ../home.php:7
|
409 |
-
msgid "No Sliders found. Please add a new one."
|
410 |
-
msgstr "Nessuno slider trovato. Per favore, creane uno."
|
411 |
-
|
412 |
-
#: ../home.php:17
|
413 |
-
msgid "Sliders List"
|
414 |
-
msgstr "Lista degli slider"
|
415 |
-
|
416 |
-
#: ../home.php:22
|
417 |
-
msgid "ID"
|
418 |
-
msgstr "ID"
|
419 |
-
|
420 |
-
#: ../home.php:23
|
421 |
-
msgid "Name"
|
422 |
-
msgstr "Nome"
|
423 |
-
|
424 |
-
#: ../home.php:24
|
425 |
-
msgid "Alias"
|
426 |
-
msgstr "Alias"
|
427 |
-
|
428 |
-
#: ../home.php:25
|
429 |
-
msgid "Shortcode"
|
430 |
-
msgstr "Shortcode"
|
431 |
-
|
432 |
-
#: ../home.php:26
|
433 |
-
msgid "Actions"
|
434 |
-
msgstr "Operazioni"
|
435 |
-
|
436 |
-
#: ../home.php:36
|
437 |
-
msgid "Edit Slider"
|
438 |
-
msgstr "Edita slider"
|
439 |
-
|
440 |
-
#: ../home.php:37
|
441 |
-
msgid "Duplicate Slider"
|
442 |
-
msgstr "Duplica slider"
|
443 |
-
|
444 |
-
#: ../home.php:38
|
445 |
-
msgid "Export Slider"
|
446 |
-
msgstr "Esporta slider"
|
447 |
-
|
448 |
-
#: ../home.php:39
|
449 |
-
msgid "Delete Slider"
|
450 |
-
msgstr "Elimina slider"
|
451 |
-
|
452 |
-
#: ../home.php:51
|
453 |
-
msgid "Add Slider"
|
454 |
-
msgstr "Aggiungi slider"
|
455 |
-
|
456 |
-
#: ../home.php:52
|
457 |
-
msgid "Import Slider"
|
458 |
-
msgstr "Importa slider"
|
459 |
-
|
460 |
-
#: ../slider.php:6
|
461 |
-
msgid "Full Width"
|
462 |
-
msgstr "100% di larghezza"
|
463 |
-
|
464 |
-
#: ../slider.php:7
|
465 |
-
msgid "Fixed"
|
466 |
-
msgstr "Larghezza fissata"
|
467 |
-
|
468 |
-
#: ../slider.php:10
|
469 |
-
msgid "Yes"
|
470 |
-
msgstr "Sì"
|
471 |
-
|
472 |
-
#: ../slider.php:11
|
473 |
-
msgid "No"
|
474 |
-
msgstr "No"
|
475 |
-
|
476 |
-
#: ../slider.php:17 ../slider.php:21
|
477 |
-
msgid "Slider Name"
|
478 |
-
msgstr "Nome dello slider"
|
479 |
-
|
480 |
-
#: ../slider.php:27
|
481 |
-
msgid "Alias:"
|
482 |
-
msgstr "Alias:"
|
483 |
-
|
484 |
-
#: ../slider.php:39
|
485 |
-
msgid "Shortcode:"
|
486 |
-
msgstr "Shortcode:"
|
487 |
-
|
488 |
-
#: ../slider.php:54
|
489 |
-
msgid "Slider General Options"
|
490 |
-
msgstr "Opzioni generali dello slider"
|
491 |
-
|
492 |
-
#: ../slider.php:64
|
493 |
-
msgid "Layout"
|
494 |
-
msgstr "Layout"
|
495 |
-
|
496 |
-
#: ../slider.php:79
|
497 |
-
msgid "Modify the layout type of the slider."
|
498 |
-
msgstr "Modifica il tipo di layout dello slider."
|
499 |
-
|
500 |
-
#: ../slider.php:83
|
501 |
-
msgid "Responsive"
|
502 |
-
msgstr "Responsive"
|
503 |
-
|
504 |
-
#: ../slider.php:98
|
505 |
-
msgid "The slider will be adapted to the screen size."
|
506 |
-
msgstr "Lo slider verrà adattato alla dimensione dello schermo."
|
507 |
-
|
508 |
-
#: ../slider.php:102
|
509 |
-
msgid "Start Width"
|
510 |
-
msgstr "Larghezza di partenza"
|
511 |
-
|
512 |
-
#: ../slider.php:111
|
513 |
-
msgid "The content initial width of the slider."
|
514 |
-
msgstr "La larghezza iniziale dello slider."
|
515 |
-
|
516 |
-
#: ../slider.php:115
|
517 |
-
msgid "Start Height"
|
518 |
-
msgstr "Altezza di partenza"
|
519 |
-
|
520 |
-
#: ../slider.php:124
|
521 |
-
msgid "The content initial height of the slider."
|
522 |
-
msgstr "L'altezza iniziale dello slider."
|
523 |
-
|
524 |
-
#: ../slider.php:128
|
525 |
-
msgid "Automatic Slide"
|
526 |
-
msgstr "Scorri automaticamente"
|
527 |
-
|
528 |
-
#: ../slider.php:143
|
529 |
-
msgid "The slides loop is automatic."
|
530 |
-
msgstr "Le slide scorreranno in automatico."
|
531 |
-
|
532 |
-
#: ../slider.php:147
|
533 |
-
msgid "Show Controls"
|
534 |
-
msgstr "Mostra controlli"
|
535 |
-
|
536 |
-
#: ../slider.php:162
|
537 |
-
msgid "Show the previous and next arrows."
|
538 |
-
msgstr "Mostra le frecce avanti e indietro."
|
539 |
-
|
540 |
-
#: ../slider.php:166
|
541 |
-
msgid "Show Navigation"
|
542 |
-
msgstr "Mostra navigazione"
|
543 |
-
|
544 |
-
#: ../slider.php:181
|
545 |
-
msgid "Show the links buttons to change slide."
|
546 |
-
msgstr "Mostra i pulsanti per scegliere la slide."
|
547 |
-
|
548 |
-
#: ../slider.php:185
|
549 |
-
msgid "Enable swipe and drag"
|
550 |
-
msgstr "Abilita swipe e drag"
|
551 |
-
|
552 |
-
#: ../slider.php:200
|
553 |
-
msgid "Enable swipe left, swipe right, drag left, drag right commands."
|
554 |
-
msgstr ""
|
555 |
-
"Trascina il dito o scorri con il mouse verso sinistra o destra per cambiare "
|
556 |
-
"slide"
|
557 |
-
|
558 |
-
#: ../slider.php:204
|
559 |
-
msgid "Show Progress Bar"
|
560 |
-
msgstr "Mostra barra di avanzamento"
|
561 |
-
|
562 |
-
#: ../slider.php:219
|
563 |
-
msgid "Draw the progress bar during the slide execution."
|
564 |
-
msgstr "Mostra la barra di avanzamento durante l'esecuzione della slide."
|
565 |
-
|
566 |
-
#: ../slider.php:223
|
567 |
-
msgid "Pause on Hover"
|
568 |
-
msgstr "Pausa se coperto"
|
569 |
-
|
570 |
-
#: ../slider.php:238
|
571 |
-
msgid "Pause the current slide when hovered."
|
572 |
-
msgstr "Metti in pausa lo slider quando ci passi sopra con il mouse."
|
573 |
-
|
574 |
-
#: ../slider.php:242
|
575 |
-
msgid "Callbacks"
|
576 |
-
msgstr "Callback"
|
577 |
-
|
578 |
-
#: ../slider.php:260
|
579 |
-
msgid "Some jQuery functions that you can fire during the slider execution."
|
580 |
-
msgstr ""
|
581 |
-
"Alcune funzioni jQuery che puoi lanciare durante l'esecuzione dello slider."
|
582 |
-
|
583 |
-
#: ../slides.php:24
|
584 |
-
msgid "Add Slide"
|
585 |
-
msgstr "Aggiungi slide"
|
586 |
-
|
587 |
-
#: ../slides.php:65
|
588 |
-
msgid "Slide Options"
|
589 |
-
msgstr "Opzioni della slide"
|
590 |
-
|
591 |
-
#: ../slides.php:76
|
592 |
-
msgid "Background"
|
593 |
-
msgstr "Sfondo"
|
594 |
-
|
595 |
-
#: ../slides.php:80 ../slides.php:124
|
596 |
-
msgid "Background image:"
|
597 |
-
msgstr "Immagine di sfondo:"
|
598 |
-
|
599 |
-
#: ../slides.php:83 ../slides.php:128 ../slides.php:131
|
600 |
-
msgid "Select image"
|
601 |
-
msgstr "Seleziona immagine"
|
602 |
-
|
603 |
-
#: ../slides.php:89 ../slides.php:138
|
604 |
-
msgid "Background color:"
|
605 |
-
msgstr "Colore di sfondo:"
|
606 |
-
|
607 |
-
#: ../slides.php:93 ../slides.php:143 ../slides.php:145
|
608 |
-
msgid "Transparent"
|
609 |
-
msgstr "Trasparente"
|
610 |
-
|
611 |
-
#: ../slides.php:97 ../slides.php:159
|
612 |
-
msgid "Enter value"
|
613 |
-
msgstr "Digita valore"
|
614 |
-
|
615 |
-
#: ../slides.php:103 ../slides.php:166
|
616 |
-
msgid "Background position-x:"
|
617 |
-
msgstr "Posizione da sinistra dello sfondo:"
|
618 |
-
|
619 |
-
#: ../slides.php:106 ../slides.php:169
|
620 |
-
msgid "Background position-y:"
|
621 |
-
msgstr "Posizione dall'alto dello sfondo:"
|
622 |
-
|
623 |
-
#: ../slides.php:112 ../slides.php:175
|
624 |
-
msgid "Background repeat:"
|
625 |
-
msgstr "Ripeti sfondo"
|
626 |
-
|
627 |
-
#: ../slides.php:114 ../slides.php:178 ../slides.php:181
|
628 |
-
msgid "Repeat"
|
629 |
-
msgstr "Ripeti"
|
630 |
-
|
631 |
-
#: ../slides.php:115 ../slides.php:179 ../slides.php:182
|
632 |
-
msgid "No repeat"
|
633 |
-
msgstr "Non ripetere"
|
634 |
-
|
635 |
-
#: ../slides.php:121 ../slides.php:189
|
636 |
-
msgid "Background size:"
|
637 |
-
msgstr "Dimensioni dello sfondo:"
|
638 |
-
|
639 |
-
#: ../slides.php:194
|
640 |
-
msgid "The background of the slide and its proprieties."
|
641 |
-
msgstr "Lo sfondo della slide e le sue proprietà."
|
642 |
-
|
643 |
-
#: ../slides.php:197
|
644 |
-
msgid "Presets:"
|
645 |
-
msgstr "Predefiniti:"
|
646 |
-
|
647 |
-
#: ../slides.php:200
|
648 |
-
msgid "Full width responsive background image"
|
649 |
-
msgstr "Immagine di sfondo responsive al 100% di larghezza"
|
650 |
-
|
651 |
-
#: ../slides.php:201
|
652 |
-
msgid "Pattern background image"
|
653 |
-
msgstr "Pattern di sfondo"
|
654 |
-
|
655 |
-
#: ../slides.php:221
|
656 |
-
msgid "The in animation of the slide."
|
657 |
-
msgstr "L'animazione d'entrata della slide."
|
658 |
-
|
659 |
-
#: ../slides.php:240
|
660 |
-
msgid "The out animation of the slide."
|
661 |
-
msgstr "L'animazione d'uscita della slide."
|
662 |
-
|
663 |
-
#: ../slides.php:253
|
664 |
-
msgid "The time that the slide will remain on the screen."
|
665 |
-
msgstr "Per quanto tempo la slide rimarrà visualizzata."
|
666 |
-
|
667 |
-
#: ../slides.php:257
|
668 |
-
msgid "Ease In"
|
669 |
-
msgstr "Durata animazione d'entrata"
|
670 |
-
|
671 |
-
#: ../slides.php:266
|
672 |
-
msgid "The time that the slide will take to get in."
|
673 |
-
msgstr "Quanto tempo impiegherà la slide ad entrare."
|
674 |
-
|
675 |
-
#: ../slides.php:270
|
676 |
-
msgid "Ease Out"
|
677 |
-
msgstr "Durata animazione d'uscita"
|
678 |
-
|
679 |
-
#: ../slides.php:279
|
680 |
-
msgid "The time that the slide will take to get out."
|
681 |
-
msgstr "Quanto tempo impiegherà la slide ad uscire."
|
682 |
-
|
683 |
-
#: ../slides.php:303
|
684 |
-
msgid ""
|
685 |
-
"Open the link (e.g.: http://www.google.it) when the user clicks on the "
|
686 |
-
"background. Leave it empty if you don't want it."
|
687 |
-
msgstr ""
|
688 |
-
"Apri il link (es.: http://www.google.it) quando l'utente clicca sullo "
|
689 |
-
"sfondo. Lascia vuoto se non lo vuoi."
|
690 |
-
|
691 |
-
#: ../slides.php:315
|
692 |
-
msgid "Apply CSS to the slide."
|
693 |
-
msgstr "Applica del CSS alla slide."
|
694 |
-
|
695 |
-
#~ msgid ""
|
696 |
-
#~ "Write \"3000\" to set 3000 milliseconds minus delay time (so, if the "
|
697 |
-
#~ "delay time is 1000 milliseconds, the element will be displayed for 2000 "
|
698 |
-
#~ "milliseconds)."
|
699 |
-
#~ msgstr ""
|
700 |
-
#~ "Scrivi \"3000\" per impostare 3000 millisecondi meno il tempo di attesa "
|
701 |
-
#~ "(quindi, se il tempo di attesa è 1000 millisecondi, l'elemento verrà "
|
702 |
-
#~ "visualizzato per 2000 millisecondi)."
|
703 |
-
|
704 |
-
#~ msgid ""
|
705 |
-
#~ "How long will the element be displayed during the slide execution.<br /"
|
706 |
-
#~ "><br />Write \"all\" to set the entire time.<br /><br />Write \"3000\" to "
|
707 |
-
#~ "set 3000 milliseconds minus delay time (so, if the delay time is 1000 "
|
708 |
-
#~ "milliseconds, the element will be displayed for 2000 milliseconds)."
|
709 |
-
#~ msgstr ""
|
710 |
-
#~ "Per quanto tempo l'elemento verrà visualizzato durante l'esecuzione della "
|
711 |
-
#~ "slide.<br /><br />Scrivi \"all\" per impostare tutto il tempo.<br /> <br /"
|
712 |
-
#~ ">Scrivi \"3000\" per impostare 3000 millisecondi meno il tempo di attesa "
|
713 |
-
#~ "(quindi, se il tempo di attesa è di 1000 millisecondi, l'elemento verrà "
|
714 |
-
#~ "visualizzato per 2000 millisecondi)."
|
715 |
-
|
716 |
-
#~ msgid ""
|
717 |
-
#~ "How long will the element be displayed during the slide execution. Write "
|
718 |
-
#~ "\"all\" to set the entire time."
|
719 |
-
#~ msgstr ""
|
720 |
-
#~ "Per quanto tempo l'elemento verrà visualizzato durante l'esecuzione della "
|
721 |
-
#~ "slide. Scrivi \"all\" per impostare la durata massima."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
wordpress/languages/crellyslider-ru_RU.mo
DELETED
Binary file
|
wordpress/languages/crellyslider-ru_RU.po
DELETED
@@ -1,685 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: Crelly Slider 1.1.0\n"
|
4 |
-
"POT-Creation-Date: 2016-03-12 13:34+0100\n"
|
5 |
-
"PO-Revision-Date: 2016-03-12 13:34+0100\n"
|
6 |
-
"Last-Translator: \n"
|
7 |
-
"Language-Team: Andrey Dymskiy <andrey@dymskiy.ru>\n"
|
8 |
-
"Language: ru\n"
|
9 |
-
"MIME-Version: 1.0\n"
|
10 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
-
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.8.7\n"
|
13 |
-
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
-
"X-Poedit-Basepath: .\n"
|
15 |
-
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
16 |
-
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
17 |
-
"X-Poedit-SearchPath-0: ..\n"
|
18 |
-
|
19 |
-
#: ../admin.php:48
|
20 |
-
msgid "JavaScript must be enabled to view this page correctly."
|
21 |
-
msgstr "Необходимо включить JavaScript для правильного отображения страницы."
|
22 |
-
|
23 |
-
#: ../admin.php:51
|
24 |
-
msgid "Operation completed successfully."
|
25 |
-
msgstr "Операция завершена успешно."
|
26 |
-
|
27 |
-
#: ../admin.php:52
|
28 |
-
msgid "Something went wrong."
|
29 |
-
msgstr "Что-то пошло не так."
|
30 |
-
|
31 |
-
#: ../admin.php:54
|
32 |
-
msgid ""
|
33 |
-
"When you'll click \"Save Settings\", you'll be able to add slides and "
|
34 |
-
"elements."
|
35 |
-
msgstr ""
|
36 |
-
"После клика на \"Сохранить настройки\", можно будет добавлять слайды и "
|
37 |
-
"элементы на них."
|
38 |
-
|
39 |
-
#: ../admin.php:119
|
40 |
-
msgid "Slider Settings"
|
41 |
-
msgstr "Настройки слайдера"
|
42 |
-
|
43 |
-
#: ../admin.php:123
|
44 |
-
msgid "Edit Slides"
|
45 |
-
msgstr "Редактировать слайды"
|
46 |
-
|
47 |
-
#: ../admin.php:143
|
48 |
-
msgid "Save Settings"
|
49 |
-
msgstr "Сохранить настройки"
|
50 |
-
|
51 |
-
#: ../admin.php:243 ../slides.php:15
|
52 |
-
msgid "Slide"
|
53 |
-
msgstr "Слайд"
|
54 |
-
|
55 |
-
#: ../admin.php:244
|
56 |
-
msgid "The slide will be deleted. Are you sure?"
|
57 |
-
msgstr "Слайд будет удален. Вы уверены?"
|
58 |
-
|
59 |
-
#: ../admin.php:245
|
60 |
-
msgid "You can't delete this. You must have at least one slide."
|
61 |
-
msgstr "Невозможно удалить т.к. должен остаться хотя бы один слайд."
|
62 |
-
|
63 |
-
#: ../admin.php:246
|
64 |
-
msgid "The slider will be deleted. Are you sure?"
|
65 |
-
msgstr "Слайд будет удален. Вы уверены?"
|
66 |
-
|
67 |
-
#: ../admin.php:247 ../elements.php:249
|
68 |
-
msgid "Text element"
|
69 |
-
msgstr "Текстовый элемент..."
|
70 |
-
|
71 |
-
#: ../admin.php:248 ../elements.php:159
|
72 |
-
msgid "Live preview"
|
73 |
-
msgstr "Предосмотр"
|
74 |
-
|
75 |
-
#: ../admin.php:249
|
76 |
-
msgid "Stop preview"
|
77 |
-
msgstr "Предосмотр"
|
78 |
-
|
79 |
-
#: ../admin.php:250 ../slides.php:16
|
80 |
-
msgid "Duplicate slide"
|
81 |
-
msgstr "Остановить Предосмотр"
|
82 |
-
|
83 |
-
#: ../admin.php:251 ../slides.php:17
|
84 |
-
msgid "Delete slide"
|
85 |
-
msgstr "Удалить слайд"
|
86 |
-
|
87 |
-
#: ../admin.php:252
|
88 |
-
msgid ""
|
89 |
-
"All unsaved changes will be lost. Are you sure you want to leave this page?"
|
90 |
-
msgstr ""
|
91 |
-
"Все несохраненные изменения будут потеряны. Вы уверены, что хотите уйти со "
|
92 |
-
"страницы?"
|
93 |
-
|
94 |
-
#: ../ajax.php:282
|
95 |
-
msgid "Copy"
|
96 |
-
msgstr "Копировать"
|
97 |
-
|
98 |
-
#: ../ajax.php:283
|
99 |
-
msgid "copy"
|
100 |
-
msgstr "копировать"
|
101 |
-
|
102 |
-
#: ../elements.php:154
|
103 |
-
msgid "Add text"
|
104 |
-
msgstr "Добавить текст"
|
105 |
-
|
106 |
-
#: ../elements.php:155
|
107 |
-
msgid "Add image"
|
108 |
-
msgstr "Добавить изображение"
|
109 |
-
|
110 |
-
#: ../elements.php:156
|
111 |
-
msgid "Add video"
|
112 |
-
msgstr "Добавить видео"
|
113 |
-
|
114 |
-
#: ../elements.php:160
|
115 |
-
msgid "Delete element"
|
116 |
-
msgstr "Удалить элемент"
|
117 |
-
|
118 |
-
#: ../elements.php:161
|
119 |
-
msgid "Duplicate element"
|
120 |
-
msgstr "Дублировать элемент"
|
121 |
-
|
122 |
-
#: ../elements.php:215 ../elements.php:466 ../elements.php:716 ../slides.php:51
|
123 |
-
#: ../slides.php:82 ../slides.php:127 ../slides.php:130
|
124 |
-
msgid "None"
|
125 |
-
msgstr "Нет"
|
126 |
-
|
127 |
-
#: ../elements.php:216 ../elements.php:467 ../elements.php:717 ../slides.php:58
|
128 |
-
msgid "Slide down"
|
129 |
-
msgstr "Сдвиг вниз"
|
130 |
-
|
131 |
-
#: ../elements.php:217 ../elements.php:468 ../elements.php:718 ../slides.php:57
|
132 |
-
msgid "Slide up"
|
133 |
-
msgstr "Сдвиг вверх"
|
134 |
-
|
135 |
-
#: ../elements.php:218 ../elements.php:469 ../elements.php:719 ../slides.php:55
|
136 |
-
msgid "Slide left"
|
137 |
-
msgstr "Сдвиг влево"
|
138 |
-
|
139 |
-
#: ../elements.php:219 ../elements.php:470 ../elements.php:720 ../slides.php:56
|
140 |
-
msgid "Slide right"
|
141 |
-
msgstr "Сдвиг вправо"
|
142 |
-
|
143 |
-
#: ../elements.php:220 ../elements.php:471 ../elements.php:721 ../slides.php:52
|
144 |
-
msgid "Fade"
|
145 |
-
msgstr "Проявление"
|
146 |
-
|
147 |
-
#: ../elements.php:221 ../elements.php:472 ../elements.php:722
|
148 |
-
msgid "Fade down"
|
149 |
-
msgstr "Проявление с движением вниз"
|
150 |
-
|
151 |
-
#: ../elements.php:222 ../elements.php:473 ../elements.php:723
|
152 |
-
msgid "Fade up"
|
153 |
-
msgstr "Проявление с движением вверх"
|
154 |
-
|
155 |
-
#: ../elements.php:223 ../elements.php:474 ../elements.php:724 ../slides.php:53
|
156 |
-
msgid "Fade left"
|
157 |
-
msgstr "Проявление с движением влево"
|
158 |
-
|
159 |
-
#: ../elements.php:224 ../elements.php:475 ../elements.php:725 ../slides.php:54
|
160 |
-
msgid "Fade right"
|
161 |
-
msgstr "Проявление с движением вправо"
|
162 |
-
|
163 |
-
#: ../elements.php:225 ../elements.php:476 ../elements.php:726
|
164 |
-
msgid "Fade small down"
|
165 |
-
msgstr "Проявление с коротким движением вниз"
|
166 |
-
|
167 |
-
#: ../elements.php:226 ../elements.php:477 ../elements.php:727
|
168 |
-
msgid "Fade small up"
|
169 |
-
msgstr "Проявление с коротким движением вверх"
|
170 |
-
|
171 |
-
#: ../elements.php:227 ../elements.php:478 ../elements.php:728
|
172 |
-
msgid "Fade small left"
|
173 |
-
msgstr "Проявление с коротким движением влево"
|
174 |
-
|
175 |
-
#: ../elements.php:228 ../elements.php:479 ../elements.php:729
|
176 |
-
msgid "Fade small right"
|
177 |
-
msgstr "Проявление с коротким движением вправо"
|
178 |
-
|
179 |
-
#: ../elements.php:235 ../elements.php:486 ../elements.php:736
|
180 |
-
msgid "Element Options"
|
181 |
-
msgstr "Опции элемента"
|
182 |
-
|
183 |
-
#: ../elements.php:241 ../elements.php:491 ../elements.php:742 ../slider.php:59
|
184 |
-
#: ../slides.php:71
|
185 |
-
msgid "Option"
|
186 |
-
msgstr "Опция"
|
187 |
-
|
188 |
-
#: ../elements.php:242 ../elements.php:492 ../elements.php:743 ../slider.php:60
|
189 |
-
#: ../slides.php:72
|
190 |
-
msgid "Parameter"
|
191 |
-
msgstr "Параметр"
|
192 |
-
|
193 |
-
#: ../elements.php:243 ../elements.php:493 ../elements.php:744 ../slider.php:61
|
194 |
-
#: ../slides.php:73
|
195 |
-
msgid "Description"
|
196 |
-
msgstr "Описание"
|
197 |
-
|
198 |
-
#: ../elements.php:246
|
199 |
-
msgid "Text"
|
200 |
-
msgstr "Текст"
|
201 |
-
|
202 |
-
#: ../elements.php:254
|
203 |
-
msgid "Write the text or the HTML."
|
204 |
-
msgstr "Введите тест или HTML."
|
205 |
-
|
206 |
-
#: ../elements.php:258 ../elements.php:508 ../elements.php:809
|
207 |
-
msgid "Left"
|
208 |
-
msgstr "Отступ слева"
|
209 |
-
|
210 |
-
#: ../elements.php:267 ../elements.php:517 ../elements.php:818
|
211 |
-
msgid "Center horizontally"
|
212 |
-
msgstr "Центрировать по горизонтали"
|
213 |
-
|
214 |
-
#: ../elements.php:270 ../elements.php:520 ../elements.php:821
|
215 |
-
msgid "Left distance in px from the start width."
|
216 |
-
msgstr "Отступ слева в px. Считается от начальной ширины слайдера."
|
217 |
-
|
218 |
-
#: ../elements.php:274 ../elements.php:524 ../elements.php:825
|
219 |
-
msgid "Top"
|
220 |
-
msgstr "Отступ сверху"
|
221 |
-
|
222 |
-
#: ../elements.php:283 ../elements.php:533 ../elements.php:834
|
223 |
-
msgid "Center vertically"
|
224 |
-
msgstr "Центрировать по вертикали"
|
225 |
-
|
226 |
-
#: ../elements.php:286 ../elements.php:536 ../elements.php:837
|
227 |
-
msgid "Top distance in px from the start height."
|
228 |
-
msgstr "Отступ сверху. Считается от начальной ширины высоты."
|
229 |
-
|
230 |
-
#: ../elements.php:290 ../elements.php:540 ../elements.php:841
|
231 |
-
msgid "Z - index"
|
232 |
-
msgstr "Положение z-index"
|
233 |
-
|
234 |
-
#: ../elements.php:298 ../elements.php:548 ../elements.php:849
|
235 |
-
msgid ""
|
236 |
-
"An element with an high z-index will cover an element with a lower z-index "
|
237 |
-
"if they overlap."
|
238 |
-
msgstr ""
|
239 |
-
"Элемент с большим значением z-index накроет элемент с меньшим, если они "
|
240 |
-
"накладываются."
|
241 |
-
|
242 |
-
#: ../elements.php:302 ../elements.php:552 ../elements.php:853
|
243 |
-
msgid "Delay"
|
244 |
-
msgstr "Задержка"
|
245 |
-
|
246 |
-
#: ../elements.php:311 ../elements.php:561 ../elements.php:862
|
247 |
-
msgid "How long will the element wait before the entrance."
|
248 |
-
msgstr "Как долго элемент будет ждать прежде чем появиться."
|
249 |
-
|
250 |
-
#: ../elements.php:315 ../elements.php:565 ../elements.php:866
|
251 |
-
#: ../slides.php:244
|
252 |
-
msgid "Time"
|
253 |
-
msgstr "Время показа"
|
254 |
-
|
255 |
-
#: ../elements.php:324 ../elements.php:574 ../elements.php:875
|
256 |
-
msgid "How long will the element be displayed during the slide execution."
|
257 |
-
msgstr "Как долго будет показываться элемент на текущем слайде."
|
258 |
-
|
259 |
-
#: ../elements.php:327 ../elements.php:577 ../elements.php:878
|
260 |
-
msgid "Write \"all\" to set the entire time."
|
261 |
-
msgstr "Если до конца слайда, то указать \"all\"."
|
262 |
-
|
263 |
-
#: ../elements.php:330 ../elements.php:580 ../elements.php:881
|
264 |
-
msgid ""
|
265 |
-
"Write \"3000\" to set 3000 milliseconds minus delay time (so, if the delay "
|
266 |
-
"time is 1000 milliseconds, the element will be displayed for 3000-1000=2000 "
|
267 |
-
"milliseconds)."
|
268 |
-
msgstr ""
|
269 |
-
"Укажите \"3000\" для установки в 3000 миллисекунд минус задержка (если время "
|
270 |
-
"задержки 1000 миллисекунд, то элемент будет отображаться 3000-1000=2000 "
|
271 |
-
"миллисекунд)."
|
272 |
-
|
273 |
-
#: ../elements.php:334 ../elements.php:584 ../elements.php:885
|
274 |
-
#: ../slides.php:206
|
275 |
-
msgid "In animation"
|
276 |
-
msgstr "Вводящая анимация"
|
277 |
-
|
278 |
-
#: ../elements.php:349 ../elements.php:599 ../elements.php:900
|
279 |
-
msgid "The in animation of the element."
|
280 |
-
msgstr "Как анимировать появление элемента."
|
281 |
-
|
282 |
-
#: ../elements.php:353 ../elements.php:603 ../elements.php:904
|
283 |
-
#: ../slides.php:225
|
284 |
-
msgid "Out animation"
|
285 |
-
msgstr "Выводящая анимация"
|
286 |
-
|
287 |
-
#: ../elements.php:368 ../elements.php:371 ../elements.php:374
|
288 |
-
#: ../elements.php:618 ../elements.php:621 ../elements.php:624
|
289 |
-
#: ../elements.php:919 ../elements.php:922 ../elements.php:925
|
290 |
-
msgid "Disable synchronization with slide out animation"
|
291 |
-
msgstr "Не синхронизировать с вводящей анимацией"
|
292 |
-
|
293 |
-
#: ../elements.php:380 ../elements.php:630 ../elements.php:931
|
294 |
-
msgid ""
|
295 |
-
"The out animation of the element.<br /><br />Disable synchronization with "
|
296 |
-
"slide out animation: if not checked, the slide out animation won't start "
|
297 |
-
"until all the elements that have this option unchecked are animated out."
|
298 |
-
msgstr ""
|
299 |
-
"Анимация исчезания элемента. <br /><br />Если синхронизация не отключена, то "
|
300 |
-
"выводящая анимация самого слайда будет ожидать пока все элементы в слайде с "
|
301 |
-
"неотключенной синхронизацией не закончат свою выводящую анимацию."
|
302 |
-
|
303 |
-
#: ../elements.php:384 ../elements.php:634 ../elements.php:935
|
304 |
-
msgid "Ease in"
|
305 |
-
msgstr "Время ввода"
|
306 |
-
|
307 |
-
#: ../elements.php:393 ../elements.php:643 ../elements.php:944
|
308 |
-
msgid "How long will the in animation take."
|
309 |
-
msgstr "Скорость вводящей анимации."
|
310 |
-
|
311 |
-
#: ../elements.php:397 ../elements.php:647 ../elements.php:948
|
312 |
-
msgid "Ease out"
|
313 |
-
msgstr "Время вывода"
|
314 |
-
|
315 |
-
#: ../elements.php:406 ../elements.php:656 ../elements.php:957
|
316 |
-
msgid "How long will the out animation take."
|
317 |
-
msgstr "Скорость выводящей анимации."
|
318 |
-
|
319 |
-
#: ../elements.php:410 ../elements.php:660 ../slides.php:283
|
320 |
-
msgid "Link"
|
321 |
-
msgstr "Ссылка"
|
322 |
-
|
323 |
-
#: ../elements.php:418 ../elements.php:421 ../elements.php:424
|
324 |
-
#: ../elements.php:668 ../elements.php:671 ../elements.php:674
|
325 |
-
#: ../slides.php:291 ../slides.php:294 ../slides.php:297
|
326 |
-
msgid "Open link in a new tab"
|
327 |
-
msgstr "Открывать ссылку в новой вкладке"
|
328 |
-
|
329 |
-
#: ../elements.php:430 ../elements.php:680
|
330 |
-
msgid ""
|
331 |
-
"Open the link (e.g.: http://www.google.it) on click. Leave it empty if you "
|
332 |
-
"don't want it."
|
333 |
-
msgstr "Отрывать ссылку кликом. Оставьте поле пустым, если не нужна."
|
334 |
-
|
335 |
-
#: ../elements.php:434 ../elements.php:684 ../elements.php:961
|
336 |
-
#: ../slides.php:307
|
337 |
-
msgid "Custom CSS"
|
338 |
-
msgstr "Дополнительный CSS"
|
339 |
-
|
340 |
-
#: ../elements.php:442 ../elements.php:692 ../elements.php:969
|
341 |
-
msgid "Style the element."
|
342 |
-
msgstr ""
|
343 |
-
"Стилизовать элемент (изменить размер и цвет шрифта, добавить тень и т.п.)."
|
344 |
-
|
345 |
-
#: ../elements.php:446 ../elements.php:696 ../elements.php:973
|
346 |
-
msgid "Custom classes"
|
347 |
-
msgstr "Дополнительные классы CSS"
|
348 |
-
|
349 |
-
#: ../elements.php:454 ../elements.php:704 ../elements.php:981
|
350 |
-
msgid ""
|
351 |
-
"Apply custom CSS classes to the element. The style of the classes may not "
|
352 |
-
"work when working on backend."
|
353 |
-
msgstr ""
|
354 |
-
"Применить дополнительные классы CSS к элементу. Стили могут не отображаться "
|
355 |
-
"в админке."
|
356 |
-
|
357 |
-
#: ../elements.php:496
|
358 |
-
msgid "Modify image"
|
359 |
-
msgstr "Изображение"
|
360 |
-
|
361 |
-
#: ../elements.php:499 ../elements.php:500
|
362 |
-
msgid "Open gallery"
|
363 |
-
msgstr "Открыть галерею"
|
364 |
-
|
365 |
-
#: ../elements.php:504
|
366 |
-
msgid "Change the image source or the alt text."
|
367 |
-
msgstr "Изменить источник изображения и его текст-заменитель."
|
368 |
-
|
369 |
-
#: ../elements.php:747
|
370 |
-
msgid "Video source"
|
371 |
-
msgstr "Источник видео"
|
372 |
-
|
373 |
-
#: ../elements.php:767
|
374 |
-
msgid "Set source and ID."
|
375 |
-
msgstr "Установить источник и ID."
|
376 |
-
|
377 |
-
#: ../elements.php:771
|
378 |
-
msgid "Loop video"
|
379 |
-
msgstr "Зациклить видео"
|
380 |
-
|
381 |
-
#: ../elements.php:786
|
382 |
-
msgid ""
|
383 |
-
"The video will automatically restart from the beginning when it reaches the "
|
384 |
-
"end."
|
385 |
-
msgstr "Видео перезапустится с начала когда достигнет конца."
|
386 |
-
|
387 |
-
#: ../elements.php:790
|
388 |
-
msgid "Autoplay"
|
389 |
-
msgstr "Автовоспроизведение"
|
390 |
-
|
391 |
-
#: ../elements.php:805
|
392 |
-
msgid "The video will automatically be played after the in animation."
|
393 |
-
msgstr "Видео воспроизводится автоматически после Вводящей анимации."
|
394 |
-
|
395 |
-
#: ../frontend.php:25
|
396 |
-
msgid "You have to insert a valid alias in the shortcode"
|
397 |
-
msgstr "Вы должны вставить правильный псевдоним в шорткод"
|
398 |
-
|
399 |
-
#: ../frontend.php:43 ../frontend.php:47
|
400 |
-
msgid "The slider hasn't been found"
|
401 |
-
msgstr "Слайдер не найден"
|
402 |
-
|
403 |
-
#: ../home.php:7
|
404 |
-
msgid "No Sliders found. Please add a new one."
|
405 |
-
msgstr "Слайдеров не найдено. Создайте новый."
|
406 |
-
|
407 |
-
#: ../home.php:17
|
408 |
-
msgid "Sliders List"
|
409 |
-
msgstr "Список слайдеров"
|
410 |
-
|
411 |
-
#: ../home.php:22
|
412 |
-
msgid "ID"
|
413 |
-
msgstr "ID"
|
414 |
-
|
415 |
-
#: ../home.php:23
|
416 |
-
msgid "Name"
|
417 |
-
msgstr "Название"
|
418 |
-
|
419 |
-
#: ../home.php:24
|
420 |
-
msgid "Alias"
|
421 |
-
msgstr "Псевдоним"
|
422 |
-
|
423 |
-
#: ../home.php:25
|
424 |
-
msgid "Shortcode"
|
425 |
-
msgstr "Шорткод"
|
426 |
-
|
427 |
-
#: ../home.php:26
|
428 |
-
msgid "Actions"
|
429 |
-
msgstr "Действия"
|
430 |
-
|
431 |
-
#: ../home.php:36
|
432 |
-
msgid "Edit Slider"
|
433 |
-
msgstr "Редактировать слайдер"
|
434 |
-
|
435 |
-
#: ../home.php:37
|
436 |
-
msgid "Duplicate Slider"
|
437 |
-
msgstr "Дублировать слайдер"
|
438 |
-
|
439 |
-
#: ../home.php:38
|
440 |
-
msgid "Export Slider"
|
441 |
-
msgstr "Экспортировать слайдер"
|
442 |
-
|
443 |
-
#: ../home.php:39
|
444 |
-
msgid "Delete Slider"
|
445 |
-
msgstr "Удалить слайдер"
|
446 |
-
|
447 |
-
#: ../home.php:51
|
448 |
-
msgid "Add Slider"
|
449 |
-
msgstr "Добавить слайдер"
|
450 |
-
|
451 |
-
#: ../home.php:52
|
452 |
-
msgid "Import Slider"
|
453 |
-
msgstr "Импортировать слайдер"
|
454 |
-
|
455 |
-
#: ../slider.php:6
|
456 |
-
msgid "Full Width"
|
457 |
-
msgstr "Во всю ширину"
|
458 |
-
|
459 |
-
#: ../slider.php:7
|
460 |
-
msgid "Fixed"
|
461 |
-
msgstr "Фиксированный"
|
462 |
-
|
463 |
-
#: ../slider.php:10
|
464 |
-
msgid "Yes"
|
465 |
-
msgstr "Да"
|
466 |
-
|
467 |
-
#: ../slider.php:11
|
468 |
-
msgid "No"
|
469 |
-
msgstr "Нет"
|
470 |
-
|
471 |
-
#: ../slider.php:17 ../slider.php:21
|
472 |
-
msgid "Slider Name"
|
473 |
-
msgstr "Название слайда"
|
474 |
-
|
475 |
-
#: ../slider.php:27
|
476 |
-
msgid "Alias:"
|
477 |
-
msgstr "Псевдоним:"
|
478 |
-
|
479 |
-
#: ../slider.php:39
|
480 |
-
msgid "Shortcode:"
|
481 |
-
msgstr "Шорткод:"
|
482 |
-
|
483 |
-
#: ../slider.php:54
|
484 |
-
msgid "Slider General Options"
|
485 |
-
msgstr "Глобальные настройки слайдера"
|
486 |
-
|
487 |
-
#: ../slider.php:64
|
488 |
-
msgid "Layout"
|
489 |
-
msgstr "Макет"
|
490 |
-
|
491 |
-
#: ../slider.php:79
|
492 |
-
msgid "Modify the layout type of the slider."
|
493 |
-
msgstr "Установить тип макета слайдера."
|
494 |
-
|
495 |
-
#: ../slider.php:83
|
496 |
-
msgid "Responsive"
|
497 |
-
msgstr "Адаптивный"
|
498 |
-
|
499 |
-
#: ../slider.php:98
|
500 |
-
msgid "The slider will be adapted to the screen size."
|
501 |
-
msgstr "Слайдер будет адаптирован к размеру экрана."
|
502 |
-
|
503 |
-
#: ../slider.php:102
|
504 |
-
msgid "Start Width"
|
505 |
-
msgstr "Начальная ширина"
|
506 |
-
|
507 |
-
#: ../slider.php:111
|
508 |
-
msgid "The content initial width of the slider."
|
509 |
-
msgstr "Ширина контента при инициализации слайдера."
|
510 |
-
|
511 |
-
#: ../slider.php:115
|
512 |
-
msgid "Start Height"
|
513 |
-
msgstr "Начальная высота"
|
514 |
-
|
515 |
-
#: ../slider.php:124
|
516 |
-
msgid "The content initial height of the slider."
|
517 |
-
msgstr "Высота контента при инициализации слайдера."
|
518 |
-
|
519 |
-
#: ../slider.php:128
|
520 |
-
msgid "Automatic Slide"
|
521 |
-
msgstr "Автоматический цикл"
|
522 |
-
|
523 |
-
#: ../slider.php:143
|
524 |
-
msgid "The slides loop is automatic."
|
525 |
-
msgstr "Зацикливать показ слайдов или нет."
|
526 |
-
|
527 |
-
#: ../slider.php:147
|
528 |
-
msgid "Show Controls"
|
529 |
-
msgstr "Стрелки НАЗАД-ВПЕРЕД"
|
530 |
-
|
531 |
-
#: ../slider.php:162
|
532 |
-
msgid "Show the previous and next arrows."
|
533 |
-
msgstr "Показывать стрелки перехода на предыдущий и следующий слайд."
|
534 |
-
|
535 |
-
#: ../slider.php:166
|
536 |
-
msgid "Show Navigation"
|
537 |
-
msgstr "Кнопки слайдов"
|
538 |
-
|
539 |
-
#: ../slider.php:181
|
540 |
-
msgid "Show the links buttons to change slide."
|
541 |
-
msgstr "Показывать кнопки перехода к любому слайду."
|
542 |
-
|
543 |
-
#: ../slider.php:185
|
544 |
-
msgid "Enable swipe and drag"
|
545 |
-
msgstr "Включить жесты или перетаскивание"
|
546 |
-
|
547 |
-
#: ../slider.php:200
|
548 |
-
msgid "Enable swipe left, swipe right, drag left, drag right commands."
|
549 |
-
msgstr "Включить команды жестами и перетаскивание влево и вправо."
|
550 |
-
|
551 |
-
#: ../slider.php:204
|
552 |
-
msgid "Show Progress Bar"
|
553 |
-
msgstr "Линейка прогресса"
|
554 |
-
|
555 |
-
#: ../slider.php:219
|
556 |
-
msgid "Draw the progress bar during the slide execution."
|
557 |
-
msgstr "Отрисовывать линейку прогресса во время выполнения слайда."
|
558 |
-
|
559 |
-
#: ../slider.php:223
|
560 |
-
msgid "Pause on Hover"
|
561 |
-
msgstr "Пауза при наведении"
|
562 |
-
|
563 |
-
#: ../slider.php:238
|
564 |
-
msgid "Pause the current slide when hovered."
|
565 |
-
msgstr "Останавливать слайд при наведении курсора."
|
566 |
-
|
567 |
-
#: ../slider.php:242
|
568 |
-
msgid "Callbacks"
|
569 |
-
msgstr "Вызовы"
|
570 |
-
|
571 |
-
#: ../slider.php:260
|
572 |
-
msgid "Some jQuery functions that you can fire during the slider execution."
|
573 |
-
msgstr "Функции jQuery которые можно связать с выполнением слайда."
|
574 |
-
|
575 |
-
#: ../slides.php:24
|
576 |
-
msgid "Add Slide"
|
577 |
-
msgstr "Добавить слайд"
|
578 |
-
|
579 |
-
#: ../slides.php:65
|
580 |
-
msgid "Slide Options"
|
581 |
-
msgstr "Настройка слайда"
|
582 |
-
|
583 |
-
#: ../slides.php:76
|
584 |
-
msgid "Background"
|
585 |
-
msgstr "Фон"
|
586 |
-
|
587 |
-
#: ../slides.php:80 ../slides.php:124
|
588 |
-
msgid "Background image:"
|
589 |
-
msgstr "Фоновое изображение:"
|
590 |
-
|
591 |
-
#: ../slides.php:83 ../slides.php:128 ../slides.php:131
|
592 |
-
msgid "Select image"
|
593 |
-
msgstr "Выбрать изображение"
|
594 |
-
|
595 |
-
#: ../slides.php:89 ../slides.php:138
|
596 |
-
msgid "Background color:"
|
597 |
-
msgstr "Цвет фона:"
|
598 |
-
|
599 |
-
#: ../slides.php:93 ../slides.php:143 ../slides.php:145
|
600 |
-
msgid "Transparent"
|
601 |
-
msgstr "Прозрачный"
|
602 |
-
|
603 |
-
#: ../slides.php:97 ../slides.php:159
|
604 |
-
msgid "Enter value"
|
605 |
-
msgstr "Степень прозрачности"
|
606 |
-
|
607 |
-
#: ../slides.php:103 ../slides.php:166
|
608 |
-
msgid "Background position-x:"
|
609 |
-
msgstr "Положение фона по X"
|
610 |
-
|
611 |
-
#: ../slides.php:106 ../slides.php:169
|
612 |
-
msgid "Background position-y:"
|
613 |
-
msgstr "Положение фона по Y"
|
614 |
-
|
615 |
-
#: ../slides.php:112 ../slides.php:175
|
616 |
-
msgid "Background repeat:"
|
617 |
-
msgstr "Повтор фона:"
|
618 |
-
|
619 |
-
#: ../slides.php:114 ../slides.php:178 ../slides.php:181
|
620 |
-
msgid "Repeat"
|
621 |
-
msgstr "Повторять"
|
622 |
-
|
623 |
-
#: ../slides.php:115 ../slides.php:179 ../slides.php:182
|
624 |
-
msgid "No repeat"
|
625 |
-
msgstr "Не повторять"
|
626 |
-
|
627 |
-
#: ../slides.php:121 ../slides.php:189
|
628 |
-
msgid "Background size:"
|
629 |
-
msgstr "Размер фона:"
|
630 |
-
|
631 |
-
#: ../slides.php:194
|
632 |
-
msgid "The background of the slide and its proprieties."
|
633 |
-
msgstr "Установка и настройка фона слайда."
|
634 |
-
|
635 |
-
#: ../slides.php:197
|
636 |
-
msgid "Presets:"
|
637 |
-
msgstr "Пресеты:"
|
638 |
-
|
639 |
-
#: ../slides.php:200
|
640 |
-
msgid "Full width responsive background image"
|
641 |
-
msgstr "Адаптивное фоновое изображение во всю ширину"
|
642 |
-
|
643 |
-
#: ../slides.php:201
|
644 |
-
msgid "Pattern background image"
|
645 |
-
msgstr "Узор фонового изображения"
|
646 |
-
|
647 |
-
#: ../slides.php:221
|
648 |
-
msgid "The in animation of the slide."
|
649 |
-
msgstr "Анимация появления слайда."
|
650 |
-
|
651 |
-
#: ../slides.php:240
|
652 |
-
msgid "The out animation of the slide."
|
653 |
-
msgstr "Анимация исчезания слайда."
|
654 |
-
|
655 |
-
#: ../slides.php:253
|
656 |
-
msgid "The time that the slide will remain on the screen."
|
657 |
-
msgstr "Как долго показывать слайд."
|
658 |
-
|
659 |
-
#: ../slides.php:257
|
660 |
-
msgid "Ease In"
|
661 |
-
msgstr "Время ввода"
|
662 |
-
|
663 |
-
#: ../slides.php:266
|
664 |
-
msgid "The time that the slide will take to get in."
|
665 |
-
msgstr "Скорость вводящей анимации."
|
666 |
-
|
667 |
-
#: ../slides.php:270
|
668 |
-
msgid "Ease Out"
|
669 |
-
msgstr "Время вывода"
|
670 |
-
|
671 |
-
#: ../slides.php:279
|
672 |
-
msgid "The time that the slide will take to get out."
|
673 |
-
msgstr "Скорость выводящей анимации."
|
674 |
-
|
675 |
-
#: ../slides.php:303
|
676 |
-
msgid ""
|
677 |
-
"Open the link (e.g.: http://www.google.it) when the user clicks on the "
|
678 |
-
"background. Leave it empty if you don't want it."
|
679 |
-
msgstr ""
|
680 |
-
"Открывать какую-то ссылку при нажатии на фоновое изображение Оставьте пустым "
|
681 |
-
"если в этом нет необходимости."
|
682 |
-
|
683 |
-
#: ../slides.php:315
|
684 |
-
msgid "Apply CSS to the slide."
|
685 |
-
msgstr "Применить CSS к слайду."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
wordpress/slider.php
CHANGED
@@ -3,28 +3,28 @@
|
|
3 |
// Contains the key, the display name and a boolean: true if is the default option
|
4 |
$slider_select_options = array(
|
5 |
'layout' => array(
|
6 |
-
'full-width' => array(__('Full Width', '
|
7 |
-
'fixed' => array(__('Fixed', '
|
8 |
),
|
9 |
'boolean' => array(
|
10 |
-
1 => array(__('Yes', '
|
11 |
-
0 => array(__('No', '
|
12 |
),
|
13 |
);
|
14 |
?>
|
15 |
|
16 |
<?php if($edit) { ?>
|
17 |
-
<input type="text" id="cs-slider-name" placeholder="<?php _e('Slider Name', '
|
18 |
<?php
|
19 |
}
|
20 |
else { ?>
|
21 |
-
<input type="text" id="cs-slider-name" placeholder="<?php _e('Slider Name', '
|
22 |
<?php } ?>
|
23 |
|
24 |
<br />
|
25 |
<br />
|
26 |
|
27 |
-
<strong><?php _e('Alias:', '
|
28 |
<?php if($edit) { ?>
|
29 |
<span id="cs-slider-alias"><?php echo $slider->alias; ?></span>
|
30 |
<?php
|
@@ -36,7 +36,7 @@
|
|
36 |
<br />
|
37 |
<br />
|
38 |
|
39 |
-
<strong><?php _e('Shortcode:', '
|
40 |
<?php if($edit) { ?>
|
41 |
<span id="cs-slider-shortcode">[crellyslider alias="<?php echo $slider->alias; ?>"]</span>
|
42 |
<?php
|
@@ -51,17 +51,17 @@
|
|
51 |
<table class="cs-slider-settings-list cs-table">
|
52 |
<thead>
|
53 |
<tr class="odd-row">
|
54 |
-
<th colspan="3"><?php _e('Slider General Options', '
|
55 |
</tr>
|
56 |
</thead>
|
57 |
<tbody>
|
58 |
<tr class="cs-table-header">
|
59 |
-
<td><?php _e('Option', '
|
60 |
-
<td><?php _e('Parameter', '
|
61 |
-
<td><?php _e('Description', '
|
62 |
</tr>
|
63 |
<tr>
|
64 |
-
<td class="cs-name"><?php _e('Layout', '
|
65 |
<td class="cs-content">
|
66 |
<select id="cs-slider-layout">
|
67 |
<?php
|
@@ -76,11 +76,11 @@
|
|
76 |
</select>
|
77 |
</td>
|
78 |
<td class="cs-description">
|
79 |
-
<?php _e('Modify the layout type of the slider.', '
|
80 |
</td>
|
81 |
</tr>
|
82 |
<tr>
|
83 |
-
<td class="cs-name"><?php _e('Responsive', '
|
84 |
<td class="cs-content">
|
85 |
<select id="cs-slider-responsive">
|
86 |
<?php
|
@@ -95,11 +95,11 @@
|
|
95 |
</select>
|
96 |
</td>
|
97 |
<td class="cs-description">
|
98 |
-
<?php _e('The slider will be adapted to the screen size.', '
|
99 |
</td>
|
100 |
</tr>
|
101 |
<tr>
|
102 |
-
<td class="cs-name"><?php _e('Start Width', '
|
103 |
<td class="cs-content">
|
104 |
<?php
|
105 |
if(!$edit) echo '<input id="cs-slider-startWidth" type="text" value="1140" />';
|
@@ -108,11 +108,11 @@
|
|
108 |
px
|
109 |
</td>
|
110 |
<td class="cs-description">
|
111 |
-
<?php _e('The content initial width of the slider.', '
|
112 |
</td>
|
113 |
</tr>
|
114 |
<tr>
|
115 |
-
<td class="cs-name"><?php _e('Start Height', '
|
116 |
<td class="cs-content">
|
117 |
<?php
|
118 |
if(!$edit) echo '<input id="cs-slider-startHeight" type="text" value="500" />';
|
@@ -121,11 +121,11 @@
|
|
121 |
px
|
122 |
</td>
|
123 |
<td class="cs-description">
|
124 |
-
<?php _e('The content initial height of the slider.', '
|
125 |
</td>
|
126 |
</tr>
|
127 |
<tr>
|
128 |
-
<td class="cs-name"><?php _e('Automatic Slide', '
|
129 |
<td class="cs-content">
|
130 |
<select id="cs-slider-automaticSlide">
|
131 |
<?php
|
@@ -140,11 +140,11 @@
|
|
140 |
</select>
|
141 |
</td>
|
142 |
<td class="cs-description">
|
143 |
-
<?php _e('The slides loop is automatic.', '
|
144 |
</td>
|
145 |
</tr>
|
146 |
<tr>
|
147 |
-
<td class="cs-name"><?php _e('Show Controls', '
|
148 |
<td class="cs-content">
|
149 |
<select id="cs-slider-showControls">
|
150 |
<?php
|
@@ -159,11 +159,11 @@
|
|
159 |
</select>
|
160 |
</td>
|
161 |
<td class="cs-description">
|
162 |
-
<?php _e('Show the previous and next arrows.', '
|
163 |
</td>
|
164 |
</tr>
|
165 |
<tr>
|
166 |
-
<td class="cs-name"><?php _e('Show Navigation', '
|
167 |
<td class="cs-content">
|
168 |
<select id="cs-slider-showNavigation">
|
169 |
<?php
|
@@ -178,11 +178,11 @@
|
|
178 |
</select>
|
179 |
</td>
|
180 |
<td class="cs-description">
|
181 |
-
<?php _e('Show the links buttons to change slide.', '
|
182 |
</td>
|
183 |
</tr>
|
184 |
<tr>
|
185 |
-
<td class="cs-name"><?php _e('Enable swipe and drag', '
|
186 |
<td class="cs-content">
|
187 |
<select id="cs-slider-enableSwipe">
|
188 |
<?php
|
@@ -197,11 +197,11 @@
|
|
197 |
</select>
|
198 |
</td>
|
199 |
<td class="cs-description">
|
200 |
-
<?php _e('Enable swipe left, swipe right, drag left, drag right commands.', '
|
201 |
</td>
|
202 |
</tr>
|
203 |
<tr>
|
204 |
-
<td class="cs-name"><?php _e('Show Progress Bar', '
|
205 |
<td class="cs-content">
|
206 |
<select id="cs-slider-showProgressBar">
|
207 |
<?php
|
@@ -216,11 +216,11 @@
|
|
216 |
</select>
|
217 |
</td>
|
218 |
<td class="cs-description">
|
219 |
-
<?php _e('Draw the progress bar during the slide execution.', '
|
220 |
</td>
|
221 |
</tr>
|
222 |
<tr>
|
223 |
-
<td class="cs-name"><?php _e('Pause on Hover', '
|
224 |
<td class="cs-content">
|
225 |
<select id="cs-slider-pauseOnHover">
|
226 |
<?php
|
@@ -235,11 +235,11 @@
|
|
235 |
</select>
|
236 |
</td>
|
237 |
<td class="cs-description">
|
238 |
-
<?php _e('Pause the current slide when hovered.', '
|
239 |
</td>
|
240 |
</tr>
|
241 |
<tr>
|
242 |
-
<td class="cs-name"><?php _e('Callbacks', '
|
243 |
<td class="cs-content">
|
244 |
<?php
|
245 |
if(!$edit || ($edit && stripslashes($slider->callbacks) == '')) {
|
@@ -257,7 +257,7 @@ beforeResume : function() {},</textarea>
|
|
257 |
?>
|
258 |
</td>
|
259 |
<td class="cs-description">
|
260 |
-
<?php _e('Some jQuery functions that you can fire during the slider execution.', '
|
261 |
</td>
|
262 |
</tr>
|
263 |
</tbody>
|
3 |
// Contains the key, the display name and a boolean: true if is the default option
|
4 |
$slider_select_options = array(
|
5 |
'layout' => array(
|
6 |
+
'full-width' => array(__('Full Width', 'crelly-slider'), true),
|
7 |
+
'fixed' => array(__('Fixed', 'crelly-slider'), false),
|
8 |
),
|
9 |
'boolean' => array(
|
10 |
+
1 => array(__('Yes', 'crelly-slider'), true),
|
11 |
+
0 => array(__('No', 'crelly-slider'), false),
|
12 |
),
|
13 |
);
|
14 |
?>
|
15 |
|
16 |
<?php if($edit) { ?>
|
17 |
+
<input type="text" id="cs-slider-name" placeholder="<?php _e('Slider Name', 'crelly-slider'); ?>" value="<?php echo $slider->name; ?>" />
|
18 |
<?php
|
19 |
}
|
20 |
else { ?>
|
21 |
+
<input type="text" id="cs-slider-name" placeholder="<?php _e('Slider Name', 'crelly-slider'); ?>" />
|
22 |
<?php } ?>
|
23 |
|
24 |
<br />
|
25 |
<br />
|
26 |
|
27 |
+
<strong><?php _e('Alias:', 'crelly-slider'); ?></strong>
|
28 |
<?php if($edit) { ?>
|
29 |
<span id="cs-slider-alias"><?php echo $slider->alias; ?></span>
|
30 |
<?php
|
36 |
<br />
|
37 |
<br />
|
38 |
|
39 |
+
<strong><?php _e('Shortcode:', 'crelly-slider'); ?></strong>
|
40 |
<?php if($edit) { ?>
|
41 |
<span id="cs-slider-shortcode">[crellyslider alias="<?php echo $slider->alias; ?>"]</span>
|
42 |
<?php
|
51 |
<table class="cs-slider-settings-list cs-table">
|
52 |
<thead>
|
53 |
<tr class="odd-row">
|
54 |
+
<th colspan="3"><?php _e('Slider General Options', 'crelly-slider'); ?></th>
|
55 |
</tr>
|
56 |
</thead>
|
57 |
<tbody>
|
58 |
<tr class="cs-table-header">
|
59 |
+
<td><?php _e('Option', 'crelly-slider'); ?></td>
|
60 |
+
<td><?php _e('Parameter', 'crelly-slider'); ?></td>
|
61 |
+
<td><?php _e('Description', 'crelly-slider'); ?></td>
|
62 |
</tr>
|
63 |
<tr>
|
64 |
+
<td class="cs-name"><?php _e('Layout', 'crelly-slider'); ?></td>
|
65 |
<td class="cs-content">
|
66 |
<select id="cs-slider-layout">
|
67 |
<?php
|
76 |
</select>
|
77 |
</td>
|
78 |
<td class="cs-description">
|
79 |
+
<?php _e('Modify the layout type of the slider.', 'crelly-slider'); ?>
|
80 |
</td>
|
81 |
</tr>
|
82 |
<tr>
|
83 |
+
<td class="cs-name"><?php _e('Responsive', 'crelly-slider'); ?></td>
|
84 |
<td class="cs-content">
|
85 |
<select id="cs-slider-responsive">
|
86 |
<?php
|
95 |
</select>
|
96 |
</td>
|
97 |
<td class="cs-description">
|
98 |
+
<?php _e('The slider will be adapted to the screen size.', 'crelly-slider'); ?>
|
99 |
</td>
|
100 |
</tr>
|
101 |
<tr>
|
102 |
+
<td class="cs-name"><?php _e('Start Width', 'crelly-slider'); ?></td>
|
103 |
<td class="cs-content">
|
104 |
<?php
|
105 |
if(!$edit) echo '<input id="cs-slider-startWidth" type="text" value="1140" />';
|
108 |
px
|
109 |
</td>
|
110 |
<td class="cs-description">
|
111 |
+
<?php _e('The content initial width of the slider.', 'crelly-slider'); ?>
|
112 |
</td>
|
113 |
</tr>
|
114 |
<tr>
|
115 |
+
<td class="cs-name"><?php _e('Start Height', 'crelly-slider'); ?></td>
|
116 |
<td class="cs-content">
|
117 |
<?php
|
118 |
if(!$edit) echo '<input id="cs-slider-startHeight" type="text" value="500" />';
|
121 |
px
|
122 |
</td>
|
123 |
<td class="cs-description">
|
124 |
+
<?php _e('The content initial height of the slider.', 'crelly-slider'); ?>
|
125 |
</td>
|
126 |
</tr>
|
127 |
<tr>
|
128 |
+
<td class="cs-name"><?php _e('Automatic Slide', 'crelly-slider'); ?></td>
|
129 |
<td class="cs-content">
|
130 |
<select id="cs-slider-automaticSlide">
|
131 |
<?php
|
140 |
</select>
|
141 |
</td>
|
142 |
<td class="cs-description">
|
143 |
+
<?php _e('The slides loop is automatic.', 'crelly-slider'); ?>
|
144 |
</td>
|
145 |
</tr>
|
146 |
<tr>
|
147 |
+
<td class="cs-name"><?php _e('Show Controls', 'crelly-slider'); ?></td>
|
148 |
<td class="cs-content">
|
149 |
<select id="cs-slider-showControls">
|
150 |
<?php
|
159 |
</select>
|
160 |
</td>
|
161 |
<td class="cs-description">
|
162 |
+
<?php _e('Show the previous and next arrows.', 'crelly-slider'); ?>
|
163 |
</td>
|
164 |
</tr>
|
165 |
<tr>
|
166 |
+
<td class="cs-name"><?php _e('Show Navigation', 'crelly-slider'); ?></td>
|
167 |
<td class="cs-content">
|
168 |
<select id="cs-slider-showNavigation">
|
169 |
<?php
|
178 |
</select>
|
179 |
</td>
|
180 |
<td class="cs-description">
|
181 |
+
<?php _e('Show the links buttons to change slide.', 'crelly-slider'); ?>
|
182 |
</td>
|
183 |
</tr>
|
184 |
<tr>
|
185 |
+
<td class="cs-name"><?php _e('Enable swipe and drag', 'crelly-slider'); ?></td>
|
186 |
<td class="cs-content">
|
187 |
<select id="cs-slider-enableSwipe">
|
188 |
<?php
|
197 |
</select>
|
198 |
</td>
|
199 |
<td class="cs-description">
|
200 |
+
<?php _e('Enable swipe left, swipe right, drag left, drag right commands.', 'crelly-slider'); ?>
|
201 |
</td>
|
202 |
</tr>
|
203 |
<tr>
|
204 |
+
<td class="cs-name"><?php _e('Show Progress Bar', 'crelly-slider'); ?></td>
|
205 |
<td class="cs-content">
|
206 |
<select id="cs-slider-showProgressBar">
|
207 |
<?php
|
216 |
</select>
|
217 |
</td>
|
218 |
<td class="cs-description">
|
219 |
+
<?php _e('Draw the progress bar during the slide execution.', 'crelly-slider'); ?>
|
220 |
</td>
|
221 |
</tr>
|
222 |
<tr>
|
223 |
+
<td class="cs-name"><?php _e('Pause on Hover', 'crelly-slider'); ?></td>
|
224 |
<td class="cs-content">
|
225 |
<select id="cs-slider-pauseOnHover">
|
226 |
<?php
|
235 |
</select>
|
236 |
</td>
|
237 |
<td class="cs-description">
|
238 |
+
<?php _e('Pause the current slide when hovered.', 'crelly-slider'); ?>
|
239 |
</td>
|
240 |
</tr>
|
241 |
<tr>
|
242 |
+
<td class="cs-name"><?php _e('Callbacks', 'crelly-slider'); ?></td>
|
243 |
<td class="cs-content">
|
244 |
<?php
|
245 |
if(!$edit || ($edit && stripslashes($slider->callbacks) == '')) {
|
257 |
?>
|
258 |
</td>
|
259 |
<td class="cs-description">
|
260 |
+
<?php _e('Some jQuery functions that you can fire during the slider execution.', 'crelly-slider'); ?>
|
261 |
</td>
|
262 |
</tr>
|
263 |
</tbody>
|
wordpress/slides.php
CHANGED
@@ -12,16 +12,16 @@
|
|
12 |
else {
|
13 |
echo '<li class="ui-state-default">';
|
14 |
}
|
15 |
-
echo '<a><span class="cs-slide-name-text">' . __('Slide', '
|
16 |
-
echo '<span title="' . __('Duplicate slide', '
|
17 |
-
echo '<span title="' . __('Delete slide', '
|
18 |
echo '</li>';
|
19 |
|
20 |
$j++;
|
21 |
}
|
22 |
}
|
23 |
?>
|
24 |
-
<li class="ui-state-default ui-state-disabled"><a class="cs-add-new"><?php _e('Add Slide', '
|
25 |
<div style="clear: both;"></div>
|
26 |
</ul>
|
27 |
|
@@ -48,101 +48,101 @@ function crellyslider_printSlide($slider, $slide, $edit) {
|
|
48 |
$void = !$slide ? true : false;
|
49 |
|
50 |
$animations = array(
|
51 |
-
'none' => array(__('None', '
|
52 |
-
'fade' => array(__('Fade', '
|
53 |
-
'fadeLeft' => array(__('Fade left', '
|
54 |
-
'fadeRight' => array(__('Fade right', '
|
55 |
-
'slideLeft' => array(__('Slide left', '
|
56 |
-
'slideRight' => array(__('Slide right', '
|
57 |
-
'slideUp' => array(__('Slide up', '
|
58 |
-
'slideDown' => array(__('Slide down', '
|
59 |
);
|
60 |
?>
|
61 |
|
62 |
<table class="cs-slide-settings-list cs-table">
|
63 |
<thead>
|
64 |
<tr class="odd-row">
|
65 |
-
<th colspan="3"><?php _e('Slide Options', '
|
66 |
</tr>
|
67 |
</thead>
|
68 |
|
69 |
<tbody>
|
70 |
<tr class="cs-table-header">
|
71 |
-
<td><?php _e('Option', '
|
72 |
-
<td><?php _e('Parameter', '
|
73 |
-
<td><?php _e('Description', '
|
74 |
</tr>
|
75 |
<tr>
|
76 |
-
<td class="cs-name"><?php _e('Background', '
|
77 |
<td class="cs-content">
|
78 |
<?php
|
79 |
if($void): ?>
|
80 |
-
<?php _e('Background image:', '
|
81 |
<form>
|
82 |
-
<input type="radio" value="0" name="cs-slide-background_type_image" checked /> <?php _e('None', '
|
83 |
-
<input type="radio" value="1" name="cs-slide-background_type_image" /> <input class="cs-slide-background_type_image-upload-button cs-button cs-is-default" type="button" value="<?php _e('Select image', '
|
84 |
</form>
|
85 |
|
86 |
<br />
|
87 |
<br />
|
88 |
|
89 |
-
<?php _e('Background color:', '
|
90 |
<form>
|
91 |
<br />
|
92 |
<br />
|
93 |
-
<input type="radio" value="0" name="cs-slide-background_type_color" checked /> <?php _e('Transparent', '
|
94 |
<br />
|
95 |
<input type="radio" value="1" name="cs-slide-background_type_color" /> <input class="cs-slide-background_type_color-picker-input cs-button cs-is-default" type="text" value="rgb(255, 255, 255)" />
|
96 |
<br />
|
97 |
-
<input type="radio" value="2" name="cs-slide-background_type_color" placeholder="<?php _e('Enter value', '
|
98 |
</form>
|
99 |
|
100 |
<br />
|
101 |
<br />
|
102 |
|
103 |
-
<?php _e('Background position-x:', '
|
104 |
<input type="text" value="center" class="cs-slide-background_propriety_position_x" />
|
105 |
<br />
|
106 |
-
<?php _e('Background position-y:', '
|
107 |
<input type="text" value="center" class="cs-slide-background_propriety_position_y" />
|
108 |
|
109 |
<br />
|
110 |
<br />
|
111 |
|
112 |
-
<?php _e('Background repeat:', '
|
113 |
<form>
|
114 |
-
<input type="radio" value="1" name="cs-slide-background_repeat" /> <?php _e('Repeat', '
|
115 |
-
<input type="radio" value="0" name="cs-slide-background_repeat" checked /> <?php _e('No repeat', '
|
116 |
</form>
|
117 |
|
118 |
<br />
|
119 |
<br />
|
120 |
|
121 |
-
<?php _e('Background size:', '
|
122 |
<input type="text" value="cover" class="cs-slide-background_propriety_size" />
|
123 |
<?php else: ?>
|
124 |
-
<?php _e('Background image:', '
|
125 |
<form>
|
126 |
<?php if($slide->background_type_image == 'none' || $slide->background_type_image == 'undefined'): ?>
|
127 |
-
<input type="radio" value="0" name="cs-slide-background_type_image" checked /> <?php _e('None', '
|
128 |
-
<input type="radio" value="1" name="cs-slide-background_type_image" /> <input class="cs-slide-background_type_image-upload-button cs-button cs-is-default" type="button" value="<?php _e('Select image', '
|
129 |
<?php else: ?>
|
130 |
-
<input type="radio" value="0" name="cs-slide-background_type_image" /> <?php _e('None', '
|
131 |
-
<input type="radio" value="1" name="cs-slide-background_type_image" checked /> <input class="cs-slide-background_type_image-upload-button cs-button cs-is-default" type="button" value="<?php _e('Select image', '
|
132 |
<?php endif; ?>
|
133 |
</form>
|
134 |
|
135 |
<br />
|
136 |
<br />
|
137 |
|
138 |
-
<?php _e('Background color:', '
|
139 |
<form>
|
140 |
<br />
|
141 |
<br />
|
142 |
<?php if($slide->background_type_color == 'transparent'): ?>
|
143 |
-
<input type="radio" value="0" name="cs-slide-background_type_color" checked /> <?php _e('Transparent', '
|
144 |
<?php else: ?>
|
145 |
-
<input type="radio" value="0" name="cs-slide-background_type_color" /> <?php _e('Transparent', '
|
146 |
<?php endif; ?>
|
147 |
|
148 |
<br />
|
@@ -156,54 +156,54 @@ function crellyslider_printSlide($slider, $slide, $edit) {
|
|
156 |
<?php if($slide->background_type_color_input == '2'): ?>
|
157 |
<input type="radio" value="2" name="cs-slide-background_type_color" checked /> <input class="cs-slide-background_type_color-manual" type="text" value="<?php echo $slide->background_type_color; ?>" />
|
158 |
<?php else: ?>
|
159 |
-
<input type="radio" value="2" name="cs-slide-background_type_color" /> <input class="cs-slide-background_type_color-manual" type="text" placeholder="<?php _e('Enter value', '
|
160 |
<?php endif; ?>
|
161 |
</form>
|
162 |
|
163 |
<br />
|
164 |
<br />
|
165 |
|
166 |
-
<?php _e('Background position-x:', '
|
167 |
<input type="text" value="<?php echo $slide->background_propriety_position_x; ?>" class="cs-slide-background_propriety_position_x" />
|
168 |
<br />
|
169 |
-
<?php _e('Background position-y:', '
|
170 |
<input type="text" value="<?php echo $slide->background_propriety_position_y; ?>" class="cs-slide-background_propriety_position_y" />
|
171 |
|
172 |
<br />
|
173 |
<br />
|
174 |
|
175 |
-
<?php _e('Background repeat:', '
|
176 |
<form>
|
177 |
<?php if($slide->background_repeat == 'repeat'): ?>
|
178 |
-
<input type="radio" value="1" name="cs-slide-background_repeat" checked /> <?php _e('Repeat', '
|
179 |
-
<input type="radio" value="0" name="cs-slide-background_repeat" /> <?php _e('No repeat', '
|
180 |
<?php else: ?>
|
181 |
-
<input type="radio" value="1" name="cs-slide-background_repeat" /> <?php _e('Repeat', '
|
182 |
-
<input type="radio" value="0" name="cs-slide-background_repeat" checked /> <?php _e('No repeat', '
|
183 |
<?php endif; ?>
|
184 |
</form>
|
185 |
|
186 |
<br />
|
187 |
<br />
|
188 |
|
189 |
-
<?php _e('Background size:', '
|
190 |
<input type="text" value="<?php echo $slide->background_propriety_size; ?>" class="cs-slide-background_propriety_size" />
|
191 |
<?php endif; ?>
|
192 |
</td>
|
193 |
<td class="cs-description">
|
194 |
-
<?php _e('The background of the slide and its proprieties.', '
|
195 |
<br />
|
196 |
<br />
|
197 |
-
<strong><?php _e('Presets:', '
|
198 |
<br />
|
199 |
<ul class="cs-style-list">
|
200 |
-
<li><a class="cs-slide-background-image-fullwidth-preset" href="javascript: void(0);"><?php _e('Full width responsive background image', '
|
201 |
-
<li><a class="cs-slide-background-image-pattern-preset" href="javascript: void(0);"><?php _e('Pattern background image', '
|
202 |
</ul>
|
203 |
</td>
|
204 |
</tr>
|
205 |
<tr>
|
206 |
-
<td class="cs-name"><?php _e('In animation', '
|
207 |
<td class="cs-content">
|
208 |
<select class="cs-slide-data_in">
|
209 |
<?php
|
@@ -218,11 +218,11 @@ function crellyslider_printSlide($slider, $slide, $edit) {
|
|
218 |
</select>
|
219 |
</td>
|
220 |
<td class="cs-description">
|
221 |
-
<?php _e('The in animation of the slide.', '
|
222 |
</td>
|
223 |
</tr>
|
224 |
<tr>
|
225 |
-
<td class="cs-name"><?php _e('Out animation', '
|
226 |
<td class="cs-content">
|
227 |
<select class="cs-slide-data_out">
|
228 |
<?php
|
@@ -237,11 +237,11 @@ function crellyslider_printSlide($slider, $slide, $edit) {
|
|
237 |
</select>
|
238 |
</td>
|
239 |
<td class="cs-description">
|
240 |
-
<?php _e('The out animation of the slide.', '
|
241 |
</td>
|
242 |
</tr>
|
243 |
<tr>
|
244 |
-
<td class="cs-name"><?php _e('Time', '
|
245 |
<td class="cs-content">
|
246 |
<?php
|
247 |
if($void) echo '<input class="cs-slide-data_time" type="text" value="3000" />';
|
@@ -250,11 +250,11 @@ function crellyslider_printSlide($slider, $slide, $edit) {
|
|
250 |
ms
|
251 |
</td>
|
252 |
<td class="cs-description">
|
253 |
-
<?php _e('The time that the slide will remain on the screen.', '
|
254 |
</td>
|
255 |
</tr>
|
256 |
<tr>
|
257 |
-
<td class="cs-name"><?php _e('Ease In', '
|
258 |
<td class="cs-content">
|
259 |
<?php
|
260 |
if($void) echo '<input class="cs-slide-data_easeIn" type="text" value="300" />';
|
@@ -263,11 +263,11 @@ function crellyslider_printSlide($slider, $slide, $edit) {
|
|
263 |
ms
|
264 |
</td>
|
265 |
<td class="cs-description">
|
266 |
-
<?php _e('The time that the slide will take to get in.', '
|
267 |
</td>
|
268 |
</tr>
|
269 |
<tr>
|
270 |
-
<td class="cs-name"><?php _e('Ease Out', '
|
271 |
<td class="cs-content">
|
272 |
<?php
|
273 |
if($void) echo '<input class="cs-slide-data_easeOut" type="text" value="300" />';
|
@@ -276,11 +276,11 @@ function crellyslider_printSlide($slider, $slide, $edit) {
|
|
276 |
ms
|
277 |
</td>
|
278 |
<td class="cs-description">
|
279 |
-
<?php _e('The time that the slide will take to get out.', '
|
280 |
</td>
|
281 |
</tr>
|
282 |
<tr>
|
283 |
-
<td class="cs-name"><?php _e('Link', '
|
284 |
<td class="cs-content">
|
285 |
<?php
|
286 |
if($void) echo '<input class="cs-background-link" type="text" value="" />';
|
@@ -288,23 +288,23 @@ function crellyslider_printSlide($slider, $slide, $edit) {
|
|
288 |
?>
|
289 |
<br />
|
290 |
<?php
|
291 |
-
if($void) echo '<input class="cs-background-link_new_tab" type="checkbox" />' . __('Open link in a new tab', '
|
292 |
else {
|
293 |
if($slide->link_new_tab) {
|
294 |
-
echo '<input class="cs-background-link_new_tab" type="checkbox" checked />' . __('Open link in a new tab', '
|
295 |
}
|
296 |
else {
|
297 |
-
echo '<input class="cs-background-link_new_tab" type="checkbox" />' . __('Open link in a new tab', '
|
298 |
}
|
299 |
}
|
300 |
?>
|
301 |
</td>
|
302 |
<td class="cs-description">
|
303 |
-
<?php _e('Open the link (e.g.: http://www.google.it) when the user clicks on the background. Leave it empty if you don\'t want it.', '
|
304 |
</td>
|
305 |
</tr>
|
306 |
<tr>
|
307 |
-
<td class="cs-name"><?php _e('Custom CSS', '
|
308 |
<td class="cs-content">
|
309 |
<?php
|
310 |
if($void) echo '<textarea class="cs-slide-custom_css"></textarea>';
|
@@ -312,7 +312,7 @@ function crellyslider_printSlide($slider, $slide, $edit) {
|
|
312 |
?>
|
313 |
</td>
|
314 |
<td class="cs-description">
|
315 |
-
<?php _e('Apply CSS to the slide.', '
|
316 |
</td>
|
317 |
</tr>
|
318 |
</tbody>
|
12 |
else {
|
13 |
echo '<li class="ui-state-default">';
|
14 |
}
|
15 |
+
echo '<a><span class="cs-slide-name-text">' . __('Slide', 'crelly-slider') . ' <span class="cs-slide-index">' . (($slide->position) + 1) . '</span></span></a>';
|
16 |
+
echo '<span title="' . __('Duplicate slide', 'crelly-slider') . '" class="cs-duplicate"></span>';
|
17 |
+
echo '<span title="' . __('Delete slide', 'crelly-slider') . '" class="cs-close"></span>';
|
18 |
echo '</li>';
|
19 |
|
20 |
$j++;
|
21 |
}
|
22 |
}
|
23 |
?>
|
24 |
+
<li class="ui-state-default ui-state-disabled"><a class="cs-add-new"><?php _e('Add Slide', 'crelly-slider'); ?></a></li>
|
25 |
<div style="clear: both;"></div>
|
26 |
</ul>
|
27 |
|
48 |
$void = !$slide ? true : false;
|
49 |
|
50 |
$animations = array(
|
51 |
+
'none' => array(__('None', 'crelly-slider'), false),
|
52 |
+
'fade' => array(__('Fade', 'crelly-slider'), true),
|
53 |
+
'fadeLeft' => array(__('Fade left', 'crelly-slider'), false),
|
54 |
+
'fadeRight' => array(__('Fade right', 'crelly-slider'), false),
|
55 |
+
'slideLeft' => array(__('Slide left', 'crelly-slider'), false),
|
56 |
+
'slideRight' => array(__('Slide right', 'crelly-slider'), false),
|
57 |
+
'slideUp' => array(__('Slide up', 'crelly-slider'), false),
|
58 |
+
'slideDown' => array(__('Slide down', 'crelly-slider'), false),
|
59 |
);
|
60 |
?>
|
61 |
|
62 |
<table class="cs-slide-settings-list cs-table">
|
63 |
<thead>
|
64 |
<tr class="odd-row">
|
65 |
+
<th colspan="3"><?php _e('Slide Options', 'crelly-slider'); ?></th>
|
66 |
</tr>
|
67 |
</thead>
|
68 |
|
69 |
<tbody>
|
70 |
<tr class="cs-table-header">
|
71 |
+
<td><?php _e('Option', 'crelly-slider'); ?></td>
|
72 |
+
<td><?php _e('Parameter', 'crelly-slider'); ?></td>
|
73 |
+
<td><?php _e('Description', 'crelly-slider'); ?></td>
|
74 |
</tr>
|
75 |
<tr>
|
76 |
+
<td class="cs-name"><?php _e('Background', 'crelly-slider'); ?></td>
|
77 |
<td class="cs-content">
|
78 |
<?php
|
79 |
if($void): ?>
|
80 |
+
<?php _e('Background image:', 'crelly-slider'); ?>
|
81 |
<form>
|
82 |
+
<input type="radio" value="0" name="cs-slide-background_type_image" checked /> <?php _e('None', 'crelly-slider'); ?>
|
83 |
+
<input type="radio" value="1" name="cs-slide-background_type_image" /> <input class="cs-slide-background_type_image-upload-button cs-button cs-is-default" type="button" value="<?php _e('Select image', 'crelly-slider'); ?>" />
|
84 |
</form>
|
85 |
|
86 |
<br />
|
87 |
<br />
|
88 |
|
89 |
+
<?php _e('Background color:', 'crelly-slider'); ?>
|
90 |
<form>
|
91 |
<br />
|
92 |
<br />
|
93 |
+
<input type="radio" value="0" name="cs-slide-background_type_color" checked /> <?php _e('Transparent', 'crelly-slider'); ?>
|
94 |
<br />
|
95 |
<input type="radio" value="1" name="cs-slide-background_type_color" /> <input class="cs-slide-background_type_color-picker-input cs-button cs-is-default" type="text" value="rgb(255, 255, 255)" />
|
96 |
<br />
|
97 |
+
<input type="radio" value="2" name="cs-slide-background_type_color" placeholder="<?php _e('Enter value', 'crelly-slider'); ?>" /> <input class="cs-slide-background_type_color-manual" type="text" />
|
98 |
</form>
|
99 |
|
100 |
<br />
|
101 |
<br />
|
102 |
|
103 |
+
<?php _e('Background position-x:', 'crelly-slider'); ?>
|
104 |
<input type="text" value="center" class="cs-slide-background_propriety_position_x" />
|
105 |
<br />
|
106 |
+
<?php _e('Background position-y:', 'crelly-slider'); ?>
|
107 |
<input type="text" value="center" class="cs-slide-background_propriety_position_y" />
|
108 |
|
109 |
<br />
|
110 |
<br />
|
111 |
|
112 |
+
<?php _e('Background repeat:', 'crelly-slider'); ?>
|
113 |
<form>
|
114 |
+
<input type="radio" value="1" name="cs-slide-background_repeat" /> <?php _e('Repeat', 'crelly-slider'); ?>
|
115 |
+
<input type="radio" value="0" name="cs-slide-background_repeat" checked /> <?php _e('No repeat', 'crelly-slider'); ?>
|
116 |
</form>
|
117 |
|
118 |
<br />
|
119 |
<br />
|
120 |
|
121 |
+
<?php _e('Background size:', 'crelly-slider'); ?>
|
122 |
<input type="text" value="cover" class="cs-slide-background_propriety_size" />
|
123 |
<?php else: ?>
|
124 |
+
<?php _e('Background image:', 'crelly-slider'); ?>
|
125 |
<form>
|
126 |
<?php if($slide->background_type_image == 'none' || $slide->background_type_image == 'undefined'): ?>
|
127 |
+
<input type="radio" value="0" name="cs-slide-background_type_image" checked /> <?php _e('None', 'crelly-slider'); ?>
|
128 |
+
<input type="radio" value="1" name="cs-slide-background_type_image" /> <input class="cs-slide-background_type_image-upload-button cs-button cs-is-default" type="button" value="<?php _e('Select image', 'crelly-slider'); ?>" />
|
129 |
<?php else: ?>
|
130 |
+
<input type="radio" value="0" name="cs-slide-background_type_image" /> <?php _e('None', 'crelly-slider'); ?>
|
131 |
+
<input type="radio" value="1" name="cs-slide-background_type_image" checked /> <input class="cs-slide-background_type_image-upload-button cs-button cs-is-default" type="button" value="<?php _e('Select image', 'crelly-slider'); ?>" />
|
132 |
<?php endif; ?>
|
133 |
</form>
|
134 |
|
135 |
<br />
|
136 |
<br />
|
137 |
|
138 |
+
<?php _e('Background color:', 'crelly-slider'); ?>
|
139 |
<form>
|
140 |
<br />
|
141 |
<br />
|
142 |
<?php if($slide->background_type_color == 'transparent'): ?>
|
143 |
+
<input type="radio" value="0" name="cs-slide-background_type_color" checked /> <?php _e('Transparent', 'crelly-slider'); ?>
|
144 |
<?php else: ?>
|
145 |
+
<input type="radio" value="0" name="cs-slide-background_type_color" /> <?php _e('Transparent', 'crelly-slider'); ?>
|
146 |
<?php endif; ?>
|
147 |
|
148 |
<br />
|
156 |
<?php if($slide->background_type_color_input == '2'): ?>
|
157 |
<input type="radio" value="2" name="cs-slide-background_type_color" checked /> <input class="cs-slide-background_type_color-manual" type="text" value="<?php echo $slide->background_type_color; ?>" />
|
158 |
<?php else: ?>
|
159 |
+
<input type="radio" value="2" name="cs-slide-background_type_color" /> <input class="cs-slide-background_type_color-manual" type="text" placeholder="<?php _e('Enter value', 'crelly-slider'); ?>" />
|
160 |
<?php endif; ?>
|
161 |
</form>
|
162 |
|
163 |
<br />
|
164 |
<br />
|
165 |
|
166 |
+
<?php _e('Background position-x:', 'crelly-slider'); ?>
|
167 |
<input type="text" value="<?php echo $slide->background_propriety_position_x; ?>" class="cs-slide-background_propriety_position_x" />
|
168 |
<br />
|
169 |
+
<?php _e('Background position-y:', 'crelly-slider'); ?>
|
170 |
<input type="text" value="<?php echo $slide->background_propriety_position_y; ?>" class="cs-slide-background_propriety_position_y" />
|
171 |
|
172 |
<br />
|
173 |
<br />
|
174 |
|
175 |
+
<?php _e('Background repeat:', 'crelly-slider'); ?>
|
176 |
<form>
|
177 |
<?php if($slide->background_repeat == 'repeat'): ?>
|
178 |
+
<input type="radio" value="1" name="cs-slide-background_repeat" checked /> <?php _e('Repeat', 'crelly-slider'); ?>
|
179 |
+
<input type="radio" value="0" name="cs-slide-background_repeat" /> <?php _e('No repeat', 'crelly-slider'); ?>
|
180 |
<?php else: ?>
|
181 |
+
<input type="radio" value="1" name="cs-slide-background_repeat" /> <?php _e('Repeat', 'crelly-slider'); ?>
|
182 |
+
<input type="radio" value="0" name="cs-slide-background_repeat" checked /> <?php _e('No repeat', 'crelly-slider'); ?>
|
183 |
<?php endif; ?>
|
184 |
</form>
|
185 |
|
186 |
<br />
|
187 |
<br />
|
188 |
|
189 |
+
<?php _e('Background size:', 'crelly-slider'); ?>
|
190 |
<input type="text" value="<?php echo $slide->background_propriety_size; ?>" class="cs-slide-background_propriety_size" />
|
191 |
<?php endif; ?>
|
192 |
</td>
|
193 |
<td class="cs-description">
|
194 |
+
<?php _e('The background of the slide and its proprieties.', 'crelly-slider'); ?>
|
195 |
<br />
|
196 |
<br />
|
197 |
+
<strong><?php _e('Presets:', 'crelly-slider'); ?></strong>
|
198 |
<br />
|
199 |
<ul class="cs-style-list">
|
200 |
+
<li><a class="cs-slide-background-image-fullwidth-preset" href="javascript: void(0);"><?php _e('Full width responsive background image', 'crelly-slider'); ?></a></li>
|
201 |
+
<li><a class="cs-slide-background-image-pattern-preset" href="javascript: void(0);"><?php _e('Pattern background image', 'crelly-slider'); ?></a></li>
|
202 |
</ul>
|
203 |
</td>
|
204 |
</tr>
|
205 |
<tr>
|
206 |
+
<td class="cs-name"><?php _e('In animation', 'crelly-slider'); ?></td>
|
207 |
<td class="cs-content">
|
208 |
<select class="cs-slide-data_in">
|
209 |
<?php
|
218 |
</select>
|
219 |
</td>
|
220 |
<td class="cs-description">
|
221 |
+
<?php _e('The in animation of the slide.', 'crelly-slider'); ?>
|
222 |
</td>
|
223 |
</tr>
|
224 |
<tr>
|
225 |
+
<td class="cs-name"><?php _e('Out animation', 'crelly-slider'); ?></td>
|
226 |
<td class="cs-content">
|
227 |
<select class="cs-slide-data_out">
|
228 |
<?php
|
237 |
</select>
|
238 |
</td>
|
239 |
<td class="cs-description">
|
240 |
+
<?php _e('The out animation of the slide.', 'crelly-slider'); ?>
|
241 |
</td>
|
242 |
</tr>
|
243 |
<tr>
|
244 |
+
<td class="cs-name"><?php _e('Time', 'crelly-slider'); ?></td>
|
245 |
<td class="cs-content">
|
246 |
<?php
|
247 |
if($void) echo '<input class="cs-slide-data_time" type="text" value="3000" />';
|
250 |
ms
|
251 |
</td>
|
252 |
<td class="cs-description">
|
253 |
+
<?php _e('The time that the slide will remain on the screen.', 'crelly-slider'); ?>
|
254 |
</td>
|
255 |
</tr>
|
256 |
<tr>
|
257 |
+
<td class="cs-name"><?php _e('Ease In', 'crelly-slider'); ?></td>
|
258 |
<td class="cs-content">
|
259 |
<?php
|
260 |
if($void) echo '<input class="cs-slide-data_easeIn" type="text" value="300" />';
|
263 |
ms
|
264 |
</td>
|
265 |
<td class="cs-description">
|
266 |
+
<?php _e('The time that the slide will take to get in.', 'crelly-slider'); ?>
|
267 |
</td>
|
268 |
</tr>
|
269 |
<tr>
|
270 |
+
<td class="cs-name"><?php _e('Ease Out', 'crelly-slider'); ?></td>
|
271 |
<td class="cs-content">
|
272 |
<?php
|
273 |
if($void) echo '<input class="cs-slide-data_easeOut" type="text" value="300" />';
|
276 |
ms
|
277 |
</td>
|
278 |
<td class="cs-description">
|
279 |
+
<?php _e('The time that the slide will take to get out.', 'crelly-slider'); ?>
|
280 |
</td>
|
281 |
</tr>
|
282 |
<tr>
|
283 |
+
<td class="cs-name"><?php _e('Link', 'crelly-slider'); ?></td>
|
284 |
<td class="cs-content">
|
285 |
<?php
|
286 |
if($void) echo '<input class="cs-background-link" type="text" value="" />';
|
288 |
?>
|
289 |
<br />
|
290 |
<?php
|
291 |
+
if($void) echo '<input class="cs-background-link_new_tab" type="checkbox" />' . __('Open link in a new tab', 'crelly-slider');
|
292 |
else {
|
293 |
if($slide->link_new_tab) {
|
294 |
+
echo '<input class="cs-background-link_new_tab" type="checkbox" checked />' . __('Open link in a new tab', 'crelly-slider');
|
295 |
}
|
296 |
else {
|
297 |
+
echo '<input class="cs-background-link_new_tab" type="checkbox" />' . __('Open link in a new tab', 'crelly-slider');
|
298 |
}
|
299 |
}
|
300 |
?>
|
301 |
</td>
|
302 |
<td class="cs-description">
|
303 |
+
<?php _e('Open the link (e.g.: http://www.google.it) when the user clicks on the background. Leave it empty if you don\'t want it.', 'crelly-slider'); ?>
|
304 |
</td>
|
305 |
</tr>
|
306 |
<tr>
|
307 |
+
<td class="cs-name"><?php _e('Custom CSS', 'crelly-slider'); ?></td>
|
308 |
<td class="cs-content">
|
309 |
<?php
|
310 |
if($void) echo '<textarea class="cs-slide-custom_css"></textarea>';
|
312 |
?>
|
313 |
</td>
|
314 |
<td class="cs-description">
|
315 |
+
<?php _e('Apply CSS to the slide.', 'crelly-slider'); ?>
|
316 |
</td>
|
317 |
</tr>
|
318 |
</tbody>
|