Slideshow - Version 2.1.12

Version Description

  • Moved slideshow activation to the footer script. Footer jQuery scripts are now supported.
Download this release

Release Info

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

Code changes from version 2.1.11 to 2.1.12

js/SlideshowPlugin/slideshow.js CHANGED
@@ -1 +1 @@
1
- jQuery.fn.slideshow_script=function(){var $container=jQuery(this),$overflow=$container.find('.slideshow_overflow'),$controlPanel=$container.find('.controlPanel'),$togglePlayButton=$controlPanel.find('.togglePlay'),$nextButton=$container.find('.next'),$previousButton=$container.find('.previous'),$slideshow=$container.find('.slideshow'),$slides=$slideshow.find('.slide');var $settings=jQuery.parseJSON($container.find('.settings').text());jQuery.each($settings,function(setting,value){if(value=='true')$settings[setting]=true;else if(value=='false')$settings[setting]=false});if($container.width()<=0){var parentElement=$container.parent();if(parentElement.width()<=0)$container.css('width',parentElement.closest('div').width());else $container.css('width',parentElement.width())}$overflow.css('width',$container.width());var $numberSlidesVisible=3,$buttonsActive=false,$interval='',$currentSlideId=0,$currentViewId=0,$slideWidth=$container.width()/$settings['slidesPerView'];init();function init(){var slidePosition=0;var totalWidth=1;jQuery.each($slides,function(key,slide){if(slidePosition<=0)jQuery(slide).css({'padding-left':0,'margin-left':0});if(slidePosition>=$settings['slidesPerView']-1)jQuery(slide).css({'padding-right':0,'margin-right':0});var slideWidth=$slideWidth-(jQuery(slide).outerWidth(true)-jQuery(slide).width());jQuery(slide).css({width:slideWidth});totalWidth+=jQuery(slide).outerWidth(true);var image=jQuery(slide).find('img');if(image.attr('src')!=undefined){if($settings['stretchImages']){image.attr({width:jQuery(slide).width(),height:jQuery(slide).height()})}else{image.css('width','auto')}}var description=jQuery(slide).find('.description');if($settings['showDescription']&&description.attr('class')!=undefined){if($settings['hideDescription'])description.css({marginBottom:'-'+description.outerHeight(true)+'px'});else description.css({height:$settings['descriptionHeight']});description.css({display:'block'})}var videoSlideIds=jQuery(slide).find('.videoId').text().split(' ');var videoId=videoSlideIds[0];var elementVideoId=videoSlideIds[1];if(videoId&&elementVideoId){swfobject.embedSWF('http://www.youtube.com/v/'+videoId+'?version=3&enablejsapi=1&playerapiid=player',elementVideoId,jQuery(slide).width(),jQuery(slide).height(),'9',null,null,{allowScriptAccess:'always',wmode:'opaque'},{id:elementVideoId})}slidePosition++;if(slidePosition>=$settings['slidesPerView'])slidePosition=0});$slideshow.css({width:totalWidth,float:'none',position:'absolute',top:0,left:0});if($settings['controlPanel']&&$settings['play'])togglePlay(true);resetInterval();if($settings['controllable']){setNextButtonVisible(true);setPreviousButtonVisible(true);$buttonsActive=true}}function gotoView(viewId,relative){if(relative)viewId=$currentViewId+viewId;if(viewId*$settings['slidesPerView']>=$slides.length){if($settings['loop']){viewId=0}else{viewId=Math.floor(($slides.length-1)/$settings['slidesPerView']);return}}else if(viewId<0){if($settings['loop']){viewId=Math.floor(($slides.length-1)/$settings['slidesPerView'])}else{viewId=0;return}}$currentViewId=viewId;var position=0;var slidePosition=$slideshow.find('.slide_'+(viewId*$settings['slidesPerView'])).position();if(slidePosition)position=slidePosition.left-Math.abs($slideshow.position().left);$buttonsActive=false;if($settings['animation']=='fade'){$slideshow.fadeOut(parseInt($settings['slideSpeed']*1000)/2);setTimeout(function(){$slideshow.animate({left:'-='+position},0);$slideshow.fadeIn(parseInt($settings['slideSpeed']*1000)/ 2)}, parseInt($settings['slideSpeed'] * 1000) /2)}else{$slideshow.animate({left:'-='+position},parseInt($settings['slideSpeed']*1000))}setTimeout(function(){$buttonsActive=true},parseInt($settings['slideSpeed']*1000))}$nextButton.click(function(){if($buttonsActive){resetInterval();gotoView(1,true)}});$previousButton.click(function(){if($buttonsActive){resetInterval();gotoView(-1,true)}});function setNextButtonVisible(visible){if(!$settings['controllable'])return;if(visible)$nextButton.stop(true,true).fadeIn($settings['slideSpeed']);else $nextButton.stop(true,true).fadeOut($settings['slideSpeed'])}function setPreviousButtonVisible(visible){if(!$settings['controllable'])return;if(visible)$previousButton.stop(true,true).fadeIn($settings['slideSpeed']);else $previousButton.stop(true,true).fadeOut($settings['slideSpeed'])}$togglePlayButton.click(function(){togglePlay()});function togglePlay(adaptButton){if(!adaptButton){$settings['play']=!$settings['play'];resetInterval()}if($settings['play'])$togglePlayButton.attr('class','pause');else $togglePlayButton.attr('class','play')}$container.mouseleave(function(){$controlPanel.stop(true,true).fadeOut('slow')});$container.mouseenter(function(){if($settings['controlPanel'])$controlPanel.stop(true,true).fadeIn('fast')});$slides.mouseenter(function(){if($settings['showDescription']&&$settings['hideDescription'])jQuery(this).find('.description').stop(true,true).animate({'margin-bottom':'0px'},parseInt($settings['descriptionSpeed']*1000))});$slides.mouseleave(function(){if($settings['showDescription']&&$settings['hideDescription']){var description=jQuery(this).find('.description');description.stop(true,true).animate({'margin-bottom':'-'+description.outerHeight(true)+'px'},parseInt($settings['descriptionSpeed']*1000))}});function resetInterval(){clearInterval($interval);if($settings['play'])$interval=setInterval(function(){gotoView(1,true)},$settings['intervalSpeed']*1000)}jQuery(window).load(function(){jQuery.each($slides,function(key,slide){var image=jQuery(slide).find('img');if(image.attr('src')!=undefined){var imageWidth=jQuery(slide).width()-(image.outerWidth(true)-image.width());var imageHeight=jQuery(slide).height()-(image.outerHeight(true)-image.height());if($settings['stretchImages']){image.css({width:imageWidth,height:imageHeight})}else{if(image.outerWidth(true)>jQuery(slide).width()){image.css({width:imageWidth,height:'auto'})}else if(image.outerHeight(true)>jQuery(slide).height()){image.css({width:'auto',height:imageHeight})}}}})})};
1
+ jQuery.fn.slideshow_script=function(){var $container=jQuery(this),$overflow=$container.find('.slideshow_overflow'),$controlPanel=$container.find('.controlPanel'),$togglePlayButton=$controlPanel.find('.togglePlay'),$nextButton=$container.find('.next'),$previousButton=$container.find('.previous'),$slideshow=$container.find('.slideshow'),$slides=$slideshow.find('.slide');var $settings=jQuery.parseJSON($container.find('.settings').text());jQuery.each($settings,function(setting,value){if(value=='true')$settings[setting]=true;else if(value=='false')$settings[setting]=false});if($container.width()<=0){var parentElement=$container.parent();if(parentElement.width()<=0)$container.css('width',parentElement.closest('div').width());else $container.css('width',parentElement.width())}$overflow.css('width',$container.width());var $numberSlidesVisible=3,$buttonsActive=false,$interval='',$currentSlideId=0,$currentViewId=0,$slideWidth=$container.width()/$settings['slidesPerView'];init();function init(){var slidePosition=0;var totalWidth=1000;jQuery.each($slides,function(key,slide){if(slidePosition<=0)jQuery(slide).css({'padding-left':0,'margin-left':0});if(slidePosition>=$settings['slidesPerView']-1)jQuery(slide).css({'padding-right':0,'margin-right':0});var slideWidth=$slideWidth-(jQuery(slide).outerWidth(true)-jQuery(slide).width());jQuery(slide).css({width:slideWidth});totalWidth+=jQuery(slide).outerWidth(true);var image=jQuery(slide).find('img');if(image.attr('src')!=undefined){if($settings['stretchImages']){image.attr({width:jQuery(slide).width(),height:jQuery(slide).height()})}else{image.css('width','auto')}}var description=jQuery(slide).find('.description');if($settings['showDescription']&&description.attr('class')!=undefined){if($settings['hideDescription'])description.css({marginBottom:'-'+description.outerHeight(true)+'px'});else description.css({height:$settings['descriptionHeight']});description.css({display:'block'})}var videoSlideIds=jQuery(slide).find('.videoId').text().split(' ');var videoId=videoSlideIds[0];var elementVideoId=videoSlideIds[1];if(videoId&&elementVideoId){swfobject.embedSWF('http://www.youtube.com/v/'+videoId+'?version=3&enablejsapi=1&playerapiid=player',elementVideoId,jQuery(slide).width(),jQuery(slide).height(),'9',null,null,{allowScriptAccess:'always',wmode:'opaque'},{id:elementVideoId})}slidePosition++;if(slidePosition>=$settings['slidesPerView'])slidePosition=0});$slideshow.css({width:totalWidth,float:'none',position:'absolute',top:0,left:0});if($settings['controlPanel']&&$settings['play'])togglePlay(true);resetInterval();if($settings['controllable']){setNextButtonVisible(true);setPreviousButtonVisible(true);$buttonsActive=true}}function gotoView(viewId,relative){if(relative)viewId=$currentViewId+viewId;if(viewId*$settings['slidesPerView']>=$slides.length){if($settings['loop']){viewId=0}else{viewId=Math.floor(($slides.length-1)/$settings['slidesPerView']);return}}else if(viewId<0){if($settings['loop']){viewId=Math.floor(($slides.length-1)/$settings['slidesPerView'])}else{viewId=0;return}}$currentViewId=viewId;var position=0;var slidePosition=$slideshow.find('.slide_'+(viewId*$settings['slidesPerView'])).position();if(slidePosition)position=slidePosition.left-Math.abs($slideshow.position().left);$buttonsActive=false;if($settings['animation']=='fade'){$slideshow.fadeOut(parseInt($settings['slideSpeed']*1000)/2);setTimeout(function(){$slideshow.animate({left:'-='+position},0);$slideshow.fadeIn(parseInt($settings['slideSpeed']*1000)/ 2)}, parseInt($settings['slideSpeed'] * 1000) /2)}else{$slideshow.animate({left:'-='+position},parseInt($settings['slideSpeed']*1000))}setTimeout(function(){$buttonsActive=true},parseInt($settings['slideSpeed']*1000))}$nextButton.click(function(){if($buttonsActive){resetInterval();gotoView(1,true)}});$previousButton.click(function(){if($buttonsActive){resetInterval();gotoView(-1,true)}});function setNextButtonVisible(visible){if(!$settings['controllable'])return;if(visible)$nextButton.stop(true,true).fadeIn($settings['slideSpeed']);else $nextButton.stop(true,true).fadeOut($settings['slideSpeed'])}function setPreviousButtonVisible(visible){if(!$settings['controllable'])return;if(visible)$previousButton.stop(true,true).fadeIn($settings['slideSpeed']);else $previousButton.stop(true,true).fadeOut($settings['slideSpeed'])}$togglePlayButton.click(function(){togglePlay()});function togglePlay(adaptButton){if(!adaptButton){$settings['play']=!$settings['play'];resetInterval()}if($settings['play'])$togglePlayButton.attr('class','pause');else $togglePlayButton.attr('class','play')}$container.mouseleave(function(){$controlPanel.stop(true,true).fadeOut('slow')});$container.mouseenter(function(){if($settings['controlPanel'])$controlPanel.stop(true,true).fadeIn('fast')});$slides.mouseenter(function(){if($settings['showDescription']&&$settings['hideDescription'])jQuery(this).find('.description').stop(true,true).animate({'margin-bottom':'0px'},parseInt($settings['descriptionSpeed']*1000))});$slides.mouseleave(function(){if($settings['showDescription']&&$settings['hideDescription']){var description=jQuery(this).find('.description');description.stop(true,true).animate({'margin-bottom':'-'+description.outerHeight(true)+'px'},parseInt($settings['descriptionSpeed']*1000))}});function resetInterval(){clearInterval($interval);if($settings['play'])$interval=setInterval(function(){gotoView(1,true)},$settings['intervalSpeed']*1000)}jQuery(window).load(function(){jQuery.each($slides,function(key,slide){var image=jQuery(slide).find('img');if(image.attr('src')!=undefined){var imageWidth=jQuery(slide).width()-(image.outerWidth(true)-image.width());var imageHeight=jQuery(slide).height()-(image.outerHeight(true)-image.height());if($settings['stretchImages']){image.css({width:imageWidth,height:imageHeight})}else{if(image.outerWidth(true)>jQuery(slide).width()){image.css({width:imageWidth,height:'auto'})}else if(image.outerHeight(true)>jQuery(slide).height()){image.css({width:'auto',height:imageHeight})}}}})})};jQuery(document).ready(function(){jQuery.each(jQuery('.slideshow_container'),function(key,value){jQuery(value).slideshow_script()})});
languages/slideshow-plugin-ru_RU.mo ADDED
Binary file
languages/slideshow-plugin-ru_RU.po ADDED
@@ -0,0 +1,393 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Slideshow Plugin\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-10-20 01:02+0200\n"
6
+ "PO-Revision-Date: 2012-10-20 10:28+0200\n"
7
+ "Last-Translator: Oleg Fritz <olefri@gmail.com>\n"
8
+ "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
+ "Language: \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-Poedit-Language: Russian\n"
16
+ "X-Poedit-Country: UKRAINE\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: classes/SlideshowPluginPostType.php:40
20
+ msgid "Slideshows"
21
+ msgstr "Слайдшоу"
22
+
23
+ #: classes/SlideshowPluginPostType.php:41
24
+ #: views/SlideshowPluginWidget/form.php:7
25
+ msgid "Slideshow"
26
+ msgstr "Слайдшоу"
27
+
28
+ #: classes/SlideshowPluginPostType.php:42
29
+ msgid "Add New Slideshow"
30
+ msgstr "Добавить новое слайдшоу"
31
+
32
+ #: classes/SlideshowPluginPostType.php:43
33
+ msgid "Edit slideshow"
34
+ msgstr "Редактировать слайдшоу"
35
+
36
+ #: classes/SlideshowPluginPostType.php:44
37
+ msgid "New slideshow"
38
+ msgstr "Новое слайдшоу"
39
+
40
+ #: classes/SlideshowPluginPostType.php:45
41
+ msgid "View slideshow"
42
+ msgstr "Просмотр слайдшоу"
43
+
44
+ #: classes/SlideshowPluginPostType.php:46
45
+ msgid "Search slideshows"
46
+ msgstr "Поиск слайдшоу"
47
+
48
+ #: classes/SlideshowPluginPostType.php:47
49
+ #: classes/SlideshowPluginPostType.php:48
50
+ msgid "No slideshows found"
51
+ msgstr "Ни одного слайдшоу не найдено"
52
+
53
+ #: classes/SlideshowPluginPostType.php:105
54
+ msgid "Information"
55
+ msgstr "Информация"
56
+
57
+ #: classes/SlideshowPluginPostType.php:114
58
+ msgid "Slides List"
59
+ msgstr "Список слайдов"
60
+
61
+ #: classes/SlideshowPluginPostType.php:123
62
+ msgid "Slideshow Style"
63
+ msgstr "Стиль слайдшоу"
64
+
65
+ #: classes/SlideshowPluginPostType.php:132
66
+ msgid "Slideshow Settings"
67
+ msgstr "Настройки слайдшоу"
68
+
69
+ #: classes/SlideshowPluginPostType.php:402
70
+ msgid "Yes"
71
+ msgstr "Да"
72
+
73
+ #: classes/SlideshowPluginPostType.php:403
74
+ msgid "No"
75
+ msgstr "Нет"
76
+
77
+ #: classes/SlideshowPluginPostType.php:405
78
+ msgid "The style used for this slideshow"
79
+ msgstr "Стиль, используемый в этом слайдшоу"
80
+
81
+ #: classes/SlideshowPluginPostType.php:405
82
+ msgid "Light"
83
+ msgstr "Светлый"
84
+
85
+ #: classes/SlideshowPluginPostType.php:405
86
+ msgid "Dark"
87
+ msgstr "Тёмный"
88
+
89
+ #: classes/SlideshowPluginPostType.php:405
90
+ msgid "Custom"
91
+ msgstr "Собственный"
92
+
93
+ #: classes/SlideshowPluginPostType.php:406
94
+ msgid "Custom style editor"
95
+ msgstr "Редактор собственного стиля"
96
+
97
+ #: classes/SlideshowPluginPostType.php:407
98
+ msgid "Animation used for transition between slides"
99
+ msgstr "Анимация, используемая для перехода между слайдами"
100
+
101
+ #: classes/SlideshowPluginPostType.php:407
102
+ msgid "Slide"
103
+ msgstr "Слайд"
104
+
105
+ #: classes/SlideshowPluginPostType.php:407
106
+ msgid "Fade"
107
+ msgstr "Затухание"
108
+
109
+ #: classes/SlideshowPluginPostType.php:407
110
+ #: classes/SlideshowPluginPostType.php:408
111
+ #: classes/SlideshowPluginPostType.php:409
112
+ #: classes/SlideshowPluginPostType.php:410
113
+ msgid "Animation"
114
+ msgstr "Анимационные"
115
+
116
+ #: classes/SlideshowPluginPostType.php:408
117
+ msgid "Number of seconds the slide takes to slide in"
118
+ msgstr "Число секунд, которое занимает появление слайда"
119
+
120
+ #: classes/SlideshowPluginPostType.php:409
121
+ msgid "Number of seconds the description takes to slide in"
122
+ msgstr "Число секунд, которое занимает появление текста"
123
+
124
+ #: classes/SlideshowPluginPostType.php:410
125
+ msgid "Seconds between changing slides"
126
+ msgstr "Секунд между сменой слайдов"
127
+
128
+ #: classes/SlideshowPluginPostType.php:411
129
+ msgid "Number of slides to fit into one slide"
130
+ msgstr "Число слайдов, размещённых в одном слайде"
131
+
132
+ #: classes/SlideshowPluginPostType.php:411
133
+ #: classes/SlideshowPluginPostType.php:412
134
+ #: classes/SlideshowPluginPostType.php:413
135
+ #: classes/SlideshowPluginPostType.php:414
136
+ #: classes/SlideshowPluginPostType.php:415
137
+ #: classes/SlideshowPluginPostType.php:416
138
+ #: classes/SlideshowPluginPostType.php:417
139
+ msgid "Display"
140
+ msgstr "Визуальные"
141
+
142
+ #: classes/SlideshowPluginPostType.php:412
143
+ msgid "Width of the slideshow, set to parent&#39;s width on 0"
144
+ msgstr "Ширина слайдшоу. Установите в 0 для определения ширины по родительскому элементу"
145
+
146
+ #: classes/SlideshowPluginPostType.php:413
147
+ msgid "Height of the slideshow"
148
+ msgstr "Высота слайдшоу"
149
+
150
+ #: classes/SlideshowPluginPostType.php:414
151
+ msgid "Height of the description boxes"
152
+ msgstr "Высота блока описания"
153
+
154
+ #: classes/SlideshowPluginPostType.php:415
155
+ msgid "Fit image into slide (stretching it)"
156
+ msgstr "Уместить изображение в слайд (растянуть его)"
157
+
158
+ #: classes/SlideshowPluginPostType.php:416
159
+ msgid "Show title and description"
160
+ msgstr "Показать заголовок и описание"
161
+
162
+ #: classes/SlideshowPluginPostType.php:417
163
+ msgid "Hide description box, it will pop up when a mouse hovers over the slide"
164
+ msgstr "Скрыть блок описания. Он будет появляться при наведении указателя мыши поверх слайда"
165
+
166
+ #: classes/SlideshowPluginPostType.php:418
167
+ msgid "Automatically slide to the next slide"
168
+ msgstr "Автоматический переход к следующему слайду"
169
+
170
+ #: classes/SlideshowPluginPostType.php:418
171
+ #: classes/SlideshowPluginPostType.php:419
172
+ #: classes/SlideshowPluginPostType.php:420
173
+ #: classes/SlideshowPluginPostType.php:421
174
+ msgid "Control"
175
+ msgstr "Управляющие"
176
+
177
+ #: classes/SlideshowPluginPostType.php:419
178
+ msgid "Return to the beginning of the slideshow after last slide"
179
+ msgstr "Вернуться в начало слайдшоу после последнего слайда"
180
+
181
+ #: classes/SlideshowPluginPostType.php:420
182
+ msgid "Activate buttons (so the user can scroll through the slides)"
183
+ msgstr "Активировать кнопки (пользователь сможет пролистывать слайды)"
184
+
185
+ #: classes/SlideshowPluginPostType.php:421
186
+ msgid "Show control panel (play and pause button)"
187
+ msgstr "Отображать панель управления (кнопка воспроизведения и останова)"
188
+
189
+ #: classes/SlideshowPluginPostType.php:422
190
+ msgid "Randomize slides"
191
+ msgstr "Слайды в случайном порядке"
192
+
193
+ #: classes/SlideshowPluginPostType.php:422
194
+ #: classes/SlideshowPluginPostType.php:424
195
+ msgid "Miscellaneous"
196
+ msgstr "Разные"
197
+
198
+ #: classes/SlideshowPluginPostType.php:424
199
+ #, php-format
200
+ msgid "Avoid content filter (disable if '%s' is shown)"
201
+ msgstr "Избегать фильтра содержимого (запрещено, если отображается '%s' )"
202
+
203
+ #: classes/SlideshowPluginSlideInserter.php:138
204
+ msgid "Insert"
205
+ msgstr "Вставить"
206
+
207
+ #: classes/SlideshowPluginSlideInserter.php:147
208
+ msgid "Load more results"
209
+ msgstr "Загрузить больше результатов"
210
+
211
+ #: classes/SlideshowPluginSlideInserter.php:156
212
+ msgid "No images were found, click here to upload some."
213
+ msgstr "Не найдено изображений, щёлкните здесь для загрузки"
214
+
215
+ #: classes/SlideshowPluginWidget.php:20
216
+ msgid "Enables you to show your slideshows in the widget area of your website."
217
+ msgstr "Позволяет отобразить ваше слайдшоу в области виджетов вашего сайта"
218
+
219
+ #: classes/SlideshowPluginWidget.php:26
220
+ msgid "Slideshow Widget"
221
+ msgstr "Виджет слайдшоу"
222
+
223
+ #: views/SlideshowPluginWidget/form.php:2
224
+ #: views/SlideshowPluginPostType/slides.php:47
225
+ #: views/SlideshowPluginPostType/slides.php:141
226
+ msgid "Title"
227
+ msgstr "Заголовок"
228
+
229
+ #: views/SlideshowPluginWidget/form.php:9
230
+ msgid "Random Slideshow"
231
+ msgstr "Случайный порядок слайдшоу"
232
+
233
+ #: views/SlideshowPluginUpload/upload-button.php:1
234
+ msgid "Upload/Manage Images"
235
+ msgstr "Загрузка/Управление изображениями"
236
+
237
+ #: views/SlideshowPluginPostType/information.php:1
238
+ msgid "To use this slideshow in your website either add this piece of shortcode to your posts or pages"
239
+ msgstr "Для использования слайдшоу на вашем сайте добавьте этот шорткод в ваши записи или страницы"
240
+
241
+ #: views/SlideshowPluginPostType/information.php:3
242
+ msgid "Or add this piece of code to where ever in your website you want to place the slideshow"
243
+ msgstr "Или добавьте этот фрагмент кода в том месте, где вы желаете разместить ваше слайдшоу"
244
+
245
+ #: views/SlideshowPluginPostType/information.php:5
246
+ #, php-format
247
+ msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
248
+ msgstr "Или отправьтесь на %sстраницу виджетов%s и отобразите слайдшоу как виджет"
249
+
250
+ #: views/SlideshowPluginPostType/style-settings.php:6
251
+ #: views/SlideshowPluginPostType/settings.php:24
252
+ msgid "Default"
253
+ msgstr "Исходное"
254
+
255
+ #: views/SlideshowPluginPostType/slides.php:9
256
+ msgid "Add slides to this slideshow by using one of the buttons above."
257
+ msgstr "Добавить слайды к слайдшоу с помощью одной из кнопок ниже"
258
+
259
+ #: views/SlideshowPluginPostType/slides.php:48
260
+ #: views/SlideshowPluginPostType/slides.php:142
261
+ msgid "Description"
262
+ msgstr "Описание"
263
+
264
+ #: views/SlideshowPluginPostType/slides.php:49
265
+ #: views/SlideshowPluginPostType/slides.php:143
266
+ msgid "Background color"
267
+ msgstr "Фоновый цвет"
268
+
269
+ #: views/SlideshowPluginPostType/slides.php:55
270
+ #: views/SlideshowPluginPostType/slides.php:110
271
+ #: views/SlideshowPluginPostType/slides.php:149
272
+ #: views/SlideshowPluginPostType/slides.php:197
273
+ msgid "Same window"
274
+ msgstr "Текущее окно"
275
+
276
+ #: views/SlideshowPluginPostType/slides.php:56
277
+ #: views/SlideshowPluginPostType/slides.php:111
278
+ #: views/SlideshowPluginPostType/slides.php:150
279
+ #: views/SlideshowPluginPostType/slides.php:198
280
+ msgid "New window"
281
+ msgstr "Новое окно"
282
+
283
+ #: views/SlideshowPluginPostType/slides.php:60
284
+ #: views/SlideshowPluginPostType/slides.php:115
285
+ #: views/SlideshowPluginPostType/slides.php:154
286
+ #: views/SlideshowPluginPostType/slides.php:202
287
+ msgid "URL"
288
+ msgstr "URL"
289
+
290
+ #: views/SlideshowPluginPostType/slides.php:76
291
+ #: views/SlideshowPluginPostType/slides.php:170
292
+ msgid "Youtube Video ID"
293
+ msgstr "ID видео на Youtube"
294
+
295
+ #: views/SlideshowPluginPostType/slides.php:94
296
+ #: views/SlideshowPluginPostType/slides.php:101
297
+ msgid "Edit"
298
+ msgstr "Редактировать"
299
+
300
+ #: views/SlideshowPluginPostType/slides.php:126
301
+ msgid "An error occurred while loading this slide, and it will not be present in the slideshow"
302
+ msgstr "При загрузке этого слайда произошла ошибка, он не будет отображен в слайдшоу"
303
+
304
+ #: views/SlideshowPluginPostType/slides.php:131
305
+ #: views/SlideshowPluginPostType/slides.php:162
306
+ #: views/SlideshowPluginPostType/slides.php:177
307
+ #: views/SlideshowPluginPostType/slides.php:211
308
+ msgid "Delete slide"
309
+ msgstr "Удалить слайд"
310
+
311
+ #: views/SlideshowPluginPostType/settings.php:10
312
+ msgid "settings"
313
+ msgstr "настройки"
314
+
315
+ #: views/SlideshowPluginPostType/support-plugin.php:3
316
+ msgid "Help to keep this plugin free!"
317
+ msgstr "Помогите сохранить плагин свободным!"
318
+
319
+ #: views/SlideshowPluginPostType/support-plugin.php:6
320
+ msgid "In order to keep you provided with the newest features, forum support, and bug-fixes, a lot of motivation is required. Therefore I'm kindly asking you to consider making a small donation to the plugin or rating it as 5-stars on Wordpress.org. Thank you in advance!"
321
+ msgstr "Для предоставления вам новейших возможностей, поддержки на форуме, исправлении ошибок необходима значительная мотивация. Поэтому просим вас сделать небольшое пожертвование плагину или оценить его в пять баллов на сайте Wordpress.org. Заранее спасибо!"
322
+
323
+ #: views/SlideshowPluginPostType/support-plugin.php:15
324
+ msgid "Rate on Wordpress.org"
325
+ msgstr "Поставить оценку на Wordpress.org"
326
+
327
+ #: views/SlideshowPluginPostType/support-plugin.php:24
328
+ msgid "Questions / Suggestions"
329
+ msgstr "Вопросы / Предложения"
330
+
331
+ #: views/SlideshowPluginSlideInserter/insert-text-button.php:1
332
+ msgid "Text slide"
333
+ msgstr "Текстовый слайд"
334
+
335
+ #: views/SlideshowPluginSlideInserter/search-popup.php:6
336
+ msgid "Search"
337
+ msgstr "Поиск"
338
+
339
+ #: views/SlideshowPluginSlideInserter/search-popup.php:7
340
+ msgid "Search images by title or ID"
341
+ msgstr "Поиск изображения по заголовку или ID"
342
+
343
+ #: views/SlideshowPluginSlideInserter/insert-image-button.php:1
344
+ msgid "Image slide"
345
+ msgstr "Слайд с изображением"
346
+
347
+ #: views/SlideshowPluginSlideInserter/insert-video-button.php:1
348
+ msgid "Video slide"
349
+ msgstr "Видео слайд"
350
+
351
+ #~ msgid "Custom style editor (Does not work with a Strict Doctype)"
352
+ #~ msgstr "Aangepaste stijl bewerker (Werkt niet met een Strict Doctype)"
353
+
354
+ #~ msgid "Has the Slideshow plugin helped you?"
355
+ #~ msgstr "Heeft de Slideshow plugin je geholpen?"
356
+
357
+ #~ msgid "Help it back!"
358
+ #~ msgstr "Help hem terug!"
359
+
360
+ #~ msgid ""
361
+ #~ "If this plugin has filled you with happiness, please support the upkeep "
362
+ #~ "of the plugin by rating it on Wordpress, posting a suggestion for "
363
+ #~ "improvement on the support forum, or making a donation."
364
+ #~ msgstr ""
365
+ #~ "Als deze plugin je met blijdschap heeft vervuld, zou ik het enorm "
366
+ #~ "waarderen als je de plugin wilt beoordelen op Wordpress, een suggestie "
367
+ #~ "wilt maken voor verbetering, of een donatie doen wilt."
368
+
369
+ #~ msgid "Insert Text Slide"
370
+ #~ msgstr "Tekst-slide invoegen"
371
+
372
+ #~ msgid "Click on an image to insert it as a slide"
373
+ #~ msgstr "Klik op een plaatje om deze in te voegen als slide"
374
+
375
+ #~ msgid "Width of the slideshow"
376
+ #~ msgstr "Breedte van de slideshow"
377
+
378
+ #~ msgid "Defaults to parent's width."
379
+ #~ msgstr "Standaard ingesteld op de breedte van het bovenliggende element."
380
+
381
+ #~ msgid "Send user to image URL on click"
382
+ #~ msgstr ""
383
+ #~ "Wanner de gebruiker op de afbeelding klikt, stuur hem naar de URL van het "
384
+ #~ "plaatje"
385
+
386
+ #~ msgid "Style"
387
+ #~ msgstr "Style"
388
+
389
+ #~ msgid "Custom style"
390
+ #~ msgstr "Aangepaste stijl"
391
+
392
+ #~ msgid "Leave any field open to use default value."
393
+ #~ 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: slideshow, slider, slide, slides, show, images, image, photo, gallery, galleries, jquery, javascript, video, text
6
  Requires at least: 3.3
