Changeset 1226951
- Timestamp:
- 08/21/2015 08:08:50 AM (11 years ago)
- Location:
- slideshow-jquery-image-gallery/trunk
- Files:
-
- 19 edited
-
classes/SlideshowPlugin.php (modified) (3 diffs)
-
classes/SlideshowPluginSlideshowStylesheet.php (modified) (3 diffs)
-
classes/SlideshowPluginWidget.php (modified) (1 diff)
-
js/min/all.frontend.min.js (modified) (1 diff)
-
languages/slideshow-plugin-es_ES.mo (modified) (previous)
-
languages/slideshow-plugin-es_ES.po (modified) (27 diffs)
-
languages/slideshow-plugin-nl_NL.mo (modified) (previous)
-
languages/slideshow-plugin-nl_NL.po (modified) (2 diffs)
-
languages/slideshow-plugin-original.mo (modified) (previous)
-
languages/slideshow-plugin-original.po (modified) (2 diffs)
-
languages/slideshow-plugin-ru_RU.mo (modified) (previous)
-
languages/slideshow-plugin-ru_RU.po (modified) (30 diffs)
-
readme.txt (modified) (15 diffs)
-
slideshow.php (modified) (2 diffs)
-
views/SlideshowPlugin/slideshow.php (modified) (1 diff)
-
views/SlideshowPluginShortcode/shortcode-inserter.php (modified) (2 diffs)
-
views/SlideshowPluginSlideshowSlide/backend_attachment.php (modified) (2 diffs)
-
views/SlideshowPluginSlideshowSlide/backend_text.php (modified) (2 diffs)
-
views/SlideshowPluginSlideshowSlide/backend_video.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
slideshow-jquery-image-gallery/trunk/classes/SlideshowPlugin.php
r1143459 r1226951 10 10 { 11 11 /** int $sessionCounter */ 12 p rivatestatic $sessionCounter = 0;12 public static $sessionCounter = 0; 13 13 14 14 /** … … 104 104 $styleSettings = SlideshowPluginSlideshowSettingsHandler::getStyleSettings($post->ID); 105 105 106 // The slideshow's session ID, allows JavaScript and CSS to distinguish between multiple slideshows107 $sessionID = self::$sessionCounter;108 109 106 // Only enqueue the functional stylesheet when the 'allStylesheetsRegistered' flag is false 110 107 if (!SlideshowPluginSlideshowStylesheet::$allStylesheetsRegistered) … … 167 164 wp_localize_script( 168 165 'slideshow-jquery-image-gallery-script', 169 'SlideshowPluginSettings_' . $ sessionID,166 'SlideshowPluginSettings_' . $post->ID, 170 167 $settings 171 168 ); -
slideshow-jquery-image-gallery/trunk/classes/SlideshowPluginSlideshowStylesheet.php
r1156839 r1226951 81 81 public static function enqueueStylesheet($name = null) 82 82 { 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 ); 111 132 } 112 133 … … 167 188 public static function getStylesheet($styleName) 168 189 { 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)) 171 195 { 172 196 // Get custom stylesheet … … 197 221 return $stylesheet; 198 222 } 199 200 /**201 * Checks if the passed $styleName is a custom stylesheet or not.202 *203 * @since 2.2.23204 * @param string $styleName205 * @return boolean $isCustomStyle206 */207 public static function isCustomStylesheet($styleName)208 {209 // Get array of custom style keys and check if $styleName is in this array210 return in_array($styleName, array_keys(get_option(SlideshowPluginGeneralSettings::$customStyles, array())));211 }212 223 } -
slideshow-jquery-image-gallery/trunk/classes/SlideshowPluginWidget.php
r761395 r1226951 25 25 26 26 // Create the widget. 27 $this->WP_Widget(27 parent::__construct( 28 28 'slideshowWidget', 29 29 __('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}();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 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}(); 2 2 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.get ID=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))}}(); 5 5 !function(){var e=jQuery,t=slideshow_jquery_image_gallery_script;t.Slideshow.prototype.animateTo=function(t,s){if(!(this.isVideoPlaying()||0>t||t>=this.$views.length||t==this.currentViewID)){if(this.currentlyAnimating===!0)return this.$container.one("slideshowAnimationEnd",e.proxy(function(){this.playState===this.PlayStates.PLAYING&&(this.pause(this.PlayStates.TEMPORARILY_PAUSED),this.play()),this.animateTo(t,s)},this)),void 0;this.currentlyAnimating=!0,(isNaN(parseInt(s,10))||0==s)&&(s=t<this.currentViewID?-1:1),this.visibleViews=[this.currentViewID,t];var i=this.settings.animation,n=["slide","slideRight","slideUp","slideDown","fade","directFade"];"random"==i&&(i=n[Math.floor(Math.random()*n.length)]);var o={slide:"slideRight",slideRight:"slide",slideUp:"slideDown",slideDown:"slideUp",fade:"fade",directFade:"directFade",crossFade:"crossFade"};0>s&&(i=o[i]);var d=e(this.$views[this.currentViewID]),a=e(this.$views[t]);switch(d.stop(!0,!0),a.stop(!0,!0),a.addClass("slideshow_nextView"),this.recalculateVisibleViews(),this.currentViewID=t,this.$container.trigger("slideshowAnimationStart",[t,i,s]),i){case"slide":a.css({top:0,left:this.$content.width()}),d.animate({left:-d.outerWidth(!0)},1e3*this.settings.slideSpeed),a.animate({left:0},1e3*this.settings.slideSpeed),setTimeout(e.proxy(function(){d.stop(!0,!0).css("top",this.$container.outerHeight(!0))},this),1e3*this.settings.slideSpeed);break;case"slideRight":a.css({top:0,left:-this.$content.width()}),d.animate({left:d.outerWidth(!0)},1e3*this.settings.slideSpeed),a.animate({left:0},1e3*this.settings.slideSpeed),setTimeout(e.proxy(function(){d.stop(!0,!0).css("top",this.$container.outerHeight(!0))},this),1e3*this.settings.slideSpeed);break;case"slideUp":a.css({top:this.$content.height(),left:0}),d.animate({top:-d.outerHeight(!0)},1e3*this.settings.slideSpeed),a.animate({top:0},1e3*this.settings.slideSpeed),setTimeout(e.proxy(function(){d.stop(!0,!0).css("top",this.$container.outerHeight(!0))},this),1e3*this.settings.slideSpeed);break;case"slideDown":a.css({top:-this.$content.height(),left:0}),d.animate({top:d.outerHeight(!0)},1e3*this.settings.slideSpeed),a.animate({top:0},1e3*this.settings.slideSpeed),setTimeout(e.proxy(function(){d.stop(!0,!0).css("top",this.$container.outerHeight(!0))},this),1e3*this.settings.slideSpeed);break;case"fade":a.css({top:0,left:0,display:"none"}),d.fadeOut(1e3*this.settings.slideSpeed/2),setTimeout(e.proxy(function(){a.fadeIn(1e3*this.settings.slideSpeed/2),d.stop(!0,!0).css({top:this.$container.outerHeight(!0),display:"block"})},this),1e3*this.settings.slideSpeed/2);break;case"directFade":a.css({top:0,left:0,"z-index":0,display:"none"}),d.css({"z-index":1}),a.stop(!0,!0).fadeIn(1e3*this.settings.slideSpeed),d.stop(!0,!0).fadeOut(1e3*this.settings.slideSpeed),setTimeout(e.proxy(function(){a.stop(!0,!0).css({"z-index":0}),d.stop(!0,!0).css({top:this.$container.outerHeight(!0),display:"block","z-index":0})},this),1e3*this.settings.slideSpeed);break;case"crossFade":a.css({top:0,left:0,"z-index":1,display:"none"}),d.css({"z-index":0}),a.stop(!0,!0).fadeIn(1e3*this.settings.slideSpeed),setTimeout(e.proxy(function(){d.css({top:this.$container.outerHeight(!0)}),a.css({"z-index":1})},this),1e3*this.settings.slideSpeed)}setTimeout(e.proxy(function(){d.removeClass("slideshow_currentView").find("a").attr("tabindex","-1"),a.removeClass("slideshow_nextView"),a.addClass("slideshow_currentView").find("a").attr("tabindex","0"),this.visibleViews=[t],this.currentlyAnimating=!1,this.$container.trigger("slideshowAnimationEnd")},this),1e3*this.settings.slideSpeed)}}}(); 6 6 !function(){var t=jQuery,i=slideshow_jquery_image_gallery_script;i.Slideshow.prototype.recalculate=function(i){if(!this.$container.is(":visible"))return setTimeout(t.proxy(function(){this.recalculate(i)},this),500),void 0;for(var e=this.$parentElement,h=0;e.width()<=0&&(e=e.parent(),!(h>50));h++);if(this.currentWidth!=e.width()){this.currentWidth=e.width();var s=e.width()-(this.$container.outerWidth()-this.$container.width());if(parseInt(this.settings.maxWidth,10)>0&&parseInt(this.settings.maxWidth,10)<s&&(s=parseInt(this.settings.maxWidth,10)),this.$container.css("width",Math.round(s)),this.$content.css("width",Math.round(s)-(this.$content.outerWidth(!0)-this.$content.width())),this.settings.preserveSlideshowDimensions){var r=s*this.settings.dimensionHeight/this.settings.dimensionWidth;this.$container.css("height",Math.round(r)),this.$content.css("height",Math.round(r)-(this.$content.outerHeight(!0)-this.$content.height()))}else this.$container.css("height",Math.round(this.settings.height)),this.$content.css("height",Math.round(this.settings.height));this.$views.each(t.proxy(function(i,e){t.inArray(i,this.visibleViews)<0&&t(e).css("top",this.$container.outerHeight(!0))},this)),this.$container.trigger("slideshowResize"),(i||"boolean"!=typeof i)&&this.recalculateVisibleViews()}},i.Slideshow.prototype.recalculateViews=function(){t.each(this.$views,t.proxy(function(t){this.recalculateView(t,!1)},this))},i.Slideshow.prototype.recalculateVisibleViews=function(){t.each(this.visibleViews,t.proxy(function(t,i){this.recalculateView(i,!1)},this))},i.Slideshow.prototype.recalculateView=function(e,h){if(this.$content.width()<=0||this.$content.height()<=0)return setTimeout(t.proxy(function(){this.recalculateView(e,h)},this),500),void 0;var s=t(this.$views[e]);if("boolean"==typeof h&&h||this.$content.width()!=s.outerWidth(!0)){var r=s.find(".slideshow_slide");if(!(r.length<=0)){var a=this.$content.width()-(s.outerWidth(!0)-s.width()),o=this.$content.height()-(s.outerHeight(!0)-s.height()),n=Math.floor(a/r.length),d=o,l=a%r.length,c=0;t(r[0]).css("margin-left",0),t(r[r.length-1]).css("margin-right",0),t.each(r,t.proxy(function(h,s){var a=t(s),o=a.outerWidth(!0)-a.width(),g=a.outerHeight(!0)-a.height();if(h==r.length-1?a.width(n-o+l):a.width(n-o),a.height(d-g),a.hasClass("slideshow_slide_text")){var u=a.find(".slideshow_background_anchor");if(u.length<=0)return;var w=a.width()-(u.outerWidth(!0)-u.width()),f=a.height()-(u.outerHeight(!0)-u.height());u.css({width:w,height:f})}else if(a.hasClass("slideshow_slide_image")){var v=a.find("img");if(v.length<=0)return;var p,m,y=v.outerWidth(),$=v.outerHeight();p=isNaN(parseInt(y,10))?0:y-v.width(),m=isNaN(parseInt($,10))?0:$-v.height();var _=a.width()-p,x=a.height()-m;"stretch"===this.settings.imageBehaviour?(v.css({width:_,height:x}),v.attr({width:_,height:x})):this.getNaturalImageSize(v,t.proxy(function(i,h){var s,r;return 0>=i||0>=h?(setTimeout(t.proxy(function(){this.recalculateView(e,!0)},this),500),void 0):(s=a.width()/a.height(),r=(i+p)/(h+m),r>=s?"natural"===this.settings.imageBehaviour?(v.css({margin:"0px",width:_,height:Math.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 3 3 "Project-Id-Version: Slideshow Plugin\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 201 5-04-29 09:46+0100\n"6 "PO-Revision-Date: 201 5-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" 8 8 "Language-Team: Stefan Boonstra <[email protected]>\n" 9 9 "Language: es_ES\n" … … 11 11 "Content-Type: text/plain; charset=UTF-8\n" 12 12 "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" 20 14 "X-Poedit-Basepath: ../\n" 21 15 "X-Generator: Poedit 1.5.7\n" 22 "X- Loco-Target-Locale: es_ES\n"16 "X-Poedit-SourceCharset: UTF-8\n" 23 17 "X-Poedit-SearchPath-0: .\n" 24 18 … … 27 21 #: views/SlideshowPluginGeneralSettings/general-settings.php:14 28 22 msgid "General Settings" 29 msgstr " Configuración General"23 msgstr "" 30 24 31 25 #: classes/SlideshowPluginGeneralSettings.php:150 32 26 msgid "New" 33 msgstr " Nuevo"27 msgstr "" 34 28 35 29 #: classes/SlideshowPluginGeneralSettings.php:151 36 30 msgid "Are you sure you want to delete this custom style?" 37 msgstr " ¿Seguro que quieres borrar este estilo personalizado?"31 msgstr "" 38 32 39 33 #: classes/SlideshowPluginGeneralSettings.php:196 … … 53 47 #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:143 54 48 msgid "Untitled" 55 msgstr " Sin titulo"49 msgstr "" 56 50 57 51 #: classes/SlideshowPluginInstaller.php:800 … … 95 89 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 96 90 msgid "Fade" 97 msgstr " Fundido"91 msgstr "Desvanecer" 98 92 99 93 #: classes/SlideshowPluginInstaller.php:805 … … 149 143 #: classes/SlideshowPluginInstaller.php:810 150 144 msgid "Width of the slideshow, set to parent's width on 0" 151 msgstr "Ancho de la diapositiva. ajustado el ancho a 0 para el padre's" 145 msgstr "" 146 "Ancho de las diapositivas. Escribe 0 para tomar el ancho del nodo padre." 152 147 153 148 #: classes/SlideshowPluginInstaller.php:811 154 149 msgid "Height of the slideshow" 155 msgstr "Alt ura de la presentación dediapositivas"150 msgstr "Alto de las diapositivas" 156 151 157 152 #: classes/SlideshowPluginInstaller.php:812 158 153 msgid "Height of the description boxes" 159 msgstr "Alt ura de las cajas de Descripción"154 msgstr "Alto de la caja de descripción" 160 155 161 156 #: classes/SlideshowPluginInstaller.php:813 … … 262 257 #: classes/SlideshowPluginPostType.php:173 263 258 msgid "Slideshow created" 264 msgstr " Diapositiva creada"259 msgstr "" 265 260 266 261 #: classes/SlideshowPluginPostType.php:177 267 262 msgid "Slideshow updated" 268 msgstr " Diapositiva actualizada"263 msgstr "" 269 264 270 265 #: classes/SlideshowPluginPostType.php:224 … … 276 271 #: classes/SlideshowPluginPostType.php:232 277 272 msgid "Open all" 278 msgstr " Abrir todos"273 msgstr "" 279 274 280 275 #: classes/SlideshowPluginPostType.php:234 281 276 msgid "Close all" 282 msgstr " Cerrar todos"277 msgstr "" 283 278 284 279 #: classes/SlideshowPluginPostType.php:240 285 280 #: views/SlideshowPluginPostType/slides.php:10 286 281 msgid "Add slides to this slideshow by using one of the buttons above." 287 msgstr "Agrega una diapositiva usando uno de los botones de a rriba."282 msgstr "Agrega una diapositiva usando uno de los botones de abajo." 288 283 289 284 #: classes/SlideshowPluginPostType.php:320 290 285 msgid "Duplicate" 291 msgstr " Duplicar"286 msgstr "" 292 287 293 288 #: classes/SlideshowPluginPostType.php:371 294 289 msgid "Copy" 295 msgstr " Copiar"290 msgstr "" 296 291 297 292 #: classes/SlideshowPluginShortcode.php:148 … … 301 296 #: classes/SlideshowPluginSlideInserter.php:194 302 297 msgid "More results loaded" 303 msgstr " Mas resultados agregados"298 msgstr "" 304 299 305 300 #: classes/SlideshowPluginSlideInserter.php:249 … … 317 312 #: classes/SlideshowPluginSlideInserter.php:333 318 313 msgid "Insert image slide" 319 msgstr " Insertar imagen en una diapositiva"314 msgstr "" 320 315 321 316 #: classes/SlideshowPluginSlideshowSettingsHandler.php:523 322 317 msgid "Maximum width. When maximum width is 0, maximum width is ignored" 323 318 msgstr "" 324 "Ancho máximo. Cuando la anchura máxima es 0, la anchura máxima se ignora"325 319 326 320 #: classes/SlideshowPluginSlideshowSettingsHandler.php:524 327 321 msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)" 328 msgstr " http://en.wikipedia.org/wiki/Aspect_ratio_(image)"322 msgstr "" 329 323 330 324 #: classes/SlideshowPluginSlideshowSettingsHandler.php:524 331 325 msgid "More info" 332 msgstr " Mas información"326 msgstr "" 333 327 334 328 #: classes/SlideshowPluginSlideshowSettingsHandler.php:524 … … 338 332 "height)" 339 333 msgstr "" 340 "Relación%s proporcional entre la anchura y la altura de diapositivas "341 "(anchura:altura)"342 334 343 335 #: classes/SlideshowPluginSlideshowSettingsHandler.php:525 344 336 msgid "Slideshow's height" 345 msgstr " Altura de Diapositiva"337 msgstr "" 346 338 347 339 #: classes/SlideshowPluginSlideshowSettingsHandler.php:526 348 340 msgid "Image behaviour" 349 msgstr " El comportamiento de la imagen"341 msgstr "" 350 342 351 343 #: classes/SlideshowPluginSlideshowSettingsHandler.php:527 352 344 msgid "Shrink slideshow's height when width shrinks" 353 msgstr " Reducir la altura de diapositivas cuando la anchura se reduce"345 msgstr "" 354 346 355 347 #: classes/SlideshowPluginSlideshowSettingsHandler.php:528 … … 357 349 "Enable responsiveness (Shrink slideshow's width when page's width shrinks)" 358 350 msgstr "" 359 "Habilitar diseño responsivos (Reduce el ancho de diapositivas cuando el "360 "ancho de la página se contrae)"361 351 362 352 #: classes/SlideshowPluginSlideshowSettingsHandler.php:530 363 353 msgid "Hide description box, pop up when mouse hovers over" 364 354 msgstr "" 365 "Ocultar el cuadro de descripción, aparecerá cuando el ratón pase por encima"366 355 367 356 #: classes/SlideshowPluginSlideshowSettingsHandler.php:533 368 357 msgid "Pause slideshow when mouse hovers over" 369 msgstr " Pausa la diapositiva cuando el ratón pase por encima"358 msgstr "" 370 359 371 360 #: classes/SlideshowPluginSlideshowSettingsHandler.php:534 372 361 msgid "Activate navigation buttons" 373 msgstr " Activar los botones de navegación"362 msgstr "" 374 363 375 364 #: classes/SlideshowPluginSlideshowSettingsHandler.php:535 376 365 msgid "Hide navigation buttons, show when mouse hovers over" 377 366 msgstr "" 378 "Ocultar los botones de navegación, mostrar cuando el ratón pase por encima"379 367 380 368 #: classes/SlideshowPluginSlideshowSettingsHandler.php:536 381 369 msgid "Activate pagination" 382 msgstr " Activar las paginas"370 msgstr "" 383 371 384 372 #: classes/SlideshowPluginSlideshowSettingsHandler.php:537 385 373 msgid "Hide pagination, show when mouse hovers over" 386 msgstr " Esconder las paginas, mostrar el ratón pase por encima"374 msgstr "" 387 375 388 376 #: classes/SlideshowPluginSlideshowSettingsHandler.php:538 389 377 msgid "Activate control panel (play and pause button)" 390 msgstr " Activar el panel de control (reproducción y botón de pausa)"378 msgstr "" 391 379 392 380 #: classes/SlideshowPluginSlideshowSettingsHandler.php:539 393 381 msgid "Hide control panel, show when mouse hovers over" 394 msgstr " Ocultar el panel de control, mostrar cuando el ratón pase por encima"382 msgstr "" 395 383 396 384 #: classes/SlideshowPluginSlideshowSettingsHandler.php:540 397 385 msgid "Wait until the next slide has loaded before showing it" 398 386 msgstr "" 399 "Espere hasta que la siguiente diapositiva se ha cargado antes de mostrarlo"400 387 401 388 #: classes/SlideshowPluginSlideshowSettingsHandler.php:541 402 389 msgid "Show a loading icon until the first slide appears" 403 msgstr " Mostrar un icono de carga hasta que aparezca la primera diapositiva"390 msgstr "" 404 391 405 392 #: classes/SlideshowPluginSlideshowSettingsHandler.php:542 … … 414 401 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 415 402 msgid "Slide Left" 416 msgstr " Deslice a la izquierda"403 msgstr "" 417 404 418 405 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 419 406 msgid "Slide Right" 420 msgstr " Deslice a la derecha"407 msgstr "" 421 408 422 409 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 423 410 msgid "Slide Up" 424 msgstr " Deslice hacia arriba"411 msgstr "" 425 412 426 413 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 427 414 msgid "Slide Down" 428 msgstr " Deslice hacia abajo"415 msgstr "" 429 416 430 417 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 431 418 msgid "Cross Fade" 432 msgstr " Fundido Encadenado"419 msgstr "" 433 420 434 421 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 435 422 msgid "Direct Fade" 436 msgstr " Fundido en Directo"423 msgstr "" 437 424 438 425 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 439 426 msgid "Random Animation" 440 msgstr " Animación Sin Orden"427 msgstr "" 441 428 442 429 #: classes/SlideshowPluginSlideshowSettingsHandler.php:555 443 430 msgid "Natural and centered" 444 msgstr " Natural y centrado"431 msgstr "" 445 432 446 433 #: classes/SlideshowPluginSlideshowSettingsHandler.php:555 447 434 msgid "Crop to fit" 448 msgstr " Recortar para ajustarse"435 msgstr "" 449 436 450 437 #: classes/SlideshowPluginSlideshowSettingsHandler.php:555 451 438 msgid "Stretch to fit" 452 msgstr " Estirar para caber"439 msgstr "" 453 440 454 441 #: classes/SlideshowPluginSlideshowSettingsHandler.php:569 … … 457 444 #: classes/SlideshowPluginSlideshowSettingsHandler.php:572 458 445 msgid "Miscellaneous" 459 msgstr "Miscel áneo"446 msgstr "Miscelanea" 460 447 461 448 #: classes/SlideshowPluginWidget.php:23 … … 469 456 #: views/SlideshowPlugin/slideshow.php:23 470 457 msgid "Play" 471 msgstr " Reproducir"458 msgstr "" 472 459 473 460 #: views/SlideshowPlugin/slideshow.php:23 474 461 msgid "Pause" 475 msgstr " Pausa"462 msgstr "" 476 463 477 464 #: views/SlideshowPlugin/slideshow.php:25 478 465 msgid "Previous" 479 msgstr " Perviamente"466 msgstr "" 480 467 481 468 #: views/SlideshowPlugin/slideshow.php:26 482 469 msgid "Next" 483 msgstr " Proxima"470 msgstr "" 484 471 485 472 #: views/SlideshowPlugin/slideshow.php:28 486 473 msgid "Go to slide" 487 msgstr " Ir a diapositiva"474 msgstr "" 488 475 489 476 #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:46 490 477 msgid "Default stylesheets" 491 msgstr " Hojas de estilo por defecto"478 msgstr "" 492 479 493 480 #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:60 494 481 msgid "Create a new custom style from this style" 495 msgstr " Crear un nuevo estilo personalizado de este estilo"482 msgstr "" 496 483 497 484 #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:62 498 485 msgid "Customize" 499 msgstr " Personalizar"486 msgstr "" 500 487 501 488 #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:76 502 489 msgid "Custom stylesheets" 503 msgstr " Hojas de estilo personalizadas"490 msgstr "" 504 491 505 492 #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:89 506 493 #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:172 507 494 msgid "Edit this style" 508 msgstr " Edita este estilo"495 msgstr "" 509 496 510 497 #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:91 … … 518 505 #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:181 519 506 msgid "Delete this style" 520 msgstr " Borrar este estilo"507 msgstr "" 521 508 522 509 #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:100 523 510 #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:183 524 511 msgid "Delete" 525 msgstr " Borrar"512 msgstr "" 526 513 527 514 #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:110 528 515 msgid "Click 'Customize' to create a new custom stylesheet." 529 516 msgstr "" 530 "Haga clic en \"Personalizar\" para crear una nueva hoja de estilo "531 "personalizado."532 517 533 518 #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:130 534 519 msgid "Select a stylesheet to start customizing it." 535 msgstr " Seleccione una hoja de estilo para comenzar a personalizarlo."520 msgstr "" 536 521 537 522 #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:139 … … 552 537 #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:200 553 538 msgid "Style" 554 msgstr " Estilo"539 msgstr "Style" 555 540 556 541 #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:11 557 542 msgid "Note" 558 msgstr " Nota"543 msgstr "" 559 544 560 545 #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:18 … … 565 550 "%sclick here.%s" 566 551 msgstr "" 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"571 552 572 553 #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:29 573 554 #: views/SlideshowPluginGeneralSettings/general-settings.php:15 574 555 msgid "Default Slideshow Settings" 575 msgstr " Ajustes por defecto de diapositivas"556 msgstr "" 576 557 577 558 #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:41 578 559 #: views/SlideshowPluginPostType/settings.php:12 579 560 msgid "settings" 580 msgstr " configuración"561 msgstr "Configuración" 581 562 582 563 #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:77 583 564 msgid "Default Slideshow Stylesheet" 584 msgstr " Ajustes de estilos por defecto"565 msgstr "" 585 566 586 567 #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:11 587 568 msgid "Add slideshows" 588 msgstr " Agregar diapositivas"569 msgstr "" 589 570 590 571 #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:12 591 572 msgid "Edit slideshows" 592 msgstr " Editar diapositivas"573 msgstr "" 593 574 594 575 #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:13 595 576 msgid "Delete slideshows" 596 msgstr " Borrar diapositivas"577 msgstr "" 597 578 598 579 #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:20 599 580 msgid "User Capabilities" 600 msgstr " Capacidades de usuario"581 msgstr "" 601 582 602 583 #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:22 603 584 msgid "Select the user roles that will able to perform certain actions." 604 585 msgstr "" 605 "Seleccione la categoria del usuario que pueda realizar ciertas acciones."606 586 607 587 #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:38 608 588 msgid "Untitled role" 609 msgstr " Categoria sin titulo"589 msgstr "" 610 590 611 591 #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:65 … … 615 595 #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:69 616 596 msgid "Stylesheet location" 617 msgstr " Ubicación de estilos"597 msgstr "" 618 598 619 599 #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:72 620 600 msgid "top" 621 msgstr " arriba"601 msgstr "" 622 602 623 603 #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:73 624 604 msgid "bottom" 625 msgstr " fondo"605 msgstr "" 626 606 627 607 #: views/SlideshowPluginGeneralSettings/general-settings.php:16 628 608 msgid "Custom Styles" 629 msgstr " Estilos personalizados"609 msgstr "" 630 610 631 611 #: views/SlideshowPluginPostType/information.php:1 … … 641 621 "Or add this piece of code to where ever in your website you want to place " 642 622 "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" 623 msgstr "O agrega este código en tu tema" 646 624 647 625 #: views/SlideshowPluginPostType/information.php:9 … … 701 679 #: views/SlideshowPluginSlideshowSlide/backend_text.php:124 702 680 msgid "Open URL in" 703 msgstr " Abrir el URL en"681 msgstr "" 704 682 705 683 #: views/SlideshowPluginPostType/slides.php:72 … … 773 751 #, php-format 774 752 msgid "Custom styles can be created and customized %shere%s." 775 msgstr " Estilos personalizados se pueden crear y personalizar %saquí%s."753 msgstr "" 776 754 777 755 #: views/SlideshowPluginPostType/support-plugin.php:3 … … 798 776 #: views/SlideshowPluginPostType/support-plugin.php:24 799 777 msgid "Frequently Asked Questions (FAQ)" 800 msgstr " Preguntas Frecuentes (PF)"778 msgstr "" 801 779 802 780 #: views/SlideshowPluginShortcode/shortcode-inserter.php:4 803 #: views/SlideshowPluginShortcode/shortcode-inserter.php: 13804 #: views/SlideshowPluginShortcode/shortcode-inserter.php: 24781 #: views/SlideshowPluginShortcode/shortcode-inserter.php:9 782 #: views/SlideshowPluginShortcode/shortcode-inserter.php:18 805 783 msgid "Insert a Slideshow" 806 784 msgstr "Insertar una Diapositiva" 807 785 808 #: views/SlideshowPluginShortcode/shortcode-inserter.php:1 8809 #: views/SlideshowPluginShortcode/shortcode-inserter.php:5 7786 #: views/SlideshowPluginShortcode/shortcode-inserter.php:12 787 #: views/SlideshowPluginShortcode/shortcode-inserter.php:51 810 788 msgid "Insert Slideshow" 811 789 msgstr "Insertar Diapositiva" 812 790 813 #: views/SlideshowPluginShortcode/shortcode-inserter.php: 33791 #: views/SlideshowPluginShortcode/shortcode-inserter.php:27 814 792 msgid "Select a slideshow" 815 793 msgstr "Seleccionar una diapositiva" 816 794 817 #: views/SlideshowPluginShortcode/shortcode-inserter.php: 42795 #: views/SlideshowPluginShortcode/shortcode-inserter.php:36 818 796 #: views/SlideshowPluginWidget/form.php:12 819 797 msgid "Untitled slideshow" 820 798 msgstr "Diapositiva sin título" 821 799 822 #: views/SlideshowPluginShortcode/shortcode-inserter.php: 62800 #: views/SlideshowPluginShortcode/shortcode-inserter.php:56 823 801 msgid "Cancel" 824 802 msgstr "Cancelar" 825 803 826 #: views/SlideshowPluginShortcode/shortcode-inserter.php: 73804 #: views/SlideshowPluginShortcode/shortcode-inserter.php:67 827 805 #, php-format 828 806 msgid "" … … 830 808 "slideshow here!%s" 831 809 msgstr "" 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" 834 811 835 812 #: views/SlideshowPluginSlideInserter/search-popup.php:6 … … 848 825 #: views/SlideshowPluginSlideshowSlide/backend_video.php:21 849 826 msgid "Click to toggle" 850 msgstr " Haga clic para activar"827 msgstr "" 851 828 852 829 #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:160 … … 855 832 #: views/SlideshowPluginSlideshowSlide/backend_text.php:131 856 833 msgid "Don't let search engines follow link" 857 msgstr " No permitas que los motores de búsquedas sigan el enlace"834 msgstr "" 858 835 859 836 #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:168 860 837 #: views/SlideshowPluginSlideshowSlide/backend_templates.php:197 861 838 msgid "Alternative text" 862 msgstr " Texto alternativo"839 msgstr "" 863 840 864 841 #: views/SlideshowPluginSlideshowSlide/backend_templates.php:48 865 842 #: views/SlideshowPluginSlideshowSlide/backend_text.php:110 866 843 msgid "Text color" 867 msgstr " Color de Texto"844 msgstr "" 868 845 869 846 #: views/SlideshowPluginSlideshowSlide/backend_templates.php:53 870 847 #: views/SlideshowPluginSlideshowSlide/backend_text.php:115 871 848 msgid "(Leave empty for a transparent background)" 872 msgstr " (Dejar vacio para un fondo transparente)"849 msgstr "" 873 850 874 851 #: views/SlideshowPluginSlideshowSlide/backend_templates.php:110 875 852 #: views/SlideshowPluginSlideshowSlide/backend_video.php:42 876 853 msgid "Show related videos" 877 msgstr " Ensena vídeos relacionados"854 msgstr "" 878 855 879 856 #: views/SlideshowPluginUpload/upload-button.php:1 … … 884 861 msgid "Random Slideshow" 885 862 msgstr "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 3 3 "Project-Id-Version: Slideshow Plugin\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 201 4-08-19 11:58+0100\n"6 "PO-Revision-Date: 201 4-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" 7 7 "Last-Translator: Stefan Boonstra <[email protected]>\n" 8 8 "Language-Team: Stefan Boonstra <[email protected]>\n" … … 13 13 "X-Poedit-KeywordsList: _e;__\n" 14 14 "X-Poedit-Basepath: ../\n" 15 "X-Generator: Poedit 1. 5.7\n"15 "X-Generator: Poedit 1.7.6\n" 16 16 "X-Poedit-SearchPath-0: .\n" 17 17 -
slideshow-jquery-image-gallery/trunk/languages/slideshow-plugin-original.po
r1156839 r1226951 3 3 "Project-Id-Version: Slideshow Plugin\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 201 4-08-19 12:00+0100\n"6 "PO-Revision-Date: 201 4-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" 7 7 "Last-Translator: Stefan Boonstra <[email protected]>\n" 8 8 "Language-Team: Stefan Boonstra <[email protected]>\n" … … 12 12 "X-Poedit-KeywordsList: _e;__\n" 13 13 "X-Poedit-Basepath: ../\n" 14 "X-Generator: Poedit 1.5.7\n" 14 "X-Generator: Poedit 1.7.6\n" 15 "Plural-Forms: nplurals=2; plural=(n != 1);\n" 16 "Language: en\n" 15 17 "X-Poedit-SearchPath-0: .\n" 16 18 -
slideshow-jquery-image-gallery/trunk/languages/slideshow-plugin-ru_RU.po
r1143459 r1226951 3 3 "Project-Id-Version: Slideshow Plugin\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 201 4-08-19 12:02+0100\n"6 "PO-Revision-Date: 201 4-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" 7 7 "Last-Translator: Dmitry Fatakov <[email protected]>\n" 8 8 "Language-Team: Stefan Boonstra <[email protected]>\n" … … 12 12 "Content-Transfer-Encoding: 8bit\n" 13 13 "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" 16 16 "X-Poedit-SearchPath-0: .\n" 17 17 … … 51 51 #: classes/SlideshowPluginSlideshowSettingsHandler.php:472 52 52 #: views/SlideshowPluginSlideshowSlide/backend_templates.php:111 53 #: views/SlideshowPluginSlideshowSlide/backend_video.php:4 353 #: views/SlideshowPluginSlideshowSlide/backend_video.php:45 54 54 msgid "Yes" 55 55 msgstr "Да" … … 58 58 #: classes/SlideshowPluginSlideshowSettingsHandler.php:473 59 59 #: views/SlideshowPluginSlideshowSlide/backend_templates.php:112 60 #: views/SlideshowPluginSlideshowSlide/backend_video.php:4 460 #: views/SlideshowPluginSlideshowSlide/backend_video.php:46 61 61 msgid "No" 62 62 msgstr "Нет" … … 255 255 #: classes/SlideshowPluginPostType.php:173 256 256 msgid "Slideshow created" 257 msgstr " "257 msgstr "Слайдшоу создан" 258 258 259 259 #: classes/SlideshowPluginPostType.php:177 260 260 msgid "Slideshow updated" 261 msgstr " "261 msgstr "Слайдшоу обновлен" 262 262 263 263 #: classes/SlideshowPluginPostType.php:224 … … 269 269 #: classes/SlideshowPluginPostType.php:232 270 270 msgid "Open all" 271 msgstr " "271 msgstr "Открыть все" 272 272 273 273 #: classes/SlideshowPluginPostType.php:234 274 274 msgid "Close all" 275 msgstr " "275 msgstr "Закрыть все" 276 276 277 277 #: classes/SlideshowPluginPostType.php:240 … … 282 282 #: classes/SlideshowPluginPostType.php:320 283 283 msgid "Duplicate" 284 msgstr " "284 msgstr "Дублировать" 285 285 286 286 #: classes/SlideshowPluginPostType.php:371 287 287 msgid "Copy" 288 msgstr " "288 msgstr "Копировать" 289 289 290 290 #: classes/SlideshowPluginShortcode.php:148 … … 310 310 #: classes/SlideshowPluginSlideInserter.php:333 311 311 msgid "Insert image slide" 312 msgstr " "312 msgstr "Вставить слайд - изображение" 313 313 314 314 #: classes/SlideshowPluginSlideshowSettingsHandler.php:523 … … 339 339 #: classes/SlideshowPluginSlideshowSettingsHandler.php:526 340 340 msgid "Image behaviour" 341 msgstr " "341 msgstr "Показ изображения" 342 342 343 343 #: classes/SlideshowPluginSlideshowSettingsHandler.php:527 … … 386 386 #: classes/SlideshowPluginSlideshowSettingsHandler.php:540 387 387 msgid "Wait until the next slide has loaded before showing it" 388 msgstr " "388 msgstr "Дождитесь загрузки следующего слайда, перед его показом" 389 389 390 390 #: classes/SlideshowPluginSlideshowSettingsHandler.php:541 391 391 msgid "Show a loading icon until the first slide appears" 392 msgstr " "392 msgstr "Показывать иконку загрузки перед тем, как появится следующий слайд" 393 393 394 394 #: classes/SlideshowPluginSlideshowSettingsHandler.php:542 … … 419 419 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 420 420 msgid "Cross Fade" 421 msgstr " "421 msgstr "Плавное затухание" 422 422 423 423 #: classes/SlideshowPluginSlideshowSettingsHandler.php:547 … … 431 431 #: classes/SlideshowPluginSlideshowSettingsHandler.php:555 432 432 msgid "Natural and centered" 433 msgstr " "433 msgstr "Естественно и по центру" 434 434 435 435 #: classes/SlideshowPluginSlideshowSettingsHandler.php:555 436 436 msgid "Crop to fit" 437 msgstr " "437 msgstr "Кадрирование" 438 438 439 439 #: classes/SlideshowPluginSlideshowSettingsHandler.php:555 440 440 msgid "Stretch to fit" 441 msgstr " "441 msgstr "Растягивание" 442 442 443 443 #: classes/SlideshowPluginSlideshowSettingsHandler.php:569 … … 458 458 #: views/SlideshowPlugin/slideshow.php:23 459 459 msgid "Play" 460 msgstr " "460 msgstr "Воспроизвести" 461 461 462 462 #: views/SlideshowPlugin/slideshow.php:23 463 463 msgid "Pause" 464 msgstr " "464 msgstr "Пауза" 465 465 466 466 #: views/SlideshowPlugin/slideshow.php:25 467 467 msgid "Previous" 468 msgstr " "468 msgstr "Предыдущий" 469 469 470 470 #: views/SlideshowPlugin/slideshow.php:26 471 471 msgid "Next" 472 msgstr " "472 msgstr "Следующий" 473 473 474 474 #: views/SlideshowPlugin/slideshow.php:28 475 475 msgid "Go to slide" 476 msgstr " "476 msgstr "Перейти к слайду" 477 477 478 478 #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:46 … … 500 500 #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:174 501 501 #: views/SlideshowPluginPostType/slides.php:138 502 #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:11 2502 #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:114 503 503 msgid "Edit" 504 504 msgstr "Редактировать" … … 520 520 #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:130 521 521 msgid "Select a stylesheet to start customizing it." 522 msgstr " "522 msgstr "Выберите стиль перед началом настройки." 523 523 524 524 #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:139 … … 528 528 #: views/SlideshowPluginPostType/slides.php:196 529 529 #: views/SlideshowPluginPostType/slides.php:264 530 #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:12 0530 #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:122 531 531 #: views/SlideshowPluginSlideshowSlide/backend_templates.php:18 532 532 #: views/SlideshowPluginSlideshowSlide/backend_templates.php:150 533 #: views/SlideshowPluginSlideshowSlide/backend_text.php:8 0533 #: views/SlideshowPluginSlideshowSlide/backend_text.php:82 534 534 #: views/SlideshowPluginWidget/form.php:2 535 535 msgid "Title" … … 600 600 #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:69 601 601 msgid "Stylesheet location" 602 msgstr " "602 msgstr "Расположение таблицы стилей" 603 603 604 604 #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:72 605 605 msgid "top" 606 msgstr " "606 msgstr "Наверх" 607 607 608 608 #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:73 609 609 msgid "bottom" 610 msgstr " "610 msgstr "Вниз" 611 611 612 612 #: views/SlideshowPluginGeneralSettings/general-settings.php:16 … … 645 645 #: views/SlideshowPluginSlideInserter/insert-text-button.php:2 646 646 #: views/SlideshowPluginSlideshowSlide/backend_templates.php:9 647 #: views/SlideshowPluginSlideshowSlide/backend_text.php: 69647 #: views/SlideshowPluginSlideshowSlide/backend_text.php:71 648 648 msgid "Text slide" 649 649 msgstr "Текстовый слайд" … … 653 653 #: views/SlideshowPluginPostType/slides.php:198 654 654 #: views/SlideshowPluginPostType/slides.php:270 655 #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:13 5655 #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:137 656 656 #: views/SlideshowPluginSlideshowSlide/backend_templates.php:33 657 657 #: views/SlideshowPluginSlideshowSlide/backend_templates.php:165 658 #: views/SlideshowPluginSlideshowSlide/backend_text.php:9 5658 #: views/SlideshowPluginSlideshowSlide/backend_text.php:97 659 659 msgid "Description" 660 660 msgstr "Описание" … … 663 663 #: views/SlideshowPluginPostType/slides.php:200 664 664 #: views/SlideshowPluginSlideshowSlide/backend_templates.php:51 665 #: views/SlideshowPluginSlideshowSlide/backend_text.php:11 3665 #: views/SlideshowPluginSlideshowSlide/backend_text.php:115 666 666 msgid "Background color" 667 667 msgstr "Фоновый цвет" … … 671 671 #: views/SlideshowPluginPostType/slides.php:205 672 672 #: views/SlideshowPluginPostType/slides.php:275 673 #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:15 0673 #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:152 674 674 #: views/SlideshowPluginSlideshowSlide/backend_templates.php:59 675 675 #: views/SlideshowPluginSlideshowSlide/backend_templates.php:180 676 #: views/SlideshowPluginSlideshowSlide/backend_text.php:12 1676 #: views/SlideshowPluginSlideshowSlide/backend_text.php:123 677 677 msgid "URL" 678 678 msgstr "URL" … … 682 682 #: views/SlideshowPluginPostType/slides.php:207 683 683 #: views/SlideshowPluginPostType/slides.php:277 684 #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:15 3684 #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:155 685 685 #: views/SlideshowPluginSlideshowSlide/backend_templates.php:62 686 686 #: views/SlideshowPluginSlideshowSlide/backend_templates.php:183 687 #: views/SlideshowPluginSlideshowSlide/backend_text.php:12 4687 #: views/SlideshowPluginSlideshowSlide/backend_text.php:126 688 688 msgid "Open URL in" 689 689 msgstr "Открыть URL в" … … 693 693 #: views/SlideshowPluginPostType/slides.php:209 694 694 #: views/SlideshowPluginPostType/slides.php:279 695 #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:15 5695 #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:157 696 696 #: views/SlideshowPluginSlideshowSlide/backend_templates.php:64 697 697 #: views/SlideshowPluginSlideshowSlide/backend_templates.php:185 698 #: views/SlideshowPluginSlideshowSlide/backend_text.php:12 6698 #: views/SlideshowPluginSlideshowSlide/backend_text.php:128 699 699 msgid "Same window" 700 700 msgstr "Текущее окно" … … 704 704 #: views/SlideshowPluginPostType/slides.php:210 705 705 #: views/SlideshowPluginPostType/slides.php:280 706 #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:15 6706 #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:158 707 707 #: views/SlideshowPluginSlideshowSlide/backend_templates.php:65 708 708 #: views/SlideshowPluginSlideshowSlide/backend_templates.php:186 709 #: views/SlideshowPluginSlideshowSlide/backend_text.php:12 7709 #: views/SlideshowPluginSlideshowSlide/backend_text.php:129 710 710 msgid "New window" 711 711 msgstr "Новое окно" … … 715 715 #: views/SlideshowPluginSlideInserter/insert-video-button.php:2 716 716 #: views/SlideshowPluginSlideshowSlide/backend_templates.php:94 717 #: views/SlideshowPluginSlideshowSlide/backend_video.php:2 6717 #: views/SlideshowPluginSlideshowSlide/backend_video.php:28 718 718 msgid "Video slide" 719 719 msgstr "Видео слайд" … … 722 722 #: views/SlideshowPluginPostType/slides.php:235 723 723 #: views/SlideshowPluginSlideshowSlide/backend_templates.php:103 724 #: views/SlideshowPluginSlideshowSlide/backend_video.php:3 5724 #: views/SlideshowPluginSlideshowSlide/backend_video.php:37 725 725 msgid "Youtube Video ID" 726 726 msgstr "ID видео на Youtube" … … 730 730 #: views/SlideshowPluginSlideInserter/insert-image-button.php:2 731 731 #: views/SlideshowPluginSlideInserter/insert-image-button.php:4 732 #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:10 1732 #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:103 733 733 #: views/SlideshowPluginSlideshowSlide/backend_templates.php:135 734 734 msgid "Image slide" … … 746 746 #: views/SlideshowPluginPostType/slides.php:243 747 747 #: views/SlideshowPluginPostType/slides.php:289 748 #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:17 4748 #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:176 749 749 #: views/SlideshowPluginSlideshowSlide/backend_templates.php:76 750 750 #: views/SlideshowPluginSlideshowSlide/backend_templates.php:117 751 751 #: views/SlideshowPluginSlideshowSlide/backend_templates.php:203 752 #: views/SlideshowPluginSlideshowSlide/backend_text.php:1 38753 #: views/SlideshowPluginSlideshowSlide/backend_video.php: 49752 #: views/SlideshowPluginSlideshowSlide/backend_text.php:140 753 #: views/SlideshowPluginSlideshowSlide/backend_video.php:51 754 754 msgid "Delete slide" 755 755 msgstr "Удалить слайд" … … 785 785 786 786 #: views/SlideshowPluginShortcode/shortcode-inserter.php:4 787 #: views/SlideshowPluginShortcode/shortcode-inserter.php: 9788 #: views/SlideshowPluginShortcode/shortcode-inserter.php: 18787 #: views/SlideshowPluginShortcode/shortcode-inserter.php:13 788 #: views/SlideshowPluginShortcode/shortcode-inserter.php:24 789 789 msgid "Insert a Slideshow" 790 790 msgstr "Вставить слайдшоу" 791 791 792 #: views/SlideshowPluginShortcode/shortcode-inserter.php:1 2793 #: views/SlideshowPluginShortcode/shortcode-inserter.php:5 1792 #: views/SlideshowPluginShortcode/shortcode-inserter.php:18 793 #: views/SlideshowPluginShortcode/shortcode-inserter.php:57 794 794 msgid "Insert Slideshow" 795 795 msgstr "Вставка слайдшоу" 796 796 797 #: views/SlideshowPluginShortcode/shortcode-inserter.php: 27797 #: views/SlideshowPluginShortcode/shortcode-inserter.php:33 798 798 msgid "Select a slideshow" 799 799 msgstr "Выберите слайдшоу" 800 800 801 #: views/SlideshowPluginShortcode/shortcode-inserter.php: 36801 #: views/SlideshowPluginShortcode/shortcode-inserter.php:42 802 802 #: views/SlideshowPluginWidget/form.php:12 803 803 msgid "Untitled slideshow" 804 804 msgstr "Сладйшоу без заголовка" 805 805 806 #: views/SlideshowPluginShortcode/shortcode-inserter.php: 56806 #: views/SlideshowPluginShortcode/shortcode-inserter.php:62 807 807 msgid "Cancel" 808 808 msgstr "Отмена" 809 809 810 #: views/SlideshowPluginShortcode/shortcode-inserter.php: 67810 #: views/SlideshowPluginShortcode/shortcode-inserter.php:73 811 811 #, php-format 812 812 msgid "" … … 823 823 msgstr "Поиск изображения по заголовку или ID" 824 824 825 #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:9 0825 #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:92 826 826 #: views/SlideshowPluginSlideshowSlide/backend_templates.php:4 827 827 #: views/SlideshowPluginSlideshowSlide/backend_templates.php:89 828 828 #: views/SlideshowPluginSlideshowSlide/backend_templates.php:130 829 #: views/SlideshowPluginSlideshowSlide/backend_text.php: 58830 #: views/SlideshowPluginSlideshowSlide/backend_video.php:2 1829 #: views/SlideshowPluginSlideshowSlide/backend_text.php:60 830 #: views/SlideshowPluginSlideshowSlide/backend_video.php:23 831 831 msgid "Click to toggle" 832 msgstr " "833 834 #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:16 0832 msgstr "Переключить" 833 834 #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:162 835 835 #: views/SlideshowPluginSlideshowSlide/backend_templates.php:69 836 836 #: views/SlideshowPluginSlideshowSlide/backend_templates.php:190 837 #: views/SlideshowPluginSlideshowSlide/backend_text.php:13 1837 #: views/SlideshowPluginSlideshowSlide/backend_text.php:133 838 838 msgid "Don't let search engines follow link" 839 msgstr " "840 841 #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:1 68839 msgstr "Не позволять поисковым системам следовать за ссылкой" 840 841 #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:170 842 842 #: views/SlideshowPluginSlideshowSlide/backend_templates.php:197 843 843 msgid "Alternative text" 844 msgstr " "844 msgstr "Альтернативный текст" 845 845 846 846 #: views/SlideshowPluginSlideshowSlide/backend_templates.php:48 847 #: views/SlideshowPluginSlideshowSlide/backend_text.php:11 0847 #: views/SlideshowPluginSlideshowSlide/backend_text.php:112 848 848 msgid "Text color" 849 849 msgstr "Цвет текста" 850 850 851 851 #: views/SlideshowPluginSlideshowSlide/backend_templates.php:53 852 #: views/SlideshowPluginSlideshowSlide/backend_text.php:11 5852 #: views/SlideshowPluginSlideshowSlide/backend_text.php:117 853 853 msgid "(Leave empty for a transparent background)" 854 854 msgstr "(Оставить пустым для прозрачного фона)" 855 855 856 856 #: views/SlideshowPluginSlideshowSlide/backend_templates.php:110 857 #: views/SlideshowPluginSlideshowSlide/backend_video.php:4 2857 #: views/SlideshowPluginSlideshowSlide/backend_video.php:44 858 858 msgid "Show related videos" 859 msgstr " "859 msgstr "Показать похожие видео" 860 860 861 861 #: views/SlideshowPluginUpload/upload-button.php:1 -
slideshow-jquery-image-gallery/trunk/readme.txt
r1156839 r1226951 5 5 Tags: responsive, slideshow, slider, slide show, images, image, photo, video, text, gallery, galleries, jquery, javascript 6 6 Requires at least: 3.5 7 Tested up to: 4. 28 Stable tag: 2.2.2 37 Tested up to: 4.3 8 Stable tag: 2.2.24 9 9 License: GPLv2 10 10 … … 14 14 == Description == 15 15 16 Slideshow provides an easy way to integrate multiple slideshows inany WordPress installation.17 18 Any image can be loaded into a slideshow using the default WordPress media uploader, even images you've already16 Slideshow provides an easy way to integrate a slideshow for any WordPress installation. 17 18 Any image can be loaded into the slideshow by picking it from the WordPress media page, even images you've already 19 19 uploaded can be inserted into your slideshow right away! 20 20 … … 33 33 - Change animations and handling 34 34 - Customize to taste 35 - Show that visitor who's theboss35 - Show that visitor who's boss 36 36 37 37 = Languages = … … 53 53 - Portuguese (92% - pt_BR - Translated by [Piero Luiz](http://www.newer7.com.br/) and others) 54 54 - Portuguese (83% - pt_PT - Translated by [Filipe Catraia](http://www.filipecatraia.com/)) 55 - Russian ( 83% - ru_RU - Translated byDmitry Fatakov)55 - Russian (100% - ru_RU - Translated by [Coupofy](http://www.coupofy.com/) and Dmitry Fatakov) 56 56 - 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)) 58 58 - Swedish (91% - sv_SE - Translated by [Åke Isacsson](http://www.nojdkund.se/) and Wilhelm Svenselius) 59 59 - 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/)) 60 61 61 62 Feel free to send me your own translation of the plugin to my e-mail address: [email protected]. The original … … 82 83 2. After activating Slideshow, click on 'Slideshows' and create a new slideshow. 83 84 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. 85 3. Click on 'Insert Image Slide' to insert an image slide, a popup will appear where you can search for the desired 86 image. Insert the image by clicking 'Insert'. The same goes for text and video slides, don't forget to save! 87 88 4. Go to a post or a page and click the 'Insert Slideshow' button above the editor. A popup appears where you can select 89 your newly created slideshow to insert. You can also use the shortcode or code snippet visible in your slideshow admin 90 panel to deploy your slideshow anywhere on your website. Use the widget to show any of your slideshows in the sidebar 91 of your website. 92 92 93 93 5. Feel like a sir. … … 98 98 = How do I add image slides? = 99 99 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) 100 Click the 'Image slide' button in the 'Slides List' of the slideshow. A screen will pop up where you'll be able to 101 search though all images that have already been uploaded to your WordPress website. If you want to add new images to the 102 slideshow, or you do not have any images yet, you'll have to upload them to the WordPress media page first. 104 103 105 104 = How do I change a slideshow's settings? = 106 105 107 Just like WordPress' posts and pages you're already familiar with, slideshows can be edited. Go to the 'Slideshows' tab108 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 youcan 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 different114 from the default ones, you can change the default settings by going to the 'General Settings' page and clicking on the106 Just like the posts and pages you're already familiar with, slideshows can be edited. Go to the 'Slideshows' tab in your 107 WordPress 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 109 the settings of. On the slideshow's edit page you'll be able to find a box titled 'Slideshow Settings', in this box you 110 can change the slideshow's settings. 111 112 If you're creating multiple slideshows that should have the same settings, but their settings need to be different from 113 the default settings, you can change the default settings by going to the 'General Settings' page and clicking on the 115 114 'Default Slideshow Settings' tab. Newly created slideshows will start off with the settings you set there. 116 115 … … 127 126 128 127 If 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 slideshow128 'Delete'. Be careful with this though, a deleted stylesheet cannot be retrieved and cannot be used by any slideshow 130 129 anymore. 131 130 132 131 = Some users can add, edit or delete slideshows, although I do not want them to. Can I prevent this from happening? = 133 132 134 Yes you can. In your WordPress admin panel, go to the 'Slideshows' menu item and click on 'General Settings', then go to133 Yes you can. On your WordPress admin page, go to the 'Slideshows' menu item and click on 'General Settings', then go to 135 134 the 'User Capabilities' tab (If you're not already there). The privileges that allow user groups to perform certain 136 135 actions are listed here. To allow, for instance, a contributor to add a slideshow, click the box in front of 'Contributor' … … 143 142 = The slideshow does not show up = 144 143 145 - The slideshow is oftencalled after the `</head>` tag, which means the scripts and stylesheet need to load in the footer144 - The slideshow is mostly called after the `</head>` tag, which means the scripts and stylesheet need to load in the footer 146 145 of the website. A theme that has no `<?php wp_footer(); ?>` call in it's footer will not be able to load the slideshow's 147 146 scripts. 148 147 149 148 - 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 by151 opening Google Chrome or Firefox (with Firebug installed) and opening the console.149 javascript to break. For the slideshow to work again, this error needs to be fixed. Check if any errors were thrown by 150 opening Google Chrome or Firefox (with Firebug installed) and press the 'F12' key. Errors show in the console tab. 152 151 153 152 = Why does Internet Explorer show a big blank space above the slideshow? = … … 184 183 == Changelog == 185 184 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 186 193 = 2.2.23 = 187 194 * Fixed: Despite default stylesheets now loading through static file again, admin-ajax.php was still being called. 188 195 * Fixed: Invalid HTML in the shortcode inserter. Thanks to [Iazel](https://wordpress.org/support/profile/iazel). 189 196 * 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. 190 198 * Updated Spanish translation, thanks to Manuel Ballesta Ruiz. 191 199 … … 198 206 * Fixed: Slideshow container calculation now uses the JavaScript round function instead of the floor function. 199 207 * Fixed: Separated assignment of $sessionID and increment of SlideshowPlugin::$sessionCounter. 200 * Added Norwegian translation .201 * Updated Persian translation , thanks toW3Design.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. 204 212 205 213 = 2.2.21 = … … 219 227 * New tags are available for custom stylesheets: %site-url%, %stylesheet-url% and %template-url% 220 228 * Fixed: When the slideshow would not have any height, slides would not hide outside of the slideshow. 221 * Added Serbo-Croatian translation , thanks toWebhosting Hub.222 * Updated Persian translation , thanks toW3Design.223 * Updated Chinese translation , thanks toLeo Newbiesup.224 * Updated Swedish translation , thanks toWilhelm 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. 225 233 226 234 = 2.2.19 = … … 236 244 * Disappearing settings now have a more apparent animation. 237 245 * 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 toPiero Luiz.239 * Updated French translation , thanks toRomain Sandri.246 * Added Brazilian Portuguese translation by Piero Luiz. 247 * Updated French translation by Romain Sandri. 240 248 241 249 = 2.2.17 = … … 270 278 * Slideshow can now wait for a slide to load before showing it. 271 279 * 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 toWicher Wiater.274 * Added Finnish translation .275 * Updated French translation , thanks toRomain Sandri.276 * Added Portuguese translation , thanks toFilipe Catraia.277 * Added Persian translation , thanks toW3Design.278 * Added Italian translation , thanks toTecnikgeek.279 * Added Japanese translation , thanks toMichihide 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. 280 288 281 289 = 2.2.11 = … … 284 292 * Fixed: Sites that don't support URL data weren't able to load a slideshow's stylesheet correctly. 285 293 * 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 toEli Segev.294 * Added Swedish translation by Åke Isacsson. 295 * Added Hebrew translation by Eli Segev. 288 296 289 297 = 2.2.10 = … … 331 339 * Live width calculations have been halved to improve performance. 332 340 * Default settings have been tuned to cater better to most users. 333 * Added Czech translation , thanks toEdhel.341 * Added Czech translation by Edhel. 334 342 335 343 = 2.2.1 = -
slideshow-jquery-image-gallery/trunk/slideshow.php
r1156839 r1226951 4 4 Plugin URI: http://wordpress.org/extend/plugins/slideshow-jquery-image-gallery/ 5 5 Description: The slideshow plugin is easily deployable on your website. Add any image that has already been uploaded to add to your slideshow, add text slides, or even add a video. Options and styles are customizable for every single slideshow on your website. 6 Version: 2.2.2 36 Version: 2.2.24 7 7 Requires at least: 3.5 8 8 Author: StefanBoonstra … … 23 23 { 24 24 /** @var string $version */ 25 static $version = '2.2.2 3';25 static $version = '2.2.24'; 26 26 27 27 /** -
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-s ession-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); ?>"> 2 2 3 3 <?php if(isset($settings['showLoadingIcon']) && $settings['showLoadingIcon'] === 'true'): ?> -
slideshow-jquery-image-gallery/trunk/views/SlideshowPluginShortcode/shortcode-inserter.php
r1156839 r1226951 1 1 <a 2 href="#TB_inline?width=450& amp;inlineId=insertSlideshowShortcode"2 href="#TB_inline?width=450&inlineId=insertSlideshowShortcode" 3 3 class="button thickbox" 4 4 title="<?php _e('Insert a Slideshow', 'slideshow-plugin'); ?>" 5 5 style="padding-left: .4em;" 6 6 > 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: ?>11 7 <img 12 8 src="<?php echo SlideshowPluginMain::getPluginUrl() . '/images/SlideshowPluginPostType/adminIcon.png'; ?>" … … 14 10 style="vertical-align: text-top;" 15 11 /> 16 <?php endif; ?>17 18 12 <?php _e('Insert Slideshow', 'slideshow-plugin'); ?> 19 13 </a> -
slideshow-jquery-image-gallery/trunk/views/SlideshowPluginSlideshowSlide/backend_attachment.php
r879367 r1226951 5 5 6 6 if (isset($attachment)): 7 8 $name = htmlspecialchars($name); 7 9 8 10 $title = $titleElementTagID = $description = $descriptionElementTagID = $url = $target = $alternativeText = ''; … … 47 49 if (isset($properties['alternativeText'])) 48 50 { 49 $alternativeText = $properties['alternativeText'];51 $alternativeText = htmlspecialchars($properties['alternativeText']); 50 52 } 51 53 else -
slideshow-jquery-image-gallery/trunk/views/SlideshowPluginSlideshowSlide/backend_text.php
r879367 r1226951 1 1 <?php 2 3 $name = htmlspecialchars($name); 2 4 3 5 $title = $description = $textColor = $color = $url = $target = ''; … … 29 31 if (isset($properties['textColor'])) 30 32 { 31 $textColor = $properties['textColor'];33 $textColor = htmlspecialchars($properties['textColor']); 32 34 } 33 35 34 36 if (isset($properties['color'])) 35 37 { 36 $color = $properties['color'];38 $color = htmlspecialchars($properties['color']); 37 39 } 38 40 39 41 if (isset($properties['url'])) 40 42 { 41 $url = $properties['url'];43 $url = htmlspecialchars($properties['url']); 42 44 } 43 45 -
slideshow-jquery-image-gallery/trunk/views/SlideshowPluginSlideshowSlide/backend_video.php
r879367 r1226951 1 1 <?php 2 3 $name = htmlspecialchars($name); 2 4 3 5 $videoId = ''; … … 6 8 if (isset($properties['videoId'])) 7 9 { 8 $videoId = $properties['videoId'];10 $videoId = htmlspecialchars($properties['videoId']); 9 11 } 10 12
Note: See TracChangeset
for help on using the changeset viewer.