Changeset 1143459
- Timestamp:
- 04/23/2015 03:53:37 PM (11 years ago)
- Location:
- slideshow-jquery-image-gallery/trunk
- Files:
-
- 45 edited
-
classes/SlideshowPlugin.php (modified) (2 diffs)
-
classes/SlideshowPluginSlideshowStylesheet.php (modified) (5 diffs)
-
js/min/all.frontend.min.js (modified) (1 diff)
-
languages/slideshow-plugin-bg_BG.mo (modified) (previous)
-
languages/slideshow-plugin-bg_BG.po (modified) (3 diffs)
-
languages/slideshow-plugin-cs_CZ.mo (modified) (previous)
-
languages/slideshow-plugin-cs_CZ.po (modified) (3 diffs)
-
languages/slideshow-plugin-de_DE.mo (modified) (previous)
-
languages/slideshow-plugin-de_DE.po (modified) (43 diffs)
-
languages/slideshow-plugin-es_ES.mo (modified) (previous)
-
languages/slideshow-plugin-es_ES.po (modified) (3 diffs)
-
languages/slideshow-plugin-fa_IR.mo (modified) (previous)
-
languages/slideshow-plugin-fa_IR.po (modified) (10 diffs)
-
languages/slideshow-plugin-fi.mo (modified) (previous)
-
languages/slideshow-plugin-fi.po (modified) (3 diffs)
-
languages/slideshow-plugin-fr_FR.mo (modified) (previous)
-
languages/slideshow-plugin-fr_FR.po (modified) (3 diffs)
-
languages/slideshow-plugin-he_IL.mo (modified) (previous)
-
languages/slideshow-plugin-he_IL.po (modified) (3 diffs)
-
languages/slideshow-plugin-it_IT.mo (modified) (previous)
-
languages/slideshow-plugin-it_IT.po (modified) (3 diffs)
-
languages/slideshow-plugin-ja.mo (modified) (previous)
-
languages/slideshow-plugin-ja.po (modified) (3 diffs)
-
languages/slideshow-plugin-nl_NL.mo (modified) (previous)
-
languages/slideshow-plugin-nl_NL.po (modified) (3 diffs)
-
languages/slideshow-plugin-original.mo (modified) (previous)
-
languages/slideshow-plugin-original.po (modified) (3 diffs)
-
languages/slideshow-plugin-pl_PL.mo (modified) (previous)
-
languages/slideshow-plugin-pl_PL.po (modified) (3 diffs)
-
languages/slideshow-plugin-pt_BR.mo (modified) (previous)
-
languages/slideshow-plugin-pt_BR.po (modified) (16 diffs)
-
languages/slideshow-plugin-pt_PT.mo (modified) (previous)
-
languages/slideshow-plugin-pt_PT.po (modified) (3 diffs)
-
languages/slideshow-plugin-ru_RU.mo (modified) (previous)
-
languages/slideshow-plugin-ru_RU.po (modified) (3 diffs)
-
languages/slideshow-plugin-sr_RS.mo (modified) (previous)
-
languages/slideshow-plugin-sr_RS.po (modified) (3 diffs)
-
languages/slideshow-plugin-sv_SE.mo (modified) (previous)
-
languages/slideshow-plugin-sv_SE.po (modified) (3 diffs)
-
languages/slideshow-plugin-tr_TR.mo (modified) (previous)
-
languages/slideshow-plugin-tr_TR.po (modified) (3 diffs)
-
languages/slideshow-plugin-zh_CN.mo (modified) (previous)
-
languages/slideshow-plugin-zh_CN.po (modified) (3 diffs)
-
readme.txt (modified) (3 diffs)
-
slideshow.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
slideshow-jquery-image-gallery/trunk/classes/SlideshowPlugin.php
r778924 r1143459 105 105 106 106 // The slideshow's session ID, allows JavaScript and CSS to distinguish between multiple slideshows 107 $sessionID = self::$sessionCounter ++;107 $sessionID = self::$sessionCounter; 108 108 109 109 // Only enqueue the functional stylesheet when the 'allStylesheetsRegistered' flag is false … … 178 178 ); 179 179 180 self::$sessionCounter++; 181 180 182 // Return output 181 183 return $output; -
slideshow-jquery-image-gallery/trunk/classes/SlideshowPluginSlideshowStylesheet.php
r879367 r1143459 59 59 wp_enqueue_style( 60 60 'slideshow-jquery-image-gallery-ajax-stylesheet_' . $stylesheetKey, 61 admin_url('admin-ajax.php?action=slideshow_jquery_image_gallery_load_stylesheet&style=' . $stylesheetKey ),61 admin_url('admin-ajax.php?action=slideshow_jquery_image_gallery_load_stylesheet&style=' . $stylesheetKey, 'admin'), 62 62 array(), 63 63 $stylesheetValue['version'] … … 81 81 public static function enqueueStylesheet($name = null) 82 82 { 83 $enqueueDynamicStylesheet = true; 84 $version = SlideshowPluginMain::$version; 85 83 86 if (isset($name)) 84 87 { … … 99 102 else 100 103 { 101 $ name = str_replace('.css', '', $name);102 $ version = SlideshowPluginMain::$version;103 } 104 } 105 else 106 { 107 $ name = 'style-light';108 $ version = SlideshowPluginMain::$version;104 $enqueueDynamicStylesheet = false; 105 $name = str_replace('.css', '', $name); 106 } 107 } 108 else 109 { 110 $enqueueDynamicStylesheet = false; 111 $name = 'style-light'; 109 112 } 110 113 111 114 // Enqueue stylesheet 112 wp_enqueue_style( 113 'slideshow-jquery-image-gallery-ajax-stylesheet_' . $name, 114 admin_url('admin-ajax.php?action=slideshow_jquery_image_gallery_load_stylesheet&style=' . $name), 115 array(), 116 $version 117 ); 115 if ($enqueueDynamicStylesheet) 116 { 117 wp_enqueue_style( 118 'slideshow-jquery-image-gallery-ajax-stylesheet_' . $name, 119 admin_url('admin-ajax.php?action=slideshow_jquery_image_gallery_load_stylesheet&style=' . $name, 'admin'), 120 array(), 121 $version 122 ); 123 } 124 else 125 { 126 wp_enqueue_style( 127 'slideshow-jquery-image-gallery-stylesheet_' . $name, 128 SlideshowPluginMain::getPluginUrl() . '/css/' . $name . '.css', 129 array(), 130 $version 131 ); 132 } 118 133 119 134 return array($name, $version); … … 173 188 public static function getStylesheet($styleName) 174 189 { 175 // Get custom stylesheet, of the default stylesheet if the custom stylesheet does not exist 176 $stylesheet = get_option($styleName, ''); 177 178 if (strlen($stylesheet) <= 0) 190 // Get custom style keys 191 $customStyleKeys = array_keys(get_option(SlideshowPluginGeneralSettings::$customStyles, array())); 192 193 // Match $styleName against custom style keys 194 if (in_array($styleName, $customStyleKeys)) 195 { 196 // Get custom stylesheet 197 $stylesheet = get_option($styleName, ''); 198 } 199 else 179 200 { 180 201 $stylesheetFile = SlideshowPluginMain::getPluginPath() . DIRECTORY_SEPARATOR . 'style' . DIRECTORY_SEPARATOR . 'SlideshowPlugin' . DIRECTORY_SEPARATOR . $styleName . '.css'; … … 188 209 ob_start(); 189 210 include($stylesheetFile); 190 $stylesheet .= ob_get_clean();211 $stylesheet = ob_get_clean(); 191 212 } 192 213 -
slideshow-jquery-image-gallery/trunk/js/min/all.frontend.min.js
r885343 r1143459 3 3 !function(){var i=jQuery,t=slideshow_jquery_image_gallery_script;t.Slideshow=function(t){if(t instanceof i&&(this.$container=t,this.$content=this.$container.find(".slideshow_content"),this.$views=this.$container.find(".slideshow_view"),this.$slides=this.$container.find(".slideshow_slide"),this.$controlPanel=this.$container.find(".slideshow_controlPanel"),this.$togglePlayButton=this.$controlPanel.find(".slideshow_togglePlay"),this.$nextButton=this.$container.find(".slideshow_next"),this.$previousButton=this.$container.find(".slideshow_previous"),this.$pagination=this.$container.find(".slideshow_pagination"),this.$loadingIcon=this.$container.find(".slideshow_loading_icon"),this.ID=this.getID(),!isNaN(parseInt(this.ID,10)))){this.settings=window["SlideshowPluginSettings_"+this.ID],i.each(this.settings,i.proxy(function(i,t){"true"==t?this.settings[i]=!0:"false"==t&&(this.settings[i]=!1)},this)),this.$parentElement=this.$container.parent(),this.viewData=[],this.viewIDs=[],this.currentlyAnimating=!1,this.currentViewID=void 0,this.currentWidth=0,this.visibleViews=[],this.videoPlayers=[],this.PlayStates={UNSTARTED:-2,PAUSED:-1,TEMPORARILY_PAUSED:0,PLAYING:1},this.playState=this.PlayStates.UNSTARTED,this.interval=!1,this.pauseOnHoverTimer=!1,this.descriptionTimer=!1,this.randomNextHistoryViewIDs=[],this.randomPreviousHistoryViewIDs=[],this.randomAvailableViewIDs=[],i.each(this.$views,i.proxy(function(i){this.viewIDs.push(i)},this)),this.currentViewID=this.getNextViewID(),this.visibleViews=[this.currentViewID],this.recalculate(!1);var s=i.proxy(function(t){(this.$container.width()<=0||this.$container.height()<=0)&&setTimeout(i.proxy(function(){t(t)},this),500),i.each(this.$views,i.proxy(function(t,s){var e=i(s);t!=this.visibleViews[0]?e.css("top",this.$container.outerHeight(!0)).find("a").attr("tabindex","-1"):e.addClass("slideshow_currentView")},this))},this);s(s);var e=!0;i.each(this.$views,i.proxy(function(t,s){var n=i(s);this.viewData[t]=[],i.each(n.find(".slideshow_slide"),i.proxy(function(s,n){var h=i(n);if(this.viewData[t][s]={},h.hasClass("slideshow_slide_image")){var a=h.find("img");a.length>0?a.get(0).complete?this.viewData[t][s].loaded=1:(t===this.currentViewID&&(e=!1),this.viewData[t][s].loaded=0,this.onImageLoad(a,i.proxy(function(i){this.viewData[t][s].loaded=i?1:2,this.settings.waitUntilLoaded&&t===this.currentViewID&&this.isViewLoaded(t)&&this.start()},this))):this.viewData[t][s].loaded=-1}else this.viewData[t][s].loaded=-1},this))},this)),i(window).load(i.proxy(function(){this.recalculateVisibleViews()},this)),parseFloat(this.settings.intervalSpeed)<parseFloat(this.settings.slideSpeed)+.1&&(this.settings.intervalSpeed=parseFloat(this.settings.slideSpeed)+.1),(!this.settings.waitUntilLoaded||this.settings.waitUntilLoaded&&e)&&this.start()}}}(); 4 4 !function(){var t=jQuery,i=slideshow_jquery_image_gallery_script;i.Slideshow.prototype.start=function(){this.activateDescriptions(),this.activateControlPanel(),this.activateNavigationButtons(),this.activatePagination(),this.activatePauseOnHover(),this.$loadingIcon.length>0&&this.$loadingIcon.remove(),this.$content.show(),this.recalculateViews(),this.settings.enableResponsiveness&&t(window).resize(t.proxy(function(){this.recalculate(!0)},this)),this.playState=this.PlayStates.PAUSED,this.$container.trigger("slideshowPlayStateChange",[this.playState]),this.settings.play&&this.play()},i.Slideshow.prototype.play=function(){this.interval||(this.playState=this.PlayStates.PLAYING,this.$container.trigger("slideshowPlayStateChange",[this.playState]),this.interval=setInterval(t.proxy(function i(e,s){void 0===s&&(s=this),void 0===e&&(e=s.getNextViewID()),s.isViewLoaded(e)?(s.animateTo(e,1),s.play()):(s.pause(this.PlayStates.TEMPORARILY_PAUSED),setTimeout(t.proxy(function(){i(e,s)},s),100))},this),1e3*this.settings.intervalSpeed))},i.Slideshow.prototype.pause=function(t){clearInterval(this.interval),this.interval=!1,t!==this.PlayStates.PAUSED&&t!==this.PlayStates.TEMPORARILY_PAUSED&&(t=this.PlayStates.PAUSED),this.playState=t,this.$container.trigger("slideshowPlayStateChange",[this.playState])},i.Slideshow.prototype.next=function(){this.playState===this.PlayStates.PLAYING&&(this.pause(this.PlayStates.TEMPORARILY_PAUSED),this.play()),this.animateTo(this.getNextViewID(),1)},i.Slideshow.prototype.previous=function(){this.playState===this.PlayStates.PLAYING&&(this.pause(this.PlayStates.TEMPORARILY_PAUSED),this.play()),this.animateTo(this.getPreviousViewID(),-1)},i.Slideshow.prototype.isVideoPlaying=function(){for(var t in this.videoPlayers)if(this.videoPlayers.hasOwnProperty(t)){var i=this.videoPlayers[t].state;if(1==i||3==i)return!0}return!1},i.Slideshow.prototype.pauseAllVideos=function(){for(var t in this.videoPlayers)if(this.videoPlayers.hasOwnProperty(t)){var i=this.videoPlayers[t].player;null!=i&&"function"==typeof i.pauseVideo&&(this.videoPlayers[t].state=2,i.pauseVideo())}},i.Slideshow.prototype.isViewLoaded=function(i){var e=!0;return isNaN(parseInt(i,10))?!1:(t.each(this.viewData[i],t.proxy(function(t,i){0==i.loaded&&(e=!1)},this)),e)},i.Slideshow.prototype.getNaturalImageSize=function(i,e,s){return i.length<=0||!(i instanceof t)||"string"!=typeof i.attr("src")?(e(-1,-1,s),void 0):(this.onImageLoad(i,t.proxy(function(t,i){e(i.width,i.height,s)},this)),void 0)},i.Slideshow.prototype.onImageLoad=function(i,e,s){var a=new Image;return i.length<=0||!(i instanceof t)||"string"!=typeof i.attr("src")?(e(!1,a,s),void 0):(a.onload=t.proxy(function(){e(!0,a,s)},this),a.src=i.attr("src"),void 0)},i.Slideshow.prototype.getNextViewID=function(){var t=this.currentViewID;if(this.settings.random){var i=t;if(t=this.getNextRandomViewID(),t!=i)return t}return isNaN(parseInt(t,10))?0:t>=this.$views.length-1?this.settings.loop?0:this.currentViewID:t+1},i.Slideshow.prototype.getPreviousViewID=function(){var t=this.currentViewID;if(isNaN(parseInt(t,10))&&(t=0),this.settings.random){var i=t;if(t=this.getPreviousRandomViewID(),t!=i)return t}return 0>=t?this.settings.loop?t=this.$views.length-1:this.currentViewID:t-=1},i.Slideshow.prototype.getNextRandomViewID=function(){if(isNaN(parseInt(this.currentViewID,10))||this.randomPreviousHistoryViewIDs.push(this.currentViewID),this.randomPreviousHistoryViewIDs.length>2*this.viewIDs.length&&this.randomPreviousHistoryViewIDs.shift(),this.randomNextHistoryViewIDs.length>0)return this.randomNextHistoryViewIDs.pop();if(void 0===this.randomAvailableViewIDs||this.randomAvailableViewIDs.length<=0){this.randomAvailableViewIDs=t.extend(!0,[],this.viewIDs);var i=t.inArray(this.currentViewID,this.randomAvailableViewIDs);i>=0&&this.randomAvailableViewIDs.splice(i,1)}return this.randomAvailableViewIDs.splice(Math.floor(Math.random()*this.randomAvailableViewIDs.length),1).pop()},i.Slideshow.prototype.getPreviousRandomViewID=function(){return isNaN(parseInt(this.currentViewID,10))||this.randomNextHistoryViewIDs.push(this.currentViewID),this.randomNextHistoryViewIDs.length>2*this.viewIDs.length&&this.randomNextHistoryViewIDs.shift(),this.randomPreviousHistoryViewIDs.length>0?this.randomPreviousHistoryViewIDs.pop():this.viewIDs[Math.floor(Math.random()*this.viewIDs.length)]},i.Slideshow.prototype.getID=function(){var t=this.$container.data("sessionId");return isNaN(parseInt(t,10))&&(t=this.$container.attr("data-session-id")),t},i.Slideshow.prototype.bindSubmitListener=function(i){i.keypress(t.proxy(function(i){var e=i.keyCode||i.which;13===e&&(i.preventDefault(),t(i.currentTarget).click())},this))}}(); 5 !function(){var e=jQuery,t=slideshow_jquery_image_gallery_script;t.Slideshow.prototype.animateTo=function(t, i){if(!(this.isVideoPlaying()||0>t||t>=this.$views.length||t==this.currentViewID)){if(this.currentlyAnimating===!0)return this.$container.one("slideshowAnimationEnd",e.proxy(function(){this.playState===this.PlayStates.PLAYING&&(this.pause(this.PlayStates.TEMPORARILY_PAUSED),this.play()),this.animateTo(t,i)},this)),void 0;this.currentlyAnimating=!0,(isNaN(parseInt(i,10))||0==i)&&(i=t<this.currentViewID?-1:1),this.visibleViews=[this.currentViewID,t];var s=this.settings.animation,n=["slide","slideRight","slideUp","slideDown","fade","directFade"];"random"==s&&(s=n[Math.floor(Math.random()*n.length)]);var o={slide:"slideRight",slideRight:"slide",slideUp:"slideDown",slideDown:"slideUp",fade:"fade",directFade:"directFade"};0>i&&(s=o[s]);var d=e(this.$views[this.currentViewID]),a=e(this.$views[t]);switch(d.stop(!0,!0),a.stop(!0,!0),a.addClass("slideshow_nextView"),this.recalculateVisibleViews(),this.currentViewID=t,this.$container.trigger("slideshowAnimationStart",[t,s,i]),s){case"slide":a.css({top:0,left:this.$content.width()}),d.animate({left:-d.outerWidth(!0)},1e3*this.settings.slideSpeed),a.animate({left:0},1e3*this.settings.slideSpeed),setTimeout(e.proxy(function(){d.stop(!0,!0).css("top",this.$container.outerHeight(!0))},this),1e3*this.settings.slideSpeed);break;case"slideRight":a.css({top:0,left:-this.$content.width()}),d.animate({left:d.outerWidth(!0)},1e3*this.settings.slideSpeed),a.animate({left:0},1e3*this.settings.slideSpeed),setTimeout(e.proxy(function(){d.stop(!0,!0).css("top",this.$container.outerHeight(!0))},this),1e3*this.settings.slideSpeed);break;case"slideUp":a.css({top:this.$content.height(),left:0}),d.animate({top:-d.outerHeight(!0)},1e3*this.settings.slideSpeed),a.animate({top:0},1e3*this.settings.slideSpeed),setTimeout(e.proxy(function(){d.stop(!0,!0).css("top",this.$container.outerHeight(!0))},this),1e3*this.settings.slideSpeed);break;case"slideDown":a.css({top:-this.$content.height(),left:0}),d.animate({top:d.outerHeight(!0)},1e3*this.settings.slideSpeed),a.animate({top:0},1e3*this.settings.slideSpeed),setTimeout(e.proxy(function(){d.stop(!0,!0).css("top",this.$container.outerHeight(!0))},this),1e3*this.settings.slideSpeed);break;case"fade":a.css({top:0,left:0,display:"none"}),d.fadeOut(1e3*this.settings.slideSpeed/2),setTimeout(e.proxy(function(){a.fadeIn(1e3*this.settings.slideSpeed/2),d.stop(!0,!0).css({top:this.$container.outerHeight(!0),display:"block"})},this),1e3*this.settings.slideSpeed/2);break;case"directFade":a.css({top:0,left:0,"z-index":0,display:"none"}),d.css({"z-index":1}),a.stop(!0,!0).fadeIn(1e3*this.settings.slideSpeed),d.stop(!0,!0).fadeOut(1e3*this.settings.slideSpeed),setTimeout(e.proxy(function(){a.stop(!0,!0).css({"z-index":0}),d.stop(!0,!0).css({top:this.$container.outerHeight(!0),display:"block","z-index":0})},this),1e3*this.settings.slideSpeed);break;case"crossFade":a.css({top:0,left:0,"z-index":1,display:"none"}),d.css({"z-index":0}),a.stop(!0,!0).fadeIn(1e3*this.settings.slideSpeed),setTimeout(e.proxy(function(){d.css({top:this.$container.outerHeight(!0)}),a.css({"z-index":1})},this),1e3*this.settings.slideSpeed)}setTimeout(e.proxy(function(){d.removeClass("slideshow_currentView").find("a").attr("tabindex","-1"),a.removeClass("slideshow_nextView"),a.addClass("slideshow_currentView").find("a").attr("tabindex","0"),this.visibleViews=[t],this.currentlyAnimating=!1,this.$container.trigger("slideshowAnimationEnd")},this),1e3*this.settings.slideSpeed)}}}();6 !function(){var t=jQuery,i=slideshow_jquery_image_gallery_script;i.Slideshow.prototype.recalculate=function(i){if(!this.$container.is(":visible"))return setTimeout(t.proxy(function(){this.recalculate(i)},this),500),void 0;for(var e=this.$parentElement,h=0;e.width()<=0&&(e=e.parent(),!(h>50));h++);if(this.currentWidth!=e.width()){this.currentWidth=e.width();var s=e.width()-(this.$container.outerWidth()-this.$container.width());if(parseInt(this.settings.maxWidth,10)>0&&parseInt(this.settings.maxWidth,10)<s&&(s=parseInt(this.settings.maxWidth,10)),this.$container.css("width",Math. floor(s)),this.$content.css("width",Math.floor(s)-(this.$content.outerWidth(!0)-this.$content.width())),this.settings.preserveSlideshowDimensions){var o=s*this.settings.dimensionHeight/this.settings.dimensionWidth;this.$container.css("height",Math.floor(o)),this.$content.css("height",Math.floor(o)-(this.$content.outerHeight(!0)-this.$content.height()))}else this.$container.css("height",Math.floor(this.settings.height)),this.$content.css("height",Math.floor(this.settings.height));this.$views.each(t.proxy(function(i,e){t.inArray(i,this.visibleViews)<0&&t(e).css("top",this.$container.outerHeight(!0))},this)),this.$container.trigger("slideshowResize"),(i||"boolean"!=typeof i)&&this.recalculateVisibleViews()}},i.Slideshow.prototype.recalculateViews=function(){t.each(this.$views,t.proxy(function(t){this.recalculateView(t,!1)},this))},i.Slideshow.prototype.recalculateVisibleViews=function(){t.each(this.visibleViews,t.proxy(function(t,i){this.recalculateView(i,!1)},this))},i.Slideshow.prototype.recalculateView=function(e,h){if(this.$content.width()<=0||this.$content.height()<=0)return setTimeout(t.proxy(function(){this.recalculateView(e,h)},this),500),void 0;var s=t(this.$views[e]);if("boolean"==typeof h&&h||this.$content.width()!=s.outerWidth(!0)){var o=s.find(".slideshow_slide");if(!(o.length<=0)){var r=this.$content.width()-(s.outerWidth(!0)-s.width()),a=this.$content.height()-(s.outerHeight(!0)-s.height()),n=Math.floor(r/o.length),d=a,l=r%o.length,c=0;t(o[0]).css("margin-left",0),t(o[o.length-1]).css("margin-right",0),t.each(o,t.proxy(function(h,s){var r=t(s),a=r.outerWidth(!0)-r.width(),g=r.outerHeight(!0)-r.height();if(h==o.length-1?r.width(n-a+l):r.width(n-a),r.height(d-g),r.hasClass("slideshow_slide_text")){var w=r.find(".slideshow_background_anchor");if(w.length<=0)return;var u=r.width()-(w.outerWidth(!0)-w.width()),f=r.height()-(w.outerHeight(!0)-w.height());w.css({width:u,height:f})}else if(r.hasClass("slideshow_slide_image")){var v=r.find("img");if(v.length<=0)return;var p,m,y=v.outerWidth(),$=v.outerHeight();p=isNaN(parseInt(y,10))?0:y-v.width(),m=isNaN(parseInt($,10))?0:$-v.height();var _=r.width()-p,x=r.height()-m;"stretch"===this.settings.imageBehaviour?(v.css({width:_,height:x}),v.attr({width:_,height:x})):this.getNaturalImageSize(v,t.proxy(function(i,h){var s,o;return 0>=i||0>=h?(setTimeout(t.proxy(function(){this.recalculateView(e,!0)},this),500),void 0):(s=r.width()/r.height(),o=(i+p)/(h+m),o>=s?"natural"===this.settings.imageBehaviour?(v.css({margin:"0px",width:_,height:Math.floor(_/o)}),v.attr({width:_,height:Math.floor(_/o)})):"crop"===this.settings.imageBehaviour&&(v.css({"margin-top":"0px","margin-left":-Math.floor((x*o-_)/2),height:x,width:Math.floor(x*o)}),v.attr({width:Math.floor(x*o),height:x})):"natural"===this.settings.imageBehaviour?(v.css({"margin-left":"auto","margin-right":"auto",display:"block",width:Math.floor(x*o),height:x}),v.attr({width:Math.floor(x*o),height:x})):"crop"===this.settings.imageBehaviour&&(v.css({"margin-top":-Math.floor((_/o-x)/2),"margin-left":"0px",width:_,height:Math.floor(_/o)}),v.attr({width:_,height:Math.floor(_/o)})),void 0)},this))}else if(r.hasClass("slideshow_slide_video")){var M=r.find("iframe");if(M.length>0)M.attr({width:r.width(),height:r.height()});else var W=setInterval(t.proxy(function(){if(i.youTubeAPIReady){clearInterval(W);var e=r.find(".slideshow_slide_video_id");e.attr("id","slideshow_slide_video_"+Math.floor(1e6*Math.random())+"_"+e.text());var h=e.attr("data-show-related-videos"),s=new YT.Player(e.attr("id"),{width:r.width(),height:r.height(),videoId:e.text(),playerVars:{wmode:"opaque",rel:h},events:{onReady:function(){},onStateChange:t.proxy(function(t){this.videoPlayers[e.attr("id")].state=t.data},this)}}),o=t("#"+e.attr("id"));o.show(),o.attr("src",o.attr("src")+"&wmode=opaque"),this.videoPlayers[e.attr("id")]={player:s,state:-1}}},this),500)}c+=r.outerWidth(!0)},this)),s.css({width:r,height:a})}}}}();5 !function(){var e=jQuery,t=slideshow_jquery_image_gallery_script;t.Slideshow.prototype.animateTo=function(t,s){if(!(this.isVideoPlaying()||0>t||t>=this.$views.length||t==this.currentViewID)){if(this.currentlyAnimating===!0)return this.$container.one("slideshowAnimationEnd",e.proxy(function(){this.playState===this.PlayStates.PLAYING&&(this.pause(this.PlayStates.TEMPORARILY_PAUSED),this.play()),this.animateTo(t,s)},this)),void 0;this.currentlyAnimating=!0,(isNaN(parseInt(s,10))||0==s)&&(s=t<this.currentViewID?-1:1),this.visibleViews=[this.currentViewID,t];var i=this.settings.animation,n=["slide","slideRight","slideUp","slideDown","fade","directFade"];"random"==i&&(i=n[Math.floor(Math.random()*n.length)]);var o={slide:"slideRight",slideRight:"slide",slideUp:"slideDown",slideDown:"slideUp",fade:"fade",directFade:"directFade",crossFade:"crossFade"};0>s&&(i=o[i]);var d=e(this.$views[this.currentViewID]),a=e(this.$views[t]);switch(d.stop(!0,!0),a.stop(!0,!0),a.addClass("slideshow_nextView"),this.recalculateVisibleViews(),this.currentViewID=t,this.$container.trigger("slideshowAnimationStart",[t,i,s]),i){case"slide":a.css({top:0,left:this.$content.width()}),d.animate({left:-d.outerWidth(!0)},1e3*this.settings.slideSpeed),a.animate({left:0},1e3*this.settings.slideSpeed),setTimeout(e.proxy(function(){d.stop(!0,!0).css("top",this.$container.outerHeight(!0))},this),1e3*this.settings.slideSpeed);break;case"slideRight":a.css({top:0,left:-this.$content.width()}),d.animate({left:d.outerWidth(!0)},1e3*this.settings.slideSpeed),a.animate({left:0},1e3*this.settings.slideSpeed),setTimeout(e.proxy(function(){d.stop(!0,!0).css("top",this.$container.outerHeight(!0))},this),1e3*this.settings.slideSpeed);break;case"slideUp":a.css({top:this.$content.height(),left:0}),d.animate({top:-d.outerHeight(!0)},1e3*this.settings.slideSpeed),a.animate({top:0},1e3*this.settings.slideSpeed),setTimeout(e.proxy(function(){d.stop(!0,!0).css("top",this.$container.outerHeight(!0))},this),1e3*this.settings.slideSpeed);break;case"slideDown":a.css({top:-this.$content.height(),left:0}),d.animate({top:d.outerHeight(!0)},1e3*this.settings.slideSpeed),a.animate({top:0},1e3*this.settings.slideSpeed),setTimeout(e.proxy(function(){d.stop(!0,!0).css("top",this.$container.outerHeight(!0))},this),1e3*this.settings.slideSpeed);break;case"fade":a.css({top:0,left:0,display:"none"}),d.fadeOut(1e3*this.settings.slideSpeed/2),setTimeout(e.proxy(function(){a.fadeIn(1e3*this.settings.slideSpeed/2),d.stop(!0,!0).css({top:this.$container.outerHeight(!0),display:"block"})},this),1e3*this.settings.slideSpeed/2);break;case"directFade":a.css({top:0,left:0,"z-index":0,display:"none"}),d.css({"z-index":1}),a.stop(!0,!0).fadeIn(1e3*this.settings.slideSpeed),d.stop(!0,!0).fadeOut(1e3*this.settings.slideSpeed),setTimeout(e.proxy(function(){a.stop(!0,!0).css({"z-index":0}),d.stop(!0,!0).css({top:this.$container.outerHeight(!0),display:"block","z-index":0})},this),1e3*this.settings.slideSpeed);break;case"crossFade":a.css({top:0,left:0,"z-index":1,display:"none"}),d.css({"z-index":0}),a.stop(!0,!0).fadeIn(1e3*this.settings.slideSpeed),setTimeout(e.proxy(function(){d.css({top:this.$container.outerHeight(!0)}),a.css({"z-index":1})},this),1e3*this.settings.slideSpeed)}setTimeout(e.proxy(function(){d.removeClass("slideshow_currentView").find("a").attr("tabindex","-1"),a.removeClass("slideshow_nextView"),a.addClass("slideshow_currentView").find("a").attr("tabindex","0"),this.visibleViews=[t],this.currentlyAnimating=!1,this.$container.trigger("slideshowAnimationEnd")},this),1e3*this.settings.slideSpeed)}}}(); 6 !function(){var t=jQuery,i=slideshow_jquery_image_gallery_script;i.Slideshow.prototype.recalculate=function(i){if(!this.$container.is(":visible"))return setTimeout(t.proxy(function(){this.recalculate(i)},this),500),void 0;for(var e=this.$parentElement,h=0;e.width()<=0&&(e=e.parent(),!(h>50));h++);if(this.currentWidth!=e.width()){this.currentWidth=e.width();var s=e.width()-(this.$container.outerWidth()-this.$container.width());if(parseInt(this.settings.maxWidth,10)>0&&parseInt(this.settings.maxWidth,10)<s&&(s=parseInt(this.settings.maxWidth,10)),this.$container.css("width",Math.round(s)),this.$content.css("width",Math.round(s)-(this.$content.outerWidth(!0)-this.$content.width())),this.settings.preserveSlideshowDimensions){var r=s*this.settings.dimensionHeight/this.settings.dimensionWidth;this.$container.css("height",Math.round(r)),this.$content.css("height",Math.round(r)-(this.$content.outerHeight(!0)-this.$content.height()))}else this.$container.css("height",Math.round(this.settings.height)),this.$content.css("height",Math.round(this.settings.height));this.$views.each(t.proxy(function(i,e){t.inArray(i,this.visibleViews)<0&&t(e).css("top",this.$container.outerHeight(!0))},this)),this.$container.trigger("slideshowResize"),(i||"boolean"!=typeof i)&&this.recalculateVisibleViews()}},i.Slideshow.prototype.recalculateViews=function(){t.each(this.$views,t.proxy(function(t){this.recalculateView(t,!1)},this))},i.Slideshow.prototype.recalculateVisibleViews=function(){t.each(this.visibleViews,t.proxy(function(t,i){this.recalculateView(i,!1)},this))},i.Slideshow.prototype.recalculateView=function(e,h){if(this.$content.width()<=0||this.$content.height()<=0)return setTimeout(t.proxy(function(){this.recalculateView(e,h)},this),500),void 0;var s=t(this.$views[e]);if("boolean"==typeof h&&h||this.$content.width()!=s.outerWidth(!0)){var r=s.find(".slideshow_slide");if(!(r.length<=0)){var a=this.$content.width()-(s.outerWidth(!0)-s.width()),o=this.$content.height()-(s.outerHeight(!0)-s.height()),n=Math.floor(a/r.length),d=o,l=a%r.length,c=0;t(r[0]).css("margin-left",0),t(r[r.length-1]).css("margin-right",0),t.each(r,t.proxy(function(h,s){var a=t(s),o=a.outerWidth(!0)-a.width(),g=a.outerHeight(!0)-a.height();if(h==r.length-1?a.width(n-o+l):a.width(n-o),a.height(d-g),a.hasClass("slideshow_slide_text")){var u=a.find(".slideshow_background_anchor");if(u.length<=0)return;var w=a.width()-(u.outerWidth(!0)-u.width()),f=a.height()-(u.outerHeight(!0)-u.height());u.css({width:w,height:f})}else if(a.hasClass("slideshow_slide_image")){var v=a.find("img");if(v.length<=0)return;var p,m,y=v.outerWidth(),$=v.outerHeight();p=isNaN(parseInt(y,10))?0:y-v.width(),m=isNaN(parseInt($,10))?0:$-v.height();var _=a.width()-p,x=a.height()-m;"stretch"===this.settings.imageBehaviour?(v.css({width:_,height:x}),v.attr({width:_,height:x})):this.getNaturalImageSize(v,t.proxy(function(i,h){var s,r;return 0>=i||0>=h?(setTimeout(t.proxy(function(){this.recalculateView(e,!0)},this),500),void 0):(s=a.width()/a.height(),r=(i+p)/(h+m),r>=s?"natural"===this.settings.imageBehaviour?(v.css({margin:"0px",width:_,height:Math.floor(_/r)}),v.attr({width:_,height:Math.floor(_/r)})):"crop"===this.settings.imageBehaviour&&(v.css({"margin-top":"0px","margin-left":-Math.floor((x*r-_)/2),height:x,width:Math.floor(x*r)}),v.attr({width:Math.floor(x*r),height:x})):"natural"===this.settings.imageBehaviour?(v.css({"margin-left":"auto","margin-right":"auto",display:"block",width:Math.floor(x*r),height:x}),v.attr({width:Math.floor(x*r),height:x})):"crop"===this.settings.imageBehaviour&&(v.css({"margin-top":-Math.floor((_/r-x)/2),"margin-left":"0px",width:_,height:Math.floor(_/r)}),v.attr({width:_,height:Math.floor(_/r)})),void 0)},this))}else if(a.hasClass("slideshow_slide_video")){var M=a.find("iframe");if(M.length>0)M.attr({width:a.width(),height:a.height()});else var W=setInterval(t.proxy(function(){if(i.youTubeAPIReady){clearInterval(W);var e=a.find(".slideshow_slide_video_id");e.attr("id","slideshow_slide_video_"+Math.floor(1e6*Math.random())+"_"+e.text());var h=e.attr("data-show-related-videos"),s=new YT.Player(e.attr("id"),{width:a.width(),height:a.height(),videoId:e.text(),playerVars:{wmode:"opaque",rel:h},events:{onReady:function(){},onStateChange:t.proxy(function(t){this.videoPlayers[e.attr("id")].state=t.data},this)}}),r=t("#"+e.attr("id"));r.show(),r.attr("src",r.attr("src")+"&wmode=opaque"),this.videoPlayers[e.attr("id")]={player:s,state:-1}}},this),500)}c+=a.outerWidth(!0)},this)),s.css({width:a,height:o})}}}}(); 7 7 !function(){var t=jQuery,i=slideshow_jquery_image_gallery_script;i.Slideshow.prototype.activateDescriptions=function(){this.settings.showDescription&&(t.each(this.$slides.find(".slideshow_description_box"),t.proxy(function(i,s){var e=t(s);e.show(),this.settings.hideDescription?e.css({position:"absolute",top:this.$container.outerHeight(!0)}):e.css({position:"absolute",bottom:0})},this)),this.settings.hideDescription&&(this.$container.bind("slideshowResize",t.proxy(function(){t.each(this.$container.find(".slideshow_description_box"),t.proxy(function(i,s){t(s).css("top",this.$container.outerHeight(!0))},this))},this)),this.$container.bind("slideshowAnimationStart",t.proxy(function(){void 0!=this.visibleViews[1]&&t.each(t(this.$views[this.visibleViews[1]]).find(".slideshow_description_box"),t.proxy(function(i,s){t(s).css("top",this.$container.outerHeight(!0))},this))},this)),this.$slides.mouseenter(t.proxy(function(i){var s=t(i.currentTarget).find(".slideshow_description_box");this.descriptionTimer=setTimeout(t.proxy(function(){this.descriptionTimer="",s.stop(!0,!1).animate({top:this.$container.outerHeight(!0)-s.outerHeight(!0)},parseInt(1e3*this.settings.descriptionSpeed,10))},this),200)},this)),this.$slides.mouseleave(t.proxy(function(i){this.descriptionTimer!==!1&&(clearInterval(this.descriptionTimer),this.descriptionTimer=!1),t(i.currentTarget).find(".slideshow_description_box").stop(!0,!1).animate({top:this.$container.outerHeight(!0)},parseInt(1e3*this.settings.descriptionSpeed,10))},this))))},i.Slideshow.prototype.activateNavigationButtons=function(){var i,s;this.settings.controllable&&(i=this.$nextButton.data("nextText"),s=this.$previousButton.data("previousText"),("string"!=typeof i||"string"!=typeof s||i.length<=0||s.length<=0)&&(i=this.$nextButton.attr("data-next-text"),s=this.$previousButton.attr("data-previous-text")),this.$nextButton.html('<span class="assistive-text hide-text">'+i+"</span>").attr({tabindex:"0",title:i}),this.$previousButton.html('<span class="assistive-text hide-text">'+s+"</span>").attr({tabindex:"0",title:s}),this.$nextButton.click(t.proxy(function(){this.currentlyAnimating||(this.pauseAllVideos(),this.playState===this.PlayStates.PLAYING&&(this.pause(this.PlayStates.TEMPORARILY_PAUSED),this.play()),this.animateTo(this.getNextViewID(),1))},this)),this.$previousButton.click(t.proxy(function(){this.currentlyAnimating||(this.pauseAllVideos(),this.playState===this.PlayStates.PLAYING&&(this.pause(this.PlayStates.TEMPORARILY_PAUSED),this.play()),this.animateTo(this.getPreviousViewID(),-1))},this)),this.bindSubmitListener(this.$nextButton),this.bindSubmitListener(this.$previousButton),this.settings.hideNavigationButtons?(this.$container.mouseenter(t.proxy(function(){this.$nextButton.stop(!0,!0).fadeIn(100)},this)),this.$container.mouseleave(t.proxy(function(){this.$nextButton.stop(!0,!0).fadeOut(500)},this)),this.$container.mouseenter(t.proxy(function(){this.$previousButton.stop(!0,!0).fadeIn(100)},this)),this.$container.mouseleave(t.proxy(function(){this.$previousButton.stop(!0,!0).fadeOut(500)},this))):(this.$nextButton.show(),this.$previousButton.show()))},i.Slideshow.prototype.activateControlPanel=function(){this.settings.controlPanel&&(this.$togglePlayButton.attr("tabindex","0"),this.$container.bind("slideshowPlayStateChange",t.proxy(function(t,i){var s,e;this.$togglePlayButton.attr("role","button"),s=this.$togglePlayButton.data("playText"),e=this.$togglePlayButton.data("pauseText"),("string"!=typeof s||"string"!=typeof e||s.length<=0||e.length<=0)&&(s=this.$nextButton.attr("data-play-text"),e=this.$previousButton.attr("data-pause-text")),i===this.PlayStates.PLAYING?this.$togglePlayButton.html('<span class="assistive-text hide-text">'+e+"</span>").attr({"class":"slideshow_pause",title:e}):i===this.PlayStates.PAUSED&&this.$togglePlayButton.html('<span class="assistive-text hide-text">'+s+"</span>").attr({"class":"slideshow_play",title:s})},this)),this.$togglePlayButton.click(t.proxy(function(i){var s=t(i.currentTarget);s.hasClass("slideshow_play")?this.play():this.pause(this.PlayStates.PAUSED)},this)),this.bindSubmitListener(this.$togglePlayButton),this.settings.hideControlPanel?(this.$container.mouseenter(t.proxy(function(){this.$controlPanel.stop(!0,!0).fadeIn(100)},this)),this.$container.mouseleave(t.proxy(function(){this.$controlPanel.stop(!0,!0).fadeOut(500)},this))):this.$controlPanel.show())},i.Slideshow.prototype.activatePagination=function(){if(this.settings.showPagination){this.$pagination.find(".slideshow_pagination_center").html("<ul></ul>");var i=this.$pagination.find("ul");i.html(""),this.$views.each(t.proxy(function(t){var s="",e=parseInt(t,10)+1,n=this.$pagination.data("goToText");("string"!=typeof n||n.length<=0)&&(n=this.$pagination.attr("data-go-to-text")),t==this.currentViewID&&(s="slideshow_currentView"),i.append('<li class="slideshow_transparent '+s+'" data-view-id="'+t+'" role="button" title="'+n+" "+e+'"><span class="assistive-text hide-text">'+n+" "+e+"</span></li>")},this)),this.$pagination.find("li").attr("tabindex","0").click(t.proxy(function(i){var s,e=t(i.currentTarget);this.currentlyAnimating||(s=e.data("viewId"),isNaN(parseInt(s,10))&&(s=e.attr("data-view-id"),isNaN(parseInt(s,10)))||(this.pauseAllVideos(),this.playState===this.PlayStates.PLAYING&&(this.pause(this.PlayStates.TEMPORARILY_PAUSED),this.play()),this.animateTo(parseInt(s,10),0)))},this)),this.bindSubmitListener(this.$pagination.find("li")),this.$container.bind("slideshowAnimationStart",t.proxy(function(){var i=this.$pagination.find("li");i.each(t.proxy(function(i,s){t(s).removeClass("slideshow_currentView")},this)),t(i[this.currentViewID]).addClass("slideshow_currentView")},this)),this.settings.hidePagination?(this.$container.mouseenter(t.proxy(function(){this.$pagination.stop(!0,!0).fadeIn(100)},this)),this.$container.mouseleave(t.proxy(function(){this.$pagination.stop(!0,!0).fadeOut(500)},this))):this.$pagination.show()}},i.Slideshow.prototype.activatePauseOnHover=function(){this.settings.pauseOnHover&&(this.$container.mouseenter(t.proxy(function(){clearTimeout(this.pauseOnHoverTimer),this.playState!==this.PlayStates.PAUSED&&(this.pauseOnHoverTimer=setTimeout(t.proxy(function(){this.pause(this.PlayStates.TEMPORARILY_PAUSED)},this),500))},this)),this.$container.mouseleave(t.proxy(function(){clearTimeout(this.pauseOnHoverTimer),this.playState!==this.PlayStates.PAUSED&&this.interval===!1&&this.play()},this)))}}(); 8 8 slideshow_jquery_image_gallery_backend_script_scriptsloadedFlag=!0; -
slideshow-jquery-image-gallery/trunk/languages/slideshow-plugin-bg_BG.po
r879367 r1143459 1 1 msgid "" 2 2 msgstr "" 3 "Project-Id-Version: Slideshow v2.2.19\n"3 "Project-Id-Version: Slideshow Plugin\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2014-0 3-19 20:31+0100\n"6 "PO-Revision-Date: 2014-0 3-19 20:31+0100\n"5 "POT-Creation-Date: 2014-08-19 11:47+0100\n" 6 "PO-Revision-Date: 2014-08-19 11:49+0100\n" 7 7 "Last-Translator: admin <[email protected]>\n" 8 8 "Language-Team: \n" … … 12 12 "Content-Transfer-Encoding: 8bit\n" 13 13 "Plural-Forms: nplurals=2; plural=n != 1;\n" 14 "X-Generator: Poedit 1.6.4\n" 15 "X-Poedit-SourceCharset: utf-8\n" 16 "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" 17 "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n" 14 "X-Generator: Poedit 1.5.7\n" 15 "X-Poedit-SourceCharset: UTF-8\n" 16 "X-Poedit-KeywordsList: __;_e\n" 18 17 "X-Poedit-Basepath: ../\n" 19 18 "X-Textdomain-Support: yes\n" … … 504 503 msgstr "Прехвърляй кадрите надолу" 505 504 505 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 506 msgid "Cross Fade" 507 msgstr "" 508 506 509 # @ slideshow-plugin 507 510 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 -
slideshow-jquery-image-gallery/trunk/languages/slideshow-plugin-cs_CZ.po
r879367 r1143459 3 3 "Project-Id-Version: Slideshow Plugin\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2014-0 3-19 20:31+0100\n"6 "PO-Revision-Date: 2014-0 3-19 20:31+0100\n"5 "POT-Creation-Date: 2014-08-19 11:49+0100\n" 6 "PO-Revision-Date: 2014-08-19 11:50+0100\n" 7 7 "Last-Translator: \n" 8 8 "Language-Team: Stefan Boonstra <[email protected]>\n" … … 13 13 "X-Poedit-KeywordsList: _e;__\n" 14 14 "X-Poedit-Basepath: ../\n" 15 "X-Generator: Poedit 1. 6.4\n"15 "X-Generator: Poedit 1.5.7\n" 16 16 "X-Poedit-SourceCharset: UTF-8\n" 17 17 "X-Poedit-SearchPath-0: .\n" … … 415 415 416 416 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 417 msgid "Cross Fade" 418 msgstr "" 419 420 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 417 421 msgid "Direct Fade" 418 422 msgstr "Přímé prolnutí" -
slideshow-jquery-image-gallery/trunk/languages/slideshow-plugin-de_DE.po
r879367 r1143459 3 3 "Project-Id-Version: Slideshow Plugin\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2014-0 3-19 20:32+0100\n"6 "PO-Revision-Date: 2014-0 3-19 20:32+0100\n"7 "Last-Translator: Markus Amann <[email protected]>\n"5 "POT-Creation-Date: 2014-08-19 11:52+0100\n" 6 "PO-Revision-Date: 2014-08-19 11:53+0100\n" 7 "Last-Translator: \n" 8 8 "Language-Team: Stefan Boonstra <[email protected]>\n" 9 9 "Language: de_DE\n" … … 13 13 "X-Poedit-KeywordsList: _e;__\n" 14 14 "X-Poedit-Basepath: ../\n" 15 "X-Generator: Poedit 1. 6.4\n"15 "X-Generator: Poedit 1.5.7\n" 16 16 "X-Poedit-SearchPath-0: .\n" 17 17 … … 28 28 #: classes/SlideshowPluginGeneralSettings.php:151 29 29 msgid "Are you sure you want to delete this custom style?" 30 msgstr "Sind Sie sicher, dass Sie dieses standard Layout löschen möchten?" 30 msgstr "" 31 "Sind Sie sicher, dass Sie dieses benutzerdefinierte Layout löschen möchten?" 31 32 32 33 #: classes/SlideshowPluginGeneralSettings.php:196 … … 65 66 #: classes/SlideshowPluginSlideshowSettingsHandler.php:610 66 67 msgid "The style used for this slideshow" 67 msgstr "Das Layout dieser Diashow"68 msgstr "Das Layout dieser Slideshow" 68 69 69 70 #: classes/SlideshowPluginInstaller.php:803 70 71 msgid "Custom" 71 msgstr " Standard"72 msgstr "Benutzerdefiniert" 72 73 73 74 #: classes/SlideshowPluginInstaller.php:804 74 75 #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:126 75 76 msgid "Custom style editor" 76 msgstr " Standard Layout Editor"77 msgstr "Editor für benutzerdefiniertes Layout" 77 78 78 79 #: classes/SlideshowPluginInstaller.php:805 79 80 #: classes/SlideshowPluginSlideshowSettingsHandler.php:518 80 81 msgid "Animation used for transition between slides" 81 msgstr " gewählte Animation zwischen den Dias"82 msgstr "Animation für den Übergang zwischen den Bildern" 82 83 83 84 #: classes/SlideshowPluginInstaller.php:805 84 85 msgid "Slide" 85 msgstr " Dia"86 msgstr "Bild" 86 87 87 88 #: classes/SlideshowPluginInstaller.php:805 88 89 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 89 90 msgid "Fade" 90 msgstr " verblassen"91 msgstr "Überblenden (Fade)" 91 92 92 93 #: classes/SlideshowPluginInstaller.php:805 … … 99 100 #: classes/SlideshowPluginSlideshowSettingsHandler.php:550 100 101 msgid "Animation" 101 msgstr "Animation "102 msgstr "Animations-" 102 103 103 104 #: classes/SlideshowPluginInstaller.php:806 104 105 #: classes/SlideshowPluginSlideshowSettingsHandler.php:519 105 106 msgid "Number of seconds the slide takes to slide in" 106 msgstr "Zeit in sec. für das Hineingleiten des Dias"107 msgstr "Zeit in sec. für das Hineingleiten des Bildes" 107 108 108 109 #: classes/SlideshowPluginInstaller.php:807 … … 114 115 #: classes/SlideshowPluginSlideshowSettingsHandler.php:521 115 116 msgid "Seconds between changing slides" 116 msgstr "Zeit in sec. für das Wechseln der Dias"117 msgstr "Zeit in sec. für das Wechseln der Bilder" 117 118 118 119 #: classes/SlideshowPluginInstaller.php:809 119 120 #: classes/SlideshowPluginSlideshowSettingsHandler.php:522 120 121 msgid "Number of slides to fit into one slide" 121 msgstr "Anzahl einzel Dias pro Diafläche"122 msgstr "Anzahl der Bilder innerhalb einer Slideshow" 122 123 123 124 #: classes/SlideshowPluginInstaller.php:809 … … 138 139 #: classes/SlideshowPluginSlideshowSettingsHandler.php:559 139 140 msgid "Display" 140 msgstr "Anzeige "141 msgstr "Anzeige-" 141 142 142 143 #: classes/SlideshowPluginInstaller.php:810 143 144 msgid "Width of the slideshow, set to parent's width on 0" 144 msgstr "Breite der Diashow, Standard = 0"145 msgstr "Breite der Slideshow, Standard = 0" 145 146 146 147 #: classes/SlideshowPluginInstaller.php:811 147 148 msgid "Height of the slideshow" 148 msgstr "Höhe der Diashow"149 msgstr "Höhe der Slideshow" 149 150 150 151 #: classes/SlideshowPluginInstaller.php:812 … … 154 155 #: classes/SlideshowPluginInstaller.php:813 155 156 msgid "Fit image into slide (stretching it)" 156 msgstr " Dia passend aufzoomen entsprechend der Vorgabe"157 msgstr "Bild entsprechend der Vorgabe strecken" 157 158 158 159 #: classes/SlideshowPluginInstaller.php:814 … … 168 169 #: classes/SlideshowPluginSlideshowSettingsHandler.php:531 169 170 msgid "Automatically slide to the next slide" 170 msgstr " automatisch weiter zum nächsten Dia"171 msgstr "Automatisch weiter zum nächsten Bild" 171 172 172 173 #: classes/SlideshowPluginInstaller.php:816 … … 184 185 #: classes/SlideshowPluginSlideshowSettingsHandler.php:568 185 186 msgid "Control" 186 msgstr "Kon sole"187 msgstr "Kontroll-" 187 188 188 189 #: classes/SlideshowPluginInstaller.php:817 189 190 #: classes/SlideshowPluginSlideshowSettingsHandler.php:532 190 191 msgid "Return to the beginning of the slideshow after last slide" 191 msgstr " zum Anfang der Diashow zurückkehren nach dem letzten Dia"192 msgstr "Zum Anfang der Slideshow zurückkehren nach dem letzten Bild" 192 193 193 194 #: classes/SlideshowPluginInstaller.php:818 194 195 msgid "Activate buttons (so the user can scroll through the slides)" 195 196 msgstr "" 196 "Kontrollknöpfe aktivieren (damit der Besucher zum nächsten Dia wechseln kann)" 197 "Kontrollknöpfe aktivieren (damit der Besucher zum nächsten Bild wechseln " 198 "kann)" 197 199 198 200 #: classes/SlideshowPluginInstaller.php:819 199 201 msgid "Show control panel (play and pause button)" 200 msgstr "Bedienfeld anzeigen (Abspielen- und Pa sueknopf)"202 msgstr "Bedienfeld anzeigen (Abspielen- und Pause-Knopf)" 201 203 202 204 #: classes/SlideshowPluginPostType.php:45 203 205 msgid "Slideshows" 204 msgstr " Diashows"206 msgstr "Slideshows" 205 207 206 208 #: classes/SlideshowPluginPostType.php:46 207 209 #: views/SlideshowPluginWidget/form.php:7 208 210 msgid "Slideshow" 209 msgstr " Diashow"211 msgstr "Slideshow" 210 212 211 213 #: classes/SlideshowPluginPostType.php:47 212 214 msgid "Add New Slideshow" 213 msgstr "neue Diashow anlegen"215 msgstr "neue Slideshow anlegen" 214 216 215 217 #: classes/SlideshowPluginPostType.php:48 216 218 msgid "Edit slideshow" 217 msgstr " Diashow bearbeiten"219 msgstr "Slideshow bearbeiten" 218 220 219 221 #: classes/SlideshowPluginPostType.php:49 220 222 msgid "New slideshow" 221 msgstr "neue Diashow"223 msgstr "neue Slideshow" 222 224 223 225 #: classes/SlideshowPluginPostType.php:50 224 226 msgid "View slideshow" 225 msgstr " Diashow anzeigen"227 msgstr "Slideshow anzeigen" 226 228 227 229 #: classes/SlideshowPluginPostType.php:51 228 230 msgid "Search slideshows" 229 msgstr " Diashow suchen"231 msgstr "Slideshow suchen" 230 232 231 233 #: classes/SlideshowPluginPostType.php:52 232 234 #: classes/SlideshowPluginPostType.php:53 233 235 msgid "No slideshows found" 234 msgstr "keine Diashow vorhanden"236 msgstr "keine Slideshow vorhanden" 235 237 236 238 #: classes/SlideshowPluginPostType.php:98 … … 240 242 #: classes/SlideshowPluginPostType.php:107 241 243 msgid "Slides List" 242 msgstr "Liste Diashow"244 msgstr "Liste der Slideshow Elemente" 243 245 244 246 #: classes/SlideshowPluginPostType.php:116 245 247 msgid "Slideshow Style" 246 msgstr "Layout Diashow"248 msgstr "Layout Slideshow" 247 249 248 250 #: classes/SlideshowPluginPostType.php:125 249 251 msgid "Slideshow Settings" 250 msgstr "Einstellungen Diashow"252 msgstr "Einstellungen Slideshow" 251 253 252 254 #: classes/SlideshowPluginPostType.php:173 253 255 msgid "Slideshow created" 254 msgstr " "256 msgstr "Slideshow erstellt" 255 257 256 258 #: classes/SlideshowPluginPostType.php:177 257 259 msgid "Slideshow updated" 258 msgstr " "260 msgstr "Slideshow aktualisiert" 259 261 260 262 #: classes/SlideshowPluginPostType.php:224 … … 262 264 #: views/SlideshowPluginPostType/slides.php:2 263 265 msgid "Insert" 264 msgstr " einfügen"266 msgstr "Einfügen" 265 267 266 268 #: classes/SlideshowPluginPostType.php:232 267 269 msgid "Open all" 268 msgstr " "270 msgstr "Alle öffnen" 269 271 270 272 #: classes/SlideshowPluginPostType.php:234 271 273 msgid "Close all" 272 msgstr " "274 msgstr "Alle schließen" 273 275 274 276 #: classes/SlideshowPluginPostType.php:240 … … 276 278 msgid "Add slides to this slideshow by using one of the buttons above." 277 279 msgstr "" 278 "benutzen Sie den Auswahlknopf oben um weitere Dias in die Diashow einzufügen." 280 "Benutzen Sie den Auswahlknopf oben, um weitere Bilder in die Slideshow " 281 "einzufügen." 279 282 280 283 #: classes/SlideshowPluginPostType.php:320 281 284 msgid "Duplicate" 282 msgstr " "285 msgstr "Duplizieren" 283 286 284 287 #: classes/SlideshowPluginPostType.php:371 285 288 msgid "Copy" 286 msgstr " "289 msgstr "Kopie" 287 290 288 291 #: classes/SlideshowPluginShortcode.php:148 289 292 msgid "No slideshow selected." 290 msgstr "Keine Diashow ausgewählt."293 msgstr "Keine Slideshow ausgewählt" 291 294 292 295 #: classes/SlideshowPluginSlideInserter.php:194 293 296 msgid "More results loaded" 294 msgstr " weitere Ergebnissse geladen"297 msgstr "Weitere Ergebnissse geladen" 295 298 296 299 #: classes/SlideshowPluginSlideInserter.php:249 297 300 msgid "Load more results" 298 msgstr " lade weitere Ergebnisse"301 msgstr "Lade weitere Ergebnisse" 299 302 300 303 #: classes/SlideshowPluginSlideInserter.php:260 301 304 msgid "No images were found, click here to upload some." 302 msgstr " keine Bilder gefunden,hier klicken um weiterehochzuladen"305 msgstr "Keine Bilder gefunden, hier klicken um weitere Bilder hochzuladen" 303 306 304 307 #: classes/SlideshowPluginSlideInserter.php:332 305 308 msgid "Are you sure you want to delete this slide?" 306 msgstr "Sind Sie Sicher dass Sie dieses Dialöschen möchten?"309 msgstr "Sind Sie Sicher dass Sie dieses Bild löschen möchten?" 307 310 308 311 #: classes/SlideshowPluginSlideInserter.php:333 309 312 msgid "Insert image slide" 310 msgstr " "313 msgstr "Bilder Slideshow einfügen" 311 314 312 315 #: classes/SlideshowPluginSlideshowSettingsHandler.php:523 313 316 msgid "Maximum width. When maximum width is 0, maximum width is ignored" 314 317 msgstr "" 315 " maximale Breite. Bei maximaler Breite = 0, wird die maximale Breite "318 "Maximale Breite. Bei maximaler Breite = 0, wird die maximale Breite " 316 319 "ignoriert." 317 320 … … 322 325 #: classes/SlideshowPluginSlideshowSettingsHandler.php:524 323 326 msgid "More info" 324 msgstr " weitere Informationen"327 msgstr "Weitere Informationen" 325 328 326 329 #: classes/SlideshowPluginSlideshowSettingsHandler.php:524 … … 330 333 "height)" 331 334 msgstr "" 332 " proportionaler Zusammenhang%s zwischen der Breite und Höhe der Diashow "335 "Proportionaler Zusammenhang%s zwischen der Breite und Höhe der Slideshow " 333 336 "(Breite:Höhe)" 334 337 335 338 #: classes/SlideshowPluginSlideshowSettingsHandler.php:525 336 339 msgid "Slideshow's height" 337 msgstr "Höhe Diashow"340 msgstr "Höhe der Slideshow" 338 341 339 342 #: classes/SlideshowPluginSlideshowSettingsHandler.php:526 340 343 msgid "Image behaviour" 341 msgstr " "344 msgstr "Bild Verhalten" 342 345 343 346 #: classes/SlideshowPluginSlideshowSettingsHandler.php:527 344 347 msgid "Shrink slideshow's height when width shrinks" 345 msgstr "" 346 "Höhe proportional anpassen wenn sich die Breite der Diashow verringert." 348 msgstr "Höhe proportional anpassen, wenn sich die Slideshow-Breite verringert" 347 349 348 350 #: classes/SlideshowPluginSlideshowSettingsHandler.php:528 … … 350 352 "Enable responsiveness (Shrink slideshow's width when page's width shrinks)" 351 353 msgstr "" 352 " Ansprechbarkeit aktivieren (vermindere die Breite der Diashowwenn sich die "354 "Responsive-Modus aktivieren (verringert die Slideshow-Breite, wenn sich die " 353 355 "Seitenbreite verringert)" 354 356 355 357 #: classes/SlideshowPluginSlideshowSettingsHandler.php:530 356 358 msgid "Hide description box, pop up when mouse hovers over" 357 msgstr "Beschreibungsfeld ausblenden, einblenden bei Mausberührung"359 msgstr "Beschreibungsfeld ausblenden, einblenden bei Mausberührung" 358 360 359 361 #: classes/SlideshowPluginSlideshowSettingsHandler.php:533 360 362 msgid "Pause slideshow when mouse hovers over" 361 msgstr " Diashow pausieren bei Mausberührung"363 msgstr "Slideshow pausieren bei Mausberührung" 362 364 363 365 #: classes/SlideshowPluginSlideshowSettingsHandler.php:534 364 366 msgid "Activate navigation buttons" 365 msgstr "Navigation aktivieren"367 msgstr "Navigations-Pfeile (< >) aktivieren" 366 368 367 369 #: classes/SlideshowPluginSlideshowSettingsHandler.php:535 368 370 msgid "Hide navigation buttons, show when mouse hovers over" 369 msgstr "Navigation ausblenden, sichtbarbei Mausberührung"371 msgstr "Navigations-Pfeile (< >) ausblenden, sichtbar erst bei Mausberührung" 370 372 371 373 #: classes/SlideshowPluginSlideshowSettingsHandler.php:536 372 374 msgid "Activate pagination" 373 msgstr "Seitennummerierung aktivieren"375 msgstr "Seitennummerierung ( . . . ) aktivieren" 374 376 375 377 #: classes/SlideshowPluginSlideshowSettingsHandler.php:537 376 378 msgid "Hide pagination, show when mouse hovers over" 377 msgstr "Seitennummerierung ausblenden, sichtbar bei Mausberührung" 379 msgstr "" 380 "Seitennummerierung ( . . . ) ausblenden, sichtbar erst bei Mausberührung" 378 381 379 382 #: classes/SlideshowPluginSlideshowSettingsHandler.php:538 380 383 msgid "Activate control panel (play and pause button)" 381 msgstr "Bedienfeld aktivieren (Abspiel- und Pause knopf) "384 msgstr "Bedienfeld aktivieren (Abspiel- und Pause-Knopf) " 382 385 383 386 #: classes/SlideshowPluginSlideshowSettingsHandler.php:539 384 387 msgid "Hide control panel, show when mouse hovers over" 385 msgstr "Bedienfeld ausblenden, sichtbar bei Mausberührung"388 msgstr "Bedienfeld ausblenden, sichtbar erst bei Mausberührung" 386 389 387 390 #: classes/SlideshowPluginSlideshowSettingsHandler.php:540 388 391 msgid "Wait until the next slide has loaded before showing it" 389 msgstr " "392 msgstr "Warten bis das nächste Bild geladen wurde, bevor es angezeigt wird" 390 393 391 394 #: classes/SlideshowPluginSlideshowSettingsHandler.php:541 392 395 msgid "Show a loading icon until the first slide appears" 393 msgstr " "396 msgstr "Zeige ein Lade-Symbol bis das erste Bild erscheint" 394 397 395 398 #: classes/SlideshowPluginSlideshowSettingsHandler.php:542 396 399 msgid "Randomize slides" 397 msgstr " Diasin zufälliger Reihenfolge anzeigen"400 msgstr "Bilder in zufälliger Reihenfolge anzeigen" 398 401 399 402 #: classes/SlideshowPluginSlideshowSettingsHandler.php:543 400 403 #, php-format 401 404 msgid "Avoid content filter (disable if '%s' is shown)" 402 msgstr " vermeide Inhaltsfilter (deaktiviere bei angezeigtem '%s')"405 msgstr "Vermeide Inhaltsfilter (Deaktivieren wenn '%s' angezeigt wird)" 403 406 404 407 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 405 408 msgid "Slide Left" 406 msgstr " Diavon links"409 msgstr "Bild von links" 407 410 408 411 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 409 412 msgid "Slide Right" 410 msgstr " Diavon rechts"413 msgstr "Bild von rechts" 411 414 412 415 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 413 416 msgid "Slide Up" 414 msgstr " Dia aufwärts"417 msgstr "Bild nach oben" 415 418 416 419 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 417 420 msgid "Slide Down" 418 msgstr "Dia abwärts" 421 msgstr "Bild nach unten" 422 423 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 424 msgid "Cross Fade" 425 msgstr "" 419 426 420 427 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 421 428 msgid "Direct Fade" 422 msgstr " verblassen"429 msgstr "Direkt Überblenden" 423 430 424 431 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 … … 428 435 #: classes/SlideshowPluginSlideshowSettingsHandler.php:555 429 436 msgid "Natural and centered" 430 msgstr " "437 msgstr "Zentriert (normal)" 431 438 432 439 #: classes/SlideshowPluginSlideshowSettingsHandler.php:555 433 440 msgid "Crop to fit" 434 msgstr " "441 msgstr "Angepasst (abgeschnitten)" 435 442 436 443 #: classes/SlideshowPluginSlideshowSettingsHandler.php:555 437 444 msgid "Stretch to fit" 438 msgstr " "445 msgstr "Gestreckt" 439 446 440 447 #: classes/SlideshowPluginSlideshowSettingsHandler.php:569 … … 443 450 #: classes/SlideshowPluginSlideshowSettingsHandler.php:572 444 451 msgid "Miscellaneous" 445 msgstr "Diverse s"452 msgstr "Diverse" 446 453 447 454 #: classes/SlideshowPluginWidget.php:23 448 455 msgid "Enables you to show your slideshows in the widget area of your website." 449 456 msgstr "" 450 " ermöglicht Ihnen die Diashow im Widget-Bereich der Webseite anzuzeigen."457 "Ermöglicht Ihnen die Slideshow im Widget-Bereich der Webseite anzuzeigen." 451 458 452 459 #: classes/SlideshowPluginWidget.php:29 453 460 msgid "Slideshow Widget" 454 msgstr " Diashow Widget"461 msgstr "Slideshow Widget" 455 462 456 463 #: views/SlideshowPlugin/slideshow.php:23 457 464 msgid "Play" 458 msgstr " "465 msgstr "Abspielen" 459 466 460 467 #: views/SlideshowPlugin/slideshow.php:23 461 468 msgid "Pause" 462 msgstr " "469 msgstr "Pause" 463 470 464 471 #: views/SlideshowPlugin/slideshow.php:25 465 472 msgid "Previous" 466 msgstr " "473 msgstr "Vorheriges" 467 474 468 475 #: views/SlideshowPlugin/slideshow.php:26 469 476 msgid "Next" 470 msgstr " "477 msgstr "Nächstes" 471 478 472 479 #: views/SlideshowPlugin/slideshow.php:28 473 480 msgid "Go to slide" 474 msgstr " "481 msgstr "Gehe zum Bild" 475 482 476 483 #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:46 477 484 msgid "Default stylesheets" 478 msgstr "Standard Layout "485 msgstr "Standard Layouts" 479 486 480 487 #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:60 481 488 msgid "Create a new custom style from this style" 482 msgstr "Erstelle ein eigenes Layout aus diesem Layout"489 msgstr "Erstelle ein eigenes Layout (CSS) aus diesem Layout" 483 490 484 491 #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:62 … … 488 495 #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:76 489 496 msgid "Custom stylesheets" 490 msgstr " eigenes Layout"497 msgstr "Benutzerdefinierte Layouts" 491 498 492 499 #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:89 493 500 #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:172 494 501 msgid "Edit this style" 495 msgstr " diesesLayout bearbeiten"502 msgstr "Layout bearbeiten" 496 503 497 504 #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:91 … … 500 507 #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:112 501 508 msgid "Edit" 502 msgstr " bearbeiten"509 msgstr "Bearbeiten" 503 510 504 511 #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:98 505 512 #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:181 506 513 msgid "Delete this style" 507 msgstr " diesesLayout löschen"514 msgstr "Layout löschen" 508 515 509 516 #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:100 510 517 #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:183 511 518 msgid "Delete" 512 msgstr " löschen"519 msgstr "Löschen" 513 520 514 521 #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:110 515 522 msgid "Click 'Customize' to create a new custom stylesheet." 516 msgstr "Klicke 'modifizieren' um eine neues Layout zu erstellen."523 msgstr "Klicken Sie 'modifizieren' um eine neues Layout zu erstellen." 517 524 518 525 #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:130 519 526 msgid "Select a stylesheet to start customizing it." 520 msgstr "Wählen sie ein Layoutum mit der Modifikation zu beginnen."527 msgstr "Wählen Sie ein Layout, um mit der Modifikation zu beginnen." 521 528 522 529 #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:139 … … 551 558 msgstr "" 552 559 "Die Einstellungen auf dieser Seite werden nur auf die neu erstellten " 553 " Diashows angewandt, bereits bestehende werden davon nicht betroffen. Um die"554 " Einstellunegn zu verändern, %sKlicken Sie hier.%s"560 "Slideshows angewandt. Bereits bestehende Slideshows werden davon nicht " 561 "betroffen. Um die Einstellungen zu verändern, %sklicken Sie hier.%s" 555 562 556 563 #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:29 557 564 #: views/SlideshowPluginGeneralSettings/general-settings.php:15 558 565 msgid "Default Slideshow Settings" 559 msgstr "Standard einstellungen Diashow"566 msgstr "Standard Einstellungen Slideshow" 560 567 561 568 #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:41 … … 566 573 #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:77 567 574 msgid "Default Slideshow Stylesheet" 568 msgstr "Standard einstellungen Layout"575 msgstr "Standard Layout Slideshow" 569 576 570 577 #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:11 571 578 msgid "Add slideshows" 572 msgstr " Diashow hinzufügen"579 msgstr "Slideshow hinzufügen" 573 580 574 581 #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:12 575 582 msgid "Edit slideshows" 576 msgstr " Diashow bearbeiten"583 msgstr "Slideshow bearbeiten" 577 584 578 585 #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:13 579 586 msgid "Delete slideshows" 580 msgstr " Diashow löschen"587 msgstr "Slideshow löschen" 581 588 582 589 #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:20 … … 587 594 msgid "Select the user roles that will able to perform certain actions." 588 595 msgstr "" 589 "Wählen Sie die Stufe der Benutzerberechtigung zum ausführen bestimmter "596 "Wählen Sie die Stufe der Benutzerberechtigung zum Ausführen bestimmter " 590 597 "Aktionen." 591 598 592 599 #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:38 593 600 msgid "Untitled role" 594 msgstr " ohne Rang"601 msgstr "unbenannte Funktion" 595 602 596 603 #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:65 … … 600 607 #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:69 601 608 msgid "Stylesheet location" 602 msgstr " "609 msgstr "Layout Speicherort" 603 610 604 611 #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:72 605 612 msgid "top" 606 msgstr " "613 msgstr "oben" 607 614 608 615 #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:73 609 616 msgid "bottom" 610 msgstr " "617 msgstr "unten" 611 618 612 619 #: views/SlideshowPluginGeneralSettings/general-settings.php:16 613 620 msgid "Custom Styles" 614 msgstr " Eigenmodifikationen"621 msgstr "Benutzerdefiniertes Layout" 615 622 616 623 #: views/SlideshowPluginPostType/information.php:1 … … 619 626 "your posts or pages" 620 627 msgstr "" 621 "Um diese Diashow in Ihrer Webseite zu benutzen, fügen Sie bitte den "622 "Quellcode in Ihre Artikel oder Seiten ein."628 "Um diese Slideshow in Ihrer Webseite zu benutzen, fügen Sie bitte den " 629 "Quellcode in Ihre Beiträge oder Seiten ein" 623 630 624 631 #: views/SlideshowPluginPostType/information.php:5 … … 627 634 "the slideshow" 628 635 msgstr "" 629 " oder fügen Sie diesen Codeteil an jeder beliebigen Stelle auf Ihrer Webseite "630 "zum Anzeigen der Diashow ein."636 "Oder fügen Sie diesen Codeteil an jeder beliebigen Stelle auf Ihrer Webseite " 637 "zum Anzeigen der Slideshow ein" 631 638 632 639 #: views/SlideshowPluginPostType/information.php:9 … … 634 641 msgid "Or go to the %swidgets page%s and show the slideshow as a widget." 635 642 msgstr "" 636 "oder gehen Sie auf die %swidgets page%s und zeigen die Diashow als Widget an." 643 "Oder gehen Sie auf die %sWidgets Seite%s (>Design >Widgets) und zeigen die " 644 "Slideshow als Widget an." 637 645 638 646 #: views/SlideshowPluginPostType/settings.php:26 … … 647 655 #: views/SlideshowPluginSlideshowSlide/backend_text.php:69 648 656 msgid "Text slide" 649 msgstr "Text show"657 msgstr "Text Slide" 650 658 651 659 #: views/SlideshowPluginPostType/slides.php:61 … … 676 684 #: views/SlideshowPluginSlideshowSlide/backend_text.php:121 677 685 msgid "URL" 678 msgstr "Webadresse "686 msgstr "Webadresse (URL)" 679 687 680 688 #: views/SlideshowPluginPostType/slides.php:70 … … 687 695 #: views/SlideshowPluginSlideshowSlide/backend_text.php:124 688 696 msgid "Open URL in" 689 msgstr " öffne Webadresse in"697 msgstr "Öffne Webadresse in" 690 698 691 699 #: views/SlideshowPluginPostType/slides.php:72 … … 709 717 #: views/SlideshowPluginSlideshowSlide/backend_text.php:127 710 718 msgid "New window" 711 msgstr "neue sFenster"719 msgstr "neuem Fenster" 712 720 713 721 #: views/SlideshowPluginPostType/slides.php:90 … … 717 725 #: views/SlideshowPluginSlideshowSlide/backend_video.php:26 718 726 msgid "Video slide" 719 msgstr "Video show"727 msgstr "Video Slide" 720 728 721 729 #: views/SlideshowPluginPostType/slides.php:95 … … 724 732 #: views/SlideshowPluginSlideshowSlide/backend_video.php:35 725 733 msgid "Youtube Video ID" 726 msgstr "Youtube Video ID"734 msgstr "Youtube Video ID" 727 735 728 736 #: views/SlideshowPluginPostType/slides.php:133 … … 733 741 #: views/SlideshowPluginSlideshowSlide/backend_templates.php:135 734 742 msgid "Image slide" 735 msgstr "Bilder show"743 msgstr "Bilder Slide" 736 744 737 745 #: views/SlideshowPluginPostType/slides.php:171 … … 740 748 "the slideshow" 741 749 msgstr "" 742 "Beim Laden des Dias trat ein Fehler auf und kann in der Diashow nicht "750 "Beim Laden des Bildes trat ein Fehler auf und kann in der Slidehow nicht " 743 751 "angezeigt werden." 744 752 … … 754 762 #: views/SlideshowPluginSlideshowSlide/backend_video.php:49 755 763 msgid "Delete slide" 756 msgstr " Dia löschen"764 msgstr "Löschen" 757 765 758 766 #: views/SlideshowPluginPostType/style-settings.php:22 759 767 #, php-format 760 768 msgid "Custom styles can be created and customized %shere%s." 761 msgstr "Eigenmodifikationen können %shier%s erstellt und bearbeitet werden." 769 msgstr "" 770 "Eigene Layouts (CSS-Dateien) können %shier%s erstellt und bearbeitet werden." 762 771 763 772 #: views/SlideshowPluginPostType/support-plugin.php:3 764 773 msgid "Help to keep this plugin free!" 765 msgstr "Helfen Sie dass das Plugin auch weiterhin kostenlos bleibt!"774 msgstr "Helfen Sie, dass das Plugin auch weiterhin kostenlos bleibt!" 766 775 767 776 #: views/SlideshowPluginPostType/support-plugin.php:6 … … 772 781 "Wordpress.org. Thank you in advance!" 773 782 msgstr "" 774 "Um sicherzustellen dass es auch weiterhin Programmerweiterungen, Hilfe bei "775 "Fragen und Updates gibt bin ich auf Ihre Motivation und Unterstützung "776 "angewiesen , deshalb bitte ich um eine kleine Spende für das Plugin oder um "777 "eine 5-Sterne Bewertung auf Wordpress.org. Vielen Dank vorab ."783 "Um sicherzustellen, dass es auch weiterhin Programm-Erweiterungen, Hilfe bei " 784 "Fragen und Updates gibt, bin ich auf Ihre Motivation und Unterstützung " 785 "angewiesen. Deshalb bitte ich um eine kleine Spende für das Plugin oder um " 786 "eine 5-Sterne Bewertung auf Wordpress.org. Vielen Dank vorab!" 778 787 779 788 #: views/SlideshowPluginPostType/support-plugin.php:15 780 789 msgid "Rate on Wordpress.org" 781 msgstr " auf Wordpress.org bewerten"790 msgstr "Bewerten auf Wordpress.org" 782 791 783 792 #: views/SlideshowPluginPostType/support-plugin.php:24 784 793 msgid "Frequently Asked Questions (FAQ)" 785 msgstr " häufig gestelle Fragen (FAQ)"794 msgstr "Häufig gestellte Fragen (FAQ)" 786 795 787 796 #: views/SlideshowPluginShortcode/shortcode-inserter.php:4 … … 789 798 #: views/SlideshowPluginShortcode/shortcode-inserter.php:18 790 799 msgid "Insert a Slideshow" 791 msgstr " eine Diashow einfügen"800 msgstr "Eine Slideshow einfügen" 792 801 793 802 #: views/SlideshowPluginShortcode/shortcode-inserter.php:12 794 803 #: views/SlideshowPluginShortcode/shortcode-inserter.php:51 795 804 msgid "Insert Slideshow" 796 msgstr " Diashow einfügen"805 msgstr "Slideshow einfügen" 797 806 798 807 #: views/SlideshowPluginShortcode/shortcode-inserter.php:27 799 808 msgid "Select a slideshow" 800 msgstr " Diashow auswählen"809 msgstr "Eine Slideshow auswählen" 801 810 802 811 #: views/SlideshowPluginShortcode/shortcode-inserter.php:36 803 812 #: views/SlideshowPluginWidget/form.php:12 804 813 msgid "Untitled slideshow" 805 msgstr " unbenannte Diashow"814 msgstr "Unbenannte Slideshow" 806 815 807 816 #: views/SlideshowPluginShortcode/shortcode-inserter.php:56 808 817 msgid "Cancel" 809 msgstr "Abbr uch"818 msgstr "Abbrechen" 810 819 811 820 #: views/SlideshowPluginShortcode/shortcode-inserter.php:67 … … 815 824 "slideshow here!%s" 816 825 msgstr "" 817 "Sie haben noch keine Diashow angelegt. %sSie können eine Diashow hier anlegen"818 " %s"826 "Sie haben noch keine Slideshow angelegt. %sSie können eine Slideshow hier " 827 "anlegen%s" 819 828 820 829 #: views/SlideshowPluginSlideInserter/search-popup.php:6 821 830 msgid "Search" 822 msgstr "Suche "831 msgstr "Suchen" 823 832 824 833 #: views/SlideshowPluginSlideInserter/search-popup.php:7 … … 833 842 #: views/SlideshowPluginSlideshowSlide/backend_video.php:21 834 843 msgid "Click to toggle" 835 msgstr " "844 msgstr "Anklicken zum Umschalten" 836 845 837 846 #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:160 … … 840 849 #: views/SlideshowPluginSlideshowSlide/backend_text.php:131 841 850 msgid "Don't let search engines follow link" 842 msgstr " "851 msgstr "Verbietet Suchmaschinen den Link zu indexieren" 843 852 844 853 #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:168 845 854 #: views/SlideshowPluginSlideshowSlide/backend_templates.php:197 846 855 msgid "Alternative text" 847 msgstr " "856 msgstr "Alternativtext" 848 857 849 858 #: views/SlideshowPluginSlideshowSlide/backend_templates.php:48 … … 860 869 #: views/SlideshowPluginSlideshowSlide/backend_video.php:42 861 870 msgid "Show related videos" 862 msgstr " "871 msgstr "Zeige verwandte Videos" 863 872 864 873 #: views/SlideshowPluginUpload/upload-button.php:1 … … 868 877 #: views/SlideshowPluginWidget/form.php:9 869 878 msgid "Random Slideshow" 870 msgstr "Zufalls diashow"879 msgstr "Zufalls-Slideshow" 871 880 872 881 #~ msgid "Fit image into slide (Stretch image)" -
slideshow-jquery-image-gallery/trunk/languages/slideshow-plugin-es_ES.po
r879367 r1143459 3 3 "Project-Id-Version: Slideshow Plugin\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2014-0 3-19 20:32+0100\n"6 "PO-Revision-Date: 2014-0 3-19 20:32+0100\n"5 "POT-Creation-Date: 2014-08-19 11:53+0100\n" 6 "PO-Revision-Date: 2014-08-19 11:53+0100\n" 7 7 "Last-Translator: Violeta Rosales <[email protected]>\n" 8 8 "Language-Team: Stefan Boonstra <[email protected]>\n" 9 "Language: fr_FR\n"9 "Language: es_ES\n" 10 10 "MIME-Version: 1.0\n" 11 11 "Content-Type: text/plain; charset=UTF-8\n" … … 13 13 "X-Poedit-KeywordsList: _e;__\n" 14 14 "X-Poedit-Basepath: ../\n" 15 "X-Generator: Poedit 1. 6.4\n"15 "X-Generator: Poedit 1.5.7\n" 16 16 "X-Poedit-SourceCharset: UTF-8\n" 17 17 "X-Poedit-SearchPath-0: .\n" … … 416 416 417 417 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 418 msgid "Cross Fade" 419 msgstr "" 420 421 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 418 422 msgid "Direct Fade" 419 423 msgstr "" -
slideshow-jquery-image-gallery/trunk/languages/slideshow-plugin-fa_IR.po
r879367 r1143459 3 3 "Project-Id-Version: Slideshow Plugin\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2014-0 3-19 20:32+0100\n"6 "PO-Revision-Date: 2014-0 3-19 20:32+0100\n"5 "POT-Creation-Date: 2014-08-19 11:53+0100\n" 6 "PO-Revision-Date: 2014-08-19 11:54+0100\n" 7 7 "Last-Translator: Maziar Moradpour <[email protected]>\n" 8 8 "Language-Team: Stefan Boonstra <[email protected]>\n" … … 13 13 "X-Poedit-KeywordsList: _e;__\n" 14 14 "X-Poedit-Basepath: ../\n" 15 "X-Generator: Poedit 1.6.4\n" 15 "X-Generator: Poedit 1.5.7\n" 16 "X-Poedit-SourceCharset: UTF-8\n" 16 17 "X-Poedit-SearchPath-0: .\n" 17 18 … … 252 253 #: classes/SlideshowPluginPostType.php:173 253 254 msgid "Slideshow created" 254 msgstr " "255 msgstr "نمایشگر اسلایدی ایجاد شد" 255 256 256 257 #: classes/SlideshowPluginPostType.php:177 257 258 msgid "Slideshow updated" 258 msgstr " "259 msgstr "نمایشگر اسلایدی بروز شد" 259 260 260 261 #: classes/SlideshowPluginPostType.php:224 … … 266 267 #: classes/SlideshowPluginPostType.php:232 267 268 msgid "Open all" 268 msgstr " "269 msgstr "گشودن همه" 269 270 270 271 #: classes/SlideshowPluginPostType.php:234 271 272 msgid "Close all" 272 msgstr " "273 msgstr "بستن همه" 273 274 274 275 #: classes/SlideshowPluginPostType.php:240 … … 279 280 #: classes/SlideshowPluginPostType.php:320 280 281 msgid "Duplicate" 281 msgstr " "282 msgstr "تکثیر" 282 283 283 284 #: classes/SlideshowPluginPostType.php:371 284 285 msgid "Copy" 285 msgstr " "286 msgstr "کپی" 286 287 287 288 #: classes/SlideshowPluginShortcode.php:148 … … 412 413 413 414 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 415 msgid "Cross Fade" 416 msgstr "محو شدن کروز" 417 418 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 414 419 msgid "Direct Fade" 415 420 msgstr "محو شدن مستقیم" … … 450 455 #: views/SlideshowPlugin/slideshow.php:23 451 456 msgid "Play" 452 msgstr " "457 msgstr "حرکت" 453 458 454 459 #: views/SlideshowPlugin/slideshow.php:23 455 460 msgid "Pause" 456 msgstr " "461 msgstr "توقف" 457 462 458 463 #: views/SlideshowPlugin/slideshow.php:25 459 464 msgid "Previous" 460 msgstr " "465 msgstr "پیشین" 461 466 462 467 #: views/SlideshowPlugin/slideshow.php:26 463 468 msgid "Next" 464 msgstr " "469 msgstr "پسین" 465 470 466 471 #: views/SlideshowPlugin/slideshow.php:28 467 472 msgid "Go to slide" 468 msgstr " "473 msgstr "برو به اسلاید" 469 474 470 475 #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:46 … … 512 517 #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:130 513 518 msgid "Select a stylesheet to start customizing it." 514 msgstr " "519 msgstr "شیوه نامه ای را جهت شروع سفارشی سازی انتخاب کنید" 515 520 516 521 #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:139 … … 764 769 "درود بر شما. برای توسعه بیشتر و رفع اشکال این افزونه، به انگیزه بیشتری " 765 770 "نیازمندیم. شما می توانید با مراجعه به wordpress.org و اعطای رتبه 5 ستاره به " 766 " ما انگیزه بیشتری دهید. بی گمان مهرورزی شما با ارائه زود هنگام نسخه های بعدی"767 " به بهترین شکل پاسخ داده خواهد شد."771 "افزونه این کار را انجام دهید. بی گمان مهرورزی شما با ارائه زود هنگام نسخه " 772 "های بعدی به بهترین شکل پاسخ داده خواهد شد." 768 773 769 774 #: views/SlideshowPluginPostType/support-plugin.php:15 … … 823 828 #: views/SlideshowPluginSlideshowSlide/backend_video.php:21 824 829 msgid "Click to toggle" 825 msgstr " "830 msgstr "برای جابجایی کلیک کنید" 826 831 827 832 #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:160 -
slideshow-jquery-image-gallery/trunk/languages/slideshow-plugin-fi.po
r879367 r1143459 3 3 "Project-Id-Version: Slideshow Plugin\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2014-0 3-19 20:32+0100\n"6 "PO-Revision-Date: 2014-0 3-19 20:32+0100\n"5 "POT-Creation-Date: 2014-08-19 11:54+0100\n" 6 "PO-Revision-Date: 2014-08-19 11:54+0100\n" 7 7 "Last-Translator: Hyvä Ihme Design <[email protected]>\n" 8 8 "Language-Team: Stefan Boonstra <[email protected]>\n" … … 13 13 "X-Poedit-KeywordsList: _e;__\n" 14 14 "X-Poedit-Basepath: ../\n" 15 "X-Generator: Poedit 1. 6.4\n"15 "X-Generator: Poedit 1.5.7\n" 16 16 "X-Poedit-SearchPath-0: .\n" 17 17 … … 419 419 420 420 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 421 msgid "Cross Fade" 422 msgstr "" 423 424 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 421 425 msgid "Direct Fade" 422 426 msgstr "Suora ristikuva" -
slideshow-jquery-image-gallery/trunk/languages/slideshow-plugin-fr_FR.po
r879367 r1143459 3 3 "Project-Id-Version: Slideshow Plugin\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2014-0 3-19 20:32+0100\n"6 "PO-Revision-Date: 2014-0 3-19 20:32+0100\n"5 "POT-Creation-Date: 2014-08-19 11:55+0100\n" 6 "PO-Revision-Date: 2014-08-19 11:55+0100\n" 7 7 "Last-Translator: Murat Demir <[email protected]>\n" 8 8 "Language-Team: Stefan Boonstra <[email protected]>\n" … … 13 13 "X-Poedit-KeywordsList: _e;__\n" 14 14 "X-Poedit-Basepath: ../\n" 15 "X-Generator: Poedit 1. 6.4\n"15 "X-Generator: Poedit 1.5.7\n" 16 16 "X-Poedit-SourceCharset: UTF-8\n" 17 17 "X-Poedit-SearchPath-0: .\n" … … 424 424 425 425 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 426 msgid "Cross Fade" 427 msgstr "" 428 429 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 426 430 msgid "Direct Fade" 427 431 msgstr "Fondu direct" -
slideshow-jquery-image-gallery/trunk/languages/slideshow-plugin-he_IL.po
r879367 r1143459 3 3 "Project-Id-Version: Slideshow Plugin\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2014-0 3-19 20:32+0100\n"6 "PO-Revision-Date: 2014-0 3-19 20:32+0100\n"5 "POT-Creation-Date: 2014-08-19 11:55+0100\n" 6 "PO-Revision-Date: 2014-08-19 11:55+0100\n" 7 7 "Last-Translator: Murat Demir <[email protected]>\n" 8 8 "Language-Team: EliSegev\n" … … 13 13 "X-Poedit-KeywordsList: _e;__\n" 14 14 "X-Poedit-Basepath: ../\n" 15 "X-Generator: Poedit 1. 6.4\n"15 "X-Generator: Poedit 1.5.7\n" 16 16 "X-Poedit-SourceCharset: UTF-8\n" 17 17 "X-Poedit-SearchPath-0: .\n" … … 411 411 412 412 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 413 msgid "Cross Fade" 414 msgstr "" 415 416 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 413 417 msgid "Direct Fade" 414 418 msgstr "דהייה ישירה" -
slideshow-jquery-image-gallery/trunk/languages/slideshow-plugin-it_IT.po
r879367 r1143459 3 3 "Project-Id-Version: Slideshow Plugin\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2014-0 3-19 20:32+0100\n"6 "PO-Revision-Date: 2014-0 3-19 20:33+0100\n"5 "POT-Creation-Date: 2014-08-19 11:56+0100\n" 6 "PO-Revision-Date: 2014-08-19 11:56+0100\n" 7 7 "Last-Translator: Stefan Boonstra <[email protected]>\n" 8 8 "Language-Team: Stefan Boonstra <[email protected]>\n" … … 13 13 "X-Poedit-KeywordsList: _e;__\n" 14 14 "X-Poedit-Basepath: ../\n" 15 "X-Generator: Poedit 1. 6.4\n"15 "X-Generator: Poedit 1.5.7\n" 16 16 "X-Poedit-SearchPath-0: .\n" 17 17 … … 421 421 422 422 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 423 msgid "Cross Fade" 424 msgstr "" 425 426 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 423 427 msgid "Direct Fade" 424 428 msgstr "Dissolvenza" -
slideshow-jquery-image-gallery/trunk/languages/slideshow-plugin-ja.po
r879367 r1143459 3 3 "Project-Id-Version: Slideshow Plugin\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2014-0 3-19 20:33+0100\n"6 "PO-Revision-Date: 2014-0 3-19 20:33+0100\n"5 "POT-Creation-Date: 2014-08-19 11:56+0100\n" 6 "PO-Revision-Date: 2014-08-19 11:56+0100\n" 7 7 "Last-Translator: HOTTA Michihide <[email protected]>\n" 8 8 "Language-Team: Stefan Boonstra <[email protected]>\n" … … 14 14 "X-Poedit-KeywordsList: _e;__\n" 15 15 "X-Poedit-Basepath: ../\n" 16 "X-Generator: Poedit 1. 6.4\n"16 "X-Generator: Poedit 1.5.7\n" 17 17 "X-Poedit-SearchPath-0: .\n" 18 18 … … 415 415 416 416 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 417 msgid "Cross Fade" 418 msgstr "" 419 420 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 417 421 msgid "Direct Fade" 418 422 msgstr "ダイレクト・フェード" -
slideshow-jquery-image-gallery/trunk/languages/slideshow-plugin-nl_NL.po
r879367 r1143459 3 3 "Project-Id-Version: Slideshow Plugin\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 201 4-03-19 20:33+0100\n"6 "PO-Revision-Date: 201 4-03-19 20:34+0100\n"5 "POT-Creation-Date: 2015-04-23 17:44+0100\n" 6 "PO-Revision-Date: 2015-04-23 17:44+0100\n" 7 7 "Last-Translator: Stefan Boonstra <[email protected]>\n" 8 8 "Language-Team: Stefan Boonstra <[email protected]>\n" … … 13 13 "X-Poedit-KeywordsList: _e;__\n" 14 14 "X-Poedit-Basepath: ../\n" 15 "X-Generator: Poedit 1. 6.4\n"15 "X-Generator: Poedit 1.7.6\n" 16 16 "X-Poedit-SearchPath-0: .\n" 17 17 … … 430 430 431 431 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 432 msgid "Cross Fade" 433 msgstr "Rechtstreekse Fade" 434 435 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 432 436 msgid "Direct Fade" 433 msgstr " Rechtstreekse Fade"437 msgstr "Transparante Fade" 434 438 435 439 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 -
slideshow-jquery-image-gallery/trunk/languages/slideshow-plugin-original.po
r879367 r1143459 3 3 "Project-Id-Version: Slideshow Plugin\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 201 4-03-19 20:34+0100\n"6 "PO-Revision-Date: 201 4-03-19 20:34+0100\n"5 "POT-Creation-Date: 2015-04-23 17:43+0100\n" 6 "PO-Revision-Date: 2015-04-23 17:43+0100\n" 7 7 "Last-Translator: Stefan Boonstra <[email protected]>\n" 8 8 "Language-Team: Stefan Boonstra <[email protected]>\n" … … 12 12 "X-Poedit-KeywordsList: _e;__\n" 13 13 "X-Poedit-Basepath: ../\n" 14 "X-Generator: Poedit 1.6.4\n" 14 "X-Generator: Poedit 1.7.6\n" 15 "Plural-Forms: nplurals=2; plural=(n != 1);\n" 16 "Language: en\n" 15 17 "X-Poedit-SearchPath-0: .\n" 16 18 … … 409 411 410 412 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 413 msgid "Cross Fade" 414 msgstr "" 415 416 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 411 417 msgid "Direct Fade" 412 418 msgstr "" -
slideshow-jquery-image-gallery/trunk/languages/slideshow-plugin-pl_PL.po
r879367 r1143459 3 3 "Project-Id-Version: Slideshow Plugin\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2014-0 3-19 20:34+0100\n"6 "PO-Revision-Date: 2014-0 3-19 20:34+0100\n"5 "POT-Creation-Date: 2014-08-19 12:00+0100\n" 6 "PO-Revision-Date: 2014-08-19 12:01+0100\n" 7 7 "Last-Translator: Stefan Boonstra <[email protected]>\n" 8 8 "Language-Team: Stefan Boonstra <[email protected]>\n" … … 13 13 "X-Poedit-KeywordsList: _e;__\n" 14 14 "X-Poedit-Basepath: ../\n" 15 "X-Generator: Poedit 1. 6.4\n"15 "X-Generator: Poedit 1.5.7\n" 16 16 "X-Poedit-SearchPath-0: .\n" 17 17 … … 416 416 417 417 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 418 msgid "Cross Fade" 419 msgstr "" 420 421 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 418 422 msgid "Direct Fade" 419 423 msgstr "Bezpośrednie zanikanie" -
slideshow-jquery-image-gallery/trunk/languages/slideshow-plugin-pt_BR.po
r879367 r1143459 3 3 "Project-Id-Version: Slideshow v2.2.10\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 201 4-03-19 20:35+0100\n"6 "PO-Revision-Date: 201 4-03-19 20:35+0100\n"7 "Last-Translator: admin <[email protected]>\n"5 "POT-Creation-Date: 2015-04-23 15:01+0100\n" 6 "PO-Revision-Date: 2015-04-23 15:01+0100\n" 7 "Last-Translator: Carlos Jordao <[email protected]>\n" 8 8 "Language-Team: \n" 9 9 "Language: pt_BR\n" … … 12 12 "Content-Transfer-Encoding: 8bit\n" 13 13 "Plural-Forms: nplurals=2; plural=n != 1;\n" 14 "X-Generator: Poedit 1. 6.4\n"14 "X-Generator: Poedit 1.7.6\n" 15 15 "X-Poedit-SourceCharset: utf-8\n" 16 16 "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" … … 101 101 #: classes/SlideshowPluginInstaller.php:805 102 102 msgid "Slide" 103 msgstr " "103 msgstr "Deslizar" 104 104 105 105 # @ slideshow-plugin … … 302 302 #: classes/SlideshowPluginPostType.php:173 303 303 msgid "Slideshow created" 304 msgstr " "304 msgstr "Slideshow criado" 305 305 306 306 # @ slideshow-plugin 307 307 #: classes/SlideshowPluginPostType.php:177 308 308 msgid "Slideshow updated" 309 msgstr " "309 msgstr "Slideshow atualizado" 310 310 311 311 # @ slideshow-plugin … … 318 318 #: classes/SlideshowPluginPostType.php:232 319 319 msgid "Open all" 320 msgstr " "320 msgstr "Abrir todos" 321 321 322 322 #: classes/SlideshowPluginPostType.php:234 323 323 msgid "Close all" 324 msgstr " "324 msgstr "Fechar todos" 325 325 326 326 # @ slideshow-plugin … … 332 332 #: classes/SlideshowPluginPostType.php:320 333 333 msgid "Duplicate" 334 msgstr " "334 msgstr "Duplicar" 335 335 336 336 #: classes/SlideshowPluginPostType.php:371 337 337 msgid "Copy" 338 msgstr " "338 msgstr "Copiar" 339 339 340 340 # @ slideshow-plugin … … 458 458 #: classes/SlideshowPluginSlideshowSettingsHandler.php:540 459 459 msgid "Wait until the next slide has loaded before showing it" 460 msgstr " "460 msgstr "Esperar até que o próximo slide tenha carregado antes de mostrá-lo" 461 461 462 462 #: classes/SlideshowPluginSlideshowSettingsHandler.php:541 463 463 msgid "Show a loading icon until the first slide appears" 464 msgstr " "464 msgstr "Mostrar um ícone de carregando até o primeiro slide aparecer" 465 465 466 466 # @ slideshow-plugin … … 495 495 msgstr "Deslize para baixo" 496 496 497 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 498 msgid "Cross Fade" 499 msgstr "" 500 497 501 # @ slideshow-plugin 498 502 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 … … 507 511 #: classes/SlideshowPluginSlideshowSettingsHandler.php:555 508 512 msgid "Natural and centered" 509 msgstr " "513 msgstr "Natural e centrado" 510 514 511 515 #: classes/SlideshowPluginSlideshowSettingsHandler.php:555 512 516 msgid "Crop to fit" 513 msgstr " "517 msgstr "Corte para enquadrar" 514 518 515 519 #: classes/SlideshowPluginSlideshowSettingsHandler.php:555 516 520 msgid "Stretch to fit" 517 msgstr " "521 msgstr "Estique para enquadrar" 518 522 519 523 # @ slideshow-plugin … … 537 541 #: views/SlideshowPlugin/slideshow.php:23 538 542 msgid "Play" 539 msgstr " "543 msgstr "Acionar" 540 544 541 545 #: views/SlideshowPlugin/slideshow.php:23 542 546 msgid "Pause" 543 msgstr " "547 msgstr "Pausar" 544 548 545 549 #: views/SlideshowPlugin/slideshow.php:25 546 550 msgid "Previous" 547 msgstr " "551 msgstr "Anterior" 548 552 549 553 #: views/SlideshowPlugin/slideshow.php:26 550 554 msgid "Next" 551 msgstr " "555 msgstr "Próximo" 552 556 553 557 # @ slideshow-plugin 554 558 #: views/SlideshowPlugin/slideshow.php:28 555 559 msgid "Go to slide" 556 msgstr " "560 msgstr "Ir para o slide" 557 561 558 562 # @ slideshow-plugin … … 605 609 #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:110 606 610 msgid "Click 'Customize' to create a new custom stylesheet." 607 msgstr " "611 msgstr "Clique 'Customizar' para criar uma nova folha de estilo." 608 612 609 613 # @ slideshow-plugin 610 614 #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:130 611 615 msgid "Select a stylesheet to start customizing it." 612 msgstr " "616 msgstr "Selecione uma folha de estilo para customizá-la" 613 617 614 618 # @ slideshow-plugin … … 706 710 #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:69 707 711 msgid "Stylesheet location" 708 msgstr " "712 msgstr "Localização da folha de estilo" 709 713 710 714 #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:72 711 715 msgid "top" 712 msgstr " "716 msgstr "topo" 713 717 714 718 #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:73 715 719 msgid "bottom" 716 msgstr " "720 msgstr "base" 717 721 718 722 # @ slideshow-plugin … … 788 792 #: views/SlideshowPluginSlideshowSlide/backend_text.php:121 789 793 msgid "URL" 790 msgstr " "794 msgstr "URL" 791 795 792 796 # @ slideshow-plugin … … 965 969 #: views/SlideshowPluginSlideshowSlide/backend_video.php:21 966 970 msgid "Click to toggle" 967 msgstr " "971 msgstr "Clique para trocar" 968 972 969 973 #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:160 … … 972 976 #: views/SlideshowPluginSlideshowSlide/backend_text.php:131 973 977 msgid "Don't let search engines follow link" 974 msgstr " "978 msgstr "Não permitir aos mecanismos de busca seguirem o link" 975 979 976 980 #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:168 977 981 #: views/SlideshowPluginSlideshowSlide/backend_templates.php:197 978 982 msgid "Alternative text" 979 msgstr " "983 msgstr "Texto alternativo" 980 984 981 985 # @ slideshow-plugin … … 994 998 #: views/SlideshowPluginSlideshowSlide/backend_video.php:42 995 999 msgid "Show related videos" 996 msgstr " "1000 msgstr "Mostrar vídeos relacionados" 997 1001 998 1002 #: views/SlideshowPluginUpload/upload-button.php:1 999 1003 msgid "Upload/Manage Images" 1000 msgstr " "1004 msgstr "Enviar/Gerenciar Imagens" 1001 1005 1002 1006 # @ slideshow-plugin -
slideshow-jquery-image-gallery/trunk/languages/slideshow-plugin-pt_PT.po
r879367 r1143459 3 3 "Project-Id-Version: Slideshow Plugin\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2014-0 3-19 20:35+0100\n"6 "PO-Revision-Date: 2014-0 3-19 20:35+0100\n"5 "POT-Creation-Date: 2014-08-19 12:01+0100\n" 6 "PO-Revision-Date: 2014-08-19 12:02+0100\n" 7 7 "Last-Translator: Filipe Catraia <[email protected]>\n" 8 8 "Language-Team: Stefan Boonstra <[email protected]>\n" … … 13 13 "X-Poedit-KeywordsList: _e;__\n" 14 14 "X-Poedit-Basepath: ../\n" 15 "X-Generator: Poedit 1. 6.4\n"15 "X-Generator: Poedit 1.5.7\n" 16 16 "X-Poedit-SearchPath-0: .\n" 17 17 … … 421 421 422 422 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 423 msgid "Cross Fade" 424 msgstr "" 425 426 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 423 427 msgid "Direct Fade" 424 428 msgstr "Desvanecimento directo" -
slideshow-jquery-image-gallery/trunk/languages/slideshow-plugin-ru_RU.po
r879367 r1143459 3 3 "Project-Id-Version: Slideshow Plugin\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2014-0 3-19 20:35+0100\n"6 "PO-Revision-Date: 2014-0 3-19 20:35+0100\n"5 "POT-Creation-Date: 2014-08-19 12:02+0100\n" 6 "PO-Revision-Date: 2014-08-19 12:02+0100\n" 7 7 "Last-Translator: Dmitry Fatakov <[email protected]>\n" 8 8 "Language-Team: Stefan Boonstra <[email protected]>\n" 9 "Language: ru_ UA\n"9 "Language: ru_RU\n" 10 10 "MIME-Version: 1.0\n" 11 11 "Content-Type: text/plain; charset=UTF-8\n" … … 13 13 "X-Poedit-KeywordsList: _e;__\n" 14 14 "X-Poedit-Basepath: ../\n" 15 "X-Generator: Poedit 1. 6.4\n"15 "X-Generator: Poedit 1.5.7\n" 16 16 "X-Poedit-SearchPath-0: .\n" 17 17 … … 418 418 419 419 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 420 msgid "Cross Fade" 421 msgstr "" 422 423 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 420 424 msgid "Direct Fade" 421 425 msgstr "Вспышка" -
slideshow-jquery-image-gallery/trunk/languages/slideshow-plugin-sr_RS.po
r879367 r1143459 3 3 "Project-Id-Version: Slideshow Plugin\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2014-0 3-19 20:36+0100\n"6 "PO-Revision-Date: 2014-0 3-19 20:36+0100\n"5 "POT-Creation-Date: 2014-08-19 12:02+0100\n" 6 "PO-Revision-Date: 2014-08-19 12:03+0100\n" 7 7 "Last-Translator: Borisa Djuraskovic <[email protected]>\n" 8 8 "Language-Team: Stefan Boonstra <[email protected]>\n" 9 "Language: fr_FR\n"9 "Language: sr_RS\n" 10 10 "MIME-Version: 1.0\n" 11 11 "Content-Type: text/plain; charset=UTF-8\n" … … 13 13 "X-Poedit-KeywordsList: _e;__\n" 14 14 "X-Poedit-Basepath: ../\n" 15 "X-Generator: Poedit 1. 6.4\n"15 "X-Generator: Poedit 1.5.7\n" 16 16 "X-Poedit-SourceCharset: UTF-8\n" 17 17 "X-Poedit-SearchPath-0: .\n" … … 418 418 419 419 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 420 msgid "Cross Fade" 421 msgstr "" 422 423 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 420 424 msgid "Direct Fade" 421 425 msgstr "Direktno da izbledi" -
slideshow-jquery-image-gallery/trunk/languages/slideshow-plugin-sv_SE.po
r879367 r1143459 3 3 "Project-Id-Version: Slideshow Plugin\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2014-0 3-19 20:36+0100\n"6 "PO-Revision-Date: 2014-0 3-19 20:38+0100\n"5 "POT-Creation-Date: 2014-08-19 12:03+0100\n" 6 "PO-Revision-Date: 2014-08-19 12:03+0100\n" 7 7 "Last-Translator: Wilhelm Svenselius <[email protected]>\n" 8 8 "Language-Team: Wilhelm Svenselius <[email protected]>\n" … … 13 13 "X-Poedit-KeywordsList: _e;__\n" 14 14 "X-Poedit-Basepath: ../\n" 15 "X-Generator: Poedit 1. 6.4\n"15 "X-Generator: Poedit 1.5.7\n" 16 16 "X-Poedit-SearchPath-0: .\n" 17 17 … … 410 410 411 411 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 412 msgid "Cross Fade" 413 msgstr "" 414 415 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 412 416 msgid "Direct Fade" 413 417 msgstr "Tona direkt" -
slideshow-jquery-image-gallery/trunk/languages/slideshow-plugin-tr_TR.po
r879367 r1143459 3 3 "Project-Id-Version: Slideshow Plugin\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2014-0 3-19 20:38+0100\n"6 "PO-Revision-Date: 2014-0 3-19 20:38+0100\n"5 "POT-Creation-Date: 2014-08-19 12:03+0100\n" 6 "PO-Revision-Date: 2014-08-19 12:03+0100\n" 7 7 "Last-Translator: Kelkirpi <[email protected]>\n" 8 8 "Language-Team: Stefan Boonstra <[email protected]>\n" … … 13 13 "X-Poedit-KeywordsList: _e;__\n" 14 14 "X-Poedit-Basepath: ../\n" 15 "X-Generator: Poedit 1. 6.4\n"15 "X-Generator: Poedit 1.5.7\n" 16 16 "X-Poedit-SearchPath-0: .\n" 17 17 … … 418 418 419 419 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 420 msgid "Cross Fade" 421 msgstr "" 422 423 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 420 424 msgid "Direct Fade" 421 425 msgstr "Direkt Solma" -
slideshow-jquery-image-gallery/trunk/languages/slideshow-plugin-zh_CN.po
r879367 r1143459 3 3 "Project-Id-Version: Slideshow Plugin\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2014-0 3-19 20:38+0100\n"6 "PO-Revision-Date: 2014-0 3-19 20:38+0100\n"5 "POT-Creation-Date: 2014-08-19 12:03+0100\n" 6 "PO-Revision-Date: 2014-08-19 12:04+0100\n" 7 7 "Last-Translator: leo <[email protected]>\n" 8 8 "Language-Team: Kevin Tell\n" … … 14 14 "X-Poedit-Basepath: ../\n" 15 15 "X-Poedit-SourceCharset: UTF-8\n" 16 "X-Generator: Poedit 1. 6.4\n"16 "X-Generator: Poedit 1.5.7\n" 17 17 "X-Poedit-SearchPath-0: .\n" 18 18 … … 411 411 412 412 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 413 msgid "Cross Fade" 414 msgstr "" 415 416 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 413 417 msgid "Direct Fade" 414 418 msgstr "" -
slideshow-jquery-image-gallery/trunk/readme.txt
r885343 r1143459 5 5 Tags: responsive, slideshow, slider, slide show, images, image, photo, video, text, gallery, galleries, jquery, javascript 6 6 Requires at least: 3.5 7 Tested up to: 3.98 Stable tag: 2.2.2 17 Tested up to: 4.2 8 Stable tag: 2.2.22 9 9 License: GPLv2 10 10 … … 37 37 = Languages = 38 38 39 - Bulgarian (8 8% - bg_BG - Translated by [Ilko Ivanov](http://software.avalonbg.com/en/index.php))40 - Chinese (6 6% - zh_CN - Translated by [Kevin Tell](http://www.ivygg.com/) and [Leo Newbiesup](http://smallseotips.com/))41 - Czech (8 2% - cs_CZ - Translated by Edhel)39 - Bulgarian (87% - bg_BG - Translated by [Ilko Ivanov](http://software.avalonbg.com/en/index.php)) 40 - Chinese (65% - zh_CN - Translated by [Kevin Tell](http://www.ivygg.com/) and [Leo Newbiesup](http://smallseotips.com/)) 41 - Czech (81% - cs_CZ - Translated by Edhel) 42 42 - Dutch (100% - nl_NL - Translated by [Stefan Boonstra](http://stefanboonstra.com/) (That's me!)) 43 43 - English (100%) 44 44 - Finnish (83% - fi - Translated by A. Nonymous) 45 45 - French (91% - fr_FR - Translated by [Romain Sandri](http://www.onidesign.fr/)) 46 - German ( 84% - de_DE - Translated by [Markus Amann](http://www.dema-itsupport.com/))46 - German (99% - de_DE - Translated by [Markus Amann](http://www.dema-itsupport.com/) and others) 47 47 - Hebrew (53% - he_IL - Translated by Eli Segev) 48 48 - Italian (83% - it_IT - Translated by [Tecnikgeek](http://tecnikgeek.com/)) 49 - Japanese (83% - ja - Translated by [Michihide Hotta](http://net-newbie.com/)) 50 - Persian (91% - fa_IR - Translated by [W3Design](http://w3design.ir/)) 49 - Japanese (82% - ja - Translated by [Michihide Hotta](http://net-newbie.com/)) 50 - Norwegian (99% - nb_NO - Translated by A. Nonymous) 51 - Persian (100% - fa_IR - Translated by [W3Design](http://w3design.ir/)) 51 52 - Polish (83% - pl_PL - Translated by Wicher Wiater) 52 - Portuguese ( 75% - pt_BR - Translated by [Piero Luiz](http://www.newer7.com.br/))53 - Portuguese (92% - pt_BR - Translated by [Piero Luiz](http://www.newer7.com.br/) and others) 53 54 - Portuguese (83% - pt_PT - Translated by [Filipe Catraia](http://www.filipecatraia.com/)) 54 55 - Russian (83% - ru_RU - Translated by Dmitry Fatakov) 55 56 - Serbo-Croatian (91% - sr_RS - Translated by [Webhosting Hub](http://www.webhostinghub.com/)) 56 - Spanish (5 2% - es_ES - Translated by [Violeta Rosales](https://twitter.com/violetisha))57 - Swedish (9 2% - sv_SE - Translated by [Åke Isacsson](http://www.nojdkund.se/) and Wilhelm Svenselius)57 - Spanish (51% - es_ES - Translated by [Violeta Rosales](https://twitter.com/violetisha)) 58 - Swedish (91% - sv_SE - Translated by [Åke Isacsson](http://www.nojdkund.se/) and Wilhelm Svenselius) 58 59 - Turkish (83% - tr_TR - Translated by [İlker Akdoğan](http://www.kelkirpi.net/)) 59 60 … … 180 181 181 182 == Changelog == 183 184 = 2.2.22 = 185 * Compatible with WordPress 4.2. 186 * Default stylesheets are no longer dynamically loaded through admin-ajax.php. 187 * Fixed: Security vulnerability in the SlideshowPluginSlideshowStylesheet class. 188 * Fixed: An issue with admin-ajax.php when the frontend uses HTTP, while the backend uses HTTPS. Thanks to [Chris Scott](https://github.com/chrisscott) 189 * Fixed: A bug that caused the previous slide button and the navigation bullets to malfunction on "Cross Fade" setting. 190 * Fixed: Slideshow container calculation now uses the JavaScript round function instead of the floor function. 191 * Fixed: Separated assignment of $sessionID and increment of SlideshowPlugin::$sessionCounter. 192 * Added Norwegian translation by A. Nonymous. 193 * Updated Persian translation by W3Design. 194 * Updated German translation by A. Nonymous. 195 * Updated Brazilian Portuguese by A. Nonymous. 182 196 183 197 = 2.2.21 = -
slideshow-jquery-image-gallery/trunk/slideshow.php
r885343 r1143459 4 4 Plugin URI: http://wordpress.org/extend/plugins/slideshow-jquery-image-gallery/ 5 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.2 16 Version: 2.2.22 7 7 Requires at least: 3.5 8 8 Author: StefanBoonstra … … 23 23 { 24 24 /** @var string $version */ 25 static $version = '2.2.2 1';25 static $version = '2.2.22'; 26 26 27 27 /**
Note: See TracChangeset
for help on using the changeset viewer.