Slideshow - Version 2.2.10

Version Description

  • Fixed: Auto margin combined with a fixed width will no longer break slideshow's responsiveness.
  • Updated Russian translation, thanks to Dmitry Fatakov.
Download this release

Release Info

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

Code changes from version 2.2.9 to 2.2.10

js/SlideshowPlugin/slideshow.min.js CHANGED
@@ -1 +1 @@
1
- jQuery.fn.slideshow_jquery_image_gallery_script=function(){var $=jQuery;var $container=$(this),$content=$container.find('.slideshow_content'),$views=$container.find('.slideshow_view'),$slides=$container.find('.slideshow_slide'),$controlPanel=$container.find('.slideshow_controlPanel'),$togglePlayButton=$controlPanel.find('.slideshow_togglePlay'),$nextButton=$container.find('.slideshow_next'),$previousButton=$container.find('.slideshow_previous'),$pagination=$container.find('.slideshow_pagination');var $ID=getID();if($ID===undefined||isNaN($ID)){if(typeof console!=='undefined')console.log('Slideshow: Session ID could not be found.');return}var $settings=window['SlideshowPluginSettings_'+$ID];$.each($settings,function(setting,value){if(value=='true')$settings[setting]=true;else if(value=='false')$settings[setting]=false});var $parentElement=$container.parent(),$viewData=[],$navigationActive=true,$currentViewId=getNextViewId(),$currentWidth=0,$visibleViews=[$currentViewId],$videoPlayers=[],$interval='',$mouseEnterTimer='',$invisibilityTimer='',$descriptionTimer='';init();function init(){window.slideshow_jquery_image_gallery_registered_slideshows.push($ID);recalculate(false);$.each($views,function(viewId,view){recalculateView(view);if(viewId!=$visibleViews[0])$(view).css('top',$container.outerHeight(true));$viewData[viewId]=[];$.each($(view).find('.slideshow_slide'),function(slideId,slide){$viewData[viewId][slideId]={'imageDimension':''}})});$content.show();$(window).load(function(){recalculateVisibleViews()});if($settings['enableResponsiveness']){$(window).resize(function(){recalculate()})}if(parseFloat($settings['intervalSpeed'])<parseFloat($settings['slideSpeed'])+0.1)$settings['intervalSpeed']=parseFloat($settings['slideSpeed'])+0.1;activateDescriptions();activateControlPanel();activateNavigationButtons();activatePagination();activatePauseOnHover();start()}function start(){if(!$settings['play'])return;$interval=setInterval(function(){animateTo(getNextViewId(),1)},$settings['intervalSpeed']*1000)}function stop(){clearInterval($interval);$interval=false}function animateTo(viewId,direction){if(videoIsPlaying()||viewId<0||viewId>=$views.length||viewId==$currentViewId)return;$navigationActive=false;if(direction==0||direction==undefined){if(viewId<$currentViewId)direction=-1;else direction=1}$visibleViews=[$currentViewId,viewId];var animation=$settings['animation'];var animations=['slide','slideRight','slideUp','slideDown','fade','directFade'];if(animation=='random')animation=animations[Math.floor(Math.random()*animations.length)];var animationOpposites={'slide':'slideRight','slideRight':'slide','slideUp':'slideDown','slideDown':'slideUp','fade':'fade','directFade':'directFade'};if(direction<0)animation=animationOpposites[animation];var currentView=$($views[$currentViewId]);var nextView=$($views[viewId]);currentView.stop(true,true);nextView.stop(true,true);recalculateVisibleViews();$currentViewId=viewId;$container.trigger('slideshowAnimate');switch(animation){case'slide':recalculateVisibleViews();nextView.css({top:0,left:$content.width()});currentView.animate({left:-currentView.outerWidth(true)},$settings['slideSpeed']*1000);nextView.animate({left:0},$settings['slideSpeed']*1000);setTimeout(function(){currentView.stop(true,true).css('top',$container.outerHeight(true))},$settings['slideSpeed']*1000);break;case'slideRight':nextView.css({top:0,left:-$content.width()});currentView.animate({left:currentView.outerWidth(true)},$settings['slideSpeed']*1000);nextView.animate({left:0},$settings['slideSpeed']*1000);setTimeout(function(){currentView.stop(true,true).css('top',$container.outerHeight(true))},$settings['slideSpeed']*1000);break;case'slideUp':nextView.css({top:$content.height(),left:0});currentView.animate({top:-currentView.outerHeight(true)},$settings['slideSpeed']*1000);nextView.animate({top:0},$settings['slideSpeed']*1000);setTimeout(function(){currentView.stop(true,true).css('top',$container.outerHeight(true))},$settings['slideSpeed']*1000);break;case'slideDown':nextView.css({top:-$content.height(),left:0});currentView.animate({top:currentView.outerHeight(true)},$settings['slideSpeed']*1000);nextView.animate({top:0},$settings['slideSpeed']*1000);setTimeout(function(){currentView.stop(true,true).css('top',$container.outerHeight(true))},$settings['slideSpeed']*1000);break;case'fade':nextView.css({top:0,left:0,display:'none'});currentView.fadeOut(($settings['slideSpeed']*1000)/2);setTimeout(function(){nextView.fadeIn(($settings['slideSpeed']*1000)/2);currentView.stop(true,true).css({top:$container.outerHeight(true),display:'block'})},($settings['slideSpeed']*1000)/2);break;case'directFade':nextView.css({top:0,left:0,'z-index':0,display:'none'});currentView.css({'z-index':1});nextView.fadeIn($settings['slideSpeed']*1000);currentView.fadeOut($settings['slideSpeed']*1000);setTimeout(function(){nextView.stop(true,true).css({'z-index':'auto'});currentView.stop(true,true).css({top:$container.outerHeight(true),display:'block','z-index':'auto'})},$settings['slideSpeed']*1000);break}setTimeout(function(){$visibleViews=[viewId]},$settings['slideSpeed']*1000);setTimeout(function(){$navigationActive=true},$settings['slideSpeed']*1000)}function recalculate(recalculateViews){if(!$container.is(':visible')){$invisibilityTimer=setInterval(function(){if($container.is(':visible')){recalculate();clearInterval($invisibilityTimer);$invisibilityTimer=''}},500);return}var parentElement=$parentElement;for(var i=0;parentElement.width()<=0;i++){parentElement=parentElement.parent();if(i>50)break}if($currentWidth==parentElement.width())return;$currentWidth=parentElement.width();var width=parentElement.width()-($container.outerWidth(true)-$container.width());if($settings['maxWidth']>0&&$settings['maxWidth']<width)width=$settings['maxWidth'];$container.css('width',Math.floor(width));$content.css('width',Math.floor(width)-($content.outerWidth(true)-$content.width()));if($settings['preserveSlideshowDimensions']){var height=(width*$settings['dimensionHeight'])/$settings['dimensionWidth'];$container.css('height',Math.floor(height));$content.css('height',Math.floor(height)-($content.outerHeight(true)-$content.height()))}else{$container.css('height',Math.floor($settings['height']));$content.css('height',Math.floor($settings['height']))}$views.each(function(viewId,view){if($.inArray(viewId,$visibleViews)<0)$(view).css('top',$container.outerHeight(true))});$container.trigger('slideshowResize');if(recalculateViews||recalculateViews==undefined){recalculateVisibleViews()}}function recalculateVisibleViews(){$.each($visibleViews,function(key,viewId){recalculateView(viewId)})}function recalculateView(viewId){view=$($views[viewId]);if($content.width()==view.outerWidth(true))return;var slides=view.find('.slideshow_slide');if(slides.length<=0)return;var viewWidth=$content.width()-(view.outerWidth(true)-view.width());var viewHeight=$content.height()-(view.outerHeight(true)-view.height());var slideWidth=Math.floor(viewWidth/slides.length);var slideHeight=viewHeight;var spareWidth=viewWidth%slides.length;var totalWidth=0;$(slides[0]).css('margin-left',0);$(slides[slides.length-1]).css('margin-right',0);$.each(slides,function(slideId,slide){slide=$(slide);var outerWidth=slide.outerWidth(true)-slide.width();var outerHeight=slide.outerHeight(true)-slide.height();if(slideId==(slides.length-1))slide.width((slideWidth-outerWidth)+spareWidth);else slide.width(slideWidth-outerWidth);slide.height(slideHeight-outerHeight);if(slide.hasClass('slideshow_slide_text')){var anchor=slide.find('.slideshow_background_anchor');if(anchor.length<=0)return;var anchorWidth=slide.width()-(anchor.outerWidth(true)-anchor.width());var anchorHeight=slide.height()-(anchor.outerHeight(true)-anchor.height());anchor.css({'width':anchorWidth,'height':anchorHeight})}else if(slide.hasClass('slideshow_slide_image')){var image=slide.find('img');if(image.length<=0)return;var maxImageWidth=slide.width()-(image.outerWidth(true)-image.width());var maxImageHeight=slide.height()-(image.outerHeight(true)-image.height());if($settings['stretchImages']){image.css({width:maxImageWidth,height:maxImageHeight});image.attr({width:maxImageWidth,height:maxImageHeight})}else if(image.width()>0&&image.height()>0){var imageDimension=$viewData[viewId][slideId]['imageDimension'];if(imageDimension=='')imageDimension=$viewData[viewId][slideId]['imageDimension']=image.outerWidth(true)/image.outerHeight(true);var slideDimension=slide.width()/slide.height();if(imageDimension>slideDimension){image.css({'margin':'0px','width':maxImageWidth,'height':Math.floor(maxImageWidth/imageDimension)});image.attr({width:maxImageWidth,height:Math.floor(maxImageWidth/imageDimension)})}else if(imageDimension<slideDimension){image.css({'margin-left':'auto','margin-right':'auto','display':'block','width':Math.floor(maxImageHeight*imageDimension),'height':maxImageHeight});image.attr({width:Math.floor(maxImageHeight*imageDimension),height:maxImageHeight})}}}else if(slide.hasClass('slideshow_slide_video')){var videoElement=slide.find('iframe');if(videoElement.length>0){videoElement.attr({width:slide.width(),height:slide.height()})}else{var youtubePlayerReadyTimer='';youtubePlayerReadyTimer=setInterval(function(){if(!window.slideshow_jquery_image_gallery_youtube_api_ready)return;var element=slide.find('div');element.attr('id','slideshow_slide_video_'+Math.floor(Math.random()*1000000)+'_'+element.text());var player=new YT.Player(element.attr('id'),{width:$(slide).width(),height:$(slide).height(),videoId:element.text(),playerVars:{wmode:'opaque'},events:{'onReady':function(){},'onStateChange':function(event){$videoPlayers[element.attr('id')].state=event.data}}});playerElement=$('#'+element.attr('id'));playerElement.show();playerElement.attr('src',playerElement.attr('src')+'&wmode=opaque');$videoPlayers[element.attr('id')]={'player':player,'state':-1};clearInterval(youtubePlayerReadyTimer)},500)}}totalWidth+=slide.outerWidth(true)});view.css({'width':viewWidth,'height':viewHeight})}function videoIsPlaying(){var videoIsPlaying=false;for(var playerID in $videoPlayers){if(!$videoPlayers.hasOwnProperty(playerID))continue;var state=$videoPlayers[playerID].state;if(state==1||state==3){videoIsPlaying=true;break}}return videoIsPlaying}function pauseAllVideos(){for(var playerID in $videoPlayers){if(!$videoPlayers.hasOwnProperty(playerID))continue;var player=$videoPlayers[playerID].player;if(player!=null&&typeof player.pauseVideo==='function'){$videoPlayers[playerID].state=2;player.pauseVideo()}}}function activateDescriptions(){if(!$settings['showDescription'])return;$.each($slides.find('.slideshow_description'),function(key,description){description=$(description);description.show();if($settings['hideDescription'])description.css({'position':'absolute','top':$container.outerHeight(true)});else description.css({'position':'absolute','bottom':0})});if(!$settings['hideDescription'])return;$container.bind('slideshowResize',function(){$.each($container.find('.slideshow_description'),function(key,description){$(description).css('top',$container.outerHeight(true))})});$container.bind('slideshowAnimate',function(){if($visibleViews[1]==undefined)return;$.each($($views[$visibleViews[1]]).find('.slideshow_description'),function(key,description){$(description).css('top',$container.outerHeight(true))})});$slides.mouseenter(function(){var description=$(this).find('.slideshow_description');$descriptionTimer=setTimeout(function(){$descriptionTimer='';description.stop(true,false).animate({'top':($container.outerHeight(true)-description.outerHeight(true))},parseInt($settings['descriptionSpeed']*1000))},100)});$slides.mouseleave(function(){if($descriptionTimer!==''){clearInterval($descriptionTimer);$descriptionTimer=''}$(this).find('.slideshow_description').stop(true,false).animate({'top':$container.outerHeight(true)},parseInt($settings['descriptionSpeed']*1000))})}function activateNavigationButtons(){if(!$settings['controllable'])return;$nextButton.click(function(){if(!$navigationActive)return;pauseAllVideos();stop();animateTo(getNextViewId(),1);start()});$previousButton.click(function(){if(!$navigationActive)return;pauseAllVideos();stop();animateTo(getPreviousViewId(),-1);start()});if($settings['hideNavigationButtons']){$container.mouseenter(function(){$nextButton.stop(true,true).fadeIn(100)});$container.mouseleave(function(){$nextButton.stop(true,true).fadeOut(500)});$container.mouseenter(function(){$previousButton.stop(true,true).fadeIn(100)});$container.mouseleave(function(){$previousButton.stop(true,true).fadeOut(500)})}else{$nextButton.show();$previousButton.show()}}function activateControlPanel(){if(!$settings['controlPanel'])return;if($settings['play'])$togglePlayButton.attr('class','slideshow_pause');else $togglePlayButton.attr('class','slideshow_play');$togglePlayButton.click(function(){if($settings['play']){$settings['play']=false;$(this).attr('class','slideshow_play');stop()}else{$settings['play']=true;$(this).attr('class','slideshow_pause');start()}});if($settings['hideControlPanel']){$container.mouseenter(function(){$controlPanel.stop(true,true).fadeIn(100)});$container.mouseleave(function(){$controlPanel.stop(true,true).fadeOut(500)})}else{$controlPanel.show()}}function activatePagination(){if(!$settings['showPagination'])return;$pagination.find('.slideshow_pagination_center').html('<ul></ul>');var ul=$pagination.find('ul');ul.html('');$views.each(function(key,view){var currentView='';if(key==$currentViewId)currentView='slideshow_currentView';ul.append('<li class="slideshow_transparent '+currentView+'">'+'<span style="display: none;">'+key+'</span>'+'</li>')});$pagination.find('li').click(function(){if(!$navigationActive)return;var viewId=$(this).find('span').text();if(viewId==''||viewId==undefined)return;pauseAllVideos();stop();animateTo(parseInt(viewId),0);start()});$container.bind('slideshowAnimate',function(){var bullets=$pagination.find('li');bullets.each(function(key,bullet){$(bullet).removeClass('slideshow_currentView')});$(bullets[$currentViewId]).addClass('slideshow_currentView')});if($settings['hidePagination']){$container.mouseenter(function(){$pagination.stop(true,true).fadeIn(100)});$container.mouseleave(function(){$pagination.stop(true,true).fadeOut(500)})}else{$pagination.show()}}function activatePauseOnHover(){if(!$settings['pauseOnHover'])return;$container.mouseenter(function(){clearTimeout($mouseEnterTimer);$mouseEnterTimer=setTimeout(function(){stop()},500)});$container.mouseleave(function(){clearTimeout($mouseEnterTimer);if($interval===false)start()})}function getNextViewId(){if($settings['random']){var oldViewId=viewId;viewId=Math.floor(Math.random()*$views.length);if(viewId!=oldViewId)return viewId}var viewId=$currentViewId;if(viewId==undefined)return 0;if(viewId>=$views.length-1){if($settings['loop'])return viewId=0;else return $currentViewId}return viewId+=1}function getPreviousViewId(){var viewId=$currentViewId;if(viewId==undefined)viewId=0;if($settings['random']){var oldViewId=viewId;viewId=Math.floor(Math.random()*$views.length);if(viewId!=oldViewId)return viewId}if(viewId<=0){if($settings['loop'])return viewId=$views.length-1;else return $currentViewId}return viewId-=1}function getID(){var ID=$container.data('sessionId');if(isNaN(ID))ID=$container.attr('data-session-id');return ID}};window.slideshow_jquery_image_gallery_registered_slideshows=[];jQuery(document).ready(function(){jQuery.each(jQuery('.slideshow_container'),function(key,slideshow){jQuery(slideshow).slideshow_jquery_image_gallery_script()});slideshow_jquery_image_gallery_load_youtube_api()});jQuery(window).load(function(){jQuery.each(jQuery('.slideshow_container'),function(key,slideshow){var $slideshow=jQuery(slideshow),ID=$slideshow.data('sessionId');if(isNaN(ID))ID=$slideshow.attr('data-session-id');if(jQuery.inArray(ID,window.slideshow_jquery_image_gallery_registered_slideshows)<0)$slideshow.slideshow_jquery_image_gallery_script()});slideshow_jquery_image_gallery_load_youtube_api()});function slideshow_jquery_image_gallery_load_youtube_api(){var tag=document.createElement('script');tag.src="//www.youtube.com/iframe_api";var firstScriptTag=document.getElementsByTagName('script')[0];firstScriptTag.parentNode.insertBefore(tag,firstScriptTag)}window.slideshow_jquery_image_gallery_youtube_api_ready=false;function onYouTubeIframeAPIReady(){window.slideshow_jquery_image_gallery_youtube_api_ready=true}
1
+ jQuery.fn.slideshow_jquery_image_gallery_script=function(){var $=jQuery;var $container=$(this),$content=$container.find('.slideshow_content'),$views=$container.find('.slideshow_view'),$slides=$container.find('.slideshow_slide'),$controlPanel=$container.find('.slideshow_controlPanel'),$togglePlayButton=$controlPanel.find('.slideshow_togglePlay'),$nextButton=$container.find('.slideshow_next'),$previousButton=$container.find('.slideshow_previous'),$pagination=$container.find('.slideshow_pagination');var $ID=getID();if($ID===undefined||isNaN($ID)){return}var $settings=window['SlideshowPluginSettings_'+$ID];$.each($settings,function(setting,value){if(value=='true')$settings[setting]=true;else if(value=='false')$settings[setting]=false});var $parentElement=$container.parent(),$viewData=[],$navigationActive=true,$currentViewId=getNextViewId(),$currentWidth=0,$visibleViews=[$currentViewId],$videoPlayers=[],$interval='',$mouseEnterTimer='',$invisibilityTimer='',$descriptionTimer='';init();function init(){window.slideshow_jquery_image_gallery_registered_slideshows.push($ID);recalculate(false);$.each($views,function(viewId,view){recalculateView(view);if(viewId!=$visibleViews[0])$(view).css('top',$container.outerHeight(true));$viewData[viewId]=[];$.each($(view).find('.slideshow_slide'),function(slideId,slide){$viewData[viewId][slideId]={'imageDimension':''}})});$content.show();$(window).load(function(){recalculateVisibleViews()});if($settings['enableResponsiveness']){$(window).resize(function(){recalculate()})}if(parseFloat($settings['intervalSpeed'])<parseFloat($settings['slideSpeed'])+0.1)$settings['intervalSpeed']=parseFloat($settings['slideSpeed'])+0.1;activateDescriptions();activateControlPanel();activateNavigationButtons();activatePagination();activatePauseOnHover();start()}function start(){if(!$settings['play'])return;$interval=setInterval(function(){animateTo(getNextViewId(),1)},$settings['intervalSpeed']*1000)}function stop(){clearInterval($interval);$interval=false}function animateTo(viewId,direction){if(videoIsPlaying()||viewId<0||viewId>=$views.length||viewId==$currentViewId)return;$navigationActive=false;if(direction==0||direction==undefined){if(viewId<$currentViewId)direction=-1;else direction=1}$visibleViews=[$currentViewId,viewId];var animation=$settings['animation'];var animations=['slide','slideRight','slideUp','slideDown','fade','directFade'];if(animation=='random')animation=animations[Math.floor(Math.random()*animations.length)];var animationOpposites={'slide':'slideRight','slideRight':'slide','slideUp':'slideDown','slideDown':'slideUp','fade':'fade','directFade':'directFade'};if(direction<0)animation=animationOpposites[animation];var currentView=$($views[$currentViewId]);var nextView=$($views[viewId]);currentView.stop(true,true);nextView.stop(true,true);recalculateVisibleViews();$currentViewId=viewId;$container.trigger('slideshowAnimate');switch(animation){case'slide':recalculateVisibleViews();nextView.css({top:0,left:$content.width()});currentView.animate({left:-currentView.outerWidth(true)},$settings['slideSpeed']*1000);nextView.animate({left:0},$settings['slideSpeed']*1000);setTimeout(function(){currentView.stop(true,true).css('top',$container.outerHeight(true))},$settings['slideSpeed']*1000);break;case'slideRight':nextView.css({top:0,left:-$content.width()});currentView.animate({left:currentView.outerWidth(true)},$settings['slideSpeed']*1000);nextView.animate({left:0},$settings['slideSpeed']*1000);setTimeout(function(){currentView.stop(true,true).css('top',$container.outerHeight(true))},$settings['slideSpeed']*1000);break;case'slideUp':nextView.css({top:$content.height(),left:0});currentView.animate({top:-currentView.outerHeight(true)},$settings['slideSpeed']*1000);nextView.animate({top:0},$settings['slideSpeed']*1000);setTimeout(function(){currentView.stop(true,true).css('top',$container.outerHeight(true))},$settings['slideSpeed']*1000);break;case'slideDown':nextView.css({top:-$content.height(),left:0});currentView.animate({top:currentView.outerHeight(true)},$settings['slideSpeed']*1000);nextView.animate({top:0},$settings['slideSpeed']*1000);setTimeout(function(){currentView.stop(true,true).css('top',$container.outerHeight(true))},$settings['slideSpeed']*1000);break;case'fade':nextView.css({top:0,left:0,display:'none'});currentView.fadeOut(($settings['slideSpeed']*1000)/2);setTimeout(function(){nextView.fadeIn(($settings['slideSpeed']*1000)/2);currentView.stop(true,true).css({top:$container.outerHeight(true),display:'block'})},($settings['slideSpeed']*1000)/2);break;case'directFade':nextView.css({top:0,left:0,'z-index':0,display:'none'});currentView.css({'z-index':1});nextView.fadeIn($settings['slideSpeed']*1000);currentView.fadeOut($settings['slideSpeed']*1000);setTimeout(function(){nextView.stop(true,true).css({'z-index':'auto'});currentView.stop(true,true).css({top:$container.outerHeight(true),display:'block','z-index':'auto'})},$settings['slideSpeed']*1000);break}setTimeout(function(){$visibleViews=[viewId]},$settings['slideSpeed']*1000);setTimeout(function(){$navigationActive=true},$settings['slideSpeed']*1000)}function recalculate(recalculateViews){if(!$container.is(':visible')){$invisibilityTimer=setInterval(function(){if($container.is(':visible')){recalculate();clearInterval($invisibilityTimer);$invisibilityTimer=''}},500);return}var parentElement=$parentElement;for(var i=0;parentElement.width()<=0;i++){parentElement=parentElement.parent();if(i>50)break}if($currentWidth==parentElement.width())return;$currentWidth=parentElement.width();var width=parentElement.width()-($container.outerWidth()-$container.width());if(parseInt($settings['maxWidth'],10)>0&&parseInt($settings['maxWidth'],10)<width)width=parseInt($settings['maxWidth'],10);$container.css('width',Math.floor(width));$content.css('width',Math.floor(width)-($content.outerWidth(true)-$content.width()));if($settings['preserveSlideshowDimensions']){var height=(width*$settings['dimensionHeight'])/$settings['dimensionWidth'];$container.css('height',Math.floor(height));$content.css('height',Math.floor(height)-($content.outerHeight(true)-$content.height()))}else{$container.css('height',Math.floor($settings['height']));$content.css('height',Math.floor($settings['height']))}$views.each(function(viewId,view){if($.inArray(viewId,$visibleViews)<0)$(view).css('top',$container.outerHeight(true))});$container.trigger('slideshowResize');if(recalculateViews||recalculateViews==undefined){recalculateVisibleViews()}}function recalculateVisibleViews(){$.each($visibleViews,function(key,viewId){recalculateView(viewId)})}function recalculateView(viewId){view=$($views[viewId]);if($content.width()==view.outerWidth(true))return;var slides=view.find('.slideshow_slide');if(slides.length<=0)return;var viewWidth=$content.width()-(view.outerWidth(true)-view.width());var viewHeight=$content.height()-(view.outerHeight(true)-view.height());var slideWidth=Math.floor(viewWidth/slides.length);var slideHeight=viewHeight;var spareWidth=viewWidth%slides.length;var totalWidth=0;$(slides[0]).css('margin-left',0);$(slides[slides.length-1]).css('margin-right',0);$.each(slides,function(slideId,slide){slide=$(slide);var outerWidth=slide.outerWidth(true)-slide.width();var outerHeight=slide.outerHeight(true)-slide.height();if(slideId==(slides.length-1))slide.width((slideWidth-outerWidth)+spareWidth);else slide.width(slideWidth-outerWidth);slide.height(slideHeight-outerHeight);if(slide.hasClass('slideshow_slide_text')){var anchor=slide.find('.slideshow_background_anchor');if(anchor.length<=0)return;var anchorWidth=slide.width()-(anchor.outerWidth(true)-anchor.width());var anchorHeight=slide.height()-(anchor.outerHeight(true)-anchor.height());anchor.css({'width':anchorWidth,'height':anchorHeight})}else if(slide.hasClass('slideshow_slide_image')){var image=slide.find('img');if(image.length<=0)return;var maxImageWidth=slide.width()-(image.outerWidth(true)-image.width());var maxImageHeight=slide.height()-(image.outerHeight(true)-image.height());if($settings['stretchImages']){image.css({width:maxImageWidth,height:maxImageHeight});image.attr({width:maxImageWidth,height:maxImageHeight})}else if(image.width()>0&&image.height()>0){var imageDimension=$viewData[viewId][slideId]['imageDimension'];if(imageDimension=='')imageDimension=$viewData[viewId][slideId]['imageDimension']=image.outerWidth(true)/image.outerHeight(true);var slideDimension=slide.width()/slide.height();if(imageDimension>slideDimension){image.css({'margin':'0px','width':maxImageWidth,'height':Math.floor(maxImageWidth/imageDimension)});image.attr({width:maxImageWidth,height:Math.floor(maxImageWidth/imageDimension)})}else if(imageDimension<slideDimension){image.css({'margin-left':'auto','margin-right':'auto','display':'block','width':Math.floor(maxImageHeight*imageDimension),'height':maxImageHeight});image.attr({width:Math.floor(maxImageHeight*imageDimension),height:maxImageHeight})}}}else if(slide.hasClass('slideshow_slide_video')){var videoElement=slide.find('iframe');if(videoElement.length>0){videoElement.attr({width:slide.width(),height:slide.height()})}else{var youtubePlayerReadyTimer='';youtubePlayerReadyTimer=setInterval(function(){if(!window.slideshow_jquery_image_gallery_youtube_api_ready)return;var element=slide.find('div');element.attr('id','slideshow_slide_video_'+Math.floor(Math.random()*1000000)+'_'+element.text());var player=new YT.Player(element.attr('id'),{width:$(slide).width(),height:$(slide).height(),videoId:element.text(),playerVars:{wmode:'opaque'},events:{'onReady':function(){},'onStateChange':function(event){$videoPlayers[element.attr('id')].state=event.data}}});playerElement=$('#'+element.attr('id'));playerElement.show();playerElement.attr('src',playerElement.attr('src')+'&wmode=opaque');$videoPlayers[element.attr('id')]={'player':player,'state':-1};clearInterval(youtubePlayerReadyTimer)},500)}}totalWidth+=slide.outerWidth(true)});view.css({'width':viewWidth,'height':viewHeight})}function videoIsPlaying(){var videoIsPlaying=false;for(var playerID in $videoPlayers){if(!$videoPlayers.hasOwnProperty(playerID))continue;var state=$videoPlayers[playerID].state;if(state==1||state==3){videoIsPlaying=true;break}}return videoIsPlaying}function pauseAllVideos(){for(var playerID in $videoPlayers){if(!$videoPlayers.hasOwnProperty(playerID))continue;var player=$videoPlayers[playerID].player;if(player!=null&&typeof player.pauseVideo==='function'){$videoPlayers[playerID].state=2;player.pauseVideo()}}}function activateDescriptions(){if(!$settings['showDescription'])return;$.each($slides.find('.slideshow_description'),function(key,description){description=$(description);description.show();if($settings['hideDescription'])description.css({'position':'absolute','top':$container.outerHeight(true)});else description.css({'position':'absolute','bottom':0})});if(!$settings['hideDescription'])return;$container.bind('slideshowResize',function(){$.each($container.find('.slideshow_description'),function(key,description){$(description).css('top',$container.outerHeight(true))})});$container.bind('slideshowAnimate',function(){if($visibleViews[1]==undefined)return;$.each($($views[$visibleViews[1]]).find('.slideshow_description'),function(key,description){$(description).css('top',$container.outerHeight(true))})});$slides.mouseenter(function(){var description=$(this).find('.slideshow_description');$descriptionTimer=setTimeout(function(){$descriptionTimer='';description.stop(true,false).animate({'top':($container.outerHeight(true)-description.outerHeight(true))},parseInt($settings['descriptionSpeed']*1000))},100)});$slides.mouseleave(function(){if($descriptionTimer!==''){clearInterval($descriptionTimer);$descriptionTimer=''}$(this).find('.slideshow_description').stop(true,false).animate({'top':$container.outerHeight(true)},parseInt($settings['descriptionSpeed']*1000))})}function activateNavigationButtons(){if(!$settings['controllable'])return;$nextButton.click(function(){if(!$navigationActive)return;pauseAllVideos();stop();animateTo(getNextViewId(),1);start()});$previousButton.click(function(){if(!$navigationActive)return;pauseAllVideos();stop();animateTo(getPreviousViewId(),-1);start()});if($settings['hideNavigationButtons']){$container.mouseenter(function(){$nextButton.stop(true,true).fadeIn(100)});$container.mouseleave(function(){$nextButton.stop(true,true).fadeOut(500)});$container.mouseenter(function(){$previousButton.stop(true,true).fadeIn(100)});$container.mouseleave(function(){$previousButton.stop(true,true).fadeOut(500)})}else{$nextButton.show();$previousButton.show()}}function activateControlPanel(){if(!$settings['controlPanel'])return;if($settings['play'])$togglePlayButton.attr('class','slideshow_pause');else $togglePlayButton.attr('class','slideshow_play');$togglePlayButton.click(function(){if($settings['play']){$settings['play']=false;$(this).attr('class','slideshow_play');stop()}else{$settings['play']=true;$(this).attr('class','slideshow_pause');start()}});if($settings['hideControlPanel']){$container.mouseenter(function(){$controlPanel.stop(true,true).fadeIn(100)});$container.mouseleave(function(){$controlPanel.stop(true,true).fadeOut(500)})}else{$controlPanel.show()}}function activatePagination(){if(!$settings['showPagination'])return;$pagination.find('.slideshow_pagination_center').html('<ul></ul>');var ul=$pagination.find('ul');ul.html('');$views.each(function(key,view){var currentView='';if(key==$currentViewId)currentView='slideshow_currentView';ul.append('<li class="slideshow_transparent '+currentView+'">'+'<span style="display: none;">'+key+'</span>'+'</li>')});$pagination.find('li').click(function(){if(!$navigationActive)return;var viewId=$(this).find('span').text();if(viewId==''||viewId==undefined)return;pauseAllVideos();stop();animateTo(parseInt(viewId),0);start()});$container.bind('slideshowAnimate',function(){var bullets=$pagination.find('li');bullets.each(function(key,bullet){$(bullet).removeClass('slideshow_currentView')});$(bullets[$currentViewId]).addClass('slideshow_currentView')});if($settings['hidePagination']){$container.mouseenter(function(){$pagination.stop(true,true).fadeIn(100)});$container.mouseleave(function(){$pagination.stop(true,true).fadeOut(500)})}else{$pagination.show()}}function activatePauseOnHover(){if(!$settings['pauseOnHover'])return;$container.mouseenter(function(){clearTimeout($mouseEnterTimer);$mouseEnterTimer=setTimeout(function(){stop()},500)});$container.mouseleave(function(){clearTimeout($mouseEnterTimer);if($interval===false)start()})}function getNextViewId(){if($settings['random']){var oldViewId=viewId;viewId=Math.floor(Math.random()*$views.length);if(viewId!=oldViewId)return viewId}var viewId=$currentViewId;if(viewId==undefined)return 0;if(viewId>=$views.length-1){if($settings['loop'])return viewId=0;else return $currentViewId}return viewId+=1}function getPreviousViewId(){var viewId=$currentViewId;if(viewId==undefined)viewId=0;if($settings['random']){var oldViewId=viewId;viewId=Math.floor(Math.random()*$views.length);if(viewId!=oldViewId)return viewId}if(viewId<=0){if($settings['loop'])return viewId=$views.length-1;else return $currentViewId}return viewId-=1}function getID(){var ID=$container.data('sessionId');if(isNaN(ID)||ID===null||ID===undefined)ID=$container.attr('data-session-id');return ID}};window.slideshow_jquery_image_gallery_registered_slideshows=[];jQuery(document).ready(function(){jQuery.each(jQuery('.slideshow_container'),function(key,slideshow){jQuery(slideshow).slideshow_jquery_image_gallery_script()});slideshow_jquery_image_gallery_load_youtube_api()});jQuery(window).load(function(){jQuery.each(jQuery('.slideshow_container'),function(key,slideshow){var $slideshow=jQuery(slideshow),ID=$slideshow.data('sessionId');if(isNaN(ID)||ID===null||ID===undefined)ID=$slideshow.attr('data-session-id');if(jQuery.inArray(ID,window.slideshow_jquery_image_gallery_registered_slideshows)<0)$slideshow.slideshow_jquery_image_gallery_script()});slideshow_jquery_image_gallery_load_youtube_api()});function slideshow_jquery_image_gallery_load_youtube_api(){var tag=document.createElement('script');tag.src="//www.youtube.com/iframe_api";var firstScriptTag=document.getElementsByTagName('script')[0];firstScriptTag.parentNode.insertBefore(tag,firstScriptTag)}window.slideshow_jquery_image_gallery_youtube_api_ready=false;function onYouTubeIframeAPIReady(){window.slideshow_jquery_image_gallery_youtube_api_ready=true}
js/SlideshowPluginSlideInserter/slide-inserter.js CHANGED
@@ -154,7 +154,7 @@ jQuery(document).ready(function(){
154
 
155
  var attachmentIDs = [];
156
  jQuery.each(resultsTable.find('.result-table-row'), function(key, tr){
157
- attachmentIDs.push(jQuery(tr).data('attachmentId'));
158
  });
159
 
160
  jQuery.post(
@@ -173,7 +173,7 @@ jQuery(document).ready(function(){
173
  resultsTable.find('.insert-attachment').unbind('click').click(function(){
174
  var tr = jQuery(this).closest('tr');
175
  slideshowSlideInserterInsertImageSlide(
176
- jQuery(tr).data('attachmentId'),
177
  jQuery(tr).find('.title').text(),
178
  jQuery(tr).find('.description').text(),
179
  jQuery(tr).find('.image img').attr('src')
@@ -185,7 +185,7 @@ jQuery(document).ready(function(){
185
  if(loadMoreResultsButton){
186
  loadMoreResultsButton.click(function(){
187
  // Get offset
188
- var previousOffset = jQuery(this).data('offset');
189
 
190
  // Remove button row
191
  jQuery(this).closest('tr').hide();
154
 
155
  var attachmentIDs = [];
156
  jQuery.each(resultsTable.find('.result-table-row'), function(key, tr){
157
+ attachmentIDs.push(jQuery(tr).attr('data-attachment-id'));
158
  });
159
 
160
  jQuery.post(
173
  resultsTable.find('.insert-attachment').unbind('click').click(function(){
174
  var tr = jQuery(this).closest('tr');
175
  slideshowSlideInserterInsertImageSlide(
176
+ jQuery(tr).attr('data-attachment-id'),
177
  jQuery(tr).find('.title').text(),
178
  jQuery(tr).find('.description').text(),
179
  jQuery(tr).find('.image img').attr('src')
185
  if(loadMoreResultsButton){
186
  loadMoreResultsButton.click(function(){
187
  // Get offset
188
+ var previousOffset = jQuery(this).attr('data-offset');
189
 
190
  // Remove button row
191
  jQuery(this).closest('tr').hide();
languages/slideshow-plugin-ru_RU.mo CHANGED
Binary file
languages/slideshow-plugin-ru_RU.po CHANGED
@@ -1,768 +1,782 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Slideshow Plugin\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-02-02 01:48+0100\n"
6
- "PO-Revision-Date: 2013-02-02 01:48+0100\n"
7
- "Last-Translator: Stefan Boonstra <stefanboonstra@hotmail.com>\n"
8
- "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
- "Language: ru_UA\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.4\n"
16
- "X-Poedit-SearchPath-0: .\n"
17
-
18
- #: classes/SlideshowPluginGeneralSettings.php:64
19
- #: classes/SlideshowPluginGeneralSettings.php:65
20
- msgid "General Settings"
21
- msgstr ""
22
-
23
- #: classes/SlideshowPluginGeneralSettings.php:142
24
- msgid "New"
25
- msgstr ""
26
-
27
- #: classes/SlideshowPluginGeneralSettings.php:143
28
- msgid "Are you sure you want to delete this custom style?"
29
- msgstr ""
30
-
31
- #: classes/SlideshowPluginGeneralSettings.php:162
32
- #: classes/SlideshowPluginInstaller.php:388
33
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:6
34
- msgid "Light"
35
- msgstr "Светлый"
36
-
37
- #: classes/SlideshowPluginGeneralSettings.php:163
38
- #: classes/SlideshowPluginInstaller.php:388
39
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:7
40
- msgid "Dark"
41
- msgstr "Тёмный"
42
-
43
- #: classes/SlideshowPluginGeneralSettings.php:267
44
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:49
45
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:131
46
- msgid "Untitled"
47
- msgstr ""
48
-
49
- #: classes/SlideshowPluginInstaller.php:385
50
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:374
51
- msgid "Yes"
52
- msgstr "Да"
53
-
54
- #: classes/SlideshowPluginInstaller.php:386
55
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:375
56
- msgid "No"
57
- msgstr "Нет"
58
-
59
- #: classes/SlideshowPluginInstaller.php:388
60
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:473
61
- msgid "The style used for this slideshow"
62
- msgstr "Стиль, используемый в этом слайдшоу"
63
-
64
- #: classes/SlideshowPluginInstaller.php:388
65
- msgid "Custom"
66
- msgstr "Собственный"
67
-
68
- #: classes/SlideshowPluginInstaller.php:389
69
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:114
70
- msgid "Custom style editor"
71
- msgstr "Редактор собственного стиля"
72
-
73
- #: classes/SlideshowPluginInstaller.php:390
74
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
75
- msgid "Animation used for transition between slides"
76
- msgstr "Анимация, используемая для перехода между слайдами"
77
-
78
- #: classes/SlideshowPluginInstaller.php:390
79
- msgid "Slide"
80
- msgstr "Слайд"
81
-
82
- #: classes/SlideshowPluginInstaller.php:390
83
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
84
- msgid "Fade"
85
- msgstr "Затухание"
86
-
87
- #: classes/SlideshowPluginInstaller.php:390
88
- #: classes/SlideshowPluginInstaller.php:391
89
- #: classes/SlideshowPluginInstaller.php:392
90
- #: classes/SlideshowPluginInstaller.php:393
91
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
92
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
93
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:417
94
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:418
95
- msgid "Animation"
96
- msgstr "Анимационные"
97
-
98
- #: classes/SlideshowPluginInstaller.php:391
99
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
100
- msgid "Number of seconds the slide takes to slide in"
101
- msgstr "Число секунд, которое занимает появление слайда"
102
-
103
- #: classes/SlideshowPluginInstaller.php:392
104
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:417
105
- msgid "Number of seconds the description takes to slide in"
106
- msgstr "Число секунд, которое занимает появление текста"
107
-
108
- #: classes/SlideshowPluginInstaller.php:393
109
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:418
110
- msgid "Seconds between changing slides"
111
- msgstr "Секунд между сменой слайдов"
112
-
113
- #: classes/SlideshowPluginInstaller.php:394
114
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
115
- msgid "Number of slides to fit into one slide"
116
- msgstr "Число слайдов, размещённых в одном слайде"
117
-
118
- #: classes/SlideshowPluginInstaller.php:394
119
- #: classes/SlideshowPluginInstaller.php:395
120
- #: classes/SlideshowPluginInstaller.php:396
121
- #: classes/SlideshowPluginInstaller.php:397
122
- #: classes/SlideshowPluginInstaller.php:398
123
- #: classes/SlideshowPluginInstaller.php:399
124
- #: classes/SlideshowPluginInstaller.php:400
125
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
126
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:420
127
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
128
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:422
129
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
130
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:424
131
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
132
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:426
133
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:427
134
- msgid "Display"
135
- msgstr "Визуальные"
136
-
137
- #: classes/SlideshowPluginInstaller.php:395
138
- msgid "Width of the slideshow, set to parent&#39;s width on 0"
139
- msgstr ""
140
- "Ширина слайдшоу. Установите в 0 для определения ширины по родительскому "
141
- "элементу"
142
-
143
- #: classes/SlideshowPluginInstaller.php:396
144
- msgid "Height of the slideshow"
145
- msgstr "Высота слайдшоу"
146
-
147
- #: classes/SlideshowPluginInstaller.php:397
148
- msgid "Height of the description boxes"
149
- msgstr "Высота блока описания"
150
-
151
- #: classes/SlideshowPluginInstaller.php:398
152
- msgid "Fit image into slide (stretching it)"
153
- msgstr "Уместить изображение в слайд (растянуть его)"
154
-
155
- #: classes/SlideshowPluginInstaller.php:399
156
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:426
157
- msgid "Show title and description"
158
- msgstr "Показать заголовок и описание"
159
-
160
- #: classes/SlideshowPluginInstaller.php:400
161
- msgid "Hide description box, it will pop up when a mouse hovers over the slide"
162
- msgstr ""
163
- "Скрыть блок описания. Он будет появляться при наведении указателя мыши "
164
- "поверх слайда"
165
-
166
- #: classes/SlideshowPluginInstaller.php:401
167
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
168
- msgid "Automatically slide to the next slide"
169
- msgstr "Автоматический переход к следующему слайду"
170
-
171
- #: classes/SlideshowPluginInstaller.php:401
172
- #: classes/SlideshowPluginInstaller.php:402
173
- #: classes/SlideshowPluginInstaller.php:403
174
- #: classes/SlideshowPluginInstaller.php:404
175
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
176
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:429
177
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:430
178
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:431
179
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:432
180
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:433
181
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:434
182
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:435
183
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:436
184
- msgid "Control"
185
- msgstr "Управляющие"
186
-
187
- #: classes/SlideshowPluginInstaller.php:402
188
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:429
189
- msgid "Return to the beginning of the slideshow after last slide"
190
- msgstr "Вернуться в начало слайдшоу после последнего слайда"
191
-
192
- #: classes/SlideshowPluginInstaller.php:403
193
- msgid "Activate buttons (so the user can scroll through the slides)"
194
- msgstr "Активировать кнопки (пользователь сможет пролистывать слайды)"
195
-
196
- #: classes/SlideshowPluginInstaller.php:404
197
- msgid "Show control panel (play and pause button)"
198
- msgstr "Отображать панель управления (кнопка воспроизведения и останова)"
199
-
200
- #: classes/SlideshowPluginPostType.php:39
201
- msgid "Slideshows"
202
- msgstr "Слайдшоу"
203
-
204
- #: classes/SlideshowPluginPostType.php:40
205
- #: views/SlideshowPluginWidget/form.php:7
206
- msgid "Slideshow"
207
- msgstr "Слайдшоу"
208
-
209
- #: classes/SlideshowPluginPostType.php:41
210
- msgid "Add New Slideshow"
211
- msgstr "Добавить новое слайдшоу"
212
-
213
- #: classes/SlideshowPluginPostType.php:42
214
- msgid "Edit slideshow"
215
- msgstr "Редактировать слайдшоу"
216
-
217
- #: classes/SlideshowPluginPostType.php:43
218
- msgid "New slideshow"
219
- msgstr "Новое слайдшоу"
220
-
221
- #: classes/SlideshowPluginPostType.php:44
222
- msgid "View slideshow"
223
- msgstr "Просмотр слайдшоу"
224
-
225
- #: classes/SlideshowPluginPostType.php:45
226
- msgid "Search slideshows"
227
- msgstr "Поиск слайдшоу"
228
-
229
- #: classes/SlideshowPluginPostType.php:46
230
- #: classes/SlideshowPluginPostType.php:47
231
- msgid "No slideshows found"
232
- msgstr "Ни одного слайдшоу не найдено"
233
-
234
- #: classes/SlideshowPluginPostType.php:167
235
- msgid "Information"
236
- msgstr "Информация"
237
-
238
- #: classes/SlideshowPluginPostType.php:176
239
- msgid "Slides List"
240
- msgstr "Список слайдов"
241
-
242
- #: classes/SlideshowPluginPostType.php:185
243
- msgid "Slideshow Style"
244
- msgstr "Стиль слайдшоу"
245
-
246
- #: classes/SlideshowPluginPostType.php:194
247
- msgid "Slideshow Settings"
248
- msgstr "Настройки слайдшоу"
249
-
250
- #: classes/SlideshowPluginPostType.php:244
251
- #: classes/SlideshowPluginSlideInserter.php:156
252
- #: views/SlideshowPluginPostType/slides.php:2
253
- msgid "Insert"
254
- msgstr "Вставить"
255
-
256
- #: classes/SlideshowPluginPostType.php:252
257
- #: views/SlideshowPluginPostType/slides.php:9
258
- msgid "Add slides to this slideshow by using one of the buttons above."
259
- msgstr "Добавить слайды к слайдшоу с помощью одной из кнопок ниже"
260
-
261
- #: classes/SlideshowPluginShortcode.php:132
262
- msgid "No slideshow selected."
263
- msgstr ""
264
-
265
- #: classes/SlideshowPluginSlideInserter.php:165
266
- msgid "Load more results"
267
- msgstr "Загрузить больше результатов"
268
-
269
- #: classes/SlideshowPluginSlideInserter.php:174
270
- msgid "No images were found, click here to upload some."
271
- msgstr "Не найдено изображений, щёлкните здесь для загрузки"
272
-
273
- #: classes/SlideshowPluginSlideInserter.php:243
274
- msgid "Are you sure you want to delete this slide?"
275
- msgstr ""
276
-
277
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
278
- msgid "Slide Left"
279
- msgstr ""
280
-
281
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
282
- msgid "Slide Right"
283
- msgstr ""
284
-
285
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
286
- msgid "Slide Up"
287
- msgstr ""
288
-
289
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
290
- msgid "Slide Down"
291
- msgstr ""
292
-
293
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
294
- msgid "Direct Fade"
295
- msgstr ""
296
-
297
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
298
- msgid "Random Animation"
299
- msgstr ""
300
-
301
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:420
302
- msgid "Maximum width. When maximum width is 0, maximum width is ignored"
303
- msgstr ""
304
-
305
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
306
- msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
307
- msgstr ""
308
-
309
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
310
- msgid "More info"
311
- msgstr ""
312
-
313
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
314
- #, php-format
315
- msgid ""
316
- "Proportional relationship%s between slideshow's width and height (width:"
317
- "height)"
318
- msgstr ""
319
-
320
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:422
321
- msgid "Slideshow's height"
322
- msgstr ""
323
-
324
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
325
- msgid "Fit image into slide (Stretch image)"
326
- msgstr ""
327
-
328
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:424
329
- msgid "Shrink slideshow's height when width shrinks"
330
- msgstr ""
331
-
332
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
333
- msgid ""
334
- "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
335
- msgstr ""
336
-
337
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:427
338
- msgid "Hide description box, pop up when mouse hovers over"
339
- msgstr ""
340
-
341
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:430
342
- msgid "Pause slideshow when mouse hovers over"
343
- msgstr ""
344
-
345
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:431
346
- msgid "Activate navigation buttons"
347
- msgstr ""
348
-
349
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:432
350
- msgid "Hide navigation buttons, show when mouse hovers over"
351
- msgstr ""
352
-
353
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:433
354
- msgid "Activate pagination"
355
- msgstr ""
356
-
357
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:434
358
- msgid "Hide pagination, show when mouse hovers over"
359
- msgstr ""
360
-
361
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:435
362
- msgid "Activate control panel (play and pause button)"
363
- msgstr ""
364
-
365
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:436
366
- msgid "Hide control panel, show when mouse hovers over"
367
- msgstr ""
368
-
369
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:437
370
- msgid "Randomize slides"
371
- msgstr "Слайды в случайном порядке"
372
-
373
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:437
374
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:438
375
- msgid "Miscellaneous"
376
- msgstr "Разные"
377
-
378
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:438
379
- #, php-format
380
- msgid "Avoid content filter (disable if '%s' is shown)"
381
- msgstr "Избегать фильтра содержимого (запрещено, если отображается '%s' )"
382
-
383
- #: classes/SlideshowPluginWidget.php:23
384
- msgid "Enables you to show your slideshows in the widget area of your website."
385
- msgstr "Позволяет отобразить ваше слайдшоу в области виджетов вашего сайта"
386
-
387
- #: classes/SlideshowPluginWidget.php:29
388
- msgid "Slideshow Widget"
389
- msgstr "Виджет слайдшоу"
390
-
391
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:38
392
- msgid "Default stylesheets"
393
- msgstr ""
394
-
395
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:52
396
- msgid "Create a new custom style from this style"
397
- msgstr ""
398
-
399
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:54
400
- msgid "Customize"
401
- msgstr ""
402
-
403
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:68
404
- msgid "Custom stylesheets"
405
- msgstr ""
406
-
407
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:81
408
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:160
409
- msgid "Edit this style"
410
- msgstr ""
411
-
412
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:83
413
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:162
414
- #: views/SlideshowPluginPostType/slides.php:137
415
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:46
416
- msgid "Edit"
417
- msgstr "Редактировать"
418
-
419
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:90
420
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:169
421
- msgid "Delete this style"
422
- msgstr ""
423
-
424
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:92
425
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:171
426
- msgid "Delete"
427
- msgstr ""
428
-
429
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:102
430
- msgid "Click 'Customize' to create a new custom stylesheet."
431
- msgstr ""
432
-
433
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:118
434
- msgid "Select a stylesheet from the left to start customizing it."
435
- msgstr ""
436
-
437
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:127
438
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:180
439
- #: views/SlideshowPluginPostType/slides.php:58
440
- #: views/SlideshowPluginPostType/slides.php:143
441
- #: views/SlideshowPluginPostType/slides.php:195
442
- #: views/SlideshowPluginPostType/slides.php:263
443
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:54
444
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:12
445
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:92
446
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:29
447
- #: views/SlideshowPluginWidget/form.php:2
448
- msgid "Title"
449
- msgstr "Заголовок"
450
-
451
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:136
452
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:188
453
- msgid "Style"
454
- msgstr "Style"
455
-
456
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:11
457
- msgid "Note"
458
- msgstr ""
459
-
460
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:18
461
- #, php-format
462
- msgid ""
463
- "The settings set on this page apply only to newly created slideshows and "
464
- "therefore do not alter any existing ones. To adapt a slideshow's settings, "
465
- "%sclick here.%s"
466
- msgstr ""
467
-
468
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:30
469
- #: views/SlideshowPluginGeneralSettings/general-settings.php:16
470
- msgid "Default Slideshow Settings"
471
- msgstr ""
472
-
473
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:43
474
- #: views/SlideshowPluginPostType/settings.php:12
475
- msgid "settings"
476
- msgstr "настройки"
477
-
478
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:80
479
- msgid "Default Slideshow Stylesheet"
480
- msgstr ""
481
-
482
- #: views/SlideshowPluginGeneralSettings/general-settings.php:15
483
- msgid "User Capabilities"
484
- msgstr ""
485
-
486
- #: views/SlideshowPluginGeneralSettings/general-settings.php:17
487
- msgid "Custom Styles"
488
- msgstr ""
489
-
490
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:8
491
- msgid "Add slideshows"
492
- msgstr ""
493
-
494
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:9
495
- msgid "Edit slideshows"
496
- msgstr ""
497
-
498
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:10
499
- msgid "Delete slideshows"
500
- msgstr ""
501
-
502
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:18
503
- msgid "Select the user roles that will able to perform certain actions."
504
- msgstr ""
505
-
506
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:35
507
- msgid "Untitled role"
508
- msgstr ""
509
-
510
- #: views/SlideshowPluginPostType/information.php:1
511
- msgid ""
512
- "To use this slideshow in your website either add this piece of shortcode to "
513
- "your posts or pages"
514
- msgstr ""
515
- "Для использования слайдшоу на вашем сайте добавьте этот шорткод в ваши "
516
- "записи или страницы"
517
-
518
- #: views/SlideshowPluginPostType/information.php:5
519
- msgid ""
520
- "Or add this piece of code to where ever in your website you want to place "
521
- "the slideshow"
522
- msgstr ""
523
- "Или добавьте этот фрагмент кода в том месте, где вы желаете разместить ваше "
524
- "слайдшоу"
525
-
526
- #: views/SlideshowPluginPostType/information.php:9
527
- #, php-format
528
- msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
529
- msgstr ""
530
- "Или отправьтесь на %sстраницу виджетов%s и отобразите слайдшоу как виджет"
531
-
532
- #: views/SlideshowPluginPostType/settings.php:26
533
- #: views/SlideshowPluginPostType/style-settings.php:11
534
- msgid "Default"
535
- msgstr "Исходное"
536
-
537
- #: views/SlideshowPluginPostType/slides.php:53
538
- #: views/SlideshowPluginPostType/slides.php:190
539
- #: views/SlideshowPluginSlideInserter/insert-text-button.php:1
540
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:6
541
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:23
542
- msgid "Text slide"
543
- msgstr "Текстовый слайд"
544
-
545
- #: views/SlideshowPluginPostType/slides.php:60
546
- #: views/SlideshowPluginPostType/slides.php:149
547
- #: views/SlideshowPluginPostType/slides.php:197
548
- #: views/SlideshowPluginPostType/slides.php:269
549
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:61
550
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:15
551
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:99
552
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:32
553
- msgid "Description"
554
- msgstr "Описание"
555
-
556
- #: views/SlideshowPluginPostType/slides.php:62
557
- #: views/SlideshowPluginPostType/slides.php:199
558
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:21
559
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:38
560
- msgid "Background color"
561
- msgstr "Фоновый цвет"
562
-
563
- #: views/SlideshowPluginPostType/slides.php:67
564
- #: views/SlideshowPluginPostType/slides.php:154
565
- #: views/SlideshowPluginPostType/slides.php:204
566
- #: views/SlideshowPluginPostType/slides.php:274
567
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:68
568
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:28
569
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:106
570
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:45
571
- msgid "URL"
572
- msgstr "URL"
573
-
574
- #: views/SlideshowPluginPostType/slides.php:69
575
- #: views/SlideshowPluginPostType/slides.php:156
576
- #: views/SlideshowPluginPostType/slides.php:206
577
- #: views/SlideshowPluginPostType/slides.php:276
578
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:71
579
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:31
580
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:109
581
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:48
582
- msgid "Open URL in"
583
- msgstr ""
584
-
585
- #: views/SlideshowPluginPostType/slides.php:71
586
- #: views/SlideshowPluginPostType/slides.php:158
587
- #: views/SlideshowPluginPostType/slides.php:208
588
- #: views/SlideshowPluginPostType/slides.php:278
589
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:73
590
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:33
591
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:111
592
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:50
593
- msgid "Same window"
594
- msgstr "Текущее окно"
595
-
596
- #: views/SlideshowPluginPostType/slides.php:72
597
- #: views/SlideshowPluginPostType/slides.php:159
598
- #: views/SlideshowPluginPostType/slides.php:209
599
- #: views/SlideshowPluginPostType/slides.php:279
600
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:74
601
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:34
602
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:112
603
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:51
604
- msgid "New window"
605
- msgstr "Новое окно"
606
-
607
- #: views/SlideshowPluginPostType/slides.php:89
608
- #: views/SlideshowPluginPostType/slides.php:229
609
- #: views/SlideshowPluginSlideInserter/insert-video-button.php:1
610
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:54
611
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:13
612
- msgid "Video slide"
613
- msgstr "Видео слайд"
614
-
615
- #: views/SlideshowPluginPostType/slides.php:94
616
- #: views/SlideshowPluginPostType/slides.php:234
617
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:60
618
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:19
619
- msgid "Youtube Video ID"
620
- msgstr "ID видео на Youtube"
621
-
622
- #: views/SlideshowPluginPostType/slides.php:132
623
- #: views/SlideshowPluginPostType/slides.php:254
624
- #: views/SlideshowPluginSlideInserter/insert-image-button.php:1
625
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:40
626
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:80
627
- msgid "Image slide"
628
- msgstr "Слайд с изображением"
629
-
630
- #: views/SlideshowPluginPostType/slides.php:170
631
- msgid ""
632
- "An error occurred while loading this slide, and it will not be present in "
633
- "the slideshow"
634
- msgstr ""
635
- "При загрузке этого слайда произошла ошибка, он не будет отображен в слайдшоу"
636
-
637
- #: views/SlideshowPluginPostType/slides.php:176
638
- #: views/SlideshowPluginPostType/slides.php:217
639
- #: views/SlideshowPluginPostType/slides.php:242
640
- #: views/SlideshowPluginPostType/slides.php:288
641
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:83
642
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:42
643
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:68
644
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:121
645
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:59
646
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:27
647
- msgid "Delete slide"
648
- msgstr "Удалить слайд"
649
-
650
- #: views/SlideshowPluginPostType/style-settings.php:22
651
- #, php-format
652
- msgid "Custom styles can be created and customized %shere%s."
653
- msgstr ""
654
-
655
- #: views/SlideshowPluginPostType/support-plugin.php:3
656
- msgid "Help to keep this plugin free!"
657
- msgstr "Помогите сохранить плагин свободным!"
658
-
659
- #: views/SlideshowPluginPostType/support-plugin.php:6
660
- msgid ""
661
- "In order to keep you provided with the newest features, forum support, and "
662
- "bug-fixes, a lot of motivation is required. Therefore I'm kindly asking you "
663
- "to consider making a small donation to the plugin or rating it as 5-stars on "
664
- "Wordpress.org. Thank you in advance!"
665
- msgstr ""
666
- "Для предоставления вам новейших возможностей, поддержки на форуме, "
667
- "исправлении ошибок необходима значительная мотивация. Поэтому просим вас "
668
- "сделать небольшое пожертвование плагину или оценить его в пять баллов на "
669
- "сайте Wordpress.org. Заранее спасибо!"
670
-
671
- #: views/SlideshowPluginPostType/support-plugin.php:15
672
- msgid "Rate on Wordpress.org"
673
- msgstr "Поставить оценку на Wordpress.org"
674
-
675
- #: views/SlideshowPluginPostType/support-plugin.php:24
676
- msgid "Frequently Asked Questions (FAQ)"
677
- msgstr ""
678
-
679
- #: views/SlideshowPluginPostType/support-plugin.php:33
680
- msgid "Questions / Suggestions"
681
- msgstr "Вопросы / Предложения"
682
-
683
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
684
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
685
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
686
- msgid "Insert a Slideshow"
687
- msgstr ""
688
-
689
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
690
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
691
- msgid "Insert Slideshow"
692
- msgstr ""
693
-
694
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
695
- msgid "Select a slideshow"
696
- msgstr ""
697
-
698
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
699
- #: views/SlideshowPluginWidget/form.php:12
700
- msgid "Untitled slideshow"
701
- msgstr ""
702
-
703
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
704
- msgid "Cancel"
705
- msgstr ""
706
-
707
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
708
- #, php-format
709
- msgid ""
710
- "It seems you haven't created any slideshows yet. %sYou can create a "
711
- "slideshow here!%s"
712
- msgstr ""
713
-
714
- #: views/SlideshowPluginSlideInserter/search-popup.php:6
715
- msgid "Search"
716
- msgstr "Поиск"
717
-
718
- #: views/SlideshowPluginSlideInserter/search-popup.php:7
719
- msgid "Search images by title or ID"
720
- msgstr "Поиск изображения по заголовку или ID"
721
-
722
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:18
723
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:35
724
- msgid "Text color"
725
- msgstr ""
726
-
727
- #: views/SlideshowPluginUpload/upload-button.php:1
728
- msgid "Upload/Manage Images"
729
- msgstr "Загрузка/Управление изображениями"
730
-
731
- #: views/SlideshowPluginWidget/form.php:9
732
- msgid "Random Slideshow"
733
- msgstr "Случайный порядок слайдшоу"
734
-
735
- #~ msgid "Custom style editor (Does not work with a Strict Doctype)"
736
- #~ msgstr "Aangepaste stijl bewerker (Werkt niet met een Strict Doctype)"
737
-
738
- #~ msgid "Has the Slideshow plugin helped you?"
739
- #~ msgstr "Heeft de Slideshow plugin je geholpen?"
740
-
741
- #~ msgid "Help it back!"
742
- #~ msgstr "Help hem terug!"
743
-
744
- #~ msgid ""
745
- #~ "If this plugin has filled you with happiness, please support the upkeep "
746
- #~ "of the plugin by rating it on Wordpress, posting a suggestion for "
747
- #~ "improvement on the support forum, or making a donation."
748
- #~ msgstr ""
749
- #~ "Als deze plugin je met blijdschap heeft vervuld, zou ik het enorm "
750
- #~ "waarderen als je de plugin wilt beoordelen op Wordpress, een suggestie "
751
- #~ "wilt maken voor verbetering, of een donatie doen wilt."
752
-
753
- #~ msgid "Click on an image to insert it as a slide"
754
- #~ msgstr "Klik op een plaatje om deze in te voegen als slide"
755
-
756
- #~ msgid "Width of the slideshow"
757
- #~ msgstr "Breedte van de slideshow"
758
-
759
- #~ msgid "Defaults to parent's width."
760
- #~ msgstr "Standaard ingesteld op de breedte van het bovenliggende element."
761
-
762
- #~ msgid "Send user to image URL on click"
763
- #~ msgstr ""
764
- #~ "Wanner de gebruiker op de afbeelding klikt, stuur hem naar de URL van het "
765
- #~ "plaatje"
766
-
767
- #~ msgid "Leave any field open to use default value."
768
- #~ 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: 2013-03-13 20:51+0100\n"
6
+ "PO-Revision-Date: 2013-03-13 20:54+0100\n"
7
+ "Last-Translator: Dmitry Fatakov <dfatakov@mail.ru>\n"
8
+ "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
+ "Language: ru_UA\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.5\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: classes/SlideshowPluginGeneralSettings.php:64
19
+ #: classes/SlideshowPluginGeneralSettings.php:65
20
+ msgid "General Settings"
21
+ msgstr "Основные настройки"
22
+
23
+ #: classes/SlideshowPluginGeneralSettings.php:146
24
+ msgid "New"
25
+ msgstr "Новый"
26
+
27
+ #: classes/SlideshowPluginGeneralSettings.php:147
28
+ msgid "Are you sure you want to delete this custom style?"
29
+ msgstr "Удалить этот стиль?"
30
+
31
+ #: classes/SlideshowPluginGeneralSettings.php:166
32
+ #: classes/SlideshowPluginInstaller.php:441
33
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:6
34
+ msgid "Light"
35
+ msgstr "Светлый"
36
+
37
+ #: classes/SlideshowPluginGeneralSettings.php:167
38
+ #: classes/SlideshowPluginInstaller.php:441
39
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:7
40
+ msgid "Dark"
41
+ msgstr "Тёмный"
42
+
43
+ #: classes/SlideshowPluginGeneralSettings.php:271
44
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:49
45
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:131
46
+ msgid "Untitled"
47
+ msgstr "Без заголовка"
48
+
49
+ #: classes/SlideshowPluginInstaller.php:438
50
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:378
51
+ msgid "Yes"
52
+ msgstr "Да"
53
+
54
+ #: classes/SlideshowPluginInstaller.php:439
55
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:379
56
+ msgid "No"
57
+ msgstr "Нет"
58
+
59
+ #: classes/SlideshowPluginInstaller.php:441
60
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:477
61
+ msgid "The style used for this slideshow"
62
+ msgstr "Стиль, используемый в этом слайдшоу"
63
+
64
+ #: classes/SlideshowPluginInstaller.php:441
65
+ msgid "Custom"
66
+ msgstr "Собственный"
67
+
68
+ #: classes/SlideshowPluginInstaller.php:442
69
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:114
70
+ msgid "Custom style editor"
71
+ msgstr "Редактор собственного стиля"
72
+
73
+ #: classes/SlideshowPluginInstaller.php:443
74
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
75
+ msgid "Animation used for transition between slides"
76
+ msgstr "Анимация, используемая для перехода между слайдами"
77
+
78
+ #: classes/SlideshowPluginInstaller.php:443
79
+ msgid "Slide"
80
+ msgstr "Слайд"
81
+
82
+ #: classes/SlideshowPluginInstaller.php:443
83
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
84
+ msgid "Fade"
85
+ msgstr "Затухание"
86
+
87
+ #: classes/SlideshowPluginInstaller.php:443
88
+ #: classes/SlideshowPluginInstaller.php:444
89
+ #: classes/SlideshowPluginInstaller.php:445
90
+ #: classes/SlideshowPluginInstaller.php:446
91
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
92
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:420
93
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
94
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:422
95
+ msgid "Animation"
96
+ msgstr "Анимационные"
97
+
98
+ #: classes/SlideshowPluginInstaller.php:444
99
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:420
100
+ msgid "Number of seconds the slide takes to slide in"
101
+ msgstr "Число секунд, которое занимает появление слайда"
102
+
103
+ #: classes/SlideshowPluginInstaller.php:445
104
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
105
+ msgid "Number of seconds the description takes to slide in"
106
+ msgstr "Число секунд, которое занимает появление текста"
107
+
108
+ #: classes/SlideshowPluginInstaller.php:446
109
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:422
110
+ msgid "Seconds between changing slides"
111
+ msgstr "Секунд между сменой слайдов"
112
+
113
+ #: classes/SlideshowPluginInstaller.php:447
114
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
115
+ msgid "Number of slides to fit into one slide"
116
+ msgstr "Число слайдов, размещённых в одном слайде"
117
+
118
+ #: classes/SlideshowPluginInstaller.php:447
119
+ #: classes/SlideshowPluginInstaller.php:448
120
+ #: classes/SlideshowPluginInstaller.php:449
121
+ #: classes/SlideshowPluginInstaller.php:450
122
+ #: classes/SlideshowPluginInstaller.php:451
123
+ #: classes/SlideshowPluginInstaller.php:452
124
+ #: classes/SlideshowPluginInstaller.php:453
125
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
126
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:424
127
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
128
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:426
129
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:427
130
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
131
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:429
132
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:430
133
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:431
134
+ msgid "Display"
135
+ msgstr "Визуальные"
136
+
137
+ #: classes/SlideshowPluginInstaller.php:448
138
+ msgid "Width of the slideshow, set to parent&#39;s width on 0"
139
+ msgstr ""
140
+ "Ширина слайдшоу. Установите в 0 для определения ширины по родительскому "
141
+ "элементу"
142
+
143
+ #: classes/SlideshowPluginInstaller.php:449
144
+ msgid "Height of the slideshow"
145
+ msgstr "Высота слайдшоу"
146
+
147
+ #: classes/SlideshowPluginInstaller.php:450
148
+ msgid "Height of the description boxes"
149
+ msgstr "Высота блока описания"
150
+
151
+ #: classes/SlideshowPluginInstaller.php:451
152
+ msgid "Fit image into slide (stretching it)"
153
+ msgstr "Уместить изображение в слайд (растянуть его)"
154
+
155
+ #: classes/SlideshowPluginInstaller.php:452
156
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:430
157
+ msgid "Show title and description"
158
+ msgstr "Показать заголовок и описание"
159
+
160
+ #: classes/SlideshowPluginInstaller.php:453
161
+ msgid "Hide description box, it will pop up when a mouse hovers over the slide"
162
+ msgstr ""
163
+ "Скрыть блок описания. Он будет появляться при наведении указателя мыши "
164
+ "поверх слайда"
165
+
166
+ #: classes/SlideshowPluginInstaller.php:454
167
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:432
168
+ msgid "Automatically slide to the next slide"
169
+ msgstr "Автоматический переход к следующему слайду"
170
+
171
+ #: classes/SlideshowPluginInstaller.php:454
172
+ #: classes/SlideshowPluginInstaller.php:455
173
+ #: classes/SlideshowPluginInstaller.php:456
174
+ #: classes/SlideshowPluginInstaller.php:457
175
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:432
176
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:433
177
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:434
178
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:435
179
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:436
180
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:437
181
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:438
182
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:439
183
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:440
184
+ msgid "Control"
185
+ msgstr "Управляющие"
186
+
187
+ #: classes/SlideshowPluginInstaller.php:455
188
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:433
189
+ msgid "Return to the beginning of the slideshow after last slide"
190
+ msgstr "Вернуться в начало слайдшоу после последнего слайда"
191
+
192
+ #: classes/SlideshowPluginInstaller.php:456
193
+ msgid "Activate buttons (so the user can scroll through the slides)"
194
+ msgstr "Активировать кнопки (пользователь сможет пролистывать слайды)"
195
+
196
+ #: classes/SlideshowPluginInstaller.php:457
197
+ msgid "Show control panel (play and pause button)"
198
+ msgstr "Отображать панель управления (кнопка воспроизведения и останова)"
199
+
200
+ #: classes/SlideshowPluginPostType.php:38
201
+ msgid "Slideshows"
202
+ msgstr "Слайдшоу"
203
+
204
+ #: classes/SlideshowPluginPostType.php:39
205
+ #: views/SlideshowPluginWidget/form.php:7
206
+ msgid "Slideshow"
207
+ msgstr "Слайдшоу"
208
+
209
+ #: classes/SlideshowPluginPostType.php:40
210
+ msgid "Add New Slideshow"
211
+ msgstr "Добавить новое слайдшоу"
212
+
213
+ #: classes/SlideshowPluginPostType.php:41
214
+ msgid "Edit slideshow"
215
+ msgstr "Редактировать слайдшоу"
216
+
217
+ #: classes/SlideshowPluginPostType.php:42
218
+ msgid "New slideshow"
219
+ msgstr "Новое слайдшоу"
220
+
221
+ #: classes/SlideshowPluginPostType.php:43
222
+ msgid "View slideshow"
223
+ msgstr "Просмотр слайдшоу"
224
+
225
+ #: classes/SlideshowPluginPostType.php:44
226
+ msgid "Search slideshows"
227
+ msgstr "Поиск слайдшоу"
228
+
229
+ #: classes/SlideshowPluginPostType.php:45
230
+ #: classes/SlideshowPluginPostType.php:46
231
+ msgid "No slideshows found"
232
+ msgstr "Ни одного слайдшоу не найдено"
233
+
234
+ #: classes/SlideshowPluginPostType.php:155
235
+ msgid "Information"
236
+ msgstr "Информация"
237
+
238
+ #: classes/SlideshowPluginPostType.php:164
239
+ msgid "Slides List"
240
+ msgstr "Список слайдов"
241
+
242
+ #: classes/SlideshowPluginPostType.php:173
243
+ msgid "Slideshow Style"
244
+ msgstr "Стиль слайдшоу"
245
+
246
+ #: classes/SlideshowPluginPostType.php:182
247
+ msgid "Slideshow Settings"
248
+ msgstr "Настройки слайдшоу"
249
+
250
+ #: classes/SlideshowPluginPostType.php:232
251
+ #: classes/SlideshowPluginSlideInserter.php:178
252
+ #: views/SlideshowPluginPostType/slides.php:2
253
+ msgid "Insert"
254
+ msgstr "Вставить"
255
+
256
+ #: classes/SlideshowPluginPostType.php:240
257
+ #: views/SlideshowPluginPostType/slides.php:9
258
+ msgid "Add slides to this slideshow by using one of the buttons above."
259
+ msgstr "Добавить слайды к слайдшоу с помощью одной из кнопок ниже"
260
+
261
+ #: classes/SlideshowPluginShortcode.php:132
262
+ msgid "No slideshow selected."
263
+ msgstr "Не выбрано слайдшоу."
264
+
265
+ #: classes/SlideshowPluginSlideInserter.php:151
266
+ msgid "More results loaded"
267
+ msgstr "Другие результаты загружаются"
268
+
269
+ #: classes/SlideshowPluginSlideInserter.php:187
270
+ msgid "Load more results"
271
+ msgstr "Загрузить больше результатов"
272
+
273
+ #: classes/SlideshowPluginSlideInserter.php:196
274
+ msgid "No images were found, click here to upload some."
275
+ msgstr "Не найдено изображений, щёлкните здесь для загрузки"
276
+
277
+ #: classes/SlideshowPluginSlideInserter.php:273
278
+ msgid "Are you sure you want to delete this slide?"
279
+ msgstr "Удалить этот слайд?"
280
+
281
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
282
+ msgid "Slide Left"
283
+ msgstr "Сдвиг влево"
284
+
285
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
286
+ msgid "Slide Right"
287
+ msgstr "Сдвиг вправо"
288
+
289
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
290
+ msgid "Slide Up"
291
+ msgstr "Сдвиг вверх"
292
+
293
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
294
+ msgid "Slide Down"
295
+ msgstr "Сдвиг вниз"
296
+
297
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
298
+ msgid "Direct Fade"
299
+ msgstr "Вспышка"
300
+
301
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
302
+ msgid "Random Animation"
303
+ msgstr "Произвольная анимация"
304
+
305
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:424
306
+ msgid "Maximum width. When maximum width is 0, maximum width is ignored"
307
+ msgstr "Максимальная ширина. Когда равно 0, параметр игнорируется"
308
+
309
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
310
+ msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
311
+ msgstr "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
312
+
313
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
314
+ msgid "More info"
315
+ msgstr "Далее"
316
+
317
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
318
+ #, php-format
319
+ msgid ""
320
+ "Proportional relationship%s between slideshow's width and height (width:"
321
+ "height)"
322
+ msgstr ""
323
+ "Пропорциональная зависимость %s между шириной и высотой слайдшоу (ширина:"
324
+ "высота)"
325
+
326
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:426
327
+ msgid "Slideshow's height"
328
+ msgstr "Высота слайдшоу"
329
+
330
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:427
331
+ msgid "Fit image into slide (Stretch image)"
332
+ msgstr "Вписать изображение в слайд (Растянуть изображение)"
333
+
334
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
335
+ msgid "Shrink slideshow's height when width shrinks"
336
+ msgstr "Уменьшать высоту слайдшоу при уменьшении ширины слайдшоу"
337
+
338
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:429
339
+ msgid ""
340
+ "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
341
+ msgstr ""
342
+ "Включить отзывчивость (Уменьшать шарану слайдшоу при уменьшении ширины "
343
+ "страницы)"
344
+
345
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:431
346
+ msgid "Hide description box, pop up when mouse hovers over"
347
+ msgstr "Спрятать описание, показать при наведении курсора"
348
+
349
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:434
350
+ msgid "Pause slideshow when mouse hovers over"
351
+ msgstr "Приостанавливать слайдшоу при наведении курсора"
352
+
353
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:435
354
+ msgid "Activate navigation buttons"
355
+ msgstr "Активировать кнопки навигации"
356
+
357
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:436
358
+ msgid "Hide navigation buttons, show when mouse hovers over"
359
+ msgstr "Спрятать кнопки навигации, показать при наведении курсора"
360
+
361
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:437
362
+ msgid "Activate pagination"
363
+ msgstr "Активировать постраничную навигацию"
364
+
365
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:438
366
+ msgid "Hide pagination, show when mouse hovers over"
367
+ msgstr "Спрятать постраничную навигацию, показать при наведении курсора"
368
+
369
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:439
370
+ msgid "Activate control panel (play and pause button)"
371
+ msgstr "Активировать панель управления (кнопки запуск и пауза)"
372
+
373
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:440
374
+ msgid "Hide control panel, show when mouse hovers over"
375
+ msgstr "Спрятать панель управления, показывать при наведении курсора"
376
+
377
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:441
378
+ msgid "Randomize slides"
379
+ msgstr "Слайды в случайном порядке"
380
+
381
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:441
382
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:442
383
+ msgid "Miscellaneous"
384
+ msgstr "Разные"
385
+
386
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:442
387
+ #, php-format
388
+ msgid "Avoid content filter (disable if '%s' is shown)"
389
+ msgstr "Избегать фильтра содержимого (запрещено, если отображается '%s' )"
390
+
391
+ #: classes/SlideshowPluginWidget.php:23
392
+ msgid "Enables you to show your slideshows in the widget area of your website."
393
+ msgstr "Позволяет отобразить ваше слайдшоу в области виджетов вашего сайта"
394
+
395
+ #: classes/SlideshowPluginWidget.php:29
396
+ msgid "Slideshow Widget"
397
+ msgstr "Виджет слайдшоу"
398
+
399
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:38
400
+ msgid "Default stylesheets"
401
+ msgstr "Стили по-умолчанию"
402
+
403
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:52
404
+ msgid "Create a new custom style from this style"
405
+ msgstr "Создать новый стиль"
406
+
407
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:54
408
+ msgid "Customize"
409
+ msgstr "Изменить"
410
+
411
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:68
412
+ msgid "Custom stylesheets"
413
+ msgstr "Измененные стили"
414
+
415
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:81
416
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:160
417
+ msgid "Edit this style"
418
+ msgstr "Редактировать стиль"
419
+
420
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:83
421
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:162
422
+ #: views/SlideshowPluginPostType/slides.php:137
423
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:46
424
+ msgid "Edit"
425
+ msgstr "Редактировать"
426
+
427
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:90
428
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:169
429
+ msgid "Delete this style"
430
+ msgstr "Удалить этот стиль"
431
+
432
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:92
433
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:171
434
+ msgid "Delete"
435
+ msgstr "Удалить"
436
+
437
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:102
438
+ msgid "Click 'Customize' to create a new custom stylesheet."
439
+ msgstr "Нажмите 'Изменить', чтобы создать новый стиль"
440
+
441
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:118
442
+ msgid "Select a stylesheet from the left to start customizing it."
443
+ msgstr "Выберите слева стиль, чтобы начать его изменение."
444
+
445
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:127
446
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:180
447
+ #: views/SlideshowPluginPostType/slides.php:58
448
+ #: views/SlideshowPluginPostType/slides.php:143
449
+ #: views/SlideshowPluginPostType/slides.php:195
450
+ #: views/SlideshowPluginPostType/slides.php:263
451
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:54
452
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:12
453
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:90
454
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:29
455
+ #: views/SlideshowPluginWidget/form.php:2
456
+ msgid "Title"
457
+ msgstr "Заголовок"
458
+
459
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:136
460
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:188
461
+ msgid "Style"
462
+ msgstr "Style"
463
+
464
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:11
465
+ msgid "Note"
466
+ msgstr "Заметка"
467
+
468
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:18
469
+ #, php-format
470
+ msgid ""
471
+ "The settings set on this page apply only to newly created slideshows and "
472
+ "therefore do not alter any existing ones. To adapt a slideshow's settings, "
473
+ "%sclick here.%s"
474
+ msgstr ""
475
+ "Заданные здесь настройки будут применены только к новым слайдшоу и не "
476
+ "затронут уже существующие. Для изменения существующих, %sнажмите здесь.%s"
477
+
478
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:30
479
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:16
480
+ msgid "Default Slideshow Settings"
481
+ msgstr "Настройки слайдшоу по-умолчанию"
482
+
483
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:43
484
+ #: views/SlideshowPluginPostType/settings.php:12
485
+ msgid "settings"
486
+ msgstr "настройки"
487
+
488
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:80
489
+ msgid "Default Slideshow Stylesheet"
490
+ msgstr "Стили слайдшоу по-умолчанию"
491
+
492
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:15
493
+ msgid "User Capabilities"
494
+ msgstr "Возможности пользователей"
495
+
496
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:17
497
+ msgid "Custom Styles"
498
+ msgstr "Измененные стили"
499
+
500
+ #: views/SlideshowPluginGeneralSettings/user-capabilities.php:8
501
+ msgid "Add slideshows"
502
+ msgstr "Добавить слайдшоу"
503
+
504
+ #: views/SlideshowPluginGeneralSettings/user-capabilities.php:9
505
+ msgid "Edit slideshows"
506
+ msgstr "Редактировать слайдшоу"
507
+
508
+ #: views/SlideshowPluginGeneralSettings/user-capabilities.php:10
509
+ msgid "Delete slideshows"
510
+ msgstr "Удалить слайдшоу"
511
+
512
+ #: views/SlideshowPluginGeneralSettings/user-capabilities.php:18
513
+ msgid "Select the user roles that will able to perform certain actions."
514
+ msgstr ""
515
+ "Выберите роли пользователей, которым будет разрешены определенные действия."
516
+
517
+ #: views/SlideshowPluginGeneralSettings/user-capabilities.php:35
518
+ msgid "Untitled role"
519
+ msgstr "Роль без заголовка"
520
+
521
+ #: views/SlideshowPluginPostType/information.php:1
522
+ msgid ""
523
+ "To use this slideshow in your website either add this piece of shortcode to "
524
+ "your posts or pages"
525
+ msgstr ""
526
+ "Для использования слайдшоу на вашем сайте добавьте этот шорткод в ваши "
527
+ "записи или страницы"
528
+
529
+ #: views/SlideshowPluginPostType/information.php:5
530
+ msgid ""
531
+ "Or add this piece of code to where ever in your website you want to place "
532
+ "the slideshow"
533
+ msgstr ""
534
+ "Или добавьте этот фрагмент кода в том месте, где вы желаете разместить ваше "
535
+ "слайдшоу"
536
+
537
+ #: views/SlideshowPluginPostType/information.php:9
538
+ #, php-format
539
+ msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
540
+ msgstr ""
541
+ "Или отправьтесь на %sстраницу виджетов%s и отобразите слайдшоу как виджет"
542
+
543
+ #: views/SlideshowPluginPostType/settings.php:26
544
+ #: views/SlideshowPluginPostType/style-settings.php:11
545
+ msgid "Default"
546
+ msgstr "Исходное"
547
+
548
+ #: views/SlideshowPluginPostType/slides.php:53
549
+ #: views/SlideshowPluginPostType/slides.php:190
550
+ #: views/SlideshowPluginSlideInserter/insert-text-button.php:1
551
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:6
552
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:23
553
+ msgid "Text slide"
554
+ msgstr "Текстовый слайд"
555
+
556
+ #: views/SlideshowPluginPostType/slides.php:60
557
+ #: views/SlideshowPluginPostType/slides.php:149
558
+ #: views/SlideshowPluginPostType/slides.php:197
559
+ #: views/SlideshowPluginPostType/slides.php:269
560
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:61
561
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:15
562
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:97
563
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:32
564
+ msgid "Description"
565
+ msgstr "Описание"
566
+
567
+ #: views/SlideshowPluginPostType/slides.php:62
568
+ #: views/SlideshowPluginPostType/slides.php:199
569
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:21
570
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:38
571
+ msgid "Background color"
572
+ msgstr "Фоновый цвет"
573
+
574
+ #: views/SlideshowPluginPostType/slides.php:67
575
+ #: views/SlideshowPluginPostType/slides.php:154
576
+ #: views/SlideshowPluginPostType/slides.php:204
577
+ #: views/SlideshowPluginPostType/slides.php:274
578
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:68
579
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:28
580
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:104
581
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:46
582
+ msgid "URL"
583
+ msgstr "URL"
584
+
585
+ #: views/SlideshowPluginPostType/slides.php:69
586
+ #: views/SlideshowPluginPostType/slides.php:156
587
+ #: views/SlideshowPluginPostType/slides.php:206
588
+ #: views/SlideshowPluginPostType/slides.php:276
589
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:71
590
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:31
591
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:107
592
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:49
593
+ msgid "Open URL in"
594
+ msgstr "Открыть URL в"
595
+
596
+ #: views/SlideshowPluginPostType/slides.php:71
597
+ #: views/SlideshowPluginPostType/slides.php:158
598
+ #: views/SlideshowPluginPostType/slides.php:208
599
+ #: views/SlideshowPluginPostType/slides.php:278
600
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:73
601
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:33
602
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:109
603
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:51
604
+ msgid "Same window"
605
+ msgstr "Текущее окно"
606
+
607
+ #: views/SlideshowPluginPostType/slides.php:72
608
+ #: views/SlideshowPluginPostType/slides.php:159
609
+ #: views/SlideshowPluginPostType/slides.php:209
610
+ #: views/SlideshowPluginPostType/slides.php:279
611
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:74
612
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:34
613
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:110
614
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:52
615
+ msgid "New window"
616
+ msgstr "Новое окно"
617
+
618
+ #: views/SlideshowPluginPostType/slides.php:89
619
+ #: views/SlideshowPluginPostType/slides.php:229
620
+ #: views/SlideshowPluginSlideInserter/insert-video-button.php:1
621
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:53
622
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:13
623
+ msgid "Video slide"
624
+ msgstr "Видео слайд"
625
+
626
+ #: views/SlideshowPluginPostType/slides.php:94
627
+ #: views/SlideshowPluginPostType/slides.php:234
628
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:59
629
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:19
630
+ msgid "Youtube Video ID"
631
+ msgstr "ID видео на Youtube"
632
+
633
+ #: views/SlideshowPluginPostType/slides.php:132
634
+ #: views/SlideshowPluginPostType/slides.php:254
635
+ #: views/SlideshowPluginSlideInserter/insert-image-button.php:1
636
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:40
637
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:78
638
+ msgid "Image slide"
639
+ msgstr "Слайд с изображением"
640
+
641
+ #: views/SlideshowPluginPostType/slides.php:170
642
+ msgid ""
643
+ "An error occurred while loading this slide, and it will not be present in "
644
+ "the slideshow"
645
+ msgstr ""
646
+ "При загрузке этого слайда произошла ошибка, он не будет отображен в слайдшоу"
647
+
648
+ #: views/SlideshowPluginPostType/slides.php:176
649
+ #: views/SlideshowPluginPostType/slides.php:217
650
+ #: views/SlideshowPluginPostType/slides.php:242
651
+ #: views/SlideshowPluginPostType/slides.php:288
652
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:83
653
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:42
654
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:67
655
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:119
656
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:60
657
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:27
658
+ msgid "Delete slide"
659
+ msgstr "Удалить слайд"
660
+
661
+ #: views/SlideshowPluginPostType/style-settings.php:22
662
+ #, php-format
663
+ msgid "Custom styles can be created and customized %shere%s."
664
+ msgstr "Стили могут быть созданы и изменены %sздесь%s."
665
+
666
+ #: views/SlideshowPluginPostType/support-plugin.php:3
667
+ msgid "Help to keep this plugin free!"
668
+ msgstr "Помогите сохранить плагин свободным!"
669
+
670
+ #: views/SlideshowPluginPostType/support-plugin.php:6
671
+ msgid ""
672
+ "In order to keep you provided with the newest features, forum support, and "
673
+ "bug-fixes, a lot of motivation is required. Therefore I'm kindly asking you "
674
+ "to consider making a small donation to the plugin or rating it as 5-stars on "
675
+ "Wordpress.org. Thank you in advance!"
676
+ msgstr ""
677
+ "Для предоставления вам новейших возможностей, поддержки на форуме, "
678
+ "исправлении ошибок необходима значительная мотивация. Поэтому просим вас "
679
+ "сделать небольшое пожертвование плагину или оценить его в пять баллов на "
680
+ "сайте Wordpress.org. Заранее спасибо!"
681
+
682
+ #: views/SlideshowPluginPostType/support-plugin.php:15
683
+ msgid "Rate on Wordpress.org"
684
+ msgstr "Поставить оценку на Wordpress.org"
685
+
686
+ #: views/SlideshowPluginPostType/support-plugin.php:24
687
+ msgid "Frequently Asked Questions (FAQ)"
688
+ msgstr "Часто Задаваемые Вопросы (ЧАВО)"
689
+
690
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
691
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
692
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
693
+ msgid "Insert a Slideshow"
694
+ msgstr "Вставить слайдшоу"
695
+
696
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
697
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
698
+ msgid "Insert Slideshow"
699
+ msgstr "Вставка слайдшоу"
700
+
701
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
702
+ msgid "Select a slideshow"
703
+ msgstr "Выберите слайдшоу"
704
+
705
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
706
+ #: views/SlideshowPluginWidget/form.php:12
707
+ msgid "Untitled slideshow"
708
+ msgstr "Сладйшоу без заголовка"
709
+
710
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
711
+ msgid "Cancel"
712
+ msgstr "Отмена"
713
+
714
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
715
+ #, php-format
716
+ msgid ""
717
+ "It seems you haven't created any slideshows yet. %sYou can create a "
718
+ "slideshow here!%s"
719
+ msgstr "Нет ни одного слайдшоу. %sВы можете создать слайдшоу здесь!%s"
720
+
721
+ #: views/SlideshowPluginSlideInserter/search-popup.php:6
722
+ msgid "Search"
723
+ msgstr "Поиск"
724
+
725
+ #: views/SlideshowPluginSlideInserter/search-popup.php:7
726
+ msgid "Search images by title or ID"
727
+ msgstr "Поиск изображения по заголовку или ID"
728
+
729
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:18
730
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:35
731
+ msgid "Text color"
732
+ msgstr "Цвет текста"
733
+
734
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:40
735
+ msgid "(Leave empty for a transparent background)"
736
+ msgstr "(Оставить пустым для прозрачного фона)"
737
+
738
+ #: views/SlideshowPluginUpload/upload-button.php:1
739
+ msgid "Upload/Manage Images"
740
+ msgstr "Загрузка/Управление изображениями"
741
+
742
+ #: views/SlideshowPluginWidget/form.php:9
743
+ msgid "Random Slideshow"
744
+ msgstr "Случайный порядок слайдшоу"
745
+
746
+ #~ msgid "Questions / Suggestions"
747
+ #~ msgstr "Вопросы / Предложения"
748
+
749
+ #~ msgid "Custom style editor (Does not work with a Strict Doctype)"
750
+ #~ msgstr "Aangepaste stijl bewerker (Werkt niet met een Strict Doctype)"
751
+
752
+ #~ msgid "Has the Slideshow plugin helped you?"
753
+ #~ msgstr "Heeft de Slideshow plugin je geholpen?"
754
+
755
+ #~ msgid "Help it back!"
756
+ #~ msgstr "Help hem terug!"
757
+
758
+ #~ msgid ""
759
+ #~ "If this plugin has filled you with happiness, please support the upkeep "
760
+ #~ "of the plugin by rating it on Wordpress, posting a suggestion for "
761
+ #~ "improvement on the support forum, or making a donation."
762
+ #~ msgstr ""
763
+ #~ "Als deze plugin je met blijdschap heeft vervuld, zou ik het enorm "
764
+ #~ "waarderen als je de plugin wilt beoordelen op Wordpress, een suggestie "
765
+ #~ "wilt maken voor verbetering, of een donatie doen wilt."
766
+
767
+ #~ msgid "Click on an image to insert it as a slide"
768
+ #~ msgstr "Klik op een plaatje om deze in te voegen als slide"
769
+
770
+ #~ msgid "Width of the slideshow"
771
+ #~ msgstr "Breedte van de slideshow"
772
+
773
+ #~ msgid "Defaults to parent's width."
774
+ #~ msgstr "Standaard ingesteld op de breedte van het bovenliggende element."
775
+
776
+ #~ msgid "Send user to image URL on click"
777
+ #~ msgstr ""
778
+ #~ "Wanner de gebruiker op de afbeelding klikt, stuur hem naar de URL van het "
779
+ #~ "plaatje"
780
+
781
+ #~ msgid "Leave any field open to use default value."
782
+ #~ 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.5.1
8
- Stable tag: 2.2.9
9
  License: GPLv2
10
 
11
  Integrate a fancy slideshow in just five steps. - Rainbows. Rainbows everywhere.
@@ -41,7 +41,7 @@ different images, settings and styles for each one of them.
41
  - Dutch
42
  - English
43
  - French (60% Translated by [Wptheme](http://wptheme.fr/))
44
- - Russian (56% Translated by [Oleg Fritz](http://www.facebook.com/profile.php?id=100001331241069))
45
  - Spanish (62% Translated by [Violeta Rosales](https://twitter.com/violetisha))
46
 
47
  Feel free to send me your own translation of the plugin to my e-mail address: wordpress@stefanboonstra.com. Many
@@ -165,6 +165,10 @@ personal taste.
165
 
166
  == Changelog ==
167
 
 
 
 
 
168
  = 2.2.9 =
169
  * Fixed: Descriptions didn't show when 'Hide descriptions' was set to 'No'.
170
  * Fixed: Title was given wrong size by CSS.
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.5.1
8
+ Stable tag: 2.2.10
9
  License: GPLv2
10
 
11
  Integrate a fancy slideshow in just five steps. - Rainbows. Rainbows everywhere.
41
  - Dutch
42
  - English
43
  - French (60% Translated by [Wptheme](http://wptheme.fr/))
44
+ - Russian (100% Translated by Dmitry Fatakov and [Oleg Fritz](http://www.facebook.com/profile.php?id=100001331241069))
45
  - Spanish (62% Translated by [Violeta Rosales](https://twitter.com/violetisha))
46
 
47
  Feel free to send me your own translation of the plugin to my e-mail address: wordpress@stefanboonstra.com. Many
165
 
166
  == Changelog ==
167
 
168
+ = 2.2.10 =
169
+ * Fixed: Auto margin combined with a fixed width will no longer break slideshow's responsiveness.
170
+ * Updated Russian translation, thanks to Dmitry Fatakov.
171
+
172
  = 2.2.9 =
173
  * Fixed: Descriptions didn't show when 'Hide descriptions' was set to 'No'.
174
  * Fixed: Title was given wrong size by CSS.
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.9
7
  Requires at least: 3.3
8
  Author: StefanBoonstra
9
  Author URI: http://stefanboonstra.com/
@@ -22,7 +22,7 @@
22
  class SlideshowPluginMain {
23
 
24
  /** Variables */
25
- static $version = '2.2.9';
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.10
7
  Requires at least: 3.3
8
  Author: StefanBoonstra
9
  Author URI: http://stefanboonstra.com/
22
  class SlideshowPluginMain {
23
 
24
  /** Variables */
25
+ static $version = '2.2.10';
26
 
27
  /**
28
  * Bootstraps the application by assigning the right functions to
style/SlideshowPlugin/style-custom.css DELETED
@@ -1,83 +0,0 @@
1
- .slideshow_container { }
2
-
3
- .slideshow_container .slideshow { }
4
-
5
- .slideshow_container img { }
6
-
7
- .slideshow_container .slide {
8
- margin-right: 2px;
9
- }
10
-
11
- .slideshow_container .transparent {
12
- filter: alpha(opacity = 50);
13
- opacity: 0.5;
14
- }
15
-
16
- .slideshow_container .transparent:hover {
17
- filter: alpha(opacity = 80);
18
- opacity: 0.8;
19
- }
20
-
21
- .slideshow_container .description {
22
- background: #000;
23
- }
24
-
25
- .slideshow_container .controlPanel {
26
- width: 21px;
27
- height: 21px;
28
- background: #000;
29
- border-radius: 2px;
30
- -moz-border-radius: 10px;
31
- }
32
-
33
- .slideshow_container .controlPanel ul { }
34
-
35
- .slideshow_container .controlPanel ul li {
36
- margin: 3px;
37
- width: 15px;
38
- height: 15px;
39
- }
40
-
41
- .slideshow_container .controlPanel ul li:hover { }
42
-
43
- .slideshow_container .play {
44
- background: url('%plugin-url%/images/SlideshowPlugin/light-controlpanel.png') 0 0 no-repeat;
45
- }
46
-
47
- .slideshow_container .pause {
48
- background: url('%plugin-url%/images/SlideshowPlugin/light-controlpanel.png') -15px 0 no-repeat;
49
- }
50
-
51
- .slideshow_container .button {
52
- margin-top: -20px;
53
- height: 40px;
54
- width: 19px;
55
- background: url('%plugin-url%/images/SlideshowPlugin/light-arrows.png') no-repeat;
56
- }
57
-
58
- .slideshow_container .previous { }
59
-
60
- .slideshow_container .next {
61
- background-position: -19px 0;
62
- }
63
-
64
- .slideshow_container a {
65
- text-decoration: none;
66
- color: #fff;
67
- text-align: center;
68
- }
69
-
70
- .slideshow_container .description h2,
71
- .slideshow_container .description p {
72
- color: #fff;
73
- }
74
-
75
- .slideshow_container h2 {
76
- margin: 5px;
77
- font-size: 25px;
78
- }
79
-
80
- .slideshow_container p {
81
- margin: 7px;
82
- font-size: 15px;
83
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
style/SlideshowPlugin/style-transparent.css DELETED
@@ -1,64 +0,0 @@
1
- .slideshow_container { }
2
-
3
- .slideshow {
4
- overflow: hidden;
5
- }
6
-
7
- .slideshow .slideshow_div {
8
- width: 0;
9
- overflow: hidden;
10
- float: left;
11
- }
12
-
13
- .slideshow_container .button {
14
- visibility: hidden;
15
- width: 24px;
16
- height: 100px;
17
- cursor: pointer;
18
-
19
- position: relative;
20
- z-index: 2;
21
- }
22
-
23
- .slideshow_container .next {
24
- float: right;
25
- background: url('../../images/button-next.png');
26
- margin-right: 10px;
27
- }
28
-
29
- .slideshow_container .previous {
30
- float: left;
31
- background: url('../../images/button-previous.png');
32
- margin-left: 10px;
33
- }
34
-
35
- .slideshow_container .transparent {
36
- zoom: 1;
37
- filter: alpha(opacity = 50);
38
- opacity: 0.5;
39
- }
40
-
41
- .slideshow_container .transparent:hover {
42
- zoom: 1;
43
- filter: alpha(opacity = 80);
44
- opacity: 0.8;
45
- }
46
-
47
- .slideshow_container .descriptionbox {
48
- background: #000;
49
- color: #fff;
50
- float: right;
51
- margin-top: 0;
52
- margin-right: 44px;
53
- height: 0;
54
- width: 300px;
55
- overflow: hidden;
56
-
57
- position: relative;
58
- z-index: 1;
59
- }
60
-
61
- .slideshow_container .descriptionbox h2,
62
- .slideshow_container .descriptionbox p {
63
- padding: 10px;
64
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
views/SlideshowPlugin/slideshow.php CHANGED
@@ -1,4 +1,4 @@
1
- <div class="slideshow_container slideshow_container_<?php echo $styleName; ?>" style="width: 2000px; <?php echo (isset($settings['preserveSlideshowDimensions']) && $settings['preserveSlideshowDimensions'] == 'false' && isset($settings['height']) && $settings['height'] > 0) ? 'height: ' . $settings['height'] . 'px;' : ''; ?> <?php echo (isset($settings['maxWidth']) && $settings['maxWidth'] > 0) ? 'max-width: ' . $settings['maxWidth'] . 'px;' : ''; ?>" data-session-id="<?php echo $sessionID; ?>">
2
 
3
  <div class="slideshow_controlPanel slideshow_transparent"><ul><li class="slideshow_togglePlay"></li></ul></div>
4
 
1
+ <div class="slideshow_container slideshow_container_<?php echo $styleName; ?>" style="<?php echo (isset($settings['preserveSlideshowDimensions']) && $settings['preserveSlideshowDimensions'] == 'false' && isset($settings['height']) && $settings['height'] > 0) ? 'height: ' . $settings['height'] . 'px;' : ''; ?> <?php echo (isset($settings['maxWidth']) && $settings['maxWidth'] > 0) ? 'max-width: ' . $settings['maxWidth'] . 'px;' : ''; ?>" data-session-id="<?php echo $sessionID; ?>">
2
 
3
  <div class="slideshow_controlPanel slideshow_transparent"><ul><li class="slideshow_togglePlay"></li></ul></div>
4