Slideshow - Version 2.2.23

Version Description

  • Fixed: Despite default stylesheets now loading through static file again, admin-ajax.php was still being called.
  • Fixed: Invalid HTML in the shortcode inserter. Thanks to Iazel.
  • Fixed: HTML5 validation issue when loading stylesheets in the head of the document.
  • Updated Spanish translation, thanks to Manuel Ballesta Ruiz.
Download this release

Release Info

Developer stefanboonstra
Plugin Icon 128x128 Slideshow
Version 2.2.23
Comparing to
See all releases

Code changes from version 2.2.22 to 2.2.23

classes/SlideshowPluginSlideshowStylesheet.php CHANGED
@@ -80,55 +80,34 @@ class SlideshowPluginSlideshowStylesheet
80
  */
81
  public static function enqueueStylesheet($name = null)
82
  {
83
- $enqueueDynamicStylesheet = true;
84
- $version = SlideshowPluginMain::$version;
85
-
86
- if (isset($name))
87
  {
88
- // Try to get the custom style's version
89
- $customStyle = get_option($name, false);
90
- $customStyleVersion = false;
91
 
92
- if ($customStyle)
93
  {
94
- $customStyleVersion = get_option($name . '_version', false);
95
- }
96
-
97
- // Style name and version
98
- if ($customStyle && $customStyleVersion)
99
- {
100
- $version = $customStyleVersion;
101
- }
102
- else
103
- {
104
- $enqueueDynamicStylesheet = false;
105
- $name = str_replace('.css', '', $name);
106
  }
107
  }
108
  else
109
  {
110
- $enqueueDynamicStylesheet = false;
111
- $name = 'style-light';
112
- }
113
 
114
- // Enqueue stylesheet
115
- if ($enqueueDynamicStylesheet)
116
- {
117
- wp_enqueue_style(
118
- 'slideshow-jquery-image-gallery-ajax-stylesheet_' . $name,
119
- admin_url('admin-ajax.php?action=slideshow_jquery_image_gallery_load_stylesheet&style=' . $name, 'admin'),
120
- array(),
121
- $version
122
- );
123
- }
124
- else
125
- {
126
- wp_enqueue_style(
127
- 'slideshow-jquery-image-gallery-stylesheet_' . $name,
128
- SlideshowPluginMain::getPluginUrl() . '/css/' . $name . '.css',
129
- array(),
130
- $version
131
- );
132
  }
133
 
134
  return array($name, $version);
@@ -187,11 +166,8 @@ class SlideshowPluginSlideshowStylesheet
187
  */
188
  public static function getStylesheet($styleName)
189
  {
190
- // Get custom style keys
191
- $customStyleKeys = array_keys(get_option(SlideshowPluginGeneralSettings::$customStyles, array()));
192
-
193
- // Match $styleName against custom style keys
194
- if (in_array($styleName, $customStyleKeys))
195
  {
196
  // Get custom stylesheet
197
  $stylesheet = get_option($styleName, '');
@@ -220,4 +196,17 @@ class SlideshowPluginSlideshowStylesheet
220
 
221
  return $stylesheet;
222
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
223
  }
80
  */
81
  public static function enqueueStylesheet($name = null)
82
  {
83
+ if (self::isCustomStylesheet($name))
 
 
 
84
  {
85
+ $version = get_option($name . '_version', SlideshowPluginMain::$version);
 
 
86
 
87
+ if (!self::$allStylesheetsRegistered)
88
  {
89
+ wp_enqueue_style(
90
+ 'slideshow-jquery-image-gallery-ajax-stylesheet_' . $name,
91
+ admin_url('admin-ajax.php?action=slideshow_jquery_image_gallery_load_stylesheet&style=' . $name, 'admin'),
92
+ array(),
93
+ $version
94
+ );
 
 
 
 
 
 
95
  }
96
  }
97
  else
98
  {
99
+ $name = str_replace('.css', '', $name);
100
+ $version = SlideshowPluginMain::$version;
 
101
 
102
+ if (!self::$allStylesheetsRegistered)
103
+ {
104
+ wp_enqueue_style(
105
+ 'slideshow-jquery-image-gallery-stylesheet_' . $name,
106
+ SlideshowPluginMain::getPluginUrl() . '/css/' . $name . '.css',
107
+ array(),
108
+ $version
109
+ );
110
+ }
 
 
 
 
 
 
 
 
 
111
  }
112
 
113
  return array($name, $version);
166
  */
167
  public static function getStylesheet($styleName)
168
  {
169
+ // Check if $styleName is a custom stylesheet
170
+ if (self::isCustomStylesheet($styleName))
 
 
 
171
  {
172
  // Get custom stylesheet
173
  $stylesheet = get_option($styleName, '');
196
 
197
  return $stylesheet;
198
  }
199
+
200
+ /**
201
+ * Checks if the passed $styleName is a custom stylesheet or not.
202
+ *
203
+ * @since 2.2.23
204
+ * @param string $styleName
205
+ * @return boolean $isCustomStyle
206
+ */
207
+ public static function isCustomStylesheet($styleName)
208
+ {
209
+ // Get array of custom style keys and check if $styleName is in this array
210
+ return in_array($styleName, array_keys(get_option(SlideshowPluginGeneralSettings::$customStyles, array())));
211
+ }
212
  }
css/all.backend.css CHANGED
@@ -1,155 +1,155 @@
1
- #settings.postbox table tr {
2
- height: 31px;
3
- }
4
- .sortable-slides-list .sortable-slides-list-item div.hndle {
5
- padding: 8px 12px;
6
- margin: 0;
7
- font-size: 14px;
8
- line-height: 1.4;
9
- border-bottom: 1px solid #eee;
10
- }
11
- .sortable-slides-list .sortable-slides-list-item div.hndle .slide-icon,
12
- .sortable-slides-list .sortable-slides-list-item div.hndle .slide-title {
13
- float: left;
14
- margin-right: 8px;
15
- }
16
- .sortable-slides-list .sortable-slides-list-item div.hndle .slide-icon {
17
- width: 1.4em;
18
- height: 1.4em;
19
- }
20
- .sortable-slides-list .sortable-slides-list-item div.hndle .slide-icon.image-slide-icon {
21
- background: url('../images/SlideshowPluginPostType/fa-camera.svg') no-repeat left center;
22
- }
23
- .sortable-slides-list .sortable-slides-list-item div.hndle .slide-icon.text-slide-icon {
24
- background: url('../images/SlideshowPluginPostType/fa-align-left.svg') no-repeat left center;
25
- }
26
- .sortable-slides-list .sortable-slides-list-item div.hndle .slide-icon.video-slide-icon {
27
- background: url('../images/SlideshowPluginPostType/fa-video-camera.svg') no-repeat left center;
28
- }
29
- .sortable-slides-list .sortable-slides-list-item div.inside {
30
- width: auto;
31
- }
32
- .sortable-slides-list .sortable-slides-list-item div.inside .slideshow-group {
33
- margin: 5px 0;
34
- }
35
- .sortable-slides-list .sortable-slides-list-item div.inside .slideshow-group input[type="checkbox"] {
36
- margin-top: 8px;
37
- }
38
- .sortable-slides-list .sortable-slides-list-item div.inside .slideshow-group .slideshow-label {
39
- font-style: italic;
40
- line-height: 30px;
41
- }
42
- .sortable-slides-list .sortable-slides-list-item div.inside .slideshow-group.slideshow-delete-slide,
43
- .sortable-slides-list .sortable-slides-list-item div.inside .slideshow-group.slideshow-delete-new-slide {
44
- color: red;
45
- cursor: pointer;
46
- }
47
- .sortable-slides-list .sortable-slides-list-item div.inside .slideshow-group .slideshow-left {
48
- float: left;
49
- }
50
- .sortable-slides-list .sortable-slides-list-item div.inside .slideshow-group .slideshow-right {
51
- float: right;
52
- }
53
- .sortable-slides-list .sortable-slides-list-item div.inside.widefat {
54
- border-color: #dfdfdf;
55
- }
56
- #slideshow-slide-inserter-popup-background {
57
- background: #000;
58
- display: none;
59
- position: absolute;
60
- top: 0;
61
- left: 0;
62
- width: 100%;
63
- z-index: 10000;
64
- zoom: 1;
65
- filter: alpha(opacity = 50);
66
- opacity: 0.5;
67
- }
68
- #slideshow-slide-inserter-popup {
69
- background: #fff;
70
- display: none;
71
- position: absolute;
72
- padding: 20px;
73
- line-height: 23px;
74
- z-index: 10001;
75
- width: 600px;
76
- }
77
- #slideshow-slide-inserter-popup #search {
78
- float: left;
79
- width: 200px;
80
- }
81
- #slideshow-slide-inserter-popup #close {
82
- float: right;
83
- width: 32px;
84
- height: 32px;
85
- background: url('../images/SlideshowPluginSlideInserter/close.png') no-repeat;
86
- }
87
- #slideshow-slide-inserter-popup #close:hover {
88
- cursor: pointer;
89
- }
90
- #slideshow-slide-inserter-popup #search-results {
91
- height: 400px;
92
- overflow-y: scroll;
93
- }
94
- .feature-filter {
95
- padding: 0 10px 10px;
96
- margin: 10px;
97
- }
98
- .general-settings-tab {
99
- float: left;
100
- }
101
- .general-settings-tab td {
102
- line-height: 1.5em;
103
- padding: 0 10px;
104
- }
105
- .general-settings-tab h4 {
106
- text-align: center;
107
- }
108
- .default-slideshow-settings-tab {
109
- width: auto !important;
110
- float: left;
111
- }
112
- .default-slideshow-settings-tab tr {
113
- height: 31px;
114
- }
115
- .default-slideshow-settings-tab tr td {
116
- padding: 0 10px !important;
117
- }
118
- .default-slideshow-settings-tab tr h4 {
119
- text-align: center;
120
- }
121
- .custom-styles-tab.feature-filter {
122
- padding-bottom: 0;
123
- }
124
- .custom-styles-tab .styles-list ul {
125
- margin-left: 10px;
126
- }
127
- .custom-styles-tab .styles-list li {
128
- float: none;
129
- }
130
- .custom-styles-tab .styles-list li .style-title {
131
- float: left;
132
- padding-right: 10px;
133
- }
134
- .custom-styles-tab .styles-list li .style-action {
135
- float: right;
136
- color: #21759B;
137
- }
138
- .custom-styles-tab .styles-list li .style-action:hover {
139
- cursor: pointer;
140
- color: #D54E21;
141
- }
142
- .custom-styles-tab .styles-list li .style-delete {
143
- float: right;
144
- color: #BC0B0B;
145
- }
146
- .custom-styles-tab .styles-list li .style-delete:hover {
147
- cursor: pointer;
148
- color: red;
149
- }
150
- .custom-styles-tab .styles-list span {
151
- padding: 0 2px;
152
- }
153
- .custom-styles-tab .style-editors .style-editor textarea {
154
- width: 100%;
155
- }
1
+ #settings.postbox table tr {
2
+ height: 31px;
3
+ }
4
+ .sortable-slides-list .sortable-slides-list-item div.hndle {
5
+ padding: 8px 12px;
6
+ margin: 0;
7
+ font-size: 14px;
8
+ line-height: 1.4;
9
+ border-bottom: 1px solid #eee;
10
+ }
11
+ .sortable-slides-list .sortable-slides-list-item div.hndle .slide-icon,
12
+ .sortable-slides-list .sortable-slides-list-item div.hndle .slide-title {
13
+ float: left;
14
+ margin-right: 8px;
15
+ }
16
+ .sortable-slides-list .sortable-slides-list-item div.hndle .slide-icon {
17
+ width: 1.4em;
18
+ height: 1.4em;
19
+ }
20
+ .sortable-slides-list .sortable-slides-list-item div.hndle .slide-icon.image-slide-icon {
21
+ background: url('../images/SlideshowPluginPostType/fa-camera.svg') no-repeat left center;
22
+ }
23
+ .sortable-slides-list .sortable-slides-list-item div.hndle .slide-icon.text-slide-icon {
24
+ background: url('../images/SlideshowPluginPostType/fa-align-left.svg') no-repeat left center;
25
+ }
26
+ .sortable-slides-list .sortable-slides-list-item div.hndle .slide-icon.video-slide-icon {
27
+ background: url('../images/SlideshowPluginPostType/fa-video-camera.svg') no-repeat left center;
28
+ }
29
+ .sortable-slides-list .sortable-slides-list-item div.inside {
30
+ width: auto;
31
+ }
32
+ .sortable-slides-list .sortable-slides-list-item div.inside .slideshow-group {
33
+ margin: 5px 0;
34
+ }
35
+ .sortable-slides-list .sortable-slides-list-item div.inside .slideshow-group input[type="checkbox"] {
36
+ margin-top: 8px;
37
+ }
38
+ .sortable-slides-list .sortable-slides-list-item div.inside .slideshow-group .slideshow-label {
39
+ font-style: italic;
40
+ line-height: 30px;
41
+ }
42
+ .sortable-slides-list .sortable-slides-list-item div.inside .slideshow-group.slideshow-delete-slide,
43
+ .sortable-slides-list .sortable-slides-list-item div.inside .slideshow-group.slideshow-delete-new-slide {
44
+ color: red;
45
+ cursor: pointer;
46
+ }
47
+ .sortable-slides-list .sortable-slides-list-item div.inside .slideshow-group .slideshow-left {
48
+ float: left;
49
+ }
50
+ .sortable-slides-list .sortable-slides-list-item div.inside .slideshow-group .slideshow-right {
51
+ float: right;
52
+ }
53
+ .sortable-slides-list .sortable-slides-list-item div.inside.widefat {
54
+ border-color: #dfdfdf;
55
+ }
56
+ #slideshow-slide-inserter-popup-background {
57
+ background: #000;
58
+ display: none;
59
+ position: absolute;
60
+ top: 0;
61
+ left: 0;
62
+ width: 100%;
63
+ z-index: 10000;
64
+ zoom: 1;
65
+ filter: alpha(opacity = 50);
66
+ opacity: 0.5;
67
+ }
68
+ #slideshow-slide-inserter-popup {
69
+ background: #fff;
70
+ display: none;
71
+ position: absolute;
72
+ padding: 20px;
73
+ line-height: 23px;
74
+ z-index: 10001;
75
+ width: 600px;
76
+ }
77
+ #slideshow-slide-inserter-popup #search {
78
+ float: left;
79
+ width: 200px;
80
+ }
81
+ #slideshow-slide-inserter-popup #close {
82
+ float: right;
83
+ width: 32px;
84
+ height: 32px;
85
+ background: url('../images/SlideshowPluginSlideInserter/close.png') no-repeat;
86
+ }
87
+ #slideshow-slide-inserter-popup #close:hover {
88
+ cursor: pointer;
89
+ }
90
+ #slideshow-slide-inserter-popup #search-results {
91
+ height: 400px;
92
+ overflow-y: scroll;
93
+ }
94
+ .feature-filter {
95
+ padding: 0 10px 10px;
96
+ margin: 10px;
97
+ }
98
+ .general-settings-tab {
99
+ float: left;
100
+ }
101
+ .general-settings-tab td {
102
+ line-height: 1.5em;
103
+ padding: 0 10px;
104
+ }
105
+ .general-settings-tab h4 {
106
+ text-align: center;
107
+ }
108
+ .default-slideshow-settings-tab {
109
+ width: auto !important;
110
+ float: left;
111
+ }
112
+ .default-slideshow-settings-tab tr {
113
+ height: 31px;
114
+ }
115
+ .default-slideshow-settings-tab tr td {
116
+ padding: 0 10px !important;
117
+ }
118
+ .default-slideshow-settings-tab tr h4 {
119
+ text-align: center;
120
+ }
121
+ .custom-styles-tab.feature-filter {
122
+ padding-bottom: 0;
123
+ }
124
+ .custom-styles-tab .styles-list ul {
125
+ margin-left: 10px;
126
+ }
127
+ .custom-styles-tab .styles-list li {
128
+ float: none;
129
+ }
130
+ .custom-styles-tab .styles-list li .style-title {
131
+ float: left;
132
+ padding-right: 10px;
133
+ }
134
+ .custom-styles-tab .styles-list li .style-action {
135
+ float: right;
136
+ color: #21759B;
137
+ }
138
+ .custom-styles-tab .styles-list li .style-action:hover {
139
+ cursor: pointer;
140
+ color: #D54E21;
141
+ }
142
+ .custom-styles-tab .styles-list li .style-delete {
143
+ float: right;
144
+ color: #BC0B0B;
145
+ }
146
+ .custom-styles-tab .styles-list li .style-delete:hover {
147
+ cursor: pointer;
148
+ color: red;
149
+ }
150
+ .custom-styles-tab .styles-list span {
151
+ padding: 0 2px;
152
+ }
153
+ .custom-styles-tab .style-editors .style-editor textarea {
154
+ width: 100%;
155
+ }
js/min/all.backend.min.js CHANGED
@@ -1,7 +1,7 @@
1
- slideshow_jquery_image_gallery_backend_script=function(){var i=jQuery,e={};return e.isBackendInitialized=!1,e.init=function(){e.isBackendInitialized||(e.isBackendInitialized=!0,i(document).trigger("slideshowBackendReady"))},i(document).ready(e.init),i(window).load(e.init),e}();
2
- slideshow_jquery_image_gallery_backend_script.generalSettings=function(){var e=jQuery,i={};return i.isCurrentPage=!1,i.init=function(){"slideshow_page_general_settings"===window.pagenow&&(i.isCurrentPage=!0,i.activateUserCapabilities())},i.activateUserCapabilities=function(){e("input").change(function(i){var t,a,s,r=e(i.currentTarget),n="slideshow-jquery-image-gallery-add-slideshows",d="slideshow-jquery-image-gallery-edit-slideshows",l="slideshow-jquery-image-gallery-delete-slideshows";"checkbox"==r.attr("type").toLowerCase()&&(t=r.attr("id").split("_"),a=t.shift(),s=t.join("_"),a!==d||r.attr("checked")?(a===n||a===l)&&e("#"+d+"_"+s).attr("checked",!0):(e("#"+n+"_"+s).attr("checked",!1),e("#"+l+"_"+s).attr("checked",!1)))})},e(document).bind("slideshowBackendReady",i.init),i}();
3
- slideshow_jquery_image_gallery_backend_script.generalSettings.customStyles=function(){var e=jQuery,t={};return t.init=function(){slideshow_jquery_image_gallery_backend_script.generalSettings.isCurrentPage&&t.activateNavigation()},t.activateNavigation=function(){e(".nav-tab").click(function(t){var a,i=e(t.currentTarget),r=e(".nav-tab-active");r.removeClass("nav-tab-active"),i.addClass("nav-tab-active"),e(r.attr("href").replace("#",".")).hide(),e(i.attr("href").replace("#",".")).show(),a=e("input[name=_wp_http_referer]"),a.attr("value",a.attr("value").split("#").shift()+i.attr("href"))}),e('a[href="#'+document.URL.split("#").pop()+'"]').trigger("click")},e(document).bind("slideshowBackendReady",t.init),t}();
4
- slideshow_jquery_image_gallery_backend_script.generalSettings.customStyles=function(){var t=jQuery,e={};return e.init=function(){slideshow_jquery_image_gallery_backend_script.generalSettings.isCurrentPage&&(e.activateActionButtons(),e.activateDeleteButtons())},e.activateActionButtons=function(){t(".custom-styles-tab .styles-list .style-action.style-default").click(function(s){var l,i,o,n,a,c=t(s.currentTarget),y=c.closest("li").find(".style-title").html(),u=c.closest("li").find(".style-content").html(),r=window.slideshow_jquery_image_gallery_backend_script_generalSettings,m="slideshow-jquery-image-gallery-custom-styles";"string"!=typeof u||u.length<=0||("object"==typeof r&&("object"==typeof r.localization&&void 0!==r.localization.newCustomizationPrefix&&r.localization.newCustomizationPrefix.length>0&&(y=r.localization.newCustomizationPrefix+" - "+y),"object"==typeof r.data&&void 0!==r.data.customStylesKey&&r.data.customStylesKey.length>0&&(m=r.data.customStylesKey)),l=m+"_"+(e.getHighestCustomStyleID()+1),n=t(".custom-styles-tab .custom-style-templates"),i=n.find(".style-editor").clone(),i.addClass(l),i.find(".new-custom-style-title").attr("value",y),i.find(".new-custom-style-content").html(u),i.find(".new-custom-style-title").attr("name",m+"["+l+"][title]"),i.find(".new-custom-style-content").attr("name",m+"["+l+"][style]"),t(".custom-styles-tab .style-editors").append(i),setTimeout(function(){i.fadeIn(200)},200),o=n.find(".custom-styles-list-item").clone(!0),o.removeClass("custom-styles-list-item"),o.find(".style-title").html(y),o.find(".style-action").addClass(l),o.find(".style-delete").addClass(l),a=t(".custom-styles-tab .styles-list .custom-styles-list"),a.find(".no-custom-styles-found").remove(),a.append(o))}),t(".custom-styles-tab .styles-list .style-action, .custom-styles-tab .custom-style-templates .custom-styles-list-item .style-action").click(function(e){var s=t(e.currentTarget).attr("class").split(" ")[1];void 0!==s&&(t(".custom-styles-tab .style-editors .style-editor").each(function(e,s){t(s).fadeOut(200)}),setTimeout(function(){t(".style-editor."+s).fadeIn(200)},200))})},e.activateDeleteButtons=function(){t(".custom-styles-tab .styles-list .style-delete, .custom-styles-tab .custom-style-templates .custom-styles-list-item .style-delete").click(function(e){var s=t(e.currentTarget),l=s.attr("class").split(" ")[1],i=window.slideshow_jquery_image_gallery_backend_script_generalSettings,o="Are you sure you want to delete this custom style?";void 0!==l&&("object"==typeof i&&"object"==typeof i.localization&&void 0!==i.localization.confirmDeleteMessage&&i.localization.confirmDeleteMessage.length>0&&(o=i.localization.confirmDeleteMessage),confirm(o)&&(t(".custom-styles-tab .style-editors .style-editor."+l).remove(),s.closest("li").remove()))})},e.getHighestCustomStyleID=function(){var e=0;return t(".custom-styles-tab .style-editors .style-editor").each(function(s,l){var i=parseInt(t(l).attr("class").split("_").pop(),10);i>e&&(e=i)}),parseInt(e,10)},t(document).bind("slideshowBackendReady",e.init),e}();
5
- slideshow_jquery_image_gallery_backend_script.editSlideshow=function(){var i=jQuery,e={};return e.isCurrentPage=!1,e.init=function(){"slideshow"===window.pagenow&&(e.isCurrentPage=!0,e.activateSettingsVisibilityDependency())},e.activateSettingsVisibilityDependency=function(){i(".depends-on-field-value").each(function(t,n){var s=i(n),a=s.attr("class").split(" "),o=s.closest("tr");i('input[name="'+a[1]+'"]:checked').val()==a[2]?o.show():o.hide(),i('input[name="'+a[1]+'"]').change(a,function(t){var n=i("."+a[3]).closest("tr");i(t.currentTarget).val()==a[2]?e.animateElementVisibility(n,!0):e.animateElementVisibility(n,!1)})})},e.animateElementVisibility=function(e,t){var n=i(e);void 0===t&&(n.stop(!0,!0),t=!n.is(":visible")),t?(n.stop(!0,!0).show().css("background-color","#c0dd52"),setTimeout(function(){n.stop(!0,!0).animate({"background-color":"transparent"},1500)},500)):(n.stop(!0,!0).css("background-color","#d44f6e"),setTimeout(function(){n.stop(!0,!0).hide(1500,function(){n.css("background-color","transparent")})},500))},i(document).bind("slideshowBackendReady",e.init),e}();
6
- slideshow_jquery_image_gallery_backend_script.editSlideshow.slideManager=function(){var e=jQuery,t={};return t.uploader=null,t.init=function(){slideshow_jquery_image_gallery_backend_script.editSlideshow.isCurrentPage&&(t.activateUploader(),t.activate(),t.activeOldUploader())},t.activateUploader=function(){e(".slideshow-insert-image-slide").on("click",function(e){e.preventDefault();var i,l;return t.uploader?(t.uploader.open(),void 0):(l=window.slideshow_jquery_image_gallery_backend_script_editSlideshow,i="","object"==typeof l&&"object"==typeof l.localization&&void 0!==l.localization.uploaderTitle&&l.localization.uploaderTitle.length>0&&(i=l.localization.uploaderTitle),t.uploader=wp.media.frames.slideshow_jquery_image_galler_uploader=wp.media({frame:"select",title:i,multiple:!0,library:{type:"image"}}),t.uploader.on("select",function(){var e,i,l=t.uploader.state().get("selection").toJSON();for(i in l)l.hasOwnProperty(i)&&(e=l[i],t.insertImageSlide(e.id,e.title,e.description,e.url,e.alt))}),t.uploader.open(),void 0)})},t.activeOldUploader=function(){var i=e("#slideshow-slide-inserter-popup"),l=e("#slideshow-slide-inserter-popup-background"),s=i.find("#search");l.height(e(document).outerHeight(!0)),i.css({top:parseInt(e(window).height()/2-i.outerHeight(!0)/2,10),left:parseInt(e(window).width()/2-i.outerWidth(!0)/2,10)}),s.focus(),t.getSearchResults(),i.find("#close").click(t.closePopup),l.click(t.closePopup),i.find("#search-submit").click(t.getSearchResults),s.keypress(function(e){13==e.which&&(e.preventDefault(),t.getSearchResults())}),e("#slideshow-insert-image-slide").click(function(){i.css({display:"block"}),l.css({display:"block"})}),e("#slideshow-insert-text-slide").click(t.insertTextSlide),e("#slideshow-insert-video-slide").click(t.insertVideoSlide),e(".slideshow-delete-slide").click(function(i){t.deleteSlide(e(i.currentTarget).closest(".sortable-slides-list-item"))})},t.activate=function(){t.indexSlidesOrder(),e(".sortable-slides-list").sortable({revert:!0,placeholder:"sortable-placeholder",forcePlaceholderSize:!0,stop:function(){t.indexSlidesOrder()},cancel:"input, select, textarea"}),e(".wp-color-picker-field").wpColorPicker({width:234}),e(".open-slides-button").on("click",function(t){t.preventDefault(),e(".sortable-slides-list .sortable-slides-list-item").each(function(t,i){var l=e(i);l.find(".inside").is(":visible")||l.find(".handlediv").trigger("click")})}),e(".close-slides-button").on("click",function(t){t.preventDefault(),e(".sortable-slides-list .sortable-slides-list-item").each(function(t,i){var l=e(i);l.find(".inside").is(":visible")&&l.find(".handlediv").trigger("click")})})},t.deleteSlide=function(e){var t="Are you sure you want to delete this slide?",i=window.slideshow_jquery_image_gallery_backend_script_editSlideshow;"object"==typeof i&&"object"==typeof i.localization&&void 0!==i.localization.confirm&&i.localization.confirm.length>0&&(t=i.localization.confirm),confirm(t)&&e.remove()},t.indexSlidesOrder=function(){e(".sortable-slides-list .sortable-slides-list-item").each(function(t,i){e.each(e(i).find("input, select, textarea"),function(i,l){var s=e(l),n=s.attr("name");void 0===n||n.length<=0||(n=n.replace(/[\[\]']+/g," ").split(" "),s.attr("name",n[0]+"["+(t+1)+"]["+n[2]+"]"))})})},t.getSearchResults=function(i){var l=e("#slideshow-slide-inserter-popup"),s=l.find("#results"),n=[];i=parseInt(i,10),isNaN(i)&&(i=0,s.html("")),e.each(s.find(".result-table-row"),function(t,i){n.push(parseInt(e(i).attr("data-attachment-id"),10))}),e.post(window.ajaxurl,{action:"slideshow_slide_inserter_search_query",search:l.find("#search").attr("value"),offset:i,attachmentIDs:n},function(i){var l;s.append(i),s.find(".insert-attachment").unbind("click").click(function(i){var l=e(i.currentTarget).closest("tr");t.insertImageSlide(l.attr("data-attachment-id"),l.find(".title").text(),l.find(".description").text(),l.find(".image img").attr("src"),l.find(".title").text())}),l=e(".load-more-results"),l&&l.click(function(i){var l=e(i.currentTarget),s=l.attr("data-offset");l.closest("tr").hide(),isNaN(parseInt(s,10))||t.getSearchResults(s)})})},t.insertImageSlide=function(i,l,s,n,a){var d=e(".image-slide-template").find(".sortable-slides-list-item").clone(!0,!0);d.find(".attachment").attr("src",n),d.find(".attachment").attr("title",l),d.find(".attachment").attr("alt",a),d.find(".title").attr("value",l),d.find(".description").html(s),d.find(".alternativeText").attr("value",a),d.find(".postId").attr("value",i),d.find(".title").attr("name","slides[0][title]"),d.find(".titleElementTagID").attr("name","slides[0][titleElementTagID]"),d.find(".description").attr("name","slides[0][description]"),d.find(".descriptionElementTagID").attr("name","slides[0][descriptionElementTagID]"),d.find(".url").attr("name","slides[0][url]"),d.find(".urlTarget").attr("name","slides[0][urlTarget]"),d.find(".alternativeText").attr("name","slides[0][alternativeText]"),d.find(".noFollow").attr("name","slides[0][noFollow]"),d.find(".type").attr("name","slides[0][type]"),d.find(".postId").attr("name","slides[0][postId]"),e(".sortable-slides-list").prepend(d),t.indexSlidesOrder()},t.insertTextSlide=function(){var i=e(".text-slide-template").find(".sortable-slides-list-item").clone(!0,!0);i.find(".title").attr("name","slides[0][title]"),i.find(".titleElementTagID").attr("name","slides[0][titleElementTagID]"),i.find(".description").attr("name","slides[0][description]"),i.find(".descriptionElementTagID").attr("name","slides[0][descriptionElementTagID]"),i.find(".textColor").attr("name","slides[0][textColor]"),i.find(".color").attr("name","slides[0][color]"),i.find(".url").attr("name","slides[0][url]"),i.find(".urlTarget").attr("name","slides[0][urlTarget]"),i.find(".noFollow").attr("name","slides[0][noFollow]"),i.find(".type").attr("name","slides[0][type]"),i.find(".color, .textColor").wpColorPicker(),e(".sortable-slides-list").prepend(i),t.indexSlidesOrder()},t.insertVideoSlide=function(){var i=e(".video-slide-template").find(".sortable-slides-list-item").clone(!0,!0);i.find(".videoId").attr("name","slides[0][videoId]"),i.find(".showRelatedVideos").attr("name","slides[0][showRelatedVideos]"),i.find(".type").attr("name","slides[0][type]"),e(".sortable-slides-list").prepend(i),t.indexSlidesOrder()},t.closePopup=function(){e("#slideshow-slide-inserter-popup, #slideshow-slide-inserter-popup-background").css({display:"none"})},e(document).bind("slideshowBackendReady",t.init),t}();
7
  slideshow_jquery_image_gallery_backend_script.shortcode=function(){var e=jQuery,o={};return o.init=function(){o.activateShortcodeInserter()},o.activateShortcodeInserter=function(){e(".insertSlideshowShortcodeSlideshowInsertButton").click(function(){var o="No slideshow selected.",t="slideshow_deploy",i=parseInt(e("#insertSlideshowShortcodeSlideshowSelect").val(),10),d=window.slideshow_jquery_image_gallery_backend_script_shortcode;return"object"==typeof d&&("object"==typeof d.data&&void 0!==d.data.shortcode&&d.data.shortcode.length>0&&(t=d.data.shortcode),"object"==typeof d.localization&&void 0!==d.localization.undefinedSlideshow&&d.localization.undefinedSlideshow.length>0&&(o=d.localization.undefinedSlideshow)),isNaN(i)?(alert(o),!1):(send_to_editor("["+t+" id='"+i+"']"),tb_remove(),!0)}),e(".insertSlideshowShortcodeCancelButton").click(function(){return tb_remove(),!1})},e(document).bind("slideshowBackendReady",o.init),o}();
1
+ slideshow_jquery_image_gallery_backend_script=function(){var i=jQuery,e={};return e.isBackendInitialized=!1,e.init=function(){e.isBackendInitialized||(e.isBackendInitialized=!0,i(document).trigger("slideshowBackendReady"))},i(document).ready(e.init),i(window).load(e.init),e}();
2
+ slideshow_jquery_image_gallery_backend_script.generalSettings=function(){var e=jQuery,i={};return i.isCurrentPage=!1,i.init=function(){"slideshow_page_general_settings"===window.pagenow&&(i.isCurrentPage=!0,i.activateUserCapabilities())},i.activateUserCapabilities=function(){e("input").change(function(i){var t,a,s,r=e(i.currentTarget),n="slideshow-jquery-image-gallery-add-slideshows",d="slideshow-jquery-image-gallery-edit-slideshows",l="slideshow-jquery-image-gallery-delete-slideshows";"checkbox"==r.attr("type").toLowerCase()&&(t=r.attr("id").split("_"),a=t.shift(),s=t.join("_"),a!==d||r.attr("checked")?(a===n||a===l)&&e("#"+d+"_"+s).attr("checked",!0):(e("#"+n+"_"+s).attr("checked",!1),e("#"+l+"_"+s).attr("checked",!1)))})},e(document).bind("slideshowBackendReady",i.init),i}();
3
+ slideshow_jquery_image_gallery_backend_script.generalSettings.customStyles=function(){var e=jQuery,t={};return t.init=function(){slideshow_jquery_image_gallery_backend_script.generalSettings.isCurrentPage&&t.activateNavigation()},t.activateNavigation=function(){e(".nav-tab").click(function(t){var a,i=e(t.currentTarget),r=e(".nav-tab-active");r.removeClass("nav-tab-active"),i.addClass("nav-tab-active"),e(r.attr("href").replace("#",".")).hide(),e(i.attr("href").replace("#",".")).show(),a=e("input[name=_wp_http_referer]"),a.attr("value",a.attr("value").split("#").shift()+i.attr("href"))}),e('a[href="#'+document.URL.split("#").pop()+'"]').trigger("click")},e(document).bind("slideshowBackendReady",t.init),t}();
4
+ slideshow_jquery_image_gallery_backend_script.generalSettings.customStyles=function(){var t=jQuery,e={};return e.init=function(){slideshow_jquery_image_gallery_backend_script.generalSettings.isCurrentPage&&(e.activateActionButtons(),e.activateDeleteButtons())},e.activateActionButtons=function(){t(".custom-styles-tab .styles-list .style-action.style-default").click(function(s){var l,i,o,n,a,c=t(s.currentTarget),y=c.closest("li").find(".style-title").html(),u=c.closest("li").find(".style-content").html(),r=window.slideshow_jquery_image_gallery_backend_script_generalSettings,m="slideshow-jquery-image-gallery-custom-styles";"string"!=typeof u||u.length<=0||("object"==typeof r&&("object"==typeof r.localization&&void 0!==r.localization.newCustomizationPrefix&&r.localization.newCustomizationPrefix.length>0&&(y=r.localization.newCustomizationPrefix+" - "+y),"object"==typeof r.data&&void 0!==r.data.customStylesKey&&r.data.customStylesKey.length>0&&(m=r.data.customStylesKey)),l=m+"_"+(e.getHighestCustomStyleID()+1),n=t(".custom-styles-tab .custom-style-templates"),i=n.find(".style-editor").clone(),i.addClass(l),i.find(".new-custom-style-title").attr("value",y),i.find(".new-custom-style-content").html(u),i.find(".new-custom-style-title").attr("name",m+"["+l+"][title]"),i.find(".new-custom-style-content").attr("name",m+"["+l+"][style]"),t(".custom-styles-tab .style-editors").append(i),setTimeout(function(){i.fadeIn(200)},200),o=n.find(".custom-styles-list-item").clone(!0),o.removeClass("custom-styles-list-item"),o.find(".style-title").html(y),o.find(".style-action").addClass(l),o.find(".style-delete").addClass(l),a=t(".custom-styles-tab .styles-list .custom-styles-list"),a.find(".no-custom-styles-found").remove(),a.append(o))}),t(".custom-styles-tab .styles-list .style-action, .custom-styles-tab .custom-style-templates .custom-styles-list-item .style-action").click(function(e){var s=t(e.currentTarget).attr("class").split(" ")[1];void 0!==s&&(t(".custom-styles-tab .style-editors .style-editor").each(function(e,s){t(s).fadeOut(200)}),setTimeout(function(){t(".style-editor."+s).fadeIn(200)},200))})},e.activateDeleteButtons=function(){t(".custom-styles-tab .styles-list .style-delete, .custom-styles-tab .custom-style-templates .custom-styles-list-item .style-delete").click(function(e){var s=t(e.currentTarget),l=s.attr("class").split(" ")[1],i=window.slideshow_jquery_image_gallery_backend_script_generalSettings,o="Are you sure you want to delete this custom style?";void 0!==l&&("object"==typeof i&&"object"==typeof i.localization&&void 0!==i.localization.confirmDeleteMessage&&i.localization.confirmDeleteMessage.length>0&&(o=i.localization.confirmDeleteMessage),confirm(o)&&(t(".custom-styles-tab .style-editors .style-editor."+l).remove(),s.closest("li").remove()))})},e.getHighestCustomStyleID=function(){var e=0;return t(".custom-styles-tab .style-editors .style-editor").each(function(s,l){var i=parseInt(t(l).attr("class").split("_").pop(),10);i>e&&(e=i)}),parseInt(e,10)},t(document).bind("slideshowBackendReady",e.init),e}();
5
+ slideshow_jquery_image_gallery_backend_script.editSlideshow=function(){var i=jQuery,e={};return e.isCurrentPage=!1,e.init=function(){"slideshow"===window.pagenow&&(e.isCurrentPage=!0,e.activateSettingsVisibilityDependency())},e.activateSettingsVisibilityDependency=function(){i(".depends-on-field-value").each(function(t,n){var s=i(n),a=s.attr("class").split(" "),o=s.closest("tr");i('input[name="'+a[1]+'"]:checked').val()==a[2]?o.show():o.hide(),i('input[name="'+a[1]+'"]').change(a,function(t){var n=i("."+a[3]).closest("tr");i(t.currentTarget).val()==a[2]?e.animateElementVisibility(n,!0):e.animateElementVisibility(n,!1)})})},e.animateElementVisibility=function(e,t){var n=i(e);void 0===t&&(n.stop(!0,!0),t=!n.is(":visible")),t?(n.stop(!0,!0).show().css("background-color","#c0dd52"),setTimeout(function(){n.stop(!0,!0).animate({"background-color":"transparent"},1500)},500)):(n.stop(!0,!0).css("background-color","#d44f6e"),setTimeout(function(){n.stop(!0,!0).hide(1500,function(){n.css("background-color","transparent")})},500))},i(document).bind("slideshowBackendReady",e.init),e}();
6
+ slideshow_jquery_image_gallery_backend_script.editSlideshow.slideManager=function(){var e=jQuery,t={};return t.uploader=null,t.init=function(){slideshow_jquery_image_gallery_backend_script.editSlideshow.isCurrentPage&&(t.activateUploader(),t.activate(),t.activeOldUploader())},t.activateUploader=function(){e(".slideshow-insert-image-slide").on("click",function(e){e.preventDefault();var i,l;return t.uploader?(t.uploader.open(),void 0):(l=window.slideshow_jquery_image_gallery_backend_script_editSlideshow,i="","object"==typeof l&&"object"==typeof l.localization&&void 0!==l.localization.uploaderTitle&&l.localization.uploaderTitle.length>0&&(i=l.localization.uploaderTitle),t.uploader=wp.media.frames.slideshow_jquery_image_galler_uploader=wp.media({frame:"select",title:i,multiple:!0,library:{type:"image"}}),t.uploader.on("select",function(){var e,i,l=t.uploader.state().get("selection").toJSON();for(i in l)l.hasOwnProperty(i)&&(e=l[i],t.insertImageSlide(e.id,e.title,e.description,e.url,e.alt))}),t.uploader.open(),void 0)})},t.activeOldUploader=function(){var i=e("#slideshow-slide-inserter-popup"),l=e("#slideshow-slide-inserter-popup-background"),s=i.find("#search");l.height(e(document).outerHeight(!0)),i.css({top:parseInt(e(window).height()/2-i.outerHeight(!0)/2,10),left:parseInt(e(window).width()/2-i.outerWidth(!0)/2,10)}),s.focus(),t.getSearchResults(),i.find("#close").click(t.closePopup),l.click(t.closePopup),i.find("#search-submit").click(t.getSearchResults),s.keypress(function(e){13==e.which&&(e.preventDefault(),t.getSearchResults())}),e("#slideshow-insert-image-slide").click(function(){i.css({display:"block"}),l.css({display:"block"})}),e("#slideshow-insert-text-slide").click(t.insertTextSlide),e("#slideshow-insert-video-slide").click(t.insertVideoSlide),e(".slideshow-delete-slide").click(function(i){t.deleteSlide(e(i.currentTarget).closest(".sortable-slides-list-item"))})},t.activate=function(){t.indexSlidesOrder(),e(".sortable-slides-list").sortable({revert:!0,placeholder:"sortable-placeholder",forcePlaceholderSize:!0,stop:function(){t.indexSlidesOrder()},cancel:"input, select, textarea"}),e(".wp-color-picker-field").wpColorPicker({width:234}),e(".open-slides-button").on("click",function(t){t.preventDefault(),e(".sortable-slides-list .sortable-slides-list-item").each(function(t,i){var l=e(i);l.find(".inside").is(":visible")||l.find(".handlediv").trigger("click")})}),e(".close-slides-button").on("click",function(t){t.preventDefault(),e(".sortable-slides-list .sortable-slides-list-item").each(function(t,i){var l=e(i);l.find(".inside").is(":visible")&&l.find(".handlediv").trigger("click")})})},t.deleteSlide=function(e){var t="Are you sure you want to delete this slide?",i=window.slideshow_jquery_image_gallery_backend_script_editSlideshow;"object"==typeof i&&"object"==typeof i.localization&&void 0!==i.localization.confirm&&i.localization.confirm.length>0&&(t=i.localization.confirm),confirm(t)&&e.remove()},t.indexSlidesOrder=function(){e(".sortable-slides-list .sortable-slides-list-item").each(function(t,i){e.each(e(i).find("input, select, textarea"),function(i,l){var s=e(l),n=s.attr("name");void 0===n||n.length<=0||(n=n.replace(/[\[\]']+/g," ").split(" "),s.attr("name",n[0]+"["+(t+1)+"]["+n[2]+"]"))})})},t.getSearchResults=function(i){var l=e("#slideshow-slide-inserter-popup"),s=l.find("#results"),n=[];i=parseInt(i,10),isNaN(i)&&(i=0,s.html("")),e.each(s.find(".result-table-row"),function(t,i){n.push(parseInt(e(i).attr("data-attachment-id"),10))}),e.post(window.ajaxurl,{action:"slideshow_slide_inserter_search_query",search:l.find("#search").attr("value"),offset:i,attachmentIDs:n},function(i){var l;s.append(i),s.find(".insert-attachment").unbind("click").click(function(i){var l=e(i.currentTarget).closest("tr");t.insertImageSlide(l.attr("data-attachment-id"),l.find(".title").text(),l.find(".description").text(),l.find(".image img").attr("src"),l.find(".title").text())}),l=e(".load-more-results"),l&&l.click(function(i){var l=e(i.currentTarget),s=l.attr("data-offset");l.closest("tr").hide(),isNaN(parseInt(s,10))||t.getSearchResults(s)})})},t.insertImageSlide=function(i,l,s,n,a){var d=e(".image-slide-template").find(".sortable-slides-list-item").clone(!0,!0);d.find(".attachment").attr("src",n),d.find(".attachment").attr("title",l),d.find(".attachment").attr("alt",a),d.find(".title").attr("value",l),d.find(".description").html(s),d.find(".alternativeText").attr("value",a),d.find(".postId").attr("value",i),d.find(".title").attr("name","slides[0][title]"),d.find(".titleElementTagID").attr("name","slides[0][titleElementTagID]"),d.find(".description").attr("name","slides[0][description]"),d.find(".descriptionElementTagID").attr("name","slides[0][descriptionElementTagID]"),d.find(".url").attr("name","slides[0][url]"),d.find(".urlTarget").attr("name","slides[0][urlTarget]"),d.find(".alternativeText").attr("name","slides[0][alternativeText]"),d.find(".noFollow").attr("name","slides[0][noFollow]"),d.find(".type").attr("name","slides[0][type]"),d.find(".postId").attr("name","slides[0][postId]"),e(".sortable-slides-list").prepend(d),t.indexSlidesOrder()},t.insertTextSlide=function(){var i=e(".text-slide-template").find(".sortable-slides-list-item").clone(!0,!0);i.find(".title").attr("name","slides[0][title]"),i.find(".titleElementTagID").attr("name","slides[0][titleElementTagID]"),i.find(".description").attr("name","slides[0][description]"),i.find(".descriptionElementTagID").attr("name","slides[0][descriptionElementTagID]"),i.find(".textColor").attr("name","slides[0][textColor]"),i.find(".color").attr("name","slides[0][color]"),i.find(".url").attr("name","slides[0][url]"),i.find(".urlTarget").attr("name","slides[0][urlTarget]"),i.find(".noFollow").attr("name","slides[0][noFollow]"),i.find(".type").attr("name","slides[0][type]"),i.find(".color, .textColor").wpColorPicker(),e(".sortable-slides-list").prepend(i),t.indexSlidesOrder()},t.insertVideoSlide=function(){var i=e(".video-slide-template").find(".sortable-slides-list-item").clone(!0,!0);i.find(".videoId").attr("name","slides[0][videoId]"),i.find(".showRelatedVideos").attr("name","slides[0][showRelatedVideos]"),i.find(".type").attr("name","slides[0][type]"),e(".sortable-slides-list").prepend(i),t.indexSlidesOrder()},t.closePopup=function(){e("#slideshow-slide-inserter-popup, #slideshow-slide-inserter-popup-background").css({display:"none"})},e(document).bind("slideshowBackendReady",t.init),t}();
7
  slideshow_jquery_image_gallery_backend_script.shortcode=function(){var e=jQuery,o={};return o.init=function(){o.activateShortcodeInserter()},o.activateShortcodeInserter=function(){e(".insertSlideshowShortcodeSlideshowInsertButton").click(function(){var o="No slideshow selected.",t="slideshow_deploy",i=parseInt(e("#insertSlideshowShortcodeSlideshowSelect").val(),10),d=window.slideshow_jquery_image_gallery_backend_script_shortcode;return"object"==typeof d&&("object"==typeof d.data&&void 0!==d.data.shortcode&&d.data.shortcode.length>0&&(t=d.data.shortcode),"object"==typeof d.localization&&void 0!==d.localization.undefinedSlideshow&&d.localization.undefinedSlideshow.length>0&&(o=d.localization.undefinedSlideshow)),isNaN(i)?(alert(o),!1):(send_to_editor("["+t+" id='"+i+"']"),tb_remove(),!0)}),e(".insertSlideshowShortcodeCancelButton").click(function(){return tb_remove(),!1})},e(document).bind("slideshowBackendReady",o.init),o}();
js/min/all.frontend.min.js CHANGED
@@ -1,8 +1,8 @@
1
- function onYouTubeIframeAPIReady(){slideshow_jquery_image_gallery_script.youTubeAPIReady=!0}slideshow_jquery_image_gallery_backend_script_scriptsloadedFlag=!1,slideshow_jquery_image_gallery_script=function(){var e=jQuery,t={};return t.slideshowInstances={},t.initialized=!1,t.youTubeAPIReady=!1,t.init=function(){slideshow_jquery_image_gallery_backend_script_scriptsloadedFlag!==!0||t.initialized||(t.initialized=!0,e(document).trigger("slideshow_jquery_image_gallery_script_ready"),t.loadYouTubeAPI(),t.repairStylesheetURLs(),t.activateSlideshows(),e(document).trigger("slideshow_jquery_image_gallery_slideshows_ready"))},t.getSlideshowInstance=function(s){if(isNaN(parseInt(s,10))){if(s instanceof e&&s.length>0)for(var i in t.slideshowInstances)if(t.slideshowInstances.hasOwnProperty(i)){var n=t.slideshowInstances[i];if(n instanceof t.Slideshow&&n.$container.get(0)===s.get(0))return n}}else if(t.slideshowInstances[s]instanceof t.Slideshow)return t.slideshowInstances[s];return new t.Slideshow},t.activateSlideshows=function(){e.each(jQuery(".slideshow_container"),function(s,i){var n=e(i),a=n.data("sessionId");isNaN(parseInt(a,10))&&(a=n.attr("data-session-id")),t.slideshowInstances[a]instanceof t.Slideshow||(t.slideshowInstances[a]=new t.Slideshow(n))})},t.loadYouTubeAPI=function(){if(t.loadYouTubeAPICalled=!0,!(e(".slideshow_slide_video").length<=0)){var s=document.createElement("script"),i=document.getElementsByTagName("script")[0];s.src="//www.youtube.com/iframe_api",i.parentNode.insertBefore(s,i)}},t.repairStylesheetURLs=function(){var s=e('[id*="slideshow-jquery-image-gallery-ajax-stylesheet_"]');return s.length<=0?(t.generateStylesheetURLs(!1),void 0):(e.each(s,function(t,s){var i,n,a,l=e(s),o=e(s).attr("href");void 0!==o&&""!==o&&(i=l.attr("id").split("_"),n=i.splice(1,i.length-1).join("_").slice(0,-4),a=o.split("?"),(void 0===a[1]||""===a[1]||a[1].toLowerCase().indexOf("style=")<0)&&(a[1]="action=slideshow_jquery_image_gallery_load_stylesheet&style="+n+"&ver="+Math.round((new Date).getTime()/1e3),o=a.join("?"),l.attr("href",o)))}),void 0)},t.generateStylesheetURLs=function(t){var s=e(".slideshow_container"),i=window.slideshow_jquery_image_gallery_script_adminURL;s.length<=0||"string"!=typeof i||i.length<=0||e.each(s,function(s,n){var a,l,o=e(n),r=o.attr("data-style-name"),d=o.attr("data-style-version"),c="slideshow-jquery-image-gallery-ajax-stylesheet_"+r+"-css";if("string"==typeof r&&"string"==typeof d&&r.length>0&&d.length>0){if(!t&&"boolean"==typeof t&&(a=e("#"+c),a.length>0))return;l=i+"admin-ajax.php?action=slideshow_jquery_image_gallery_load_stylesheet&style="+r+"&ver="+d,e("head").append('<link rel="stylesheet" id="'+c+'" href="'+l+'" type="text/css" media="all">')}})},e(document).ready(function(){t.init()}),e(window).load(function(){t.init()}),e.fn.getSlideshowInstance=function(){return t.getSlideshowInstance(this)},t}();
2
 
3
  !function(){var i=jQuery,t=slideshow_jquery_image_gallery_script;t.Slideshow=function(t){if(t instanceof i&&(this.$container=t,this.$content=this.$container.find(".slideshow_content"),this.$views=this.$container.find(".slideshow_view"),this.$slides=this.$container.find(".slideshow_slide"),this.$controlPanel=this.$container.find(".slideshow_controlPanel"),this.$togglePlayButton=this.$controlPanel.find(".slideshow_togglePlay"),this.$nextButton=this.$container.find(".slideshow_next"),this.$previousButton=this.$container.find(".slideshow_previous"),this.$pagination=this.$container.find(".slideshow_pagination"),this.$loadingIcon=this.$container.find(".slideshow_loading_icon"),this.ID=this.getID(),!isNaN(parseInt(this.ID,10)))){this.settings=window["SlideshowPluginSettings_"+this.ID],i.each(this.settings,i.proxy(function(i,t){"true"==t?this.settings[i]=!0:"false"==t&&(this.settings[i]=!1)},this)),this.$parentElement=this.$container.parent(),this.viewData=[],this.viewIDs=[],this.currentlyAnimating=!1,this.currentViewID=void 0,this.currentWidth=0,this.visibleViews=[],this.videoPlayers=[],this.PlayStates={UNSTARTED:-2,PAUSED:-1,TEMPORARILY_PAUSED:0,PLAYING:1},this.playState=this.PlayStates.UNSTARTED,this.interval=!1,this.pauseOnHoverTimer=!1,this.descriptionTimer=!1,this.randomNextHistoryViewIDs=[],this.randomPreviousHistoryViewIDs=[],this.randomAvailableViewIDs=[],i.each(this.$views,i.proxy(function(i){this.viewIDs.push(i)},this)),this.currentViewID=this.getNextViewID(),this.visibleViews=[this.currentViewID],this.recalculate(!1);var s=i.proxy(function(t){(this.$container.width()<=0||this.$container.height()<=0)&&setTimeout(i.proxy(function(){t(t)},this),500),i.each(this.$views,i.proxy(function(t,s){var e=i(s);t!=this.visibleViews[0]?e.css("top",this.$container.outerHeight(!0)).find("a").attr("tabindex","-1"):e.addClass("slideshow_currentView")},this))},this);s(s);var e=!0;i.each(this.$views,i.proxy(function(t,s){var n=i(s);this.viewData[t]=[],i.each(n.find(".slideshow_slide"),i.proxy(function(s,n){var h=i(n);if(this.viewData[t][s]={},h.hasClass("slideshow_slide_image")){var a=h.find("img");a.length>0?a.get(0).complete?this.viewData[t][s].loaded=1:(t===this.currentViewID&&(e=!1),this.viewData[t][s].loaded=0,this.onImageLoad(a,i.proxy(function(i){this.viewData[t][s].loaded=i?1:2,this.settings.waitUntilLoaded&&t===this.currentViewID&&this.isViewLoaded(t)&&this.start()},this))):this.viewData[t][s].loaded=-1}else this.viewData[t][s].loaded=-1},this))},this)),i(window).load(i.proxy(function(){this.recalculateVisibleViews()},this)),parseFloat(this.settings.intervalSpeed)<parseFloat(this.settings.slideSpeed)+.1&&(this.settings.intervalSpeed=parseFloat(this.settings.slideSpeed)+.1),(!this.settings.waitUntilLoaded||this.settings.waitUntilLoaded&&e)&&this.start()}}}();
4
  !function(){var t=jQuery,i=slideshow_jquery_image_gallery_script;i.Slideshow.prototype.start=function(){this.activateDescriptions(),this.activateControlPanel(),this.activateNavigationButtons(),this.activatePagination(),this.activatePauseOnHover(),this.$loadingIcon.length>0&&this.$loadingIcon.remove(),this.$content.show(),this.recalculateViews(),this.settings.enableResponsiveness&&t(window).resize(t.proxy(function(){this.recalculate(!0)},this)),this.playState=this.PlayStates.PAUSED,this.$container.trigger("slideshowPlayStateChange",[this.playState]),this.settings.play&&this.play()},i.Slideshow.prototype.play=function(){this.interval||(this.playState=this.PlayStates.PLAYING,this.$container.trigger("slideshowPlayStateChange",[this.playState]),this.interval=setInterval(t.proxy(function i(e,s){void 0===s&&(s=this),void 0===e&&(e=s.getNextViewID()),s.isViewLoaded(e)?(s.animateTo(e,1),s.play()):(s.pause(this.PlayStates.TEMPORARILY_PAUSED),setTimeout(t.proxy(function(){i(e,s)},s),100))},this),1e3*this.settings.intervalSpeed))},i.Slideshow.prototype.pause=function(t){clearInterval(this.interval),this.interval=!1,t!==this.PlayStates.PAUSED&&t!==this.PlayStates.TEMPORARILY_PAUSED&&(t=this.PlayStates.PAUSED),this.playState=t,this.$container.trigger("slideshowPlayStateChange",[this.playState])},i.Slideshow.prototype.next=function(){this.playState===this.PlayStates.PLAYING&&(this.pause(this.PlayStates.TEMPORARILY_PAUSED),this.play()),this.animateTo(this.getNextViewID(),1)},i.Slideshow.prototype.previous=function(){this.playState===this.PlayStates.PLAYING&&(this.pause(this.PlayStates.TEMPORARILY_PAUSED),this.play()),this.animateTo(this.getPreviousViewID(),-1)},i.Slideshow.prototype.isVideoPlaying=function(){for(var t in this.videoPlayers)if(this.videoPlayers.hasOwnProperty(t)){var i=this.videoPlayers[t].state;if(1==i||3==i)return!0}return!1},i.Slideshow.prototype.pauseAllVideos=function(){for(var t in this.videoPlayers)if(this.videoPlayers.hasOwnProperty(t)){var i=this.videoPlayers[t].player;null!=i&&"function"==typeof i.pauseVideo&&(this.videoPlayers[t].state=2,i.pauseVideo())}},i.Slideshow.prototype.isViewLoaded=function(i){var e=!0;return isNaN(parseInt(i,10))?!1:(t.each(this.viewData[i],t.proxy(function(t,i){0==i.loaded&&(e=!1)},this)),e)},i.Slideshow.prototype.getNaturalImageSize=function(i,e,s){return i.length<=0||!(i instanceof t)||"string"!=typeof i.attr("src")?(e(-1,-1,s),void 0):(this.onImageLoad(i,t.proxy(function(t,i){e(i.width,i.height,s)},this)),void 0)},i.Slideshow.prototype.onImageLoad=function(i,e,s){var a=new Image;return i.length<=0||!(i instanceof t)||"string"!=typeof i.attr("src")?(e(!1,a,s),void 0):(a.onload=t.proxy(function(){e(!0,a,s)},this),a.src=i.attr("src"),void 0)},i.Slideshow.prototype.getNextViewID=function(){var t=this.currentViewID;if(this.settings.random){var i=t;if(t=this.getNextRandomViewID(),t!=i)return t}return isNaN(parseInt(t,10))?0:t>=this.$views.length-1?this.settings.loop?0:this.currentViewID:t+1},i.Slideshow.prototype.getPreviousViewID=function(){var t=this.currentViewID;if(isNaN(parseInt(t,10))&&(t=0),this.settings.random){var i=t;if(t=this.getPreviousRandomViewID(),t!=i)return t}return 0>=t?this.settings.loop?t=this.$views.length-1:this.currentViewID:t-=1},i.Slideshow.prototype.getNextRandomViewID=function(){if(isNaN(parseInt(this.currentViewID,10))||this.randomPreviousHistoryViewIDs.push(this.currentViewID),this.randomPreviousHistoryViewIDs.length>2*this.viewIDs.length&&this.randomPreviousHistoryViewIDs.shift(),this.randomNextHistoryViewIDs.length>0)return this.randomNextHistoryViewIDs.pop();if(void 0===this.randomAvailableViewIDs||this.randomAvailableViewIDs.length<=0){this.randomAvailableViewIDs=t.extend(!0,[],this.viewIDs);var i=t.inArray(this.currentViewID,this.randomAvailableViewIDs);i>=0&&this.randomAvailableViewIDs.splice(i,1)}return this.randomAvailableViewIDs.splice(Math.floor(Math.random()*this.randomAvailableViewIDs.length),1).pop()},i.Slideshow.prototype.getPreviousRandomViewID=function(){return isNaN(parseInt(this.currentViewID,10))||this.randomNextHistoryViewIDs.push(this.currentViewID),this.randomNextHistoryViewIDs.length>2*this.viewIDs.length&&this.randomNextHistoryViewIDs.shift(),this.randomPreviousHistoryViewIDs.length>0?this.randomPreviousHistoryViewIDs.pop():this.viewIDs[Math.floor(Math.random()*this.viewIDs.length)]},i.Slideshow.prototype.getID=function(){var t=this.$container.data("sessionId");return isNaN(parseInt(t,10))&&(t=this.$container.attr("data-session-id")),t},i.Slideshow.prototype.bindSubmitListener=function(i){i.keypress(t.proxy(function(i){var e=i.keyCode||i.which;13===e&&(i.preventDefault(),t(i.currentTarget).click())},this))}}();
5
  !function(){var e=jQuery,t=slideshow_jquery_image_gallery_script;t.Slideshow.prototype.animateTo=function(t,s){if(!(this.isVideoPlaying()||0>t||t>=this.$views.length||t==this.currentViewID)){if(this.currentlyAnimating===!0)return this.$container.one("slideshowAnimationEnd",e.proxy(function(){this.playState===this.PlayStates.PLAYING&&(this.pause(this.PlayStates.TEMPORARILY_PAUSED),this.play()),this.animateTo(t,s)},this)),void 0;this.currentlyAnimating=!0,(isNaN(parseInt(s,10))||0==s)&&(s=t<this.currentViewID?-1:1),this.visibleViews=[this.currentViewID,t];var i=this.settings.animation,n=["slide","slideRight","slideUp","slideDown","fade","directFade"];"random"==i&&(i=n[Math.floor(Math.random()*n.length)]);var o={slide:"slideRight",slideRight:"slide",slideUp:"slideDown",slideDown:"slideUp",fade:"fade",directFade:"directFade",crossFade:"crossFade"};0>s&&(i=o[i]);var d=e(this.$views[this.currentViewID]),a=e(this.$views[t]);switch(d.stop(!0,!0),a.stop(!0,!0),a.addClass("slideshow_nextView"),this.recalculateVisibleViews(),this.currentViewID=t,this.$container.trigger("slideshowAnimationStart",[t,i,s]),i){case"slide":a.css({top:0,left:this.$content.width()}),d.animate({left:-d.outerWidth(!0)},1e3*this.settings.slideSpeed),a.animate({left:0},1e3*this.settings.slideSpeed),setTimeout(e.proxy(function(){d.stop(!0,!0).css("top",this.$container.outerHeight(!0))},this),1e3*this.settings.slideSpeed);break;case"slideRight":a.css({top:0,left:-this.$content.width()}),d.animate({left:d.outerWidth(!0)},1e3*this.settings.slideSpeed),a.animate({left:0},1e3*this.settings.slideSpeed),setTimeout(e.proxy(function(){d.stop(!0,!0).css("top",this.$container.outerHeight(!0))},this),1e3*this.settings.slideSpeed);break;case"slideUp":a.css({top:this.$content.height(),left:0}),d.animate({top:-d.outerHeight(!0)},1e3*this.settings.slideSpeed),a.animate({top:0},1e3*this.settings.slideSpeed),setTimeout(e.proxy(function(){d.stop(!0,!0).css("top",this.$container.outerHeight(!0))},this),1e3*this.settings.slideSpeed);break;case"slideDown":a.css({top:-this.$content.height(),left:0}),d.animate({top:d.outerHeight(!0)},1e3*this.settings.slideSpeed),a.animate({top:0},1e3*this.settings.slideSpeed),setTimeout(e.proxy(function(){d.stop(!0,!0).css("top",this.$container.outerHeight(!0))},this),1e3*this.settings.slideSpeed);break;case"fade":a.css({top:0,left:0,display:"none"}),d.fadeOut(1e3*this.settings.slideSpeed/2),setTimeout(e.proxy(function(){a.fadeIn(1e3*this.settings.slideSpeed/2),d.stop(!0,!0).css({top:this.$container.outerHeight(!0),display:"block"})},this),1e3*this.settings.slideSpeed/2);break;case"directFade":a.css({top:0,left:0,"z-index":0,display:"none"}),d.css({"z-index":1}),a.stop(!0,!0).fadeIn(1e3*this.settings.slideSpeed),d.stop(!0,!0).fadeOut(1e3*this.settings.slideSpeed),setTimeout(e.proxy(function(){a.stop(!0,!0).css({"z-index":0}),d.stop(!0,!0).css({top:this.$container.outerHeight(!0),display:"block","z-index":0})},this),1e3*this.settings.slideSpeed);break;case"crossFade":a.css({top:0,left:0,"z-index":1,display:"none"}),d.css({"z-index":0}),a.stop(!0,!0).fadeIn(1e3*this.settings.slideSpeed),setTimeout(e.proxy(function(){d.css({top:this.$container.outerHeight(!0)}),a.css({"z-index":1})},this),1e3*this.settings.slideSpeed)}setTimeout(e.proxy(function(){d.removeClass("slideshow_currentView").find("a").attr("tabindex","-1"),a.removeClass("slideshow_nextView"),a.addClass("slideshow_currentView").find("a").attr("tabindex","0"),this.visibleViews=[t],this.currentlyAnimating=!1,this.$container.trigger("slideshowAnimationEnd")},this),1e3*this.settings.slideSpeed)}}}();
6
- !function(){var t=jQuery,i=slideshow_jquery_image_gallery_script;i.Slideshow.prototype.recalculate=function(i){if(!this.$container.is(":visible"))return setTimeout(t.proxy(function(){this.recalculate(i)},this),500),void 0;for(var e=this.$parentElement,h=0;e.width()<=0&&(e=e.parent(),!(h>50));h++);if(this.currentWidth!=e.width()){this.currentWidth=e.width();var s=e.width()-(this.$container.outerWidth()-this.$container.width());if(parseInt(this.settings.maxWidth,10)>0&&parseInt(this.settings.maxWidth,10)<s&&(s=parseInt(this.settings.maxWidth,10)),this.$container.css("width",Math.round(s)),this.$content.css("width",Math.round(s)-(this.$content.outerWidth(!0)-this.$content.width())),this.settings.preserveSlideshowDimensions){var r=s*this.settings.dimensionHeight/this.settings.dimensionWidth;this.$container.css("height",Math.round(r)),this.$content.css("height",Math.round(r)-(this.$content.outerHeight(!0)-this.$content.height()))}else this.$container.css("height",Math.round(this.settings.height)),this.$content.css("height",Math.round(this.settings.height));this.$views.each(t.proxy(function(i,e){t.inArray(i,this.visibleViews)<0&&t(e).css("top",this.$container.outerHeight(!0))},this)),this.$container.trigger("slideshowResize"),(i||"boolean"!=typeof i)&&this.recalculateVisibleViews()}},i.Slideshow.prototype.recalculateViews=function(){t.each(this.$views,t.proxy(function(t){this.recalculateView(t,!1)},this))},i.Slideshow.prototype.recalculateVisibleViews=function(){t.each(this.visibleViews,t.proxy(function(t,i){this.recalculateView(i,!1)},this))},i.Slideshow.prototype.recalculateView=function(e,h){if(this.$content.width()<=0||this.$content.height()<=0)return setTimeout(t.proxy(function(){this.recalculateView(e,h)},this),500),void 0;var s=t(this.$views[e]);if("boolean"==typeof h&&h||this.$content.width()!=s.outerWidth(!0)){var r=s.find(".slideshow_slide");if(!(r.length<=0)){var a=this.$content.width()-(s.outerWidth(!0)-s.width()),o=this.$content.height()-(s.outerHeight(!0)-s.height()),n=Math.floor(a/r.length),d=o,l=a%r.length,c=0;t(r[0]).css("margin-left",0),t(r[r.length-1]).css("margin-right",0),t.each(r,t.proxy(function(h,s){var a=t(s),o=a.outerWidth(!0)-a.width(),g=a.outerHeight(!0)-a.height();if(h==r.length-1?a.width(n-o+l):a.width(n-o),a.height(d-g),a.hasClass("slideshow_slide_text")){var u=a.find(".slideshow_background_anchor");if(u.length<=0)return;var w=a.width()-(u.outerWidth(!0)-u.width()),f=a.height()-(u.outerHeight(!0)-u.height());u.css({width:w,height:f})}else if(a.hasClass("slideshow_slide_image")){var v=a.find("img");if(v.length<=0)return;var p,m,y=v.outerWidth(),$=v.outerHeight();p=isNaN(parseInt(y,10))?0:y-v.width(),m=isNaN(parseInt($,10))?0:$-v.height();var _=a.width()-p,x=a.height()-m;"stretch"===this.settings.imageBehaviour?(v.css({width:_,height:x}),v.attr({width:_,height:x})):this.getNaturalImageSize(v,t.proxy(function(i,h){var s,r;return 0>=i||0>=h?(setTimeout(t.proxy(function(){this.recalculateView(e,!0)},this),500),void 0):(s=a.width()/a.height(),r=(i+p)/(h+m),r>=s?"natural"===this.settings.imageBehaviour?(v.css({margin:"0px",width:_,height:Math.floor(_/r)}),v.attr({width:_,height:Math.floor(_/r)})):"crop"===this.settings.imageBehaviour&&(v.css({"margin-top":"0px","margin-left":-Math.floor((x*r-_)/2),height:x,width:Math.floor(x*r)}),v.attr({width:Math.floor(x*r),height:x})):"natural"===this.settings.imageBehaviour?(v.css({"margin-left":"auto","margin-right":"auto",display:"block",width:Math.floor(x*r),height:x}),v.attr({width:Math.floor(x*r),height:x})):"crop"===this.settings.imageBehaviour&&(v.css({"margin-top":-Math.floor((_/r-x)/2),"margin-left":"0px",width:_,height:Math.floor(_/r)}),v.attr({width:_,height:Math.floor(_/r)})),void 0)},this))}else if(a.hasClass("slideshow_slide_video")){var M=a.find("iframe");if(M.length>0)M.attr({width:a.width(),height:a.height()});else var W=setInterval(t.proxy(function(){if(i.youTubeAPIReady){clearInterval(W);var e=a.find(".slideshow_slide_video_id");e.attr("id","slideshow_slide_video_"+Math.floor(1e6*Math.random())+"_"+e.text());var h=e.attr("data-show-related-videos"),s=new YT.Player(e.attr("id"),{width:a.width(),height:a.height(),videoId:e.text(),playerVars:{wmode:"opaque",rel:h},events:{onReady:function(){},onStateChange:t.proxy(function(t){this.videoPlayers[e.attr("id")].state=t.data},this)}}),r=t("#"+e.attr("id"));r.show(),r.attr("src",r.attr("src")+"&wmode=opaque"),this.videoPlayers[e.attr("id")]={player:s,state:-1}}},this),500)}c+=a.outerWidth(!0)},this)),s.css({width:a,height:o})}}}}();
7
  !function(){var t=jQuery,i=slideshow_jquery_image_gallery_script;i.Slideshow.prototype.activateDescriptions=function(){this.settings.showDescription&&(t.each(this.$slides.find(".slideshow_description_box"),t.proxy(function(i,s){var e=t(s);e.show(),this.settings.hideDescription?e.css({position:"absolute",top:this.$container.outerHeight(!0)}):e.css({position:"absolute",bottom:0})},this)),this.settings.hideDescription&&(this.$container.bind("slideshowResize",t.proxy(function(){t.each(this.$container.find(".slideshow_description_box"),t.proxy(function(i,s){t(s).css("top",this.$container.outerHeight(!0))},this))},this)),this.$container.bind("slideshowAnimationStart",t.proxy(function(){void 0!=this.visibleViews[1]&&t.each(t(this.$views[this.visibleViews[1]]).find(".slideshow_description_box"),t.proxy(function(i,s){t(s).css("top",this.$container.outerHeight(!0))},this))},this)),this.$slides.mouseenter(t.proxy(function(i){var s=t(i.currentTarget).find(".slideshow_description_box");this.descriptionTimer=setTimeout(t.proxy(function(){this.descriptionTimer="",s.stop(!0,!1).animate({top:this.$container.outerHeight(!0)-s.outerHeight(!0)},parseInt(1e3*this.settings.descriptionSpeed,10))},this),200)},this)),this.$slides.mouseleave(t.proxy(function(i){this.descriptionTimer!==!1&&(clearInterval(this.descriptionTimer),this.descriptionTimer=!1),t(i.currentTarget).find(".slideshow_description_box").stop(!0,!1).animate({top:this.$container.outerHeight(!0)},parseInt(1e3*this.settings.descriptionSpeed,10))},this))))},i.Slideshow.prototype.activateNavigationButtons=function(){var i,s;this.settings.controllable&&(i=this.$nextButton.data("nextText"),s=this.$previousButton.data("previousText"),("string"!=typeof i||"string"!=typeof s||i.length<=0||s.length<=0)&&(i=this.$nextButton.attr("data-next-text"),s=this.$previousButton.attr("data-previous-text")),this.$nextButton.html('<span class="assistive-text hide-text">'+i+"</span>").attr({tabindex:"0",title:i}),this.$previousButton.html('<span class="assistive-text hide-text">'+s+"</span>").attr({tabindex:"0",title:s}),this.$nextButton.click(t.proxy(function(){this.currentlyAnimating||(this.pauseAllVideos(),this.playState===this.PlayStates.PLAYING&&(this.pause(this.PlayStates.TEMPORARILY_PAUSED),this.play()),this.animateTo(this.getNextViewID(),1))},this)),this.$previousButton.click(t.proxy(function(){this.currentlyAnimating||(this.pauseAllVideos(),this.playState===this.PlayStates.PLAYING&&(this.pause(this.PlayStates.TEMPORARILY_PAUSED),this.play()),this.animateTo(this.getPreviousViewID(),-1))},this)),this.bindSubmitListener(this.$nextButton),this.bindSubmitListener(this.$previousButton),this.settings.hideNavigationButtons?(this.$container.mouseenter(t.proxy(function(){this.$nextButton.stop(!0,!0).fadeIn(100)},this)),this.$container.mouseleave(t.proxy(function(){this.$nextButton.stop(!0,!0).fadeOut(500)},this)),this.$container.mouseenter(t.proxy(function(){this.$previousButton.stop(!0,!0).fadeIn(100)},this)),this.$container.mouseleave(t.proxy(function(){this.$previousButton.stop(!0,!0).fadeOut(500)},this))):(this.$nextButton.show(),this.$previousButton.show()))},i.Slideshow.prototype.activateControlPanel=function(){this.settings.controlPanel&&(this.$togglePlayButton.attr("tabindex","0"),this.$container.bind("slideshowPlayStateChange",t.proxy(function(t,i){var s,e;this.$togglePlayButton.attr("role","button"),s=this.$togglePlayButton.data("playText"),e=this.$togglePlayButton.data("pauseText"),("string"!=typeof s||"string"!=typeof e||s.length<=0||e.length<=0)&&(s=this.$nextButton.attr("data-play-text"),e=this.$previousButton.attr("data-pause-text")),i===this.PlayStates.PLAYING?this.$togglePlayButton.html('<span class="assistive-text hide-text">'+e+"</span>").attr({"class":"slideshow_pause",title:e}):i===this.PlayStates.PAUSED&&this.$togglePlayButton.html('<span class="assistive-text hide-text">'+s+"</span>").attr({"class":"slideshow_play",title:s})},this)),this.$togglePlayButton.click(t.proxy(function(i){var s=t(i.currentTarget);s.hasClass("slideshow_play")?this.play():this.pause(this.PlayStates.PAUSED)},this)),this.bindSubmitListener(this.$togglePlayButton),this.settings.hideControlPanel?(this.$container.mouseenter(t.proxy(function(){this.$controlPanel.stop(!0,!0).fadeIn(100)},this)),this.$container.mouseleave(t.proxy(function(){this.$controlPanel.stop(!0,!0).fadeOut(500)},this))):this.$controlPanel.show())},i.Slideshow.prototype.activatePagination=function(){if(this.settings.showPagination){this.$pagination.find(".slideshow_pagination_center").html("<ul></ul>");var i=this.$pagination.find("ul");i.html(""),this.$views.each(t.proxy(function(t){var s="",e=parseInt(t,10)+1,n=this.$pagination.data("goToText");("string"!=typeof n||n.length<=0)&&(n=this.$pagination.attr("data-go-to-text")),t==this.currentViewID&&(s="slideshow_currentView"),i.append('<li class="slideshow_transparent '+s+'" data-view-id="'+t+'" role="button" title="'+n+" "+e+'"><span class="assistive-text hide-text">'+n+" "+e+"</span></li>")},this)),this.$pagination.find("li").attr("tabindex","0").click(t.proxy(function(i){var s,e=t(i.currentTarget);this.currentlyAnimating||(s=e.data("viewId"),isNaN(parseInt(s,10))&&(s=e.attr("data-view-id"),isNaN(parseInt(s,10)))||(this.pauseAllVideos(),this.playState===this.PlayStates.PLAYING&&(this.pause(this.PlayStates.TEMPORARILY_PAUSED),this.play()),this.animateTo(parseInt(s,10),0)))},this)),this.bindSubmitListener(this.$pagination.find("li")),this.$container.bind("slideshowAnimationStart",t.proxy(function(){var i=this.$pagination.find("li");i.each(t.proxy(function(i,s){t(s).removeClass("slideshow_currentView")},this)),t(i[this.currentViewID]).addClass("slideshow_currentView")},this)),this.settings.hidePagination?(this.$container.mouseenter(t.proxy(function(){this.$pagination.stop(!0,!0).fadeIn(100)},this)),this.$container.mouseleave(t.proxy(function(){this.$pagination.stop(!0,!0).fadeOut(500)},this))):this.$pagination.show()}},i.Slideshow.prototype.activatePauseOnHover=function(){this.settings.pauseOnHover&&(this.$container.mouseenter(t.proxy(function(){clearTimeout(this.pauseOnHoverTimer),this.playState!==this.PlayStates.PAUSED&&(this.pauseOnHoverTimer=setTimeout(t.proxy(function(){this.pause(this.PlayStates.TEMPORARILY_PAUSED)},this),500))},this)),this.$container.mouseleave(t.proxy(function(){clearTimeout(this.pauseOnHoverTimer),this.playState!==this.PlayStates.PAUSED&&this.interval===!1&&this.play()},this)))}}();
8
  slideshow_jquery_image_gallery_backend_script_scriptsloadedFlag=!0;
1
+ function onYouTubeIframeAPIReady(){slideshow_jquery_image_gallery_script.youTubeAPIReady=!0}slideshow_jquery_image_gallery_backend_script_scriptsloadedFlag=!1,slideshow_jquery_image_gallery_script=function(){var e=jQuery,i={};return i.slideshowInstances={},i.initialized=!1,i.youTubeAPIReady=!1,i.init=function(){slideshow_jquery_image_gallery_backend_script_scriptsloadedFlag!==!0||i.initialized||(i.initialized=!0,e(document).trigger("slideshow_jquery_image_gallery_script_ready"),i.loadYouTubeAPI(),i.repairStylesheetURLs(),i.activateSlideshows(),e(document).trigger("slideshow_jquery_image_gallery_slideshows_ready"))},i.getSlideshowInstance=function(s){if(isNaN(parseInt(s,10))){if(s instanceof e&&s.length>0)for(var t in i.slideshowInstances)if(i.slideshowInstances.hasOwnProperty(t)){var n=i.slideshowInstances[t];if(n instanceof i.Slideshow&&n.$container.get(0)===s.get(0))return n}}else if(i.slideshowInstances[s]instanceof i.Slideshow)return i.slideshowInstances[s];return new i.Slideshow},i.activateSlideshows=function(){e.each(jQuery(".slideshow_container"),function(s,t){var n=e(t),a=n.data("sessionId");isNaN(parseInt(a,10))&&(a=n.attr("data-session-id")),i.slideshowInstances[a]instanceof i.Slideshow||(i.slideshowInstances[a]=new i.Slideshow(n))})},i.loadYouTubeAPI=function(){if(i.loadYouTubeAPICalled=!0,!(e(".slideshow_slide_video").length<=0)){var s=document.createElement("script"),t=document.getElementsByTagName("script")[0];s.src="//www.youtube.com/iframe_api",t.parentNode.insertBefore(s,t)}},i.repairStylesheetURLs=function(){var i=e('[id*="slideshow-jquery-image-gallery-ajax-stylesheet_"]');e.each(i,function(i,s){var t,n,a,o=e(s),r=e(s).attr("href");void 0!==r&&""!==r&&(t=o.attr("id").split("_"),n=t.splice(1,t.length-1).join("_").slice(0,-4),a=r.split("?"),(void 0===a[1]||""===a[1]||a[1].toLowerCase().indexOf("style=")<0)&&(a[1]="action=slideshow_jquery_image_gallery_load_stylesheet&style="+n+"&ver="+Math.round((new Date).getTime()/1e3),r=a.join("?"),o.attr("href",r)))})},e(document).ready(function(){i.init()}),e(window).load(function(){i.init()}),e.fn.getSlideshowInstance=function(){return i.getSlideshowInstance(this)},i}();
2
 
3
  !function(){var i=jQuery,t=slideshow_jquery_image_gallery_script;t.Slideshow=function(t){if(t instanceof i&&(this.$container=t,this.$content=this.$container.find(".slideshow_content"),this.$views=this.$container.find(".slideshow_view"),this.$slides=this.$container.find(".slideshow_slide"),this.$controlPanel=this.$container.find(".slideshow_controlPanel"),this.$togglePlayButton=this.$controlPanel.find(".slideshow_togglePlay"),this.$nextButton=this.$container.find(".slideshow_next"),this.$previousButton=this.$container.find(".slideshow_previous"),this.$pagination=this.$container.find(".slideshow_pagination"),this.$loadingIcon=this.$container.find(".slideshow_loading_icon"),this.ID=this.getID(),!isNaN(parseInt(this.ID,10)))){this.settings=window["SlideshowPluginSettings_"+this.ID],i.each(this.settings,i.proxy(function(i,t){"true"==t?this.settings[i]=!0:"false"==t&&(this.settings[i]=!1)},this)),this.$parentElement=this.$container.parent(),this.viewData=[],this.viewIDs=[],this.currentlyAnimating=!1,this.currentViewID=void 0,this.currentWidth=0,this.visibleViews=[],this.videoPlayers=[],this.PlayStates={UNSTARTED:-2,PAUSED:-1,TEMPORARILY_PAUSED:0,PLAYING:1},this.playState=this.PlayStates.UNSTARTED,this.interval=!1,this.pauseOnHoverTimer=!1,this.descriptionTimer=!1,this.randomNextHistoryViewIDs=[],this.randomPreviousHistoryViewIDs=[],this.randomAvailableViewIDs=[],i.each(this.$views,i.proxy(function(i){this.viewIDs.push(i)},this)),this.currentViewID=this.getNextViewID(),this.visibleViews=[this.currentViewID],this.recalculate(!1);var s=i.proxy(function(t){(this.$container.width()<=0||this.$container.height()<=0)&&setTimeout(i.proxy(function(){t(t)},this),500),i.each(this.$views,i.proxy(function(t,s){var e=i(s);t!=this.visibleViews[0]?e.css("top",this.$container.outerHeight(!0)).find("a").attr("tabindex","-1"):e.addClass("slideshow_currentView")},this))},this);s(s);var e=!0;i.each(this.$views,i.proxy(function(t,s){var n=i(s);this.viewData[t]=[],i.each(n.find(".slideshow_slide"),i.proxy(function(s,n){var h=i(n);if(this.viewData[t][s]={},h.hasClass("slideshow_slide_image")){var a=h.find("img");a.length>0?a.get(0).complete?this.viewData[t][s].loaded=1:(t===this.currentViewID&&(e=!1),this.viewData[t][s].loaded=0,this.onImageLoad(a,i.proxy(function(i){this.viewData[t][s].loaded=i?1:2,this.settings.waitUntilLoaded&&t===this.currentViewID&&this.isViewLoaded(t)&&this.start()},this))):this.viewData[t][s].loaded=-1}else this.viewData[t][s].loaded=-1},this))},this)),i(window).load(i.proxy(function(){this.recalculateVisibleViews()},this)),parseFloat(this.settings.intervalSpeed)<parseFloat(this.settings.slideSpeed)+.1&&(this.settings.intervalSpeed=parseFloat(this.settings.slideSpeed)+.1),(!this.settings.waitUntilLoaded||this.settings.waitUntilLoaded&&e)&&this.start()}}}();
4
  !function(){var t=jQuery,i=slideshow_jquery_image_gallery_script;i.Slideshow.prototype.start=function(){this.activateDescriptions(),this.activateControlPanel(),this.activateNavigationButtons(),this.activatePagination(),this.activatePauseOnHover(),this.$loadingIcon.length>0&&this.$loadingIcon.remove(),this.$content.show(),this.recalculateViews(),this.settings.enableResponsiveness&&t(window).resize(t.proxy(function(){this.recalculate(!0)},this)),this.playState=this.PlayStates.PAUSED,this.$container.trigger("slideshowPlayStateChange",[this.playState]),this.settings.play&&this.play()},i.Slideshow.prototype.play=function(){this.interval||(this.playState=this.PlayStates.PLAYING,this.$container.trigger("slideshowPlayStateChange",[this.playState]),this.interval=setInterval(t.proxy(function i(e,s){void 0===s&&(s=this),void 0===e&&(e=s.getNextViewID()),s.isViewLoaded(e)?(s.animateTo(e,1),s.play()):(s.pause(this.PlayStates.TEMPORARILY_PAUSED),setTimeout(t.proxy(function(){i(e,s)},s),100))},this),1e3*this.settings.intervalSpeed))},i.Slideshow.prototype.pause=function(t){clearInterval(this.interval),this.interval=!1,t!==this.PlayStates.PAUSED&&t!==this.PlayStates.TEMPORARILY_PAUSED&&(t=this.PlayStates.PAUSED),this.playState=t,this.$container.trigger("slideshowPlayStateChange",[this.playState])},i.Slideshow.prototype.next=function(){this.playState===this.PlayStates.PLAYING&&(this.pause(this.PlayStates.TEMPORARILY_PAUSED),this.play()),this.animateTo(this.getNextViewID(),1)},i.Slideshow.prototype.previous=function(){this.playState===this.PlayStates.PLAYING&&(this.pause(this.PlayStates.TEMPORARILY_PAUSED),this.play()),this.animateTo(this.getPreviousViewID(),-1)},i.Slideshow.prototype.isVideoPlaying=function(){for(var t in this.videoPlayers)if(this.videoPlayers.hasOwnProperty(t)){var i=this.videoPlayers[t].state;if(1==i||3==i)return!0}return!1},i.Slideshow.prototype.pauseAllVideos=function(){for(var t in this.videoPlayers)if(this.videoPlayers.hasOwnProperty(t)){var i=this.videoPlayers[t].player;null!=i&&"function"==typeof i.pauseVideo&&(this.videoPlayers[t].state=2,i.pauseVideo())}},i.Slideshow.prototype.isViewLoaded=function(i){var e=!0;return isNaN(parseInt(i,10))?!1:(t.each(this.viewData[i],t.proxy(function(t,i){0==i.loaded&&(e=!1)},this)),e)},i.Slideshow.prototype.getNaturalImageSize=function(i,e,s){return i.length<=0||!(i instanceof t)||"string"!=typeof i.attr("src")?(e(-1,-1,s),void 0):(this.onImageLoad(i,t.proxy(function(t,i){e(i.width,i.height,s)},this)),void 0)},i.Slideshow.prototype.onImageLoad=function(i,e,s){var a=new Image;return i.length<=0||!(i instanceof t)||"string"!=typeof i.attr("src")?(e(!1,a,s),void 0):(a.onload=t.proxy(function(){e(!0,a,s)},this),a.src=i.attr("src"),void 0)},i.Slideshow.prototype.getNextViewID=function(){var t=this.currentViewID;if(this.settings.random){var i=t;if(t=this.getNextRandomViewID(),t!=i)return t}return isNaN(parseInt(t,10))?0:t>=this.$views.length-1?this.settings.loop?0:this.currentViewID:t+1},i.Slideshow.prototype.getPreviousViewID=function(){var t=this.currentViewID;if(isNaN(parseInt(t,10))&&(t=0),this.settings.random){var i=t;if(t=this.getPreviousRandomViewID(),t!=i)return t}return 0>=t?this.settings.loop?t=this.$views.length-1:this.currentViewID:t-=1},i.Slideshow.prototype.getNextRandomViewID=function(){if(isNaN(parseInt(this.currentViewID,10))||this.randomPreviousHistoryViewIDs.push(this.currentViewID),this.randomPreviousHistoryViewIDs.length>2*this.viewIDs.length&&this.randomPreviousHistoryViewIDs.shift(),this.randomNextHistoryViewIDs.length>0)return this.randomNextHistoryViewIDs.pop();if(void 0===this.randomAvailableViewIDs||this.randomAvailableViewIDs.length<=0){this.randomAvailableViewIDs=t.extend(!0,[],this.viewIDs);var i=t.inArray(this.currentViewID,this.randomAvailableViewIDs);i>=0&&this.randomAvailableViewIDs.splice(i,1)}return this.randomAvailableViewIDs.splice(Math.floor(Math.random()*this.randomAvailableViewIDs.length),1).pop()},i.Slideshow.prototype.getPreviousRandomViewID=function(){return isNaN(parseInt(this.currentViewID,10))||this.randomNextHistoryViewIDs.push(this.currentViewID),this.randomNextHistoryViewIDs.length>2*this.viewIDs.length&&this.randomNextHistoryViewIDs.shift(),this.randomPreviousHistoryViewIDs.length>0?this.randomPreviousHistoryViewIDs.pop():this.viewIDs[Math.floor(Math.random()*this.viewIDs.length)]},i.Slideshow.prototype.getID=function(){var t=this.$container.data("sessionId");return isNaN(parseInt(t,10))&&(t=this.$container.attr("data-session-id")),t},i.Slideshow.prototype.bindSubmitListener=function(i){i.keypress(t.proxy(function(i){var e=i.keyCode||i.which;13===e&&(i.preventDefault(),t(i.currentTarget).click())},this))}}();
5
  !function(){var e=jQuery,t=slideshow_jquery_image_gallery_script;t.Slideshow.prototype.animateTo=function(t,s){if(!(this.isVideoPlaying()||0>t||t>=this.$views.length||t==this.currentViewID)){if(this.currentlyAnimating===!0)return this.$container.one("slideshowAnimationEnd",e.proxy(function(){this.playState===this.PlayStates.PLAYING&&(this.pause(this.PlayStates.TEMPORARILY_PAUSED),this.play()),this.animateTo(t,s)},this)),void 0;this.currentlyAnimating=!0,(isNaN(parseInt(s,10))||0==s)&&(s=t<this.currentViewID?-1:1),this.visibleViews=[this.currentViewID,t];var i=this.settings.animation,n=["slide","slideRight","slideUp","slideDown","fade","directFade"];"random"==i&&(i=n[Math.floor(Math.random()*n.length)]);var o={slide:"slideRight",slideRight:"slide",slideUp:"slideDown",slideDown:"slideUp",fade:"fade",directFade:"directFade",crossFade:"crossFade"};0>s&&(i=o[i]);var d=e(this.$views[this.currentViewID]),a=e(this.$views[t]);switch(d.stop(!0,!0),a.stop(!0,!0),a.addClass("slideshow_nextView"),this.recalculateVisibleViews(),this.currentViewID=t,this.$container.trigger("slideshowAnimationStart",[t,i,s]),i){case"slide":a.css({top:0,left:this.$content.width()}),d.animate({left:-d.outerWidth(!0)},1e3*this.settings.slideSpeed),a.animate({left:0},1e3*this.settings.slideSpeed),setTimeout(e.proxy(function(){d.stop(!0,!0).css("top",this.$container.outerHeight(!0))},this),1e3*this.settings.slideSpeed);break;case"slideRight":a.css({top:0,left:-this.$content.width()}),d.animate({left:d.outerWidth(!0)},1e3*this.settings.slideSpeed),a.animate({left:0},1e3*this.settings.slideSpeed),setTimeout(e.proxy(function(){d.stop(!0,!0).css("top",this.$container.outerHeight(!0))},this),1e3*this.settings.slideSpeed);break;case"slideUp":a.css({top:this.$content.height(),left:0}),d.animate({top:-d.outerHeight(!0)},1e3*this.settings.slideSpeed),a.animate({top:0},1e3*this.settings.slideSpeed),setTimeout(e.proxy(function(){d.stop(!0,!0).css("top",this.$container.outerHeight(!0))},this),1e3*this.settings.slideSpeed);break;case"slideDown":a.css({top:-this.$content.height(),left:0}),d.animate({top:d.outerHeight(!0)},1e3*this.settings.slideSpeed),a.animate({top:0},1e3*this.settings.slideSpeed),setTimeout(e.proxy(function(){d.stop(!0,!0).css("top",this.$container.outerHeight(!0))},this),1e3*this.settings.slideSpeed);break;case"fade":a.css({top:0,left:0,display:"none"}),d.fadeOut(1e3*this.settings.slideSpeed/2),setTimeout(e.proxy(function(){a.fadeIn(1e3*this.settings.slideSpeed/2),d.stop(!0,!0).css({top:this.$container.outerHeight(!0),display:"block"})},this),1e3*this.settings.slideSpeed/2);break;case"directFade":a.css({top:0,left:0,"z-index":0,display:"none"}),d.css({"z-index":1}),a.stop(!0,!0).fadeIn(1e3*this.settings.slideSpeed),d.stop(!0,!0).fadeOut(1e3*this.settings.slideSpeed),setTimeout(e.proxy(function(){a.stop(!0,!0).css({"z-index":0}),d.stop(!0,!0).css({top:this.$container.outerHeight(!0),display:"block","z-index":0})},this),1e3*this.settings.slideSpeed);break;case"crossFade":a.css({top:0,left:0,"z-index":1,display:"none"}),d.css({"z-index":0}),a.stop(!0,!0).fadeIn(1e3*this.settings.slideSpeed),setTimeout(e.proxy(function(){d.css({top:this.$container.outerHeight(!0)}),a.css({"z-index":1})},this),1e3*this.settings.slideSpeed)}setTimeout(e.proxy(function(){d.removeClass("slideshow_currentView").find("a").attr("tabindex","-1"),a.removeClass("slideshow_nextView"),a.addClass("slideshow_currentView").find("a").attr("tabindex","0"),this.visibleViews=[t],this.currentlyAnimating=!1,this.$container.trigger("slideshowAnimationEnd")},this),1e3*this.settings.slideSpeed)}}}();
6
+ !function(){var t=jQuery,i=slideshow_jquery_image_gallery_script;i.Slideshow.prototype.recalculate=function(i){if(!this.$container.is(":visible"))return setTimeout(t.proxy(function(){this.recalculate(i)},this),500),void 0;for(var e=this.$parentElement,h=0;e.width()<=0&&(e=e.parent(),!(h>50));h++);if(this.currentWidth!=e.width()){this.currentWidth=e.width();var s=e.width()-(this.$container.outerWidth()-this.$container.width());if(parseInt(this.settings.maxWidth,10)>0&&parseInt(this.settings.maxWidth,10)<s&&(s=parseInt(this.settings.maxWidth,10)),this.$container.css("width",Math.round(s)),this.$content.css("width",Math.round(s)-(this.$content.outerWidth(!0)-this.$content.width())),this.settings.preserveSlideshowDimensions){var r=s*this.settings.dimensionHeight/this.settings.dimensionWidth;this.$container.css("height",Math.round(r)),this.$content.css("height",Math.round(r)-(this.$content.outerHeight(!0)-this.$content.height()))}else this.$container.css("height",Math.round(this.settings.height)),this.$content.css("height",Math.round(this.settings.height));this.$views.each(t.proxy(function(i,e){t.inArray(i,this.visibleViews)<0&&t(e).css("top",this.$container.outerHeight(!0))},this)),this.$container.trigger("slideshowResize"),(i||"boolean"!=typeof i)&&this.recalculateVisibleViews()}},i.Slideshow.prototype.recalculateViews=function(){t.each(this.$views,t.proxy(function(t){this.recalculateView(t,!1)},this))},i.Slideshow.prototype.recalculateVisibleViews=function(){t.each(this.visibleViews,t.proxy(function(t,i){this.recalculateView(i,!1)},this))},i.Slideshow.prototype.recalculateView=function(e,h){if(this.$content.width()<=0||this.$content.height()<=0)return setTimeout(t.proxy(function(){this.recalculateView(e,h)},this),500),void 0;var s=t(this.$views[e]);if("boolean"==typeof h&&h||this.$content.width()!=s.outerWidth(!0)){var r=s.find(".slideshow_slide");if(!(r.length<=0)){var a=this.$content.width()-(s.outerWidth(!0)-s.width()),o=this.$content.height()-(s.outerHeight(!0)-s.height()),n=Math.floor(a/r.length),d=o,l=a%r.length,c=0;t(r[0]).css("margin-left",0),t(r[r.length-1]).css("margin-right",0),t.each(r,t.proxy(function(h,s){var a=t(s),o=a.outerWidth(!0)-a.width(),g=a.outerHeight(!0)-a.height();if(h==r.length-1?a.width(n-o+l):a.width(n-o),a.height(d-g),a.hasClass("slideshow_slide_text")){var u=a.find(".slideshow_background_anchor");if(u.length<=0)return;var w=a.width()-(u.outerWidth(!0)-u.width()),f=a.height()-(u.outerHeight(!0)-u.height());u.css({width:w,height:f})}else if(a.hasClass("slideshow_slide_image")){var v=a.find("img");if(v.length<=0)return;var p,m,y=v.outerWidth(),$=v.outerHeight();p=isNaN(parseInt(y,10))?0:y-v.width(),m=isNaN(parseInt($,10))?0:$-v.height();var _=a.width()-p,x=a.height()-m;"stretch"===this.settings.imageBehaviour?(v.css({width:_,height:x}),v.attr({width:_,height:x})):this.getNaturalImageSize(v,t.proxy(function(i,h){var s,r;return 0>=i||0>=h?(setTimeout(t.proxy(function(){this.recalculateView(e,!0)},this),500),void 0):(s=a.width()/a.height(),r=(i+p)/(h+m),r>=s?"natural"===this.settings.imageBehaviour?(v.css({margin:"0px",width:_,height:Math.round(_/r)}),v.attr({width:_,height:Math.round(_/r)})):"crop"===this.settings.imageBehaviour&&(v.css({"margin-top":"0px","margin-left":-Math.floor((x*r-_)/2),height:x,width:Math.floor(x*r)}),v.attr({width:Math.floor(x*r),height:x})):"natural"===this.settings.imageBehaviour?(v.css({"margin-left":"auto","margin-right":"auto",display:"block",width:Math.round(x*r),height:x}),v.attr({width:Math.round(x*r),height:x})):"crop"===this.settings.imageBehaviour&&(v.css({"margin-top":-Math.floor((_/r-x)/2),"margin-left":"0px",width:_,height:Math.floor(_/r)}),v.attr({width:_,height:Math.floor(_/r)})),void 0)},this))}else if(a.hasClass("slideshow_slide_video")){var M=a.find("iframe");if(M.length>0)M.attr({width:a.width(),height:a.height()});else var W=setInterval(t.proxy(function(){if(i.youTubeAPIReady){clearInterval(W);var e=a.find(".slideshow_slide_video_id");e.attr("id","slideshow_slide_video_"+Math.floor(1e6*Math.random())+"_"+e.text());var h=e.attr("data-show-related-videos"),s=new YT.Player(e.attr("id"),{width:a.width(),height:a.height(),videoId:e.text(),playerVars:{wmode:"opaque",rel:h},events:{onReady:function(){},onStateChange:t.proxy(function(t){this.videoPlayers[e.attr("id")].state=t.data},this)}}),r=t("#"+e.attr("id"));r.show(),r.attr("src",r.attr("src")+"&wmode=opaque"),this.videoPlayers[e.attr("id")]={player:s,state:-1}}},this),500)}c+=a.outerWidth(!0)},this)),s.css({width:a,height:o})}}}}();
7
  !function(){var t=jQuery,i=slideshow_jquery_image_gallery_script;i.Slideshow.prototype.activateDescriptions=function(){this.settings.showDescription&&(t.each(this.$slides.find(".slideshow_description_box"),t.proxy(function(i,s){var e=t(s);e.show(),this.settings.hideDescription?e.css({position:"absolute",top:this.$container.outerHeight(!0)}):e.css({position:"absolute",bottom:0})},this)),this.settings.hideDescription&&(this.$container.bind("slideshowResize",t.proxy(function(){t.each(this.$container.find(".slideshow_description_box"),t.proxy(function(i,s){t(s).css("top",this.$container.outerHeight(!0))},this))},this)),this.$container.bind("slideshowAnimationStart",t.proxy(function(){void 0!=this.visibleViews[1]&&t.each(t(this.$views[this.visibleViews[1]]).find(".slideshow_description_box"),t.proxy(function(i,s){t(s).css("top",this.$container.outerHeight(!0))},this))},this)),this.$slides.mouseenter(t.proxy(function(i){var s=t(i.currentTarget).find(".slideshow_description_box");this.descriptionTimer=setTimeout(t.proxy(function(){this.descriptionTimer="",s.stop(!0,!1).animate({top:this.$container.outerHeight(!0)-s.outerHeight(!0)},parseInt(1e3*this.settings.descriptionSpeed,10))},this),200)},this)),this.$slides.mouseleave(t.proxy(function(i){this.descriptionTimer!==!1&&(clearInterval(this.descriptionTimer),this.descriptionTimer=!1),t(i.currentTarget).find(".slideshow_description_box").stop(!0,!1).animate({top:this.$container.outerHeight(!0)},parseInt(1e3*this.settings.descriptionSpeed,10))},this))))},i.Slideshow.prototype.activateNavigationButtons=function(){var i,s;this.settings.controllable&&(i=this.$nextButton.data("nextText"),s=this.$previousButton.data("previousText"),("string"!=typeof i||"string"!=typeof s||i.length<=0||s.length<=0)&&(i=this.$nextButton.attr("data-next-text"),s=this.$previousButton.attr("data-previous-text")),this.$nextButton.html('<span class="assistive-text hide-text">'+i+"</span>").attr({tabindex:"0",title:i}),this.$previousButton.html('<span class="assistive-text hide-text">'+s+"</span>").attr({tabindex:"0",title:s}),this.$nextButton.click(t.proxy(function(){this.currentlyAnimating||(this.pauseAllVideos(),this.playState===this.PlayStates.PLAYING&&(this.pause(this.PlayStates.TEMPORARILY_PAUSED),this.play()),this.animateTo(this.getNextViewID(),1))},this)),this.$previousButton.click(t.proxy(function(){this.currentlyAnimating||(this.pauseAllVideos(),this.playState===this.PlayStates.PLAYING&&(this.pause(this.PlayStates.TEMPORARILY_PAUSED),this.play()),this.animateTo(this.getPreviousViewID(),-1))},this)),this.bindSubmitListener(this.$nextButton),this.bindSubmitListener(this.$previousButton),this.settings.hideNavigationButtons?(this.$container.mouseenter(t.proxy(function(){this.$nextButton.stop(!0,!0).fadeIn(100)},this)),this.$container.mouseleave(t.proxy(function(){this.$nextButton.stop(!0,!0).fadeOut(500)},this)),this.$container.mouseenter(t.proxy(function(){this.$previousButton.stop(!0,!0).fadeIn(100)},this)),this.$container.mouseleave(t.proxy(function(){this.$previousButton.stop(!0,!0).fadeOut(500)},this))):(this.$nextButton.show(),this.$previousButton.show()))},i.Slideshow.prototype.activateControlPanel=function(){this.settings.controlPanel&&(this.$togglePlayButton.attr("tabindex","0"),this.$container.bind("slideshowPlayStateChange",t.proxy(function(t,i){var s,e;this.$togglePlayButton.attr("role","button"),s=this.$togglePlayButton.data("playText"),e=this.$togglePlayButton.data("pauseText"),("string"!=typeof s||"string"!=typeof e||s.length<=0||e.length<=0)&&(s=this.$nextButton.attr("data-play-text"),e=this.$previousButton.attr("data-pause-text")),i===this.PlayStates.PLAYING?this.$togglePlayButton.html('<span class="assistive-text hide-text">'+e+"</span>").attr({"class":"slideshow_pause",title:e}):i===this.PlayStates.PAUSED&&this.$togglePlayButton.html('<span class="assistive-text hide-text">'+s+"</span>").attr({"class":"slideshow_play",title:s})},this)),this.$togglePlayButton.click(t.proxy(function(i){var s=t(i.currentTarget);s.hasClass("slideshow_play")?this.play():this.pause(this.PlayStates.PAUSED)},this)),this.bindSubmitListener(this.$togglePlayButton),this.settings.hideControlPanel?(this.$container.mouseenter(t.proxy(function(){this.$controlPanel.stop(!0,!0).fadeIn(100)},this)),this.$container.mouseleave(t.proxy(function(){this.$controlPanel.stop(!0,!0).fadeOut(500)},this))):this.$controlPanel.show())},i.Slideshow.prototype.activatePagination=function(){if(this.settings.showPagination){this.$pagination.find(".slideshow_pagination_center").html("<ul></ul>");var i=this.$pagination.find("ul");i.html(""),this.$views.each(t.proxy(function(t){var s="",e=parseInt(t,10)+1,n=this.$pagination.data("goToText");("string"!=typeof n||n.length<=0)&&(n=this.$pagination.attr("data-go-to-text")),t==this.currentViewID&&(s="slideshow_currentView"),i.append('<li class="slideshow_transparent '+s+'" data-view-id="'+t+'" role="button" title="'+n+" "+e+'"><span class="assistive-text hide-text">'+n+" "+e+"</span></li>")},this)),this.$pagination.find("li").attr("tabindex","0").click(t.proxy(function(i){var s,e=t(i.currentTarget);this.currentlyAnimating||(s=e.data("viewId"),isNaN(parseInt(s,10))&&(s=e.attr("data-view-id"),isNaN(parseInt(s,10)))||(this.pauseAllVideos(),this.playState===this.PlayStates.PLAYING&&(this.pause(this.PlayStates.TEMPORARILY_PAUSED),this.play()),this.animateTo(parseInt(s,10),0)))},this)),this.bindSubmitListener(this.$pagination.find("li")),this.$container.bind("slideshowAnimationStart",t.proxy(function(){var i=this.$pagination.find("li");i.each(t.proxy(function(i,s){t(s).removeClass("slideshow_currentView")},this)),t(i[this.currentViewID]).addClass("slideshow_currentView")},this)),this.settings.hidePagination?(this.$container.mouseenter(t.proxy(function(){this.$pagination.stop(!0,!0).fadeIn(100)},this)),this.$container.mouseleave(t.proxy(function(){this.$pagination.stop(!0,!0).fadeOut(500)},this))):this.$pagination.show()}},i.Slideshow.prototype.activatePauseOnHover=function(){this.settings.pauseOnHover&&(this.$container.mouseenter(t.proxy(function(){clearTimeout(this.pauseOnHoverTimer),this.playState!==this.PlayStates.PAUSED&&(this.pauseOnHoverTimer=setTimeout(t.proxy(function(){this.pause(this.PlayStates.TEMPORARILY_PAUSED)},this),500))},this)),this.$container.mouseleave(t.proxy(function(){clearTimeout(this.pauseOnHoverTimer),this.playState!==this.PlayStates.PAUSED&&this.interval===!1&&this.play()},this)))}}();
8
  slideshow_jquery_image_gallery_backend_script_scriptsloadedFlag=!0;
languages/slideshow-plugin-es_ES.mo CHANGED
Binary file
languages/slideshow-plugin-es_ES.po CHANGED
@@ -2,33 +2,39 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Slideshow Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-08-19 11:53+0100\n"
6
- "PO-Revision-Date: 2014-08-19 11:53+0100\n"
7
- "Last-Translator: Violeta Rosales <ellaes@violetarosales.com>\n"
8
  "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
  "Language: es_ES\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: _e;__\n"
 
 
 
 
 
 
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Generator: Poedit 1.5.7\n"
16
- "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: classes/SlideshowPluginGeneralSettings.php:82
20
  #: classes/SlideshowPluginGeneralSettings.php:83
21
  #: views/SlideshowPluginGeneralSettings/general-settings.php:14
22
  msgid "General Settings"
23
- msgstr ""
24
 
25
  #: classes/SlideshowPluginGeneralSettings.php:150
26
  msgid "New"
27
- msgstr ""
28
 
29
  #: classes/SlideshowPluginGeneralSettings.php:151
30
  msgid "Are you sure you want to delete this custom style?"
31
- msgstr ""
32
 
33
  #: classes/SlideshowPluginGeneralSettings.php:196
34
  #: classes/SlideshowPluginInstaller.php:803
@@ -46,7 +52,7 @@ msgstr "Obscuro"
46
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:57
47
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:143
48
  msgid "Untitled"
49
- msgstr ""
50
 
51
  #: classes/SlideshowPluginInstaller.php:800
52
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:472
@@ -88,7 +94,7 @@ msgstr "Diapositiva"
88
  #: classes/SlideshowPluginInstaller.php:805
89
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
90
  msgid "Fade"
91
- msgstr "Desvanecer"
92
 
93
  #: classes/SlideshowPluginInstaller.php:805
94
  #: classes/SlideshowPluginInstaller.php:806
@@ -142,16 +148,15 @@ msgstr "Mostrar"
142
 
143
  #: classes/SlideshowPluginInstaller.php:810
144
  msgid "Width of the slideshow, set to parent&#39;s width on 0"
145
- msgstr ""
146
- "Ancho de las diapositivas. Escribe 0 para tomar el ancho del nodo padre."
147
 
148
  #: classes/SlideshowPluginInstaller.php:811
149
  msgid "Height of the slideshow"
150
- msgstr "Alto de las diapositivas"
151
 
152
  #: classes/SlideshowPluginInstaller.php:812
153
  msgid "Height of the description boxes"
154
- msgstr "Alto de la caja de descripción"
155
 
156
  #: classes/SlideshowPluginInstaller.php:813
157
  msgid "Fit image into slide (stretching it)"
@@ -256,11 +261,11 @@ msgstr "Configuración de las diapositivas"
256
 
257
  #: classes/SlideshowPluginPostType.php:173
258
  msgid "Slideshow created"
259
- msgstr ""
260
 
261
  #: classes/SlideshowPluginPostType.php:177
262
  msgid "Slideshow updated"
263
- msgstr ""
264
 
265
  #: classes/SlideshowPluginPostType.php:224
266
  #: classes/SlideshowPluginSlideInserter.php:238
@@ -270,24 +275,24 @@ msgstr "Insertar"
270
 
271
  #: classes/SlideshowPluginPostType.php:232
272
  msgid "Open all"
273
- msgstr ""
274
 
275
  #: classes/SlideshowPluginPostType.php:234
276
  msgid "Close all"
277
- msgstr ""
278
 
279
  #: classes/SlideshowPluginPostType.php:240
280
  #: views/SlideshowPluginPostType/slides.php:10
281
  msgid "Add slides to this slideshow by using one of the buttons above."
282
- msgstr "Agrega una diapositiva usando uno de los botones de abajo."
283
 
284
  #: classes/SlideshowPluginPostType.php:320
285
  msgid "Duplicate"
286
- msgstr ""
287
 
288
  #: classes/SlideshowPluginPostType.php:371
289
  msgid "Copy"
290
- msgstr ""
291
 
292
  #: classes/SlideshowPluginShortcode.php:148
293
  msgid "No slideshow selected."
@@ -295,7 +300,7 @@ msgstr "No se ha seleccionado ninguna diapositiva"
295
 
296
  #: classes/SlideshowPluginSlideInserter.php:194
297
  msgid "More results loaded"
298
- msgstr ""
299
 
300
  #: classes/SlideshowPluginSlideInserter.php:249
301
  msgid "Load more results"
@@ -311,19 +316,20 @@ msgstr "¿Estás seguro de que quieres borrar esta diapositiva?"
311
 
312
  #: classes/SlideshowPluginSlideInserter.php:333
313
  msgid "Insert image slide"
314
- msgstr ""
315
 
316
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:523
317
  msgid "Maximum width. When maximum width is 0, maximum width is ignored"
318
  msgstr ""
 
319
 
320
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
321
  msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
322
- msgstr ""
323
 
324
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
325
  msgid "More info"
326
- msgstr ""
327
 
328
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
329
  #, php-format
@@ -331,63 +337,70 @@ msgid ""
331
  "Proportional relationship%s between slideshow's width and height (width:"
332
  "height)"
333
  msgstr ""
 
 
334
 
335
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:525
336
  msgid "Slideshow's height"
337
- msgstr ""
338
 
339
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:526
340
  msgid "Image behaviour"
341
- msgstr ""
342
 
343
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:527
344
  msgid "Shrink slideshow's height when width shrinks"
345
- msgstr ""
346
 
347
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:528
348
  msgid ""
349
  "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
350
  msgstr ""
 
 
351
 
352
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:530
353
  msgid "Hide description box, pop up when mouse hovers over"
354
  msgstr ""
 
355
 
356
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:533
357
  msgid "Pause slideshow when mouse hovers over"
358
- msgstr ""
359
 
360
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:534
361
  msgid "Activate navigation buttons"
362
- msgstr ""
363
 
364
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:535
365
  msgid "Hide navigation buttons, show when mouse hovers over"
366
  msgstr ""
 
367
 
368
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:536
369
  msgid "Activate pagination"
370
- msgstr ""
371
 
372
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:537
373
  msgid "Hide pagination, show when mouse hovers over"
374
- msgstr ""
375
 
376
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:538
377
  msgid "Activate control panel (play and pause button)"
378
- msgstr ""
379
 
380
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:539
381
  msgid "Hide control panel, show when mouse hovers over"
382
- msgstr ""
383
 
384
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:540
385
  msgid "Wait until the next slide has loaded before showing it"
386
  msgstr ""
 
387
 
388
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:541
389
  msgid "Show a loading icon until the first slide appears"
390
- msgstr ""
391
 
392
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:542
393
  msgid "Randomize slides"
@@ -400,50 +413,50 @@ msgstr "Evitar filtro de contenido (desactivar si '%s' se muestra)"
400
 
401
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
402
  msgid "Slide Left"
403
- msgstr ""
404
 
405
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
406
  msgid "Slide Right"
407
- msgstr ""
408
 
409
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
410
  msgid "Slide Up"
411
- msgstr ""
412
 
413
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
414
  msgid "Slide Down"
415
- msgstr ""
416
 
417
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
418
  msgid "Cross Fade"
419
- msgstr ""
420
 
421
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
422
  msgid "Direct Fade"
423
- msgstr ""
424
 
425
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
426
  msgid "Random Animation"
427
- msgstr ""
428
 
429
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
430
  msgid "Natural and centered"
431
- msgstr ""
432
 
433
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
434
  msgid "Crop to fit"
435
- msgstr ""
436
 
437
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
438
  msgid "Stretch to fit"
439
- msgstr ""
440
 
441
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:569
442
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:570
443
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:571
444
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:572
445
  msgid "Miscellaneous"
446
- msgstr "Miscelanea"
447
 
448
  #: classes/SlideshowPluginWidget.php:23
449
  msgid "Enables you to show your slideshows in the widget area of your website."
@@ -455,44 +468,44 @@ msgstr "Widget de diapositiva"
455
 
456
  #: views/SlideshowPlugin/slideshow.php:23
457
  msgid "Play"
458
- msgstr ""
459
 
460
  #: views/SlideshowPlugin/slideshow.php:23
461
  msgid "Pause"
462
- msgstr ""
463
 
464
  #: views/SlideshowPlugin/slideshow.php:25
465
  msgid "Previous"
466
- msgstr ""
467
 
468
  #: views/SlideshowPlugin/slideshow.php:26
469
  msgid "Next"
470
- msgstr ""
471
 
472
  #: views/SlideshowPlugin/slideshow.php:28
473
  msgid "Go to slide"
474
- msgstr ""
475
 
476
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:46
477
  msgid "Default stylesheets"
478
- msgstr ""
479
 
480
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:60
481
  msgid "Create a new custom style from this style"
482
- msgstr ""
483
 
484
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:62
485
  msgid "Customize"
486
- msgstr ""
487
 
488
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:76
489
  msgid "Custom stylesheets"
490
- msgstr ""
491
 
492
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:89
493
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:172
494
  msgid "Edit this style"
495
- msgstr ""
496
 
497
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:91
498
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:174
@@ -504,20 +517,22 @@ msgstr "Editar"
504
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:98
505
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:181
506
  msgid "Delete this style"
507
- msgstr ""
508
 
509
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:100
510
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:183
511
  msgid "Delete"
512
- msgstr ""
513
 
514
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:110
515
  msgid "Click 'Customize' to create a new custom stylesheet."
516
  msgstr ""
 
 
517
 
518
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:130
519
  msgid "Select a stylesheet to start customizing it."
520
- msgstr ""
521
 
522
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:139
523
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:192
@@ -536,11 +551,11 @@ msgstr "Título"
536
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:148
537
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:200
538
  msgid "Style"
539
- msgstr "Style"
540
 
541
  #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:11
542
  msgid "Note"
543
- msgstr ""
544
 
545
  #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:18
546
  #, php-format
@@ -549,44 +564,49 @@ msgid ""
549
  "therefore do not alter any existing ones. To adapt a slideshow's settings, "
550
  "%sclick here.%s"
551
  msgstr ""
 
 
 
 
552
 
553
  #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:29
554
  #: views/SlideshowPluginGeneralSettings/general-settings.php:15
555
  msgid "Default Slideshow Settings"
556
- msgstr ""
557
 
558
  #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:41
559
  #: views/SlideshowPluginPostType/settings.php:12
560
  msgid "settings"
561
- msgstr "Configuración"
562
 
563
  #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:77
564
  msgid "Default Slideshow Stylesheet"
565
- msgstr ""
566
 
567
  #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:11
568
  msgid "Add slideshows"
569
- msgstr ""
570
 
571
  #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:12
572
  msgid "Edit slideshows"
573
- msgstr ""
574
 
575
  #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:13
576
  msgid "Delete slideshows"
577
- msgstr ""
578
 
579
  #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:20
580
  msgid "User Capabilities"
581
- msgstr ""
582
 
583
  #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:22
584
  msgid "Select the user roles that will able to perform certain actions."
585
  msgstr ""
 
586
 
587
  #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:38
588
  msgid "Untitled role"
589
- msgstr ""
590
 
591
  #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:65
592
  msgid "Settings"
@@ -594,19 +614,19 @@ msgstr "Configuración"
594
 
595
  #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:69
596
  msgid "Stylesheet location"
597
- msgstr ""
598
 
599
  #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:72
600
  msgid "top"
601
- msgstr ""
602
 
603
  #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:73
604
  msgid "bottom"
605
- msgstr ""
606
 
607
  #: views/SlideshowPluginGeneralSettings/general-settings.php:16
608
  msgid "Custom Styles"
609
- msgstr ""
610
 
611
  #: views/SlideshowPluginPostType/information.php:1
612
  msgid ""
@@ -620,7 +640,9 @@ msgstr ""
620
  msgid ""
621
  "Or add this piece of code to where ever in your website you want to place "
622
  "the slideshow"
623
- msgstr "O agrega este código en tu tema"
 
 
624
 
625
  #: views/SlideshowPluginPostType/information.php:9
626
  #, php-format
@@ -678,7 +700,7 @@ msgstr "URL"
678
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:183
679
  #: views/SlideshowPluginSlideshowSlide/backend_text.php:124
680
  msgid "Open URL in"
681
- msgstr ""
682
 
683
  #: views/SlideshowPluginPostType/slides.php:72
684
  #: views/SlideshowPluginPostType/slides.php:159
@@ -750,7 +772,7 @@ msgstr "Borrar diapositiva"
750
  #: views/SlideshowPluginPostType/style-settings.php:22
751
  #, php-format
752
  msgid "Custom styles can be created and customized %shere%s."
753
- msgstr ""
754
 
755
  #: views/SlideshowPluginPostType/support-plugin.php:3
756
  msgid "Help to keep this plugin free!"
@@ -775,39 +797,40 @@ msgstr "Calificar en Wordpress.org"
775
 
776
  #: views/SlideshowPluginPostType/support-plugin.php:24
777
  msgid "Frequently Asked Questions (FAQ)"
778
- msgstr ""
779
 
780
  #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
781
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
782
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
783
  msgid "Insert a Slideshow"
784
  msgstr "Insertar una Diapositiva"
785
 
786
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
787
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
788
  msgid "Insert Slideshow"
789
  msgstr "Insertar Diapositiva"
790
 
791
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
792
  msgid "Select a slideshow"
793
  msgstr "Seleccionar una diapositiva"
794
 
795
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
796
  #: views/SlideshowPluginWidget/form.php:12
797
  msgid "Untitled slideshow"
798
  msgstr "Diapositiva sin título"
799
 
800
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
801
  msgid "Cancel"
802
  msgstr "Cancelar"
803
 
804
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
805
  #, php-format
806
  msgid ""
807
  "It seems you haven't created any slideshows yet. %sYou can create a "
808
  "slideshow here!%s"
809
  msgstr ""
810
- "Parece que no has creado ninguna diapositiva aún. %s¡Puedes crear una aquí!%s"
 
811
 
812
  #: views/SlideshowPluginSlideInserter/search-popup.php:6
813
  msgid "Search"
@@ -824,34 +847,34 @@ msgstr "Buscar imágenes por título o ID"
824
  #: views/SlideshowPluginSlideshowSlide/backend_text.php:58
825
  #: views/SlideshowPluginSlideshowSlide/backend_video.php:21
826
  msgid "Click to toggle"
827
- msgstr ""
828
 
829
  #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:160
830
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:69
831
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:190
832
  #: views/SlideshowPluginSlideshowSlide/backend_text.php:131
833
  msgid "Don't let search engines follow link"
834
- msgstr ""
835
 
836
  #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:168
837
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:197
838
  msgid "Alternative text"
839
- msgstr ""
840
 
841
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:48
842
  #: views/SlideshowPluginSlideshowSlide/backend_text.php:110
843
  msgid "Text color"
844
- msgstr ""
845
 
846
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:53
847
  #: views/SlideshowPluginSlideshowSlide/backend_text.php:115
848
  msgid "(Leave empty for a transparent background)"
849
- msgstr ""
850
 
851
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:110
852
  #: views/SlideshowPluginSlideshowSlide/backend_video.php:42
853
  msgid "Show related videos"
854
- msgstr ""
855
 
856
  #: views/SlideshowPluginUpload/upload-button.php:1
857
  msgid "Upload/Manage Images"
@@ -860,47 +883,3 @@ msgstr "Cargar/Administrar Imágenes"
860
  #: views/SlideshowPluginWidget/form.php:9
861
  msgid "Random Slideshow"
862
  msgstr "Diapositivas Aleatorias"
863
-
864
- #~ msgid "Questions / Suggestions"
865
- #~ msgstr "Preguntas / Sugerencias"
866
-
867
- #~ msgid "light"
868
- #~ msgstr "clair"
869
-
870
- #~ msgid "slide"
871
- #~ msgstr "diapo"
872
-
873
- #~ msgid "Custom style editor (Does not work with a Strict Doctype)"
874
- #~ msgstr "Aangepaste stijl bewerker (Werkt niet met een Strict Doctype)"
875
-
876
- #~ msgid "Has the Slideshow plugin helped you?"
877
- #~ msgstr "Heeft de Slideshow plugin je geholpen?"
878
-
879
- #~ msgid "Help it back!"
880
- #~ msgstr "Help hem terug!"
881
-
882
- #~ msgid ""
883
- #~ "If this plugin has filled you with happiness, please support the upkeep "
884
- #~ "of the plugin by rating it on Wordpress, posting a suggestion for "
885
- #~ "improvement on the support forum, or making a donation."
886
- #~ msgstr ""
887
- #~ "Als deze plugin je met blijdschap heeft vervuld, zou ik het enorm "
888
- #~ "waarderen als je de plugin wilt beoordelen op Wordpress, een suggestie "
889
- #~ "wilt maken voor verbetering, of een donatie doen wilt."
890
-
891
- #~ msgid "Click on an image to insert it as a slide"
892
- #~ msgstr "Klik op een plaatje om deze in te voegen als slide"
893
-
894
- #~ msgid "Width of the slideshow"
895
- #~ msgstr "Breedte van de slideshow"
896
-
897
- #~ msgid "Defaults to parent's width."
898
- #~ msgstr "Standaard ingesteld op de breedte van het bovenliggende element."
899
-
900
- #~ msgid "Send user to image URL on click"
901
- #~ msgstr ""
902
- #~ "Wanner de gebruiker op de afbeelding klikt, stuur hem naar de URL van het "
903
- #~ "plaatje"
904
-
905
- #~ msgid "Leave any field open to use default value."
906
- #~ msgstr "Een veld dat open wordt gelaten neemt de standaardwaarde aan."
2
  msgstr ""
3
  "Project-Id-Version: Slideshow Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-29 09:46+0100\n"
6
+ "PO-Revision-Date: 2015-04-29 09:46+0100\n"
7
+ "Last-Translator: Manuel Ballesta Ruiz <mbruiz1967@mbrsolution.com>\n"
8
  "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
  "Language: es_ES\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
16
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
17
+ "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
18
+ "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
19
+ "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
20
  "X-Poedit-Basepath: ../\n"
21
  "X-Generator: Poedit 1.5.7\n"
22
+ "X-Loco-Target-Locale: es_ES\n"
23
  "X-Poedit-SearchPath-0: .\n"
24
 
25
  #: classes/SlideshowPluginGeneralSettings.php:82
26
  #: classes/SlideshowPluginGeneralSettings.php:83
27
  #: views/SlideshowPluginGeneralSettings/general-settings.php:14
28
  msgid "General Settings"
29
+ msgstr "Configuración General"
30
 
31
  #: classes/SlideshowPluginGeneralSettings.php:150
32
  msgid "New"
33
+ msgstr "Nuevo"
34
 
35
  #: classes/SlideshowPluginGeneralSettings.php:151
36
  msgid "Are you sure you want to delete this custom style?"
37
+ msgstr "¿Seguro que quieres borrar este estilo personalizado?"
38
 
39
  #: classes/SlideshowPluginGeneralSettings.php:196
40
  #: classes/SlideshowPluginInstaller.php:803
52
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:57
53
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:143
54
  msgid "Untitled"
55
+ msgstr "Sin titulo"
56
 
57
  #: classes/SlideshowPluginInstaller.php:800
58
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:472
94
  #: classes/SlideshowPluginInstaller.php:805
95
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
96
  msgid "Fade"
97
+ msgstr "Fundido"
98
 
99
  #: classes/SlideshowPluginInstaller.php:805
100
  #: classes/SlideshowPluginInstaller.php:806
148
 
149
  #: classes/SlideshowPluginInstaller.php:810
150
  msgid "Width of the slideshow, set to parent&#39;s width on 0"
151
+ msgstr "Ancho de la diapositiva. ajustado el ancho a 0 para el padre&#39;s"
 
152
 
153
  #: classes/SlideshowPluginInstaller.php:811
154
  msgid "Height of the slideshow"
155
+ msgstr "Altura de la presentación de diapositivas"
156
 
157
  #: classes/SlideshowPluginInstaller.php:812
158
  msgid "Height of the description boxes"
159
+ msgstr "Altura de las cajas de Descripción"
160
 
161
  #: classes/SlideshowPluginInstaller.php:813
162
  msgid "Fit image into slide (stretching it)"
261
 
262
  #: classes/SlideshowPluginPostType.php:173
263
  msgid "Slideshow created"
264
+ msgstr "Diapositiva creada"
265
 
266
  #: classes/SlideshowPluginPostType.php:177
267
  msgid "Slideshow updated"
268
+ msgstr "Diapositiva actualizada"
269
 
270
  #: classes/SlideshowPluginPostType.php:224
271
  #: classes/SlideshowPluginSlideInserter.php:238
275
 
276
  #: classes/SlideshowPluginPostType.php:232
277
  msgid "Open all"
278
+ msgstr "Abrir todos"
279
 
280
  #: classes/SlideshowPluginPostType.php:234
281
  msgid "Close all"
282
+ msgstr "Cerrar todos"
283
 
284
  #: classes/SlideshowPluginPostType.php:240
285
  #: views/SlideshowPluginPostType/slides.php:10
286
  msgid "Add slides to this slideshow by using one of the buttons above."
287
+ msgstr "Agrega una diapositiva usando uno de los botones de arriba. "
288
 
289
  #: classes/SlideshowPluginPostType.php:320
290
  msgid "Duplicate"
291
+ msgstr "Duplicar "
292
 
293
  #: classes/SlideshowPluginPostType.php:371
294
  msgid "Copy"
295
+ msgstr "Copiar"
296
 
297
  #: classes/SlideshowPluginShortcode.php:148
298
  msgid "No slideshow selected."
300
 
301
  #: classes/SlideshowPluginSlideInserter.php:194
302
  msgid "More results loaded"
303
+ msgstr "Mas resultados agregados"
304
 
305
  #: classes/SlideshowPluginSlideInserter.php:249
306
  msgid "Load more results"
316
 
317
  #: classes/SlideshowPluginSlideInserter.php:333
318
  msgid "Insert image slide"
319
+ msgstr "Insertar imagen en una diapositiva "
320
 
321
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:523
322
  msgid "Maximum width. When maximum width is 0, maximum width is ignored"
323
  msgstr ""
324
+ "Ancho máximo. Cuando la anchura máxima es 0, la anchura máxima se ignora"
325
 
326
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
327
  msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
328
+ msgstr "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
329
 
330
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
331
  msgid "More info"
332
+ msgstr "Mas información "
333
 
334
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
335
  #, php-format
337
  "Proportional relationship%s between slideshow's width and height (width:"
338
  "height)"
339
  msgstr ""
340
+ "Relación%s proporcional entre la anchura y la altura de diapositivas "
341
+ "(anchura:altura)"
342
 
343
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:525
344
  msgid "Slideshow's height"
345
+ msgstr "Altura de Diapositiva"
346
 
347
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:526
348
  msgid "Image behaviour"
349
+ msgstr "El comportamiento de la imagen "
350
 
351
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:527
352
  msgid "Shrink slideshow's height when width shrinks"
353
+ msgstr "Reducir la altura de diapositivas cuando la anchura se reduce"
354
 
355
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:528
356
  msgid ""
357
  "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
358
  msgstr ""
359
+ "Habilitar diseño responsivos (Reduce el ancho de diapositivas cuando el "
360
+ "ancho de la página se contrae)"
361
 
362
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:530
363
  msgid "Hide description box, pop up when mouse hovers over"
364
  msgstr ""
365
+ "Ocultar el cuadro de descripción, aparecerá cuando el ratón pase por encima"
366
 
367
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:533
368
  msgid "Pause slideshow when mouse hovers over"
369
+ msgstr "Pausa la diapositiva cuando el ratón pase por encima"
370
 
371
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:534
372
  msgid "Activate navigation buttons"
373
+ msgstr "Activar los botones de navegación "
374
 
375
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:535
376
  msgid "Hide navigation buttons, show when mouse hovers over"
377
  msgstr ""
378
+ "Ocultar los botones de navegación, mostrar cuando el ratón pase por encima"
379
 
380
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:536
381
  msgid "Activate pagination"
382
+ msgstr "Activar las paginas "
383
 
384
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:537
385
  msgid "Hide pagination, show when mouse hovers over"
386
+ msgstr "Esconder las paginas, mostrar el ratón pase por encima "
387
 
388
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:538
389
  msgid "Activate control panel (play and pause button)"
390
+ msgstr "Activar el panel de control (reproducción y botón de pausa)"
391
 
392
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:539
393
  msgid "Hide control panel, show when mouse hovers over"
394
+ msgstr "Ocultar el panel de control, mostrar cuando el ratón pase por encima "
395
 
396
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:540
397
  msgid "Wait until the next slide has loaded before showing it"
398
  msgstr ""
399
+ "Espere hasta que la siguiente diapositiva se ha cargado antes de mostrarlo"
400
 
401
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:541
402
  msgid "Show a loading icon until the first slide appears"
403
+ msgstr "Mostrar un icono de carga hasta que aparezca la primera diapositiva"
404
 
405
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:542
406
  msgid "Randomize slides"
413
 
414
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
415
  msgid "Slide Left"
416
+ msgstr "Deslice a la izquierda"
417
 
418
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
419
  msgid "Slide Right"
420
+ msgstr "Deslice a la derecha "
421
 
422
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
423
  msgid "Slide Up"
424
+ msgstr "Deslice hacia arriba"
425
 
426
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
427
  msgid "Slide Down"
428
+ msgstr "Deslice hacia abajo "
429
 
430
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
431
  msgid "Cross Fade"
432
+ msgstr "Fundido Encadenado"
433
 
434
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
435
  msgid "Direct Fade"
436
+ msgstr "Fundido en Directo"
437
 
438
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
439
  msgid "Random Animation"
440
+ msgstr "Animación Sin Orden "
441
 
442
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
443
  msgid "Natural and centered"
444
+ msgstr "Natural y centrado"
445
 
446
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
447
  msgid "Crop to fit"
448
+ msgstr "Recortar para ajustarse"
449
 
450
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
451
  msgid "Stretch to fit"
452
+ msgstr "Estirar para caber"
453
 
454
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:569
455
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:570
456
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:571
457
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:572
458
  msgid "Miscellaneous"
459
+ msgstr "Misceláneo"
460
 
461
  #: classes/SlideshowPluginWidget.php:23
462
  msgid "Enables you to show your slideshows in the widget area of your website."
468
 
469
  #: views/SlideshowPlugin/slideshow.php:23
470
  msgid "Play"
471
+ msgstr "Reproducir"
472
 
473
  #: views/SlideshowPlugin/slideshow.php:23
474
  msgid "Pause"
475
+ msgstr "Pausa"
476
 
477
  #: views/SlideshowPlugin/slideshow.php:25
478
  msgid "Previous"
479
+ msgstr "Perviamente"
480
 
481
  #: views/SlideshowPlugin/slideshow.php:26
482
  msgid "Next"
483
+ msgstr "Proxima"
484
 
485
  #: views/SlideshowPlugin/slideshow.php:28
486
  msgid "Go to slide"
487
+ msgstr "Ir a diapositiva"
488
 
489
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:46
490
  msgid "Default stylesheets"
491
+ msgstr "Hojas de estilo por defecto"
492
 
493
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:60
494
  msgid "Create a new custom style from this style"
495
+ msgstr "Crear un nuevo estilo personalizado de este estilo"
496
 
497
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:62
498
  msgid "Customize"
499
+ msgstr "Personalizar"
500
 
501
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:76
502
  msgid "Custom stylesheets"
503
+ msgstr "Hojas de estilo personalizadas"
504
 
505
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:89
506
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:172
507
  msgid "Edit this style"
508
+ msgstr "Edita este estilo "
509
 
510
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:91
511
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:174
517
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:98
518
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:181
519
  msgid "Delete this style"
520
+ msgstr "Borrar este estilo"
521
 
522
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:100
523
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:183
524
  msgid "Delete"
525
+ msgstr "Borrar"
526
 
527
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:110
528
  msgid "Click 'Customize' to create a new custom stylesheet."
529
  msgstr ""
530
+ "Haga clic en \"Personalizar\" para crear una nueva hoja de estilo "
531
+ "personalizado."
532
 
533
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:130
534
  msgid "Select a stylesheet to start customizing it."
535
+ msgstr "Seleccione una hoja de estilo para comenzar a personalizarlo. "
536
 
537
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:139
538
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:192
551
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:148
552
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:200
553
  msgid "Style"
554
+ msgstr "Estilo"
555
 
556
  #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:11
557
  msgid "Note"
558
+ msgstr "Nota"
559
 
560
  #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:18
561
  #, php-format
564
  "therefore do not alter any existing ones. To adapt a slideshow's settings, "
565
  "%sclick here.%s"
566
  msgstr ""
567
+ "Los ajustes establecidos en esta página sólo se aplican a presentaciones de "
568
+ "diapositivas de nueva creación y, por tanto, no afectan a los ya existentes. "
569
+ "Para adaptar la configuración de una presentación de diapositivas, %shaga "
570
+ "clic aquí.%s"
571
 
572
  #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:29
573
  #: views/SlideshowPluginGeneralSettings/general-settings.php:15
574
  msgid "Default Slideshow Settings"
575
+ msgstr "Ajustes por defecto de diapositivas"
576
 
577
  #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:41
578
  #: views/SlideshowPluginPostType/settings.php:12
579
  msgid "settings"
580
+ msgstr "configuración"
581
 
582
  #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:77
583
  msgid "Default Slideshow Stylesheet"
584
+ msgstr "Ajustes de estilos por defecto"
585
 
586
  #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:11
587
  msgid "Add slideshows"
588
+ msgstr "Agregar diapositivas"
589
 
590
  #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:12
591
  msgid "Edit slideshows"
592
+ msgstr "Editar diapositivas "
593
 
594
  #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:13
595
  msgid "Delete slideshows"
596
+ msgstr "Borrar diapositivas "
597
 
598
  #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:20
599
  msgid "User Capabilities"
600
+ msgstr "Capacidades de usuario"
601
 
602
  #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:22
603
  msgid "Select the user roles that will able to perform certain actions."
604
  msgstr ""
605
+ "Seleccione la categoria del usuario que pueda realizar ciertas acciones."
606
 
607
  #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:38
608
  msgid "Untitled role"
609
+ msgstr "Categoria sin titulo"
610
 
611
  #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:65
612
  msgid "Settings"
614
 
615
  #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:69
616
  msgid "Stylesheet location"
617
+ msgstr "Ubicación de estilos"
618
 
619
  #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:72
620
  msgid "top"
621
+ msgstr "arriba "
622
 
623
  #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:73
624
  msgid "bottom"
625
+ msgstr "fondo"
626
 
627
  #: views/SlideshowPluginGeneralSettings/general-settings.php:16
628
  msgid "Custom Styles"
629
+ msgstr "Estilos personalizados "
630
 
631
  #: views/SlideshowPluginPostType/information.php:1
632
  msgid ""
640
  msgid ""
641
  "Or add this piece of code to where ever in your website you want to place "
642
  "the slideshow"
643
+ msgstr ""
644
+ "O agregue este fragmento de código a donde quiera en su sitio web que desea "
645
+ "colocar la diapositiva"
646
 
647
  #: views/SlideshowPluginPostType/information.php:9
648
  #, php-format
700
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:183
701
  #: views/SlideshowPluginSlideshowSlide/backend_text.php:124
702
  msgid "Open URL in"
703
+ msgstr "Abrir el URL en"
704
 
705
  #: views/SlideshowPluginPostType/slides.php:72
706
  #: views/SlideshowPluginPostType/slides.php:159
772
  #: views/SlideshowPluginPostType/style-settings.php:22
773
  #, php-format
774
  msgid "Custom styles can be created and customized %shere%s."
775
+ msgstr "Estilos personalizados se pueden crear y personalizar %saquí%s."
776
 
777
  #: views/SlideshowPluginPostType/support-plugin.php:3
778
  msgid "Help to keep this plugin free!"
797
 
798
  #: views/SlideshowPluginPostType/support-plugin.php:24
799
  msgid "Frequently Asked Questions (FAQ)"
800
+ msgstr "Preguntas Frecuentes (PF)"
801
 
802
  #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
803
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:13
804
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:24
805
  msgid "Insert a Slideshow"
806
  msgstr "Insertar una Diapositiva"
807
 
808
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
809
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:57
810
  msgid "Insert Slideshow"
811
  msgstr "Insertar Diapositiva"
812
 
813
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:33
814
  msgid "Select a slideshow"
815
  msgstr "Seleccionar una diapositiva"
816
 
817
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:42
818
  #: views/SlideshowPluginWidget/form.php:12
819
  msgid "Untitled slideshow"
820
  msgstr "Diapositiva sin título"
821
 
822
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:62
823
  msgid "Cancel"
824
  msgstr "Cancelar"
825
 
826
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:73
827
  #, php-format
828
  msgid ""
829
  "It seems you haven't created any slideshows yet. %sYou can create a "
830
  "slideshow here!%s"
831
  msgstr ""
832
+ "Parece que no has creado ninguna diapositiva aún. %s¡Puedes crear una "
833
+ "diapositiva aquí!%s"
834
 
835
  #: views/SlideshowPluginSlideInserter/search-popup.php:6
836
  msgid "Search"
847
  #: views/SlideshowPluginSlideshowSlide/backend_text.php:58
848
  #: views/SlideshowPluginSlideshowSlide/backend_video.php:21
849
  msgid "Click to toggle"
850
+ msgstr "Haga clic para activar"
851
 
852
  #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:160
853
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:69
854
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:190
855
  #: views/SlideshowPluginSlideshowSlide/backend_text.php:131
856
  msgid "Don't let search engines follow link"
857
+ msgstr "No permitas que los motores de búsquedas sigan el enlace "
858
 
859
  #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:168
860
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:197
861
  msgid "Alternative text"
862
+ msgstr "Texto alternativo"
863
 
864
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:48
865
  #: views/SlideshowPluginSlideshowSlide/backend_text.php:110
866
  msgid "Text color"
867
+ msgstr "Color de Texto "
868
 
869
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:53
870
  #: views/SlideshowPluginSlideshowSlide/backend_text.php:115
871
  msgid "(Leave empty for a transparent background)"
872
+ msgstr "(Dejar vacio para un fondo transparente) "
873
 
874
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:110
875
  #: views/SlideshowPluginSlideshowSlide/backend_video.php:42
876
  msgid "Show related videos"
877
+ msgstr "Ensena vídeos relacionados"
878
 
879
  #: views/SlideshowPluginUpload/upload-button.php:1
880
  msgid "Upload/Manage Images"
883
  #: views/SlideshowPluginWidget/form.php:9
884
  msgid "Random Slideshow"
885
  msgstr "Diapositivas Aleatorias"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/slideshow-plugin-nb_NO.mo ADDED
Binary file
languages/slideshow-plugin-nb_NO.po ADDED
@@ -0,0 +1,868 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Slideshow Plugin\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-08-19 11:56+0100\n"
6
+ "PO-Revision-Date: 2014-08-19 11:57+0100\n"
7
+ "Last-Translator: Håkon Sigland <sigland@gmail.com>\n"
8
+ "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
+ "Language: nb_NO\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-KeywordsList: _e;__\n"
14
+ "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.5.7\n"
16
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+ "X-Poedit-SourceCharset: UTF-8\n"
18
+ "X-Poedit-SearchPath-0: .\n"
19
+
20
+ #: classes/SlideshowPluginGeneralSettings.php:82
21
+ #: classes/SlideshowPluginGeneralSettings.php:83
22
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:14
23
+ msgid "General Settings"
24
+ msgstr "Generelle innstillinger"
25
+
26
+ #: classes/SlideshowPluginGeneralSettings.php:150
27
+ msgid "New"
28
+ msgstr "Ny"
29
+
30
+ #: classes/SlideshowPluginGeneralSettings.php:151
31
+ msgid "Are you sure you want to delete this custom style?"
32
+ msgstr "Vil du slette denne tilpassede stilen?"
33
+
34
+ #: classes/SlideshowPluginGeneralSettings.php:196
35
+ #: classes/SlideshowPluginInstaller.php:803
36
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:6
37
+ msgid "Light"
38
+ msgstr "Lys"
39
+
40
+ #: classes/SlideshowPluginGeneralSettings.php:197
41
+ #: classes/SlideshowPluginInstaller.php:803
42
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:7
43
+ msgid "Dark"
44
+ msgstr "Mørk"
45
+
46
+ #: classes/SlideshowPluginGeneralSettings.php:353
47
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:57
48
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:143
49
+ msgid "Untitled"
50
+ msgstr "Uten navn"
51
+
52
+ #: classes/SlideshowPluginInstaller.php:800
53
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:472
54
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:111
55
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:43
56
+ msgid "Yes"
57
+ msgstr "Ja"
58
+
59
+ #: classes/SlideshowPluginInstaller.php:801
60
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:473
61
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:112
62
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:44
63
+ msgid "No"
64
+ msgstr "Nei"
65
+
66
+ #: classes/SlideshowPluginInstaller.php:803
67
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:610
68
+ msgid "The style used for this slideshow"
69
+ msgstr "Stilen brukt i denne framvisningen"
70
+
71
+ #: classes/SlideshowPluginInstaller.php:803
72
+ msgid "Custom"
73
+ msgstr "Tilpasset"
74
+
75
+ #: classes/SlideshowPluginInstaller.php:804
76
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:126
77
+ msgid "Custom style editor"
78
+ msgstr "Tilpasset stilredigerer"
79
+
80
+ #: classes/SlideshowPluginInstaller.php:805
81
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:518
82
+ msgid "Animation used for transition between slides"
83
+ msgstr "Overgangsanimasjon mellom lysbilder"
84
+
85
+ #: classes/SlideshowPluginInstaller.php:805
86
+ msgid "Slide"
87
+ msgstr "Lysbilde"
88
+
89
+ #: classes/SlideshowPluginInstaller.php:805
90
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
91
+ msgid "Fade"
92
+ msgstr "Ton ned"
93
+
94
+ #: classes/SlideshowPluginInstaller.php:805
95
+ #: classes/SlideshowPluginInstaller.php:806
96
+ #: classes/SlideshowPluginInstaller.php:807
97
+ #: classes/SlideshowPluginInstaller.php:808
98
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
99
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:548
100
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:549
101
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:550
102
+ msgid "Animation"
103
+ msgstr "Animasjon"
104
+
105
+ #: classes/SlideshowPluginInstaller.php:806
106
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:519
107
+ msgid "Number of seconds the slide takes to slide in"
108
+ msgstr "Antall sekunder lysbildet skal gli inn"
109
+
110
+ #: classes/SlideshowPluginInstaller.php:807
111
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:520
112
+ msgid "Number of seconds the description takes to slide in"
113
+ msgstr "Antall sekunder beskrivelsen bruker på å gli inn"
114
+
115
+ #: classes/SlideshowPluginInstaller.php:808
116
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:521
117
+ msgid "Seconds between changing slides"
118
+ msgstr "Sekunder til neste lysbilde"
119
+
120
+ #: classes/SlideshowPluginInstaller.php:809
121
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:522
122
+ msgid "Number of slides to fit into one slide"
123
+ msgstr "Antall lysbilder tilpasset til et lysbilde"
124
+
125
+ #: classes/SlideshowPluginInstaller.php:809
126
+ #: classes/SlideshowPluginInstaller.php:810
127
+ #: classes/SlideshowPluginInstaller.php:811
128
+ #: classes/SlideshowPluginInstaller.php:812
129
+ #: classes/SlideshowPluginInstaller.php:813
130
+ #: classes/SlideshowPluginInstaller.php:814
131
+ #: classes/SlideshowPluginInstaller.php:815
132
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:551
133
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:552
134
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:553
135
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:554
136
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
137
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:556
138
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:557
139
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:558
140
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:559
141
+ msgid "Display"
142
+ msgstr "Vis"
143
+
144
+ #: classes/SlideshowPluginInstaller.php:810
145
+ msgid "Width of the slideshow, set to parent&#39;s width on 0"
146
+ msgstr "Bredde på lysbildeshowet, set to parent&#39;s width on 0"
147
+
148
+ #: classes/SlideshowPluginInstaller.php:811
149
+ msgid "Height of the slideshow"
150
+ msgstr "Høyde på lysbildeshowet"
151
+
152
+ #: classes/SlideshowPluginInstaller.php:812
153
+ msgid "Height of the description boxes"
154
+ msgstr "Høyde på beskrivelsesboksene"
155
+
156
+ #: classes/SlideshowPluginInstaller.php:813
157
+ msgid "Fit image into slide (stretching it)"
158
+ msgstr "Tilpass bilde til lysbilde (strekk det)"
159
+
160
+ #: classes/SlideshowPluginInstaller.php:814
161
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:529
162
+ msgid "Show title and description"
163
+ msgstr "Vis tittel og beskrivelse"
164
+
165
+ #: classes/SlideshowPluginInstaller.php:815
166
+ msgid "Hide description box, it will pop up when a mouse hovers over the slide"
167
+ msgstr "Skjul beskrivelse, vil vises når musen beveges over lysbildet"
168
+
169
+ #: classes/SlideshowPluginInstaller.php:816
170
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:531
171
+ msgid "Automatically slide to the next slide"
172
+ msgstr "Automatisk overgang til neste lysbilde"
173
+
174
+ #: classes/SlideshowPluginInstaller.php:816
175
+ #: classes/SlideshowPluginInstaller.php:817
176
+ #: classes/SlideshowPluginInstaller.php:818
177
+ #: classes/SlideshowPluginInstaller.php:819
178
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:560
179
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:561
180
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:562
181
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:563
182
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:564
183
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:565
184
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:566
185
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:567
186
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:568
187
+ msgid "Control"
188
+ msgstr "Kontroll"
189
+
190
+ #: classes/SlideshowPluginInstaller.php:817
191
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:532
192
+ msgid "Return to the beginning of the slideshow after last slide"
193
+ msgstr "Gå tilbake til begynnelsen av showet etter siste lysbilde"
194
+
195
+ #: classes/SlideshowPluginInstaller.php:818
196
+ msgid "Activate buttons (so the user can scroll through the slides)"
197
+ msgstr "Aktiver knapper (så brukeren kan klikke gjennom lysbildene)"
198
+
199
+ #: classes/SlideshowPluginInstaller.php:819
200
+ msgid "Show control panel (play and pause button)"
201
+ msgstr "Vis kontrollpanel (spill av og pause-knapp)"
202
+
203
+ #: classes/SlideshowPluginPostType.php:45
204
+ msgid "Slideshows"
205
+ msgstr "Lysbildeshow"
206
+
207
+ #: classes/SlideshowPluginPostType.php:46
208
+ #: views/SlideshowPluginWidget/form.php:7
209
+ msgid "Slideshow"
210
+ msgstr "Lysbildeshow"
211
+
212
+ #: classes/SlideshowPluginPostType.php:47
213
+ msgid "Add New Slideshow"
214
+ msgstr "Legg til nytt lysbildeshow"
215
+
216
+ #: classes/SlideshowPluginPostType.php:48
217
+ msgid "Edit slideshow"
218
+ msgstr "Rediger lysbildeshow"
219
+
220
+ #: classes/SlideshowPluginPostType.php:49
221
+ msgid "New slideshow"
222
+ msgstr "Nytt lysbildeshow"
223
+
224
+ #: classes/SlideshowPluginPostType.php:50
225
+ msgid "View slideshow"
226
+ msgstr "Vis lysbildeshow"
227
+
228
+ #: classes/SlideshowPluginPostType.php:51
229
+ msgid "Search slideshows"
230
+ msgstr "Søk i lysbildeshow"
231
+
232
+ #: classes/SlideshowPluginPostType.php:52
233
+ #: classes/SlideshowPluginPostType.php:53
234
+ msgid "No slideshows found"
235
+ msgstr "Ikke noe lysbildeshow funnet"
236
+
237
+ #: classes/SlideshowPluginPostType.php:98
238
+ msgid "Information"
239
+ msgstr "Informasjon"
240
+
241
+ #: classes/SlideshowPluginPostType.php:107
242
+ msgid "Slides List"
243
+ msgstr "Lysbildeliste"
244
+
245
+ #: classes/SlideshowPluginPostType.php:116
246
+ msgid "Slideshow Style"
247
+ msgstr "Lysbildeshow stil"
248
+
249
+ #: classes/SlideshowPluginPostType.php:125
250
+ msgid "Slideshow Settings"
251
+ msgstr "Lysbildeshow innstillinger"
252
+
253
+ #: classes/SlideshowPluginPostType.php:173
254
+ msgid "Slideshow created"
255
+ msgstr "Lysbildeshow opprettet"
256
+
257
+ #: classes/SlideshowPluginPostType.php:177
258
+ msgid "Slideshow updated"
259
+ msgstr "Lysbildeshow oppdatert"
260
+
261
+ #: classes/SlideshowPluginPostType.php:224
262
+ #: classes/SlideshowPluginSlideInserter.php:238
263
+ #: views/SlideshowPluginPostType/slides.php:2
264
+ msgid "Insert"
265
+ msgstr "Sett inn"
266
+
267
+ #: classes/SlideshowPluginPostType.php:232
268
+ msgid "Open all"
269
+ msgstr "Åpne alle"
270
+
271
+ #: classes/SlideshowPluginPostType.php:234
272
+ msgid "Close all"
273
+ msgstr "Lukk alle"
274
+
275
+ #: classes/SlideshowPluginPostType.php:240
276
+ #: views/SlideshowPluginPostType/slides.php:10
277
+ msgid "Add slides to this slideshow by using one of the buttons above."
278
+ msgstr "Legg til lysbilder i dette showet ved å bruke en av knappene over."
279
+
280
+ #: classes/SlideshowPluginPostType.php:320
281
+ msgid "Duplicate"
282
+ msgstr "Dupliser"
283
+
284
+ #: classes/SlideshowPluginPostType.php:371
285
+ msgid "Copy"
286
+ msgstr "Kopier"
287
+
288
+ #: classes/SlideshowPluginShortcode.php:148
289
+ msgid "No slideshow selected."
290
+ msgstr "Ikke noe lysbildeshow valgt."
291
+
292
+ #: classes/SlideshowPluginSlideInserter.php:194
293
+ msgid "More results loaded"
294
+ msgstr "Flere resultater innlastet"
295
+
296
+ #: classes/SlideshowPluginSlideInserter.php:249
297
+ msgid "Load more results"
298
+ msgstr "Last inn flere resultater"
299
+
300
+ #: classes/SlideshowPluginSlideInserter.php:260
301
+ msgid "No images were found, click here to upload some."
302
+ msgstr "Ingen bilder funnet, klikk her for å laste opp."
303
+
304
+ #: classes/SlideshowPluginSlideInserter.php:332
305
+ msgid "Are you sure you want to delete this slide?"
306
+ msgstr "Er du sikker du vil slette dette lysbildet?"
307
+
308
+ #: classes/SlideshowPluginSlideInserter.php:333
309
+ msgid "Insert image slide"
310
+ msgstr "Sett inn bilde"
311
+
312
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:523
313
+ msgid "Maximum width. When maximum width is 0, maximum width is ignored"
314
+ msgstr "Max bredde. Når max bredde er 0, blir max bredde ignorert."
315
+
316
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
317
+ msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
318
+ msgstr "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
319
+
320
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
321
+ msgid "More info"
322
+ msgstr "Mer informasjon"
323
+
324
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
325
+ #, php-format
326
+ msgid ""
327
+ "Proportional relationship%s between slideshow's width and height (width:"
328
+ "height)"
329
+ msgstr ""
330
+ "Proporsjonal relasjon%s mellom lysbildeshowets bredde og høyde (bredde:høyde)"
331
+
332
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:525
333
+ msgid "Slideshow's height"
334
+ msgstr "Lysbildeshowets høyde"
335
+
336
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:526
337
+ msgid "Image behaviour"
338
+ msgstr "Bildeoppførsel"
339
+
340
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:527
341
+ msgid "Shrink slideshow's height when width shrinks"
342
+ msgstr "Reduser lysbildeshowets høyde når bredde reduseres"
343
+
344
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:528
345
+ msgid ""
346
+ "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
347
+ msgstr "Aktiver dynamisk bredde (reduser bredde når sidens bredde reduseres)"
348
+
349
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:530
350
+ msgid "Hide description box, pop up when mouse hovers over"
351
+ msgstr "Skjul beskrivelse, vises når musen beveges over"
352
+
353
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:533
354
+ msgid "Pause slideshow when mouse hovers over"
355
+ msgstr "Sett lysbildeshow på pause når musen beveges over"
356
+
357
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:534
358
+ msgid "Activate navigation buttons"
359
+ msgstr "Aktiver navigasjonsknapper"
360
+
361
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:535
362
+ msgid "Hide navigation buttons, show when mouse hovers over"
363
+ msgstr "Skjul navigasjonsknapper, vises når musen beveges over"
364
+
365
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:536
366
+ msgid "Activate pagination"
367
+ msgstr "Aktiver sidenummer"
368
+
369
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:537
370
+ msgid "Hide pagination, show when mouse hovers over"
371
+ msgstr "Skjul sidenummer, vises når musen beveges over"
372
+
373
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:538
374
+ msgid "Activate control panel (play and pause button)"
375
+ msgstr "Aktiver kontrollpanel (spill- og pauseknapp)"
376
+
377
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:539
378
+ msgid "Hide control panel, show when mouse hovers over"
379
+ msgstr "Skjul kontrollpanel, vises når musen beveges over"
380
+
381
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:540
382
+ msgid "Wait until the next slide has loaded before showing it"
383
+ msgstr "Vent til neste lysbilde er lastet før det vises"
384
+
385
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:541
386
+ msgid "Show a loading icon until the first slide appears"
387
+ msgstr "Vis et innlastingsikon til første lysbilde vises"
388
+
389
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:542
390
+ msgid "Randomize slides"
391
+ msgstr "Tilfeldig rekkefølge på lysbilder"
392
+
393
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:543
394
+ #, php-format
395
+ msgid "Avoid content filter (disable if '%s' is shown)"
396
+ msgstr "Unngå innholdsfilter (deaktiver hvis '%s' vises)"
397
+
398
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
399
+ msgid "Slide Left"
400
+ msgstr "Gli venstre"
401
+
402
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
403
+ msgid "Slide Right"
404
+ msgstr "Gli høyre"
405
+
406
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
407
+ msgid "Slide Up"
408
+ msgstr "Gli opp"
409
+
410
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
411
+ msgid "Slide Down"
412
+ msgstr "Gli ned"
413
+
414
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
415
+ msgid "Cross Fade"
416
+ msgstr ""
417
+
418
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
419
+ msgid "Direct Fade"
420
+ msgstr "Direkte nedtoning"
421
+
422
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
423
+ msgid "Random Animation"
424
+ msgstr "Tilfeldig animasjon"
425
+
426
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
427
+ msgid "Natural and centered"
428
+ msgstr "Naturlig og sentrert"
429
+
430
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
431
+ msgid "Crop to fit"
432
+ msgstr "Beskjær for å passe"
433
+
434
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
435
+ msgid "Stretch to fit"
436
+ msgstr "Strekk for å passe"
437
+
438
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:569
439
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:570
440
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:571
441
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:572
442
+ msgid "Miscellaneous"
443
+ msgstr "Annet"
444
+
445
+ #: classes/SlideshowPluginWidget.php:23
446
+ msgid "Enables you to show your slideshows in the widget area of your website."
447
+ msgstr ""
448
+ "Gjør deg i stand til å vise lysbildeshow i widgetområdet på nettsiden din."
449
+
450
+ #: classes/SlideshowPluginWidget.php:29
451
+ msgid "Slideshow Widget"
452
+ msgstr "Lysbildeshow widget"
453
+
454
+ #: views/SlideshowPlugin/slideshow.php:23
455
+ msgid "Play"
456
+ msgstr "Spill av"
457
+
458
+ #: views/SlideshowPlugin/slideshow.php:23
459
+ msgid "Pause"
460
+ msgstr "Pause"
461
+
462
+ #: views/SlideshowPlugin/slideshow.php:25
463
+ msgid "Previous"
464
+ msgstr "Forrige"
465
+
466
+ #: views/SlideshowPlugin/slideshow.php:26
467
+ msgid "Next"
468
+ msgstr "Neste"
469
+
470
+ #: views/SlideshowPlugin/slideshow.php:28
471
+ msgid "Go to slide"
472
+ msgstr "Gå til lysbilde"
473
+
474
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:46
475
+ msgid "Default stylesheets"
476
+ msgstr "Standard stiler"
477
+
478
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:60
479
+ msgid "Create a new custom style from this style"
480
+ msgstr "Lag en ny tilpasset stil fra denne stilen"
481
+
482
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:62
483
+ msgid "Customize"
484
+ msgstr "Tilpass"
485
+
486
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:76
487
+ msgid "Custom stylesheets"
488
+ msgstr "Tilpassede stiler"
489
+
490
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:89
491
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:172
492
+ msgid "Edit this style"
493
+ msgstr "Rediger denne stilen"
494
+
495
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:91
496
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:174
497
+ #: views/SlideshowPluginPostType/slides.php:138
498
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:112
499
+ msgid "Edit"
500
+ msgstr "Rediger"
501
+
502
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:98
503
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:181
504
+ msgid "Delete this style"
505
+ msgstr "Slett denne stilen"
506
+
507
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:100
508
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:183
509
+ msgid "Delete"
510
+ msgstr "Slett"
511
+
512
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:110
513
+ msgid "Click 'Customize' to create a new custom stylesheet."
514
+ msgstr "Klikk 'Tilpass' for å lage en ny tilpasset stil"
515
+
516
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:130
517
+ msgid "Select a stylesheet to start customizing it."
518
+ msgstr "Velg en stil for å tilpasse det"
519
+
520
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:139
521
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:192
522
+ #: views/SlideshowPluginPostType/slides.php:59
523
+ #: views/SlideshowPluginPostType/slides.php:144
524
+ #: views/SlideshowPluginPostType/slides.php:196
525
+ #: views/SlideshowPluginPostType/slides.php:264
526
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:120
527
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:18
528
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:150
529
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:80
530
+ #: views/SlideshowPluginWidget/form.php:2
531
+ msgid "Title"
532
+ msgstr "Tittel"
533
+
534
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:148
535
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:200
536
+ msgid "Style"
537
+ msgstr "Stil"
538
+
539
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:11
540
+ msgid "Note"
541
+ msgstr "Notat"
542
+
543
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:18
544
+ #, php-format
545
+ msgid ""
546
+ "The settings set on this page apply only to newly created slideshows and "
547
+ "therefore do not alter any existing ones. To adapt a slideshow's settings, "
548
+ "%sclick here.%s"
549
+ msgstr ""
550
+ "Innstillingene på denne siden vil bare påvirke nye lysbildeshow og vil ikke "
551
+ "endre allerede eksisterende. For å tilpasse innstillingene for et "
552
+ "lysbildeshow, %sklikk her.%s"
553
+
554
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:29
555
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:15
556
+ msgid "Default Slideshow Settings"
557
+ msgstr "Standard lysbildeshowinnstillinger"
558
+
559
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:41
560
+ #: views/SlideshowPluginPostType/settings.php:12
561
+ msgid "settings"
562
+ msgstr "innstillinger"
563
+
564
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:77
565
+ msgid "Default Slideshow Stylesheet"
566
+ msgstr "Standard lysbildeshowstil"
567
+
568
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:11
569
+ msgid "Add slideshows"
570
+ msgstr "Legg til lysbildeshow"
571
+
572
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:12
573
+ msgid "Edit slideshows"
574
+ msgstr "Rediger lysbildeshow"
575
+
576
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:13
577
+ msgid "Delete slideshows"
578
+ msgstr "Slett lysbildeshow"
579
+
580
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:20
581
+ msgid "User Capabilities"
582
+ msgstr "Brukermuligheter"
583
+
584
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:22
585
+ msgid "Select the user roles that will able to perform certain actions."
586
+ msgstr "Velg brukerrollene som kan utføre spesielle handlinger"
587
+
588
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:38
589
+ msgid "Untitled role"
590
+ msgstr "Rolle uten navn"
591
+
592
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:65
593
+ msgid "Settings"
594
+ msgstr "Innstillinger"
595
+
596
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:69
597
+ msgid "Stylesheet location"
598
+ msgstr "Stilsett plassering"
599
+
600
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:72
601
+ msgid "top"
602
+ msgstr "topp"
603
+
604
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:73
605
+ msgid "bottom"
606
+ msgstr "bunn"
607
+
608
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:16
609
+ msgid "Custom Styles"
610
+ msgstr "Tilpassede stiler"
611
+
612
+ #: views/SlideshowPluginPostType/information.php:1
613
+ msgid ""
614
+ "To use this slideshow in your website either add this piece of shortcode to "
615
+ "your posts or pages"
616
+ msgstr ""
617
+ "For å bruke dette lysbildeshowet på din hjemmeside, enten legg denne "
618
+ "kortkoden til ditt innlegg eller side"
619
+
620
+ #: views/SlideshowPluginPostType/information.php:5
621
+ msgid ""
622
+ "Or add this piece of code to where ever in your website you want to place "
623
+ "the slideshow"
624
+ msgstr ""
625
+ "Eller legg til denne koden hvor du ønsker å plassere lysbildeshowet på din "
626
+ "hjemmeside"
627
+
628
+ #: views/SlideshowPluginPostType/information.php:9
629
+ #, php-format
630
+ msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
631
+ msgstr "Eller gå til %swidgetsiden%s og vil lysbildeshowet som en widget."
632
+
633
+ #: views/SlideshowPluginPostType/settings.php:26
634
+ #: views/SlideshowPluginPostType/style-settings.php:11
635
+ msgid "Default"
636
+ msgstr "Standard"
637
+
638
+ #: views/SlideshowPluginPostType/slides.php:54
639
+ #: views/SlideshowPluginPostType/slides.php:191
640
+ #: views/SlideshowPluginSlideInserter/insert-text-button.php:2
641
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:9
642
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:69
643
+ msgid "Text slide"
644
+ msgstr "Tekstlysbilde"
645
+
646
+ #: views/SlideshowPluginPostType/slides.php:61
647
+ #: views/SlideshowPluginPostType/slides.php:150
648
+ #: views/SlideshowPluginPostType/slides.php:198
649
+ #: views/SlideshowPluginPostType/slides.php:270
650
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:135
651
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:33
652
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:165
653
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:95
654
+ msgid "Description"
655
+ msgstr "Beskrivelse"
656
+
657
+ #: views/SlideshowPluginPostType/slides.php:63
658
+ #: views/SlideshowPluginPostType/slides.php:200
659
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:51
660
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:113
661
+ msgid "Background color"
662
+ msgstr "Bakgrunnsfarge"
663
+
664
+ #: views/SlideshowPluginPostType/slides.php:68
665
+ #: views/SlideshowPluginPostType/slides.php:155
666
+ #: views/SlideshowPluginPostType/slides.php:205
667
+ #: views/SlideshowPluginPostType/slides.php:275
668
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:150
669
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:59
670
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:180
671
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:121
672
+ msgid "URL"
673
+ msgstr "URL"
674
+
675
+ #: views/SlideshowPluginPostType/slides.php:70
676
+ #: views/SlideshowPluginPostType/slides.php:157
677
+ #: views/SlideshowPluginPostType/slides.php:207
678
+ #: views/SlideshowPluginPostType/slides.php:277
679
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:153
680
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:62
681
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:183
682
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:124
683
+ msgid "Open URL in"
684
+ msgstr "Åpne URL i"
685
+
686
+ #: views/SlideshowPluginPostType/slides.php:72
687
+ #: views/SlideshowPluginPostType/slides.php:159
688
+ #: views/SlideshowPluginPostType/slides.php:209
689
+ #: views/SlideshowPluginPostType/slides.php:279
690
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:155
691
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:64
692
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:185
693
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:126
694
+ msgid "Same window"
695
+ msgstr "Samme vindu"
696
+
697
+ #: views/SlideshowPluginPostType/slides.php:73
698
+ #: views/SlideshowPluginPostType/slides.php:160
699
+ #: views/SlideshowPluginPostType/slides.php:210
700
+ #: views/SlideshowPluginPostType/slides.php:280
701
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:156
702
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:65
703
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:186
704
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:127
705
+ msgid "New window"
706
+ msgstr "Nytt vindu"
707
+
708
+ #: views/SlideshowPluginPostType/slides.php:90
709
+ #: views/SlideshowPluginPostType/slides.php:230
710
+ #: views/SlideshowPluginSlideInserter/insert-video-button.php:2
711
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:94
712
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:26
713
+ msgid "Video slide"
714
+ msgstr "Videolysbilde"
715
+
716
+ #: views/SlideshowPluginPostType/slides.php:95
717
+ #: views/SlideshowPluginPostType/slides.php:235
718
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:103
719
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:35
720
+ msgid "Youtube Video ID"
721
+ msgstr "Youtube Video ID"
722
+
723
+ #: views/SlideshowPluginPostType/slides.php:133
724
+ #: views/SlideshowPluginPostType/slides.php:255
725
+ #: views/SlideshowPluginSlideInserter/insert-image-button.php:2
726
+ #: views/SlideshowPluginSlideInserter/insert-image-button.php:4
727
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:101
728
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:135
729
+ msgid "Image slide"
730
+ msgstr "Bildelysbilde"
731
+
732
+ #: views/SlideshowPluginPostType/slides.php:171
733
+ msgid ""
734
+ "An error occurred while loading this slide, and it will not be present in "
735
+ "the slideshow"
736
+ msgstr ""
737
+ "En feil oppsto ved innlasting av dette lysbildet, og det vil ikke vises i "
738
+ "lysbildeshowet"
739
+
740
+ #: views/SlideshowPluginPostType/slides.php:177
741
+ #: views/SlideshowPluginPostType/slides.php:218
742
+ #: views/SlideshowPluginPostType/slides.php:243
743
+ #: views/SlideshowPluginPostType/slides.php:289
744
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:174
745
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:76
746
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:117
747
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:203
748
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:138
749
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:49
750
+ msgid "Delete slide"
751
+ msgstr "Slett lysbilde"
752
+
753
+ #: views/SlideshowPluginPostType/style-settings.php:22
754
+ #, php-format
755
+ msgid "Custom styles can be created and customized %shere%s."
756
+ msgstr "Tilpassede stiler kan opprettes og tilpasses %sher%s."
757
+
758
+ #: views/SlideshowPluginPostType/support-plugin.php:3
759
+ msgid "Help to keep this plugin free!"
760
+ msgstr "Hjelp til med å holde denne pluginen gratis!"
761
+
762
+ #: views/SlideshowPluginPostType/support-plugin.php:6
763
+ msgid ""
764
+ "In order to keep you provided with the newest features, updates and bug "
765
+ "fixes, a lot of motivation is required. Therefore I'm kindly asking you to "
766
+ "consider making a small donation to the plugin or rating it as 5-stars on "
767
+ "Wordpress.org. Thank you in advance!"
768
+ msgstr ""
769
+ "For å fortsette å gi dere de nyeste funksjonene, oppdateringer og bugfikser "
770
+ "trengs det mye motivasjon. Derfor spør jeg dere vennlig om å gi en liten "
771
+ "donasjon til pluginen eller å gi den en 5-stjernes rangering på Wordpress."
772
+ "org. På forhånd takk!"
773
+
774
+ #: views/SlideshowPluginPostType/support-plugin.php:15
775
+ msgid "Rate on Wordpress.org"
776
+ msgstr "Rangér på Wordpress.org"
777
+
778
+ #: views/SlideshowPluginPostType/support-plugin.php:24
779
+ msgid "Frequently Asked Questions (FAQ)"
780
+ msgstr "Ofte spurte spørsmål (FAQ)"
781
+
782
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
783
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
784
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
785
+ msgid "Insert a Slideshow"
786
+ msgstr "Sett inn et lysbildeshow"
787
+
788
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
789
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
790
+ msgid "Insert Slideshow"
791
+ msgstr "Sett inn lysbildeshow"
792
+
793
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
794
+ msgid "Select a slideshow"
795
+ msgstr "Velg lysbildeshow"
796
+
797
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
798
+ #: views/SlideshowPluginWidget/form.php:12
799
+ msgid "Untitled slideshow"
800
+ msgstr "Lysbildeshow uten navn"
801
+
802
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
803
+ msgid "Cancel"
804
+ msgstr "Avbryt"
805
+
806
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
807
+ #, php-format
808
+ msgid ""
809
+ "It seems you haven't created any slideshows yet. %sYou can create a "
810
+ "slideshow here!%s"
811
+ msgstr ""
812
+ "Det ser ut til at du ikke har laget noe lysbildeshow ennå. %sDu kan lage et "
813
+ "lysbildeshow her!%s"
814
+
815
+ #: views/SlideshowPluginSlideInserter/search-popup.php:6
816
+ msgid "Search"
817
+ msgstr "Søk"
818
+
819
+ #: views/SlideshowPluginSlideInserter/search-popup.php:7
820
+ msgid "Search images by title or ID"
821
+ msgstr "Søk bilder etter tittel eller ID"
822
+
823
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:90
824
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:4
825
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:89
826
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:130
827
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:58
828
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:21
829
+ msgid "Click to toggle"
830
+ msgstr "Klikk for å skifte"
831
+
832
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:160
833
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:69
834
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:190
835
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:131
836
+ msgid "Don't let search engines follow link"
837
+ msgstr "Ikke la søkemotorer følge linken"
838
+
839
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:168
840
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:197
841
+ msgid "Alternative text"
842
+ msgstr "Alternativ tekst"
843
+
844
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:48
845
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:110
846
+ msgid "Text color"
847
+ msgstr "Tekst farge"
848
+
849
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:53
850
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:115
851
+ msgid "(Leave empty for a transparent background)"
852
+ msgstr "(La stå tom for gjennomsiktig bakgrunn)"
853
+
854
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:110
855
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:42
856
+ msgid "Show related videos"
857
+ msgstr "Vis beslektede videoer"
858
+
859
+ #: views/SlideshowPluginUpload/upload-button.php:1
860
+ msgid "Upload/Manage Images"
861
+ msgstr "Last opp/Håndtér bilder"
862
+
863
+ #: views/SlideshowPluginWidget/form.php:9
864
+ msgid "Random Slideshow"
865
+ msgstr "Tilfeldig lysbildeshow"
866
+
867
+ #~ msgid "Leave any field open to use default value."
868
+ #~ msgstr "Een veld dat open wordt gelaten neemt de standaardwaarde aan."
languages/slideshow-plugin-nl_NL.mo CHANGED
Binary file
languages/slideshow-plugin-nl_NL.po CHANGED
@@ -1,950 +1,950 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Slideshow Plugin\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-04-23 17:44+0100\n"
6
- "PO-Revision-Date: 2015-04-23 17:44+0100\n"
7
- "Last-Translator: Stefan Boonstra <stefanboonstra@hotmail.com>\n"
8
- "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
- "Language: nl_NL\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: _e;__\n"
14
- "X-Poedit-Basepath: ../\n"
15
- "X-Generator: Poedit 1.7.6\n"
16
- "X-Poedit-SearchPath-0: .\n"
17
-
18
- #: classes/SlideshowPluginGeneralSettings.php:82
19
- #: classes/SlideshowPluginGeneralSettings.php:83
20
- #: views/SlideshowPluginGeneralSettings/general-settings.php:14
21
- msgid "General Settings"
22
- msgstr "Algemene Instellingen"
23
-
24
- #: classes/SlideshowPluginGeneralSettings.php:150
25
- msgid "New"
26
- msgstr "Nieuw"
27
-
28
- #: classes/SlideshowPluginGeneralSettings.php:151
29
- msgid "Are you sure you want to delete this custom style?"
30
- msgstr "Weet je zeker dat je deze aangepaste stijl wilt verwijderen?"
31
-
32
- #: classes/SlideshowPluginGeneralSettings.php:196
33
- #: classes/SlideshowPluginInstaller.php:803
34
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:6
35
- msgid "Light"
36
- msgstr "Licht"
37
-
38
- #: classes/SlideshowPluginGeneralSettings.php:197
39
- #: classes/SlideshowPluginInstaller.php:803
40
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:7
41
- msgid "Dark"
42
- msgstr "Donker"
43
-
44
- #: classes/SlideshowPluginGeneralSettings.php:353
45
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:57
46
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:143
47
- msgid "Untitled"
48
- msgstr "Naamloos"
49
-
50
- #: classes/SlideshowPluginInstaller.php:800
51
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:472
52
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:111
53
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:43
54
- msgid "Yes"
55
- msgstr "Ja"
56
-
57
- #: classes/SlideshowPluginInstaller.php:801
58
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:473
59
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:112
60
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:44
61
- msgid "No"
62
- msgstr "Nee"
63
-
64
- #: classes/SlideshowPluginInstaller.php:803
65
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:610
66
- msgid "The style used for this slideshow"
67
- msgstr "De stijl te gebruiken voor deze slideshow"
68
-
69
- #: classes/SlideshowPluginInstaller.php:803
70
- msgid "Custom"
71
- msgstr "Aangepast"
72
-
73
- #: classes/SlideshowPluginInstaller.php:804
74
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:126
75
- msgid "Custom style editor"
76
- msgstr "Aangepaste stijl bewerker"
77
-
78
- #: classes/SlideshowPluginInstaller.php:805
79
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:518
80
- msgid "Animation used for transition between slides"
81
- msgstr "Animatie tussen het wisselen van de slides"
82
-
83
- #: classes/SlideshowPluginInstaller.php:805
84
- msgid "Slide"
85
- msgstr "Slide"
86
-
87
- #: classes/SlideshowPluginInstaller.php:805
88
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
89
- msgid "Fade"
90
- msgstr "Fade"
91
-
92
- #: classes/SlideshowPluginInstaller.php:805
93
- #: classes/SlideshowPluginInstaller.php:806
94
- #: classes/SlideshowPluginInstaller.php:807
95
- #: classes/SlideshowPluginInstaller.php:808
96
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
97
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:548
98
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:549
99
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:550
100
- msgid "Animation"
101
- msgstr "Animatie"
102
-
103
- #: classes/SlideshowPluginInstaller.php:806
104
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:519
105
- msgid "Number of seconds the slide takes to slide in"
106
- msgstr ""
107
- "Aantal seconden dat de animatie van het inschuiven van de volgende slide "
108
- "duurt"
109
-
110
- #: classes/SlideshowPluginInstaller.php:807
111
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:520
112
- msgid "Number of seconds the description takes to slide in"
113
- msgstr "Aantal seconden dat het inschuiven van de beschrijving duurt"
114
-
115
- #: classes/SlideshowPluginInstaller.php:808
116
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:521
117
- msgid "Seconds between changing slides"
118
- msgstr "Seconden tussen het wisselen van de slides"
119
-
120
- #: classes/SlideshowPluginInstaller.php:809
121
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:522
122
- msgid "Number of slides to fit into one slide"
123
- msgstr "Aantal slides om in een slide te plaatsen"
124
-
125
- #: classes/SlideshowPluginInstaller.php:809
126
- #: classes/SlideshowPluginInstaller.php:810
127
- #: classes/SlideshowPluginInstaller.php:811
128
- #: classes/SlideshowPluginInstaller.php:812
129
- #: classes/SlideshowPluginInstaller.php:813
130
- #: classes/SlideshowPluginInstaller.php:814
131
- #: classes/SlideshowPluginInstaller.php:815
132
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:551
133
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:552
134
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:553
135
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:554
136
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
137
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:556
138
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:557
139
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:558
140
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:559
141
- msgid "Display"
142
- msgstr "Weergave"
143
-
144
- #: classes/SlideshowPluginInstaller.php:810
145
- msgid "Width of the slideshow, set to parent&#39;s width on 0"
146
- msgstr ""
147
- "Breedte van de slideshow, past zich aan op bovenliggende element wanneer 0"
148
-
149
- #: classes/SlideshowPluginInstaller.php:811
150
- msgid "Height of the slideshow"
151
- msgstr "Hoogte van de slideshow"
152
-
153
- #: classes/SlideshowPluginInstaller.php:812
154
- msgid "Height of the description boxes"
155
- msgstr "Hoogte van de beschrijvingen"
156
-
157
- #: classes/SlideshowPluginInstaller.php:813
158
- msgid "Fit image into slide (stretching it)"
159
- msgstr "Pas afbeelding in de slideshow (oprekken)"
160
-
161
- #: classes/SlideshowPluginInstaller.php:814
162
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:529
163
- msgid "Show title and description"
164
- msgstr "Toon titel en beschrijving"
165
-
166
- #: classes/SlideshowPluginInstaller.php:815
167
- msgid "Hide description box, it will pop up when a mouse hovers over the slide"
168
- msgstr ""
169
- "Verberg beschrijving, toon deze alleen wanneer de muisaanwijzer boven de "
170
- "slide is"
171
-
172
- #: classes/SlideshowPluginInstaller.php:816
173
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:531
174
- msgid "Automatically slide to the next slide"
175
- msgstr "Automatisch naar de volgende slide gaan"
176
-
177
- #: classes/SlideshowPluginInstaller.php:816
178
- #: classes/SlideshowPluginInstaller.php:817
179
- #: classes/SlideshowPluginInstaller.php:818
180
- #: classes/SlideshowPluginInstaller.php:819
181
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:560
182
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:561
183
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:562
184
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:563
185
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:564
186
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:565
187
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:566
188
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:567
189
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:568
190
- msgid "Control"
191
- msgstr "Controle"
192
-
193
- #: classes/SlideshowPluginInstaller.php:817
194
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:532
195
- msgid "Return to the beginning of the slideshow after last slide"
196
- msgstr "Keer terug naar het begin van de slideshow na de laatste slide."
197
-
198
- #: classes/SlideshowPluginInstaller.php:818
199
- msgid "Activate buttons (so the user can scroll through the slides)"
200
- msgstr "Knoppen activeren (zodat de gebruiker door de slides kan scrollen)"
201
-
202
- #: classes/SlideshowPluginInstaller.php:819
203
- msgid "Show control panel (play and pause button)"
204
- msgstr "Toon controlepaneel (speel en pause knop)"
205
-
206
- #: classes/SlideshowPluginPostType.php:45
207
- msgid "Slideshows"
208
- msgstr "Slideshows"
209
-
210
- #: classes/SlideshowPluginPostType.php:46
211
- #: views/SlideshowPluginWidget/form.php:7
212
- msgid "Slideshow"
213
- msgstr "Slideshow"
214
-
215
- #: classes/SlideshowPluginPostType.php:47
216
- msgid "Add New Slideshow"
217
- msgstr "Nieuwe Slideshow Toevoegen"
218
-
219
- #: classes/SlideshowPluginPostType.php:48
220
- msgid "Edit slideshow"
221
- msgstr "Slideshow bewerken"
222
-
223
- #: classes/SlideshowPluginPostType.php:49
224
- msgid "New slideshow"
225
- msgstr "Nieuwe slideshow"
226
-
227
- #: classes/SlideshowPluginPostType.php:50
228
- msgid "View slideshow"
229
- msgstr "Slideshow bekijken"
230
-
231
- #: classes/SlideshowPluginPostType.php:51
232
- msgid "Search slideshows"
233
- msgstr "Slideshows zoeken"
234
-
235
- #: classes/SlideshowPluginPostType.php:52
236
- #: classes/SlideshowPluginPostType.php:53
237
- msgid "No slideshows found"
238
- msgstr "Geen slideshows gevonden"
239
-
240
- #: classes/SlideshowPluginPostType.php:98
241
- msgid "Information"
242
- msgstr "Informatie"
243
-
244
- #: classes/SlideshowPluginPostType.php:107
245
- msgid "Slides List"
246
- msgstr "Slides Lijst"
247
-
248
- #: classes/SlideshowPluginPostType.php:116
249
- msgid "Slideshow Style"
250
- msgstr "Slideshow Stijl"
251
-
252
- #: classes/SlideshowPluginPostType.php:125
253
- msgid "Slideshow Settings"
254
- msgstr "Slideshow Instellingen"
255
-
256
- #: classes/SlideshowPluginPostType.php:173
257
- msgid "Slideshow created"
258
- msgstr "Slideshow aangemaakt"
259
-
260
- #: classes/SlideshowPluginPostType.php:177
261
- msgid "Slideshow updated"
262
- msgstr "Slideshow bijgewerkt"
263
-
264
- #: classes/SlideshowPluginPostType.php:224
265
- #: classes/SlideshowPluginSlideInserter.php:238
266
- #: views/SlideshowPluginPostType/slides.php:2
267
- msgid "Insert"
268
- msgstr "Invoegen"
269
-
270
- #: classes/SlideshowPluginPostType.php:232
271
- msgid "Open all"
272
- msgstr "Open alle"
273
-
274
- #: classes/SlideshowPluginPostType.php:234
275
- msgid "Close all"
276
- msgstr "Sluit alle"
277
-
278
- #: classes/SlideshowPluginPostType.php:240
279
- #: views/SlideshowPluginPostType/slides.php:10
280
- msgid "Add slides to this slideshow by using one of the buttons above."
281
- msgstr "Voeg slides toe doormiddel van de bovenstaande knoppen."
282
-
283
- #: classes/SlideshowPluginPostType.php:320
284
- msgid "Duplicate"
285
- msgstr "Dupliceer"
286
-
287
- #: classes/SlideshowPluginPostType.php:371
288
- msgid "Copy"
289
- msgstr "Kopie"
290
-
291
- #: classes/SlideshowPluginShortcode.php:148
292
- msgid "No slideshow selected."
293
- msgstr "Geen slideshow geselecteerd."
294
-
295
- #: classes/SlideshowPluginSlideInserter.php:194
296
- msgid "More results loaded"
297
- msgstr "Extra resultaten geladen"
298
-
299
- #: classes/SlideshowPluginSlideInserter.php:249
300
- msgid "Load more results"
301
- msgstr "Meer resultaten laden"
302
-
303
- #: classes/SlideshowPluginSlideInserter.php:260
304
- msgid "No images were found, click here to upload some."
305
- msgstr "Geen afbeeldingen gevonden, klik hier om afbeeldingen te uploaden."
306
-
307
- #: classes/SlideshowPluginSlideInserter.php:332
308
- msgid "Are you sure you want to delete this slide?"
309
- msgstr "Weet je zeker dat je deze slide wilt verwijderen?"
310
-
311
- #: classes/SlideshowPluginSlideInserter.php:333
312
- msgid "Insert image slide"
313
- msgstr "Afbeeldingsslide invoegen"
314
-
315
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:523
316
- msgid "Maximum width. When maximum width is 0, maximum width is ignored"
317
- msgstr ""
318
- "Maximum breedte. Wanneer maximum breedte 0 is, zal deze worden genegeerd"
319
-
320
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
321
- msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
322
- msgstr "http://nl.wikipedia.org/wiki/Beeldverhouding"
323
-
324
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
325
- msgid "More info"
326
- msgstr "Meer informatie"
327
-
328
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
329
- #, php-format
330
- msgid ""
331
- "Proportional relationship%s between slideshow's width and height (width:"
332
- "height)"
333
- msgstr ""
334
- "Proportionele verhouding%s tussen de slideshow's breedte en hoogte (breedte:"
335
- "hoogte)"
336
-
337
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:525
338
- msgid "Slideshow's height"
339
- msgstr "Slideshow's hoogte"
340
-
341
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:526
342
- msgid "Image behaviour"
343
- msgstr "Gedrag van afbeeldingen"
344
-
345
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:527
346
- msgid "Shrink slideshow's height when width shrinks"
347
- msgstr "Maak de slideshow's hoogte kleiner wanneer de breedte kleiner wordt"
348
-
349
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:528
350
- msgid ""
351
- "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
352
- msgstr ""
353
- "Gebruik responsiviteit (Maak slideshow smaller wanneer de pagina smaller "
354
- "wordt)"
355
-
356
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:530
357
- msgid "Hide description box, pop up when mouse hovers over"
358
- msgstr ""
359
- "Verbeg beschrijving, toon deze alleen wanneer de muisaanwijzer boven de "
360
- "slideshow is"
361
-
362
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:533
363
- msgid "Pause slideshow when mouse hovers over"
364
- msgstr "Pauzeer slideshow wanneer de muisaanwijzer boven de slideshow is"
365
-
366
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:534
367
- msgid "Activate navigation buttons"
368
- msgstr "Toon navigatie knoppen"
369
-
370
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:535
371
- msgid "Hide navigation buttons, show when mouse hovers over"
372
- msgstr ""
373
- "Verberg navigatieknoppen, toon deze aleen wanneer de muisaanwijzer boven de "
374
- "slideshow is"
375
-
376
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:536
377
- msgid "Activate pagination"
378
- msgstr "Toon paginering"
379
-
380
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:537
381
- msgid "Hide pagination, show when mouse hovers over"
382
- msgstr ""
383
- "Verberg paginering, toon deze alleen wanneer de muisaanwijzer boven de "
384
- "slideshow is"
385
-
386
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:538
387
- msgid "Activate control panel (play and pause button)"
388
- msgstr "Toon controlepaneel (speel en pause knop)"
389
-
390
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:539
391
- msgid "Hide control panel, show when mouse hovers over"
392
- msgstr ""
393
- "Verberg controlepaneel, toon deze alleen wanneer de muisaanwijzer boven de "
394
- "slideshow is"
395
-
396
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:540
397
- msgid "Wait until the next slide has loaded before showing it"
398
- msgstr "Wacht tot de volgende slide is geladen, voor het tonen ervan"
399
-
400
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:541
401
- msgid "Show a loading icon until the first slide appears"
402
- msgstr ""
403
- "Toon een icoon dat aanduidt dat de slideshow bezig is met laden, voordat de "
404
- "eerste slide wordt getoond"
405
-
406
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:542
407
- msgid "Randomize slides"
408
- msgstr "Toon slides in willekeurige volgorde"
409
-
410
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:543
411
- #, php-format
412
- msgid "Avoid content filter (disable if '%s' is shown)"
413
- msgstr "Content filter omzeilen (uitschakelen als '%s' wordt getoond)"
414
-
415
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
416
- msgid "Slide Left"
417
- msgstr "Schuif Links"
418
-
419
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
420
- msgid "Slide Right"
421
- msgstr "Schuif Rechts"
422
-
423
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
424
- msgid "Slide Up"
425
- msgstr "Schuif Omhoog"
426
-
427
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
428
- msgid "Slide Down"
429
- msgstr "Schuif Omlaag"
430
-
431
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
432
- msgid "Cross Fade"
433
- msgstr "Rechtstreekse Fade"
434
-
435
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
436
- msgid "Direct Fade"
437
- msgstr "Transparante Fade"
438
-
439
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
440
- msgid "Random Animation"
441
- msgstr "Willekeurige Animatie"
442
-
443
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
444
- msgid "Natural and centered"
445
- msgstr "Natuurlijk en gecentreerd"
446
-
447
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
448
- msgid "Crop to fit"
449
- msgstr "Passend maken door bijknippen"
450
-
451
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
452
- msgid "Stretch to fit"
453
- msgstr "Passend maken door oprekken"
454
-
455
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:569
456
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:570
457
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:571
458
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:572
459
- msgid "Miscellaneous"
460
- msgstr "Overige"
461
-
462
- #: classes/SlideshowPluginWidget.php:23
463
- msgid "Enables you to show your slideshows in the widget area of your website."
464
- msgstr ""
465
- "Maakt het mogelijk je slideshows te bijken in het widget gebied van je "
466
- "website."
467
-
468
- #: classes/SlideshowPluginWidget.php:29
469
- msgid "Slideshow Widget"
470
- msgstr "Slideshow Widget"
471
-
472
- #: views/SlideshowPlugin/slideshow.php:23
473
- msgid "Play"
474
- msgstr "Afspelen"
475
-
476
- #: views/SlideshowPlugin/slideshow.php:23
477
- msgid "Pause"
478
- msgstr "Pauzeren"
479
-
480
- #: views/SlideshowPlugin/slideshow.php:25
481
- msgid "Previous"
482
- msgstr "Vorige"
483
-
484
- #: views/SlideshowPlugin/slideshow.php:26
485
- msgid "Next"
486
- msgstr "Volgende"
487
-
488
- #: views/SlideshowPlugin/slideshow.php:28
489
- msgid "Go to slide"
490
- msgstr "Ga naar slide"
491
-
492
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:46
493
- msgid "Default stylesheets"
494
- msgstr "Standaard stijlen"
495
-
496
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:60
497
- msgid "Create a new custom style from this style"
498
- msgstr "Maak een nieuwe aangepaste stijl uit deze stijl"
499
-
500
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:62
501
- msgid "Customize"
502
- msgstr "Aanpassen"
503
-
504
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:76
505
- msgid "Custom stylesheets"
506
- msgstr "Aangepaste stijl"
507
-
508
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:89
509
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:172
510
- msgid "Edit this style"
511
- msgstr "Bewerk deze stijl"
512
-
513
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:91
514
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:174
515
- #: views/SlideshowPluginPostType/slides.php:138
516
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:112
517
- msgid "Edit"
518
- msgstr "Bewerken"
519
-
520
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:98
521
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:181
522
- msgid "Delete this style"
523
- msgstr "Verwijder stijl"
524
-
525
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:100
526
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:183
527
- msgid "Delete"
528
- msgstr "Verwijderen"
529
-
530
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:110
531
- msgid "Click 'Customize' to create a new custom stylesheet."
532
- msgstr "Klik op 'Aanpassen' om een nieuwe aangepaste stijl te maken."
533
-
534
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:130
535
- msgid "Select a stylesheet to start customizing it."
536
- msgstr "Kies een stijl om deze aan te passen."
537
-
538
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:139
539
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:192
540
- #: views/SlideshowPluginPostType/slides.php:59
541
- #: views/SlideshowPluginPostType/slides.php:144
542
- #: views/SlideshowPluginPostType/slides.php:196
543
- #: views/SlideshowPluginPostType/slides.php:264
544
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:120
545
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:18
546
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:150
547
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:80
548
- #: views/SlideshowPluginWidget/form.php:2
549
- msgid "Title"
550
- msgstr "Titel"
551
-
552
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:148
553
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:200
554
- msgid "Style"
555
- msgstr "Stijl"
556
-
557
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:11
558
- msgid "Note"
559
- msgstr "Opgelet"
560
-
561
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:18
562
- #, php-format
563
- msgid ""
564
- "The settings set on this page apply only to newly created slideshows and "
565
- "therefore do not alter any existing ones. To adapt a slideshow's settings, "
566
- "%sclick here.%s"
567
- msgstr ""
568
- "De instellingen op deze pagina zijn alleen van toepassing op slideshows die "
569
- "nieuw worden aangemaakt en niet op de slideshows die reeds bestaan. Om een "
570
- "slideshow's instellingen te wijzigen, %sklik hier.%s"
571
-
572
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:29
573
- #: views/SlideshowPluginGeneralSettings/general-settings.php:15
574
- msgid "Default Slideshow Settings"
575
- msgstr "Standaard Slideshow Instellingen"
576
-
577
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:41
578
- #: views/SlideshowPluginPostType/settings.php:12
579
- msgid "settings"
580
- msgstr "instellingen"
581
-
582
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:77
583
- msgid "Default Slideshow Stylesheet"
584
- msgstr "Standaard Slideshow Stijl"
585
-
586
- #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:11
587
- msgid "Add slideshows"
588
- msgstr "Slideshows toevoegen"
589
-
590
- #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:12
591
- msgid "Edit slideshows"
592
- msgstr "Slideshows bewerken"
593
-
594
- #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:13
595
- msgid "Delete slideshows"
596
- msgstr "Slideshows verwijderen"
597
-
598
- #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:20
599
- msgid "User Capabilities"
600
- msgstr "Gebruikersrechten"
601
-
602
- #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:22
603
- msgid "Select the user roles that will able to perform certain actions."
604
- msgstr "Kies de gebruikersrol waaraan je bepaalde rechten wilt verlenen."
605
-
606
- #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:38
607
- msgid "Untitled role"
608
- msgstr "Naamloze gebruikersfunctie"
609
-
610
- #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:65
611
- msgid "Settings"
612
- msgstr "instellingen"
613
-
614
- #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:69
615
- msgid "Stylesheet location"
616
- msgstr "Stylesheet locatie"
617
-
618
- #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:72
619
- msgid "top"
620
- msgstr "boven"
621
-
622
- #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:73
623
- msgid "bottom"
624
- msgstr "onder"
625
-
626
- #: views/SlideshowPluginGeneralSettings/general-settings.php:16
627
- msgid "Custom Styles"
628
- msgstr "Aangepaste Stijlen"
629
-
630
- #: views/SlideshowPluginPostType/information.php:1
631
- msgid ""
632
- "To use this slideshow in your website either add this piece of shortcode to "
633
- "your posts or pages"
634
- msgstr ""
635
- "Om deze slideshow op je website te gebruiken voeg je of dit stukje shortcode "
636
- "aan je pagina of post toe"
637
-
638
- #: views/SlideshowPluginPostType/information.php:5
639
- msgid ""
640
- "Or add this piece of code to where ever in your website you want to place "
641
- "the slideshow"
642
- msgstr ""
643
- "Of je voegt dit stuk code toe aan je broncode op de plaats waar je wilt dat "
644
- "de slideshow te zien is"
645
-
646
- #: views/SlideshowPluginPostType/information.php:9
647
- #, php-format
648
- msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
649
- msgstr ""
650
- "Ook kan je naar de %swidget pagina%s toegaan, om de slideshow te tonen als "
651
- "widget."
652
-
653
- #: views/SlideshowPluginPostType/settings.php:26
654
- #: views/SlideshowPluginPostType/style-settings.php:11
655
- msgid "Default"
656
- msgstr "Standaard"
657
-
658
- #: views/SlideshowPluginPostType/slides.php:54
659
- #: views/SlideshowPluginPostType/slides.php:191
660
- #: views/SlideshowPluginSlideInserter/insert-text-button.php:2
661
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:9
662
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:69
663
- msgid "Text slide"
664
- msgstr "Tekst slide"
665
-
666
- #: views/SlideshowPluginPostType/slides.php:61
667
- #: views/SlideshowPluginPostType/slides.php:150
668
- #: views/SlideshowPluginPostType/slides.php:198
669
- #: views/SlideshowPluginPostType/slides.php:270
670
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:135
671
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:33
672
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:165
673
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:95
674
- msgid "Description"
675
- msgstr "Beschrijving"
676
-
677
- #: views/SlideshowPluginPostType/slides.php:63
678
- #: views/SlideshowPluginPostType/slides.php:200
679
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:51
680
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:113
681
- msgid "Background color"
682
- msgstr "Achtergrond kleur"
683
-
684
- #: views/SlideshowPluginPostType/slides.php:68
685
- #: views/SlideshowPluginPostType/slides.php:155
686
- #: views/SlideshowPluginPostType/slides.php:205
687
- #: views/SlideshowPluginPostType/slides.php:275
688
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:150
689
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:59
690
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:180
691
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:121
692
- msgid "URL"
693
- msgstr "URL"
694
-
695
- #: views/SlideshowPluginPostType/slides.php:70
696
- #: views/SlideshowPluginPostType/slides.php:157
697
- #: views/SlideshowPluginPostType/slides.php:207
698
- #: views/SlideshowPluginPostType/slides.php:277
699
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:153
700
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:62
701
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:183
702
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:124
703
- msgid "Open URL in"
704
- msgstr "Open URL in"
705
-
706
- #: views/SlideshowPluginPostType/slides.php:72
707
- #: views/SlideshowPluginPostType/slides.php:159
708
- #: views/SlideshowPluginPostType/slides.php:209
709
- #: views/SlideshowPluginPostType/slides.php:279
710
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:155
711
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:64
712
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:185
713
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:126
714
- msgid "Same window"
715
- msgstr "Zelfde scherm"
716
-
717
- #: views/SlideshowPluginPostType/slides.php:73
718
- #: views/SlideshowPluginPostType/slides.php:160
719
- #: views/SlideshowPluginPostType/slides.php:210
720
- #: views/SlideshowPluginPostType/slides.php:280
721
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:156
722
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:65
723
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:186
724
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:127
725
- msgid "New window"
726
- msgstr "Nieuw scherm"
727
-
728
- #: views/SlideshowPluginPostType/slides.php:90
729
- #: views/SlideshowPluginPostType/slides.php:230
730
- #: views/SlideshowPluginSlideInserter/insert-video-button.php:2
731
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:94
732
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:26
733
- msgid "Video slide"
734
- msgstr "Video slide"
735
-
736
- #: views/SlideshowPluginPostType/slides.php:95
737
- #: views/SlideshowPluginPostType/slides.php:235
738
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:103
739
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:35
740
- msgid "Youtube Video ID"
741
- msgstr "Youtube Video ID"
742
-
743
- #: views/SlideshowPluginPostType/slides.php:133
744
- #: views/SlideshowPluginPostType/slides.php:255
745
- #: views/SlideshowPluginSlideInserter/insert-image-button.php:2
746
- #: views/SlideshowPluginSlideInserter/insert-image-button.php:4
747
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:101
748
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:135
749
- msgid "Image slide"
750
- msgstr "Afbeeldingsslide"
751
-
752
- #: views/SlideshowPluginPostType/slides.php:171
753
- msgid ""
754
- "An error occurred while loading this slide, and it will not be present in "
755
- "the slideshow"
756
- msgstr ""
757
- "Een fout is ontstaan tijdens het laden van deze slide, de slide zal niet te "
758
- "bekijken zijn in je slideshow"
759
-
760
- #: views/SlideshowPluginPostType/slides.php:177
761
- #: views/SlideshowPluginPostType/slides.php:218
762
- #: views/SlideshowPluginPostType/slides.php:243
763
- #: views/SlideshowPluginPostType/slides.php:289
764
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:174
765
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:76
766
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:117
767
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:203
768
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:138
769
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:49
770
- msgid "Delete slide"
771
- msgstr "Verwijder slide"
772
-
773
- #: views/SlideshowPluginPostType/style-settings.php:22
774
- #, php-format
775
- msgid "Custom styles can be created and customized %shere%s."
776
- msgstr "Aangepaste stijlen kunnen %shier%s worden aangemaakt en aangepast."
777
-
778
- #: views/SlideshowPluginPostType/support-plugin.php:3
779
- msgid "Help to keep this plugin free!"
780
- msgstr "Help mee om deze plugin gratis te houden!"
781
-
782
- #: views/SlideshowPluginPostType/support-plugin.php:6
783
- msgid ""
784
- "In order to keep you provided with the newest features, updates and bug "
785
- "fixes, a lot of motivation is required. Therefore I'm kindly asking you to "
786
- "consider making a small donation to the plugin or rating it as 5-stars on "
787
- "Wordpress.org. Thank you in advance!"
788
- msgstr ""
789
- "Om je te kunnen voorzien van de nieuwste functionaliteiten, updates en "
790
- "foutoplossingen, is een hoop motivatie nodig. Ik zou je daarom willen vragen "
791
- "een kleine donatie aan deze plugin te willen overwegen, of de plugin een "
792
- "goede beoordeling te geven op WordPress.org. Alvast bedankt!"
793
-
794
- #: views/SlideshowPluginPostType/support-plugin.php:15
795
- msgid "Rate on Wordpress.org"
796
- msgstr "Geef een waardering op Wordpress.org"
797
-
798
- #: views/SlideshowPluginPostType/support-plugin.php:24
799
- msgid "Frequently Asked Questions (FAQ)"
800
- msgstr "Veelgestelde Vragen (FAQ)"
801
-
802
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
803
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
804
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
805
- msgid "Insert a Slideshow"
806
- msgstr "Slideshow invoegen"
807
-
808
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
809
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
810
- msgid "Insert Slideshow"
811
- msgstr "Slideshow invoegen"
812
-
813
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
814
- msgid "Select a slideshow"
815
- msgstr "Selecteer een slideshow"
816
-
817
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
818
- #: views/SlideshowPluginWidget/form.php:12
819
- msgid "Untitled slideshow"
820
- msgstr "Naamloze slideshow"
821
-
822
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
823
- msgid "Cancel"
824
- msgstr "Annuleren"
825
-
826
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
827
- #, php-format
828
- msgid ""
829
- "It seems you haven't created any slideshows yet. %sYou can create a "
830
- "slideshow here!%s"
831
- msgstr ""
832
- "Het ziet er naar uit dat je nog geen slideshows hebt gemaakt. %sHier kan je "
833
- "een slideshow maken!%s"
834
-
835
- #: views/SlideshowPluginSlideInserter/search-popup.php:6
836
- msgid "Search"
837
- msgstr "Zoek"
838
-
839
- #: views/SlideshowPluginSlideInserter/search-popup.php:7
840
- msgid "Search images by title or ID"
841
- msgstr "Zoek afbeeldingen op titel of ID"
842
-
843
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:90
844
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:4
845
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:89
846
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:130
847
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:58
848
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:21
849
- msgid "Click to toggle"
850
- msgstr "Klik om te wisselen"
851
-
852
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:160
853
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:69
854
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:190
855
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:131
856
- msgid "Don't let search engines follow link"
857
- msgstr "Laat zoekmachines deze link niet volgen"
858
-
859
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:168
860
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:197
861
- msgid "Alternative text"
862
- msgstr "Alterntieve tekst"
863
-
864
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:48
865
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:110
866
- msgid "Text color"
867
- msgstr "Tekst kleur"
868
-
869
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:53
870
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:115
871
- msgid "(Leave empty for a transparent background)"
872
- msgstr "(Laat leeg voor een transparante achtergrond)"
873
-
874
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:110
875
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:42
876
- msgid "Show related videos"
877
- msgstr "Toon gerelateerde videos"
878
-
879
- #: views/SlideshowPluginUpload/upload-button.php:1
880
- msgid "Upload/Manage Images"
881
- msgstr "Upload/Beheer Afbeeldingen"
882
-
883
- #: views/SlideshowPluginWidget/form.php:9
884
- msgid "Random Slideshow"
885
- msgstr "Willekeurige Slideshow"
886
-
887
- #~ msgid "Fit image into slide (Stretch image)"
888
- #~ msgstr "Pas afbeelding in de slideshow (Afbeedling uitrekken)"
889
-
890
- #~ msgid "Head (top)"
891
- #~ msgstr "Head (boven)"
892
-
893
- #~ msgid "Footer (bottom)"
894
- #~ msgstr "Footer (onder)"
895
-
896
- #~ msgid "Questions / Suggestions"
897
- #~ msgstr "Vragen / Opmerkingen"
898
-
899
- #~ msgid ""
900
- #~ "Shrink slideshow's height when width shrinks (Fixed height can be defined "
901
- #~ "when setting this value to 'No')"
902
- #~ msgstr ""
903
- #~ "Krimp de slideshow's hoogte wanneer de breedte kleiner wordt "
904
- #~ "(Vastgestelde hoogte kan worden ingesteld als deze instelling op 'Nee' "
905
- #~ "staat)"
906
-
907
- #, fuzzy
908
- #~ msgid "Editor"
909
- #~ msgstr "Bewerken"
910
-
911
- #~ msgid "light"
912
- #~ msgstr "licht"
913
-
914
- #~ msgid "slide"
915
- #~ msgstr "slide"
916
-
917
- #~ msgid "Custom style editor (Does not work with a Strict Doctype)"
918
- #~ msgstr "Aangepaste stijl bewerker (Werkt niet met een Strict Doctype)"
919
-
920
- #~ msgid "Has the Slideshow plugin helped you?"
921
- #~ msgstr "Heeft de Slideshow plugin je geholpen?"
922
-
923
- #~ msgid "Help it back!"
924
- #~ msgstr "Help hem terug!"
925
-
926
- #~ msgid ""
927
- #~ "If this plugin has filled you with happiness, please support the upkeep "
928
- #~ "of the plugin by rating it on Wordpress, posting a suggestion for "
929
- #~ "improvement on the support forum, or making a donation."
930
- #~ msgstr ""
931
- #~ "Als deze plugin je met blijdschap heeft vervuld, zou ik het enorm "
932
- #~ "waarderen als je de plugin wilt beoordelen op Wordpress, een suggestie "
933
- #~ "wilt maken voor verbetering, of een donatie doen wilt."
934
-
935
- #~ msgid "Click on an image to insert it as a slide"
936
- #~ msgstr "Klik op een plaatje om deze in te voegen als slide"
937
-
938
- #~ msgid "Width of the slideshow"
939
- #~ msgstr "Breedte van de slideshow"
940
-
941
- #~ msgid "Defaults to parent's width."
942
- #~ msgstr "Standaard ingesteld op de breedte van het bovenliggende element."
943
-
944
- #~ msgid "Send user to image URL on click"
945
- #~ msgstr ""
946
- #~ "Wanner de gebruiker op de afbeelding klikt, stuur hem naar de URL van het "
947
- #~ "plaatje"
948
-
949
- #~ msgid "Leave any field open to use default value."
950
- #~ msgstr "Een veld dat open wordt gelaten neemt de standaardwaarde aan."
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Slideshow Plugin\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-08-19 11:58+0100\n"
6
+ "PO-Revision-Date: 2014-08-19 12:00+0100\n"
7
+ "Last-Translator: Stefan Boonstra <stefanboonstra@hotmail.com>\n"
8
+ "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
+ "Language: nl_NL\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-KeywordsList: _e;__\n"
14
+ "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.5.7\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: classes/SlideshowPluginGeneralSettings.php:82
19
+ #: classes/SlideshowPluginGeneralSettings.php:83
20
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:14
21
+ msgid "General Settings"
22
+ msgstr "Algemene Instellingen"
23
+
24
+ #: classes/SlideshowPluginGeneralSettings.php:150
25
+ msgid "New"
26
+ msgstr "Nieuw"
27
+
28
+ #: classes/SlideshowPluginGeneralSettings.php:151
29
+ msgid "Are you sure you want to delete this custom style?"
30
+ msgstr "Weet je zeker dat je deze aangepaste stijl wilt verwijderen?"
31
+
32
+ #: classes/SlideshowPluginGeneralSettings.php:196
33
+ #: classes/SlideshowPluginInstaller.php:803
34
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:6
35
+ msgid "Light"
36
+ msgstr "Licht"
37
+
38
+ #: classes/SlideshowPluginGeneralSettings.php:197
39
+ #: classes/SlideshowPluginInstaller.php:803
40
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:7
41
+ msgid "Dark"
42
+ msgstr "Donker"
43
+
44
+ #: classes/SlideshowPluginGeneralSettings.php:353
45
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:57
46
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:143
47
+ msgid "Untitled"
48
+ msgstr "Naamloos"
49
+
50
+ #: classes/SlideshowPluginInstaller.php:800
51
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:472
52
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:111
53
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:43
54
+ msgid "Yes"
55
+ msgstr "Ja"
56
+
57
+ #: classes/SlideshowPluginInstaller.php:801
58
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:473
59
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:112
60
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:44
61
+ msgid "No"
62
+ msgstr "Nee"
63
+
64
+ #: classes/SlideshowPluginInstaller.php:803
65
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:610
66
+ msgid "The style used for this slideshow"
67
+ msgstr "De stijl te gebruiken voor deze slideshow"
68
+
69
+ #: classes/SlideshowPluginInstaller.php:803
70
+ msgid "Custom"
71
+ msgstr "Aangepast"
72
+
73
+ #: classes/SlideshowPluginInstaller.php:804
74
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:126
75
+ msgid "Custom style editor"
76
+ msgstr "Aangepaste stijl bewerker"
77
+
78
+ #: classes/SlideshowPluginInstaller.php:805
79
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:518
80
+ msgid "Animation used for transition between slides"
81
+ msgstr "Animatie tussen het wisselen van de slides"
82
+
83
+ #: classes/SlideshowPluginInstaller.php:805
84
+ msgid "Slide"
85
+ msgstr "Slide"
86
+
87
+ #: classes/SlideshowPluginInstaller.php:805
88
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
89
+ msgid "Fade"
90
+ msgstr "Fade"
91
+
92
+ #: classes/SlideshowPluginInstaller.php:805
93
+ #: classes/SlideshowPluginInstaller.php:806
94
+ #: classes/SlideshowPluginInstaller.php:807
95
+ #: classes/SlideshowPluginInstaller.php:808
96
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
97
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:548
98
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:549
99
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:550
100
+ msgid "Animation"
101
+ msgstr "Animatie"
102
+
103
+ #: classes/SlideshowPluginInstaller.php:806
104
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:519
105
+ msgid "Number of seconds the slide takes to slide in"
106
+ msgstr ""
107
+ "Aantal seconden dat de animatie van het inschuiven van de volgende slide "
108
+ "duurt"
109
+
110
+ #: classes/SlideshowPluginInstaller.php:807
111
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:520
112
+ msgid "Number of seconds the description takes to slide in"
113
+ msgstr "Aantal seconden dat het inschuiven van de beschrijving duurt"
114
+
115
+ #: classes/SlideshowPluginInstaller.php:808
116
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:521
117
+ msgid "Seconds between changing slides"
118
+ msgstr "Seconden tussen het wisselen van de slides"
119
+
120
+ #: classes/SlideshowPluginInstaller.php:809
121
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:522
122
+ msgid "Number of slides to fit into one slide"
123
+ msgstr "Aantal slides om in een slide te plaatsen"
124
+
125
+ #: classes/SlideshowPluginInstaller.php:809
126
+ #: classes/SlideshowPluginInstaller.php:810
127
+ #: classes/SlideshowPluginInstaller.php:811
128
+ #: classes/SlideshowPluginInstaller.php:812
129
+ #: classes/SlideshowPluginInstaller.php:813
130
+ #: classes/SlideshowPluginInstaller.php:814
131
+ #: classes/SlideshowPluginInstaller.php:815
132
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:551
133
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:552
134
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:553
135
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:554
136
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
137
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:556
138
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:557
139
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:558
140
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:559
141
+ msgid "Display"
142
+ msgstr "Weergave"
143
+
144
+ #: classes/SlideshowPluginInstaller.php:810
145
+ msgid "Width of the slideshow, set to parent&#39;s width on 0"
146
+ msgstr ""
147
+ "Breedte van de slideshow, past zich aan op bovenliggende element wanneer 0"
148
+
149
+ #: classes/SlideshowPluginInstaller.php:811
150
+ msgid "Height of the slideshow"
151
+ msgstr "Hoogte van de slideshow"
152
+
153
+ #: classes/SlideshowPluginInstaller.php:812
154
+ msgid "Height of the description boxes"
155
+ msgstr "Hoogte van de beschrijvingen"
156
+
157
+ #: classes/SlideshowPluginInstaller.php:813
158
+ msgid "Fit image into slide (stretching it)"
159
+ msgstr "Pas afbeelding in de slideshow (oprekken)"
160
+
161
+ #: classes/SlideshowPluginInstaller.php:814
162
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:529
163
+ msgid "Show title and description"
164
+ msgstr "Toon titel en beschrijving"
165
+
166
+ #: classes/SlideshowPluginInstaller.php:815
167
+ msgid "Hide description box, it will pop up when a mouse hovers over the slide"
168
+ msgstr ""
169
+ "Verberg beschrijving, toon deze alleen wanneer de muisaanwijzer boven de "
170
+ "slide is"
171
+
172
+ #: classes/SlideshowPluginInstaller.php:816
173
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:531
174
+ msgid "Automatically slide to the next slide"
175
+ msgstr "Automatisch naar de volgende slide gaan"
176
+
177
+ #: classes/SlideshowPluginInstaller.php:816
178
+ #: classes/SlideshowPluginInstaller.php:817
179
+ #: classes/SlideshowPluginInstaller.php:818
180
+ #: classes/SlideshowPluginInstaller.php:819
181
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:560
182
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:561
183
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:562
184
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:563
185
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:564
186
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:565
187
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:566
188
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:567
189
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:568
190
+ msgid "Control"
191
+ msgstr "Controle"
192
+
193
+ #: classes/SlideshowPluginInstaller.php:817
194
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:532
195
+ msgid "Return to the beginning of the slideshow after last slide"
196
+ msgstr "Keer terug naar het begin van de slideshow na de laatste slide."
197
+
198
+ #: classes/SlideshowPluginInstaller.php:818
199
+ msgid "Activate buttons (so the user can scroll through the slides)"
200
+ msgstr "Knoppen activeren (zodat de gebruiker door de slides kan scrollen)"
201
+
202
+ #: classes/SlideshowPluginInstaller.php:819
203
+ msgid "Show control panel (play and pause button)"
204
+ msgstr "Toon controlepaneel (speel en pause knop)"
205
+
206
+ #: classes/SlideshowPluginPostType.php:45
207
+ msgid "Slideshows"
208
+ msgstr "Slideshows"
209
+
210
+ #: classes/SlideshowPluginPostType.php:46
211
+ #: views/SlideshowPluginWidget/form.php:7
212
+ msgid "Slideshow"
213
+ msgstr "Slideshow"
214
+
215
+ #: classes/SlideshowPluginPostType.php:47
216
+ msgid "Add New Slideshow"
217
+ msgstr "Nieuwe Slideshow Toevoegen"
218
+
219
+ #: classes/SlideshowPluginPostType.php:48
220
+ msgid "Edit slideshow"
221
+ msgstr "Slideshow bewerken"
222
+
223
+ #: classes/SlideshowPluginPostType.php:49
224
+ msgid "New slideshow"
225
+ msgstr "Nieuwe slideshow"
226
+
227
+ #: classes/SlideshowPluginPostType.php:50
228
+ msgid "View slideshow"
229
+ msgstr "Slideshow bekijken"
230
+
231
+ #: classes/SlideshowPluginPostType.php:51
232
+ msgid "Search slideshows"
233
+ msgstr "Slideshows zoeken"
234
+
235
+ #: classes/SlideshowPluginPostType.php:52
236
+ #: classes/SlideshowPluginPostType.php:53
237
+ msgid "No slideshows found"
238
+ msgstr "Geen slideshows gevonden"
239
+
240
+ #: classes/SlideshowPluginPostType.php:98
241
+ msgid "Information"
242
+ msgstr "Informatie"
243
+
244
+ #: classes/SlideshowPluginPostType.php:107
245
+ msgid "Slides List"
246
+ msgstr "Slides Lijst"
247
+
248
+ #: classes/SlideshowPluginPostType.php:116
249
+ msgid "Slideshow Style"
250
+ msgstr "Slideshow Stijl"
251
+
252
+ #: classes/SlideshowPluginPostType.php:125
253
+ msgid "Slideshow Settings"
254
+ msgstr "Slideshow Instellingen"
255
+
256
+ #: classes/SlideshowPluginPostType.php:173
257
+ msgid "Slideshow created"
258
+ msgstr "Slideshow aangemaakt"
259
+
260
+ #: classes/SlideshowPluginPostType.php:177
261
+ msgid "Slideshow updated"
262
+ msgstr "Slideshow bijgewerkt"
263
+
264
+ #: classes/SlideshowPluginPostType.php:224
265
+ #: classes/SlideshowPluginSlideInserter.php:238
266
+ #: views/SlideshowPluginPostType/slides.php:2
267
+ msgid "Insert"
268
+ msgstr "Invoegen"
269
+
270
+ #: classes/SlideshowPluginPostType.php:232
271
+ msgid "Open all"
272
+ msgstr "Open alle"
273
+
274
+ #: classes/SlideshowPluginPostType.php:234
275
+ msgid "Close all"
276
+ msgstr "Sluit alle"
277
+
278
+ #: classes/SlideshowPluginPostType.php:240
279
+ #: views/SlideshowPluginPostType/slides.php:10
280
+ msgid "Add slides to this slideshow by using one of the buttons above."
281
+ msgstr "Voeg slides toe doormiddel van de bovenstaande knoppen."
282
+
283
+ #: classes/SlideshowPluginPostType.php:320
284
+ msgid "Duplicate"
285
+ msgstr "Dupliceer"
286
+
287
+ #: classes/SlideshowPluginPostType.php:371
288
+ msgid "Copy"
289
+ msgstr "Kopie"
290
+
291
+ #: classes/SlideshowPluginShortcode.php:148
292
+ msgid "No slideshow selected."
293
+ msgstr "Geen slideshow geselecteerd."
294
+
295
+ #: classes/SlideshowPluginSlideInserter.php:194
296
+ msgid "More results loaded"
297
+ msgstr "Extra resultaten geladen"
298
+
299
+ #: classes/SlideshowPluginSlideInserter.php:249
300
+ msgid "Load more results"
301
+ msgstr "Meer resultaten laden"
302
+
303
+ #: classes/SlideshowPluginSlideInserter.php:260
304
+ msgid "No images were found, click here to upload some."
305
+ msgstr "Geen afbeeldingen gevonden, klik hier om afbeeldingen te uploaden."
306
+
307
+ #: classes/SlideshowPluginSlideInserter.php:332
308
+ msgid "Are you sure you want to delete this slide?"
309
+ msgstr "Weet je zeker dat je deze slide wilt verwijderen?"
310
+
311
+ #: classes/SlideshowPluginSlideInserter.php:333
312
+ msgid "Insert image slide"
313
+ msgstr "Afbeeldingsslide invoegen"
314
+
315
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:523
316
+ msgid "Maximum width. When maximum width is 0, maximum width is ignored"
317
+ msgstr ""
318
+ "Maximum breedte. Wanneer maximum breedte 0 is, zal deze worden genegeerd"
319
+
320
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
321
+ msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
322
+ msgstr "http://nl.wikipedia.org/wiki/Beeldverhouding"
323
+
324
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
325
+ msgid "More info"
326
+ msgstr "Meer informatie"
327
+
328
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
329
+ #, php-format
330
+ msgid ""
331
+ "Proportional relationship%s between slideshow's width and height (width:"
332
+ "height)"
333
+ msgstr ""
334
+ "Proportionele verhouding%s tussen de slideshow's breedte en hoogte (breedte:"
335
+ "hoogte)"
336
+
337
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:525
338
+ msgid "Slideshow's height"
339
+ msgstr "Slideshow's hoogte"
340
+
341
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:526
342
+ msgid "Image behaviour"
343
+ msgstr "Gedrag van afbeeldingen"
344
+
345
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:527
346
+ msgid "Shrink slideshow's height when width shrinks"
347
+ msgstr "Maak de slideshow's hoogte kleiner wanneer de breedte kleiner wordt"
348
+
349
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:528
350
+ msgid ""
351
+ "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
352
+ msgstr ""
353
+ "Gebruik responsiviteit (Maak slideshow smaller wanneer de pagina smaller "
354
+ "wordt)"
355
+
356
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:530
357
+ msgid "Hide description box, pop up when mouse hovers over"
358
+ msgstr ""
359
+ "Verbeg beschrijving, toon deze alleen wanneer de muisaanwijzer boven de "
360
+ "slideshow is"
361
+
362
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:533
363
+ msgid "Pause slideshow when mouse hovers over"
364
+ msgstr "Pauzeer slideshow wanneer de muisaanwijzer boven de slideshow is"
365
+
366
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:534
367
+ msgid "Activate navigation buttons"
368
+ msgstr "Toon navigatie knoppen"
369
+
370
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:535
371
+ msgid "Hide navigation buttons, show when mouse hovers over"
372
+ msgstr ""
373
+ "Verberg navigatieknoppen, toon deze aleen wanneer de muisaanwijzer boven de "
374
+ "slideshow is"
375
+
376
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:536
377
+ msgid "Activate pagination"
378
+ msgstr "Toon paginering"
379
+
380
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:537
381
+ msgid "Hide pagination, show when mouse hovers over"
382
+ msgstr ""
383
+ "Verberg paginering, toon deze alleen wanneer de muisaanwijzer boven de "
384
+ "slideshow is"
385
+
386
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:538
387
+ msgid "Activate control panel (play and pause button)"
388
+ msgstr "Toon controlepaneel (speel en pause knop)"
389
+
390
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:539
391
+ msgid "Hide control panel, show when mouse hovers over"
392
+ msgstr ""
393
+ "Verberg controlepaneel, toon deze alleen wanneer de muisaanwijzer boven de "
394
+ "slideshow is"
395
+
396
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:540
397
+ msgid "Wait until the next slide has loaded before showing it"
398
+ msgstr "Wacht tot de volgende slide is geladen, voor het tonen ervan"
399
+
400
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:541
401
+ msgid "Show a loading icon until the first slide appears"
402
+ msgstr ""
403
+ "Toon een icoon dat aanduidt dat de slideshow bezig is met laden, voordat de "
404
+ "eerste slide wordt getoond"
405
+
406
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:542
407
+ msgid "Randomize slides"
408
+ msgstr "Toon slides in willekeurige volgorde"
409
+
410
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:543
411
+ #, php-format
412
+ msgid "Avoid content filter (disable if '%s' is shown)"
413
+ msgstr "Content filter omzeilen (uitschakelen als '%s' wordt getoond)"
414
+
415
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
416
+ msgid "Slide Left"
417
+ msgstr "Schuif Links"
418
+
419
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
420
+ msgid "Slide Right"
421
+ msgstr "Schuif Rechts"
422
+
423
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
424
+ msgid "Slide Up"
425
+ msgstr "Schuif Omhoog"
426
+
427
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
428
+ msgid "Slide Down"
429
+ msgstr "Schuif Omlaag"
430
+
431
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
432
+ msgid "Cross Fade"
433
+ msgstr "Rechtstreekse Fade"
434
+
435
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
436
+ msgid "Direct Fade"
437
+ msgstr "Transparante Fade"
438
+
439
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
440
+ msgid "Random Animation"
441
+ msgstr "Willekeurige Animatie"
442
+
443
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
444
+ msgid "Natural and centered"
445
+ msgstr "Natuurlijk en gecentreerd"
446
+
447
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
448
+ msgid "Crop to fit"
449
+ msgstr "Passend maken door bijknippen"
450
+
451
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
452
+ msgid "Stretch to fit"
453
+ msgstr "Passend maken door oprekken"
454
+
455
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:569
456
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:570
457
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:571
458
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:572
459
+ msgid "Miscellaneous"
460
+ msgstr "Overige"
461
+
462
+ #: classes/SlideshowPluginWidget.php:23
463
+ msgid "Enables you to show your slideshows in the widget area of your website."
464
+ msgstr ""
465
+ "Maakt het mogelijk je slideshows te bijken in het widget gebied van je "
466
+ "website."
467
+
468
+ #: classes/SlideshowPluginWidget.php:29
469
+ msgid "Slideshow Widget"
470
+ msgstr "Slideshow Widget"
471
+
472
+ #: views/SlideshowPlugin/slideshow.php:23
473
+ msgid "Play"
474
+ msgstr "Afspelen"
475
+
476
+ #: views/SlideshowPlugin/slideshow.php:23
477
+ msgid "Pause"
478
+ msgstr "Pauzeren"
479
+
480
+ #: views/SlideshowPlugin/slideshow.php:25
481
+ msgid "Previous"
482
+ msgstr "Vorige"
483
+
484
+ #: views/SlideshowPlugin/slideshow.php:26
485
+ msgid "Next"
486
+ msgstr "Volgende"
487
+
488
+ #: views/SlideshowPlugin/slideshow.php:28
489
+ msgid "Go to slide"
490
+ msgstr "Ga naar slide"
491
+
492
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:46
493
+ msgid "Default stylesheets"
494
+ msgstr "Standaard stijlen"
495
+
496
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:60
497
+ msgid "Create a new custom style from this style"
498
+ msgstr "Maak een nieuwe aangepaste stijl uit deze stijl"
499
+
500
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:62
501
+ msgid "Customize"
502
+ msgstr "Aanpassen"
503
+
504
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:76
505
+ msgid "Custom stylesheets"
506
+ msgstr "Aangepaste stijl"
507
+
508
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:89
509
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:172
510
+ msgid "Edit this style"
511
+ msgstr "Bewerk deze stijl"
512
+
513
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:91
514
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:174
515
+ #: views/SlideshowPluginPostType/slides.php:138
516
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:112
517
+ msgid "Edit"
518
+ msgstr "Bewerken"
519
+
520
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:98
521
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:181
522
+ msgid "Delete this style"
523
+ msgstr "Verwijder stijl"
524
+
525
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:100
526
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:183
527
+ msgid "Delete"
528
+ msgstr "Verwijderen"
529
+
530
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:110
531
+ msgid "Click 'Customize' to create a new custom stylesheet."
532
+ msgstr "Klik op 'Aanpassen' om een nieuwe aangepaste stijl te maken."
533
+
534
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:130
535
+ msgid "Select a stylesheet to start customizing it."
536
+ msgstr "Kies een stijl om deze aan te passen."
537
+
538
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:139
539
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:192
540
+ #: views/SlideshowPluginPostType/slides.php:59
541
+ #: views/SlideshowPluginPostType/slides.php:144
542
+ #: views/SlideshowPluginPostType/slides.php:196
543
+ #: views/SlideshowPluginPostType/slides.php:264
544
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:120
545
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:18
546
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:150
547
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:80
548
+ #: views/SlideshowPluginWidget/form.php:2
549
+ msgid "Title"
550
+ msgstr "Titel"
551
+
552
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:148
553
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:200
554
+ msgid "Style"
555
+ msgstr "Stijl"
556
+
557
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:11
558
+ msgid "Note"
559
+ msgstr "Opgelet"
560
+
561
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:18
562
+ #, php-format
563
+ msgid ""
564
+ "The settings set on this page apply only to newly created slideshows and "
565
+ "therefore do not alter any existing ones. To adapt a slideshow's settings, "
566
+ "%sclick here.%s"
567
+ msgstr ""
568
+ "De instellingen op deze pagina zijn alleen van toepassing op slideshows die "
569
+ "nieuw worden aangemaakt en niet op de slideshows die reeds bestaan. Om een "
570
+ "slideshow's instellingen te wijzigen, %sklik hier.%s"
571
+
572
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:29
573
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:15
574
+ msgid "Default Slideshow Settings"
575
+ msgstr "Standaard Slideshow Instellingen"
576
+
577
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:41
578
+ #: views/SlideshowPluginPostType/settings.php:12
579
+ msgid "settings"
580
+ msgstr "instellingen"
581
+
582
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:77
583
+ msgid "Default Slideshow Stylesheet"
584
+ msgstr "Standaard Slideshow Stijl"
585
+
586
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:11
587
+ msgid "Add slideshows"
588
+ msgstr "Slideshows toevoegen"
589
+
590
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:12
591
+ msgid "Edit slideshows"
592
+ msgstr "Slideshows bewerken"
593
+
594
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:13
595
+ msgid "Delete slideshows"
596
+ msgstr "Slideshows verwijderen"
597
+
598
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:20
599
+ msgid "User Capabilities"
600
+ msgstr "Gebruikersrechten"
601
+
602
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:22
603
+ msgid "Select the user roles that will able to perform certain actions."
604
+ msgstr "Kies de gebruikersrol waaraan je bepaalde rechten wilt verlenen."
605
+
606
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:38
607
+ msgid "Untitled role"
608
+ msgstr "Naamloze gebruikersfunctie"
609
+
610
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:65
611
+ msgid "Settings"
612
+ msgstr "instellingen"
613
+
614
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:69
615
+ msgid "Stylesheet location"
616
+ msgstr "Stylesheet locatie"
617
+
618
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:72
619
+ msgid "top"
620
+ msgstr "boven"
621
+
622
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:73
623
+ msgid "bottom"
624
+ msgstr "onder"
625
+
626
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:16
627
+ msgid "Custom Styles"
628
+ msgstr "Aangepaste Stijlen"
629
+
630
+ #: views/SlideshowPluginPostType/information.php:1
631
+ msgid ""
632
+ "To use this slideshow in your website either add this piece of shortcode to "
633
+ "your posts or pages"
634
+ msgstr ""
635
+ "Om deze slideshow op je website te gebruiken voeg je of dit stukje shortcode "
636
+ "aan je pagina of post toe"
637
+
638
+ #: views/SlideshowPluginPostType/information.php:5
639
+ msgid ""
640
+ "Or add this piece of code to where ever in your website you want to place "
641
+ "the slideshow"
642
+ msgstr ""
643
+ "Of je voegt dit stuk code toe aan je broncode op de plaats waar je wilt dat "
644
+ "de slideshow te zien is"
645
+
646
+ #: views/SlideshowPluginPostType/information.php:9
647
+ #, php-format
648
+ msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
649
+ msgstr ""
650
+ "Ook kan je naar de %swidget pagina%s toegaan, om de slideshow te tonen als "
651
+ "widget."
652
+
653
+ #: views/SlideshowPluginPostType/settings.php:26
654
+ #: views/SlideshowPluginPostType/style-settings.php:11
655
+ msgid "Default"
656
+ msgstr "Standaard"
657
+
658
+ #: views/SlideshowPluginPostType/slides.php:54
659
+ #: views/SlideshowPluginPostType/slides.php:191
660
+ #: views/SlideshowPluginSlideInserter/insert-text-button.php:2
661
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:9
662
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:69
663
+ msgid "Text slide"
664
+ msgstr "Tekst slide"
665
+
666
+ #: views/SlideshowPluginPostType/slides.php:61
667
+ #: views/SlideshowPluginPostType/slides.php:150
668
+ #: views/SlideshowPluginPostType/slides.php:198
669
+ #: views/SlideshowPluginPostType/slides.php:270
670
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:135
671
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:33
672
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:165
673
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:95
674
+ msgid "Description"
675
+ msgstr "Beschrijving"
676
+
677
+ #: views/SlideshowPluginPostType/slides.php:63
678
+ #: views/SlideshowPluginPostType/slides.php:200
679
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:51
680
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:113
681
+ msgid "Background color"
682
+ msgstr "Achtergrond kleur"
683
+
684
+ #: views/SlideshowPluginPostType/slides.php:68
685
+ #: views/SlideshowPluginPostType/slides.php:155
686
+ #: views/SlideshowPluginPostType/slides.php:205
687
+ #: views/SlideshowPluginPostType/slides.php:275
688
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:150
689
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:59
690
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:180
691
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:121
692
+ msgid "URL"
693
+ msgstr "URL"
694
+
695
+ #: views/SlideshowPluginPostType/slides.php:70
696
+ #: views/SlideshowPluginPostType/slides.php:157
697
+ #: views/SlideshowPluginPostType/slides.php:207
698
+ #: views/SlideshowPluginPostType/slides.php:277
699
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:153
700
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:62
701
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:183
702
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:124
703
+ msgid "Open URL in"
704
+ msgstr "Open URL in"
705
+
706
+ #: views/SlideshowPluginPostType/slides.php:72
707
+ #: views/SlideshowPluginPostType/slides.php:159
708
+ #: views/SlideshowPluginPostType/slides.php:209
709
+ #: views/SlideshowPluginPostType/slides.php:279
710
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:155
711
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:64
712
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:185
713
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:126
714
+ msgid "Same window"
715
+ msgstr "Zelfde scherm"
716
+
717
+ #: views/SlideshowPluginPostType/slides.php:73
718
+ #: views/SlideshowPluginPostType/slides.php:160
719
+ #: views/SlideshowPluginPostType/slides.php:210
720
+ #: views/SlideshowPluginPostType/slides.php:280
721
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:156
722
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:65
723
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:186
724
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:127
725
+ msgid "New window"
726
+ msgstr "Nieuw scherm"
727
+
728
+ #: views/SlideshowPluginPostType/slides.php:90
729
+ #: views/SlideshowPluginPostType/slides.php:230
730
+ #: views/SlideshowPluginSlideInserter/insert-video-button.php:2
731
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:94
732
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:26
733
+ msgid "Video slide"
734
+ msgstr "Video slide"
735
+
736
+ #: views/SlideshowPluginPostType/slides.php:95
737
+ #: views/SlideshowPluginPostType/slides.php:235
738
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:103
739
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:35
740
+ msgid "Youtube Video ID"
741
+ msgstr "Youtube Video ID"
742
+
743
+ #: views/SlideshowPluginPostType/slides.php:133
744
+ #: views/SlideshowPluginPostType/slides.php:255
745
+ #: views/SlideshowPluginSlideInserter/insert-image-button.php:2
746
+ #: views/SlideshowPluginSlideInserter/insert-image-button.php:4
747
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:101
748
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:135
749
+ msgid "Image slide"
750
+ msgstr "Afbeeldingsslide"
751
+
752
+ #: views/SlideshowPluginPostType/slides.php:171
753
+ msgid ""
754
+ "An error occurred while loading this slide, and it will not be present in "
755
+ "the slideshow"
756
+ msgstr ""
757
+ "Een fout is ontstaan tijdens het laden van deze slide, de slide zal niet te "
758
+ "bekijken zijn in je slideshow"
759
+
760
+ #: views/SlideshowPluginPostType/slides.php:177
761
+ #: views/SlideshowPluginPostType/slides.php:218
762
+ #: views/SlideshowPluginPostType/slides.php:243
763
+ #: views/SlideshowPluginPostType/slides.php:289
764
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:174
765
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:76
766
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:117
767
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:203
768
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:138
769
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:49
770
+ msgid "Delete slide"
771
+ msgstr "Verwijder slide"
772
+
773
+ #: views/SlideshowPluginPostType/style-settings.php:22
774
+ #, php-format
775
+ msgid "Custom styles can be created and customized %shere%s."
776
+ msgstr "Aangepaste stijlen kunnen %shier%s worden aangemaakt en aangepast."
777
+
778
+ #: views/SlideshowPluginPostType/support-plugin.php:3
779
+ msgid "Help to keep this plugin free!"
780
+ msgstr "Help mee om deze plugin gratis te houden!"
781
+
782
+ #: views/SlideshowPluginPostType/support-plugin.php:6
783
+ msgid ""
784
+ "In order to keep you provided with the newest features, updates and bug "
785
+ "fixes, a lot of motivation is required. Therefore I'm kindly asking you to "
786
+ "consider making a small donation to the plugin or rating it as 5-stars on "
787
+ "Wordpress.org. Thank you in advance!"
788
+ msgstr ""
789
+ "Om je te kunnen voorzien van de nieuwste functionaliteiten, updates en "
790
+ "foutoplossingen, is een hoop motivatie nodig. Ik zou je daarom willen vragen "
791
+ "een kleine donatie aan deze plugin te willen overwegen, of de plugin een "
792
+ "goede beoordeling te geven op WordPress.org. Alvast bedankt!"
793
+
794
+ #: views/SlideshowPluginPostType/support-plugin.php:15
795
+ msgid "Rate on Wordpress.org"
796
+ msgstr "Geef een waardering op Wordpress.org"
797
+
798
+ #: views/SlideshowPluginPostType/support-plugin.php:24
799
+ msgid "Frequently Asked Questions (FAQ)"
800
+ msgstr "Veelgestelde Vragen (FAQ)"
801
+
802
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
803
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
804
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
805
+ msgid "Insert a Slideshow"
806
+ msgstr "Slideshow invoegen"
807
+
808
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
809
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
810
+ msgid "Insert Slideshow"
811
+ msgstr "Slideshow invoegen"
812
+
813
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
814
+ msgid "Select a slideshow"
815
+ msgstr "Selecteer een slideshow"
816
+
817
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
818
+ #: views/SlideshowPluginWidget/form.php:12
819
+ msgid "Untitled slideshow"
820
+ msgstr "Naamloze slideshow"
821
+
822
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
823
+ msgid "Cancel"
824
+ msgstr "Annuleren"
825
+
826
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
827
+ #, php-format
828
+ msgid ""
829
+ "It seems you haven't created any slideshows yet. %sYou can create a "
830
+ "slideshow here!%s"
831
+ msgstr ""
832
+ "Het ziet er naar uit dat je nog geen slideshows hebt gemaakt. %sHier kan je "
833
+ "een slideshow maken!%s"
834
+
835
+ #: views/SlideshowPluginSlideInserter/search-popup.php:6
836
+ msgid "Search"
837
+ msgstr "Zoek"
838
+
839
+ #: views/SlideshowPluginSlideInserter/search-popup.php:7
840
+ msgid "Search images by title or ID"
841
+ msgstr "Zoek afbeeldingen op titel of ID"
842
+
843
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:90
844
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:4
845
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:89
846
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:130
847
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:58
848
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:21
849
+ msgid "Click to toggle"
850
+ msgstr "Klik om te wisselen"
851
+
852
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:160
853
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:69
854
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:190
855
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:131
856
+ msgid "Don't let search engines follow link"
857
+ msgstr "Laat zoekmachines deze link niet volgen"
858
+
859
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:168
860
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:197
861
+ msgid "Alternative text"
862
+ msgstr "Alterntieve tekst"
863
+
864
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:48
865
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:110
866
+ msgid "Text color"
867
+ msgstr "Tekst kleur"
868
+
869
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:53
870
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:115
871
+ msgid "(Leave empty for a transparent background)"
872
+ msgstr "(Laat leeg voor een transparante achtergrond)"
873
+
874
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:110
875
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:42
876
+ msgid "Show related videos"
877
+ msgstr "Toon gerelateerde videos"
878
+
879
+ #: views/SlideshowPluginUpload/upload-button.php:1
880
+ msgid "Upload/Manage Images"
881
+ msgstr "Upload/Beheer Afbeeldingen"
882
+
883
+ #: views/SlideshowPluginWidget/form.php:9
884
+ msgid "Random Slideshow"
885
+ msgstr "Willekeurige Slideshow"
886
+
887
+ #~ msgid "Fit image into slide (Stretch image)"
888
+ #~ msgstr "Pas afbeelding in de slideshow (Afbeedling uitrekken)"
889
+
890
+ #~ msgid "Head (top)"
891
+ #~ msgstr "Head (boven)"
892
+
893
+ #~ msgid "Footer (bottom)"
894
+ #~ msgstr "Footer (onder)"
895
+
896
+ #~ msgid "Questions / Suggestions"
897
+ #~ msgstr "Vragen / Opmerkingen"
898
+
899
+ #~ msgid ""
900
+ #~ "Shrink slideshow's height when width shrinks (Fixed height can be defined "
901
+ #~ "when setting this value to 'No')"
902
+ #~ msgstr ""
903
+ #~ "Krimp de slideshow's hoogte wanneer de breedte kleiner wordt "
904
+ #~ "(Vastgestelde hoogte kan worden ingesteld als deze instelling op 'Nee' "
905
+ #~ "staat)"
906
+
907
+ #, fuzzy
908
+ #~ msgid "Editor"
909
+ #~ msgstr "Bewerken"
910
+
911
+ #~ msgid "light"
912
+ #~ msgstr "licht"
913
+
914
+ #~ msgid "slide"
915
+ #~ msgstr "slide"
916
+
917
+ #~ msgid "Custom style editor (Does not work with a Strict Doctype)"
918
+ #~ msgstr "Aangepaste stijl bewerker (Werkt niet met een Strict Doctype)"
919
+
920
+ #~ msgid "Has the Slideshow plugin helped you?"
921
+ #~ msgstr "Heeft de Slideshow plugin je geholpen?"
922
+
923
+ #~ msgid "Help it back!"
924
+ #~ msgstr "Help hem terug!"
925
+
926
+ #~ msgid ""
927
+ #~ "If this plugin has filled you with happiness, please support the upkeep "
928
+ #~ "of the plugin by rating it on Wordpress, posting a suggestion for "
929
+ #~ "improvement on the support forum, or making a donation."
930
+ #~ msgstr ""
931
+ #~ "Als deze plugin je met blijdschap heeft vervuld, zou ik het enorm "
932
+ #~ "waarderen als je de plugin wilt beoordelen op Wordpress, een suggestie "
933
+ #~ "wilt maken voor verbetering, of een donatie doen wilt."
934
+
935
+ #~ msgid "Click on an image to insert it as a slide"
936
+ #~ msgstr "Klik op een plaatje om deze in te voegen als slide"
937
+
938
+ #~ msgid "Width of the slideshow"
939
+ #~ msgstr "Breedte van de slideshow"
940
+
941
+ #~ msgid "Defaults to parent's width."
942
+ #~ msgstr "Standaard ingesteld op de breedte van het bovenliggende element."
943
+
944
+ #~ msgid "Send user to image URL on click"
945
+ #~ msgstr ""
946
+ #~ "Wanner de gebruiker op de afbeelding klikt, stuur hem naar de URL van het "
947
+ #~ "plaatje"
948
+
949
+ #~ msgid "Leave any field open to use default value."
950
+ #~ msgstr "Een veld dat open wordt gelaten neemt de standaardwaarde aan."
languages/slideshow-plugin-original.mo CHANGED
Binary file
languages/slideshow-plugin-original.po CHANGED
@@ -1,850 +1,848 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Slideshow Plugin\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-04-23 17:43+0100\n"
6
- "PO-Revision-Date: 2015-04-23 17:43+0100\n"
7
- "Last-Translator: Stefan Boonstra <stefanboonstra@hotmail.com>\n"
8
- "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-KeywordsList: _e;__\n"
13
- "X-Poedit-Basepath: ../\n"
14
- "X-Generator: Poedit 1.7.6\n"
15
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
- "Language: en\n"
17
- "X-Poedit-SearchPath-0: .\n"
18
-
19
- #: classes/SlideshowPluginGeneralSettings.php:82
20
- #: classes/SlideshowPluginGeneralSettings.php:83
21
- #: views/SlideshowPluginGeneralSettings/general-settings.php:14
22
- msgid "General Settings"
23
- msgstr ""
24
-
25
- #: classes/SlideshowPluginGeneralSettings.php:150
26
- msgid "New"
27
- msgstr ""
28
-
29
- #: classes/SlideshowPluginGeneralSettings.php:151
30
- msgid "Are you sure you want to delete this custom style?"
31
- msgstr ""
32
-
33
- #: classes/SlideshowPluginGeneralSettings.php:196
34
- #: classes/SlideshowPluginInstaller.php:803
35
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:6
36
- msgid "Light"
37
- msgstr ""
38
-
39
- #: classes/SlideshowPluginGeneralSettings.php:197
40
- #: classes/SlideshowPluginInstaller.php:803
41
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:7
42
- msgid "Dark"
43
- msgstr ""
44
-
45
- #: classes/SlideshowPluginGeneralSettings.php:353
46
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:57
47
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:143
48
- msgid "Untitled"
49
- msgstr ""
50
-
51
- #: classes/SlideshowPluginInstaller.php:800
52
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:472
53
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:111
54
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:43
55
- msgid "Yes"
56
- msgstr ""
57
-
58
- #: classes/SlideshowPluginInstaller.php:801
59
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:473
60
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:112
61
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:44
62
- msgid "No"
63
- msgstr ""
64
-
65
- #: classes/SlideshowPluginInstaller.php:803
66
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:610
67
- msgid "The style used for this slideshow"
68
- msgstr ""
69
-
70
- #: classes/SlideshowPluginInstaller.php:803
71
- msgid "Custom"
72
- msgstr ""
73
-
74
- #: classes/SlideshowPluginInstaller.php:804
75
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:126
76
- msgid "Custom style editor"
77
- msgstr ""
78
-
79
- #: classes/SlideshowPluginInstaller.php:805
80
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:518
81
- msgid "Animation used for transition between slides"
82
- msgstr ""
83
-
84
- #: classes/SlideshowPluginInstaller.php:805
85
- msgid "Slide"
86
- msgstr ""
87
-
88
- #: classes/SlideshowPluginInstaller.php:805
89
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
90
- msgid "Fade"
91
- msgstr ""
92
-
93
- #: classes/SlideshowPluginInstaller.php:805
94
- #: classes/SlideshowPluginInstaller.php:806
95
- #: classes/SlideshowPluginInstaller.php:807
96
- #: classes/SlideshowPluginInstaller.php:808
97
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
98
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:548
99
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:549
100
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:550
101
- msgid "Animation"
102
- msgstr ""
103
-
104
- #: classes/SlideshowPluginInstaller.php:806
105
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:519
106
- msgid "Number of seconds the slide takes to slide in"
107
- msgstr ""
108
-
109
- #: classes/SlideshowPluginInstaller.php:807
110
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:520
111
- msgid "Number of seconds the description takes to slide in"
112
- msgstr ""
113
-
114
- #: classes/SlideshowPluginInstaller.php:808
115
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:521
116
- msgid "Seconds between changing slides"
117
- msgstr ""
118
-
119
- #: classes/SlideshowPluginInstaller.php:809
120
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:522
121
- msgid "Number of slides to fit into one slide"
122
- msgstr ""
123
-
124
- #: classes/SlideshowPluginInstaller.php:809
125
- #: classes/SlideshowPluginInstaller.php:810
126
- #: classes/SlideshowPluginInstaller.php:811
127
- #: classes/SlideshowPluginInstaller.php:812
128
- #: classes/SlideshowPluginInstaller.php:813
129
- #: classes/SlideshowPluginInstaller.php:814
130
- #: classes/SlideshowPluginInstaller.php:815
131
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:551
132
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:552
133
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:553
134
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:554
135
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
136
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:556
137
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:557
138
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:558
139
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:559
140
- msgid "Display"
141
- msgstr ""
142
-
143
- #: classes/SlideshowPluginInstaller.php:810
144
- msgid "Width of the slideshow, set to parent&#39;s width on 0"
145
- msgstr ""
146
-
147
- #: classes/SlideshowPluginInstaller.php:811
148
- msgid "Height of the slideshow"
149
- msgstr ""
150
-
151
- #: classes/SlideshowPluginInstaller.php:812
152
- msgid "Height of the description boxes"
153
- msgstr ""
154
-
155
- #: classes/SlideshowPluginInstaller.php:813
156
- msgid "Fit image into slide (stretching it)"
157
- msgstr ""
158
-
159
- #: classes/SlideshowPluginInstaller.php:814
160
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:529
161
- msgid "Show title and description"
162
- msgstr ""
163
-
164
- #: classes/SlideshowPluginInstaller.php:815
165
- msgid "Hide description box, it will pop up when a mouse hovers over the slide"
166
- msgstr ""
167
-
168
- #: classes/SlideshowPluginInstaller.php:816
169
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:531
170
- msgid "Automatically slide to the next slide"
171
- msgstr ""
172
-
173
- #: classes/SlideshowPluginInstaller.php:816
174
- #: classes/SlideshowPluginInstaller.php:817
175
- #: classes/SlideshowPluginInstaller.php:818
176
- #: classes/SlideshowPluginInstaller.php:819
177
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:560
178
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:561
179
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:562
180
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:563
181
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:564
182
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:565
183
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:566
184
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:567
185
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:568
186
- msgid "Control"
187
- msgstr ""
188
-
189
- #: classes/SlideshowPluginInstaller.php:817
190
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:532
191
- msgid "Return to the beginning of the slideshow after last slide"
192
- msgstr ""
193
-
194
- #: classes/SlideshowPluginInstaller.php:818
195
- msgid "Activate buttons (so the user can scroll through the slides)"
196
- msgstr ""
197
-
198
- #: classes/SlideshowPluginInstaller.php:819
199
- msgid "Show control panel (play and pause button)"
200
- msgstr ""
201
-
202
- #: classes/SlideshowPluginPostType.php:45
203
- msgid "Slideshows"
204
- msgstr ""
205
-
206
- #: classes/SlideshowPluginPostType.php:46
207
- #: views/SlideshowPluginWidget/form.php:7
208
- msgid "Slideshow"
209
- msgstr ""
210
-
211
- #: classes/SlideshowPluginPostType.php:47
212
- msgid "Add New Slideshow"
213
- msgstr ""
214
-
215
- #: classes/SlideshowPluginPostType.php:48
216
- msgid "Edit slideshow"
217
- msgstr ""
218
-
219
- #: classes/SlideshowPluginPostType.php:49
220
- msgid "New slideshow"
221
- msgstr ""
222
-
223
- #: classes/SlideshowPluginPostType.php:50
224
- msgid "View slideshow"
225
- msgstr ""
226
-
227
- #: classes/SlideshowPluginPostType.php:51
228
- msgid "Search slideshows"
229
- msgstr ""
230
-
231
- #: classes/SlideshowPluginPostType.php:52
232
- #: classes/SlideshowPluginPostType.php:53
233
- msgid "No slideshows found"
234
- msgstr ""
235
-
236
- #: classes/SlideshowPluginPostType.php:98
237
- msgid "Information"
238
- msgstr ""
239
-
240
- #: classes/SlideshowPluginPostType.php:107
241
- msgid "Slides List"
242
- msgstr ""
243
-
244
- #: classes/SlideshowPluginPostType.php:116
245
- msgid "Slideshow Style"
246
- msgstr ""
247
-
248
- #: classes/SlideshowPluginPostType.php:125
249
- msgid "Slideshow Settings"
250
- msgstr ""
251
-
252
- #: classes/SlideshowPluginPostType.php:173
253
- msgid "Slideshow created"
254
- msgstr ""
255
-
256
- #: classes/SlideshowPluginPostType.php:177
257
- msgid "Slideshow updated"
258
- msgstr ""
259
-
260
- #: classes/SlideshowPluginPostType.php:224
261
- #: classes/SlideshowPluginSlideInserter.php:238
262
- #: views/SlideshowPluginPostType/slides.php:2
263
- msgid "Insert"
264
- msgstr ""
265
-
266
- #: classes/SlideshowPluginPostType.php:232
267
- msgid "Open all"
268
- msgstr ""
269
-
270
- #: classes/SlideshowPluginPostType.php:234
271
- msgid "Close all"
272
- msgstr ""
273
-
274
- #: classes/SlideshowPluginPostType.php:240
275
- #: views/SlideshowPluginPostType/slides.php:10
276
- msgid "Add slides to this slideshow by using one of the buttons above."
277
- msgstr ""
278
-
279
- #: classes/SlideshowPluginPostType.php:320
280
- msgid "Duplicate"
281
- msgstr ""
282
-
283
- #: classes/SlideshowPluginPostType.php:371
284
- msgid "Copy"
285
- msgstr ""
286
-
287
- #: classes/SlideshowPluginShortcode.php:148
288
- msgid "No slideshow selected."
289
- msgstr ""
290
-
291
- #: classes/SlideshowPluginSlideInserter.php:194
292
- msgid "More results loaded"
293
- msgstr ""
294
-
295
- #: classes/SlideshowPluginSlideInserter.php:249
296
- msgid "Load more results"
297
- msgstr ""
298
-
299
- #: classes/SlideshowPluginSlideInserter.php:260
300
- msgid "No images were found, click here to upload some."
301
- msgstr ""
302
-
303
- #: classes/SlideshowPluginSlideInserter.php:332
304
- msgid "Are you sure you want to delete this slide?"
305
- msgstr ""
306
-
307
- #: classes/SlideshowPluginSlideInserter.php:333
308
- msgid "Insert image slide"
309
- msgstr ""
310
-
311
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:523
312
- msgid "Maximum width. When maximum width is 0, maximum width is ignored"
313
- msgstr ""
314
-
315
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
316
- msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
317
- msgstr ""
318
-
319
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
320
- msgid "More info"
321
- msgstr ""
322
-
323
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
324
- #, php-format
325
- msgid ""
326
- "Proportional relationship%s between slideshow's width and height (width:"
327
- "height)"
328
- msgstr ""
329
-
330
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:525
331
- msgid "Slideshow's height"
332
- msgstr ""
333
-
334
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:526
335
- msgid "Image behaviour"
336
- msgstr ""
337
-
338
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:527
339
- msgid "Shrink slideshow's height when width shrinks"
340
- msgstr ""
341
-
342
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:528
343
- msgid ""
344
- "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
345
- msgstr ""
346
-
347
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:530
348
- msgid "Hide description box, pop up when mouse hovers over"
349
- msgstr ""
350
-
351
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:533
352
- msgid "Pause slideshow when mouse hovers over"
353
- msgstr ""
354
-
355
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:534
356
- msgid "Activate navigation buttons"
357
- msgstr ""
358
-
359
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:535
360
- msgid "Hide navigation buttons, show when mouse hovers over"
361
- msgstr ""
362
-
363
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:536
364
- msgid "Activate pagination"
365
- msgstr ""
366
-
367
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:537
368
- msgid "Hide pagination, show when mouse hovers over"
369
- msgstr ""
370
-
371
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:538
372
- msgid "Activate control panel (play and pause button)"
373
- msgstr ""
374
-
375
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:539
376
- msgid "Hide control panel, show when mouse hovers over"
377
- msgstr ""
378
-
379
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:540
380
- msgid "Wait until the next slide has loaded before showing it"
381
- msgstr ""
382
-
383
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:541
384
- msgid "Show a loading icon until the first slide appears"
385
- msgstr ""
386
-
387
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:542
388
- msgid "Randomize slides"
389
- msgstr ""
390
-
391
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:543
392
- #, php-format
393
- msgid "Avoid content filter (disable if '%s' is shown)"
394
- msgstr ""
395
-
396
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
397
- msgid "Slide Left"
398
- msgstr ""
399
-
400
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
401
- msgid "Slide Right"
402
- msgstr ""
403
-
404
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
405
- msgid "Slide Up"
406
- msgstr ""
407
-
408
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
409
- msgid "Slide Down"
410
- msgstr ""
411
-
412
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
413
- msgid "Cross Fade"
414
- msgstr ""
415
-
416
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
417
- msgid "Direct Fade"
418
- msgstr ""
419
-
420
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
421
- msgid "Random Animation"
422
- msgstr ""
423
-
424
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
425
- msgid "Natural and centered"
426
- msgstr ""
427
-
428
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
429
- msgid "Crop to fit"
430
- msgstr ""
431
-
432
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
433
- msgid "Stretch to fit"
434
- msgstr ""
435
-
436
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:569
437
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:570
438
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:571
439
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:572
440
- msgid "Miscellaneous"
441
- msgstr ""
442
-
443
- #: classes/SlideshowPluginWidget.php:23
444
- msgid "Enables you to show your slideshows in the widget area of your website."
445
- msgstr ""
446
-
447
- #: classes/SlideshowPluginWidget.php:29
448
- msgid "Slideshow Widget"
449
- msgstr ""
450
-
451
- #: views/SlideshowPlugin/slideshow.php:23
452
- msgid "Play"
453
- msgstr ""
454
-
455
- #: views/SlideshowPlugin/slideshow.php:23
456
- msgid "Pause"
457
- msgstr ""
458
-
459
- #: views/SlideshowPlugin/slideshow.php:25
460
- msgid "Previous"
461
- msgstr ""
462
-
463
- #: views/SlideshowPlugin/slideshow.php:26
464
- msgid "Next"
465
- msgstr ""
466
-
467
- #: views/SlideshowPlugin/slideshow.php:28
468
- msgid "Go to slide"
469
- msgstr ""
470
-
471
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:46
472
- msgid "Default stylesheets"
473
- msgstr ""
474
-
475
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:60
476
- msgid "Create a new custom style from this style"
477
- msgstr ""
478
-
479
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:62
480
- msgid "Customize"
481
- msgstr ""
482
-
483
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:76
484
- msgid "Custom stylesheets"
485
- msgstr ""
486
-
487
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:89
488
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:172
489
- msgid "Edit this style"
490
- msgstr ""
491
-
492
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:91
493
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:174
494
- #: views/SlideshowPluginPostType/slides.php:138
495
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:112
496
- msgid "Edit"
497
- msgstr ""
498
-
499
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:98
500
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:181
501
- msgid "Delete this style"
502
- msgstr ""
503
-
504
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:100
505
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:183
506
- msgid "Delete"
507
- msgstr ""
508
-
509
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:110
510
- msgid "Click 'Customize' to create a new custom stylesheet."
511
- msgstr ""
512
-
513
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:130
514
- msgid "Select a stylesheet to start customizing it."
515
- msgstr ""
516
-
517
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:139
518
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:192
519
- #: views/SlideshowPluginPostType/slides.php:59
520
- #: views/SlideshowPluginPostType/slides.php:144
521
- #: views/SlideshowPluginPostType/slides.php:196
522
- #: views/SlideshowPluginPostType/slides.php:264
523
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:120
524
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:18
525
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:150
526
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:80
527
- #: views/SlideshowPluginWidget/form.php:2
528
- msgid "Title"
529
- msgstr ""
530
-
531
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:148
532
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:200
533
- msgid "Style"
534
- msgstr ""
535
-
536
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:11
537
- msgid "Note"
538
- msgstr ""
539
-
540
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:18
541
- #, php-format
542
- msgid ""
543
- "The settings set on this page apply only to newly created slideshows and "
544
- "therefore do not alter any existing ones. To adapt a slideshow's settings, "
545
- "%sclick here.%s"
546
- msgstr ""
547
-
548
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:29
549
- #: views/SlideshowPluginGeneralSettings/general-settings.php:15
550
- msgid "Default Slideshow Settings"
551
- msgstr ""
552
-
553
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:41
554
- #: views/SlideshowPluginPostType/settings.php:12
555
- msgid "settings"
556
- msgstr ""
557
-
558
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:77
559
- msgid "Default Slideshow Stylesheet"
560
- msgstr ""
561
-
562
- #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:11
563
- msgid "Add slideshows"
564
- msgstr ""
565
-
566
- #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:12
567
- msgid "Edit slideshows"
568
- msgstr ""
569
-
570
- #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:13
571
- msgid "Delete slideshows"
572
- msgstr ""
573
-
574
- #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:20
575
- msgid "User Capabilities"
576
- msgstr ""
577
-
578
- #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:22
579
- msgid "Select the user roles that will able to perform certain actions."
580
- msgstr ""
581
-
582
- #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:38
583
- msgid "Untitled role"
584
- msgstr ""
585
-
586
- #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:65
587
- msgid "Settings"
588
- msgstr ""
589
-
590
- #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:69
591
- msgid "Stylesheet location"
592
- msgstr ""
593
-
594
- #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:72
595
- msgid "top"
596
- msgstr ""
597
-
598
- #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:73
599
- msgid "bottom"
600
- msgstr ""
601
-
602
- #: views/SlideshowPluginGeneralSettings/general-settings.php:16
603
- msgid "Custom Styles"
604
- msgstr ""
605
-
606
- #: views/SlideshowPluginPostType/information.php:1
607
- msgid ""
608
- "To use this slideshow in your website either add this piece of shortcode to "
609
- "your posts or pages"
610
- msgstr ""
611
-
612
- #: views/SlideshowPluginPostType/information.php:5
613
- msgid ""
614
- "Or add this piece of code to where ever in your website you want to place "
615
- "the slideshow"
616
- msgstr ""
617
-
618
- #: views/SlideshowPluginPostType/information.php:9
619
- #, php-format
620
- msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
621
- msgstr ""
622
-
623
- #: views/SlideshowPluginPostType/settings.php:26
624
- #: views/SlideshowPluginPostType/style-settings.php:11
625
- msgid "Default"
626
- msgstr ""
627
-
628
- #: views/SlideshowPluginPostType/slides.php:54
629
- #: views/SlideshowPluginPostType/slides.php:191
630
- #: views/SlideshowPluginSlideInserter/insert-text-button.php:2
631
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:9
632
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:69
633
- msgid "Text slide"
634
- msgstr ""
635
-
636
- #: views/SlideshowPluginPostType/slides.php:61
637
- #: views/SlideshowPluginPostType/slides.php:150
638
- #: views/SlideshowPluginPostType/slides.php:198
639
- #: views/SlideshowPluginPostType/slides.php:270
640
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:135
641
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:33
642
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:165
643
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:95
644
- msgid "Description"
645
- msgstr ""
646
-
647
- #: views/SlideshowPluginPostType/slides.php:63
648
- #: views/SlideshowPluginPostType/slides.php:200
649
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:51
650
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:113
651
- msgid "Background color"
652
- msgstr ""
653
-
654
- #: views/SlideshowPluginPostType/slides.php:68
655
- #: views/SlideshowPluginPostType/slides.php:155
656
- #: views/SlideshowPluginPostType/slides.php:205
657
- #: views/SlideshowPluginPostType/slides.php:275
658
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:150
659
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:59
660
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:180
661
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:121
662
- msgid "URL"
663
- msgstr ""
664
-
665
- #: views/SlideshowPluginPostType/slides.php:70
666
- #: views/SlideshowPluginPostType/slides.php:157
667
- #: views/SlideshowPluginPostType/slides.php:207
668
- #: views/SlideshowPluginPostType/slides.php:277
669
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:153
670
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:62
671
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:183
672
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:124
673
- msgid "Open URL in"
674
- msgstr ""
675
-
676
- #: views/SlideshowPluginPostType/slides.php:72
677
- #: views/SlideshowPluginPostType/slides.php:159
678
- #: views/SlideshowPluginPostType/slides.php:209
679
- #: views/SlideshowPluginPostType/slides.php:279
680
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:155
681
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:64
682
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:185
683
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:126
684
- msgid "Same window"
685
- msgstr ""
686
-
687
- #: views/SlideshowPluginPostType/slides.php:73
688
- #: views/SlideshowPluginPostType/slides.php:160
689
- #: views/SlideshowPluginPostType/slides.php:210
690
- #: views/SlideshowPluginPostType/slides.php:280
691
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:156
692
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:65
693
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:186
694
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:127
695
- msgid "New window"
696
- msgstr ""
697
-
698
- #: views/SlideshowPluginPostType/slides.php:90
699
- #: views/SlideshowPluginPostType/slides.php:230
700
- #: views/SlideshowPluginSlideInserter/insert-video-button.php:2
701
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:94
702
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:26
703
- msgid "Video slide"
704
- msgstr ""
705
-
706
- #: views/SlideshowPluginPostType/slides.php:95
707
- #: views/SlideshowPluginPostType/slides.php:235
708
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:103
709
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:35
710
- msgid "Youtube Video ID"
711
- msgstr ""
712
-
713
- #: views/SlideshowPluginPostType/slides.php:133
714
- #: views/SlideshowPluginPostType/slides.php:255
715
- #: views/SlideshowPluginSlideInserter/insert-image-button.php:2
716
- #: views/SlideshowPluginSlideInserter/insert-image-button.php:4
717
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:101
718
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:135
719
- msgid "Image slide"
720
- msgstr ""
721
-
722
- #: views/SlideshowPluginPostType/slides.php:171
723
- msgid ""
724
- "An error occurred while loading this slide, and it will not be present in "
725
- "the slideshow"
726
- msgstr ""
727
-
728
- #: views/SlideshowPluginPostType/slides.php:177
729
- #: views/SlideshowPluginPostType/slides.php:218
730
- #: views/SlideshowPluginPostType/slides.php:243
731
- #: views/SlideshowPluginPostType/slides.php:289
732
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:174
733
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:76
734
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:117
735
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:203
736
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:138
737
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:49
738
- msgid "Delete slide"
739
- msgstr ""
740
-
741
- #: views/SlideshowPluginPostType/style-settings.php:22
742
- #, php-format
743
- msgid "Custom styles can be created and customized %shere%s."
744
- msgstr ""
745
-
746
- #: views/SlideshowPluginPostType/support-plugin.php:3
747
- msgid "Help to keep this plugin free!"
748
- msgstr ""
749
-
750
- #: views/SlideshowPluginPostType/support-plugin.php:6
751
- msgid ""
752
- "In order to keep you provided with the newest features, updates and bug "
753
- "fixes, a lot of motivation is required. Therefore I'm kindly asking you to "
754
- "consider making a small donation to the plugin or rating it as 5-stars on "
755
- "Wordpress.org. Thank you in advance!"
756
- msgstr ""
757
-
758
- #: views/SlideshowPluginPostType/support-plugin.php:15
759
- msgid "Rate on Wordpress.org"
760
- msgstr ""
761
-
762
- #: views/SlideshowPluginPostType/support-plugin.php:24
763
- msgid "Frequently Asked Questions (FAQ)"
764
- msgstr ""
765
-
766
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
767
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
768
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
769
- msgid "Insert a Slideshow"
770
- msgstr ""
771
-
772
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
773
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
774
- msgid "Insert Slideshow"
775
- msgstr ""
776
-
777
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
778
- msgid "Select a slideshow"
779
- msgstr ""
780
-
781
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
782
- #: views/SlideshowPluginWidget/form.php:12
783
- msgid "Untitled slideshow"
784
- msgstr ""
785
-
786
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
787
- msgid "Cancel"
788
- msgstr ""
789
-
790
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
791
- #, php-format
792
- msgid ""
793
- "It seems you haven't created any slideshows yet. %sYou can create a "
794
- "slideshow here!%s"
795
- msgstr ""
796
-
797
- #: views/SlideshowPluginSlideInserter/search-popup.php:6
798
- msgid "Search"
799
- msgstr ""
800
-
801
- #: views/SlideshowPluginSlideInserter/search-popup.php:7
802
- msgid "Search images by title or ID"
803
- msgstr ""
804
-
805
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:90
806
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:4
807
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:89
808
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:130
809
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:58
810
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:21
811
- msgid "Click to toggle"
812
- msgstr ""
813
-
814
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:160
815
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:69
816
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:190
817
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:131
818
- msgid "Don't let search engines follow link"
819
- msgstr ""
820
-
821
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:168
822
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:197
823
- msgid "Alternative text"
824
- msgstr ""
825
-
826
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:48
827
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:110
828
- msgid "Text color"
829
- msgstr ""
830
-
831
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:53
832
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:115
833
- msgid "(Leave empty for a transparent background)"
834
- msgstr ""
835
-
836
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:110
837
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:42
838
- msgid "Show related videos"
839
- msgstr ""
840
-
841
- #: views/SlideshowPluginUpload/upload-button.php:1
842
- msgid "Upload/Manage Images"
843
- msgstr ""
844
-
845
- #: views/SlideshowPluginWidget/form.php:9
846
- msgid "Random Slideshow"
847
- msgstr ""
848
-
849
- #~ msgid "Leave any field open to use default value."
850
- #~ msgstr "Een veld dat open wordt gelaten neemt de standaardwaarde aan."
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Slideshow Plugin\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-08-19 12:00+0100\n"
6
+ "PO-Revision-Date: 2014-08-19 12:00+0100\n"
7
+ "Last-Translator: Stefan Boonstra <stefanboonstra@hotmail.com>\n"
8
+ "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: _e;__\n"
13
+ "X-Poedit-Basepath: ../\n"
14
+ "X-Generator: Poedit 1.5.7\n"
15
+ "X-Poedit-SearchPath-0: .\n"
16
+
17
+ #: classes/SlideshowPluginGeneralSettings.php:82
18
+ #: classes/SlideshowPluginGeneralSettings.php:83
19
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:14
20
+ msgid "General Settings"
21
+ msgstr ""
22
+
23
+ #: classes/SlideshowPluginGeneralSettings.php:150
24
+ msgid "New"
25
+ msgstr ""
26
+
27
+ #: classes/SlideshowPluginGeneralSettings.php:151
28
+ msgid "Are you sure you want to delete this custom style?"
29
+ msgstr ""
30
+
31
+ #: classes/SlideshowPluginGeneralSettings.php:196
32
+ #: classes/SlideshowPluginInstaller.php:803
33
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:6
34
+ msgid "Light"
35
+ msgstr ""
36
+
37
+ #: classes/SlideshowPluginGeneralSettings.php:197
38
+ #: classes/SlideshowPluginInstaller.php:803
39
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:7
40
+ msgid "Dark"
41
+ msgstr ""
42
+
43
+ #: classes/SlideshowPluginGeneralSettings.php:353
44
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:57
45
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:143
46
+ msgid "Untitled"
47
+ msgstr ""
48
+
49
+ #: classes/SlideshowPluginInstaller.php:800
50
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:472
51
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:111
52
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:43
53
+ msgid "Yes"
54
+ msgstr ""
55
+
56
+ #: classes/SlideshowPluginInstaller.php:801
57
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:473
58
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:112
59
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:44
60
+ msgid "No"
61
+ msgstr ""
62
+
63
+ #: classes/SlideshowPluginInstaller.php:803
64
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:610
65
+ msgid "The style used for this slideshow"
66
+ msgstr ""
67
+
68
+ #: classes/SlideshowPluginInstaller.php:803
69
+ msgid "Custom"
70
+ msgstr ""
71
+
72
+ #: classes/SlideshowPluginInstaller.php:804
73
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:126
74
+ msgid "Custom style editor"
75
+ msgstr ""
76
+
77
+ #: classes/SlideshowPluginInstaller.php:805
78
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:518
79
+ msgid "Animation used for transition between slides"
80
+ msgstr ""
81
+
82
+ #: classes/SlideshowPluginInstaller.php:805
83
+ msgid "Slide"
84
+ msgstr ""
85
+
86
+ #: classes/SlideshowPluginInstaller.php:805
87
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
88
+ msgid "Fade"
89
+ msgstr ""
90
+
91
+ #: classes/SlideshowPluginInstaller.php:805
92
+ #: classes/SlideshowPluginInstaller.php:806
93
+ #: classes/SlideshowPluginInstaller.php:807
94
+ #: classes/SlideshowPluginInstaller.php:808
95
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
96
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:548
97
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:549
98
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:550
99
+ msgid "Animation"
100
+ msgstr ""
101
+
102
+ #: classes/SlideshowPluginInstaller.php:806
103
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:519
104
+ msgid "Number of seconds the slide takes to slide in"
105
+ msgstr ""
106
+
107
+ #: classes/SlideshowPluginInstaller.php:807
108
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:520
109
+ msgid "Number of seconds the description takes to slide in"
110
+ msgstr ""
111
+
112
+ #: classes/SlideshowPluginInstaller.php:808
113
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:521
114
+ msgid "Seconds between changing slides"
115
+ msgstr ""
116
+
117
+ #: classes/SlideshowPluginInstaller.php:809
118
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:522
119
+ msgid "Number of slides to fit into one slide"
120
+ msgstr ""
121
+
122
+ #: classes/SlideshowPluginInstaller.php:809
123
+ #: classes/SlideshowPluginInstaller.php:810
124
+ #: classes/SlideshowPluginInstaller.php:811
125
+ #: classes/SlideshowPluginInstaller.php:812
126
+ #: classes/SlideshowPluginInstaller.php:813
127
+ #: classes/SlideshowPluginInstaller.php:814
128
+ #: classes/SlideshowPluginInstaller.php:815
129
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:551
130
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:552
131
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:553
132
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:554
133
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
134
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:556
135
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:557
136
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:558
137
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:559
138
+ msgid "Display"
139
+ msgstr ""
140
+
141
+ #: classes/SlideshowPluginInstaller.php:810
142
+ msgid "Width of the slideshow, set to parent&#39;s width on 0"
143
+ msgstr ""
144
+
145
+ #: classes/SlideshowPluginInstaller.php:811
146
+ msgid "Height of the slideshow"
147
+ msgstr ""
148
+
149
+ #: classes/SlideshowPluginInstaller.php:812
150
+ msgid "Height of the description boxes"
151
+ msgstr ""
152
+
153
+ #: classes/SlideshowPluginInstaller.php:813
154
+ msgid "Fit image into slide (stretching it)"
155
+ msgstr ""
156
+
157
+ #: classes/SlideshowPluginInstaller.php:814
158
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:529
159
+ msgid "Show title and description"
160
+ msgstr ""
161
+
162
+ #: classes/SlideshowPluginInstaller.php:815
163
+ msgid "Hide description box, it will pop up when a mouse hovers over the slide"
164
+ msgstr ""
165
+
166
+ #: classes/SlideshowPluginInstaller.php:816
167
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:531
168
+ msgid "Automatically slide to the next slide"
169
+ msgstr ""
170
+
171
+ #: classes/SlideshowPluginInstaller.php:816
172
+ #: classes/SlideshowPluginInstaller.php:817
173
+ #: classes/SlideshowPluginInstaller.php:818
174
+ #: classes/SlideshowPluginInstaller.php:819
175
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:560
176
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:561
177
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:562
178
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:563
179
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:564
180
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:565
181
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:566
182
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:567
183
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:568
184
+ msgid "Control"
185
+ msgstr ""
186
+
187
+ #: classes/SlideshowPluginInstaller.php:817
188
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:532
189
+ msgid "Return to the beginning of the slideshow after last slide"
190
+ msgstr ""
191
+
192
+ #: classes/SlideshowPluginInstaller.php:818
193
+ msgid "Activate buttons (so the user can scroll through the slides)"
194
+ msgstr ""
195
+
196
+ #: classes/SlideshowPluginInstaller.php:819
197
+ msgid "Show control panel (play and pause button)"
198
+ msgstr ""
199
+
200
+ #: classes/SlideshowPluginPostType.php:45
201
+ msgid "Slideshows"
202
+ msgstr ""
203
+
204
+ #: classes/SlideshowPluginPostType.php:46
205
+ #: views/SlideshowPluginWidget/form.php:7
206
+ msgid "Slideshow"
207
+ msgstr ""
208
+
209
+ #: classes/SlideshowPluginPostType.php:47
210
+ msgid "Add New Slideshow"
211
+ msgstr ""
212
+
213
+ #: classes/SlideshowPluginPostType.php:48
214
+ msgid "Edit slideshow"
215
+ msgstr ""
216
+
217
+ #: classes/SlideshowPluginPostType.php:49
218
+ msgid "New slideshow"
219
+ msgstr ""
220
+
221
+ #: classes/SlideshowPluginPostType.php:50
222
+ msgid "View slideshow"
223
+ msgstr ""
224
+
225
+ #: classes/SlideshowPluginPostType.php:51
226
+ msgid "Search slideshows"
227
+ msgstr ""
228
+
229
+ #: classes/SlideshowPluginPostType.php:52
230
+ #: classes/SlideshowPluginPostType.php:53
231
+ msgid "No slideshows found"
232
+ msgstr ""
233
+
234
+ #: classes/SlideshowPluginPostType.php:98
235
+ msgid "Information"
236
+ msgstr ""
237
+
238
+ #: classes/SlideshowPluginPostType.php:107
239
+ msgid "Slides List"
240
+ msgstr ""
241
+
242
+ #: classes/SlideshowPluginPostType.php:116
243
+ msgid "Slideshow Style"
244
+ msgstr ""
245
+
246
+ #: classes/SlideshowPluginPostType.php:125
247
+ msgid "Slideshow Settings"
248
+ msgstr ""
249
+
250
+ #: classes/SlideshowPluginPostType.php:173
251
+ msgid "Slideshow created"
252
+ msgstr ""
253
+
254
+ #: classes/SlideshowPluginPostType.php:177
255
+ msgid "Slideshow updated"
256
+ msgstr ""
257
+
258
+ #: classes/SlideshowPluginPostType.php:224
259
+ #: classes/SlideshowPluginSlideInserter.php:238
260
+ #: views/SlideshowPluginPostType/slides.php:2
261
+ msgid "Insert"
262
+ msgstr ""
263
+
264
+ #: classes/SlideshowPluginPostType.php:232
265
+ msgid "Open all"
266
+ msgstr ""
267
+
268
+ #: classes/SlideshowPluginPostType.php:234
269
+ msgid "Close all"
270
+ msgstr ""
271
+
272
+ #: classes/SlideshowPluginPostType.php:240
273
+ #: views/SlideshowPluginPostType/slides.php:10
274
+ msgid "Add slides to this slideshow by using one of the buttons above."
275
+ msgstr ""
276
+
277
+ #: classes/SlideshowPluginPostType.php:320
278
+ msgid "Duplicate"
279
+ msgstr ""
280
+
281
+ #: classes/SlideshowPluginPostType.php:371
282
+ msgid "Copy"
283
+ msgstr ""
284
+
285
+ #: classes/SlideshowPluginShortcode.php:148
286
+ msgid "No slideshow selected."
287
+ msgstr ""
288
+
289
+ #: classes/SlideshowPluginSlideInserter.php:194
290
+ msgid "More results loaded"
291
+ msgstr ""
292
+
293
+ #: classes/SlideshowPluginSlideInserter.php:249
294
+ msgid "Load more results"
295
+ msgstr ""
296
+
297
+ #: classes/SlideshowPluginSlideInserter.php:260
298
+ msgid "No images were found, click here to upload some."
299
+ msgstr ""
300
+
301
+ #: classes/SlideshowPluginSlideInserter.php:332
302
+ msgid "Are you sure you want to delete this slide?"
303
+ msgstr ""
304
+
305
+ #: classes/SlideshowPluginSlideInserter.php:333
306
+ msgid "Insert image slide"
307
+ msgstr ""
308
+
309
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:523
310
+ msgid "Maximum width. When maximum width is 0, maximum width is ignored"
311
+ msgstr ""
312
+
313
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
314
+ msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
315
+ msgstr ""
316
+
317
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
318
+ msgid "More info"
319
+ msgstr ""
320
+
321
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
322
+ #, php-format
323
+ msgid ""
324
+ "Proportional relationship%s between slideshow's width and height (width:"
325
+ "height)"
326
+ msgstr ""
327
+
328
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:525
329
+ msgid "Slideshow's height"
330
+ msgstr ""
331
+
332
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:526
333
+ msgid "Image behaviour"
334
+ msgstr ""
335
+
336
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:527
337
+ msgid "Shrink slideshow's height when width shrinks"
338
+ msgstr ""
339
+
340
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:528
341
+ msgid ""
342
+ "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
343
+ msgstr ""
344
+
345
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:530
346
+ msgid "Hide description box, pop up when mouse hovers over"
347
+ msgstr ""
348
+
349
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:533
350
+ msgid "Pause slideshow when mouse hovers over"
351
+ msgstr ""
352
+
353
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:534
354
+ msgid "Activate navigation buttons"
355
+ msgstr ""
356
+
357
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:535
358
+ msgid "Hide navigation buttons, show when mouse hovers over"
359
+ msgstr ""
360
+
361
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:536
362
+ msgid "Activate pagination"
363
+ msgstr ""
364
+
365
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:537
366
+ msgid "Hide pagination, show when mouse hovers over"
367
+ msgstr ""
368
+
369
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:538
370
+ msgid "Activate control panel (play and pause button)"
371
+ msgstr ""
372
+
373
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:539
374
+ msgid "Hide control panel, show when mouse hovers over"
375
+ msgstr ""
376
+
377
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:540
378
+ msgid "Wait until the next slide has loaded before showing it"
379
+ msgstr ""
380
+
381
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:541
382
+ msgid "Show a loading icon until the first slide appears"
383
+ msgstr ""
384
+
385
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:542
386
+ msgid "Randomize slides"
387
+ msgstr ""
388
+
389
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:543
390
+ #, php-format
391
+ msgid "Avoid content filter (disable if '%s' is shown)"
392
+ msgstr ""
393
+
394
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
395
+ msgid "Slide Left"
396
+ msgstr ""
397
+
398
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
399
+ msgid "Slide Right"
400
+ msgstr ""
401
+
402
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
403
+ msgid "Slide Up"
404
+ msgstr ""
405
+
406
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
407
+ msgid "Slide Down"
408
+ msgstr ""
409
+
410
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
411
+ msgid "Cross Fade"
412
+ msgstr ""
413
+
414
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
415
+ msgid "Direct Fade"
416
+ msgstr ""
417
+
418
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
419
+ msgid "Random Animation"
420
+ msgstr ""
421
+
422
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
423
+ msgid "Natural and centered"
424
+ msgstr ""
425
+
426
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
427
+ msgid "Crop to fit"
428
+ msgstr ""
429
+
430
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
431
+ msgid "Stretch to fit"
432
+ msgstr ""
433
+
434
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:569
435
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:570
436
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:571
437
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:572
438
+ msgid "Miscellaneous"
439
+ msgstr ""
440
+
441
+ #: classes/SlideshowPluginWidget.php:23
442
+ msgid "Enables you to show your slideshows in the widget area of your website."
443
+ msgstr ""
444
+
445
+ #: classes/SlideshowPluginWidget.php:29
446
+ msgid "Slideshow Widget"
447
+ msgstr ""
448
+
449
+ #: views/SlideshowPlugin/slideshow.php:23
450
+ msgid "Play"
451
+ msgstr ""
452
+
453
+ #: views/SlideshowPlugin/slideshow.php:23
454
+ msgid "Pause"
455
+ msgstr ""
456
+
457
+ #: views/SlideshowPlugin/slideshow.php:25
458
+ msgid "Previous"
459
+ msgstr ""
460
+
461
+ #: views/SlideshowPlugin/slideshow.php:26
462
+ msgid "Next"
463
+ msgstr ""
464
+
465
+ #: views/SlideshowPlugin/slideshow.php:28
466
+ msgid "Go to slide"
467
+ msgstr ""
468
+
469
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:46
470
+ msgid "Default stylesheets"
471
+ msgstr ""
472
+
473
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:60
474
+ msgid "Create a new custom style from this style"
475
+ msgstr ""
476
+
477
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:62
478
+ msgid "Customize"
479
+ msgstr ""
480
+
481
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:76
482
+ msgid "Custom stylesheets"
483
+ msgstr ""
484
+
485
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:89
486
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:172
487
+ msgid "Edit this style"
488
+ msgstr ""
489
+
490
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:91
491
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:174
492
+ #: views/SlideshowPluginPostType/slides.php:138
493
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:112
494
+ msgid "Edit"
495
+ msgstr ""
496
+
497
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:98
498
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:181
499
+ msgid "Delete this style"
500
+ msgstr ""
501
+
502
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:100
503
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:183
504
+ msgid "Delete"
505
+ msgstr ""
506
+
507
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:110
508
+ msgid "Click 'Customize' to create a new custom stylesheet."
509
+ msgstr ""
510
+
511
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:130
512
+ msgid "Select a stylesheet to start customizing it."
513
+ msgstr ""
514
+
515
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:139
516
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:192
517
+ #: views/SlideshowPluginPostType/slides.php:59
518
+ #: views/SlideshowPluginPostType/slides.php:144
519
+ #: views/SlideshowPluginPostType/slides.php:196
520
+ #: views/SlideshowPluginPostType/slides.php:264
521
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:120
522
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:18
523
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:150
524
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:80
525
+ #: views/SlideshowPluginWidget/form.php:2
526
+ msgid "Title"
527
+ msgstr ""
528
+
529
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:148
530
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:200
531
+ msgid "Style"
532
+ msgstr ""
533
+
534
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:11
535
+ msgid "Note"
536
+ msgstr ""
537
+
538
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:18
539
+ #, php-format
540
+ msgid ""
541
+ "The settings set on this page apply only to newly created slideshows and "
542
+ "therefore do not alter any existing ones. To adapt a slideshow's settings, "
543
+ "%sclick here.%s"
544
+ msgstr ""
545
+
546
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:29
547
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:15
548
+ msgid "Default Slideshow Settings"
549
+ msgstr ""
550
+
551
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:41
552
+ #: views/SlideshowPluginPostType/settings.php:12
553
+ msgid "settings"
554
+ msgstr ""
555
+
556
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:77
557
+ msgid "Default Slideshow Stylesheet"
558
+ msgstr ""
559
+
560
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:11
561
+ msgid "Add slideshows"
562
+ msgstr ""
563
+
564
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:12
565
+ msgid "Edit slideshows"
566
+ msgstr ""
567
+
568
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:13
569
+ msgid "Delete slideshows"
570
+ msgstr ""
571
+
572
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:20
573
+ msgid "User Capabilities"
574
+ msgstr ""
575
+
576
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:22
577
+ msgid "Select the user roles that will able to perform certain actions."
578
+ msgstr ""
579
+
580
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:38
581
+ msgid "Untitled role"
582
+ msgstr ""
583
+
584
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:65
585
+ msgid "Settings"
586
+ msgstr ""
587
+
588
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:69
589
+ msgid "Stylesheet location"
590
+ msgstr ""
591
+
592
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:72
593
+ msgid "top"
594
+ msgstr ""
595
+
596
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:73
597
+ msgid "bottom"
598
+ msgstr ""
599
+
600
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:16
601
+ msgid "Custom Styles"
602
+ msgstr ""
603
+
604
+ #: views/SlideshowPluginPostType/information.php:1
605
+ msgid ""
606
+ "To use this slideshow in your website either add this piece of shortcode to "
607
+ "your posts or pages"
608
+ msgstr ""
609
+
610
+ #: views/SlideshowPluginPostType/information.php:5
611
+ msgid ""
612
+ "Or add this piece of code to where ever in your website you want to place "
613
+ "the slideshow"
614
+ msgstr ""
615
+
616
+ #: views/SlideshowPluginPostType/information.php:9
617
+ #, php-format
618
+ msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
619
+ msgstr ""
620
+
621
+ #: views/SlideshowPluginPostType/settings.php:26
622
+ #: views/SlideshowPluginPostType/style-settings.php:11
623
+ msgid "Default"
624
+ msgstr ""
625
+
626
+ #: views/SlideshowPluginPostType/slides.php:54
627
+ #: views/SlideshowPluginPostType/slides.php:191
628
+ #: views/SlideshowPluginSlideInserter/insert-text-button.php:2
629
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:9
630
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:69
631
+ msgid "Text slide"
632
+ msgstr ""
633
+
634
+ #: views/SlideshowPluginPostType/slides.php:61
635
+ #: views/SlideshowPluginPostType/slides.php:150
636
+ #: views/SlideshowPluginPostType/slides.php:198
637
+ #: views/SlideshowPluginPostType/slides.php:270
638
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:135
639
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:33
640
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:165
641
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:95
642
+ msgid "Description"
643
+ msgstr ""
644
+
645
+ #: views/SlideshowPluginPostType/slides.php:63
646
+ #: views/SlideshowPluginPostType/slides.php:200
647
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:51
648
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:113
649
+ msgid "Background color"
650
+ msgstr ""
651
+
652
+ #: views/SlideshowPluginPostType/slides.php:68
653
+ #: views/SlideshowPluginPostType/slides.php:155
654
+ #: views/SlideshowPluginPostType/slides.php:205
655
+ #: views/SlideshowPluginPostType/slides.php:275
656
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:150
657
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:59
658
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:180
659
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:121
660
+ msgid "URL"
661
+ msgstr ""
662
+
663
+ #: views/SlideshowPluginPostType/slides.php:70
664
+ #: views/SlideshowPluginPostType/slides.php:157
665
+ #: views/SlideshowPluginPostType/slides.php:207
666
+ #: views/SlideshowPluginPostType/slides.php:277
667
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:153
668
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:62
669
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:183
670
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:124
671
+ msgid "Open URL in"
672
+ msgstr ""
673
+
674
+ #: views/SlideshowPluginPostType/slides.php:72
675
+ #: views/SlideshowPluginPostType/slides.php:159
676
+ #: views/SlideshowPluginPostType/slides.php:209
677
+ #: views/SlideshowPluginPostType/slides.php:279
678
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:155
679
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:64
680
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:185
681
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:126
682
+ msgid "Same window"
683
+ msgstr ""
684
+
685
+ #: views/SlideshowPluginPostType/slides.php:73
686
+ #: views/SlideshowPluginPostType/slides.php:160
687
+ #: views/SlideshowPluginPostType/slides.php:210
688
+ #: views/SlideshowPluginPostType/slides.php:280
689
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:156
690
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:65
691
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:186
692
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:127
693
+ msgid "New window"
694
+ msgstr ""
695
+
696
+ #: views/SlideshowPluginPostType/slides.php:90
697
+ #: views/SlideshowPluginPostType/slides.php:230
698
+ #: views/SlideshowPluginSlideInserter/insert-video-button.php:2
699
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:94
700
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:26
701
+ msgid "Video slide"
702
+ msgstr ""
703
+
704
+ #: views/SlideshowPluginPostType/slides.php:95
705
+ #: views/SlideshowPluginPostType/slides.php:235
706
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:103
707
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:35
708
+ msgid "Youtube Video ID"
709
+ msgstr ""
710
+
711
+ #: views/SlideshowPluginPostType/slides.php:133
712
+ #: views/SlideshowPluginPostType/slides.php:255
713
+ #: views/SlideshowPluginSlideInserter/insert-image-button.php:2
714
+ #: views/SlideshowPluginSlideInserter/insert-image-button.php:4
715
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:101
716
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:135
717
+ msgid "Image slide"
718
+ msgstr ""
719
+
720
+ #: views/SlideshowPluginPostType/slides.php:171
721
+ msgid ""
722
+ "An error occurred while loading this slide, and it will not be present in "
723
+ "the slideshow"
724
+ msgstr ""
725
+
726
+ #: views/SlideshowPluginPostType/slides.php:177
727
+ #: views/SlideshowPluginPostType/slides.php:218
728
+ #: views/SlideshowPluginPostType/slides.php:243
729
+ #: views/SlideshowPluginPostType/slides.php:289
730
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:174
731
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:76
732
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:117
733
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:203
734
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:138
735
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:49
736
+ msgid "Delete slide"
737
+ msgstr ""
738
+
739
+ #: views/SlideshowPluginPostType/style-settings.php:22
740
+ #, php-format
741
+ msgid "Custom styles can be created and customized %shere%s."
742
+ msgstr ""
743
+
744
+ #: views/SlideshowPluginPostType/support-plugin.php:3
745
+ msgid "Help to keep this plugin free!"
746
+ msgstr ""
747
+
748
+ #: views/SlideshowPluginPostType/support-plugin.php:6
749
+ msgid ""
750
+ "In order to keep you provided with the newest features, updates and bug "
751
+ "fixes, a lot of motivation is required. Therefore I'm kindly asking you to "
752
+ "consider making a small donation to the plugin or rating it as 5-stars on "
753
+ "Wordpress.org. Thank you in advance!"
754
+ msgstr ""
755
+
756
+ #: views/SlideshowPluginPostType/support-plugin.php:15
757
+ msgid "Rate on Wordpress.org"
758
+ msgstr ""
759
+
760
+ #: views/SlideshowPluginPostType/support-plugin.php:24
761
+ msgid "Frequently Asked Questions (FAQ)"
762
+ msgstr ""
763
+
764
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
765
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
766
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
767
+ msgid "Insert a Slideshow"
768
+ msgstr ""
769
+
770
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
771
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
772
+ msgid "Insert Slideshow"
773
+ msgstr ""
774
+
775
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
776
+ msgid "Select a slideshow"
777
+ msgstr ""
778
+
779
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
780
+ #: views/SlideshowPluginWidget/form.php:12
781
+ msgid "Untitled slideshow"
782
+ msgstr ""
783
+
784
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
785
+ msgid "Cancel"
786
+ msgstr ""
787
+
788
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
789
+ #, php-format
790
+ msgid ""
791
+ "It seems you haven't created any slideshows yet. %sYou can create a "
792
+ "slideshow here!%s"
793
+ msgstr ""
794
+
795
+ #: views/SlideshowPluginSlideInserter/search-popup.php:6
796
+ msgid "Search"
797
+ msgstr ""
798
+
799
+ #: views/SlideshowPluginSlideInserter/search-popup.php:7
800
+ msgid "Search images by title or ID"
801
+ msgstr ""
802
+
803
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:90
804
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:4
805
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:89
806
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:130
807
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:58
808
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:21
809
+ msgid "Click to toggle"
810
+ msgstr ""
811
+
812
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:160
813
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:69
814
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:190
815
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:131
816
+ msgid "Don't let search engines follow link"
817
+ msgstr ""
818
+
819
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:168
820
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:197
821
+ msgid "Alternative text"
822
+ msgstr ""
823
+
824
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:48
825
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:110
826
+ msgid "Text color"
827
+ msgstr ""
828
+
829
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:53
830
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:115
831
+ msgid "(Leave empty for a transparent background)"
832
+ msgstr ""
833
+
834
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:110
835
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:42
836
+ msgid "Show related videos"
837
+ msgstr ""
838
+
839
+ #: views/SlideshowPluginUpload/upload-button.php:1
840
+ msgid "Upload/Manage Images"
841
+ msgstr ""
842
+
843
+ #: views/SlideshowPluginWidget/form.php:9
844
+ msgid "Random Slideshow"
845
+ msgstr ""
846
+
847
+ #~ msgid "Leave any field open to use default value."
848
+ #~ msgstr "Een veld dat open wordt gelaten neemt de standaardwaarde aan."
 
 
readme.txt CHANGED
@@ -5,7 +5,7 @@ Donate link: http://stefanboonstra.com/donate-to-slideshow/
5
  Tags: responsive, slideshow, slider, slide show, images, image, photo, video, text, gallery, galleries, jquery, javascript
6
  Requires at least: 3.5
7
  Tested up to: 4.2
8
- Stable tag: 2.2.22
9
  License: GPLv2
10
 
11
  Integrate a fancy slideshow in just five steps. - Rainbows. Rainbows everywhere.
@@ -13,9 +13,9 @@ Integrate a fancy slideshow in just five steps. - Rainbows. Rainbows everywhere.
13
 
14
  == Description ==
15
 
16
- Slideshow provides an easy way to integrate a slideshow for any WordPress installation.
17
 
18
- Any image can be loaded into the slideshow by picking it from the WordPress media page, even images you've already
19
  uploaded can be inserted into your slideshow right away!
20
 
21
  Fancy doing something crazy? You can create and use as many slideshows as you'd like, with
@@ -32,7 +32,7 @@ different images, settings and styles for each one of them.
32
  - Run multiple slideshows on the same page
33
  - Change animations and handling
34
  - Customize to taste
35
- - Show that visitor who's boss
36
 
37
  = Languages =
38
 
@@ -54,7 +54,7 @@ different images, settings and styles for each one of them.
54
  - Portuguese (83% - pt_PT - Translated by [Filipe Catraia](http://www.filipecatraia.com/))
55
  - Russian (83% - ru_RU - Translated by Dmitry Fatakov)
56
  - Serbo-Croatian (91% - sr_RS - Translated by [Webhosting Hub](http://www.webhostinghub.com/))
57
- - Spanish (51% - es_ES - Translated by [Violeta Rosales](https://twitter.com/violetisha))
58
  - Swedish (91% - sv_SE - Translated by [Åke Isacsson](http://www.nojdkund.se/) and Wilhelm Svenselius)
59
  - Turkish (83% - tr_TR - Translated by [İlker Akdoğan](http://www.kelkirpi.net/))
60
 
@@ -81,13 +81,14 @@ uncompressed files can be compiled using [Prepros](http://alphapixels.com/prepro
81
 
82
  2. After activating Slideshow, click on 'Slideshows' and create a new slideshow.
83
 
84
- 3. Click on 'Insert Image Slide' to insert an image slide, a popup will appear where you can search for the desired
85
- image. Insert the image by clicking 'Insert'. The same goes for text and video slides, don't forget to save!
 
86
 
87
- 4. Go to a post or a page and click the 'Insert Slideshow' button above the editor. A popup appears where you can select
88
- your newly created slideshow to insert. You can also use the shortcode or code snippet visible in your slideshow admin
89
- panel to deploy your slideshow anywhere on your website. Use the widget to show any of your slideshows in the sidebar
90
- of your website.
91
 
92
  5. Feel like a sir.
93
 
@@ -96,20 +97,21 @@ of your website.
96
 
97
  = How do I add image slides? =
98
 
99
- Click the 'Image slide' button in the 'Slides List' of the slideshow. A screen will pop up where you'll be able to
100
- search though all images that have already been uploaded to your WordPress website. If you want to add new images to the
101
- slideshow, or you do not have any images yet, you'll have to upload them to the WordPress media page first.
 
102
 
103
  = How do I change a slideshow's settings? =
104
 
105
- Just like the posts and pages you're already familiar with, slideshows can be edited. Go to the 'Slideshows' tab in your
106
- WordPress admin, and you'll see a list of slideshows. If you have not created a slideshow yet, you can do so by clicking
107
- 'Add new' on that same page. If there are slideshows in the list, click on the title of the slideshow you want to change
108
- the settings of. On the slideshow's edit page you'll be able to find a box titled 'Slideshow Settings', in this box you
109
- can change the slideshow's settings.
110
 
111
- If you're creating multiple slideshows that should have the same settings, but their settings need to be different from
112
- the default settings, you can change the default settings by going to the 'General Settings' page and clicking on the
113
  'Default Slideshow Settings' tab. Newly created slideshows will start off with the settings you set there.
114
 
115
  = How do I customize the slideshow's style? =
@@ -124,12 +126,12 @@ In the 'Slideshow Style' box you can now find and select your custom stylesheet.
124
  slideshows.
125
 
126
  If you've already created a custom stylesheet, you can edit it by clicking 'Edit'. You can also delete it by clicking
127
- 'Delete'. Be careful with this though, a deleted stylesheet cannot be retrieved and cannot be used by any slideshow
128
  anymore.
129
 
130
  = Some users can add, edit or delete slideshows, although I do not want them to. Can I prevent this from happening? =
131
 
132
- Yes you can. On your WordPress admin page, go to the 'Slideshows' menu item and click on 'General Settings', then go to
133
  the 'User Capabilities' tab (If you're not already there). The privileges that allow user groups to perform certain
134
  actions are listed here. To allow, for instance, a contributor to add a slideshow, click the box in front of 'Contributor'
135
  to grant him the right to add slideshows.
@@ -140,13 +142,13 @@ situation.
140
 
141
  = The slideshow does not show up =
142
 
143
- - The slideshow is mostly called after the `</head>` tag, which means the scripts and stylesheet need to load in the footer
144
  of the website. A theme that has no `<?php wp_footer(); ?>` call in it's footer will not be able to load the slideshow's
145
  scripts.
146
 
147
  - Often when the slideshow isn't showing, there's a javascript error somewhere on the page and this error has caused
148
- javascript to break. For the slideshow to work again, this error needs to be fixed. Check if any errors were thrown by
149
- opening Google Chrome or Firefox (with Firebug installed) and press the 'F12' key. Errors show in the console tab.
150
 
151
  = Why does Internet Explorer show a big blank space above the slideshow? =
152
 
@@ -181,6 +183,12 @@ personal taste.
181
 
182
  == Changelog ==
183
 
 
 
 
 
 
 
184
  = 2.2.22 =
185
  * Compatible with WordPress 4.2.
186
  * Default stylesheets are no longer dynamically loaded through admin-ajax.php.
@@ -189,10 +197,10 @@ personal taste.
189
  * Fixed: A bug that caused the previous slide button and the navigation bullets to malfunction on "Cross Fade" setting.
190
  * Fixed: Slideshow container calculation now uses the JavaScript round function instead of the floor function.
191
  * Fixed: Separated assignment of $sessionID and increment of SlideshowPlugin::$sessionCounter.
192
- * Added Norwegian translation by A. Nonymous.
193
- * Updated Persian translation by W3Design.
194
- * Updated German translation by A. Nonymous.
195
- * Updated Brazilian Portuguese by A. Nonymous.
196
 
197
  = 2.2.21 =
198
  * Compatible with WordPress 3.9.
@@ -210,10 +218,10 @@ personal taste.
210
  * Post published/updated message doesn't show a link to a non-existant page anymore.
211
  * New tags are available for custom stylesheets: %site-url%, %stylesheet-url% and %template-url%
212
  * Fixed: When the slideshow would not have any height, slides would not hide outside of the slideshow.
213
- * Added Serbo-Croatian translation by Webhosting Hub.
214
- * Updated Persian translation by W3Design.
215
- * Updated Chinese translation by Leo Newbiesup.
216
- * Updated Swedish translation by Wilhelm Svenselius.
217
 
218
  = 2.2.19 =
219
  * Slideshows can now detect when their stylesheet isn't loaded and load their own when this is the case.
@@ -227,8 +235,8 @@ personal taste.
227
  * Improved filter avoiding mechanism.
228
  * Disappearing settings now have a more apparent animation.
229
  * Fixed: First slide of a slideshow wouldn't show when the slideshow's content had no size on page load.
230
- * Added Brazilian Portuguese translation by Piero Luiz.
231
- * Updated French translation by Romain Sandri.
232
 
233
  = 2.2.17 =
234
  * Fixed: Images disappeared when their width was larger than the slide's width and image behaviour was set to 'Natural and centered'
@@ -261,22 +269,22 @@ personal taste.
261
  * Implemented a new algorithm for randomizing slides.
262
  * Slideshow can now wait for a slide to load before showing it.
263
  * Fixed: The 'Enable responsiveness' setting disappeared when disabling the 'Show title and description' option.
264
- * Added Turkish translation by İlker Akdoğan.
265
- * Added Polish translation by Wicher Wiater.
266
- * Added Finnish translation by an anonymous supporter.
267
- * Updated French translation by Romain Sandri.
268
- * Added Portuguese translation by Filipe Catraia.
269
- * Added Persian translation by W3Design.
270
- * Added Italian translation by Tecnikgeek.
271
- * Added Japanese translation by Michihide Hotta.
272
 
273
  = 2.2.11 =
274
  * Fixed: The slideshow script loaded the YouTube API twice.
275
  * Fixed: Floating the slideshow resulted in it having no width, therefore being invisible.
276
  * Fixed: Sites that don't support URL data weren't able to load a slideshow's stylesheet correctly.
277
  * Fixed: Slideshow randomly disappeared in Internet Explorer 8 when absolute positioning was used.
278
- * Added Swedish translation by Åke Isacsson.
279
- * Added Hebrew translation by Eli Segev.
280
 
281
  = 2.2.10 =
282
  * Fixed: Auto margin combined with a fixed width will no longer break slideshow's responsiveness.
@@ -322,7 +330,7 @@ personal taste.
322
  * Fixed: PHP errors were showing in 'Delete slide' links.
323
  * Live width calculations have been halved to improve performance.
324
  * Default settings have been tuned to cater better to most users.
325
- * Added Czech translation by Edhel.
326
 
327
  = 2.2.1 =
328
  * Fixed: A bug in the width calculations caused slideshows in width-less elements to be hidden.
5
  Tags: responsive, slideshow, slider, slide show, images, image, photo, video, text, gallery, galleries, jquery, javascript
6
  Requires at least: 3.5
7
  Tested up to: 4.2
8
+ Stable tag: 2.2.23
9
  License: GPLv2
10
 
11
  Integrate a fancy slideshow in just five steps. - Rainbows. Rainbows everywhere.
13
 
14
  == Description ==
15
 
16
+ Slideshow provides an easy way to integrate multiple slideshows in any WordPress installation.
17
 
18
+ Any image can be loaded into a slideshow using the default WordPress media uploader, even images you've already
19
  uploaded can be inserted into your slideshow right away!
20
 
21
  Fancy doing something crazy? You can create and use as many slideshows as you'd like, with
32
  - Run multiple slideshows on the same page
33
  - Change animations and handling
34
  - Customize to taste
35
+ - Show that visitor who's the boss
36
 
37
  = Languages =
38
 
54
  - Portuguese (83% - pt_PT - Translated by [Filipe Catraia](http://www.filipecatraia.com/))
55
  - Russian (83% - ru_RU - Translated by Dmitry Fatakov)
56
  - Serbo-Croatian (91% - sr_RS - Translated by [Webhosting Hub](http://www.webhostinghub.com/))
57
+ - Spanish (100% - es_ES - Translated by [Manuel Ballesta Ruiz](http://mbrsolution.com/) and [Violeta Rosales](https://twitter.com/violetisha))
58
  - Swedish (91% - sv_SE - Translated by [Åke Isacsson](http://www.nojdkund.se/) and Wilhelm Svenselius)
59
  - Turkish (83% - tr_TR - Translated by [İlker Akdoğan](http://www.kelkirpi.net/))
60
 
81
 
82
  2. After activating Slideshow, click on 'Slideshows' and create a new slideshow.
83
 
84
+ 3. Click on 'Image slide' to insert an image slide. The WordPress media uploader will appear, which allows you to choose
85
+ or upload the desired image to the slideshow. Insert the image by clicking the 'Select' button. To insert text slides and
86
+ YouTube video slides, click the 'Text slide' or the 'Video slide' button respectively. Don't forget to save your progress!
87
 
88
+ 4. Go to a post or a page and click the 'Insert Slideshow' button above the editor. A screen will appear in which you can
89
+ select your newly created slideshow. You can also use the shortcode or code snippet visible in your slideshow's edit page
90
+ to deploy your slideshow anywhere on your website. Use the widget to show any of your slideshows in the widget area of your
91
+ website.
92
 
93
  5. Feel like a sir.
94
 
97
 
98
  = How do I add image slides? =
99
 
100
+ Click the 'Image slide' button in the 'Slides List' of the slideshow. The WordPress media uploader will pop up, in which
101
+ you'll be able to search all images that have already been uploaded to your WordPress website. If you'd like to add new
102
+ images to the slideshow, you'll be able to upload them right away from the media uploader. (Provided you're running a
103
+ WordPress installation of version 3.5 or later)
104
 
105
  = How do I change a slideshow's settings? =
106
 
107
+ Just like WordPress' posts and pages you're already familiar with, slideshows can be edited. Go to the 'Slideshows' tab
108
+ in your WordPress admin panel, and you'll see a list of slideshows. If you have not created a slideshow yet, you
109
+ can do so by clicking 'Add new' on that same page. If there are slideshows in the list, click the title of the slideshow
110
+ of which you'd like to change the settings. On the slideshow's edit page you'll be able to find a box titled 'Slideshow Settings',
111
+ in this box you can change the slideshow's settings.
112
 
113
+ If you're creating multiple slideshows which should have the same settings, but you'd like the settings to be different
114
+ from the default ones, you can change the default settings by going to the 'General Settings' page and clicking on the
115
  'Default Slideshow Settings' tab. Newly created slideshows will start off with the settings you set there.
116
 
117
  = How do I customize the slideshow's style? =
126
  slideshows.
127
 
128
  If you've already created a custom stylesheet, you can edit it by clicking 'Edit'. You can also delete it by clicking
129
+ 'Delete'. Careful, a deleted stylesheet cannot be retrieved and cannot be used by any slideshow
130
  anymore.
131
 
132
  = Some users can add, edit or delete slideshows, although I do not want them to. Can I prevent this from happening? =
133
 
134
+ Yes you can. In your WordPress admin panel, go to the 'Slideshows' menu item and click on 'General Settings', then go to
135
  the 'User Capabilities' tab (If you're not already there). The privileges that allow user groups to perform certain
136
  actions are listed here. To allow, for instance, a contributor to add a slideshow, click the box in front of 'Contributor'
137
  to grant him the right to add slideshows.
142
 
143
  = The slideshow does not show up =
144
 
145
+ - The slideshow is often called after the `</head>` tag, which means the scripts and stylesheet need to load in the footer
146
  of the website. A theme that has no `<?php wp_footer(); ?>` call in it's footer will not be able to load the slideshow's
147
  scripts.
148
 
149
  - Often when the slideshow isn't showing, there's a javascript error somewhere on the page and this error has caused
150
+ JavaScript to break. For the slideshow to work again, this error needs to be fixed. Check if any errors were thrown by
151
+ opening Google Chrome or Firefox (with Firebug installed) and opening the console.
152
 
153
  = Why does Internet Explorer show a big blank space above the slideshow? =
154
 
183
 
184
  == Changelog ==
185
 
186
+ = 2.2.23 =
187
+ * Fixed: Despite default stylesheets now loading through static file again, admin-ajax.php was still being called.
188
+ * Fixed: Invalid HTML in the shortcode inserter. Thanks to [Iazel](https://wordpress.org/support/profile/iazel).
189
+ * Fixed: HTML5 validation issue when loading stylesheets in the head of the document.
190
+ * Updated Spanish translation, thanks to Manuel Ballesta Ruiz.
191
+
192
  = 2.2.22 =
193
  * Compatible with WordPress 4.2.
194
  * Default stylesheets are no longer dynamically loaded through admin-ajax.php.
197
  * Fixed: A bug that caused the previous slide button and the navigation bullets to malfunction on "Cross Fade" setting.
198
  * Fixed: Slideshow container calculation now uses the JavaScript round function instead of the floor function.
199
  * Fixed: Separated assignment of $sessionID and increment of SlideshowPlugin::$sessionCounter.
200
+ * Added Norwegian translation.
201
+ * Updated Persian translation, thanks to W3Design.
202
+ * Updated German translation.
203
+ * Updated Brazilian Portuguese translation.
204
 
205
  = 2.2.21 =
206
  * Compatible with WordPress 3.9.
218
  * Post published/updated message doesn't show a link to a non-existant page anymore.
219
  * New tags are available for custom stylesheets: %site-url%, %stylesheet-url% and %template-url%
220
  * Fixed: When the slideshow would not have any height, slides would not hide outside of the slideshow.
221
+ * Added Serbo-Croatian translation, thanks to Webhosting Hub.
222
+ * Updated Persian translation, thanks to W3Design.
223
+ * Updated Chinese translation, thanks to Leo Newbiesup.
224
+ * Updated Swedish translation, thanks to Wilhelm Svenselius.
225
 
226
  = 2.2.19 =
227
  * Slideshows can now detect when their stylesheet isn't loaded and load their own when this is the case.
235
  * Improved filter avoiding mechanism.
236
  * Disappearing settings now have a more apparent animation.
237
  * Fixed: First slide of a slideshow wouldn't show when the slideshow's content had no size on page load.
238
+ * Added Brazilian Portuguese translation, thanks to Piero Luiz.
239
+ * Updated French translation, thanks to Romain Sandri.
240
 
241
  = 2.2.17 =
242
  * Fixed: Images disappeared when their width was larger than the slide's width and image behaviour was set to 'Natural and centered'
269
  * Implemented a new algorithm for randomizing slides.
270
  * Slideshow can now wait for a slide to load before showing it.
271
  * Fixed: The 'Enable responsiveness' setting disappeared when disabling the 'Show title and description' option.
272
+ * Added Turkish translation, thanks to İlker Akdoğan.
273
+ * Added Polish translation, thanks to Wicher Wiater.
274
+ * Added Finnish translation.
275
+ * Updated French translation, thanks to Romain Sandri.
276
+ * Added Portuguese translation, thanks to Filipe Catraia.
277
+ * Added Persian translation, thanks to W3Design.
278
+ * Added Italian translation, thanks to Tecnikgeek.
279
+ * Added Japanese translation, thanks to Michihide Hotta.
280
 
281
  = 2.2.11 =
282
  * Fixed: The slideshow script loaded the YouTube API twice.
283
  * Fixed: Floating the slideshow resulted in it having no width, therefore being invisible.
284
  * Fixed: Sites that don't support URL data weren't able to load a slideshow's stylesheet correctly.
285
  * Fixed: Slideshow randomly disappeared in Internet Explorer 8 when absolute positioning was used.
286
+ * Added Swedish translation, thanks to Åke Isacsson.
287
+ * Added Hebrew translation, thanks to Eli Segev.
288
 
289
  = 2.2.10 =
290
  * Fixed: Auto margin combined with a fixed width will no longer break slideshow's responsiveness.
330
  * Fixed: PHP errors were showing in 'Delete slide' links.
331
  * Live width calculations have been halved to improve performance.
332
  * Default settings have been tuned to cater better to most users.
333
+ * Added Czech translation, thanks to Edhel.
334
 
335
  = 2.2.1 =
336
  * Fixed: A bug in the width calculations caused slideshows in width-less elements to be hidden.
slideshow.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Slideshow
4
  Plugin URI: http://wordpress.org/extend/plugins/slideshow-jquery-image-gallery/
5
  Description: The slideshow plugin is easily deployable on your website. Add any image that has already been uploaded to add to your slideshow, add text slides, or even add a video. Options and styles are customizable for every single slideshow on your website.
6
- Version: 2.2.22
7
  Requires at least: 3.5
8
  Author: StefanBoonstra
9
  Author URI: http://stefanboonstra.com/
@@ -22,7 +22,7 @@
22
  class SlideshowPluginMain
23
  {
24
  /** @var string $version */
25
- static $version = '2.2.22';
26
 
27
  /**
28
  * Bootstraps the application by assigning the right functions to
3
  Plugin Name: Slideshow
4
  Plugin URI: http://wordpress.org/extend/plugins/slideshow-jquery-image-gallery/
5
  Description: The slideshow plugin is easily deployable on your website. Add any image that has already been uploaded to add to your slideshow, add text slides, or even add a video. Options and styles are customizable for every single slideshow on your website.
6
+ Version: 2.2.23
7
  Requires at least: 3.5
8
  Author: StefanBoonstra
9
  Author URI: http://stefanboonstra.com/
22
  class SlideshowPluginMain
23
  {
24
  /** @var string $version */
25
+ static $version = '2.2.23';
26
 
27
  /**
28
  * Bootstraps the application by assigning the right functions to
views/SlideshowPluginShortcode/shortcode-inserter.php CHANGED
@@ -1,14 +1,20 @@
1
  <a
2
- href="#TB_inline?width=450&inlineId=insertSlideshowShortcode"
3
  class="button thickbox"
4
  title="<?php _e('Insert a Slideshow', 'slideshow-plugin'); ?>"
5
  style="padding-left: .4em;"
6
  >
 
 
 
 
7
  <img
8
  src="<?php echo SlideshowPluginMain::getPluginUrl() . '/images/SlideshowPluginPostType/adminIcon.png'; ?>"
9
  alt="<?php _e('Insert a Slideshow', 'slideshow-plugin'); ?>"
10
  style="vertical-align: text-top;"
11
  />
 
 
12
  <?php _e('Insert Slideshow', 'slideshow-plugin'); ?>
13
  </a>
14
 
1
  <a
2
+ href="#TB_inline?width=450&amp;inlineId=insertSlideshowShortcode"
3
  class="button thickbox"
4
  title="<?php _e('Insert a Slideshow', 'slideshow-plugin'); ?>"
5
  style="padding-left: .4em;"
6
  >
7
+ <?php global $wp_version; ?>
8
+ <?php if (version_compare($wp_version, '3.8', '>')) : ?>
9
+ <span class="dashicons dashicons-format-gallery" style="line-height: 26px;"></span>
10
+ <?php else: ?>
11
  <img
12
  src="<?php echo SlideshowPluginMain::getPluginUrl() . '/images/SlideshowPluginPostType/adminIcon.png'; ?>"
13
  alt="<?php _e('Insert a Slideshow', 'slideshow-plugin'); ?>"
14
  style="vertical-align: text-top;"
15
  />
16
+ <?php endif; ?>
17
+
18
  <?php _e('Insert Slideshow', 'slideshow-plugin'); ?>
19
  </a>
20