7
  Tested up to: 3.4.2
8
- Stable tag: 2.1.11
9
  License: GPLv2
10
 
11
  Integrate a fancy slideshow in just five steps. - Rainbows. Rainbows everywhere.
@@ -37,6 +37,10 @@ different images, settings and styles for each one of them.
37
 
38
  - English
39
  - Dutch
 
 
 
 
40
 
41
  = Project board =
42
 
@@ -107,6 +111,9 @@ slideshow may not be styled.
107
  * Multiple slideshows can now be shown with each its separate styling.
108
  * Users can now search insertable images by post id.
109
 
 
 
 
110
  = 2.1.11 =
111
  * Fixed: Conflict with the Gravity Forms plugin.
112
 
5
  Tags: slideshow, slider, slide, slides, show, images, image, photo, gallery, galleries, jquery, javascript, video, text
6
  Requires at least: 3.3
7
  Tested up to: 3.4.2
8
+ Stable tag: 2.1.12
9
  License: GPLv2
10
 
11
  Integrate a fancy slideshow in just five steps. - Rainbows. Rainbows everywhere.
37
 
38
  - English
39
  - Dutch
40
+ - Russian (Translated by [Oleg Fritz](http://wordpress.org/support/profile/olegfritz))
41
+
42
+ Feel free to send me your own translation of the plugin to my e-mail address: wordpress@stefanboonstra.com. Many
43
+ thanks in advance!
44
 
45
  = Project board =
46
 
111
  * Multiple slideshows can now be shown with each its separate styling.
112
  * Users can now search insertable images by post id.
113
 
114
+ = 2.1.12 =
115
+ * Moved slideshow activation to the footer script. Footer jQuery scripts are now supported.
116
+
117
  = 2.1.11 =
118
  * Fixed: Conflict with the Gravity Forms plugin.
119
 
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: This plugin offers a slideshow that is easily deployable in your website. Add any image that has already been uploaded to add to your slideshow. Options and styles are customizable for every single slideshow on your website.
6
- Version: 2.1.11
7
  Requires at least: 3.3
8
  Author: StefanBoonstra
9
  Author URI: http://stefanboonstra.com
@@ -21,7 +21,7 @@
21
  class SlideshowPluginMain {
22
 
23
  /** Variables */
24
- static $version = '2.1.11';
25
 
26
  /**
27
  * 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: This plugin offers a slideshow that is easily deployable in your website. Add any image that has already been uploaded to add to your slideshow. Options and styles are customizable for every single slideshow on your website.
6
+ Version: 2.1.12
7
  Requires at least: 3.3
8
  Author: StefanBoonstra
9
  Author URI: http://stefanboonstra.com
21
  class SlideshowPluginMain {
22
 
23
  /** Variables */
24
+ static $version = '2.1.12';
25
 
26
  /**
27
  * Bootstraps the application by assigning the right functions to
views/SlideshowPlugin/slideshow.php CHANGED
@@ -104,19 +104,13 @@
104
  <div class="settings" style="display: none;"><?php echo json_encode($settings); ?></div>
105
 
106
  <div class="manufacturer">
107
- <a href="http://www.stefanboonstra.com/">Slideshow Stefan Boonstra</a>
108
  </div>
109
 
110
  <div style="display: none;">
111
  <?php echo SlideshowPluginMain::$version; ?>
112
  </div>
113
 
114
- <script type="text/javascript">
115
- jQuery(document).ready(function(){
116
- jQuery('.slideshow_container_<?php echo $randomId; ?>').slideshow_script();
117
- });
118
- </script>
119
-
120
  <?php if(!empty($style)): ?>
121
  <style type="text/css">
122
  <?php echo $style; ?>
104
  <div class="settings" style="display: none;"><?php echo json_encode($settings); ?></div>
105
 
106
  <div class="manufacturer">
107
+ <a href="http://www.stefanboonstra.com/slideshow/">Wordpress Slideshow</a>
108
  </div>
109
 
110
  <div style="display: none;">
111
  <?php echo SlideshowPluginMain::$version; ?>
112
  </div>
113
 
 
 
 
 
 
 
114
  <?php if(!empty($style)): ?>
115
  <style type="text/css">
116
  <?php echo $style; ?>