Crelly Slider - Version 1.3.0

Version Description

  • New feature: sliders can be scheduled (you can specify from when and how long they should be displayed for)
  • When a video is manually paused by the user, it won't resume automatically at the next slides loop
  • For developers: TinyMCE settings are now hookable (credits to dlaxar https://github.com/fabiorino/crelly-slider/commits?author=dlaxar)
  • For developers: sliders can be imported via code
  • Other minor changes and bug fixes
Download this release

Release Info

Developer fabiorino
Plugin Icon 128x128 Crelly Slider
Version 1.3.0
Comparing to
See all releases

Code changes from version 1.2.3 to 1.3.0

README.md DELETED
@@ -1,31 +0,0 @@
1
- # Crelly Slider
2
- __Crelly Slider has Layers Animations, is Free, Responsive and Easy to Use__
3
-
4
- Crelly Slider in the WordPress plugins reposity: https://wordpress.org/plugins/crelly-slider
5
-
6
- Official plugin website (with live demo): http://crellyslider.altervista.org/
7
-
8
- Documentation: http://crellyslider.altervista.org/documentation/
9
-
10
- ## Description
11
- Crelly Slider is a Free / Open Source WordPress slider with a powerful Drag & Drop Builder. You can add Texts, Images, YouTube/Vimeo videos and animate each of them. 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.
12
-
13
-
14
-
15
- #### User Friendly Admin Panel
16
- 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.
17
-
18
- #### High Cross Browser Compatibility
19
- 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.
20
-
21
- #### Drag and Drop Builder
22
- 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.
23
-
24
- #### Transitions & Animations
25
- Foreach element and slide you can choose an in animation and an out animation using a simple selection menu. You can set the transition speeds and how long the element will take to get in and out.
26
-
27
- #### Completely Responsive
28
- Responsive means that the Slider will be displayed correctly in every resolution that the user will use. If the display is small (like in a smartphone), the slides and the elements will be scaled to be adapted.
29
-
30
- #### Full & Fixed Width Modes
31
- Using Crelly Slider you can select between a fixed or a full-width layout (both of them can be responsive). You are the designer, you own the WebSite, just choose the best for it.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
crellyslider.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Crelly Slider
4
  * Plugin URI: https://wordpress.org/plugins/crelly-slider/
5
  * Description: A free responsive slider that supports layers. Add texts, images, videos and beautify them with transitions and animations.
6
- * Version: 1.2.3
7
  * Author: Fabio Rinaldi
8
  * Author URI: https://github.com/fabiorino
9
  * Text Domain: crelly-slider
@@ -19,7 +19,7 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
19
 
20
  define('CS_DEBUG', false);
21
 
22
- define('CS_VERSION', '1.2.3');
23
  define('CS_PATH', plugin_dir_path(__FILE__));
24
  define('CS_PLUGIN_URL', plugins_url() . '/crelly-slider');
25
 
3
  * Plugin Name: Crelly Slider
4
  * Plugin URI: https://wordpress.org/plugins/crelly-slider/
5
  * Description: A free responsive slider that supports layers. Add texts, images, videos and beautify them with transitions and animations.
6
+ * Version: 1.3.0
7
  * Author: Fabio Rinaldi
8
  * Author URI: https://github.com/fabiorino
9
  * Text Domain: crelly-slider
19
 
20
  define('CS_DEBUG', false);
21
 
22
+ define('CS_VERSION', '1.3.0');
23
  define('CS_PATH', plugin_dir_path(__FILE__));
24
  define('CS_PLUGIN_URL', plugins_url() . '/crelly-slider');
25
 
css/crellyslider.css CHANGED
@@ -2,7 +2,7 @@
2
  * Plugin Name: Crelly Slider
3
  * Plugin URI: https://wordpress.org/plugins/crelly-slider/
4
  * Description: A free responsive slider that supports layers. Add texts, images, videos and beautify them with transitions and animations.
5
- * Version: 1.2.3
6
  * Author: Fabio Rinaldi
7
  * Author URI: https://github.com/fabiorino
8
  * License: MIT
@@ -199,8 +199,14 @@
199
 
200
  .crellyslider > .cs-slides > .cs-slide > * {
201
  position: absolute;
202
- display: block;
203
  cursor: default;
 
 
 
 
 
 
204
  }
205
 
206
  .crellyslider > .cs-slides > .cs-slide > a {
2
  * Plugin Name: Crelly Slider
3
  * Plugin URI: https://wordpress.org/plugins/crelly-slider/
4
  * Description: A free responsive slider that supports layers. Add texts, images, videos and beautify them with transitions and animations.
5
+ * Version: 1.3.0
6
  * Author: Fabio Rinaldi
7
  * Author URI: https://github.com/fabiorino
8
  * License: MIT
199
 
200
  .crellyslider > .cs-slides > .cs-slide > * {
201
  position: absolute;
202
+ display: block;
203
  cursor: default;
204
+ -webkit-transition: none;
205
+ -moz-transition: none;
206
+ -ms-transition: none;
207
+ -o-transition: none;
208
+ transition: none;
209
+ font-size: 14px;
210
  }
211
 
212
  .crellyslider > .cs-slides > .cs-slide > a {
css/crellyslider.min.css ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * Plugin Name: Crelly Slider
3
+ * Plugin URI: https://wordpress.org/plugins/crelly-slider/
4
+ * Description: A free responsive slider that supports layers. Add texts, images, videos and beautify them with transitions and animations.
5
+ * Version: 1.3.0
6
+ * Author: Fabio Rinaldi
7
+ * Author URI: https://github.com/fabiorino
8
+ * License: MIT
9
+ */
10
+
11
+ .crellyslider>.cs-controls>.cs-next,.crellyslider>.cs-controls>.cs-previous,.crellyslider>.cs-preloader>.cs-loader{background-repeat:no-repeat;background-position:center center;border:10px;box-shadow:0 3px 10px rgba(0,0,0,.16),0 3px 10px rgba(0,0,0,.23)}.crellyslider{margin:0 auto;position:relative;white-space:nowrap;overflow:hidden;line-height:1.5;font-size:14px;color:#000;font-family:Verdana,sans-serif}.crellyslider a,.crellyslider a:hover{color:#0073aa}.crellyslider>.cs-preloader{width:100%;height:100%;z-index:999;background-color:#fff;position:relative;overflow:hidden}.crellyslider>.cs-preloader>.cs-bg{position:absolute;top:0;left:0;z-index:11;display:block;width:100%;height:100%;filter:blur(5px);-webkit-filter:blur(5px);-moz-filter:blur(5px);-o-filter:blur(5px);-ms-filter:blur(5px)}.crellyslider>.cs-preloader>.cs-loader{width:50px;height:50px;position:absolute;top:50%;left:50%;margin-top:-25px;margin-left:-25px;z-index:12;background-color:#fff;border-radius:50%}.crellyslider>.cs-preloader>.cs-loader>.cs-spinner{top:16px;left:50%;margin-left:-2px;display:inline-block;position:relative;-webkit-animation:cs-bounce-middle .6s ease .1s infinite;animation:cs-bounce-middle .6s ease .1s infinite}.crellyslider>.cs-preloader>.cs-loader>.cs-spinner,.crellyslider>.cs-preloader>.cs-loader>.cs-spinner:after,.crellyslider>.cs-preloader>.cs-loader>.cs-spinner:before{width:4px;height:18px;background-color:#0b60a9;border-radius:2px}.crellyslider>.cs-preloader>.cs-loader>.cs-spinner:after,.crellyslider>.cs-preloader>.cs-loader>.cs-spinner:before{content:"";position:absolute;display:block;top:50%;-webkit-transform:translateY(-10px) translateZ(0);transform:translateY(-10px) translateZ(0)}.crellyslider>.cs-preloader>.cs-loader>.cs-spinner:before{left:-6px;-webkit-animation:cs-bounce-middle .6s ease 0s infinite;animation:cs-bounce-middle .6s ease 0s infinite}.crellyslider>.cs-preloader>.cs-loader>.cs-spinner:after{left:6px;-webkit-animation:cs-bounce-middle .6s ease .2s infinite;animation:cs-bounce-middle .6s ease .2s infinite}@-webkit-keyframes cs-bounce-middle{0%,100%{height:4px;margin-top:8px;margin-bottom:8px}50%{height:20px;margin-top:0;margin-bottom:0}}@keyframes cs-bounce-middle{0%,100%{height:4px;margin-top:8px;margin-bottom:8px}50%{height:20px;margin-top:0;margin-bottom:0}}.crellyslider>.cs-controls,.crellyslider>.cs-navigation{z-index:999;-webkit-transition:all .2s;-moz-transition:all .2s;-o-transition:all .2s;-ms-transition:all .2s;transition:all .2s;opacity:0;filter:alpha(opacity=0)}.crellyslider:hover>.cs-controls,.crellyslider:hover>.cs-navigation{opacity:1;filter:alpha(opacity=100)}.crellyslider>.cs-slides{list-style:none;margin:0;padding:0}.crellyslider>.cs-slides>.cs-slide{margin:0;padding:0;position:absolute;overflow:hidden;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.crellyslider>.cs-slides>.cs-slide>.cs-background-link{opacity:0;z-index:0;padding:0;width:100%!important;height:100%!important;top:0!important;left:0!important}.crellyslider>.cs-slides>.cs-slide>*{position:absolute;display:block;cursor:default;-webkit-transition:none;-moz-transition:none;-ms-transition:none;-o-transition:none;transition:none;font-size:14px}.crellyslider>.cs-slides>.cs-slide>a{cursor:pointer}.crellyslider>.cs-slides>.cs-slide>a>img,.crellyslider>.cs-slides>.cs-slide>img{max-width:none!important}.crellyslider>.cs-slides>.cs-slide a,.crellyslider>.cs-slides>.cs-slide>a>img{text-decoration:none;outline:0;border:none}.crellyslider>.cs-controls{position:absolute;width:100%;top:50%;margin-top:-9px}.crellyslider>.cs-controls>.cs-next,.crellyslider>.cs-controls>.cs-previous{display:block;width:35px;height:35px;position:absolute;cursor:pointer;background-color:#fff;border-radius:50%}.crellyslider>.cs-controls>.cs-previous{background-image:url(../images/arrow-left.png);left:30px}.crellyslider>.cs-controls>.cs-next{background-image:url(../images/arrow-right.png);right:30px}.crellyslider>.cs-navigation{position:absolute;width:100%;height:0;bottom:40px;text-align:center}.crellyslider>.cs-navigation>.cs-slide-link{width:15px;height:15px;display:inline-block;cursor:pointer;margin:6px;background-color:#fff;box-shadow:0 3px 10px rgba(0,0,0,.16),0 3px 10px rgba(0,0,0,.23);border:10px;border-radius:50%;opacity:.5;filter:alpha(opacity=50)}.crellyslider>.cs-navigation>.cs-slide-link.cs-active{opacity:1;filter:alpha(opacity=100)}.crellyslider>.cs-progress-bar{width:0%;height:4px;position:absolute;top:0;background-color:#fff;opacity:.5;filter:alpha(opacity=50);z-index:999}.crellyslider>.cs-progress-bar.cs-progress-bar-hidden{opacity:0;filter:alpha(opacity=0)}
demo/fonts/Bender.svg CHANGED
@@ -1,436 +1,436 @@
1
- <?xml version="1.0" standalone="no"?>
2
- <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
3
- <svg>
4
- <metadata>
5
- Created by FontForge 20110222 at Mon Mar 7 13:18:46 2011
6
- By www-data
7
- Copyright (c) 2009 by Oleg Zhuravlev, Gladkikh Ivan. All rights reserved.
8
- </metadata>
9
- <defs>
10
- <font id="Bender" horiz-adv-x="561" >
11
- <font-face
12
- font-family="Bender"
13
- font-weight="400"
14
- font-stretch="normal"
15
- units-per-em="1000"
16
- panose-1="2 0 5 3 2 0 0 2 0 4"
17
- ascent="800"
18
- descent="-200"
19
- x-height="533"
20
- cap-height="700"
21
- bbox="-70 -275 1011 955"
22
- underline-thickness="50"
23
- underline-position="-50"
24
- stemh="65"
25
- stemv="65"
26
- unicode-range="U+0020-2122"
27
- />
28
- <missing-glyph />
29
- <glyph glyph-name="quotedbl" unicode="&#x22;" horiz-adv-x="275"
30
- d="M41 447l-11 253h70l-11 -253h-48zM186 447l-11 253h70l-11 -253h-48z" />
31
- <glyph glyph-name="numbersign" unicode="#" horiz-adv-x="734"
32
- d="M127 0h-67l76 192h-136v65h160l75 186h-133v65h157l77 192h67l-76 -192h203l77 192h67l-76 -192h136v-65h-161l-74 -186h133v-65h-158l-76 -192h-67l76 192h-204zM302 443l-73 -186h202l75 186h-204z" />
33
- <glyph glyph-name="dollar" unicode="$" horiz-adv-x="544"
34
- d="M150 65h225l64 64v95l-14 26l-358 174l-27 56v118l102 102h98v70h65v-70h99l98 -33l-20 -60l-90 28h-223l-64 -64v-72l12 -25l356 -173l31 -58v-141l-102 -102h-98v-70h-65v70h-96l-101 34l21 61z" />
35
- <glyph glyph-name="percent" unicode="%" horiz-adv-x="701"
36
- d="M61 28l529 685l49 -38l-528 -686zM463 290h126l82 -82v-126l-82 -82h-126l-82 82v126zM562 225h-72l-44 -44v-72l44 -44h72l44 44v72zM112 700h126l82 -82v-126l-82 -82h-126l-82 82v126zM211 635h-72l-44 -44v-72l44 -44h72l44 44v72z" />
37
- <glyph glyph-name="ampersand" unicode="&#x26;" horiz-adv-x="605"
38
- d="M547 -12l-96 107l-95 -95h-223l-103 102v138l154 152l-86 96v110l103 102h204l103 -103v-95h-65v68l-65 65h-150l-65 -65v-57l290 -323l91 90l46 -46l-93 -93l98 -110zM160 65h170l78 78l-181 201l-132 -131v-83z" />
39
- <glyph glyph-name="quotesingle" unicode="'" horiz-adv-x="130"
40
- d="M41 447l-11 253h70l-11 -253h-48z" />
41
- <glyph glyph-name="parenleft" unicode="(" horiz-adv-x="250"
42
- d="M105 544v-552l47 -74l98 -36l-22 -60l-117 42l-71 114v580l71 114l117 42l22 -60l-98 -36z" />
43
- <glyph glyph-name="parenright" unicode=")" horiz-adv-x="250"
44
- d="M145 -8v552l-47 74l-98 36l22 60l117 -42l71 -114v-580l-71 -114l-117 -42l-22 60l98 36z" />
45
- <glyph glyph-name="asterisk" unicode="*" horiz-adv-x="377"
46
- d="M156 592v108h65v-108l92 54l34 -57l-93 -55l93 -55l-34 -57l-92 54v-108h-65v108l-92 -54l-34 57l93 55l-93 55l34 57z" />
47
- <glyph glyph-name="plus" unicode="+" horiz-adv-x="470"
48
- d="M202 560h65v-183h183v-65h-183v-182h-65v182h-182v65h182v183z" />
49
- <glyph glyph-name="comma" unicode="," horiz-adv-x="150"
50
- d="M0 -180l55 240h75l-85 -240h-45z" />
51
- <glyph glyph-name="hyphen" unicode="-" horiz-adv-x="450"
52
- d="M20 312v65h410v-65h-410z" />
53
- <glyph glyph-name="period" unicode="." horiz-adv-x="150"
54
- d="M54 -10l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42z" />
55
- <glyph glyph-name="slash" unicode="/" horiz-adv-x="506"
56
- d="M0 20l453 692l53 -33l-453 -693z" />
57
- <glyph glyph-name="zero" unicode="0" horiz-adv-x="604"
58
- d="M125 125l305 497l-14 13h-226l-65 -64v-446zM479 575l-305 -497l14 -13h226l65 64v446zM442 700l102 -102v-496l-103 -102h-279l-102 102v496l103 102h279z" />
59
- <glyph glyph-name="one" unicode="1" horiz-adv-x="360"
60
- d="M340 0h-297v65h116v544l-93 -93l-46 46l139 139h65v-636h116v-65z" />
61
- <glyph glyph-name="two" unicode="2" horiz-adv-x="546"
62
- d="M128 635l-88 -28l-20 61l103 32h281l102 -103v-181l-93 -93l-327 -214v-44h420v-65h-485v144l347 227l73 74v126l-63 64h-250z" />
63
- <glyph glyph-name="three" unicode="3" horiz-adv-x="535"
64
- d="M111 0l-101 34l21 61l87 -30h248l64 63v154l-63 63h-216v69l250 221h-380v65h474v-66l-254 -224h152l102 -102v-206l-103 -102h-281z" />
65
- <glyph glyph-name="four" unicode="4" horiz-adv-x="556"
66
- d="M473 236h73v-65h-73v-171h-65v171h-398v88l398 443h65v-466zM408 236v366l-329 -366h329z" />
67
- <glyph glyph-name="five" unicode="5" horiz-adv-x="559"
68
- d="M59 700h460v-65h-395v-217h293l102 -102v-214l-103 -102h-265l-101 34l21 61l87 -30h230l66 65v158l-65 65h-330v347z" />
69
- <glyph glyph-name="six" unicode="6" horiz-adv-x="585"
70
- d="M60 103v494l102 103h282l98 -33l-22 -61l-89 29h-243l-63 -64v-157l33 11h284l103 -105v-218l-103 -102h-279zM415 360h-257l-33 -11v-219l65 -65h225l65 65v163z" />
71
- <glyph glyph-name="seven" unicode="7" horiz-adv-x="505"
72
- d="M249 175v-175h-65v191l236 401v43h-410v65h475v-125z" />
73
- <glyph glyph-name="eight" unicode="8" horiz-adv-x="603"
74
- d="M478 268l-64 64h-224l-65 -65v-138l65 -64h222l66 65v138zM410 635h-217l-63 -63v-115l61 -60h221l61 60v112zM440 0h-277l-103 102v193l70 70l-65 64v169l102 102h273l98 -102v-169l-65 -64l70 -70v-193z" />
75
- <glyph glyph-name="nine" unicode="9" horiz-adv-x="585"
76
- d="M525 597v-494l-102 -103h-282l-98 33l22 61l89 -29h243l63 64v157l-33 -11h-284l-103 105v218l103 102h279zM170 340h257l33 11v219l-65 65h-225l-65 -65v-163z" />
77
- <glyph glyph-name="colon" unicode=":" horiz-adv-x="150"
78
- d="M54 -10l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42zM54 378l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42z" />
79
- <glyph glyph-name="semicolon" unicode=";" horiz-adv-x="156"
80
- d="M60 378l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42zM0 -180l55 240h75l-85 -240h-45z" />
81
- <glyph glyph-name="less" unicode="&#x3c;" horiz-adv-x="349"
82
- d="M20 240v46l276 237l43 -49l-245 -211l245 -211l-43 -49z" />
83
- <glyph glyph-name="equal" unicode="=" horiz-adv-x="450"
84
- d="M20 403v65h410v-65h-410zM20 222v65h410v-65h-410z" />
85
- <glyph glyph-name="greater" unicode="&#x3e;" horiz-adv-x="349"
86
- d="M329 286v-46l-276 -237l-43 49l245 211l-245 211l43 49z" />
87
- <glyph glyph-name="question" unicode="?" horiz-adv-x="544"
88
- d="M145 635l-98 -98l-47 46l118 117h284l102 -102v-184l-215 -180v-109h-65v144l215 180v122l-64 64h-230zM235 -12l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42z" />
89
- <glyph glyph-name="at" unicode="@" horiz-adv-x="879"
90
- d="M809 578v-429l-83 -82h-147l-16 50l-54 -54h-176l-83 82v110l83 82h216v72l-45 44h-134l-87 -30l-21 61l101 34h168l83 -82v-264l13 -40h72l45 44v374l-95 85h-419l-95 -85v-514l95 -85h446v-65h-470l-136 122v570l136 122h467zM481 128l68 66v78h-189l-45 -44v-56
91
- l45 -44h121z" />
92
- <glyph glyph-name="A" unicode="A" horiz-adv-x="578"
93
- d="M155 212l-72 -222l-63 20l223 690h92l223 -690l-63 -20l-72 222h-268zM176 277h226l-113 350z" />
94
- <glyph glyph-name="B" unicode="B" horiz-adv-x="615"
95
- d="M495 370l70 -71v-196l-103 -103h-382v700h381l83 -83v-198zM500 273l-63 64h-292v-272h292l63 63v145zM145 635v-233h290l44 44v145l-44 44h-290z" />
96
- <glyph glyph-name="C" unicode="C" horiz-adv-x="579"
97
- d="M426 65l76 76l47 -46l-95 -95h-291l-103 103v494l103 103h279l103 -103v-112h-65v85l-65 65h-225l-65 -65v-440l65 -65h236z" />
98
- <glyph glyph-name="D" unicode="D" horiz-adv-x="626"
99
- d="M80 700h383l103 -104v-492l-103 -104h-383v700zM501 569l-65 66h-291v-570h291l65 66v438z" />
100
- <glyph glyph-name="E" unicode="E" horiz-adv-x="533"
101
- d="M80 0v700h433v-65h-368v-232h326v-65h-326v-273h368v-65h-433z" />
102
- <glyph glyph-name="F" unicode="F" horiz-adv-x="523"
103
- d="M80 0v700h433v-65h-368v-240h326v-65h-326v-330h-65z" />
104
- <glyph glyph-name="G" unicode="G" horiz-adv-x="605"
105
- d="M545 598v-113h-65v86l-63 64h-229l-63 -64v-442l63 -64h229l63 64v167h-168v65h233v-259l-102 -102h-281l-102 102v496l102 102h281z" />
106
- <glyph glyph-name="H" unicode="H" horiz-adv-x="645"
107
- d="M500 396v304h65v-700h-65v331h-355v-331h-65v700h65v-304h355z" />
108
- <glyph glyph-name="I" unicode="I" horiz-adv-x="357"
109
- d="M327 0h-297v65h116v570h-116v65h297v-65h-116v-570h116v-65z" />
110
- <glyph glyph-name="J" unicode="J" horiz-adv-x="527"
111
- d="M117 0l-117 117l47 46l99 -98h181l65 65v505h-168v65h233v-597l-103 -103h-237z" />
112
- <glyph glyph-name="K" unicode="K" horiz-adv-x="563"
113
- d="M314 409l249 -384l-54 -35l-241 371l-123 -129v-232h-65v700h65v-374l365 384l47 -45z" />
114
- <glyph glyph-name="L" unicode="L" horiz-adv-x="513"
115
- d="M80 0v700h65v-635h368v-65h-433z" />
116
- <glyph glyph-name="M" unicode="M" horiz-adv-x="832"
117
- d="M444 166h-56l-243 415v-581h-65v700h72l264 -451l264 451h72v-700h-65v581z" />
118
- <glyph glyph-name="N" unicode="N" horiz-adv-x="646"
119
- d="M493 0l-348 587v-587h-65v700h73l348 -587v587h65v-700h-73z" />
120
- <glyph glyph-name="O" unicode="O" horiz-adv-x="635"
121
- d="M173 700h289l113 -103v-494l-113 -103h-289l-113 103v494zM510 570l-72 65h-241l-72 -65v-440l72 -65h241l72 65v440z" />
122
- <glyph glyph-name="P" unicode="P" horiz-adv-x="605"
123
- d="M145 267v-267h-65v700h382l103 -102v-229l-103 -102h-317zM434 635h-289v-303h289l66 65v173z" />
124
- <glyph glyph-name="Q" unicode="Q" horiz-adv-x="635"
125
- d="M285 0h-112l-113 103v494l113 103h289l113 -103v-494l-113 -103h-112v-138h-65v138zM350 65h88l72 65v440l-72 65h-241l-72 -65v-440l72 -65h88v60h65v-60z" />
126
- <glyph glyph-name="R" unicode="R" horiz-adv-x="605"
127
- d="M145 274v-274h-65v700h382l103 -102v-222l-103 -102h-141l242 -242l-46 -47l-288 289h-84zM434 635h-289v-296h289l66 65v166z" />
128
- <glyph glyph-name="S" unicode="S" horiz-adv-x="544"
129
- d="M392 635h-223l-64 -64v-72l12 -25l356 -173l31 -58v-141l-102 -102h-259l-101 34l21 61l87 -30h225l64 64v95l-14 26l-358 174l-27 56v118l102 102h262l98 -33l-20 -60z" />
130
- <glyph glyph-name="T" unicode="T" horiz-adv-x="505"
131
- d="M285 635v-635h-65v635h-220v65h505v-65h-220z" />
132
- <glyph glyph-name="U" unicode="U" horiz-adv-x="625"
133
- d="M173 0l-103 102v598h65v-570l66 -65h223l66 65v570h65v-598l-103 -102h-279z" />
134
- <glyph glyph-name="V" unicode="V" horiz-adv-x="586"
135
- d="M337 0h-88l-229 689l63 21l210 -631l210 631l63 -21z" />
136
- <glyph glyph-name="W" unicode="W" horiz-adv-x="908"
137
- d="M418 679h72l163 -566l171 597l64 -18l-198 -692h-74l-162 564l-162 -564h-74l-198 692l64 18l171 -597z" />
138
- <glyph glyph-name="X" unicode="X" horiz-adv-x="544"
139
- d="M75 710l197 -300l197 300l55 -36l-213 -324l211 -324l-55 -36l-195 300l-195 -300l-55 36l211 324l-213 324z" />
140
- <glyph glyph-name="Y" unicode="Y" horiz-adv-x="560"
141
- d="M312 0h-65v264l-237 412l58 34l212 -368l212 368l58 -34l-238 -413v-263z" />
142
- <glyph glyph-name="Z" unicode="Z" horiz-adv-x="515"
143
- d="M106 65h384v-65h-470v62l389 573h-384v65h470v-64z" />
144
- <glyph glyph-name="bracketleft" unicode="[" horiz-adv-x="224"
145
- d="M224 -168h-184v868h184v-65h-119v-738h119v-65z" />
146
- <glyph glyph-name="backslash" unicode="\" horiz-adv-x="506"
147
- d="M53 712l453 -692l-53 -34l-453 693z" />
148
- <glyph glyph-name="bracketright" unicode="]" horiz-adv-x="224"
149
- d="M184 700v-868h-184v65h119v738h-119v65h184z" />
150
- <glyph glyph-name="asciicircum" unicode="^" horiz-adv-x="470"
151
- d="M212 700h46l212 -288l-52 -38l-183 247l-183 -247l-52 38z" />
152
- <glyph glyph-name="underscore" unicode="_" horiz-adv-x="446"
153
- d="M0 -65v65h446v-65h-446z" />
154
- <glyph glyph-name="grave" unicode="`" horiz-adv-x="200"
155
- d="M69 700l141 -220h-56l-164 220h79z" />
156
- <glyph glyph-name="a" unicode="a" horiz-adv-x="551"
157
- d="M473 451v-331l28 -113l-62 -15l-16 64l-56 -56h-234l-83 82v145l83 82h275v115l-45 44h-192l-87 -30l-21 61l101 34h226zM341 65l67 67v112h-248l-45 -44v-91l45 -44h181z" />
158
- <glyph glyph-name="b" unicode="b"
159
- d="M144 501l32 32h243l82 -82v-369l-82 -82h-258l-82 82v517l-29 88l61 20l33 -101v-105zM144 408v-300l43 -43h206l43 43v317l-43 43h-189z" />
160
- <glyph glyph-name="c" unicode="c" horiz-adv-x="514"
161
- d="M376 65l88 28l20 -61l-102 -32h-240l-82 83v367l82 83h258l82 -83v-110h-65v86l-43 42h-206l-43 -42v-319l43 -42h208z" />
162
- <glyph glyph-name="d" unicode="d" horiz-adv-x="560"
163
- d="M417 408l-60 60h-189l-43 -43v-317l43 -43h182l67 67v276zM417 501v199h65v-580l28 -113l-62 -15l-16 64l-56 -56h-235l-81 81v371l81 81h244z" />
164
- <glyph glyph-name="e" unicode="e" horiz-adv-x="524"
165
- d="M376 65l88 28l20 -61l-102 -32h-240l-82 82v369l82 82h258l82 -82v-147l-82 -81h-275v-114l44 -44h207zM169 468l-44 -44v-136h248l44 44v92l-44 44h-204z" />
166
- <glyph glyph-name="f" unicode="f" horiz-adv-x="373"
167
- d="M105 402h-85v65h85v151l83 82h133l102 -34l-22 -61l-87 30h-101l-43 -43v-125h169v-65h-169v-402h-65v402z" />
168
- <glyph glyph-name="g" unicode="g" horiz-adv-x="518"
169
- d="M155 125l-20 19l-16 -16v-46l23 -23h278l60 -60v-107l-60 -60h-295l-75 73l44 46l56 -54h242l23 23v51l-23 23h-279l-60 60v102l35 35l-35 35v225l82 82h225l113 28l15 -62l-63 -16l55 -55v-221l-82 -82h-243zM348 468h-186l-44 -44v-171l63 -63h190l44 44v167z" />
170
- <glyph glyph-name="h" unicode="h" horiz-adv-x="560"
171
- d="M144 408v-408h-65v599l-29 88l61 20l33 -101v-105l32 32h242l82 -82v-451h-65v425l-43 43h-188z" />
172
- <glyph glyph-name="i" unicode="i" horiz-adv-x="216"
173
- d="M79 433l-29 88l61 20l33 -101v-440h-65v433zM90 605l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42z" />
174
- <glyph glyph-name="j" unicode="j" horiz-adv-x="214"
175
- d="M91 -127l-140 -51l-21 61l116 40l31 45v465l-29 88l61 20l33 -101v-486zM88 605l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42z" />
176
- <glyph glyph-name="k" unicode="k" horiz-adv-x="493"
177
- d="M144 606v-329l301 266l43 -48l-208 -184l213 -282l-52 -39l-210 278l-87 -76v-192h-65v599l-29 88l61 20z" />
178
- <glyph glyph-name="l" unicode="l" horiz-adv-x="204"
179
- d="M144 606v-606h-65v599l-29 88l61 20z" />
180
- <glyph glyph-name="m" unicode="m" horiz-adv-x="831"
181
- d="M78 0v413l-28 113l62 15l16 -64l56 56h192l49 -49l49 49h215l82 -83v-450h-65v423l-45 45h-160l-44 -44v-424h-65v423l-45 45h-137l-67 -67v-401h-65z" />
182
- <glyph glyph-name="n" unicode="n"
183
- d="M78 0v413l-28 113l62 15l16 -64l56 56h235l82 -82v-451h-65v423l-45 45h-181l-67 -67v-401h-65z" />
184
- <glyph glyph-name="o" unicode="o" horiz-adv-x="547"
185
- d="M487 83l-82 -83h-263l-82 83v367l82 83h263l82 -83v-367zM169 65h209l44 45v313l-44 45h-209l-44 -45v-313z" />
186
- <glyph glyph-name="p" unicode="p" horiz-adv-x="560"
187
- d="M143 125l60 -60h189l43 43v317l-43 43h-182l-67 -67v-276zM143 32v-200h-65v581l-28 113l62 15l16 -64l56 56h235l81 -81v-371l-81 -81h-244z" />
188
- <glyph glyph-name="q" unicode="q" horiz-adv-x="551"
189
- d="M417 32l-32 -32h-243l-82 82v369l82 82h258l82 -82v-517l29 -88l-61 -20l-33 101v105zM417 125v300l-43 43h-206l-43 -43v-317l43 -43h189z" />
190
- <glyph glyph-name="r" unicode="r" horiz-adv-x="459"
191
- d="M335 468h-125l-67 -67v-401h-65v413l-28 113l62 15l16 -64l56 56h178l97 -95l-45 -47z" />
192
- <glyph glyph-name="s" unicode="s" horiz-adv-x="477"
193
- d="M380 170l-11 22l-306 108l-31 60v91l82 82h232l101 -34l-21 -61l-87 30h-197l-45 -45v-47l11 -23l306 -108l31 -59v-104l-82 -82h-232l-101 32l20 62l89 -29h196l45 45v60z" />
194
- <glyph glyph-name="t" unicode="t" horiz-adv-x="428"
195
- d="M115 445h-95v65h95v160h65v-160h170v-65h-170v-336l44 -44h94l90 28l20 -61l-102 -32h-129l-82 82v363z" />
196
- <glyph glyph-name="u" unicode="u"
197
- d="M483 533v-413l28 -113l-62 -15l-16 64l-56 -56h-235l-82 82v451h65v-423l45 -45h181l67 67v401h65z" />
198
- <glyph glyph-name="v" unicode="v" horiz-adv-x="500"
199
- d="M283 0h-66l-207 519l60 24l180 -453l180 453l60 -24z" />
200
- <glyph glyph-name="w" unicode="w" horiz-adv-x="728"
201
- d="M329 511h70l128 -400l128 432l63 -19l-156 -524h-68l-130 406l-130 -406h-68l-156 524l63 19l128 -432z" />
202
- <glyph glyph-name="x" unicode="x" horiz-adv-x="452"
203
- d="M226 323l163 220l53 -39l-176 -238l175 -237l-53 -39l-162 219l-162 -219l-53 39l175 237l-176 238l53 39z" />
204
- <glyph glyph-name="y" unicode="y" horiz-adv-x="493"
205
- d="M214 -168h-128v65h103l27 27l25 76h-18l-213 518l62 25l193 -471l157 471l61 -20l-210 -632z" />
206
- <glyph glyph-name="z" unicode="z" horiz-adv-x="452"
207
- d="M346 468h-324v65h410v-65l-326 -403h324v-65h-410v64z" />
208
- <glyph glyph-name="braceleft" unicode="{" horiz-adv-x="319"
209
- d="M108 169l-88 77v44l88 77v207l69 109l127 31l15 -62l-103 -25l-43 -66v-225l-78 -68l78 -68v-225l43 -66l103 -25l-15 -62l-127 31l-69 109v207z" />
210
- <glyph glyph-name="bar" unicode="|" horiz-adv-x="226"
211
- d="M146 -168h-66v868h66v-868z" />
212
- <glyph glyph-name="braceright" unicode="}" horiz-adv-x="319"
213
- d="M299 246l-88 -77v-207l-69 -109l-127 -31l-15 62l103 25l43 66v225l78 68l-78 68v225l-43 66l-103 25l15 62l127 -31l69 -109v-207l88 -77v-44z" />
214
- <glyph glyph-name="asciitilde" unicode="~" horiz-adv-x="624"
215
- d="M377 363l-103 -103h-137l-117 117l47 46l99 -98h81l103 103h137l117 -117l-47 -46l-99 98h-81z" />
216
- <glyph glyph-name="quotesinglbase" unicode="&#x201a;" horiz-adv-x="140"
217
- d="M10 -180l55 240h75l-85 -240h-45z" />
218
- <glyph glyph-name="quotedblbase" unicode="&#x201e;" horiz-adv-x="275"
219
- d="M10 -180l55 240h75l-85 -240h-45zM145 -180l55 240h75l-85 -240h-45z" />
220
- <glyph glyph-name="ellipsis" unicode="&#x2026;" horiz-adv-x="450"
221
- d="M54 -10l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42zM204 -10l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42zM354 -10l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42z" />
222
- <glyph glyph-name="dagger" unicode="&#x2020;" horiz-adv-x="410"
223
- d="M0 405v65h172v230h66v-230h172v-65h-172v-573h-66v573h-172z" />
224
- <glyph glyph-name="daggerdbl" unicode="&#x2021;" horiz-adv-x="410"
225
- d="M0 405v65h172v230h66v-230h172v-65h-172v-278h172v-65h-172v-230h-66v230h-172v65h172v278h-172z" />
226
- <glyph glyph-name="Euro" unicode="&#x20ac;" horiz-adv-x="579"
227
- d="M0 380v60h60v157l103 103h279l103 -103v-112h-65v85l-65 65h-225l-65 -65v-130h295v-60h-295v-60h285v-60h-285v-130l65 -65h236l76 76l47 -46l-95 -95h-291l-103 103v157h-70v60h70v60h-60z" />
228
- <glyph glyph-name="perthousand" unicode="&#x2030;" horiz-adv-x="1041"
229
- d="M61 28l529 685l49 -38l-528 -686zM463 290h126l82 -82v-126l-82 -82h-126l-82 82v126zM562 225h-72l-44 -44v-72l44 -44h72l44 44v72zM112 700h126l82 -82v-126l-82 -82h-126l-82 82v126zM211 635h-72l-44 -44v-72l44 -44h72l44 44v72zM803 290h126l82 -82v-126l-82 -82
230
- h-126l-82 82v126zM902 225h-72l-44 -44v-72l44 -44h72l44 44v72z" />
231
- <glyph glyph-name="guilsinglleft" unicode="&#x2039;" horiz-adv-x="349"
232
- d="M20 240v46l276 237l43 -49l-245 -211l245 -211l-43 -49z" />
233
- <glyph glyph-name="quoteleft" unicode="&#x2018;" horiz-adv-x="140"
234
- d="M130 700l-55 -240h-75l85 240h45z" />
235
- <glyph glyph-name="quoteright" unicode="&#x2019;" horiz-adv-x="140"
236
- d="M10 460l55 240h75l-85 -240h-45z" />
237
- <glyph glyph-name="quotedblleft" unicode="&#x201c;" horiz-adv-x="275"
238
- d="M265 700l-55 -240h-75l85 240h45zM130 700l-55 -240h-75l85 240h45z" />
239
- <glyph glyph-name="quotedblright" unicode="&#x201d;" horiz-adv-x="275"
240
- d="M10 460l55 240h75l-85 -240h-45zM145 460l55 240h75l-85 -240h-45z" />
241
- <glyph glyph-name="bullet" unicode="&#x2022;" horiz-adv-x="390"
242
- d="M132 495h126l82 -82v-126l-82 -82h-126l-82 82v126z" />
243
- <glyph glyph-name="endash" unicode="&#x2013;" horiz-adv-x="526"
244
- d="M20 267v66h486v-66h-486z" />
245
- <glyph glyph-name="emdash" unicode="&#x2014;" horiz-adv-x="712"
246
- d="M20 267v66h672v-66h-672z" />
247
- <glyph glyph-name="trademark" unicode="&#x2122;" horiz-adv-x="729"
248
- d="M0 700h305v-65h-120v-265h-65v265h-120v65zM535 454h-56l-79 126v-210h-65v330h69l104 -165l103 165h68v-330h-65v210z" />
249
- <glyph glyph-name="guilsinglright" unicode="&#x203a;" horiz-adv-x="349"
250
- d="M329 286v-46l-276 -237l-43 49l245 211l-245 211l43 49z" />
251
- <glyph glyph-name="currency" unicode="&#xa4;" horiz-adv-x="579"
252
- d="M404 635h-289v-250h289l66 65v120zM394 295l81 -223l69 -23l-21 -62l-102 34l-79 219h-227v-240h-65v240h-50v55h50v35h-50v55h50v315h382l103 -102v-176l-93 -92h-327v-35h279z" />
253
- <glyph glyph-name="brokenbar" unicode="&#xa6;" horiz-adv-x="226"
254
- d="M146 700v-372h-66v372h66zM146 -168h-66v372h66v-372z" />
255
- <glyph glyph-name="section" unicode="&#xa7;" horiz-adv-x="513"
256
- d="M110 237l12 -22l206 -94l75 82v93l-12 22l-207 93l-74 -81v-93zM45 223v132l78 84l-32 15l-31 58v106l82 82h230l101 -34l-21 -61l-87 30h-196l-44 -45v-65l13 -22l299 -135l31 -58v-132l-77 -84l31 -15l31 -58v-107l-82 -82h-230l-101 34l21 61l87 -30h196l44 45v65
257
- l-13 23l-299 135z" />
258
- <glyph glyph-name="copyright" unicode="&#xa9;" horiz-adv-x="859"
259
- d="M799 577v-454l-136 -123h-467l-136 123v454l136 123h467zM734 153v394l-98 88h-413l-98 -88v-394l98 -88h413zM494 210l88 28l20 -61l-102 -32h-165l-82 83v244l82 83h184l82 -83v-75h-65v49l-43 44h-132l-43 -44v-192l43 -44h133z" />
260
- <glyph glyph-name="guillemotleft" unicode="&#xab;" horiz-adv-x="597"
261
- d="M544 3l-303 260l303 260l43 -49l-245 -211l245 -211zM323 3l-303 260l303 260l43 -49l-245 -211l245 -211z" />
262
- <glyph glyph-name="logicalnot" unicode="&#xac;" horiz-adv-x="410"
263
- d="M324 212v100h-304v65h370v-165h-66z" />
264
- <glyph glyph-name="uni00AD" unicode="&#xad;" horiz-adv-x="450"
265
- d="M20 312v65h410v-65h-410z" />
266
- <glyph glyph-name="registered" unicode="&#xae;" horiz-adv-x="859"
267
- d="M552 449l-42 41h-178v-129h178c15 15 26 26 42 41v47zM617 473v-95l-83 -82h-42l123 -123l-46 -47l-170 170h-67v-151h-65v410h267zM799 577v-454l-136 -123h-467l-136 123v454l136 123h467zM734 153v394l-98 88h-413l-98 -88v-394l98 -88h413z" />
268
- <glyph glyph-name="degree" unicode="&#xb0;" horiz-adv-x="350"
269
- d="M112 700h126l82 -82v-126l-82 -82h-126l-82 82v126zM211 635h-72l-44 -44v-72l44 -44h72l44 44v72z" />
270
- <glyph glyph-name="plusminus" unicode="&#xb1;" horiz-adv-x="470"
271
- d="M202 560h65v-163h183v-65h-183v-162h-65v162h-182v65h182v163zM30 70v60h410v-60h-410z" />
272
- <glyph glyph-name="mu" unicode="&#xb5;"
273
- d="M483 533v-413l28 -113l-62 -15l-16 64l-56 -56h-235l-17 17v-185h-65v701h65v-423l45 -45h181l67 67v401h65z" />
274
- <glyph glyph-name="paragraph" unicode="&#xb6;" horiz-adv-x="521"
275
- d="M314 -168h-65v350h-116l-103 105v311l103 102h181v-868zM441 -168h-65v868h65v-868z" />
276
- <glyph glyph-name="periodcentered" unicode="&#xb7;" horiz-adv-x="300"
277
- d="M129 305l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42z" />
278
- <glyph glyph-name="guillemotright" unicode="&#xbb;" horiz-adv-x="597"
279
- d="M356 263l-303 -260l-43 49l245 211l-245 211l43 49zM577 263l-303 -260l-43 49l245 211l-245 211l43 49z" />
280
- <glyph glyph-name="afii10035" unicode="&#x421;" horiz-adv-x="579"
281
- d="M426 65l76 76l47 -46l-95 -95h-291l-103 103v494l103 103h279l103 -103v-112h-65v85l-65 65h-225l-65 -65v-440l65 -65h236z" />
282
- <glyph glyph-name="afii10084" unicode="&#x442;" horiz-adv-x="421"
283
- d="M0 533h421v-65h-178v-468h-65v468h-178v65z" />
284
- <glyph glyph-name="afii10085" unicode="&#x443;" horiz-adv-x="493"
285
- d="M214 -168h-128v65h103l27 27l25 76h-18l-213 518l62 25l193 -471l157 471l61 -20l-210 -632z" />
286
- <glyph glyph-name="space" unicode=" " horiz-adv-x="300"
287
- />
288
- <glyph glyph-name="odieresis" unicode="&#xf6;" horiz-adv-x="547"
289
- d="M487 83l-82 -83h-263l-82 83v367l82 83h263l82 -83v-367zM169 65h209l44 45v313l-44 45h-209l-44 -45v-313zM162 605l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42zM342 605l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42z" />
290
- <glyph glyph-name="udieresis" unicode="&#xfc;"
291
- d="M483 533v-413l28 -113l-62 -15l-16 64l-56 -56h-235l-82 82v451h65v-423l45 -45h181l67 67v401h65zM160 585l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42zM340 585l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42z" />
292
- <glyph glyph-name="Odieresis" unicode="&#xd6;" horiz-adv-x="635"
293
- d="M173 700h289l113 -103v-494l-113 -103h-289l-113 103v494zM510 570l-72 65h-241l-72 -65v-440l72 -65h241l72 65v440zM207 788l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42zM387 788l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42z" />
294
- <glyph glyph-name="Udieresis" unicode="&#xdc;" horiz-adv-x="625"
295
- d="M173 0l-103 102v598h65v-570l66 -65h223l66 65v570h65v-598l-103 -102h-279zM202 768l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42zM382 768l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42z" />
296
- <glyph glyph-name="Adieresis" unicode="&#xc4;" horiz-adv-x="578"
297
- d="M155 212l-72 -222l-63 20l223 690h92l223 -690l-63 -20l-72 222h-268zM176 277h226l-113 350zM178 768l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42zM358 768l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42z" />
298
- <glyph glyph-name="adieresis" unicode="&#xe4;" horiz-adv-x="551"
299
- d="M473 451v-331l28 -113l-62 -15l-16 64l-56 -56h-234l-83 82v145l83 82h275v115l-45 44h-192l-87 -30l-21 61l101 34h226zM341 65l67 67v112h-248l-45 -44v-91l45 -44h181zM168 605l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42zM348 605l-24 24v42l24 24h42l24 -24v-42
300
- l-24 -24h-42z" />
301
- <glyph glyph-name="Edieresis" unicode="&#xcb;" horiz-adv-x="533"
302
- d="M80 0v700h433v-65h-368v-232h326v-65h-326v-273h368v-65h-433zM190 788l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42zM370 788l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42z" />
303
- <glyph glyph-name="edieresis" unicode="&#xeb;" horiz-adv-x="524"
304
- d="M376 65l88 28l20 -61l-102 -32h-240l-82 82v369l82 82h258l82 -82v-147l-82 -81h-275v-114l44 -44h207zM169 468l-44 -44v-136h248l44 44v92l-44 44h-204zM160 605l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42zM340 605l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42z" />
305
- <glyph glyph-name="Aacute" unicode="&#xc1;" horiz-adv-x="578"
306
- d="M155 212l-72 -222l-63 20l223 690h92l223 -690l-63 -20l-72 222h-268zM176 277h226l-113 350zM243 745l128 200h79l-151 -200h-56z" />
307
- <glyph glyph-name="Eacute" unicode="&#xc9;" horiz-adv-x="533"
308
- d="M80 0v700h433v-65h-368v-232h326v-65h-326v-273h368v-65h-433zM266 755l128 200h79l-151 -200h-56z" />
309
- <glyph glyph-name="Iacute" unicode="&#xcd;" horiz-adv-x="357"
310
- d="M327 0h-297v65h116v570h-116v65h297v-65h-116v-570h116v-65zM142 755l128 200h79l-151 -200h-56z" />
311
- <glyph glyph-name="Oacute" unicode="&#xd3;" horiz-adv-x="635"
312
- d="M173 700h289l113 -103v-494l-113 -103h-289l-113 103v494zM510 570l-72 65h-241l-72 -65v-440l72 -65h241l72 65v440zM281 755l128 200h79l-151 -200h-56z" />
313
- <glyph glyph-name="Uacute" unicode="&#xda;" horiz-adv-x="625"
314
- d="M173 0l-103 102v598h65v-570l66 -65h223l66 65v570h65v-598l-103 -102h-279zM275 735l128 200h79l-151 -200h-56z" />
315
- <glyph glyph-name="Yacute" unicode="&#xdd;" horiz-adv-x="560"
316
- d="M312 0h-65v264l-237 412l58 34l212 -368l212 368l58 -34l-238 -413v-263zM244 735l128 200h79l-151 -200h-56z" />
317
- <glyph glyph-name="aacute" unicode="&#xe1;" horiz-adv-x="551"
318
- d="M473 451v-331l28 -113l-62 -15l-16 64l-56 -56h-234l-83 82v145l83 82h275v115l-45 44h-192l-87 -30l-21 61l101 34h226zM341 65l67 67v112h-248l-45 -44v-91l45 -44h181zM237 578l128 200h79l-151 -200h-56z" />
319
- <glyph glyph-name="eacute" unicode="&#xe9;" horiz-adv-x="524"
320
- d="M376 65l88 28l20 -61l-102 -32h-240l-82 82v369l82 82h258l82 -82v-147l-82 -81h-275v-114l44 -44h207zM169 468l-44 -44v-136h248l44 44v92l-44 44h-204zM238 578l128 200h79l-151 -200h-56z" />
321
- <glyph glyph-name="iacute" unicode="&#xed;" horiz-adv-x="216"
322
- d="M79 433l-29 88l61 20l33 -101v-440h-65v433zM50 578l128 200h79l-151 -200h-56z" />
323
- <glyph glyph-name="oacute" unicode="&#xf3;" horiz-adv-x="547"
324
- d="M487 83l-82 -83h-263l-82 83v367l82 83h263l82 -83v-367zM169 65h209l44 45v313l-44 45h-209l-44 -45v-313zM246 578l128 200h79l-151 -200h-56z" />
325
- <glyph glyph-name="uacute" unicode="&#xfa;"
326
- d="M483 533v-413l28 -113l-62 -15l-16 64l-56 -56h-235l-82 82v451h65v-423l45 -45h181l67 67v401h65zM243 558l128 200h79l-151 -200h-56z" />
327
- <glyph glyph-name="yacute" unicode="&#xfd;" horiz-adv-x="493"
328
- d="M214 -168h-128v65h103l27 27l25 76h-18l-213 518l62 25l193 -471l157 471l61 -20l-210 -632zM214 558l128 200h79l-151 -200h-56z" />
329
- <glyph glyph-name="Ohungarumlaut" unicode="&#x150;" horiz-adv-x="635"
330
- d="M173 700h289l113 -103v-494l-113 -103h-289l-113 103v494zM510 570l-72 65h-241l-72 -65v-440l72 -65h241l72 65v440zM208 755l128 200h79l-151 -200h-56zM354 755l128 200h79l-151 -200h-56z" />
331
- <glyph glyph-name="Scaron" unicode="&#x160;" horiz-adv-x="544"
332
- d="M392 635h-223l-64 -64v-72l12 -25l356 -173l31 -58v-141l-102 -102h-259l-101 34l21 61l87 -30h225l64 64v95l-14 26l-358 174l-27 56v118l102 102h262l98 -33l-20 -60zM246 745l-120 135h56l98 -93l99 93h56l-120 -135h-69z" />
333
- <glyph glyph-name="Zcaron" unicode="&#x17d;" horiz-adv-x="515"
334
- d="M106 65h384v-65h-470v62l389 573h-384v65h470v-64zM231 745l-120 135h56l98 -93l99 93h56l-120 -135h-69z" />
335
- <glyph glyph-name="scaron" unicode="&#x161;" horiz-adv-x="477"
336
- d="M380 170l-11 22l-306 108l-31 60v91l82 82h232l101 -34l-21 -61l-87 30h-197l-45 -45v-47l11 -23l306 -108l31 -59v-104l-82 -82h-232l-101 32l20 62l89 -29h196l45 45v60zM206 578l-120 135h56l98 -93l99 93h56l-120 -135h-69z" />
337
- <glyph glyph-name="zcaron" unicode="&#x17e;" horiz-adv-x="452"
338
- d="M346 468h-324v65h410v-65l-326 -403h324v-65h-410v64zM196 578l-120 135h56l98 -93l99 93h56l-120 -135h-69z" />
339
- <glyph glyph-name="ocircumflex" unicode="&#xf4;" horiz-adv-x="547"
340
- d="M487 83l-82 -83h-263l-82 83v367l82 83h263l82 -83v-367zM169 65h209l44 45v313l-44 45h-209l-44 -45v-313zM124 578l120 135h69l120 -135h-56l-99 93l-98 -93h-56z" />
341
- <glyph glyph-name="icircumflex" unicode="&#xee;" horiz-adv-x="216"
342
- d="M79 433l-29 88l61 20l33 -101v-440h-65v433zM-43 578l120 135h69l120 -135h-56l-99 93l-98 -93h-56z" />
343
- <glyph glyph-name="acircumflex" unicode="&#xe2;" horiz-adv-x="551"
344
- d="M473 451v-331l28 -113l-62 -15l-16 64l-56 -56h-234l-83 82v145l83 82h275v115l-45 44h-192l-87 -30l-21 61l101 34h226zM341 65l67 67v112h-248l-45 -44v-91l45 -44h181zM124 578l120 135h69l120 -135h-56l-99 93l-98 -93h-56z" />
345
- <glyph glyph-name="Ocircumflex" unicode="&#xd4;" horiz-adv-x="635"
346
- d="M462 700l113 -103v-494l-113 -103h-289l-113 103v494l113 103h289zM438 635h-241l-72 -65v-440l72 -65h241l72 65v440zM167 745l120 135v-75l-64 -60h-56zM420 745l-64 60v75l120 -135h-56z" />
347
- <glyph glyph-name="Icircumflex" unicode="&#xce;" horiz-adv-x="357"
348
- d="M327 0h-297v65h116v570h-116v65h297v-65h-116v-570h116v-65zM24 745l120 135v-75l-64 -60h-56zM277 745l-64 60v75l120 -135h-56z" />
349
- <glyph glyph-name="Acircumflex" unicode="&#xc2;" horiz-adv-x="578"
350
- d="M155 212l-72 -222l-63 20l223 690h92l223 -690l-63 -20l-72 222h-268zM176 277h226l-113 350zM134 745l120 135v-75l-64 -60h-56zM387 745l-64 60v75l120 -135h-56z" />
351
- <glyph glyph-name="Agrave" unicode="&#xc0;" horiz-adv-x="578"
352
- d="M155 212l-72 -222l-63 20l223 690h92l223 -690l-63 -20l-72 222h-268zM176 277h226l-113 350zM206 945l128 -200h-56l-151 200h79z" />
353
- <glyph glyph-name="Egrave" unicode="&#xc8;" horiz-adv-x="533"
354
- d="M80 0v700h433v-65h-368v-232h326v-65h-326v-273h368v-65h-433zM230 955l128 -200h-56l-151 200h79z" />
355
- <glyph glyph-name="Ecircumflex" unicode="&#xca;" horiz-adv-x="533"
356
- d="M80 0v700h433v-65h-368v-232h326v-65h-326v-273h368v-65h-433zM144 745l120 135v-75l-64 -60h-56zM397 745l-64 60v75l120 -135h-56z" />
357
- <glyph glyph-name="Igrave" unicode="&#xcc;" horiz-adv-x="357"
358
- d="M327 0h-297v65h116v570h-116v65h297v-65h-116v-570h116v-65zM96 955l128 -200h-56l-151 200h79z" />
359
- <glyph glyph-name="Idieresis" unicode="&#xcf;" horiz-adv-x="357"
360
- d="M327 0h-297v65h116v570h-116v65h297v-65h-116v-570h116v-65zM68 775l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42zM248 775l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42z" />
361
- <glyph glyph-name="idieresis" unicode="&#xef;" horiz-adv-x="216"
362
- d="M8 605l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42zM172 605l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42zM79 433l-29 88l61 20l33 -101v-440h-65v433z" />
363
- <glyph glyph-name="Ograve" unicode="&#xd2;" horiz-adv-x="635"
364
- d="M173 700h289l113 -103v-494l-113 -103h-289l-113 103v494zM510 570l-72 65h-241l-72 -65v-440l72 -65h241l72 65v440zM244 955l128 -200h-56l-151 200h79z" />
365
- <glyph glyph-name="Ugrave" unicode="&#xd9;" horiz-adv-x="625"
366
- d="M173 0l-103 102v598h65v-570l66 -65h223l66 65v570h65v-598l-103 -102h-279zM258 935l128 -200h-56l-151 200h79z" />
367
- <glyph glyph-name="Ucircumflex" unicode="&#xdb;" horiz-adv-x="625"
368
- d="M173 0l-103 102v598h65v-570l66 -65h223l66 65v570h65v-598l-103 -102h-279zM158 745l120 135v-75l-64 -60h-56zM411 745l-64 60v75l120 -135h-56z" />
369
- <glyph glyph-name="agrave" unicode="&#xe0;" horiz-adv-x="551"
370
- d="M473 451v-331l28 -113l-62 -15l-16 64l-56 -56h-234l-83 82v145l83 82h275v115l-45 44h-192l-87 -30l-21 61l101 34h226zM341 65l67 67v112h-248l-45 -44v-91l45 -44h181zM197 778l128 -200h-56l-151 200h79z" />
371
- <glyph glyph-name="egrave" unicode="&#xe8;" horiz-adv-x="524"
372
- d="M376 65l88 28l20 -61l-102 -32h-240l-82 82v369l82 82h258l82 -82v-147l-82 -81h-275v-114l44 -44h207zM169 468l-44 -44v-136h248l44 44v92l-44 44h-204zM182 778l128 -200h-56l-151 200h79z" />
373
- <glyph glyph-name="ecircumflex" unicode="&#xea;" horiz-adv-x="524"
374
- d="M376 65l88 28l20 -61l-102 -32h-240l-82 82v369l82 82h258l82 -82v-147l-82 -81h-275v-114l44 -44h207zM169 468l-44 -44v-136h248l44 44v92l-44 44h-204zM116 578l120 135h69l120 -135h-56l-99 93l-98 -93h-56z" />
375
- <glyph glyph-name="igrave" unicode="&#xec;" horiz-adv-x="216"
376
- d="M79 433l-29 88l61 20l33 -101v-440h-65v433zM23 778l128 -200h-56l-151 200h79z" />
377
- <glyph glyph-name="ograve" unicode="&#xf2;" horiz-adv-x="547"
378
- d="M487 83l-82 -83h-263l-82 83v367l82 83h263l82 -83v-367zM169 65h209l44 45v313l-44 45h-209l-44 -45v-313zM180 778l128 -200h-56l-151 200h79z" />
379
- <glyph glyph-name="ugrave" unicode="&#xf9;"
380
- d="M483 533v-413l28 -113l-62 -15l-16 64l-56 -56h-235l-82 82v451h65v-423l45 -45h181l67 67v401h65zM197 758l128 -200h-56l-151 200h79z" />
381
- <glyph glyph-name="ucircumflex" unicode="&#xfb;"
382
- d="M483 533v-413l28 -113l-62 -15l-16 64l-56 -56h-235l-82 82v451h65v-423l45 -45h181l67 67v401h65zM117 578l120 135h69l120 -135h-56l-99 93l-98 -93h-56z" />
383
- <glyph glyph-name="ydieresis" unicode="&#xff;" horiz-adv-x="493"
384
- d="M214 -168h-128v65h103l27 27l25 76h-18l-213 518l62 25l193 -471l157 471l61 -20l-210 -632zM138 585l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42zM318 585l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42z" />
385
- <glyph glyph-name="Ydieresis" unicode="&#x178;" horiz-adv-x="560"
386
- d="M312 0h-65v264l-237 412l58 34l212 -368l212 368l58 -34l-238 -413v-263zM169 768l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42zM349 768l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42z" />
387
- <glyph glyph-name="Ccedilla" unicode="&#xc7;" horiz-adv-x="579"
388
- d="M260 -89v89h-97l-103 103v494l103 103h279l103 -103v-112h-65v85l-65 65h-225l-65 -65v-440l65 -65h236l76 76l47 -46l-95 -95h-129v-24h35l62 -62v-80l-62 -62h-115v65h88l24 24v26l-24 24h-73z" />
389
- <glyph glyph-name="ccedilla" unicode="&#xe7;" horiz-adv-x="514"
390
- d="M235 -89v89h-93l-82 83v367l82 83h258l82 -83v-110h-65v86l-43 42h-206l-43 -42v-319l43 -42h208l88 28l20 -61l-102 -32h-82v-24h35l62 -62v-80l-62 -62h-115v65h88l24 24v26l-24 24h-73z" />
391
- <glyph glyph-name="divide" unicode="&#xf7;" horiz-adv-x="470"
392
- d="M20 377h430v-65h-430v65zM213 160l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42zM213 440l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42z" />
393
- <glyph glyph-name="multiply" unicode="&#xd7;" horiz-adv-x="389"
394
- d="M19 474l46 46l130 -130l129 130l46 -46l-129 -130l128 -128l-46 -46l-128 128l-129 -128l-46 46l129 128z" />
395
- <glyph glyph-name="Atilde" unicode="&#xc3;" horiz-adv-x="578"
396
- d="M155 212l-72 -222l-63 20l223 690h92l223 -690l-63 -20l-72 222h-268zM176 277h226l-113 350zM335 815l-76 -70h-61l-84 84l47 46l66 -65h11l76 70h61l84 -84l-47 -46l-66 65h-11z" />
397
- <glyph glyph-name="Ntilde" unicode="&#xd1;" horiz-adv-x="646"
398
- d="M493 0l-348 587v-587h-65v700h73l348 -587v587h65v-700h-73zM373 815l-76 -70h-61l-84 84l47 46l66 -65h11l76 70h61l84 -84l-47 -46l-66 65h-11z" />
399
- <glyph glyph-name="Otilde" unicode="&#xd5;" horiz-adv-x="635"
400
- d="M173 700h289l113 -103v-494l-113 -103h-289l-113 103v494zM510 570l-72 65h-241l-72 -65v-440l72 -65h241l72 65v440zM373 815l-76 -70h-61l-84 84l47 46l66 -65h11l76 70h61l84 -84l-47 -46l-66 65h-11z" />
401
- <glyph glyph-name="atilde" unicode="&#xe3;" horiz-adv-x="551"
402
- d="M473 451v-331l28 -113l-62 -15l-16 64l-56 -56h-234l-83 82v145l83 82h275v115l-45 44h-192l-87 -30l-21 61l101 34h226zM341 65l67 67v112h-248l-45 -44v-91l45 -44h181zM316 648l-76 -70h-61l-84 84l47 46l66 -65h11l76 70h61l84 -84l-47 -46l-66 65h-11z" />
403
- <glyph glyph-name="ntilde" unicode="&#xf1;"
404
- d="M78 0v413l-28 113l62 15l16 -64l56 56h235l82 -82v-451h-65v423l-45 45h-181l-67 -67v-401h-65zM344 648l-76 -70h-61l-84 84l47 46l66 -65h11l76 70h61l84 -84l-47 -46l-66 65h-11z" />
405
- <glyph glyph-name="otilde" unicode="&#xf5;" horiz-adv-x="547"
406
- d="M487 83l-82 -83h-263l-82 83v367l82 83h263l82 -83v-367zM169 65h209l44 45v313l-44 45h-209l-44 -45v-313zM333 648l-76 -70h-61l-84 84l47 46l66 -65h11l76 70h61l84 -84l-47 -46l-66 65h-11z" />
407
- <glyph glyph-name="ncommaaccent" unicode="&#x146;"
408
- d="M78 0v413l-28 113l62 15l16 -64l56 56h235l82 -82v-451h-65v423l-45 45h-181l-67 -67v-401h-65zM209 -275l55 240h75l-85 -240h-45z" />
409
- <glyph glyph-name="aring" unicode="&#xe5;" horiz-adv-x="551"
410
- d="M473 451v-331l28 -113l-62 -15l-16 64l-56 -56h-234l-83 82v145l83 82h275v115l-45 44h-192l-87 -30l-21 61l101 34h226zM341 65l67 67v112h-248l-45 -44v-91l45 -44h181zM231 783h81l62 -62v-81l-62 -62h-81l-62 62v81zM290 723h-37l-24 -24v-37l24 -24h37l24 24v37z
411
- " />
412
- <glyph glyph-name="Aring" unicode="&#xc5;" horiz-adv-x="578"
413
- d="M248 845h81l62 -62v-81l-43 -43l210 -649l-63 -20l-72 222h-268l-72 -222l-63 20l209 648l-43 44v81zM176 277h226l-113 350zM307 785h-37l-24 -24v-37l24 -24h37l24 24v37z" />
414
- <glyph glyph-name="ae" unicode="&#xe6;" horiz-adv-x="832"
415
- d="M684 65l88 28l20 -61l-102 -32h-220l-62 61l-61 -61h-214l-83 82v135l83 82h255v125l-45 44h-172l-87 -30l-21 61l101 34h206l50 -50l50 50h238l82 -82v-136l-82 -81h-255v-125l44 -44h187zM497 468l-44 -44v-125h228l44 44v81l-44 44h-184zM321 65l67 67v102h-228
416
- l-45 -44v-81l45 -44h161z" />
417
- <glyph glyph-name="AE" unicode="&#xc6;" horiz-adv-x="858"
418
- d="M435 0v212h-252l-114 -222l-59 30l348 680h480v-65h-338v-232h296v-65h-296v-273h338v-65h-403zM399 635l-183 -358h219v358h-36z" />
419
- <glyph glyph-name="oe" unicode="&#x153;" horiz-adv-x="846"
420
- d="M698 65l88 28l20 -61l-102 -32h-220l-50 50l-49 -50h-243l-82 83v367l82 83h243l49 -50l50 50h238l82 -82v-147l-82 -81h-255v-114l44 -44h187zM169 65h189l44 45v313l-44 45h-189l-44 -45v-313zM511 468l-44 -44v-136h228l44 44v92l-44 44h-184z" />
421
- <glyph glyph-name="OE" unicode="&#x152;" horiz-adv-x="913"
422
- d="M173 0l-113 103v494l113 103h720v-65h-368v-232h326v-65h-326v-273h368v-65h-720zM125 130l72 -65h263v570h-263l-72 -65v-440z" />
423
- <glyph glyph-name="germandbls" unicode="&#xdf;" horiz-adv-x="605"
424
- d="M145 591v-591h-65v617l83 83h278l83 -83v-101l-130 -114v-47l11 -23l119 -42l31 -59v-149l-82 -82h-162l-101 32l20 62l89 -29h126l45 45v105l-11 22l-119 42l-31 60v91l130 114v47l-44 44h-226z" />
425
- <glyph glyph-name="Oslash" unicode="&#xd8;" horiz-adv-x="635"
426
- d="M65 20l32 49l-37 34v494l113 103h289l30 -28l26 40l53 -33l-32 -49l36 -33v-494l-113 -103h-289l-29 26l-26 -40zM125 570v-440l7 -7l324 495l-18 17h-241zM510 570l-7 6l-324 -496l18 -15h241l72 65v440z" />
427
- <glyph glyph-name="oslash" unicode="&#xf8;" horiz-adv-x="547"
428
- d="M50 28l28 36l-18 19v367l82 83h263l19 -20l23 30l50 -38l-29 -37l19 -18v-367l-82 -83h-263l-20 19l-22 -29zM169 65h209l44 45v298l-260 -337zM125 423v-298l259 336l-6 7h-209z" />
429
- <glyph glyph-name="cent" unicode="&#xa2;" horiz-adv-x="514"
430
- d="M310 533h90l82 -83v-110h-65v86l-43 42h-206l-43 -42v-319l43 -42h208l88 28l20 -61l-102 -32h-73v-70h-65v70h-102l-82 83v367l82 83h103v70h65v-70z" />
431
- <glyph glyph-name="yen" unicode="&#xa5;" horiz-adv-x="560"
432
- d="M85 263v65h125l-200 348l58 34l212 -368l212 368l58 -34l-201 -348h125v-65h-162v-48h162v-65h-162v-150h-65v150h-162v65h162v48h-162z" />
433
- <glyph glyph-name="exclam" unicode="!" horiz-adv-x="250"
434
- d="M91 125l-1 575h70l-1 -575h-68zM104 -10l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42z" />
435
- </font>
436
- </defs></svg>
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
3
+ <svg>
4
+ <metadata>
5
+ Created by FontForge 20110222 at Mon Mar 7 13:18:46 2011
6
+ By www-data
7
+ Copyright (c) 2009 by Oleg Zhuravlev, Gladkikh Ivan. All rights reserved.
8
+ </metadata>
9
+ <defs>
10
+ <font id="Bender" horiz-adv-x="561" >
11
+ <font-face
12
+ font-family="Bender"
13
+ font-weight="400"
14
+ font-stretch="normal"
15
+ units-per-em="1000"
16
+ panose-1="2 0 5 3 2 0 0 2 0 4"
17
+ ascent="800"
18
+ descent="-200"
19
+ x-height="533"
20
+ cap-height="700"
21
+ bbox="-70 -275 1011 955"
22
+ underline-thickness="50"
23
+ underline-position="-50"
24
+ stemh="65"
25
+ stemv="65"
26
+ unicode-range="U+0020-2122"
27
+ />
28
+ <missing-glyph />
29
+ <glyph glyph-name="quotedbl" unicode="&#x22;" horiz-adv-x="275"
30
+ d="M41 447l-11 253h70l-11 -253h-48zM186 447l-11 253h70l-11 -253h-48z" />
31
+ <glyph glyph-name="numbersign" unicode="#" horiz-adv-x="734"
32
+ d="M127 0h-67l76 192h-136v65h160l75 186h-133v65h157l77 192h67l-76 -192h203l77 192h67l-76 -192h136v-65h-161l-74 -186h133v-65h-158l-76 -192h-67l76 192h-204zM302 443l-73 -186h202l75 186h-204z" />
33
+ <glyph glyph-name="dollar" unicode="$" horiz-adv-x="544"
34
+ d="M150 65h225l64 64v95l-14 26l-358 174l-27 56v118l102 102h98v70h65v-70h99l98 -33l-20 -60l-90 28h-223l-64 -64v-72l12 -25l356 -173l31 -58v-141l-102 -102h-98v-70h-65v70h-96l-101 34l21 61z" />
35
+ <glyph glyph-name="percent" unicode="%" horiz-adv-x="701"
36
+ d="M61 28l529 685l49 -38l-528 -686zM463 290h126l82 -82v-126l-82 -82h-126l-82 82v126zM562 225h-72l-44 -44v-72l44 -44h72l44 44v72zM112 700h126l82 -82v-126l-82 -82h-126l-82 82v126zM211 635h-72l-44 -44v-72l44 -44h72l44 44v72z" />
37
+ <glyph glyph-name="ampersand" unicode="&#x26;" horiz-adv-x="605"
38
+ d="M547 -12l-96 107l-95 -95h-223l-103 102v138l154 152l-86 96v110l103 102h204l103 -103v-95h-65v68l-65 65h-150l-65 -65v-57l290 -323l91 90l46 -46l-93 -93l98 -110zM160 65h170l78 78l-181 201l-132 -131v-83z" />
39
+ <glyph glyph-name="quotesingle" unicode="'" horiz-adv-x="130"
40
+ d="M41 447l-11 253h70l-11 -253h-48z" />
41
+ <glyph glyph-name="parenleft" unicode="(" horiz-adv-x="250"
42
+ d="M105 544v-552l47 -74l98 -36l-22 -60l-117 42l-71 114v580l71 114l117 42l22 -60l-98 -36z" />
43
+ <glyph glyph-name="parenright" unicode=")" horiz-adv-x="250"
44
+ d="M145 -8v552l-47 74l-98 36l22 60l117 -42l71 -114v-580l-71 -114l-117 -42l-22 60l98 36z" />
45
+ <glyph glyph-name="asterisk" unicode="*" horiz-adv-x="377"
46
+ d="M156 592v108h65v-108l92 54l34 -57l-93 -55l93 -55l-34 -57l-92 54v-108h-65v108l-92 -54l-34 57l93 55l-93 55l34 57z" />
47
+ <glyph glyph-name="plus" unicode="+" horiz-adv-x="470"
48
+ d="M202 560h65v-183h183v-65h-183v-182h-65v182h-182v65h182v183z" />
49
+ <glyph glyph-name="comma" unicode="," horiz-adv-x="150"
50
+ d="M0 -180l55 240h75l-85 -240h-45z" />
51
+ <glyph glyph-name="hyphen" unicode="-" horiz-adv-x="450"
52
+ d="M20 312v65h410v-65h-410z" />
53
+ <glyph glyph-name="period" unicode="." horiz-adv-x="150"
54
+ d="M54 -10l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42z" />
55
+ <glyph glyph-name="slash" unicode="/" horiz-adv-x="506"
56
+ d="M0 20l453 692l53 -33l-453 -693z" />
57
+ <glyph glyph-name="zero" unicode="0" horiz-adv-x="604"
58
+ d="M125 125l305 497l-14 13h-226l-65 -64v-446zM479 575l-305 -497l14 -13h226l65 64v446zM442 700l102 -102v-496l-103 -102h-279l-102 102v496l103 102h279z" />
59
+ <glyph glyph-name="one" unicode="1" horiz-adv-x="360"
60
+ d="M340 0h-297v65h116v544l-93 -93l-46 46l139 139h65v-636h116v-65z" />
61
+ <glyph glyph-name="two" unicode="2" horiz-adv-x="546"
62
+ d="M128 635l-88 -28l-20 61l103 32h281l102 -103v-181l-93 -93l-327 -214v-44h420v-65h-485v144l347 227l73 74v126l-63 64h-250z" />
63
+ <glyph glyph-name="three" unicode="3" horiz-adv-x="535"
64
+ d="M111 0l-101 34l21 61l87 -30h248l64 63v154l-63 63h-216v69l250 221h-380v65h474v-66l-254 -224h152l102 -102v-206l-103 -102h-281z" />
65
+ <glyph glyph-name="four" unicode="4" horiz-adv-x="556"
66
+ d="M473 236h73v-65h-73v-171h-65v171h-398v88l398 443h65v-466zM408 236v366l-329 -366h329z" />
67
+ <glyph glyph-name="five" unicode="5" horiz-adv-x="559"
68
+ d="M59 700h460v-65h-395v-217h293l102 -102v-214l-103 -102h-265l-101 34l21 61l87 -30h230l66 65v158l-65 65h-330v347z" />
69
+ <glyph glyph-name="six" unicode="6" horiz-adv-x="585"
70
+ d="M60 103v494l102 103h282l98 -33l-22 -61l-89 29h-243l-63 -64v-157l33 11h284l103 -105v-218l-103 -102h-279zM415 360h-257l-33 -11v-219l65 -65h225l65 65v163z" />
71
+ <glyph glyph-name="seven" unicode="7" horiz-adv-x="505"
72
+ d="M249 175v-175h-65v191l236 401v43h-410v65h475v-125z" />
73
+ <glyph glyph-name="eight" unicode="8" horiz-adv-x="603"
74
+ d="M478 268l-64 64h-224l-65 -65v-138l65 -64h222l66 65v138zM410 635h-217l-63 -63v-115l61 -60h221l61 60v112zM440 0h-277l-103 102v193l70 70l-65 64v169l102 102h273l98 -102v-169l-65 -64l70 -70v-193z" />
75
+ <glyph glyph-name="nine" unicode="9" horiz-adv-x="585"
76
+ d="M525 597v-494l-102 -103h-282l-98 33l22 61l89 -29h243l63 64v157l-33 -11h-284l-103 105v218l103 102h279zM170 340h257l33 11v219l-65 65h-225l-65 -65v-163z" />
77
+ <glyph glyph-name="colon" unicode=":" horiz-adv-x="150"
78
+ d="M54 -10l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42zM54 378l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42z" />
79
+ <glyph glyph-name="semicolon" unicode=";" horiz-adv-x="156"
80
+ d="M60 378l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42zM0 -180l55 240h75l-85 -240h-45z" />
81
+ <glyph glyph-name="less" unicode="&#x3c;" horiz-adv-x="349"
82
+ d="M20 240v46l276 237l43 -49l-245 -211l245 -211l-43 -49z" />
83
+ <glyph glyph-name="equal" unicode="=" horiz-adv-x="450"
84
+ d="M20 403v65h410v-65h-410zM20 222v65h410v-65h-410z" />
85
+ <glyph glyph-name="greater" unicode="&#x3e;" horiz-adv-x="349"
86
+ d="M329 286v-46l-276 -237l-43 49l245 211l-245 211l43 49z" />
87
+ <glyph glyph-name="question" unicode="?" horiz-adv-x="544"
88
+ d="M145 635l-98 -98l-47 46l118 117h284l102 -102v-184l-215 -180v-109h-65v144l215 180v122l-64 64h-230zM235 -12l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42z" />
89
+ <glyph glyph-name="at" unicode="@" horiz-adv-x="879"
90
+ d="M809 578v-429l-83 -82h-147l-16 50l-54 -54h-176l-83 82v110l83 82h216v72l-45 44h-134l-87 -30l-21 61l101 34h168l83 -82v-264l13 -40h72l45 44v374l-95 85h-419l-95 -85v-514l95 -85h446v-65h-470l-136 122v570l136 122h467zM481 128l68 66v78h-189l-45 -44v-56
91
+ l45 -44h121z" />
92
+ <glyph glyph-name="A" unicode="A" horiz-adv-x="578"
93
+ d="M155 212l-72 -222l-63 20l223 690h92l223 -690l-63 -20l-72 222h-268zM176 277h226l-113 350z" />
94
+ <glyph glyph-name="B" unicode="B" horiz-adv-x="615"
95
+ d="M495 370l70 -71v-196l-103 -103h-382v700h381l83 -83v-198zM500 273l-63 64h-292v-272h292l63 63v145zM145 635v-233h290l44 44v145l-44 44h-290z" />
96
+ <glyph glyph-name="C" unicode="C" horiz-adv-x="579"
97
+ d="M426 65l76 76l47 -46l-95 -95h-291l-103 103v494l103 103h279l103 -103v-112h-65v85l-65 65h-225l-65 -65v-440l65 -65h236z" />
98
+ <glyph glyph-name="D" unicode="D" horiz-adv-x="626"
99
+ d="M80 700h383l103 -104v-492l-103 -104h-383v700zM501 569l-65 66h-291v-570h291l65 66v438z" />
100
+ <glyph glyph-name="E" unicode="E" horiz-adv-x="533"
101
+ d="M80 0v700h433v-65h-368v-232h326v-65h-326v-273h368v-65h-433z" />
102
+ <glyph glyph-name="F" unicode="F" horiz-adv-x="523"
103
+ d="M80 0v700h433v-65h-368v-240h326v-65h-326v-330h-65z" />
104
+ <glyph glyph-name="G" unicode="G" horiz-adv-x="605"
105
+ d="M545 598v-113h-65v86l-63 64h-229l-63 -64v-442l63 -64h229l63 64v167h-168v65h233v-259l-102 -102h-281l-102 102v496l102 102h281z" />
106
+ <glyph glyph-name="H" unicode="H" horiz-adv-x="645"
107
+ d="M500 396v304h65v-700h-65v331h-355v-331h-65v700h65v-304h355z" />
108
+ <glyph glyph-name="I" unicode="I" horiz-adv-x="357"
109
+ d="M327 0h-297v65h116v570h-116v65h297v-65h-116v-570h116v-65z" />
110
+ <glyph glyph-name="J" unicode="J" horiz-adv-x="527"
111
+ d="M117 0l-117 117l47 46l99 -98h181l65 65v505h-168v65h233v-597l-103 -103h-237z" />
112
+ <glyph glyph-name="K" unicode="K" horiz-adv-x="563"
113
+ d="M314 409l249 -384l-54 -35l-241 371l-123 -129v-232h-65v700h65v-374l365 384l47 -45z" />
114
+ <glyph glyph-name="L" unicode="L" horiz-adv-x="513"
115
+ d="M80 0v700h65v-635h368v-65h-433z" />
116
+ <glyph glyph-name="M" unicode="M" horiz-adv-x="832"
117
+ d="M444 166h-56l-243 415v-581h-65v700h72l264 -451l264 451h72v-700h-65v581z" />
118
+ <glyph glyph-name="N" unicode="N" horiz-adv-x="646"
119
+ d="M493 0l-348 587v-587h-65v700h73l348 -587v587h65v-700h-73z" />
120
+ <glyph glyph-name="O" unicode="O" horiz-adv-x="635"
121
+ d="M173 700h289l113 -103v-494l-113 -103h-289l-113 103v494zM510 570l-72 65h-241l-72 -65v-440l72 -65h241l72 65v440z" />
122
+ <glyph glyph-name="P" unicode="P" horiz-adv-x="605"
123
+ d="M145 267v-267h-65v700h382l103 -102v-229l-103 -102h-317zM434 635h-289v-303h289l66 65v173z" />
124
+ <glyph glyph-name="Q" unicode="Q" horiz-adv-x="635"
125
+ d="M285 0h-112l-113 103v494l113 103h289l113 -103v-494l-113 -103h-112v-138h-65v138zM350 65h88l72 65v440l-72 65h-241l-72 -65v-440l72 -65h88v60h65v-60z" />
126
+ <glyph glyph-name="R" unicode="R" horiz-adv-x="605"
127
+ d="M145 274v-274h-65v700h382l103 -102v-222l-103 -102h-141l242 -242l-46 -47l-288 289h-84zM434 635h-289v-296h289l66 65v166z" />
128
+ <glyph glyph-name="S" unicode="S" horiz-adv-x="544"
129
+ d="M392 635h-223l-64 -64v-72l12 -25l356 -173l31 -58v-141l-102 -102h-259l-101 34l21 61l87 -30h225l64 64v95l-14 26l-358 174l-27 56v118l102 102h262l98 -33l-20 -60z" />
130
+ <glyph glyph-name="T" unicode="T" horiz-adv-x="505"
131
+ d="M285 635v-635h-65v635h-220v65h505v-65h-220z" />
132
+ <glyph glyph-name="U" unicode="U" horiz-adv-x="625"
133
+ d="M173 0l-103 102v598h65v-570l66 -65h223l66 65v570h65v-598l-103 -102h-279z" />
134
+ <glyph glyph-name="V" unicode="V" horiz-adv-x="586"
135
+ d="M337 0h-88l-229 689l63 21l210 -631l210 631l63 -21z" />
136
+ <glyph glyph-name="W" unicode="W" horiz-adv-x="908"
137
+ d="M418 679h72l163 -566l171 597l64 -18l-198 -692h-74l-162 564l-162 -564h-74l-198 692l64 18l171 -597z" />
138
+ <glyph glyph-name="X" unicode="X" horiz-adv-x="544"
139
+ d="M75 710l197 -300l197 300l55 -36l-213 -324l211 -324l-55 -36l-195 300l-195 -300l-55 36l211 324l-213 324z" />
140
+ <glyph glyph-name="Y" unicode="Y" horiz-adv-x="560"
141
+ d="M312 0h-65v264l-237 412l58 34l212 -368l212 368l58 -34l-238 -413v-263z" />
142
+ <glyph glyph-name="Z" unicode="Z" horiz-adv-x="515"
143
+ d="M106 65h384v-65h-470v62l389 573h-384v65h470v-64z" />
144
+ <glyph glyph-name="bracketleft" unicode="[" horiz-adv-x="224"
145
+ d="M224 -168h-184v868h184v-65h-119v-738h119v-65z" />
146
+ <glyph glyph-name="backslash" unicode="\" horiz-adv-x="506"
147
+ d="M53 712l453 -692l-53 -34l-453 693z" />
148
+ <glyph glyph-name="bracketright" unicode="]" horiz-adv-x="224"
149
+ d="M184 700v-868h-184v65h119v738h-119v65h184z" />
150
+ <glyph glyph-name="asciicircum" unicode="^" horiz-adv-x="470"
151
+ d="M212 700h46l212 -288l-52 -38l-183 247l-183 -247l-52 38z" />
152
+ <glyph glyph-name="underscore" unicode="_" horiz-adv-x="446"
153
+ d="M0 -65v65h446v-65h-446z" />
154
+ <glyph glyph-name="grave" unicode="`" horiz-adv-x="200"
155
+ d="M69 700l141 -220h-56l-164 220h79z" />
156
+ <glyph glyph-name="a" unicode="a" horiz-adv-x="551"
157
+ d="M473 451v-331l28 -113l-62 -15l-16 64l-56 -56h-234l-83 82v145l83 82h275v115l-45 44h-192l-87 -30l-21 61l101 34h226zM341 65l67 67v112h-248l-45 -44v-91l45 -44h181z" />
158
+ <glyph glyph-name="b" unicode="b"
159
+ d="M144 501l32 32h243l82 -82v-369l-82 -82h-258l-82 82v517l-29 88l61 20l33 -101v-105zM144 408v-300l43 -43h206l43 43v317l-43 43h-189z" />
160
+ <glyph glyph-name="c" unicode="c" horiz-adv-x="514"
161
+ d="M376 65l88 28l20 -61l-102 -32h-240l-82 83v367l82 83h258l82 -83v-110h-65v86l-43 42h-206l-43 -42v-319l43 -42h208z" />
162
+ <glyph glyph-name="d" unicode="d" horiz-adv-x="560"
163
+ d="M417 408l-60 60h-189l-43 -43v-317l43 -43h182l67 67v276zM417 501v199h65v-580l28 -113l-62 -15l-16 64l-56 -56h-235l-81 81v371l81 81h244z" />
164
+ <glyph glyph-name="e" unicode="e" horiz-adv-x="524"
165
+ d="M376 65l88 28l20 -61l-102 -32h-240l-82 82v369l82 82h258l82 -82v-147l-82 -81h-275v-114l44 -44h207zM169 468l-44 -44v-136h248l44 44v92l-44 44h-204z" />
166
+ <glyph glyph-name="f" unicode="f" horiz-adv-x="373"
167
+ d="M105 402h-85v65h85v151l83 82h133l102 -34l-22 -61l-87 30h-101l-43 -43v-125h169v-65h-169v-402h-65v402z" />
168
+ <glyph glyph-name="g" unicode="g" horiz-adv-x="518"
169
+ d="M155 125l-20 19l-16 -16v-46l23 -23h278l60 -60v-107l-60 -60h-295l-75 73l44 46l56 -54h242l23 23v51l-23 23h-279l-60 60v102l35 35l-35 35v225l82 82h225l113 28l15 -62l-63 -16l55 -55v-221l-82 -82h-243zM348 468h-186l-44 -44v-171l63 -63h190l44 44v167z" />
170
+ <glyph glyph-name="h" unicode="h" horiz-adv-x="560"
171
+ d="M144 408v-408h-65v599l-29 88l61 20l33 -101v-105l32 32h242l82 -82v-451h-65v425l-43 43h-188z" />
172
+ <glyph glyph-name="i" unicode="i" horiz-adv-x="216"
173
+ d="M79 433l-29 88l61 20l33 -101v-440h-65v433zM90 605l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42z" />
174
+ <glyph glyph-name="j" unicode="j" horiz-adv-x="214"
175
+ d="M91 -127l-140 -51l-21 61l116 40l31 45v465l-29 88l61 20l33 -101v-486zM88 605l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42z" />
176
+ <glyph glyph-name="k" unicode="k" horiz-adv-x="493"
177
+ d="M144 606v-329l301 266l43 -48l-208 -184l213 -282l-52 -39l-210 278l-87 -76v-192h-65v599l-29 88l61 20z" />
178
+ <glyph glyph-name="l" unicode="l" horiz-adv-x="204"
179
+ d="M144 606v-606h-65v599l-29 88l61 20z" />
180
+ <glyph glyph-name="m" unicode="m" horiz-adv-x="831"
181
+ d="M78 0v413l-28 113l62 15l16 -64l56 56h192l49 -49l49 49h215l82 -83v-450h-65v423l-45 45h-160l-44 -44v-424h-65v423l-45 45h-137l-67 -67v-401h-65z" />
182
+ <glyph glyph-name="n" unicode="n"
183
+ d="M78 0v413l-28 113l62 15l16 -64l56 56h235l82 -82v-451h-65v423l-45 45h-181l-67 -67v-401h-65z" />
184
+ <glyph glyph-name="o" unicode="o" horiz-adv-x="547"
185
+ d="M487 83l-82 -83h-263l-82 83v367l82 83h263l82 -83v-367zM169 65h209l44 45v313l-44 45h-209l-44 -45v-313z" />
186
+ <glyph glyph-name="p" unicode="p" horiz-adv-x="560"
187
+ d="M143 125l60 -60h189l43 43v317l-43 43h-182l-67 -67v-276zM143 32v-200h-65v581l-28 113l62 15l16 -64l56 56h235l81 -81v-371l-81 -81h-244z" />
188
+ <glyph glyph-name="q" unicode="q" horiz-adv-x="551"
189
+ d="M417 32l-32 -32h-243l-82 82v369l82 82h258l82 -82v-517l29 -88l-61 -20l-33 101v105zM417 125v300l-43 43h-206l-43 -43v-317l43 -43h189z" />
190
+ <glyph glyph-name="r" unicode="r" horiz-adv-x="459"
191
+ d="M335 468h-125l-67 -67v-401h-65v413l-28 113l62 15l16 -64l56 56h178l97 -95l-45 -47z" />
192
+ <glyph glyph-name="s" unicode="s" horiz-adv-x="477"
193
+ d="M380 170l-11 22l-306 108l-31 60v91l82 82h232l101 -34l-21 -61l-87 30h-197l-45 -45v-47l11 -23l306 -108l31 -59v-104l-82 -82h-232l-101 32l20 62l89 -29h196l45 45v60z" />
194
+ <glyph glyph-name="t" unicode="t" horiz-adv-x="428"
195
+ d="M115 445h-95v65h95v160h65v-160h170v-65h-170v-336l44 -44h94l90 28l20 -61l-102 -32h-129l-82 82v363z" />
196
+ <glyph glyph-name="u" unicode="u"
197
+ d="M483 533v-413l28 -113l-62 -15l-16 64l-56 -56h-235l-82 82v451h65v-423l45 -45h181l67 67v401h65z" />
198
+ <glyph glyph-name="v" unicode="v" horiz-adv-x="500"
199
+ d="M283 0h-66l-207 519l60 24l180 -453l180 453l60 -24z" />
200
+ <glyph glyph-name="w" unicode="w" horiz-adv-x="728"
201
+ d="M329 511h70l128 -400l128 432l63 -19l-156 -524h-68l-130 406l-130 -406h-68l-156 524l63 19l128 -432z" />
202
+ <glyph glyph-name="x" unicode="x" horiz-adv-x="452"
203
+ d="M226 323l163 220l53 -39l-176 -238l175 -237l-53 -39l-162 219l-162 -219l-53 39l175 237l-176 238l53 39z" />
204
+ <glyph glyph-name="y" unicode="y" horiz-adv-x="493"
205
+ d="M214 -168h-128v65h103l27 27l25 76h-18l-213 518l62 25l193 -471l157 471l61 -20l-210 -632z" />
206
+ <glyph glyph-name="z" unicode="z" horiz-adv-x="452"
207
+ d="M346 468h-324v65h410v-65l-326 -403h324v-65h-410v64z" />
208
+ <glyph glyph-name="braceleft" unicode="{" horiz-adv-x="319"
209
+ d="M108 169l-88 77v44l88 77v207l69 109l127 31l15 -62l-103 -25l-43 -66v-225l-78 -68l78 -68v-225l43 -66l103 -25l-15 -62l-127 31l-69 109v207z" />
210
+ <glyph glyph-name="bar" unicode="|" horiz-adv-x="226"
211
+ d="M146 -168h-66v868h66v-868z" />
212
+ <glyph glyph-name="braceright" unicode="}" horiz-adv-x="319"
213
+ d="M299 246l-88 -77v-207l-69 -109l-127 -31l-15 62l103 25l43 66v225l78 68l-78 68v225l-43 66l-103 25l15 62l127 -31l69 -109v-207l88 -77v-44z" />
214
+ <glyph glyph-name="asciitilde" unicode="~" horiz-adv-x="624"
215
+ d="M377 363l-103 -103h-137l-117 117l47 46l99 -98h81l103 103h137l117 -117l-47 -46l-99 98h-81z" />
216
+ <glyph glyph-name="quotesinglbase" unicode="&#x201a;" horiz-adv-x="140"
217
+ d="M10 -180l55 240h75l-85 -240h-45z" />
218
+ <glyph glyph-name="quotedblbase" unicode="&#x201e;" horiz-adv-x="275"
219
+ d="M10 -180l55 240h75l-85 -240h-45zM145 -180l55 240h75l-85 -240h-45z" />
220
+ <glyph glyph-name="ellipsis" unicode="&#x2026;" horiz-adv-x="450"
221
+ d="M54 -10l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42zM204 -10l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42zM354 -10l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42z" />
222
+ <glyph glyph-name="dagger" unicode="&#x2020;" horiz-adv-x="410"
223
+ d="M0 405v65h172v230h66v-230h172v-65h-172v-573h-66v573h-172z" />
224
+ <glyph glyph-name="daggerdbl" unicode="&#x2021;" horiz-adv-x="410"
225
+ d="M0 405v65h172v230h66v-230h172v-65h-172v-278h172v-65h-172v-230h-66v230h-172v65h172v278h-172z" />
226
+ <glyph glyph-name="Euro" unicode="&#x20ac;" horiz-adv-x="579"
227
+ d="M0 380v60h60v157l103 103h279l103 -103v-112h-65v85l-65 65h-225l-65 -65v-130h295v-60h-295v-60h285v-60h-285v-130l65 -65h236l76 76l47 -46l-95 -95h-291l-103 103v157h-70v60h70v60h-60z" />
228
+ <glyph glyph-name="perthousand" unicode="&#x2030;" horiz-adv-x="1041"
229
+ d="M61 28l529 685l49 -38l-528 -686zM463 290h126l82 -82v-126l-82 -82h-126l-82 82v126zM562 225h-72l-44 -44v-72l44 -44h72l44 44v72zM112 700h126l82 -82v-126l-82 -82h-126l-82 82v126zM211 635h-72l-44 -44v-72l44 -44h72l44 44v72zM803 290h126l82 -82v-126l-82 -82
230
+ h-126l-82 82v126zM902 225h-72l-44 -44v-72l44 -44h72l44 44v72z" />
231
+ <glyph glyph-name="guilsinglleft" unicode="&#x2039;" horiz-adv-x="349"
232
+ d="M20 240v46l276 237l43 -49l-245 -211l245 -211l-43 -49z" />
233
+ <glyph glyph-name="quoteleft" unicode="&#x2018;" horiz-adv-x="140"
234
+ d="M130 700l-55 -240h-75l85 240h45z" />
235
+ <glyph glyph-name="quoteright" unicode="&#x2019;" horiz-adv-x="140"
236
+ d="M10 460l55 240h75l-85 -240h-45z" />
237
+ <glyph glyph-name="quotedblleft" unicode="&#x201c;" horiz-adv-x="275"
238
+ d="M265 700l-55 -240h-75l85 240h45zM130 700l-55 -240h-75l85 240h45z" />
239
+ <glyph glyph-name="quotedblright" unicode="&#x201d;" horiz-adv-x="275"
240
+ d="M10 460l55 240h75l-85 -240h-45zM145 460l55 240h75l-85 -240h-45z" />
241
+ <glyph glyph-name="bullet" unicode="&#x2022;" horiz-adv-x="390"
242
+ d="M132 495h126l82 -82v-126l-82 -82h-126l-82 82v126z" />
243
+ <glyph glyph-name="endash" unicode="&#x2013;" horiz-adv-x="526"
244
+ d="M20 267v66h486v-66h-486z" />
245
+ <glyph glyph-name="emdash" unicode="&#x2014;" horiz-adv-x="712"
246
+ d="M20 267v66h672v-66h-672z" />
247
+ <glyph glyph-name="trademark" unicode="&#x2122;" horiz-adv-x="729"
248
+ d="M0 700h305v-65h-120v-265h-65v265h-120v65zM535 454h-56l-79 126v-210h-65v330h69l104 -165l103 165h68v-330h-65v210z" />
249
+ <glyph glyph-name="guilsinglright" unicode="&#x203a;" horiz-adv-x="349"
250
+ d="M329 286v-46l-276 -237l-43 49l245 211l-245 211l43 49z" />
251
+ <glyph glyph-name="currency" unicode="&#xa4;" horiz-adv-x="579"
252
+ d="M404 635h-289v-250h289l66 65v120zM394 295l81 -223l69 -23l-21 -62l-102 34l-79 219h-227v-240h-65v240h-50v55h50v35h-50v55h50v315h382l103 -102v-176l-93 -92h-327v-35h279z" />
253
+ <glyph glyph-name="brokenbar" unicode="&#xa6;" horiz-adv-x="226"
254
+ d="M146 700v-372h-66v372h66zM146 -168h-66v372h66v-372z" />
255
+ <glyph glyph-name="section" unicode="&#xa7;" horiz-adv-x="513"
256
+ d="M110 237l12 -22l206 -94l75 82v93l-12 22l-207 93l-74 -81v-93zM45 223v132l78 84l-32 15l-31 58v106l82 82h230l101 -34l-21 -61l-87 30h-196l-44 -45v-65l13 -22l299 -135l31 -58v-132l-77 -84l31 -15l31 -58v-107l-82 -82h-230l-101 34l21 61l87 -30h196l44 45v65
257
+ l-13 23l-299 135z" />
258
+ <glyph glyph-name="copyright" unicode="&#xa9;" horiz-adv-x="859"
259
+ d="M799 577v-454l-136 -123h-467l-136 123v454l136 123h467zM734 153v394l-98 88h-413l-98 -88v-394l98 -88h413zM494 210l88 28l20 -61l-102 -32h-165l-82 83v244l82 83h184l82 -83v-75h-65v49l-43 44h-132l-43 -44v-192l43 -44h133z" />
260
+ <glyph glyph-name="guillemotleft" unicode="&#xab;" horiz-adv-x="597"
261
+ d="M544 3l-303 260l303 260l43 -49l-245 -211l245 -211zM323 3l-303 260l303 260l43 -49l-245 -211l245 -211z" />
262
+ <glyph glyph-name="logicalnot" unicode="&#xac;" horiz-adv-x="410"
263
+ d="M324 212v100h-304v65h370v-165h-66z" />
264
+ <glyph glyph-name="uni00AD" unicode="&#xad;" horiz-adv-x="450"
265
+ d="M20 312v65h410v-65h-410z" />
266
+ <glyph glyph-name="registered" unicode="&#xae;" horiz-adv-x="859"
267
+ d="M552 449l-42 41h-178v-129h178c15 15 26 26 42 41v47zM617 473v-95l-83 -82h-42l123 -123l-46 -47l-170 170h-67v-151h-65v410h267zM799 577v-454l-136 -123h-467l-136 123v454l136 123h467zM734 153v394l-98 88h-413l-98 -88v-394l98 -88h413z" />
268
+ <glyph glyph-name="degree" unicode="&#xb0;" horiz-adv-x="350"
269
+ d="M112 700h126l82 -82v-126l-82 -82h-126l-82 82v126zM211 635h-72l-44 -44v-72l44 -44h72l44 44v72z" />
270
+ <glyph glyph-name="plusminus" unicode="&#xb1;" horiz-adv-x="470"
271
+ d="M202 560h65v-163h183v-65h-183v-162h-65v162h-182v65h182v163zM30 70v60h410v-60h-410z" />
272
+ <glyph glyph-name="mu" unicode="&#xb5;"
273
+ d="M483 533v-413l28 -113l-62 -15l-16 64l-56 -56h-235l-17 17v-185h-65v701h65v-423l45 -45h181l67 67v401h65z" />
274
+ <glyph glyph-name="paragraph" unicode="&#xb6;" horiz-adv-x="521"
275
+ d="M314 -168h-65v350h-116l-103 105v311l103 102h181v-868zM441 -168h-65v868h65v-868z" />
276
+ <glyph glyph-name="periodcentered" unicode="&#xb7;" horiz-adv-x="300"
277
+ d="M129 305l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42z" />
278
+ <glyph glyph-name="guillemotright" unicode="&#xbb;" horiz-adv-x="597"
279
+ d="M356 263l-303 -260l-43 49l245 211l-245 211l43 49zM577 263l-303 -260l-43 49l245 211l-245 211l43 49z" />
280
+ <glyph glyph-name="afii10035" unicode="&#x421;" horiz-adv-x="579"
281
+ d="M426 65l76 76l47 -46l-95 -95h-291l-103 103v494l103 103h279l103 -103v-112h-65v85l-65 65h-225l-65 -65v-440l65 -65h236z" />
282
+ <glyph glyph-name="afii10084" unicode="&#x442;" horiz-adv-x="421"
283
+ d="M0 533h421v-65h-178v-468h-65v468h-178v65z" />
284
+ <glyph glyph-name="afii10085" unicode="&#x443;" horiz-adv-x="493"
285
+ d="M214 -168h-128v65h103l27 27l25 76h-18l-213 518l62 25l193 -471l157 471l61 -20l-210 -632z" />
286
+ <glyph glyph-name="space" unicode=" " horiz-adv-x="300"
287
+ />
288
+ <glyph glyph-name="odieresis" unicode="&#xf6;" horiz-adv-x="547"
289
+ d="M487 83l-82 -83h-263l-82 83v367l82 83h263l82 -83v-367zM169 65h209l44 45v313l-44 45h-209l-44 -45v-313zM162 605l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42zM342 605l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42z" />
290
+ <glyph glyph-name="udieresis" unicode="&#xfc;"
291
+ d="M483 533v-413l28 -113l-62 -15l-16 64l-56 -56h-235l-82 82v451h65v-423l45 -45h181l67 67v401h65zM160 585l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42zM340 585l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42z" />
292
+ <glyph glyph-name="Odieresis" unicode="&#xd6;" horiz-adv-x="635"
293
+ d="M173 700h289l113 -103v-494l-113 -103h-289l-113 103v494zM510 570l-72 65h-241l-72 -65v-440l72 -65h241l72 65v440zM207 788l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42zM387 788l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42z" />
294
+ <glyph glyph-name="Udieresis" unicode="&#xdc;" horiz-adv-x="625"
295
+ d="M173 0l-103 102v598h65v-570l66 -65h223l66 65v570h65v-598l-103 -102h-279zM202 768l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42zM382 768l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42z" />
296
+ <glyph glyph-name="Adieresis" unicode="&#xc4;" horiz-adv-x="578"
297
+ d="M155 212l-72 -222l-63 20l223 690h92l223 -690l-63 -20l-72 222h-268zM176 277h226l-113 350zM178 768l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42zM358 768l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42z" />
298
+ <glyph glyph-name="adieresis" unicode="&#xe4;" horiz-adv-x="551"
299
+ d="M473 451v-331l28 -113l-62 -15l-16 64l-56 -56h-234l-83 82v145l83 82h275v115l-45 44h-192l-87 -30l-21 61l101 34h226zM341 65l67 67v112h-248l-45 -44v-91l45 -44h181zM168 605l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42zM348 605l-24 24v42l24 24h42l24 -24v-42
300
+ l-24 -24h-42z" />
301
+ <glyph glyph-name="Edieresis" unicode="&#xcb;" horiz-adv-x="533"
302
+ d="M80 0v700h433v-65h-368v-232h326v-65h-326v-273h368v-65h-433zM190 788l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42zM370 788l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42z" />
303
+ <glyph glyph-name="edieresis" unicode="&#xeb;" horiz-adv-x="524"
304
+ d="M376 65l88 28l20 -61l-102 -32h-240l-82 82v369l82 82h258l82 -82v-147l-82 -81h-275v-114l44 -44h207zM169 468l-44 -44v-136h248l44 44v92l-44 44h-204zM160 605l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42zM340 605l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42z" />
305
+ <glyph glyph-name="Aacute" unicode="&#xc1;" horiz-adv-x="578"
306
+ d="M155 212l-72 -222l-63 20l223 690h92l223 -690l-63 -20l-72 222h-268zM176 277h226l-113 350zM243 745l128 200h79l-151 -200h-56z" />
307
+ <glyph glyph-name="Eacute" unicode="&#xc9;" horiz-adv-x="533"
308
+ d="M80 0v700h433v-65h-368v-232h326v-65h-326v-273h368v-65h-433zM266 755l128 200h79l-151 -200h-56z" />
309
+ <glyph glyph-name="Iacute" unicode="&#xcd;" horiz-adv-x="357"
310
+ d="M327 0h-297v65h116v570h-116v65h297v-65h-116v-570h116v-65zM142 755l128 200h79l-151 -200h-56z" />
311
+ <glyph glyph-name="Oacute" unicode="&#xd3;" horiz-adv-x="635"
312
+ d="M173 700h289l113 -103v-494l-113 -103h-289l-113 103v494zM510 570l-72 65h-241l-72 -65v-440l72 -65h241l72 65v440zM281 755l128 200h79l-151 -200h-56z" />
313
+ <glyph glyph-name="Uacute" unicode="&#xda;" horiz-adv-x="625"
314
+ d="M173 0l-103 102v598h65v-570l66 -65h223l66 65v570h65v-598l-103 -102h-279zM275 735l128 200h79l-151 -200h-56z" />
315
+ <glyph glyph-name="Yacute" unicode="&#xdd;" horiz-adv-x="560"
316
+ d="M312 0h-65v264l-237 412l58 34l212 -368l212 368l58 -34l-238 -413v-263zM244 735l128 200h79l-151 -200h-56z" />
317
+ <glyph glyph-name="aacute" unicode="&#xe1;" horiz-adv-x="551"
318
+ d="M473 451v-331l28 -113l-62 -15l-16 64l-56 -56h-234l-83 82v145l83 82h275v115l-45 44h-192l-87 -30l-21 61l101 34h226zM341 65l67 67v112h-248l-45 -44v-91l45 -44h181zM237 578l128 200h79l-151 -200h-56z" />
319
+ <glyph glyph-name="eacute" unicode="&#xe9;" horiz-adv-x="524"
320
+ d="M376 65l88 28l20 -61l-102 -32h-240l-82 82v369l82 82h258l82 -82v-147l-82 -81h-275v-114l44 -44h207zM169 468l-44 -44v-136h248l44 44v92l-44 44h-204zM238 578l128 200h79l-151 -200h-56z" />
321
+ <glyph glyph-name="iacute" unicode="&#xed;" horiz-adv-x="216"
322
+ d="M79 433l-29 88l61 20l33 -101v-440h-65v433zM50 578l128 200h79l-151 -200h-56z" />
323
+ <glyph glyph-name="oacute" unicode="&#xf3;" horiz-adv-x="547"
324
+ d="M487 83l-82 -83h-263l-82 83v367l82 83h263l82 -83v-367zM169 65h209l44 45v313l-44 45h-209l-44 -45v-313zM246 578l128 200h79l-151 -200h-56z" />
325
+ <glyph glyph-name="uacute" unicode="&#xfa;"
326
+ d="M483 533v-413l28 -113l-62 -15l-16 64l-56 -56h-235l-82 82v451h65v-423l45 -45h181l67 67v401h65zM243 558l128 200h79l-151 -200h-56z" />
327
+ <glyph glyph-name="yacute" unicode="&#xfd;" horiz-adv-x="493"
328
+ d="M214 -168h-128v65h103l27 27l25 76h-18l-213 518l62 25l193 -471l157 471l61 -20l-210 -632zM214 558l128 200h79l-151 -200h-56z" />
329
+ <glyph glyph-name="Ohungarumlaut" unicode="&#x150;" horiz-adv-x="635"
330
+ d="M173 700h289l113 -103v-494l-113 -103h-289l-113 103v494zM510 570l-72 65h-241l-72 -65v-440l72 -65h241l72 65v440zM208 755l128 200h79l-151 -200h-56zM354 755l128 200h79l-151 -200h-56z" />
331
+ <glyph glyph-name="Scaron" unicode="&#x160;" horiz-adv-x="544"
332
+ d="M392 635h-223l-64 -64v-72l12 -25l356 -173l31 -58v-141l-102 -102h-259l-101 34l21 61l87 -30h225l64 64v95l-14 26l-358 174l-27 56v118l102 102h262l98 -33l-20 -60zM246 745l-120 135h56l98 -93l99 93h56l-120 -135h-69z" />
333
+ <glyph glyph-name="Zcaron" unicode="&#x17d;" horiz-adv-x="515"
334
+ d="M106 65h384v-65h-470v62l389 573h-384v65h470v-64zM231 745l-120 135h56l98 -93l99 93h56l-120 -135h-69z" />
335
+ <glyph glyph-name="scaron" unicode="&#x161;" horiz-adv-x="477"
336
+ d="M380 170l-11 22l-306 108l-31 60v91l82 82h232l101 -34l-21 -61l-87 30h-197l-45 -45v-47l11 -23l306 -108l31 -59v-104l-82 -82h-232l-101 32l20 62l89 -29h196l45 45v60zM206 578l-120 135h56l98 -93l99 93h56l-120 -135h-69z" />
337
+ <glyph glyph-name="zcaron" unicode="&#x17e;" horiz-adv-x="452"
338
+ d="M346 468h-324v65h410v-65l-326 -403h324v-65h-410v64zM196 578l-120 135h56l98 -93l99 93h56l-120 -135h-69z" />
339
+ <glyph glyph-name="ocircumflex" unicode="&#xf4;" horiz-adv-x="547"
340
+ d="M487 83l-82 -83h-263l-82 83v367l82 83h263l82 -83v-367zM169 65h209l44 45v313l-44 45h-209l-44 -45v-313zM124 578l120 135h69l120 -135h-56l-99 93l-98 -93h-56z" />
341
+ <glyph glyph-name="icircumflex" unicode="&#xee;" horiz-adv-x="216"
342
+ d="M79 433l-29 88l61 20l33 -101v-440h-65v433zM-43 578l120 135h69l120 -135h-56l-99 93l-98 -93h-56z" />
343
+ <glyph glyph-name="acircumflex" unicode="&#xe2;" horiz-adv-x="551"
344
+ d="M473 451v-331l28 -113l-62 -15l-16 64l-56 -56h-234l-83 82v145l83 82h275v115l-45 44h-192l-87 -30l-21 61l101 34h226zM341 65l67 67v112h-248l-45 -44v-91l45 -44h181zM124 578l120 135h69l120 -135h-56l-99 93l-98 -93h-56z" />
345
+ <glyph glyph-name="Ocircumflex" unicode="&#xd4;" horiz-adv-x="635"
346
+ d="M462 700l113 -103v-494l-113 -103h-289l-113 103v494l113 103h289zM438 635h-241l-72 -65v-440l72 -65h241l72 65v440zM167 745l120 135v-75l-64 -60h-56zM420 745l-64 60v75l120 -135h-56z" />
347
+ <glyph glyph-name="Icircumflex" unicode="&#xce;" horiz-adv-x="357"
348
+ d="M327 0h-297v65h116v570h-116v65h297v-65h-116v-570h116v-65zM24 745l120 135v-75l-64 -60h-56zM277 745l-64 60v75l120 -135h-56z" />
349
+ <glyph glyph-name="Acircumflex" unicode="&#xc2;" horiz-adv-x="578"
350
+ d="M155 212l-72 -222l-63 20l223 690h92l223 -690l-63 -20l-72 222h-268zM176 277h226l-113 350zM134 745l120 135v-75l-64 -60h-56zM387 745l-64 60v75l120 -135h-56z" />
351
+ <glyph glyph-name="Agrave" unicode="&#xc0;" horiz-adv-x="578"
352
+ d="M155 212l-72 -222l-63 20l223 690h92l223 -690l-63 -20l-72 222h-268zM176 277h226l-113 350zM206 945l128 -200h-56l-151 200h79z" />
353
+ <glyph glyph-name="Egrave" unicode="&#xc8;" horiz-adv-x="533"
354
+ d="M80 0v700h433v-65h-368v-232h326v-65h-326v-273h368v-65h-433zM230 955l128 -200h-56l-151 200h79z" />
355
+ <glyph glyph-name="Ecircumflex" unicode="&#xca;" horiz-adv-x="533"
356
+ d="M80 0v700h433v-65h-368v-232h326v-65h-326v-273h368v-65h-433zM144 745l120 135v-75l-64 -60h-56zM397 745l-64 60v75l120 -135h-56z" />
357
+ <glyph glyph-name="Igrave" unicode="&#xcc;" horiz-adv-x="357"
358
+ d="M327 0h-297v65h116v570h-116v65h297v-65h-116v-570h116v-65zM96 955l128 -200h-56l-151 200h79z" />
359
+ <glyph glyph-name="Idieresis" unicode="&#xcf;" horiz-adv-x="357"
360
+ d="M327 0h-297v65h116v570h-116v65h297v-65h-116v-570h116v-65zM68 775l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42zM248 775l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42z" />
361
+ <glyph glyph-name="idieresis" unicode="&#xef;" horiz-adv-x="216"
362
+ d="M8 605l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42zM172 605l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42zM79 433l-29 88l61 20l33 -101v-440h-65v433z" />
363
+ <glyph glyph-name="Ograve" unicode="&#xd2;" horiz-adv-x="635"
364
+ d="M173 700h289l113 -103v-494l-113 -103h-289l-113 103v494zM510 570l-72 65h-241l-72 -65v-440l72 -65h241l72 65v440zM244 955l128 -200h-56l-151 200h79z" />
365
+ <glyph glyph-name="Ugrave" unicode="&#xd9;" horiz-adv-x="625"
366
+ d="M173 0l-103 102v598h65v-570l66 -65h223l66 65v570h65v-598l-103 -102h-279zM258 935l128 -200h-56l-151 200h79z" />
367
+ <glyph glyph-name="Ucircumflex" unicode="&#xdb;" horiz-adv-x="625"
368
+ d="M173 0l-103 102v598h65v-570l66 -65h223l66 65v570h65v-598l-103 -102h-279zM158 745l120 135v-75l-64 -60h-56zM411 745l-64 60v75l120 -135h-56z" />
369
+ <glyph glyph-name="agrave" unicode="&#xe0;" horiz-adv-x="551"
370
+ d="M473 451v-331l28 -113l-62 -15l-16 64l-56 -56h-234l-83 82v145l83 82h275v115l-45 44h-192l-87 -30l-21 61l101 34h226zM341 65l67 67v112h-248l-45 -44v-91l45 -44h181zM197 778l128 -200h-56l-151 200h79z" />
371
+ <glyph glyph-name="egrave" unicode="&#xe8;" horiz-adv-x="524"
372
+ d="M376 65l88 28l20 -61l-102 -32h-240l-82 82v369l82 82h258l82 -82v-147l-82 -81h-275v-114l44 -44h207zM169 468l-44 -44v-136h248l44 44v92l-44 44h-204zM182 778l128 -200h-56l-151 200h79z" />
373
+ <glyph glyph-name="ecircumflex" unicode="&#xea;" horiz-adv-x="524"
374
+ d="M376 65l88 28l20 -61l-102 -32h-240l-82 82v369l82 82h258l82 -82v-147l-82 -81h-275v-114l44 -44h207zM169 468l-44 -44v-136h248l44 44v92l-44 44h-204zM116 578l120 135h69l120 -135h-56l-99 93l-98 -93h-56z" />
375
+ <glyph glyph-name="igrave" unicode="&#xec;" horiz-adv-x="216"
376
+ d="M79 433l-29 88l61 20l33 -101v-440h-65v433zM23 778l128 -200h-56l-151 200h79z" />
377
+ <glyph glyph-name="ograve" unicode="&#xf2;" horiz-adv-x="547"
378
+ d="M487 83l-82 -83h-263l-82 83v367l82 83h263l82 -83v-367zM169 65h209l44 45v313l-44 45h-209l-44 -45v-313zM180 778l128 -200h-56l-151 200h79z" />
379
+ <glyph glyph-name="ugrave" unicode="&#xf9;"
380
+ d="M483 533v-413l28 -113l-62 -15l-16 64l-56 -56h-235l-82 82v451h65v-423l45 -45h181l67 67v401h65zM197 758l128 -200h-56l-151 200h79z" />
381
+ <glyph glyph-name="ucircumflex" unicode="&#xfb;"
382
+ d="M483 533v-413l28 -113l-62 -15l-16 64l-56 -56h-235l-82 82v451h65v-423l45 -45h181l67 67v401h65zM117 578l120 135h69l120 -135h-56l-99 93l-98 -93h-56z" />
383
+ <glyph glyph-name="ydieresis" unicode="&#xff;" horiz-adv-x="493"
384
+ d="M214 -168h-128v65h103l27 27l25 76h-18l-213 518l62 25l193 -471l157 471l61 -20l-210 -632zM138 585l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42zM318 585l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42z" />
385
+ <glyph glyph-name="Ydieresis" unicode="&#x178;" horiz-adv-x="560"
386
+ d="M312 0h-65v264l-237 412l58 34l212 -368l212 368l58 -34l-238 -413v-263zM169 768l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42zM349 768l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42z" />
387
+ <glyph glyph-name="Ccedilla" unicode="&#xc7;" horiz-adv-x="579"
388
+ d="M260 -89v89h-97l-103 103v494l103 103h279l103 -103v-112h-65v85l-65 65h-225l-65 -65v-440l65 -65h236l76 76l47 -46l-95 -95h-129v-24h35l62 -62v-80l-62 -62h-115v65h88l24 24v26l-24 24h-73z" />
389
+ <glyph glyph-name="ccedilla" unicode="&#xe7;" horiz-adv-x="514"
390
+ d="M235 -89v89h-93l-82 83v367l82 83h258l82 -83v-110h-65v86l-43 42h-206l-43 -42v-319l43 -42h208l88 28l20 -61l-102 -32h-82v-24h35l62 -62v-80l-62 -62h-115v65h88l24 24v26l-24 24h-73z" />
391
+ <glyph glyph-name="divide" unicode="&#xf7;" horiz-adv-x="470"
392
+ d="M20 377h430v-65h-430v65zM213 160l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42zM213 440l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42z" />
393
+ <glyph glyph-name="multiply" unicode="&#xd7;" horiz-adv-x="389"
394
+ d="M19 474l46 46l130 -130l129 130l46 -46l-129 -130l128 -128l-46 -46l-128 128l-129 -128l-46 46l129 128z" />
395
+ <glyph glyph-name="Atilde" unicode="&#xc3;" horiz-adv-x="578"
396
+ d="M155 212l-72 -222l-63 20l223 690h92l223 -690l-63 -20l-72 222h-268zM176 277h226l-113 350zM335 815l-76 -70h-61l-84 84l47 46l66 -65h11l76 70h61l84 -84l-47 -46l-66 65h-11z" />
397
+ <glyph glyph-name="Ntilde" unicode="&#xd1;" horiz-adv-x="646"
398
+ d="M493 0l-348 587v-587h-65v700h73l348 -587v587h65v-700h-73zM373 815l-76 -70h-61l-84 84l47 46l66 -65h11l76 70h61l84 -84l-47 -46l-66 65h-11z" />
399
+ <glyph glyph-name="Otilde" unicode="&#xd5;" horiz-adv-x="635"
400
+ d="M173 700h289l113 -103v-494l-113 -103h-289l-113 103v494zM510 570l-72 65h-241l-72 -65v-440l72 -65h241l72 65v440zM373 815l-76 -70h-61l-84 84l47 46l66 -65h11l76 70h61l84 -84l-47 -46l-66 65h-11z" />
401
+ <glyph glyph-name="atilde" unicode="&#xe3;" horiz-adv-x="551"
402
+ d="M473 451v-331l28 -113l-62 -15l-16 64l-56 -56h-234l-83 82v145l83 82h275v115l-45 44h-192l-87 -30l-21 61l101 34h226zM341 65l67 67v112h-248l-45 -44v-91l45 -44h181zM316 648l-76 -70h-61l-84 84l47 46l66 -65h11l76 70h61l84 -84l-47 -46l-66 65h-11z" />
403
+ <glyph glyph-name="ntilde" unicode="&#xf1;"
404
+ d="M78 0v413l-28 113l62 15l16 -64l56 56h235l82 -82v-451h-65v423l-45 45h-181l-67 -67v-401h-65zM344 648l-76 -70h-61l-84 84l47 46l66 -65h11l76 70h61l84 -84l-47 -46l-66 65h-11z" />
405
+ <glyph glyph-name="otilde" unicode="&#xf5;" horiz-adv-x="547"
406
+ d="M487 83l-82 -83h-263l-82 83v367l82 83h263l82 -83v-367zM169 65h209l44 45v313l-44 45h-209l-44 -45v-313zM333 648l-76 -70h-61l-84 84l47 46l66 -65h11l76 70h61l84 -84l-47 -46l-66 65h-11z" />
407
+ <glyph glyph-name="ncommaaccent" unicode="&#x146;"
408
+ d="M78 0v413l-28 113l62 15l16 -64l56 56h235l82 -82v-451h-65v423l-45 45h-181l-67 -67v-401h-65zM209 -275l55 240h75l-85 -240h-45z" />
409
+ <glyph glyph-name="aring" unicode="&#xe5;" horiz-adv-x="551"
410
+ d="M473 451v-331l28 -113l-62 -15l-16 64l-56 -56h-234l-83 82v145l83 82h275v115l-45 44h-192l-87 -30l-21 61l101 34h226zM341 65l67 67v112h-248l-45 -44v-91l45 -44h181zM231 783h81l62 -62v-81l-62 -62h-81l-62 62v81zM290 723h-37l-24 -24v-37l24 -24h37l24 24v37z
411
+ " />
412
+ <glyph glyph-name="Aring" unicode="&#xc5;" horiz-adv-x="578"
413
+ d="M248 845h81l62 -62v-81l-43 -43l210 -649l-63 -20l-72 222h-268l-72 -222l-63 20l209 648l-43 44v81zM176 277h226l-113 350zM307 785h-37l-24 -24v-37l24 -24h37l24 24v37z" />
414
+ <glyph glyph-name="ae" unicode="&#xe6;" horiz-adv-x="832"
415
+ d="M684 65l88 28l20 -61l-102 -32h-220l-62 61l-61 -61h-214l-83 82v135l83 82h255v125l-45 44h-172l-87 -30l-21 61l101 34h206l50 -50l50 50h238l82 -82v-136l-82 -81h-255v-125l44 -44h187zM497 468l-44 -44v-125h228l44 44v81l-44 44h-184zM321 65l67 67v102h-228
416
+ l-45 -44v-81l45 -44h161z" />
417
+ <glyph glyph-name="AE" unicode="&#xc6;" horiz-adv-x="858"
418
+ d="M435 0v212h-252l-114 -222l-59 30l348 680h480v-65h-338v-232h296v-65h-296v-273h338v-65h-403zM399 635l-183 -358h219v358h-36z" />
419
+ <glyph glyph-name="oe" unicode="&#x153;" horiz-adv-x="846"
420
+ d="M698 65l88 28l20 -61l-102 -32h-220l-50 50l-49 -50h-243l-82 83v367l82 83h243l49 -50l50 50h238l82 -82v-147l-82 -81h-255v-114l44 -44h187zM169 65h189l44 45v313l-44 45h-189l-44 -45v-313zM511 468l-44 -44v-136h228l44 44v92l-44 44h-184z" />
421
+ <glyph glyph-name="OE" unicode="&#x152;" horiz-adv-x="913"
422
+ d="M173 0l-113 103v494l113 103h720v-65h-368v-232h326v-65h-326v-273h368v-65h-720zM125 130l72 -65h263v570h-263l-72 -65v-440z" />
423
+ <glyph glyph-name="germandbls" unicode="&#xdf;" horiz-adv-x="605"
424
+ d="M145 591v-591h-65v617l83 83h278l83 -83v-101l-130 -114v-47l11 -23l119 -42l31 -59v-149l-82 -82h-162l-101 32l20 62l89 -29h126l45 45v105l-11 22l-119 42l-31 60v91l130 114v47l-44 44h-226z" />
425
+ <glyph glyph-name="Oslash" unicode="&#xd8;" horiz-adv-x="635"
426
+ d="M65 20l32 49l-37 34v494l113 103h289l30 -28l26 40l53 -33l-32 -49l36 -33v-494l-113 -103h-289l-29 26l-26 -40zM125 570v-440l7 -7l324 495l-18 17h-241zM510 570l-7 6l-324 -496l18 -15h241l72 65v440z" />
427
+ <glyph glyph-name="oslash" unicode="&#xf8;" horiz-adv-x="547"
428
+ d="M50 28l28 36l-18 19v367l82 83h263l19 -20l23 30l50 -38l-29 -37l19 -18v-367l-82 -83h-263l-20 19l-22 -29zM169 65h209l44 45v298l-260 -337zM125 423v-298l259 336l-6 7h-209z" />
429
+ <glyph glyph-name="cent" unicode="&#xa2;" horiz-adv-x="514"
430
+ d="M310 533h90l82 -83v-110h-65v86l-43 42h-206l-43 -42v-319l43 -42h208l88 28l20 -61l-102 -32h-73v-70h-65v70h-102l-82 83v367l82 83h103v70h65v-70z" />
431
+ <glyph glyph-name="yen" unicode="&#xa5;" horiz-adv-x="560"
432
+ d="M85 263v65h125l-200 348l58 34l212 -368l212 368l58 -34l-201 -348h125v-65h-162v-48h162v-65h-162v-150h-65v150h-162v65h162v48h-162z" />
433
+ <glyph glyph-name="exclam" unicode="!" horiz-adv-x="250"
434
+ d="M91 125l-1 575h70l-1 -575h-68zM104 -10l-24 24v42l24 24h42l24 -24v-42l-24 -24h-42z" />
435
+ </font>
436
+ </defs></svg>
js/jquery.crellyslider.js CHANGED
@@ -2,7 +2,7 @@
2
  * Plugin Name: Crelly Slider
3
  * Plugin URI: https://wordpress.org/plugins/crelly-slider/
4
  * Description: A free responsive slider that supports layers. Add texts, images, videos and beautify them with transitions and animations.
5
- * Version: 1.2.3
6
  * Author: Fabio Rinaldi
7
  * Author URI: https://github.com/fabiorino
8
  * License: MIT
@@ -107,7 +107,7 @@ var crellyslider_vimeo_api_ready = false;
107
  }
108
  else {
109
  init();
110
- }
111
 
112
  // Returns an array like this: {youtube = true, vimeo = false} if there are YouTube videos but not Vimeo videos
113
  // This function can be called before init()
@@ -193,7 +193,7 @@ var crellyslider_vimeo_api_ready = false;
193
  'time' : 'all',
194
  });
195
 
196
- setPreloader();
197
 
198
  initVideos().done(function() {
199
  // Timeout needed to prevent compatibility issues
@@ -207,55 +207,55 @@ var crellyslider_vimeo_api_ready = false;
207
  }
208
 
209
  // Orders the slides by rearranging them in the DOM
210
- function orderSlides() {
211
- // If randomOrder is disabled and the initial slide is the first, the slides are already ordered
212
- if(! settings.randomOrder && settings.startFromSlide == 0) {
213
- return;
214
- }
215
-
216
- var slides_order = new Array();
217
- var ordered_slides = new Array();
218
-
219
- // Set the first slide according to the settings
220
- if(settings.startFromSlide == -1) {
221
- var index = Math.floor((Math.random() * total_slides));
222
- slides_order[0] = index;
223
- ordered_slides[0] = getSlide(index);
224
- }
225
- else {
226
- slides_order[0] = settings.startFromSlide;
227
- ordered_slides[0] = getSlide(settings.startFromSlide);
228
- }
229
-
230
- // Set all the other slides
231
- for(var i = 1; i < total_slides; i++) {
232
- var index;
233
-
234
- if(settings.randomOrder) { // Get a random slide index that was never generated before
235
- do {
236
- index = Math.floor((Math.random() * total_slides));
237
- } while(slides_order.indexOf(index) != -1);
238
- }
239
- else { // Get the next index
240
- if(i + slides_order[0] < total_slides) {
241
- index = i + slides_order[0];
242
- }
243
- else {
244
- index = i + slides_order[0] - total_slides;
245
- }
246
- }
247
-
248
- slides_order[i] = index;
249
- ordered_slides[i] = getSlide(index);
250
- }
251
-
252
- // Delete all the slides
253
- SLIDER.find(CRELLY).find(SLIDES).empty();
254
-
255
- // Put the slides that are now ordered
256
- for(var i = 0; i < total_slides; i++) {
257
- SLIDER.find(CRELLY).find(SLIDES).append(ordered_slides[i]);
258
- }
259
  }
260
 
261
  // Inits Youtube and Vimeo videos
@@ -323,13 +323,23 @@ var crellyslider_vimeo_api_ready = false;
323
  if(e.data === YT.PlayerState.ENDED && getItemData(element, 'loop')) {
324
  player.playVideo();
325
  }
 
 
 
 
 
 
 
 
 
326
  },
327
  },
328
  });
329
 
330
  temp = {
331
  player : player,
332
- played_once : false
 
333
  };
334
 
335
  youtube_videos[element.attr('id')] = temp;
@@ -372,6 +382,16 @@ var crellyslider_vimeo_api_ready = false;
372
  player.addEvent('play', function() {
373
  vimeo_videos[element.attr('id')].played_once = true;
374
  vimeo_videos[element.attr('id')].ended = false;
 
 
 
 
 
 
 
 
 
 
375
  });
376
 
377
  if(getItemData(element, 'loop')) {
@@ -388,6 +408,7 @@ var crellyslider_vimeo_api_ready = false;
388
  player : player,
389
  played_once : false,
390
  ended : false,
 
391
  };
392
 
393
  vimeo_videos[element.attr('id')] = temp;
@@ -429,7 +450,8 @@ var crellyslider_vimeo_api_ready = false;
429
  getSlides().each(function() {
430
  var slide = $(this);
431
 
432
- slide.find(ELEMENTS).each(function() {
 
433
  var element = $(this);
434
 
435
  // Clone the element and get its real properties (avoids width and height = 0). Then replace the original element
@@ -450,6 +472,18 @@ var crellyslider_vimeo_api_ready = false;
450
  element.remove();
451
  });
452
 
 
 
 
 
 
 
 
 
 
 
 
 
453
  slide.css('display', 'none');
454
  slide.data('opacity', parseFloat(slide.css('opacity')));
455
  });
@@ -463,9 +497,16 @@ var crellyslider_vimeo_api_ready = false;
463
  element.data('font-size', parseFloat(element.css('font-size')));
464
 
465
  if(element.css('line-height').slice(-2).toLowerCase() == 'px') {
 
466
  element.data('line-height', parseFloat(element.css('line-height')));
467
  }
 
 
 
 
 
468
  else {
 
469
  element.data('line-height', parseFloat(element.css('line-height')) * getItemData(element, 'font-size'));
470
  }
471
 
@@ -1368,8 +1409,8 @@ var crellyslider_vimeo_api_ready = false;
1368
  getYoutubePlayer(element).playVideo();
1369
  }
1370
 
1371
- // If was paused
1372
- if(getYoutubePlayerState(element) == 2) {
1373
  getYoutubePlayer(element).playVideo();
1374
  }
1375
 
@@ -1412,7 +1453,7 @@ var crellyslider_vimeo_api_ready = false;
1412
  }
1413
 
1414
  // If was paused
1415
- if(getVimeoPlayer(element).api('paused') && ! vimeo_videos[element.attr('id')].ended && vimeo_videos[element.attr('id')].played_once) {
1416
  getVimeoPlayer(element).api('play');
1417
  }
1418
  }
2
  * Plugin Name: Crelly Slider
3
  * Plugin URI: https://wordpress.org/plugins/crelly-slider/
4
  * Description: A free responsive slider that supports layers. Add texts, images, videos and beautify them with transitions and animations.
5
+ * Version: 1.3.0
6
  * Author: Fabio Rinaldi
7
  * Author URI: https://github.com/fabiorino
8
  * License: MIT
107
  }
108
  else {
109
  init();
110
+ }
111
 
112
  // Returns an array like this: {youtube = true, vimeo = false} if there are YouTube videos but not Vimeo videos
113
  // This function can be called before init()
193
  'time' : 'all',
194
  });
195
 
196
+ setPreloader();
197
 
198
  initVideos().done(function() {
199
  // Timeout needed to prevent compatibility issues
207
  }
208
 
209
  // Orders the slides by rearranging them in the DOM
210
+ function orderSlides() {
211
+ // If randomOrder is disabled and the initial slide is the first, the slides are already ordered
212
+ if(! settings.randomOrder && settings.startFromSlide == 0) {
213
+ return;
214
+ }
215
+
216
+ var slides_order = new Array();
217
+ var ordered_slides = new Array();
218
+
219
+ // Set the first slide according to the settings
220
+ if(settings.startFromSlide == -1) {
221
+ var index = Math.floor((Math.random() * total_slides));
222
+ slides_order[0] = index;
223
+ ordered_slides[0] = getSlide(index);
224
+ }
225
+ else {
226
+ slides_order[0] = settings.startFromSlide;
227
+ ordered_slides[0] = getSlide(settings.startFromSlide);
228
+ }
229
+
230
+ // Set all the other slides
231
+ for(var i = 1; i < total_slides; i++) {
232
+ var index;
233
+
234
+ if(settings.randomOrder) { // Get a random slide index that was never generated before
235
+ do {
236
+ index = Math.floor((Math.random() * total_slides));
237
+ } while(slides_order.indexOf(index) != -1);
238
+ }
239
+ else { // Get the next index
240
+ if(i + slides_order[0] < total_slides) {
241
+ index = i + slides_order[0];
242
+ }
243
+ else {
244
+ index = i + slides_order[0] - total_slides;
245
+ }
246
+ }
247
+
248
+ slides_order[i] = index;
249
+ ordered_slides[i] = getSlide(index);
250
+ }
251
+
252
+ // Delete all the slides
253
+ SLIDER.find(CRELLY).find(SLIDES).empty();
254
+
255
+ // Put the slides that are now ordered
256
+ for(var i = 0; i < total_slides; i++) {
257
+ SLIDER.find(CRELLY).find(SLIDES).append(ordered_slides[i]);
258
+ }
259
  }
260
 
261
  // Inits Youtube and Vimeo videos
323
  if(e.data === YT.PlayerState.ENDED && getItemData(element, 'loop')) {
324
  player.playVideo();
325
  }
326
+
327
+ if(can_pause) {
328
+ if(e.data === YT.PlayerState.PAUSED) {
329
+ youtube_videos[element.attr('id')].manually_paused = true;
330
+ }
331
+ if(e.data === YT.PlayerState.PLAYING) {
332
+ youtube_videos[element.attr('id')].manually_paused = false;
333
+ }
334
+ }
335
  },
336
  },
337
  });
338
 
339
  temp = {
340
  player : player,
341
+ played_once : false,
342
+ manually_paused : false,
343
  };
344
 
345
  youtube_videos[element.attr('id')] = temp;
382
  player.addEvent('play', function() {
383
  vimeo_videos[element.attr('id')].played_once = true;
384
  vimeo_videos[element.attr('id')].ended = false;
385
+
386
+ if(can_pause) {
387
+ vimeo_videos[element.attr('id')].manually_paused = false;
388
+ }
389
+ });
390
+
391
+ player.addEvent('pause', function() {
392
+ if(can_pause) {
393
+ vimeo_videos[element.attr('id')].manually_paused = true;
394
+ }
395
  });
396
 
397
  if(getItemData(element, 'loop')) {
408
  player : player,
409
  played_once : false,
410
  ended : false,
411
+ manually_paused : false,
412
  };
413
 
414
  vimeo_videos[element.attr('id')] = temp;
450
  getSlides().each(function() {
451
  var slide = $(this);
452
 
453
+ // First, init everything which is not a video
454
+ slide.find(ELEMENTS).not('.cs-yt-iframe, .cs-vimeo-iframe').each(function() {
455
  var element = $(this);
456
 
457
  // Clone the element and get its real properties (avoids width and height = 0). Then replace the original element
472
  element.remove();
473
  });
474
 
475
+ // Then, let's manage videos differently: the elements cannot be cloned and replaced, or the (already initialized) players will be deatached from the DOM
476
+ slide.find('.cs-yt-iframe, .cs-vimeo-iframe').each(function() {
477
+ var element = $(this);
478
+
479
+ element.find('*').each(function() {
480
+ var element_content = $(this);
481
+ setElementData(element_content, true);
482
+ });
483
+
484
+ setElementData(element, false);
485
+ });
486
+
487
  slide.css('display', 'none');
488
  slide.data('opacity', parseFloat(slide.css('opacity')));
489
  });
497
  element.data('font-size', parseFloat(element.css('font-size')));
498
 
499
  if(element.css('line-height').slice(-2).toLowerCase() == 'px') {
500
+ // if pixel values are given, use those
501
  element.data('line-height', parseFloat(element.css('line-height')));
502
  }
503
+ else if(element.css('line-height') == 'normal') {
504
+ // if the browser returns 'normal' then use a default factor of 1.15 * font-size
505
+ // see: http://meyerweb.com/eric/thoughts/2008/05/06/line-height-abnormal/
506
+ element.data('line-height', getItemData(element, 'font-size') * 1.15);
507
+ }
508
  else {
509
+ // otherwise assume that the returned value is a factor and multiply it with the font-size
510
  element.data('line-height', parseFloat(element.css('line-height')) * getItemData(element, 'font-size'));
511
  }
512
 
1409
  getYoutubePlayer(element).playVideo();
1410
  }
1411
 
1412
+ // If was paused, but not manually
1413
+ if(getYoutubePlayerState(element) == 2 && !youtube_videos[element.attr('id')].manually_paused) {
1414
  getYoutubePlayer(element).playVideo();
1415
  }
1416
 
1453
  }
1454
 
1455
  // If was paused
1456
+ if(getVimeoPlayer(element).api('paused') && ! vimeo_videos[element.attr('id')].ended && vimeo_videos[element.attr('id')].played_once && !vimeo_videos[element.attr('id')].manually_paused) {
1457
  getVimeoPlayer(element).api('play');
1458
  }
1459
  }
js/jquery.crellyslider.min.js CHANGED
@@ -2,10 +2,10 @@
2
  * Plugin Name: Crelly Slider
3
  * Plugin URI: https://wordpress.org/plugins/crelly-slider/
4
  * Description: A free responsive slider that supports layers. Add texts, images, videos and beautify them with transitions and animations.
5
- * Version: 1.2.3
6
  * Author: Fabio Rinaldi
7
  * Author URI: https://github.com/fabiorino
8
  * License: MIT
9
  */
10
 
11
- var crellyslider_youtube_api_ready=!1,crellyslider_vimeo_api_ready=!1;!function(a){function b(){var a=document.createElement("script");a.src="https://www.youtube.com/iframe_api";var b=document.getElementsByTagName("script")[0];b.parentNode.insertBefore(a,b),crellyslider_youtube_api_ready=!0}function c(){(function(){function a(b){return new a.fn.init(b)}function b(a,b,c){return!!c.contentWindow.postMessage&&(a=JSON.stringify({method:a,value:b}),void c.contentWindow.postMessage(a,g))}function c(a){var b,c;try{b=JSON.parse(a.data),c=b.event||b.method}catch(a){}if("ready"!=c||f||(f=!0),!/^https?:\/\/player.vimeo.com/.test(a.origin))return!1;"*"===g&&(g=a.origin),a=b.value;var d=b.data,h=""===h?null:b.player_id;return b=h?e[h][c]:e[c],c=[],!!b&&(void 0!==a&&c.push(a),d&&c.push(d),h&&c.push(h),0<c.length?b.apply(null,c):b.call())}function d(a,b,c){c?(e[c]||(e[c]={}),e[c][a]=b):e[a]=b}var e={},f=!1,g="*";return a.fn=a.prototype={element:null,init:function(a){return"string"==typeof a&&(a=document.getElementById(a)),this.element=a,this},api:function(a,c){if(!this.element||!a)return!1;var e=this.element,f=""!==e.id?e.id:null,g=c&&c.constructor&&c.call&&c.apply?null:c,h=c&&c.constructor&&c.call&&c.apply?c:null;return h&&d(a,h,f),b(a,g,e),this},addEvent:function(a,c){if(!this.element)return!1;var e=this.element,g=""!==e.id?e.id:null;return d(a,c,g),"ready"!=a?b("addEventListener",a,e):"ready"==a&&f&&c.call(null,g),this},removeEvent:function(a){if(!this.element)return!1;var c=this.element,d=""!==c.id?c.id:null;a:{if(d&&e[d]){if(!e[d][a]){d=!1;break a}e[d][a]=null}else{if(!e[a]){d=!1;break a}e[a]=null}d=!0}"ready"!=a&&d&&b("removeEventListener",a,c)}},a.fn.init.prototype=a.fn,window.addEventListener?window.addEventListener("message",c,!1):window.attachEvent("onmessage",c),window.Froogaloop=window.$f=a})();crellyslider_vimeo_api_ready=!0}!function(a,b,c){"function"==typeof define&&define.amd?define(["jquery"],function(d){return c(d,a,b),d.mobile}):c(a.jQuery,a,b)}(this,document,function(a,b,c,d){!function(a,b,c,d){function e(a){for(;a&&"undefined"!=typeof a.originalEvent;)a=a.originalEvent;return a}function f(b,c){var g,h,i,j,k,l,m,n,o,f=b.type;if(b=a.Event(b),b.type=c,g=b.originalEvent,h=a.event.props,f.search(/^(mouse|click)/)>-1&&(h=C),g)for(m=h.length,j;m;)j=h[--m],b[j]=g[j];if(f.search(/mouse(down|up)|click/)>-1&&!b.which&&(b.which=1),f.search(/^touch/)!==-1&&(i=e(g),f=i.touches,k=i.changedTouches,l=f&&f.length?f[0]:k&&k.length?k[0]:d,l))for(n=0,o=A.length;n<o;n++)j=A[n],b[j]=l[j];return b}function g(b){for(var d,e,c={};b;){d=a.data(b,x);for(e in d)d[e]&&(c[e]=c.hasVirtualBinding=!0);b=b.parentNode}return c}function h(b,c){for(var d;b;){if(d=a.data(b,x),d&&(!c||d[c]))return b;b=b.parentNode}return null}function i(){K=!1}function j(){K=!0}function k(){O=0,I.length=0,J=!1,j()}function l(){i()}function m(){n(),E=setTimeout(function(){E=0,k()},a.vmouse.resetTimerDuration)}function n(){E&&(clearTimeout(E),E=0)}function o(b,c,d){var e;return(d&&d[b]||!d&&h(c.target,b))&&(e=f(c,b),a(c.target).trigger(e)),e}function p(b){var d,c=a.data(b.target,y);!J&&(!O||O!==c)&&(d=o("v"+b.type,b),d&&(d.isDefaultPrevented()&&b.preventDefault(),d.isPropagationStopped()&&b.stopPropagation(),d.isImmediatePropagationStopped()&&b.stopImmediatePropagation()))}function q(b){var d,f,h,c=e(b).touches;c&&1===c.length&&(d=b.target,f=g(d),f.hasVirtualBinding&&(O=N++,a.data(d,y,O),n(),l(),H=!1,h=e(b).touches[0],F=h.pageX,G=h.pageY,o("vmouseover",b,f),o("vmousedown",b,f)))}function r(a){K||(H||o("vmousecancel",a,g(a.target)),H=!0,m())}function s(b){if(!K){var c=e(b).touches[0],d=H,f=a.vmouse.moveDistanceThreshold,h=g(b.target);H=H||Math.abs(c.pageX-F)>f||Math.abs(c.pageY-G)>f,H&&!d&&o("vmousecancel",b,h),o("vmousemove",b,h),m()}}function t(a){if(!K){j();var c,d,b=g(a.target);o("vmouseup",a,b),H||(c=o("vclick",a,b),c&&c.isDefaultPrevented()&&(d=e(a).changedTouches[0],I.push({touchID:O,x:d.clientX,y:d.clientY}),J=!0)),o("vmouseout",a,b),H=!1,m()}}function u(b){var d,c=a.data(b,x);if(c)for(d in c)if(c[d])return!0;return!1}function v(){}function w(b){var c=b.substr(1);return{setup:function(){u(this)||a.data(this,x,{});var d=a.data(this,x);d[b]=!0,D[b]=(D[b]||0)+1,1===D[b]&&M.bind(c,p),a(this).bind(c,v),L&&(D.touchstart=(D.touchstart||0)+1,1===D.touchstart&&M.bind("touchstart",q).bind("touchend",t).bind("touchmove",s).bind("scroll",r))},teardown:function(){--D[b],D[b]||M.unbind(c,p),L&&(--D.touchstart,D.touchstart||M.unbind("touchstart",q).unbind("touchmove",s).unbind("touchend",t).unbind("scroll",r));var d=a(this),e=a.data(this,x);e&&(e[b]=!1),d.unbind(c,v),u(this)||d.removeData(x)}}}var P,Q,x="virtualMouseBindings",y="virtualTouchID",z="vmouseover vmousedown vmousemove vmouseup vclick vmouseout vmousecancel".split(" "),A="clientX clientY pageX pageY screenX screenY".split(" "),B=a.event.mouseHooks?a.event.mouseHooks.props:[],C=a.event.props.concat(B),D={},E=0,F=0,G=0,H=!1,I=[],J=!1,K=!1,L="addEventListener"in c,M=a(c),N=1,O=0;for(a.vmouse={moveDistanceThreshold:10,clickDistanceThreshold:10,resetTimerDuration:1500},Q=0;Q<z.length;Q++)a.event.special[z[Q]]=w(z[Q]);L&&c.addEventListener("click",function(b){var e,f,g,h,i,j,c=I.length,d=b.target;if(c)for(e=b.clientX,f=b.clientY,P=a.vmouse.clickDistanceThreshold,g=d;g;){for(h=0;h<c;h++)if(i=I[h],j=0,g===d&&Math.abs(i.x-e)<P&&Math.abs(i.y-f)<P||a.data(g,y)===i.touchID)return b.preventDefault(),void b.stopPropagation();g=g.parentNode}},!0)}(a,b,c),function(a){a.mobile={}}(a),function(a,b){var d={touch:"ontouchend"in c};a.mobile.support=a.mobile.support||{},a.extend(a.support,d),a.extend(a.mobile.support,d)}(a),function(a,b,d){function e(b,c,e,f){var g=e.type;e.type=c,f?a.event.trigger(e,d,b):a.event.dispatch.call(b,e),e.type=g}var f=a(c),g=a.mobile.support.touch,h="touchmove scroll",i=g?"touchstart":"mousedown",j=g?"touchend":"mouseup",k=g?"touchmove":"mousemove";a.each("touchstart touchmove touchend tap taphold swipe swipeleft swiperight scrollstart scrollstop".split(" "),function(b,c){a.fn[c]=function(a){return a?this.bind(c,a):this.trigger(c)},a.attrFn&&(a.attrFn[c]=!0)}),a.event.special.scrollstart={enabled:!0,setup:function(){function b(a,b){f=b,e(c,f?"scrollstart":"scrollstop",a)}var f,g,c=this,d=a(c);d.bind(h,function(c){a.event.special.scrollstart.enabled&&(f||b(c,!0),clearTimeout(g),g=setTimeout(function(){b(c,!1)},50))})},teardown:function(){a(this).unbind(h)}},a.event.special.tap={tapholdThreshold:750,emitTapOnTaphold:!0,setup:function(){var b=this,c=a(b),d=!1;c.bind("vmousedown",function(g){function h(){clearTimeout(l)}function i(){h(),c.unbind("vclick",j).unbind("vmouseup",h),f.unbind("vmousecancel",i)}function j(a){i(),d||k!==a.target?d&&a.preventDefault():e(b,"tap",a)}if(d=!1,g.which&&1!==g.which)return!1;var l,k=g.target;c.bind("vmouseup",h).bind("vclick",j),f.bind("vmousecancel",i),l=setTimeout(function(){a.event.special.tap.emitTapOnTaphold||(d=!0),e(b,"taphold",a.Event("taphold",{target:k}))},a.event.special.tap.tapholdThreshold)})},teardown:function(){a(this).unbind("vmousedown").unbind("vclick").unbind("vmouseup"),f.unbind("vmousecancel")}},a.event.special.swipe={scrollSupressionThreshold:30,durationThreshold:1e3,horizontalDistanceThreshold:30,verticalDistanceThreshold:30,getLocation:function(a){var c=b.pageXOffset,d=b.pageYOffset,e=a.clientX,f=a.clientY;return 0===a.pageY&&Math.floor(f)>Math.floor(a.pageY)||0===a.pageX&&Math.floor(e)>Math.floor(a.pageX)?(e-=c,f-=d):(f<a.pageY-d||e<a.pageX-c)&&(e=a.pageX-c,f=a.pageY-d),{x:e,y:f}},start:function(b){var c=b.originalEvent.touches?b.originalEvent.touches[0]:b,d=a.event.special.swipe.getLocation(c);return{time:(new Date).getTime(),coords:[d.x,d.y],origin:a(b.target)}},stop:function(b){var c=b.originalEvent.touches?b.originalEvent.touches[0]:b,d=a.event.special.swipe.getLocation(c);return{time:(new Date).getTime(),coords:[d.x,d.y]}},handleSwipe:function(b,c,d,f){if(c.time-b.time<a.event.special.swipe.durationThreshold&&Math.abs(b.coords[0]-c.coords[0])>a.event.special.swipe.horizontalDistanceThreshold&&Math.abs(b.coords[1]-c.coords[1])<a.event.special.swipe.verticalDistanceThreshold){var g=b.coords[0]>c.coords[0]?"swipeleft":"swiperight";return e(d,"swipe",a.Event("swipe",{target:f,swipestart:b,swipestop:c}),!0),e(d,g,a.Event(g,{target:f,swipestart:b,swipestop:c}),!0),!0}return!1},eventInProgress:!1,setup:function(){var b,c=this,d=a(c),e={};b=a.data(this,"mobile-events"),b||(b={length:0},a.data(this,"mobile-events",b)),b.length++,b.swipe=e,e.start=function(b){if(!a.event.special.swipe.eventInProgress){a.event.special.swipe.eventInProgress=!0;var d,g=a.event.special.swipe.start(b),h=b.target,i=!1;e.move=function(b){g&&!b.isDefaultPrevented()&&(d=a.event.special.swipe.stop(b),i||(i=a.event.special.swipe.handleSwipe(g,d,c,h),i&&(a.event.special.swipe.eventInProgress=!1)),Math.abs(g.coords[0]-d.coords[0])>a.event.special.swipe.scrollSupressionThreshold&&b.preventDefault())},e.stop=function(){i=!0,a.event.special.swipe.eventInProgress=!1,f.off(k,e.move),e.move=null},f.on(k,e.move).one(j,e.stop)}},d.on(i,e.start)},teardown:function(){var b,c;b=a.data(this,"mobile-events"),b&&(c=b.swipe,delete b.swipe,b.length--,0===b.length&&a.removeData(this,"mobile-events")),c&&(c.start&&a(this).off(i,c.start),c.move&&f.off(k,c.move),c.stop&&f.off(j,c.stop))}},a.each({scrollstop:"scrollstart",taphold:"tap",swipeleft:"swipe.left",swiperight:"swipe.right"},function(b,c){a.event.special[b]={setup:function(){a(this).bind(c,a.noop)},teardown:function(){a(this).unbind(c)}}})}(a,this)}),a.CrellySlider=function(d,e){function y(a){return"youtube"==a?f.find(".cs-yt-iframe").length>0:"vimeo"==a?f.find(".cs-vimeo-iframe").length>0:-1}function z(){if(f.wrapInner('<div class="crellyslider" />'),f.find(g+" > ul").addClass("cs-slides"),f.find(g+" "+h+" > li").addClass("cs-slide"),k=Z().length,0==k)return!1;if(1==k){var a=$(0),b=f.find(g).find(h);a.clone().prependTo(b),k++}if(A(),e.showControls&&f.find(g).append('<div class="cs-controls"><span class="cs-next"></span><span class="cs-previous"></span></div>'),e.showNavigation){for(var c='<div class="cs-navigation">',d=0;d<k;d++)c+='<span class="cs-slide-link"></span>';c+="</div>",f.find(g).append(c)}e.showProgressBar?f.find(g).append('<div class="cs-progress-bar"></div>'):f.find(g).append('<div class="cs-progress-bar cs-progress-bar-hidden"></div>'),f.css("display","block"),e.responsive&&O(),K(),Z().find(".cs-background-link").html(" ").data({left:0,top:0,in:"none",out:"none",easeIn:0,easeOut:0,delay:0,time:"all"}),I(),B().done(function(){var a=setInterval(function(){"complete"==document.readyState&&f.find(g).find(".cs-preloader").length>0&&(clearInterval(a),E())},100)})}function A(){if(e.randomOrder||0!=e.startFromSlide){var a=new Array,b=new Array;if(e.startFromSlide==-1){var c=Math.floor(Math.random()*k);a[0]=c,b[0]=$(c)}else a[0]=e.startFromSlide,b[0]=$(e.startFromSlide);for(var d=1;d<k;d++){var c;if(e.randomOrder){do c=Math.floor(Math.random()*k);while(a.indexOf(c)!=-1)}else c=d+a[0]<k?d+a[0]:d+a[0]-k;a[d]=c,b[d]=$(c)}f.find(g).find(h).empty();for(var d=0;d<k;d++)f.find(g).find(h).append(b[d])}}function B(){var b=new a.Deferred,c=Z().find(".cs-yt-iframe, .cs-vimeo-iframe").length,d=0;return 0==c?b.resolve().promise():(Z().find(".cs-yt-iframe, .cs-vimeo-iframe").each(function(){var e=a(this);e.one("load",function(){d++,d==c&&C().done(function(){D().done(function(){b.resolve()})})})}),b.promise())}function C(){var f,b=new a.Deferred,c=Z(),d=c.find(j+".cs-yt-iframe").length,e=0;return 0==d?b.resolve().promise():(c.each(function(){var c=a(this),g=c.find(j+".cs-yt-iframe");g.each(function(){var c=a(this);c.uniqueId(),c.attr("id","cs-yt-iframe-"+c.attr("id"));var g=new YT.Player(c.attr("id"),{events:{onReady:function(){e++,e==d&&b.resolve()},onStateChange:function(a){a.data===YT.PlayerState.ENDED&&Y(c,"loop")&&g.playVideo()}}});f={player:g,played_once:!1},t[c.attr("id")]=f})}),b.promise())}function D(){var f,b=new a.Deferred,c=Z(),d=c.find(j+".cs-vimeo-iframe").length,e=0;return 0==d?b.resolve().promise():(c.each(function(){var c=a(this),g=c.find(j+".cs-vimeo-iframe");g.each(function(){var c=a(this);c.uniqueId(),c.attr("id","cs-vimeo-iframe-"+c.attr("id")),c.attr("src",c.attr("src")+"&player_id="+c.attr("id"));var g=$f(c[0]);g.addEvent("ready",function(){g.addEvent("finish",function(){u[c.attr("id")].ended=!0}),g.addEvent("play",function(){u[c.attr("id")].played_once=!0,u[c.attr("id")].ended=!1}),Y(c,"loop")&&g.api("setLoop",!0),e++,e==d&&b.resolve()}),f={player:g,played_once:!1,ended:!1},u[c.attr("id")]=f})}),b.promise())}function E(){e.responsive&&O(),K(),w=a(window).width(),F(),H(),J(),e.beforeStart(),e.responsive?M():Q()}function F(){Z().each(function(){var b=a(this);b.find(j).each(function(){var b=a(this);b.find("*").each(function(){var b=a(this);G(b,!0)}),G(b,!1)}),b.css("display","none"),b.data("opacity",parseFloat(b.css("opacity")))})}function G(a,b){a.data("width",parseFloat(a.width())),a.data("height",parseFloat(a.height())),a.data("letter-spacing",parseFloat(a.css("letter-spacing"))),a.data("font-size",parseFloat(a.css("font-size"))),"px"==a.css("line-height").slice(-2).toLowerCase()?a.data("line-height",parseFloat(a.css("line-height"))):a.data("line-height",parseFloat(a.css("line-height"))*Y(a,"font-size")),a.data("padding-top",parseFloat(a.css("padding-top"))),a.data("padding-right",parseFloat(a.css("padding-right"))),a.data("padding-bottom",parseFloat(a.css("padding-bottom"))),a.data("padding-left",parseFloat(a.css("padding-left"))),a.data("opacity",parseFloat(a.css("opacity"))),b||a.css("display","none")}function H(){e.responsive&&a(window).resize(function(){w!=a(window).width()&&("full-width"==e.layout&&U()!=a(f).width()||a(f).width()<U()||a(f).width()>U()&&U()<e.startWidth)&&M()}),f.find(g).find(".cs-controls > .cs-previous").click(function(){fa(X())}),f.find(g).find(".cs-controls > .cs-next").click(function(){fa(W())}),e.enableSwipe&&(f.find(g).on("swipeleft",function(){T(),fa(W())}),f.find(g).on("swiperight",function(){T(),fa(X())})),f.find(g).find(".cs-navigation > .cs-slide-link").click(function(){fa(a(this).index())}),e.pauseOnHover&&(f.find(g).find(h).hover(function(){S()}),f.find(g).find(h).mouseleave(function(){T()}))}function I(){function c(){f.find(g).append('<div class="cs-preloader"><div class="cs-bg"></div><div class="cs-loader"><div class="cs-spinner"></div></div></div>'),f.find(g).find(".cs-preloader").css({"background-color":$(l).css("background-color"),"background-image":$(l).css("background-image"),"background-position":$(l).css("background-position"),"background-repeat":$(l).css("background-repeat"),"background-size":$(l).css("background-size")}),f.find(g).find(".cs-preloader > .cs-bg").css({"background-color":$(l).css("background-color"),"background-image":$(l).css("background-image"),"background-position":$(l).css("background-position"),"background-repeat":$(l).css("background-repeat"),"background-size":$(l).css("background-size")})}f.find(g).find(h).css("visibility","hidden"),f.find(g).find(".cs-progress-bar").css("display","none"),f.find(g).find(".cs-navigation").css("display","none"),f.find(g).find(".cs-controls").css("display","none");var b=$(0).css("background-image");b=b.replace(/^url\(["']?/,"").replace(/["']?\)$/,""),b.match(/\.(jpeg|jpg|gif|png|bmp|tiff|tif)$/)?a("<img>").load(function(){c()}).attr("src",b).each(function(){this.complete&&a(this).load()}):c()}function J(){f.find(g).find(h).css("visibility","visible"),f.find(g).find(".cs-progress-bar").css("display","block"),f.find(g).find(".cs-navigation").css("display","block"),f.find(g).find(".cs-controls").css("display","block"),ya($(0)),$(0).finish(),f.find(g).find(".cs-preloader").animate({opacity:0},300,function(){f.find(g).find(".cs-preloader").remove()})}function K(){var b,c,a=e.layout;switch(a){case"fixed":b=e.startWidth,c=e.startHeight,f.find(g).css({width:P(b),height:P(c)}),Z().css({width:P(b),height:P(c)});break;case"full-width":b=f.width(),c=e.startHeight,f.find(g).css({width:b,height:P(c)}),Z().css({width:b,height:P(c)});break;default:return!1}}function L(a){var b=(V()-e.startHeight)/2,c=(U()-e.startWidth)/2,d=0,f=0;return b>0&&(d=b),c>0&&(f=c),{top:d,left:f}}function M(){e.beforeSetResponsive();var b=Z();R(!0),b.each(function(){var b=a(this),c=b.find(j);b.finish(),ya(b),b.finish(),c.each(function(){var b=a(this);b.finish(),Aa(b),b.finish(),ja(b)&&ma(b)})}),O(),K(),b.each(function(){var b=a(this),c=b.find(j);c.each(function(){var b=a(this);b.find("*").each(function(){var b=a(this);N(b)}),N(b),b.finish(),Ba(b),b.finish(),ja(b)&&ma(b)}),b.finish(),za(b),b.finish()}),w=a(window).width(),Q()}function N(a){a.css({top:P(Y(a,"top")+L(a).top),left:P(Y(a,"left")+L(a).left),"padding-top":P(Y(a,"padding-top")),"padding-right":P(Y(a,"padding-right")),"padding-bottom":P(Y(a,"padding-bottom")),"padding-left":P(Y(a,"padding-left"))}),a.is("input")||a.is("button")||a.text().trim().length?a.css({"line-height":P(Y(a,"line-height"))+"px","letter-spacing":P(Y(a,"letter-spacing")),"font-size":P(Y(a,"font-size"))}):a.css({width:P(Y(a,"width")),height:P(Y(a,"height"))})}function O(){var a=f.width(),b=e.startWidth;v=a>=b||!e.responsive?1:a/b}function P(a){return a*v}function Q(){e.automaticSlide?ba():ga(l),p=!1}function R(b){for(var c=0;c<r.length;c++)r[c].clear();for(var c=0;c<s.length;c++)s[c].clear();q.clear(),Z().each(function(){var c=a(this);b?c.finish():c.stop(!0,!0),c.find(j).each(function(){var c=a(this);b?c.finish():c.stop(!0,!0)})}),da()}function S(){if(!m&&n){e.beforePause();var a=f.find(g).find(".cs-progress-bar");a.stop(!0),q.pause(),m=!0}}function T(){if(m&&n){e.beforeResume();var a=f.find(g).find(".cs-progress-bar"),c=(Y($(l),"time"),q.getRemaining());a.animate({width:"100%"},c),q.resume(),m=!1}}function U(){return f.find(g).width()}function V(){return f.find(g).height()}function W(){return l+1==k?0:l+1}function X(){return l-1<0?k-1:l-1}function Y(a,b){var c;switch(c=!!a.parent("ul").hasClass("cs-slides"),b){case"ease-in":return c?isNaN(parseInt(a.data(b)))?e.slidesEaseIn:parseInt(a.data(b)):isNaN(parseInt(a.data(b)))?e.elementsEaseIn:parseInt(a.data(b));case"ease-out":return c?isNaN(parseInt(a.data(b)))?e.slidesEaseOut:parseInt(a.data(b)):isNaN(parseInt(a.data(b)))?e.elementsEaseOut:parseInt(a.data(b));case"delay":return isNaN(parseInt(a.data(b)))?e.elementsDelay:parseInt(a.data(b));case"time":return c?isNaN(parseInt(a.data(b)))?e.slidesTime:parseInt(a.data(b)):"all"==a.data(b)?"all":isNaN(parseInt(a.data(b)))?e.itemsTime:parseInt(a.data(b));case"ignore-ease-out":return 1==parseInt(a.data(b))||0!=parseInt(a.data(b))&&e.ignoreElementsEaseOut;case"autoplay":return 1==parseInt(a.data(b))||0!=parseInt(a.data(b))&&e.videoAutoplay;case"loop":return 1==parseInt(a.data(b))||0!=parseInt(a.data(b))&&e.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(a.data(b)))?0:parseFloat(a.data(b));case"in":case"out":case"opacity":return a.data(b);default:return!1}}function Z(){return f.find(g).find(h).find(i)}function $(a){return Z().eq(a)}function _(a,b){var c,d,e=b;this.pause=function(){clearTimeout(c),e-=new Date-d},this.resume=function(){d=new Date,clearTimeout(c),c=window.setTimeout(function(){a()},e)},this.clear=function(){clearTimeout(c)},this.getRemaining=function(){return e},this.resume()}function aa(){return/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)}function ba(){ga(l).done(function(){m||(l=W(),ba())})}function ca(){var a=f.find(g).find(".cs-progress-bar");da(),a.animate({width:"100%"},Y($(l),"time"))}function da(){var a=f.find(g).find(".cs-progress-bar");a.stop(),a.css("width",0)}function ea(){var b=f.find(g).find(".cs-navigation"),c=b.find("> .cs-slide-link");c.each(function(){var b=a(this);b.index()==l?b.addClass("cs-active"):b.removeClass("cs-active")})}function fa(a){a!=l&&(n||o)&&(R(!1),ia(l,!1,!0).done(function(){l=a,Q()}))}function ga(b){e.beforeSlideStart();var c=new a.Deferred;o=!1;for(var d=0;d<r.length;d++)r[d].clear();for(var d=0;d<s.length;d++)s[d].clear();q.clear(),$(b).finish(),za(b),$(b).finish();var f=$(b).find(j);return f.each(function(){var b=a(this);b.finish(),Ba(b),b.finish()}),ea(),ha(b),e.automaticSlide?ia(b,!0,!0).done(function(){o=!0,c.resolve()}):ia(b,!0,!1).done(function(){o=!0,c.resolve()}),c.promise()}function ha(b){var c=$(b),d=c.find(j),e=0,f=!1,g=new a.Deferred;return n=!1,ya(b).done(function(){ca(),n=!0,f=!0,f&&e==d.length&&g.resolve()}),d.each(function(){var b=a(this),c=Y(b,"delay");s.push(new _(function(){Aa(b).done(function(){ja(b)&&ka(b),e++,f&&e==d.length&&g.resolve()})},c))}),g.promise()}function ia(b,c,d){var e=$(b),f=e.find(j),g=c?Y(e,"time")+Y(e,"ease-in"):0,h=0,i=!1,k=new a.Deferred;return f.each(function(){var e=a(this),g=Y(e,"time");if("all"!=g){var j=c?g:0;Y(e,"ignore-ease-out")&&(h++,f.length==h&&i&&d&&(la(b),za(b),k.resolve())),r.push(new _(function(){Ba(e).done(function(){Y(e,"ignore-ease-out")||(h++,f.length==h&&i&&d&&(la(b),za(b),k.resolve()))})},j))}}),q=new _(function(){n=!1,da(),i=!0,f.length==h&&i&&d&&(la(b),za(b),k.resolve()),d?f.each(function(){var c=a(this),e=Y(c,"time");"all"==e&&(Y(c,"ignore-ease-out")&&(h++,f.length==h&&i&&d&&(la(b),za(b),k.resolve())),Ba(c).done(function(){Y(c,"ignore-ease-out")||(h++,f.length==h&&i&&d&&(la(b),za(b),k.resolve()))}))}):k.resolve()},g),k.promise()}function ja(a){return na(a)||ta(a)}function ka(a){na(a)?qa(a):va(a)}function la(a){ra(a),wa(a)}function ma(a){na(a)?sa(a):xa(a)}function na(a){return a.hasClass("cs-yt-iframe")}function oa(a){return t[a.attr("id")].player}function pa(a){return oa(a).getPlayerState()}function qa(a){!Y(a,"autoplay")||t[a.attr("id")].played_once||aa()||oa(a).playVideo(),2==pa(a)&&oa(a).playVideo(),t[a.attr("id")].played_once=!0}function ra(b){$(b).each(function(){var b=a(this);b.find(j+".cs-yt-iframe").each(function(){sa(a(this))})})}function sa(a){1==pa(a)&&oa(a).pauseVideo()}function ta(a){return a.hasClass("cs-vimeo-iframe")}function ua(a){return u[a.attr("id")].player}function va(a){!Y(a,"autoplay")||u[a.attr("id")].played_once||aa()||ua(a).api("play"),ua(a).api("paused")&&!u[a.attr("id")].ended&&u[a.attr("id")].played_once&&ua(a).api("play")}function wa(b){$(b).each(function(){var b=a(this);b.find(j+".cs-vimeo-iframe").each(function(){xa(a(this))})})}function xa(a){ua(a).api("pause")}function ya(b){var c=$(b),d=Y(c,"in"),e=Y(c,"ease-in"),f=new a.Deferred;if("block"==c.css("display"))return f.resolve().promise();if(p)return c.css({display:"block",top:0,left:0,opacity:Y(c,"opacity")}),f.resolve().promise();switch(d){case"fade":c.css({display:"block",top:0,left:0,opacity:0}),c.animate({opacity:Y(c,"opacity")},e,function(){f.resolve()});break;case"fadeLeft":c.css({display:"block",top:0,left:U(),opacity:0}),c.animate({opacity:Y(c,"opacity"),left:0},e,function(){f.resolve()});break;case"fadeRight":c.css({display:"block",top:0,left:-U(),opacity:0}),c.animate({opacity:Y(c,"opacity"),left:0},e,function(){f.resolve()});break;case"slideLeft":c.css({display:"block",top:0,left:U(),opacity:Y(c,"opacity")}),c.animate({left:0},e,function(){f.resolve()});break;case"slideRight":c.css({display:"block",top:0,left:-U(),opacity:Y(c,"opacity")}),c.animate({left:0},e,function(){f.resolve()});break;case"slideUp":c.css({display:"block",top:V(),left:0,opacity:Y(c,"opacity")}),c.animate({top:0},e,function(){f.resolve()});break;case"slideDown":c.css({display:"block",top:-V(),left:0,opacity:Y(c,"opacity")}),c.animate({top:0},e,function(){f.resolve()});break;default:c.css({display:"block",top:0,left:0,opacity:Y(c,"opacity")}),f.resolve()}return f.promise()}function za(b){var c=$(b),d=Y(c,"out"),e=Y(c,"ease-out"),f=new a.Deferred;if("none"==c.css("display"))return f.resolve().promise();switch(d){case"fade":c.animate({opacity:0},e,function(){c.css({display:"none",opacity:Y(c,"opacity")}),f.resolve()});break;case"fadeLeft":c.animate({opacity:0,left:-U()},e,function(){c.css({display:"none",opacity:Y(c,"opacity"),left:0}),f.resolve()});break;case"fadeRight":c.animate({opacity:0,left:U()},e,function(){c.css({display:"none",opacity:Y(c,"opacity"),left:0}),f.resolve()});break;case"slideLeft":c.animate({left:-U()},e,function(){c.css({display:"none",left:0}),f.resolve()});break;case"slideRight":c.animate({left:U()},e,function(){c.css({display:"none",left:0}),f.resolve()});break;case"slideUp":c.animate({top:-V()},e,function(){c.css({display:"none",top:0}),f.resolve()});break;case"slideDown":c.animate({top:V()},e,function(){c.css({display:"none",top:0}),f.resolve()});break;default:c.css({display:"none"}),f.resolve()}return f.promise()}function Aa(b){var c=b.outerWidth(),d=b.outerHeight(),e=Y(b,"in"),f=Y(b,"ease-in"),g=Y(b,"top"),h=Y(b,"left"),i=new a.Deferred;if("block"==b.css("display"))return i.resolve().promise();switch(e){case"slideDown":b.css({display:"block",top:-d,left:P(h+L(b).left),opacity:Y(b,"opacity")}).animate({top:P(g+L(b).top)},f,function(){i.resolve()});break;case"slideUp":b.css({display:"block",top:V(),left:P(h+L(b).left),opacity:Y(b,"opacity")}).animate({top:P(g+L(b).top)},f,function(){i.resolve()});break;case"slideLeft":b.css({display:"block",top:P(g+L(b).top),left:U(),opacity:Y(b,"opacity")}).animate({left:P(h+L(b).left)},f,function(){i.resolve()});break;case"slideRight":b.css({display:"block",top:P(g+L(b).top),left:-c,opacity:Y(b,"opacity")}).animate({left:P(h+L(b).left)},f,function(){i.resolve()});break;case"fade":b.css({display:"block",top:P(g+L(b).top),left:P(h+L(b).left),opacity:0}).animate({opacity:Y(b,"opacity")},f,function(){i.resolve()});break;case"fadeDown":b.css({display:"block",top:-d,left:P(h+L(b).left),opacity:0}).animate({top:P(g+L(b).top),opacity:Y(b,"opacity")},f,function(){i.resolve()});break;case"fadeUp":b.css({display:"block",top:V(),left:P(h+L(b).left),opacity:0}).animate({top:P(g+L(b).top),opacity:Y(b,"opacity")},f,function(){i.resolve()});break;case"fadeLeft":b.css({display:"block",top:P(g+L(b).top),left:U(),opacity:0}).animate({left:P(h+L(b).left),opacity:Y(b,"opacity")},f,function(){i.resolve()});break;case"fadeRight":b.css({display:"block",top:P(g+L(b).top),left:-c,opacity:0}).animate({left:P(h+L(b).left),opacity:Y(b,"opacity")},f,function(){i.resolve()});break;case"fadeSmallDown":b.css({display:"block",top:P(g+L(b).top-30),left:P(h+L(b).left),opacity:0}).animate({top:P(g+L(b).top),opacity:Y(b,"opacity")},f,function(){i.resolve()});break;case"fadeSmallUp":b.css({display:"block",top:P(g+L(b).top+30),left:P(h+L(b).left),opacity:0}).animate({top:P(g+L(b).top),opacity:Y(b,"opacity")},f,function(){i.resolve()});break;case"fadeSmallLeft":b.css({display:"block",top:P(g+L(b).top),left:P(h+L(b).left+30),opacity:0}).animate({left:P(h+L(b).left),opacity:Y(b,"opacity")},f,function(){i.resolve()});break;case"fadeSmallRight":b.css({display:"block",top:P(g+L(b).top),left:P(h+L(b).left-30),opacity:0}).animate({left:P(h+L(b).left),opacity:Y(b,"opacity")},f,function(){i.resolve()});break;default:b.css({display:"block",top:P(g+L(b).top),left:P(h+L(b).left),opacity:Y(b,"opacity")}),i.resolve()}return i.promise()}function Ba(b){var c=b.outerWidth(),d=b.outerHeight(),e=Y(b,"out"),f=Y(b,"ease-out"),g=new a.Deferred;if("none"==b.css("display"))return g.resolve().promise();switch(e){case"slideDown":b.animate({top:V()},f,function(){b.css({display:"none"}),g.resolve()});break;case"slideUp":b.animate({top:-d},f,function(){b.css({display:"none"}),g.resolve()});break;case"slideLeft":b.animate({left:-c},f,function(){b.css({display:"none"}),g.resolve()});break;case"slideRight":b.animate({left:U()},f,function(){b.css({display:"none"}),g.resolve()});break;case"fade":b.animate({opacity:0},f,function(){b.css({display:"none",opacity:Y(b,"opacity")}),g.resolve()});break;case"fadeDown":b.animate({top:V(),opacity:0},f,function(){b.css({display:"none",opacity:Y(b,"opacity")}),g.resolve()});break;case"fadeUp":b.animate({top:-d,opacity:0},f,function(){b.css({display:"none",opacity:Y(b,"opacity")}),g.resolve()});break;case"fadeLeft":b.animate({left:-c,opacity:0},f,function(){b.css({display:"none",opacity:Y(b,"opacity")}),g.resolve()});break;case"fadeRight":b.animate({left:U(),opacity:0},f,function(){b.css({display:"none",opacity:Y(b,"opacity")}),g.resolve()});break;case"fadeSmallDown":b.animate({top:P(Y(b,"top")+L(b).top+30),opacity:0},f,function(){b.css({display:"none",opacity:Y(b,"opacity")}),g.resolve()});break;case"fadeSmallUp":b.animate({top:P(Y(b,"top")+L(b).top-30),opacity:0},f,function(){b.css({display:"none",opacity:Y(b,"opacity")}),g.resolve()});break;case"fadeSmallLeft":b.animate({left:P(Y(b,"left")+L(b).left-30),opacity:0},f,function(){b.css({display:"none",opacity:Y(b,"opacity")}),g.resolve()});break;case"fadeSmallRight":b.animate({left:P(Y(b,"left")+L(b).left+30),opacity:0},f,function(){b.css({display:"none",opacity:Y(b,"opacity")}),g.resolve()});break;default:b.css({display:"none"}),g.resolve()}return g.promise()}var k,f=a(d),g="div.crellyslider",h="ul.cs-slides",i="li.cs-slide",j="> *",l=0,m=!1,n=!1,o=!1,p=!0,q=new _(function(){},0),r=new Array,s=new Array,t={},u={},v=1,w=0;if(!crellyslider_youtube_api_ready&&y("youtube")&&b(),!crellyslider_vimeo_api_ready&&y("vimeo")&&c(),!crellyslider_youtube_api_ready||"undefined"!=typeof YT&&"undefined"!=typeof YT.Player)z();else var x=setInterval(function(){"undefined"!=typeof YT&&"undefined"!=typeof YT.Player&&(clearInterval(x),z())},100);this.resume=function(){T()},this.pause=function(){S()},this.nextSlide=function(){fa(W())},this.previousSlide=function(){fa(X())},this.changeSlide=function(a){fa(a)},this.getCurrentSlide=function(){return l},this.getTotalSlides=function(){return k}},a.fn.crellySlider=function(b){var c=a.extend({layout:"fixed",responsive:!0,startWidth:1140,startHeight:500,pauseOnHover:!0,automaticSlide:!0,randomOrder:!0,startFromSlide: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(){}},b);return this.each(function(){if(void 0==a(this).data("crellySlider")){var b=new a.CrellySlider(this,c);a(this).data("crellySlider",b)}})}}(jQuery);
2
  * Plugin Name: Crelly Slider
3
  * Plugin URI: https://wordpress.org/plugins/crelly-slider/
4
  * Description: A free responsive slider that supports layers. Add texts, images, videos and beautify them with transitions and animations.
5
+ * Version: 1.3.0
6
  * Author: Fabio Rinaldi
7
  * Author URI: https://github.com/fabiorino
8
  * License: MIT
9
  */
10
 
11
+ var crellyslider_youtube_api_ready=!1,crellyslider_vimeo_api_ready=!1;!function(e){var t,i,n;t=this,i=document,n=function(e,t,i,n){var a,o;(function(e,t,i,n){function a(e){for(;e&&void 0!==e.originalEvent;)e=e.originalEvent;return e}function o(t){for(var i,n,a={};t;){for(n in i=e.data(t,k))i[n]&&(a[n]=a.hasVirtualBinding=!0);t=t.parentNode}return a}function s(){M=!0}function r(){M=!1}function c(){l(),P=setTimeout(function(){P=0,C=0,Y.length=0,O=!1,s()},e.vmouse.resetTimerDuration)}function l(){P&&(clearTimeout(P),P=0)}function d(t,i,o){var s;return(o&&o[t]||!o&&function(t,i){for(var n;t;){if((n=e.data(t,k))&&(!i||n[i]))return t;t=t.parentNode}return null}(i.target,t))&&(s=function(t,i){var o,s,r,c,l,d,p,f,u,h=t.type;if((t=e.Event(t)).type=i,o=t.originalEvent,s=e.event.props,h.search(/^(mouse|click)/)>-1&&(s=E),o)for(p=s.length;p;)t[c=s[--p]]=o[c];if(h.search(/mouse(down|up)|click/)>-1&&!t.which&&(t.which=1),-1!==h.search(/^touch/)&&(h=(r=a(o)).touches,l=r.changedTouches,d=h&&h.length?h[0]:l&&l.length?l[0]:n))for(f=0,u=D.length;f<u;f++)t[c=D[f]]=d[c];return t}(i,t),e(i.target).trigger(s)),s}function p(t){var i,n=e.data(t.target,S);!O&&(!C||C!==n)&&((i=d("v"+t.type,t))&&(i.isDefaultPrevented()&&t.preventDefault(),i.isPropagationStopped()&&t.stopPropagation(),i.isImmediatePropagationStopped()&&t.stopImmediatePropagation()))}function f(t){var i,n,s,c=a(t).touches;c&&1===c.length&&((n=o(i=t.target)).hasVirtualBinding&&(C=z++,e.data(i,S,C),l(),r(),F=!1,s=a(t).touches[0],N=s.pageX,L=s.pageY,d("vmouseover",t,n),d("vmousedown",t,n)))}function u(e){M||(F||d("vmousecancel",e,o(e.target)),F=!0,c())}function h(t){if(!M){var i=a(t).touches[0],n=F,s=e.vmouse.moveDistanceThreshold,r=o(t.target);(F=F||Math.abs(i.pageX-N)>s||Math.abs(i.pageY-L)>s)&&!n&&d("vmousecancel",t,r),d("vmousemove",t,r),c()}}function v(e){if(!M){s();var t,i,n=o(e.target);d("vmouseup",e,n),F||(t=d("vclick",e,n))&&t.isDefaultPrevented()&&(i=a(e).changedTouches[0],Y.push({touchID:C,x:i.clientX,y:i.clientY}),O=!0),d("vmouseout",e,n),F=!1,c()}}function m(t){var i,n=e.data(t,k);if(n)for(i in n)if(n[i])return!0;return!1}function y(){}function g(t){var i=t.substr(1);return{setup:function(){m(this)||e.data(this,k,{}),e.data(this,k)[t]=!0,_[t]=(_[t]||0)+1,1===_[t]&&R.bind(i,p),e(this).bind(i,y),x&&(_.touchstart=(_.touchstart||0)+1,1===_.touchstart&&R.bind("touchstart",f).bind("touchend",v).bind("touchmove",h).bind("scroll",u))},teardown:function(){--_[t],_[t]||R.unbind(i,p),x&&(--_.touchstart,_.touchstart||R.unbind("touchstart",f).unbind("touchmove",h).unbind("touchend",v).unbind("scroll",u));var n=e(this),a=e.data(this,k);a&&(a[t]=!1),n.unbind(i,y),m(this)||n.removeData(k)}}}var b,w,k="virtualMouseBindings",S="virtualTouchID",T="vmouseover vmousedown vmousemove vmouseup vclick vmouseout vmousecancel".split(" "),D="clientX clientY pageX pageY screenX screenY".split(" "),I=e.event.mouseHooks?e.event.mouseHooks.props:[],E=e.event.props.concat(I),_={},P=0,N=0,L=0,F=!1,Y=[],O=!1,M=!1,x="addEventListener"in i,R=e(i),z=1,C=0;for(e.vmouse={moveDistanceThreshold:10,clickDistanceThreshold:10,resetTimerDuration:1500},w=0;w<T.length;w++)e.event.special[T[w]]=g(T[w]);x&&i.addEventListener("click",function(t){var i,n,a,o,s,r=Y.length,c=t.target;if(r)for(i=t.clientX,n=t.clientY,b=e.vmouse.clickDistanceThreshold,a=c;a;){for(o=0;o<r;o++)if(s=Y[o],0,a===c&&Math.abs(s.x-i)<b&&Math.abs(s.y-n)<b||e.data(a,S)===s.touchID)return t.preventDefault(),void t.stopPropagation();a=a.parentNode}},!0)})(e,0,i),e.mobile={},o={touch:"ontouchend"in i},(a=e).mobile.support=a.mobile.support||{},a.extend(a.support,o),a.extend(a.mobile.support,o),function(e,t,n){function a(t,i,a,o){var s=a.type;a.type=i,o?e.event.trigger(a,n,t):e.event.dispatch.call(t,a),a.type=s}var o=e(i),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,i){e.fn[i]=function(e){return e?this.bind(i,e):this.trigger(i)},e.attrFn&&(e.attrFn[i]=!0)}),e.event.special.scrollstart={enabled:!0,setup:function(){function t(e,t){a(o,(i=t)?"scrollstart":"scrollstop",e)}var i,n,o=this;e(o).bind(r,function(a){e.event.special.scrollstart.enabled&&(i||t(a,!0),clearTimeout(n),n=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,i=e(t),n=!1;i.bind("vmousedown",function(s){function r(){clearTimeout(d)}function c(){r(),i.unbind("vclick",l).unbind("vmouseup",r),o.unbind("vmousecancel",c)}function l(e){c(),n||p!==e.target?n&&e.preventDefault():a(t,"tap",e)}if(n=!1,s.which&&1!==s.which)return!1;var d,p=s.target;i.bind("vmouseup",r).bind("vclick",l),o.bind("vmousecancel",c),d=setTimeout(function(){e.event.special.tap.emitTapOnTaphold||(n=!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 i=t.pageXOffset,n=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-=i,o-=n):(o<e.pageY-n||a<e.pageX-i)&&(a=e.pageX-i,o=e.pageY-n),{x:a,y:o}},start:function(t){var i=t.originalEvent.touches?t.originalEvent.touches[0]:t,n=e.event.special.swipe.getLocation(i);return{time:(new Date).getTime(),coords:[n.x,n.y],origin:e(t.target)}},stop:function(t){var i=t.originalEvent.touches?t.originalEvent.touches[0]:t,n=e.event.special.swipe.getLocation(i);return{time:(new Date).getTime(),coords:[n.x,n.y]}},handleSwipe:function(t,i,n,o){if(i.time-t.time<e.event.special.swipe.durationThreshold&&Math.abs(t.coords[0]-i.coords[0])>e.event.special.swipe.horizontalDistanceThreshold&&Math.abs(t.coords[1]-i.coords[1])<e.event.special.swipe.verticalDistanceThreshold){var s=t.coords[0]>i.coords[0]?"swipeleft":"swiperight";return a(n,"swipe",e.Event("swipe",{target:o,swipestart:t,swipestop:i}),!0),a(n,s,e.Event(s,{target:o,swipestart:t,swipestop:i}),!0),!0}return!1},eventInProgress:!1,setup:function(){var t,i=this,n=e(i),a={};(t=e.data(this,"mobile-events"))||(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 n,s=e.event.special.swipe.start(t),r=t.target,c=!1;a.move=function(t){s&&!t.isDefaultPrevented()&&(n=e.event.special.swipe.stop(t),c||(c=e.event.special.swipe.handleSwipe(s,n,i,r))&&(e.event.special.swipe.eventInProgress=!1),Math.abs(s.coords[0]-n.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)}},n.on(c,a.start)},teardown:function(){var t,i;(t=e.data(this,"mobile-events"))&&(i=t.swipe,delete t.swipe,t.length--,0===t.length&&e.removeData(this,"mobile-events")),i&&(i.start&&e(this).off(c,i.start),i.move&&o.off(d,i.move),i.stop&&o.off(l,i.stop))}},e.each({scrollstop:"scrollstart",taphold:"tap",swipeleft:"swipe.left",swiperight:"swipe.right"},function(t,i){e.event.special[t]={setup:function(){e(this).bind(i,e.noop)},teardown:function(){e(this).unbind(i)}}})}(e,this)},"function"==typeof define&&define.amd?define(["jquery"],function(e){return n(e,0,i),e.mobile}):n(t.jQuery,0,i),e.CrellySlider=function(t,i){var n,a=e(t),o="div.crellyslider",s="ul.cs-slides",r="li.cs-slide",c="> *",l=0,d=!1,p=!1,f=!1,u=!0,h=new H(function(){},0),v=new Array,m=new Array,y={},g={},b=1,w=0;if(!crellyslider_youtube_api_ready&&S("youtube")&&function(){var e=document.createElement("script");e.src="https://www.youtube.com/iframe_api";var t=document.getElementsByTagName("script")[0];t.parentNode.insertBefore(e,t),crellyslider_youtube_api_ready=!0}(),!crellyslider_vimeo_api_ready&&S("vimeo")&&(!function(){function e(t){return new e.fn.init(t)}function t(e,t,i){if(!i.contentWindow.postMessage)return!1;e=JSON.stringify({method:e,value:t}),i.contentWindow.postMessage(e,s)}function i(e){var t,i;try{i=(t=JSON.parse(e.data)).event||t.method}catch(e){}if("ready"!=i||o||(o=!0),!/^https?:\/\/player.vimeo.com/.test(e.origin))return!1;"*"===s&&(s=e.origin),e=t.value;var n=t.data,r=""===r?null:t.player_id;return t=r?a[r][i]:a[i],i=[],!!t&&(void 0!==e&&i.push(e),n&&i.push(n),r&&i.push(r),0<i.length?t.apply(null,i):t.call())}function n(e,t,i){i?(a[i]||(a[i]={}),a[i][e]=t):a[e]=t}var a={},o=!1,s="*";e.fn=e.prototype={element:null,init:function(e){return"string"==typeof e&&(e=document.getElementById(e)),this.element=e,this},api:function(e,i){if(!this.element||!e)return!1;var a=this.element,o=""!==a.id?a.id:null,s=i&&i.constructor&&i.call&&i.apply?null:i,r=i&&i.constructor&&i.call&&i.apply?i:null;return r&&n(e,r,o),t(e,s,a),this},addEvent:function(e,i){if(!this.element)return!1;var a=this.element,s=""!==a.id?a.id:null;return n(e,i,s),"ready"!=e?t("addEventListener",e,a):"ready"==e&&o&&i.call(null,s),this},removeEvent:function(e){if(!this.element)return!1;var i=this.element,n=""!==i.id?i.id:null;e:{if(n&&a[n]){if(!a[n][e]){n=!1;break e}a[n][e]=null}else{if(!a[e]){n=!1;break e}a[e]=null}n=!0}"ready"!=e&&n&&t("removeEventListener",e,i)}},e.fn.init.prototype=e.fn,window.addEventListener?window.addEventListener("message",i,!1):window.attachEvent("onmessage",i),window.Froogaloop=window.$f=e}(),crellyslider_vimeo_api_ready=!0),!crellyslider_youtube_api_ready||"undefined"!=typeof YT&&void 0!==YT.Player)T();else var k=setInterval(function(){"undefined"!=typeof YT&&void 0!==YT.Player&&(clearInterval(k),T())},100);function S(e){return"youtube"==e?a.find(".cs-yt-iframe").length>0:"vimeo"==e?a.find(".cs-vimeo-iframe").length>0:-1}function T(){if(a.wrapInner('<div class="crellyslider" />'),a.find(o+" > ul").addClass("cs-slides"),a.find(o+" "+s+" > li").addClass("cs-slide"),0==(n=A().length))return!1;if(1==n){var t=B(0),r=a.find(o).find(s);t.clone().prependTo(r),n++}if(function(){if(!i.randomOrder&&0==i.startFromSlide)return;var e=new Array,t=new Array;if(-1==i.startFromSlide){var r=Math.floor(Math.random()*n);e[0]=r,t[0]=B(r)}else e[0]=i.startFromSlide,t[0]=B(i.startFromSlide);for(var c=1;c<n;c++){if(i.randomOrder)do{r=Math.floor(Math.random()*n)}while(-1!=e.indexOf(r));else r=c+e[0]<n?c+e[0]:c+e[0]-n;e[c]=r,t[c]=B(r)}a.find(o).find(s).empty();for(var c=0;c<n;c++)a.find(o).find(s).append(t[c])}(),i.showControls&&a.find(o).append('<div class="cs-controls"><span class="cs-next"></span><span class="cs-previous"></span></div>'),i.showNavigation){for(var d='<div class="cs-navigation">',f=0;f<n;f++)d+='<span class="cs-slide-link"></span>';d+="</div>",a.find(o).append(d)}i.showProgressBar?a.find(o).append('<div class="cs-progress-bar"></div>'):a.find(o).append('<div class="cs-progress-bar cs-progress-bar-hidden"></div>'),a.css("display","block"),i.responsive&&N(),I(),A().find(".cs-background-link").html(" ").data({left:0,top:0,in:"none",out:"none",easeIn:0,easeOut:0,delay:0,time:"all"}),function(){a.find(o).find(s).css("visibility","hidden"),a.find(o).find(".cs-progress-bar").css("display","none"),a.find(o).find(".cs-navigation").css("display","none"),a.find(o).find(".cs-controls").css("display","none");var t=B(0).css("background-image");(t=t.replace(/^url\(["']?/,"").replace(/["']?\)$/,"")).match(/\.(jpeg|jpg|gif|png|bmp|tiff|tif)$/)?e("<img>").load(function(){i()}).attr("src",t).each(function(){this.complete&&e(this).load()}):i();function i(){a.find(o).append('<div class="cs-preloader"><div class="cs-bg"></div><div class="cs-loader"><div class="cs-spinner"></div></div></div>'),a.find(o).find(".cs-preloader").css({"background-color":B(l).css("background-color"),"background-image":B(l).css("background-image"),"background-position":B(l).css("background-position"),"background-repeat":B(l).css("background-repeat"),"background-size":B(l).css("background-size")}),a.find(o).find(".cs-preloader > .cs-bg").css({"background-color":B(l).css("background-color"),"background-image":B(l).css("background-image"),"background-position":B(l).css("background-position"),"background-repeat":B(l).css("background-repeat"),"background-size":B(l).css("background-size")})}}(),function(){var t=new e.Deferred,i=A().find(".cs-yt-iframe, .cs-vimeo-iframe").length,n=0;if(0==i)return t.resolve().promise();return A().find(".cs-yt-iframe, .cs-vimeo-iframe").each(function(){e(this).one("load",function(){var a,o,s,r,l;++n==i&&(o=new e.Deferred,s=A(),r=s.find(c+".cs-yt-iframe").length,l=0,0==r?o.resolve().promise():(s.each(function(){e(this).find(c+".cs-yt-iframe").each(function(){var t=e(this);t.uniqueId(),t.attr("id","cs-yt-iframe-"+t.attr("id"));var i=new YT.Player(t.attr("id"),{events:{onReady:function(){++l==r&&o.resolve()},onStateChange:function(e){e.data===YT.PlayerState.ENDED&&X(t,"loop")&&i.playVideo(),p&&(e.data===YT.PlayerState.PAUSED&&(y[t.attr("id")].manually_paused=!0),e.data===YT.PlayerState.PLAYING&&(y[t.attr("id")].manually_paused=!1))}}});a={player:i,played_once:!1,manually_paused:!1},y[t.attr("id")]=a})}),o.promise())).done(function(){var i,n,a,o,s;(n=new e.Deferred,a=A(),o=a.find(c+".cs-vimeo-iframe").length,s=0,0==o?n.resolve().promise():(a.each(function(){e(this).find(c+".cs-vimeo-iframe").each(function(){var t=e(this);t.uniqueId(),t.attr("id","cs-vimeo-iframe-"+t.attr("id")),t.attr("src",t.attr("src")+"&player_id="+t.attr("id"));var a=$f(t[0]);a.addEvent("ready",function(){a.addEvent("finish",function(){g[t.attr("id")].ended=!0}),a.addEvent("play",function(){g[t.attr("id")].played_once=!0,g[t.attr("id")].ended=!1,p&&(g[t.attr("id")].manually_paused=!1)}),a.addEvent("pause",function(){p&&(g[t.attr("id")].manually_paused=!0)}),X(t,"loop")&&a.api("setLoop",!0),++s==o&&n.resolve()}),i={player:a,played_once:!1,ended:!1,manually_paused:!1},g[t.attr("id")]=i})}),n.promise())).done(function(){t.resolve()})})})}),t.promise()}().done(function(){var t=setInterval(function(){"complete"==document.readyState&&a.find(o).find(".cs-preloader").length>0&&(clearInterval(t),function(){i.responsive&&N();I(),w=e(window).width(),A().each(function(){var t=e(this);t.find(c).not(".cs-yt-iframe, .cs-vimeo-iframe").each(function(){var t=e(this),i=t.clone();i.css("visibility","hidden"),e("body").append(i),i.find("*").each(function(){var t=e(this);D(t,!0)}),D(i,!1),i.css("display","none"),i.css("visibility","visible"),i.insertAfter(t),t.remove()}),t.find(".cs-yt-iframe, .cs-vimeo-iframe").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")))}),i.responsive&&e(window).resize(function(){w!=e(window).width()&&("full-width"==i.layout&&x()!=e(a).width()||e(a).width()<x()||e(a).width()>x()&&x()<i.startWidth)&&_()}),a.find(o).find(".cs-controls > .cs-previous").click(function(){V(C())}),a.find(o).find(".cs-controls > .cs-next").click(function(){V(z())}),i.enableSwipe&&(a.find(o).on("swipeleft",function(){M(),V(z())}),a.find(o).on("swiperight",function(){M(),V(C())})),a.find(o).find(".cs-navigation > .cs-slide-link").click(function(){V(e(this).index())}),i.pauseOnHover&&(a.find(o).find(s).hover(function(){O()}),a.find(o).find(s).mouseleave(function(){M()})),a.find(o).find(s).css("visibility","visible"),a.find(o).find(".cs-progress-bar").css("display","block"),a.find(o).find(".cs-navigation").css("display","block"),a.find(o).find(".cs-controls").css("display","block"),ne(B(0)),B(0).finish(),a.find(o).find(".cs-preloader").animate({opacity:0},300,function(){a.find(o).find(".cs-preloader").remove()}),i.beforeStart(),i.responsive?_():F()}())},100)})}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"))):"normal"==e.css("line-height")?e.data("line-height",1.15*X(e,"font-size")):e.data("line-height",parseFloat(e.css("line-height"))*X(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")))}function I(){var e,t;switch(i.layout){case"fixed":e=i.startWidth,t=i.startHeight,a.find(o).css({width:L(e),height:L(t)}),A().css({width:L(e),height:L(t)});break;case"full-width":e=a.width(),t=i.startHeight,a.find(o).css({width:e,height:L(t)}),A().css({width:e,height:L(t)});break;default:return!1}}function E(e){var t=(R()-i.startHeight)/2,n=(x()-i.startWidth)/2,a=0,o=0;return t>0&&(a=t),n>0&&(o=n),{top:a,left:o}}function _(){i.beforeSetResponsive();var t=A();Y(!0),t.each(function(){var t=e(this),i=t.find(c);t.finish(),ne(t),t.finish(),i.each(function(){var t=e(this);t.finish(),oe(t),t.finish(),$(t)&&Q(t)})}),N(),I(),t.each(function(){var t=e(this);t.find(c).each(function(){var t=e(this);t.find("*").each(function(){P(e(this))}),P(t),t.finish(),se(t),t.finish(),$(t)&&Q(t)}),t.finish(),ae(t),t.finish()}),w=e(window).width(),F()}function P(e){e.css({top:L(X(e,"top")+E().top),left:L(X(e,"left")+E().left),"padding-top":L(X(e,"padding-top")),"padding-right":L(X(e,"padding-right")),"padding-bottom":L(X(e,"padding-bottom")),"padding-left":L(X(e,"padding-left"))}),e.is("input")||e.is("button")||e.text().trim().length?e.css({"line-height":L(X(e,"line-height"))+"px","letter-spacing":L(X(e,"letter-spacing")),"font-size":L(X(e,"font-size"))}):e.css({width:L(X(e,"width")),height:L(X(e,"height"))})}function N(){var e=a.width(),t=i.startWidth;b=e>=t||!i.responsive?1:e/t}function L(e){return e*b}function F(){i.automaticSlide?function e(){j(l).done(function(){d||(l=z(),e())})}():j(l),u=!1}function Y(t){for(var i=0;i<v.length;i++)v[i].clear();for(i=0;i<m.length;i++)m[i].clear();h.clear(),A().each(function(){var i=e(this);t?i.finish():i.stop(!0,!0),i.find(c).each(function(){var i=e(this);t?i.finish():i.stop(!0,!0)})}),W()}function O(){!d&&p&&(i.beforePause(),a.find(o).find(".cs-progress-bar").stop(!0),h.pause(),d=!0)}function M(){if(d&&p){i.beforeResume();var e=a.find(o).find(".cs-progress-bar"),t=(X(B(l),"time"),h.getRemaining());e.animate({width:"100%"},t),h.resume(),d=!1}}function x(){return a.find(o).width()}function R(){return a.find(o).height()}function z(){return l+1==n?0:l+1}function C(){return l-1<0?n-1:l-1}function X(e,t){var n;switch(n=!!e.parent("ul").hasClass("cs-slides"),t){case"ease-in":return n?isNaN(parseInt(e.data(t)))?i.slidesEaseIn:parseInt(e.data(t)):isNaN(parseInt(e.data(t)))?i.elementsEaseIn:parseInt(e.data(t));case"ease-out":return n?isNaN(parseInt(e.data(t)))?i.slidesEaseOut:parseInt(e.data(t)):isNaN(parseInt(e.data(t)))?i.elementsEaseOut:parseInt(e.data(t));case"delay":return isNaN(parseInt(e.data(t)))?i.elementsDelay:parseInt(e.data(t));case"time":return n?isNaN(parseInt(e.data(t)))?i.slidesTime:parseInt(e.data(t)):"all"==e.data(t)?"all":isNaN(parseInt(e.data(t)))?i.itemsTime:parseInt(e.data(t));case"ignore-ease-out":return 1==parseInt(e.data(t))||0!=parseInt(e.data(t))&&i.ignoreElementsEaseOut;case"autoplay":return 1==parseInt(e.data(t))||0!=parseInt(e.data(t))&&i.videoAutoplay;case"loop":return 1==parseInt(e.data(t))||0!=parseInt(e.data(t))&&i.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 A(){return a.find(o).find(s).find(r)}function B(e){return A().eq(e)}function H(e,t){var i,n,a=t;this.pause=function(){clearTimeout(i),a-=new Date-n},this.resume=function(){n=new Date,clearTimeout(i),i=window.setTimeout(function(){e()},a)},this.clear=function(){clearTimeout(i)},this.getRemaining=function(){return a},this.resume()}function U(){return/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)}function W(){var e=a.find(o).find(".cs-progress-bar");e.stop(),e.css("width",0)}function V(e){e!=l&&(p||f)&&(Y(!1),q(l,!1,!0).done(function(){l=e,F()}))}function j(t){i.beforeSlideStart();var n,s,r,d,u,b=new e.Deferred;f=!1;for(var w=0;w<v.length;w++)v[w].clear();for(w=0;w<m.length;w++)m[w].clear();return h.clear(),B(t).finish(),ae(t),B(t).finish(),B(t).find(c).each(function(){var t=e(this);t.finish(),se(t),t.finish()}),a.find(o).find(".cs-navigation").find("> .cs-slide-link").each(function(){var t=e(this);t.index()==l?t.addClass("cs-active"):t.removeClass("cs-active")}),s=B(n=t).find(c),r=0,d=!1,u=new e.Deferred,p=!1,ne(n).done(function(){var e;e=a.find(o).find(".cs-progress-bar"),W(),e.animate({width:"100%"},X(B(l),"time")),p=!0,(d=!0)&&r==s.length&&u.resolve()}),s.each(function(){var t=e(this),i=X(t,"delay");m.push(new H(function(){oe(t).done(function(){var e,i,n;$(t)&&(G(n=t)?(!X(i=n,"autoplay")||y[i.attr("id")].played_once||U()||K(i).playVideo(),2!=Z(i)||y[i.attr("id")].manually_paused||K(i).playVideo(),y[i.attr("id")].played_once=!0):(!X(e=n,"autoplay")||g[e.attr("id")].played_once||U()||te(e).api("play"),te(e).api("paused")&&!g[e.attr("id")].ended&&g[e.attr("id")].played_once&&!g[e.attr("id")].manually_paused&&te(e).api("play"))),r++,d&&r==s.length&&u.resolve()})},i))}),u.promise(),i.automaticSlide?q(t,!0,!0).done(function(){f=!0,b.resolve()}):q(t,!0,!1).done(function(){f=!0,b.resolve()}),b.promise()}function q(t,i,n){var a=B(t),o=a.find(c),s=i?X(a,"time")+X(a,"ease-in"):0,r=0,l=!1,d=new e.Deferred;return o.each(function(){var a=e(this),s=X(a,"time");if("all"!=s){var c=i?s:0;X(a,"ignore-ease-out")&&(r++,o.length==r&&l&&n&&(J(t),ae(t),d.resolve())),v.push(new H(function(){se(a).done(function(){X(a,"ignore-ease-out")||(r++,o.length==r&&l&&n&&(J(t),ae(t),d.resolve()))})},c))}}),h=new H(function(){p=!1,W(),l=!0,o.length==r&&l&&n&&(J(t),ae(t),d.resolve()),n?o.each(function(){var i=e(this);"all"==X(i,"time")&&(X(i,"ignore-ease-out")&&(r++,o.length==r&&l&&n&&(J(t),ae(t),d.resolve())),se(i).done(function(){X(i,"ignore-ease-out")||(r++,o.length==r&&l&&n&&(J(t),ae(t),d.resolve()))}))}):d.resolve()},s),d.promise()}function $(e){return G(e)||e.hasClass("cs-vimeo-iframe")}function J(t){B(t).each(function(){var t=e(this);t.find(c+".cs-yt-iframe").each(function(){ee(e(this))})}),B(t).each(function(){var t=e(this);t.find(c+".cs-vimeo-iframe").each(function(){ie(e(this))})})}function Q(e){G(e)?ee(e):ie(e)}function G(e){return e.hasClass("cs-yt-iframe")}function K(e){return y[e.attr("id")].player}function Z(e){return K(e).getPlayerState()}function ee(e){1==Z(e)&&K(e).pauseVideo()}function te(e){return g[e.attr("id")].player}function ie(e){te(e).api("pause")}function ne(t){var i=B(t),n=X(i,"in"),a=X(i,"ease-in"),o=new e.Deferred;if("block"==i.css("display"))return o.resolve().promise();if(u)return i.css({display:"block",top:0,left:0,opacity:X(i,"opacity")}),o.resolve().promise();switch(n){case"fade":i.css({display:"block",top:0,left:0,opacity:0}),i.animate({opacity:X(i,"opacity")},a,function(){o.resolve()});break;case"fadeLeft":i.css({display:"block",top:0,left:x(),opacity:0}),i.animate({opacity:X(i,"opacity"),left:0},a,function(){o.resolve()});break;case"fadeRight":i.css({display:"block",top:0,left:-x(),opacity:0}),i.animate({opacity:X(i,"opacity"),left:0},a,function(){o.resolve()});break;case"slideLeft":i.css({display:"block",top:0,left:x(),opacity:X(i,"opacity")}),i.animate({left:0},a,function(){o.resolve()});break;case"slideRight":i.css({display:"block",top:0,left:-x(),opacity:X(i,"opacity")}),i.animate({left:0},a,function(){o.resolve()});break;case"slideUp":i.css({display:"block",top:R(),left:0,opacity:X(i,"opacity")}),i.animate({top:0},a,function(){o.resolve()});break;case"slideDown":i.css({display:"block",top:-R(),left:0,opacity:X(i,"opacity")}),i.animate({top:0},a,function(){o.resolve()});break;default:i.css({display:"block",top:0,left:0,opacity:X(i,"opacity")}),o.resolve()}return o.promise()}function ae(t){var i=B(t),n=X(i,"out"),a=X(i,"ease-out"),o=new e.Deferred;if("none"==i.css("display"))return o.resolve().promise();switch(n){case"fade":i.animate({opacity:0},a,function(){i.css({display:"none",opacity:X(i,"opacity")}),o.resolve()});break;case"fadeLeft":i.animate({opacity:0,left:-x()},a,function(){i.css({display:"none",opacity:X(i,"opacity"),left:0}),o.resolve()});break;case"fadeRight":i.animate({opacity:0,left:x()},a,function(){i.css({display:"none",opacity:X(i,"opacity"),left:0}),o.resolve()});break;case"slideLeft":i.animate({left:-x()},a,function(){i.css({display:"none",left:0}),o.resolve()});break;case"slideRight":i.animate({left:x()},a,function(){i.css({display:"none",left:0}),o.resolve()});break;case"slideUp":i.animate({top:-R()},a,function(){i.css({display:"none",top:0}),o.resolve()});break;case"slideDown":i.animate({top:R()},a,function(){i.css({display:"none",top:0}),o.resolve()});break;default:i.css({display:"none"}),o.resolve()}return o.promise()}function oe(t){var i=t.outerWidth(),n=t.outerHeight(),a=X(t,"in"),o=X(t,"ease-in"),s=X(t,"top"),r=X(t,"left"),c=new e.Deferred;if("block"==t.css("display"))return c.resolve().promise();switch(a){case"slideDown":t.css({display:"block",top:-n,left:L(r+E().left),opacity:X(t,"opacity")}).animate({top:L(s+E().top)},o,function(){c.resolve()});break;case"slideUp":t.css({display:"block",top:R(),left:L(r+E().left),opacity:X(t,"opacity")}).animate({top:L(s+E().top)},o,function(){c.resolve()});break;case"slideLeft":t.css({display:"block",top:L(s+E().top),left:x(),opacity:X(t,"opacity")}).animate({left:L(r+E().left)},o,function(){c.resolve()});break;case"slideRight":t.css({display:"block",top:L(s+E().top),left:-i,opacity:X(t,"opacity")}).animate({left:L(r+E().left)},o,function(){c.resolve()});break;case"fade":t.css({display:"block",top:L(s+E().top),left:L(r+E().left),opacity:0}).animate({opacity:X(t,"opacity")},o,function(){c.resolve()});break;case"fadeDown":t.css({display:"block",top:-n,left:L(r+E().left),opacity:0}).animate({top:L(s+E().top),opacity:X(t,"opacity")},o,function(){c.resolve()});break;case"fadeUp":t.css({display:"block",top:R(),left:L(r+E().left),opacity:0}).animate({top:L(s+E().top),opacity:X(t,"opacity")},o,function(){c.resolve()});break;case"fadeLeft":t.css({display:"block",top:L(s+E().top),left:x(),opacity:0}).animate({left:L(r+E().left),opacity:X(t,"opacity")},o,function(){c.resolve()});break;case"fadeRight":t.css({display:"block",top:L(s+E().top),left:-i,opacity:0}).animate({left:L(r+E().left),opacity:X(t,"opacity")},o,function(){c.resolve()});break;case"fadeSmallDown":t.css({display:"block",top:L(s+E().top-30),left:L(r+E().left),opacity:0}).animate({top:L(s+E().top),opacity:X(t,"opacity")},o,function(){c.resolve()});break;case"fadeSmallUp":t.css({display:"block",top:L(s+E().top+30),left:L(r+E().left),opacity:0}).animate({top:L(s+E().top),opacity:X(t,"opacity")},o,function(){c.resolve()});break;case"fadeSmallLeft":t.css({display:"block",top:L(s+E().top),left:L(r+E().left+30),opacity:0}).animate({left:L(r+E().left),opacity:X(t,"opacity")},o,function(){c.resolve()});break;case"fadeSmallRight":t.css({display:"block",top:L(s+E().top),left:L(r+E().left-30),opacity:0}).animate({left:L(r+E().left),opacity:X(t,"opacity")},o,function(){c.resolve()});break;default:t.css({display:"block",top:L(s+E().top),left:L(r+E().left),opacity:X(t,"opacity")}),c.resolve()}return c.promise()}function se(t){var i=t.outerWidth(),n=t.outerHeight(),a=X(t,"out"),o=X(t,"ease-out"),s=new e.Deferred;if("none"==t.css("display"))return s.resolve().promise();switch(a){case"slideDown":t.animate({top:R()},o,function(){t.css({display:"none"}),s.resolve()});break;case"slideUp":t.animate({top:-n},o,function(){t.css({display:"none"}),s.resolve()});break;case"slideLeft":t.animate({left:-i},o,function(){t.css({display:"none"}),s.resolve()});break;case"slideRight":t.animate({left:x()},o,function(){t.css({display:"none"}),s.resolve()});break;case"fade":t.animate({opacity:0},o,function(){t.css({display:"none",opacity:X(t,"opacity")}),s.resolve()});break;case"fadeDown":t.animate({top:R(),opacity:0},o,function(){t.css({display:"none",opacity:X(t,"opacity")}),s.resolve()});break;case"fadeUp":t.animate({top:-n,opacity:0},o,function(){t.css({display:"none",opacity:X(t,"opacity")}),s.resolve()});break;case"fadeLeft":t.animate({left:-i,opacity:0},o,function(){t.css({display:"none",opacity:X(t,"opacity")}),s.resolve()});break;case"fadeRight":t.animate({left:x(),opacity:0},o,function(){t.css({display:"none",opacity:X(t,"opacity")}),s.resolve()});break;case"fadeSmallDown":t.animate({top:L(X(t,"top")+E().top+30),opacity:0},o,function(){t.css({display:"none",opacity:X(t,"opacity")}),s.resolve()});break;case"fadeSmallUp":t.animate({top:L(X(t,"top")+E().top-30),opacity:0},o,function(){t.css({display:"none",opacity:X(t,"opacity")}),s.resolve()});break;case"fadeSmallLeft":t.animate({left:L(X(t,"left")+E().left-30),opacity:0},o,function(){t.css({display:"none",opacity:X(t,"opacity")}),s.resolve()});break;case"fadeSmallRight":t.animate({left:L(X(t,"left")+E().left+30),opacity:0},o,function(){t.css({display:"none",opacity:X(t,"opacity")}),s.resolve()});break;default:t.css({display:"none"}),s.resolve()}return s.promise()}this.resume=function(){M()},this.pause=function(){O()},this.nextSlide=function(){V(z())},this.previousSlide=function(){V(C())},this.changeSlide=function(e){V(e)},this.getCurrentSlide=function(){return l},this.getTotalSlides=function(){return n}},e.fn.crellySlider=function(t){var i=e.extend({layout:"fixed",responsive:!0,startWidth:1140,startHeight:500,pauseOnHover:!0,automaticSlide:!0,randomOrder:!0,startFromSlide: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(null==e(this).data("crellySlider")){var t=new e.CrellySlider(this,i);e(this).data("crellySlider",t)}})}}(jQuery);
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://crellyslider.altervista.org/contribute-and-support/
4
  Tags: animations, layers, texts, images, videos
5
  Requires at least: 3.9
6
  Tested up to: 4.9
7
- Stable tag: 1.2.3
8
  License: MIT
9
  License URI: http://opensource.org/licenses/MIT
10
 
@@ -54,6 +54,13 @@ You can find the documentation <a href="http://crellyslider.altervista.org/docum
54
 
55
  == Changelog ==
56
 
 
 
 
 
 
 
 
57
  = 1.2.3 =
58
  * Bug fix: align left/center/right buttons not working
59
 
4
  Tags: animations, layers, texts, images, videos
5
  Requires at least: 3.9
6
  Tested up to: 4.9
7
+ Stable tag: 1.3.0
8
  License: MIT
9
  License URI: http://opensource.org/licenses/MIT
10
 
54
 
55
  == Changelog ==
56
 
57
+ = 1.3.0 =
58
+ * New feature: sliders can be scheduled (you can specify from when and how long they should be displayed for)
59
+ * When a video is manually paused by the user, it won't resume automatically at the next slides loop
60
+ * For developers: TinyMCE settings are now hookable (credits to dlaxar https://github.com/fabiorino/crelly-slider/commits?author=dlaxar)
61
+ * For developers: sliders can be imported via code
62
+ * Other minor changes and bug fixes
63
+
64
  = 1.2.3 =
65
  * Bug fix: align left/center/right buttons not working
66
 
wordpress/admin.php CHANGED
@@ -3,6 +3,8 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
3
 
4
  class CrellySliderAdmin {
5
 
 
 
6
  // Creates the menu and the admin panel
7
  public static function showSettings() {
8
  add_action('admin_menu', 'CrellySliderAdmin::pluginMenus');
@@ -35,7 +37,7 @@ class CrellySliderAdmin {
35
  }
36
  else if(isset($_GET['view']) && esc_sql($_GET['view']) == 'edit') {
37
  $edit = true;
38
- $id = isset($_GET['id']) ? esc_sql($_GET['id']) : NULL;
39
  if($id == NULL || ($id != NULL && !CrellySliderCommon::sliderExists($id))) {
40
  die();
41
  }
@@ -59,6 +61,7 @@ class CrellySliderAdmin {
59
 
60
  <div class="cs-message cs-message-ok" style="display: none;"><?php _e('Operation completed successfully.', 'crelly-slider'); ?></div>
61
  <div class="cs-message cs-message-error" style="display: none;"><?php _e('Something went wrong.', 'crelly-slider'); ?></div>
 
62
  <?php if(! $edit): ?>
63
  <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>
64
  <?php endif; ?>
@@ -127,6 +130,7 @@ class CrellySliderAdmin {
127
  <?php
128
  // I need to call wp_editor just to include TinyMCE's javascript
129
  wp_editor('', 'cs-element-editor-useless');
 
130
  ?>
131
  </div>
132
 
@@ -188,10 +192,16 @@ class CrellySliderAdmin {
188
  wp_enqueue_script('jquery-ui-tabs');
189
  wp_enqueue_script('jquery-ui-sortable');
190
  wp_enqueue_script('jquery-ui-dialog');
 
191
  wp_enqueue_style('wp-color-picker');
192
  wp_enqueue_media();
193
 
194
- wp_register_script('crellyslider-admin', CS_PLUGIN_URL . '/wordpress/js/admin.js', array('wp-color-picker'), CS_VERSION, true);
 
 
 
 
 
195
 
196
  self::localization();
197
 
@@ -277,6 +287,126 @@ class CrellySliderAdmin {
277
  wp_localize_script('crellyslider-admin', 'crellyslider_translations', $crellyslider_translations);
278
  }
279
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
280
  }
281
 
282
  ?>
3
 
4
  class CrellySliderAdmin {
5
 
6
+ private static $mceSettings = array();
7
+
8
  // Creates the menu and the admin panel
9
  public static function showSettings() {
10
  add_action('admin_menu', 'CrellySliderAdmin::pluginMenus');
37
  }
38
  else if(isset($_GET['view']) && esc_sql($_GET['view']) == 'edit') {
39
  $edit = true;
40
+ $id = isset($_GET['id']) ? (int)$_GET['id'] : NULL;
41
  if($id == NULL || ($id != NULL && !CrellySliderCommon::sliderExists($id))) {
42
  die();
43
  }
61
 
62
  <div class="cs-message cs-message-ok" style="display: none;"><?php _e('Operation completed successfully.', 'crelly-slider'); ?></div>
63
  <div class="cs-message cs-message-error" style="display: none;"><?php _e('Something went wrong.', 'crelly-slider'); ?></div>
64
+ <div class="cs-message cs-message-wait" style="display: none;"><?php _e('Please wait', 'crelly-slider'); ?></div>
65
  <?php if(! $edit): ?>
66
  <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>
67
  <?php endif; ?>
130
  <?php
131
  // I need to call wp_editor just to include TinyMCE's javascript
132
  wp_editor('', 'cs-element-editor-useless');
133
+ self::setTinyMCEOptions();
134
  ?>
135
  </div>
136
 
192
  wp_enqueue_script('jquery-ui-tabs');
193
  wp_enqueue_script('jquery-ui-sortable');
194
  wp_enqueue_script('jquery-ui-dialog');
195
+ wp_enqueue_script('jquery-ui-datepicker');
196
  wp_enqueue_style('wp-color-picker');
197
  wp_enqueue_media();
198
 
199
+ wp_register_script('datetimepicker', CS_PLUGIN_URL . '/wordpress/js/jquery.datetimepicker.js', array('jquery'), "2.5.17", true);
200
+ wp_enqueue_script('datetimepicker');
201
+ wp_enqueue_style('datetimepicker', CS_PLUGIN_URL . '/wordpress/css/jquery.datetimepicker.css', array(), "2.5.17");
202
+
203
+ add_action('admin_print_footer_scripts', array( __CLASS__, 'printTinyMCEOptions'), 1);
204
+ wp_register_script('crellyslider-admin', CS_PLUGIN_URL . '/wordpress/js/admin.js', array('wp-color-picker', 'datetimepicker'), CS_VERSION, true);
205
 
206
  self::localization();
207
 
287
  wp_localize_script('crellyslider-admin', 'crellyslider_translations', $crellyslider_translations);
288
  }
289
 
290
+ /**
291
+ * Invokes the filter for the tinyMCE init options
292
+ */
293
+ public static function setTinyMCEOptions() {
294
+ self::$mceSettings = apply_filters( 'crellyslider_tiny_mce_before_init', self::tinyMCEDefaultOptions());
295
+ }
296
+
297
+ /**
298
+ * Generates the default tinyMCE options
299
+ *
300
+ * @return array Default options for the tinyMCE editor
301
+ */
302
+ private static function tinyMCEDefaultOptions() {
303
+ return array(
304
+ 'toolbar1' => 'bold,italic,strikethrough,alignleft,aligncenter,alignright,link,unlink,underline,forecolor,backcolor',
305
+ 'toolbar2' => 'fontselect,fontsizeselect',
306
+ 'toolbar3' => '',
307
+ 'toolbar4' => '',
308
+ 'height' => 200,
309
+ 'forced_root_block' => false,
310
+ 'wpautop' => false,
311
+ 'fontsize_formats' => implode(' ', array_map(function($x) { return $x . 'px'; }, range(1, 200))),
312
+ 'wp_lang_attr' => get_locale(),
313
+ 'content_css' => '',
314
+ 'cache_suffix' => '',
315
+ 'language' => explode('_', get_locale())[0],
316
+ 'theme' => 'modern',
317
+ 'skin' => 'lightgray',
318
+ 'formats' => '{' .
319
+ 'alignleft: [' .
320
+ '{'.
321
+ 'selector: "p,h1,h2,h3,h4,h5,h6,td,th,div,ul,ol,li", ' .
322
+ 'styles: {textAlign:"left", lineHeight:"inherit"}, ' .
323
+ 'inline: "div"'.
324
+ '},' .
325
+ '{' .
326
+ 'selector: "img,table,dl.wp-caption", ' .
327
+ 'classes: "alignleft"' .
328
+ '}' .
329
+ '],' .
330
+ 'aligncenter: [' .
331
+ '{' .
332
+ 'selector: "p,h1,h2,h3,h4,h5,h6,td,th,div,ul,ol,li", ' .
333
+ 'styles: {textAlign:"center", lineHeight:"inherit"}, ' .
334
+ 'inline: "div"' .
335
+ '},' .
336
+ '{' .
337
+ 'selector: "img,table,dl.wp-caption", ' .
338
+ 'classes: "aligncenter"' .
339
+ '}' .
340
+ '],' .
341
+ 'alignright: [' .
342
+ '{' .
343
+ 'selector: "p,h1,h2,h3,h4,h5,h6,td,th,div,ul,ol,li", ' .
344
+ 'styles: {textAlign:"right", lineHeight:"inherit"}, ' .
345
+ 'inline: "div"' .
346
+ '},' .
347
+ '{' .
348
+ 'selector: "img,table,dl.wp-caption", ' .
349
+ 'classes: "alignright"' .
350
+ '}' .
351
+ '],' .
352
+ 'strikethrough: {inline: "del"}' .
353
+ '}',
354
+ 'relative_urls' => false,
355
+ 'remove_script_host' => false,
356
+ 'convert_urls' => false,
357
+ 'browser_spellcheck' => true,
358
+ 'fix_list_elements' => true,
359
+ 'entities' => '38,amp,60,lt,62,gt',
360
+ 'entity_encoding' => 'raw',
361
+ 'keep_styles' => false,
362
+ 'preview_styles' => 'font-family font-size font-weight font-style text-decoration text-transform',
363
+ 'end_container_on_empty_block' => true,
364
+ 'wpeditimage_disable_captions' => false,
365
+ 'wpeditimage_html5_captions' => true,
366
+ 'plugins' => 'charmap,colorpicker,hr,lists,media,paste,tabfocus,textcolor,fullscreen,wordpress,wpautoresize,wpeditimage,wpemoji,wpgallery,wplink,wpdialogs,wptextpattern,wpview,image',
367
+ 'resize' => 'vertical',
368
+ 'menubar' => false,
369
+ 'indent' => true,
370
+ 'tabfocus_elements' => ':prev,:next',
371
+ );
372
+ }
373
+
374
+ /**
375
+ * Outputs the previously set tinyMCE options (init Options)
376
+ *
377
+ * A <script> tag containing the global variable crellyslider_tinyMCEInit is printed
378
+ */
379
+ public static function printTinyMCEOptions() {
380
+ $options = self::$mceSettings;
381
+
382
+ $serialized = '';
383
+ foreach($options as $key => $value) {
384
+ if (is_bool($value)) {
385
+ $serialized .= $key . ':' . ($value ? 'true' : 'false') . ',';
386
+ } else {
387
+ $length = !empty($value && is_string($value)) ? strlen($value) : 0;
388
+
389
+ // don't wrap objects, arrays or functions in quotes
390
+ if ($length > 0
391
+ && (('{' == $value{0} && '}' == $value{$length - 1}) ||
392
+ ('[' == $value{0} && ']' == $value{$length - 1}) ||
393
+ preg_match('/^\(?function ?\(/', $value))) {
394
+
395
+ $serialized .= $key . ':' . $value . ',';
396
+ } else {
397
+ $serialized .= $key . ':"' . $value . '",';
398
+ }
399
+ }
400
+ }
401
+
402
+ // remove trailing spaces and commas and enclose in JSON { }
403
+ $serialized = '{' . trim($serialized, ' ,') . '}';
404
+ ?>
405
+ <script type="text/javascript">
406
+ crellyslider_tinyMCEInit = <?php echo $serialized; ?>;
407
+ </script>
408
+ <?php
409
+ }
410
  }
411
 
412
  ?>
wordpress/ajax.php CHANGED
@@ -118,6 +118,8 @@ function crellyslider_insertSliderSQL($options) {
118
  'randomOrder' => $options['randomOrder'],
119
  'startFromSlide' => $options['startFromSlide'],
120
  'enableSwipe' => $options['enableSwipe'],
 
 
121
  ),
122
  array(
123
  '%s',
@@ -135,6 +137,8 @@ function crellyslider_insertSliderSQL($options) {
135
  '%d',
136
  '%d',
137
  '%d',
 
 
138
  )
139
  );
140
  }
@@ -166,9 +170,11 @@ function crellyslider_editSlider_callback() {
166
  'showProgressBar' => $options['showProgressBar'],
167
  'pauseOnHover' => $options['pauseOnHover'],
168
  'callbacks' => $options['callbacks'],
169
- 'randomOrder' => $options['randomOrder'],
170
- 'startFromSlide' => $options['startFromSlide'],
171
  'enableSwipe' => $options['enableSwipe'],
 
 
172
  ),
173
  array('id' => esc_sql($options['id'])),
174
  array(
@@ -187,6 +193,8 @@ function crellyslider_editSlider_callback() {
187
  '%d',
188
  '%d',
189
  '%d',
 
 
190
  ),
191
  array('%d')
192
  );
@@ -508,120 +516,130 @@ function crellyslider_exportSlider_callback() {
508
  die();
509
  }
510
 
511
- // Inport the slider from a json string
512
  add_action('wp_ajax_crellyslider_importSlider', 'crellyslider_importSlider_callback');
513
  function crellyslider_importSlider_callback() {
514
- global $wpdb;
515
-
516
- // Clear the temp folder
517
- array_map('unlink', glob(CS_PATH . '/wordpress/temp/*'));
518
-
519
  foreach($_FILES as $file) {
520
- $output = true;
521
- $real_output = true;
522
-
523
- $zip = new ZipArchive();
524
- if($zip->open($file['tmp_name']) !== TRUE) {
525
  echo false;
526
  die();
527
  }
528
 
529
- $zip->extractTo(CS_PATH . '/wordpress/temp/');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
530
 
531
- $imported_array = json_decode(file_get_contents(CS_PATH . '/wordpress/temp/slider.json'));
532
 
533
- $sliders = $imported_array->sliders;
534
- foreach($sliders as $slider) {
535
- // Prevent compatiblity issues with old .zip exported sliders (< 1.2.0)
536
- if(! isset($slider->randomOrder)) {
537
- $slider->randomOrder = 0;
538
- }
539
- if(! isset($slider->startFromSlide)) {
540
- $slider->startFromSlide = 0;
541
- }
542
 
543
- $output = crellyslider_insertSliderSQL((array) $slider);
 
 
 
 
 
 
 
544
  }
545
 
546
- if($output === false) {
547
- $real_output = false;
 
 
 
 
 
 
 
 
 
 
 
548
  }
549
  else {
550
- $imported_slider_id = $wpdb->insert_id;
 
551
 
552
- // Import slides
553
- $slides = $imported_array->slides;
554
- if(empty($slides)) {
555
- $output = true;
556
- }
557
- else {
558
- foreach($slides as $key => $slide) {
559
- $slides[$key]->slider_parent = $imported_slider_id;
560
-
561
- // Set background images
562
- if($slides[$key]->background_type_image != 'undefined' && $slides[$key]->background_type_image != 'none') {
563
- $url = CS_PATH . '/wordpress/temp/' . $slides[$key]->background_type_image;
564
- $id = crellyslider_importImage($url);
565
- $slides[$key]->background_type_image = $id;
566
- }
567
- }
568
- $temp = crellyslider_wp_insert_rows($slides, $wpdb->prefix . 'crellyslider_slides');
569
- if($temp === false) {
570
- $output = false;
571
  }
572
  }
573
-
574
- // Import elements
575
- $elements = (array) $imported_array->elements;
576
- if(empty($elements)) {
577
- $output = true;
578
- }
579
- else {
580
- foreach($elements as $key => $element) {
581
- $elements[$key]->slider_parent = $imported_slider_id;
582
-
583
- // Set images
584
- if($elements[$key]->type == 'image') {
585
- $url = CS_PATH . '/wordpress/temp/' . $elements[$key]->image_src;
586
- $id = crellyslider_importImage($url);
587
- $elements[$key]->image_src = $id;
588
- }
589
- }
590
- $temp = crellyslider_wp_insert_rows($elements, $wpdb->prefix . 'crellyslider_elements');
591
- if($temp === false) {
592
- $output = false;
593
- }
594
-
595
- if($output === false) {
596
- $real_output = false;
597
- }
598
  }
599
  }
600
 
601
- if($real_output === true) {
602
- $real_output = array(
603
- 'response' => true,
604
- 'imported_slider_id' => $imported_slider_id,
605
- 'imported_slider_name' => $imported_array->sliders[0]->name,
606
- 'imported_slider_alias' => $imported_array->sliders[0]->alias,
607
- );
608
  }
609
  else {
610
- $real_output = array(
611
- 'response' => false,
612
- 'imported_slider_id' => false,
613
- 'imported_slider_name' => false,
614
- 'imported_slider_alias' => false,
615
- );
616
- }
617
 
618
- // Returning
619
- $real_output = json_encode($real_output);
620
- if(is_array($real_output)) print_r($real_output);
621
- else echo $real_output;
 
 
 
 
 
 
 
622
 
623
- die();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
624
  }
 
 
625
  }
626
 
627
  // Imports an image to the WordPress media library. Returns the attachment ID
@@ -640,7 +658,7 @@ function crellyslider_importImage($local_url) {
640
  'post_content' => '',
641
  'post_status' => 'inherit'
642
  );
643
- $attachment_id = wp_insert_attachment( $attachment, $upload_file['file'], $parent_post_id );
644
  if (!is_wp_error($attachment_id)) {
645
  require_once(ABSPATH . "wp-admin" . '/includes/image.php');
646
  $attachment_data = wp_generate_attachment_metadata( $attachment_id, $upload_file['file'] );
@@ -650,4 +668,4 @@ function crellyslider_importImage($local_url) {
650
 
651
  return $attachment_id;
652
  }
653
- ?>
118
  'randomOrder' => $options['randomOrder'],
119
  'startFromSlide' => $options['startFromSlide'],
120
  'enableSwipe' => $options['enableSwipe'],
121
+ 'fromDate' => $options['fromDate'],
122
+ 'toDate' => $options['toDate'],
123
  ),
124
  array(
125
  '%s',
137
  '%d',
138
  '%d',
139
  '%d',
140
+ '%s',
141
+ '%s',
142
  )
143
  );
144
  }
170
  'showProgressBar' => $options['showProgressBar'],
171
  'pauseOnHover' => $options['pauseOnHover'],
172
  'callbacks' => $options['callbacks'],
173
+ 'randomOrder' => $options['randomOrder'],
174
+ 'startFromSlide' => $options['startFromSlide'],
175
  'enableSwipe' => $options['enableSwipe'],
176
+ 'fromDate' => $options['fromDate'],
177
+ 'toDate' => $options['toDate'],
178
  ),
179
  array('id' => esc_sql($options['id'])),
180
  array(
193
  '%d',
194
  '%d',
195
  '%d',
196
+ '%s',
197
+ '%s',
198
  ),
199
  array('%d')
200
  );
516
  die();
517
  }
518
 
519
+ // Imports a slider given a .zip in $_FILES
520
  add_action('wp_ajax_crellyslider_importSlider', 'crellyslider_importSlider_callback');
521
  function crellyslider_importSlider_callback() {
 
 
 
 
 
522
  foreach($_FILES as $file) {
523
+ $real_output = crellyslider_importSlider($file['tmp_name']);
524
+
525
+ if($real_output == false) {
 
 
526
  echo false;
527
  die();
528
  }
529
 
530
+ $real_output = json_encode($real_output);
531
+ if(is_array($real_output)) print_r($real_output);
532
+ else echo $real_output;
533
+
534
+ die();
535
+ }
536
+ }
537
+
538
+ // Imports a slider given a .zip file path
539
+ function crellyslider_importSlider($filePath) {
540
+ global $wpdb;
541
+
542
+ // Clear the temp folder
543
+ array_map('unlink', glob(CS_PATH . '/wordpress/temp/*'));
544
+
545
+ $output = true;
546
+ $real_output = true;
547
+
548
+ $zip = new ZipArchive();
549
+ if($zip->open($filePath) !== TRUE) {
550
+ return false;
551
+ }
552
 
553
+ $zip->extractTo(CS_PATH . '/wordpress/temp/');
554
 
555
+ $imported_array = json_decode(file_get_contents(CS_PATH . '/wordpress/temp/slider.json'));
 
 
 
 
 
 
 
 
556
 
557
+ $sliders = $imported_array->sliders;
558
+ foreach($sliders as $slider) {
559
+ // Prevent compatiblity issues with old .zip exported sliders (< 1.2.0)
560
+ if(! isset($slider->randomOrder)) {
561
+ $slider->randomOrder = 0;
562
+ }
563
+ if(! isset($slider->startFromSlide)) {
564
+ $slider->startFromSlide = 0;
565
  }
566
 
567
+ $output = crellyslider_insertSliderSQL((array) $slider);
568
+ }
569
+
570
+ if($output === false) {
571
+ $real_output = false;
572
+ }
573
+ else {
574
+ $imported_slider_id = $wpdb->insert_id;
575
+
576
+ // Import slides
577
+ $slides = $imported_array->slides;
578
+ if(empty($slides)) {
579
+ $output = true;
580
  }
581
  else {
582
+ foreach($slides as $key => $slide) {
583
+ $slides[$key]->slider_parent = $imported_slider_id;
584
 
585
+ // Set background images
586
+ if($slides[$key]->background_type_image != 'undefined' && $slides[$key]->background_type_image != 'none') {
587
+ $url = CS_PATH . '/wordpress/temp/' . $slides[$key]->background_type_image;
588
+ $id = crellyslider_importImage($url);
589
+ $slides[$key]->background_type_image = $id;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
590
  }
591
  }
592
+ $temp = crellyslider_wp_insert_rows($slides, $wpdb->prefix . 'crellyslider_slides');
593
+ if($temp === false) {
594
+ $output = false;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
595
  }
596
  }
597
 
598
+ // Import elements
599
+ $elements = (array) $imported_array->elements;
600
+ if(empty($elements)) {
601
+ $output = true;
 
 
 
602
  }
603
  else {
604
+ foreach($elements as $key => $element) {
605
+ $elements[$key]->slider_parent = $imported_slider_id;
 
 
 
 
 
606
 
607
+ // Set images
608
+ if($elements[$key]->type == 'image') {
609
+ $url = CS_PATH . '/wordpress/temp/' . $elements[$key]->image_src;
610
+ $id = crellyslider_importImage($url);
611
+ $elements[$key]->image_src = $id;
612
+ }
613
+ }
614
+ $temp = crellyslider_wp_insert_rows($elements, $wpdb->prefix . 'crellyslider_elements');
615
+ if($temp === false) {
616
+ $output = false;
617
+ }
618
 
619
+ if($output === false) {
620
+ $real_output = false;
621
+ }
622
+ }
623
+ }
624
+
625
+ if($real_output === true) {
626
+ $real_output = array(
627
+ 'response' => true,
628
+ 'imported_slider_id' => $imported_slider_id,
629
+ 'imported_slider_name' => $imported_array->sliders[0]->name,
630
+ 'imported_slider_alias' => $imported_array->sliders[0]->alias,
631
+ );
632
+ }
633
+ else {
634
+ $real_output = array(
635
+ 'response' => false,
636
+ 'imported_slider_id' => false,
637
+ 'imported_slider_name' => false,
638
+ 'imported_slider_alias' => false,
639
+ );
640
  }
641
+
642
+ return $real_output;
643
  }
644
 
645
  // Imports an image to the WordPress media library. Returns the attachment ID
658
  'post_content' => '',
659
  'post_status' => 'inherit'
660
  );
661
+ $attachment_id = wp_insert_attachment($attachment, $upload_file['file'], 0);
662
  if (!is_wp_error($attachment_id)) {
663
  require_once(ABSPATH . "wp-admin" . '/includes/image.php');
664
  $attachment_data = wp_generate_attachment_metadata( $attachment_id, $upload_file['file'] );
668
 
669
  return $attachment_id;
670
  }
671
+ ?>
wordpress/common.php CHANGED
@@ -6,12 +6,14 @@ class CrellySliderCommon {
6
  public static function enqueues() {
7
  wp_enqueue_script('jquery');
8
  wp_enqueue_script('jquery-ui-core');
9
- wp_enqueue_style('crellyslider', CS_PLUGIN_URL . '/css/crellyslider.css', array(), CS_VERSION);
10
  if(CS_DEBUG) {
11
  wp_enqueue_script('jquery.crellyslider', CS_PLUGIN_URL . '/js/jquery.crellyslider.js', array(), CS_VERSION, false);
 
12
  }
13
  else {
14
  wp_enqueue_script('jquery.crellyslider.min', CS_PLUGIN_URL . '/js/jquery.crellyslider.min.js', array(), CS_VERSION, false);
 
15
  }
16
  }
17
 
6
  public static function enqueues() {
7
  wp_enqueue_script('jquery');
8
  wp_enqueue_script('jquery-ui-core');
9
+
10
  if(CS_DEBUG) {
11
  wp_enqueue_script('jquery.crellyslider', CS_PLUGIN_URL . '/js/jquery.crellyslider.js', array(), CS_VERSION, false);
12
+ wp_enqueue_style('crellyslider', CS_PLUGIN_URL . '/css/crellyslider.css', array(), CS_VERSION);
13
  }
14
  else {
15
  wp_enqueue_script('jquery.crellyslider.min', CS_PLUGIN_URL . '/js/jquery.crellyslider.min.js', array(), CS_VERSION, false);
16
+ wp_enqueue_style('crellyslider.min', CS_PLUGIN_URL . '/css/crellyslider.min.css', array(), CS_VERSION);
17
  }
18
  }
19
 
wordpress/css/admin.css CHANGED
@@ -11,6 +11,14 @@
11
  box-shadow: none;
12
  }
13
 
 
 
 
 
 
 
 
 
14
  .cs-admin .cs-style-list {
15
  list-style-type: disc;
16
  padding-left: 20px;
@@ -244,6 +252,10 @@
244
  border-right: 1px solid #e0e0e0;
245
  }
246
 
 
 
 
 
247
  .cs-admin .cs-table td:last-child {
248
  border-right: none;
249
  }
@@ -341,6 +353,12 @@
341
  border-color: #f4a911;
342
  }
343
 
 
 
 
 
 
 
344
  #cs-slides {
345
  display: none;
346
  }
@@ -524,6 +542,7 @@
524
  left: 0;
525
  top: 0;
526
  cursor: move;
 
527
  }
528
 
529
  .crellyslider ul li * {
11
  box-shadow: none;
12
  }
13
 
14
+ .cs-admin input[name='cs-slide-background_type_color'][value='1'] {
15
+ margin-top: 8px;
16
+ }
17
+
18
+ .cs-admin .wp-picker-container {
19
+ display: inline-block;
20
+ }
21
+
22
  .cs-admin .cs-style-list {
23
  list-style-type: disc;
24
  padding-left: 20px;
252
  border-right: 1px solid #e0e0e0;
253
  }
254
 
255
+ .cs-admin .cs-table td input[type=checkbox] {
256
+ vertical-align: bottom;
257
+ }
258
+
259
  .cs-admin .cs-table td:last-child {
260
  border-right: none;
261
  }
353
  border-color: #f4a911;
354
  }
355
 
356
+ .cs-admin .cs-message.cs-message-wait {
357
+ color: #444444;
358
+ background-color: #e6e6e6;
359
+ border-color: #525252;
360
+ }
361
+
362
  #cs-slides {
363
  display: none;
364
  }
542
  left: 0;
543
  top: 0;
544
  cursor: move;
545
+ font-size: 14px;
546
  }
547
 
548
  .crellyslider ul li * {
wordpress/css/jquery.datetimepicker.css ADDED
@@ -0,0 +1,568 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .xdsoft_datetimepicker {
2
+ box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.506);
3
+ background: #fff;
4
+ border-bottom: 1px solid #bbb;
5
+ border-left: 1px solid #ccc;
6
+ border-right: 1px solid #ccc;
7
+ border-top: 1px solid #ccc;
8
+ color: #333;
9
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
10
+ padding: 8px;
11
+ padding-left: 0;
12
+ padding-top: 2px;
13
+ position: absolute;
14
+ z-index: 9999;
15
+ -moz-box-sizing: border-box;
16
+ box-sizing: border-box;
17
+ display: none;
18
+ }
19
+ .xdsoft_datetimepicker.xdsoft_rtl {
20
+ padding: 8px 0 8px 8px;
21
+ }
22
+
23
+ .xdsoft_datetimepicker iframe {
24
+ position: absolute;
25
+ left: 0;
26
+ top: 0;
27
+ width: 75px;
28
+ height: 210px;
29
+ background: transparent;
30
+ border: none;
31
+ }
32
+
33
+ /*For IE8 or lower*/
34
+ .xdsoft_datetimepicker button {
35
+ border: none !important;
36
+ }
37
+
38
+ .xdsoft_noselect {
39
+ -webkit-touch-callout: none;
40
+ -webkit-user-select: none;
41
+ -khtml-user-select: none;
42
+ -moz-user-select: none;
43
+ -ms-user-select: none;
44
+ -o-user-select: none;
45
+ user-select: none;
46
+ }
47
+
48
+ .xdsoft_noselect::selection { background: transparent }
49
+ .xdsoft_noselect::-moz-selection { background: transparent }
50
+
51
+ .xdsoft_datetimepicker.xdsoft_inline {
52
+ display: inline-block;
53
+ position: static;
54
+ box-shadow: none;
55
+ }
56
+
57
+ .xdsoft_datetimepicker * {
58
+ -moz-box-sizing: border-box;
59
+ box-sizing: border-box;
60
+ padding: 0;
61
+ margin: 0;
62
+ }
63
+
64
+ .xdsoft_datetimepicker .xdsoft_datepicker, .xdsoft_datetimepicker .xdsoft_timepicker {
65
+ display: none;
66
+ }
67
+
68
+ .xdsoft_datetimepicker .xdsoft_datepicker.active, .xdsoft_datetimepicker .xdsoft_timepicker.active {
69
+ display: block;
70
+ }
71
+
72
+ .xdsoft_datetimepicker .xdsoft_datepicker {
73
+ width: 224px;
74
+ float: left;
75
+ margin-left: 8px;
76
+ }
77
+ .xdsoft_datetimepicker.xdsoft_rtl .xdsoft_datepicker {
78
+ float: right;
79
+ margin-right: 8px;
80
+ margin-left: 0;
81
+ }
82
+
83
+ .xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_datepicker {
84
+ width: 256px;
85
+ }
86
+
87
+ .xdsoft_datetimepicker .xdsoft_timepicker {
88
+ width: 58px;
89
+ float: left;
90
+ text-align: center;
91
+ margin-left: 8px;
92
+ margin-top: 0;
93
+ }
94
+ .xdsoft_datetimepicker.xdsoft_rtl .xdsoft_timepicker {
95
+ float: right;
96
+ margin-right: 8px;
97
+ margin-left: 0;
98
+ }
99
+
100
+ .xdsoft_datetimepicker .xdsoft_datepicker.active+.xdsoft_timepicker {
101
+ margin-top: 8px;
102
+ margin-bottom: 3px
103
+ }
104
+
105
+ .xdsoft_datetimepicker .xdsoft_monthpicker {
106
+ position: relative;
107
+ text-align: center;
108
+ }
109
+
110
+ .xdsoft_datetimepicker .xdsoft_label i,
111
+ .xdsoft_datetimepicker .xdsoft_prev,
112
+ .xdsoft_datetimepicker .xdsoft_next,
113
+ .xdsoft_datetimepicker .xdsoft_today_button {
114
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAAeCAYAAADaW7vzAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6Q0NBRjI1NjM0M0UwMTFFNDk4NkFGMzJFQkQzQjEwRUIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6Q0NBRjI1NjQ0M0UwMTFFNDk4NkFGMzJFQkQzQjEwRUIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDQ0FGMjU2MTQzRTAxMUU0OTg2QUYzMkVCRDNCMTBFQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDQ0FGMjU2MjQzRTAxMUU0OTg2QUYzMkVCRDNCMTBFQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PoNEP54AAAIOSURBVHja7Jq9TsMwEMcxrZD4WpBYeKUCe+kTMCACHZh4BFfHO/AAIHZGFhYkBBsSEqxsLCAgXKhbXYOTxh9pfJVP+qutnZ5s/5Lz2Y5I03QhWji2GIcgAokWgfCxNvcOCCGKqiSqhUp0laHOne05vdEyGMfkdxJDVjgwDlEQgYQBgx+ULJaWSXXS6r/ER5FBVR8VfGftTKcITNs+a1XpcFoExREIDF14AVIFxgQUS+h520cdud6wNkC0UBw6BCO/HoCYwBhD8QCkQ/x1mwDyD4plh4D6DDV0TAGyo4HcawLIBBSLDkHeH0Mg2yVP3l4TQMZQDDsEOl/MgHQqhMNuE0D+oBh0CIr8MAKyazBH9WyBuKxDWgbXfjNf32TZ1KWm/Ap1oSk/R53UtQ5xTh3LUlMmT8gt6g51Q9p+SobxgJQ/qmsfZhWywGFSl0yBjCLJCMgXail3b7+rumdVJ2YRss4cN+r6qAHDkPWjPjdJCF4n9RmAD/V9A/Wp4NQassDjwlB6XBiCxcJQWmZZb8THFilfy/lfrTvLghq2TqTHrRMTKNJ0sIhdo15RT+RpyWwFdY96UZ/LdQKBGjcXpcc1AlSFEfLmouD+1knuxBDUVrvOBmoOC/rEcN7OQxKVeJTCiAdUzUJhA2Oez9QTkp72OTVcxDcXY8iKNkxGAJXmJCOQwOa6dhyXsOa6XwEGAKdeb5ET3rQdAAAAAElFTkSuQmCC);
115
+ }
116
+
117
+ .xdsoft_datetimepicker .xdsoft_label i {
118
+ opacity: 0.5;
119
+ background-position: -92px -19px;
120
+ display: inline-block;
121
+ width: 9px;
122
+ height: 20px;
123
+ vertical-align: middle;
124
+ }
125
+
126
+ .xdsoft_datetimepicker .xdsoft_prev {
127
+ float: left;
128
+ background-position: -20px 0;
129
+ }
130
+ .xdsoft_datetimepicker .xdsoft_today_button {
131
+ float: left;
132
+ background-position: -70px 0;
133
+ margin-left: 5px;
134
+ }
135
+
136
+ .xdsoft_datetimepicker .xdsoft_next {
137
+ float: right;
138
+ background-position: 0 0;
139
+ }
140
+
141
+ .xdsoft_datetimepicker .xdsoft_next,
142
+ .xdsoft_datetimepicker .xdsoft_prev ,
143
+ .xdsoft_datetimepicker .xdsoft_today_button {
144
+ background-color: transparent;
145
+ background-repeat: no-repeat;
146
+ border: 0 none;
147
+ cursor: pointer;
148
+ display: block;
149
+ height: 30px;
150
+ opacity: 0.5;
151
+ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
152
+ outline: medium none;
153
+ overflow: hidden;
154
+ padding: 0;
155
+ position: relative;
156
+ text-indent: 100%;
157
+ white-space: nowrap;
158
+ width: 20px;
159
+ min-width: 0;
160
+ }
161
+
162
+ .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev,
163
+ .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_next {
164
+ float: none;
165
+ background-position: -40px -15px;
166
+ height: 15px;
167
+ width: 30px;
168
+ display: block;
169
+ margin-left: 14px;
170
+ margin-top: 7px;
171
+ }
172
+ .xdsoft_datetimepicker.xdsoft_rtl .xdsoft_timepicker .xdsoft_prev,
173
+ .xdsoft_datetimepicker.xdsoft_rtl .xdsoft_timepicker .xdsoft_next {
174
+ float: none;
175
+ margin-left: 0;
176
+ margin-right: 14px;
177
+ }
178
+
179
+ .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev {
180
+ background-position: -40px 0;
181
+ margin-bottom: 7px;
182
+ margin-top: 0;
183
+ }
184
+
185
+ .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box {
186
+ height: 151px;
187
+ overflow: hidden;
188
+ border-bottom: 1px solid #ddd;
189
+ }
190
+
191
+ .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box >div >div {
192
+ background: #f5f5f5;
193
+ border-top: 1px solid #ddd;
194
+ color: #666;
195
+ font-size: 12px;
196
+ text-align: center;
197
+ border-collapse: collapse;
198
+ cursor: pointer;
199
+ border-bottom-width: 0;
200
+ height: 25px;
201
+ line-height: 25px;
202
+ }
203
+
204
+ .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box >div > div:first-child {
205
+ border-top-width: 0;
206
+ }
207
+
208
+ .xdsoft_datetimepicker .xdsoft_today_button:hover,
209
+ .xdsoft_datetimepicker .xdsoft_next:hover,
210
+ .xdsoft_datetimepicker .xdsoft_prev:hover {
211
+ opacity: 1;
212
+ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
213
+ }
214
+
215
+ .xdsoft_datetimepicker .xdsoft_label {
216
+ display: inline;
217
+ position: relative;
218
+ z-index: 9999;
219
+ margin: 0;
220
+ padding: 5px 3px;
221
+ font-size: 14px;
222
+ line-height: 20px;
223
+ font-weight: bold;
224
+ background-color: #fff;
225
+ float: left;
226
+ width: 182px;
227
+ text-align: center;
228
+ cursor: pointer;
229
+ }
230
+
231
+ .xdsoft_datetimepicker .xdsoft_label:hover>span {
232
+ text-decoration: underline;
233
+ }
234
+
235
+ .xdsoft_datetimepicker .xdsoft_label:hover i {
236
+ opacity: 1.0;
237
+ }
238
+
239
+ .xdsoft_datetimepicker .xdsoft_label > .xdsoft_select {
240
+ border: 1px solid #ccc;
241
+ position: absolute;
242
+ right: 0;
243
+ top: 30px;
244
+ z-index: 101;
245
+ display: none;
246
+ background: #fff;
247
+ max-height: 160px;
248
+ overflow-y: hidden;
249
+ }
250
+
251
+ .xdsoft_datetimepicker .xdsoft_label > .xdsoft_select.xdsoft_monthselect{ right: -7px }
252
+ .xdsoft_datetimepicker .xdsoft_label > .xdsoft_select.xdsoft_yearselect{ right: 2px }
253
+ .xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option:hover {
254
+ color: #fff;
255
+ background: #ff8000;
256
+ }
257
+
258
+ .xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option {
259
+ padding: 2px 10px 2px 5px;
260
+ text-decoration: none !important;
261
+ }
262
+
263
+ .xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option.xdsoft_current {
264
+ background: #33aaff;
265
+ box-shadow: #178fe5 0 1px 3px 0 inset;
266
+ color: #fff;
267
+ font-weight: 700;
268
+ }
269
+
270
+ .xdsoft_datetimepicker .xdsoft_month {
271
+ width: 100px;
272
+ text-align: right;
273
+ }
274
+
275
+ .xdsoft_datetimepicker .xdsoft_calendar {
276
+ clear: both;
277
+ }
278
+
279
+ .xdsoft_datetimepicker .xdsoft_year{
280
+ width: 48px;
281
+ margin-left: 5px;
282
+ }
283
+
284
+ .xdsoft_datetimepicker .xdsoft_calendar table {
285
+ border-collapse: collapse;
286
+ width: 100%;
287
+
288
+ }
289
+
290
+ .xdsoft_datetimepicker .xdsoft_calendar td > div {
291
+ padding-right: 5px;
292
+ }
293
+
294
+ .xdsoft_datetimepicker .xdsoft_calendar th {
295
+ height: 25px;
296
+ }
297
+
298
+ .xdsoft_datetimepicker .xdsoft_calendar td,.xdsoft_datetimepicker .xdsoft_calendar th {
299
+ width: 14.2857142%;
300
+ background: #f5f5f5;
301
+ border: 1px solid #ddd;
302
+ color: #666;
303
+ font-size: 12px;
304
+ text-align: right;
305
+ vertical-align: middle;
306
+ padding: 0;
307
+ border-collapse: collapse;
308
+ cursor: pointer;
309
+ height: 25px;
310
+ }
311
+ .xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_calendar td,.xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_calendar th {
312
+ width: 12.5%;
313
+ }
314
+
315
+ .xdsoft_datetimepicker .xdsoft_calendar th {
316
+ background: #f1f1f1;
317
+ }
318
+
319
+ .xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_today {
320
+ color: #33aaff;
321
+ }
322
+
323
+ .xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_highlighted_default {
324
+ background: #ffe9d2;
325
+ box-shadow: #ffb871 0 1px 4px 0 inset;
326
+ color: #000;
327
+ }
328
+ .xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_highlighted_mint {
329
+ background: #c1ffc9;
330
+ box-shadow: #00dd1c 0 1px 4px 0 inset;
331
+ color: #000;
332
+ }
333
+
334
+ .xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
335
+ .xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
336
+ .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box >div >div.xdsoft_current {
337
+ background: #33aaff;
338
+ box-shadow: #178fe5 0 1px 3px 0 inset;
339
+ color: #fff;
340
+ font-weight: 700;
341
+ }
342
+
343
+ .xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_other_month,
344
+ .xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_disabled,
345
+ .xdsoft_datetimepicker .xdsoft_time_box >div >div.xdsoft_disabled {
346
+ opacity: 0.5;
347
+ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
348
+ cursor: default;
349
+ }
350
+
351
+ .xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_other_month.xdsoft_disabled {
352
+ opacity: 0.2;
353
+ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
354
+ }
355
+
356
+ .xdsoft_datetimepicker .xdsoft_calendar td:hover,
357
+ .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box >div >div:hover {
358
+ color: #fff !important;
359
+ background: #ff8000 !important;
360
+ box-shadow: none !important;
361
+ }
362
+
363
+ .xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current.xdsoft_disabled:hover,
364
+ .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div.xdsoft_current.xdsoft_disabled:hover {
365
+ background: #33aaff !important;
366
+ box-shadow: #178fe5 0 1px 3px 0 inset !important;
367
+ color: #fff !important;
368
+ }
369
+
370
+ .xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_disabled:hover,
371
+ .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box >div >div.xdsoft_disabled:hover {
372
+ color: inherit !important;
373
+ background: inherit !important;
374
+ box-shadow: inherit !important;
375
+ }
376
+
377
+ .xdsoft_datetimepicker .xdsoft_calendar th {
378
+ font-weight: 700;
379
+ text-align: center;
380
+ color: #999;
381
+ cursor: default;
382
+ }
383
+
384
+ .xdsoft_datetimepicker .xdsoft_copyright {
385
+ color: #ccc !important;
386
+ font-size: 10px;
387
+ clear: both;
388
+ float: none;
389
+ margin-left: 8px;
390
+ }
391
+
392
+ .xdsoft_datetimepicker .xdsoft_copyright a { color: #eee !important }
393
+ .xdsoft_datetimepicker .xdsoft_copyright a:hover { color: #aaa !important }
394
+
395
+ .xdsoft_time_box {
396
+ position: relative;
397
+ border: 1px solid #ccc;
398
+ }
399
+ .xdsoft_scrollbar >.xdsoft_scroller {
400
+ background: #ccc !important;
401
+ height: 20px;
402
+ border-radius: 3px;
403
+ }
404
+ .xdsoft_scrollbar {
405
+ position: absolute;
406
+ width: 7px;
407
+ right: 0;
408
+ top: 0;
409
+ bottom: 0;
410
+ cursor: pointer;
411
+ }
412
+ .xdsoft_datetimepicker.xdsoft_rtl .xdsoft_scrollbar {
413
+ left: 0;
414
+ right: auto;
415
+ }
416
+ .xdsoft_scroller_box {
417
+ position: relative;
418
+ }
419
+
420
+ .xdsoft_datetimepicker.xdsoft_dark {
421
+ box-shadow: 0 5px 15px -5px rgba(255, 255, 255, 0.506);
422
+ background: #000;
423
+ border-bottom: 1px solid #444;
424
+ border-left: 1px solid #333;
425
+ border-right: 1px solid #333;
426
+ border-top: 1px solid #333;
427
+ color: #ccc;
428
+ }
429
+
430
+ .xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box {
431
+ border-bottom: 1px solid #222;
432
+ }
433
+ .xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box >div >div {
434
+ background: #0a0a0a;
435
+ border-top: 1px solid #222;
436
+ color: #999;
437
+ }
438
+
439
+ .xdsoft_datetimepicker.xdsoft_dark .xdsoft_label {
440
+ background-color: #000;
441
+ }
442
+ .xdsoft_datetimepicker.xdsoft_dark .xdsoft_label > .xdsoft_select {
443
+ border: 1px solid #333;
444
+ background: #000;
445
+ }
446
+
447
+ .xdsoft_datetimepicker.xdsoft_dark .xdsoft_label > .xdsoft_select > div > .xdsoft_option:hover {
448
+ color: #000;
449
+ background: #007fff;
450
+ }
451
+
452
+ .xdsoft_datetimepicker.xdsoft_dark .xdsoft_label > .xdsoft_select > div > .xdsoft_option.xdsoft_current {
453
+ background: #cc5500;
454
+ box-shadow: #b03e00 0 1px 3px 0 inset;
455
+ color: #000;
456
+ }
457
+
458
+ .xdsoft_datetimepicker.xdsoft_dark .xdsoft_label i,
459
+ .xdsoft_datetimepicker.xdsoft_dark .xdsoft_prev,
460
+ .xdsoft_datetimepicker.xdsoft_dark .xdsoft_next,
461
+ .xdsoft_datetimepicker.xdsoft_dark .xdsoft_today_button {
462
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAAeCAYAAADaW7vzAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QUExQUUzOTA0M0UyMTFFNDlBM0FFQTJENTExRDVBODYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QUExQUUzOTE0M0UyMTFFNDlBM0FFQTJENTExRDVBODYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpBQTFBRTM4RTQzRTIxMUU0OUEzQUVBMkQ1MTFENUE4NiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpBQTFBRTM4RjQzRTIxMUU0OUEzQUVBMkQ1MTFENUE4NiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pp0VxGEAAAIASURBVHja7JrNSgMxEMebtgh+3MSLr1T1Xn2CHoSKB08+QmR8Bx9A8e7RixdB9CKCoNdexIugxFlJa7rNZneTbLIpM/CnNLsdMvNjM8l0mRCiQ9Ye61IKCAgZAUnH+mU3MMZaHYChBnJUDzWOFZdVfc5+ZFLbrWDeXPwbxIqrLLfaeS0hEBVGIRQCEiZoHQwtlGSByCCdYBl8g8egTTAWoKQMRBRBcZxYlhzhKegqMOageErsCHVkk3hXIFooDgHB1KkHIHVgzKB4ADJQ/A1jAFmAYhkQqA5TOBtocrKrgXwQA8gcFIuAIO8sQSA7hidvPwaQGZSaAYHOUWJABhWWw2EMIH9QagQERU4SArJXo0ZZL18uvaxejXt/Em8xjVBXmvFr1KVm/AJ10tRe2XnraNqaJvKE3KHuUbfK1E+VHB0q40/y3sdQSxY4FHWeKJCunP8UyDdqJZenT3ntVV5jIYCAh20vT7ioP8tpf6E2lfEMwERe+whV1MHjwZB7PBiCxcGQWwKZKD62lfGNnP/1poFAA60T7rF1UgcKd2id3KDeUS+oLWV8DfWAepOfq00CgQabi9zjcgJVYVD7PVzQUAUGAQkbNJTBICDhgwYTjDYD6XeW08ZKh+A4pYkzenOxXUbvZcWz7E8ykRMnIHGX1XPl+1m2vPYpL+2qdb8CDAARlKFEz/ZVkAAAAABJRU5ErkJggg==);
463
+ }
464
+
465
+ .xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td,
466
+ .xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th {
467
+ background: #0a0a0a;
468
+ border: 1px solid #222;
469
+ color: #999;
470
+ }
471
+
472
+ .xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th {
473
+ background: #0e0e0e;
474
+ }
475
+
476
+ .xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_today {
477
+ color: #cc5500;
478
+ }
479
+
480
+ .xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_highlighted_default {
481
+ background: #ffe9d2;
482
+ box-shadow: #ffb871 0 1px 4px 0 inset;
483
+ color:#000;
484
+ }
485
+ .xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_highlighted_mint {
486
+ background: #c1ffc9;
487
+ box-shadow: #00dd1c 0 1px 4px 0 inset;
488
+ color:#000;
489
+ }
490
+
491
+ .xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_default,
492
+ .xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_current,
493
+ .xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box >div >div.xdsoft_current {
494
+ background: #cc5500;
495
+ box-shadow: #b03e00 0 1px 3px 0 inset;
496
+ color: #000;
497
+ }
498
+
499
+ .xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td:hover,
500
+ .xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box >div >div:hover {
501
+ color: #000 !important;
502
+ background: #007fff !important;
503
+ }
504
+
505
+ .xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th {
506
+ color: #666;
507
+ }
508
+
509
+ .xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright { color: #333 !important }
510
+ .xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright a { color: #111 !important }
511
+ .xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright a:hover { color: #555 !important }
512
+
513
+ .xdsoft_dark .xdsoft_time_box {
514
+ border: 1px solid #333;
515
+ }
516
+
517
+ .xdsoft_dark .xdsoft_scrollbar >.xdsoft_scroller {
518
+ background: #333 !important;
519
+ }
520
+ .xdsoft_datetimepicker .xdsoft_save_selected {
521
+ display: block;
522
+ border: 1px solid #dddddd !important;
523
+ margin-top: 5px;
524
+ width: 100%;
525
+ color: #454551;
526
+ font-size: 13px;
527
+ }
528
+ .xdsoft_datetimepicker .blue-gradient-button {
529
+ font-family: "museo-sans", "Book Antiqua", sans-serif;
530
+ font-size: 12px;
531
+ font-weight: 300;
532
+ color: #82878c;
533
+ height: 28px;
534
+ position: relative;
535
+ padding: 4px 17px 4px 33px;
536
+ border: 1px solid #d7d8da;
537
+ background: -moz-linear-gradient(top, #fff 0%, #f4f8fa 73%);
538
+ /* FF3.6+ */
539
+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(73%, #f4f8fa));
540
+ /* Chrome,Safari4+ */
541
+ background: -webkit-linear-gradient(top, #fff 0%, #f4f8fa 73%);
542
+ /* Chrome10+,Safari5.1+ */
543
+ background: -o-linear-gradient(top, #fff 0%, #f4f8fa 73%);
544
+ /* Opera 11.10+ */
545
+ background: -ms-linear-gradient(top, #fff 0%, #f4f8fa 73%);
546
+ /* IE10+ */
547
+ background: linear-gradient(to bottom, #fff 0%, #f4f8fa 73%);
548
+ /* W3C */
549
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fff', endColorstr='#f4f8fa',GradientType=0 );
550
+ /* IE6-9 */
551
+ }
552
+ .xdsoft_datetimepicker .blue-gradient-button:hover, .xdsoft_datetimepicker .blue-gradient-button:focus, .xdsoft_datetimepicker .blue-gradient-button:hover span, .xdsoft_datetimepicker .blue-gradient-button:focus span {
553
+ color: #454551;
554
+ background: -moz-linear-gradient(top, #f4f8fa 0%, #FFF 73%);
555
+ /* FF3.6+ */
556
+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f4f8fa), color-stop(73%, #FFF));
557
+ /* Chrome,Safari4+ */
558
+ background: -webkit-linear-gradient(top, #f4f8fa 0%, #FFF 73%);
559
+ /* Chrome10+,Safari5.1+ */
560
+ background: -o-linear-gradient(top, #f4f8fa 0%, #FFF 73%);
561
+ /* Opera 11.10+ */
562
+ background: -ms-linear-gradient(top, #f4f8fa 0%, #FFF 73%);
563
+ /* IE10+ */
564
+ background: linear-gradient(to bottom, #f4f8fa 0%, #FFF 73%);
565
+ /* W3C */
566
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f4f8fa', endColorstr='#FFF',GradientType=0 );
567
+ /* IE6-9 */
568
+ }
wordpress/frontend.php CHANGED
@@ -37,12 +37,18 @@ class CrellySliderFrontend {
37
  public static function output($alias) {
38
  global $wpdb;
39
 
40
- $slider = $wpdb->get_row($wpdb->prepare('SELECT * FROM ' . $wpdb->prefix . 'crellyslider_sliders WHERE alias = %s', esc_sql($alias)));
41
-
42
  if(! $slider) {
43
  return __('The slider hasn\'t been found', 'crelly-slider');
44
  }
45
 
 
 
 
 
 
 
46
  $slider_id = esc_sql($slider->id);
47
  $slides = $wpdb->get_results($wpdb->prepare('SELECT * FROM ' . $wpdb->prefix . 'crellyslider_slides WHERE draft = 0 AND slider_parent = %d ORDER BY position', $slider_id));
48
 
@@ -123,8 +129,8 @@ class CrellySliderFrontend {
123
  'data-left="' . esc_attr($element->data_left) . '"' . "\n" .
124
  'data-time="' . esc_attr($element->data_time) . '"' . "\n";
125
  }
126
- $output .= '>' . "\n" .
127
- stripslashes($element->inner_html) . "\n" .
128
  '</div>' . "\n";
129
  break;
130
 
37
  public static function output($alias) {
38
  global $wpdb;
39
 
40
+ // Check if the slider exists
41
+ $slider = $wpdb->get_row($wpdb->prepare('SELECT id FROM ' . $wpdb->prefix . 'crellyslider_sliders WHERE alias = %s', esc_sql($alias)));
42
  if(! $slider) {
43
  return __('The slider hasn\'t been found', 'crelly-slider');
44
  }
45
 
46
+ // Get the slider. Return if now() is not between from/to dates
47
+ $slider = $wpdb->get_row($wpdb->prepare('SELECT * FROM ' . $wpdb->prefix . 'crellyslider_sliders WHERE NOW() BETWEEN fromDate AND toDate AND alias=%s', esc_sql($alias)));
48
+ if(! $slider) {
49
+ return '';
50
+ }
51
+
52
  $slider_id = esc_sql($slider->id);
53
  $slides = $wpdb->get_results($wpdb->prepare('SELECT * FROM ' . $wpdb->prefix . 'crellyslider_slides WHERE draft = 0 AND slider_parent = %d ORDER BY position', $slider_id));
54
 
129
  'data-left="' . esc_attr($element->data_left) . '"' . "\n" .
130
  'data-time="' . esc_attr($element->data_time) . '"' . "\n";
131
  }
132
+ $output .= '>' .
133
+ stripslashes($element->inner_html) .
134
  '</div>' . "\n";
135
  break;
136
 
wordpress/js/admin.js CHANGED
@@ -50,7 +50,7 @@
50
  crellyslider_draggableElements();
51
 
52
  function crellyslider_showSuccess() {
53
- $('.cs-admin .cs-message .cs-message-working').css('display', 'none');
54
 
55
  var target = $('.cs-admin .cs-message.cs-message-ok');
56
  target.css({
@@ -69,7 +69,7 @@
69
  }
70
 
71
  function crellyslider_showError() {
72
- $('.cs-admin .cs-message .cs-message-working').css('display', 'none');
73
 
74
  var target = $('.cs-admin .cs-message.cs-message-error');
75
  target.css({
@@ -87,6 +87,34 @@
87
  });
88
  }
89
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90
  /*************/
91
  /** SLIDERS **/
92
  /*************/
@@ -128,6 +156,29 @@
128
  return slider_alias;
129
  }
130
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
131
  /************/
132
  /** SLIDES **/
133
  /************/
@@ -893,44 +944,25 @@
893
 
894
  textarea.attr('id', 'cs-element-editor-' + crellyslider_convertToWPEditor.static_counter);
895
 
896
- var lan = crellyslider_locale.split('_');
897
- lan = lan[0];
898
-
899
- settings = {
900
- selector : '#cs-element-editor-' + (crellyslider_convertToWPEditor.static_counter),
901
- body_class : ('cs-element-editor-' + (crellyslider_convertToWPEditor.static_counter) + ' locale-' + crellyslider_locale).toLowerCase(),
902
-
903
- toolbar1 : "bold,italic,strikethrough,alignleft,aligncenter,alignright,link,unlink,underline,forecolor,backcolor ",
904
- toolbar2 : "fontselect,fontsizeselect ",
905
- toolbar3 : "",
906
- toolbar4 : "",
907
- height : 200,
908
- forced_root_block : false,
909
- wpautop : false,
910
- fontsize_formats : "1px 2px 3px 4px 5px 6px 7px 8px 9px 10px 11px 12px 13px 14px 15px 16px 17px 18px 19px 20px 21px 22px 23px 24px 25px 26px 27px 28px 29px 30px 31px 32px 33px 34px 35px 36px 37px 38px 39px 40px 41px 42px 43px 44px 45px 46px 47px 48px 49px 50px 51px 52px 53px 54px 55px 56px 57px 58px 59px 60px 61px 62px 63px 64px 65px 66px 67px 68px 69px 70px 71px 72px 73px 74px 75px 76px 77px 78px 79px 80px 81px 82px 83px 84px 85px 86px 87px 88px 89px 90px 91px 92px 93px 94px 95px 96px 97px 98px 99px 100px 101px 102px 103px 104px 105px 106px 107px 108px 109px 110px 111px 112px 113px 114px 115px 116px 117px 118px 119px 120px 121px 122px 123px 124px 125px 126px 127px 128px 129px 130px 131px 132px 133px 134px 135px 136px 137px 138px 139px 140px 141px 142px 143px 144px 145px 146px 147px 148px 149px 150px 151px 152px 153px 154px 155px 156px 157px 158px 159px 160px 161px 162px 163px 164px 165px 166px 167px 168px 169px 170px 171px 172px 173px 174px 175px 176px 177px 178px 179px 180px 181px 182px 183px 184px 185px 186px 187px 188px 189px 190px 191px 192px 193px 194px 195px 196px 197px 198px 199px 200px",
911
-
912
- wp_lang_attr : crellyslider_locale,
913
- content_css : "",
914
- cache_suffix : "",
915
- language : lan,
916
- theme:"modern",skin:"lightgray",formats:{alignleft: [{selector: "p,h1,h2,h3,h4,h5,h6,td,th,div,ul,ol,li", styles: {textAlign:"left", lineHeight:"inherit"}, inline: "div"},{selector: "img,table,dl.wp-caption", classes: "alignleft"}],aligncenter: [{selector: "p,h1,h2,h3,h4,h5,h6,td,th,div,ul,ol,li", styles: {textAlign:"center", lineHeight:"inherit"}, inline: "div"},{selector: "img,table,dl.wp-caption", classes: "aligncenter"}],alignright: [{selector: "p,h1,h2,h3,h4,h5,h6,td,th,div,ul,ol,li", styles: {textAlign:"right", lineHeight:"inherit"}, inline: "div"},{selector: "img,table,dl.wp-caption", classes: "alignright"}],strikethrough: {inline: "del"}},relative_urls:false,remove_script_host:false,convert_urls:false,browser_spellcheck:true,fix_list_elements:true,entities:"38,amp,60,lt,62,gt",entity_encoding:"raw",keep_styles:false,preview_styles:"font-family font-size font-weight font-style text-decoration text-transform",end_container_on_empty_block:true,wpeditimage_disable_captions:false,wpeditimage_html5_captions:true,plugins:"charmap,colorpicker,hr,lists,media,paste,tabfocus,textcolor,fullscreen,wordpress,wpautoresize,wpeditimage,wpemoji,wpgallery,wplink,wpdialogs,wptextpattern,wpview,image",resize:"vertical",menubar:false,indent:true,tabfocus_elements:":prev,:next",
917
-
918
- setup : function(editor) {
919
- editor.on("KeyUp ExecCommand ContextMenu Change", function (e) {
920
- editor.save();
921
- crellyslider_triggerTinyMCE(editor.id);
922
- });
923
-
924
- editor.on("init", function() {
925
- // Set default CSS
926
- this.getDoc().body.style.fontSize = "14px";
927
- this.getDoc().body.style.fontFamily = "Verdana";
928
-
929
- // Insert switch button
930
- textarea.parent().prepend('<div class="cs-switch-editor"><div onclick="tinyMCE.execCommand(\'mceToggleEditor\', false, \'' + editor.id + '\')" class="cs-button cs-is-default cs-tinymce">' + crellyslider_translations.switch_editor + '</div></div>');
931
- });
932
- }
933
- };
934
 
935
  if(typeof tinyMCE != 'undefined') {
936
  tinyMCE.init(settings);
@@ -1351,6 +1383,8 @@
1351
 
1352
  // Sends an array with the new or current slider options
1353
  function crellyslider_saveSlider() {
 
 
1354
  var content = $('.cs-admin .cs-slider #cs-slider-settings');
1355
  var options = {
1356
  id : parseInt($('.cs-admin .cs-slider .cs-save-settings').data('id')),
@@ -1368,6 +1402,8 @@
1368
  pauseOnHover : parseInt(content.find('#cs-slider-pauseOnHover').val()),
1369
  randomOrder : parseInt(content.find('#cs-slider-randomOrder').val()),
1370
  startFromSlide : parseInt(content.find('#cs-slider-startFromSlide').val()),
 
 
1371
  callbacks : content.find('#cs-slider-callbacks').val(),
1372
  };
1373
 
@@ -1485,7 +1521,7 @@
1485
  }
1486
 
1487
  // Sends an array with all the elements options of each slide
1488
- function crellyslider_saveElements() {
1489
  var slides = $('.cs-admin .cs-slider #cs-slides .cs-slide');
1490
  var i = 0, j = 0;
1491
  var final_options = {};
@@ -1597,6 +1633,8 @@
1597
  }
1598
 
1599
  function crellyslider_deleteSlider(content) {
 
 
1600
  // Get options
1601
  var options = {
1602
  id : parseInt(content.data('delete')),
@@ -1636,6 +1674,8 @@
1636
  }
1637
 
1638
  function crellyslider_duplicateSlider(content) {
 
 
1639
  // Get options
1640
  var options = {
1641
  id : parseInt(content.data('duplicate')),
@@ -1680,6 +1720,8 @@
1680
  }
1681
 
1682
  function crellyslider_exportSlider(content) {
 
 
1683
  // Get options
1684
  var options = {
1685
  id : parseInt(content.data('export')),
@@ -1722,6 +1764,8 @@
1722
  // Reset input file. Prevents conflicts
1723
  $('#cs-import-file').val('');
1724
 
 
 
1725
  // Form data (for file uploads)
1726
  var fd = new FormData();
1727
  fd.append('file', file);
50
  crellyslider_draggableElements();
51
 
52
  function crellyslider_showSuccess() {
53
+ $('.cs-admin .cs-message').css('display', 'none');
54
 
55
  var target = $('.cs-admin .cs-message.cs-message-ok');
56
  target.css({
69
  }
70
 
71
  function crellyslider_showError() {
72
+ $('.cs-admin .cs-message').css('display', 'none');
73
 
74
  var target = $('.cs-admin .cs-message.cs-message-error');
75
  target.css({
87
  });
88
  }
89
 
90
+ function crellyslider_showWait() {
91
+ $('.cs-admin .cs-message').css('display', 'none');
92
+
93
+ var target = $('.cs-admin .cs-message.cs-message-wait');
94
+
95
+ var untouchedMessage = target.text().split('.').join('');
96
+ target.text(untouchedMessage);
97
+
98
+ target.css({
99
+ 'display' : 'block',
100
+ 'opacity' : 1,
101
+ });
102
+
103
+ if(typeof crellyslider_showWait.dotsTimer != 'undefined' ) {
104
+ clearInterval(crellyslider_showWait.dotsTimer);
105
+ }
106
+ var dots = 0;
107
+ crellyslider_showWait.dotsTimer = setInterval(function() {
108
+ if(dots == 3) {
109
+ dots = 0;
110
+ target.text(untouchedMessage);
111
+ return;
112
+ }
113
+ target.text(target.text() + '.');
114
+ dots++;
115
+ }, 300);
116
+ }
117
+
118
  /*************/
119
  /** SLIDERS **/
120
  /*************/
156
  return slider_alias;
157
  }
158
 
159
+ // Init from/to datepickers
160
+ jQuery.datetimepicker.setLocale(crellyslider_locale.substring(0, crellyslider_locale.indexOf('_'))); // If locale does not exists, datetimepicker defaults to English
161
+ $('.cs-slider-datepicker').datetimepicker({
162
+ format:'Y-m-d H:i',
163
+ });
164
+
165
+ $('#cs-slider-displayImmediately').on('change', function() {
166
+ if(this.checked) {
167
+ $('#cs-slider-displayFromWrapper').hide();
168
+ }
169
+ else{
170
+ $('#cs-slider-displayFromWrapper').show();
171
+ }
172
+ });
173
+ $('#cs-slider-displayForever').on('change', function() {
174
+ if(this.checked) {
175
+ $('#cs-slider-displayToWrapper').hide();
176
+ }
177
+ else{
178
+ $('#cs-slider-displayToWrapper').show();
179
+ }
180
+ });
181
+
182
  /************/
183
  /** SLIDES **/
184
  /************/
944
 
945
  textarea.attr('id', 'cs-element-editor-' + crellyslider_convertToWPEditor.static_counter);
946
 
947
+ var settings = crellyslider_tinyMCEInit;
948
+
949
+ settings.selector = '#cs-element-editor-' + (crellyslider_convertToWPEditor.static_counter);
950
+ settings.body_class = ('cs-element-editor-' + (crellyslider_convertToWPEditor.static_counter) + ' locale-' + crellyslider_locale).toLowerCase();
951
+ settings.setup = function(editor) {
952
+ editor.on("KeyUp ExecCommand ContextMenu Change", function(e) {
953
+ editor.save();
954
+ crellyslider_triggerTinyMCE(editor.id);
955
+ });
956
+
957
+ editor.on("init", function() {
958
+ // Set default CSS
959
+ this.getDoc().body.style.fontSize = "14px";
960
+ this.getDoc().body.style.fontFamily = "Verdana";
961
+
962
+ // Insert switch button
963
+ textarea.parent().prepend('<div class="cs-switch-editor"><div onclick="tinyMCE.execCommand(\'mceToggleEditor\', false, \'' + editor.id + '\')" class="cs-button cs-is-default cs-tinymce">' + crellyslider_translations.switch_editor + '</div></div>');
964
+ });
965
+ };
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
966
 
967
  if(typeof tinyMCE != 'undefined') {
968
  tinyMCE.init(settings);
1383
 
1384
  // Sends an array with the new or current slider options
1385
  function crellyslider_saveSlider() {
1386
+ crellyslider_showWait();
1387
+
1388
  var content = $('.cs-admin .cs-slider #cs-slider-settings');
1389
  var options = {
1390
  id : parseInt($('.cs-admin .cs-slider .cs-save-settings').data('id')),
1402
  pauseOnHover : parseInt(content.find('#cs-slider-pauseOnHover').val()),
1403
  randomOrder : parseInt(content.find('#cs-slider-randomOrder').val()),
1404
  startFromSlide : parseInt(content.find('#cs-slider-startFromSlide').val()),
1405
+ fromDate : content.find('#cs-slider-displayImmediately').prop('checked') || content.find('#cs-slider-fromDate').val() == '' ? '1000-01-01 00:00:00' : content.find('#cs-slider-fromDate').val(),
1406
+ toDate : content.find('#cs-slider-displayForever').prop('checked') || content.find('#cs-slider-toDate').val() == '' ? '9999-12-31 23:59:59' : content.find('#cs-slider-toDate').val(),
1407
  callbacks : content.find('#cs-slider-callbacks').val(),
1408
  };
1409
 
1521
  }
1522
 
1523
  // Sends an array with all the elements options of each slide
1524
+ function crellyslider_saveElements() {
1525
  var slides = $('.cs-admin .cs-slider #cs-slides .cs-slide');
1526
  var i = 0, j = 0;
1527
  var final_options = {};
1633
  }
1634
 
1635
  function crellyslider_deleteSlider(content) {
1636
+ crellyslider_showWait();
1637
+
1638
  // Get options
1639
  var options = {
1640
  id : parseInt(content.data('delete')),
1674
  }
1675
 
1676
  function crellyslider_duplicateSlider(content) {
1677
+ crellyslider_showWait();
1678
+
1679
  // Get options
1680
  var options = {
1681
  id : parseInt(content.data('duplicate')),
1720
  }
1721
 
1722
  function crellyslider_exportSlider(content) {
1723
+ crellyslider_showWait();
1724
+
1725
  // Get options
1726
  var options = {
1727
  id : parseInt(content.data('export')),
1764
  // Reset input file. Prevents conflicts
1765
  $('#cs-import-file').val('');
1766
 
1767
+ crellyslider_showWait();
1768
+
1769
  // Form data (for file uploads)
1770
  var fd = new FormData();
1771
  fd.append('file', file);
wordpress/js/jquery.datetimepicker.js ADDED
@@ -0,0 +1 @@
 
1
+ var DateFormatter;!function(){"use strict";var e,t,a,n,r,o,i;o=864e5,i=3600,e=function(e,t){return"string"==typeof e&&"string"==typeof t&&e.toLowerCase()===t.toLowerCase()},t=function(e,a,n){var r=n||"0",o=e.toString();return o.length<a?t(r+o,a):o},a=function(e){var t,n;for(e=e||{},t=1;t<arguments.length;t++)if(n=arguments[t])for(var r in n)n.hasOwnProperty(r)&&("object"==typeof n[r]?a(e[r],n[r]):e[r]=n[r]);return e},n=function(e,t){for(var a=0;a<t.length;a++)if(t[a].toLowerCase()===e.toLowerCase())return a;return-1},r={dateSettings:{days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],daysShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],monthsShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],meridiem:["AM","PM"],ordinal:function(e){var t=e%10,a={1:"st",2:"nd",3:"rd"};return 1!==Math.floor(e%100/10)&&a[t]?a[t]:"th"}},separators:/[ \-+\/\.T:@]/g,validParts:/[dDjlNSwzWFmMntLoYyaABgGhHisueTIOPZcrU]/g,intParts:/[djwNzmnyYhHgGis]/g,tzParts:/\b(?:[PMCEA][SDP]T|(?:Pacific|Mountain|Central|Eastern|Atlantic) (?:Standard|Daylight|Prevailing) Time|(?:GMT|UTC)(?:[-+]\d{4})?)\b/g,tzClip:/[^-+\dA-Z]/g},(DateFormatter=function(e){var t=this,n=a(r,e);t.dateSettings=n.dateSettings,t.separators=n.separators,t.validParts=n.validParts,t.intParts=n.intParts,t.tzParts=n.tzParts,t.tzClip=n.tzClip}).prototype={constructor:DateFormatter,getMonth:function(e){var t,a=this;return 0===(t=n(e,a.dateSettings.monthsShort)+1)&&(t=n(e,a.dateSettings.months)+1),t},parseDate:function(t,a){var n,r,o,i,s,d,u,l,f,c,h=this,m=!1,g=!1,p=h.dateSettings,y={date:null,year:null,month:null,day:null,hour:0,min:0,sec:0};if(!t)return null;if(t instanceof Date)return t;if("U"===a)return(o=parseInt(t))?new Date(1e3*o):t;switch(typeof t){case"number":return new Date(t);case"string":break;default:return null}if(!(n=a.match(h.validParts))||0===n.length)throw new Error("Invalid date format definition.");for(r=t.replace(h.separators,"\0").split("\0"),o=0;o<r.length;o++)switch(i=r[o],s=parseInt(i),n[o]){case"y":case"Y":if(!s)return null;f=i.length,y.year=2===f?parseInt((70>s?"20":"19")+i):s,m=!0;break;case"m":case"n":case"M":case"F":if(isNaN(s)){if(!((d=h.getMonth(i))>0))return null;y.month=d}else{if(!(s>=1&&12>=s))return null;y.month=s}m=!0;break;case"d":case"j":if(!(s>=1&&31>=s))return null;y.day=s,m=!0;break;case"g":case"h":if(u=n.indexOf("a")>-1?n.indexOf("a"):n.indexOf("A")>-1?n.indexOf("A"):-1,c=r[u],u>-1)l=e(c,p.meridiem[0])?0:e(c,p.meridiem[1])?12:-1,s>=1&&12>=s&&l>-1?y.hour=s+l-1:s>=0&&23>=s&&(y.hour=s);else{if(!(s>=0&&23>=s))return null;y.hour=s}g=!0;break;case"G":case"H":if(!(s>=0&&23>=s))return null;y.hour=s,g=!0;break;case"i":if(!(s>=0&&59>=s))return null;y.min=s,g=!0;break;case"s":if(!(s>=0&&59>=s))return null;y.sec=s,g=!0}if(!0===m&&y.year&&y.month&&y.day)y.date=new Date(y.year,y.month-1,y.day,y.hour,y.min,y.sec,0);else{if(!0!==g)return null;y.date=new Date(0,0,0,y.hour,y.min,y.sec,0)}return y.date},guessDate:function(e,t){if("string"!=typeof e)return e;var a,n,r,o,i,s,d=this,u=e.replace(d.separators,"\0").split("\0"),l=/^[djmn]/g,f=t.match(d.validParts),c=new Date,h=0;if(!l.test(f[0]))return e;for(r=0;r<u.length;r++){if(h=2,i=u[r],s=parseInt(i.substr(0,2)),isNaN(s))return null;switch(r){case 0:"m"===f[0]||"n"===f[0]?c.setMonth(s-1):c.setDate(s);break;case 1:"m"===f[0]||"n"===f[0]?c.setDate(s):c.setMonth(s-1);break;case 2:if(n=c.getFullYear(),a=i.length,h=4>a?a:4,!(n=parseInt(4>a?n.toString().substr(0,4-a)+i:i.substr(0,4))))return null;c.setFullYear(n);break;case 3:c.setHours(s);break;case 4:c.setMinutes(s);break;case 5:c.setSeconds(s)}(o=i.substr(h)).length>0&&u.splice(r+1,0,o)}return c},parseFormat:function(e,a){var n,r=this,s=r.dateSettings,d=/\\?(.?)/gi,u=function(e,t){return n[e]?n[e]():t};return n={d:function(){return t(n.j(),2)},D:function(){return s.daysShort[n.w()]},j:function(){return a.getDate()},l:function(){return s.days[n.w()]},N:function(){return n.w()||7},w:function(){return a.getDay()},z:function(){var e=new Date(n.Y(),n.n()-1,n.j()),t=new Date(n.Y(),0,1);return Math.round((e-t)/o)},W:function(){var e=new Date(n.Y(),n.n()-1,n.j()-n.N()+3),a=new Date(e.getFullYear(),0,4);return t(1+Math.round((e-a)/o/7),2)},F:function(){return s.months[a.getMonth()]},m:function(){return t(n.n(),2)},M:function(){return s.monthsShort[a.getMonth()]},n:function(){return a.getMonth()+1},t:function(){return new Date(n.Y(),n.n(),0).getDate()},L:function(){var e=n.Y();return e%4==0&&e%100!=0||e%400==0?1:0},o:function(){var e=n.n(),t=n.W();return n.Y()+(12===e&&9>t?1:1===e&&t>9?-1:0)},Y:function(){return a.getFullYear()},y:function(){return n.Y().toString().slice(-2)},a:function(){return n.A().toLowerCase()},A:function(){var e=n.G()<12?0:1;return s.meridiem[e]},B:function(){var e=a.getUTCHours()*i,n=60*a.getUTCMinutes(),r=a.getUTCSeconds();return t(Math.floor((e+n+r+i)/86.4)%1e3,3)},g:function(){return n.G()%12||12},G:function(){return a.getHours()},h:function(){return t(n.g(),2)},H:function(){return t(n.G(),2)},i:function(){return t(a.getMinutes(),2)},s:function(){return t(a.getSeconds(),2)},u:function(){return t(1e3*a.getMilliseconds(),6)},e:function(){return/\((.*)\)/.exec(String(a))[1]||"Coordinated Universal Time"},I:function(){return new Date(n.Y(),0)-Date.UTC(n.Y(),0)!=new Date(n.Y(),6)-Date.UTC(n.Y(),6)?1:0},O:function(){var e=a.getTimezoneOffset(),n=Math.abs(e);return(e>0?"-":"+")+t(100*Math.floor(n/60)+n%60,4)},P:function(){var e=n.O();return e.substr(0,3)+":"+e.substr(3,2)},T:function(){return(String(a).match(r.tzParts)||[""]).pop().replace(r.tzClip,"")||"UTC"},Z:function(){return 60*-a.getTimezoneOffset()},c:function(){return"Y-m-d\\TH:i:sP".replace(d,u)},r:function(){return"D, d M Y H:i:s O".replace(d,u)},U:function(){return a.getTime()/1e3||0}},u(e,e)},formatDate:function(e,t){var a,n,r,o,i,s=this,d="";if("string"==typeof e&&!(e=s.parseDate(e,t)))return null;if(e instanceof Date){for(r=t.length,a=0;r>a;a++)"S"!==(i=t.charAt(a))&&"\\"!==i&&(a>0&&"\\"===t.charAt(a-1)?d+=i:(o=s.parseFormat(i,e),a!==r-1&&s.intParts.test(i)&&"S"===t.charAt(a+1)&&(n=parseInt(o)||0,o+=s.dateSettings.ordinal(n)),d+=o));return d}return""}}}();var datetimepickerFactory=function(e){"use strict";function t(e,t,a){this.date=e,this.desc=t,this.style=a}var a={i18n:{ar:{months:["كانون الثاني","شباط","آذار","نيسان","مايو","حزيران","تموز","آب","أيلول","تشرين الأول","تشرين الثاني","كانون الأول"],dayOfWeekShort:["ن","ث","ع","خ","ج","س","ح"],dayOfWeek:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت","الأحد"]},ro:{months:["Ianuarie","Februarie","Martie","Aprilie","Mai","Iunie","Iulie","August","Septembrie","Octombrie","Noiembrie","Decembrie"],dayOfWeekShort:["Du","Lu","Ma","Mi","Jo","Vi","Sâ"],dayOfWeek:["Duminică","Luni","Marţi","Miercuri","Joi","Vineri","Sâmbătă"]},id:{months:["Januari","Februari","Maret","April","Mei","Juni","Juli","Agustus","September","Oktober","November","Desember"],dayOfWeekShort:["Min","Sen","Sel","Rab","Kam","Jum","Sab"],dayOfWeek:["Minggu","Senin","Selasa","Rabu","Kamis","Jumat","Sabtu"]},is:{months:["Janúar","Febrúar","Mars","Apríl","Maí","Júní","Júlí","Ágúst","September","Október","Nóvember","Desember"],dayOfWeekShort:["Sun","Mán","Þrið","Mið","Fim","Fös","Lau"],dayOfWeek:["Sunnudagur","Mánudagur","Þriðjudagur","Miðvikudagur","Fimmtudagur","Föstudagur","Laugardagur"]},bg:{months:["Януари","Февруари","Март","Април","Май","Юни","Юли","Август","Септември","Октомври","Ноември","Декември"],dayOfWeekShort:["Нд","Пн","Вт","Ср","Чт","Пт","Сб"],dayOfWeek:["Неделя","Понеделник","Вторник","Сряда","Четвъртък","Петък","Събота"]},fa:{months:["فروردین","اردیبهشت","خرداد","تیر","مرداد","شهریور","مهر","آبان","آذر","دی","بهمن","اسفند"],dayOfWeekShort:["یکشنبه","دوشنبه","سه شنبه","چهارشنبه","پنجشنبه","جمعه","شنبه"],dayOfWeek:["یک‌شنبه","دوشنبه","سه‌شنبه","چهارشنبه","پنج‌شنبه","جمعه","شنبه","یک‌شنبه"]},ru:{months:["Январь","Февраль","Март","Апрель","Май","Июнь","Июль","Август","Сентябрь","Октябрь","Ноябрь","Декабрь"],dayOfWeekShort:["Вс","Пн","Вт","Ср","Чт","Пт","Сб"],dayOfWeek:["Воскресенье","Понедельник","Вторник","Среда","Четверг","Пятница","Суббота"]},uk:{months:["Січень","Лютий","Березень","Квітень","Травень","Червень","Липень","Серпень","Вересень","Жовтень","Листопад","Грудень"],dayOfWeekShort:["Ндл","Пнд","Втр","Срд","Чтв","Птн","Сбт"],dayOfWeek:["Неділя","Понеділок","Вівторок","Середа","Четвер","П'ятниця","Субота"]},en:{months:["January","February","March","April","May","June","July","August","September","October","November","December"],dayOfWeekShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayOfWeek:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},el:{months:["Ιανουάριος","Φεβρουάριος","Μάρτιος","Απρίλιος","Μάιος","Ιούνιος","Ιούλιος","Αύγουστος","Σεπτέμβριος","Οκτώβριος","Νοέμβριος","Δεκέμβριος"],dayOfWeekShort:["Κυρ","Δευ","Τρι","Τετ","Πεμ","Παρ","Σαβ"],dayOfWeek:["Κυριακή","Δευτέρα","Τρίτη","Τετάρτη","Πέμπτη","Παρασκευή","Σάββατο"]},de:{months:["Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"],dayOfWeekShort:["So","Mo","Di","Mi","Do","Fr","Sa"],dayOfWeek:["Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag"]},nl:{months:["januari","februari","maart","april","mei","juni","juli","augustus","september","oktober","november","december"],dayOfWeekShort:["zo","ma","di","wo","do","vr","za"],dayOfWeek:["zondag","maandag","dinsdag","woensdag","donderdag","vrijdag","zaterdag"]},tr:{months:["Ocak","Şubat","Mart","Nisan","Mayıs","Haziran","Temmuz","Ağustos","Eylül","Ekim","Kasım","Aralık"],dayOfWeekShort:["Paz","Pts","Sal","Çar","Per","Cum","Cts"],dayOfWeek:["Pazar","Pazartesi","Salı","Çarşamba","Perşembe","Cuma","Cumartesi"]},fr:{months:["Janvier","Février","Mars","Avril","Mai","Juin","Juillet","Août","Septembre","Octobre","Novembre","Décembre"],dayOfWeekShort:["Dim","Lun","Mar","Mer","Jeu","Ven","Sam"],dayOfWeek:["dimanche","lundi","mardi","mercredi","jeudi","vendredi","samedi"]},es:{months:["Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre"],dayOfWeekShort:["Dom","Lun","Mar","Mié","Jue","Vie","Sáb"],dayOfWeek:["Domingo","Lunes","Martes","Miércoles","Jueves","Viernes","Sábado"]},th:{months:["มกราคม","กุมภาพันธ์","มีนาคม","เมษายน","พฤษภาคม","มิถุนายน","กรกฎาคม","สิงหาคม","กันยายน","ตุลาคม","พฤศจิกายน","ธันวาคม"],dayOfWeekShort:["อา.","จ.","อ.","พ.","พฤ.","ศ.","ส."],dayOfWeek:["อาทิตย์","จันทร์","อังคาร","พุธ","พฤหัส","ศุกร์","เสาร์","อาทิตย์"]},pl:{months:["styczeń","luty","marzec","kwiecień","maj","czerwiec","lipiec","sierpień","wrzesień","październik","listopad","grudzień"],dayOfWeekShort:["nd","pn","wt","śr","cz","pt","sb"],dayOfWeek:["niedziela","poniedziałek","wtorek","środa","czwartek","piątek","sobota"]},pt:{months:["Janeiro","Fevereiro","Março","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro"],dayOfWeekShort:["Dom","Seg","Ter","Qua","Qui","Sex","Sab"],dayOfWeek:["Domingo","Segunda","Terça","Quarta","Quinta","Sexta","Sábado"]},ch:{months:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],dayOfWeekShort:["日","一","二","三","四","五","六"]},se:{months:["Januari","Februari","Mars","April","Maj","Juni","Juli","Augusti","September","Oktober","November","December"],dayOfWeekShort:["Sön","Mån","Tis","Ons","Tor","Fre","Lör"]},km:{months:["មករា​","កុម្ភៈ","មិនា​","មេសា​","ឧសភា​","មិថុនា​","កក្កដា​","សីហា​","កញ្ញា​","តុលា​","វិច្ឆិកា","ធ្នូ​"],dayOfWeekShort:["អាទិ​","ច័ន្ទ​","អង្គារ​","ពុធ​","ព្រហ​​","សុក្រ​","សៅរ៍"],dayOfWeek:["អាទិត្យ​","ច័ន្ទ​","អង្គារ​","ពុធ​","ព្រហស្បតិ៍​","សុក្រ​","សៅរ៍"]},kr:{months:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],dayOfWeekShort:["일","월","화","수","목","금","토"],dayOfWeek:["일요일","월요일","화요일","수요일","목요일","금요일","토요일"]},it:{months:["Gennaio","Febbraio","Marzo","Aprile","Maggio","Giugno","Luglio","Agosto","Settembre","Ottobre","Novembre","Dicembre"],dayOfWeekShort:["Dom","Lun","Mar","Mer","Gio","Ven","Sab"],dayOfWeek:["Domenica","Lunedì","Martedì","Mercoledì","Giovedì","Venerdì","Sabato"]},da:{months:["Januar","Februar","Marts","April","Maj","Juni","Juli","August","September","Oktober","November","December"],dayOfWeekShort:["Søn","Man","Tir","Ons","Tor","Fre","Lør"],dayOfWeek:["søndag","mandag","tirsdag","onsdag","torsdag","fredag","lørdag"]},no:{months:["Januar","Februar","Mars","April","Mai","Juni","Juli","August","September","Oktober","November","Desember"],dayOfWeekShort:["Søn","Man","Tir","Ons","Tor","Fre","Lør"],dayOfWeek:["Søndag","Mandag","Tirsdag","Onsdag","Torsdag","Fredag","Lørdag"]},ja:{months:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],dayOfWeekShort:["日","月","火","水","木","金","土"],dayOfWeek:["日曜","月曜","火曜","水曜","木曜","金曜","土曜"]},vi:{months:["Tháng 1","Tháng 2","Tháng 3","Tháng 4","Tháng 5","Tháng 6","Tháng 7","Tháng 8","Tháng 9","Tháng 10","Tháng 11","Tháng 12"],dayOfWeekShort:["CN","T2","T3","T4","T5","T6","T7"],dayOfWeek:["Chủ nhật","Thứ hai","Thứ ba","Thứ tư","Thứ năm","Thứ sáu","Thứ bảy"]},sl:{months:["Januar","Februar","Marec","April","Maj","Junij","Julij","Avgust","September","Oktober","November","December"],dayOfWeekShort:["Ned","Pon","Tor","Sre","Čet","Pet","Sob"],dayOfWeek:["Nedelja","Ponedeljek","Torek","Sreda","Četrtek","Petek","Sobota"]},cs:{months:["Leden","Únor","Březen","Duben","Květen","Červen","Červenec","Srpen","Září","Říjen","Listopad","Prosinec"],dayOfWeekShort:["Ne","Po","Út","St","Čt","Pá","So"]},hu:{months:["Január","Február","Március","Április","Május","Június","Július","Augusztus","Szeptember","Október","November","December"],dayOfWeekShort:["Va","Hé","Ke","Sze","Cs","Pé","Szo"],dayOfWeek:["vasárnap","hétfő","kedd","szerda","csütörtök","péntek","szombat"]},az:{months:["Yanvar","Fevral","Mart","Aprel","May","Iyun","Iyul","Avqust","Sentyabr","Oktyabr","Noyabr","Dekabr"],dayOfWeekShort:["B","Be","Ça","Ç","Ca","C","Ş"],dayOfWeek:["Bazar","Bazar ertəsi","Çərşənbə axşamı","Çərşənbə","Cümə axşamı","Cümə","Şənbə"]},bs:{months:["Januar","Februar","Mart","April","Maj","Jun","Jul","Avgust","Septembar","Oktobar","Novembar","Decembar"],dayOfWeekShort:["Ned","Pon","Uto","Sri","Čet","Pet","Sub"],dayOfWeek:["Nedjelja","Ponedjeljak","Utorak","Srijeda","Četvrtak","Petak","Subota"]},ca:{months:["Gener","Febrer","Març","Abril","Maig","Juny","Juliol","Agost","Setembre","Octubre","Novembre","Desembre"],dayOfWeekShort:["Dg","Dl","Dt","Dc","Dj","Dv","Ds"],dayOfWeek:["Diumenge","Dilluns","Dimarts","Dimecres","Dijous","Divendres","Dissabte"]},"en-GB":{months:["January","February","March","April","May","June","July","August","September","October","November","December"],dayOfWeekShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayOfWeek:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},et:{months:["Jaanuar","Veebruar","Märts","Aprill","Mai","Juuni","Juuli","August","September","Oktoober","November","Detsember"],dayOfWeekShort:["P","E","T","K","N","R","L"],dayOfWeek:["Pühapäev","Esmaspäev","Teisipäev","Kolmapäev","Neljapäev","Reede","Laupäev"]},eu:{months:["Urtarrila","Otsaila","Martxoa","Apirila","Maiatza","Ekaina","Uztaila","Abuztua","Iraila","Urria","Azaroa","Abendua"],dayOfWeekShort:["Ig.","Al.","Ar.","Az.","Og.","Or.","La."],dayOfWeek:["Igandea","Astelehena","Asteartea","Asteazkena","Osteguna","Ostirala","Larunbata"]},fi:{months:["Tammikuu","Helmikuu","Maaliskuu","Huhtikuu","Toukokuu","Kesäkuu","Heinäkuu","Elokuu","Syyskuu","Lokakuu","Marraskuu","Joulukuu"],dayOfWeekShort:["Su","Ma","Ti","Ke","To","Pe","La"],dayOfWeek:["sunnuntai","maanantai","tiistai","keskiviikko","torstai","perjantai","lauantai"]},gl:{months:["Xan","Feb","Maz","Abr","Mai","Xun","Xul","Ago","Set","Out","Nov","Dec"],dayOfWeekShort:["Dom","Lun","Mar","Mer","Xov","Ven","Sab"],dayOfWeek:["Domingo","Luns","Martes","Mércores","Xoves","Venres","Sábado"]},hr:{months:["Siječanj","Veljača","Ožujak","Travanj","Svibanj","Lipanj","Srpanj","Kolovoz","Rujan","Listopad","Studeni","Prosinac"],dayOfWeekShort:["Ned","Pon","Uto","Sri","Čet","Pet","Sub"],dayOfWeek:["Nedjelja","Ponedjeljak","Utorak","Srijeda","Četvrtak","Petak","Subota"]},ko:{months:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],dayOfWeekShort:["일","월","화","수","목","금","토"],dayOfWeek:["일요일","월요일","화요일","수요일","목요일","금요일","토요일"]},lt:{months:["Sausio","Vasario","Kovo","Balandžio","Gegužės","Birželio","Liepos","Rugpjūčio","Rugsėjo","Spalio","Lapkričio","Gruodžio"],dayOfWeekShort:["Sek","Pir","Ant","Tre","Ket","Pen","Šeš"],dayOfWeek:["Sekmadienis","Pirmadienis","Antradienis","Trečiadienis","Ketvirtadienis","Penktadienis","Šeštadienis"]},lv:{months:["Janvāris","Februāris","Marts","Aprīlis ","Maijs","Jūnijs","Jūlijs","Augusts","Septembris","Oktobris","Novembris","Decembris"],dayOfWeekShort:["Sv","Pr","Ot","Tr","Ct","Pk","St"],dayOfWeek:["Svētdiena","Pirmdiena","Otrdiena","Trešdiena","Ceturtdiena","Piektdiena","Sestdiena"]},mk:{months:["јануари","февруари","март","април","мај","јуни","јули","август","септември","октомври","ноември","декември"],dayOfWeekShort:["нед","пон","вто","сре","чет","пет","саб"],dayOfWeek:["Недела","Понеделник","Вторник","Среда","Четврток","Петок","Сабота"]},mn:{months:["1-р сар","2-р сар","3-р сар","4-р сар","5-р сар","6-р сар","7-р сар","8-р сар","9-р сар","10-р сар","11-р сар","12-р сар"],dayOfWeekShort:["Дав","Мяг","Лха","Пүр","Бсн","Бям","Ням"],dayOfWeek:["Даваа","Мягмар","Лхагва","Пүрэв","Баасан","Бямба","Ням"]},"pt-BR":{months:["Janeiro","Fevereiro","Março","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro"],dayOfWeekShort:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb"],dayOfWeek:["Domingo","Segunda","Terça","Quarta","Quinta","Sexta","Sábado"]},sk:{months:["Január","Február","Marec","Apríl","Máj","Jún","Júl","August","September","Október","November","December"],dayOfWeekShort:["Ne","Po","Ut","St","Št","Pi","So"],dayOfWeek:["Nedeľa","Pondelok","Utorok","Streda","Štvrtok","Piatok","Sobota"]},sq:{months:["Janar","Shkurt","Mars","Prill","Maj","Qershor","Korrik","Gusht","Shtator","Tetor","Nëntor","Dhjetor"],dayOfWeekShort:["Die","Hën","Mar","Mër","Enj","Pre","Shtu"],dayOfWeek:["E Diel","E Hënë","E Martē","E Mërkurë","E Enjte","E Premte","E Shtunë"]},"sr-YU":{months:["Januar","Februar","Mart","April","Maj","Jun","Jul","Avgust","Septembar","Oktobar","Novembar","Decembar"],dayOfWeekShort:["Ned","Pon","Uto","Sre","čet","Pet","Sub"],dayOfWeek:["Nedelja","Ponedeljak","Utorak","Sreda","Četvrtak","Petak","Subota"]},sr:{months:["јануар","фебруар","март","април","мај","јун","јул","август","септембар","октобар","новембар","децембар"],dayOfWeekShort:["нед","пон","уто","сре","чет","пет","суб"],dayOfWeek:["Недеља","Понедељак","Уторак","Среда","Четвртак","Петак","Субота"]},sv:{months:["Januari","Februari","Mars","April","Maj","Juni","Juli","Augusti","September","Oktober","November","December"],dayOfWeekShort:["Sön","Mån","Tis","Ons","Tor","Fre","Lör"],dayOfWeek:["Söndag","Måndag","Tisdag","Onsdag","Torsdag","Fredag","Lördag"]},"zh-TW":{months:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],dayOfWeekShort:["日","一","二","三","四","五","六"],dayOfWeek:["星期日","星期一","星期二","星期三","星期四","星期五","星期六"]},zh:{months:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],dayOfWeekShort:["日","一","二","三","四","五","六"],dayOfWeek:["星期日","星期一","星期二","星期三","星期四","星期五","星期六"]},ug:{months:["1-ئاي","2-ئاي","3-ئاي","4-ئاي","5-ئاي","6-ئاي","7-ئاي","8-ئاي","9-ئاي","10-ئاي","11-ئاي","12-ئاي"],dayOfWeek:["يەكشەنبە","دۈشەنبە","سەيشەنبە","چارشەنبە","پەيشەنبە","جۈمە","شەنبە"]},he:{months:["ינואר","פברואר","מרץ","אפריל","מאי","יוני","יולי","אוגוסט","ספטמבר","אוקטובר","נובמבר","דצמבר"],dayOfWeekShort:["א'","ב'","ג'","ד'","ה'","ו'","שבת"],dayOfWeek:["ראשון","שני","שלישי","רביעי","חמישי","שישי","שבת","ראשון"]},hy:{months:["Հունվար","Փետրվար","Մարտ","Ապրիլ","Մայիս","Հունիս","Հուլիս","Օգոստոս","Սեպտեմբեր","Հոկտեմբեր","Նոյեմբեր","Դեկտեմբեր"],dayOfWeekShort:["Կի","Երկ","Երք","Չոր","Հնգ","Ուրբ","Շբթ"],dayOfWeek:["Կիրակի","Երկուշաբթի","Երեքշաբթի","Չորեքշաբթի","Հինգշաբթի","Ուրբաթ","Շաբաթ"]},kg:{months:["Үчтүн айы","Бирдин айы","Жалган Куран","Чын Куран","Бугу","Кулжа","Теке","Баш Оона","Аяк Оона","Тогуздун айы","Жетинин айы","Бештин айы"],dayOfWeekShort:["Жек","Дүй","Шей","Шар","Бей","Жум","Ише"],dayOfWeek:["Жекшемб","Дүйшөмб","Шейшемб","Шаршемб","Бейшемби","Жума","Ишенб"]},rm:{months:["Schaner","Favrer","Mars","Avrigl","Matg","Zercladur","Fanadur","Avust","Settember","October","November","December"],dayOfWeekShort:["Du","Gli","Ma","Me","Gie","Ve","So"],dayOfWeek:["Dumengia","Glindesdi","Mardi","Mesemna","Gievgia","Venderdi","Sonda"]},ka:{months:["იანვარი","თებერვალი","მარტი","აპრილი","მაისი","ივნისი","ივლისი","აგვისტო","სექტემბერი","ოქტომბერი","ნოემბერი","დეკემბერი"],dayOfWeekShort:["კვ","ორშ","სამშ","ოთხ","ხუთ","პარ","შაბ"],dayOfWeek:["კვირა","ორშაბათი","სამშაბათი","ოთხშაბათი","ხუთშაბათი","პარასკევი","შაბათი"]}},ownerDocument:document,contentWindow:window,value:"",rtl:!1,format:"Y/m/d H:i",formatTime:"H:i",formatDate:"Y/m/d",startDate:!1,step:60,monthChangeSpinner:!0,closeOnDateSelect:!1,closeOnTimeSelect:!0,closeOnWithoutClick:!0,closeOnInputClick:!0,openOnFocus:!0,timepicker:!0,datepicker:!0,weeks:!1,defaultTime:!1,defaultDate:!1,minDate:!1,maxDate:!1,minTime:!1,maxTime:!1,minDateTime:!1,disabledMinTime:!1,disabledMaxTime:!1,allowTimes:[],opened:!1,initTime:!0,inline:!1,theme:"",touchMovedThreshold:5,onSelectDate:function(){},onSelectTime:function(){},onChangeMonth:function(){},onGetWeekOfYear:function(){},onChangeYear:function(){},onChangeDateTime:function(){},onShow:function(){},onClose:function(){},onGenerate:function(){},withoutCopyright:!0,inverseButton:!1,hours12:!1,next:"xdsoft_next",prev:"xdsoft_prev",dayOfWeekStart:0,parentID:"body",timeHeightInTimePicker:25,timepickerScrollbar:!0,todayButton:!0,prevButton:!0,nextButton:!0,defaultSelect:!0,scrollMonth:!0,scrollTime:!0,scrollInput:!0,lazyInit:!1,mask:!1,validateOnBlur:!0,allowBlank:!0,yearStart:1950,yearEnd:2050,monthStart:0,monthEnd:11,style:"",id:"",fixed:!1,roundTime:"round",className:"",weekends:[],highlightedDates:[],highlightedPeriods:[],allowDates:[],allowDateRe:null,disabledDates:[],disabledWeekDays:[],yearOffset:0,beforeShowDay:null,enterLikeTab:!0,showApplyButton:!1},n=null,r="en",o={meridiem:["AM","PM"]},i=function(){var t=a.i18n[r],i={days:t.dayOfWeek,daysShort:t.dayOfWeekShort,months:t.months,monthsShort:e.map(t.months,function(e){return e.substring(0,3)})};"function"==typeof DateFormatter&&(n=new DateFormatter({dateSettings:e.extend({},o,i)}))};e.datetimepicker={setLocale:function(e){var t=a.i18n[e]?e:"en";r!==t&&(r=t,i())},setDateFormatter:function(e){n=e},RFC_2822:"D, d M Y H:i:s O",ATOM:"Y-m-dTH:i:sP",ISO_8601:"Y-m-dTH:i:sO",RFC_822:"D, d M y H:i:s O",RFC_850:"l, d-M-y H:i:s T",RFC_1036:"D, d M y H:i:s O",RFC_1123:"D, d M Y H:i:s O",RSS:"D, d M Y H:i:s O",W3C:"Y-m-dTH:i:sP"},i(),window.getComputedStyle||(window.getComputedStyle=function(e){return this.el=e,this.getPropertyValue=function(t){var a=/(-([a-z]))/g;return"float"===t&&(t="styleFloat"),a.test(t)&&(t=t.replace(a,function(e,t,a){return a.toUpperCase()})),e.currentStyle[t]||null},this}),Array.prototype.indexOf||(Array.prototype.indexOf=function(e,t){var a,n;for(a=t||0,n=this.length;a<n;a+=1)if(this[a]===e)return a;return-1}),Date.prototype.countDaysInMonth=function(){return new Date(this.getFullYear(),this.getMonth()+1,0).getDate()},e.fn.xdsoftScroller=function(t,a){return this.each(function(){var n,r,o,i,s,d=e(this),u=function(e){var t,a={x:0,y:0};return"touchstart"===e.type||"touchmove"===e.type||"touchend"===e.type||"touchcancel"===e.type?(t=e.originalEvent.touches[0]||e.originalEvent.changedTouches[0],a.x=t.clientX,a.y=t.clientY):"mousedown"!==e.type&&"mouseup"!==e.type&&"mousemove"!==e.type&&"mouseover"!==e.type&&"mouseout"!==e.type&&"mouseenter"!==e.type&&"mouseleave"!==e.type||(a.x=e.clientX,a.y=e.clientY),a},l=100,f=!1,c=0,h=0,m=0,g=!1,p=0,y=function(){};"hide"!==a?(e(this).hasClass("xdsoft_scroller_box")||(n=d.children().eq(0),r=d[0].clientHeight,o=n[0].offsetHeight,i=e('<div class="xdsoft_scrollbar"></div>'),s=e('<div class="xdsoft_scroller"></div>'),i.append(s),d.addClass("xdsoft_scroller_box").append(i),y=function(e){var t=u(e).y-c+p;t<0&&(t=0),t+s[0].offsetHeight>m&&(t=m-s[0].offsetHeight),d.trigger("scroll_element.xdsoft_scroller",[l?t/l:0])},s.on("touchstart.xdsoft_scroller mousedown.xdsoft_scroller",function(n){r||d.trigger("resize_scroll.xdsoft_scroller",[a]),c=u(n).y,p=parseInt(s.css("margin-top"),10),m=i[0].offsetHeight,"mousedown"===n.type||"touchstart"===n.type?(t.ownerDocument&&e(t.ownerDocument.body).addClass("xdsoft_noselect"),e([t.ownerDocument.body,t.contentWindow]).on("touchend mouseup.xdsoft_scroller",function a(){e([t.ownerDocument.body,t.contentWindow]).off("touchend mouseup.xdsoft_scroller",a).off("mousemove.xdsoft_scroller",y).removeClass("xdsoft_noselect")}),e(t.ownerDocument.body).on("mousemove.xdsoft_scroller",y)):(g=!0,n.stopPropagation(),n.preventDefault())}).on("touchmove",function(e){g&&(e.preventDefault(),y(e))}).on("touchend touchcancel",function(){g=!1,p=0}),d.on("scroll_element.xdsoft_scroller",function(e,t){r||d.trigger("resize_scroll.xdsoft_scroller",[t,!0]),t=t>1?1:t<0||isNaN(t)?0:t,s.css("margin-top",l*t),setTimeout(function(){n.css("marginTop",-parseInt((n[0].offsetHeight-r)*t,10))},10)}).on("resize_scroll.xdsoft_scroller",function(e,t,a){var u,f;r=d[0].clientHeight,o=n[0].offsetHeight,f=(u=r/o)*i[0].offsetHeight,u>1?s.hide():(s.show(),s.css("height",parseInt(f>10?f:10,10)),l=i[0].offsetHeight-s[0].offsetHeight,!0!==a&&d.trigger("scroll_element.xdsoft_scroller",[t||Math.abs(parseInt(n.css("marginTop"),10))/(o-r)]))}),d.on("mousewheel",function(e){var t=Math.abs(parseInt(n.css("marginTop"),10));return(t-=20*e.deltaY)<0&&(t=0),d.trigger("scroll_element.xdsoft_scroller",[t/(o-r)]),e.stopPropagation(),!1}),d.on("touchstart",function(e){f=u(e),h=Math.abs(parseInt(n.css("marginTop"),10))}),d.on("touchmove",function(e){if(f){e.preventDefault();var t=u(e);d.trigger("scroll_element.xdsoft_scroller",[(h-(t.y-f.y))/(o-r)])}}),d.on("touchend touchcancel",function(){f=!1,h=0})),d.trigger("resize_scroll.xdsoft_scroller",[a])):d.find(".xdsoft_scrollbar").hide()})},e.fn.datetimepicker=function(o,i){var s,d,u=this,l=48,f=57,c=96,h=105,m=17,g=46,p=13,y=27,v=8,D=37,b=38,k=39,x=40,T=9,S=116,w=65,M=67,O=86,W=90,_=89,F=!1,C=e.isPlainObject(o)||!o?e.extend(!0,{},a,o):e.extend(!0,{},a),P=0,A=function(e){e.on("open.xdsoft focusin.xdsoft mousedown.xdsoft touchstart",function t(){e.is(":disabled")||e.data("xdsoft_datetimepicker")||(clearTimeout(P),P=setTimeout(function(){e.data("xdsoft_datetimepicker")||s(e),e.off("open.xdsoft focusin.xdsoft mousedown.xdsoft touchstart",t).trigger("open.xdsoft")},100))})};return s=function(a){function i(){var e,t=!1;return C.startDate?t=Y.strToDate(C.startDate):(t=C.value||(a&&a.val&&a.val()?a.val():""))?t=Y.strToDateTime(t):C.defaultDate&&(t=Y.strToDateTime(C.defaultDate),C.defaultTime&&(e=Y.strtotime(C.defaultTime),t.setHours(e.getHours()),t.setMinutes(e.getMinutes()))),t&&Y.isValidDate(t)?H.data("changed",!0):t="",t||0}function s(t){var n=function(e,t){var a=e.replace(/([\[\]\/\{\}\(\)\-\.\+]{1})/g,"\\$1").replace(/_/g,"{digit+}").replace(/([0-9]{1})/g,"{digit$1}").replace(/\{digit([0-9]{1})\}/g,"[0-$1_]{1}").replace(/\{digit[\+]\}/g,"[0-9_]{1}");return new RegExp(a).test(t)},r=function(e,a){if(!(e="string"==typeof e||e instanceof String?t.ownerDocument.getElementById(e):e))return!1;if(e.createTextRange){var n=e.createTextRange();return n.collapse(!0),n.moveEnd("character",a),n.moveStart("character",a),n.select(),!0}return!!e.setSelectionRange&&(e.setSelectionRange(a,a),!0)};t.mask&&a.off("keydown.xdsoft"),!0===t.mask&&("undefined"!=typeof moment?t.mask=t.format.replace(/Y{4}/g,"9999").replace(/Y{2}/g,"99").replace(/M{2}/g,"19").replace(/D{2}/g,"39").replace(/H{2}/g,"29").replace(/m{2}/g,"59").replace(/s{2}/g,"59"):t.mask=t.format.replace(/Y/g,"9999").replace(/F/g,"9999").replace(/m/g,"19").replace(/d/g,"39").replace(/H/g,"29").replace(/i/g,"59").replace(/s/g,"59")),"string"===e.type(t.mask)&&(n(t.mask,a.val())||(a.val(t.mask.replace(/[0-9]/g,"_")),r(a[0],0)),a.on("paste.xdsoft",function(o){var i=(o.clipboardData||o.originalEvent.clipboardData||window.clipboardData).getData("text"),s=this.value,d=this.selectionStart;return s=s.substr(0,d)+i+s.substr(d+i.length),d+=i.length,n(t.mask,s)?(this.value=s,r(this,d)):""===e.trim(s)?this.value=t.mask.replace(/[0-9]/g,"_"):a.trigger("error_input.xdsoft"),o.preventDefault(),!1}),a.on("keydown.xdsoft",function(o){var i,s=this.value,d=o.which,u=this.selectionStart,C=this.selectionEnd,P=u!==C;if(d>=l&&d<=f||d>=c&&d<=h||d===v||d===g){for(i=d===v||d===g?"_":String.fromCharCode(c<=d&&d<=h?d-l:d),d===v&&u&&!P&&(u-=1);;){var A=t.mask.substr(u,1),Y=u<t.mask.length,j=u>0;if(!(/[^0-9_]/.test(A)&&Y&&j))break;u+=d!==v||P?1:-1}if(P){var H=C-u,J=t.mask.replace(/[0-9]/g,"_"),z=J.substr(u,H).substr(1);s=s.substr(0,u)+(i+z)+s.substr(u+H)}else s=s.substr(0,u)+i+s.substr(u+1);if(""===e.trim(s))s=J;else if(u===t.mask.length)return o.preventDefault(),!1;for(u+=d===v?0:1;/[^0-9_]/.test(t.mask.substr(u,1))&&u<t.mask.length&&u>0;)u+=d===v?0:1;n(t.mask,s)?(this.value=s,r(this,u)):""===e.trim(s)?this.value=t.mask.replace(/[0-9]/g,"_"):a.trigger("error_input.xdsoft")}else if(-1!==[w,M,O,W,_].indexOf(d)&&F||-1!==[y,b,x,D,k,S,m,T,p].indexOf(d))return!0;return o.preventDefault(),!1}))}var d,u,P,A,Y,j,H=e('<div class="xdsoft_datetimepicker xdsoft_noselect"></div>'),J=e('<div class="xdsoft_copyright"><a target="_blank" href="http://xdsoft.net/jqplugins/datetimepicker/">xdsoft.net</a></div>'),z=e('<div class="xdsoft_datepicker active"></div>'),I=e('<div class="xdsoft_monthpicker"><button type="button" class="xdsoft_prev"></button><button type="button" class="xdsoft_today_button"></button><div class="xdsoft_label xdsoft_month"><span></span><i></i></div><div class="xdsoft_label xdsoft_year"><span></span><i></i></div><button type="button" class="xdsoft_next"></button></div>'),N=e('<div class="xdsoft_calendar"></div>'),L=e('<div class="xdsoft_timepicker active"><button type="button" class="xdsoft_prev"></button><div class="xdsoft_time_box"></div><button type="button" class="xdsoft_next"></button></div>'),E=L.find(".xdsoft_time_box").eq(0),R=e('<div class="xdsoft_time_variant"></div>'),V=e('<button type="button" class="xdsoft_save_selected blue-gradient-button">Save Selected</button>'),B=e('<div class="xdsoft_select xdsoft_monthselect"><div></div></div>'),G=e('<div class="xdsoft_select xdsoft_yearselect"><div></div></div>'),U=!1,q=0;C.id&&H.attr("id",C.id),C.style&&H.attr("style",C.style),C.weeks&&H.addClass("xdsoft_showweeks"),C.rtl&&H.addClass("xdsoft_rtl"),H.addClass("xdsoft_"+C.theme),H.addClass(C.className),I.find(".xdsoft_month span").after(B),I.find(".xdsoft_year span").after(G),I.find(".xdsoft_month,.xdsoft_year").on("touchstart mousedown.xdsoft",function(t){var a,n,r=e(this).find(".xdsoft_select").eq(0),o=0,i=0,s=r.is(":visible");for(I.find(".xdsoft_select").hide(),Y.currentTime&&(o=Y.currentTime[e(this).hasClass("xdsoft_month")?"getMonth":"getFullYear"]()),r[s?"hide":"show"](),a=r.find("div.xdsoft_option"),n=0;n<a.length&&a.eq(n).data("value")!==o;n+=1)i+=a[0].offsetHeight;return r.xdsoftScroller(C,i/(r.children()[0].offsetHeight-r[0].clientHeight)),t.stopPropagation(),!1});var X=function(e){this.touchStartPosition=this.touchStartPosition||e.originalEvent.touches[0];var t=e.originalEvent.touches[0],a=Math.abs(this.touchStartPosition.clientX-t.clientX),n=Math.abs(this.touchStartPosition.clientY-t.clientY);Math.sqrt(a*a+n*n)>C.touchMovedThreshold&&(this.touchMoved=!0)};I.find(".xdsoft_select").xdsoftScroller(C).on("touchstart mousedown.xdsoft",function(e){this.touchMoved=!1,this.touchStartPosition=e.originalEvent.touches[0],e.stopPropagation(),e.preventDefault()}).on("touchmove",".xdsoft_option",X).on("touchend mousedown.xdsoft",".xdsoft_option",function(){if(!this.touchMoved){void 0!==Y.currentTime&&null!==Y.currentTime||(Y.currentTime=Y.now());var t=Y.currentTime.getFullYear();Y&&Y.currentTime&&Y.currentTime[e(this).parent().parent().hasClass("xdsoft_monthselect")?"setMonth":"setFullYear"](e(this).data("value")),e(this).parent().parent().hide(),H.trigger("xchange.xdsoft"),C.onChangeMonth&&e.isFunction(C.onChangeMonth)&&C.onChangeMonth.call(H,Y.currentTime,H.data("input")),t!==Y.currentTime.getFullYear()&&e.isFunction(C.onChangeYear)&&C.onChangeYear.call(H,Y.currentTime,H.data("input"))}}),H.getValue=function(){return Y.getCurrentTime()},H.setOptions=function(r){var o={};C=e.extend(!0,{},C,r),r.allowTimes&&e.isArray(r.allowTimes)&&r.allowTimes.length&&(C.allowTimes=e.extend(!0,[],r.allowTimes)),r.weekends&&e.isArray(r.weekends)&&r.weekends.length&&(C.weekends=e.extend(!0,[],r.weekends)),r.allowDates&&e.isArray(r.allowDates)&&r.allowDates.length&&(C.allowDates=e.extend(!0,[],r.allowDates)),r.allowDateRe&&"[object String]"===Object.prototype.toString.call(r.allowDateRe)&&(C.allowDateRe=new RegExp(r.allowDateRe)),r.highlightedDates&&e.isArray(r.highlightedDates)&&r.highlightedDates.length&&(e.each(r.highlightedDates,function(a,r){var i,s=e.map(r.split(","),e.trim),d=new t(n.parseDate(s[0],C.formatDate),s[1],s[2]),u=n.formatDate(d.date,C.formatDate);void 0!==o[u]?(i=o[u].desc)&&i.length&&d.desc&&d.desc.length&&(o[u].desc=i+"\n"+d.desc):o[u]=d}),C.highlightedDates=e.extend(!0,[],o)),r.highlightedPeriods&&e.isArray(r.highlightedPeriods)&&r.highlightedPeriods.length&&(o=e.extend(!0,[],C.highlightedDates),e.each(r.highlightedPeriods,function(a,r){var i,s,d,u,l,f,c;if(e.isArray(r))i=r[0],s=r[1],d=r[2],c=r[3];else{var h=e.map(r.split(","),e.trim);i=n.parseDate(h[0],C.formatDate),s=n.parseDate(h[1],C.formatDate),d=h[2],c=h[3]}for(;i<=s;)u=new t(i,d,c),l=n.formatDate(i,C.formatDate),i.setDate(i.getDate()+1),void 0!==o[l]?(f=o[l].desc)&&f.length&&u.desc&&u.desc.length&&(o[l].desc=f+"\n"+u.desc):o[l]=u}),C.highlightedDates=e.extend(!0,[],o)),r.disabledDates&&e.isArray(r.disabledDates)&&r.disabledDates.length&&(C.disabledDates=e.extend(!0,[],r.disabledDates)),r.disabledWeekDays&&e.isArray(r.disabledWeekDays)&&r.disabledWeekDays.length&&(C.disabledWeekDays=e.extend(!0,[],r.disabledWeekDays)),!C.open&&!C.opened||C.inline||a.trigger("open.xdsoft"),C.inline&&(U=!0,H.addClass("xdsoft_inline"),a.after(H).hide()),C.inverseButton&&(C.next="xdsoft_prev",C.prev="xdsoft_next"),C.datepicker?z.addClass("active"):z.removeClass("active"),C.timepicker?L.addClass("active"):L.removeClass("active"),C.value&&(Y.setCurrentTime(C.value),a&&a.val&&a.val(Y.str)),isNaN(C.dayOfWeekStart)?C.dayOfWeekStart=0:C.dayOfWeekStart=parseInt(C.dayOfWeekStart,10)%7,C.timepickerScrollbar||E.xdsoftScroller(C,"hide"),C.minDate&&/^[\+\-](.*)$/.test(C.minDate)&&(C.minDate=n.formatDate(Y.strToDateTime(C.minDate),C.formatDate)),C.maxDate&&/^[\+\-](.*)$/.test(C.maxDate)&&(C.maxDate=n.formatDate(Y.strToDateTime(C.maxDate),C.formatDate)),C.minDateTime&&/^\+(.*)$/.test(C.minDateTime)&&(C.minDateTime=Y.strToDateTime(C.minDateTime).dateFormat(C.formatDate)),V.toggle(C.showApplyButton),I.find(".xdsoft_today_button").css("visibility",C.todayButton?"visible":"hidden"),I.find("."+C.prev).css("visibility",C.prevButton?"visible":"hidden"),I.find("."+C.next).css("visibility",C.nextButton?"visible":"hidden"),s(C),C.validateOnBlur&&a.off("blur.xdsoft").on("blur.xdsoft",function(){if(C.allowBlank&&(!e.trim(e(this).val()).length||"string"==typeof C.mask&&e.trim(e(this).val())===C.mask.replace(/[0-9]/g,"_")))e(this).val(null),H.data("xdsoft_datetime").empty();else{var t=n.parseDate(e(this).val(),C.format);if(t)e(this).val(n.formatDate(t,C.format));else{var a=+[e(this).val()[0],e(this).val()[1]].join(""),r=+[e(this).val()[2],e(this).val()[3]].join("");!C.datepicker&&C.timepicker&&a>=0&&a<24&&r>=0&&r<60?e(this).val([a,r].map(function(e){return e>9?e:"0"+e}).join(":")):e(this).val(n.formatDate(Y.now(),C.format))}H.data("xdsoft_datetime").setCurrentTime(e(this).val())}H.trigger("changedatetime.xdsoft"),H.trigger("close.xdsoft")}),C.dayOfWeekStartPrev=0===C.dayOfWeekStart?6:C.dayOfWeekStart-1,H.trigger("xchange.xdsoft").trigger("afterOpen.xdsoft")},H.data("options",C).on("touchstart mousedown.xdsoft",function(e){return e.stopPropagation(),e.preventDefault(),G.hide(),B.hide(),!1}),E.append(R),E.xdsoftScroller(C),H.on("afterOpen.xdsoft",function(){E.xdsoftScroller(C)}),H.append(z).append(L),!0!==C.withoutCopyright&&H.append(J),z.append(I).append(N).append(V),e(C.parentID).append(H),Y=new function(){var t=this;t.now=function(e){var a,n,r=new Date;return!e&&C.defaultDate&&(a=t.strToDateTime(C.defaultDate),r.setFullYear(a.getFullYear()),r.setMonth(a.getMonth()),r.setDate(a.getDate())),C.yearOffset&&r.setFullYear(r.getFullYear()+C.yearOffset),!e&&C.defaultTime&&(n=t.strtotime(C.defaultTime),r.setHours(n.getHours()),r.setMinutes(n.getMinutes()),r.setSeconds(n.getSeconds()),r.setMilliseconds(n.getMilliseconds())),r},t.isValidDate=function(e){return"[object Date]"===Object.prototype.toString.call(e)&&!isNaN(e.getTime())},t.setCurrentTime=function(e,a){"string"==typeof e?t.currentTime=t.strToDateTime(e):t.isValidDate(e)?t.currentTime=e:e||a||!C.allowBlank||C.inline?t.currentTime=t.now():t.currentTime=null,H.trigger("xchange.xdsoft")},t.empty=function(){t.currentTime=null},t.getCurrentTime=function(){return t.currentTime},t.nextMonth=function(){void 0!==t.currentTime&&null!==t.currentTime||(t.currentTime=t.now());var a,n=t.currentTime.getMonth()+1;return 12===n&&(t.currentTime.setFullYear(t.currentTime.getFullYear()+1),n=0),a=t.currentTime.getFullYear(),t.currentTime.setDate(Math.min(new Date(t.currentTime.getFullYear(),n+1,0).getDate(),t.currentTime.getDate())),t.currentTime.setMonth(n),C.onChangeMonth&&e.isFunction(C.onChangeMonth)&&C.onChangeMonth.call(H,Y.currentTime,H.data("input")),a!==t.currentTime.getFullYear()&&e.isFunction(C.onChangeYear)&&C.onChangeYear.call(H,Y.currentTime,H.data("input")),H.trigger("xchange.xdsoft"),n},t.prevMonth=function(){void 0!==t.currentTime&&null!==t.currentTime||(t.currentTime=t.now());var a=t.currentTime.getMonth()-1;return-1===a&&(t.currentTime.setFullYear(t.currentTime.getFullYear()-1),a=11),t.currentTime.setDate(Math.min(new Date(t.currentTime.getFullYear(),a+1,0).getDate(),t.currentTime.getDate())),t.currentTime.setMonth(a),C.onChangeMonth&&e.isFunction(C.onChangeMonth)&&C.onChangeMonth.call(H,Y.currentTime,H.data("input")),H.trigger("xchange.xdsoft"),a},t.getWeekOfYear=function(t){if(C.onGetWeekOfYear&&e.isFunction(C.onGetWeekOfYear)){var a=C.onGetWeekOfYear.call(H,t);if(void 0!==a)return a}var n=new Date(t.getFullYear(),0,1);return 4!==n.getDay()&&n.setMonth(0,1+(4-n.getDay()+7)%7),Math.ceil(((t-n)/864e5+n.getDay()+1)/7)},t.strToDateTime=function(e){var a,r,o=[];return e&&e instanceof Date&&t.isValidDate(e)?e:((o=/^([+-]{1})(.*)$/.exec(e))&&(o[2]=n.parseDate(o[2],C.formatDate)),o&&o[2]?(a=o[2].getTime()-6e4*o[2].getTimezoneOffset(),r=new Date(t.now(!0).getTime()+parseInt(o[1]+"1",10)*a)):r=e?n.parseDate(e,C.format):t.now(),t.isValidDate(r)||(r=t.now()),r)},t.strToDate=function(e){if(e&&e instanceof Date&&t.isValidDate(e))return e;var a=e?n.parseDate(e,C.formatDate):t.now(!0);return t.isValidDate(a)||(a=t.now(!0)),a},t.strtotime=function(e){if(e&&e instanceof Date&&t.isValidDate(e))return e;var a=e?n.parseDate(e,C.formatTime):t.now(!0);return t.isValidDate(a)||(a=t.now(!0)),a},t.str=function(){return n.formatDate(t.currentTime,C.format)},t.currentTime=this.now()},V.on("touchend click",function(e){e.preventDefault(),H.data("changed",!0),Y.setCurrentTime(i()),a.val(Y.str()),H.trigger("close.xdsoft")}),I.find(".xdsoft_today_button").on("touchend mousedown.xdsoft",function(){H.data("changed",!0),Y.setCurrentTime(0,!0),H.trigger("afterOpen.xdsoft")}).on("dblclick.xdsoft",function(){var e,t,n=Y.getCurrentTime();n=new Date(n.getFullYear(),n.getMonth(),n.getDate()),e=Y.strToDate(C.minDate),n<(e=new Date(e.getFullYear(),e.getMonth(),e.getDate()))||(t=Y.strToDate(C.maxDate),n>(t=new Date(t.getFullYear(),t.getMonth(),t.getDate()))||(a.val(Y.str()),a.trigger("change"),H.trigger("close.xdsoft")))}),I.find(".xdsoft_prev,.xdsoft_next").on("touchend mousedown.xdsoft",function(){var t=e(this),a=0,n=!1;!function e(r){t.hasClass(C.next)?Y.nextMonth():t.hasClass(C.prev)&&Y.prevMonth(),C.monthChangeSpinner&&(n||(a=setTimeout(e,r||100)))}(500),e([C.ownerDocument.body,C.contentWindow]).on("touchend mouseup.xdsoft",function t(){clearTimeout(a),n=!0,e([C.ownerDocument.body,C.contentWindow]).off("touchend mouseup.xdsoft",t)})}),L.find(".xdsoft_prev,.xdsoft_next").on("touchend mousedown.xdsoft",function(){var t=e(this),a=0,n=!1,r=110;!function e(o){var i=E[0].clientHeight,s=R[0].offsetHeight,d=Math.abs(parseInt(R.css("marginTop"),10));t.hasClass(C.next)&&s-i-C.timeHeightInTimePicker>=d?R.css("marginTop","-"+(d+C.timeHeightInTimePicker)+"px"):t.hasClass(C.prev)&&d-C.timeHeightInTimePicker>=0&&R.css("marginTop","-"+(d-C.timeHeightInTimePicker)+"px"),E.trigger("scroll_element.xdsoft_scroller",[Math.abs(parseInt(R[0].style.marginTop,10)/(s-i))]),r=r>10?10:r-10,n||(a=setTimeout(e,o||r))}(500),e([C.ownerDocument.body,C.contentWindow]).on("touchend mouseup.xdsoft",function t(){clearTimeout(a),n=!0,e([C.ownerDocument.body,C.contentWindow]).off("touchend mouseup.xdsoft",t)})}),d=0,H.on("xchange.xdsoft",function(t){clearTimeout(d),d=setTimeout(function(){void 0!==Y.currentTime&&null!==Y.currentTime||(Y.currentTime=Y.now());for(var t,i,s,d,u,l,f,c,h,m,g="",p=new Date(Y.currentTime.getFullYear(),Y.currentTime.getMonth(),1,12,0,0),y=0,v=Y.now(),D=!1,b=!1,k=!1,x=[],T=!0,S="";p.getDay()!==C.dayOfWeekStart;)p.setDate(p.getDate()-1);for(g+="<table><thead><tr>",C.weeks&&(g+="<th></th>"),t=0;t<7;t+=1)g+="<th>"+C.i18n[r].dayOfWeekShort[(t+C.dayOfWeekStart)%7]+"</th>";for(g+="</tr></thead>",g+="<tbody>",!1!==C.maxDate&&(D=Y.strToDate(C.maxDate),D=new Date(D.getFullYear(),D.getMonth(),D.getDate(),23,59,59,999)),!1!==C.minDate&&(b=Y.strToDate(C.minDate),b=new Date(b.getFullYear(),b.getMonth(),b.getDate())),!1!==C.minDateTime&&(k=Y.strToDate(C.minDateTime),k=new Date(k.getFullYear(),k.getMonth(),k.getDate(),k.getHours(),k.getMinutes(),k.getSeconds()));y<Y.currentTime.countDaysInMonth()||p.getDay()!==C.dayOfWeekStart||Y.currentTime.getMonth()===p.getMonth();)x=[],y+=1,s=p.getDay(),d=p.getDate(),u=p.getFullYear(),l=p.getMonth(),f=Y.getWeekOfYear(p),m="",x.push("xdsoft_date"),c=C.beforeShowDay&&e.isFunction(C.beforeShowDay.call)?C.beforeShowDay.call(H,p):null,C.allowDateRe&&"[object RegExp]"===Object.prototype.toString.call(C.allowDateRe)&&(C.allowDateRe.test(n.formatDate(p,C.formatDate))||x.push("xdsoft_disabled")),C.allowDates&&C.allowDates.length>0&&-1===C.allowDates.indexOf(n.formatDate(p,C.formatDate))&&x.push("xdsoft_disabled"),(!1!==D&&p>D||!1!==k&&p<k||!1!==b&&p<b||c&&!1===c[0])&&x.push("xdsoft_disabled"),-1!==C.disabledDates.indexOf(n.formatDate(p,C.formatDate))&&x.push("xdsoft_disabled"),-1!==C.disabledWeekDays.indexOf(s)&&x.push("xdsoft_disabled"),a.is("[disabled]")&&x.push("xdsoft_disabled"),c&&""!==c[1]&&x.push(c[1]),Y.currentTime.getMonth()!==l&&x.push("xdsoft_other_month"),(C.defaultSelect||H.data("changed"))&&n.formatDate(Y.currentTime,C.formatDate)===n.formatDate(p,C.formatDate)&&x.push("xdsoft_current"),n.formatDate(v,C.formatDate)===n.formatDate(p,C.formatDate)&&x.push("xdsoft_today"),0!==p.getDay()&&6!==p.getDay()&&-1===C.weekends.indexOf(n.formatDate(p,C.formatDate))||x.push("xdsoft_weekend"),void 0!==C.highlightedDates[n.formatDate(p,C.formatDate)]&&(i=C.highlightedDates[n.formatDate(p,C.formatDate)],x.push(void 0===i.style?"xdsoft_highlighted_default":i.style),m=void 0===i.desc?"":i.desc),C.beforeShowDay&&e.isFunction(C.beforeShowDay)&&x.push(C.beforeShowDay(p)),T&&(g+="<tr>",T=!1,C.weeks&&(g+="<th>"+f+"</th>")),g+='<td data-date="'+d+'" data-month="'+l+'" data-year="'+u+'" class="xdsoft_date xdsoft_day_of_week'+p.getDay()+" "+x.join(" ")+'" title="'+m+'"><div>'+d+"</div></td>",p.getDay()===C.dayOfWeekStartPrev&&(g+="</tr>",T=!0),p.setDate(d+1);if(g+="</tbody></table>",N.html(g),I.find(".xdsoft_label span").eq(0).text(C.i18n[r].months[Y.currentTime.getMonth()]),I.find(".xdsoft_label span").eq(1).text(Y.currentTime.getFullYear()),S="","",l="",h=function(t,r){var o,i,s=Y.now(),d=C.allowTimes&&e.isArray(C.allowTimes)&&C.allowTimes.length;s.setHours(t),t=parseInt(s.getHours(),10),s.setMinutes(r),r=parseInt(s.getMinutes(),10),(o=new Date(Y.currentTime)).setHours(t),o.setMinutes(r),x=[],!1!==C.minDateTime&&C.minDateTime>o||!1!==C.maxTime&&Y.strtotime(C.maxTime).getTime()<s.getTime()||!1!==C.minTime&&Y.strtotime(C.minTime).getTime()>s.getTime()?x.push("xdsoft_disabled"):!1!==C.minDateTime&&C.minDateTime>o||!1!==C.disabledMinTime&&s.getTime()>Y.strtotime(C.disabledMinTime).getTime()&&!1!==C.disabledMaxTime&&s.getTime()<Y.strtotime(C.disabledMaxTime).getTime()?x.push("xdsoft_disabled"):a.is("[disabled]")&&x.push("xdsoft_disabled"),(i=new Date(Y.currentTime)).setHours(parseInt(Y.currentTime.getHours(),10)),d||i.setMinutes(Math[C.roundTime](Y.currentTime.getMinutes()/C.step)*C.step),(C.initTime||C.defaultSelect||H.data("changed"))&&i.getHours()===parseInt(t,10)&&(!d&&C.step>59||i.getMinutes()===parseInt(r,10))&&(C.defaultSelect||H.data("changed")?x.push("xdsoft_current"):C.initTime&&x.push("xdsoft_init_time")),parseInt(v.getHours(),10)===parseInt(t,10)&&parseInt(v.getMinutes(),10)===parseInt(r,10)&&x.push("xdsoft_today"),S+='<div class="xdsoft_time '+x.join(" ")+'" data-hour="'+t+'" data-minute="'+r+'">'+n.formatDate(s,C.formatTime)+"</div>"},C.allowTimes&&e.isArray(C.allowTimes)&&C.allowTimes.length)for(y=0;y<C.allowTimes.length;y+=1)h(Y.strtotime(C.allowTimes[y]).getHours(),l=Y.strtotime(C.allowTimes[y]).getMinutes());else for(y=0,t=0;y<(C.hours12?12:24);y+=1)for(t=0;t<60;t+=C.step)h((y<10?"0":"")+y,l=(t<10?"0":"")+t);for(R.html(S),o="",y=parseInt(C.yearStart,10)+C.yearOffset;y<=parseInt(C.yearEnd,10)+C.yearOffset;y+=1)o+='<div class="xdsoft_option '+(Y.currentTime.getFullYear()===y?"xdsoft_current":"")+'" data-value="'+y+'">'+y+"</div>";for(G.children().eq(0).html(o),y=parseInt(C.monthStart,10),o="";y<=parseInt(C.monthEnd,10);y+=1)o+='<div class="xdsoft_option '+(Y.currentTime.getMonth()===y?"xdsoft_current":"")+'" data-value="'+y+'">'+C.i18n[r].months[y]+"</div>";B.children().eq(0).html(o),e(H).trigger("generate.xdsoft")},10),t.stopPropagation()}).on("afterOpen.xdsoft",function(){if(C.timepicker){var e,t,a,n;R.find(".xdsoft_current").length?e=".xdsoft_current":R.find(".xdsoft_init_time").length&&(e=".xdsoft_init_time"),e?(t=E[0].clientHeight,(a=R[0].offsetHeight)-t<(n=R.find(e).index()*C.timeHeightInTimePicker+1)&&(n=a-t),E.trigger("scroll_element.xdsoft_scroller",[parseInt(n,10)/(a-t)])):E.trigger("scroll_element.xdsoft_scroller",[0])}}),u=0,N.on("touchend click.xdsoft","td",function(t){t.stopPropagation(),u+=1;var n=e(this),r=Y.currentTime;if(void 0!==r&&null!==r||(Y.currentTime=Y.now(),r=Y.currentTime),n.hasClass("xdsoft_disabled"))return!1;r.setDate(1),r.setFullYear(n.data("year")),r.setMonth(n.data("month")),r.setDate(n.data("date")),H.trigger("select.xdsoft",[r]),a.val(Y.str()),C.onSelectDate&&e.isFunction(C.onSelectDate)&&C.onSelectDate.call(H,Y.currentTime,H.data("input"),t),H.data("changed",!0),H.trigger("xchange.xdsoft"),H.trigger("changedatetime.xdsoft"),(u>1||!0===C.closeOnDateSelect||!1===C.closeOnDateSelect&&!C.timepicker)&&!C.inline&&H.trigger("close.xdsoft"),setTimeout(function(){u=0},200)}),R.on("touchstart","div",function(e){this.touchMoved=!1}).on("touchmove","div",X).on("touchend click.xdsoft","div",function(t){if(!this.touchMoved){t.stopPropagation();var a=e(this),n=Y.currentTime;if(void 0!==n&&null!==n||(Y.currentTime=Y.now(),n=Y.currentTime),a.hasClass("xdsoft_disabled"))return!1;n.setHours(a.data("hour")),n.setMinutes(a.data("minute")),H.trigger("select.xdsoft",[n]),H.data("input").val(Y.str()),C.onSelectTime&&e.isFunction(C.onSelectTime)&&C.onSelectTime.call(H,Y.currentTime,H.data("input"),t),H.data("changed",!0),H.trigger("xchange.xdsoft"),H.trigger("changedatetime.xdsoft"),!0!==C.inline&&!0===C.closeOnTimeSelect&&H.trigger("close.xdsoft")}}),z.on("mousewheel.xdsoft",function(e){return!C.scrollMonth||(e.deltaY<0?Y.nextMonth():Y.prevMonth(),!1)}),a.on("mousewheel.xdsoft",function(e){return!C.scrollInput||(!C.datepicker&&C.timepicker?((P=R.find(".xdsoft_current").length?R.find(".xdsoft_current").eq(0).index():0)+e.deltaY>=0&&P+e.deltaY<R.children().length&&(P+=e.deltaY),R.children().eq(P).length&&R.children().eq(P).trigger("mousedown"),!1):C.datepicker&&!C.timepicker?(z.trigger(e,[e.deltaY,e.deltaX,e.deltaY]),a.val&&a.val(Y.str()),H.trigger("changedatetime.xdsoft"),!1):void 0)}),H.on("changedatetime.xdsoft",function(t){if(C.onChangeDateTime&&e.isFunction(C.onChangeDateTime)){var a=H.data("input");C.onChangeDateTime.call(H,Y.currentTime,a,t),delete C.value,a.trigger("change")}}).on("generate.xdsoft",function(){C.onGenerate&&e.isFunction(C.onGenerate)&&C.onGenerate.call(H,Y.currentTime,H.data("input")),U&&(H.trigger("afterOpen.xdsoft"),U=!1)}).on("click.xdsoft",function(e){e.stopPropagation()}),P=0,j=function(e,t){do{if(!(e=e.parentNode)||!1===t(e))break}while("HTML"!==e.nodeName)},A=function(){var t,a,n,r,o,i,s,d,u,l,f,c,h;if(d=H.data("input"),t=d.offset(),a=d[0],l="top",n=t.top+a.offsetHeight-1,r=t.left,o="absolute",u=e(C.contentWindow).width(),c=e(C.contentWindow).height(),h=e(C.contentWindow).scrollTop(),C.ownerDocument.documentElement.clientWidth-t.left<z.parent().outerWidth(!0)){var m=z.parent().outerWidth(!0)-a.offsetWidth;r-=m}"rtl"===d.parent().css("direction")&&(r-=H.outerWidth()-d.outerWidth()),C.fixed?(n-=h,r-=e(C.contentWindow).scrollLeft(),o="fixed"):(s=!1,j(a,function(e){return null!==e&&("fixed"===C.contentWindow.getComputedStyle(e).getPropertyValue("position")?(s=!0,!1):void 0)}),s?(o="fixed",n+H.outerHeight()>c+h?(l="bottom",n=c+h-t.top):n-=h):n+H[0].offsetHeight>c+h&&(n=t.top-H[0].offsetHeight+1),n<0&&(n=0),r+a.offsetWidth>u&&(r=u-a.offsetWidth)),i=H[0],j(i,function(e){if("relative"===C.contentWindow.getComputedStyle(e).getPropertyValue("position")&&u>=e.offsetWidth)return r-=(u-e.offsetWidth)/2,!1}),(f={position:o,left:r,top:"",bottom:""})[l]=n,H.css(f)},H.on("open.xdsoft",function(t){var a=!0;C.onShow&&e.isFunction(C.onShow)&&(a=C.onShow.call(H,Y.currentTime,H.data("input"),t)),!1!==a&&(H.show(),A(),e(C.contentWindow).off("resize.xdsoft",A).on("resize.xdsoft",A),C.closeOnWithoutClick&&e([C.ownerDocument.body,C.contentWindow]).on("touchstart mousedown.xdsoft",function t(){H.trigger("close.xdsoft"),e([C.ownerDocument.body,C.contentWindow]).off("touchstart mousedown.xdsoft",t)}))}).on("close.xdsoft",function(t){var a=!0;I.find(".xdsoft_month,.xdsoft_year").find(".xdsoft_select").hide(),C.onClose&&e.isFunction(C.onClose)&&(a=C.onClose.call(H,Y.currentTime,H.data("input"),t)),!1===a||C.opened||C.inline||H.hide(),t.stopPropagation()}).on("toggle.xdsoft",function(){H.is(":visible")?H.trigger("close.xdsoft"):H.trigger("open.xdsoft")}).data("input",a),q=0,H.data("xdsoft_datetime",Y),H.setOptions(C),Y.setCurrentTime(i()),a.data("xdsoft_datetimepicker",H).on("open.xdsoft focusin.xdsoft mousedown.xdsoft touchstart",function(){a.is(":disabled")||a.data("xdsoft_datetimepicker").is(":visible")&&C.closeOnInputClick||C.openOnFocus&&(clearTimeout(q),q=setTimeout(function(){a.is(":disabled")||(U=!0,Y.setCurrentTime(i(),!0),C.mask&&s(C),H.trigger("open.xdsoft"))},100))}).on("keydown.xdsoft",function(t){var a,n=t.which;return-1!==[p].indexOf(n)&&C.enterLikeTab?(a=e("input:visible,textarea:visible,button:visible,a:visible"),H.trigger("close.xdsoft"),a.eq(a.index(this)+1).focus(),!1):-1!==[T].indexOf(n)?(H.trigger("close.xdsoft"),!0):void 0}).on("blur.xdsoft",function(){H.trigger("close.xdsoft")})},d=function(t){var a=t.data("xdsoft_datetimepicker");a&&(a.data("xdsoft_datetime",null),a.remove(),t.data("xdsoft_datetimepicker",null).off(".xdsoft"),e(C.contentWindow).off("resize.xdsoft"),e([C.contentWindow,C.ownerDocument.body]).off("mousedown.xdsoft touchstart"),t.unmousewheel&&t.unmousewheel())},e(C.ownerDocument).off("keydown.xdsoftctrl keyup.xdsoftctrl").on("keydown.xdsoftctrl",function(e){e.keyCode===m&&(F=!0)}).on("keyup.xdsoftctrl",function(e){e.keyCode===m&&(F=!1)}),this.each(function(){var t=e(this).data("xdsoft_datetimepicker");if(t){if("string"===e.type(o))switch(o){case"show":e(this).select().focus(),t.trigger("open.xdsoft");break;case"hide":t.trigger("close.xdsoft");break;case"toggle":t.trigger("toggle.xdsoft");break;case"destroy":d(e(this));break;case"reset":this.value=this.defaultValue,this.value&&t.data("xdsoft_datetime").isValidDate(n.parseDate(this.value,C.format))||t.data("changed",!1),t.data("xdsoft_datetime").setCurrentTime(this.value);break;case"validate":t.data("input").trigger("blur.xdsoft");break;default:t[o]&&e.isFunction(t[o])&&(u=t[o](i))}else t.setOptions(o);return 0}"string"!==e.type(o)&&(!C.lazyInit||C.open||C.inline?s(e(this)):A(e(this)))}),u},e.fn.datetimepicker.defaults=a};!function(e){"function"==typeof define&&define.amd?define(["jquery","jquery-mousewheel"],e):"object"==typeof exports?module.exports=e(require("jquery")):e(jQuery)}(datetimepickerFactory),function(e){"function"==typeof define&&define.amd?define(["jquery"],e):"object"==typeof exports?module.exports=e:e(jQuery)}(function(e){function t(t){var i=t||window.event,s=d.call(arguments,1),u=0,f=0,c=0,h=0,m=0,g=0;if(t=e.event.fix(i),t.type="mousewheel","detail"in i&&(c=-1*i.detail),"wheelDelta"in i&&(c=i.wheelDelta),"wheelDeltaY"in i&&(c=i.wheelDeltaY),"wheelDeltaX"in i&&(f=-1*i.wheelDeltaX),"axis"in i&&i.axis===i.HORIZONTAL_AXIS&&(f=-1*c,c=0),u=0===c?f:c,"deltaY"in i&&(u=c=-1*i.deltaY),"deltaX"in i&&(f=i.deltaX,0===c&&(u=-1*f)),0!==c||0!==f){if(1===i.deltaMode){var p=e.data(this,"mousewheel-line-height");u*=p,c*=p,f*=p}else if(2===i.deltaMode){var y=e.data(this,"mousewheel-page-height");u*=y,c*=y,f*=y}if(h=Math.max(Math.abs(c),Math.abs(f)),(!o||h<o)&&(o=h,n(i,h)&&(o/=40)),n(i,h)&&(u/=40,f/=40,c/=40),u=Math[u>=1?"floor":"ceil"](u/o),f=Math[f>=1?"floor":"ceil"](f/o),c=Math[c>=1?"floor":"ceil"](c/o),l.settings.normalizeOffset&&this.getBoundingClientRect){var v=this.getBoundingClientRect();m=t.clientX-v.left,g=t.clientY-v.top}return t.deltaX=f,t.deltaY=c,t.deltaFactor=o,t.offsetX=m,t.offsetY=g,t.deltaMode=0,s.unshift(t,u,f,c),r&&clearTimeout(r),r=setTimeout(a,200),(e.event.dispatch||e.event.handle).apply(this,s)}}function a(){o=null}function n(e,t){return l.settings.adjustOldDeltas&&"mousewheel"===e.type&&t%120==0}var r,o,i=["wheel","mousewheel","DOMMouseScroll","MozMousePixelScroll"],s="onwheel"in document||document.documentMode>=9?["wheel"]:["mousewheel","DomMouseScroll","MozMousePixelScroll"],d=Array.prototype.slice;if(e.event.fixHooks)for(var u=i.length;u;)e.event.fixHooks[i[--u]]=e.event.mouseHooks;var l=e.event.special.mousewheel={version:"3.1.12",setup:function(){if(this.addEventListener)for(var a=s.length;a;)this.addEventListener(s[--a],t,!1);else this.onmousewheel=t;e.data(this,"mousewheel-line-height",l.getLineHeight(this)),e.data(this,"mousewheel-page-height",l.getPageHeight(this))},teardown:function(){if(this.removeEventListener)for(var a=s.length;a;)this.removeEventListener(s[--a],t,!1);else this.onmousewheel=null;e.removeData(this,"mousewheel-line-height"),e.removeData(this,"mousewheel-page-height")},getLineHeight:function(t){var a=e(t),n=a["offsetParent"in e.fn?"offsetParent":"parent"]();return n.length||(n=e("body")),parseInt(n.css("fontSize"),10)||parseInt(a.css("fontSize"),10)||16},getPageHeight:function(t){return e(t).height()},settings:{adjustOldDeltas:!0,normalizeOffset:!0}};e.fn.extend({mousewheel:function(e){return e?this.bind("mousewheel",e):this.trigger("mousewheel")},unmousewheel:function(e){return this.unbind("mousewheel",e)}})});
wordpress/languages/crelly-slider-es_ES.po CHANGED
@@ -1,686 +1,686 @@
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"
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
19
- msgid "JavaScript must be enabled to view this page correctly."
20
- msgstr "Debes habilitar JavaScript para ver correctamente esta página."
21
-
22
- #: ../admin.php:51
23
- msgid "Operation completed successfully."
24
- msgstr "Operación completada satisfactoriamente."
25
-
26
- #: ../admin.php:52
27
- msgid "Something went wrong."
28
- msgstr "Algo salió mal."
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 "Cuando hagas clic en guardar podrás agregar diapositivas y elementos."
35
-
36
- #: ../admin.php:119
37
- msgid "Slider Settings"
38
- msgstr "Ajustes"
39
-
40
- #: ../admin.php:123
41
- msgid "Edit Slides"
42
- msgstr "Editar Diapositivas"
43
-
44
- #: ../admin.php:143
45
- msgid "Save Settings"
46
- msgstr "Guardar Ajustes"
47
-
48
- #: ../admin.php:243 ../slides.php:15
49
- msgid "Slide"
50
- msgstr "Diapositiva"
51
-
52
- #: ../admin.php:244
53
- msgid "The slide will be deleted. Are you sure?"
54
- msgstr "La diapositiva será borrada, ¿Estás seguro?"
55
-
56
- #: ../admin.php:245
57
- msgid "You can't delete this. You must have at least one slide."
58
- msgstr "No se puede eliminar esto. Debe tener al menos una diapositiva."
59
-
60
- #: ../admin.php:246
61
- msgid "The slider will be deleted. Are you sure?"
62
- msgstr "La diapositiva será borrada, ¿Estás seguro?"
63
-
64
- #: ../admin.php:247 ../elements.php:249
65
- msgid "Text element"
66
- msgstr "Elemento de texto"
67
-
68
- #: ../admin.php:248 ../elements.php:159
69
- msgid "Live preview"
70
- msgstr "Previsualizar diapositivas"
71
-
72
- #: ../admin.php:249
73
- msgid "Stop preview"
74
- msgstr "Detener vista previa"
75
-
76
- #: ../admin.php:250 ../slides.php:16
77
- msgid "Duplicate slide"
78
- msgstr "Duplicar diapositiva"
79
-
80
- #: ../admin.php:251 ../slides.php:17
81
- msgid "Delete slide"
82
- msgstr "Borrar diapositiva"
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
- "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"
93
- msgstr "Copiar"
94
-
95
- #: ../ajax.php:283
96
- msgid "copy"
97
- msgstr "copiar"
98
-
99
- #: ../elements.php:154
100
- msgid "Add text"
101
- msgstr "Agregar texto"
102
-
103
- #: ../elements.php:155
104
- msgid "Add image"
105
- msgstr "Agregar imagen"
106
-
107
- #: ../elements.php:156
108
- msgid "Add video"
109
- msgstr "Agregar video"
110
-
111
- #: ../elements.php:160
112
- msgid "Delete element"
113
- msgstr "Borrar elemento"
114
-
115
- #: ../elements.php:161
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
-
144
- #: ../elements.php:221 ../elements.php:472 ../elements.php:722
145
- msgid "Fade down"
146
- msgstr "Desvanecer hacia abajo"
147
-
148
- #: ../elements.php:222 ../elements.php:473 ../elements.php:723
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
-
160
- #: ../elements.php:225 ../elements.php:476 ../elements.php:726
161
- msgid "Fade small down"
162
- msgstr "Desvanecer ligeramente hacia abajo"
163
-
164
- #: ../elements.php:226 ../elements.php:477 ../elements.php:727
165
- msgid "Fade small up"
166
- msgstr "Desvanecer ligeramente hacia arriba"
167
-
168
- #: ../elements.php:227 ../elements.php:478 ../elements.php:728
169
- msgid "Fade small left"
170
- msgstr "Desvanecer ligeramente hacia la izquierda"
171
-
172
- #: ../elements.php:228 ../elements.php:479 ../elements.php:729
173
- msgid "Fade small right"
174
- msgstr "Desvanecer ligeramente hacia la derecha"
175
-
176
- #: ../elements.php:235 ../elements.php:486 ../elements.php:736
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
-
195
- #: ../elements.php:246
196
- msgid "Text"
197
- msgstr "Texto"
198
-
199
- #: ../elements.php:254
200
- msgid "Write the text or the HTML."
201
- msgstr "Escribe el texto o el HTML"
202
-
203
- #: ../elements.php:258 ../elements.php:508 ../elements.php:809
204
- msgid "Left"
205
- msgstr "Izquierda"
206
-
207
- #: ../elements.php:267 ../elements.php:517 ../elements.php:818
208
- msgid "Center horizontally"
209
- msgstr "Centrar horizontalmente"
210
-
211
- #: ../elements.php:270 ../elements.php:520 ../elements.php:821
212
- msgid "Left distance in px from the start width."
213
- msgstr "Distancia en píxeles desde la izquierda desde el ancho inicial."
214
-
215
- #: ../elements.php:274 ../elements.php:524 ../elements.php:825
216
- msgid "Top"
217
- msgstr "Arriba"
218
-
219
- #: ../elements.php:283 ../elements.php:533 ../elements.php:834
220
- msgid "Center vertically"
221
- msgstr "Centrar verticalmente"
222
-
223
- #: ../elements.php:286 ../elements.php:536 ../elements.php:837
224
- msgid "Top distance in px from the start height."
225
- msgstr "Distancia en píxeles desde arriba a partir de la altura inicial."
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
- "Un elemento con un z-index mayor cubrirá un elemento con uno menor, si se "
237
- "sobreponen."
238
-
239
- #: ../elements.php:302 ../elements.php:552 ../elements.php:853
240
- msgid "Delay"
241
- msgstr "Retraso"
242
-
243
- #: ../elements.php:311 ../elements.php:561 ../elements.php:862
244
- msgid "How long will the element wait before the entrance."
245
- msgstr "Cuanto tardará el elemento en hacer su entrada"
246
-
247
- #: ../elements.php:315 ../elements.php:565 ../elements.php:866
248
- #: ../slides.php:244
249
- msgid "Time"
250
- msgstr "Tiempo"
251
-
252
- #: ../elements.php:324 ../elements.php:574 ../elements.php:875
253
- msgid "How long will the element be displayed during the slide execution."
254
- msgstr ""
255
- "Cuánto tiempo se mostrará el elemento mientras la diapositiva se muestra."
256
-
257
- #: ../elements.php:327 ../elements.php:577 ../elements.php:878
258
- msgid "Write \"all\" to set the entire time."
259
- msgstr "Escribe \"all\" para que se muestre siempre"
260
-
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á "
269
- "mostrado por 3000-1000=2000 milisegundos)"
270
-
271
- #: ../elements.php:334 ../elements.php:584 ../elements.php:885
272
- #: ../slides.php:206
273
- msgid "In animation"
274
- msgstr "Animación de entrada"
275
-
276
- #: ../elements.php:349 ../elements.php:599 ../elements.php:900
277
- msgid "The in animation of the element."
278
- msgstr "La animación de entrada del elemento"
279
-
280
- #: ../elements.php:353 ../elements.php:603 ../elements.php:904
281
- #: ../slides.php:225
282
- msgid "Out animation"
283
- msgstr "Animación de salida"
284
-
285
- #: ../elements.php:368 ../elements.php:371 ../elements.php:374
286
- #: ../elements.php:618 ../elements.php:621 ../elements.php:624
287
- #: ../elements.php:919 ../elements.php:922 ../elements.php:925
288
- msgid "Disable synchronization with slide out animation"
289
- msgstr ""
290
- "Deshabilitar la sincronización con la animación de salida de la diapositiva"
291
-
292
- #: ../elements.php:380 ../elements.php:630 ../elements.php:931
293
- msgid ""
294
- "The out animation of the element.<br /><br />Disable synchronization with "
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"
305
- msgstr "Suavizado de entrada"
306
-
307
- #: ../elements.php:393 ../elements.php:643 ../elements.php:944
308
- msgid "How long will the in animation take."
309
- msgstr "Cuánto tardará la animación"
310
-
311
- #: ../elements.php:397 ../elements.php:647 ../elements.php:948
312
- msgid "Ease out"
313
- msgstr "Suavizado de salida."
314
-
315
- #: ../elements.php:406 ../elements.php:656 ../elements.php:957
316
- msgid "How long will the out animation take."
317
- msgstr "Cuánto tardará la animación de salida."
318
-
319
- #: ../elements.php:410 ../elements.php:660 ../slides.php:283
320
- msgid "Link"
321
- msgstr "Enlace"
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 "Abrir enlace en ventana nueva"
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 "Abrir el enlace al hacer clic en él"
334
-
335
- #: ../elements.php:434 ../elements.php:684 ../elements.php:961
336
- #: ../slides.php:307
337
- msgid "Custom CSS"
338
- msgstr "Estilo CSS personalizado"
339
-
340
- #: ../elements.php:442 ../elements.php:692 ../elements.php:969
341
- msgid "Style the element."
342
- msgstr "Estilizar el elemento"
343
-
344
- #: ../elements.php:446 ../elements.php:696 ../elements.php:973
345
- msgid "Custom classes"
346
- msgstr "Clases personalizadas"
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
- "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"
358
- msgstr "Modificar imagen"
359
-
360
- #: ../elements.php:499 ../elements.php:500
361
- msgid "Open gallery"
362
- msgstr "Abrir galería"
363
-
364
- #: ../elements.php:504
365
- msgid "Change the image source or the alt text."
366
- msgstr "Cambia la fuente de la imagen o el texto ALT"
367
-
368
- #: ../elements.php:747
369
- msgid "Video source"
370
- msgstr "Fuente del video"
371
-
372
- #: ../elements.php:767
373
- msgid "Set source and ID."
374
- msgstr "Establecer fuente e ID"
375
-
376
- #: ../elements.php:771
377
- msgid "Loop video"
378
- msgstr "Repetición del video"
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
387
- msgid "Autoplay"
388
- msgstr "Autoplay"
389
-
390
- #: ../elements.php:805
391
- msgid "The video will automatically be played after the in animation."
392
- msgstr "El video se reproducirá automáticamente después de la animación"
393
-
394
- #: ../frontend.php:25
395
- msgid "You have to insert a valid alias in the shortcode"
396
- msgstr "Introduce un alias válido en el shortcode"
397
-
398
- #: ../frontend.php:43 ../frontend.php:47
399
- msgid "The slider hasn't been found"
400
- msgstr "La diapositiva no fue encontrada"
401
-
402
- #: ../home.php:7
403
- msgid "No Sliders found. Please add a new one."
404
- msgstr "No se encontraron diapositivas. Por favor agrega una nueva."
405
-
406
- #: ../home.php:17
407
- msgid "Sliders List"
408
- msgstr "Listado de diapositivas"
409
-
410
- #: ../home.php:22
411
- msgid "ID"
412
- msgstr "ID"
413
-
414
- #: ../home.php:23
415
- msgid "Name"
416
- msgstr "Nombre"
417
-
418
- #: ../home.php:24
419
- msgid "Alias"
420
- msgstr "Alias"
421
-
422
- #: ../home.php:25
423
- msgid "Shortcode"
424
- msgstr "Shortcode"
425
-
426
- #: ../home.php:26
427
- msgid "Actions"
428
- msgstr "Acciones"
429
-
430
- #: ../home.php:36
431
- msgid "Edit Slider"
432
- msgstr "Editar Diapositiva"
433
-
434
- #: ../home.php:37
435
- msgid "Duplicate Slider"
436
- msgstr "Duplicar diapositiva"
437
-
438
- #: ../home.php:38
439
- msgid "Export Slider"
440
- msgstr "Exportar diapositiva"
441
-
442
- #: ../home.php:39
443
- msgid "Delete Slider"
444
- msgstr "Borrar Diapositiva"
445
-
446
- #: ../home.php:51
447
- msgid "Add Slider"
448
- msgstr "Agregar diapositiva"
449
-
450
- #: ../home.php:52
451
- msgid "Import Slider"
452
- msgstr "Importar diapositiva"
453
-
454
- #: ../slider.php:6
455
- msgid "Full Width"
456
- msgstr "Ancho completo"
457
-
458
- #: ../slider.php:7
459
- msgid "Fixed"
460
- msgstr "Ancho fijo"
461
-
462
- #: ../slider.php:10
463
- msgid "Yes"
464
- msgstr "Sí"
465
-
466
- #: ../slider.php:11
467
- msgid "No"
468
- msgstr "No"
469
-
470
- #: ../slider.php:17 ../slider.php:21
471
- msgid "Slider Name"
472
- msgstr "Nombre de la diapositiva"
473
-
474
- #: ../slider.php:27
475
- msgid "Alias:"
476
- msgstr "Alias:"
477
-
478
- #: ../slider.php:39
479
- msgid "Shortcode:"
480
- msgstr "Shortcode:"
481
-
482
- #: ../slider.php:54
483
- msgid "Slider General Options"
484
- msgstr "Opciones generales de diapositiva"
485
-
486
- #: ../slider.php:64
487
- msgid "Layout"
488
- msgstr "Diseño"
489
-
490
- #: ../slider.php:79
491
- msgid "Modify the layout type of the slider."
492
- msgstr "Modifica el tipo de diseño de la diapositiva."
493
-
494
- #: ../slider.php:83
495
- msgid "Responsive"
496
- msgstr "Responsivo"
497
-
498
- #: ../slider.php:98
499
- msgid "The slider will be adapted to the screen size."
500
- msgstr "La diapositiva será adaptada al tamaño de la pantalla"
501
-
502
- #: ../slider.php:102
503
- msgid "Start Width"
504
- msgstr "Anchura inicial"
505
-
506
- #: ../slider.php:111
507
- msgid "The content initial width of the slider."
508
- msgstr "El ancho del contenido inicial de la diapositiva."
509
-
510
- #: ../slider.php:115
511
- msgid "Start Height"
512
- msgstr "Altura inicial"
513
-
514
- #: ../slider.php:124
515
- msgid "The content initial height of the slider."
516
- msgstr "La altura del contenido inicial de la diapositiva"
517
-
518
- #: ../slider.php:128
519
- msgid "Automatic Slide"
520
- msgstr "Pase de diapositivas automático"
521
-
522
- #: ../slider.php:143
523
- msgid "The slides loop is automatic."
524
- msgstr "Las diapositivas se repetirán automáticamente."
525
-
526
- #: ../slider.php:147
527
- msgid "Show Controls"
528
- msgstr "Mostrar flechas"
529
-
530
- #: ../slider.php:162
531
- msgid "Show the previous and next arrows."
532
- msgstr "Mostrar las flechas anterior y siguiente"
533
-
534
- #: ../slider.php:166
535
- msgid "Show Navigation"
536
- msgstr "Mostrar botones"
537
-
538
- #: ../slider.php:181
539
- msgid "Show the links buttons to change slide."
540
- msgstr "Mostrar botones para cambiar la diapositiva"
541
-
542
- #: ../slider.php:185
543
- msgid "Enable swipe and drag"
544
- msgstr "Habilitara barrido con el dedo"
545
-
546
- #: ../slider.php:200
547
- msgid "Enable swipe left, swipe right, drag left, drag right commands."
548
- msgstr "Habilitar el deslizamiento con el dedo hacia la izquierda y derecha"
549
-
550
- #: ../slider.php:204
551
- msgid "Show Progress Bar"
552
- msgstr "Mostrar barra de progreso"
553
-
554
- #: ../slider.php:219
555
- msgid "Draw the progress bar during the slide execution."
556
- msgstr "Dibujar la barra de progreso mientras se muestra la dispositiva"
557
-
558
- #: ../slider.php:223
559
- msgid "Pause on Hover"
560
- msgstr "Pausar con mouse encima"
561
-
562
- #: ../slider.php:238
563
- msgid "Pause the current slide when hovered."
564
- msgstr "Pausar la animación cuando el mouse está encima"
565
-
566
- #: ../slider.php:242
567
- msgid "Callbacks"
568
- msgstr "Callbacks"
569
-
570
- #: ../slider.php:260
571
- msgid "Some jQuery functions that you can fire during the slider execution."
572
- msgstr ""
573
- "Algunas funciones de jQuery que puedes lanzar durante la ejecución de la "
574
- "diapositiva"
575
-
576
- #: ../slides.php:24
577
- msgid "Add Slide"
578
- msgstr "Agregar diapositiva"
579
-
580
- #: ../slides.php:65
581
- msgid "Slide Options"
582
- msgstr "Opciones de diapositiva"
583
-
584
- #: ../slides.php:76
585
- msgid "Background"
586
- msgstr "Fondo"
587
-
588
- #: ../slides.php:80 ../slides.php:124
589
- msgid "Background image:"
590
- msgstr "Imagen de fondo:"
591
-
592
- #: ../slides.php:83 ../slides.php:128 ../slides.php:131
593
- msgid "Select image"
594
- msgstr "Selecciona la imagen"
595
-
596
- #: ../slides.php:89 ../slides.php:138
597
- msgid "Background color:"
598
- msgstr "Color de fondo:"
599
-
600
- #: ../slides.php:93 ../slides.php:143 ../slides.php:145
601
- msgid "Transparent"
602
- msgstr "Transparente"
603
-
604
- #: ../slides.php:97 ../slides.php:159
605
- msgid "Enter value"
606
- msgstr "Agregar valor"
607
-
608
- #: ../slides.php:103 ../slides.php:166
609
- msgid "Background position-x:"
610
- msgstr "Posición X del fondo"
611
-
612
- #: ../slides.php:106 ../slides.php:169
613
- msgid "Background position-y:"
614
- msgstr "Posición Y del fondo"
615
-
616
- #: ../slides.php:112 ../slides.php:175
617
- msgid "Background repeat:"
618
- msgstr "Repetir el fondo"
619
-
620
- #: ../slides.php:114 ../slides.php:178 ../slides.php:181
621
- msgid "Repeat"
622
- msgstr "Repetir"
623
-
624
- #: ../slides.php:115 ../slides.php:179 ../slides.php:182
625
- msgid "No repeat"
626
- msgstr "No repetir"
627
-
628
- #: ../slides.php:121 ../slides.php:189
629
- msgid "Background size:"
630
- msgstr "Tamaño de la imagen de fondo"
631
-
632
- #: ../slides.php:194
633
- msgid "The background of the slide and its proprieties."
634
- msgstr "El fondo de la diapositiva y sus propiedades"
635
-
636
- #: ../slides.php:197
637
- msgid "Presets:"
638
- msgstr "Valores default:"
639
-
640
- #: ../slides.php:200
641
- msgid "Full width responsive background image"
642
- msgstr "Imagen de fondo responsiva de ancho completo"
643
-
644
- #: ../slides.php:201
645
- msgid "Pattern background image"
646
- msgstr "Imagen de fondo en mosaico"
647
-
648
- #: ../slides.php:221
649
- msgid "The in animation of the slide."
650
- msgstr "La animación de entrada de la diapositiva"
651
-
652
- #: ../slides.php:240
653
- msgid "The out animation of the slide."
654
- msgstr "La animación de salida de la diapositiva"
655
-
656
- #: ../slides.php:253
657
- msgid "The time that the slide will remain on the screen."
658
- msgstr "El tiempo que la diapositiva permanecerá en la pantalla"
659
-
660
- #: ../slides.php:257
661
- msgid "Ease In"
662
- msgstr "Suavizado de entrada"
663
-
664
- #: ../slides.php:266
665
- msgid "The time that the slide will take to get in."
666
- msgstr "El tiempo que la diapositiva tardará en entrar."
667
-
668
- #: ../slides.php:270
669
- msgid "Ease Out"
670
- msgstr "Suavizado de salida"
671
-
672
- #: ../slides.php:279
673
- msgid "The time that the slide will take to get out."
674
- msgstr "El tiempo que la diapositiva tardará en salir"
675
-
676
- #: ../slides.php:303
677
- msgid ""
678
- "Open the link (e.g.: http://www.google.it) when the user clicks on the "
679
- "background. Leave it empty if you don't want it."
680
- msgstr ""
681
- "Abrir el enlace (ej: http://google.com) cuando el usuario hace click en el "
682
- "fondo. Dejar en blanco si no deseas esto."
683
-
684
- #: ../slides.php:315
685
- msgid "Apply CSS to the slide."
686
- msgstr "Reglas CSS para la diapositiva"
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"
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
19
+ msgid "JavaScript must be enabled to view this page correctly."
20
+ msgstr "Debes habilitar JavaScript para ver correctamente esta página."
21
+
22
+ #: ../admin.php:51
23
+ msgid "Operation completed successfully."
24
+ msgstr "Operación completada satisfactoriamente."
25
+
26
+ #: ../admin.php:52
27
+ msgid "Something went wrong."
28
+ msgstr "Algo salió mal."
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 "Cuando hagas clic en guardar podrás agregar diapositivas y elementos."
35
+
36
+ #: ../admin.php:119
37
+ msgid "Slider Settings"
38
+ msgstr "Ajustes"
39
+
40
+ #: ../admin.php:123
41
+ msgid "Edit Slides"
42
+ msgstr "Editar Diapositivas"
43
+
44
+ #: ../admin.php:143
45
+ msgid "Save Settings"
46
+ msgstr "Guardar Ajustes"
47
+
48
+ #: ../admin.php:243 ../slides.php:15
49
+ msgid "Slide"
50
+ msgstr "Diapositiva"
51
+
52
+ #: ../admin.php:244
53
+ msgid "The slide will be deleted. Are you sure?"
54
+ msgstr "La diapositiva será borrada, ¿Estás seguro?"
55
+
56
+ #: ../admin.php:245
57
+ msgid "You can't delete this. You must have at least one slide."
58
+ msgstr "No se puede eliminar esto. Debe tener al menos una diapositiva."
59
+
60
+ #: ../admin.php:246
61
+ msgid "The slider will be deleted. Are you sure?"
62
+ msgstr "La diapositiva será borrada, ¿Estás seguro?"
63
+
64
+ #: ../admin.php:247 ../elements.php:249
65
+ msgid "Text element"
66
+ msgstr "Elemento de texto"
67
+
68
+ #: ../admin.php:248 ../elements.php:159
69
+ msgid "Live preview"
70
+ msgstr "Previsualizar diapositivas"
71
+
72
+ #: ../admin.php:249
73
+ msgid "Stop preview"
74
+ msgstr "Detener vista previa"
75
+
76
+ #: ../admin.php:250 ../slides.php:16
77
+ msgid "Duplicate slide"
78
+ msgstr "Duplicar diapositiva"
79
+
80
+ #: ../admin.php:251 ../slides.php:17
81
+ msgid "Delete slide"
82
+ msgstr "Borrar diapositiva"
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
+ "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"
93
+ msgstr "Copiar"
94
+
95
+ #: ../ajax.php:283
96
+ msgid "copy"
97
+ msgstr "copiar"
98
+
99
+ #: ../elements.php:154
100
+ msgid "Add text"
101
+ msgstr "Agregar texto"
102
+
103
+ #: ../elements.php:155
104
+ msgid "Add image"
105
+ msgstr "Agregar imagen"
106
+
107
+ #: ../elements.php:156
108
+ msgid "Add video"
109
+ msgstr "Agregar video"
110
+
111
+ #: ../elements.php:160
112
+ msgid "Delete element"
113
+ msgstr "Borrar elemento"
114
+
115
+ #: ../elements.php:161
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
+
144
+ #: ../elements.php:221 ../elements.php:472 ../elements.php:722
145
+ msgid "Fade down"
146
+ msgstr "Desvanecer hacia abajo"
147
+
148
+ #: ../elements.php:222 ../elements.php:473 ../elements.php:723
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
+
160
+ #: ../elements.php:225 ../elements.php:476 ../elements.php:726
161
+ msgid "Fade small down"
162
+ msgstr "Desvanecer ligeramente hacia abajo"
163
+
164
+ #: ../elements.php:226 ../elements.php:477 ../elements.php:727
165
+ msgid "Fade small up"
166
+ msgstr "Desvanecer ligeramente hacia arriba"
167
+
168
+ #: ../elements.php:227 ../elements.php:478 ../elements.php:728
169
+ msgid "Fade small left"
170
+ msgstr "Desvanecer ligeramente hacia la izquierda"
171
+
172
+ #: ../elements.php:228 ../elements.php:479 ../elements.php:729
173
+ msgid "Fade small right"
174
+ msgstr "Desvanecer ligeramente hacia la derecha"
175
+
176
+ #: ../elements.php:235 ../elements.php:486 ../elements.php:736
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
+
195
+ #: ../elements.php:246
196
+ msgid "Text"
197
+ msgstr "Texto"
198
+
199
+ #: ../elements.php:254
200
+ msgid "Write the text or the HTML."
201
+ msgstr "Escribe el texto o el HTML"
202
+
203
+ #: ../elements.php:258 ../elements.php:508 ../elements.php:809
204
+ msgid "Left"
205
+ msgstr "Izquierda"
206
+
207
+ #: ../elements.php:267 ../elements.php:517 ../elements.php:818
208
+ msgid "Center horizontally"
209
+ msgstr "Centrar horizontalmente"
210
+
211
+ #: ../elements.php:270 ../elements.php:520 ../elements.php:821
212
+ msgid "Left distance in px from the start width."
213
+ msgstr "Distancia en píxeles desde la izquierda desde el ancho inicial."
214
+
215
+ #: ../elements.php:274 ../elements.php:524 ../elements.php:825
216
+ msgid "Top"
217
+ msgstr "Arriba"
218
+
219
+ #: ../elements.php:283 ../elements.php:533 ../elements.php:834
220
+ msgid "Center vertically"
221
+ msgstr "Centrar verticalmente"
222
+
223
+ #: ../elements.php:286 ../elements.php:536 ../elements.php:837
224
+ msgid "Top distance in px from the start height."
225
+ msgstr "Distancia en píxeles desde arriba a partir de la altura inicial."
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
+ "Un elemento con un z-index mayor cubrirá un elemento con uno menor, si se "
237
+ "sobreponen."
238
+
239
+ #: ../elements.php:302 ../elements.php:552 ../elements.php:853
240
+ msgid "Delay"
241
+ msgstr "Retraso"
242
+
243
+ #: ../elements.php:311 ../elements.php:561 ../elements.php:862
244
+ msgid "How long will the element wait before the entrance."
245
+ msgstr "Cuanto tardará el elemento en hacer su entrada"
246
+
247
+ #: ../elements.php:315 ../elements.php:565 ../elements.php:866
248
+ #: ../slides.php:244
249
+ msgid "Time"
250
+ msgstr "Tiempo"
251
+
252
+ #: ../elements.php:324 ../elements.php:574 ../elements.php:875
253
+ msgid "How long will the element be displayed during the slide execution."
254
+ msgstr ""
255
+ "Cuánto tiempo se mostrará el elemento mientras la diapositiva se muestra."
256
+
257
+ #: ../elements.php:327 ../elements.php:577 ../elements.php:878
258
+ msgid "Write \"all\" to set the entire time."
259
+ msgstr "Escribe \"all\" para que se muestre siempre"
260
+
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á "
269
+ "mostrado por 3000-1000=2000 milisegundos)"
270
+
271
+ #: ../elements.php:334 ../elements.php:584 ../elements.php:885
272
+ #: ../slides.php:206
273
+ msgid "In animation"
274
+ msgstr "Animación de entrada"
275
+
276
+ #: ../elements.php:349 ../elements.php:599 ../elements.php:900
277
+ msgid "The in animation of the element."
278
+ msgstr "La animación de entrada del elemento"
279
+
280
+ #: ../elements.php:353 ../elements.php:603 ../elements.php:904
281
+ #: ../slides.php:225
282
+ msgid "Out animation"
283
+ msgstr "Animación de salida"
284
+
285
+ #: ../elements.php:368 ../elements.php:371 ../elements.php:374
286
+ #: ../elements.php:618 ../elements.php:621 ../elements.php:624
287
+ #: ../elements.php:919 ../elements.php:922 ../elements.php:925
288
+ msgid "Disable synchronization with slide out animation"
289
+ msgstr ""
290
+ "Deshabilitar la sincronización con la animación de salida de la diapositiva"
291
+
292
+ #: ../elements.php:380 ../elements.php:630 ../elements.php:931
293
+ msgid ""
294
+ "The out animation of the element.<br /><br />Disable synchronization with "
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"
305
+ msgstr "Suavizado de entrada"
306
+
307
+ #: ../elements.php:393 ../elements.php:643 ../elements.php:944
308
+ msgid "How long will the in animation take."
309
+ msgstr "Cuánto tardará la animación"
310
+
311
+ #: ../elements.php:397 ../elements.php:647 ../elements.php:948
312
+ msgid "Ease out"
313
+ msgstr "Suavizado de salida."
314
+
315
+ #: ../elements.php:406 ../elements.php:656 ../elements.php:957
316
+ msgid "How long will the out animation take."
317
+ msgstr "Cuánto tardará la animación de salida."
318
+
319
+ #: ../elements.php:410 ../elements.php:660 ../slides.php:283
320
+ msgid "Link"
321
+ msgstr "Enlace"
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 "Abrir enlace en ventana nueva"
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 "Abrir el enlace al hacer clic en él"
334
+
335
+ #: ../elements.php:434 ../elements.php:684 ../elements.php:961
336
+ #: ../slides.php:307
337
+ msgid "Custom CSS"
338
+ msgstr "Estilo CSS personalizado"
339
+
340
+ #: ../elements.php:442 ../elements.php:692 ../elements.php:969
341
+ msgid "Style the element."
342
+ msgstr "Estilizar el elemento"
343
+
344
+ #: ../elements.php:446 ../elements.php:696 ../elements.php:973
345
+ msgid "Custom classes"
346
+ msgstr "Clases personalizadas"
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
+ "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"
358
+ msgstr "Modificar imagen"
359
+
360
+ #: ../elements.php:499 ../elements.php:500
361
+ msgid "Open gallery"
362
+ msgstr "Abrir galería"
363
+
364
+ #: ../elements.php:504
365
+ msgid "Change the image source or the alt text."
366
+ msgstr "Cambia la fuente de la imagen o el texto ALT"
367
+
368
+ #: ../elements.php:747
369
+ msgid "Video source"
370
+ msgstr "Fuente del video"
371
+
372
+ #: ../elements.php:767
373
+ msgid "Set source and ID."
374
+ msgstr "Establecer fuente e ID"
375
+
376
+ #: ../elements.php:771
377
+ msgid "Loop video"
378
+ msgstr "Repetición del video"
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
387
+ msgid "Autoplay"
388
+ msgstr "Autoplay"
389
+
390
+ #: ../elements.php:805
391
+ msgid "The video will automatically be played after the in animation."
392
+ msgstr "El video se reproducirá automáticamente después de la animación"
393
+
394
+ #: ../frontend.php:25
395
+ msgid "You have to insert a valid alias in the shortcode"
396
+ msgstr "Introduce un alias válido en el shortcode"
397
+
398
+ #: ../frontend.php:43 ../frontend.php:47
399
+ msgid "The slider hasn't been found"
400
+ msgstr "La diapositiva no fue encontrada"
401
+
402
+ #: ../home.php:7
403
+ msgid "No Sliders found. Please add a new one."
404
+ msgstr "No se encontraron diapositivas. Por favor agrega una nueva."
405
+
406
+ #: ../home.php:17
407
+ msgid "Sliders List"
408
+ msgstr "Listado de diapositivas"
409
+
410
+ #: ../home.php:22
411
+ msgid "ID"
412
+ msgstr "ID"
413
+
414
+ #: ../home.php:23
415
+ msgid "Name"
416
+ msgstr "Nombre"
417
+
418
+ #: ../home.php:24
419
+ msgid "Alias"
420
+ msgstr "Alias"
421
+
422
+ #: ../home.php:25
423
+ msgid "Shortcode"
424
+ msgstr "Shortcode"
425
+
426
+ #: ../home.php:26
427
+ msgid "Actions"
428
+ msgstr "Acciones"
429
+
430
+ #: ../home.php:36
431
+ msgid "Edit Slider"
432
+ msgstr "Editar Diapositiva"
433
+
434
+ #: ../home.php:37
435
+ msgid "Duplicate Slider"
436
+ msgstr "Duplicar diapositiva"
437
+
438
+ #: ../home.php:38
439
+ msgid "Export Slider"
440
+ msgstr "Exportar diapositiva"
441
+
442
+ #: ../home.php:39
443
+ msgid "Delete Slider"
444
+ msgstr "Borrar Diapositiva"
445
+
446
+ #: ../home.php:51
447
+ msgid "Add Slider"
448
+ msgstr "Agregar diapositiva"
449
+
450
+ #: ../home.php:52
451
+ msgid "Import Slider"
452
+ msgstr "Importar diapositiva"
453
+
454
+ #: ../slider.php:6
455
+ msgid "Full Width"
456
+ msgstr "Ancho completo"
457
+
458
+ #: ../slider.php:7
459
+ msgid "Fixed"
460
+ msgstr "Ancho fijo"
461
+
462
+ #: ../slider.php:10
463
+ msgid "Yes"
464
+ msgstr "Sí"
465
+
466
+ #: ../slider.php:11
467
+ msgid "No"
468
+ msgstr "No"
469
+
470
+ #: ../slider.php:17 ../slider.php:21
471
+ msgid "Slider Name"
472
+ msgstr "Nombre de la diapositiva"
473
+
474
+ #: ../slider.php:27
475
+ msgid "Alias:"
476
+ msgstr "Alias:"
477
+
478
+ #: ../slider.php:39
479
+ msgid "Shortcode:"
480
+ msgstr "Shortcode:"
481
+
482
+ #: ../slider.php:54
483
+ msgid "Slider General Options"
484
+ msgstr "Opciones generales de diapositiva"
485
+
486
+ #: ../slider.php:64
487
+ msgid "Layout"
488
+ msgstr "Diseño"
489
+
490
+ #: ../slider.php:79
491
+ msgid "Modify the layout type of the slider."
492
+ msgstr "Modifica el tipo de diseño de la diapositiva."
493
+
494
+ #: ../slider.php:83
495
+ msgid "Responsive"
496
+ msgstr "Responsivo"
497
+
498
+ #: ../slider.php:98
499
+ msgid "The slider will be adapted to the screen size."
500
+ msgstr "La diapositiva será adaptada al tamaño de la pantalla"
501
+
502
+ #: ../slider.php:102
503
+ msgid "Start Width"
504
+ msgstr "Anchura inicial"
505
+
506
+ #: ../slider.php:111
507
+ msgid "The content initial width of the slider."
508
+ msgstr "El ancho del contenido inicial de la diapositiva."
509
+
510
+ #: ../slider.php:115
511
+ msgid "Start Height"
512
+ msgstr "Altura inicial"
513
+
514
+ #: ../slider.php:124
515
+ msgid "The content initial height of the slider."
516
+ msgstr "La altura del contenido inicial de la diapositiva"
517
+
518
+ #: ../slider.php:128
519
+ msgid "Automatic Slide"
520
+ msgstr "Pase de diapositivas automático"
521
+
522
+ #: ../slider.php:143
523
+ msgid "The slides loop is automatic."
524
+ msgstr "Las diapositivas se repetirán automáticamente."
525
+
526
+ #: ../slider.php:147
527
+ msgid "Show Controls"
528
+ msgstr "Mostrar flechas"
529
+
530
+ #: ../slider.php:162
531
+ msgid "Show the previous and next arrows."
532
+ msgstr "Mostrar las flechas anterior y siguiente"
533
+
534
+ #: ../slider.php:166
535
+ msgid "Show Navigation"
536
+ msgstr "Mostrar botones"
537
+
538
+ #: ../slider.php:181
539
+ msgid "Show the links buttons to change slide."
540
+ msgstr "Mostrar botones para cambiar la diapositiva"
541
+
542
+ #: ../slider.php:185
543
+ msgid "Enable swipe and drag"
544
+ msgstr "Habilitara barrido con el dedo"
545
+
546
+ #: ../slider.php:200
547
+ msgid "Enable swipe left, swipe right, drag left, drag right commands."
548
+ msgstr "Habilitar el deslizamiento con el dedo hacia la izquierda y derecha"
549
+
550
+ #: ../slider.php:204
551
+ msgid "Show Progress Bar"
552
+ msgstr "Mostrar barra de progreso"
553
+
554
+ #: ../slider.php:219
555
+ msgid "Draw the progress bar during the slide execution."
556
+ msgstr "Dibujar la barra de progreso mientras se muestra la dispositiva"
557
+
558
+ #: ../slider.php:223
559
+ msgid "Pause on Hover"
560
+ msgstr "Pausar con mouse encima"
561
+
562
+ #: ../slider.php:238
563
+ msgid "Pause the current slide when hovered."
564
+ msgstr "Pausar la animación cuando el mouse está encima"
565
+
566
+ #: ../slider.php:242
567
+ msgid "Callbacks"
568
+ msgstr "Callbacks"
569
+
570
+ #: ../slider.php:260
571
+ msgid "Some jQuery functions that you can fire during the slider execution."
572
+ msgstr ""
573
+ "Algunas funciones de jQuery que puedes lanzar durante la ejecución de la "
574
+ "diapositiva"
575
+
576
+ #: ../slides.php:24
577
+ msgid "Add Slide"
578
+ msgstr "Agregar diapositiva"
579
+
580
+ #: ../slides.php:65
581
+ msgid "Slide Options"
582
+ msgstr "Opciones de diapositiva"
583
+
584
+ #: ../slides.php:76
585
+ msgid "Background"
586
+ msgstr "Fondo"
587
+
588
+ #: ../slides.php:80 ../slides.php:124
589
+ msgid "Background image:"
590
+ msgstr "Imagen de fondo:"
591
+
592
+ #: ../slides.php:83 ../slides.php:128 ../slides.php:131
593
+ msgid "Select image"
594
+ msgstr "Selecciona la imagen"
595
+
596
+ #: ../slides.php:89 ../slides.php:138
597
+ msgid "Background color:"
598
+ msgstr "Color de fondo:"
599
+
600
+ #: ../slides.php:93 ../slides.php:143 ../slides.php:145
601
+ msgid "Transparent"
602
+ msgstr "Transparente"
603
+
604
+ #: ../slides.php:97 ../slides.php:159
605
+ msgid "Enter value"
606
+ msgstr "Agregar valor"
607
+
608
+ #: ../slides.php:103 ../slides.php:166
609
+ msgid "Background position-x:"
610
+ msgstr "Posición X del fondo"
611
+
612
+ #: ../slides.php:106 ../slides.php:169
613
+ msgid "Background position-y:"
614
+ msgstr "Posición Y del fondo"
615
+
616
+ #: ../slides.php:112 ../slides.php:175
617
+ msgid "Background repeat:"
618
+ msgstr "Repetir el fondo"
619
+
620
+ #: ../slides.php:114 ../slides.php:178 ../slides.php:181
621
+ msgid "Repeat"
622
+ msgstr "Repetir"
623
+
624
+ #: ../slides.php:115 ../slides.php:179 ../slides.php:182
625
+ msgid "No repeat"
626
+ msgstr "No repetir"
627
+
628
+ #: ../slides.php:121 ../slides.php:189
629
+ msgid "Background size:"
630
+ msgstr "Tamaño de la imagen de fondo"
631
+
632
+ #: ../slides.php:194
633
+ msgid "The background of the slide and its proprieties."
634
+ msgstr "El fondo de la diapositiva y sus propiedades"
635
+
636
+ #: ../slides.php:197
637
+ msgid "Presets:"
638
+ msgstr "Valores default:"
639
+
640
+ #: ../slides.php:200
641
+ msgid "Full width responsive background image"
642
+ msgstr "Imagen de fondo responsiva de ancho completo"
643
+
644
+ #: ../slides.php:201
645
+ msgid "Pattern background image"
646
+ msgstr "Imagen de fondo en mosaico"
647
+
648
+ #: ../slides.php:221
649
+ msgid "The in animation of the slide."
650
+ msgstr "La animación de entrada de la diapositiva"
651
+
652
+ #: ../slides.php:240
653
+ msgid "The out animation of the slide."
654
+ msgstr "La animación de salida de la diapositiva"
655
+
656
+ #: ../slides.php:253
657
+ msgid "The time that the slide will remain on the screen."
658
+ msgstr "El tiempo que la diapositiva permanecerá en la pantalla"
659
+
660
+ #: ../slides.php:257
661
+ msgid "Ease In"
662
+ msgstr "Suavizado de entrada"
663
+
664
+ #: ../slides.php:266
665
+ msgid "The time that the slide will take to get in."
666
+ msgstr "El tiempo que la diapositiva tardará en entrar."
667
+
668
+ #: ../slides.php:270
669
+ msgid "Ease Out"
670
+ msgstr "Suavizado de salida"
671
+
672
+ #: ../slides.php:279
673
+ msgid "The time that the slide will take to get out."
674
+ msgstr "El tiempo que la diapositiva tardará en salir"
675
+
676
+ #: ../slides.php:303
677
+ msgid ""
678
+ "Open the link (e.g.: http://www.google.it) when the user clicks on the "
679
+ "background. Leave it empty if you don't want it."
680
+ msgstr ""
681
+ "Abrir el enlace (ej: http://google.com) cuando el usuario hace click en el "
682
+ "fondo. Dejar en blanco si no deseas esto."
683
+
684
+ #: ../slides.php:315
685
+ msgid "Apply CSS to the slide."
686
+ msgstr "Reglas CSS para la diapositiva"
wordpress/languages/crelly-slider-fr_FR.po CHANGED
@@ -1,697 +1,697 @@
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
19
- msgid "JavaScript must be enabled to view this page correctly."
20
- msgstr "JavaScript doit être activé pour afficher cette page correctement."
21
-
22
- #: ../admin.php:51
23
- msgid "Operation completed successfully."
24
- msgstr "Opération terminée avec succès ."
25
-
26
- #: ../admin.php:52
27
- msgid "Something went wrong."
28
- msgstr "Quelque chose a mal fonctionné."
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
- "Lorsque vous cliquez sur \"Enregistrer les paramètres\", vous serez en "
36
- "mesure d'ajouter des diapositives et des éléments."
37
-
38
- #: ../admin.php:119
39
- msgid "Slider Settings"
40
- msgstr "Paramètres Slider"
41
-
42
- #: ../admin.php:123
43
- msgid "Edit Slides"
44
- msgstr "Modifier les diapositives"
45
-
46
- #: ../admin.php:143
47
- msgid "Save Settings"
48
- msgstr "Enregistrer les paramètres"
49
-
50
- #: ../admin.php:243 ../slides.php:15
51
- msgid "Slide"
52
- msgstr "Diapositive"
53
-
54
- #: ../admin.php:244
55
- msgid "The slide will be deleted. Are you sure?"
56
- msgstr "La diapositive sera supprimée. Êtes-vous sûr?"
57
-
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?"
65
- msgstr "Le slider sera supprimé. Êtes-vous sûr?"
66
-
67
- #: ../admin.php:247 ../elements.php:249
68
- msgid "Text element"
69
- msgstr "Élément texte"
70
-
71
- #: ../admin.php:248 ../elements.php:159
72
- msgid "Live preview"
73
- msgstr "Aperçu en direct"
74
-
75
- #: ../admin.php:249
76
- msgid "Stop preview"
77
- msgstr "Arrêter aperçu"
78
-
79
- #: ../admin.php:250 ../slides.php:16
80
- msgid "Duplicate slide"
81
- msgstr "Dupliquer la diapositive"
82
-
83
- #: ../admin.php:251 ../slides.php:17
84
- msgid "Delete slide"
85
- msgstr "Supprimer la diapositive"
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
- "Toutes les modifications non enregistrées seront perdues. Êtes-vous sûr de "
92
- "vouloir quitter cette page?"
93
-
94
- #: ../ajax.php:282
95
- msgid "Copy"
96
- msgstr "Copier"
97
-
98
- #: ../ajax.php:283
99
- msgid "copy"
100
- msgstr "copier"
101
-
102
- #: ../elements.php:154
103
- msgid "Add text"
104
- msgstr "Ajouter texte"
105
-
106
- #: ../elements.php:155
107
- msgid "Add image"
108
- msgstr "Ajouter image"
109
-
110
- #: ../elements.php:156
111
- msgid "Add video"
112
- msgstr "Ajouter vidéo"
113
-
114
- #: ../elements.php:160
115
- msgid "Delete element"
116
- msgstr "Supprimer élément"
117
-
118
- #: ../elements.php:161
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
-
147
- #: ../elements.php:221 ../elements.php:472 ../elements.php:722
148
- msgid "Fade down"
149
- msgstr "Fondu vers le bas"
150
-
151
- #: ../elements.php:222 ../elements.php:473 ../elements.php:723
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
-
163
- #: ../elements.php:225 ../elements.php:476 ../elements.php:726
164
- msgid "Fade small down"
165
- msgstr "Fondu faible vers le bas"
166
-
167
- #: ../elements.php:226 ../elements.php:477 ../elements.php:727
168
- msgid "Fade small up"
169
- msgstr "Fondu faible vers le haut"
170
-
171
- #: ../elements.php:227 ../elements.php:478 ../elements.php:728
172
- msgid "Fade small left"
173
- msgstr "Fondu vers la gauche"
174
-
175
- #: ../elements.php:228 ../elements.php:479 ../elements.php:729
176
- msgid "Fade small right"
177
- msgstr "Fondu vers la droite"
178
-
179
- #: ../elements.php:235 ../elements.php:486 ../elements.php:736
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
-
198
- #: ../elements.php:246
199
- msgid "Text"
200
- msgstr "Texte"
201
-
202
- #: ../elements.php:254
203
- msgid "Write the text or the HTML."
204
- msgstr "Écrire le texte ou le HTML"
205
-
206
- #: ../elements.php:258 ../elements.php:508 ../elements.php:809
207
- msgid "Left"
208
- msgstr "Gauche"
209
-
210
- #: ../elements.php:267 ../elements.php:517 ../elements.php:818
211
- msgid "Center horizontally"
212
- msgstr "Centrer horizontallement"
213
-
214
- #: ../elements.php:270 ../elements.php:520 ../elements.php:821
215
- msgid "Left distance in px from the start width."
216
- msgstr "Distance gauche en px de la largeur de départ."
217
-
218
- #: ../elements.php:274 ../elements.php:524 ../elements.php:825
219
- msgid "Top"
220
- msgstr "Haut"
221
-
222
- #: ../elements.php:283 ../elements.php:533 ../elements.php:834
223
- msgid "Center vertically"
224
- msgstr "Centrer verticallement"
225
-
226
- #: ../elements.php:286 ../elements.php:536 ../elements.php:837
227
- msgid "Top distance in px from the start height."
228
- msgstr "Distance haute en px de la hauteur de départ."
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
- "Un élément avec un z-index élevé couvrira un élément avec un z-index "
240
- "inférieur si ils se chevauchent."
241
-
242
- #: ../elements.php:302 ../elements.php:552 ../elements.php:853
243
- msgid "Delay"
244
- msgstr "Retardement"
245
-
246
- #: ../elements.php:311 ../elements.php:561 ../elements.php:862
247
- msgid "How long will the element wait before the entrance."
248
- msgstr "Combien de temps l'élément doit attendre avant l'entrée."
249
-
250
- #: ../elements.php:315 ../elements.php:565 ../elements.php:866
251
- #: ../slides.php:244
252
- msgid "Time"
253
- msgstr "Temps"
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
- "Combien de temps l'élément sera affiché lors de l'exécution de la "
259
- "diapositive."
260
-
261
- #: ../elements.php:327 ../elements.php:577 ../elements.php:878
262
- msgid "Write \"all\" to set the entire time."
263
- msgstr "Écrire \"all\" pour régler sur toute la durée."
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
- "Écrire \"3000\" pour définir 3000 millisecondes moins le temps de retard "
272
- "(ainsi, si le temps de retard est de 1000 millisecondes, l'élément sera "
273
- "affiché pour 3000-1000 = 2000 millisecondes)."
274
-
275
- #: ../elements.php:334 ../elements.php:584 ../elements.php:885
276
- #: ../slides.php:206
277
- msgid "In animation"
278
- msgstr "Animation d'entrée"
279
-
280
- #: ../elements.php:349 ../elements.php:599 ../elements.php:900
281
- msgid "The in animation of the element."
282
- msgstr "Animation d'entrée de l'élément"
283
-
284
- #: ../elements.php:353 ../elements.php:603 ../elements.php:904
285
- #: ../slides.php:225
286
- msgid "Out animation"
287
- msgstr "Animation de sortie"
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 ""
294
- "Désactiver la synchronisation avec la diapositive d'animation de sortie"
295
-
296
- #: ../elements.php:380 ../elements.php:630 ../elements.php:931
297
- msgid ""
298
- "The out animation of the element.<br /><br />Disable synchronization with "
299
- "slide out animation: if not checked, the slide out animation won't start "
300
- "until all the elements that have this option unchecked are animated out."
301
- msgstr ""
302
- "Désactiver l'animation de sortie de l'élément <br /> <br /> Désactiver la "
303
- "synchronisation avec l'animation de sortie: Si non coché, la diapositive de "
304
- "l'animation de sortie ne démarre pas jusqu'à ce que tous les éléments qui "
305
- "ont cette option décochée sont animés en sortie."
306
-
307
- #: ../elements.php:384 ../elements.php:634 ../elements.php:935
308
- msgid "Ease in"
309
- msgstr "Ease in"
310
-
311
- #: ../elements.php:393 ../elements.php:643 ../elements.php:944
312
- msgid "How long will the in animation take."
313
- msgstr "Combien de temps l'animation d'entrée prendra."
314
-
315
- #: ../elements.php:397 ../elements.php:647 ../elements.php:948
316
- msgid "Ease out"
317
- msgstr "Ease out"
318
-
319
- #: ../elements.php:406 ../elements.php:656 ../elements.php:957
320
- msgid "How long will the out animation take."
321
- msgstr "Combien de temps l'animation de sortie prendra."
322
-
323
- #: ../elements.php:410 ../elements.php:660 ../slides.php:283
324
- msgid "Link"
325
- msgstr "Lien"
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 "Ouvrir le lien dans un nouvel onglet"
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
- "Ouvrez le lien (par exemple : http://www.google.it) lors d'un clic. Laissez "
339
- "vide si vous ne voulez pas."
340
-
341
- #: ../elements.php:434 ../elements.php:684 ../elements.php:961
342
- #: ../slides.php:307
343
- msgid "Custom CSS"
344
- msgstr "CSS personnalisé"
345
-
346
- #: ../elements.php:442 ../elements.php:692 ../elements.php:969
347
- msgid "Style the element."
348
- msgstr "Style de l'élément."
349
-
350
- #: ../elements.php:446 ../elements.php:696 ../elements.php:973
351
- msgid "Custom classes"
352
- msgstr "classes personnalisées"
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
- "Appliquer des classes CSS personnalisées à l'élément. Le style des classes "
360
- "peut ne pas fonctionner lorsque vous travaillez sur backend."
361
-
362
- #: ../elements.php:496
363
- msgid "Modify image"
364
- msgstr "Modifier l'image"
365
-
366
- #: ../elements.php:499 ../elements.php:500
367
- msgid "Open gallery"
368
- msgstr "Ouvrir la galerie"
369
-
370
- #: ../elements.php:504
371
- msgid "Change the image source or the alt text."
372
- msgstr "Changez la source de l'image ou le texte alt."
373
-
374
- #: ../elements.php:747
375
- msgid "Video source"
376
- msgstr "source vidéo"
377
-
378
- #: ../elements.php:767
379
- msgid "Set source and ID."
380
- msgstr "Définir la source et ID."
381
-
382
- #: ../elements.php:771
383
- msgid "Loop video"
384
- msgstr "Boucle vidéo"
385
-
386
- #: ../elements.php:786
387
- msgid ""
388
- "The video will automatically restart from the beginning when it reaches the "
389
- "end."
390
- msgstr ""
391
- "La vidéo sera automatiquement redémarrée depuis le début quand elle atteint "
392
- "la fin."
393
-
394
- #: ../elements.php:790
395
- msgid "Autoplay"
396
- msgstr "Lecture automatique"
397
-
398
- #: ../elements.php:805
399
- msgid "The video will automatically be played after the in animation."
400
- msgstr "La vidéo sera automatiquement jouée après l'animation."
401
-
402
- #: ../frontend.php:25
403
- msgid "You have to insert a valid alias in the shortcode"
404
- msgstr "Vous devez insérer un alias valide dans le shortcode"
405
-
406
- #: ../frontend.php:43 ../frontend.php:47
407
- msgid "The slider hasn't been found"
408
- msgstr "Le slider n'a pas été trouvé"
409
-
410
- #: ../home.php:7
411
- msgid "No Sliders found. Please add a new one."
412
- msgstr "Aucun Slider trouvé. S'il vous plaît ajoutez un nouveau."
413
-
414
- #: ../home.php:17
415
- msgid "Sliders List"
416
- msgstr "Liste des Sliders"
417
-
418
- #: ../home.php:22
419
- msgid "ID"
420
- msgstr "ID"
421
-
422
- #: ../home.php:23
423
- msgid "Name"
424
- msgstr "Nom"
425
-
426
- #: ../home.php:24
427
- msgid "Alias"
428
- msgstr "Alias"
429
-
430
- #: ../home.php:25
431
- msgid "Shortcode"
432
- msgstr "Shortcode"
433
-
434
- #: ../home.php:26
435
- msgid "Actions"
436
- msgstr "Actions"
437
-
438
- #: ../home.php:36
439
- msgid "Edit Slider"
440
- msgstr "Modifier Slider"
441
-
442
- #: ../home.php:37
443
- msgid "Duplicate Slider"
444
- msgstr "Dupliquer Slider"
445
-
446
- #: ../home.php:38
447
- msgid "Export Slider"
448
- msgstr "Exporter Slider"
449
-
450
- #: ../home.php:39
451
- msgid "Delete Slider"
452
- msgstr "Supprimer Slider"
453
-
454
- #: ../home.php:51
455
- msgid "Add Slider"
456
- msgstr "Ajouter Slider"
457
-
458
- #: ../home.php:52
459
- msgid "Import Slider"
460
- msgstr "Importer Slider"
461
-
462
- #: ../slider.php:6
463
- msgid "Full Width"
464
- msgstr "Pleine largeur"
465
-
466
- #: ../slider.php:7
467
- msgid "Fixed"
468
- msgstr "Fixé"
469
-
470
- #: ../slider.php:10
471
- msgid "Yes"
472
- msgstr "Oui"
473
-
474
- #: ../slider.php:11
475
- msgid "No"
476
- msgstr "Non"
477
-
478
- #: ../slider.php:17 ../slider.php:21
479
- msgid "Slider Name"
480
- msgstr "Nom du Slider"
481
-
482
- #: ../slider.php:27
483
- msgid "Alias:"
484
- msgstr "Alias:"
485
-
486
- #: ../slider.php:39
487
- msgid "Shortcode:"
488
- msgstr "Shortcode:"
489
-
490
- #: ../slider.php:54
491
- msgid "Slider General Options"
492
- msgstr "Options générales du Slider"
493
-
494
- #: ../slider.php:64
495
- msgid "Layout"
496
- msgstr "Disposition"
497
-
498
- #: ../slider.php:79
499
- msgid "Modify the layout type of the slider."
500
- msgstr "Modifier le type de disposition du Slider"
501
-
502
- #: ../slider.php:83
503
- msgid "Responsive"
504
- msgstr "Responsive"
505
-
506
- #: ../slider.php:98
507
- msgid "The slider will be adapted to the screen size."
508
- msgstr "Le Slider sera adapté à la taille de l'écran."
509
-
510
- #: ../slider.php:102
511
- msgid "Start Width"
512
- msgstr "Largeur de démarrage"
513
-
514
- #: ../slider.php:111
515
- msgid "The content initial width of the slider."
516
- msgstr "Largeur du contenu initial du Slider"
517
-
518
- #: ../slider.php:115
519
- msgid "Start Height"
520
- msgstr "Hauteur de démarrage"
521
-
522
- #: ../slider.php:124
523
- msgid "The content initial height of the slider."
524
- msgstr "Hauteur du contenu initial du Slider"
525
-
526
- #: ../slider.php:128
527
- msgid "Automatic Slide"
528
- msgstr "Diapositive automatique"
529
-
530
- #: ../slider.php:143
531
- msgid "The slides loop is automatic."
532
- msgstr "La boucle des diapositives est automatique."
533
-
534
- #: ../slider.php:147
535
- msgid "Show Controls"
536
- msgstr "Afficher les contrôles"
537
-
538
- #: ../slider.php:162
539
- msgid "Show the previous and next arrows."
540
- msgstr "Voir les flèches précédent et suivant."
541
-
542
- #: ../slider.php:166
543
- msgid "Show Navigation"
544
- msgstr "Afficher la navigation"
545
-
546
- #: ../slider.php:181
547
- msgid "Show the links buttons to change slide."
548
- msgstr "Afficher les boutons de liens pour changer la diapositive."
549
-
550
- #: ../slider.php:185
551
- msgid "Enable swipe and drag"
552
- msgstr "Activer glisser et faire défiler"
553
-
554
- #: ../slider.php:200
555
- msgid "Enable swipe left, swipe right, drag left, drag right commands."
556
- msgstr ""
557
- "Activer glisser gauche, à droite de défilement, glissement à gauche, faites "
558
- "glisser les commandes à droite."
559
-
560
- #: ../slider.php:204
561
- msgid "Show Progress Bar"
562
- msgstr "Afficher la barre de progression"
563
-
564
- #: ../slider.php:219
565
- msgid "Draw the progress bar during the slide execution."
566
- msgstr ""
567
- "Dessinez la barre de progression lors de l'exécution de la diapositive."
568
-
569
- #: ../slider.php:223
570
- msgid "Pause on Hover"
571
- msgstr "Pause sur survol"
572
-
573
- #: ../slider.php:238
574
- msgid "Pause the current slide when hovered."
575
- msgstr "Pause de la diapositive actuelle pendant le survol"
576
-
577
- #: ../slider.php:242
578
- msgid "Callbacks"
579
- msgstr "fonctions de rappel"
580
-
581
- #: ../slider.php:260
582
- msgid "Some jQuery functions that you can fire during the slider execution."
583
- msgstr ""
584
- "Certaines fonctions jQuery que vous pouvez exécuter pendant l'exécution du "
585
- "curseur."
586
-
587
- #: ../slides.php:24
588
- msgid "Add Slide"
589
- msgstr "Ajouter diapositive"
590
-
591
- #: ../slides.php:65
592
- msgid "Slide Options"
593
- msgstr "Options de la diapositive "
594
-
595
- #: ../slides.php:76
596
- msgid "Background"
597
- msgstr "Arrière-plan"
598
-
599
- #: ../slides.php:80 ../slides.php:124
600
- msgid "Background image:"
601
- msgstr "Image d'arrière-plan:"
602
-
603
- #: ../slides.php:83 ../slides.php:128 ../slides.php:131
604
- msgid "Select image"
605
- msgstr "Sélectionner une image"
606
-
607
- #: ../slides.php:89 ../slides.php:138
608
- msgid "Background color:"
609
- msgstr "Couleur d'arrière-plan:"
610
-
611
- #: ../slides.php:93 ../slides.php:143 ../slides.php:145
612
- msgid "Transparent"
613
- msgstr "Transparent"
614
-
615
- #: ../slides.php:97 ../slides.php:159
616
- msgid "Enter value"
617
- msgstr "Entrer la valeur"
618
-
619
- #: ../slides.php:103 ../slides.php:166
620
- msgid "Background position-x:"
621
- msgstr "Position-x de l'arrière-plan:"
622
-
623
- #: ../slides.php:106 ../slides.php:169
624
- msgid "Background position-y:"
625
- msgstr "Position-y de l'arrière-plan:"
626
-
627
- #: ../slides.php:112 ../slides.php:175
628
- msgid "Background repeat:"
629
- msgstr "Répétition de l'arrière-plan:"
630
-
631
- #: ../slides.php:114 ../slides.php:178 ../slides.php:181
632
- msgid "Repeat"
633
- msgstr "Répétition"
634
-
635
- #: ../slides.php:115 ../slides.php:179 ../slides.php:182
636
- msgid "No repeat"
637
- msgstr "Pas de répétition"
638
-
639
- #: ../slides.php:121 ../slides.php:189
640
- msgid "Background size:"
641
- msgstr "Taille de l'arrière-plan"
642
-
643
- #: ../slides.php:194
644
- msgid "The background of the slide and its proprieties."
645
- msgstr "L'arrière-plan de la diapositive et ses propriétés."
646
-
647
- #: ../slides.php:197
648
- msgid "Presets:"
649
- msgstr "Présélections:"
650
-
651
- #: ../slides.php:200
652
- msgid "Full width responsive background image"
653
- msgstr "Pleine largeur Responsive de l'image d'arrière-plan"
654
-
655
- #: ../slides.php:201
656
- msgid "Pattern background image"
657
- msgstr "Motif image d'arrière-plan"
658
-
659
- #: ../slides.php:221
660
- msgid "The in animation of the slide."
661
- msgstr "Animation d'entrée de la diapositive"
662
-
663
- #: ../slides.php:240
664
- msgid "The out animation of the slide."
665
- msgstr "Animation de sortie de la diapositive"
666
-
667
- #: ../slides.php:253
668
- msgid "The time that the slide will remain on the screen."
669
- msgstr "Temps que la diapositive restera à l'écran."
670
-
671
- #: ../slides.php:257
672
- msgid "Ease In"
673
- msgstr "Ease In"
674
-
675
- #: ../slides.php:266
676
- msgid "The time that the slide will take to get in."
677
- msgstr "Temps que la diapositive prendra pour entrer."
678
-
679
- #: ../slides.php:270
680
- msgid "Ease Out"
681
- msgstr "Ease Out"
682
-
683
- #: ../slides.php:279
684
- msgid "The time that the slide will take to get out."
685
- msgstr "Temps que la diapositive prendra pour sortir."
686
-
687
- #: ../slides.php:303
688
- msgid ""
689
- "Open the link (e.g.: http://www.google.it) when the user clicks on the "
690
- "background. Leave it empty if you don't want it."
691
- msgstr ""
692
- "Ouvrez le lien (par exemple : http://www.google.it) lorsque l'utilisateur "
693
- "clique sur l'arrière-plan. Laissez vide si vous ne voulez pas."
694
-
695
- #: ../slides.php:315
696
- msgid "Apply CSS to the slide."
697
- msgstr "Appliquer CSS à la diapositive."
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
19
+ msgid "JavaScript must be enabled to view this page correctly."
20
+ msgstr "JavaScript doit être activé pour afficher cette page correctement."
21
+
22
+ #: ../admin.php:51
23
+ msgid "Operation completed successfully."
24
+ msgstr "Opération terminée avec succès ."
25
+
26
+ #: ../admin.php:52
27
+ msgid "Something went wrong."
28
+ msgstr "Quelque chose a mal fonctionné."
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
+ "Lorsque vous cliquez sur \"Enregistrer les paramètres\", vous serez en "
36
+ "mesure d'ajouter des diapositives et des éléments."
37
+
38
+ #: ../admin.php:119
39
+ msgid "Slider Settings"
40
+ msgstr "Paramètres Slider"
41
+
42
+ #: ../admin.php:123
43
+ msgid "Edit Slides"
44
+ msgstr "Modifier les diapositives"
45
+
46
+ #: ../admin.php:143
47
+ msgid "Save Settings"
48
+ msgstr "Enregistrer les paramètres"
49
+
50
+ #: ../admin.php:243 ../slides.php:15
51
+ msgid "Slide"
52
+ msgstr "Diapositive"
53
+
54
+ #: ../admin.php:244
55
+ msgid "The slide will be deleted. Are you sure?"
56
+ msgstr "La diapositive sera supprimée. Êtes-vous sûr?"
57
+
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?"
65
+ msgstr "Le slider sera supprimé. Êtes-vous sûr?"
66
+
67
+ #: ../admin.php:247 ../elements.php:249
68
+ msgid "Text element"
69
+ msgstr "Élément texte"
70
+
71
+ #: ../admin.php:248 ../elements.php:159
72
+ msgid "Live preview"
73
+ msgstr "Aperçu en direct"
74
+
75
+ #: ../admin.php:249
76
+ msgid "Stop preview"
77
+ msgstr "Arrêter aperçu"
78
+
79
+ #: ../admin.php:250 ../slides.php:16
80
+ msgid "Duplicate slide"
81
+ msgstr "Dupliquer la diapositive"
82
+
83
+ #: ../admin.php:251 ../slides.php:17
84
+ msgid "Delete slide"
85
+ msgstr "Supprimer la diapositive"
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
+ "Toutes les modifications non enregistrées seront perdues. Êtes-vous sûr de "
92
+ "vouloir quitter cette page?"
93
+
94
+ #: ../ajax.php:282
95
+ msgid "Copy"
96
+ msgstr "Copier"
97
+
98
+ #: ../ajax.php:283
99
+ msgid "copy"
100
+ msgstr "copier"
101
+
102
+ #: ../elements.php:154
103
+ msgid "Add text"
104
+ msgstr "Ajouter texte"
105
+
106
+ #: ../elements.php:155
107
+ msgid "Add image"
108
+ msgstr "Ajouter image"
109
+
110
+ #: ../elements.php:156
111
+ msgid "Add video"
112
+ msgstr "Ajouter vidéo"
113
+
114
+ #: ../elements.php:160
115
+ msgid "Delete element"
116
+ msgstr "Supprimer élément"
117
+
118
+ #: ../elements.php:161
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
+
147
+ #: ../elements.php:221 ../elements.php:472 ../elements.php:722
148
+ msgid "Fade down"
149
+ msgstr "Fondu vers le bas"
150
+
151
+ #: ../elements.php:222 ../elements.php:473 ../elements.php:723
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
+
163
+ #: ../elements.php:225 ../elements.php:476 ../elements.php:726
164
+ msgid "Fade small down"
165
+ msgstr "Fondu faible vers le bas"
166
+
167
+ #: ../elements.php:226 ../elements.php:477 ../elements.php:727
168
+ msgid "Fade small up"
169
+ msgstr "Fondu faible vers le haut"
170
+
171
+ #: ../elements.php:227 ../elements.php:478 ../elements.php:728
172
+ msgid "Fade small left"
173
+ msgstr "Fondu vers la gauche"
174
+
175
+ #: ../elements.php:228 ../elements.php:479 ../elements.php:729
176
+ msgid "Fade small right"
177
+ msgstr "Fondu vers la droite"
178
+
179
+ #: ../elements.php:235 ../elements.php:486 ../elements.php:736
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
+
198
+ #: ../elements.php:246
199
+ msgid "Text"
200
+ msgstr "Texte"
201
+
202
+ #: ../elements.php:254
203
+ msgid "Write the text or the HTML."
204
+ msgstr "Écrire le texte ou le HTML"
205
+
206
+ #: ../elements.php:258 ../elements.php:508 ../elements.php:809
207
+ msgid "Left"
208
+ msgstr "Gauche"
209
+
210
+ #: ../elements.php:267 ../elements.php:517 ../elements.php:818
211
+ msgid "Center horizontally"
212
+ msgstr "Centrer horizontallement"
213
+
214
+ #: ../elements.php:270 ../elements.php:520 ../elements.php:821
215
+ msgid "Left distance in px from the start width."
216
+ msgstr "Distance gauche en px de la largeur de départ."
217
+
218
+ #: ../elements.php:274 ../elements.php:524 ../elements.php:825
219
+ msgid "Top"
220
+ msgstr "Haut"
221
+
222
+ #: ../elements.php:283 ../elements.php:533 ../elements.php:834
223
+ msgid "Center vertically"
224
+ msgstr "Centrer verticallement"
225
+
226
+ #: ../elements.php:286 ../elements.php:536 ../elements.php:837
227
+ msgid "Top distance in px from the start height."
228
+ msgstr "Distance haute en px de la hauteur de départ."
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
+ "Un élément avec un z-index élevé couvrira un élément avec un z-index "
240
+ "inférieur si ils se chevauchent."
241
+
242
+ #: ../elements.php:302 ../elements.php:552 ../elements.php:853
243
+ msgid "Delay"
244
+ msgstr "Retardement"
245
+
246
+ #: ../elements.php:311 ../elements.php:561 ../elements.php:862
247
+ msgid "How long will the element wait before the entrance."
248
+ msgstr "Combien de temps l'élément doit attendre avant l'entrée."
249
+
250
+ #: ../elements.php:315 ../elements.php:565 ../elements.php:866
251
+ #: ../slides.php:244
252
+ msgid "Time"
253
+ msgstr "Temps"
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
+ "Combien de temps l'élément sera affiché lors de l'exécution de la "
259
+ "diapositive."
260
+
261
+ #: ../elements.php:327 ../elements.php:577 ../elements.php:878
262
+ msgid "Write \"all\" to set the entire time."
263
+ msgstr "Écrire \"all\" pour régler sur toute la durée."
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
+ "Écrire \"3000\" pour définir 3000 millisecondes moins le temps de retard "
272
+ "(ainsi, si le temps de retard est de 1000 millisecondes, l'élément sera "
273
+ "affiché pour 3000-1000 = 2000 millisecondes)."
274
+
275
+ #: ../elements.php:334 ../elements.php:584 ../elements.php:885
276
+ #: ../slides.php:206
277
+ msgid "In animation"
278
+ msgstr "Animation d'entrée"
279
+
280
+ #: ../elements.php:349 ../elements.php:599 ../elements.php:900
281
+ msgid "The in animation of the element."
282
+ msgstr "Animation d'entrée de l'élément"
283
+
284
+ #: ../elements.php:353 ../elements.php:603 ../elements.php:904
285
+ #: ../slides.php:225
286
+ msgid "Out animation"
287
+ msgstr "Animation de sortie"
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 ""
294
+ "Désactiver la synchronisation avec la diapositive d'animation de sortie"
295
+
296
+ #: ../elements.php:380 ../elements.php:630 ../elements.php:931
297
+ msgid ""
298
+ "The out animation of the element.<br /><br />Disable synchronization with "
299
+ "slide out animation: if not checked, the slide out animation won't start "
300
+ "until all the elements that have this option unchecked are animated out."
301
+ msgstr ""
302
+ "Désactiver l'animation de sortie de l'élément <br /> <br /> Désactiver la "
303
+ "synchronisation avec l'animation de sortie: Si non coché, la diapositive de "
304
+ "l'animation de sortie ne démarre pas jusqu'à ce que tous les éléments qui "
305
+ "ont cette option décochée sont animés en sortie."
306
+
307
+ #: ../elements.php:384 ../elements.php:634 ../elements.php:935
308
+ msgid "Ease in"
309
+ msgstr "Ease in"
310
+
311
+ #: ../elements.php:393 ../elements.php:643 ../elements.php:944
312
+ msgid "How long will the in animation take."
313
+ msgstr "Combien de temps l'animation d'entrée prendra."
314
+
315
+ #: ../elements.php:397 ../elements.php:647 ../elements.php:948
316
+ msgid "Ease out"
317
+ msgstr "Ease out"
318
+
319
+ #: ../elements.php:406 ../elements.php:656 ../elements.php:957
320
+ msgid "How long will the out animation take."
321
+ msgstr "Combien de temps l'animation de sortie prendra."
322
+
323
+ #: ../elements.php:410 ../elements.php:660 ../slides.php:283
324
+ msgid "Link"
325
+ msgstr "Lien"
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 "Ouvrir le lien dans un nouvel onglet"
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
+ "Ouvrez le lien (par exemple : http://www.google.it) lors d'un clic. Laissez "
339
+ "vide si vous ne voulez pas."
340
+
341
+ #: ../elements.php:434 ../elements.php:684 ../elements.php:961
342
+ #: ../slides.php:307
343
+ msgid "Custom CSS"
344
+ msgstr "CSS personnalisé"
345
+
346
+ #: ../elements.php:442 ../elements.php:692 ../elements.php:969
347
+ msgid "Style the element."
348
+ msgstr "Style de l'élément."
349
+
350
+ #: ../elements.php:446 ../elements.php:696 ../elements.php:973
351
+ msgid "Custom classes"
352
+ msgstr "classes personnalisées"
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
+ "Appliquer des classes CSS personnalisées à l'élément. Le style des classes "
360
+ "peut ne pas fonctionner lorsque vous travaillez sur backend."
361
+
362
+ #: ../elements.php:496
363
+ msgid "Modify image"
364
+ msgstr "Modifier l'image"
365
+
366
+ #: ../elements.php:499 ../elements.php:500
367
+ msgid "Open gallery"
368
+ msgstr "Ouvrir la galerie"
369
+
370
+ #: ../elements.php:504
371
+ msgid "Change the image source or the alt text."
372
+ msgstr "Changez la source de l'image ou le texte alt."
373
+
374
+ #: ../elements.php:747
375
+ msgid "Video source"
376
+ msgstr "source vidéo"
377
+
378
+ #: ../elements.php:767
379
+ msgid "Set source and ID."
380
+ msgstr "Définir la source et ID."
381
+
382
+ #: ../elements.php:771
383
+ msgid "Loop video"
384
+ msgstr "Boucle vidéo"
385
+
386
+ #: ../elements.php:786
387
+ msgid ""
388
+ "The video will automatically restart from the beginning when it reaches the "
389
+ "end."
390
+ msgstr ""
391
+ "La vidéo sera automatiquement redémarrée depuis le début quand elle atteint "
392
+ "la fin."
393
+
394
+ #: ../elements.php:790
395
+ msgid "Autoplay"
396
+ msgstr "Lecture automatique"
397
+
398
+ #: ../elements.php:805
399
+ msgid "The video will automatically be played after the in animation."
400
+ msgstr "La vidéo sera automatiquement jouée après l'animation."
401
+
402
+ #: ../frontend.php:25
403
+ msgid "You have to insert a valid alias in the shortcode"
404
+ msgstr "Vous devez insérer un alias valide dans le shortcode"
405
+
406
+ #: ../frontend.php:43 ../frontend.php:47
407
+ msgid "The slider hasn't been found"
408
+ msgstr "Le slider n'a pas été trouvé"
409
+
410
+ #: ../home.php:7
411
+ msgid "No Sliders found. Please add a new one."
412
+ msgstr "Aucun Slider trouvé. S'il vous plaît ajoutez un nouveau."
413
+
414
+ #: ../home.php:17
415
+ msgid "Sliders List"
416
+ msgstr "Liste des Sliders"
417
+
418
+ #: ../home.php:22
419
+ msgid "ID"
420
+ msgstr "ID"
421
+
422
+ #: ../home.php:23
423
+ msgid "Name"
424
+ msgstr "Nom"
425
+
426
+ #: ../home.php:24
427
+ msgid "Alias"
428
+ msgstr "Alias"
429
+
430
+ #: ../home.php:25
431
+ msgid "Shortcode"
432
+ msgstr "Shortcode"
433
+
434
+ #: ../home.php:26
435
+ msgid "Actions"
436
+ msgstr "Actions"
437
+
438
+ #: ../home.php:36
439
+ msgid "Edit Slider"
440
+ msgstr "Modifier Slider"
441
+
442
+ #: ../home.php:37
443
+ msgid "Duplicate Slider"
444
+ msgstr "Dupliquer Slider"
445
+
446
+ #: ../home.php:38
447
+ msgid "Export Slider"
448
+ msgstr "Exporter Slider"
449
+
450
+ #: ../home.php:39
451
+ msgid "Delete Slider"
452
+ msgstr "Supprimer Slider"
453
+
454
+ #: ../home.php:51
455
+ msgid "Add Slider"
456
+ msgstr "Ajouter Slider"
457
+
458
+ #: ../home.php:52
459
+ msgid "Import Slider"
460
+ msgstr "Importer Slider"
461
+
462
+ #: ../slider.php:6
463
+ msgid "Full Width"
464
+ msgstr "Pleine largeur"
465
+
466
+ #: ../slider.php:7
467
+ msgid "Fixed"
468
+ msgstr "Fixé"
469
+
470
+ #: ../slider.php:10
471
+ msgid "Yes"
472
+ msgstr "Oui"
473
+
474
+ #: ../slider.php:11
475
+ msgid "No"
476
+ msgstr "Non"
477
+
478
+ #: ../slider.php:17 ../slider.php:21
479
+ msgid "Slider Name"
480
+ msgstr "Nom du Slider"
481
+
482
+ #: ../slider.php:27
483
+ msgid "Alias:"
484
+ msgstr "Alias:"
485
+
486
+ #: ../slider.php:39
487
+ msgid "Shortcode:"
488
+ msgstr "Shortcode:"
489
+
490
+ #: ../slider.php:54
491
+ msgid "Slider General Options"
492
+ msgstr "Options générales du Slider"
493
+
494
+ #: ../slider.php:64
495
+ msgid "Layout"
496
+ msgstr "Disposition"
497
+
498
+ #: ../slider.php:79
499
+ msgid "Modify the layout type of the slider."
500
+ msgstr "Modifier le type de disposition du Slider"
501
+
502
+ #: ../slider.php:83
503
+ msgid "Responsive"
504
+ msgstr "Responsive"
505
+
506
+ #: ../slider.php:98
507
+ msgid "The slider will be adapted to the screen size."
508
+ msgstr "Le Slider sera adapté à la taille de l'écran."
509
+
510
+ #: ../slider.php:102
511
+ msgid "Start Width"
512
+ msgstr "Largeur de démarrage"
513
+
514
+ #: ../slider.php:111
515
+ msgid "The content initial width of the slider."
516
+ msgstr "Largeur du contenu initial du Slider"
517
+
518
+ #: ../slider.php:115
519
+ msgid "Start Height"
520
+ msgstr "Hauteur de démarrage"
521
+
522
+ #: ../slider.php:124
523
+ msgid "The content initial height of the slider."
524
+ msgstr "Hauteur du contenu initial du Slider"
525
+
526
+ #: ../slider.php:128
527
+ msgid "Automatic Slide"
528
+ msgstr "Diapositive automatique"
529
+
530
+ #: ../slider.php:143
531
+ msgid "The slides loop is automatic."
532
+ msgstr "La boucle des diapositives est automatique."
533
+
534
+ #: ../slider.php:147
535
+ msgid "Show Controls"
536
+ msgstr "Afficher les contrôles"
537
+
538
+ #: ../slider.php:162
539
+ msgid "Show the previous and next arrows."
540
+ msgstr "Voir les flèches précédent et suivant."
541
+
542
+ #: ../slider.php:166
543
+ msgid "Show Navigation"
544
+ msgstr "Afficher la navigation"
545
+
546
+ #: ../slider.php:181
547
+ msgid "Show the links buttons to change slide."
548
+ msgstr "Afficher les boutons de liens pour changer la diapositive."
549
+
550
+ #: ../slider.php:185
551
+ msgid "Enable swipe and drag"
552
+ msgstr "Activer glisser et faire défiler"
553
+
554
+ #: ../slider.php:200
555
+ msgid "Enable swipe left, swipe right, drag left, drag right commands."
556
+ msgstr ""
557
+ "Activer glisser gauche, à droite de défilement, glissement à gauche, faites "
558
+ "glisser les commandes à droite."
559
+
560
+ #: ../slider.php:204
561
+ msgid "Show Progress Bar"
562
+ msgstr "Afficher la barre de progression"
563
+
564
+ #: ../slider.php:219
565
+ msgid "Draw the progress bar during the slide execution."
566
+ msgstr ""
567
+ "Dessinez la barre de progression lors de l'exécution de la diapositive."
568
+
569
+ #: ../slider.php:223
570
+ msgid "Pause on Hover"
571
+ msgstr "Pause sur survol"
572
+
573
+ #: ../slider.php:238
574
+ msgid "Pause the current slide when hovered."
575
+ msgstr "Pause de la diapositive actuelle pendant le survol"
576
+
577
+ #: ../slider.php:242
578
+ msgid "Callbacks"
579
+ msgstr "fonctions de rappel"
580
+
581
+ #: ../slider.php:260
582
+ msgid "Some jQuery functions that you can fire during the slider execution."
583
+ msgstr ""
584
+ "Certaines fonctions jQuery que vous pouvez exécuter pendant l'exécution du "
585
+ "curseur."
586
+
587
+ #: ../slides.php:24
588
+ msgid "Add Slide"
589
+ msgstr "Ajouter diapositive"
590
+
591
+ #: ../slides.php:65
592
+ msgid "Slide Options"
593
+ msgstr "Options de la diapositive "
594
+
595
+ #: ../slides.php:76
596
+ msgid "Background"
597
+ msgstr "Arrière-plan"
598
+
599
+ #: ../slides.php:80 ../slides.php:124
600
+ msgid "Background image:"
601
+ msgstr "Image d'arrière-plan:"
602
+
603
+ #: ../slides.php:83 ../slides.php:128 ../slides.php:131
604
+ msgid "Select image"
605
+ msgstr "Sélectionner une image"
606
+
607
+ #: ../slides.php:89 ../slides.php:138
608
+ msgid "Background color:"
609
+ msgstr "Couleur d'arrière-plan:"
610
+
611
+ #: ../slides.php:93 ../slides.php:143 ../slides.php:145
612
+ msgid "Transparent"
613
+ msgstr "Transparent"
614
+
615
+ #: ../slides.php:97 ../slides.php:159
616
+ msgid "Enter value"
617
+ msgstr "Entrer la valeur"
618
+
619
+ #: ../slides.php:103 ../slides.php:166
620
+ msgid "Background position-x:"
621
+ msgstr "Position-x de l'arrière-plan:"
622
+
623
+ #: ../slides.php:106 ../slides.php:169
624
+ msgid "Background position-y:"
625
+ msgstr "Position-y de l'arrière-plan:"
626
+
627
+ #: ../slides.php:112 ../slides.php:175
628
+ msgid "Background repeat:"
629
+ msgstr "Répétition de l'arrière-plan:"
630
+
631
+ #: ../slides.php:114 ../slides.php:178 ../slides.php:181
632
+ msgid "Repeat"
633
+ msgstr "Répétition"
634
+
635
+ #: ../slides.php:115 ../slides.php:179 ../slides.php:182
636
+ msgid "No repeat"
637
+ msgstr "Pas de répétition"
638
+
639
+ #: ../slides.php:121 ../slides.php:189
640
+ msgid "Background size:"
641
+ msgstr "Taille de l'arrière-plan"
642
+
643
+ #: ../slides.php:194
644
+ msgid "The background of the slide and its proprieties."
645
+ msgstr "L'arrière-plan de la diapositive et ses propriétés."
646
+
647
+ #: ../slides.php:197
648
+ msgid "Presets:"
649
+ msgstr "Présélections:"
650
+
651
+ #: ../slides.php:200
652
+ msgid "Full width responsive background image"
653
+ msgstr "Pleine largeur Responsive de l'image d'arrière-plan"
654
+
655
+ #: ../slides.php:201
656
+ msgid "Pattern background image"
657
+ msgstr "Motif image d'arrière-plan"
658
+
659
+ #: ../slides.php:221
660
+ msgid "The in animation of the slide."
661
+ msgstr "Animation d'entrée de la diapositive"
662
+
663
+ #: ../slides.php:240
664
+ msgid "The out animation of the slide."
665
+ msgstr "Animation de sortie de la diapositive"
666
+
667
+ #: ../slides.php:253
668
+ msgid "The time that the slide will remain on the screen."
669
+ msgstr "Temps que la diapositive restera à l'écran."
670
+
671
+ #: ../slides.php:257
672
+ msgid "Ease In"
673
+ msgstr "Ease In"
674
+
675
+ #: ../slides.php:266
676
+ msgid "The time that the slide will take to get in."
677
+ msgstr "Temps que la diapositive prendra pour entrer."
678
+
679
+ #: ../slides.php:270
680
+ msgid "Ease Out"
681
+ msgstr "Ease Out"
682
+
683
+ #: ../slides.php:279
684
+ msgid "The time that the slide will take to get out."
685
+ msgstr "Temps que la diapositive prendra pour sortir."
686
+
687
+ #: ../slides.php:303
688
+ msgid ""
689
+ "Open the link (e.g.: http://www.google.it) when the user clicks on the "
690
+ "background. Leave it empty if you don't want it."
691
+ msgstr ""
692
+ "Ouvrez le lien (par exemple : http://www.google.it) lorsque l'utilisateur "
693
+ "clique sur l'arrière-plan. Laissez vide si vous ne voulez pas."
694
+
695
+ #: ../slides.php:315
696
+ msgid "Apply CSS to the slide."
697
+ msgstr "Appliquer CSS à la diapositive."
wordpress/languages/crelly-slider-sk_SK.po CHANGED
@@ -1,689 +1,689 @@
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"
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==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
16
- "X-Poedit-SearchPath-0: ..\n"
17
-
18
- #: ../admin.php:48
19
- msgid "JavaScript must be enabled to view this page correctly."
20
- msgstr "Pre správne zobrazenie stránky je nutné povoliť JavaScript."
21
-
22
- #: ../admin.php:51
23
- msgid "Operation completed successfully."
24
- msgstr "Operácia bola úspešne dokončená."
25
-
26
- #: ../admin.php:52
27
- msgid "Something went wrong."
28
- msgstr "Došlo k chybe."
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
- "Pridávať snímky a elementy budete môcť až po klinutí na tlačidlo \"Uložiť "
36
- "nastavenia\"."
37
-
38
- #: ../admin.php:119
39
- msgid "Slider Settings"
40
- msgstr "Nastavenia slideru"
41
-
42
- #: ../admin.php:123
43
- msgid "Edit Slides"
44
- msgstr "Upraviť snímky"
45
-
46
- #: ../admin.php:143
47
- msgid "Save Settings"
48
- msgstr "Uložiť nastavenia"
49
-
50
- #: ../admin.php:243 ../slides.php:15
51
- msgid "Slide"
52
- msgstr "Snímok"
53
-
54
- #: ../admin.php:244
55
- msgid "The slide will be deleted. Are you sure?"
56
- msgstr "Snímok bude odstránený. Chcete pokračovať?"
57
-
58
- #: ../admin.php:245
59
- msgid "You can't delete this. You must have at least one slide."
60
- msgstr ""
61
- "Tento snímok nie je možné odstrániť. Slider musí obsahovať aspoň jeden "
62
- "snímok."
63
-
64
- #: ../admin.php:246
65
- msgid "The slider will be deleted. Are you sure?"
66
- msgstr "Slider bude odstránený. Chcete pokračovať?"
67
-
68
- #: ../admin.php:247 ../elements.php:249
69
- msgid "Text element"
70
- msgstr "Textový element"
71
-
72
- #: ../admin.php:248 ../elements.php:159
73
- msgid "Live preview"
74
- msgstr "Živý náhľad"
75
-
76
- #: ../admin.php:249
77
- msgid "Stop preview"
78
- msgstr "Zastaviť náhľad"
79
-
80
- #: ../admin.php:250 ../slides.php:16
81
- msgid "Duplicate slide"
82
- msgstr "Duplikovať snímok"
83
-
84
- #: ../admin.php:251 ../slides.php:17
85
- msgid "Delete slide"
86
- msgstr "Odstrániť snímok"
87
-
88
- #: ../admin.php:252
89
- msgid ""
90
- "All unsaved changes will be lost. Are you sure you want to leave this page?"
91
- msgstr ""
92
- "Všetky neuložené zmeny budú odstránené. Ste si istý, že chcete túto stránku "
93
- "opustiť?"
94
-
95
- #: ../ajax.php:282
96
- msgid "Copy"
97
- msgstr "Kopírovať"
98
-
99
- #: ../ajax.php:283
100
- msgid "copy"
101
- msgstr "kopírovať"
102
-
103
- #: ../elements.php:154
104
- msgid "Add text"
105
- msgstr "Pridať text"
106
-
107
- #: ../elements.php:155
108
- msgid "Add image"
109
- msgstr "Pridať obrázok"
110
-
111
- #: ../elements.php:156
112
- msgid "Add video"
113
- msgstr "Pridať video"
114
-
115
- #: ../elements.php:160
116
- msgid "Delete element"
117
- msgstr "Odstrániť element"
118
-
119
- #: ../elements.php:161
120
- msgid "Duplicate element"
121
- msgstr "Duplikovať element"
122
-
123
- #: ../elements.php:215 ../elements.php:466 ../elements.php:716 ../slides.php:51
124
- #: ../slides.php:82 ../slides.php:127 ../slides.php:130
125
- msgid "None"
126
- msgstr "Žiaden"
127
-
128
- #: ../elements.php:216 ../elements.php:467 ../elements.php:717 ../slides.php:58
129
- msgid "Slide down"
130
- msgstr "Vkĺznuť nadol"
131
-
132
- #: ../elements.php:217 ../elements.php:468 ../elements.php:718 ../slides.php:57
133
- msgid "Slide up"
134
- msgstr "Vkĺznuť nahor"
135
-
136
- #: ../elements.php:218 ../elements.php:469 ../elements.php:719 ../slides.php:55
137
- msgid "Slide left"
138
- msgstr "Vkĺznuť vľavo"
139
-
140
- #: ../elements.php:219 ../elements.php:470 ../elements.php:720 ../slides.php:56
141
- msgid "Slide right"
142
- msgstr "Vkĺznuť vpravo"
143
-
144
- #: ../elements.php:220 ../elements.php:471 ../elements.php:721 ../slides.php:52
145
- msgid "Fade"
146
- msgstr "Pozvoľna zobraziť"
147
-
148
- #: ../elements.php:221 ../elements.php:472 ../elements.php:722
149
- msgid "Fade down"
150
- msgstr "Pozvoľna zobraziť nadol"
151
-
152
- #: ../elements.php:222 ../elements.php:473 ../elements.php:723
153
- msgid "Fade up"
154
- msgstr "Pozvoľna zobraziť nahor"
155
-
156
- #: ../elements.php:223 ../elements.php:474 ../elements.php:724 ../slides.php:53
157
- msgid "Fade left"
158
- msgstr "Pozvoľna zobraziť vľavo"
159
-
160
- #: ../elements.php:224 ../elements.php:475 ../elements.php:725 ../slides.php:54
161
- msgid "Fade right"
162
- msgstr "Pozvoľna zobraziť vpravo"
163
-
164
- #: ../elements.php:225 ../elements.php:476 ../elements.php:726
165
- msgid "Fade small down"
166
- msgstr "Pozvoľna zobraziť jemne nadol"
167
-
168
- #: ../elements.php:226 ../elements.php:477 ../elements.php:727
169
- msgid "Fade small up"
170
- msgstr "Pozvoľna zobraziť jemne nahor"
171
-
172
- #: ../elements.php:227 ../elements.php:478 ../elements.php:728
173
- msgid "Fade small left"
174
- msgstr "Pozvoľna zobraziť jemne vľavo"
175
-
176
- #: ../elements.php:228 ../elements.php:479 ../elements.php:729
177
- msgid "Fade small right"
178
- msgstr "Pozvoľna zobraziť jemne vpravo"
179
-
180
- #: ../elements.php:235 ../elements.php:486 ../elements.php:736
181
- msgid "Element Options"
182
- msgstr "Nastavenie elementu"
183
-
184
- #: ../elements.php:241 ../elements.php:491 ../elements.php:742 ../slider.php:59
185
- #: ../slides.php:71
186
- msgid "Option"
187
- msgstr "Nastavenie"
188
-
189
- #: ../elements.php:242 ../elements.php:492 ../elements.php:743 ../slider.php:60
190
- #: ../slides.php:72
191
- msgid "Parameter"
192
- msgstr "Parameter"
193
-
194
- #: ../elements.php:243 ../elements.php:493 ../elements.php:744 ../slider.php:61
195
- #: ../slides.php:73
196
- msgid "Description"
197
- msgstr "Popis"
198
-
199
- #: ../elements.php:246
200
- msgid "Text"
201
- msgstr "Text"
202
-
203
- #: ../elements.php:254
204
- msgid "Write the text or the HTML."
205
- msgstr "Zadajte text alebo HTML."
206
-
207
- #: ../elements.php:258 ../elements.php:508 ../elements.php:809
208
- msgid "Left"
209
- msgstr "Zľava"
210
-
211
- #: ../elements.php:267 ../elements.php:517 ../elements.php:818
212
- msgid "Center horizontally"
213
- msgstr "Centrovať horizontálne"
214
-
215
- #: ../elements.php:270 ../elements.php:520 ../elements.php:821
216
- msgid "Left distance in px from the start width."
217
- msgstr "Vzdialenosť od ľavého okraja slideru v px."
218
-
219
- #: ../elements.php:274 ../elements.php:524 ../elements.php:825
220
- msgid "Top"
221
- msgstr "Zhora"
222
-
223
- #: ../elements.php:283 ../elements.php:533 ../elements.php:834
224
- msgid "Center vertically"
225
- msgstr "Centrovať vertikálne"
226
-
227
- #: ../elements.php:286 ../elements.php:536 ../elements.php:837
228
- msgid "Top distance in px from the start height."
229
- msgstr "Vzdialenosť od horného okraja slideru v px."
230
-
231
- #: ../elements.php:290 ../elements.php:540 ../elements.php:841
232
- msgid "Z - index"
233
- msgstr "Z-index"
234
-
235
- #: ../elements.php:298 ../elements.php:548 ../elements.php:849
236
- msgid ""
237
- "An element with an high z-index will cover an element with a lower z-index "
238
- "if they overlap."
239
- msgstr ""
240
- "Element s vyššou hodnotou z-indexu prekryje element s nižšou hodnotou z-"
241
- "indexu."
242
-
243
- #: ../elements.php:302 ../elements.php:552 ../elements.php:853
244
- msgid "Delay"
245
- msgstr "Oneskorenie"
246
-
247
- #: ../elements.php:311 ../elements.php:561 ../elements.php:862
248
- msgid "How long will the element wait before the entrance."
249
- msgstr "Oneskorenie zobrazenia elementu v snímku."
250
-
251
- #: ../elements.php:315 ../elements.php:565 ../elements.php:866
252
- #: ../slides.php:244
253
- msgid "Time"
254
- msgstr "Čas"
255
-
256
- #: ../elements.php:324 ../elements.php:574 ../elements.php:875
257
- msgid "How long will the element be displayed during the slide execution."
258
- msgstr "Ako dlho bude element zobrazený na danom snímku."
259
-
260
- #: ../elements.php:327 ../elements.php:577 ../elements.php:878
261
- msgid "Write \"all\" to set the entire time."
262
- msgstr "Vpíšte \"all\" pre nastavenie dĺžky trvania snímku."
263
-
264
- #: ../elements.php:330 ../elements.php:580 ../elements.php:881
265
- msgid ""
266
- "Write \"3000\" to set 3000 milliseconds minus delay time (so, if the delay "
267
- "time is 1000 milliseconds, the element will be displayed for 3000-1000=2000 "
268
- "milliseconds)."
269
- msgstr ""
270
- "Vpíšte \"3000\" pre nastavenie 3000 milisekúnd mínus čas oneskorenia (napr., "
271
- "ak je čas oneskorenia 1000 milisekúnd, element bude zobrazený po dobu "
272
- "3000-1000=2000 milisekúnd)."
273
-
274
- #: ../elements.php:334 ../elements.php:584 ../elements.php:885
275
- #: ../slides.php:206
276
- msgid "In animation"
277
- msgstr "Animácia príchodu"
278
-
279
- #: ../elements.php:349 ../elements.php:599 ../elements.php:900
280
- msgid "The in animation of the element."
281
- msgstr "Animácia použitá pri zobrazení elementu (pri jeho príchode na scénu)."
282
-
283
- #: ../elements.php:353 ../elements.php:603 ../elements.php:904
284
- #: ../slides.php:225
285
- msgid "Out animation"
286
- msgstr "Animácia odchodu"
287
-
288
- #: ../elements.php:368 ../elements.php:371 ../elements.php:374
289
- #: ../elements.php:618 ../elements.php:621 ../elements.php:624
290
- #: ../elements.php:919 ../elements.php:922 ../elements.php:925
291
- msgid "Disable synchronization with slide out animation"
292
- msgstr "Vypnúť synchronizáciu s animáciou odchodu snímku"
293
-
294
- #: ../elements.php:380 ../elements.php:630 ../elements.php:931
295
- msgid ""
296
- "The out animation of the element.<br /><br />Disable synchronization with "
297
- "slide out animation: if not checked, the slide out animation won't start "
298
- "until all the elements that have this option unchecked are animated out."
299
- msgstr ""
300
- "Animácia použitá pri odchode elemenu zo scény.<br /><br />Vypnutie "
301
- "synchronizácie s animáciou odchodu snímku: ak nie je zaškrtnuté, animácia "
302
- "odchodu snímku sa nespustí, kým neodídu zo scény všetky elementy s týmto "
303
- "nastavením nezaškrtnutým."
304
-
305
- #: ../elements.php:384 ../elements.php:634 ../elements.php:935
306
- msgid "Ease in"
307
- msgstr "Trvanie príchodu"
308
-
309
- #: ../elements.php:393 ../elements.php:643 ../elements.php:944
310
- msgid "How long will the in animation take."
311
- msgstr "Ako dlho bude trvať animácia príchodu."
312
-
313
- #: ../elements.php:397 ../elements.php:647 ../elements.php:948
314
- msgid "Ease out"
315
- msgstr "Trvanie odchodu"
316
-
317
- #: ../elements.php:406 ../elements.php:656 ../elements.php:957
318
- msgid "How long will the out animation take."
319
- msgstr "Ako dlho bude trvať animácia odchodu."
320
-
321
- #: ../elements.php:410 ../elements.php:660 ../slides.php:283
322
- msgid "Link"
323
- msgstr "Odkaz"
324
-
325
- #: ../elements.php:418 ../elements.php:421 ../elements.php:424
326
- #: ../elements.php:668 ../elements.php:671 ../elements.php:674
327
- #: ../slides.php:291 ../slides.php:294 ../slides.php:297
328
- msgid "Open link in a new tab"
329
- msgstr "Otvoriť v novom okne / záložke"
330
-
331
- #: ../elements.php:430 ../elements.php:680
332
- msgid ""
333
- "Open the link (e.g.: http://www.google.it) on click. Leave it empty if you "
334
- "don't want it."
335
- msgstr ""
336
- "Otvoriť odkaz (napr.: http://www.google.sk) po kliknutí. Ponechajte prázdne, "
337
- "ak žiaden odkaz aplikovať nechcete."
338
-
339
- #: ../elements.php:434 ../elements.php:684 ../elements.php:961
340
- #: ../slides.php:307
341
- msgid "Custom CSS"
342
- msgstr "Vlastné CSS"
343
-
344
- #: ../elements.php:442 ../elements.php:692 ../elements.php:969
345
- msgid "Style the element."
346
- msgstr "CSS štýl elementu."
347
-
348
- #: ../elements.php:446 ../elements.php:696 ../elements.php:973
349
- msgid "Custom classes"
350
- msgstr "CSS triedy"
351
-
352
- #: ../elements.php:454 ../elements.php:704 ../elements.php:981
353
- msgid ""
354
- "Apply custom CSS classes to the element. The style of the classes may not "
355
- "work when working on backend."
356
- msgstr ""
357
- "Aplikuje vlastné CSS triedy na daný element. Štýl aplikovaný týmito CSS "
358
- "triedami nemusí byť aplikovaný v administračnom rozhraní."
359
-
360
- #: ../elements.php:496
361
- msgid "Modify image"
362
- msgstr "Zmeniť obrázok"
363
-
364
- #: ../elements.php:499 ../elements.php:500
365
- msgid "Open gallery"
366
- msgstr "Otvoriť galériu"
367
-
368
- #: ../elements.php:504
369
- msgid "Change the image source or the alt text."
370
- msgstr "Zmeniť zdroj obrázku alebo jeho alternatívny text."
371
-
372
- #: ../elements.php:747
373
- msgid "Video source"
374
- msgstr "Zdroj videa"
375
-
376
- #: ../elements.php:767
377
- msgid "Set source and ID."
378
- msgstr "Nastavte zdroj a ID."
379
-
380
- #: ../elements.php:771
381
- msgid "Loop video"
382
- msgstr "Prehrávanie v slučke?"
383
-
384
- #: ../elements.php:786
385
- msgid ""
386
- "The video will automatically restart from the beginning when it reaches the "
387
- "end."
388
- msgstr "Video sa automaticky reštartuje po jeho ukončení."
389
-
390
- #: ../elements.php:790
391
- msgid "Autoplay"
392
- msgstr "Automatické prehrávanie"
393
-
394
- #: ../elements.php:805
395
- msgid "The video will automatically be played after the in animation."
396
- msgstr "Video sa automaticky začne prehrávať po úvodnej animácii."
397
-
398
- #: ../frontend.php:25
399
- msgid "You have to insert a valid alias in the shortcode"
400
- msgstr "Do shortcodu musíte vložiť platný alias"
401
-
402
- #: ../frontend.php:43 ../frontend.php:47
403
- msgid "The slider hasn't been found"
404
- msgstr "Slider nebol nájdený"
405
-
406
- #: ../home.php:7
407
- msgid "No Sliders found. Please add a new one."
408
- msgstr "Nenašiel sa žiaden slider. Prosíme, vytvorte nový."
409
-
410
- #: ../home.php:17
411
- msgid "Sliders List"
412
- msgstr "Zoznam sliderov"
413
-
414
- #: ../home.php:22
415
- msgid "ID"
416
- msgstr "ID"
417
-
418
- #: ../home.php:23
419
- msgid "Name"
420
- msgstr "Názov"
421
-
422
- #: ../home.php:24
423
- msgid "Alias"
424
- msgstr "Alias"
425
-
426
- #: ../home.php:25
427
- msgid "Shortcode"
428
- msgstr "Shortcode"
429
-
430
- #: ../home.php:26
431
- msgid "Actions"
432
- msgstr "Akcie"
433
-
434
- #: ../home.php:36
435
- msgid "Edit Slider"
436
- msgstr "Upraviť slider"
437
-
438
- #: ../home.php:37
439
- msgid "Duplicate Slider"
440
- msgstr "Duplikovať slider"
441
-
442
- #: ../home.php:38
443
- msgid "Export Slider"
444
- msgstr "Exportovať slider"
445
-
446
- #: ../home.php:39
447
- msgid "Delete Slider"
448
- msgstr "Odstrániť slider"
449
-
450
- #: ../home.php:51
451
- msgid "Add Slider"
452
- msgstr "Pridať slider"
453
-
454
- #: ../home.php:52
455
- msgid "Import Slider"
456
- msgstr "Importovať slider"
457
-
458
- #: ../slider.php:6
459
- msgid "Full Width"
460
- msgstr "Celá šírka"
461
-
462
- #: ../slider.php:7
463
- msgid "Fixed"
464
- msgstr "Pevná šírka"
465
-
466
- #: ../slider.php:10
467
- msgid "Yes"
468
- msgstr "Áno"
469
-
470
- #: ../slider.php:11
471
- msgid "No"
472
- msgstr "Nie"
473
-
474
- #: ../slider.php:17 ../slider.php:21
475
- msgid "Slider Name"
476
- msgstr "Názov slideru"
477
-
478
- #: ../slider.php:27
479
- msgid "Alias:"
480
- msgstr "Alias:"
481
-
482
- #: ../slider.php:39
483
- msgid "Shortcode:"
484
- msgstr "Shortcode:"
485
-
486
- #: ../slider.php:54
487
- msgid "Slider General Options"
488
- msgstr "Základné nastavenia slideru"
489
-
490
- #: ../slider.php:64
491
- msgid "Layout"
492
- msgstr "Rozloženie"
493
-
494
- #: ../slider.php:79
495
- msgid "Modify the layout type of the slider."
496
- msgstr "Nastaví rozloženie slideru."
497
-
498
- #: ../slider.php:83
499
- msgid "Responsive"
500
- msgstr "Responzívne"
501
-
502
- #: ../slider.php:98
503
- msgid "The slider will be adapted to the screen size."
504
- msgstr "Slider sa adaptuje veľkosti obrazovky."
505
-
506
- #: ../slider.php:102
507
- msgid "Start Width"
508
- msgstr "Počiatočná šírka"
509
-
510
- #: ../slider.php:111
511
- msgid "The content initial width of the slider."
512
- msgstr "Počiatočná šírka obsahu slideru."
513
-
514
- #: ../slider.php:115
515
- msgid "Start Height"
516
- msgstr "Počiatočná výška"
517
-
518
- #: ../slider.php:124
519
- msgid "The content initial height of the slider."
520
- msgstr "Počiatočná výška obsahu slideru."
521
-
522
- #: ../slider.php:128
523
- msgid "Automatic Slide"
524
- msgstr "Automatický slider"
525
-
526
- #: ../slider.php:143
527
- msgid "The slides loop is automatic."
528
- msgstr "Snímky budú automaticky kolovať v slučke."
529
-
530
- #: ../slider.php:147
531
- msgid "Show Controls"
532
- msgstr "Zobraziť ovládanie"
533
-
534
- #: ../slider.php:162
535
- msgid "Show the previous and next arrows."
536
- msgstr "Zobrazí šípku pre nasledujúci / predchádzajúci snímok."
537
-
538
- #: ../slider.php:166
539
- msgid "Show Navigation"
540
- msgstr "Zobraziť navigáciu"
541
-
542
- #: ../slider.php:181
543
- msgid "Show the links buttons to change slide."
544
- msgstr "Zobrazí tlačidlá pre každý snímok zvlášť."
545
-
546
- #: ../slider.php:185
547
- msgid "Enable swipe and drag"
548
- msgstr "Povoliť dotykové ťahanie"
549
-
550
- #: ../slider.php:200
551
- msgid "Enable swipe left, swipe right, drag left, drag right commands."
552
- msgstr "Povolí dotykové ťahanie vľavo alebo vpravo."
553
-
554
- #: ../slider.php:204
555
- msgid "Show Progress Bar"
556
- msgstr "Zobraziť indikátor priebehu"
557
-
558
- #: ../slider.php:219
559
- msgid "Draw the progress bar during the slide execution."
560
- msgstr "Vykreslí indikátor časového tvrvania snímku."
561
-
562
- #: ../slider.php:223
563
- msgid "Pause on Hover"
564
- msgstr "Pauza pri prechode myšou"
565
-
566
- #: ../slider.php:238
567
- msgid "Pause the current slide when hovered."
568
- msgstr "Zastaví aktuálny snímok ak sa kurzor myši nachádza nad sliderom."
569
-
570
- #: ../slider.php:242
571
- msgid "Callbacks"
572
- msgstr "Spätné volania"
573
-
574
- #: ../slider.php:260
575
- msgid "Some jQuery functions that you can fire during the slider execution."
576
- msgstr ""
577
- "jQuery funkcie, ktoré môžete použiť počas zobrazenia a animácie slideru."
578
-
579
- #: ../slides.php:24
580
- msgid "Add Slide"
581
- msgstr "Pridať snímok"
582
-
583
- #: ../slides.php:65
584
- msgid "Slide Options"
585
- msgstr "Nastavenie snímku"
586
-
587
- #: ../slides.php:76
588
- msgid "Background"
589
- msgstr "Pozadie"
590
-
591
- #: ../slides.php:80 ../slides.php:124
592
- msgid "Background image:"
593
- msgstr "Obrázok pozadia:"
594
-
595
- #: ../slides.php:83 ../slides.php:128 ../slides.php:131
596
- msgid "Select image"
597
- msgstr "Zvoliť obrázok"
598
-
599
- #: ../slides.php:89 ../slides.php:138
600
- msgid "Background color:"
601
- msgstr "Farba pozadia:"
602
-
603
- #: ../slides.php:93 ../slides.php:143 ../slides.php:145
604
- msgid "Transparent"
605
- msgstr "Priehľadná"
606
-
607
- #: ../slides.php:97 ../slides.php:159
608
- msgid "Enter value"
609
- msgstr "Zadajte hodnotu"
610
-
611
- #: ../slides.php:103 ../slides.php:166
612
- msgid "Background position-x:"
613
- msgstr "Horizontálna pozícia pozadia:"
614
-
615
- #: ../slides.php:106 ../slides.php:169
616
- msgid "Background position-y:"
617
- msgstr "Vertikálna pozícia pozadia:"
618
-
619
- #: ../slides.php:112 ../slides.php:175
620
- msgid "Background repeat:"
621
- msgstr "Opakovanie pozadia:"
622
-
623
- #: ../slides.php:114 ../slides.php:178 ../slides.php:181
624
- msgid "Repeat"
625
- msgstr "Opakovať"
626
-
627
- #: ../slides.php:115 ../slides.php:179 ../slides.php:182
628
- msgid "No repeat"
629
- msgstr "Neopakovať"
630
-
631
- #: ../slides.php:121 ../slides.php:189
632
- msgid "Background size:"
633
- msgstr "Veľkosť pozadia:"
634
-
635
- #: ../slides.php:194
636
- msgid "The background of the slide and its proprieties."
637
- msgstr "Pozadie snímku a jeho nastavenie."
638
-
639
- #: ../slides.php:197
640
- msgid "Presets:"
641
- msgstr "Presety:"
642
-
643
- #: ../slides.php:200
644
- msgid "Full width responsive background image"
645
- msgstr "Responzívny obrázok na pozadí na celú šírku"
646
-
647
- #: ../slides.php:201
648
- msgid "Pattern background image"
649
- msgstr "Opakujúci sa obrázok pozadia"
650
-
651
- #: ../slides.php:221
652
- msgid "The in animation of the slide."
653
- msgstr "Animácia príchodu snímku"
654
-
655
- #: ../slides.php:240
656
- msgid "The out animation of the slide."
657
- msgstr "Animácia odchodu snímku"
658
-
659
- #: ../slides.php:253
660
- msgid "The time that the slide will remain on the screen."
661
- msgstr "Časová dĺžka zobrazenia snímku"
662
-
663
- #: ../slides.php:257
664
- msgid "Ease In"
665
- msgstr "Trvanie príchodu"
666
-
667
- #: ../slides.php:266
668
- msgid "The time that the slide will take to get in."
669
- msgstr "Časová dĺžka animácie príchodu snímku."
670
-
671
- #: ../slides.php:270
672
- msgid "Ease Out"
673
- msgstr "Trvanie odchodu"
674
-
675
- #: ../slides.php:279
676
- msgid "The time that the slide will take to get out."
677
- msgstr "Časová dĺžka animácie odchodu snímku."
678
-
679
- #: ../slides.php:303
680
- msgid ""
681
- "Open the link (e.g.: http://www.google.it) when the user clicks on the "
682
- "background. Leave it empty if you don't want it."
683
- msgstr ""
684
- "Otvoriť odkaz (napr.: http://www.google.sk) ak užívateľ klikne na pozadie. "
685
- "Ponechajte prázdne pole ak nechcete aplikovať žiaden odkaz."
686
-
687
- #: ../slides.php:315
688
- msgid "Apply CSS to the slide."
689
- msgstr "Použiť CSS na snímok."
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"
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==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
16
+ "X-Poedit-SearchPath-0: ..\n"
17
+
18
+ #: ../admin.php:48
19
+ msgid "JavaScript must be enabled to view this page correctly."
20
+ msgstr "Pre správne zobrazenie stránky je nutné povoliť JavaScript."
21
+
22
+ #: ../admin.php:51
23
+ msgid "Operation completed successfully."
24
+ msgstr "Operácia bola úspešne dokončená."
25
+
26
+ #: ../admin.php:52
27
+ msgid "Something went wrong."
28
+ msgstr "Došlo k chybe."
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
+ "Pridávať snímky a elementy budete môcť až po klinutí na tlačidlo \"Uložiť "
36
+ "nastavenia\"."
37
+
38
+ #: ../admin.php:119
39
+ msgid "Slider Settings"
40
+ msgstr "Nastavenia slideru"
41
+
42
+ #: ../admin.php:123
43
+ msgid "Edit Slides"
44
+ msgstr "Upraviť snímky"
45
+
46
+ #: ../admin.php:143
47
+ msgid "Save Settings"
48
+ msgstr "Uložiť nastavenia"
49
+
50
+ #: ../admin.php:243 ../slides.php:15
51
+ msgid "Slide"
52
+ msgstr "Snímok"
53
+
54
+ #: ../admin.php:244
55
+ msgid "The slide will be deleted. Are you sure?"
56
+ msgstr "Snímok bude odstránený. Chcete pokračovať?"
57
+
58
+ #: ../admin.php:245
59
+ msgid "You can't delete this. You must have at least one slide."
60
+ msgstr ""
61
+ "Tento snímok nie je možné odstrániť. Slider musí obsahovať aspoň jeden "
62
+ "snímok."
63
+
64
+ #: ../admin.php:246
65
+ msgid "The slider will be deleted. Are you sure?"
66
+ msgstr "Slider bude odstránený. Chcete pokračovať?"
67
+
68
+ #: ../admin.php:247 ../elements.php:249
69
+ msgid "Text element"
70
+ msgstr "Textový element"
71
+
72
+ #: ../admin.php:248 ../elements.php:159
73
+ msgid "Live preview"
74
+ msgstr "Živý náhľad"
75
+
76
+ #: ../admin.php:249
77
+ msgid "Stop preview"
78
+ msgstr "Zastaviť náhľad"
79
+
80
+ #: ../admin.php:250 ../slides.php:16
81
+ msgid "Duplicate slide"
82
+ msgstr "Duplikovať snímok"
83
+
84
+ #: ../admin.php:251 ../slides.php:17
85
+ msgid "Delete slide"
86
+ msgstr "Odstrániť snímok"
87
+
88
+ #: ../admin.php:252
89
+ msgid ""
90
+ "All unsaved changes will be lost. Are you sure you want to leave this page?"
91
+ msgstr ""
92
+ "Všetky neuložené zmeny budú odstránené. Ste si istý, že chcete túto stránku "
93
+ "opustiť?"
94
+
95
+ #: ../ajax.php:282
96
+ msgid "Copy"
97
+ msgstr "Kopírovať"
98
+
99
+ #: ../ajax.php:283
100
+ msgid "copy"
101
+ msgstr "kopírovať"
102
+
103
+ #: ../elements.php:154
104
+ msgid "Add text"
105
+ msgstr "Pridať text"
106
+
107
+ #: ../elements.php:155
108
+ msgid "Add image"
109
+ msgstr "Pridať obrázok"
110
+
111
+ #: ../elements.php:156
112
+ msgid "Add video"
113
+ msgstr "Pridať video"
114
+
115
+ #: ../elements.php:160
116
+ msgid "Delete element"
117
+ msgstr "Odstrániť element"
118
+
119
+ #: ../elements.php:161
120
+ msgid "Duplicate element"
121
+ msgstr "Duplikovať element"
122
+
123
+ #: ../elements.php:215 ../elements.php:466 ../elements.php:716 ../slides.php:51
124
+ #: ../slides.php:82 ../slides.php:127 ../slides.php:130
125
+ msgid "None"
126
+ msgstr "Žiaden"
127
+
128
+ #: ../elements.php:216 ../elements.php:467 ../elements.php:717 ../slides.php:58
129
+ msgid "Slide down"
130
+ msgstr "Vkĺznuť nadol"
131
+
132
+ #: ../elements.php:217 ../elements.php:468 ../elements.php:718 ../slides.php:57
133
+ msgid "Slide up"
134
+ msgstr "Vkĺznuť nahor"
135
+
136
+ #: ../elements.php:218 ../elements.php:469 ../elements.php:719 ../slides.php:55
137
+ msgid "Slide left"
138
+ msgstr "Vkĺznuť vľavo"
139
+
140
+ #: ../elements.php:219 ../elements.php:470 ../elements.php:720 ../slides.php:56
141
+ msgid "Slide right"
142
+ msgstr "Vkĺznuť vpravo"
143
+
144
+ #: ../elements.php:220 ../elements.php:471 ../elements.php:721 ../slides.php:52
145
+ msgid "Fade"
146
+ msgstr "Pozvoľna zobraziť"
147
+
148
+ #: ../elements.php:221 ../elements.php:472 ../elements.php:722
149
+ msgid "Fade down"
150
+ msgstr "Pozvoľna zobraziť nadol"
151
+
152
+ #: ../elements.php:222 ../elements.php:473 ../elements.php:723
153
+ msgid "Fade up"
154
+ msgstr "Pozvoľna zobraziť nahor"
155
+
156
+ #: ../elements.php:223 ../elements.php:474 ../elements.php:724 ../slides.php:53
157
+ msgid "Fade left"
158
+ msgstr "Pozvoľna zobraziť vľavo"
159
+
160
+ #: ../elements.php:224 ../elements.php:475 ../elements.php:725 ../slides.php:54
161
+ msgid "Fade right"
162
+ msgstr "Pozvoľna zobraziť vpravo"
163
+
164
+ #: ../elements.php:225 ../elements.php:476 ../elements.php:726
165
+ msgid "Fade small down"
166
+ msgstr "Pozvoľna zobraziť jemne nadol"
167
+
168
+ #: ../elements.php:226 ../elements.php:477 ../elements.php:727
169
+ msgid "Fade small up"
170
+ msgstr "Pozvoľna zobraziť jemne nahor"
171
+
172
+ #: ../elements.php:227 ../elements.php:478 ../elements.php:728
173
+ msgid "Fade small left"
174
+ msgstr "Pozvoľna zobraziť jemne vľavo"
175
+
176
+ #: ../elements.php:228 ../elements.php:479 ../elements.php:729
177
+ msgid "Fade small right"
178
+ msgstr "Pozvoľna zobraziť jemne vpravo"
179
+
180
+ #: ../elements.php:235 ../elements.php:486 ../elements.php:736
181
+ msgid "Element Options"
182
+ msgstr "Nastavenie elementu"
183
+
184
+ #: ../elements.php:241 ../elements.php:491 ../elements.php:742 ../slider.php:59
185
+ #: ../slides.php:71
186
+ msgid "Option"
187
+ msgstr "Nastavenie"
188
+
189
+ #: ../elements.php:242 ../elements.php:492 ../elements.php:743 ../slider.php:60
190
+ #: ../slides.php:72
191
+ msgid "Parameter"
192
+ msgstr "Parameter"
193
+
194
+ #: ../elements.php:243 ../elements.php:493 ../elements.php:744 ../slider.php:61
195
+ #: ../slides.php:73
196
+ msgid "Description"
197
+ msgstr "Popis"
198
+
199
+ #: ../elements.php:246
200
+ msgid "Text"
201
+ msgstr "Text"
202
+
203
+ #: ../elements.php:254
204
+ msgid "Write the text or the HTML."
205
+ msgstr "Zadajte text alebo HTML."
206
+
207
+ #: ../elements.php:258 ../elements.php:508 ../elements.php:809
208
+ msgid "Left"
209
+ msgstr "Zľava"
210
+
211
+ #: ../elements.php:267 ../elements.php:517 ../elements.php:818
212
+ msgid "Center horizontally"
213
+ msgstr "Centrovať horizontálne"
214
+
215
+ #: ../elements.php:270 ../elements.php:520 ../elements.php:821
216
+ msgid "Left distance in px from the start width."
217
+ msgstr "Vzdialenosť od ľavého okraja slideru v px."
218
+
219
+ #: ../elements.php:274 ../elements.php:524 ../elements.php:825
220
+ msgid "Top"
221
+ msgstr "Zhora"
222
+
223
+ #: ../elements.php:283 ../elements.php:533 ../elements.php:834
224
+ msgid "Center vertically"
225
+ msgstr "Centrovať vertikálne"
226
+
227
+ #: ../elements.php:286 ../elements.php:536 ../elements.php:837
228
+ msgid "Top distance in px from the start height."
229
+ msgstr "Vzdialenosť od horného okraja slideru v px."
230
+
231
+ #: ../elements.php:290 ../elements.php:540 ../elements.php:841
232
+ msgid "Z - index"
233
+ msgstr "Z-index"
234
+
235
+ #: ../elements.php:298 ../elements.php:548 ../elements.php:849
236
+ msgid ""
237
+ "An element with an high z-index will cover an element with a lower z-index "
238
+ "if they overlap."
239
+ msgstr ""
240
+ "Element s vyššou hodnotou z-indexu prekryje element s nižšou hodnotou z-"
241
+ "indexu."
242
+
243
+ #: ../elements.php:302 ../elements.php:552 ../elements.php:853
244
+ msgid "Delay"
245
+ msgstr "Oneskorenie"
246
+
247
+ #: ../elements.php:311 ../elements.php:561 ../elements.php:862
248
+ msgid "How long will the element wait before the entrance."
249
+ msgstr "Oneskorenie zobrazenia elementu v snímku."
250
+
251
+ #: ../elements.php:315 ../elements.php:565 ../elements.php:866
252
+ #: ../slides.php:244
253
+ msgid "Time"
254
+ msgstr "Čas"
255
+
256
+ #: ../elements.php:324 ../elements.php:574 ../elements.php:875
257
+ msgid "How long will the element be displayed during the slide execution."
258
+ msgstr "Ako dlho bude element zobrazený na danom snímku."
259
+
260
+ #: ../elements.php:327 ../elements.php:577 ../elements.php:878
261
+ msgid "Write \"all\" to set the entire time."
262
+ msgstr "Vpíšte \"all\" pre nastavenie dĺžky trvania snímku."
263
+
264
+ #: ../elements.php:330 ../elements.php:580 ../elements.php:881
265
+ msgid ""
266
+ "Write \"3000\" to set 3000 milliseconds minus delay time (so, if the delay "
267
+ "time is 1000 milliseconds, the element will be displayed for 3000-1000=2000 "
268
+ "milliseconds)."
269
+ msgstr ""
270
+ "Vpíšte \"3000\" pre nastavenie 3000 milisekúnd mínus čas oneskorenia (napr., "
271
+ "ak je čas oneskorenia 1000 milisekúnd, element bude zobrazený po dobu "
272
+ "3000-1000=2000 milisekúnd)."
273
+
274
+ #: ../elements.php:334 ../elements.php:584 ../elements.php:885
275
+ #: ../slides.php:206
276
+ msgid "In animation"
277
+ msgstr "Animácia príchodu"
278
+
279
+ #: ../elements.php:349 ../elements.php:599 ../elements.php:900
280
+ msgid "The in animation of the element."
281
+ msgstr "Animácia použitá pri zobrazení elementu (pri jeho príchode na scénu)."
282
+
283
+ #: ../elements.php:353 ../elements.php:603 ../elements.php:904
284
+ #: ../slides.php:225
285
+ msgid "Out animation"
286
+ msgstr "Animácia odchodu"
287
+
288
+ #: ../elements.php:368 ../elements.php:371 ../elements.php:374
289
+ #: ../elements.php:618 ../elements.php:621 ../elements.php:624
290
+ #: ../elements.php:919 ../elements.php:922 ../elements.php:925
291
+ msgid "Disable synchronization with slide out animation"
292
+ msgstr "Vypnúť synchronizáciu s animáciou odchodu snímku"
293
+
294
+ #: ../elements.php:380 ../elements.php:630 ../elements.php:931
295
+ msgid ""
296
+ "The out animation of the element.<br /><br />Disable synchronization with "
297
+ "slide out animation: if not checked, the slide out animation won't start "
298
+ "until all the elements that have this option unchecked are animated out."
299
+ msgstr ""
300
+ "Animácia použitá pri odchode elemenu zo scény.<br /><br />Vypnutie "
301
+ "synchronizácie s animáciou odchodu snímku: ak nie je zaškrtnuté, animácia "
302
+ "odchodu snímku sa nespustí, kým neodídu zo scény všetky elementy s týmto "
303
+ "nastavením nezaškrtnutým."
304
+
305
+ #: ../elements.php:384 ../elements.php:634 ../elements.php:935
306
+ msgid "Ease in"
307
+ msgstr "Trvanie príchodu"
308
+
309
+ #: ../elements.php:393 ../elements.php:643 ../elements.php:944
310
+ msgid "How long will the in animation take."
311
+ msgstr "Ako dlho bude trvať animácia príchodu."
312
+
313
+ #: ../elements.php:397 ../elements.php:647 ../elements.php:948
314
+ msgid "Ease out"
315
+ msgstr "Trvanie odchodu"
316
+
317
+ #: ../elements.php:406 ../elements.php:656 ../elements.php:957
318
+ msgid "How long will the out animation take."
319
+ msgstr "Ako dlho bude trvať animácia odchodu."
320
+
321
+ #: ../elements.php:410 ../elements.php:660 ../slides.php:283
322
+ msgid "Link"
323
+ msgstr "Odkaz"
324
+
325
+ #: ../elements.php:418 ../elements.php:421 ../elements.php:424
326
+ #: ../elements.php:668 ../elements.php:671 ../elements.php:674
327
+ #: ../slides.php:291 ../slides.php:294 ../slides.php:297
328
+ msgid "Open link in a new tab"
329
+ msgstr "Otvoriť v novom okne / záložke"
330
+
331
+ #: ../elements.php:430 ../elements.php:680
332
+ msgid ""
333
+ "Open the link (e.g.: http://www.google.it) on click. Leave it empty if you "
334
+ "don't want it."
335
+ msgstr ""
336
+ "Otvoriť odkaz (napr.: http://www.google.sk) po kliknutí. Ponechajte prázdne, "
337
+ "ak žiaden odkaz aplikovať nechcete."
338
+
339
+ #: ../elements.php:434 ../elements.php:684 ../elements.php:961
340
+ #: ../slides.php:307
341
+ msgid "Custom CSS"
342
+ msgstr "Vlastné CSS"
343
+
344
+ #: ../elements.php:442 ../elements.php:692 ../elements.php:969
345
+ msgid "Style the element."
346
+ msgstr "CSS štýl elementu."
347
+
348
+ #: ../elements.php:446 ../elements.php:696 ../elements.php:973
349
+ msgid "Custom classes"
350
+ msgstr "CSS triedy"
351
+
352
+ #: ../elements.php:454 ../elements.php:704 ../elements.php:981
353
+ msgid ""
354
+ "Apply custom CSS classes to the element. The style of the classes may not "
355
+ "work when working on backend."
356
+ msgstr ""
357
+ "Aplikuje vlastné CSS triedy na daný element. Štýl aplikovaný týmito CSS "
358
+ "triedami nemusí byť aplikovaný v administračnom rozhraní."
359
+
360
+ #: ../elements.php:496
361
+ msgid "Modify image"
362
+ msgstr "Zmeniť obrázok"
363
+
364
+ #: ../elements.php:499 ../elements.php:500
365
+ msgid "Open gallery"
366
+ msgstr "Otvoriť galériu"
367
+
368
+ #: ../elements.php:504
369
+ msgid "Change the image source or the alt text."
370
+ msgstr "Zmeniť zdroj obrázku alebo jeho alternatívny text."
371
+
372
+ #: ../elements.php:747
373
+ msgid "Video source"
374
+ msgstr "Zdroj videa"
375
+
376
+ #: ../elements.php:767
377
+ msgid "Set source and ID."
378
+ msgstr "Nastavte zdroj a ID."
379
+
380
+ #: ../elements.php:771
381
+ msgid "Loop video"
382
+ msgstr "Prehrávanie v slučke?"
383
+
384
+ #: ../elements.php:786
385
+ msgid ""
386
+ "The video will automatically restart from the beginning when it reaches the "
387
+ "end."
388
+ msgstr "Video sa automaticky reštartuje po jeho ukončení."
389
+
390
+ #: ../elements.php:790
391
+ msgid "Autoplay"
392
+ msgstr "Automatické prehrávanie"
393
+
394
+ #: ../elements.php:805
395
+ msgid "The video will automatically be played after the in animation."
396
+ msgstr "Video sa automaticky začne prehrávať po úvodnej animácii."
397
+
398
+ #: ../frontend.php:25
399
+ msgid "You have to insert a valid alias in the shortcode"
400
+ msgstr "Do shortcodu musíte vložiť platný alias"
401
+
402
+ #: ../frontend.php:43 ../frontend.php:47
403
+ msgid "The slider hasn't been found"
404
+ msgstr "Slider nebol nájdený"
405
+
406
+ #: ../home.php:7
407
+ msgid "No Sliders found. Please add a new one."
408
+ msgstr "Nenašiel sa žiaden slider. Prosíme, vytvorte nový."
409
+
410
+ #: ../home.php:17
411
+ msgid "Sliders List"
412
+ msgstr "Zoznam sliderov"
413
+
414
+ #: ../home.php:22
415
+ msgid "ID"
416
+ msgstr "ID"
417
+
418
+ #: ../home.php:23
419
+ msgid "Name"
420
+ msgstr "Názov"
421
+
422
+ #: ../home.php:24
423
+ msgid "Alias"
424
+ msgstr "Alias"
425
+
426
+ #: ../home.php:25
427
+ msgid "Shortcode"
428
+ msgstr "Shortcode"
429
+
430
+ #: ../home.php:26
431
+ msgid "Actions"
432
+ msgstr "Akcie"
433
+
434
+ #: ../home.php:36
435
+ msgid "Edit Slider"
436
+ msgstr "Upraviť slider"
437
+
438
+ #: ../home.php:37
439
+ msgid "Duplicate Slider"
440
+ msgstr "Duplikovať slider"
441
+
442
+ #: ../home.php:38
443
+ msgid "Export Slider"
444
+ msgstr "Exportovať slider"
445
+
446
+ #: ../home.php:39
447
+ msgid "Delete Slider"
448
+ msgstr "Odstrániť slider"
449
+
450
+ #: ../home.php:51
451
+ msgid "Add Slider"
452
+ msgstr "Pridať slider"
453
+
454
+ #: ../home.php:52
455
+ msgid "Import Slider"
456
+ msgstr "Importovať slider"
457
+
458
+ #: ../slider.php:6
459
+ msgid "Full Width"
460
+ msgstr "Celá šírka"
461
+
462
+ #: ../slider.php:7
463
+ msgid "Fixed"
464
+ msgstr "Pevná šírka"
465
+
466
+ #: ../slider.php:10
467
+ msgid "Yes"
468
+ msgstr "Áno"
469
+
470
+ #: ../slider.php:11
471
+ msgid "No"
472
+ msgstr "Nie"
473
+
474
+ #: ../slider.php:17 ../slider.php:21
475
+ msgid "Slider Name"
476
+ msgstr "Názov slideru"
477
+
478
+ #: ../slider.php:27
479
+ msgid "Alias:"
480
+ msgstr "Alias:"
481
+
482
+ #: ../slider.php:39
483
+ msgid "Shortcode:"
484
+ msgstr "Shortcode:"
485
+
486
+ #: ../slider.php:54
487
+ msgid "Slider General Options"
488
+ msgstr "Základné nastavenia slideru"
489
+
490
+ #: ../slider.php:64
491
+ msgid "Layout"
492
+ msgstr "Rozloženie"
493
+
494
+ #: ../slider.php:79
495
+ msgid "Modify the layout type of the slider."
496
+ msgstr "Nastaví rozloženie slideru."
497
+
498
+ #: ../slider.php:83
499
+ msgid "Responsive"
500
+ msgstr "Responzívne"
501
+
502
+ #: ../slider.php:98
503
+ msgid "The slider will be adapted to the screen size."
504
+ msgstr "Slider sa adaptuje veľkosti obrazovky."
505
+
506
+ #: ../slider.php:102
507
+ msgid "Start Width"
508
+ msgstr "Počiatočná šírka"
509
+
510
+ #: ../slider.php:111
511
+ msgid "The content initial width of the slider."
512
+ msgstr "Počiatočná šírka obsahu slideru."
513
+
514
+ #: ../slider.php:115
515
+ msgid "Start Height"
516
+ msgstr "Počiatočná výška"
517
+
518
+ #: ../slider.php:124
519
+ msgid "The content initial height of the slider."
520
+ msgstr "Počiatočná výška obsahu slideru."
521
+
522
+ #: ../slider.php:128
523
+ msgid "Automatic Slide"
524
+ msgstr "Automatický slider"
525
+
526
+ #: ../slider.php:143
527
+ msgid "The slides loop is automatic."
528
+ msgstr "Snímky budú automaticky kolovať v slučke."
529
+
530
+ #: ../slider.php:147
531
+ msgid "Show Controls"
532
+ msgstr "Zobraziť ovládanie"
533
+
534
+ #: ../slider.php:162
535
+ msgid "Show the previous and next arrows."
536
+ msgstr "Zobrazí šípku pre nasledujúci / predchádzajúci snímok."
537
+
538
+ #: ../slider.php:166
539
+ msgid "Show Navigation"
540
+ msgstr "Zobraziť navigáciu"
541
+
542
+ #: ../slider.php:181
543
+ msgid "Show the links buttons to change slide."
544
+ msgstr "Zobrazí tlačidlá pre každý snímok zvlášť."
545
+
546
+ #: ../slider.php:185
547
+ msgid "Enable swipe and drag"
548
+ msgstr "Povoliť dotykové ťahanie"
549
+
550
+ #: ../slider.php:200
551
+ msgid "Enable swipe left, swipe right, drag left, drag right commands."
552
+ msgstr "Povolí dotykové ťahanie vľavo alebo vpravo."
553
+
554
+ #: ../slider.php:204
555
+ msgid "Show Progress Bar"
556
+ msgstr "Zobraziť indikátor priebehu"
557
+
558
+ #: ../slider.php:219
559
+ msgid "Draw the progress bar during the slide execution."
560
+ msgstr "Vykreslí indikátor časového tvrvania snímku."
561
+
562
+ #: ../slider.php:223
563
+ msgid "Pause on Hover"
564
+ msgstr "Pauza pri prechode myšou"
565
+
566
+ #: ../slider.php:238
567
+ msgid "Pause the current slide when hovered."
568
+ msgstr "Zastaví aktuálny snímok ak sa kurzor myši nachádza nad sliderom."
569
+
570
+ #: ../slider.php:242
571
+ msgid "Callbacks"
572
+ msgstr "Spätné volania"
573
+
574
+ #: ../slider.php:260
575
+ msgid "Some jQuery functions that you can fire during the slider execution."
576
+ msgstr ""
577
+ "jQuery funkcie, ktoré môžete použiť počas zobrazenia a animácie slideru."
578
+
579
+ #: ../slides.php:24
580
+ msgid "Add Slide"
581
+ msgstr "Pridať snímok"
582
+
583
+ #: ../slides.php:65
584
+ msgid "Slide Options"
585
+ msgstr "Nastavenie snímku"
586
+
587
+ #: ../slides.php:76
588
+ msgid "Background"
589
+ msgstr "Pozadie"
590
+
591
+ #: ../slides.php:80 ../slides.php:124
592
+ msgid "Background image:"
593
+ msgstr "Obrázok pozadia:"
594
+
595
+ #: ../slides.php:83 ../slides.php:128 ../slides.php:131
596
+ msgid "Select image"
597
+ msgstr "Zvoliť obrázok"
598
+
599
+ #: ../slides.php:89 ../slides.php:138
600
+ msgid "Background color:"
601
+ msgstr "Farba pozadia:"
602
+
603
+ #: ../slides.php:93 ../slides.php:143 ../slides.php:145
604
+ msgid "Transparent"
605
+ msgstr "Priehľadná"
606
+
607
+ #: ../slides.php:97 ../slides.php:159
608
+ msgid "Enter value"
609
+ msgstr "Zadajte hodnotu"
610
+
611
+ #: ../slides.php:103 ../slides.php:166
612
+ msgid "Background position-x:"
613
+ msgstr "Horizontálna pozícia pozadia:"
614
+
615
+ #: ../slides.php:106 ../slides.php:169
616
+ msgid "Background position-y:"
617
+ msgstr "Vertikálna pozícia pozadia:"
618
+
619
+ #: ../slides.php:112 ../slides.php:175
620
+ msgid "Background repeat:"
621
+ msgstr "Opakovanie pozadia:"
622
+
623
+ #: ../slides.php:114 ../slides.php:178 ../slides.php:181
624
+ msgid "Repeat"
625
+ msgstr "Opakovať"
626
+
627
+ #: ../slides.php:115 ../slides.php:179 ../slides.php:182
628
+ msgid "No repeat"
629
+ msgstr "Neopakovať"
630
+
631
+ #: ../slides.php:121 ../slides.php:189
632
+ msgid "Background size:"
633
+ msgstr "Veľkosť pozadia:"
634
+
635
+ #: ../slides.php:194
636
+ msgid "The background of the slide and its proprieties."
637
+ msgstr "Pozadie snímku a jeho nastavenie."
638
+
639
+ #: ../slides.php:197
640
+ msgid "Presets:"
641
+ msgstr "Presety:"
642
+
643
+ #: ../slides.php:200
644
+ msgid "Full width responsive background image"
645
+ msgstr "Responzívny obrázok na pozadí na celú šírku"
646
+
647
+ #: ../slides.php:201
648
+ msgid "Pattern background image"
649
+ msgstr "Opakujúci sa obrázok pozadia"
650
+
651
+ #: ../slides.php:221
652
+ msgid "The in animation of the slide."
653
+ msgstr "Animácia príchodu snímku"
654
+
655
+ #: ../slides.php:240
656
+ msgid "The out animation of the slide."
657
+ msgstr "Animácia odchodu snímku"
658
+
659
+ #: ../slides.php:253
660
+ msgid "The time that the slide will remain on the screen."
661
+ msgstr "Časová dĺžka zobrazenia snímku"
662
+
663
+ #: ../slides.php:257
664
+ msgid "Ease In"
665
+ msgstr "Trvanie príchodu"
666
+
667
+ #: ../slides.php:266
668
+ msgid "The time that the slide will take to get in."
669
+ msgstr "Časová dĺžka animácie príchodu snímku."
670
+
671
+ #: ../slides.php:270
672
+ msgid "Ease Out"
673
+ msgstr "Trvanie odchodu"
674
+
675
+ #: ../slides.php:279
676
+ msgid "The time that the slide will take to get out."
677
+ msgstr "Časová dĺžka animácie odchodu snímku."
678
+
679
+ #: ../slides.php:303
680
+ msgid ""
681
+ "Open the link (e.g.: http://www.google.it) when the user clicks on the "
682
+ "background. Leave it empty if you don't want it."
683
+ msgstr ""
684
+ "Otvoriť odkaz (napr.: http://www.google.sk) ak užívateľ klikne na pozadie. "
685
+ "Ponechajte prázdne pole ak nechcete aplikovať žiaden odkaz."
686
+
687
+ #: ../slides.php:315
688
+ msgid "Apply CSS to the slide."
689
+ msgstr "Použiť CSS na snímok."
wordpress/languages/crelly-slider-sr_RS.po CHANGED
@@ -1,684 +1,684 @@
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"
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 mora biti uključen kako bi se ova stranica ispravno prikazala."
21
-
22
- #: ../admin.php:51
23
- msgid "Operation completed successfully."
24
- msgstr "Operacija je uspešno obavljena."
25
-
26
- #: ../admin.php:52
27
- msgid "Something went wrong."
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"
40
- msgstr "Podešavanje klizača"
41
-
42
- #: ../admin.php:123
43
- msgid "Edit Slides"
44
- msgstr "Uredi slajdove"
45
-
46
- #: ../admin.php:143
47
- msgid "Save Settings"
48
- msgstr "Sačuvaj podešavanja"
49
-
50
- #: ../admin.php:243 ../slides.php:15
51
- msgid "Slide"
52
- msgstr "Slajd"
53
-
54
- #: ../admin.php:244
55
- msgid "The slide will be deleted. Are you sure?"
56
- msgstr "Da li si siguran da želiš da obrišeš slajd?"
57
-
58
- #: ../admin.php:245
59
- msgid "You can't delete this. You must have at least one slide."
60
- msgstr "Ovo nije moguće obrisati. Mora postojati makar jedan slajd."
61
-
62
- #: ../admin.php:246
63
- msgid "The slider will be deleted. Are you sure?"
64
- msgstr "Da li si siguran da želiš da obrišeš klizač?"
65
-
66
- #: ../admin.php:247 ../elements.php:249
67
- msgid "Text element"
68
- msgstr "Tekstualni element"
69
-
70
- #: ../admin.php:248 ../elements.php:159
71
- msgid "Live preview"
72
- msgstr "Pregled uživo"
73
-
74
- #: ../admin.php:249
75
- msgid "Stop preview"
76
- msgstr "Zaustavi pregled"
77
-
78
- #: ../admin.php:250 ../slides.php:16
79
- msgid "Duplicate slide"
80
- msgstr "Napravi duplikat slajda"
81
-
82
- #: ../admin.php:251 ../slides.php:17
83
- msgid "Delete slide"
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"
95
- msgstr "Kopiraj"
96
-
97
- #: ../ajax.php:283
98
- msgid "copy"
99
- msgstr "kopiraj"
100
-
101
- #: ../elements.php:154
102
- msgid "Add text"
103
- msgstr "Dodaj tekst"
104
-
105
- #: ../elements.php:155
106
- msgid "Add image"
107
- msgstr "Dodaj sliku"
108
-
109
- #: ../elements.php:156
110
- msgid "Add video"
111
- msgstr "Dodaj video"
112
-
113
- #: ../elements.php:160
114
- msgid "Delete element"
115
- msgstr "Obriši element"
116
-
117
- #: ../elements.php:161
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
-
126
- #: ../elements.php:216 ../elements.php:467 ../elements.php:717 ../slides.php:58
127
- msgid "Slide down"
128
- msgstr "Klizanje dole"
129
-
130
- #: ../elements.php:217 ../elements.php:468 ../elements.php:718 ../slides.php:57
131
- msgid "Slide up"
132
- msgstr "Klizanje gore"
133
-
134
- #: ../elements.php:218 ../elements.php:469 ../elements.php:719 ../slides.php:55
135
- msgid "Slide left"
136
- msgstr "Klizanje levo"
137
-
138
- #: ../elements.php:219 ../elements.php:470 ../elements.php:720 ../slides.php:56
139
- msgid "Slide right"
140
- msgstr "Klizanje desno"
141
-
142
- #: ../elements.php:220 ../elements.php:471 ../elements.php:721 ../slides.php:52
143
- msgid "Fade"
144
- msgstr "Nestajanje"
145
-
146
- #: ../elements.php:221 ../elements.php:472 ../elements.php:722
147
- msgid "Fade down"
148
- msgstr "Nestajanje dole"
149
-
150
- #: ../elements.php:222 ../elements.php:473 ../elements.php:723
151
- msgid "Fade up"
152
- msgstr "Nestajanje gore"
153
-
154
- #: ../elements.php:223 ../elements.php:474 ../elements.php:724 ../slides.php:53
155
- msgid "Fade left"
156
- msgstr "Nestajanje levo"
157
-
158
- #: ../elements.php:224 ../elements.php:475 ../elements.php:725 ../slides.php:54
159
- msgid "Fade right"
160
- msgstr "Nestajanje desno"
161
-
162
- #: ../elements.php:225 ../elements.php:476 ../elements.php:726
163
- msgid "Fade small down"
164
- msgstr "Nestajanje kratko dole"
165
-
166
- #: ../elements.php:226 ../elements.php:477 ../elements.php:727
167
- msgid "Fade small up"
168
- msgstr "Nestajanje kratko gore"
169
-
170
- #: ../elements.php:227 ../elements.php:478 ../elements.php:728
171
- msgid "Fade small left"
172
- msgstr "Nestajanje kratko levo"
173
-
174
- #: ../elements.php:228 ../elements.php:479 ../elements.php:729
175
- msgid "Fade small right"
176
- msgstr "Nestajanje kratko desno"
177
-
178
- #: ../elements.php:235 ../elements.php:486 ../elements.php:736
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
-
197
- #: ../elements.php:246
198
- msgid "Text"
199
- msgstr "Tekst"
200
-
201
- #: ../elements.php:254
202
- msgid "Write the text or the HTML."
203
- msgstr "Upiši tekst ili HTML."
204
-
205
- #: ../elements.php:258 ../elements.php:508 ../elements.php:809
206
- msgid "Left"
207
- msgstr "Levo"
208
-
209
- #: ../elements.php:267 ../elements.php:517 ../elements.php:818
210
- msgid "Center horizontally"
211
- msgstr "Centriraj vodoravno"
212
-
213
- #: ../elements.php:270 ../elements.php:520 ../elements.php:821
214
- msgid "Left distance in px from the start width."
215
- msgstr "Rastojanje od leve ivice u pikselima."
216
-
217
- #: ../elements.php:274 ../elements.php:524 ../elements.php:825
218
- msgid "Top"
219
- msgstr "Gore"
220
-
221
- #: ../elements.php:283 ../elements.php:533 ../elements.php:834
222
- msgid "Center vertically"
223
- msgstr "Centriraj uspravno"
224
-
225
- #: ../elements.php:286 ../elements.php:536 ../elements.php:837
226
- msgid "Top distance in px from the start height."
227
- msgstr "Rastojanje od gornje ivice u pikselima."
228
-
229
- #: ../elements.php:290 ../elements.php:540 ../elements.php:841
230
- msgid "Z - index"
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
240
- msgid "Delay"
241
- msgstr "Kašnjenje"
242
-
243
- #: ../elements.php:311 ../elements.php:561 ../elements.php:862
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
-
252
- #: ../elements.php:324 ../elements.php:574 ../elements.php:875
253
- msgid "How long will the element be displayed during the slide execution."
254
- msgstr "Koliko dugo će se element zadržati u polju tokom izvršavanja klizača."
255
-
256
- #: ../elements.php:327 ../elements.php:577 ../elements.php:878
257
- msgid "Write \"all\" to set the entire time."
258
- msgstr "Upiši \"all\" kako bi se zadržao do kraja."
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
-
275
- #: ../elements.php:349 ../elements.php:599 ../elements.php:900
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"
303
- msgstr "Lagani ulaz"
304
-
305
- #: ../elements.php:393 ../elements.php:643 ../elements.php:944
306
- msgid "How long will the in animation take."
307
- msgstr "Trajanje ulazne animacije."
308
-
309
- #: ../elements.php:397 ../elements.php:647 ../elements.php:948
310
- msgid "Ease out"
311
- msgstr "Lagani izlaz"
312
-
313
- #: ../elements.php:406 ../elements.php:656 ../elements.php:957
314
- msgid "How long will the out animation take."
315
- msgstr "Trajanje izlazne animacije."
316
-
317
- #: ../elements.php:410 ../elements.php:660 ../slides.php:283
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
-
340
- #: ../elements.php:442 ../elements.php:692 ../elements.php:969
341
- msgid "Style the element."
342
- msgstr "Stilizuj element."
343
-
344
- #: ../elements.php:446 ../elements.php:696 ../elements.php:973
345
- msgid "Custom classes"
346
- msgstr "Prilagođene klase"
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"
358
- msgstr "Izmeni sliku"
359
-
360
- #: ../elements.php:499 ../elements.php:500
361
- msgid "Open gallery"
362
- msgstr "Otvori galeriju"
363
-
364
- #: ../elements.php:504
365
- msgid "Change the image source or the alt text."
366
- msgstr "Promeni izvor slike ili alt tekst."
367
-
368
- #: ../elements.php:747
369
- msgid "Video source"
370
- msgstr "izvor videa"
371
-
372
- #: ../elements.php:767
373
- msgid "Set source and ID."
374
- msgstr "Podesi izvor i identifikacioni broj."
375
-
376
- #: ../elements.php:771
377
- msgid "Loop video"
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
387
- msgid "Autoplay"
388
- msgstr "Automatska reprodukcija"
389
-
390
- #: ../elements.php:805
391
- msgid "The video will automatically be played after the in animation."
392
- msgstr "Video reprodukcija će automatski početi posle ulazne animacije."
393
-
394
- #: ../frontend.php:25
395
- msgid "You have to insert a valid alias in the shortcode"
396
- msgstr "Morate uneti važeći pseudonim u kratki kod"
397
-
398
- #: ../frontend.php:43 ../frontend.php:47
399
- msgid "The slider hasn't been found"
400
- msgstr "Klizač nije pronađen"
401
-
402
- #: ../home.php:7
403
- msgid "No Sliders found. Please add a new one."
404
- msgstr "Nijedan klizač nije pronađen. Molimo dodajte novi."
405
-
406
- #: ../home.php:17
407
- msgid "Sliders List"
408
- msgstr "Lista klizača"
409
-
410
- #: ../home.php:22
411
- msgid "ID"
412
- msgstr "Identifikacioni broj"
413
-
414
- #: ../home.php:23
415
- msgid "Name"
416
- msgstr "Ime"
417
-
418
- #: ../home.php:24
419
- msgid "Alias"
420
- msgstr "Pseudonim"
421
-
422
- #: ../home.php:25
423
- msgid "Shortcode"
424
- msgstr "Kratki kod"
425
-
426
- #: ../home.php:26
427
- msgid "Actions"
428
- msgstr "Akcije"
429
-
430
- #: ../home.php:36
431
- msgid "Edit Slider"
432
- msgstr "Uredi klizač"
433
-
434
- #: ../home.php:37
435
- msgid "Duplicate Slider"
436
- msgstr "Dupliraj klizač"
437
-
438
- #: ../home.php:38
439
- msgid "Export Slider"
440
- msgstr "Izvezi klizač"
441
-
442
- #: ../home.php:39
443
- msgid "Delete Slider"
444
- msgstr "Obriši klizač"
445
-
446
- #: ../home.php:51
447
- msgid "Add Slider"
448
- msgstr "Dodaj klizač"
449
-
450
- #: ../home.php:52
451
- msgid "Import Slider"
452
- msgstr "Uvezi klizač"
453
-
454
- #: ../slider.php:6
455
- msgid "Full Width"
456
- msgstr "Puna širina"
457
-
458
- #: ../slider.php:7
459
- msgid "Fixed"
460
- msgstr "Fiskirano"
461
-
462
- #: ../slider.php:10
463
- msgid "Yes"
464
- msgstr "Da"
465
-
466
- #: ../slider.php:11
467
- msgid "No"
468
- msgstr "Ne"
469
-
470
- #: ../slider.php:17 ../slider.php:21
471
- msgid "Slider Name"
472
- msgstr "Ime klizača"
473
-
474
- #: ../slider.php:27
475
- msgid "Alias:"
476
- msgstr "Pseudonim:"
477
-
478
- #: ../slider.php:39
479
- msgid "Shortcode:"
480
- msgstr "Kratki kod:"
481
-
482
- #: ../slider.php:54
483
- msgid "Slider General Options"
484
- msgstr "Opšte opcije klizača"
485
-
486
- #: ../slider.php:64
487
- msgid "Layout"
488
- msgstr "Raspored"
489
-
490
- #: ../slider.php:79
491
- msgid "Modify the layout type of the slider."
492
- msgstr "Promeni tip rasporeda klizača."
493
-
494
- #: ../slider.php:83
495
- msgid "Responsive"
496
- msgstr "Prilagodljivost"
497
-
498
- #: ../slider.php:98
499
- msgid "The slider will be adapted to the screen size."
500
- msgstr "Klizač će se prilagoditi veličini ekrana."
501
-
502
- #: ../slider.php:102
503
- msgid "Start Width"
504
- msgstr "Početna širina"
505
-
506
- #: ../slider.php:111
507
- msgid "The content initial width of the slider."
508
- msgstr "Početna širina sadržaja klizača."
509
-
510
- #: ../slider.php:115
511
- msgid "Start Height"
512
- msgstr "Početna visina"
513
-
514
- #: ../slider.php:124
515
- msgid "The content initial height of the slider."
516
- msgstr "Početna visina sadržaja klizača."
517
-
518
- #: ../slider.php:128
519
- msgid "Automatic Slide"
520
- msgstr "Automatsko klizanje"
521
-
522
- #: ../slider.php:143
523
- msgid "The slides loop is automatic."
524
- msgstr "Petlja slajdova je automatska."
525
-
526
- #: ../slider.php:147
527
- msgid "Show Controls"
528
- msgstr "Prikaži kontrole"
529
-
530
- #: ../slider.php:162
531
- msgid "Show the previous and next arrows."
532
- msgstr "Prikaži strelice za prethodni i sledeći klizač."
533
-
534
- #: ../slider.php:166
535
- msgid "Show Navigation"
536
- msgstr "Prikaži navigaciju"
537
-
538
- #: ../slider.php:181
539
- msgid "Show the links buttons to change slide."
540
- msgstr "Prikaži dugmad za promenu slajda."
541
-
542
- #: ../slider.php:185
543
- msgid "Enable swipe and drag"
544
- msgstr "Omogući prevlačenje"
545
-
546
- #: ../slider.php:200
547
- msgid "Enable swipe left, swipe right, drag left, drag right commands."
548
- msgstr "Omogući komande za prevlačenje ulevo i udesno."
549
-
550
- #: ../slider.php:204
551
- msgid "Show Progress Bar"
552
- msgstr "Prikaži traku napretka"
553
-
554
- #: ../slider.php:219
555
- msgid "Draw the progress bar during the slide execution."
556
- msgstr "Prikaži traku napretka za vreme trajanja slajda."
557
-
558
- #: ../slider.php:223
559
- msgid "Pause on Hover"
560
- msgstr "Pauziraj kada je pokazivač iznad klizača"
561
-
562
- #: ../slider.php:238
563
- msgid "Pause the current slide when hovered."
564
- msgstr "Pauziraj trenutni slajd kada je pokazivač iznad njega."
565
-
566
- #: ../slider.php:242
567
- msgid "Callbacks"
568
- msgstr "Povratni pozivi"
569
-
570
- #: ../slider.php:260
571
- msgid "Some jQuery functions that you can fire during the slider execution."
572
- msgstr "Neke JQuery funkcije koje možete pokrenuti tokom izvršavanja klizača."
573
-
574
- #: ../slides.php:24
575
- msgid "Add Slide"
576
- msgstr "Dodaj slajd"
577
-
578
- #: ../slides.php:65
579
- msgid "Slide Options"
580
- msgstr "Opcije slajda"
581
-
582
- #: ../slides.php:76
583
- msgid "Background"
584
- msgstr "Pozadina"
585
-
586
- #: ../slides.php:80 ../slides.php:124
587
- msgid "Background image:"
588
- msgstr "Slika u pozadini:"
589
-
590
- #: ../slides.php:83 ../slides.php:128 ../slides.php:131
591
- msgid "Select image"
592
- msgstr ""
593
-
594
- #: ../slides.php:89 ../slides.php:138
595
- msgid "Background color:"
596
- msgstr "Boja pozadine:"
597
-
598
- #: ../slides.php:93 ../slides.php:143 ../slides.php:145
599
- msgid "Transparent"
600
- msgstr "Providno"
601
-
602
- #: ../slides.php:97 ../slides.php:159
603
- msgid "Enter value"
604
- msgstr "Unesi vrednost"
605
-
606
- #: ../slides.php:103 ../slides.php:166
607
- msgid "Background position-x:"
608
- msgstr "Pozicija pozadine-x:"
609
-
610
- #: ../slides.php:106 ../slides.php:169
611
- msgid "Background position-y:"
612
- msgstr "Pozicija pozadine-y:"
613
-
614
- #: ../slides.php:112 ../slides.php:175
615
- msgid "Background repeat:"
616
- msgstr "Ponavljanje pozadine:"
617
-
618
- #: ../slides.php:114 ../slides.php:178 ../slides.php:181
619
- msgid "Repeat"
620
- msgstr "Ponavljaj"
621
-
622
- #: ../slides.php:115 ../slides.php:179 ../slides.php:182
623
- msgid "No repeat"
624
- msgstr "Ne ponavljaj"
625
-
626
- #: ../slides.php:121 ../slides.php:189
627
- msgid "Background size:"
628
- msgstr "Veličina pozadine:"
629
-
630
- #: ../slides.php:194
631
- msgid "The background of the slide and its proprieties."
632
- msgstr "Pozadina slajda i njena svojstva."
633
-
634
- #: ../slides.php:197
635
- msgid "Presets:"
636
- msgstr "Unapred podešene postavke:"
637
-
638
- #: ../slides.php:200
639
- msgid "Full width responsive background image"
640
- msgstr "Prilagodljiva pozadina pune širine"
641
-
642
- #: ../slides.php:201
643
- msgid "Pattern background image"
644
- msgstr "Mustra za sliku u pozadini"
645
-
646
- #: ../slides.php:221
647
- msgid "The in animation of the slide."
648
- msgstr "Ulazna animacija slajda."
649
-
650
- #: ../slides.php:240
651
- msgid "The out animation of the slide."
652
- msgstr "Izlazna animacija slajda."
653
-
654
- #: ../slides.php:253
655
- msgid "The time that the slide will remain on the screen."
656
- msgstr "Trajanje slajda na ekranu."
657
-
658
- #: ../slides.php:257
659
- msgid "Ease In"
660
- msgstr "Lagani ulaz"
661
-
662
- #: ../slides.php:266
663
- msgid "The time that the slide will take to get in."
664
- msgstr "Vreme za koje će slajd ući u polje."
665
-
666
- #: ../slides.php:270
667
- msgid "Ease Out"
668
- msgstr "\"Lagani izlaz"
669
-
670
- #: ../slides.php:279
671
- msgid "The time that the slide will take to get out."
672
- msgstr "Vreme za koje će slajd izaći iz polja."
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."
684
- msgstr "Primeni CSS na slajd."
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"
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 mora biti uključen kako bi se ova stranica ispravno prikazala."
21
+
22
+ #: ../admin.php:51
23
+ msgid "Operation completed successfully."
24
+ msgstr "Operacija je uspešno obavljena."
25
+
26
+ #: ../admin.php:52
27
+ msgid "Something went wrong."
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"
40
+ msgstr "Podešavanje klizača"
41
+
42
+ #: ../admin.php:123
43
+ msgid "Edit Slides"
44
+ msgstr "Uredi slajdove"
45
+
46
+ #: ../admin.php:143
47
+ msgid "Save Settings"
48
+ msgstr "Sačuvaj podešavanja"
49
+
50
+ #: ../admin.php:243 ../slides.php:15
51
+ msgid "Slide"
52
+ msgstr "Slajd"
53
+
54
+ #: ../admin.php:244
55
+ msgid "The slide will be deleted. Are you sure?"
56
+ msgstr "Da li si siguran da želiš da obrišeš slajd?"
57
+
58
+ #: ../admin.php:245
59
+ msgid "You can't delete this. You must have at least one slide."
60
+ msgstr "Ovo nije moguće obrisati. Mora postojati makar jedan slajd."
61
+
62
+ #: ../admin.php:246
63
+ msgid "The slider will be deleted. Are you sure?"
64
+ msgstr "Da li si siguran da želiš da obrišeš klizač?"
65
+
66
+ #: ../admin.php:247 ../elements.php:249
67
+ msgid "Text element"
68
+ msgstr "Tekstualni element"
69
+
70
+ #: ../admin.php:248 ../elements.php:159
71
+ msgid "Live preview"
72
+ msgstr "Pregled uživo"
73
+
74
+ #: ../admin.php:249
75
+ msgid "Stop preview"
76
+ msgstr "Zaustavi pregled"
77
+
78
+ #: ../admin.php:250 ../slides.php:16
79
+ msgid "Duplicate slide"
80
+ msgstr "Napravi duplikat slajda"
81
+
82
+ #: ../admin.php:251 ../slides.php:17
83
+ msgid "Delete slide"
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"
95
+ msgstr "Kopiraj"
96
+
97
+ #: ../ajax.php:283
98
+ msgid "copy"
99
+ msgstr "kopiraj"
100
+
101
+ #: ../elements.php:154
102
+ msgid "Add text"
103
+ msgstr "Dodaj tekst"
104
+
105
+ #: ../elements.php:155
106
+ msgid "Add image"
107
+ msgstr "Dodaj sliku"
108
+
109
+ #: ../elements.php:156
110
+ msgid "Add video"
111
+ msgstr "Dodaj video"
112
+
113
+ #: ../elements.php:160
114
+ msgid "Delete element"
115
+ msgstr "Obriši element"
116
+
117
+ #: ../elements.php:161
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
+
126
+ #: ../elements.php:216 ../elements.php:467 ../elements.php:717 ../slides.php:58
127
+ msgid "Slide down"
128
+ msgstr "Klizanje dole"
129
+
130
+ #: ../elements.php:217 ../elements.php:468 ../elements.php:718 ../slides.php:57
131
+ msgid "Slide up"
132
+ msgstr "Klizanje gore"
133
+
134
+ #: ../elements.php:218 ../elements.php:469 ../elements.php:719 ../slides.php:55
135
+ msgid "Slide left"
136
+ msgstr "Klizanje levo"
137
+
138
+ #: ../elements.php:219 ../elements.php:470 ../elements.php:720 ../slides.php:56
139
+ msgid "Slide right"
140
+ msgstr "Klizanje desno"
141
+
142
+ #: ../elements.php:220 ../elements.php:471 ../elements.php:721 ../slides.php:52
143
+ msgid "Fade"
144
+ msgstr "Nestajanje"
145
+
146
+ #: ../elements.php:221 ../elements.php:472 ../elements.php:722
147
+ msgid "Fade down"
148
+ msgstr "Nestajanje dole"
149
+
150
+ #: ../elements.php:222 ../elements.php:473 ../elements.php:723
151
+ msgid "Fade up"
152
+ msgstr "Nestajanje gore"
153
+
154
+ #: ../elements.php:223 ../elements.php:474 ../elements.php:724 ../slides.php:53
155
+ msgid "Fade left"
156
+ msgstr "Nestajanje levo"
157
+
158
+ #: ../elements.php:224 ../elements.php:475 ../elements.php:725 ../slides.php:54
159
+ msgid "Fade right"
160
+ msgstr "Nestajanje desno"
161
+
162
+ #: ../elements.php:225 ../elements.php:476 ../elements.php:726
163
+ msgid "Fade small down"
164
+ msgstr "Nestajanje kratko dole"
165
+
166
+ #: ../elements.php:226 ../elements.php:477 ../elements.php:727
167
+ msgid "Fade small up"
168
+ msgstr "Nestajanje kratko gore"
169
+
170
+ #: ../elements.php:227 ../elements.php:478 ../elements.php:728
171
+ msgid "Fade small left"
172
+ msgstr "Nestajanje kratko levo"
173
+
174
+ #: ../elements.php:228 ../elements.php:479 ../elements.php:729
175
+ msgid "Fade small right"
176
+ msgstr "Nestajanje kratko desno"
177
+
178
+ #: ../elements.php:235 ../elements.php:486 ../elements.php:736
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
+
197
+ #: ../elements.php:246
198
+ msgid "Text"
199
+ msgstr "Tekst"
200
+
201
+ #: ../elements.php:254
202
+ msgid "Write the text or the HTML."
203
+ msgstr "Upiši tekst ili HTML."
204
+
205
+ #: ../elements.php:258 ../elements.php:508 ../elements.php:809
206
+ msgid "Left"
207
+ msgstr "Levo"
208
+
209
+ #: ../elements.php:267 ../elements.php:517 ../elements.php:818
210
+ msgid "Center horizontally"
211
+ msgstr "Centriraj vodoravno"
212
+
213
+ #: ../elements.php:270 ../elements.php:520 ../elements.php:821
214
+ msgid "Left distance in px from the start width."
215
+ msgstr "Rastojanje od leve ivice u pikselima."
216
+
217
+ #: ../elements.php:274 ../elements.php:524 ../elements.php:825
218
+ msgid "Top"
219
+ msgstr "Gore"
220
+
221
+ #: ../elements.php:283 ../elements.php:533 ../elements.php:834
222
+ msgid "Center vertically"
223
+ msgstr "Centriraj uspravno"
224
+
225
+ #: ../elements.php:286 ../elements.php:536 ../elements.php:837
226
+ msgid "Top distance in px from the start height."
227
+ msgstr "Rastojanje od gornje ivice u pikselima."
228
+
229
+ #: ../elements.php:290 ../elements.php:540 ../elements.php:841
230
+ msgid "Z - index"
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
240
+ msgid "Delay"
241
+ msgstr "Kašnjenje"
242
+
243
+ #: ../elements.php:311 ../elements.php:561 ../elements.php:862
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
+
252
+ #: ../elements.php:324 ../elements.php:574 ../elements.php:875
253
+ msgid "How long will the element be displayed during the slide execution."
254
+ msgstr "Koliko dugo će se element zadržati u polju tokom izvršavanja klizača."
255
+
256
+ #: ../elements.php:327 ../elements.php:577 ../elements.php:878
257
+ msgid "Write \"all\" to set the entire time."
258
+ msgstr "Upiši \"all\" kako bi se zadržao do kraja."
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
+
275
+ #: ../elements.php:349 ../elements.php:599 ../elements.php:900
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"
303
+ msgstr "Lagani ulaz"
304
+
305
+ #: ../elements.php:393 ../elements.php:643 ../elements.php:944
306
+ msgid "How long will the in animation take."
307
+ msgstr "Trajanje ulazne animacije."
308
+
309
+ #: ../elements.php:397 ../elements.php:647 ../elements.php:948
310
+ msgid "Ease out"
311
+ msgstr "Lagani izlaz"
312
+
313
+ #: ../elements.php:406 ../elements.php:656 ../elements.php:957
314
+ msgid "How long will the out animation take."
315
+ msgstr "Trajanje izlazne animacije."
316
+
317
+ #: ../elements.php:410 ../elements.php:660 ../slides.php:283
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
+
340
+ #: ../elements.php:442 ../elements.php:692 ../elements.php:969
341
+ msgid "Style the element."
342
+ msgstr "Stilizuj element."
343
+
344
+ #: ../elements.php:446 ../elements.php:696 ../elements.php:973
345
+ msgid "Custom classes"
346
+ msgstr "Prilagođene klase"
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"
358
+ msgstr "Izmeni sliku"
359
+
360
+ #: ../elements.php:499 ../elements.php:500
361
+ msgid "Open gallery"
362
+ msgstr "Otvori galeriju"
363
+
364
+ #: ../elements.php:504
365
+ msgid "Change the image source or the alt text."
366
+ msgstr "Promeni izvor slike ili alt tekst."
367
+
368
+ #: ../elements.php:747
369
+ msgid "Video source"
370
+ msgstr "izvor videa"
371
+
372
+ #: ../elements.php:767
373
+ msgid "Set source and ID."
374
+ msgstr "Podesi izvor i identifikacioni broj."
375
+
376
+ #: ../elements.php:771
377
+ msgid "Loop video"
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
387
+ msgid "Autoplay"
388
+ msgstr "Automatska reprodukcija"
389
+
390
+ #: ../elements.php:805
391
+ msgid "The video will automatically be played after the in animation."
392
+ msgstr "Video reprodukcija će automatski početi posle ulazne animacije."
393
+
394
+ #: ../frontend.php:25
395
+ msgid "You have to insert a valid alias in the shortcode"
396
+ msgstr "Morate uneti važeći pseudonim u kratki kod"
397
+
398
+ #: ../frontend.php:43 ../frontend.php:47
399
+ msgid "The slider hasn't been found"
400
+ msgstr "Klizač nije pronađen"
401
+
402
+ #: ../home.php:7
403
+ msgid "No Sliders found. Please add a new one."
404
+ msgstr "Nijedan klizač nije pronađen. Molimo dodajte novi."
405
+
406
+ #: ../home.php:17
407
+ msgid "Sliders List"
408
+ msgstr "Lista klizača"
409
+
410
+ #: ../home.php:22
411
+ msgid "ID"
412
+ msgstr "Identifikacioni broj"
413
+
414
+ #: ../home.php:23
415
+ msgid "Name"
416
+ msgstr "Ime"
417
+
418
+ #: ../home.php:24
419
+ msgid "Alias"
420
+ msgstr "Pseudonim"
421
+
422
+ #: ../home.php:25
423
+ msgid "Shortcode"
424
+ msgstr "Kratki kod"
425
+
426
+ #: ../home.php:26
427
+ msgid "Actions"
428
+ msgstr "Akcije"
429
+
430
+ #: ../home.php:36
431
+ msgid "Edit Slider"
432
+ msgstr "Uredi klizač"
433
+
434
+ #: ../home.php:37
435
+ msgid "Duplicate Slider"
436
+ msgstr "Dupliraj klizač"
437
+
438
+ #: ../home.php:38
439
+ msgid "Export Slider"
440
+ msgstr "Izvezi klizač"
441
+
442
+ #: ../home.php:39
443
+ msgid "Delete Slider"
444
+ msgstr "Obriši klizač"
445
+
446
+ #: ../home.php:51
447
+ msgid "Add Slider"
448
+ msgstr "Dodaj klizač"
449
+
450
+ #: ../home.php:52
451
+ msgid "Import Slider"
452
+ msgstr "Uvezi klizač"
453
+
454
+ #: ../slider.php:6
455
+ msgid "Full Width"
456
+ msgstr "Puna širina"
457
+
458
+ #: ../slider.php:7
459
+ msgid "Fixed"
460
+ msgstr "Fiskirano"
461
+
462
+ #: ../slider.php:10
463
+ msgid "Yes"
464
+ msgstr "Da"
465
+
466
+ #: ../slider.php:11
467
+ msgid "No"
468
+ msgstr "Ne"
469
+
470
+ #: ../slider.php:17 ../slider.php:21
471
+ msgid "Slider Name"
472
+ msgstr "Ime klizača"
473
+
474
+ #: ../slider.php:27
475
+ msgid "Alias:"
476
+ msgstr "Pseudonim:"
477
+
478
+ #: ../slider.php:39
479
+ msgid "Shortcode:"
480
+ msgstr "Kratki kod:"
481
+
482
+ #: ../slider.php:54
483
+ msgid "Slider General Options"
484
+ msgstr "Opšte opcije klizača"
485
+
486
+ #: ../slider.php:64
487
+ msgid "Layout"
488
+ msgstr "Raspored"
489
+
490
+ #: ../slider.php:79
491
+ msgid "Modify the layout type of the slider."
492
+ msgstr "Promeni tip rasporeda klizača."
493
+
494
+ #: ../slider.php:83
495
+ msgid "Responsive"
496
+ msgstr "Prilagodljivost"
497
+
498
+ #: ../slider.php:98
499
+ msgid "The slider will be adapted to the screen size."
500
+ msgstr "Klizač će se prilagoditi veličini ekrana."
501
+
502
+ #: ../slider.php:102
503
+ msgid "Start Width"
504
+ msgstr "Početna širina"
505
+
506
+ #: ../slider.php:111
507
+ msgid "The content initial width of the slider."
508
+ msgstr "Početna širina sadržaja klizača."
509
+
510
+ #: ../slider.php:115
511
+ msgid "Start Height"
512
+ msgstr "Početna visina"
513
+
514
+ #: ../slider.php:124
515
+ msgid "The content initial height of the slider."
516
+ msgstr "Početna visina sadržaja klizača."
517
+
518
+ #: ../slider.php:128
519
+ msgid "Automatic Slide"
520
+ msgstr "Automatsko klizanje"
521
+
522
+ #: ../slider.php:143
523
+ msgid "The slides loop is automatic."
524
+ msgstr "Petlja slajdova je automatska."
525
+
526
+ #: ../slider.php:147
527
+ msgid "Show Controls"
528
+ msgstr "Prikaži kontrole"
529
+
530
+ #: ../slider.php:162
531
+ msgid "Show the previous and next arrows."
532
+ msgstr "Prikaži strelice za prethodni i sledeći klizač."
533
+
534
+ #: ../slider.php:166
535
+ msgid "Show Navigation"
536
+ msgstr "Prikaži navigaciju"
537
+
538
+ #: ../slider.php:181
539
+ msgid "Show the links buttons to change slide."
540
+ msgstr "Prikaži dugmad za promenu slajda."
541
+
542
+ #: ../slider.php:185
543
+ msgid "Enable swipe and drag"
544
+ msgstr "Omogući prevlačenje"
545
+
546
+ #: ../slider.php:200
547
+ msgid "Enable swipe left, swipe right, drag left, drag right commands."
548
+ msgstr "Omogući komande za prevlačenje ulevo i udesno."
549
+
550
+ #: ../slider.php:204
551
+ msgid "Show Progress Bar"
552
+ msgstr "Prikaži traku napretka"
553
+
554
+ #: ../slider.php:219
555
+ msgid "Draw the progress bar during the slide execution."
556
+ msgstr "Prikaži traku napretka za vreme trajanja slajda."
557
+
558
+ #: ../slider.php:223
559
+ msgid "Pause on Hover"
560
+ msgstr "Pauziraj kada je pokazivač iznad klizača"
561
+
562
+ #: ../slider.php:238
563
+ msgid "Pause the current slide when hovered."
564
+ msgstr "Pauziraj trenutni slajd kada je pokazivač iznad njega."
565
+
566
+ #: ../slider.php:242
567
+ msgid "Callbacks"
568
+ msgstr "Povratni pozivi"
569
+
570
+ #: ../slider.php:260
571
+ msgid "Some jQuery functions that you can fire during the slider execution."
572
+ msgstr "Neke JQuery funkcije koje možete pokrenuti tokom izvršavanja klizača."
573
+
574
+ #: ../slides.php:24
575
+ msgid "Add Slide"
576
+ msgstr "Dodaj slajd"
577
+
578
+ #: ../slides.php:65
579
+ msgid "Slide Options"
580
+ msgstr "Opcije slajda"
581
+
582
+ #: ../slides.php:76
583
+ msgid "Background"
584
+ msgstr "Pozadina"
585
+
586
+ #: ../slides.php:80 ../slides.php:124
587
+ msgid "Background image:"
588
+ msgstr "Slika u pozadini:"
589
+
590
+ #: ../slides.php:83 ../slides.php:128 ../slides.php:131
591
+ msgid "Select image"
592
+ msgstr ""
593
+
594
+ #: ../slides.php:89 ../slides.php:138
595
+ msgid "Background color:"
596
+ msgstr "Boja pozadine:"
597
+
598
+ #: ../slides.php:93 ../slides.php:143 ../slides.php:145
599
+ msgid "Transparent"
600
+ msgstr "Providno"
601
+
602
+ #: ../slides.php:97 ../slides.php:159
603
+ msgid "Enter value"
604
+ msgstr "Unesi vrednost"
605
+
606
+ #: ../slides.php:103 ../slides.php:166
607
+ msgid "Background position-x:"
608
+ msgstr "Pozicija pozadine-x:"
609
+
610
+ #: ../slides.php:106 ../slides.php:169
611
+ msgid "Background position-y:"
612
+ msgstr "Pozicija pozadine-y:"
613
+
614
+ #: ../slides.php:112 ../slides.php:175
615
+ msgid "Background repeat:"
616
+ msgstr "Ponavljanje pozadine:"
617
+
618
+ #: ../slides.php:114 ../slides.php:178 ../slides.php:181
619
+ msgid "Repeat"
620
+ msgstr "Ponavljaj"
621
+
622
+ #: ../slides.php:115 ../slides.php:179 ../slides.php:182
623
+ msgid "No repeat"
624
+ msgstr "Ne ponavljaj"
625
+
626
+ #: ../slides.php:121 ../slides.php:189
627
+ msgid "Background size:"
628
+ msgstr "Veličina pozadine:"
629
+
630
+ #: ../slides.php:194
631
+ msgid "The background of the slide and its proprieties."
632
+ msgstr "Pozadina slajda i njena svojstva."
633
+
634
+ #: ../slides.php:197
635
+ msgid "Presets:"
636
+ msgstr "Unapred podešene postavke:"
637
+
638
+ #: ../slides.php:200
639
+ msgid "Full width responsive background image"
640
+ msgstr "Prilagodljiva pozadina pune širine"
641
+
642
+ #: ../slides.php:201
643
+ msgid "Pattern background image"
644
+ msgstr "Mustra za sliku u pozadini"
645
+
646
+ #: ../slides.php:221
647
+ msgid "The in animation of the slide."
648
+ msgstr "Ulazna animacija slajda."
649
+
650
+ #: ../slides.php:240
651
+ msgid "The out animation of the slide."
652
+ msgstr "Izlazna animacija slajda."
653
+
654
+ #: ../slides.php:253
655
+ msgid "The time that the slide will remain on the screen."
656
+ msgstr "Trajanje slajda na ekranu."
657
+
658
+ #: ../slides.php:257
659
+ msgid "Ease In"
660
+ msgstr "Lagani ulaz"
661
+
662
+ #: ../slides.php:266
663
+ msgid "The time that the slide will take to get in."
664
+ msgstr "Vreme za koje će slajd ući u polje."
665
+
666
+ #: ../slides.php:270
667
+ msgid "Ease Out"
668
+ msgstr "\"Lagani izlaz"
669
+
670
+ #: ../slides.php:279
671
+ msgid "The time that the slide will take to get out."
672
+ msgstr "Vreme za koje će slajd izaći iz polja."
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."
684
+ msgstr "Primeni CSS na slajd."
wordpress/languages/crelly-slider.pot CHANGED
@@ -1,678 +1,678 @@
1
- #, fuzzy
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"
9
- "Language: en_US\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Generator: Poedit 1.8.7\n"
14
- "X-Poedit-KeywordsList: __;_e\n"
15
- "X-Poedit-Basepath: .\n"
16
- "X-Poedit-SearchPath-0: ..\n"
17
-
18
- #: ../admin.php:48
19
- msgid "JavaScript must be enabled to view this page correctly."
20
- msgstr ""
21
-
22
- #: ../admin.php:51
23
- msgid "Operation completed successfully."
24
- msgstr ""
25
-
26
- #: ../admin.php:52
27
- msgid "Something went wrong."
28
- msgstr ""
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
-
36
- #: ../admin.php:119
37
- msgid "Slider Settings"
38
- msgstr ""
39
-
40
- #: ../admin.php:123
41
- msgid "Edit Slides"
42
- msgstr ""
43
-
44
- #: ../admin.php:143
45
- msgid "Save Settings"
46
- msgstr ""
47
-
48
- #: ../admin.php:243 ../slides.php:15
49
- msgid "Slide"
50
- msgstr ""
51
-
52
- #: ../admin.php:244
53
- msgid "The slide will be deleted. Are you sure?"
54
- msgstr ""
55
-
56
- #: ../admin.php:245
57
- msgid "You can't delete this. You must have at least one slide."
58
- msgstr ""
59
-
60
- #: ../admin.php:246
61
- msgid "The slider will be deleted. Are you sure?"
62
- msgstr ""
63
-
64
- #: ../admin.php:247 ../elements.php:249
65
- msgid "Text element"
66
- msgstr ""
67
-
68
- #: ../admin.php:248 ../elements.php:159
69
- msgid "Live preview"
70
- msgstr ""
71
-
72
- #: ../admin.php:249
73
- msgid "Stop preview"
74
- msgstr ""
75
-
76
- #: ../admin.php:250 ../slides.php:16
77
- msgid "Duplicate slide"
78
- msgstr ""
79
-
80
- #: ../admin.php:251 ../slides.php:17
81
- msgid "Delete slide"
82
- msgstr ""
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
-
89
- #: ../ajax.php:282
90
- msgid "Copy"
91
- msgstr ""
92
-
93
- #: ../ajax.php:283
94
- msgid "copy"
95
- msgstr ""
96
-
97
- #: ../elements.php:154
98
- msgid "Add text"
99
- msgstr ""
100
-
101
- #: ../elements.php:155
102
- msgid "Add image"
103
- msgstr ""
104
-
105
- #: ../elements.php:156
106
- msgid "Add video"
107
- msgstr ""
108
-
109
- #: ../elements.php:160
110
- msgid "Delete element"
111
- msgstr ""
112
-
113
- #: ../elements.php:161
114
- msgid "Duplicate element"
115
- msgstr ""
116
-
117
- #: ../elements.php:215 ../elements.php:466 ../elements.php:716
118
- #: ../slides.php:51 ../slides.php:82 ../slides.php:127 ../slides.php:130
119
- msgid "None"
120
- msgstr ""
121
-
122
- #: ../elements.php:216 ../elements.php:467 ../elements.php:717
123
- #: ../slides.php:58
124
- msgid "Slide down"
125
- msgstr ""
126
-
127
- #: ../elements.php:217 ../elements.php:468 ../elements.php:718
128
- #: ../slides.php:57
129
- msgid "Slide up"
130
- msgstr ""
131
-
132
- #: ../elements.php:218 ../elements.php:469 ../elements.php:719
133
- #: ../slides.php:55
134
- msgid "Slide left"
135
- msgstr ""
136
-
137
- #: ../elements.php:219 ../elements.php:470 ../elements.php:720
138
- #: ../slides.php:56
139
- msgid "Slide right"
140
- msgstr ""
141
-
142
- #: ../elements.php:220 ../elements.php:471 ../elements.php:721
143
- #: ../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
156
- #: ../slides.php:53
157
- msgid "Fade left"
158
- msgstr ""
159
-
160
- #: ../elements.php:224 ../elements.php:475 ../elements.php:725
161
- #: ../slides.php:54
162
- msgid "Fade right"
163
- msgstr ""
164
-
165
- #: ../elements.php:225 ../elements.php:476 ../elements.php:726
166
- msgid "Fade small down"
167
- msgstr ""
168
-
169
- #: ../elements.php:226 ../elements.php:477 ../elements.php:727
170
- msgid "Fade small up"
171
- msgstr ""
172
-
173
- #: ../elements.php:227 ../elements.php:478 ../elements.php:728
174
- msgid "Fade small left"
175
- msgstr ""
176
-
177
- #: ../elements.php:228 ../elements.php:479 ../elements.php:729
178
- msgid "Fade small right"
179
- msgstr ""
180
-
181
- #: ../elements.php:235 ../elements.php:486 ../elements.php:736
182
- msgid "Element Options"
183
- msgstr ""
184
-
185
- #: ../elements.php:241 ../elements.php:491 ../elements.php:742
186
- #: ../slider.php:59 ../slides.php:71
187
- msgid "Option"
188
- msgstr ""
189
-
190
- #: ../elements.php:242 ../elements.php:492 ../elements.php:743
191
- #: ../slider.php:60 ../slides.php:72
192
- msgid "Parameter"
193
- msgstr ""
194
-
195
- #: ../elements.php:243 ../elements.php:493 ../elements.php:744
196
- #: ../slider.php:61 ../slides.php:73
197
- msgid "Description"
198
- msgstr ""
199
-
200
- #: ../elements.php:246
201
- msgid "Text"
202
- msgstr ""
203
-
204
- #: ../elements.php:254
205
- msgid "Write the text or the HTML."
206
- msgstr ""
207
-
208
- #: ../elements.php:258 ../elements.php:508 ../elements.php:809
209
- msgid "Left"
210
- msgstr ""
211
-
212
- #: ../elements.php:267 ../elements.php:517 ../elements.php:818
213
- msgid "Center horizontally"
214
- msgstr ""
215
-
216
- #: ../elements.php:270 ../elements.php:520 ../elements.php:821
217
- msgid "Left distance in px from the start width."
218
- msgstr ""
219
-
220
- #: ../elements.php:274 ../elements.php:524 ../elements.php:825
221
- msgid "Top"
222
- msgstr ""
223
-
224
- #: ../elements.php:283 ../elements.php:533 ../elements.php:834
225
- msgid "Center vertically"
226
- msgstr ""
227
-
228
- #: ../elements.php:286 ../elements.php:536 ../elements.php:837
229
- msgid "Top distance in px from the start height."
230
- msgstr ""
231
-
232
- #: ../elements.php:290 ../elements.php:540 ../elements.php:841
233
- msgid "Z - index"
234
- msgstr ""
235
-
236
- #: ../elements.php:298 ../elements.php:548 ../elements.php:849
237
- msgid ""
238
- "An element with an high z-index will cover an element with a lower z-index "
239
- "if they overlap."
240
- msgstr ""
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 ""
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 "
267
- "3000-1000=2000 milliseconds)."
268
- msgstr ""
269
-
270
- #: ../elements.php:334 ../elements.php:584 ../elements.php:885
271
- #: ../slides.php:206
272
- msgid "In animation"
273
- msgstr ""
274
-
275
- #: ../elements.php:349 ../elements.php:599 ../elements.php:900
276
- msgid "The in animation of the element."
277
- msgstr ""
278
-
279
- #: ../elements.php:353 ../elements.php:603 ../elements.php:904
280
- #: ../slides.php:225
281
- msgid "Out animation"
282
- msgstr ""
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 ""
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
-
297
- #: ../elements.php:384 ../elements.php:634 ../elements.php:935
298
- msgid "Ease in"
299
- msgstr ""
300
-
301
- #: ../elements.php:393 ../elements.php:643 ../elements.php:944
302
- msgid "How long will the in animation take."
303
- msgstr ""
304
-
305
- #: ../elements.php:397 ../elements.php:647 ../elements.php:948
306
- msgid "Ease out"
307
- msgstr ""
308
-
309
- #: ../elements.php:406 ../elements.php:656 ../elements.php:957
310
- msgid "How long will the out animation take."
311
- msgstr ""
312
-
313
- #: ../elements.php:410 ../elements.php:660 ../slides.php:283
314
- msgid "Link"
315
- msgstr ""
316
-
317
- #: ../elements.php:418 ../elements.php:421 ../elements.php:424
318
- #: ../elements.php:668 ../elements.php:671 ../elements.php:674
319
- #: ../slides.php:291 ../slides.php:294 ../slides.php:297
320
- msgid "Open link in a new tab"
321
- msgstr ""
322
-
323
- #: ../elements.php:430 ../elements.php:680
324
- msgid ""
325
- "Open the link (e.g.: http://www.google.it) on click. Leave it empty if you "
326
- "don't want it."
327
- msgstr ""
328
-
329
- #: ../elements.php:434 ../elements.php:684 ../elements.php:961
330
- #: ../slides.php:307
331
- msgid "Custom CSS"
332
- msgstr ""
333
-
334
- #: ../elements.php:442 ../elements.php:692 ../elements.php:969
335
- msgid "Style the element."
336
- msgstr ""
337
-
338
- #: ../elements.php:446 ../elements.php:696 ../elements.php:973
339
- msgid "Custom classes"
340
- msgstr ""
341
-
342
- #: ../elements.php:454 ../elements.php:704 ../elements.php:981
343
- msgid ""
344
- "Apply custom CSS classes to the element. The style of the classes may not "
345
- "work when working on backend."
346
- msgstr ""
347
-
348
- #: ../elements.php:496
349
- msgid "Modify image"
350
- msgstr ""
351
-
352
- #: ../elements.php:499 ../elements.php:500
353
- msgid "Open gallery"
354
- msgstr ""
355
-
356
- #: ../elements.php:504
357
- msgid "Change the image source or the alt text."
358
- msgstr ""
359
-
360
- #: ../elements.php:747
361
- msgid "Video source"
362
- msgstr ""
363
-
364
- #: ../elements.php:767
365
- msgid "Set source and ID."
366
- msgstr ""
367
-
368
- #: ../elements.php:771
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 "
387
- "the end."
388
- msgstr ""
389
-
390
- #: ../elements.php:790
391
- msgid "Autoplay"
392
- msgstr ""
393
-
394
- #: ../elements.php:805
395
- msgid "The video will automatically be played after the in animation."
396
- msgstr ""
397
-
398
- #: ../frontend.php:25
399
- msgid "You have to insert a valid alias in the shortcode"
400
- msgstr ""
401
-
402
- #: ../frontend.php:43 ../frontend.php:47
403
- msgid "The slider hasn't been found"
404
- msgstr ""
405
-
406
- #: ../home.php:7
407
- msgid "No Sliders found. Please add a new one."
408
- msgstr ""
409
-
410
- #: ../home.php:17
411
- msgid "Sliders List"
412
- msgstr ""
413
-
414
- #: ../home.php:22
415
- msgid "ID"
416
- msgstr ""
417
-
418
- #: ../home.php:23
419
- msgid "Name"
420
- msgstr ""
421
-
422
- #: ../home.php:24
423
- msgid "Alias"
424
- msgstr ""
425
-
426
- #: ../home.php:25
427
- msgid "Shortcode"
428
- msgstr ""
429
-
430
- #: ../home.php:26
431
- msgid "Actions"
432
- msgstr ""
433
-
434
- #: ../home.php:36
435
- msgid "Edit Slider"
436
- msgstr ""
437
-
438
- #: ../home.php:37
439
- msgid "Duplicate Slider"
440
- msgstr ""
441
-
442
- #: ../home.php:38
443
- msgid "Export Slider"
444
- msgstr ""
445
-
446
- #: ../home.php:39
447
- msgid "Delete Slider"
448
- msgstr ""
449
-
450
- #: ../home.php:51
451
- msgid "Add Slider"
452
- msgstr ""
453
-
454
- #: ../home.php:52
455
- msgid "Import Slider"
456
- msgstr ""
457
-
458
- #: ../slider.php:6
459
- msgid "Full Width"
460
- msgstr ""
461
-
462
- #: ../slider.php:7
463
- msgid "Fixed"
464
- msgstr ""
465
-
466
- #: ../slider.php:17 ../slider.php:21
467
- msgid "Slider Name"
468
- msgstr ""
469
-
470
- #: ../slider.php:27
471
- msgid "Alias:"
472
- msgstr ""
473
-
474
- #: ../slider.php:39
475
- msgid "Shortcode:"
476
- msgstr ""
477
-
478
- #: ../slider.php:54
479
- msgid "Slider General Options"
480
- msgstr ""
481
-
482
- #: ../slider.php:64
483
- msgid "Layout"
484
- msgstr ""
485
-
486
- #: ../slider.php:79
487
- msgid "Modify the layout type of the slider."
488
- msgstr ""
489
-
490
- #: ../slider.php:83
491
- msgid "Responsive"
492
- msgstr ""
493
-
494
- #: ../slider.php:98
495
- msgid "The slider will be adapted to the screen size."
496
- msgstr ""
497
-
498
- #: ../slider.php:102
499
- msgid "Start Width"
500
- msgstr ""
501
-
502
- #: ../slider.php:111
503
- msgid "The content initial width of the slider."
504
- msgstr ""
505
-
506
- #: ../slider.php:115
507
- msgid "Start Height"
508
- msgstr ""
509
-
510
- #: ../slider.php:124
511
- msgid "The content initial height of the slider."
512
- msgstr ""
513
-
514
- #: ../slider.php:128
515
- msgid "Automatic Slide"
516
- msgstr ""
517
-
518
- #: ../slider.php:143
519
- msgid "The slides loop is automatic."
520
- msgstr ""
521
-
522
- #: ../slider.php:147
523
- msgid "Show Controls"
524
- msgstr ""
525
-
526
- #: ../slider.php:162
527
- msgid "Show the previous and next arrows."
528
- msgstr ""
529
-
530
- #: ../slider.php:166
531
- msgid "Show Navigation"
532
- msgstr ""
533
-
534
- #: ../slider.php:181
535
- msgid "Show the links buttons to change slide."
536
- msgstr ""
537
-
538
- #: ../slider.php:185
539
- msgid "Enable swipe and drag"
540
- msgstr ""
541
-
542
- #: ../slider.php:200
543
- msgid "Enable swipe left, swipe right, drag left, drag right commands."
544
- msgstr ""
545
-
546
- #: ../slider.php:204
547
- msgid "Show Progress Bar"
548
- msgstr ""
549
-
550
- #: ../slider.php:219
551
- msgid "Draw the progress bar during the slide execution."
552
- msgstr ""
553
-
554
- #: ../slider.php:223
555
- msgid "Pause on Hover"
556
- msgstr ""
557
-
558
- #: ../slider.php:238
559
- msgid "Pause the current slide when hovered."
560
- msgstr ""
561
-
562
- #: ../slider.php:242
563
- msgid "Callbacks"
564
- msgstr ""
565
-
566
- #: ../slider.php:260
567
- msgid "Some jQuery functions that you can fire during the slider execution."
568
- msgstr ""
569
-
570
- #: ../slides.php:24
571
- msgid "Add Slide"
572
- msgstr ""
573
-
574
- #: ../slides.php:65
575
- msgid "Slide Options"
576
- msgstr ""
577
-
578
- #: ../slides.php:76
579
- msgid "Background"
580
- msgstr ""
581
-
582
- #: ../slides.php:80 ../slides.php:124
583
- msgid "Background image:"
584
- msgstr ""
585
-
586
- #: ../slides.php:83 ../slides.php:128 ../slides.php:131
587
- msgid "Select image"
588
- msgstr ""
589
-
590
- #: ../slides.php:89 ../slides.php:138
591
- msgid "Background color:"
592
- msgstr ""
593
-
594
- #: ../slides.php:93 ../slides.php:143 ../slides.php:145
595
- msgid "Transparent"
596
- msgstr ""
597
-
598
- #: ../slides.php:97 ../slides.php:159
599
- msgid "Enter value"
600
- msgstr ""
601
-
602
- #: ../slides.php:103 ../slides.php:166
603
- msgid "Background position-x:"
604
- msgstr ""
605
-
606
- #: ../slides.php:106 ../slides.php:169
607
- msgid "Background position-y:"
608
- msgstr ""
609
-
610
- #: ../slides.php:112 ../slides.php:175
611
- msgid "Background repeat:"
612
- msgstr ""
613
-
614
- #: ../slides.php:114 ../slides.php:178 ../slides.php:181
615
- msgid "Repeat"
616
- msgstr ""
617
-
618
- #: ../slides.php:115 ../slides.php:179 ../slides.php:182
619
- msgid "No repeat"
620
- msgstr ""
621
-
622
- #: ../slides.php:121 ../slides.php:189
623
- msgid "Background size:"
624
- msgstr ""
625
-
626
- #: ../slides.php:194
627
- msgid "The background of the slide and its proprieties."
628
- msgstr ""
629
-
630
- #: ../slides.php:197
631
- msgid "Presets:"
632
- msgstr ""
633
-
634
- #: ../slides.php:200
635
- msgid "Full width responsive background image"
636
- msgstr ""
637
-
638
- #: ../slides.php:201
639
- msgid "Pattern background image"
640
- msgstr ""
641
-
642
- #: ../slides.php:221
643
- msgid "The in animation of the slide."
644
- msgstr ""
645
-
646
- #: ../slides.php:240
647
- msgid "The out animation of the slide."
648
- msgstr ""
649
-
650
- #: ../slides.php:253
651
- msgid "The time that the slide will remain on the screen."
652
- msgstr ""
653
-
654
- #: ../slides.php:257
655
- msgid "Ease In"
656
- msgstr ""
657
-
658
- #: ../slides.php:266
659
- msgid "The time that the slide will take to get in."
660
- msgstr ""
661
-
662
- #: ../slides.php:270
663
- msgid "Ease Out"
664
- msgstr ""
665
-
666
- #: ../slides.php:279
667
- msgid "The time that the slide will take to get out."
668
- msgstr ""
669
-
670
- #: ../slides.php:303
671
- msgid ""
672
- "Open the link (e.g.: http://www.google.it) when the user clicks on the "
673
- "background. Leave it empty if you don't want it."
674
- msgstr ""
675
-
676
- #: ../slides.php:315
677
- msgid "Apply CSS to the slide."
678
- msgstr ""
1
+ #, fuzzy
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"
9
+ "Language: en_US\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 1.8.7\n"
14
+ "X-Poedit-KeywordsList: __;_e\n"
15
+ "X-Poedit-Basepath: .\n"
16
+ "X-Poedit-SearchPath-0: ..\n"
17
+
18
+ #: ../admin.php:48
19
+ msgid "JavaScript must be enabled to view this page correctly."
20
+ msgstr ""
21
+
22
+ #: ../admin.php:51
23
+ msgid "Operation completed successfully."
24
+ msgstr ""
25
+
26
+ #: ../admin.php:52
27
+ msgid "Something went wrong."
28
+ msgstr ""
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
+
36
+ #: ../admin.php:119
37
+ msgid "Slider Settings"
38
+ msgstr ""
39
+
40
+ #: ../admin.php:123
41
+ msgid "Edit Slides"
42
+ msgstr ""
43
+
44
+ #: ../admin.php:143
45
+ msgid "Save Settings"
46
+ msgstr ""
47
+
48
+ #: ../admin.php:243 ../slides.php:15
49
+ msgid "Slide"
50
+ msgstr ""
51
+
52
+ #: ../admin.php:244
53
+ msgid "The slide will be deleted. Are you sure?"
54
+ msgstr ""
55
+
56
+ #: ../admin.php:245
57
+ msgid "You can't delete this. You must have at least one slide."
58
+ msgstr ""
59
+
60
+ #: ../admin.php:246
61
+ msgid "The slider will be deleted. Are you sure?"
62
+ msgstr ""
63
+
64
+ #: ../admin.php:247 ../elements.php:249
65
+ msgid "Text element"
66
+ msgstr ""
67
+
68
+ #: ../admin.php:248 ../elements.php:159
69
+ msgid "Live preview"
70
+ msgstr ""
71
+
72
+ #: ../admin.php:249
73
+ msgid "Stop preview"
74
+ msgstr ""
75
+
76
+ #: ../admin.php:250 ../slides.php:16
77
+ msgid "Duplicate slide"
78
+ msgstr ""
79
+
80
+ #: ../admin.php:251 ../slides.php:17
81
+ msgid "Delete slide"
82
+ msgstr ""
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
+
89
+ #: ../ajax.php:282
90
+ msgid "Copy"
91
+ msgstr ""
92
+
93
+ #: ../ajax.php:283
94
+ msgid "copy"
95
+ msgstr ""
96
+
97
+ #: ../elements.php:154
98
+ msgid "Add text"
99
+ msgstr ""
100
+
101
+ #: ../elements.php:155
102
+ msgid "Add image"
103
+ msgstr ""
104
+
105
+ #: ../elements.php:156
106
+ msgid "Add video"
107
+ msgstr ""
108
+
109
+ #: ../elements.php:160
110
+ msgid "Delete element"
111
+ msgstr ""
112
+
113
+ #: ../elements.php:161
114
+ msgid "Duplicate element"
115
+ msgstr ""
116
+
117
+ #: ../elements.php:215 ../elements.php:466 ../elements.php:716
118
+ #: ../slides.php:51 ../slides.php:82 ../slides.php:127 ../slides.php:130
119
+ msgid "None"
120
+ msgstr ""
121
+
122
+ #: ../elements.php:216 ../elements.php:467 ../elements.php:717
123
+ #: ../slides.php:58
124
+ msgid "Slide down"
125
+ msgstr ""
126
+
127
+ #: ../elements.php:217 ../elements.php:468 ../elements.php:718
128
+ #: ../slides.php:57
129
+ msgid "Slide up"
130
+ msgstr ""
131
+
132
+ #: ../elements.php:218 ../elements.php:469 ../elements.php:719
133
+ #: ../slides.php:55
134
+ msgid "Slide left"
135
+ msgstr ""
136
+
137
+ #: ../elements.php:219 ../elements.php:470 ../elements.php:720
138
+ #: ../slides.php:56
139
+ msgid "Slide right"
140
+ msgstr ""
141
+
142
+ #: ../elements.php:220 ../elements.php:471 ../elements.php:721
143
+ #: ../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
156
+ #: ../slides.php:53
157
+ msgid "Fade left"
158
+ msgstr ""
159
+
160
+ #: ../elements.php:224 ../elements.php:475 ../elements.php:725
161
+ #: ../slides.php:54
162
+ msgid "Fade right"
163
+ msgstr ""
164
+
165
+ #: ../elements.php:225 ../elements.php:476 ../elements.php:726
166
+ msgid "Fade small down"
167
+ msgstr ""
168
+
169
+ #: ../elements.php:226 ../elements.php:477 ../elements.php:727
170
+ msgid "Fade small up"
171
+ msgstr ""
172
+
173
+ #: ../elements.php:227 ../elements.php:478 ../elements.php:728
174
+ msgid "Fade small left"
175
+ msgstr ""
176
+
177
+ #: ../elements.php:228 ../elements.php:479 ../elements.php:729
178
+ msgid "Fade small right"
179
+ msgstr ""
180
+
181
+ #: ../elements.php:235 ../elements.php:486 ../elements.php:736
182
+ msgid "Element Options"
183
+ msgstr ""
184
+
185
+ #: ../elements.php:241 ../elements.php:491 ../elements.php:742
186
+ #: ../slider.php:59 ../slides.php:71
187
+ msgid "Option"
188
+ msgstr ""
189
+
190
+ #: ../elements.php:242 ../elements.php:492 ../elements.php:743
191
+ #: ../slider.php:60 ../slides.php:72
192
+ msgid "Parameter"
193
+ msgstr ""
194
+
195
+ #: ../elements.php:243 ../elements.php:493 ../elements.php:744
196
+ #: ../slider.php:61 ../slides.php:73
197
+ msgid "Description"
198
+ msgstr ""
199
+
200
+ #: ../elements.php:246
201
+ msgid "Text"
202
+ msgstr ""
203
+
204
+ #: ../elements.php:254
205
+ msgid "Write the text or the HTML."
206
+ msgstr ""
207
+
208
+ #: ../elements.php:258 ../elements.php:508 ../elements.php:809
209
+ msgid "Left"
210
+ msgstr ""
211
+
212
+ #: ../elements.php:267 ../elements.php:517 ../elements.php:818
213
+ msgid "Center horizontally"
214
+ msgstr ""
215
+
216
+ #: ../elements.php:270 ../elements.php:520 ../elements.php:821
217
+ msgid "Left distance in px from the start width."
218
+ msgstr ""
219
+
220
+ #: ../elements.php:274 ../elements.php:524 ../elements.php:825
221
+ msgid "Top"
222
+ msgstr ""
223
+
224
+ #: ../elements.php:283 ../elements.php:533 ../elements.php:834
225
+ msgid "Center vertically"
226
+ msgstr ""
227
+
228
+ #: ../elements.php:286 ../elements.php:536 ../elements.php:837
229
+ msgid "Top distance in px from the start height."
230
+ msgstr ""
231
+
232
+ #: ../elements.php:290 ../elements.php:540 ../elements.php:841
233
+ msgid "Z - index"
234
+ msgstr ""
235
+
236
+ #: ../elements.php:298 ../elements.php:548 ../elements.php:849
237
+ msgid ""
238
+ "An element with an high z-index will cover an element with a lower z-index "
239
+ "if they overlap."
240
+ msgstr ""
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 ""
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 "
267
+ "3000-1000=2000 milliseconds)."
268
+ msgstr ""
269
+
270
+ #: ../elements.php:334 ../elements.php:584 ../elements.php:885
271
+ #: ../slides.php:206
272
+ msgid "In animation"
273
+ msgstr ""
274
+
275
+ #: ../elements.php:349 ../elements.php:599 ../elements.php:900
276
+ msgid "The in animation of the element."
277
+ msgstr ""
278
+
279
+ #: ../elements.php:353 ../elements.php:603 ../elements.php:904
280
+ #: ../slides.php:225
281
+ msgid "Out animation"
282
+ msgstr ""
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 ""
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
+
297
+ #: ../elements.php:384 ../elements.php:634 ../elements.php:935
298
+ msgid "Ease in"
299
+ msgstr ""
300
+
301
+ #: ../elements.php:393 ../elements.php:643 ../elements.php:944
302
+ msgid "How long will the in animation take."
303
+ msgstr ""
304
+
305
+ #: ../elements.php:397 ../elements.php:647 ../elements.php:948
306
+ msgid "Ease out"
307
+ msgstr ""
308
+
309
+ #: ../elements.php:406 ../elements.php:656 ../elements.php:957
310
+ msgid "How long will the out animation take."
311
+ msgstr ""
312
+
313
+ #: ../elements.php:410 ../elements.php:660 ../slides.php:283
314
+ msgid "Link"
315
+ msgstr ""
316
+
317
+ #: ../elements.php:418 ../elements.php:421 ../elements.php:424
318
+ #: ../elements.php:668 ../elements.php:671 ../elements.php:674
319
+ #: ../slides.php:291 ../slides.php:294 ../slides.php:297
320
+ msgid "Open link in a new tab"
321
+ msgstr ""
322
+
323
+ #: ../elements.php:430 ../elements.php:680
324
+ msgid ""
325
+ "Open the link (e.g.: http://www.google.it) on click. Leave it empty if you "
326
+ "don't want it."
327
+ msgstr ""
328
+
329
+ #: ../elements.php:434 ../elements.php:684 ../elements.php:961
330
+ #: ../slides.php:307
331
+ msgid "Custom CSS"
332
+ msgstr ""
333
+
334
+ #: ../elements.php:442 ../elements.php:692 ../elements.php:969
335
+ msgid "Style the element."
336
+ msgstr ""
337
+
338
+ #: ../elements.php:446 ../elements.php:696 ../elements.php:973
339
+ msgid "Custom classes"
340
+ msgstr ""
341
+
342
+ #: ../elements.php:454 ../elements.php:704 ../elements.php:981
343
+ msgid ""
344
+ "Apply custom CSS classes to the element. The style of the classes may not "
345
+ "work when working on backend."
346
+ msgstr ""
347
+
348
+ #: ../elements.php:496
349
+ msgid "Modify image"
350
+ msgstr ""
351
+
352
+ #: ../elements.php:499 ../elements.php:500
353
+ msgid "Open gallery"
354
+ msgstr ""
355
+
356
+ #: ../elements.php:504
357
+ msgid "Change the image source or the alt text."
358
+ msgstr ""
359
+
360
+ #: ../elements.php:747
361
+ msgid "Video source"
362
+ msgstr ""
363
+
364
+ #: ../elements.php:767
365
+ msgid "Set source and ID."
366
+ msgstr ""
367
+
368
+ #: ../elements.php:771
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 "
387
+ "the end."
388
+ msgstr ""
389
+
390
+ #: ../elements.php:790
391
+ msgid "Autoplay"
392
+ msgstr ""
393
+
394
+ #: ../elements.php:805
395
+ msgid "The video will automatically be played after the in animation."
396
+ msgstr ""
397
+
398
+ #: ../frontend.php:25
399
+ msgid "You have to insert a valid alias in the shortcode"
400
+ msgstr ""
401
+
402
+ #: ../frontend.php:43 ../frontend.php:47
403
+ msgid "The slider hasn't been found"
404
+ msgstr ""
405
+
406
+ #: ../home.php:7
407
+ msgid "No Sliders found. Please add a new one."
408
+ msgstr ""
409
+
410
+ #: ../home.php:17
411
+ msgid "Sliders List"
412
+ msgstr ""
413
+
414
+ #: ../home.php:22
415
+ msgid "ID"
416
+ msgstr ""
417
+
418
+ #: ../home.php:23
419
+ msgid "Name"
420
+ msgstr ""
421
+
422
+ #: ../home.php:24
423
+ msgid "Alias"
424
+ msgstr ""
425
+
426
+ #: ../home.php:25
427
+ msgid "Shortcode"
428
+ msgstr ""
429
+
430
+ #: ../home.php:26
431
+ msgid "Actions"
432
+ msgstr ""
433
+
434
+ #: ../home.php:36
435
+ msgid "Edit Slider"
436
+ msgstr ""
437
+
438
+ #: ../home.php:37
439
+ msgid "Duplicate Slider"
440
+ msgstr ""
441
+
442
+ #: ../home.php:38
443
+ msgid "Export Slider"
444
+ msgstr ""
445
+
446
+ #: ../home.php:39
447
+ msgid "Delete Slider"
448
+ msgstr ""
449
+
450
+ #: ../home.php:51
451
+ msgid "Add Slider"
452
+ msgstr ""
453
+
454
+ #: ../home.php:52
455
+ msgid "Import Slider"
456
+ msgstr ""
457
+
458
+ #: ../slider.php:6
459
+ msgid "Full Width"
460
+ msgstr ""
461
+
462
+ #: ../slider.php:7
463
+ msgid "Fixed"
464
+ msgstr ""
465
+
466
+ #: ../slider.php:17 ../slider.php:21
467
+ msgid "Slider Name"
468
+ msgstr ""
469
+
470
+ #: ../slider.php:27
471
+ msgid "Alias:"
472
+ msgstr ""
473
+
474
+ #: ../slider.php:39
475
+ msgid "Shortcode:"
476
+ msgstr ""
477
+
478
+ #: ../slider.php:54
479
+ msgid "Slider General Options"
480
+ msgstr ""
481
+
482
+ #: ../slider.php:64
483
+ msgid "Layout"
484
+ msgstr ""
485
+
486
+ #: ../slider.php:79
487
+ msgid "Modify the layout type of the slider."
488
+ msgstr ""
489
+
490
+ #: ../slider.php:83
491
+ msgid "Responsive"
492
+ msgstr ""
493
+
494
+ #: ../slider.php:98
495
+ msgid "The slider will be adapted to the screen size."
496
+ msgstr ""
497
+
498
+ #: ../slider.php:102
499
+ msgid "Start Width"
500
+ msgstr ""
501
+
502
+ #: ../slider.php:111
503
+ msgid "The content initial width of the slider."
504
+ msgstr ""
505
+
506
+ #: ../slider.php:115
507
+ msgid "Start Height"
508
+ msgstr ""
509
+
510
+ #: ../slider.php:124
511
+ msgid "The content initial height of the slider."
512
+ msgstr ""
513
+
514
+ #: ../slider.php:128
515
+ msgid "Automatic Slide"
516
+ msgstr ""
517
+
518
+ #: ../slider.php:143
519
+ msgid "The slides loop is automatic."
520
+ msgstr ""
521
+
522
+ #: ../slider.php:147
523
+ msgid "Show Controls"
524
+ msgstr ""
525
+
526
+ #: ../slider.php:162
527
+ msgid "Show the previous and next arrows."
528
+ msgstr ""
529
+
530
+ #: ../slider.php:166
531
+ msgid "Show Navigation"
532
+ msgstr ""
533
+
534
+ #: ../slider.php:181
535
+ msgid "Show the links buttons to change slide."
536
+ msgstr ""
537
+
538
+ #: ../slider.php:185
539
+ msgid "Enable swipe and drag"
540
+ msgstr ""
541
+
542
+ #: ../slider.php:200
543
+ msgid "Enable swipe left, swipe right, drag left, drag right commands."
544
+ msgstr ""
545
+
546
+ #: ../slider.php:204
547
+ msgid "Show Progress Bar"
548
+ msgstr ""
549
+
550
+ #: ../slider.php:219
551
+ msgid "Draw the progress bar during the slide execution."
552
+ msgstr ""
553
+
554
+ #: ../slider.php:223
555
+ msgid "Pause on Hover"
556
+ msgstr ""
557
+
558
+ #: ../slider.php:238
559
+ msgid "Pause the current slide when hovered."
560
+ msgstr ""
561
+
562
+ #: ../slider.php:242
563
+ msgid "Callbacks"
564
+ msgstr ""
565
+
566
+ #: ../slider.php:260
567
+ msgid "Some jQuery functions that you can fire during the slider execution."
568
+ msgstr ""
569
+
570
+ #: ../slides.php:24
571
+ msgid "Add Slide"
572
+ msgstr ""
573
+
574
+ #: ../slides.php:65
575
+ msgid "Slide Options"
576
+ msgstr ""
577
+
578
+ #: ../slides.php:76
579
+ msgid "Background"
580
+ msgstr ""
581
+
582
+ #: ../slides.php:80 ../slides.php:124
583
+ msgid "Background image:"
584
+ msgstr ""
585
+
586
+ #: ../slides.php:83 ../slides.php:128 ../slides.php:131
587
+ msgid "Select image"
588
+ msgstr ""
589
+
590
+ #: ../slides.php:89 ../slides.php:138
591
+ msgid "Background color:"
592
+ msgstr ""
593
+
594
+ #: ../slides.php:93 ../slides.php:143 ../slides.php:145
595
+ msgid "Transparent"
596
+ msgstr ""
597
+
598
+ #: ../slides.php:97 ../slides.php:159
599
+ msgid "Enter value"
600
+ msgstr ""
601
+
602
+ #: ../slides.php:103 ../slides.php:166
603
+ msgid "Background position-x:"
604
+ msgstr ""
605
+
606
+ #: ../slides.php:106 ../slides.php:169
607
+ msgid "Background position-y:"
608
+ msgstr ""
609
+
610
+ #: ../slides.php:112 ../slides.php:175
611
+ msgid "Background repeat:"
612
+ msgstr ""
613
+
614
+ #: ../slides.php:114 ../slides.php:178 ../slides.php:181
615
+ msgid "Repeat"
616
+ msgstr ""
617
+
618
+ #: ../slides.php:115 ../slides.php:179 ../slides.php:182
619
+ msgid "No repeat"
620
+ msgstr ""
621
+
622
+ #: ../slides.php:121 ../slides.php:189
623
+ msgid "Background size:"
624
+ msgstr ""
625
+
626
+ #: ../slides.php:194
627
+ msgid "The background of the slide and its proprieties."
628
+ msgstr ""
629
+
630
+ #: ../slides.php:197
631
+ msgid "Presets:"
632
+ msgstr ""
633
+
634
+ #: ../slides.php:200
635
+ msgid "Full width responsive background image"
636
+ msgstr ""
637
+
638
+ #: ../slides.php:201
639
+ msgid "Pattern background image"
640
+ msgstr ""
641
+
642
+ #: ../slides.php:221
643
+ msgid "The in animation of the slide."
644
+ msgstr ""
645
+
646
+ #: ../slides.php:240
647
+ msgid "The out animation of the slide."
648
+ msgstr ""
649
+
650
+ #: ../slides.php:253
651
+ msgid "The time that the slide will remain on the screen."
652
+ msgstr ""
653
+
654
+ #: ../slides.php:257
655
+ msgid "Ease In"
656
+ msgstr ""
657
+
658
+ #: ../slides.php:266
659
+ msgid "The time that the slide will take to get in."
660
+ msgstr ""
661
+
662
+ #: ../slides.php:270
663
+ msgid "Ease Out"
664
+ msgstr ""
665
+
666
+ #: ../slides.php:279
667
+ msgid "The time that the slide will take to get out."
668
+ msgstr ""
669
+
670
+ #: ../slides.php:303
671
+ msgid ""
672
+ "Open the link (e.g.: http://www.google.it) when the user clicks on the "
673
+ "background. Leave it empty if you don't want it."
674
+ msgstr ""
675
+
676
+ #: ../slides.php:315
677
+ msgid "Apply CSS to the slide."
678
+ msgstr ""
wordpress/slider.php CHANGED
@@ -294,6 +294,51 @@
294
  <?php _e('The slide that will be displayed first.', 'crelly-slider'); ?>
295
  </td>
296
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
297
  <tr>
298
  <td class="cs-name"><?php _e('Callbacks', 'crelly-slider'); ?></td>
299
  <td class="cs-content">
294
  <?php _e('The slide that will be displayed first.', 'crelly-slider'); ?>
295
  </td>
296
  </tr>
297
+ <tr>
298
+ <td class="cs-name"><?php _e('Display slider from/to', 'crelly-slider'); ?></td>
299
+ <td class="cs-content">
300
+ <?php
301
+ $minDate = '1000-01-01 00:00:00';
302
+ $maxDate = '9999-12-31 23:59:59';
303
+
304
+ if(!$edit || ($edit && $slider->fromDate == $minDate)) echo '<input checked id="cs-slider-displayImmediately" type="checkbox">' . __('Display from now', 'crelly-slider');
305
+ else echo '<input id="cs-slider-displayImmediately" type="checkbox">' . __('Display from now', 'crelly-slider');
306
+
307
+ if(!$edit || ($edit && $slider->fromDate == $minDate)) echo '<div style="display: none;" id="cs-slider-displayFromWrapper">';
308
+ else echo '<div id="cs-slider-displayFromWrapper">';
309
+
310
+ echo '<br />';
311
+ _e('Display from', 'crelly-slider');
312
+ echo ':<br />';
313
+ if(!$edit || ($edit && $slider->fromDate == $minDate)) echo '<input class="cs-slider-datepicker" id="cs-slider-fromDate" type="text" />';
314
+ else echo '<input class="cs-slider-datepicker" id="cs-slider-fromDate" type="text" value="' . sanitize_text_field($slider->fromDate) .'" />';
315
+
316
+ echo '</div>';
317
+ ?>
318
+
319
+ <br />
320
+ <br />
321
+
322
+ <?php
323
+ if(!$edit || ($edit && $slider->toDate == $maxDate)) echo '<input checked id="cs-slider-displayForever" type="checkbox">' . __('Display forever', 'crelly-slider');
324
+ else echo '<input id="cs-slider-displayForever" type="checkbox">' . __('Display forever', 'crelly-slider');
325
+
326
+ if(!$edit || ($edit && $slider->toDate == $maxDate)) echo '<div style="display: none;" id="cs-slider-displayToWrapper">';
327
+ else echo '<div id="cs-slider-displayToWrapper">';
328
+
329
+ echo '<br />';
330
+ _e('Display to', 'crelly-slider');
331
+ echo ':<br />';
332
+ if(!$edit || ($edit && $slider->toDate == $maxDate)) echo '<input class="cs-slider-datepicker" id="cs-slider-toDate" type="text" />';
333
+ else echo '<input class="cs-slider-datepicker" id="cs-slider-toDate" type="text" value="' . sanitize_text_field($slider->toDate) .'" />';
334
+
335
+ echo '</div>';
336
+ ?>
337
+ </td>
338
+ <td class="cs-description">
339
+ <?php _e('Need a slider during Black Friday days? This is the option you need!', 'crelly-slider'); ?>
340
+ </td>
341
+ </tr>
342
  <tr>
343
  <td class="cs-name"><?php _e('Callbacks', 'crelly-slider'); ?></td>
344
  <td class="cs-content">
wordpress/slides.php CHANGED
@@ -348,7 +348,7 @@ function crellyslider_printSlide($slider, $slide, $edit) {
348
  if(!$void) {
349
  global $wpdb;
350
 
351
- $id = isset($_GET['id']) ? esc_sql($_GET['id']) : NULL;
352
  if($id == NULL || ($id != NULL && !CrellySliderCommon::sliderExists($id))) {
353
  die();
354
  }
348
  if(!$void) {
349
  global $wpdb;
350
 
351
+ $id = isset($_GET['id']) ? (int)$_GET['id'] : NULL;
352
  if($id == NULL || ($id != NULL && !CrellySliderCommon::sliderExists($id))) {
353
  die();
354
  }
wordpress/tables.php CHANGED
@@ -40,6 +40,8 @@ class CrellySliderTables {
40
  randomOrder INT DEFAULT 0,
41
  startFromSlide INT DEFAULT 0,
42
  callbacks TEXT CHARACTER SET utf8,
 
 
43
  UNIQUE KEY id (id)
44
  );";
45
 
40
  randomOrder INT DEFAULT 0,
41
  startFromSlide INT DEFAULT 0,
42
  callbacks TEXT CHARACTER SET utf8,
43
+ fromDate DATETIME DEFAULT '1000-01-01 00:00:00',
44
+ toDate DATETIME DEFAULT '9999-12-31 23:59:59',
45
  UNIQUE KEY id (id)
46
  );";
47