Plugin Directory

Changeset 1226951


Ignore:
Timestamp:
08/21/2015 08:08:50 AM (11 years ago)
Author:
stefanboonstra
Message:

Compatible with WordPress 4.3.
Widget constructor no longer uses deprecated PHP 4 style constructor.
Fixed: Mismatch between session ID and settings ID.
Fixed: Unescaped data in slideshow editor.
Fixed: Resizing issues.
Added Ukrainian translation and updated Russian translation, thanks to Coupofy.

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

Legend:

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

    r1143459 r1226951  
    1010{
    1111    /** int $sessionCounter */
    12     private static $sessionCounter = 0;
     12    public static $sessionCounter = 0;
    1313
    1414    /**
     
    104104        $styleSettings = SlideshowPluginSlideshowSettingsHandler::getStyleSettings($post->ID);
    105105
    106         // The slideshow's session ID, allows JavaScript and CSS to distinguish between multiple slideshows
    107         $sessionID = self::$sessionCounter;
    108 
    109106        // Only enqueue the functional stylesheet when the 'allStylesheetsRegistered' flag is false
    110107        if (!SlideshowPluginSlideshowStylesheet::$allStylesheetsRegistered)
     
    167164        wp_localize_script(
    168165            'slideshow-jquery-image-gallery-script',
    169             'SlideshowPluginSettings_' . $sessionID,
     166            'SlideshowPluginSettings_' . $post->ID,
    170167            $settings
    171168        );
  • slideshow-jquery-image-gallery/trunk/classes/SlideshowPluginSlideshowStylesheet.php

    r1156839 r1226951  
    8181    public static function enqueueStylesheet($name = null)
    8282    {
    83         if (self::isCustomStylesheet($name))
    84         {
    85             $version = get_option($name . '_version', SlideshowPluginMain::$version);
    86 
    87             if (!self::$allStylesheetsRegistered)
    88             {
    89                 wp_enqueue_style(
    90                     'slideshow-jquery-image-gallery-ajax-stylesheet_' . $name,
    91                     admin_url('admin-ajax.php?action=slideshow_jquery_image_gallery_load_stylesheet&style=' . $name, 'admin'),
    92                     array(),
    93                     $version
    94                 );
    95             }
    96         }
    97         else
    98         {
    99             $name    = str_replace('.css', '', $name);
    100             $version = SlideshowPluginMain::$version;
    101 
    102             if (!self::$allStylesheetsRegistered)
    103             {
    104                 wp_enqueue_style(
    105                     'slideshow-jquery-image-gallery-stylesheet_' . $name,
    106                     SlideshowPluginMain::getPluginUrl() . '/css/' . $name . '.css',
    107                     array(),
    108                     $version
    109                 );
    110             }
     83        $enqueueDynamicStylesheet = true;
     84        $version                  = SlideshowPluginMain::$version;
     85
     86        if (isset($name))
     87        {
     88            // Try to get the custom style's version
     89            $customStyle        = get_option($name, false);
     90            $customStyleVersion = false;
     91
     92            if ($customStyle)
     93            {
     94                $customStyleVersion = get_option($name . '_version', false);
     95            }
     96
     97            // Style name and version
     98            if ($customStyle && $customStyleVersion)
     99            {
     100                $version = $customStyleVersion;
     101            }
     102            else
     103            {
     104                $enqueueDynamicStylesheet = false;
     105                $name                     = str_replace('.css', '', $name);
     106            }
     107        }
     108        else
     109        {
     110            $enqueueDynamicStylesheet = false;
     111            $name                     = 'style-light';
     112        }
     113
     114        // Enqueue stylesheet
     115        if ($enqueueDynamicStylesheet)
     116        {
     117            wp_enqueue_style(
     118                'slideshow-jquery-image-gallery-ajax-stylesheet_' . $name,
     119                admin_url('admin-ajax.php?action=slideshow_jquery_image_gallery_load_stylesheet&style=' . $name, 'admin'),
     120                array(),
     121                $version
     122            );
     123        }
     124        else
     125        {
     126            wp_enqueue_style(
     127                'slideshow-jquery-image-gallery-stylesheet_' . $name,
     128                SlideshowPluginMain::getPluginUrl() . '/css/' . $name . '.css',
     129                array(),
     130                $version
     131            );
    111132        }
    112133
     
    167188    public static function getStylesheet($styleName)
    168189    {
    169         // Check if $styleName is a custom stylesheet
    170         if (self::isCustomStylesheet($styleName))
     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))
    171195        {
    172196            // Get custom stylesheet
     
    197221        return $stylesheet;
    198222    }
    199 
    200     /**
    201      * Checks if the passed $styleName is a custom stylesheet or not.
    202      *
    203      * @since 2.2.23
    204      * @param string $styleName
    205      * @return boolean $isCustomStyle
    206      */
    207     public static function isCustomStylesheet($styleName)
    208     {
    209         // Get array of custom style keys and check if $styleName is in this array
    210         return in_array($styleName, array_keys(get_option(SlideshowPluginGeneralSettings::$customStyles, array())));
    211     }
    212223}
  • slideshow-jquery-image-gallery/trunk/classes/SlideshowPluginWidget.php

    r761395 r1226951  
    2525
    2626        // Create the widget.
    27         $this->WP_Widget(
     27        parent::__construct(
    2828            'slideshowWidget',
    2929            __('Slideshow Widget', 'slideshow-plugin'),
  • slideshow-jquery-image-gallery/trunk/js/min/all.frontend.min.js

    r1156839 r1226951  
    1 function onYouTubeIframeAPIReady(){slideshow_jquery_image_gallery_script.youTubeAPIReady=!0}slideshow_jquery_image_gallery_backend_script_scriptsloadedFlag=!1,slideshow_jquery_image_gallery_script=function(){var e=jQuery,i={};return i.slideshowInstances={},i.initialized=!1,i.youTubeAPIReady=!1,i.init=function(){slideshow_jquery_image_gallery_backend_script_scriptsloadedFlag!==!0||i.initialized||(i.initialized=!0,e(document).trigger("slideshow_jquery_image_gallery_script_ready"),i.loadYouTubeAPI(),i.repairStylesheetURLs(),i.activateSlideshows(),e(document).trigger("slideshow_jquery_image_gallery_slideshows_ready"))},i.getSlideshowInstance=function(s){if(isNaN(parseInt(s,10))){if(s instanceof e&&s.length>0)for(var t in i.slideshowInstances)if(i.slideshowInstances.hasOwnProperty(t)){var n=i.slideshowInstances[t];if(n instanceof i.Slideshow&&n.$container.get(0)===s.get(0))return n}}else if(i.slideshowInstances[s]instanceof i.Slideshow)return i.slideshowInstances[s];return new i.Slideshow},i.activateSlideshows=function(){e.each(jQuery(".slideshow_container"),function(s,t){var n=e(t),a=n.data("sessionId");isNaN(parseInt(a,10))&&(a=n.attr("data-session-id")),i.slideshowInstances[a]instanceof i.Slideshow||(i.slideshowInstances[a]=new i.Slideshow(n))})},i.loadYouTubeAPI=function(){if(i.loadYouTubeAPICalled=!0,!(e(".slideshow_slide_video").length<=0)){var s=document.createElement("script"),t=document.getElementsByTagName("script")[0];s.src="//www.youtube.com/iframe_api",t.parentNode.insertBefore(s,t)}},i.repairStylesheetURLs=function(){var i=e('[id*="slideshow-jquery-image-gallery-ajax-stylesheet_"]');e.each(i,function(i,s){var t,n,a,o=e(s),r=e(s).attr("href");void 0!==r&&""!==r&&(t=o.attr("id").split("_"),n=t.splice(1,t.length-1).join("_").slice(0,-4),a=r.split("?"),(void 0===a[1]||""===a[1]||a[1].toLowerCase().indexOf("style=")<0)&&(a[1]="action=slideshow_jquery_image_gallery_load_stylesheet&style="+n+"&ver="+Math.round((new Date).getTime()/1e3),r=a.join("?"),o.attr("href",r)))})},e(document).ready(function(){i.init()}),e(window).load(function(){i.init()}),e.fn.getSlideshowInstance=function(){return i.getSlideshowInstance(this)},i}();
     1function onYouTubeIframeAPIReady(){slideshow_jquery_image_gallery_script.youTubeAPIReady=!0}slideshow_jquery_image_gallery_backend_script_scriptsloadedFlag=!1,slideshow_jquery_image_gallery_script=function(){var e=jQuery,i={};return i.slideshowInstances={},i.initialized=!1,i.youTubeAPIReady=!1,i.init=function(){slideshow_jquery_image_gallery_backend_script_scriptsloadedFlag!==!0||i.initialized||(i.initialized=!0,e(document).trigger("slideshow_jquery_image_gallery_script_ready"),i.loadYouTubeAPI(),i.repairStylesheetURLs(),i.activateSlideshows(),e(document).trigger("slideshow_jquery_image_gallery_slideshows_ready"))},i.getSlideshowInstance=function(s){if(isNaN(parseInt(s,10))){if(s instanceof e&&s.length>0)for(var t in i.slideshowInstances)if(i.slideshowInstances.hasOwnProperty(t)){var n=i.slideshowInstances[t];if(n instanceof i.Slideshow&&n.$container.get(0)===s.get(0))return n}}else if(i.slideshowInstances[s]instanceof i.Slideshow)return i.slideshowInstances[s];return new i.Slideshow},i.activateSlideshows=function(){e.each(jQuery(".slideshow_container"),function(s,t){var n=e(t),a=n.data("sessionId");isNaN(parseInt(a,10))&&(a=n.attr("data-session-id")),i.slideshowInstances[a]instanceof i.Slideshow||(i.slideshowInstances[a]=new i.Slideshow(n))})},i.loadYouTubeAPI=function(){if(i.loadYouTubeAPICalled=!0,!(e(".slideshow_slide_video").length<=0)){var s=document.createElement("script"),t=document.getElementsByTagName("script")[0];s.src="//www.youtube.com/iframe_api",t.parentNode.insertBefore(s,t)}},i.repairStylesheetURLs=function(){var s=e('[id*="slideshow-jquery-image-gallery-ajax-stylesheet_"]');return s.length<=0?(i.generateStylesheetURLs(!1),void 0):(e.each(s,function(i,s){var t,n,a,o=e(s),l=e(s).attr("href");void 0!==l&&""!==l&&(t=o.attr("id").split("_"),n=t.splice(1,t.length-1).join("_").slice(0,-4),a=l.split("?"),(void 0===a[1]||""===a[1]||a[1].toLowerCase().indexOf("style=")<0)&&(a[1]="action=slideshow_jquery_image_gallery_load_stylesheet&style="+n+"&ver="+Math.round((new Date).getTime()/1e3),l=a.join("?"),o.attr("href",l)))}),void 0)},i.log=function(e){"object"==typeof console&&console.log("slideshow-jquery-image-gallery",e)},e(document).ready(function(){i.init()}),e(window).load(function(){i.init()}),e.fn.getSlideshowInstance=function(){return i.getSlideshowInstance(this)},i}();
    22
    3 !function(){var i=jQuery,t=slideshow_jquery_image_gallery_script;t.Slideshow=function(t){if(t instanceof i&&(this.$container=t,this.$content=this.$container.find(".slideshow_content"),this.$views=this.$container.find(".slideshow_view"),this.$slides=this.$container.find(".slideshow_slide"),this.$controlPanel=this.$container.find(".slideshow_controlPanel"),this.$togglePlayButton=this.$controlPanel.find(".slideshow_togglePlay"),this.$nextButton=this.$container.find(".slideshow_next"),this.$previousButton=this.$container.find(".slideshow_previous"),this.$pagination=this.$container.find(".slideshow_pagination"),this.$loadingIcon=this.$container.find(".slideshow_loading_icon"),this.ID=this.getID(),!isNaN(parseInt(this.ID,10)))){this.settings=window["SlideshowPluginSettings_"+this.ID],i.each(this.settings,i.proxy(function(i,t){"true"==t?this.settings[i]=!0:"false"==t&&(this.settings[i]=!1)},this)),this.$parentElement=this.$container.parent(),this.viewData=[],this.viewIDs=[],this.currentlyAnimating=!1,this.currentViewID=void 0,this.currentWidth=0,this.visibleViews=[],this.videoPlayers=[],this.PlayStates={UNSTARTED:-2,PAUSED:-1,TEMPORARILY_PAUSED:0,PLAYING:1},this.playState=this.PlayStates.UNSTARTED,this.interval=!1,this.pauseOnHoverTimer=!1,this.descriptionTimer=!1,this.randomNextHistoryViewIDs=[],this.randomPreviousHistoryViewIDs=[],this.randomAvailableViewIDs=[],i.each(this.$views,i.proxy(function(i){this.viewIDs.push(i)},this)),this.currentViewID=this.getNextViewID(),this.visibleViews=[this.currentViewID],this.recalculate(!1);var s=i.proxy(function(t){(this.$container.width()<=0||this.$container.height()<=0)&&setTimeout(i.proxy(function(){t(t)},this),500),i.each(this.$views,i.proxy(function(t,s){var e=i(s);t!=this.visibleViews[0]?e.css("top",this.$container.outerHeight(!0)).find("a").attr("tabindex","-1"):e.addClass("slideshow_currentView")},this))},this);s(s);var e=!0;i.each(this.$views,i.proxy(function(t,s){var n=i(s);this.viewData[t]=[],i.each(n.find(".slideshow_slide"),i.proxy(function(s,n){var h=i(n);if(this.viewData[t][s]={},h.hasClass("slideshow_slide_image")){var a=h.find("img");a.length>0?a.get(0).complete?this.viewData[t][s].loaded=1:(t===this.currentViewID&&(e=!1),this.viewData[t][s].loaded=0,this.onImageLoad(a,i.proxy(function(i){this.viewData[t][s].loaded=i?1:2,this.settings.waitUntilLoaded&&t===this.currentViewID&&this.isViewLoaded(t)&&this.start()},this))):this.viewData[t][s].loaded=-1}else this.viewData[t][s].loaded=-1},this))},this)),i(window).load(i.proxy(function(){this.recalculateVisibleViews()},this)),parseFloat(this.settings.intervalSpeed)<parseFloat(this.settings.slideSpeed)+.1&&(this.settings.intervalSpeed=parseFloat(this.settings.slideSpeed)+.1),(!this.settings.waitUntilLoaded||this.settings.waitUntilLoaded&&e)&&this.start()}}}();
    4 !function(){var t=jQuery,i=slideshow_jquery_image_gallery_script;i.Slideshow.prototype.start=function(){this.activateDescriptions(),this.activateControlPanel(),this.activateNavigationButtons(),this.activatePagination(),this.activatePauseOnHover(),this.$loadingIcon.length>0&&this.$loadingIcon.remove(),this.$content.show(),this.recalculateViews(),this.settings.enableResponsiveness&&t(window).resize(t.proxy(function(){this.recalculate(!0)},this)),this.playState=this.PlayStates.PAUSED,this.$container.trigger("slideshowPlayStateChange",[this.playState]),this.settings.play&&this.play()},i.Slideshow.prototype.play=function(){this.interval||(this.playState=this.PlayStates.PLAYING,this.$container.trigger("slideshowPlayStateChange",[this.playState]),this.interval=setInterval(t.proxy(function i(e,s){void 0===s&&(s=this),void 0===e&&(e=s.getNextViewID()),s.isViewLoaded(e)?(s.animateTo(e,1),s.play()):(s.pause(this.PlayStates.TEMPORARILY_PAUSED),setTimeout(t.proxy(function(){i(e,s)},s),100))},this),1e3*this.settings.intervalSpeed))},i.Slideshow.prototype.pause=function(t){clearInterval(this.interval),this.interval=!1,t!==this.PlayStates.PAUSED&&t!==this.PlayStates.TEMPORARILY_PAUSED&&(t=this.PlayStates.PAUSED),this.playState=t,this.$container.trigger("slideshowPlayStateChange",[this.playState])},i.Slideshow.prototype.next=function(){this.playState===this.PlayStates.PLAYING&&(this.pause(this.PlayStates.TEMPORARILY_PAUSED),this.play()),this.animateTo(this.getNextViewID(),1)},i.Slideshow.prototype.previous=function(){this.playState===this.PlayStates.PLAYING&&(this.pause(this.PlayStates.TEMPORARILY_PAUSED),this.play()),this.animateTo(this.getPreviousViewID(),-1)},i.Slideshow.prototype.isVideoPlaying=function(){for(var t in this.videoPlayers)if(this.videoPlayers.hasOwnProperty(t)){var i=this.videoPlayers[t].state;if(1==i||3==i)return!0}return!1},i.Slideshow.prototype.pauseAllVideos=function(){for(var t in this.videoPlayers)if(this.videoPlayers.hasOwnProperty(t)){var i=this.videoPlayers[t].player;null!=i&&"function"==typeof i.pauseVideo&&(this.videoPlayers[t].state=2,i.pauseVideo())}},i.Slideshow.prototype.isViewLoaded=function(i){var e=!0;return isNaN(parseInt(i,10))?!1:(t.each(this.viewData[i],t.proxy(function(t,i){0==i.loaded&&(e=!1)},this)),e)},i.Slideshow.prototype.getNaturalImageSize=function(i,e,s){return i.length<=0||!(i instanceof t)||"string"!=typeof i.attr("src")?(e(-1,-1,s),void 0):(this.onImageLoad(i,t.proxy(function(t,i){e(i.width,i.height,s)},this)),void 0)},i.Slideshow.prototype.onImageLoad=function(i,e,s){var a=new Image;return i.length<=0||!(i instanceof t)||"string"!=typeof i.attr("src")?(e(!1,a,s),void 0):(a.onload=t.proxy(function(){e(!0,a,s)},this),a.src=i.attr("src"),void 0)},i.Slideshow.prototype.getNextViewID=function(){var t=this.currentViewID;if(this.settings.random){var i=t;if(t=this.getNextRandomViewID(),t!=i)return t}return isNaN(parseInt(t,10))?0:t>=this.$views.length-1?this.settings.loop?0:this.currentViewID:t+1},i.Slideshow.prototype.getPreviousViewID=function(){var t=this.currentViewID;if(isNaN(parseInt(t,10))&&(t=0),this.settings.random){var i=t;if(t=this.getPreviousRandomViewID(),t!=i)return t}return 0>=t?this.settings.loop?t=this.$views.length-1:this.currentViewID:t-=1},i.Slideshow.prototype.getNextRandomViewID=function(){if(isNaN(parseInt(this.currentViewID,10))||this.randomPreviousHistoryViewIDs.push(this.currentViewID),this.randomPreviousHistoryViewIDs.length>2*this.viewIDs.length&&this.randomPreviousHistoryViewIDs.shift(),this.randomNextHistoryViewIDs.length>0)return this.randomNextHistoryViewIDs.pop();if(void 0===this.randomAvailableViewIDs||this.randomAvailableViewIDs.length<=0){this.randomAvailableViewIDs=t.extend(!0,[],this.viewIDs);var i=t.inArray(this.currentViewID,this.randomAvailableViewIDs);i>=0&&this.randomAvailableViewIDs.splice(i,1)}return this.randomAvailableViewIDs.splice(Math.floor(Math.random()*this.randomAvailableViewIDs.length),1).pop()},i.Slideshow.prototype.getPreviousRandomViewID=function(){return isNaN(parseInt(this.currentViewID,10))||this.randomNextHistoryViewIDs.push(this.currentViewID),this.randomNextHistoryViewIDs.length>2*this.viewIDs.length&&this.randomNextHistoryViewIDs.shift(),this.randomPreviousHistoryViewIDs.length>0?this.randomPreviousHistoryViewIDs.pop():this.viewIDs[Math.floor(Math.random()*this.viewIDs.length)]},i.Slideshow.prototype.getID=function(){var t=this.$container.data("sessionId");return isNaN(parseInt(t,10))&&(t=this.$container.attr("data-session-id")),t},i.Slideshow.prototype.bindSubmitListener=function(i){i.keypress(t.proxy(function(i){var e=i.keyCode||i.which;13===e&&(i.preventDefault(),t(i.currentTarget).click())},this))}}();
     3!function(){var i=jQuery,t=slideshow_jquery_image_gallery_script;t.Slideshow=function(s){if(s instanceof i&&(this.$container=s,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.getSlideshowID(),!isNaN(parseInt(this.ID,10)))){if(this.settings=window["SlideshowPluginSettings_"+this.ID],!this.settings)return t.log("Slideshow (ID: "+this.ID+") could not find its settings."),void 0;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 e=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);e(e);var n=!0;i.each(this.$views,i.proxy(function(t,s){var e=i(s);this.viewData[t]=[],i.each(e.find(".slideshow_slide"),i.proxy(function(s,e){var h=i(e);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&&(n=!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.recalculate(!0)},this)),parseFloat(this.settings.intervalSpeed)<parseFloat(this.settings.slideSpeed)+.1&&(this.settings.intervalSpeed=parseFloat(this.settings.slideSpeed)+.1),(!this.settings.waitUntilLoaded||this.settings.waitUntilLoaded&&n)&&this.start()}}}();
     4!function(){var t=jQuery,i=slideshow_jquery_image_gallery_script;i.Slideshow.prototype.start=function(){this.activateDescriptions(),this.activateControlPanel(),this.activateNavigationButtons(),this.activatePagination(),this.activatePauseOnHover(),this.$loadingIcon.length>0&&this.$loadingIcon.remove(),this.$content.show(),this.recalculateViews(),this.settings.enableResponsiveness&&t(window).resize(t.proxy(function(){this.recalculate(!0)},this)),this.playState=this.PlayStates.PAUSED,this.$container.trigger("slideshowPlayStateChange",[this.playState]),this.settings.play&&this.play()},i.Slideshow.prototype.play=function(){this.interval||(this.playState=this.PlayStates.PLAYING,this.$container.trigger("slideshowPlayStateChange",[this.playState]),this.interval=setInterval(t.proxy(function i(e,s){void 0===s&&(s=this),void 0===e&&(e=s.getNextViewID()),s.isViewLoaded(e)?(s.animateTo(e,1),s.play()):(s.pause(this.PlayStates.TEMPORARILY_PAUSED),setTimeout(t.proxy(function(){i(e,s)},s),100))},this),1e3*this.settings.intervalSpeed))},i.Slideshow.prototype.pause=function(t){clearInterval(this.interval),this.interval=!1,t!==this.PlayStates.PAUSED&&t!==this.PlayStates.TEMPORARILY_PAUSED&&(t=this.PlayStates.PAUSED),this.playState=t,this.$container.trigger("slideshowPlayStateChange",[this.playState])},i.Slideshow.prototype.next=function(){this.playState===this.PlayStates.PLAYING&&(this.pause(this.PlayStates.TEMPORARILY_PAUSED),this.play()),this.animateTo(this.getNextViewID(),1)},i.Slideshow.prototype.previous=function(){this.playState===this.PlayStates.PLAYING&&(this.pause(this.PlayStates.TEMPORARILY_PAUSED),this.play()),this.animateTo(this.getPreviousViewID(),-1)},i.Slideshow.prototype.isVideoPlaying=function(){for(var t in this.videoPlayers)if(this.videoPlayers.hasOwnProperty(t)){var i=this.videoPlayers[t].state;if(1==i||3==i)return!0}return!1},i.Slideshow.prototype.pauseAllVideos=function(){for(var t in this.videoPlayers)if(this.videoPlayers.hasOwnProperty(t)){var i=this.videoPlayers[t].player;null!=i&&"function"==typeof i.pauseVideo&&(this.videoPlayers[t].state=2,i.pauseVideo())}},i.Slideshow.prototype.isViewLoaded=function(i){var e=!0;return isNaN(parseInt(i,10))?!1:(t.each(this.viewData[i],t.proxy(function(t,i){0==i.loaded&&(e=!1)},this)),e)},i.Slideshow.prototype.getNaturalImageSize=function(i,e,s){return i.length<=0||!(i instanceof t)||"string"!=typeof i.attr("src")?(e(-1,-1,s),void 0):(this.onImageLoad(i,t.proxy(function(t,i){e(i.width,i.height,s)},this)),void 0)},i.Slideshow.prototype.onImageLoad=function(i,e,s){var a=new Image;return i.length<=0||!(i instanceof t)||"string"!=typeof i.attr("src")?(e(!1,a,s),void 0):(a.onload=t.proxy(function(){e(!0,a,s)},this),a.src=i.attr("src"),void 0)},i.Slideshow.prototype.getNextViewID=function(){var t=this.currentViewID;if(this.settings.random){var i=t;if(t=this.getNextRandomViewID(),t!=i)return t}return isNaN(parseInt(t,10))?0:t>=this.$views.length-1?this.settings.loop?0:this.currentViewID:t+1},i.Slideshow.prototype.getPreviousViewID=function(){var t=this.currentViewID;if(isNaN(parseInt(t,10))&&(t=0),this.settings.random){var i=t;if(t=this.getPreviousRandomViewID(),t!=i)return t}return 0>=t?this.settings.loop?t=this.$views.length-1:this.currentViewID:t-=1},i.Slideshow.prototype.getNextRandomViewID=function(){if(isNaN(parseInt(this.currentViewID,10))||this.randomPreviousHistoryViewIDs.push(this.currentViewID),this.randomPreviousHistoryViewIDs.length>2*this.viewIDs.length&&this.randomPreviousHistoryViewIDs.shift(),this.randomNextHistoryViewIDs.length>0)return this.randomNextHistoryViewIDs.pop();if(void 0===this.randomAvailableViewIDs||this.randomAvailableViewIDs.length<=0){this.randomAvailableViewIDs=t.extend(!0,[],this.viewIDs);var i=t.inArray(this.currentViewID,this.randomAvailableViewIDs);i>=0&&this.randomAvailableViewIDs.splice(i,1)}return this.randomAvailableViewIDs.splice(Math.floor(Math.random()*this.randomAvailableViewIDs.length),1).pop()},i.Slideshow.prototype.getPreviousRandomViewID=function(){return isNaN(parseInt(this.currentViewID,10))||this.randomNextHistoryViewIDs.push(this.currentViewID),this.randomNextHistoryViewIDs.length>2*this.viewIDs.length&&this.randomNextHistoryViewIDs.shift(),this.randomPreviousHistoryViewIDs.length>0?this.randomPreviousHistoryViewIDs.pop():this.viewIDs[Math.floor(Math.random()*this.viewIDs.length)]},i.Slideshow.prototype.getSlideshowID=function(){var t=this.$container.data("slideshowId");return isNaN(parseInt(t,10))&&(t=this.$container.attr("data-slideshow-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))}}();
    55!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)}}}();
    66!function(){var t=jQuery,i=slideshow_jquery_image_gallery_script;i.Slideshow.prototype.recalculate=function(i){if(!this.$container.is(":visible"))return setTimeout(t.proxy(function(){this.recalculate(i)},this),500),void 0;for(var e=this.$parentElement,h=0;e.width()<=0&&(e=e.parent(),!(h>50));h++);if(this.currentWidth!=e.width()){this.currentWidth=e.width();var s=e.width()-(this.$container.outerWidth()-this.$container.width());if(parseInt(this.settings.maxWidth,10)>0&&parseInt(this.settings.maxWidth,10)<s&&(s=parseInt(this.settings.maxWidth,10)),this.$container.css("width",Math.round(s)),this.$content.css("width",Math.round(s)-(this.$content.outerWidth(!0)-this.$content.width())),this.settings.preserveSlideshowDimensions){var r=s*this.settings.dimensionHeight/this.settings.dimensionWidth;this.$container.css("height",Math.round(r)),this.$content.css("height",Math.round(r)-(this.$content.outerHeight(!0)-this.$content.height()))}else this.$container.css("height",Math.round(this.settings.height)),this.$content.css("height",Math.round(this.settings.height));this.$views.each(t.proxy(function(i,e){t.inArray(i,this.visibleViews)<0&&t(e).css("top",this.$container.outerHeight(!0))},this)),this.$container.trigger("slideshowResize"),(i||"boolean"!=typeof i)&&this.recalculateVisibleViews()}},i.Slideshow.prototype.recalculateViews=function(){t.each(this.$views,t.proxy(function(t){this.recalculateView(t,!1)},this))},i.Slideshow.prototype.recalculateVisibleViews=function(){t.each(this.visibleViews,t.proxy(function(t,i){this.recalculateView(i,!1)},this))},i.Slideshow.prototype.recalculateView=function(e,h){if(this.$content.width()<=0||this.$content.height()<=0)return setTimeout(t.proxy(function(){this.recalculateView(e,h)},this),500),void 0;var s=t(this.$views[e]);if("boolean"==typeof h&&h||this.$content.width()!=s.outerWidth(!0)){var r=s.find(".slideshow_slide");if(!(r.length<=0)){var a=this.$content.width()-(s.outerWidth(!0)-s.width()),o=this.$content.height()-(s.outerHeight(!0)-s.height()),n=Math.floor(a/r.length),d=o,l=a%r.length,c=0;t(r[0]).css("margin-left",0),t(r[r.length-1]).css("margin-right",0),t.each(r,t.proxy(function(h,s){var a=t(s),o=a.outerWidth(!0)-a.width(),g=a.outerHeight(!0)-a.height();if(h==r.length-1?a.width(n-o+l):a.width(n-o),a.height(d-g),a.hasClass("slideshow_slide_text")){var u=a.find(".slideshow_background_anchor");if(u.length<=0)return;var w=a.width()-(u.outerWidth(!0)-u.width()),f=a.height()-(u.outerHeight(!0)-u.height());u.css({width:w,height:f})}else if(a.hasClass("slideshow_slide_image")){var v=a.find("img");if(v.length<=0)return;var p,m,y=v.outerWidth(),$=v.outerHeight();p=isNaN(parseInt(y,10))?0:y-v.width(),m=isNaN(parseInt($,10))?0:$-v.height();var _=a.width()-p,x=a.height()-m;"stretch"===this.settings.imageBehaviour?(v.css({width:_,height:x}),v.attr({width:_,height:x})):this.getNaturalImageSize(v,t.proxy(function(i,h){var s,r;return 0>=i||0>=h?(setTimeout(t.proxy(function(){this.recalculateView(e,!0)},this),500),void 0):(s=a.width()/a.height(),r=(i+p)/(h+m),r>=s?"natural"===this.settings.imageBehaviour?(v.css({margin:"0px",width:_,height:Math.round(_/r)}),v.attr({width:_,height:Math.round(_/r)})):"crop"===this.settings.imageBehaviour&&(v.css({"margin-top":"0px","margin-left":-Math.floor((x*r-_)/2),height:x,width:Math.floor(x*r)}),v.attr({width:Math.floor(x*r),height:x})):"natural"===this.settings.imageBehaviour?(v.css({"margin-left":"auto","margin-right":"auto",display:"block",width:Math.round(x*r),height:x}),v.attr({width:Math.round(x*r),height:x})):"crop"===this.settings.imageBehaviour&&(v.css({"margin-top":-Math.floor((_/r-x)/2),"margin-left":"0px",width:_,height:Math.floor(_/r)}),v.attr({width:_,height:Math.floor(_/r)})),void 0)},this))}else if(a.hasClass("slideshow_slide_video")){var M=a.find("iframe");if(M.length>0)M.attr({width:a.width(),height:a.height()});else var W=setInterval(t.proxy(function(){if(i.youTubeAPIReady){clearInterval(W);var e=a.find(".slideshow_slide_video_id");e.attr("id","slideshow_slide_video_"+Math.floor(1e6*Math.random())+"_"+e.text());var h=e.attr("data-show-related-videos"),s=new YT.Player(e.attr("id"),{width:a.width(),height:a.height(),videoId:e.text(),playerVars:{wmode:"opaque",rel:h},events:{onReady:function(){},onStateChange:t.proxy(function(t){this.videoPlayers[e.attr("id")].state=t.data},this)}}),r=t("#"+e.attr("id"));r.show(),r.attr("src",r.attr("src")+"&wmode=opaque"),this.videoPlayers[e.attr("id")]={player:s,state:-1}}},this),500)}c+=a.outerWidth(!0)},this)),s.css({width:a,height:o})}}}}();
  • slideshow-jquery-image-gallery/trunk/languages/slideshow-plugin-es_ES.po

    r1156839 r1226951  
    33"Project-Id-Version: Slideshow Plugin\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2015-04-29 09:46+0100\n"
    6 "PO-Revision-Date: 2015-04-29 09:46+0100\n"
    7 "Last-Translator: Manuel Ballesta Ruiz <mbruiz1967@mbrsolution.com>\n"
     5"POT-Creation-Date: 2014-08-19 11:53+0100\n"
     6"PO-Revision-Date: 2014-08-19 11:53+0100\n"
     7"Last-Translator: Violeta Rosales <ellaes@violetarosales.com>\n"
    88"Language-Team: Stefan Boonstra <[email protected]>\n"
    99"Language: es_ES\n"
     
    1111"Content-Type: text/plain; charset=UTF-8\n"
    1212"Content-Transfer-Encoding: 8bit\n"
    13 "Plural-Forms: nplurals=2; plural=n != 1;\n"
    14 "X-Poedit-SourceCharset: UTF-8\n"
    15 "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
    16 "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
    17 "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
    18 "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
    19 "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
     13"X-Poedit-KeywordsList: _e;__\n"
    2014"X-Poedit-Basepath: ../\n"
    2115"X-Generator: Poedit 1.5.7\n"
    22 "X-Loco-Target-Locale: es_ES\n"
     16"X-Poedit-SourceCharset: UTF-8\n"
    2317"X-Poedit-SearchPath-0: .\n"
    2418
     
    2721#: views/SlideshowPluginGeneralSettings/general-settings.php:14
    2822msgid "General Settings"
    29 msgstr "Configuración General"
     23msgstr ""
    3024
    3125#: classes/SlideshowPluginGeneralSettings.php:150
    3226msgid "New"
    33 msgstr "Nuevo"
     27msgstr ""
    3428
    3529#: classes/SlideshowPluginGeneralSettings.php:151
    3630msgid "Are you sure you want to delete this custom style?"
    37 msgstr "¿Seguro que quieres borrar este estilo personalizado?"
     31msgstr ""
    3832
    3933#: classes/SlideshowPluginGeneralSettings.php:196
     
    5347#: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:143
    5448msgid "Untitled"
    55 msgstr "Sin titulo"
     49msgstr ""
    5650
    5751#: classes/SlideshowPluginInstaller.php:800
     
    9589#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
    9690msgid "Fade"
    97 msgstr "Fundido"
     91msgstr "Desvanecer"
    9892
    9993#: classes/SlideshowPluginInstaller.php:805
     
    149143#: classes/SlideshowPluginInstaller.php:810
    150144msgid "Width of the slideshow, set to parent&#39;s width on 0"
    151 msgstr "Ancho de la diapositiva. ajustado el ancho a 0 para el padre&#39;s"
     145msgstr ""
     146"Ancho de las diapositivas. Escribe 0 para tomar el ancho del nodo padre."
    152147
    153148#: classes/SlideshowPluginInstaller.php:811
    154149msgid "Height of the slideshow"
    155 msgstr "Altura de la presentación de diapositivas"
     150msgstr "Alto de las diapositivas"
    156151
    157152#: classes/SlideshowPluginInstaller.php:812
    158153msgid "Height of the description boxes"
    159 msgstr "Altura de las cajas de Descripción"
     154msgstr "Alto de la caja de descripción"
    160155
    161156#: classes/SlideshowPluginInstaller.php:813
     
    262257#: classes/SlideshowPluginPostType.php:173
    263258msgid "Slideshow created"
    264 msgstr "Diapositiva creada"
     259msgstr ""
    265260
    266261#: classes/SlideshowPluginPostType.php:177
    267262msgid "Slideshow updated"
    268 msgstr "Diapositiva actualizada"
     263msgstr ""
    269264
    270265#: classes/SlideshowPluginPostType.php:224
     
    276271#: classes/SlideshowPluginPostType.php:232
    277272msgid "Open all"
    278 msgstr "Abrir todos"
     273msgstr ""
    279274
    280275#: classes/SlideshowPluginPostType.php:234
    281276msgid "Close all"
    282 msgstr "Cerrar todos"
     277msgstr ""
    283278
    284279#: classes/SlideshowPluginPostType.php:240
    285280#: views/SlideshowPluginPostType/slides.php:10
    286281msgid "Add slides to this slideshow by using one of the buttons above."
    287 msgstr "Agrega una diapositiva usando uno de los botones de arriba. "
     282msgstr "Agrega una diapositiva usando uno de los botones de abajo."
    288283
    289284#: classes/SlideshowPluginPostType.php:320
    290285msgid "Duplicate"
    291 msgstr "Duplicar "
     286msgstr ""
    292287
    293288#: classes/SlideshowPluginPostType.php:371
    294289msgid "Copy"
    295 msgstr "Copiar"
     290msgstr ""
    296291
    297292#: classes/SlideshowPluginShortcode.php:148
     
    301296#: classes/SlideshowPluginSlideInserter.php:194
    302297msgid "More results loaded"
    303 msgstr "Mas resultados agregados"
     298msgstr ""
    304299
    305300#: classes/SlideshowPluginSlideInserter.php:249
     
    317312#: classes/SlideshowPluginSlideInserter.php:333
    318313msgid "Insert image slide"
    319 msgstr "Insertar imagen en una diapositiva "
     314msgstr ""
    320315
    321316#: classes/SlideshowPluginSlideshowSettingsHandler.php:523
    322317msgid "Maximum width. When maximum width is 0, maximum width is ignored"
    323318msgstr ""
    324 "Ancho máximo. Cuando la anchura máxima es 0, la anchura máxima se ignora"
    325319
    326320#: classes/SlideshowPluginSlideshowSettingsHandler.php:524
    327321msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
    328 msgstr "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
     322msgstr ""
    329323
    330324#: classes/SlideshowPluginSlideshowSettingsHandler.php:524
    331325msgid "More info"
    332 msgstr "Mas información "
     326msgstr ""
    333327
    334328#: classes/SlideshowPluginSlideshowSettingsHandler.php:524
     
    338332"height)"
    339333msgstr ""
    340 "Relación%s proporcional entre la anchura y la altura de diapositivas "
    341 "(anchura:altura)"
    342334
    343335#: classes/SlideshowPluginSlideshowSettingsHandler.php:525
    344336msgid "Slideshow's height"
    345 msgstr "Altura de Diapositiva"
     337msgstr ""
    346338
    347339#: classes/SlideshowPluginSlideshowSettingsHandler.php:526
    348340msgid "Image behaviour"
    349 msgstr "El comportamiento de la imagen "
     341msgstr ""
    350342
    351343#: classes/SlideshowPluginSlideshowSettingsHandler.php:527
    352344msgid "Shrink slideshow's height when width shrinks"
    353 msgstr "Reducir la altura de diapositivas cuando la anchura se reduce"
     345msgstr ""
    354346
    355347#: classes/SlideshowPluginSlideshowSettingsHandler.php:528
     
    357349"Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
    358350msgstr ""
    359 "Habilitar diseño responsivos (Reduce el ancho de diapositivas cuando el "
    360 "ancho de la página se contrae)"
    361351
    362352#: classes/SlideshowPluginSlideshowSettingsHandler.php:530
    363353msgid "Hide description box, pop up when mouse hovers over"
    364354msgstr ""
    365 "Ocultar el cuadro de descripción, aparecerá cuando el ratón pase por encima"
    366355
    367356#: classes/SlideshowPluginSlideshowSettingsHandler.php:533
    368357msgid "Pause slideshow when mouse hovers over"
    369 msgstr "Pausa la diapositiva cuando el ratón pase por encima"
     358msgstr ""
    370359
    371360#: classes/SlideshowPluginSlideshowSettingsHandler.php:534
    372361msgid "Activate navigation buttons"
    373 msgstr "Activar los botones de navegación "
     362msgstr ""
    374363
    375364#: classes/SlideshowPluginSlideshowSettingsHandler.php:535
    376365msgid "Hide navigation buttons, show when mouse hovers over"
    377366msgstr ""
    378 "Ocultar los botones de navegación, mostrar cuando el ratón pase por encima"
    379367
    380368#: classes/SlideshowPluginSlideshowSettingsHandler.php:536
    381369msgid "Activate pagination"
    382 msgstr "Activar las paginas "
     370msgstr ""
    383371
    384372#: classes/SlideshowPluginSlideshowSettingsHandler.php:537
    385373msgid "Hide pagination, show when mouse hovers over"
    386 msgstr "Esconder las paginas, mostrar el ratón pase por encima "
     374msgstr ""
    387375
    388376#: classes/SlideshowPluginSlideshowSettingsHandler.php:538
    389377msgid "Activate control panel (play and pause button)"
    390 msgstr "Activar el panel de control (reproducción y botón de pausa)"
     378msgstr ""
    391379
    392380#: classes/SlideshowPluginSlideshowSettingsHandler.php:539
    393381msgid "Hide control panel, show when mouse hovers over"
    394 msgstr "Ocultar el panel de control, mostrar cuando el ratón pase por encima "
     382msgstr ""
    395383
    396384#: classes/SlideshowPluginSlideshowSettingsHandler.php:540
    397385msgid "Wait until the next slide has loaded before showing it"
    398386msgstr ""
    399 "Espere hasta que la siguiente diapositiva se ha cargado antes de mostrarlo"
    400387
    401388#: classes/SlideshowPluginSlideshowSettingsHandler.php:541
    402389msgid "Show a loading icon until the first slide appears"
    403 msgstr "Mostrar un icono de carga hasta que aparezca la primera diapositiva"
     390msgstr ""
    404391
    405392#: classes/SlideshowPluginSlideshowSettingsHandler.php:542
     
    414401#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
    415402msgid "Slide Left"
    416 msgstr "Deslice a la izquierda"
     403msgstr ""
    417404
    418405#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
    419406msgid "Slide Right"
    420 msgstr "Deslice a la derecha "
     407msgstr ""
    421408
    422409#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
    423410msgid "Slide Up"
    424 msgstr "Deslice hacia arriba"
     411msgstr ""
    425412
    426413#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
    427414msgid "Slide Down"
    428 msgstr "Deslice hacia abajo "
     415msgstr ""
    429416
    430417#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
    431418msgid "Cross Fade"
    432 msgstr "Fundido Encadenado"
     419msgstr ""
    433420
    434421#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
    435422msgid "Direct Fade"
    436 msgstr "Fundido en Directo"
     423msgstr ""
    437424
    438425#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
    439426msgid "Random Animation"
    440 msgstr "Animación Sin Orden "
     427msgstr ""
    441428
    442429#: classes/SlideshowPluginSlideshowSettingsHandler.php:555
    443430msgid "Natural and centered"
    444 msgstr "Natural y centrado"
     431msgstr ""
    445432
    446433#: classes/SlideshowPluginSlideshowSettingsHandler.php:555
    447434msgid "Crop to fit"
    448 msgstr "Recortar para ajustarse"
     435msgstr ""
    449436
    450437#: classes/SlideshowPluginSlideshowSettingsHandler.php:555
    451438msgid "Stretch to fit"
    452 msgstr "Estirar para caber"
     439msgstr ""
    453440
    454441#: classes/SlideshowPluginSlideshowSettingsHandler.php:569
     
    457444#: classes/SlideshowPluginSlideshowSettingsHandler.php:572
    458445msgid "Miscellaneous"
    459 msgstr "Misceláneo"
     446msgstr "Miscelanea"
    460447
    461448#: classes/SlideshowPluginWidget.php:23
     
    469456#: views/SlideshowPlugin/slideshow.php:23
    470457msgid "Play"
    471 msgstr "Reproducir"
     458msgstr ""
    472459
    473460#: views/SlideshowPlugin/slideshow.php:23
    474461msgid "Pause"
    475 msgstr "Pausa"
     462msgstr ""
    476463
    477464#: views/SlideshowPlugin/slideshow.php:25
    478465msgid "Previous"
    479 msgstr "Perviamente"
     466msgstr ""
    480467
    481468#: views/SlideshowPlugin/slideshow.php:26
    482469msgid "Next"
    483 msgstr "Proxima"
     470msgstr ""
    484471
    485472#: views/SlideshowPlugin/slideshow.php:28
    486473msgid "Go to slide"
    487 msgstr "Ir a diapositiva"
     474msgstr ""
    488475
    489476#: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:46
    490477msgid "Default stylesheets"
    491 msgstr "Hojas de estilo por defecto"
     478msgstr ""
    492479
    493480#: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:60
    494481msgid "Create a new custom style from this style"
    495 msgstr "Crear un nuevo estilo personalizado de este estilo"
     482msgstr ""
    496483
    497484#: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:62
    498485msgid "Customize"
    499 msgstr "Personalizar"
     486msgstr ""
    500487
    501488#: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:76
    502489msgid "Custom stylesheets"
    503 msgstr "Hojas de estilo personalizadas"
     490msgstr ""
    504491
    505492#: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:89
    506493#: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:172
    507494msgid "Edit this style"
    508 msgstr "Edita este estilo "
     495msgstr ""
    509496
    510497#: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:91
     
    518505#: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:181
    519506msgid "Delete this style"
    520 msgstr "Borrar este estilo"
     507msgstr ""
    521508
    522509#: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:100
    523510#: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:183
    524511msgid "Delete"
    525 msgstr "Borrar"
     512msgstr ""
    526513
    527514#: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:110
    528515msgid "Click 'Customize' to create a new custom stylesheet."
    529516msgstr ""
    530 "Haga clic en \"Personalizar\" para crear una nueva hoja de estilo "
    531 "personalizado."
    532517
    533518#: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:130
    534519msgid "Select a stylesheet to start customizing it."
    535 msgstr "Seleccione una hoja de estilo para comenzar a personalizarlo. "
     520msgstr ""
    536521
    537522#: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:139
     
    552537#: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:200
    553538msgid "Style"
    554 msgstr "Estilo"
     539msgstr "Style"
    555540
    556541#: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:11
    557542msgid "Note"
    558 msgstr "Nota"
     543msgstr ""
    559544
    560545#: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:18
     
    565550"%sclick here.%s"
    566551msgstr ""
    567 "Los ajustes establecidos en esta página sólo se aplican a presentaciones de "
    568 "diapositivas de nueva creación y, por tanto, no afectan a los ya existentes. "
    569 "Para adaptar la configuración de una presentación de diapositivas, %shaga "
    570 "clic aquí.%s"
    571552
    572553#: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:29
    573554#: views/SlideshowPluginGeneralSettings/general-settings.php:15
    574555msgid "Default Slideshow Settings"
    575 msgstr "Ajustes por defecto de diapositivas"
     556msgstr ""
    576557
    577558#: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:41
    578559#: views/SlideshowPluginPostType/settings.php:12
    579560msgid "settings"
    580 msgstr "configuración"
     561msgstr "Configuración"
    581562
    582563#: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:77
    583564msgid "Default Slideshow Stylesheet"
    584 msgstr "Ajustes de estilos por defecto"
     565msgstr ""
    585566
    586567#: views/SlideshowPluginGeneralSettings/general-settings-tab.php:11
    587568msgid "Add slideshows"
    588 msgstr "Agregar diapositivas"
     569msgstr ""
    589570
    590571#: views/SlideshowPluginGeneralSettings/general-settings-tab.php:12
    591572msgid "Edit slideshows"
    592 msgstr "Editar diapositivas "
     573msgstr ""
    593574
    594575#: views/SlideshowPluginGeneralSettings/general-settings-tab.php:13
    595576msgid "Delete slideshows"
    596 msgstr "Borrar diapositivas "
     577msgstr ""
    597578
    598579#: views/SlideshowPluginGeneralSettings/general-settings-tab.php:20
    599580msgid "User Capabilities"
    600 msgstr "Capacidades de usuario"
     581msgstr ""
    601582
    602583#: views/SlideshowPluginGeneralSettings/general-settings-tab.php:22
    603584msgid "Select the user roles that will able to perform certain actions."
    604585msgstr ""
    605 "Seleccione la categoria del usuario que pueda realizar ciertas acciones."
    606586
    607587#: views/SlideshowPluginGeneralSettings/general-settings-tab.php:38
    608588msgid "Untitled role"
    609 msgstr "Categoria sin titulo"
     589msgstr ""
    610590
    611591#: views/SlideshowPluginGeneralSettings/general-settings-tab.php:65
     
    615595#: views/SlideshowPluginGeneralSettings/general-settings-tab.php:69
    616596msgid "Stylesheet location"
    617 msgstr "Ubicación de estilos"
     597msgstr ""
    618598
    619599#: views/SlideshowPluginGeneralSettings/general-settings-tab.php:72
    620600msgid "top"
    621 msgstr "arriba "
     601msgstr ""
    622602
    623603#: views/SlideshowPluginGeneralSettings/general-settings-tab.php:73
    624604msgid "bottom"
    625 msgstr "fondo"
     605msgstr ""
    626606
    627607#: views/SlideshowPluginGeneralSettings/general-settings.php:16
    628608msgid "Custom Styles"
    629 msgstr "Estilos personalizados "
     609msgstr ""
    630610
    631611#: views/SlideshowPluginPostType/information.php:1
     
    641621"Or add this piece of code to where ever in your website you want to place "
    642622"the slideshow"
    643 msgstr ""
    644 "O agregue este fragmento de código a donde quiera en su sitio web que desea "
    645 "colocar la diapositiva"
     623msgstr "O agrega este código en tu tema"
    646624
    647625#: views/SlideshowPluginPostType/information.php:9
     
    701679#: views/SlideshowPluginSlideshowSlide/backend_text.php:124
    702680msgid "Open URL in"
    703 msgstr "Abrir el URL en"
     681msgstr ""
    704682
    705683#: views/SlideshowPluginPostType/slides.php:72
     
    773751#, php-format
    774752msgid "Custom styles can be created and customized %shere%s."
    775 msgstr "Estilos personalizados se pueden crear y personalizar %saquí%s."
     753msgstr ""
    776754
    777755#: views/SlideshowPluginPostType/support-plugin.php:3
     
    798776#: views/SlideshowPluginPostType/support-plugin.php:24
    799777msgid "Frequently Asked Questions (FAQ)"
    800 msgstr "Preguntas Frecuentes (PF)"
     778msgstr ""
    801779
    802780#: views/SlideshowPluginShortcode/shortcode-inserter.php:4
    803 #: views/SlideshowPluginShortcode/shortcode-inserter.php:13
    804 #: views/SlideshowPluginShortcode/shortcode-inserter.php:24
     781#: views/SlideshowPluginShortcode/shortcode-inserter.php:9
     782#: views/SlideshowPluginShortcode/shortcode-inserter.php:18
    805783msgid "Insert a Slideshow"
    806784msgstr "Insertar una Diapositiva"
    807785
    808 #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
    809 #: views/SlideshowPluginShortcode/shortcode-inserter.php:57
     786#: views/SlideshowPluginShortcode/shortcode-inserter.php:12
     787#: views/SlideshowPluginShortcode/shortcode-inserter.php:51
    810788msgid "Insert Slideshow"
    811789msgstr "Insertar Diapositiva"
    812790
    813 #: views/SlideshowPluginShortcode/shortcode-inserter.php:33
     791#: views/SlideshowPluginShortcode/shortcode-inserter.php:27
    814792msgid "Select a slideshow"
    815793msgstr "Seleccionar una diapositiva"
    816794
    817 #: views/SlideshowPluginShortcode/shortcode-inserter.php:42
     795#: views/SlideshowPluginShortcode/shortcode-inserter.php:36
    818796#: views/SlideshowPluginWidget/form.php:12
    819797msgid "Untitled slideshow"
    820798msgstr "Diapositiva sin título"
    821799
    822 #: views/SlideshowPluginShortcode/shortcode-inserter.php:62
     800#: views/SlideshowPluginShortcode/shortcode-inserter.php:56
    823801msgid "Cancel"
    824802msgstr "Cancelar"
    825803
    826 #: views/SlideshowPluginShortcode/shortcode-inserter.php:73
     804#: views/SlideshowPluginShortcode/shortcode-inserter.php:67
    827805#, php-format
    828806msgid ""
     
    830808"slideshow here!%s"
    831809msgstr ""
    832 "Parece que no has creado ninguna diapositiva aún. %s¡Puedes crear una "
    833 "diapositiva aquí!%s"
     810"Parece que no has creado ninguna diapositiva aún. %s¡Puedes crear una aquí!%s"
    834811
    835812#: views/SlideshowPluginSlideInserter/search-popup.php:6
     
    848825#: views/SlideshowPluginSlideshowSlide/backend_video.php:21
    849826msgid "Click to toggle"
    850 msgstr "Haga clic para activar"
     827msgstr ""
    851828
    852829#: views/SlideshowPluginSlideshowSlide/backend_attachment.php:160
     
    855832#: views/SlideshowPluginSlideshowSlide/backend_text.php:131
    856833msgid "Don't let search engines follow link"
    857 msgstr "No permitas que los motores de búsquedas sigan el enlace "
     834msgstr ""
    858835
    859836#: views/SlideshowPluginSlideshowSlide/backend_attachment.php:168
    860837#: views/SlideshowPluginSlideshowSlide/backend_templates.php:197
    861838msgid "Alternative text"
    862 msgstr "Texto alternativo"
     839msgstr ""
    863840
    864841#: views/SlideshowPluginSlideshowSlide/backend_templates.php:48
    865842#: views/SlideshowPluginSlideshowSlide/backend_text.php:110
    866843msgid "Text color"
    867 msgstr "Color de Texto "
     844msgstr ""
    868845
    869846#: views/SlideshowPluginSlideshowSlide/backend_templates.php:53
    870847#: views/SlideshowPluginSlideshowSlide/backend_text.php:115
    871848msgid "(Leave empty for a transparent background)"
    872 msgstr "(Dejar vacio para un fondo transparente) "
     849msgstr ""
    873850
    874851#: views/SlideshowPluginSlideshowSlide/backend_templates.php:110
    875852#: views/SlideshowPluginSlideshowSlide/backend_video.php:42
    876853msgid "Show related videos"
    877 msgstr "Ensena vídeos relacionados"
     854msgstr ""
    878855
    879856#: views/SlideshowPluginUpload/upload-button.php:1
     
    884861msgid "Random Slideshow"
    885862msgstr "Diapositivas Aleatorias"
     863
     864#~ msgid "Questions / Suggestions"
     865#~ msgstr "Preguntas / Sugerencias"
     866
     867#~ msgid "light"
     868#~ msgstr "clair"
     869
     870#~ msgid "slide"
     871#~ msgstr "diapo"
     872
     873#~ msgid "Custom style editor (Does not work with a Strict Doctype)"
     874#~ msgstr "Aangepaste stijl bewerker (Werkt niet met een Strict Doctype)"
     875
     876#~ msgid "Has the Slideshow plugin helped you?"
     877#~ msgstr "Heeft de Slideshow plugin je geholpen?"
     878
     879#~ msgid "Help it back!"
     880#~ msgstr "Help hem terug!"
     881
     882#~ msgid ""
     883#~ "If this plugin has filled you with happiness, please support the upkeep "
     884#~ "of the plugin by rating it on Wordpress, posting a suggestion for "
     885#~ "improvement on the support forum, or making a donation."
     886#~ msgstr ""
     887#~ "Als deze plugin je met blijdschap heeft vervuld, zou ik het enorm "
     888#~ "waarderen als je de plugin wilt beoordelen op Wordpress, een suggestie "
     889#~ "wilt maken voor verbetering, of een donatie doen wilt."
     890
     891#~ msgid "Click on an image to insert it as a slide"
     892#~ msgstr "Klik op een plaatje om deze in te voegen als slide"
     893
     894#~ msgid "Width of the slideshow"
     895#~ msgstr "Breedte van de slideshow"
     896
     897#~ msgid "Defaults to parent's width."
     898#~ msgstr "Standaard ingesteld op de breedte van het bovenliggende element."
     899
     900#~ msgid "Send user to image URL on click"
     901#~ msgstr ""
     902#~ "Wanner de gebruiker op de afbeelding klikt, stuur hem naar de URL van het "
     903#~ "plaatje"
     904
     905#~ msgid "Leave any field open to use default value."
     906#~ msgstr "Een veld dat open wordt gelaten neemt de standaardwaarde aan."
  • slideshow-jquery-image-gallery/trunk/languages/slideshow-plugin-nl_NL.po

    r1156839 r1226951  
    33"Project-Id-Version: Slideshow Plugin\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2014-08-19 11:58+0100\n"
    6 "PO-Revision-Date: 2014-08-19 12:00+0100\n"
     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.5.7\n"
     15"X-Generator: Poedit 1.7.6\n"
    1616"X-Poedit-SearchPath-0: .\n"
    1717
  • slideshow-jquery-image-gallery/trunk/languages/slideshow-plugin-original.po

    r1156839 r1226951  
    33"Project-Id-Version: Slideshow Plugin\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2014-08-19 12:00+0100\n"
    6 "PO-Revision-Date: 2014-08-19 12:00+0100\n"
     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.5.7\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
  • slideshow-jquery-image-gallery/trunk/languages/slideshow-plugin-ru_RU.po

    r1143459 r1226951  
    33"Project-Id-Version: Slideshow Plugin\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2014-08-19 12:02+0100\n"
    6 "PO-Revision-Date: 2014-08-19 12:02+0100\n"
     5"POT-Creation-Date: 2015-08-14 15:40+0200\n"
     6"PO-Revision-Date: 2015-08-14 15:40+0200\n"
    77"Last-Translator: Dmitry Fatakov <[email protected]>\n"
    88"Language-Team: Stefan Boonstra <[email protected]>\n"
     
    1212"Content-Transfer-Encoding: 8bit\n"
    1313"X-Poedit-KeywordsList: _e;__\n"
    14 "X-Poedit-Basepath: ../\n"
    15 "X-Generator: Poedit 1.5.7\n"
     14"X-Poedit-Basepath: ..\n"
     15"X-Generator: Poedit 1.8.4\n"
    1616"X-Poedit-SearchPath-0: .\n"
    1717
     
    5151#: classes/SlideshowPluginSlideshowSettingsHandler.php:472
    5252#: views/SlideshowPluginSlideshowSlide/backend_templates.php:111
    53 #: views/SlideshowPluginSlideshowSlide/backend_video.php:43
     53#: views/SlideshowPluginSlideshowSlide/backend_video.php:45
    5454msgid "Yes"
    5555msgstr "Да"
     
    5858#: classes/SlideshowPluginSlideshowSettingsHandler.php:473
    5959#: views/SlideshowPluginSlideshowSlide/backend_templates.php:112
    60 #: views/SlideshowPluginSlideshowSlide/backend_video.php:44
     60#: views/SlideshowPluginSlideshowSlide/backend_video.php:46
    6161msgid "No"
    6262msgstr "Нет"
     
    255255#: classes/SlideshowPluginPostType.php:173
    256256msgid "Slideshow created"
    257 msgstr ""
     257msgstr "Слайдшоу создан"
    258258
    259259#: classes/SlideshowPluginPostType.php:177
    260260msgid "Slideshow updated"
    261 msgstr ""
     261msgstr "Слайдшоу обновлен"
    262262
    263263#: classes/SlideshowPluginPostType.php:224
     
    269269#: classes/SlideshowPluginPostType.php:232
    270270msgid "Open all"
    271 msgstr ""
     271msgstr "Открыть все"
    272272
    273273#: classes/SlideshowPluginPostType.php:234
    274274msgid "Close all"
    275 msgstr ""
     275msgstr "Закрыть все"
    276276
    277277#: classes/SlideshowPluginPostType.php:240
     
    282282#: classes/SlideshowPluginPostType.php:320
    283283msgid "Duplicate"
    284 msgstr ""
     284msgstr "Дублировать"
    285285
    286286#: classes/SlideshowPluginPostType.php:371
    287287msgid "Copy"
    288 msgstr ""
     288msgstr "Копировать"
    289289
    290290#: classes/SlideshowPluginShortcode.php:148
     
    310310#: classes/SlideshowPluginSlideInserter.php:333
    311311msgid "Insert image slide"
    312 msgstr ""
     312msgstr "Вставить слайд - изображение"
    313313
    314314#: classes/SlideshowPluginSlideshowSettingsHandler.php:523
     
    339339#: classes/SlideshowPluginSlideshowSettingsHandler.php:526
    340340msgid "Image behaviour"
    341 msgstr ""
     341msgstr "Показ изображения"
    342342
    343343#: classes/SlideshowPluginSlideshowSettingsHandler.php:527
     
    386386#: classes/SlideshowPluginSlideshowSettingsHandler.php:540
    387387msgid "Wait until the next slide has loaded before showing it"
    388 msgstr ""
     388msgstr "Дождитесь загрузки следующего слайда, перед его показом"
    389389
    390390#: classes/SlideshowPluginSlideshowSettingsHandler.php:541
    391391msgid "Show a loading icon until the first slide appears"
    392 msgstr ""
     392msgstr "Показывать иконку загрузки перед тем, как появится следующий слайд"
    393393
    394394#: classes/SlideshowPluginSlideshowSettingsHandler.php:542
     
    419419#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
    420420msgid "Cross Fade"
    421 msgstr ""
     421msgstr "Плавное затухание"
    422422
    423423#: classes/SlideshowPluginSlideshowSettingsHandler.php:547
     
    431431#: classes/SlideshowPluginSlideshowSettingsHandler.php:555
    432432msgid "Natural and centered"
    433 msgstr ""
     433msgstr "Естественно и по центру"
    434434
    435435#: classes/SlideshowPluginSlideshowSettingsHandler.php:555
    436436msgid "Crop to fit"
    437 msgstr ""
     437msgstr "Кадрирование"
    438438
    439439#: classes/SlideshowPluginSlideshowSettingsHandler.php:555
    440440msgid "Stretch to fit"
    441 msgstr ""
     441msgstr "Растягивание"
    442442
    443443#: classes/SlideshowPluginSlideshowSettingsHandler.php:569
     
    458458#: views/SlideshowPlugin/slideshow.php:23
    459459msgid "Play"
    460 msgstr ""
     460msgstr "Воспроизвести"
    461461
    462462#: views/SlideshowPlugin/slideshow.php:23
    463463msgid "Pause"
    464 msgstr ""
     464msgstr "Пауза"
    465465
    466466#: views/SlideshowPlugin/slideshow.php:25
    467467msgid "Previous"
    468 msgstr ""
     468msgstr "Предыдущий"
    469469
    470470#: views/SlideshowPlugin/slideshow.php:26
    471471msgid "Next"
    472 msgstr ""
     472msgstr "Следующий"
    473473
    474474#: views/SlideshowPlugin/slideshow.php:28
    475475msgid "Go to slide"
    476 msgstr ""
     476msgstr "Перейти к слайду"
    477477
    478478#: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:46
     
    500500#: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:174
    501501#: views/SlideshowPluginPostType/slides.php:138
    502 #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:112
     502#: views/SlideshowPluginSlideshowSlide/backend_attachment.php:114
    503503msgid "Edit"
    504504msgstr "Редактировать"
     
    520520#: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:130
    521521msgid "Select a stylesheet to start customizing it."
    522 msgstr ""
     522msgstr "Выберите стиль перед началом настройки."
    523523
    524524#: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:139
     
    528528#: views/SlideshowPluginPostType/slides.php:196
    529529#: views/SlideshowPluginPostType/slides.php:264
    530 #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:120
     530#: views/SlideshowPluginSlideshowSlide/backend_attachment.php:122
    531531#: views/SlideshowPluginSlideshowSlide/backend_templates.php:18
    532532#: views/SlideshowPluginSlideshowSlide/backend_templates.php:150
    533 #: views/SlideshowPluginSlideshowSlide/backend_text.php:80
     533#: views/SlideshowPluginSlideshowSlide/backend_text.php:82
    534534#: views/SlideshowPluginWidget/form.php:2
    535535msgid "Title"
     
    600600#: views/SlideshowPluginGeneralSettings/general-settings-tab.php:69
    601601msgid "Stylesheet location"
    602 msgstr ""
     602msgstr "Расположение таблицы стилей"
    603603
    604604#: views/SlideshowPluginGeneralSettings/general-settings-tab.php:72
    605605msgid "top"
    606 msgstr ""
     606msgstr "Наверх"
    607607
    608608#: views/SlideshowPluginGeneralSettings/general-settings-tab.php:73
    609609msgid "bottom"
    610 msgstr ""
     610msgstr "Вниз"
    611611
    612612#: views/SlideshowPluginGeneralSettings/general-settings.php:16
     
    645645#: views/SlideshowPluginSlideInserter/insert-text-button.php:2
    646646#: views/SlideshowPluginSlideshowSlide/backend_templates.php:9
    647 #: views/SlideshowPluginSlideshowSlide/backend_text.php:69
     647#: views/SlideshowPluginSlideshowSlide/backend_text.php:71
    648648msgid "Text slide"
    649649msgstr "Текстовый слайд"
     
    653653#: views/SlideshowPluginPostType/slides.php:198
    654654#: views/SlideshowPluginPostType/slides.php:270
    655 #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:135
     655#: views/SlideshowPluginSlideshowSlide/backend_attachment.php:137
    656656#: views/SlideshowPluginSlideshowSlide/backend_templates.php:33
    657657#: views/SlideshowPluginSlideshowSlide/backend_templates.php:165
    658 #: views/SlideshowPluginSlideshowSlide/backend_text.php:95
     658#: views/SlideshowPluginSlideshowSlide/backend_text.php:97
    659659msgid "Description"
    660660msgstr "Описание"
     
    663663#: views/SlideshowPluginPostType/slides.php:200
    664664#: views/SlideshowPluginSlideshowSlide/backend_templates.php:51
    665 #: views/SlideshowPluginSlideshowSlide/backend_text.php:113
     665#: views/SlideshowPluginSlideshowSlide/backend_text.php:115
    666666msgid "Background color"
    667667msgstr "Фоновый цвет"
     
    671671#: views/SlideshowPluginPostType/slides.php:205
    672672#: views/SlideshowPluginPostType/slides.php:275
    673 #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:150
     673#: views/SlideshowPluginSlideshowSlide/backend_attachment.php:152
    674674#: views/SlideshowPluginSlideshowSlide/backend_templates.php:59
    675675#: views/SlideshowPluginSlideshowSlide/backend_templates.php:180
    676 #: views/SlideshowPluginSlideshowSlide/backend_text.php:121
     676#: views/SlideshowPluginSlideshowSlide/backend_text.php:123
    677677msgid "URL"
    678678msgstr "URL"
     
    682682#: views/SlideshowPluginPostType/slides.php:207
    683683#: views/SlideshowPluginPostType/slides.php:277
    684 #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:153
     684#: views/SlideshowPluginSlideshowSlide/backend_attachment.php:155
    685685#: views/SlideshowPluginSlideshowSlide/backend_templates.php:62
    686686#: views/SlideshowPluginSlideshowSlide/backend_templates.php:183
    687 #: views/SlideshowPluginSlideshowSlide/backend_text.php:124
     687#: views/SlideshowPluginSlideshowSlide/backend_text.php:126
    688688msgid "Open URL in"
    689689msgstr "Открыть URL в"
     
    693693#: views/SlideshowPluginPostType/slides.php:209
    694694#: views/SlideshowPluginPostType/slides.php:279
    695 #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:155
     695#: views/SlideshowPluginSlideshowSlide/backend_attachment.php:157
    696696#: views/SlideshowPluginSlideshowSlide/backend_templates.php:64
    697697#: views/SlideshowPluginSlideshowSlide/backend_templates.php:185
    698 #: views/SlideshowPluginSlideshowSlide/backend_text.php:126
     698#: views/SlideshowPluginSlideshowSlide/backend_text.php:128
    699699msgid "Same window"
    700700msgstr "Текущее окно"
     
    704704#: views/SlideshowPluginPostType/slides.php:210
    705705#: views/SlideshowPluginPostType/slides.php:280
    706 #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:156
     706#: views/SlideshowPluginSlideshowSlide/backend_attachment.php:158
    707707#: views/SlideshowPluginSlideshowSlide/backend_templates.php:65
    708708#: views/SlideshowPluginSlideshowSlide/backend_templates.php:186
    709 #: views/SlideshowPluginSlideshowSlide/backend_text.php:127
     709#: views/SlideshowPluginSlideshowSlide/backend_text.php:129
    710710msgid "New window"
    711711msgstr "Новое окно"
     
    715715#: views/SlideshowPluginSlideInserter/insert-video-button.php:2
    716716#: views/SlideshowPluginSlideshowSlide/backend_templates.php:94
    717 #: views/SlideshowPluginSlideshowSlide/backend_video.php:26
     717#: views/SlideshowPluginSlideshowSlide/backend_video.php:28
    718718msgid "Video slide"
    719719msgstr "Видео слайд"
     
    722722#: views/SlideshowPluginPostType/slides.php:235
    723723#: views/SlideshowPluginSlideshowSlide/backend_templates.php:103
    724 #: views/SlideshowPluginSlideshowSlide/backend_video.php:35
     724#: views/SlideshowPluginSlideshowSlide/backend_video.php:37
    725725msgid "Youtube Video ID"
    726726msgstr "ID видео на Youtube"
     
    730730#: views/SlideshowPluginSlideInserter/insert-image-button.php:2
    731731#: views/SlideshowPluginSlideInserter/insert-image-button.php:4
    732 #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:101
     732#: views/SlideshowPluginSlideshowSlide/backend_attachment.php:103
    733733#: views/SlideshowPluginSlideshowSlide/backend_templates.php:135
    734734msgid "Image slide"
     
    746746#: views/SlideshowPluginPostType/slides.php:243
    747747#: views/SlideshowPluginPostType/slides.php:289
    748 #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:174
     748#: views/SlideshowPluginSlideshowSlide/backend_attachment.php:176
    749749#: views/SlideshowPluginSlideshowSlide/backend_templates.php:76
    750750#: views/SlideshowPluginSlideshowSlide/backend_templates.php:117
    751751#: views/SlideshowPluginSlideshowSlide/backend_templates.php:203
    752 #: views/SlideshowPluginSlideshowSlide/backend_text.php:138
    753 #: views/SlideshowPluginSlideshowSlide/backend_video.php:49
     752#: views/SlideshowPluginSlideshowSlide/backend_text.php:140
     753#: views/SlideshowPluginSlideshowSlide/backend_video.php:51
    754754msgid "Delete slide"
    755755msgstr "Удалить слайд"
     
    785785
    786786#: views/SlideshowPluginShortcode/shortcode-inserter.php:4
    787 #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
    788 #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
     787#: views/SlideshowPluginShortcode/shortcode-inserter.php:13
     788#: views/SlideshowPluginShortcode/shortcode-inserter.php:24
    789789msgid "Insert a Slideshow"
    790790msgstr "Вставить слайдшоу"
    791791
    792 #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
    793 #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
     792#: views/SlideshowPluginShortcode/shortcode-inserter.php:18
     793#: views/SlideshowPluginShortcode/shortcode-inserter.php:57
    794794msgid "Insert Slideshow"
    795795msgstr "Вставка слайдшоу"
    796796
    797 #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
     797#: views/SlideshowPluginShortcode/shortcode-inserter.php:33
    798798msgid "Select a slideshow"
    799799msgstr "Выберите слайдшоу"
    800800
    801 #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
     801#: views/SlideshowPluginShortcode/shortcode-inserter.php:42
    802802#: views/SlideshowPluginWidget/form.php:12
    803803msgid "Untitled slideshow"
    804804msgstr "Сладйшоу без заголовка"
    805805
    806 #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
     806#: views/SlideshowPluginShortcode/shortcode-inserter.php:62
    807807msgid "Cancel"
    808808msgstr "Отмена"
    809809
    810 #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
     810#: views/SlideshowPluginShortcode/shortcode-inserter.php:73
    811811#, php-format
    812812msgid ""
     
    823823msgstr "Поиск изображения по заголовку или ID"
    824824
    825 #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:90
     825#: views/SlideshowPluginSlideshowSlide/backend_attachment.php:92
    826826#: views/SlideshowPluginSlideshowSlide/backend_templates.php:4
    827827#: views/SlideshowPluginSlideshowSlide/backend_templates.php:89
    828828#: views/SlideshowPluginSlideshowSlide/backend_templates.php:130
    829 #: views/SlideshowPluginSlideshowSlide/backend_text.php:58
    830 #: views/SlideshowPluginSlideshowSlide/backend_video.php:21
     829#: views/SlideshowPluginSlideshowSlide/backend_text.php:60
     830#: views/SlideshowPluginSlideshowSlide/backend_video.php:23
    831831msgid "Click to toggle"
    832 msgstr ""
    833 
    834 #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:160
     832msgstr "Переключить"
     833
     834#: views/SlideshowPluginSlideshowSlide/backend_attachment.php:162
    835835#: views/SlideshowPluginSlideshowSlide/backend_templates.php:69
    836836#: views/SlideshowPluginSlideshowSlide/backend_templates.php:190
    837 #: views/SlideshowPluginSlideshowSlide/backend_text.php:131
     837#: views/SlideshowPluginSlideshowSlide/backend_text.php:133
    838838msgid "Don't let search engines follow link"
    839 msgstr ""
    840 
    841 #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:168
     839msgstr "Не позволять поисковым системам следовать за ссылкой"
     840
     841#: views/SlideshowPluginSlideshowSlide/backend_attachment.php:170
    842842#: views/SlideshowPluginSlideshowSlide/backend_templates.php:197
    843843msgid "Alternative text"
    844 msgstr ""
     844msgstr "Альтернативный текст"
    845845
    846846#: views/SlideshowPluginSlideshowSlide/backend_templates.php:48
    847 #: views/SlideshowPluginSlideshowSlide/backend_text.php:110
     847#: views/SlideshowPluginSlideshowSlide/backend_text.php:112
    848848msgid "Text color"
    849849msgstr "Цвет текста"
    850850
    851851#: views/SlideshowPluginSlideshowSlide/backend_templates.php:53
    852 #: views/SlideshowPluginSlideshowSlide/backend_text.php:115
     852#: views/SlideshowPluginSlideshowSlide/backend_text.php:117
    853853msgid "(Leave empty for a transparent background)"
    854854msgstr "(Оставить пустым для прозрачного фона)"
    855855
    856856#: views/SlideshowPluginSlideshowSlide/backend_templates.php:110
    857 #: views/SlideshowPluginSlideshowSlide/backend_video.php:42
     857#: views/SlideshowPluginSlideshowSlide/backend_video.php:44
    858858msgid "Show related videos"
    859 msgstr ""
     859msgstr "Показать похожие видео"
    860860
    861861#: views/SlideshowPluginUpload/upload-button.php:1
  • slideshow-jquery-image-gallery/trunk/readme.txt

    r1156839 r1226951  
    55Tags: responsive, slideshow, slider, slide show, images, image, photo, video, text, gallery, galleries, jquery, javascript
    66Requires at least: 3.5
    7 Tested up to: 4.2
    8 Stable tag: 2.2.23
     7Tested up to: 4.3
     8Stable tag: 2.2.24
    99License: GPLv2
    1010
     
    1414== Description ==
    1515
    16 Slideshow provides an easy way to integrate multiple slideshows in any WordPress installation.
    17 
    18 Any image can be loaded into a slideshow using the default WordPress media uploader, even images you've already
     16Slideshow provides an easy way to integrate a slideshow for any WordPress installation.
     17
     18Any image can be loaded into the slideshow by picking it from the WordPress media page, even images you've already
    1919uploaded can be inserted into your slideshow right away!
    2020
     
    3333 - Change animations and handling
    3434 - Customize to taste
    35  - Show that visitor who's the boss
     35 - Show that visitor who's boss
    3636
    3737= Languages =
     
    5353 - Portuguese     (92%  - pt_BR - Translated by [Piero Luiz](http://www.newer7.com.br/) and others)
    5454 - Portuguese     (83%  - pt_PT - Translated by [Filipe Catraia](http://www.filipecatraia.com/))
    55  - Russian        (83%  - ru_RU - Translated by Dmitry Fatakov)
     55 - Russian        (100% - ru_RU - Translated by [Coupofy](http://www.coupofy.com/) and Dmitry Fatakov)
    5656 - Serbo-Croatian (91%  - sr_RS - Translated by [Webhosting Hub](http://www.webhostinghub.com/))
    57  - Spanish        (100% - es_ES - Translated by [Manuel Ballesta Ruiz](http://mbrsolution.com/) and [Violeta Rosales](https://twitter.com/violetisha))
     57 - Spanish        (51%  - es_ES - Translated by [Violeta Rosales](https://twitter.com/violetisha))
    5858 - Swedish        (91%  - sv_SE - Translated by [Åke Isacsson](http://www.nojdkund.se/) and Wilhelm Svenselius)
    5959 - Turkish        (83%  - tr_TR - Translated by [İlker Akdoğan](http://www.kelkirpi.net/))
     60 - Ukrainian      (100% - uk_UK - Translated by [Coupofy](http://www.coupofy.com/))
    6061
    6162Feel free to send me your own translation of the plugin to my e-mail address: [email protected]. The original
     
    82832. After activating Slideshow, click on 'Slideshows' and create a new slideshow.
    8384
    84 3. Click on 'Image slide' to insert an image slide. The WordPress media uploader will appear, which allows you to choose
    85 or upload the desired image to the slideshow. Insert the image by clicking the 'Select' button. To insert text slides and
    86 YouTube video slides, click the 'Text slide' or the 'Video slide' button respectively. Don't forget to save your progress!
    87 
    88 4. Go to a post or a page and click the 'Insert Slideshow' button above the editor. A screen will appear in which you can
    89 select your newly created slideshow. You can also use the shortcode or code snippet visible in your slideshow's edit page
    90 to deploy your slideshow anywhere on your website. Use the widget to show any of your slideshows in the widget area of your
    91 website.
     853. Click on 'Insert Image Slide' to insert an image slide, a popup will appear where you can search for the desired
     86image. Insert the image by clicking 'Insert'. The same goes for text and video slides, don't forget to save!
     87
     884. Go to a post or a page and click the 'Insert Slideshow' button above the editor. A popup appears where you can select
     89your newly created slideshow to insert. You can also use the shortcode or code snippet visible in your slideshow admin
     90panel to deploy your slideshow anywhere on your website. Use the widget to show any of your slideshows in the sidebar
     91of your website.
    9292
    93935. Feel like a sir.
     
    9898= How do I add image slides? =
    9999
    100 Click the 'Image slide' button in the 'Slides List' of the slideshow. The WordPress media uploader will pop up, in which
    101 you'll be able to search all images that have already been uploaded to your WordPress website. If you'd like to add new
    102 images to the slideshow, you'll be able to upload them right away from the media uploader. (Provided you're running a
    103 WordPress installation of version 3.5 or later)
     100Click the 'Image slide' button in the 'Slides List' of the slideshow. A screen will pop up where you'll be able to
     101search though all images that have already been uploaded to your WordPress website. If you want to add new images to the
     102slideshow, or you do not have any images yet, you'll have to upload them to the WordPress media page first.
    104103
    105104= How do I change a slideshow's settings? =
    106105
    107 Just like WordPress' posts and pages you're already familiar with, slideshows can be edited. Go to the 'Slideshows' tab
    108 in your WordPress admin panel, and you'll see a list of slideshows. If you have not created a slideshow yet, you
    109 can do so by clicking 'Add new' on that same page. If there are slideshows in the list, click the title of the slideshow
    110 of which you'd like to change the settings. On the slideshow's edit page you'll be able to find a box titled 'Slideshow Settings',
    111 in this box you can change the slideshow's settings.
    112 
    113 If you're creating multiple slideshows which should have the same settings, but you'd like the settings to be different
    114 from the default ones, you can change the default settings by going to the 'General Settings' page and clicking on the
     106Just like the posts and pages you're already familiar with, slideshows can be edited. Go to the 'Slideshows' tab in your
     107WordPress admin, and you'll see a list of slideshows. If you have not created a slideshow yet, you can do so by clicking
     108'Add new' on that same page. If there are slideshows in the list, click on the title of the slideshow you want to change
     109the settings of. On the slideshow's edit page you'll be able to find a box titled 'Slideshow Settings', in this box you
     110can change the slideshow's settings.
     111
     112If you're creating multiple slideshows that should have the same settings, but their settings need to be different from
     113the default settings, you can change the default settings by going to the 'General Settings' page and clicking on the
    115114'Default Slideshow Settings' tab. Newly created slideshows will start off with the settings you set there.
    116115
     
    127126
    128127If you've already created a custom stylesheet, you can edit it by clicking 'Edit'. You can also delete it by clicking
    129 'Delete'. Careful, a deleted stylesheet cannot be retrieved and cannot be used by any slideshow
     128'Delete'. Be careful with this though, a deleted stylesheet cannot be retrieved and cannot be used by any slideshow
    130129anymore.
    131130
    132131= Some users can add, edit or delete slideshows, although I do not want them to. Can I prevent this from happening? =
    133132
    134 Yes you can. In your WordPress admin panel, go to the 'Slideshows' menu item and click on 'General Settings', then go to
     133Yes you can. On your WordPress admin page, go to the 'Slideshows' menu item and click on 'General Settings', then go to
    135134the 'User Capabilities' tab (If you're not already there). The privileges that allow user groups to perform certain
    136135actions are listed here. To allow, for instance, a contributor to add a slideshow, click the box in front of 'Contributor'
     
    143142= The slideshow does not show up =
    144143
    145 - The slideshow is often called after the `</head>` tag, which means the scripts and stylesheet need to load in the footer
     144- The slideshow is mostly called after the `</head>` tag, which means the scripts and stylesheet need to load in the footer
    146145of the website. A theme that has no `<?php wp_footer(); ?>` call in it's footer will not be able to load the slideshow's
    147146scripts.
    148147
    149148- Often when the slideshow isn't showing, there's a javascript error somewhere on the page and this error has caused
    150 JavaScript to break. For the slideshow to work again, this error needs to be fixed. Check if any errors were thrown by
    151 opening Google Chrome or Firefox (with Firebug installed) and opening the console.
     149javascript to break. For the slideshow to work again, this error needs to be fixed. Check if any errors were thrown by
     150opening Google Chrome or Firefox (with Firebug installed) and press the 'F12' key. Errors show in the console tab.
    152151
    153152= Why does Internet Explorer show a big blank space above the slideshow? =
     
    184183== Changelog ==
    185184
     185= 2.2.24 =
     186*   Compatible with WordPress 4.3.
     187*   Widget constructor no longer uses deprecated PHP 4 style constructor.
     188*   Fixed: Mismatch between session ID and settings ID.
     189*   Fixed: Unescaped data in slideshow editor.
     190*   Fixed: Resizing issues.
     191*   Added Ukrainian translation and updated Russian translation, thanks to Coupofy.
     192
    186193= 2.2.23 =
    187194*   Fixed: Despite default stylesheets now loading through static file again, admin-ajax.php was still being called.
    188195*   Fixed: Invalid HTML in the shortcode inserter. Thanks to [Iazel](https://wordpress.org/support/profile/iazel).
    189196*   Fixed: HTML5 validation issue when loading stylesheets in the head of the document.
     197*   Fixed: Slideshows now load their settings by slideshow ID, instead of the variable session ID.
    190198*   Updated Spanish translation, thanks to Manuel Ballesta Ruiz.
    191199
     
    198206*   Fixed: Slideshow container calculation now uses the JavaScript round function instead of the floor function.
    199207*   Fixed: Separated assignment of $sessionID and increment of SlideshowPlugin::$sessionCounter.
    200 *   Added Norwegian translation.
    201 *   Updated Persian translation, thanks to W3Design.
    202 *   Updated German translation.
    203 *   Updated Brazilian Portuguese translation.
     208*   Added Norwegian translation by A. Nonymous.
     209*   Updated Persian translation by W3Design.
     210*   Updated German translation by A. Nonymous.
     211*   Updated Brazilian Portuguese by A. Nonymous.
    204212
    205213= 2.2.21 =
     
    219227*   New tags are available for custom stylesheets: %site-url%, %stylesheet-url% and %template-url%
    220228*   Fixed: When the slideshow would not have any height, slides would not hide outside of the slideshow.
    221 *   Added Serbo-Croatian translation, thanks to Webhosting Hub.
    222 *   Updated Persian translation, thanks to W3Design.
    223 *   Updated Chinese translation, thanks to Leo Newbiesup.
    224 *   Updated Swedish translation, thanks to Wilhelm Svenselius.
     229*   Added Serbo-Croatian translation by Webhosting Hub.
     230*   Updated Persian translation by W3Design.
     231*   Updated Chinese translation by Leo Newbiesup.
     232*   Updated Swedish translation by Wilhelm Svenselius.
    225233
    226234= 2.2.19 =
     
    236244*   Disappearing settings now have a more apparent animation.
    237245*   Fixed: First slide of a slideshow wouldn't show when the slideshow's content had no size on page load.
    238 *   Added Brazilian Portuguese translation, thanks to Piero Luiz.
    239 *   Updated French translation, thanks to Romain Sandri.
     246*   Added Brazilian Portuguese translation by Piero Luiz.
     247*   Updated French translation by Romain Sandri.
    240248
    241249= 2.2.17 =
     
    270278*   Slideshow can now wait for a slide to load before showing it.
    271279*   Fixed: The 'Enable responsiveness' setting disappeared when disabling the 'Show title and description' option.
    272 *   Added Turkish translation, thanks to İlker Akdoğan.
    273 *   Added Polish translation, thanks to Wicher Wiater.
    274 *   Added Finnish translation.
    275 *   Updated French translation, thanks to Romain Sandri.
    276 *   Added Portuguese translation, thanks to Filipe Catraia.
    277 *   Added Persian translation, thanks to W3Design.
    278 *   Added Italian translation, thanks to Tecnikgeek.
    279 *   Added Japanese translation, thanks to Michihide Hotta.
     280*   Added Turkish translation by İlker Akdoğan.
     281*   Added Polish translation by Wicher Wiater.
     282*   Added Finnish translation by an anonymous supporter.
     283*   Updated French translation by Romain Sandri.
     284*   Added Portuguese translation by Filipe Catraia.
     285*   Added Persian translation by W3Design.
     286*   Added Italian translation by Tecnikgeek.
     287*   Added Japanese translation by Michihide Hotta.
    280288
    281289= 2.2.11 =
     
    284292*   Fixed: Sites that don't support URL data weren't able to load a slideshow's stylesheet correctly.
    285293*   Fixed: Slideshow randomly disappeared in Internet Explorer 8 when absolute positioning was used.
    286 *   Added Swedish translation, thanks to Åke Isacsson.
    287 *   Added Hebrew translation, thanks to Eli Segev.
     294*   Added Swedish translation by Åke Isacsson.
     295*   Added Hebrew translation by Eli Segev.
    288296
    289297= 2.2.10 =
     
    331339*   Live width calculations have been halved to improve performance.
    332340*   Default settings have been tuned to cater better to most users.
    333 *   Added Czech translation, thanks to Edhel.
     341*   Added Czech translation by Edhel.
    334342
    335343= 2.2.1 =
  • slideshow-jquery-image-gallery/trunk/slideshow.php

    r1156839 r1226951  
    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.23
     6 Version: 2.2.24
    77 Requires at least: 3.5
    88 Author: StefanBoonstra
     
    2323{
    2424    /** @var string $version */
    25     static $version = '2.2.23';
     25    static $version = '2.2.24';
    2626
    2727    /**
  • slideshow-jquery-image-gallery/trunk/views/SlideshowPlugin/slideshow.php

    r885343 r1226951  
    1 <div class="slideshow_container slideshow_container_<?php echo htmlspecialchars($styleName); ?>" style="<?php echo (isset($settings['preserveSlideshowDimensions']) && $settings['preserveSlideshowDimensions'] == 'false' && isset($settings['height']) && $settings['height'] > 0) ? 'height: ' . $settings['height'] . 'px;' : ''; ?> <?php echo (isset($settings['maxWidth']) && $settings['maxWidth'] > 0) ? 'max-width: ' . $settings['maxWidth'] . 'px;' : ''; ?>" data-session-id="<?php echo htmlspecialchars($sessionID); ?>" data-style-name="<?php echo htmlspecialchars($styleName); ?>" data-style-version="<?php echo htmlspecialchars($styleVersion); ?>">
     1<div class="slideshow_container slideshow_container_<?php echo htmlspecialchars($styleName); ?>" style="<?php echo (isset($settings['preserveSlideshowDimensions']) && $settings['preserveSlideshowDimensions'] == 'false' && isset($settings['height']) && $settings['height'] > 0) ? 'height: ' . $settings['height'] . 'px;' : ''; ?> <?php echo (isset($settings['maxWidth']) && $settings['maxWidth'] > 0) ? 'max-width: ' . $settings['maxWidth'] . 'px;' : ''; ?>" data-slideshow-id="<?php echo htmlspecialchars($post->ID); ?>" data-session-id="<?php echo htmlspecialchars(SlideshowPlugin::$sessionCounter); ?>" data-style-name="<?php echo htmlspecialchars($styleName); ?>" data-style-version="<?php echo htmlspecialchars($styleVersion); ?>">
    22
    33    <?php if(isset($settings['showLoadingIcon']) && $settings['showLoadingIcon'] === 'true'): ?>
  • slideshow-jquery-image-gallery/trunk/views/SlideshowPluginShortcode/shortcode-inserter.php

    r1156839 r1226951  
    11<a
    2     href="#TB_inline?width=450&amp;inlineId=insertSlideshowShortcode"
     2    href="#TB_inline?width=450&inlineId=insertSlideshowShortcode"
    33    class="button thickbox"
    44    title="<?php _e('Insert a Slideshow', 'slideshow-plugin'); ?>"
    55    style="padding-left: .4em;"
    66>
    7     <?php global $wp_version; ?>
    8     <?php if (version_compare($wp_version, '3.8', '>')) : ?>
    9     <span class="dashicons dashicons-format-gallery" style="line-height: 26px;"></span>
    10     <?php else: ?>
    117    <img
    128        src="<?php echo SlideshowPluginMain::getPluginUrl() . '/images/SlideshowPluginPostType/adminIcon.png'; ?>"
     
    1410        style="vertical-align: text-top;"
    1511    />
    16     <?php endif; ?>
    17 
    1812    <?php _e('Insert Slideshow', 'slideshow-plugin'); ?>
    1913</a>
  • slideshow-jquery-image-gallery/trunk/views/SlideshowPluginSlideshowSlide/backend_attachment.php

    r879367 r1226951  
    55
    66if (isset($attachment)):
     7
     8    $name = htmlspecialchars($name);
    79
    810    $title = $titleElementTagID = $description = $descriptionElementTagID = $url = $target = $alternativeText = '';
     
    4749    if (isset($properties['alternativeText']))
    4850    {
    49         $alternativeText = $properties['alternativeText'];
     51        $alternativeText = htmlspecialchars($properties['alternativeText']);
    5052    }
    5153    else
  • slideshow-jquery-image-gallery/trunk/views/SlideshowPluginSlideshowSlide/backend_text.php

    r879367 r1226951  
    11<?php
     2
     3$name = htmlspecialchars($name);
    24
    35$title = $description = $textColor = $color = $url = $target = '';
     
    2931if (isset($properties['textColor']))
    3032{
    31     $textColor = $properties['textColor'];
     33    $textColor = htmlspecialchars($properties['textColor']);
    3234}
    3335
    3436if (isset($properties['color']))
    3537{
    36     $color = $properties['color'];
     38    $color = htmlspecialchars($properties['color']);
    3739}
    3840
    3941if (isset($properties['url']))
    4042{
    41     $url = $properties['url'];
     43    $url = htmlspecialchars($properties['url']);
    4244}
    4345
  • slideshow-jquery-image-gallery/trunk/views/SlideshowPluginSlideshowSlide/backend_video.php

    r879367 r1226951  
    11<?php
     2
     3$name = htmlspecialchars($name);
    24
    35$videoId           = '';
     
    68if (isset($properties['videoId']))
    79{
    8     $videoId = $properties['videoId'];
     10    $videoId = htmlspecialchars($properties['videoId']);
    911}
    1012
Note: See TracChangeset for help on using the changeset viewer.