Plugin Directory

Changeset 1143459


Ignore:
Timestamp:
04/23/2015 03:53:37 PM (11 years ago)
Author:
stefanboonstra
Message:

Compatible with WordPress 4.2.
Default stylesheets are no longer dynamically loaded through admin-ajax.php.
Fixed: Security vulnerability in the SlideshowPluginSlideshowStylesheet class.
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)
Fixed: A bug that caused the previous slide button and the navigation bullets to malfunction on "Cross Fade" setting.
Fixed: Slideshow container calculation now uses the JavaScript round function instead of the floor function.
Fixed: Separated assignment of $sessionID and increment of SlideshowPlugin::$sessionCounter.
Added Norwegian translation by A. Nonymous.
Updated Persian translation by W3Design.
Updated German translation by A. Nonymous.
Updated Brazilian Portuguese by A. Nonymous.

Location:
slideshow-jquery-image-gallery/trunk
Files:
45 edited

Legend:

Unmodified
Added
Removed
  • slideshow-jquery-image-gallery/trunk/classes/SlideshowPlugin.php

    r778924 r1143459  
    105105
    106106        // The slideshow's session ID, allows JavaScript and CSS to distinguish between multiple slideshows
    107         $sessionID = self::$sessionCounter++;
     107        $sessionID = self::$sessionCounter;
    108108
    109109        // Only enqueue the functional stylesheet when the 'allStylesheetsRegistered' flag is false
     
    178178        );
    179179
     180        self::$sessionCounter++;
     181
    180182        // Return output
    181183        return $output;
  • slideshow-jquery-image-gallery/trunk/classes/SlideshowPluginSlideshowStylesheet.php

    r879367 r1143459  
    5959                wp_enqueue_style(
    6060                    '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'),
    6262                    array(),
    6363                    $stylesheetValue['version']
     
    8181    public static function enqueueStylesheet($name = null)
    8282    {
     83        $enqueueDynamicStylesheet = true;
     84        $version                  = SlideshowPluginMain::$version;
     85
    8386        if (isset($name))
    8487        {
     
    99102            else
    100103            {
    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';
    109112        }
    110113
    111114        // 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        }
    118133
    119134        return array($name, $version);
     
    173188    public static function getStylesheet($styleName)
    174189    {
    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
    179200        {
    180201            $stylesheetFile = SlideshowPluginMain::getPluginPath() . DIRECTORY_SEPARATOR . 'style' . DIRECTORY_SEPARATOR . 'SlideshowPlugin' . DIRECTORY_SEPARATOR . $styleName . '.css';
     
    188209            ob_start();
    189210            include($stylesheetFile);
    190             $stylesheet .= ob_get_clean();
     211            $stylesheet = ob_get_clean();
    191212        }
    192213
  • slideshow-jquery-image-gallery/trunk/js/min/all.frontend.min.js

    r885343 r1143459  
    33!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()}}}();
    44!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})}}}}();
    77!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)))}}();
    88slideshow_jquery_image_gallery_backend_script_scriptsloadedFlag=!0;
  • slideshow-jquery-image-gallery/trunk/languages/slideshow-plugin-bg_BG.po

    r879367 r1143459  
    11msgid ""
    22msgstr ""
    3 "Project-Id-Version: Slideshow v2.2.19\n"
     3"Project-Id-Version: Slideshow Plugin\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2014-03-19 20:31+0100\n"
    6 "PO-Revision-Date: 2014-03-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"
    77"Last-Translator: admin <[email protected]>\n"
    88"Language-Team: \n"
     
    1212"Content-Transfer-Encoding: 8bit\n"
    1313"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"
    1817"X-Poedit-Basepath: ../\n"
    1918"X-Textdomain-Support: yes\n"
     
    504503msgstr "Прехвърляй кадрите надолу"
    505504
     505#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
     506msgid "Cross Fade"
     507msgstr ""
     508
    506509# @ slideshow-plugin
    507510#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
  • slideshow-jquery-image-gallery/trunk/languages/slideshow-plugin-cs_CZ.po

    r879367 r1143459  
    33"Project-Id-Version: Slideshow Plugin\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2014-03-19 20:31+0100\n"
    6 "PO-Revision-Date: 2014-03-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"
    77"Last-Translator: \n"
    88"Language-Team: Stefan Boonstra <[email protected]>\n"
     
    1313"X-Poedit-KeywordsList: _e;__\n"
    1414"X-Poedit-Basepath: ../\n"
    15 "X-Generator: Poedit 1.6.4\n"
     15"X-Generator: Poedit 1.5.7\n"
    1616"X-Poedit-SourceCharset: UTF-8\n"
    1717"X-Poedit-SearchPath-0: .\n"
     
    415415
    416416#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
     417msgid "Cross Fade"
     418msgstr ""
     419
     420#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
    417421msgid "Direct Fade"
    418422msgstr "Přímé prolnutí"
  • slideshow-jquery-image-gallery/trunk/languages/slideshow-plugin-de_DE.po

    r879367 r1143459  
    33"Project-Id-Version: Slideshow Plugin\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2014-03-19 20:32+0100\n"
    6 "PO-Revision-Date: 2014-03-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"
    88"Language-Team: Stefan Boonstra <[email protected]>\n"
    99"Language: de_DE\n"
     
    1313"X-Poedit-KeywordsList: _e;__\n"
    1414"X-Poedit-Basepath: ../\n"
    15 "X-Generator: Poedit 1.6.4\n"
     15"X-Generator: Poedit 1.5.7\n"
    1616"X-Poedit-SearchPath-0: .\n"
    1717
     
    2828#: classes/SlideshowPluginGeneralSettings.php:151
    2929msgid "Are you sure you want to delete this custom style?"
    30 msgstr "Sind Sie sicher, dass Sie dieses standard Layout löschen möchten?"
     30msgstr ""
     31"Sind Sie sicher, dass Sie dieses benutzerdefinierte Layout löschen möchten?"
    3132
    3233#: classes/SlideshowPluginGeneralSettings.php:196
     
    6566#: classes/SlideshowPluginSlideshowSettingsHandler.php:610
    6667msgid "The style used for this slideshow"
    67 msgstr "Das Layout dieser Diashow"
     68msgstr "Das Layout dieser Slideshow"
    6869
    6970#: classes/SlideshowPluginInstaller.php:803
    7071msgid "Custom"
    71 msgstr "Standard"
     72msgstr "Benutzerdefiniert"
    7273
    7374#: classes/SlideshowPluginInstaller.php:804
    7475#: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:126
    7576msgid "Custom style editor"
    76 msgstr "Standard Layout Editor"
     77msgstr "Editor für benutzerdefiniertes Layout"
    7778
    7879#: classes/SlideshowPluginInstaller.php:805
    7980#: classes/SlideshowPluginSlideshowSettingsHandler.php:518
    8081msgid "Animation used for transition between slides"
    81 msgstr "gewählte Animation zwischen den Dias"
     82msgstr "Animation für den Übergang zwischen den Bildern"
    8283
    8384#: classes/SlideshowPluginInstaller.php:805
    8485msgid "Slide"
    85 msgstr "Dia"
     86msgstr "Bild"
    8687
    8788#: classes/SlideshowPluginInstaller.php:805
    8889#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
    8990msgid "Fade"
    90 msgstr "verblassen"
     91msgstr "Überblenden (Fade)"
    9192
    9293#: classes/SlideshowPluginInstaller.php:805
     
    99100#: classes/SlideshowPluginSlideshowSettingsHandler.php:550
    100101msgid "Animation"
    101 msgstr "Animation"
     102msgstr "Animations-"
    102103
    103104#: classes/SlideshowPluginInstaller.php:806
    104105#: classes/SlideshowPluginSlideshowSettingsHandler.php:519
    105106msgid "Number of seconds the slide takes to slide in"
    106 msgstr "Zeit in sec. für das Hineingleiten des Dias"
     107msgstr "Zeit in sec. für das Hineingleiten des Bildes"
    107108
    108109#: classes/SlideshowPluginInstaller.php:807
     
    114115#: classes/SlideshowPluginSlideshowSettingsHandler.php:521
    115116msgid "Seconds between changing slides"
    116 msgstr "Zeit in sec. für das Wechseln der Dias"
     117msgstr "Zeit in sec. für das Wechseln der Bilder"
    117118
    118119#: classes/SlideshowPluginInstaller.php:809
    119120#: classes/SlideshowPluginSlideshowSettingsHandler.php:522
    120121msgid "Number of slides to fit into one slide"
    121 msgstr "Anzahl einzel Dias pro Diafläche"
     122msgstr "Anzahl der Bilder innerhalb einer Slideshow"
    122123
    123124#: classes/SlideshowPluginInstaller.php:809
     
    138139#: classes/SlideshowPluginSlideshowSettingsHandler.php:559
    139140msgid "Display"
    140 msgstr "Anzeige"
     141msgstr "Anzeige-"
    141142
    142143#: classes/SlideshowPluginInstaller.php:810
    143144msgid "Width of the slideshow, set to parent&#39;s width on 0"
    144 msgstr "Breite der Diashow, Standard = 0"
     145msgstr "Breite der Slideshow, Standard = 0"
    145146
    146147#: classes/SlideshowPluginInstaller.php:811
    147148msgid "Height of the slideshow"
    148 msgstr "Höhe der Diashow"
     149msgstr "Höhe der Slideshow"
    149150
    150151#: classes/SlideshowPluginInstaller.php:812
     
    154155#: classes/SlideshowPluginInstaller.php:813
    155156msgid "Fit image into slide (stretching it)"
    156 msgstr "Dia passend aufzoomen entsprechend der Vorgabe"
     157msgstr "Bild entsprechend der Vorgabe strecken"
    157158
    158159#: classes/SlideshowPluginInstaller.php:814
     
    168169#: classes/SlideshowPluginSlideshowSettingsHandler.php:531
    169170msgid "Automatically slide to the next slide"
    170 msgstr "automatisch weiter zum nächsten Dia"
     171msgstr "Automatisch weiter zum nächsten Bild"
    171172
    172173#: classes/SlideshowPluginInstaller.php:816
     
    184185#: classes/SlideshowPluginSlideshowSettingsHandler.php:568
    185186msgid "Control"
    186 msgstr "Konsole"
     187msgstr "Kontroll-"
    187188
    188189#: classes/SlideshowPluginInstaller.php:817
    189190#: classes/SlideshowPluginSlideshowSettingsHandler.php:532
    190191msgid "Return to the beginning of the slideshow after last slide"
    191 msgstr "zum Anfang der Diashow zurückkehren nach dem letzten Dia"
     192msgstr "Zum Anfang der Slideshow zurückkehren nach dem letzten Bild"
    192193
    193194#: classes/SlideshowPluginInstaller.php:818
    194195msgid "Activate buttons (so the user can scroll through the slides)"
    195196msgstr ""
    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)"
    197199
    198200#: classes/SlideshowPluginInstaller.php:819
    199201msgid "Show control panel (play and pause button)"
    200 msgstr "Bedienfeld anzeigen (Abspielen- und Pasueknopf)"
     202msgstr "Bedienfeld anzeigen (Abspielen- und Pause-Knopf)"
    201203
    202204#: classes/SlideshowPluginPostType.php:45
    203205msgid "Slideshows"
    204 msgstr "Diashows"
     206msgstr "Slideshows"
    205207
    206208#: classes/SlideshowPluginPostType.php:46
    207209#: views/SlideshowPluginWidget/form.php:7
    208210msgid "Slideshow"
    209 msgstr "Diashow"
     211msgstr "Slideshow"
    210212
    211213#: classes/SlideshowPluginPostType.php:47
    212214msgid "Add New Slideshow"
    213 msgstr "neue Diashow anlegen"
     215msgstr "neue Slideshow anlegen"
    214216
    215217#: classes/SlideshowPluginPostType.php:48
    216218msgid "Edit slideshow"
    217 msgstr "Diashow bearbeiten"
     219msgstr "Slideshow bearbeiten"
    218220
    219221#: classes/SlideshowPluginPostType.php:49
    220222msgid "New slideshow"
    221 msgstr "neue Diashow"
     223msgstr "neue Slideshow"
    222224
    223225#: classes/SlideshowPluginPostType.php:50
    224226msgid "View slideshow"
    225 msgstr "Diashow anzeigen"
     227msgstr "Slideshow anzeigen"
    226228
    227229#: classes/SlideshowPluginPostType.php:51
    228230msgid "Search slideshows"
    229 msgstr "Diashow suchen"
     231msgstr "Slideshow suchen"
    230232
    231233#: classes/SlideshowPluginPostType.php:52
    232234#: classes/SlideshowPluginPostType.php:53
    233235msgid "No slideshows found"
    234 msgstr "keine Diashow vorhanden"
     236msgstr "keine Slideshow vorhanden"
    235237
    236238#: classes/SlideshowPluginPostType.php:98
     
    240242#: classes/SlideshowPluginPostType.php:107
    241243msgid "Slides List"
    242 msgstr "Liste Diashow"
     244msgstr "Liste der Slideshow Elemente"
    243245
    244246#: classes/SlideshowPluginPostType.php:116
    245247msgid "Slideshow Style"
    246 msgstr "Layout Diashow"
     248msgstr "Layout Slideshow"
    247249
    248250#: classes/SlideshowPluginPostType.php:125
    249251msgid "Slideshow Settings"
    250 msgstr "Einstellungen Diashow"
     252msgstr "Einstellungen Slideshow"
    251253
    252254#: classes/SlideshowPluginPostType.php:173
    253255msgid "Slideshow created"
    254 msgstr ""
     256msgstr "Slideshow erstellt"
    255257
    256258#: classes/SlideshowPluginPostType.php:177
    257259msgid "Slideshow updated"
    258 msgstr ""
     260msgstr "Slideshow aktualisiert"
    259261
    260262#: classes/SlideshowPluginPostType.php:224
     
    262264#: views/SlideshowPluginPostType/slides.php:2
    263265msgid "Insert"
    264 msgstr "einfügen"
     266msgstr "Einfügen"
    265267
    266268#: classes/SlideshowPluginPostType.php:232
    267269msgid "Open all"
    268 msgstr ""
     270msgstr "Alle öffnen"
    269271
    270272#: classes/SlideshowPluginPostType.php:234
    271273msgid "Close all"
    272 msgstr ""
     274msgstr "Alle schließen"
    273275
    274276#: classes/SlideshowPluginPostType.php:240
     
    276278msgid "Add slides to this slideshow by using one of the buttons above."
    277279msgstr ""
    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."
    279282
    280283#: classes/SlideshowPluginPostType.php:320
    281284msgid "Duplicate"
    282 msgstr ""
     285msgstr "Duplizieren"
    283286
    284287#: classes/SlideshowPluginPostType.php:371
    285288msgid "Copy"
    286 msgstr ""
     289msgstr "Kopie"
    287290
    288291#: classes/SlideshowPluginShortcode.php:148
    289292msgid "No slideshow selected."
    290 msgstr "Keine Diashow ausgewählt."
     293msgstr "Keine Slideshow ausgewählt"
    291294
    292295#: classes/SlideshowPluginSlideInserter.php:194
    293296msgid "More results loaded"
    294 msgstr "weitere Ergebnissse geladen"
     297msgstr "Weitere Ergebnissse geladen"
    295298
    296299#: classes/SlideshowPluginSlideInserter.php:249
    297300msgid "Load more results"
    298 msgstr "lade weitere Ergebnisse"
     301msgstr "Lade weitere Ergebnisse"
    299302
    300303#: classes/SlideshowPluginSlideInserter.php:260
    301304msgid "No images were found, click here to upload some."
    302 msgstr "keine Bilder gefunden,hier klicken um weitere hochzuladen"
     305msgstr "Keine Bilder gefunden, hier klicken um weitere Bilder hochzuladen"
    303306
    304307#: classes/SlideshowPluginSlideInserter.php:332
    305308msgid "Are you sure you want to delete this slide?"
    306 msgstr "Sind Sie Sicher dass Sie dieses Dia löschen möchten?"
     309msgstr "Sind Sie Sicher dass Sie dieses Bild löschen möchten?"
    307310
    308311#: classes/SlideshowPluginSlideInserter.php:333
    309312msgid "Insert image slide"
    310 msgstr ""
     313msgstr "Bilder Slideshow einfügen"
    311314
    312315#: classes/SlideshowPluginSlideshowSettingsHandler.php:523
    313316msgid "Maximum width. When maximum width is 0, maximum width is ignored"
    314317msgstr ""
    315 "maximale Breite. Bei maximaler Breite = 0, wird die maximale Breite "
     318"Maximale Breite. Bei maximaler Breite = 0, wird die maximale Breite "
    316319"ignoriert."
    317320
     
    322325#: classes/SlideshowPluginSlideshowSettingsHandler.php:524
    323326msgid "More info"
    324 msgstr "weitere Informationen"
     327msgstr "Weitere Informationen"
    325328
    326329#: classes/SlideshowPluginSlideshowSettingsHandler.php:524
     
    330333"height)"
    331334msgstr ""
    332 "proportionaler Zusammenhang%s zwischen der Breite und Höhe der Diashow "
     335"Proportionaler Zusammenhang%s zwischen der Breite und Höhe der Slideshow "
    333336"(Breite:Höhe)"
    334337
    335338#: classes/SlideshowPluginSlideshowSettingsHandler.php:525
    336339msgid "Slideshow's height"
    337 msgstr "Höhe Diashow"
     340msgstr "Höhe der Slideshow"
    338341
    339342#: classes/SlideshowPluginSlideshowSettingsHandler.php:526
    340343msgid "Image behaviour"
    341 msgstr ""
     344msgstr "Bild Verhalten"
    342345
    343346#: classes/SlideshowPluginSlideshowSettingsHandler.php:527
    344347msgid "Shrink slideshow's height when width shrinks"
    345 msgstr ""
    346 "Höhe proportional anpassen wenn sich die Breite der Diashow verringert."
     348msgstr "Höhe proportional anpassen, wenn sich die Slideshow-Breite verringert"
    347349
    348350#: classes/SlideshowPluginSlideshowSettingsHandler.php:528
     
    350352"Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
    351353msgstr ""
    352 "Ansprechbarkeit aktivieren (vermindere die Breite der Diashow wenn sich die "
     354"Responsive-Modus aktivieren (verringert die Slideshow-Breite, wenn sich die "
    353355"Seitenbreite verringert)"
    354356
    355357#: classes/SlideshowPluginSlideshowSettingsHandler.php:530
    356358msgid "Hide description box, pop up when mouse hovers over"
    357 msgstr "Beschreibungsfeld ausblenden,einblenden bei Mausberührung"
     359msgstr "Beschreibungsfeld ausblenden, einblenden bei Mausberührung"
    358360
    359361#: classes/SlideshowPluginSlideshowSettingsHandler.php:533
    360362msgid "Pause slideshow when mouse hovers over"
    361 msgstr "Diashow pausieren bei Mausberührung"
     363msgstr "Slideshow pausieren bei Mausberührung"
    362364
    363365#: classes/SlideshowPluginSlideshowSettingsHandler.php:534
    364366msgid "Activate navigation buttons"
    365 msgstr "Navigation aktivieren"
     367msgstr "Navigations-Pfeile (<  >) aktivieren"
    366368
    367369#: classes/SlideshowPluginSlideshowSettingsHandler.php:535
    368370msgid "Hide navigation buttons, show when mouse hovers over"
    369 msgstr "Navigation ausblenden, sichtbar bei Mausberührung"
     371msgstr "Navigations-Pfeile (<  >) ausblenden, sichtbar erst bei Mausberührung"
    370372
    371373#: classes/SlideshowPluginSlideshowSettingsHandler.php:536
    372374msgid "Activate pagination"
    373 msgstr "Seitennummerierung aktivieren"
     375msgstr "Seitennummerierung ( . . . ) aktivieren"
    374376
    375377#: classes/SlideshowPluginSlideshowSettingsHandler.php:537
    376378msgid "Hide pagination, show when mouse hovers over"
    377 msgstr "Seitennummerierung ausblenden, sichtbar bei Mausberührung"
     379msgstr ""
     380"Seitennummerierung ( . . . )  ausblenden, sichtbar erst bei Mausberührung"
    378381
    379382#: classes/SlideshowPluginSlideshowSettingsHandler.php:538
    380383msgid "Activate control panel (play and pause button)"
    381 msgstr "Bedienfeld aktivieren (Abspiel- und Pauseknopf) "
     384msgstr "Bedienfeld aktivieren (Abspiel- und Pause-Knopf) "
    382385
    383386#: classes/SlideshowPluginSlideshowSettingsHandler.php:539
    384387msgid "Hide control panel, show when mouse hovers over"
    385 msgstr "Bedienfeld ausblenden, sichtbar bei Mausberührung"
     388msgstr "Bedienfeld ausblenden, sichtbar erst bei Mausberührung"
    386389
    387390#: classes/SlideshowPluginSlideshowSettingsHandler.php:540
    388391msgid "Wait until the next slide has loaded before showing it"
    389 msgstr ""
     392msgstr "Warten bis das nächste Bild geladen wurde, bevor es angezeigt wird"
    390393
    391394#: classes/SlideshowPluginSlideshowSettingsHandler.php:541
    392395msgid "Show a loading icon until the first slide appears"
    393 msgstr ""
     396msgstr "Zeige ein Lade-Symbol bis das erste Bild erscheint"
    394397
    395398#: classes/SlideshowPluginSlideshowSettingsHandler.php:542
    396399msgid "Randomize slides"
    397 msgstr "Dias in zufälliger Reihenfolge anzeigen"
     400msgstr "Bilder in zufälliger Reihenfolge anzeigen"
    398401
    399402#: classes/SlideshowPluginSlideshowSettingsHandler.php:543
    400403#, php-format
    401404msgid "Avoid content filter (disable if '%s' is shown)"
    402 msgstr "vermeide Inhaltsfilter (deaktiviere bei angezeigtem '%s')"
     405msgstr "Vermeide Inhaltsfilter (Deaktivieren wenn '%s' angezeigt wird)"
    403406
    404407#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
    405408msgid "Slide Left"
    406 msgstr "Dia von links"
     409msgstr "Bild von links"
    407410
    408411#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
    409412msgid "Slide Right"
    410 msgstr "Dia von rechts"
     413msgstr "Bild von rechts"
    411414
    412415#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
    413416msgid "Slide Up"
    414 msgstr "Dia aufwärts"
     417msgstr "Bild nach oben"
    415418
    416419#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
    417420msgid "Slide Down"
    418 msgstr "Dia abwärts"
     421msgstr "Bild nach unten"
     422
     423#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
     424msgid "Cross Fade"
     425msgstr ""
    419426
    420427#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
    421428msgid "Direct Fade"
    422 msgstr "verblassen"
     429msgstr "Direkt Überblenden"
    423430
    424431#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
     
    428435#: classes/SlideshowPluginSlideshowSettingsHandler.php:555
    429436msgid "Natural and centered"
    430 msgstr ""
     437msgstr "Zentriert (normal)"
    431438
    432439#: classes/SlideshowPluginSlideshowSettingsHandler.php:555
    433440msgid "Crop to fit"
    434 msgstr ""
     441msgstr "Angepasst (abgeschnitten)"
    435442
    436443#: classes/SlideshowPluginSlideshowSettingsHandler.php:555
    437444msgid "Stretch to fit"
    438 msgstr ""
     445msgstr "Gestreckt"
    439446
    440447#: classes/SlideshowPluginSlideshowSettingsHandler.php:569
     
    443450#: classes/SlideshowPluginSlideshowSettingsHandler.php:572
    444451msgid "Miscellaneous"
    445 msgstr "Diverses"
     452msgstr "Diverse"
    446453
    447454#: classes/SlideshowPluginWidget.php:23
    448455msgid "Enables you to show your slideshows in the widget area of your website."
    449456msgstr ""
    450 "ermöglicht Ihnen die Diashow im Widget-Bereich der Webseite anzuzeigen."
     457"Ermöglicht Ihnen die Slideshow im Widget-Bereich der Webseite anzuzeigen."
    451458
    452459#: classes/SlideshowPluginWidget.php:29
    453460msgid "Slideshow Widget"
    454 msgstr "Diashow Widget"
     461msgstr "Slideshow Widget"
    455462
    456463#: views/SlideshowPlugin/slideshow.php:23
    457464msgid "Play"
    458 msgstr ""
     465msgstr "Abspielen"
    459466
    460467#: views/SlideshowPlugin/slideshow.php:23
    461468msgid "Pause"
    462 msgstr ""
     469msgstr "Pause"
    463470
    464471#: views/SlideshowPlugin/slideshow.php:25
    465472msgid "Previous"
    466 msgstr ""
     473msgstr "Vorheriges"
    467474
    468475#: views/SlideshowPlugin/slideshow.php:26
    469476msgid "Next"
    470 msgstr ""
     477msgstr "Nächstes"
    471478
    472479#: views/SlideshowPlugin/slideshow.php:28
    473480msgid "Go to slide"
    474 msgstr ""
     481msgstr "Gehe zum Bild"
    475482
    476483#: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:46
    477484msgid "Default stylesheets"
    478 msgstr "Standard Layout"
     485msgstr "Standard Layouts"
    479486
    480487#: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:60
    481488msgid "Create a new custom style from this style"
    482 msgstr "Erstelle ein eigenes Layout aus diesem Layout"
     489msgstr "Erstelle ein eigenes Layout (CSS) aus diesem Layout"
    483490
    484491#: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:62
     
    488495#: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:76
    489496msgid "Custom stylesheets"
    490 msgstr "eigenes Layout"
     497msgstr "Benutzerdefinierte Layouts"
    491498
    492499#: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:89
    493500#: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:172
    494501msgid "Edit this style"
    495 msgstr "dieses Layout bearbeiten"
     502msgstr "Layout bearbeiten"
    496503
    497504#: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:91
     
    500507#: views/SlideshowPluginSlideshowSlide/backend_attachment.php:112
    501508msgid "Edit"
    502 msgstr "bearbeiten"
     509msgstr "Bearbeiten"
    503510
    504511#: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:98
    505512#: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:181
    506513msgid "Delete this style"
    507 msgstr "dieses Layout löschen"
     514msgstr "Layout löschen"
    508515
    509516#: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:100
    510517#: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:183
    511518msgid "Delete"
    512 msgstr "löschen"
     519msgstr "Löschen"
    513520
    514521#: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:110
    515522msgid "Click 'Customize' to create a new custom stylesheet."
    516 msgstr "Klicke 'modifizieren' um eine neues Layout zu erstellen."
     523msgstr "Klicken Sie 'modifizieren' um eine neues Layout zu erstellen."
    517524
    518525#: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:130
    519526msgid "Select a stylesheet to start customizing it."
    520 msgstr "Wählen sie ein Layout um mit der Modifikation zu beginnen."
     527msgstr "Wählen Sie ein Layout, um mit der Modifikation zu beginnen."
    521528
    522529#: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:139
     
    551558msgstr ""
    552559"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"
    555562
    556563#: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:29
    557564#: views/SlideshowPluginGeneralSettings/general-settings.php:15
    558565msgid "Default Slideshow Settings"
    559 msgstr "Standardeinstellungen Diashow"
     566msgstr "Standard Einstellungen Slideshow"
    560567
    561568#: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:41
     
    566573#: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:77
    567574msgid "Default Slideshow Stylesheet"
    568 msgstr "Standardeinstellungen Layout"
     575msgstr "Standard Layout Slideshow"
    569576
    570577#: views/SlideshowPluginGeneralSettings/general-settings-tab.php:11
    571578msgid "Add slideshows"
    572 msgstr "Diashow hinzufügen"
     579msgstr "Slideshow hinzufügen"
    573580
    574581#: views/SlideshowPluginGeneralSettings/general-settings-tab.php:12
    575582msgid "Edit slideshows"
    576 msgstr "Diashow bearbeiten"
     583msgstr "Slideshow bearbeiten"
    577584
    578585#: views/SlideshowPluginGeneralSettings/general-settings-tab.php:13
    579586msgid "Delete slideshows"
    580 msgstr "Diashow löschen"
     587msgstr "Slideshow löschen"
    581588
    582589#: views/SlideshowPluginGeneralSettings/general-settings-tab.php:20
     
    587594msgid "Select the user roles that will able to perform certain actions."
    588595msgstr ""
    589 "Wählen Sie die Stufe der Benutzerberechtigung zum ausführen bestimmter "
     596"Wählen Sie die Stufe der Benutzerberechtigung zum Ausführen bestimmter "
    590597"Aktionen."
    591598
    592599#: views/SlideshowPluginGeneralSettings/general-settings-tab.php:38
    593600msgid "Untitled role"
    594 msgstr "ohne Rang"
     601msgstr "unbenannte Funktion"
    595602
    596603#: views/SlideshowPluginGeneralSettings/general-settings-tab.php:65
     
    600607#: views/SlideshowPluginGeneralSettings/general-settings-tab.php:69
    601608msgid "Stylesheet location"
    602 msgstr ""
     609msgstr "Layout Speicherort"
    603610
    604611#: views/SlideshowPluginGeneralSettings/general-settings-tab.php:72
    605612msgid "top"
    606 msgstr ""
     613msgstr "oben"
    607614
    608615#: views/SlideshowPluginGeneralSettings/general-settings-tab.php:73
    609616msgid "bottom"
    610 msgstr ""
     617msgstr "unten"
    611618
    612619#: views/SlideshowPluginGeneralSettings/general-settings.php:16
    613620msgid "Custom Styles"
    614 msgstr "Eigenmodifikationen"
     621msgstr "Benutzerdefiniertes Layout"
    615622
    616623#: views/SlideshowPluginPostType/information.php:1
     
    619626"your posts or pages"
    620627msgstr ""
    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"
    623630
    624631#: views/SlideshowPluginPostType/information.php:5
     
    627634"the slideshow"
    628635msgstr ""
    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"
    631638
    632639#: views/SlideshowPluginPostType/information.php:9
     
    634641msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
    635642msgstr ""
    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."
    637645
    638646#: views/SlideshowPluginPostType/settings.php:26
     
    647655#: views/SlideshowPluginSlideshowSlide/backend_text.php:69
    648656msgid "Text slide"
    649 msgstr "Textshow"
     657msgstr "Text Slide"
    650658
    651659#: views/SlideshowPluginPostType/slides.php:61
     
    676684#: views/SlideshowPluginSlideshowSlide/backend_text.php:121
    677685msgid "URL"
    678 msgstr "Webadresse"
     686msgstr "Webadresse (URL)"
    679687
    680688#: views/SlideshowPluginPostType/slides.php:70
     
    687695#: views/SlideshowPluginSlideshowSlide/backend_text.php:124
    688696msgid "Open URL in"
    689 msgstr "öffne Webadresse in"
     697msgstr "Öffne Webadresse in"
    690698
    691699#: views/SlideshowPluginPostType/slides.php:72
     
    709717#: views/SlideshowPluginSlideshowSlide/backend_text.php:127
    710718msgid "New window"
    711 msgstr "neues Fenster"
     719msgstr "neuem Fenster"
    712720
    713721#: views/SlideshowPluginPostType/slides.php:90
     
    717725#: views/SlideshowPluginSlideshowSlide/backend_video.php:26
    718726msgid "Video slide"
    719 msgstr "Videoshow"
     727msgstr "Video Slide"
    720728
    721729#: views/SlideshowPluginPostType/slides.php:95
     
    724732#: views/SlideshowPluginSlideshowSlide/backend_video.php:35
    725733msgid "Youtube Video ID"
    726 msgstr "Youtube  Video ID"
     734msgstr "Youtube Video ID"
    727735
    728736#: views/SlideshowPluginPostType/slides.php:133
     
    733741#: views/SlideshowPluginSlideshowSlide/backend_templates.php:135
    734742msgid "Image slide"
    735 msgstr "Bildershow"
     743msgstr "Bilder Slide"
    736744
    737745#: views/SlideshowPluginPostType/slides.php:171
     
    740748"the slideshow"
    741749msgstr ""
    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 "
    743751"angezeigt werden."
    744752
     
    754762#: views/SlideshowPluginSlideshowSlide/backend_video.php:49
    755763msgid "Delete slide"
    756 msgstr "Dia löschen"
     764msgstr "Löschen"
    757765
    758766#: views/SlideshowPluginPostType/style-settings.php:22
    759767#, php-format
    760768msgid "Custom styles can be created and customized %shere%s."
    761 msgstr "Eigenmodifikationen können %shier%s erstellt und bearbeitet werden."
     769msgstr ""
     770"Eigene Layouts (CSS-Dateien) können %shier%s erstellt und bearbeitet werden."
    762771
    763772#: views/SlideshowPluginPostType/support-plugin.php:3
    764773msgid "Help to keep this plugin free!"
    765 msgstr "Helfen Sie dass das Plugin auch weiterhin kostenlos bleibt!"
     774msgstr "Helfen Sie, dass das Plugin auch weiterhin kostenlos bleibt!"
    766775
    767776#: views/SlideshowPluginPostType/support-plugin.php:6
     
    772781"Wordpress.org. Thank you in advance!"
    773782msgstr ""
    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!"
    778787
    779788#: views/SlideshowPluginPostType/support-plugin.php:15
    780789msgid "Rate on Wordpress.org"
    781 msgstr "auf Wordpress.org bewerten"
     790msgstr "Bewerten auf Wordpress.org"
    782791
    783792#: views/SlideshowPluginPostType/support-plugin.php:24
    784793msgid "Frequently Asked Questions (FAQ)"
    785 msgstr "häufig gestelle Fragen (FAQ)"
     794msgstr "Häufig gestellte Fragen (FAQ)"
    786795
    787796#: views/SlideshowPluginShortcode/shortcode-inserter.php:4
     
    789798#: views/SlideshowPluginShortcode/shortcode-inserter.php:18
    790799msgid "Insert a Slideshow"
    791 msgstr "eine Diashow einfügen"
     800msgstr "Eine Slideshow einfügen"
    792801
    793802#: views/SlideshowPluginShortcode/shortcode-inserter.php:12
    794803#: views/SlideshowPluginShortcode/shortcode-inserter.php:51
    795804msgid "Insert Slideshow"
    796 msgstr "Diashow einfügen"
     805msgstr "Slideshow einfügen"
    797806
    798807#: views/SlideshowPluginShortcode/shortcode-inserter.php:27
    799808msgid "Select a slideshow"
    800 msgstr "Diashow auswählen"
     809msgstr "Eine Slideshow auswählen"
    801810
    802811#: views/SlideshowPluginShortcode/shortcode-inserter.php:36
    803812#: views/SlideshowPluginWidget/form.php:12
    804813msgid "Untitled slideshow"
    805 msgstr "unbenannte Diashow"
     814msgstr "Unbenannte Slideshow"
    806815
    807816#: views/SlideshowPluginShortcode/shortcode-inserter.php:56
    808817msgid "Cancel"
    809 msgstr "Abbruch"
     818msgstr "Abbrechen"
    810819
    811820#: views/SlideshowPluginShortcode/shortcode-inserter.php:67
     
    815824"slideshow here!%s"
    816825msgstr ""
    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"
    819828
    820829#: views/SlideshowPluginSlideInserter/search-popup.php:6
    821830msgid "Search"
    822 msgstr "Suche"
     831msgstr "Suchen"
    823832
    824833#: views/SlideshowPluginSlideInserter/search-popup.php:7
     
    833842#: views/SlideshowPluginSlideshowSlide/backend_video.php:21
    834843msgid "Click to toggle"
    835 msgstr ""
     844msgstr "Anklicken zum Umschalten"
    836845
    837846#: views/SlideshowPluginSlideshowSlide/backend_attachment.php:160
     
    840849#: views/SlideshowPluginSlideshowSlide/backend_text.php:131
    841850msgid "Don't let search engines follow link"
    842 msgstr ""
     851msgstr "Verbietet Suchmaschinen den Link zu indexieren"
    843852
    844853#: views/SlideshowPluginSlideshowSlide/backend_attachment.php:168
    845854#: views/SlideshowPluginSlideshowSlide/backend_templates.php:197
    846855msgid "Alternative text"
    847 msgstr ""
     856msgstr "Alternativtext"
    848857
    849858#: views/SlideshowPluginSlideshowSlide/backend_templates.php:48
     
    860869#: views/SlideshowPluginSlideshowSlide/backend_video.php:42
    861870msgid "Show related videos"
    862 msgstr ""
     871msgstr "Zeige verwandte Videos"
    863872
    864873#: views/SlideshowPluginUpload/upload-button.php:1
     
    868877#: views/SlideshowPluginWidget/form.php:9
    869878msgid "Random Slideshow"
    870 msgstr "Zufallsdiashow"
     879msgstr "Zufalls-Slideshow"
    871880
    872881#~ msgid "Fit image into slide (Stretch image)"
  • slideshow-jquery-image-gallery/trunk/languages/slideshow-plugin-es_ES.po

    r879367 r1143459  
    33"Project-Id-Version: Slideshow Plugin\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2014-03-19 20:32+0100\n"
    6 "PO-Revision-Date: 2014-03-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"
    77"Last-Translator: Violeta Rosales <[email protected]>\n"
    88"Language-Team: Stefan Boonstra <[email protected]>\n"
    9 "Language: fr_FR\n"
     9"Language: es_ES\n"
    1010"MIME-Version: 1.0\n"
    1111"Content-Type: text/plain; charset=UTF-8\n"
     
    1313"X-Poedit-KeywordsList: _e;__\n"
    1414"X-Poedit-Basepath: ../\n"
    15 "X-Generator: Poedit 1.6.4\n"
     15"X-Generator: Poedit 1.5.7\n"
    1616"X-Poedit-SourceCharset: UTF-8\n"
    1717"X-Poedit-SearchPath-0: .\n"
     
    416416
    417417#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
     418msgid "Cross Fade"
     419msgstr ""
     420
     421#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
    418422msgid "Direct Fade"
    419423msgstr ""
  • slideshow-jquery-image-gallery/trunk/languages/slideshow-plugin-fa_IR.po

    r879367 r1143459  
    33"Project-Id-Version: Slideshow Plugin\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2014-03-19 20:32+0100\n"
    6 "PO-Revision-Date: 2014-03-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"
    77"Last-Translator: Maziar Moradpour <[email protected]>\n"
    88"Language-Team: Stefan Boonstra <[email protected]>\n"
     
    1313"X-Poedit-KeywordsList: _e;__\n"
    1414"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"
    1617"X-Poedit-SearchPath-0: .\n"
    1718
     
    252253#: classes/SlideshowPluginPostType.php:173
    253254msgid "Slideshow created"
    254 msgstr ""
     255msgstr "نمایشگر اسلایدی ایجاد شد"
    255256
    256257#: classes/SlideshowPluginPostType.php:177
    257258msgid "Slideshow updated"
    258 msgstr ""
     259msgstr "نمایشگر اسلایدی بروز شد"
    259260
    260261#: classes/SlideshowPluginPostType.php:224
     
    266267#: classes/SlideshowPluginPostType.php:232
    267268msgid "Open all"
    268 msgstr ""
     269msgstr "گشودن همه"
    269270
    270271#: classes/SlideshowPluginPostType.php:234
    271272msgid "Close all"
    272 msgstr ""
     273msgstr "بستن همه"
    273274
    274275#: classes/SlideshowPluginPostType.php:240
     
    279280#: classes/SlideshowPluginPostType.php:320
    280281msgid "Duplicate"
    281 msgstr ""
     282msgstr "تکثیر"
    282283
    283284#: classes/SlideshowPluginPostType.php:371
    284285msgid "Copy"
    285 msgstr ""
     286msgstr "کپی"
    286287
    287288#: classes/SlideshowPluginShortcode.php:148
     
    412413
    413414#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
     415msgid "Cross Fade"
     416msgstr "محو شدن کروز"
     417
     418#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
    414419msgid "Direct Fade"
    415420msgstr "محو شدن مستقیم"
     
    450455#: views/SlideshowPlugin/slideshow.php:23
    451456msgid "Play"
    452 msgstr ""
     457msgstr "حرکت"
    453458
    454459#: views/SlideshowPlugin/slideshow.php:23
    455460msgid "Pause"
    456 msgstr ""
     461msgstr "توقف"
    457462
    458463#: views/SlideshowPlugin/slideshow.php:25
    459464msgid "Previous"
    460 msgstr ""
     465msgstr "پیشین"
    461466
    462467#: views/SlideshowPlugin/slideshow.php:26
    463468msgid "Next"
    464 msgstr ""
     469msgstr "پسین"
    465470
    466471#: views/SlideshowPlugin/slideshow.php:28
    467472msgid "Go to slide"
    468 msgstr ""
     473msgstr "برو به اسلاید"
    469474
    470475#: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:46
     
    512517#: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:130
    513518msgid "Select a stylesheet to start customizing it."
    514 msgstr ""
     519msgstr "شیوه نامه ای را جهت شروع سفارشی سازی انتخاب کنید"
    515520
    516521#: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:139
     
    764769"درود بر شما. برای توسعه بیشتر و رفع اشکال این افزونه، به انگیزه بیشتری "
    765770"نیازمندیم. شما می توانید با مراجعه به wordpress.org و اعطای رتبه 5 ستاره به "
    766 "ما انگیزه بیشتری دهید. بی گمان مهرورزی شما با ارائه زود هنگام نسخه های بعدی "
    767 "به بهترین شکل پاسخ داده خواهد شد."
     771"افزونه این کار را انجام دهید. بی گمان مهرورزی شما با ارائه زود هنگام نسخه "
     772"های بعدی به بهترین شکل پاسخ داده خواهد شد."
    768773
    769774#: views/SlideshowPluginPostType/support-plugin.php:15
     
    823828#: views/SlideshowPluginSlideshowSlide/backend_video.php:21
    824829msgid "Click to toggle"
    825 msgstr ""
     830msgstr "برای جابجایی کلیک کنید"
    826831
    827832#: views/SlideshowPluginSlideshowSlide/backend_attachment.php:160
  • slideshow-jquery-image-gallery/trunk/languages/slideshow-plugin-fi.po

    r879367 r1143459  
    33"Project-Id-Version: Slideshow Plugin\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2014-03-19 20:32+0100\n"
    6 "PO-Revision-Date: 2014-03-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"
    77"Last-Translator: Hyvä Ihme Design <[email protected]>\n"
    88"Language-Team: Stefan Boonstra <[email protected]>\n"
     
    1313"X-Poedit-KeywordsList: _e;__\n"
    1414"X-Poedit-Basepath: ../\n"
    15 "X-Generator: Poedit 1.6.4\n"
     15"X-Generator: Poedit 1.5.7\n"
    1616"X-Poedit-SearchPath-0: .\n"
    1717
     
    419419
    420420#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
     421msgid "Cross Fade"
     422msgstr ""
     423
     424#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
    421425msgid "Direct Fade"
    422426msgstr "Suora ristikuva"
  • slideshow-jquery-image-gallery/trunk/languages/slideshow-plugin-fr_FR.po

    r879367 r1143459  
    33"Project-Id-Version: Slideshow Plugin\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2014-03-19 20:32+0100\n"
    6 "PO-Revision-Date: 2014-03-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"
    77"Last-Translator: Murat Demir <[email protected]>\n"
    88"Language-Team: Stefan Boonstra <[email protected]>\n"
     
    1313"X-Poedit-KeywordsList: _e;__\n"
    1414"X-Poedit-Basepath: ../\n"
    15 "X-Generator: Poedit 1.6.4\n"
     15"X-Generator: Poedit 1.5.7\n"
    1616"X-Poedit-SourceCharset: UTF-8\n"
    1717"X-Poedit-SearchPath-0: .\n"
     
    424424
    425425#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
     426msgid "Cross Fade"
     427msgstr ""
     428
     429#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
    426430msgid "Direct Fade"
    427431msgstr "Fondu direct"
  • slideshow-jquery-image-gallery/trunk/languages/slideshow-plugin-he_IL.po

    r879367 r1143459  
    33"Project-Id-Version: Slideshow Plugin\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2014-03-19 20:32+0100\n"
    6 "PO-Revision-Date: 2014-03-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"
    77"Last-Translator: Murat Demir <[email protected]>\n"
    88"Language-Team: EliSegev\n"
     
    1313"X-Poedit-KeywordsList: _e;__\n"
    1414"X-Poedit-Basepath: ../\n"
    15 "X-Generator: Poedit 1.6.4\n"
     15"X-Generator: Poedit 1.5.7\n"
    1616"X-Poedit-SourceCharset: UTF-8\n"
    1717"X-Poedit-SearchPath-0: .\n"
     
    411411
    412412#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
     413msgid "Cross Fade"
     414msgstr ""
     415
     416#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
    413417msgid "Direct Fade"
    414418msgstr "דהייה ישירה"
  • slideshow-jquery-image-gallery/trunk/languages/slideshow-plugin-it_IT.po

    r879367 r1143459  
    33"Project-Id-Version: Slideshow Plugin\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2014-03-19 20:32+0100\n"
    6 "PO-Revision-Date: 2014-03-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"
    77"Last-Translator: Stefan Boonstra <[email protected]>\n"
    88"Language-Team: Stefan Boonstra <[email protected]>\n"
     
    1313"X-Poedit-KeywordsList: _e;__\n"
    1414"X-Poedit-Basepath: ../\n"
    15 "X-Generator: Poedit 1.6.4\n"
     15"X-Generator: Poedit 1.5.7\n"
    1616"X-Poedit-SearchPath-0: .\n"
    1717
     
    421421
    422422#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
     423msgid "Cross Fade"
     424msgstr ""
     425
     426#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
    423427msgid "Direct Fade"
    424428msgstr "Dissolvenza"
  • slideshow-jquery-image-gallery/trunk/languages/slideshow-plugin-ja.po

    r879367 r1143459  
    33"Project-Id-Version: Slideshow Plugin\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2014-03-19 20:33+0100\n"
    6 "PO-Revision-Date: 2014-03-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"
    77"Last-Translator: HOTTA Michihide <[email protected]>\n"
    88"Language-Team: Stefan Boonstra <[email protected]>\n"
     
    1414"X-Poedit-KeywordsList: _e;__\n"
    1515"X-Poedit-Basepath: ../\n"
    16 "X-Generator: Poedit 1.6.4\n"
     16"X-Generator: Poedit 1.5.7\n"
    1717"X-Poedit-SearchPath-0: .\n"
    1818
     
    415415
    416416#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
     417msgid "Cross Fade"
     418msgstr ""
     419
     420#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
    417421msgid "Direct Fade"
    418422msgstr "ダイレクト・フェード"
  • slideshow-jquery-image-gallery/trunk/languages/slideshow-plugin-nl_NL.po

    r879367 r1143459  
    33"Project-Id-Version: Slideshow Plugin\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2014-03-19 20:33+0100\n"
    6 "PO-Revision-Date: 2014-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"
    77"Last-Translator: Stefan Boonstra <[email protected]>\n"
    88"Language-Team: Stefan Boonstra <[email protected]>\n"
     
    1313"X-Poedit-KeywordsList: _e;__\n"
    1414"X-Poedit-Basepath: ../\n"
    15 "X-Generator: Poedit 1.6.4\n"
     15"X-Generator: Poedit 1.7.6\n"
    1616"X-Poedit-SearchPath-0: .\n"
    1717
     
    430430
    431431#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
     432msgid "Cross Fade"
     433msgstr "Rechtstreekse Fade"
     434
     435#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
    432436msgid "Direct Fade"
    433 msgstr "Rechtstreekse Fade"
     437msgstr "Transparante Fade"
    434438
    435439#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
  • slideshow-jquery-image-gallery/trunk/languages/slideshow-plugin-original.po

    r879367 r1143459  
    33"Project-Id-Version: Slideshow Plugin\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2014-03-19 20:34+0100\n"
    6 "PO-Revision-Date: 2014-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"
    77"Last-Translator: Stefan Boonstra <[email protected]>\n"
    88"Language-Team: Stefan Boonstra <[email protected]>\n"
     
    1212"X-Poedit-KeywordsList: _e;__\n"
    1313"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"
    1517"X-Poedit-SearchPath-0: .\n"
    1618
     
    409411
    410412#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
     413msgid "Cross Fade"
     414msgstr ""
     415
     416#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
    411417msgid "Direct Fade"
    412418msgstr ""
  • slideshow-jquery-image-gallery/trunk/languages/slideshow-plugin-pl_PL.po

    r879367 r1143459  
    33"Project-Id-Version: Slideshow Plugin\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2014-03-19 20:34+0100\n"
    6 "PO-Revision-Date: 2014-03-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"
    77"Last-Translator: Stefan Boonstra <[email protected]>\n"
    88"Language-Team: Stefan Boonstra <[email protected]>\n"
     
    1313"X-Poedit-KeywordsList: _e;__\n"
    1414"X-Poedit-Basepath: ../\n"
    15 "X-Generator: Poedit 1.6.4\n"
     15"X-Generator: Poedit 1.5.7\n"
    1616"X-Poedit-SearchPath-0: .\n"
    1717
     
    416416
    417417#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
     418msgid "Cross Fade"
     419msgstr ""
     420
     421#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
    418422msgid "Direct Fade"
    419423msgstr "Bezpośrednie zanikanie"
  • slideshow-jquery-image-gallery/trunk/languages/slideshow-plugin-pt_BR.po

    r879367 r1143459  
    33"Project-Id-Version: Slideshow v2.2.10\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2014-03-19 20:35+0100\n"
    6 "PO-Revision-Date: 2014-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"
    88"Language-Team: \n"
    99"Language: pt_BR\n"
     
    1212"Content-Transfer-Encoding: 8bit\n"
    1313"Plural-Forms: nplurals=2; plural=n != 1;\n"
    14 "X-Generator: Poedit 1.6.4\n"
     14"X-Generator: Poedit 1.7.6\n"
    1515"X-Poedit-SourceCharset: utf-8\n"
    1616"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
     
    101101#: classes/SlideshowPluginInstaller.php:805
    102102msgid "Slide"
    103 msgstr ""
     103msgstr "Deslizar"
    104104
    105105# @ slideshow-plugin
     
    302302#: classes/SlideshowPluginPostType.php:173
    303303msgid "Slideshow created"
    304 msgstr ""
     304msgstr "Slideshow criado"
    305305
    306306# @ slideshow-plugin
    307307#: classes/SlideshowPluginPostType.php:177
    308308msgid "Slideshow updated"
    309 msgstr ""
     309msgstr "Slideshow atualizado"
    310310
    311311# @ slideshow-plugin
     
    318318#: classes/SlideshowPluginPostType.php:232
    319319msgid "Open all"
    320 msgstr ""
     320msgstr "Abrir todos"
    321321
    322322#: classes/SlideshowPluginPostType.php:234
    323323msgid "Close all"
    324 msgstr ""
     324msgstr "Fechar todos"
    325325
    326326# @ slideshow-plugin
     
    332332#: classes/SlideshowPluginPostType.php:320
    333333msgid "Duplicate"
    334 msgstr ""
     334msgstr "Duplicar"
    335335
    336336#: classes/SlideshowPluginPostType.php:371
    337337msgid "Copy"
    338 msgstr ""
     338msgstr "Copiar"
    339339
    340340# @ slideshow-plugin
     
    458458#: classes/SlideshowPluginSlideshowSettingsHandler.php:540
    459459msgid "Wait until the next slide has loaded before showing it"
    460 msgstr ""
     460msgstr "Esperar até que o próximo slide tenha carregado antes de mostrá-lo"
    461461
    462462#: classes/SlideshowPluginSlideshowSettingsHandler.php:541
    463463msgid "Show a loading icon until the first slide appears"
    464 msgstr ""
     464msgstr "Mostrar um ícone de carregando até o primeiro slide aparecer"
    465465
    466466# @ slideshow-plugin
     
    495495msgstr "Deslize para baixo"
    496496
     497#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
     498msgid "Cross Fade"
     499msgstr ""
     500
    497501# @ slideshow-plugin
    498502#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
     
    507511#: classes/SlideshowPluginSlideshowSettingsHandler.php:555
    508512msgid "Natural and centered"
    509 msgstr ""
     513msgstr "Natural e centrado"
    510514
    511515#: classes/SlideshowPluginSlideshowSettingsHandler.php:555
    512516msgid "Crop to fit"
    513 msgstr ""
     517msgstr "Corte para enquadrar"
    514518
    515519#: classes/SlideshowPluginSlideshowSettingsHandler.php:555
    516520msgid "Stretch to fit"
    517 msgstr ""
     521msgstr "Estique para enquadrar"
    518522
    519523# @ slideshow-plugin
     
    537541#: views/SlideshowPlugin/slideshow.php:23
    538542msgid "Play"
    539 msgstr ""
     543msgstr "Acionar"
    540544
    541545#: views/SlideshowPlugin/slideshow.php:23
    542546msgid "Pause"
    543 msgstr ""
     547msgstr "Pausar"
    544548
    545549#: views/SlideshowPlugin/slideshow.php:25
    546550msgid "Previous"
    547 msgstr ""
     551msgstr "Anterior"
    548552
    549553#: views/SlideshowPlugin/slideshow.php:26
    550554msgid "Next"
    551 msgstr ""
     555msgstr "Próximo"
    552556
    553557# @ slideshow-plugin
    554558#: views/SlideshowPlugin/slideshow.php:28
    555559msgid "Go to slide"
    556 msgstr ""
     560msgstr "Ir para o slide"
    557561
    558562# @ slideshow-plugin
     
    605609#: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:110
    606610msgid "Click 'Customize' to create a new custom stylesheet."
    607 msgstr ""
     611msgstr "Clique 'Customizar' para criar uma nova folha de estilo."
    608612
    609613# @ slideshow-plugin
    610614#: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:130
    611615msgid "Select a stylesheet to start customizing it."
    612 msgstr ""
     616msgstr "Selecione uma folha de estilo para customizá-la"
    613617
    614618# @ slideshow-plugin
     
    706710#: views/SlideshowPluginGeneralSettings/general-settings-tab.php:69
    707711msgid "Stylesheet location"
    708 msgstr ""
     712msgstr "Localização da folha de estilo"
    709713
    710714#: views/SlideshowPluginGeneralSettings/general-settings-tab.php:72
    711715msgid "top"
    712 msgstr ""
     716msgstr "topo"
    713717
    714718#: views/SlideshowPluginGeneralSettings/general-settings-tab.php:73
    715719msgid "bottom"
    716 msgstr ""
     720msgstr "base"
    717721
    718722# @ slideshow-plugin
     
    788792#: views/SlideshowPluginSlideshowSlide/backend_text.php:121
    789793msgid "URL"
    790 msgstr ""
     794msgstr "URL"
    791795
    792796# @ slideshow-plugin
     
    965969#: views/SlideshowPluginSlideshowSlide/backend_video.php:21
    966970msgid "Click to toggle"
    967 msgstr ""
     971msgstr "Clique para trocar"
    968972
    969973#: views/SlideshowPluginSlideshowSlide/backend_attachment.php:160
     
    972976#: views/SlideshowPluginSlideshowSlide/backend_text.php:131
    973977msgid "Don't let search engines follow link"
    974 msgstr ""
     978msgstr "Não permitir aos mecanismos de busca seguirem o link"
    975979
    976980#: views/SlideshowPluginSlideshowSlide/backend_attachment.php:168
    977981#: views/SlideshowPluginSlideshowSlide/backend_templates.php:197
    978982msgid "Alternative text"
    979 msgstr ""
     983msgstr "Texto alternativo"
    980984
    981985# @ slideshow-plugin
     
    994998#: views/SlideshowPluginSlideshowSlide/backend_video.php:42
    995999msgid "Show related videos"
    996 msgstr ""
     1000msgstr "Mostrar vídeos relacionados"
    9971001
    9981002#: views/SlideshowPluginUpload/upload-button.php:1
    9991003msgid "Upload/Manage Images"
    1000 msgstr ""
     1004msgstr "Enviar/Gerenciar Imagens"
    10011005
    10021006# @ slideshow-plugin
  • slideshow-jquery-image-gallery/trunk/languages/slideshow-plugin-pt_PT.po

    r879367 r1143459  
    33"Project-Id-Version: Slideshow Plugin\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2014-03-19 20:35+0100\n"
    6 "PO-Revision-Date: 2014-03-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"
    77"Last-Translator: Filipe Catraia <[email protected]>\n"
    88"Language-Team: Stefan Boonstra <[email protected]>\n"
     
    1313"X-Poedit-KeywordsList: _e;__\n"
    1414"X-Poedit-Basepath: ../\n"
    15 "X-Generator: Poedit 1.6.4\n"
     15"X-Generator: Poedit 1.5.7\n"
    1616"X-Poedit-SearchPath-0: .\n"
    1717
     
    421421
    422422#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
     423msgid "Cross Fade"
     424msgstr ""
     425
     426#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
    423427msgid "Direct Fade"
    424428msgstr "Desvanecimento directo"
  • slideshow-jquery-image-gallery/trunk/languages/slideshow-plugin-ru_RU.po

    r879367 r1143459  
    33"Project-Id-Version: Slideshow Plugin\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2014-03-19 20:35+0100\n"
    6 "PO-Revision-Date: 2014-03-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"
    77"Last-Translator: Dmitry Fatakov <[email protected]>\n"
    88"Language-Team: Stefan Boonstra <[email protected]>\n"
    9 "Language: ru_UA\n"
     9"Language: ru_RU\n"
    1010"MIME-Version: 1.0\n"
    1111"Content-Type: text/plain; charset=UTF-8\n"
     
    1313"X-Poedit-KeywordsList: _e;__\n"
    1414"X-Poedit-Basepath: ../\n"
    15 "X-Generator: Poedit 1.6.4\n"
     15"X-Generator: Poedit 1.5.7\n"
    1616"X-Poedit-SearchPath-0: .\n"
    1717
     
    418418
    419419#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
     420msgid "Cross Fade"
     421msgstr ""
     422
     423#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
    420424msgid "Direct Fade"
    421425msgstr "Вспышка"
  • slideshow-jquery-image-gallery/trunk/languages/slideshow-plugin-sr_RS.po

    r879367 r1143459  
    33"Project-Id-Version: Slideshow Plugin\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2014-03-19 20:36+0100\n"
    6 "PO-Revision-Date: 2014-03-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"
    77"Last-Translator: Borisa Djuraskovic <[email protected]>\n"
    88"Language-Team: Stefan Boonstra <[email protected]>\n"
    9 "Language: fr_FR\n"
     9"Language: sr_RS\n"
    1010"MIME-Version: 1.0\n"
    1111"Content-Type: text/plain; charset=UTF-8\n"
     
    1313"X-Poedit-KeywordsList: _e;__\n"
    1414"X-Poedit-Basepath: ../\n"
    15 "X-Generator: Poedit 1.6.4\n"
     15"X-Generator: Poedit 1.5.7\n"
    1616"X-Poedit-SourceCharset: UTF-8\n"
    1717"X-Poedit-SearchPath-0: .\n"
     
    418418
    419419#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
     420msgid "Cross Fade"
     421msgstr ""
     422
     423#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
    420424msgid "Direct Fade"
    421425msgstr "Direktno da izbledi"
  • slideshow-jquery-image-gallery/trunk/languages/slideshow-plugin-sv_SE.po

    r879367 r1143459  
    33"Project-Id-Version: Slideshow Plugin\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2014-03-19 20:36+0100\n"
    6 "PO-Revision-Date: 2014-03-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"
    77"Last-Translator: Wilhelm Svenselius <[email protected]>\n"
    88"Language-Team: Wilhelm Svenselius <[email protected]>\n"
     
    1313"X-Poedit-KeywordsList: _e;__\n"
    1414"X-Poedit-Basepath: ../\n"
    15 "X-Generator: Poedit 1.6.4\n"
     15"X-Generator: Poedit 1.5.7\n"
    1616"X-Poedit-SearchPath-0: .\n"
    1717
     
    410410
    411411#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
     412msgid "Cross Fade"
     413msgstr ""
     414
     415#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
    412416msgid "Direct Fade"
    413417msgstr "Tona direkt"
  • slideshow-jquery-image-gallery/trunk/languages/slideshow-plugin-tr_TR.po

    r879367 r1143459  
    33"Project-Id-Version: Slideshow Plugin\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2014-03-19 20:38+0100\n"
    6 "PO-Revision-Date: 2014-03-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"
    77"Last-Translator: Kelkirpi <[email protected]>\n"
    88"Language-Team: Stefan Boonstra <[email protected]>\n"
     
    1313"X-Poedit-KeywordsList: _e;__\n"
    1414"X-Poedit-Basepath: ../\n"
    15 "X-Generator: Poedit 1.6.4\n"
     15"X-Generator: Poedit 1.5.7\n"
    1616"X-Poedit-SearchPath-0: .\n"
    1717
     
    418418
    419419#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
     420msgid "Cross Fade"
     421msgstr ""
     422
     423#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
    420424msgid "Direct Fade"
    421425msgstr "Direkt Solma"
  • slideshow-jquery-image-gallery/trunk/languages/slideshow-plugin-zh_CN.po

    r879367 r1143459  
    33"Project-Id-Version: Slideshow Plugin\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2014-03-19 20:38+0100\n"
    6 "PO-Revision-Date: 2014-03-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"
    77"Last-Translator: leo <[email protected]>\n"
    88"Language-Team: Kevin Tell\n"
     
    1414"X-Poedit-Basepath: ../\n"
    1515"X-Poedit-SourceCharset: UTF-8\n"
    16 "X-Generator: Poedit 1.6.4\n"
     16"X-Generator: Poedit 1.5.7\n"
    1717"X-Poedit-SearchPath-0: .\n"
    1818
     
    411411
    412412#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
     413msgid "Cross Fade"
     414msgstr ""
     415
     416#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
    413417msgid "Direct Fade"
    414418msgstr ""
  • slideshow-jquery-image-gallery/trunk/readme.txt

    r885343 r1143459  
    55Tags: responsive, slideshow, slider, slide show, images, image, photo, video, text, gallery, galleries, jquery, javascript
    66Requires at least: 3.5
    7 Tested up to: 3.9
    8 Stable tag: 2.2.21
     7Tested up to: 4.2
     8Stable tag: 2.2.22
    99License: GPLv2
    1010
     
    3737= Languages =
    3838
    39  - Bulgarian      (88%  - bg_BG - Translated by [Ilko Ivanov](http://software.avalonbg.com/en/index.php))
    40  - Chinese        (66%  - zh_CN - Translated by [Kevin Tell](http://www.ivygg.com/) and [Leo Newbiesup](http://smallseotips.com/))
    41  - Czech          (82%  - 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)
    4242 - Dutch          (100% - nl_NL - Translated by [Stefan Boonstra](http://stefanboonstra.com/) (That's me!))
    4343 - English        (100%)
    4444 - Finnish        (83%  - fi    - Translated by A. Nonymous)
    4545 - 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)
    4747 - Hebrew         (53%  - he_IL - Translated by Eli Segev)
    4848 - 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/))
    5152 - 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)
    5354 - Portuguese     (83%  - pt_PT - Translated by [Filipe Catraia](http://www.filipecatraia.com/))
    5455 - Russian        (83%  - ru_RU - Translated by Dmitry Fatakov)
    5556 - Serbo-Croatian (91%  - sr_RS - Translated by [Webhosting Hub](http://www.webhostinghub.com/))
    56  - Spanish        (52%  - es_ES - Translated by [Violeta Rosales](https://twitter.com/violetisha))
    57  - Swedish        (92%  - 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)
    5859 - Turkish        (83%  - tr_TR - Translated by [İlker Akdoğan](http://www.kelkirpi.net/))
    5960
     
    180181
    181182== 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.
    182196
    183197= 2.2.21 =
  • slideshow-jquery-image-gallery/trunk/slideshow.php

    r885343 r1143459  
    44 Plugin URI: http://wordpress.org/extend/plugins/slideshow-jquery-image-gallery/
    55 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.21
     6 Version: 2.2.22
    77 Requires at least: 3.5
    88 Author: StefanBoonstra
     
    2323{
    2424    /** @var string $version */
    25     static $version = '2.2.21';
     25    static $version = '2.2.22';
    2626
    2727    /**
Note: See TracChangeset for help on using the changeset viewer.