Slideshow - Version 2.2.2

Version Description

  • Fixed: Float and size bugs caused by the maximum width element.
  • Fixed: PHP errors were showing in 'Delete slide' links.
  • Live width calculations have been halved to improve performance.
  • Default settings have been tuned to cater better to most users.
  • Added Czech translation by Edhel.
Download this release

Release Info

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

Code changes from version 2.2.1 to 2.2.2

Files changed (36) hide show
  1. classes/SlideshowPluginAjax.php +0 -1
  2. classes/SlideshowPluginPostType.php +27 -7
  3. classes/SlideshowPluginSlideInserter.php +0 -25
  4. classes/SlideshowPluginSlideshowSettingsHandler.php +2 -2
  5. js/SlideshowPlugin/slideshow.min.js +1 -1
  6. js/SlideshowPluginSlideInserter/slide-inserter.js +24 -52
  7. languages/slideshow-plugin-cs_CZ.mo +0 -0
  8. languages/slideshow-plugin-cs_CZ.po +786 -0
  9. languages/slideshow-plugin-es_ES.mo +0 -0
  10. languages/slideshow-plugin-es_ES.po +776 -778
  11. languages/slideshow-plugin-fr_FR.mo +0 -0
  12. languages/slideshow-plugin-fr_FR.po +775 -777
  13. languages/slideshow-plugin-nl_NL.mo +0 -0
  14. languages/slideshow-plugin-nl_NL.po +810 -806
  15. languages/slideshow-plugin-ru_RU.mo +0 -0
  16. languages/slideshow-plugin-ru_RU.po +768 -770
  17. languages/slideshow-plugin-zh_CN.mo +0 -0
  18. languages/slideshow-plugin-zh_CN.po +726 -728
  19. readme.txt +9 -11
  20. screenshot-1.png +0 -0
  21. screenshot-2.png +0 -0
  22. screenshot-3.png +0 -0
  23. screenshot-4.png +0 -0
  24. screenshot-5.png +0 -0
  25. screenshot-6.png +0 -0
  26. screenshot-7.png +0 -0
  27. screenshot-8.png +0 -0
  28. slideshow.php +2 -2
  29. style/SlideshowPlugin/functional.css +1 -1
  30. style/SlideshowPluginPostType/style.css +20 -0
  31. views/SlideshowPlugin/slideshow.php +17 -12
  32. views/SlideshowPluginSlideshowSlide/backend_attachment.php +9 -11
  33. views/SlideshowPluginSlideshowSlide/backend_templates.php +35 -28
  34. views/SlideshowPluginSlideshowSlide/backend_text.php +7 -8
  35. views/SlideshowPluginSlideshowSlide/backend_video.php +5 -6
  36. views/SlideshowPluginSlideshowSlide/frontend_attachment.php +2 -4
classes/SlideshowPluginAjax.php CHANGED
@@ -18,6 +18,5 @@ class SlideshowPluginAjax {
18
  */
19
  static function init() {
20
  add_action('wp_ajax_slideshow_slide_inserter_search_query', array('SlideshowPluginSlideInserter', 'printSearchResults'));
21
- add_action('wp_ajax_slideshow_delete_slide', array('SlideshowPluginSlideInserter', 'deleteSlide'));
22
  }
23
  }
18
  */
19
  static function init() {
20
  add_action('wp_ajax_slideshow_slide_inserter_search_query', array('SlideshowPluginSlideInserter', 'printSearchResults'));
 
21
  }
22
  }
classes/SlideshowPluginPostType.php CHANGED
@@ -20,8 +20,9 @@ class SlideshowPluginPostType {
20
  */
21
  static function init(){
22
  add_action('init', array(__CLASS__, 'registerSlideshowPostType'));
23
- add_action('wp_print_styles', array(__CLASS__, 'enqueue'));
24
- add_action('admin_enqueue_scripts', array(__CLASS__, 'enqueueAdmin'));
 
25
  add_action('save_post', array('SlideshowPluginSlideshowSettingsHandler', 'save'));
26
  }
27
 
@@ -85,9 +86,9 @@ class SlideshowPluginPostType {
85
  * TODO The functional stylesheet needs to move to the bottom of the page again, once the stylesheets of the plugin
86
  * TODO can be loaded beneath the functional stylesheet.
87
  *
88
- * @since 2.2.0
89
  */
90
- static function enqueue(){
91
 
92
  // Functional stylesheet
93
  wp_enqueue_style(
@@ -99,12 +100,31 @@ class SlideshowPluginPostType {
99
  }
100
 
101
  /**
102
- * Enqueues scripts and stylesheets for when the admin page
103
- * is a slideshow edit page.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
104
  *
105
  * @since 2.1.11
106
  */
107
- static function enqueueAdmin(){
108
 
109
  // Return when not on a slideshow edit page.
110
  $currentScreen = get_current_screen();
20
  */
21
  static function init(){
22
  add_action('init', array(__CLASS__, 'registerSlideshowPostType'));
23
+ add_action('wp_print_styles', array(__CLASS__, 'enqueueStyles'));
24
+ add_action('admin_print_styles', array(__CLASS__, 'enqueueAdminStyles'));
25
+ add_action('admin_enqueue_scripts', array(__CLASS__, 'enqueueAdminScripts'));
26
  add_action('save_post', array('SlideshowPluginSlideshowSettingsHandler', 'save'));
27
  }
28
 
86
  * TODO The functional stylesheet needs to move to the bottom of the page again, once the stylesheets of the plugin
87
  * TODO can be loaded beneath the functional stylesheet.
88
  *
89
+ * @since 2.2.1
90
  */
91
+ static function enqueueStyles(){
92
 
93
  // Functional stylesheet
94
  wp_enqueue_style(
100
  }
101
 
102
  /**
103
+ * Enqueues the admin stylesheets when one a slideshow edit page.
104
+ *
105
+ * @since 2.2.2
106
+ */
107
+ static function enqueueAdminStyles(){
108
+
109
+ // Return when not on a slideshow edit page.
110
+ $currentScreen = get_current_screen();
111
+ if($currentScreen->post_type != self::$postType)
112
+ return;
113
+
114
+ wp_enqueue_style(
115
+ 'slideshow-plugin-post-type-stylesheet',
116
+ SlideshowPluginMain::getPluginUrl() . '/style/' . __CLASS__ . '/style.css',
117
+ array(),
118
+ SlideshowPluginMain::$version
119
+ );
120
+ }
121
+
122
+ /**
123
+ * Enqueues scripts for when the admin page is a slideshow edit page.
124
  *
125
  * @since 2.1.11
126
  */
127
+ static function enqueueAdminScripts(){
128
 
129
  // Return when not on a slideshow edit page.
130
  $currentScreen = get_current_screen();
classes/SlideshowPluginSlideInserter.php CHANGED
@@ -70,31 +70,6 @@ class SlideshowPluginSlideInserter {
70
  return ob_get_clean();
71
  }
72
 
73
- /**
74
- * This function is registered in the SlideshowPluginAjax class
75
- * and deletes slides with a particular $_POST['slideId'].
76
- *
77
- * TODO: This function has become obsolete and slides are deleted by simply unsetting them and saving the slideshow.
78
- *
79
- * @since 2.0.0
80
- */
81
- static function deleteSlide(){
82
- if((!isset($_POST['slideId']) || !is_numeric($_POST['slideId'])) ||
83
- (!isset($_POST['postId']) || !is_numeric($_POST['postId'])))
84
- die;
85
-
86
- $search = 'slide_' . $_POST['slideId'] . '_';
87
- $settings = get_post_meta($_POST['postId'], 'settings', true);
88
- if(is_array($settings) && count($settings) > 0){
89
- foreach($settings as $key => $setting)
90
- if(strtolower(substr($key, 0, strlen($search))) == strtolower($search))
91
- unset($settings[$key]);
92
- }
93
- update_post_meta($_POST['postId'], 'settings', $settings);
94
-
95
- die;
96
- }
97
-
98
  /**
99
  * This function is registered in the SlideshowPluginAjax class
100
  * and prints the results from the search query.
70
  return ob_get_clean();
71
  }
72
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
73
  /**
74
  * This function is registered in the SlideshowPluginAjax class
75
  * and prints the results from the search query.
classes/SlideshowPluginSlideshowSettingsHandler.php CHANGED
@@ -382,12 +382,12 @@ class SlideshowPluginSlideshowSettingsHandler {
382
  'intervalSpeed' => '5',
383
  'slidesPerView' => '1',
384
  'maxWidth' => '0',
385
- 'preserveSlideshowDimensions' => 'true',
386
  'aspectRatio' => '3:1',
387
  'height' => '200',
388
  'stretchImages' => 'true',
389
  'showDescription' => 'true',
390
  'hideDescription' => 'true',
 
391
  'enableResponsiveness' => 'true',
392
  'play' => 'true',
393
  'loop' => 'true',
@@ -418,10 +418,10 @@ class SlideshowPluginSlideshowSettingsHandler {
418
  'intervalSpeed' => array('type' => 'text', 'default' => $data['intervalSpeed'], 'description' => __('Seconds between changing slides', 'slideshow-plugin'), 'group' => __('Animation', 'slideshow-plugin')),
419
  'slidesPerView' => array('type' => 'text', 'default' => $data['slidesPerView'], 'description' => __('Number of slides to fit into one slide', 'slideshow-plugin'), 'group' => __('Display', 'slideshow-plugin')),
420
  'maxWidth' => array('type' => 'text', 'default' => $data['maxWidth'], 'description' => __('Maximum width. When maximum width is 0, maximum width is ignored', 'slideshow-plugin'), 'group' => __('Display', 'slideshow-plugin')),
421
- 'preserveSlideshowDimensions' => array('type' => 'radio', 'default' => $data['preserveSlideshowDimensions'], 'description' => __('Shrink slideshow\'s height when width shrinks (Fixed height can be defined when setting this value to \'No\')', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'group' => __('Display', 'slideshow-plugin')),
422
  'aspectRatio' => array('type' => 'text', 'default' => $data['aspectRatio'], 'description' => sprintf('<a href="' . __('http://en.wikipedia.org/wiki/Aspect_ratio_(image)', 'slideshow-plugin') . '" title="' . __('More info', 'slideshow-plugin') . '" target="_blank">' . __('Proportional relationship%s between slideshow\'s width and height (width:height)', 'slideshow-plugin'), '</a>'), 'dependsOn' => array('settings[preserveSlideshowDimensions]', 'true'), 'group' => __('Display', 'slideshow-plugin')),
423
  'height' => array('type' => 'text', 'default' => $data['height'], 'description' => __('Slideshow\'s height', 'slideshow-plugin'), 'dependsOn' => array('settings[preserveSlideshowDimensions]', 'false'), 'group' => __('Display', 'slideshow-plugin')),
424
  'stretchImages' => array('type' => 'radio', 'default' => $data['stretchImages'], 'description' => __('Fit image into slide (Stretch image)', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'group' => __('Display', 'slideshow-plugin')),
 
425
  'enableResponsiveness' => array('type' => 'radio', 'default' => $data['enableResponsiveness'], 'description' => __('Enable responsiveness (Shrink slideshow\'s width when page\'s width shrinks)', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'dependsOn' => array('settings[showDescription]', 'true'), 'group' => __('Display', 'slideshow-plugin')),
426
  'showDescription' => array('type' => 'radio', 'default' => $data['showDescription'], 'description' => __('Show title and description', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'group' => __('Display', 'slideshow-plugin')),
427
  'hideDescription' => array('type' => 'radio', 'default' => $data['hideDescription'], 'description' => __('Hide description box, pop up when mouse hovers over', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'dependsOn' => array('settings[showDescription]', 'true'), 'group' => __('Display', 'slideshow-plugin')),
382
  'intervalSpeed' => '5',
383
  'slidesPerView' => '1',
384
  'maxWidth' => '0',
 
385
  'aspectRatio' => '3:1',
386
  'height' => '200',
387
  'stretchImages' => 'true',
388
  'showDescription' => 'true',
389
  'hideDescription' => 'true',
390
+ 'preserveSlideshowDimensions' => 'false',
391
  'enableResponsiveness' => 'true',
392
  'play' => 'true',
393
  'loop' => 'true',
418
  'intervalSpeed' => array('type' => 'text', 'default' => $data['intervalSpeed'], 'description' => __('Seconds between changing slides', 'slideshow-plugin'), 'group' => __('Animation', 'slideshow-plugin')),
419
  'slidesPerView' => array('type' => 'text', 'default' => $data['slidesPerView'], 'description' => __('Number of slides to fit into one slide', 'slideshow-plugin'), 'group' => __('Display', 'slideshow-plugin')),
420
  'maxWidth' => array('type' => 'text', 'default' => $data['maxWidth'], 'description' => __('Maximum width. When maximum width is 0, maximum width is ignored', 'slideshow-plugin'), 'group' => __('Display', 'slideshow-plugin')),
 
421
  'aspectRatio' => array('type' => 'text', 'default' => $data['aspectRatio'], 'description' => sprintf('<a href="' . __('http://en.wikipedia.org/wiki/Aspect_ratio_(image)', 'slideshow-plugin') . '" title="' . __('More info', 'slideshow-plugin') . '" target="_blank">' . __('Proportional relationship%s between slideshow\'s width and height (width:height)', 'slideshow-plugin'), '</a>'), 'dependsOn' => array('settings[preserveSlideshowDimensions]', 'true'), 'group' => __('Display', 'slideshow-plugin')),
422
  'height' => array('type' => 'text', 'default' => $data['height'], 'description' => __('Slideshow\'s height', 'slideshow-plugin'), 'dependsOn' => array('settings[preserveSlideshowDimensions]', 'false'), 'group' => __('Display', 'slideshow-plugin')),
423
  'stretchImages' => array('type' => 'radio', 'default' => $data['stretchImages'], 'description' => __('Fit image into slide (Stretch image)', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'group' => __('Display', 'slideshow-plugin')),
424
+ 'preserveSlideshowDimensions' => array('type' => 'radio', 'default' => $data['preserveSlideshowDimensions'], 'description' => __('Shrink slideshow\'s height when width shrinks', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'group' => __('Display', 'slideshow-plugin')),
425
  'enableResponsiveness' => array('type' => 'radio', 'default' => $data['enableResponsiveness'], 'description' => __('Enable responsiveness (Shrink slideshow\'s width when page\'s width shrinks)', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'dependsOn' => array('settings[showDescription]', 'true'), 'group' => __('Display', 'slideshow-plugin')),
426
  'showDescription' => array('type' => 'radio', 'default' => $data['showDescription'], 'description' => __('Show title and description', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'group' => __('Display', 'slideshow-plugin')),
427
  'hideDescription' => array('type' => 'radio', 'default' => $data['hideDescription'], 'description' => __('Hide description box, pop up when mouse hovers over', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'dependsOn' => array('settings[showDescription]', 'true'), 'group' => __('Display', 'slideshow-plugin')),
js/SlideshowPlugin/slideshow.min.js CHANGED
@@ -1 +1 @@
1
- jQuery.fn.slideshow_jquery_image_gallery_script=function(){var $=jQuery;var $container=$(this),$content=$container.find('.slideshow_content'),$views=$container.find('.slideshow_view'),$slides=$container.find('.slideshow_slide'),$descriptions=$container.find('.slideshow_description'),$controllers=$container.find('.slideshow_controllers'),$controlPanel=$container.find('.slideshow_controlPanel'),$togglePlayButton=$controlPanel.find('.slideshow_togglePlay'),$nextButton=$container.find('.slideshow_next'),$previousButton=$container.find('.slideshow_previous'),$pagination=$container.find('.slideshow_pagination');var $ID=getID();var $settings=window['SlideshowPluginSettings_'+$ID];$.each($settings,function(setting,value){if(value=='true')$settings[setting]=true;else if(value=='false')$settings[setting]=false});var $parentElement=$container.parent(),$viewData=[],$navigationActive=true,$interval='',$mouseEnterTimer='',$currentViewId=getNextViewId(),$currentWidth=0,$visibleViews=[$currentViewId],$youtubePlayerIds=[];init();function init(){recalculate(false);$.each($views,function(viewId,view){recalculateView(view);if(viewId!=$visibleViews[0])$(view).css('top',$container.outerHeight(true));$viewData[viewId]=[];$.each($(view).find('.slideshow_slide'),function(slideId,slide){$viewData[viewId][slideId]={'imageDimension':''}})});$container.show();$(window).load(function(){recalculateVisibleViews()});if($settings['enableResponsiveness']){$(window).resize(function(){recalculate()})}if(parseFloat($settings['intervalSpeed'])<parseFloat($settings['slideSpeed'])+0.1)$settings['intervalSpeed']=parseFloat($settings['slideSpeed'])+0.1;activateDescriptions();activateControlPanel();activateNavigationButtons();activatePagination();activatePauseOnHover();start()}function start(){if(!$settings['play'])return;$interval=setInterval(function(){animateTo(getNextViewId(),1)},$settings['intervalSpeed']*1000)}function stop(){clearInterval($interval);$interval=false}function animateTo(viewId,direction){if(videoIsPlaying()||viewId<0||viewId>=$views.length||viewId==$currentViewId)return;$navigationActive=false;if(direction==0||direction==undefined){if(viewId<$currentViewId)direction=-1;else direction=1}$visibleViews=[$currentViewId,viewId];var animation=$settings['animation'];var animations=['slide','slideRight','slideUp','slideDown','fade','directFade'];if(animation=='random')animation=animations[Math.floor(Math.random()*animations.length)];var animationOpposites={'slide':'slideRight','slideRight':'slide','slideUp':'slideDown','slideDown':'slideUp','fade':'fade','directFade':'directFade'};if(direction<0)animation=animationOpposites[animation];var currentView=$($views[$currentViewId]);var nextView=$($views[viewId]);currentView.stop(true,true);nextView.stop(true,true);recalculateVisibleViews();$currentViewId=viewId;$container.trigger('onSlideshowAnimate');switch(animation){case'slide':recalculateVisibleViews();nextView.css({top:0,left:$content.width()});currentView.animate({left:-currentView.outerWidth(true)},$settings['slideSpeed']*1000);nextView.animate({left:0},$settings['slideSpeed']*1000);setTimeout(function(){currentView.stop(true,true).css('top',$container.outerHeight(true))},$settings['slideSpeed']*1000);break;case'slideRight':nextView.css({top:0,left:-$content.width()});currentView.animate({left:currentView.outerWidth(true)},$settings['slideSpeed']*1000);nextView.animate({left:0},$settings['slideSpeed']*1000);setTimeout(function(){currentView.stop(true,true).css('top',$container.outerHeight(true))},$settings['slideSpeed']*1000);break;case'slideUp':nextView.css({top:$content.height(),left:0});currentView.animate({top:-currentView.outerHeight(true)},$settings['slideSpeed']*1000);nextView.animate({top:0},$settings['slideSpeed']*1000);setTimeout(function(){currentView.stop(true,true).css('top',$container.outerHeight(true))},$settings['slideSpeed']*1000);break;case'slideDown':nextView.css({top:-$content.height(),left:0});currentView.animate({top:currentView.outerHeight(true)},$settings['slideSpeed']*1000);nextView.animate({top:0},$settings['slideSpeed']*1000);setTimeout(function(){currentView.stop(true,true).css('top',$container.outerHeight(true))},$settings['slideSpeed']*1000);break;case'fade':nextView.css({top:0,left:0,display:'none'});currentView.fadeOut(($settings['slideSpeed']*1000)/2);setTimeout(function(){nextView.fadeIn(($settings['slideSpeed']*1000)/2);currentView.stop(true,true).css({top:$container.outerHeight(true),display:'block'})},($settings['slideSpeed']*1000)/2);break;case'directFade':nextView.css({top:0,left:0,'z-index':0,display:'none'});currentView.css({'z-index':1});nextView.fadeIn($settings['slideSpeed']*1000);currentView.fadeOut($settings['slideSpeed']*1000);setTimeout(function(){nextView.stop(true,true).css({'z-index':'auto'});currentView.stop(true,true).css({top:$container.outerHeight(true),display:'block','z-index':'auto'})},$settings['slideSpeed']*1000);break}setTimeout(function(){$visibleViews=[viewId]},$settings['slideSpeed']*1000);setTimeout(function(){$navigationActive=true},$settings['slideSpeed']*1000)}function recalculate(recalculateViews){var parentElement=$parentElement;for(var i=0;parentElement.width()<=0;i++){parentElement=parentElement.parent();if(i>50)break}if($currentWidth==parentElement.width())return;$currentWidth=parentElement.width();var width=parentElement.width()-($container.outerWidth(true)-$container.width());$container.css('width',Math.floor(width));$content.css('width',Math.floor(width)-($content.outerWidth(true)-$content.width()));if($settings['preserveSlideshowDimensions']){var height=(width*$settings['dimensionHeight'])/$settings['dimensionWidth'];$container.css('height',Math.floor(height));$content.css('height',Math.floor(height)-($content.outerHeight(true)-$content.height()))}else{$container.css('height',Math.floor($settings['height']));$content.css('height',Math.floor($settings['height']))}$views.each(function(viewId,view){if($.inArray(viewId,$visibleViews)<0)$(view).css('top',$container.outerHeight(true))});if(recalculateViews||recalculateViews==undefined){recalculateVisibleViews()}}function recalculateVisibleViews(){$.each($visibleViews,function(key,viewId){recalculateView(viewId)})}function recalculateView(viewId){view=$($views[viewId]);var slides=view.find('.slideshow_slide');if(slides.length<=0)return;var viewWidth=$content.width()-(view.outerWidth(true)-view.width());var viewHeight=$content.height()-(view.outerHeight(true)-view.height());var slideWidth=Math.floor(viewWidth/slides.length);var slideHeight=viewHeight;var spareWidth=viewWidth%slides.length;var totalWidth=0;$(slides[0]).css('margin-left',0);$(slides[slides.length-1]).css('margin-right',0);$.each(slides,function(slideId,slide){slide=$(slide);var outerWidth=slide.outerWidth(true)-slide.width();var outerHeight=slide.outerHeight(true)-slide.height();if(slideId==(slides.length-1))slide.width((slideWidth-outerWidth)+spareWidth);else slide.width(slideWidth-outerWidth);slide.height(slideHeight-outerHeight);if(slide.hasClass('slideshow_slide_text')){var anchor=slide.find('a');if(anchor.length<=0)return;var anchorWidth=slide.width()-(anchor.outerWidth(true)-anchor.width());var anchorHeight=slide.height()-(anchor.outerHeight(true)-anchor.height());anchor.css({'width':anchorWidth,'height':anchorHeight})}else if(slide.hasClass('slideshow_slide_image')){var image=slide.find('img');if(image.length<=0)return;var maxImageWidth=slide.width()-(image.outerWidth(true)-image.width());var maxImageHeight=slide.height()-(image.outerHeight(true)-image.height());if($settings['stretchImages']){image.css({width:maxImageWidth,height:maxImageHeight})}else if(image.width()>0&&image.height()>0){var imageDimension=$viewData[viewId][slideId]['imageDimension'];if(imageDimension=='')imageDimension=$viewData[viewId][slideId]['imageDimension']=image.outerWidth(true)/image.outerHeight(true);var slideDimension=slide.width()/slide.height();if(imageDimension>slideDimension){image.css({'margin':'0px'});image.css({width:maxImageWidth,height:Math.floor(maxImageWidth/imageDimension)})}else if(imageDimension<slideDimension){image.css({width:Math.floor(maxImageHeight*imageDimension),height:maxImageHeight,'margin':'auto','margin-right':'auto','display':'block'})}}}else if(slide.hasClass('slideshow_slide_video')){var videoElement=slide.find('object');if(videoElement.length>0){videoElement.attr({width:slide.width(),height:slide.height()})}else{var element=slide.find('div');element.attr('id','slideshow_slide_video_'+Math.floor(Math.random()*1000000)+'_'+element.text());swfobject.embedSWF('http://www.youtube.com/v/'+element.text()+'?version=3&enablejsapi=1&playerapiid='+element.attr('id'),element.attr('id'),jQuery(slide).width(),jQuery(slide).height(),'9',null,null,{allowScriptAccess:'always',allowFullScreen:true,wmode:'opaque'},{id:element.attr('id')});$youtubePlayerIds.push(element.attr('id'))}}totalWidth+=slide.outerWidth(true)});view.css({'width':viewWidth,'height':viewHeight})}function videoIsPlaying(){var videoIsPlaying=false;$.each($youtubePlayerIds,function(key,playerId){var state=-1;var player=document.getElementById(playerId);if(player!=null&&typeof player.getPlayerState==='function')state=player.getPlayerState();if(state==1||state==3)videoIsPlaying=true});return videoIsPlaying}function activateDescriptions(){if(!$settings['showDescription'])return;$.each($slides.find('.slideshow_description'),function(key,description){$(description).show();if($settings['hideDescription'])$(description).css({'position':'absolute','bottom':-$(description).outerHeight(true)})});if(!$settings['hideDescription'])return;$container.bind('onSlideshowAnimate',function(){if($visibleViews[1]==undefined)return;$.each($($views[$visibleViews[1]]).find('.slideshow_description'),function(key,description){$(description).css('bottom',-$(description).outerHeight(true))})});$slides.mouseenter(function(){$(this).find('.slideshow_description').stop(true,true).animate({'bottom':0},parseInt($settings['descriptionSpeed']*1000))});$slides.mouseleave(function(){$(this).find('.slideshow_description').stop(true,true).animate({'bottom':-$(this).outerHeight(true)},parseInt($settings['descriptionSpeed']*1000))})}function activateNavigationButtons(){if(!$settings['controllable'])return;$nextButton.click(function(){if(!$navigationActive)return;stop();animateTo(getNextViewId(),1);start()});$previousButton.click(function(){if(!$navigationActive)return;stop();animateTo(getPreviousViewId(),-1);start()});if($settings['hideNavigationButtons']){$container.mouseenter(function(){$nextButton.stop(true,true).fadeIn(100)});$container.mouseleave(function(){$nextButton.stop(true,true).fadeOut(500)});$container.mouseenter(function(){$previousButton.stop(true,true).fadeIn(100)});$container.mouseleave(function(){$previousButton.stop(true,true).fadeOut(500)})}else{$nextButton.show();$previousButton.show()}}function activateControlPanel(){if(!$settings['controlPanel'])return;if($settings['play'])$togglePlayButton.attr('class','slideshow_pause');else $togglePlayButton.attr('class','slideshow_play');$togglePlayButton.click(function(){if($settings['play']){$settings['play']=false;$(this).attr('class','slideshow_play');stop()}else{$settings['play']=true;$(this).attr('class','slideshow_pause');start()}});if($settings['hideControlPanel']){$container.mouseenter(function(){$controlPanel.stop(true,true).fadeIn(100)});$container.mouseleave(function(){$controlPanel.stop(true,true).fadeOut(500)})}else{$controlPanel.show()}}function activatePagination(){if(!$settings['showPagination'])return;var ul=$pagination.find('ul');ul.html('');$views.each(function(key,view){var currentView='';if(key==$currentViewId)currentView='slideshow_currentView';ul.append('<li class="slideshow_transparent '+currentView+'">'+'<span style="display: none;">'+key+'</span>'+'</li>')});$pagination.find('li').click(function(){if(!$navigationActive)return;var viewId=$(this).find('span').text();if(viewId==''||viewId==undefined)return;stop();animateTo(parseInt(viewId),0);start()});$container.bind('onSlideshowAnimate',function(){var bullets=$pagination.find('li');bullets.each(function(key,bullet){$(bullet).removeClass('slideshow_currentView')});$(bullets[$currentViewId]).addClass('slideshow_currentView')});if($settings['hidePagination']){$container.mouseenter(function(){$pagination.stop(true,true).fadeIn(100)});$container.mouseleave(function(){$pagination.stop(true,true).fadeOut(500)})}else{$pagination.show()}}function activatePauseOnHover(){if(!$settings['pauseOnHover'])return;$container.mouseenter(function(){clearTimeout($mouseEnterTimer);$mouseEnterTimer=setTimeout(function(){stop()},500)});$container.mouseleave(function(){clearTimeout($mouseEnterTimer);if($interval===false)start()})}function getNextViewId(){if($settings['random']){var oldViewId=viewId;viewId=Math.floor(Math.random()*$views.length);if(viewId!=oldViewId)return viewId}var viewId=$currentViewId;if(viewId==undefined)return 0;if(viewId>=$views.length-1){if($settings['loop'])return viewId=0;else return $currentViewId}return viewId+=1}function getPreviousViewId(){var viewId=$currentViewId;if(viewId==undefined)viewId=0;if($settings['random']){var oldViewId=viewId;viewId=Math.floor(Math.random()*$views.length);if(viewId!=oldViewId)return viewId}if(viewId<=0){if($settings['loop'])return viewId=$views.length-1;else return $currentViewId}return viewId-=1}function getID(){var splitClasses=$container.attr('class').split('_');return splitClasses[splitClasses.length-1]}};jQuery(document).ready(function(){jQuery.each(jQuery('.slideshow_container'),function(key,slideshow){jQuery(slideshow).slideshow_jquery_image_gallery_script()})});
1
+ jQuery.fn.slideshow_jquery_image_gallery_script=function(){var $=jQuery;var $container=$(this),$content=$container.find('.slideshow_content'),$views=$container.find('.slideshow_view'),$slides=$container.find('.slideshow_slide'),$controlPanel=$container.find('.slideshow_controlPanel'),$togglePlayButton=$controlPanel.find('.slideshow_togglePlay'),$nextButton=$container.find('.slideshow_next'),$previousButton=$container.find('.slideshow_previous'),$pagination=$container.find('.slideshow_pagination');var $ID=getID();var $settings=window['SlideshowPluginSettings_'+$ID];$.each($settings,function(setting,value){if(value=='true')$settings[setting]=true;else if(value=='false')$settings[setting]=false});var $parentElement=$container.parent(),$viewData=[],$navigationActive=true,$interval='',$mouseEnterTimer='',$currentViewId=getNextViewId(),$currentWidth=0,$visibleViews=[$currentViewId],$youtubePlayerIds=[];init();function init(){recalculate(false);$.each($views,function(viewId,view){recalculateView(view);if(viewId!=$visibleViews[0])$(view).css('top',$container.outerHeight(true));$viewData[viewId]=[];$.each($(view).find('.slideshow_slide'),function(slideId,slide){$viewData[viewId][slideId]={'imageDimension':''}})});$content.show();$(window).load(function(){recalculateVisibleViews()});if($settings['enableResponsiveness']){$(window).resize(function(){recalculate()})}if(parseFloat($settings['intervalSpeed'])<parseFloat($settings['slideSpeed'])+0.1)$settings['intervalSpeed']=parseFloat($settings['slideSpeed'])+0.1;activateDescriptions();activateControlPanel();activateNavigationButtons();activatePagination();activatePauseOnHover();start()}function start(){if(!$settings['play'])return;$interval=setInterval(function(){animateTo(getNextViewId(),1)},$settings['intervalSpeed']*1000)}function stop(){clearInterval($interval);$interval=false}function animateTo(viewId,direction){if(videoIsPlaying()||viewId<0||viewId>=$views.length||viewId==$currentViewId)return;$navigationActive=false;if(direction==0||direction==undefined){if(viewId<$currentViewId)direction=-1;else direction=1}$visibleViews=[$currentViewId,viewId];var animation=$settings['animation'];var animations=['slide','slideRight','slideUp','slideDown','fade','directFade'];if(animation=='random')animation=animations[Math.floor(Math.random()*animations.length)];var animationOpposites={'slide':'slideRight','slideRight':'slide','slideUp':'slideDown','slideDown':'slideUp','fade':'fade','directFade':'directFade'};if(direction<0)animation=animationOpposites[animation];var currentView=$($views[$currentViewId]);var nextView=$($views[viewId]);currentView.stop(true,true);nextView.stop(true,true);recalculateVisibleViews();$currentViewId=viewId;$container.trigger('onSlideshowAnimate');switch(animation){case'slide':recalculateVisibleViews();nextView.css({top:0,left:$content.width()});currentView.animate({left:-currentView.outerWidth(true)},$settings['slideSpeed']*1000);nextView.animate({left:0},$settings['slideSpeed']*1000);setTimeout(function(){currentView.stop(true,true).css('top',$container.outerHeight(true))},$settings['slideSpeed']*1000);break;case'slideRight':nextView.css({top:0,left:-$content.width()});currentView.animate({left:currentView.outerWidth(true)},$settings['slideSpeed']*1000);nextView.animate({left:0},$settings['slideSpeed']*1000);setTimeout(function(){currentView.stop(true,true).css('top',$container.outerHeight(true))},$settings['slideSpeed']*1000);break;case'slideUp':nextView.css({top:$content.height(),left:0});currentView.animate({top:-currentView.outerHeight(true)},$settings['slideSpeed']*1000);nextView.animate({top:0},$settings['slideSpeed']*1000);setTimeout(function(){currentView.stop(true,true).css('top',$container.outerHeight(true))},$settings['slideSpeed']*1000);break;case'slideDown':nextView.css({top:-$content.height(),left:0});currentView.animate({top:currentView.outerHeight(true)},$settings['slideSpeed']*1000);nextView.animate({top:0},$settings['slideSpeed']*1000);setTimeout(function(){currentView.stop(true,true).css('top',$container.outerHeight(true))},$settings['slideSpeed']*1000);break;case'fade':nextView.css({top:0,left:0,display:'none'});currentView.fadeOut(($settings['slideSpeed']*1000)/2);setTimeout(function(){nextView.fadeIn(($settings['slideSpeed']*1000)/2);currentView.stop(true,true).css({top:$container.outerHeight(true),display:'block'})},($settings['slideSpeed']*1000)/2);break;case'directFade':nextView.css({top:0,left:0,'z-index':0,display:'none'});currentView.css({'z-index':1});nextView.fadeIn($settings['slideSpeed']*1000);currentView.fadeOut($settings['slideSpeed']*1000);setTimeout(function(){nextView.stop(true,true).css({'z-index':'auto'});currentView.stop(true,true).css({top:$container.outerHeight(true),display:'block','z-index':'auto'})},$settings['slideSpeed']*1000);break}setTimeout(function(){$visibleViews=[viewId]},$settings['slideSpeed']*1000);setTimeout(function(){$navigationActive=true},$settings['slideSpeed']*1000)}function recalculate(recalculateViews){var parentElement=$parentElement;for(var i=0;parentElement.width()<=0;i++){parentElement=parentElement.parent();if(i>50)break}if($currentWidth==parentElement.width())return;$currentWidth=parentElement.width();var width=parentElement.width()-($container.outerWidth(true)-$container.width());if($settings['maxWidth']>0&&$settings['maxWidth']<width)width=$settings['maxWidth'];$container.css('width',Math.floor(width));$content.css('width',Math.floor(width)-($content.outerWidth(true)-$content.width()));if($settings['preserveSlideshowDimensions']){var height=(width*$settings['dimensionHeight'])/$settings['dimensionWidth'];$container.css('height',Math.floor(height));$content.css('height',Math.floor(height)-($content.outerHeight(true)-$content.height()))}else{$container.css('height',Math.floor($settings['height']));$content.css('height',Math.floor($settings['height']))}$views.each(function(viewId,view){if($.inArray(viewId,$visibleViews)<0)$(view).css('top',$container.outerHeight(true))});if(recalculateViews||recalculateViews==undefined){recalculateVisibleViews()}}function recalculateVisibleViews(){$.each($visibleViews,function(key,viewId){recalculateView(viewId)})}function recalculateView(viewId){view=$($views[viewId]);if($content.width()==view.outerWidth(true))return;var slides=view.find('.slideshow_slide');if(slides.length<=0)return;var viewWidth=$content.width()-(view.outerWidth(true)-view.width());var viewHeight=$content.height()-(view.outerHeight(true)-view.height());var slideWidth=Math.floor(viewWidth/slides.length);var slideHeight=viewHeight;var spareWidth=viewWidth%slides.length;var totalWidth=0;$(slides[0]).css('margin-left',0);$(slides[slides.length-1]).css('margin-right',0);$.each(slides,function(slideId,slide){slide=$(slide);var outerWidth=slide.outerWidth(true)-slide.width();var outerHeight=slide.outerHeight(true)-slide.height();if(slideId==(slides.length-1))slide.width((slideWidth-outerWidth)+spareWidth);else slide.width(slideWidth-outerWidth);slide.height(slideHeight-outerHeight);if(slide.hasClass('slideshow_slide_text')){var anchor=slide.find('a');if(anchor.length<=0)return;var anchorWidth=slide.width()-(anchor.outerWidth(true)-anchor.width());var anchorHeight=slide.height()-(anchor.outerHeight(true)-anchor.height());anchor.css({'width':anchorWidth,'height':anchorHeight})}else if(slide.hasClass('slideshow_slide_image')){var image=slide.find('img');if(image.length<=0)return;var maxImageWidth=slide.width()-(image.outerWidth(true)-image.width());var maxImageHeight=slide.height()-(image.outerHeight(true)-image.height());if($settings['stretchImages']){image.css({width:maxImageWidth,height:maxImageHeight})}else if(image.width()>0&&image.height()>0){var imageDimension=$viewData[viewId][slideId]['imageDimension'];if(imageDimension=='')imageDimension=$viewData[viewId][slideId]['imageDimension']=image.outerWidth(true)/image.outerHeight(true);var slideDimension=slide.width()/slide.height();if(imageDimension>slideDimension){image.css({'margin':'0px'});image.css({width:maxImageWidth,height:Math.floor(maxImageWidth/imageDimension)})}else if(imageDimension<slideDimension){image.css({width:Math.floor(maxImageHeight*imageDimension),height:maxImageHeight,'margin':'auto','margin-right':'auto','display':'block'})}}}else if(slide.hasClass('slideshow_slide_video')){var videoElement=slide.find('object');if(videoElement.length>0){videoElement.attr({width:slide.width(),height:slide.height()})}else{var element=slide.find('div');element.attr('id','slideshow_slide_video_'+Math.floor(Math.random()*1000000)+'_'+element.text());swfobject.embedSWF('http://www.youtube.com/v/'+element.text()+'?version=3&enablejsapi=1&playerapiid='+element.attr('id'),element.attr('id'),jQuery(slide).width(),jQuery(slide).height(),'9',null,null,{allowScriptAccess:'always',allowFullScreen:true,wmode:'opaque'},{id:element.attr('id')});$youtubePlayerIds.push(element.attr('id'))}}totalWidth+=slide.outerWidth(true)});view.css({'width':viewWidth,'height':viewHeight})}function videoIsPlaying(){var videoIsPlaying=false;$.each($youtubePlayerIds,function(key,playerId){var state=-1;var player=document.getElementById(playerId);if(player!=null&&typeof player.getPlayerState==='function')state=player.getPlayerState();if(state==1||state==3)videoIsPlaying=true});return videoIsPlaying}function activateDescriptions(){if(!$settings['showDescription'])return;$.each($slides.find('.slideshow_description'),function(key,description){$(description).show();if($settings['hideDescription'])$(description).css({'position':'absolute','bottom':-$(description).outerHeight(true)})});if(!$settings['hideDescription'])return;$container.bind('onSlideshowAnimate',function(){if($visibleViews[1]==undefined)return;$.each($($views[$visibleViews[1]]).find('.slideshow_description'),function(key,description){$(description).css('bottom',-$(description).outerHeight(true))})});$slides.mouseenter(function(){$(this).find('.slideshow_description').stop(true,true).animate({'bottom':0},parseInt($settings['descriptionSpeed']*1000))});$slides.mouseleave(function(){$(this).find('.slideshow_description').stop(true,true).animate({'bottom':-$(this).outerHeight(true)},parseInt($settings['descriptionSpeed']*1000))})}function activateNavigationButtons(){if(!$settings['controllable'])return;$nextButton.click(function(){if(!$navigationActive)return;stop();animateTo(getNextViewId(),1);start()});$previousButton.click(function(){if(!$navigationActive)return;stop();animateTo(getPreviousViewId(),-1);start()});if($settings['hideNavigationButtons']){$container.mouseenter(function(){$nextButton.stop(true,true).fadeIn(100)});$container.mouseleave(function(){$nextButton.stop(true,true).fadeOut(500)});$container.mouseenter(function(){$previousButton.stop(true,true).fadeIn(100)});$container.mouseleave(function(){$previousButton.stop(true,true).fadeOut(500)})}else{$nextButton.show();$previousButton.show()}}function activateControlPanel(){if(!$settings['controlPanel'])return;if($settings['play'])$togglePlayButton.attr('class','slideshow_pause');else $togglePlayButton.attr('class','slideshow_play');$togglePlayButton.click(function(){if($settings['play']){$settings['play']=false;$(this).attr('class','slideshow_play');stop()}else{$settings['play']=true;$(this).attr('class','slideshow_pause');start()}});if($settings['hideControlPanel']){$container.mouseenter(function(){$controlPanel.stop(true,true).fadeIn(100)});$container.mouseleave(function(){$controlPanel.stop(true,true).fadeOut(500)})}else{$controlPanel.show()}}function activatePagination(){if(!$settings['showPagination'])return;var ul=$pagination.find('ul');ul.html('');$views.each(function(key,view){var currentView='';if(key==$currentViewId)currentView='slideshow_currentView';ul.append('<li class="slideshow_transparent '+currentView+'">'+'<span style="display: none;">'+key+'</span>'+'</li>')});$pagination.find('li').click(function(){if(!$navigationActive)return;var viewId=$(this).find('span').text();if(viewId==''||viewId==undefined)return;stop();animateTo(parseInt(viewId),0);start()});$container.bind('onSlideshowAnimate',function(){var bullets=$pagination.find('li');bullets.each(function(key,bullet){$(bullet).removeClass('slideshow_currentView')});$(bullets[$currentViewId]).addClass('slideshow_currentView')});if($settings['hidePagination']){$container.mouseenter(function(){$pagination.stop(true,true).fadeIn(100)});$container.mouseleave(function(){$pagination.stop(true,true).fadeOut(500)})}else{$pagination.show()}}function activatePauseOnHover(){if(!$settings['pauseOnHover'])return;$container.mouseenter(function(){clearTimeout($mouseEnterTimer);$mouseEnterTimer=setTimeout(function(){stop()},500)});$container.mouseleave(function(){clearTimeout($mouseEnterTimer);if($interval===false)start()})}function getNextViewId(){if($settings['random']){var oldViewId=viewId;viewId=Math.floor(Math.random()*$views.length);if(viewId!=oldViewId)return viewId}var viewId=$currentViewId;if(viewId==undefined)return 0;if(viewId>=$views.length-1){if($settings['loop'])return viewId=0;else return $currentViewId}return viewId+=1}function getPreviousViewId(){var viewId=$currentViewId;if(viewId==undefined)viewId=0;if($settings['random']){var oldViewId=viewId;viewId=Math.floor(Math.random()*$views.length);if(viewId!=oldViewId)return viewId}if(viewId<=0){if($settings['loop'])return viewId=$views.length-1;else return $currentViewId}return viewId-=1}function getID(){var splitClasses=$container.attr('class').split('_');return splitClasses[splitClasses.length-1]}};jQuery(document).ready(function(){jQuery.each(jQuery('.slideshow_container'),function(key,slideshow){jQuery(slideshow).slideshow_jquery_image_gallery_script()})});
js/SlideshowPluginSlideInserter/slide-inserter.js CHANGED
@@ -82,45 +82,32 @@ jQuery(document).ready(function(){
82
  });
83
 
84
  /**
85
- * Ajax deletes a slide from the slides list and from the database
86
  */
87
  jQuery('.slideshow-delete-slide').click(function(){
 
 
 
 
 
 
 
 
 
 
 
88
  var confirmMessage = 'Are you sure you want to delete this slide?';
89
  if(typeof SlideInserterTranslations !== undefined)
90
  confirmMessage = SlideInserterTranslations.confirmMessage;
91
 
 
92
  var deleteSlide = confirm(confirmMessage);
93
  if(!deleteSlide)
94
  return;
95
 
96
- // Get postId from url
97
- var postId = -1;
98
- jQuery.each(location.search.replace('?', '').split('&'), function(key, value){
99
- var splitValue = value.split('=');
100
- if(splitValue[0] == 'post')
101
- postId = splitValue[1];
102
- });
103
-
104
- // Get slideId
105
- var slideId = jQuery(this).find('span').attr('class');
106
-
107
- // Exit if no slideId is found
108
- if(postId == -1 || slideId == 'undefined')
109
- return;
110
-
111
  // Remove slide from DOM
112
- jQuery(this).parent().remove();
113
-
114
- // Remove slide by AJAX.
115
- jQuery.post(
116
- ajaxurl,
117
- {
118
- action: 'slideshow_delete_slide',
119
- postId: postId,
120
- slideId: slideId
121
- }
122
- );
123
- });
124
 
125
  /**
126
  * Loop through list items, setting slide orders
@@ -229,15 +216,10 @@ jQuery(document).ready(function(){
229
  imageSlide.find('.urlTarget').attr('name', 'slides[0][urlTarget]');
230
  imageSlide.find('.type').attr('name', 'slides[0][type]');
231
  imageSlide.find('.postId').attr('name', 'slides[0][postId]');
232
- imageSlide.find('.slide_order').attr('name', 'slides[0][order]');
233
-
234
- // Register delete link (only needs to delete from DOM)
235
- imageSlide.find('.slideshow-delete-new-slide').click(function(){
236
- var deleteSlide = confirm('Are you sure you want to delete this slide?');
237
- if(!deleteSlide)
238
- return;
239
 
240
- jQuery(this).closest('li').remove();
 
 
241
  });
242
 
243
  // Put slide in the sortables list.
@@ -263,15 +245,10 @@ jQuery(document).ready(function(){
263
  textSlide.find('.url').attr('name', 'slides[0][url]');
264
  textSlide.find('.urlTarget').attr('name', 'slides[0][urlTarget]');
265
  textSlide.find('.type').attr('name', 'slides[0][type]');
266
- textSlide.find('.slide_order').attr('name', 'slides[0][order]');
267
 
268
- // Register delete link (only needs to delete from DOM)
269
- textSlide.find('.slideshow-delete-new-slide').click(function(){
270
- var deleteSlide = confirm('Are you sure you want to delete this slide?');
271
- if(!deleteSlide)
272
- return;
273
-
274
- jQuery(this).closest('li').remove();
275
  });
276
 
277
  // Put slide in the sortables list.
@@ -292,15 +269,10 @@ jQuery(document).ready(function(){
292
  // Set names to be saved to the database
293
  videoSlide.find('.videoId').attr('name', 'slides[0][videoId]');
294
  videoSlide.find('.type').attr('name', 'slides[0][type]');
295
- videoSlide.find('.slide_order').attr('name', 'slides[0][order]');
296
-
297
- // Register delete link (only needs to delete from DOM)
298
- videoSlide.find('.slideshow-delete-new-slide').click(function(){
299
- var deleteSlide = confirm('Are you sure you want to delete this slide?');
300
- if(!deleteSlide)
301
- return;
302
 
303
- jQuery(this).closest('li').remove();
 
 
304
  });
305
 
306
  // Put slide in the sortables list.
82
  });
83
 
84
  /**
85
+ * Call slideshowDeleteSlide on click
86
  */
87
  jQuery('.slideshow-delete-slide').click(function(){
88
+ slideshowDeleteSlide(jQuery(this).closest('li'));
89
+ });
90
+
91
+ /**
92
+ * Deletes slide from DOM
93
+ *
94
+ * @param slide
95
+ */
96
+ function slideshowDeleteSlide(slide){
97
+
98
+ // Deletion message
99
  var confirmMessage = 'Are you sure you want to delete this slide?';
100
  if(typeof SlideInserterTranslations !== undefined)
101
  confirmMessage = SlideInserterTranslations.confirmMessage;
102
 
103
+ // Confirm deletion
104
  var deleteSlide = confirm(confirmMessage);
105
  if(!deleteSlide)
106
  return;
107
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
108
  // Remove slide from DOM
109
+ slide.remove();
110
+ }
 
 
 
 
 
 
 
 
 
 
111
 
112
  /**
113
  * Loop through list items, setting slide orders
216
  imageSlide.find('.urlTarget').attr('name', 'slides[0][urlTarget]');
217
  imageSlide.find('.type').attr('name', 'slides[0][type]');
218
  imageSlide.find('.postId').attr('name', 'slides[0][postId]');
 
 
 
 
 
 
 
219
 
220
+ // Register delete link
221
+ imageSlide.find('.slideshow-delete-slide').click(function(){
222
+ slideshowDeleteSlide(jQuery(this).closest('li'));
223
  });
224
 
225
  // Put slide in the sortables list.
245
  textSlide.find('.url').attr('name', 'slides[0][url]');
246
  textSlide.find('.urlTarget').attr('name', 'slides[0][urlTarget]');
247
  textSlide.find('.type').attr('name', 'slides[0][type]');
 
248
 
249
+ // Register delete link
250
+ textSlide.find('.slideshow-delete-slide').click(function(){
251
+ slideshowDeleteSlide(jQuery(this).closest('li'));
 
 
 
 
252
  });
253
 
254
  // Put slide in the sortables list.
269
  // Set names to be saved to the database
270
  videoSlide.find('.videoId').attr('name', 'slides[0][videoId]');
271
  videoSlide.find('.type').attr('name', 'slides[0][type]');
 
 
 
 
 
 
 
272
 
273
+ // Register delete link
274
+ videoSlide.find('.slideshow-delete-slide').click(function(){
275
+ slideshowDeleteSlide(jQuery(this).closest('li'));
276
  });
277
 
278
  // Put slide in the sortables list.
languages/slideshow-plugin-cs_CZ.mo ADDED
Binary file
languages/slideshow-plugin-cs_CZ.po ADDED
@@ -0,0 +1,786 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Slideshow Plugin\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-02-04 12:14+0100\n"
6
+ "PO-Revision-Date: 2013-02-04 12:18+0100\n"
7
+ "Last-Translator: \n"
8
+ "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
+ "Language: cz_CZ\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-KeywordsList: _e;__\n"
14
+ "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.5.5\n"
16
+ "X-Poedit-SourceCharset: UTF-8\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: classes/SlideshowPluginGeneralSettings.php:64
20
+ #: classes/SlideshowPluginGeneralSettings.php:65
21
+ msgid "General Settings"
22
+ msgstr "Obecné nastavení"
23
+
24
+ #: classes/SlideshowPluginGeneralSettings.php:142
25
+ msgid "New"
26
+ msgstr "Nový"
27
+
28
+ #: classes/SlideshowPluginGeneralSettings.php:143
29
+ msgid "Are you sure you want to delete this custom style?"
30
+ msgstr "Víte jistě, že chcete tuto přizpůsobenou šablonu stylů smazat?"
31
+
32
+ #: classes/SlideshowPluginGeneralSettings.php:162
33
+ #: classes/SlideshowPluginInstaller.php:388
34
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:6
35
+ msgid "Light"
36
+ msgstr "Světlý"
37
+
38
+ #: classes/SlideshowPluginGeneralSettings.php:163
39
+ #: classes/SlideshowPluginInstaller.php:388
40
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:7
41
+ msgid "Dark"
42
+ msgstr "Tmavý"
43
+
44
+ #: classes/SlideshowPluginGeneralSettings.php:267
45
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:49
46
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:131
47
+ msgid "Untitled"
48
+ msgstr "Beze jména"
49
+
50
+ #: classes/SlideshowPluginInstaller.php:385
51
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:374
52
+ msgid "Yes"
53
+ msgstr "Ano"
54
+
55
+ #: classes/SlideshowPluginInstaller.php:386
56
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:375
57
+ msgid "No"
58
+ msgstr "Ne"
59
+
60
+ #: classes/SlideshowPluginInstaller.php:388
61
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:473
62
+ msgid "The style used for this slideshow"
63
+ msgstr "Šablona stylů použitá pro tuto prezentaci"
64
+
65
+ #: classes/SlideshowPluginInstaller.php:388
66
+ msgid "Custom"
67
+ msgstr "Přizpůsobit"
68
+
69
+ #: classes/SlideshowPluginInstaller.php:389
70
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:114
71
+ msgid "Custom style editor"
72
+ msgstr "Přizpůsobení šablony stylů"
73
+
74
+ #: classes/SlideshowPluginInstaller.php:390
75
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
76
+ msgid "Animation used for transition between slides"
77
+ msgstr "Animace použitá pro přechod mezi listy"
78
+
79
+ #: classes/SlideshowPluginInstaller.php:390
80
+ msgid "Slide"
81
+ msgstr "List"
82
+
83
+ #: classes/SlideshowPluginInstaller.php:390
84
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
85
+ msgid "Fade"
86
+ msgstr "Prolnout"
87
+
88
+ #: classes/SlideshowPluginInstaller.php:390
89
+ #: classes/SlideshowPluginInstaller.php:391
90
+ #: classes/SlideshowPluginInstaller.php:392
91
+ #: classes/SlideshowPluginInstaller.php:393
92
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
93
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
94
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:417
95
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:418
96
+ msgid "Animation"
97
+ msgstr "Nastavení animace"
98
+
99
+ #: classes/SlideshowPluginInstaller.php:391
100
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
101
+ msgid "Number of seconds the slide takes to slide in"
102
+ msgstr "Kolik sekund zabere listu, než se přisune"
103
+
104
+ #: classes/SlideshowPluginInstaller.php:392
105
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:417
106
+ msgid "Number of seconds the description takes to slide in"
107
+ msgstr "Kolik sekund zabere popisu, než se přisune"
108
+
109
+ #: classes/SlideshowPluginInstaller.php:393
110
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:418
111
+ msgid "Seconds between changing slides"
112
+ msgstr "Kolik sekund mezi tím, než se vymění listy"
113
+
114
+ #: classes/SlideshowPluginInstaller.php:394
115
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
116
+ msgid "Number of slides to fit into one slide"
117
+ msgstr "Počet listů, kolik se jich vejde do jednoho listu"
118
+
119
+ #: classes/SlideshowPluginInstaller.php:394
120
+ #: classes/SlideshowPluginInstaller.php:395
121
+ #: classes/SlideshowPluginInstaller.php:396
122
+ #: classes/SlideshowPluginInstaller.php:397
123
+ #: classes/SlideshowPluginInstaller.php:398
124
+ #: classes/SlideshowPluginInstaller.php:399
125
+ #: classes/SlideshowPluginInstaller.php:400
126
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
127
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:420
128
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
129
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:422
130
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
131
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:424
132
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
133
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:426
134
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:427
135
+ msgid "Display"
136
+ msgstr "Nastavení zobrazení"
137
+
138
+ #: classes/SlideshowPluginInstaller.php:395
139
+ msgid "Width of the slideshow, set to parent&#39;s width on 0"
140
+ msgstr ""
141
+ "Šířka zobrazení, nastaveno na šířku rodičovského objektu, pokud je zadáno 0"
142
+
143
+ #: classes/SlideshowPluginInstaller.php:396
144
+ msgid "Height of the slideshow"
145
+ msgstr "Výška prezentace"
146
+
147
+ #: classes/SlideshowPluginInstaller.php:397
148
+ msgid "Height of the description boxes"
149
+ msgstr "Výška bloku s popisem"
150
+
151
+ #: classes/SlideshowPluginInstaller.php:398
152
+ msgid "Fit image into slide (stretching it)"
153
+ msgstr "Přizpůsobit obrázek do listů (roztáhne se)"
154
+
155
+ #: classes/SlideshowPluginInstaller.php:399
156
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:426
157
+ msgid "Show title and description"
158
+ msgstr "Zobrazit název a popis"
159
+
160
+ #: classes/SlideshowPluginInstaller.php:400
161
+ msgid "Hide description box, it will pop up when a mouse hovers over the slide"
162
+ msgstr "Skrýt blok s popisem, vyskočí, pokud myš najede na list"
163
+
164
+ #: classes/SlideshowPluginInstaller.php:401
165
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
166
+ msgid "Automatically slide to the next slide"
167
+ msgstr "Automaticky posouvat na další list"
168
+
169
+ #: classes/SlideshowPluginInstaller.php:401
170
+ #: classes/SlideshowPluginInstaller.php:402
171
+ #: classes/SlideshowPluginInstaller.php:403
172
+ #: classes/SlideshowPluginInstaller.php:404
173
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
174
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:429
175
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:430
176
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:431
177
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:432
178
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:433
179
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:434
180
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:435
181
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:436
182
+ msgid "Control"
183
+ msgstr "Nastavení ovládání"
184
+
185
+ #: classes/SlideshowPluginInstaller.php:402
186
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:429
187
+ msgid "Return to the beginning of the slideshow after last slide"
188
+ msgstr "Návrat na začátek prezentace po posledním listu"
189
+
190
+ #: classes/SlideshowPluginInstaller.php:403
191
+ msgid "Activate buttons (so the user can scroll through the slides)"
192
+ msgstr "Aktivovat tlačítka (takže uživatel může procházet mezi listy)"
193
+
194
+ #: classes/SlideshowPluginInstaller.php:404
195
+ msgid "Show control panel (play and pause button)"
196
+ msgstr "Zobrazit ovládací panel (tlačítka přehrát a zastavit)"
197
+
198
+ #: classes/SlideshowPluginPostType.php:39
199
+ msgid "Slideshows"
200
+ msgstr "Prezentace"
201
+
202
+ #: classes/SlideshowPluginPostType.php:40
203
+ #: views/SlideshowPluginWidget/form.php:7
204
+ msgid "Slideshow"
205
+ msgstr "Prezentace"
206
+
207
+ #: classes/SlideshowPluginPostType.php:41
208
+ msgid "Add New Slideshow"
209
+ msgstr "Přidat novou prezentaci"
210
+
211
+ #: classes/SlideshowPluginPostType.php:42
212
+ msgid "Edit slideshow"
213
+ msgstr "Upravit prezentaci"
214
+
215
+ #: classes/SlideshowPluginPostType.php:43
216
+ msgid "New slideshow"
217
+ msgstr "Nová prezentace"
218
+
219
+ #: classes/SlideshowPluginPostType.php:44
220
+ msgid "View slideshow"
221
+ msgstr "Zobrazit prezentaci"
222
+
223
+ #: classes/SlideshowPluginPostType.php:45
224
+ msgid "Search slideshows"
225
+ msgstr "Hledat prezentaci"
226
+
227
+ #: classes/SlideshowPluginPostType.php:46
228
+ #: classes/SlideshowPluginPostType.php:47
229
+ msgid "No slideshows found"
230
+ msgstr "Žádná prezentace nenalezena"
231
+
232
+ #: classes/SlideshowPluginPostType.php:167
233
+ msgid "Information"
234
+ msgstr "Informace"
235
+
236
+ #: classes/SlideshowPluginPostType.php:176
237
+ msgid "Slides List"
238
+ msgstr "Seznam listů"
239
+
240
+ #: classes/SlideshowPluginPostType.php:185
241
+ msgid "Slideshow Style"
242
+ msgstr "Šablona stylu prezentace"
243
+
244
+ #: classes/SlideshowPluginPostType.php:194
245
+ msgid "Slideshow Settings"
246
+ msgstr "Nastavení prezentace"
247
+
248
+ #: classes/SlideshowPluginPostType.php:244
249
+ #: classes/SlideshowPluginSlideInserter.php:156
250
+ #: views/SlideshowPluginPostType/slides.php:2
251
+ msgid "Insert"
252
+ msgstr "Vložit"
253
+
254
+ #: classes/SlideshowPluginPostType.php:252
255
+ #: views/SlideshowPluginPostType/slides.php:9
256
+ msgid "Add slides to this slideshow by using one of the buttons above."
257
+ msgstr ""
258
+ "Vloží listy do této prezentace použitím jednoho z výše zobrazených tlačítek."
259
+
260
+ #: classes/SlideshowPluginShortcode.php:132
261
+ msgid "No slideshow selected."
262
+ msgstr "Žádná prezentace nebyla vybrána."
263
+
264
+ #: classes/SlideshowPluginSlideInserter.php:165
265
+ msgid "Load more results"
266
+ msgstr "Načíst více výsledků"
267
+
268
+ #: classes/SlideshowPluginSlideInserter.php:174
269
+ msgid "No images were found, click here to upload some."
270
+ msgstr "Žádné obrázky nebyly nalezeny, hlikněte sem, abyste nějaké nahráli."
271
+
272
+ #: classes/SlideshowPluginSlideInserter.php:243
273
+ msgid "Are you sure you want to delete this slide?"
274
+ msgstr "Víte jistě, že chcete tento list smazat?"
275
+
276
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
277
+ msgid "Slide Left"
278
+ msgstr "Posunout doleva"
279
+
280
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
281
+ msgid "Slide Right"
282
+ msgstr "Posunout doprava"
283
+
284
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
285
+ msgid "Slide Up"
286
+ msgstr "Posunout nahoru"
287
+
288
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
289
+ msgid "Slide Down"
290
+ msgstr "Posunout dolů"
291
+
292
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
293
+ msgid "Direct Fade"
294
+ msgstr "Přímé prolnutí"
295
+
296
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
297
+ msgid "Random Animation"
298
+ msgstr "Náhodná animace"
299
+
300
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:420
301
+ msgid "Maximum width. When maximum width is 0, maximum width is ignored"
302
+ msgstr "Maximální šířka. Pokud je zadáno 0, je maximální šířka ignorována"
303
+
304
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
305
+ msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
306
+ msgstr "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
307
+
308
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
309
+ msgid "More info"
310
+ msgstr "Více informací"
311
+
312
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
313
+ #, php-format
314
+ msgid ""
315
+ "Proportional relationship%s between slideshow's width and height (width:"
316
+ "height)"
317
+ msgstr "Proporcionální vazba%s mezi šířkou a výškou prezentace (šířka:výška)"
318
+
319
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:422
320
+ msgid "Slideshow's height"
321
+ msgstr "Výška prezentace"
322
+
323
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
324
+ msgid "Fit image into slide (Stretch image)"
325
+ msgstr "Přizpůsobit obrázek do listu (obrázek se roztáhne)"
326
+
327
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:424
328
+ msgid "Shrink slideshow's height when width shrinks"
329
+ msgstr ""
330
+ "Umožnit přizpůsobení (Šířka prezentace se smrskne, pokud se smrskne šířka "
331
+ "stránky)"
332
+
333
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
334
+ msgid ""
335
+ "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
336
+ msgstr ""
337
+ "Umožnit přizpůsobení (Šířka prezentace se smrskne, pokud se smrskne šířka "
338
+ "stránky"
339
+
340
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:427
341
+ msgid "Hide description box, pop up when mouse hovers over"
342
+ msgstr "Skrýt blok s popisem, objeví se, když přes ni přejde myš"
343
+
344
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:430
345
+ msgid "Pause slideshow when mouse hovers over"
346
+ msgstr "Zastavit prezentaci, když přes ni přeběhne myš"
347
+
348
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:431
349
+ msgid "Activate navigation buttons"
350
+ msgstr "Použít tlačítka navigace"
351
+
352
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:432
353
+ msgid "Hide navigation buttons, show when mouse hovers over"
354
+ msgstr "Skrýt tlačítka navigace, objeví se, když přes ně přeběhne myš"
355
+
356
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:433
357
+ msgid "Activate pagination"
358
+ msgstr "Použít stránkování"
359
+
360
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:434
361
+ msgid "Hide pagination, show when mouse hovers over"
362
+ msgstr "Skrýt stránkování, objeví se, když přes něj přeběhne myš"
363
+
364
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:435
365
+ msgid "Activate control panel (play and pause button)"
366
+ msgstr "Použít ovládací panel (tlačítka přehrát a zastavit)"
367
+
368
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:436
369
+ msgid "Hide control panel, show when mouse hovers over"
370
+ msgstr "Skrát ovládací panel, objeví se, když jej přejde myš"
371
+
372
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:437
373
+ msgid "Randomize slides"
374
+ msgstr "Náhodné pořadí listů"
375
+
376
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:437
377
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:438
378
+ msgid "Miscellaneous"
379
+ msgstr "Další nastavení"
380
+
381
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:438
382
+ #, php-format
383
+ msgid "Avoid content filter (disable if '%s' is shown)"
384
+ msgstr "Vyhnout se filtru obsahu (vypne se, pokud se ukáže '%s' )"
385
+
386
+ #: classes/SlideshowPluginWidget.php:23
387
+ msgid "Enables you to show your slideshows in the widget area of your website."
388
+ msgstr "Dovolí Vám zobrazit Vaši prezentaci v oblasti widgetů na Vaší stránce"
389
+
390
+ #: classes/SlideshowPluginWidget.php:29
391
+ msgid "Slideshow Widget"
392
+ msgstr "Widget prezentace"
393
+
394
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:38
395
+ msgid "Default stylesheets"
396
+ msgstr "Defaultní šablony stylů"
397
+
398
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:52
399
+ msgid "Create a new custom style from this style"
400
+ msgstr "Vytvořit z této šablony novou přizpůsobenou šablonu stylů"
401
+
402
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:54
403
+ msgid "Customize"
404
+ msgstr "Přizpůsobit"
405
+
406
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:68
407
+ msgid "Custom stylesheets"
408
+ msgstr "Přizpůsobené šablony stylů"
409
+
410
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:81
411
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:160
412
+ msgid "Edit this style"
413
+ msgstr "Upravit tuto šablonu stylů"
414
+
415
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:83
416
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:162
417
+ #: views/SlideshowPluginPostType/slides.php:137
418
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:46
419
+ msgid "Edit"
420
+ msgstr "Upravit"
421
+
422
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:90
423
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:169
424
+ msgid "Delete this style"
425
+ msgstr "Smazat tuto šablonu stylů"
426
+
427
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:92
428
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:171
429
+ msgid "Delete"
430
+ msgstr "Smazat"
431
+
432
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:102
433
+ msgid "Click 'Customize' to create a new custom stylesheet."
434
+ msgstr "Kliknutím na 'Přizpůsobit' vytvoříte novou upravenou šablonu stylů"
435
+
436
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:118
437
+ msgid "Select a stylesheet from the left to start customizing it."
438
+ msgstr "Klikněte na některou šablonu stylů vlevo, abyste ji upravili."
439
+
440
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:127
441
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:180
442
+ #: views/SlideshowPluginPostType/slides.php:58
443
+ #: views/SlideshowPluginPostType/slides.php:143
444
+ #: views/SlideshowPluginPostType/slides.php:195
445
+ #: views/SlideshowPluginPostType/slides.php:263
446
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:54
447
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:12
448
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:92
449
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:29
450
+ #: views/SlideshowPluginWidget/form.php:2
451
+ msgid "Title"
452
+ msgstr "Název"
453
+
454
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:136
455
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:188
456
+ msgid "Style"
457
+ msgstr "Šablona stylů"
458
+
459
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:11
460
+ msgid "Note"
461
+ msgstr "Poznámka"
462
+
463
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:18
464
+ #, php-format
465
+ msgid ""
466
+ "The settings set on this page apply only to newly created slideshows and "
467
+ "therefore do not alter any existing ones. To adapt a slideshow's settings, "
468
+ "%sclick here.%s"
469
+ msgstr ""
470
+ "Nastavení na této stránce bude platné jen pro nově vytvořené prezentace, "
471
+ "takže neovlivní ty, které již existují. Abyste upravili nastavení "
472
+ "prezentace, %sklikněte sem.%s"
473
+
474
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:30
475
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:16
476
+ msgid "Default Slideshow Settings"
477
+ msgstr "Defaultní nastavení Prezentace"
478
+
479
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:43
480
+ #: views/SlideshowPluginPostType/settings.php:12
481
+ msgid "settings"
482
+ msgstr "nastavení"
483
+
484
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:80
485
+ msgid "Default Slideshow Stylesheet"
486
+ msgstr "Defaultní šablona stylů prezentace"
487
+
488
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:15
489
+ msgid "User Capabilities"
490
+ msgstr "Možnosti uživatelů"
491
+
492
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:17
493
+ msgid "Custom Styles"
494
+ msgstr "Přizpůsobené šablony stylů"
495
+
496
+ #: views/SlideshowPluginGeneralSettings/user-capabilities.php:8
497
+ msgid "Add slideshows"
498
+ msgstr "Přidat prezentace"
499
+
500
+ #: views/SlideshowPluginGeneralSettings/user-capabilities.php:9
501
+ msgid "Edit slideshows"
502
+ msgstr "Upravit prezentace"
503
+
504
+ #: views/SlideshowPluginGeneralSettings/user-capabilities.php:10
505
+ msgid "Delete slideshows"
506
+ msgstr "Mazat prezentace"
507
+
508
+ #: views/SlideshowPluginGeneralSettings/user-capabilities.php:18
509
+ msgid "Select the user roles that will able to perform certain actions."
510
+ msgstr "Vyberte typy uživatelů, kteří budou moci provádět určité akce."
511
+
512
+ #: views/SlideshowPluginGeneralSettings/user-capabilities.php:35
513
+ msgid "Untitled role"
514
+ msgstr "Nedefinovaný uživatel"
515
+
516
+ #: views/SlideshowPluginPostType/information.php:1
517
+ msgid ""
518
+ "To use this slideshow in your website either add this piece of shortcode to "
519
+ "your posts or pages"
520
+ msgstr ""
521
+ "Abyste mohli použít tuto prezentaci na svých stránkách, buď zadejte tento "
522
+ "shortcode do svých příspěvků nebo stránek,"
523
+
524
+ #: views/SlideshowPluginPostType/information.php:5
525
+ msgid ""
526
+ "Or add this piece of code to where ever in your website you want to place "
527
+ "the slideshow"
528
+ msgstr ""
529
+ "Nebo přidejte tento kód tam, kde chcete prezentaci ve své strýnce umístit"
530
+
531
+ #: views/SlideshowPluginPostType/information.php:9
532
+ #, php-format
533
+ msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
534
+ msgstr "Nebo jděte do %ssprávy widgetů%s a přidejte prezentaci jako widget."
535
+
536
+ #: views/SlideshowPluginPostType/settings.php:26
537
+ #: views/SlideshowPluginPostType/style-settings.php:11
538
+ msgid "Default"
539
+ msgstr "Defaultně"
540
+
541
+ #: views/SlideshowPluginPostType/slides.php:53
542
+ #: views/SlideshowPluginPostType/slides.php:190
543
+ #: views/SlideshowPluginSlideInserter/insert-text-button.php:1
544
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:6
545
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:23
546
+ msgid "Text slide"
547
+ msgstr "List s textem"
548
+
549
+ #: views/SlideshowPluginPostType/slides.php:60
550
+ #: views/SlideshowPluginPostType/slides.php:149
551
+ #: views/SlideshowPluginPostType/slides.php:197
552
+ #: views/SlideshowPluginPostType/slides.php:269
553
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:61
554
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:15
555
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:99
556
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:32
557
+ msgid "Description"
558
+ msgstr "Popis"
559
+
560
+ #: views/SlideshowPluginPostType/slides.php:62
561
+ #: views/SlideshowPluginPostType/slides.php:199
562
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:21
563
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:38
564
+ msgid "Background color"
565
+ msgstr "Barva pozadí"
566
+
567
+ #: views/SlideshowPluginPostType/slides.php:67
568
+ #: views/SlideshowPluginPostType/slides.php:154
569
+ #: views/SlideshowPluginPostType/slides.php:204
570
+ #: views/SlideshowPluginPostType/slides.php:274
571
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:68
572
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:28
573
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:106
574
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:45
575
+ msgid "URL"
576
+ msgstr "URL"
577
+
578
+ #: views/SlideshowPluginPostType/slides.php:69
579
+ #: views/SlideshowPluginPostType/slides.php:156
580
+ #: views/SlideshowPluginPostType/slides.php:206
581
+ #: views/SlideshowPluginPostType/slides.php:276
582
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:71
583
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:31
584
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:109
585
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:48
586
+ msgid "Open URL in"
587
+ msgstr "Otevřít URL v"
588
+
589
+ #: views/SlideshowPluginPostType/slides.php:71
590
+ #: views/SlideshowPluginPostType/slides.php:158
591
+ #: views/SlideshowPluginPostType/slides.php:208
592
+ #: views/SlideshowPluginPostType/slides.php:278
593
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:73
594
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:33
595
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:111
596
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:50
597
+ msgid "Same window"
598
+ msgstr "Stejné okno"
599
+
600
+ #: views/SlideshowPluginPostType/slides.php:72
601
+ #: views/SlideshowPluginPostType/slides.php:159
602
+ #: views/SlideshowPluginPostType/slides.php:209
603
+ #: views/SlideshowPluginPostType/slides.php:279
604
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:74
605
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:34
606
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:112
607
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:51
608
+ msgid "New window"
609
+ msgstr "Nové okno"
610
+
611
+ #: views/SlideshowPluginPostType/slides.php:89
612
+ #: views/SlideshowPluginPostType/slides.php:229
613
+ #: views/SlideshowPluginSlideInserter/insert-video-button.php:1
614
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:54
615
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:13
616
+ msgid "Video slide"
617
+ msgstr "List s videem"
618
+
619
+ #: views/SlideshowPluginPostType/slides.php:94
620
+ #: views/SlideshowPluginPostType/slides.php:234
621
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:60
622
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:19
623
+ msgid "Youtube Video ID"
624
+ msgstr "ID videa na Youtube"
625
+
626
+ #: views/SlideshowPluginPostType/slides.php:132
627
+ #: views/SlideshowPluginPostType/slides.php:254
628
+ #: views/SlideshowPluginSlideInserter/insert-image-button.php:1
629
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:40
630
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:80
631
+ msgid "Image slide"
632
+ msgstr "List s obrázkem"
633
+
634
+ #: views/SlideshowPluginPostType/slides.php:170
635
+ msgid ""
636
+ "An error occurred while loading this slide, and it will not be present in "
637
+ "the slideshow"
638
+ msgstr ""
639
+ "Během nahrávání tohoto listu se vyskytla chyba, takže se v prezentaci "
640
+ "nezobrazí"
641
+
642
+ #: views/SlideshowPluginPostType/slides.php:176
643
+ #: views/SlideshowPluginPostType/slides.php:217
644
+ #: views/SlideshowPluginPostType/slides.php:242
645
+ #: views/SlideshowPluginPostType/slides.php:288
646
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:83
647
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:42
648
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:68
649
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:121
650
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:59
651
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:27
652
+ msgid "Delete slide"
653
+ msgstr "Smazat list"
654
+
655
+ #: views/SlideshowPluginPostType/style-settings.php:22
656
+ #, php-format
657
+ msgid "Custom styles can be created and customized %shere%s."
658
+ msgstr "Přizpůsobené šablony stylů můžete upravit %szde%s."
659
+
660
+ #: views/SlideshowPluginPostType/support-plugin.php:3
661
+ msgid "Help to keep this plugin free!"
662
+ msgstr "Pomozte, aby tento plugin byl zdarma!"
663
+
664
+ #: views/SlideshowPluginPostType/support-plugin.php:6
665
+ msgid ""
666
+ "In order to keep you provided with the newest features, forum support, and "
667
+ "bug-fixes, a lot of motivation is required. Therefore I'm kindly asking you "
668
+ "to consider making a small donation to the plugin or rating it as 5-stars on "
669
+ "Wordpress.org. Thank you in advance!"
670
+ msgstr ""
671
+ "K tomu, abych Vás stále mohl zásobovat novými vlastnostmi, poskytovat "
672
+ "podporu na fóru a vychytával chyby, je potřeba spousta motivace. Proto Vás "
673
+ "laskavě žádám, abyste zvážili malou dotaci pluginu nebo ho ohodnotili pěti "
674
+ "hvězdičkami na Wordpress.org. Velice Vám děkuji."
675
+
676
+ #: views/SlideshowPluginPostType/support-plugin.php:15
677
+ msgid "Rate on Wordpress.org"
678
+ msgstr "Ohodnotit na Wordpress.org"
679
+
680
+ #: views/SlideshowPluginPostType/support-plugin.php:24
681
+ msgid "Frequently Asked Questions (FAQ)"
682
+ msgstr "Často kladené otázky (FAQ)"
683
+
684
+ #: views/SlideshowPluginPostType/support-plugin.php:33
685
+ msgid "Questions / Suggestions"
686
+ msgstr "Dotazy / Nápady"
687
+
688
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
689
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
690
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
691
+ msgid "Insert a Slideshow"
692
+ msgstr "Vložit prezentaci"
693
+
694
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
695
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
696
+ msgid "Insert Slideshow"
697
+ msgstr "Vložit prezentaci"
698
+
699
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
700
+ msgid "Select a slideshow"
701
+ msgstr "Vybrat prezentaci"
702
+
703
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
704
+ #: views/SlideshowPluginWidget/form.php:12
705
+ msgid "Untitled slideshow"
706
+ msgstr "Bezejmenná prezentace"
707
+
708
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
709
+ msgid "Cancel"
710
+ msgstr "Zrušit"
711
+
712
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
713
+ #, php-format
714
+ msgid ""
715
+ "It seems you haven't created any slideshows yet. %sYou can create a "
716
+ "slideshow here!%s"
717
+ msgstr ""
718
+ "Zdá se, že jste zatím nevytvořili žádnou prezentaci. %sPrezentaci si můžete "
719
+ "vytvořit zde!%s"
720
+
721
+ #: views/SlideshowPluginSlideInserter/search-popup.php:6
722
+ msgid "Search"
723
+ msgstr "Hledat"
724
+
725
+ #: views/SlideshowPluginSlideInserter/search-popup.php:7
726
+ msgid "Search images by title or ID"
727
+ msgstr "Hledat obrázky podle titulku nebo ID"
728
+
729
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:18
730
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:35
731
+ msgid "Text color"
732
+ msgstr "Barva textu"
733
+
734
+ #: views/SlideshowPluginUpload/upload-button.php:1
735
+ msgid "Upload/Manage Images"
736
+ msgstr "Nahrát/Spravovat obrázky"
737
+
738
+ #: views/SlideshowPluginWidget/form.php:9
739
+ msgid "Random Slideshow"
740
+ msgstr "Náhodná prezentace"
741
+
742
+ #~ msgid ""
743
+ #~ "Shrink slideshow's height when width shrinks (Fixed height can be defined "
744
+ #~ "when setting this value to 'No')"
745
+ #~ msgstr ""
746
+ #~ "Smrsknout výšu slideshow, pokud se smrskne šířka (Pevnou výšku lze "
747
+ #~ "definovat, pokud je do toho nastavení zadáno 'Ne')"
748
+
749
+ #~ msgid "light"
750
+ #~ msgstr "světlý"
751
+
752
+ #~ msgid "slide"
753
+ #~ msgstr "list"
754
+
755
+ #~ msgid "Custom style editor (Does not work with a Strict Doctype)"
756
+ #~ msgstr "Editor stylů šablon (Nefunguje při Striktním Doctype)"
757
+
758
+ #~ msgid "Has the Slideshow plugin helped you?"
759
+ #~ msgstr "Pomohl Vám plugin Prezentace?"
760
+
761
+ #~ msgid "Help it back!"
762
+ #~ msgstr "Pomozte mu taky!"
763
+
764
+ #~ msgid ""
765
+ #~ "If this plugin has filled you with happiness, please support the upkeep "
766
+ #~ "of the plugin by rating it on Wordpress, posting a suggestion for "
767
+ #~ "improvement on the support forum, or making a donation."
768
+ #~ msgstr ""
769
+ #~ "Pokud Vás tento plugin naplnil štěstím, prosím, podpořte jeho udržování "
770
+ #~ "jeho ohodnocením na Wordpress.org, posláním návhru na zlepšení na fórum "
771
+ #~ "podpory nebo drobnou dotací."
772
+
773
+ #~ msgid "Click on an image to insert it as a slide"
774
+ #~ msgstr "Klikněte na obrázek, abyste ho přidali jako list"
775
+
776
+ #~ msgid "Width of the slideshow"
777
+ #~ msgstr "Šířka prezentace"
778
+
779
+ #~ msgid "Defaults to parent's width."
780
+ #~ msgstr "Defaultně nastavené na šířku rodičovského prvku."
781
+
782
+ #~ msgid "Send user to image URL on click"
783
+ #~ msgstr "Odkáže uživatele po kliknutí na URL obrázku"
784
+
785
+ #~ msgid "Leave any field open to use default value."
786
+ #~ msgstr "Nechejte pole volné, aby se použila defaultní hodnota."
languages/slideshow-plugin-es_ES.mo CHANGED
Binary file
languages/slideshow-plugin-es_ES.po CHANGED
@@ -1,778 +1,776 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Slideshow Plugin\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-02-01 15:06+0100\n"
6
- "PO-Revision-Date: 2013-02-01 15:06+0100\n"
7
- "Last-Translator: Violeta Rosales <ellaes@violetarosales.com>\n"
8
- "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
- "Language: fr_FR\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: _e;__\n"
14
- "X-Poedit-Basepath: ../\n"
15
- "X-Generator: Poedit 1.5.4\n"
16
- "X-Poedit-SourceCharset: UTF-8\n"
17
- "X-Poedit-SearchPath-0: .\n"
18
-
19
- #: classes/SlideshowPluginGeneralSettings.php:64
20
- #: classes/SlideshowPluginGeneralSettings.php:65
21
- msgid "General Settings"
22
- msgstr ""
23
-
24
- #: classes/SlideshowPluginGeneralSettings.php:142
25
- msgid "New"
26
- msgstr ""
27
-
28
- #: classes/SlideshowPluginGeneralSettings.php:143
29
- msgid "Are you sure you want to delete this custom style?"
30
- msgstr ""
31
-
32
- #: classes/SlideshowPluginGeneralSettings.php:162
33
- #: classes/SlideshowPluginInstaller.php:388
34
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:6
35
- msgid "Light"
36
- msgstr "Claro"
37
-
38
- #: classes/SlideshowPluginGeneralSettings.php:163
39
- #: classes/SlideshowPluginInstaller.php:388
40
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:7
41
- msgid "Dark"
42
- msgstr "Obscuro"
43
-
44
- #: classes/SlideshowPluginGeneralSettings.php:267
45
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:49
46
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:131
47
- msgid "Untitled"
48
- msgstr ""
49
-
50
- #: classes/SlideshowPluginInstaller.php:385
51
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:374
52
- msgid "Yes"
53
- msgstr "Sí"
54
-
55
- #: classes/SlideshowPluginInstaller.php:386
56
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:375
57
- msgid "No"
58
- msgstr "No"
59
-
60
- #: classes/SlideshowPluginInstaller.php:388
61
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:475
62
- msgid "The style used for this slideshow"
63
- msgstr "El estilo usado para esta diapositiva"
64
-
65
- #: classes/SlideshowPluginInstaller.php:388
66
- msgid "Custom"
67
- msgstr "Personalizar"
68
-
69
- #: classes/SlideshowPluginInstaller.php:389
70
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:114
71
- msgid "Custom style editor"
72
- msgstr "Editor de estilo personalizado"
73
-
74
- #: classes/SlideshowPluginInstaller.php:390
75
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
76
- msgid "Animation used for transition between slides"
77
- msgstr "Animación para las transiciones entre las diapositivas"
78
-
79
- #: classes/SlideshowPluginInstaller.php:390
80
- msgid "Slide"
81
- msgstr "Diapositiva"
82
-
83
- #: classes/SlideshowPluginInstaller.php:390
84
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
85
- msgid "Fade"
86
- msgstr "Desvanecer"
87
-
88
- #: classes/SlideshowPluginInstaller.php:390
89
- #: classes/SlideshowPluginInstaller.php:391
90
- #: classes/SlideshowPluginInstaller.php:392
91
- #: classes/SlideshowPluginInstaller.php:393
92
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
93
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:417
94
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:418
95
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
96
- msgid "Animation"
97
- msgstr "Animación"
98
-
99
- #: classes/SlideshowPluginInstaller.php:391
100
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:417
101
- msgid "Number of seconds the slide takes to slide in"
102
- msgstr "Núero de segundos que tarda la diapositiva en entrar"
103
-
104
- #: classes/SlideshowPluginInstaller.php:392
105
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:418
106
- msgid "Number of seconds the description takes to slide in"
107
- msgstr "Número de segundos que tarda la descripción en entrar"
108
-
109
- #: classes/SlideshowPluginInstaller.php:393
110
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
111
- msgid "Seconds between changing slides"
112
- msgstr "Segundos entre cada diapositiva"
113
-
114
- #: classes/SlideshowPluginInstaller.php:394
115
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:420
116
- msgid "Number of slides to fit into one slide"
117
- msgstr "Número de imágenes/videos/texto dentro de cada diapositiva"
118
-
119
- #: classes/SlideshowPluginInstaller.php:394
120
- #: classes/SlideshowPluginInstaller.php:395
121
- #: classes/SlideshowPluginInstaller.php:396
122
- #: classes/SlideshowPluginInstaller.php:397
123
- #: classes/SlideshowPluginInstaller.php:398
124
- #: classes/SlideshowPluginInstaller.php:399
125
- #: classes/SlideshowPluginInstaller.php:400
126
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:420
127
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
128
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:422
129
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
130
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:424
131
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
132
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:426
133
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:427
134
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
135
- msgid "Display"
136
- msgstr "Mostrar"
137
-
138
- #: classes/SlideshowPluginInstaller.php:395
139
- msgid "Width of the slideshow, set to parent&#39;s width on 0"
140
- msgstr ""
141
- "Ancho de las diapositivas. Escribe 0 para tomar el ancho del nodo padre."
142
-
143
- #: classes/SlideshowPluginInstaller.php:396
144
- msgid "Height of the slideshow"
145
- msgstr "Alto de las diapositivas"
146
-
147
- #: classes/SlideshowPluginInstaller.php:397
148
- msgid "Height of the description boxes"
149
- msgstr "Alto de la caja de descripción"
150
-
151
- #: classes/SlideshowPluginInstaller.php:398
152
- msgid "Fit image into slide (stretching it)"
153
- msgstr "Adaptar la diapositiva (estirarla)"
154
-
155
- #: classes/SlideshowPluginInstaller.php:399
156
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:427
157
- msgid "Show title and description"
158
- msgstr "Mostrar título y descripción"
159
-
160
- #: classes/SlideshowPluginInstaller.php:400
161
- msgid "Hide description box, it will pop up when a mouse hovers over the slide"
162
- msgstr ""
163
- "Esconder la caja de descripción, se mostrará cuando el puntero esté sobre la "
164
- "diapositiva"
165
-
166
- #: classes/SlideshowPluginInstaller.php:401
167
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:430
168
- msgid "Automatically slide to the next slide"
169
- msgstr "Pasar automáticamente a la siguiente diapositiva"
170
-
171
- #: classes/SlideshowPluginInstaller.php:401
172
- #: classes/SlideshowPluginInstaller.php:402
173
- #: classes/SlideshowPluginInstaller.php:403
174
- #: classes/SlideshowPluginInstaller.php:404
175
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:430
176
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:431
177
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:432
178
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:433
179
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:434
180
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:435
181
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:436
182
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:437
183
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:438
184
- msgid "Control"
185
- msgstr "Control"
186
-
187
- #: classes/SlideshowPluginInstaller.php:402
188
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:431
189
- msgid "Return to the beginning of the slideshow after last slide"
190
- msgstr "Regresar al inicio de las diapositivas, al llegar al final"
191
-
192
- #: classes/SlideshowPluginInstaller.php:403
193
- msgid "Activate buttons (so the user can scroll through the slides)"
194
- msgstr ""
195
- "Activar botones (para que el usuario pueda desplazarse entre las "
196
- "diapositivas)"
197
-
198
- #: classes/SlideshowPluginInstaller.php:404
199
- msgid "Show control panel (play and pause button)"
200
- msgstr "Mostrar panel de control (botones de play y pausa)"
201
-
202
- #: classes/SlideshowPluginPostType.php:37
203
- msgid "Slideshows"
204
- msgstr "Diapositivas"
205
-
206
- #: classes/SlideshowPluginPostType.php:38
207
- #: views/SlideshowPluginWidget/form.php:7
208
- msgid "Slideshow"
209
- msgstr "Diapositiva"
210
-
211
- #: classes/SlideshowPluginPostType.php:39
212
- msgid "Add New Slideshow"
213
- msgstr "Agregar Nueva Diapositiva"
214
-
215
- #: classes/SlideshowPluginPostType.php:40
216
- msgid "Edit slideshow"
217
- msgstr "Editar diapositiva"
218
-
219
- #: classes/SlideshowPluginPostType.php:41
220
- msgid "New slideshow"
221
- msgstr "Nueva diapositiva"
222
-
223
- #: classes/SlideshowPluginPostType.php:42
224
- msgid "View slideshow"
225
- msgstr "Ver diapositivas"
226
-
227
- #: classes/SlideshowPluginPostType.php:43
228
- msgid "Search slideshows"
229
- msgstr "Buscar diapositivas"
230
-
231
- #: classes/SlideshowPluginPostType.php:44
232
- #: classes/SlideshowPluginPostType.php:45
233
- msgid "No slideshows found"
234
- msgstr "No se encontraron diapositivas"
235
-
236
- #: classes/SlideshowPluginPostType.php:126
237
- msgid "Information"
238
- msgstr "Información"
239
-
240
- #: classes/SlideshowPluginPostType.php:135
241
- msgid "Slides List"
242
- msgstr "Lista de diapositivas"
243
-
244
- #: classes/SlideshowPluginPostType.php:144
245
- msgid "Slideshow Style"
246
- msgstr "Estilo de las diapositivas"
247
-
248
- #: classes/SlideshowPluginPostType.php:153
249
- msgid "Slideshow Settings"
250
- msgstr "Configuración de las diapositivas"
251
-
252
- #: classes/SlideshowPluginPostType.php:203
253
- #: classes/SlideshowPluginSlideInserter.php:156
254
- #: views/SlideshowPluginPostType/slides.php:2
255
- msgid "Insert"
256
- msgstr "Insertar"
257
-
258
- #: classes/SlideshowPluginPostType.php:211
259
- #: views/SlideshowPluginPostType/slides.php:9
260
- msgid "Add slides to this slideshow by using one of the buttons above."
261
- msgstr "Agrega una diapositiva usando uno de los botones de abajo."
262
-
263
- #: classes/SlideshowPluginShortcode.php:132
264
- msgid "No slideshow selected."
265
- msgstr "No se ha seleccionado ninguna diapositiva"
266
-
267
- #: classes/SlideshowPluginSlideInserter.php:165
268
- msgid "Load more results"
269
- msgstr "Cargar más resultados"
270
-
271
- #: classes/SlideshowPluginSlideInserter.php:174
272
- msgid "No images were found, click here to upload some."
273
- msgstr "No se encontraron imágenes, da clic para subir algunas."
274
-
275
- #: classes/SlideshowPluginSlideInserter.php:243
276
- msgid "Are you sure you want to delete this slide?"
277
- msgstr "¿Estás seguro de que quieres borrar esta diapositiva?"
278
-
279
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
280
- msgid "Slide Left"
281
- msgstr ""
282
-
283
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
284
- msgid "Slide Right"
285
- msgstr ""
286
-
287
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
288
- msgid "Slide Up"
289
- msgstr ""
290
-
291
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
292
- msgid "Slide Down"
293
- msgstr ""
294
-
295
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
296
- msgid "Direct Fade"
297
- msgstr ""
298
-
299
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
300
- msgid "Random Animation"
301
- msgstr ""
302
-
303
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
304
- msgid "Maximum width. When maximum width is 0, maximum width is ignored"
305
- msgstr ""
306
-
307
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:422
308
- msgid ""
309
- "Shrink slideshow's height when width shrinks (Fixed height can be defined "
310
- "when setting this value to 'No')"
311
- msgstr ""
312
-
313
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
314
- msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
315
- msgstr ""
316
-
317
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
318
- msgid "More info"
319
- msgstr ""
320
-
321
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
322
- #, php-format
323
- msgid ""
324
- "Proportional relationship%s between slideshow's width and height (width:"
325
- "height)"
326
- msgstr ""
327
-
328
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:424
329
- msgid "Slideshow's height"
330
- msgstr ""
331
-
332
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
333
- msgid "Fit image into slide (Stretch image)"
334
- msgstr ""
335
-
336
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:426
337
- msgid ""
338
- "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
339
- msgstr ""
340
-
341
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
342
- msgid "Hide description box, pop up when mouse hovers over"
343
- msgstr ""
344
-
345
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:432
346
- msgid "Pause slideshow when mouse hovers over"
347
- msgstr ""
348
-
349
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:433
350
- msgid "Activate navigation buttons"
351
- msgstr ""
352
-
353
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:434
354
- msgid "Hide navigation buttons, show when mouse hovers over"
355
- msgstr ""
356
-
357
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:435
358
- msgid "Activate pagination"
359
- msgstr ""
360
-
361
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:436
362
- msgid "Hide pagination, show when mouse hovers over"
363
- msgstr ""
364
-
365
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:437
366
- msgid "Activate control panel (play and pause button)"
367
- msgstr ""
368
-
369
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:438
370
- msgid "Hide control panel, show when mouse hovers over"
371
- msgstr ""
372
-
373
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:439
374
- msgid "Randomize slides"
375
- msgstr "Diapositivas aleatorias"
376
-
377
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:439
378
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:440
379
- msgid "Miscellaneous"
380
- msgstr "Miscelanea"
381
-
382
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:440
383
- #, php-format
384
- msgid "Avoid content filter (disable if '%s' is shown)"
385
- msgstr "Evitar filtro de contenido (desactivar si '%s' se muestra)"
386
-
387
- #: classes/SlideshowPluginWidget.php:23
388
- msgid "Enables you to show your slideshows in the widget area of your website."
389
- msgstr "Permite que puedas mostrar las diapositivas en el área de los Widgets"
390
-
391
- #: classes/SlideshowPluginWidget.php:29
392
- msgid "Slideshow Widget"
393
- msgstr "Widget de diapositiva"
394
-
395
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:38
396
- msgid "Default stylesheets"
397
- msgstr ""
398
-
399
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:52
400
- msgid "Create a new custom style from this style"
401
- msgstr ""
402
-
403
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:54
404
- msgid "Customize"
405
- msgstr ""
406
-
407
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:68
408
- msgid "Custom stylesheets"
409
- msgstr ""
410
-
411
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:81
412
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:160
413
- msgid "Edit this style"
414
- msgstr ""
415
-
416
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:83
417
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:162
418
- #: views/SlideshowPluginPostType/slides.php:137
419
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:46
420
- msgid "Edit"
421
- msgstr "Editar"
422
-
423
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:90
424
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:169
425
- msgid "Delete this style"
426
- msgstr ""
427
-
428
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:92
429
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:171
430
- msgid "Delete"
431
- msgstr ""
432
-
433
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:102
434
- msgid "Click 'Customize' to create a new custom stylesheet."
435
- msgstr ""
436
-
437
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:118
438
- msgid "Select a stylesheet from the left to start customizing it."
439
- msgstr ""
440
-
441
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:127
442
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:180
443
- #: views/SlideshowPluginPostType/slides.php:58
444
- #: views/SlideshowPluginPostType/slides.php:143
445
- #: views/SlideshowPluginPostType/slides.php:195
446
- #: views/SlideshowPluginPostType/slides.php:263
447
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:54
448
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:12
449
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:86
450
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:29
451
- #: views/SlideshowPluginWidget/form.php:2
452
- msgid "Title"
453
- msgstr "Título"
454
-
455
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:136
456
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:188
457
- msgid "Style"
458
- msgstr "Style"
459
-
460
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:11
461
- msgid "Note"
462
- msgstr ""
463
-
464
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:18
465
- #, php-format
466
- msgid ""
467
- "The settings set on this page apply only to newly created slideshows and "
468
- "therefore do not alter any existing ones. To adapt a slideshow's settings, "
469
- "%sclick here.%s"
470
- msgstr ""
471
-
472
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:30
473
- #: views/SlideshowPluginGeneralSettings/general-settings.php:16
474
- msgid "Default Slideshow Settings"
475
- msgstr ""
476
-
477
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:43
478
- #: views/SlideshowPluginPostType/settings.php:12
479
- msgid "settings"
480
- msgstr "Configuración"
481
-
482
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:80
483
- msgid "Default Slideshow Stylesheet"
484
- msgstr ""
485
-
486
- #: views/SlideshowPluginGeneralSettings/general-settings.php:15
487
- msgid "User Capabilities"
488
- msgstr ""
489
-
490
- #: views/SlideshowPluginGeneralSettings/general-settings.php:17
491
- msgid "Custom Styles"
492
- msgstr ""
493
-
494
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:8
495
- msgid "Add slideshows"
496
- msgstr ""
497
-
498
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:9
499
- msgid "Edit slideshows"
500
- msgstr ""
501
-
502
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:10
503
- msgid "Delete slideshows"
504
- msgstr ""
505
-
506
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:18
507
- msgid "Select the user roles that will able to perform certain actions."
508
- msgstr ""
509
-
510
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:35
511
- msgid "Untitled role"
512
- msgstr ""
513
-
514
- #: views/SlideshowPluginPostType/information.php:1
515
- msgid ""
516
- "To use this slideshow in your website either add this piece of shortcode to "
517
- "your posts or pages"
518
- msgstr ""
519
- "Para utilizar estas diapositivas en la página, copia este código y pégalo en "
520
- "el editor de la página o entrada"
521
-
522
- #: views/SlideshowPluginPostType/information.php:5
523
- msgid ""
524
- "Or add this piece of code to where ever in your website you want to place "
525
- "the slideshow"
526
- msgstr "O agrega este código en tu tema"
527
-
528
- #: views/SlideshowPluginPostType/information.php:9
529
- #, php-format
530
- msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
531
- msgstr "Ve al %sárea de widgets%s y muestra las Diapositivas como Widget"
532
-
533
- #: views/SlideshowPluginPostType/settings.php:26
534
- #: views/SlideshowPluginPostType/style-settings.php:11
535
- msgid "Default"
536
- msgstr "Por defecto"
537
-
538
- #: views/SlideshowPluginPostType/slides.php:53
539
- #: views/SlideshowPluginPostType/slides.php:190
540
- #: views/SlideshowPluginSlideInserter/insert-text-button.php:1
541
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:6
542
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:23
543
- msgid "Text slide"
544
- msgstr "Diapositiva de Texto"
545
-
546
- #: views/SlideshowPluginPostType/slides.php:60
547
- #: views/SlideshowPluginPostType/slides.php:149
548
- #: views/SlideshowPluginPostType/slides.php:197
549
- #: views/SlideshowPluginPostType/slides.php:269
550
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:62
551
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:15
552
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:92
553
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:32
554
- msgid "Description"
555
- msgstr "Descripción"
556
-
557
- #: views/SlideshowPluginPostType/slides.php:62
558
- #: views/SlideshowPluginPostType/slides.php:199
559
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:21
560
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:38
561
- msgid "Background color"
562
- msgstr "Color de fondo"
563
-
564
- #: views/SlideshowPluginPostType/slides.php:67
565
- #: views/SlideshowPluginPostType/slides.php:154
566
- #: views/SlideshowPluginPostType/slides.php:204
567
- #: views/SlideshowPluginPostType/slides.php:274
568
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:69
569
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:27
570
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:97
571
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:45
572
- msgid "URL"
573
- msgstr "URL"
574
-
575
- #: views/SlideshowPluginPostType/slides.php:69
576
- #: views/SlideshowPluginPostType/slides.php:156
577
- #: views/SlideshowPluginPostType/slides.php:206
578
- #: views/SlideshowPluginPostType/slides.php:276
579
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:72
580
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:29
581
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:99
582
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:48
583
- msgid "Open URL in"
584
- msgstr ""
585
-
586
- #: views/SlideshowPluginPostType/slides.php:71
587
- #: views/SlideshowPluginPostType/slides.php:158
588
- #: views/SlideshowPluginPostType/slides.php:208
589
- #: views/SlideshowPluginPostType/slides.php:278
590
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:74
591
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:31
592
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:101
593
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:50
594
- msgid "Same window"
595
- msgstr "Misma ventana"
596
-
597
- #: views/SlideshowPluginPostType/slides.php:72
598
- #: views/SlideshowPluginPostType/slides.php:159
599
- #: views/SlideshowPluginPostType/slides.php:209
600
- #: views/SlideshowPluginPostType/slides.php:279
601
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:75
602
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:32
603
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:102
604
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:51
605
- msgid "New window"
606
- msgstr "Ventana nueva"
607
-
608
- #: views/SlideshowPluginPostType/slides.php:89
609
- #: views/SlideshowPluginPostType/slides.php:229
610
- #: views/SlideshowPluginSlideInserter/insert-video-button.php:1
611
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:52
612
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:13
613
- msgid "Video slide"
614
- msgstr "Diapositiva de Video"
615
-
616
- #: views/SlideshowPluginPostType/slides.php:94
617
- #: views/SlideshowPluginPostType/slides.php:234
618
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:57
619
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:19
620
- msgid "Youtube Video ID"
621
- msgstr "Video de YouTube"
622
-
623
- #: views/SlideshowPluginPostType/slides.php:132
624
- #: views/SlideshowPluginPostType/slides.php:254
625
- #: views/SlideshowPluginSlideInserter/insert-image-button.php:1
626
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:40
627
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:77
628
- msgid "Image slide"
629
- msgstr "Diapositiva de Imagen"
630
-
631
- #: views/SlideshowPluginPostType/slides.php:170
632
- msgid ""
633
- "An error occurred while loading this slide, and it will not be present in "
634
- "the slideshow"
635
- msgstr ""
636
- "Ha ocurrido un error miestras se cargaba esta diapositiva y no puede ser "
637
- "presentada"
638
-
639
- #: views/SlideshowPluginPostType/slides.php:176
640
- #: views/SlideshowPluginPostType/slides.php:217
641
- #: views/SlideshowPluginPostType/slides.php:242
642
- #: views/SlideshowPluginPostType/slides.php:288
643
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:84
644
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:40
645
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:65
646
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:111
647
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:59
648
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:27
649
- msgid "Delete slide"
650
- msgstr "Borrar diapositiva"
651
-
652
- #: views/SlideshowPluginPostType/style-settings.php:22
653
- #, php-format
654
- msgid "Custom styles can be created and customized %shere%s."
655
- msgstr ""
656
-
657
- #: views/SlideshowPluginPostType/support-plugin.php:3
658
- msgid "Help to keep this plugin free!"
659
- msgstr "¡Ayuda a que este plugin sea gratis!"
660
-
661
- #: views/SlideshowPluginPostType/support-plugin.php:6
662
- msgid ""
663
- "In order to keep you provided with the newest features, forum support, and "
664
- "bug-fixes, a lot of motivation is required. Therefore I'm kindly asking you "
665
- "to consider making a small donation to the plugin or rating it as 5-stars on "
666
- "Wordpress.org. Thank you in advance!"
667
- msgstr ""
668
- "Con el fin de mantenerlo siempre con las características más recientes, el "
669
- "apoyo foro, y correcciones de errores, mucha motivación es necesaria. Por lo "
670
- "tanto estoy pidiendo amablemente que consideren hacer una pequeña donación "
671
- "al plugin o que califiquen como 5 estrellas en Wordpress.org. ¡Gracias de "
672
- "antemano!"
673
-
674
- #: views/SlideshowPluginPostType/support-plugin.php:15
675
- msgid "Rate on Wordpress.org"
676
- msgstr "Calificar en Wordpress.org"
677
-
678
- #: views/SlideshowPluginPostType/support-plugin.php:24
679
- msgid "Frequently Asked Questions (FAQ)"
680
- msgstr ""
681
-
682
- #: views/SlideshowPluginPostType/support-plugin.php:33
683
- msgid "Questions / Suggestions"
684
- msgstr "Preguntas / Sugerencias"
685
-
686
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
687
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
688
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
689
- msgid "Insert a Slideshow"
690
- msgstr "Insertar una Diapositiva"
691
-
692
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
693
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
694
- msgid "Insert Slideshow"
695
- msgstr "Insertar Diapositiva"
696
-
697
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
698
- msgid "Select a slideshow"
699
- msgstr "Seleccionar una diapositiva"
700
-
701
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
702
- #: views/SlideshowPluginWidget/form.php:12
703
- msgid "Untitled slideshow"
704
- msgstr "Diapositiva sin título"
705
-
706
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
707
- msgid "Cancel"
708
- msgstr "Cancelar"
709
-
710
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
711
- #, php-format
712
- msgid ""
713
- "It seems you haven't created any slideshows yet. %sYou can create a "
714
- "slideshow here!%s"
715
- msgstr ""
716
- "Parece que no has creado ninguna diapositiva aún. %s¡Puedes crear una aquí!%s"
717
-
718
- #: views/SlideshowPluginSlideInserter/search-popup.php:6
719
- msgid "Search"
720
- msgstr "Buscar"
721
-
722
- #: views/SlideshowPluginSlideInserter/search-popup.php:7
723
- msgid "Search images by title or ID"
724
- msgstr "Buscar imágenes por título o ID"
725
-
726
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:18
727
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:35
728
- msgid "Text color"
729
- msgstr ""
730
-
731
- #: views/SlideshowPluginUpload/upload-button.php:1
732
- msgid "Upload/Manage Images"
733
- msgstr "Cargar/Administrar Imágenes"
734
-
735
- #: views/SlideshowPluginWidget/form.php:9
736
- msgid "Random Slideshow"
737
- msgstr "Diapositivas Aleatorias"
738
-
739
- #~ msgid "light"
740
- #~ msgstr "clair"
741
-
742
- #~ msgid "slide"
743
- #~ msgstr "diapo"
744
-
745
- #~ msgid "Custom style editor (Does not work with a Strict Doctype)"
746
- #~ msgstr "Aangepaste stijl bewerker (Werkt niet met een Strict Doctype)"
747
-
748
- #~ msgid "Has the Slideshow plugin helped you?"
749
- #~ msgstr "Heeft de Slideshow plugin je geholpen?"
750
-
751
- #~ msgid "Help it back!"
752
- #~ msgstr "Help hem terug!"
753
-
754
- #~ msgid ""
755
- #~ "If this plugin has filled you with happiness, please support the upkeep "
756
- #~ "of the plugin by rating it on Wordpress, posting a suggestion for "
757
- #~ "improvement on the support forum, or making a donation."
758
- #~ msgstr ""
759
- #~ "Als deze plugin je met blijdschap heeft vervuld, zou ik het enorm "
760
- #~ "waarderen als je de plugin wilt beoordelen op Wordpress, een suggestie "
761
- #~ "wilt maken voor verbetering, of een donatie doen wilt."
762
-
763
- #~ msgid "Click on an image to insert it as a slide"
764
- #~ msgstr "Klik op een plaatje om deze in te voegen als slide"
765
-
766
- #~ msgid "Width of the slideshow"
767
- #~ msgstr "Breedte van de slideshow"
768
-
769
- #~ msgid "Defaults to parent's width."
770
- #~ msgstr "Standaard ingesteld op de breedte van het bovenliggende element."
771
-
772
- #~ msgid "Send user to image URL on click"
773
- #~ msgstr ""
774
- #~ "Wanner de gebruiker op de afbeelding klikt, stuur hem naar de URL van het "
775
- #~ "plaatje"
776
-
777
- #~ msgid "Leave any field open to use default value."
778
- #~ msgstr "Een veld dat open wordt gelaten neemt de standaardwaarde aan."
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Slideshow Plugin\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-02-02 01:47+0100\n"
6
+ "PO-Revision-Date: 2013-02-02 01:47+0100\n"
7
+ "Last-Translator: Violeta Rosales <ellaes@violetarosales.com>\n"
8
+ "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
+ "Language: fr_FR\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-KeywordsList: _e;__\n"
14
+ "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.5.4\n"
16
+ "X-Poedit-SourceCharset: UTF-8\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: classes/SlideshowPluginGeneralSettings.php:64
20
+ #: classes/SlideshowPluginGeneralSettings.php:65
21
+ msgid "General Settings"
22
+ msgstr ""
23
+
24
+ #: classes/SlideshowPluginGeneralSettings.php:142
25
+ msgid "New"
26
+ msgstr ""
27
+
28
+ #: classes/SlideshowPluginGeneralSettings.php:143
29
+ msgid "Are you sure you want to delete this custom style?"
30
+ msgstr ""
31
+
32
+ #: classes/SlideshowPluginGeneralSettings.php:162
33
+ #: classes/SlideshowPluginInstaller.php:388
34
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:6
35
+ msgid "Light"
36
+ msgstr "Claro"
37
+
38
+ #: classes/SlideshowPluginGeneralSettings.php:163
39
+ #: classes/SlideshowPluginInstaller.php:388
40
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:7
41
+ msgid "Dark"
42
+ msgstr "Obscuro"
43
+
44
+ #: classes/SlideshowPluginGeneralSettings.php:267
45
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:49
46
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:131
47
+ msgid "Untitled"
48
+ msgstr ""
49
+
50
+ #: classes/SlideshowPluginInstaller.php:385
51
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:374
52
+ msgid "Yes"
53
+ msgstr "Sí"
54
+
55
+ #: classes/SlideshowPluginInstaller.php:386
56
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:375
57
+ msgid "No"
58
+ msgstr "No"
59
+
60
+ #: classes/SlideshowPluginInstaller.php:388
61
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:473
62
+ msgid "The style used for this slideshow"
63
+ msgstr "El estilo usado para esta diapositiva"
64
+
65
+ #: classes/SlideshowPluginInstaller.php:388
66
+ msgid "Custom"
67
+ msgstr "Personalizar"
68
+
69
+ #: classes/SlideshowPluginInstaller.php:389
70
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:114
71
+ msgid "Custom style editor"
72
+ msgstr "Editor de estilo personalizado"
73
+
74
+ #: classes/SlideshowPluginInstaller.php:390
75
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
76
+ msgid "Animation used for transition between slides"
77
+ msgstr "Animación para las transiciones entre las diapositivas"
78
+
79
+ #: classes/SlideshowPluginInstaller.php:390
80
+ msgid "Slide"
81
+ msgstr "Diapositiva"
82
+
83
+ #: classes/SlideshowPluginInstaller.php:390
84
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
85
+ msgid "Fade"
86
+ msgstr "Desvanecer"
87
+
88
+ #: classes/SlideshowPluginInstaller.php:390
89
+ #: classes/SlideshowPluginInstaller.php:391
90
+ #: classes/SlideshowPluginInstaller.php:392
91
+ #: classes/SlideshowPluginInstaller.php:393
92
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
93
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
94
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:417
95
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:418
96
+ msgid "Animation"
97
+ msgstr "Animación"
98
+
99
+ #: classes/SlideshowPluginInstaller.php:391
100
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
101
+ msgid "Number of seconds the slide takes to slide in"
102
+ msgstr "Núero de segundos que tarda la diapositiva en entrar"
103
+
104
+ #: classes/SlideshowPluginInstaller.php:392
105
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:417
106
+ msgid "Number of seconds the description takes to slide in"
107
+ msgstr "Número de segundos que tarda la descripción en entrar"
108
+
109
+ #: classes/SlideshowPluginInstaller.php:393
110
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:418
111
+ msgid "Seconds between changing slides"
112
+ msgstr "Segundos entre cada diapositiva"
113
+
114
+ #: classes/SlideshowPluginInstaller.php:394
115
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
116
+ msgid "Number of slides to fit into one slide"
117
+ msgstr "Número de imágenes/videos/texto dentro de cada diapositiva"
118
+
119
+ #: classes/SlideshowPluginInstaller.php:394
120
+ #: classes/SlideshowPluginInstaller.php:395
121
+ #: classes/SlideshowPluginInstaller.php:396
122
+ #: classes/SlideshowPluginInstaller.php:397
123
+ #: classes/SlideshowPluginInstaller.php:398
124
+ #: classes/SlideshowPluginInstaller.php:399
125
+ #: classes/SlideshowPluginInstaller.php:400
126
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
127
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:420
128
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
129
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:422
130
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
131
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:424
132
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
133
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:426
134
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:427
135
+ msgid "Display"
136
+ msgstr "Mostrar"
137
+
138
+ #: classes/SlideshowPluginInstaller.php:395
139
+ msgid "Width of the slideshow, set to parent&#39;s width on 0"
140
+ msgstr ""
141
+ "Ancho de las diapositivas. Escribe 0 para tomar el ancho del nodo padre."
142
+
143
+ #: classes/SlideshowPluginInstaller.php:396
144
+ msgid "Height of the slideshow"
145
+ msgstr "Alto de las diapositivas"
146
+
147
+ #: classes/SlideshowPluginInstaller.php:397
148
+ msgid "Height of the description boxes"
149
+ msgstr "Alto de la caja de descripción"
150
+
151
+ #: classes/SlideshowPluginInstaller.php:398
152
+ msgid "Fit image into slide (stretching it)"
153
+ msgstr "Adaptar la diapositiva (estirarla)"
154
+
155
+ #: classes/SlideshowPluginInstaller.php:399
156
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:426
157
+ msgid "Show title and description"
158
+ msgstr "Mostrar título y descripción"
159
+
160
+ #: classes/SlideshowPluginInstaller.php:400
161
+ msgid "Hide description box, it will pop up when a mouse hovers over the slide"
162
+ msgstr ""
163
+ "Esconder la caja de descripción, se mostrará cuando el puntero esté sobre la "
164
+ "diapositiva"
165
+
166
+ #: classes/SlideshowPluginInstaller.php:401
167
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
168
+ msgid "Automatically slide to the next slide"
169
+ msgstr "Pasar automáticamente a la siguiente diapositiva"
170
+
171
+ #: classes/SlideshowPluginInstaller.php:401
172
+ #: classes/SlideshowPluginInstaller.php:402
173
+ #: classes/SlideshowPluginInstaller.php:403
174
+ #: classes/SlideshowPluginInstaller.php:404
175
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
176
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:429
177
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:430
178
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:431
179
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:432
180
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:433
181
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:434
182
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:435
183
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:436
184
+ msgid "Control"
185
+ msgstr "Control"
186
+
187
+ #: classes/SlideshowPluginInstaller.php:402
188
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:429
189
+ msgid "Return to the beginning of the slideshow after last slide"
190
+ msgstr "Regresar al inicio de las diapositivas, al llegar al final"
191
+
192
+ #: classes/SlideshowPluginInstaller.php:403
193
+ msgid "Activate buttons (so the user can scroll through the slides)"
194
+ msgstr ""
195
+ "Activar botones (para que el usuario pueda desplazarse entre las "
196
+ "diapositivas)"
197
+
198
+ #: classes/SlideshowPluginInstaller.php:404
199
+ msgid "Show control panel (play and pause button)"
200
+ msgstr "Mostrar panel de control (botones de play y pausa)"
201
+
202
+ #: classes/SlideshowPluginPostType.php:39
203
+ msgid "Slideshows"
204
+ msgstr "Diapositivas"
205
+
206
+ #: classes/SlideshowPluginPostType.php:40
207
+ #: views/SlideshowPluginWidget/form.php:7
208
+ msgid "Slideshow"
209
+ msgstr "Diapositiva"
210
+
211
+ #: classes/SlideshowPluginPostType.php:41
212
+ msgid "Add New Slideshow"
213
+ msgstr "Agregar Nueva Diapositiva"
214
+
215
+ #: classes/SlideshowPluginPostType.php:42
216
+ msgid "Edit slideshow"
217
+ msgstr "Editar diapositiva"
218
+
219
+ #: classes/SlideshowPluginPostType.php:43
220
+ msgid "New slideshow"
221
+ msgstr "Nueva diapositiva"
222
+
223
+ #: classes/SlideshowPluginPostType.php:44
224
+ msgid "View slideshow"
225
+ msgstr "Ver diapositivas"
226
+
227
+ #: classes/SlideshowPluginPostType.php:45
228
+ msgid "Search slideshows"
229
+ msgstr "Buscar diapositivas"
230
+
231
+ #: classes/SlideshowPluginPostType.php:46
232
+ #: classes/SlideshowPluginPostType.php:47
233
+ msgid "No slideshows found"
234
+ msgstr "No se encontraron diapositivas"
235
+
236
+ #: classes/SlideshowPluginPostType.php:167
237
+ msgid "Information"
238
+ msgstr "Información"
239
+
240
+ #: classes/SlideshowPluginPostType.php:176
241
+ msgid "Slides List"
242
+ msgstr "Lista de diapositivas"
243
+
244
+ #: classes/SlideshowPluginPostType.php:185
245
+ msgid "Slideshow Style"
246
+ msgstr "Estilo de las diapositivas"
247
+
248
+ #: classes/SlideshowPluginPostType.php:194
249
+ msgid "Slideshow Settings"
250
+ msgstr "Configuración de las diapositivas"
251
+
252
+ #: classes/SlideshowPluginPostType.php:244
253
+ #: classes/SlideshowPluginSlideInserter.php:156
254
+ #: views/SlideshowPluginPostType/slides.php:2
255
+ msgid "Insert"
256
+ msgstr "Insertar"
257
+
258
+ #: classes/SlideshowPluginPostType.php:252
259
+ #: views/SlideshowPluginPostType/slides.php:9
260
+ msgid "Add slides to this slideshow by using one of the buttons above."
261
+ msgstr "Agrega una diapositiva usando uno de los botones de abajo."
262
+
263
+ #: classes/SlideshowPluginShortcode.php:132
264
+ msgid "No slideshow selected."
265
+ msgstr "No se ha seleccionado ninguna diapositiva"
266
+
267
+ #: classes/SlideshowPluginSlideInserter.php:165
268
+ msgid "Load more results"
269
+ msgstr "Cargar más resultados"
270
+
271
+ #: classes/SlideshowPluginSlideInserter.php:174
272
+ msgid "No images were found, click here to upload some."
273
+ msgstr "No se encontraron imágenes, da clic para subir algunas."
274
+
275
+ #: classes/SlideshowPluginSlideInserter.php:243
276
+ msgid "Are you sure you want to delete this slide?"
277
+ msgstr "¿Estás seguro de que quieres borrar esta diapositiva?"
278
+
279
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
280
+ msgid "Slide Left"
281
+ msgstr ""
282
+
283
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
284
+ msgid "Slide Right"
285
+ msgstr ""
286
+
287
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
288
+ msgid "Slide Up"
289
+ msgstr ""
290
+
291
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
292
+ msgid "Slide Down"
293
+ msgstr ""
294
+
295
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
296
+ msgid "Direct Fade"
297
+ msgstr ""
298
+
299
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
300
+ msgid "Random Animation"
301
+ msgstr ""
302
+
303
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:420
304
+ msgid "Maximum width. When maximum width is 0, maximum width is ignored"
305
+ msgstr ""
306
+
307
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
308
+ msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
309
+ msgstr ""
310
+
311
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
312
+ msgid "More info"
313
+ msgstr ""
314
+
315
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
316
+ #, php-format
317
+ msgid ""
318
+ "Proportional relationship%s between slideshow's width and height (width:"
319
+ "height)"
320
+ msgstr ""
321
+
322
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:422
323
+ msgid "Slideshow's height"
324
+ msgstr ""
325
+
326
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
327
+ msgid "Fit image into slide (Stretch image)"
328
+ msgstr ""
329
+
330
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:424
331
+ msgid "Shrink slideshow's height when width shrinks"
332
+ msgstr ""
333
+
334
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
335
+ msgid ""
336
+ "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
337
+ msgstr ""
338
+
339
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:427
340
+ msgid "Hide description box, pop up when mouse hovers over"
341
+ msgstr ""
342
+
343
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:430
344
+ msgid "Pause slideshow when mouse hovers over"
345
+ msgstr ""
346
+
347
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:431
348
+ msgid "Activate navigation buttons"
349
+ msgstr ""
350
+
351
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:432
352
+ msgid "Hide navigation buttons, show when mouse hovers over"
353
+ msgstr ""
354
+
355
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:433
356
+ msgid "Activate pagination"
357
+ msgstr ""
358
+
359
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:434
360
+ msgid "Hide pagination, show when mouse hovers over"
361
+ msgstr ""
362
+
363
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:435
364
+ msgid "Activate control panel (play and pause button)"
365
+ msgstr ""
366
+
367
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:436
368
+ msgid "Hide control panel, show when mouse hovers over"
369
+ msgstr ""
370
+
371
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:437
372
+ msgid "Randomize slides"
373
+ msgstr "Diapositivas aleatorias"
374
+
375
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:437
376
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:438
377
+ msgid "Miscellaneous"
378
+ msgstr "Miscelanea"
379
+
380
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:438
381
+ #, php-format
382
+ msgid "Avoid content filter (disable if '%s' is shown)"
383
+ msgstr "Evitar filtro de contenido (desactivar si '%s' se muestra)"
384
+
385
+ #: classes/SlideshowPluginWidget.php:23
386
+ msgid "Enables you to show your slideshows in the widget area of your website."
387
+ msgstr "Permite que puedas mostrar las diapositivas en el área de los Widgets"
388
+
389
+ #: classes/SlideshowPluginWidget.php:29
390
+ msgid "Slideshow Widget"
391
+ msgstr "Widget de diapositiva"
392
+
393
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:38
394
+ msgid "Default stylesheets"
395
+ msgstr ""
396
+
397
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:52
398
+ msgid "Create a new custom style from this style"
399
+ msgstr ""
400
+
401
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:54
402
+ msgid "Customize"
403
+ msgstr ""
404
+
405
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:68
406
+ msgid "Custom stylesheets"
407
+ msgstr ""
408
+
409
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:81
410
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:160
411
+ msgid "Edit this style"
412
+ msgstr ""
413
+
414
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:83
415
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:162
416
+ #: views/SlideshowPluginPostType/slides.php:137
417
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:46
418
+ msgid "Edit"
419
+ msgstr "Editar"
420
+
421
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:90
422
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:169
423
+ msgid "Delete this style"
424
+ msgstr ""
425
+
426
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:92
427
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:171
428
+ msgid "Delete"
429
+ msgstr ""
430
+
431
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:102
432
+ msgid "Click 'Customize' to create a new custom stylesheet."
433
+ msgstr ""
434
+
435
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:118
436
+ msgid "Select a stylesheet from the left to start customizing it."
437
+ msgstr ""
438
+
439
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:127
440
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:180
441
+ #: views/SlideshowPluginPostType/slides.php:58
442
+ #: views/SlideshowPluginPostType/slides.php:143
443
+ #: views/SlideshowPluginPostType/slides.php:195
444
+ #: views/SlideshowPluginPostType/slides.php:263
445
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:54
446
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:12
447
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:92
448
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:29
449
+ #: views/SlideshowPluginWidget/form.php:2
450
+ msgid "Title"
451
+ msgstr "Título"
452
+
453
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:136
454
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:188
455
+ msgid "Style"
456
+ msgstr "Style"
457
+
458
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:11
459
+ msgid "Note"
460
+ msgstr ""
461
+
462
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:18
463
+ #, php-format
464
+ msgid ""
465
+ "The settings set on this page apply only to newly created slideshows and "
466
+ "therefore do not alter any existing ones. To adapt a slideshow's settings, "
467
+ "%sclick here.%s"
468
+ msgstr ""
469
+
470
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:30
471
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:16
472
+ msgid "Default Slideshow Settings"
473
+ msgstr ""
474
+
475
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:43
476
+ #: views/SlideshowPluginPostType/settings.php:12
477
+ msgid "settings"
478
+ msgstr "Configuración"
479
+
480
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:80
481
+ msgid "Default Slideshow Stylesheet"
482
+ msgstr ""
483
+
484
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:15
485
+ msgid "User Capabilities"
486
+ msgstr ""
487
+
488
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:17
489
+ msgid "Custom Styles"
490
+ msgstr ""
491
+
492
+ #: views/SlideshowPluginGeneralSettings/user-capabilities.php:8
493
+ msgid "Add slideshows"
494
+ msgstr ""
495
+
496
+ #: views/SlideshowPluginGeneralSettings/user-capabilities.php:9
497
+ msgid "Edit slideshows"
498
+ msgstr ""
499
+
500
+ #: views/SlideshowPluginGeneralSettings/user-capabilities.php:10
501
+ msgid "Delete slideshows"
502
+ msgstr ""
503
+
504
+ #: views/SlideshowPluginGeneralSettings/user-capabilities.php:18
505
+ msgid "Select the user roles that will able to perform certain actions."
506
+ msgstr ""
507
+
508
+ #: views/SlideshowPluginGeneralSettings/user-capabilities.php:35
509
+ msgid "Untitled role"
510
+ msgstr ""
511
+
512
+ #: views/SlideshowPluginPostType/information.php:1
513
+ msgid ""
514
+ "To use this slideshow in your website either add this piece of shortcode to "
515
+ "your posts or pages"
516
+ msgstr ""
517
+ "Para utilizar estas diapositivas en la página, copia este código y pégalo en "
518
+ "el editor de la página o entrada"
519
+
520
+ #: views/SlideshowPluginPostType/information.php:5
521
+ msgid ""
522
+ "Or add this piece of code to where ever in your website you want to place "
523
+ "the slideshow"
524
+ msgstr "O agrega este código en tu tema"
525
+
526
+ #: views/SlideshowPluginPostType/information.php:9
527
+ #, php-format
528
+ msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
529
+ msgstr "Ve al %sárea de widgets%s y muestra las Diapositivas como Widget"
530
+
531
+ #: views/SlideshowPluginPostType/settings.php:26
532
+ #: views/SlideshowPluginPostType/style-settings.php:11
533
+ msgid "Default"
534
+ msgstr "Por defecto"
535
+
536
+ #: views/SlideshowPluginPostType/slides.php:53
537
+ #: views/SlideshowPluginPostType/slides.php:190
538
+ #: views/SlideshowPluginSlideInserter/insert-text-button.php:1
539
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:6
540
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:23
541
+ msgid "Text slide"
542
+ msgstr "Diapositiva de Texto"
543
+
544
+ #: views/SlideshowPluginPostType/slides.php:60
545
+ #: views/SlideshowPluginPostType/slides.php:149
546
+ #: views/SlideshowPluginPostType/slides.php:197
547
+ #: views/SlideshowPluginPostType/slides.php:269
548
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:61
549
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:15
550
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:99
551
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:32
552
+ msgid "Description"
553
+ msgstr "Descripción"
554
+
555
+ #: views/SlideshowPluginPostType/slides.php:62
556
+ #: views/SlideshowPluginPostType/slides.php:199
557
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:21
558
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:38
559
+ msgid "Background color"
560
+ msgstr "Color de fondo"
561
+
562
+ #: views/SlideshowPluginPostType/slides.php:67
563
+ #: views/SlideshowPluginPostType/slides.php:154
564
+ #: views/SlideshowPluginPostType/slides.php:204
565
+ #: views/SlideshowPluginPostType/slides.php:274
566
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:68
567
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:28
568
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:106
569
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:45
570
+ msgid "URL"
571
+ msgstr "URL"
572
+
573
+ #: views/SlideshowPluginPostType/slides.php:69
574
+ #: views/SlideshowPluginPostType/slides.php:156
575
+ #: views/SlideshowPluginPostType/slides.php:206
576
+ #: views/SlideshowPluginPostType/slides.php:276
577
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:71
578
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:31
579
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:109
580
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:48
581
+ msgid "Open URL in"
582
+ msgstr ""
583
+
584
+ #: views/SlideshowPluginPostType/slides.php:71
585
+ #: views/SlideshowPluginPostType/slides.php:158
586
+ #: views/SlideshowPluginPostType/slides.php:208
587
+ #: views/SlideshowPluginPostType/slides.php:278
588
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:73
589
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:33
590
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:111
591
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:50
592
+ msgid "Same window"
593
+ msgstr "Misma ventana"
594
+
595
+ #: views/SlideshowPluginPostType/slides.php:72
596
+ #: views/SlideshowPluginPostType/slides.php:159
597
+ #: views/SlideshowPluginPostType/slides.php:209
598
+ #: views/SlideshowPluginPostType/slides.php:279
599
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:74
600
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:34
601
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:112
602
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:51
603
+ msgid "New window"
604
+ msgstr "Ventana nueva"
605
+
606
+ #: views/SlideshowPluginPostType/slides.php:89
607
+ #: views/SlideshowPluginPostType/slides.php:229
608
+ #: views/SlideshowPluginSlideInserter/insert-video-button.php:1
609
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:54
610
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:13
611
+ msgid "Video slide"
612
+ msgstr "Diapositiva de Video"
613
+
614
+ #: views/SlideshowPluginPostType/slides.php:94
615
+ #: views/SlideshowPluginPostType/slides.php:234
616
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:60
617
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:19
618
+ msgid "Youtube Video ID"
619
+ msgstr "Video de YouTube"
620
+
621
+ #: views/SlideshowPluginPostType/slides.php:132
622
+ #: views/SlideshowPluginPostType/slides.php:254
623
+ #: views/SlideshowPluginSlideInserter/insert-image-button.php:1
624
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:40
625
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:80
626
+ msgid "Image slide"
627
+ msgstr "Diapositiva de Imagen"
628
+
629
+ #: views/SlideshowPluginPostType/slides.php:170
630
+ msgid ""
631
+ "An error occurred while loading this slide, and it will not be present in "
632
+ "the slideshow"
633
+ msgstr ""
634
+ "Ha ocurrido un error miestras se cargaba esta diapositiva y no puede ser "
635
+ "presentada"
636
+
637
+ #: views/SlideshowPluginPostType/slides.php:176
638
+ #: views/SlideshowPluginPostType/slides.php:217
639
+ #: views/SlideshowPluginPostType/slides.php:242
640
+ #: views/SlideshowPluginPostType/slides.php:288
641
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:83
642
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:42
643
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:68
644
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:121
645
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:59
646
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:27
647
+ msgid "Delete slide"
648
+ msgstr "Borrar diapositiva"
649
+
650
+ #: views/SlideshowPluginPostType/style-settings.php:22
651
+ #, php-format
652
+ msgid "Custom styles can be created and customized %shere%s."
653
+ msgstr ""
654
+
655
+ #: views/SlideshowPluginPostType/support-plugin.php:3
656
+ msgid "Help to keep this plugin free!"
657
+ msgstr "¡Ayuda a que este plugin sea gratis!"
658
+
659
+ #: views/SlideshowPluginPostType/support-plugin.php:6
660
+ msgid ""
661
+ "In order to keep you provided with the newest features, forum support, and "
662
+ "bug-fixes, a lot of motivation is required. Therefore I'm kindly asking you "
663
+ "to consider making a small donation to the plugin or rating it as 5-stars on "
664
+ "Wordpress.org. Thank you in advance!"
665
+ msgstr ""
666
+ "Con el fin de mantenerlo siempre con las características más recientes, el "
667
+ "apoyo foro, y correcciones de errores, mucha motivación es necesaria. Por lo "
668
+ "tanto estoy pidiendo amablemente que consideren hacer una pequeña donación "
669
+ "al plugin o que califiquen como 5 estrellas en Wordpress.org. ¡Gracias de "
670
+ "antemano!"
671
+
672
+ #: views/SlideshowPluginPostType/support-plugin.php:15
673
+ msgid "Rate on Wordpress.org"
674
+ msgstr "Calificar en Wordpress.org"
675
+
676
+ #: views/SlideshowPluginPostType/support-plugin.php:24
677
+ msgid "Frequently Asked Questions (FAQ)"
678
+ msgstr ""
679
+
680
+ #: views/SlideshowPluginPostType/support-plugin.php:33
681
+ msgid "Questions / Suggestions"
682
+ msgstr "Preguntas / Sugerencias"
683
+
684
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
685
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
686
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
687
+ msgid "Insert a Slideshow"
688
+ msgstr "Insertar una Diapositiva"
689
+
690
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
691
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
692
+ msgid "Insert Slideshow"
693
+ msgstr "Insertar Diapositiva"
694
+
695
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
696
+ msgid "Select a slideshow"
697
+ msgstr "Seleccionar una diapositiva"
698
+
699
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
700
+ #: views/SlideshowPluginWidget/form.php:12
701
+ msgid "Untitled slideshow"
702
+ msgstr "Diapositiva sin título"
703
+
704
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
705
+ msgid "Cancel"
706
+ msgstr "Cancelar"
707
+
708
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
709
+ #, php-format
710
+ msgid ""
711
+ "It seems you haven't created any slideshows yet. %sYou can create a "
712
+ "slideshow here!%s"
713
+ msgstr ""
714
+ "Parece que no has creado ninguna diapositiva aún. %s¡Puedes crear una aquí!%s"
715
+
716
+ #: views/SlideshowPluginSlideInserter/search-popup.php:6
717
+ msgid "Search"
718
+ msgstr "Buscar"
719
+
720
+ #: views/SlideshowPluginSlideInserter/search-popup.php:7
721
+ msgid "Search images by title or ID"
722
+ msgstr "Buscar imágenes por título o ID"
723
+
724
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:18
725
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:35
726
+ msgid "Text color"
727
+ msgstr ""
728
+
729
+ #: views/SlideshowPluginUpload/upload-button.php:1
730
+ msgid "Upload/Manage Images"
731
+ msgstr "Cargar/Administrar Imágenes"
732
+
733
+ #: views/SlideshowPluginWidget/form.php:9
734
+ msgid "Random Slideshow"
735
+ msgstr "Diapositivas Aleatorias"
736
+
737
+ #~ msgid "light"
738
+ #~ msgstr "clair"
739
+
740
+ #~ msgid "slide"
741
+ #~ msgstr "diapo"
742
+
743
+ #~ msgid "Custom style editor (Does not work with a Strict Doctype)"
744
+ #~ msgstr "Aangepaste stijl bewerker (Werkt niet met een Strict Doctype)"
745
+
746
+ #~ msgid "Has the Slideshow plugin helped you?"
747
+ #~ msgstr "Heeft de Slideshow plugin je geholpen?"
748
+
749
+ #~ msgid "Help it back!"
750
+ #~ msgstr "Help hem terug!"
751
+
752
+ #~ msgid ""
753
+ #~ "If this plugin has filled you with happiness, please support the upkeep "
754
+ #~ "of the plugin by rating it on Wordpress, posting a suggestion for "
755
+ #~ "improvement on the support forum, or making a donation."
756
+ #~ msgstr ""
757
+ #~ "Als deze plugin je met blijdschap heeft vervuld, zou ik het enorm "
758
+ #~ "waarderen als je de plugin wilt beoordelen op Wordpress, een suggestie "
759
+ #~ "wilt maken voor verbetering, of een donatie doen wilt."
760
+
761
+ #~ msgid "Click on an image to insert it as a slide"
762
+ #~ msgstr "Klik op een plaatje om deze in te voegen als slide"
763
+
764
+ #~ msgid "Width of the slideshow"
765
+ #~ msgstr "Breedte van de slideshow"
766
+
767
+ #~ msgid "Defaults to parent's width."
768
+ #~ msgstr "Standaard ingesteld op de breedte van het bovenliggende element."
769
+
770
+ #~ msgid "Send user to image URL on click"
771
+ #~ msgstr ""
772
+ #~ "Wanner de gebruiker op de afbeelding klikt, stuur hem naar de URL van het "
773
+ #~ "plaatje"
774
+
775
+ #~ msgid "Leave any field open to use default value."
776
+ #~ msgstr "Een veld dat open wordt gelaten neemt de standaardwaarde aan."
 
 
languages/slideshow-plugin-fr_FR.mo CHANGED
Binary file
languages/slideshow-plugin-fr_FR.po CHANGED
@@ -1,777 +1,775 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Slideshow Plugin\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-02-01 15:06+0100\n"
6
- "PO-Revision-Date: 2013-02-01 15:06+0100\n"
7
- "Last-Translator: Murat Demir <demir.murat1@gmail.com>\n"
8
- "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
- "Language: fr_FR\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: _e;__\n"
14
- "X-Poedit-Basepath: ../\n"
15
- "X-Generator: Poedit 1.5.4\n"
16
- "X-Poedit-SourceCharset: UTF-8\n"
17
- "X-Poedit-SearchPath-0: .\n"
18
-
19
- #: classes/SlideshowPluginGeneralSettings.php:64
20
- #: classes/SlideshowPluginGeneralSettings.php:65
21
- msgid "General Settings"
22
- msgstr ""
23
-
24
- #: classes/SlideshowPluginGeneralSettings.php:142
25
- msgid "New"
26
- msgstr ""
27
-
28
- #: classes/SlideshowPluginGeneralSettings.php:143
29
- msgid "Are you sure you want to delete this custom style?"
30
- msgstr ""
31
-
32
- #: classes/SlideshowPluginGeneralSettings.php:162
33
- #: classes/SlideshowPluginInstaller.php:388
34
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:6
35
- msgid "Light"
36
- msgstr "Clair"
37
-
38
- #: classes/SlideshowPluginGeneralSettings.php:163
39
- #: classes/SlideshowPluginInstaller.php:388
40
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:7
41
- msgid "Dark"
42
- msgstr "Sombre"
43
-
44
- #: classes/SlideshowPluginGeneralSettings.php:267
45
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:49
46
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:131
47
- msgid "Untitled"
48
- msgstr ""
49
-
50
- #: classes/SlideshowPluginInstaller.php:385
51
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:374
52
- msgid "Yes"
53
- msgstr "Oui"
54
-
55
- #: classes/SlideshowPluginInstaller.php:386
56
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:375
57
- msgid "No"
58
- msgstr "Non"
59
-
60
- #: classes/SlideshowPluginInstaller.php:388
61
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:475
62
- msgid "The style used for this slideshow"
63
- msgstr "Le style utilisé pour ce diaporama"
64
-
65
- #: classes/SlideshowPluginInstaller.php:388
66
- msgid "Custom"
67
- msgstr "Personnalisé"
68
-
69
- #: classes/SlideshowPluginInstaller.php:389
70
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:114
71
- msgid "Custom style editor"
72
- msgstr "Editeur de style personnalisé"
73
-
74
- #: classes/SlideshowPluginInstaller.php:390
75
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
76
- msgid "Animation used for transition between slides"
77
- msgstr "Animation utilisée pour la transition entre diapos"
78
-
79
- #: classes/SlideshowPluginInstaller.php:390
80
- msgid "Slide"
81
- msgstr "Diapo"
82
-
83
- #: classes/SlideshowPluginInstaller.php:390
84
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
85
- msgid "Fade"
86
- msgstr "Effacement"
87
-
88
- #: classes/SlideshowPluginInstaller.php:390
89
- #: classes/SlideshowPluginInstaller.php:391
90
- #: classes/SlideshowPluginInstaller.php:392
91
- #: classes/SlideshowPluginInstaller.php:393
92
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
93
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:417
94
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:418
95
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
96
- msgid "Animation"
97
- msgstr "Animation"
98
-
99
- #: classes/SlideshowPluginInstaller.php:391
100
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:417
101
- msgid "Number of seconds the slide takes to slide in"
102
- msgstr "Nombres de secondes pour que la diapo glisse"
103
-
104
- #: classes/SlideshowPluginInstaller.php:392
105
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:418
106
- msgid "Number of seconds the description takes to slide in"
107
- msgstr "Nombres de secondes pour que la description glisse"
108
-
109
- #: classes/SlideshowPluginInstaller.php:393
110
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
111
- msgid "Seconds between changing slides"
112
- msgstr "Secondes entre le changement de diapos"
113
-
114
- #: classes/SlideshowPluginInstaller.php:394
115
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:420
116
- msgid "Number of slides to fit into one slide"
117
- msgstr "Nombre de diapositives à placer dans un diaporama"
118
-
119
- #: classes/SlideshowPluginInstaller.php:394
120
- #: classes/SlideshowPluginInstaller.php:395
121
- #: classes/SlideshowPluginInstaller.php:396
122
- #: classes/SlideshowPluginInstaller.php:397
123
- #: classes/SlideshowPluginInstaller.php:398
124
- #: classes/SlideshowPluginInstaller.php:399
125
- #: classes/SlideshowPluginInstaller.php:400
126
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:420
127
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
128
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:422
129
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
130
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:424
131
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
132
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:426
133
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:427
134
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
135
- msgid "Display"
136
- msgstr "Affichage"
137
-
138
- #: classes/SlideshowPluginInstaller.php:395
139
- msgid "Width of the slideshow, set to parent&#39;s width on 0"
140
- msgstr "Largeur du diaporama, s'adapte au parent lorsqu'égale à 0"
141
-
142
- #: classes/SlideshowPluginInstaller.php:396
143
- msgid "Height of the slideshow"
144
- msgstr "Hauteur du diaporama"
145
-
146
- #: classes/SlideshowPluginInstaller.php:397
147
- msgid "Height of the description boxes"
148
- msgstr "Hauteur de la boite de description"
149
-
150
- #: classes/SlideshowPluginInstaller.php:398
151
- msgid "Fit image into slide (stretching it)"
152
- msgstr "Adapter l'image dans la diapo (en l'étirant)"
153
-
154
- #: classes/SlideshowPluginInstaller.php:399
155
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:427
156
- msgid "Show title and description"
157
- msgstr "Montrer le titre et la description"
158
-
159
- #: classes/SlideshowPluginInstaller.php:400
160
- msgid "Hide description box, it will pop up when a mouse hovers over the slide"
161
- msgstr ""
162
- "Masquer le champ de description, ne le faire apparaître que lorsque le "
163
- "curseur de la souris passe sur la diapositive"
164
-
165
- #: classes/SlideshowPluginInstaller.php:401
166
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:430
167
- msgid "Automatically slide to the next slide"
168
- msgstr "Passer automatiquement à la diapo suivante"
169
-
170
- #: classes/SlideshowPluginInstaller.php:401
171
- #: classes/SlideshowPluginInstaller.php:402
172
- #: classes/SlideshowPluginInstaller.php:403
173
- #: classes/SlideshowPluginInstaller.php:404
174
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:430
175
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:431
176
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:432
177
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:433
178
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:434
179
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:435
180
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:436
181
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:437
182
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:438
183
- msgid "Control"
184
- msgstr "Controle"
185
-
186
- #: classes/SlideshowPluginInstaller.php:402
187
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:431
188
- msgid "Return to the beginning of the slideshow after last slide"
189
- msgstr "Retour au début du diaporama après la dernière diapositive"
190
-
191
- #: classes/SlideshowPluginInstaller.php:403
192
- msgid "Activate buttons (so the user can scroll through the slides)"
193
- msgstr ""
194
- "Activer les boutons ( l'utilisateur pourra naviger à travers les diapos)"
195
-
196
- #: classes/SlideshowPluginInstaller.php:404
197
- msgid "Show control panel (play and pause button)"
198
- msgstr "Montrer le panneau de contrôle (bouton play et pause) "
199
-
200
- #: classes/SlideshowPluginPostType.php:37
201
- msgid "Slideshows"
202
- msgstr "Diaporamas"
203
-
204
- #: classes/SlideshowPluginPostType.php:38
205
- #: views/SlideshowPluginWidget/form.php:7
206
- msgid "Slideshow"
207
- msgstr "Diaporama"
208
-
209
- #: classes/SlideshowPluginPostType.php:39
210
- msgid "Add New Slideshow"
211
- msgstr "Ajouter un nouveau diaporama"
212
-
213
- #: classes/SlideshowPluginPostType.php:40
214
- msgid "Edit slideshow"
215
- msgstr "Modifier le diaporama"
216
-
217
- #: classes/SlideshowPluginPostType.php:41
218
- msgid "New slideshow"
219
- msgstr "Nouveau diaporama"
220
-
221
- #: classes/SlideshowPluginPostType.php:42
222
- msgid "View slideshow"
223
- msgstr "Voir le diaporama"
224
-
225
- #: classes/SlideshowPluginPostType.php:43
226
- msgid "Search slideshows"
227
- msgstr "Chercher un diaporama"
228
-
229
- #: classes/SlideshowPluginPostType.php:44
230
- #: classes/SlideshowPluginPostType.php:45
231
- msgid "No slideshows found"
232
- msgstr "Aucun diaporama trouvé"
233
-
234
- #: classes/SlideshowPluginPostType.php:126
235
- msgid "Information"
236
- msgstr "Information"
237
-
238
- #: classes/SlideshowPluginPostType.php:135
239
- msgid "Slides List"
240
- msgstr "Liste de diapos"
241
-
242
- #: classes/SlideshowPluginPostType.php:144
243
- msgid "Slideshow Style"
244
- msgstr "Style du diaporama"
245
-
246
- #: classes/SlideshowPluginPostType.php:153
247
- msgid "Slideshow Settings"
248
- msgstr "Réglages du diaporama"
249
-
250
- #: classes/SlideshowPluginPostType.php:203
251
- #: classes/SlideshowPluginSlideInserter.php:156
252
- #: views/SlideshowPluginPostType/slides.php:2
253
- msgid "Insert"
254
- msgstr "Insérer"
255
-
256
- #: classes/SlideshowPluginPostType.php:211
257
- #: views/SlideshowPluginPostType/slides.php:9
258
- msgid "Add slides to this slideshow by using one of the buttons above."
259
- msgstr ""
260
-
261
- #: classes/SlideshowPluginShortcode.php:132
262
- msgid "No slideshow selected."
263
- msgstr "Aucun diaporama choisi"
264
-
265
- #: classes/SlideshowPluginSlideInserter.php:165
266
- msgid "Load more results"
267
- msgstr "Afficher plus de résultats"
268
-
269
- #: classes/SlideshowPluginSlideInserter.php:174
270
- msgid "No images were found, click here to upload some."
271
- msgstr "Aucune image trouvée, cliquer ici pour en charger"
272
-
273
- #: classes/SlideshowPluginSlideInserter.php:243
274
- msgid "Are you sure you want to delete this slide?"
275
- msgstr "Etes-vous sur de supprimer cette diapo ? "
276
-
277
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
278
- msgid "Slide Left"
279
- msgstr ""
280
-
281
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
282
- msgid "Slide Right"
283
- msgstr ""
284
-
285
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
286
- msgid "Slide Up"
287
- msgstr ""
288
-
289
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
290
- msgid "Slide Down"
291
- msgstr ""
292
-
293
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
294
- msgid "Direct Fade"
295
- msgstr ""
296
-
297
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
298
- msgid "Random Animation"
299
- msgstr ""
300
-
301
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
302
- msgid "Maximum width. When maximum width is 0, maximum width is ignored"
303
- msgstr ""
304
-
305
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:422
306
- msgid ""
307
- "Shrink slideshow's height when width shrinks (Fixed height can be defined "
308
- "when setting this value to 'No')"
309
- msgstr ""
310
-
311
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
312
- msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
313
- msgstr ""
314
-
315
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
316
- msgid "More info"
317
- msgstr ""
318
-
319
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
320
- #, php-format
321
- msgid ""
322
- "Proportional relationship%s between slideshow's width and height (width:"
323
- "height)"
324
- msgstr ""
325
-
326
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:424
327
- msgid "Slideshow's height"
328
- msgstr ""
329
-
330
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
331
- msgid "Fit image into slide (Stretch image)"
332
- msgstr ""
333
-
334
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:426
335
- msgid ""
336
- "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
337
- msgstr ""
338
-
339
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
340
- msgid "Hide description box, pop up when mouse hovers over"
341
- msgstr ""
342
-
343
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:432
344
- msgid "Pause slideshow when mouse hovers over"
345
- msgstr ""
346
-
347
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:433
348
- msgid "Activate navigation buttons"
349
- msgstr ""
350
-
351
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:434
352
- msgid "Hide navigation buttons, show when mouse hovers over"
353
- msgstr ""
354
-
355
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:435
356
- msgid "Activate pagination"
357
- msgstr ""
358
-
359
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:436
360
- msgid "Hide pagination, show when mouse hovers over"
361
- msgstr ""
362
-
363
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:437
364
- msgid "Activate control panel (play and pause button)"
365
- msgstr ""
366
-
367
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:438
368
- msgid "Hide control panel, show when mouse hovers over"
369
- msgstr ""
370
-
371
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:439
372
- msgid "Randomize slides"
373
- msgstr "Diapos aléatoires"
374
-
375
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:439
376
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:440
377
- msgid "Miscellaneous"
378
- msgstr "Divers"
379
-
380
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:440
381
- #, php-format
382
- msgid "Avoid content filter (disable if '%s' is shown)"
383
- msgstr "Éviter filtre de contenu (désactiver si '%s' est affiché)"
384
-
385
- #: classes/SlideshowPluginWidget.php:23
386
- msgid "Enables you to show your slideshows in the widget area of your website."
387
- msgstr "Afficher vos présentations dans la zone de widgets de votre site web."
388
-
389
- #: classes/SlideshowPluginWidget.php:29
390
- msgid "Slideshow Widget"
391
- msgstr "Widget diaporama"
392
-
393
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:38
394
- msgid "Default stylesheets"
395
- msgstr ""
396
-
397
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:52
398
- msgid "Create a new custom style from this style"
399
- msgstr ""
400
-
401
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:54
402
- msgid "Customize"
403
- msgstr ""
404
-
405
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:68
406
- msgid "Custom stylesheets"
407
- msgstr ""
408
-
409
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:81
410
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:160
411
- msgid "Edit this style"
412
- msgstr ""
413
-
414
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:83
415
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:162
416
- #: views/SlideshowPluginPostType/slides.php:137
417
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:46
418
- msgid "Edit"
419
- msgstr "Modifier"
420
-
421
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:90
422
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:169
423
- msgid "Delete this style"
424
- msgstr ""
425
-
426
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:92
427
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:171
428
- msgid "Delete"
429
- msgstr ""
430
-
431
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:102
432
- msgid "Click 'Customize' to create a new custom stylesheet."
433
- msgstr ""
434
-
435
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:118
436
- msgid "Select a stylesheet from the left to start customizing it."
437
- msgstr ""
438
-
439
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:127
440
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:180
441
- #: views/SlideshowPluginPostType/slides.php:58
442
- #: views/SlideshowPluginPostType/slides.php:143
443
- #: views/SlideshowPluginPostType/slides.php:195
444
- #: views/SlideshowPluginPostType/slides.php:263
445
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:54
446
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:12
447
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:86
448
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:29
449
- #: views/SlideshowPluginWidget/form.php:2
450
- msgid "Title"
451
- msgstr "Titre"
452
-
453
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:136
454
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:188
455
- msgid "Style"
456
- msgstr "Style"
457
-
458
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:11
459
- msgid "Note"
460
- msgstr ""
461
-
462
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:18
463
- #, php-format
464
- msgid ""
465
- "The settings set on this page apply only to newly created slideshows and "
466
- "therefore do not alter any existing ones. To adapt a slideshow's settings, "
467
- "%sclick here.%s"
468
- msgstr ""
469
-
470
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:30
471
- #: views/SlideshowPluginGeneralSettings/general-settings.php:16
472
- msgid "Default Slideshow Settings"
473
- msgstr ""
474
-
475
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:43
476
- #: views/SlideshowPluginPostType/settings.php:12
477
- msgid "settings"
478
- msgstr "réglages"
479
-
480
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:80
481
- msgid "Default Slideshow Stylesheet"
482
- msgstr ""
483
-
484
- #: views/SlideshowPluginGeneralSettings/general-settings.php:15
485
- msgid "User Capabilities"
486
- msgstr ""
487
-
488
- #: views/SlideshowPluginGeneralSettings/general-settings.php:17
489
- msgid "Custom Styles"
490
- msgstr ""
491
-
492
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:8
493
- msgid "Add slideshows"
494
- msgstr ""
495
-
496
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:9
497
- msgid "Edit slideshows"
498
- msgstr ""
499
-
500
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:10
501
- msgid "Delete slideshows"
502
- msgstr ""
503
-
504
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:18
505
- msgid "Select the user roles that will able to perform certain actions."
506
- msgstr ""
507
-
508
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:35
509
- msgid "Untitled role"
510
- msgstr ""
511
-
512
- #: views/SlideshowPluginPostType/information.php:1
513
- msgid ""
514
- "To use this slideshow in your website either add this piece of shortcode to "
515
- "your posts or pages"
516
- msgstr ""
517
- "Pour utiliser ce diaporama sur votre site web, ajoutez ce morceau de code "
518
- "dans vos articles ou pages"
519
-
520
- #: views/SlideshowPluginPostType/information.php:5
521
- msgid ""
522
- "Or add this piece of code to where ever in your website you want to place "
523
- "the slideshow"
524
- msgstr ""
525
- "Ou ajoutez ce morceau de code là où vous souhaitez afficher le diaporama"
526
-
527
- #: views/SlideshowPluginPostType/information.php:9
528
- #, php-format
529
- msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
530
- msgstr ""
531
-
532
- #: views/SlideshowPluginPostType/settings.php:26
533
- #: views/SlideshowPluginPostType/style-settings.php:11
534
- msgid "Default"
535
- msgstr "Par défaut"
536
-
537
- #: views/SlideshowPluginPostType/slides.php:53
538
- #: views/SlideshowPluginPostType/slides.php:190
539
- #: views/SlideshowPluginSlideInserter/insert-text-button.php:1
540
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:6
541
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:23
542
- msgid "Text slide"
543
- msgstr "Diapositive texte"
544
-
545
- #: views/SlideshowPluginPostType/slides.php:60
546
- #: views/SlideshowPluginPostType/slides.php:149
547
- #: views/SlideshowPluginPostType/slides.php:197
548
- #: views/SlideshowPluginPostType/slides.php:269
549
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:62
550
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:15
551
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:92
552
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:32
553
- msgid "Description"
554
- msgstr "Description"
555
-
556
- #: views/SlideshowPluginPostType/slides.php:62
557
- #: views/SlideshowPluginPostType/slides.php:199
558
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:21
559
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:38
560
- msgid "Background color"
561
- msgstr "Couleur du fond"
562
-
563
- #: views/SlideshowPluginPostType/slides.php:67
564
- #: views/SlideshowPluginPostType/slides.php:154
565
- #: views/SlideshowPluginPostType/slides.php:204
566
- #: views/SlideshowPluginPostType/slides.php:274
567
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:69
568
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:27
569
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:97
570
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:45
571
- msgid "URL"
572
- msgstr "URL"
573
-
574
- #: views/SlideshowPluginPostType/slides.php:69
575
- #: views/SlideshowPluginPostType/slides.php:156
576
- #: views/SlideshowPluginPostType/slides.php:206
577
- #: views/SlideshowPluginPostType/slides.php:276
578
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:72
579
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:29
580
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:99
581
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:48
582
- msgid "Open URL in"
583
- msgstr ""
584
-
585
- #: views/SlideshowPluginPostType/slides.php:71
586
- #: views/SlideshowPluginPostType/slides.php:158
587
- #: views/SlideshowPluginPostType/slides.php:208
588
- #: views/SlideshowPluginPostType/slides.php:278
589
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:74
590
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:31
591
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:101
592
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:50
593
- msgid "Same window"
594
- msgstr "Même fenetre"
595
-
596
- #: views/SlideshowPluginPostType/slides.php:72
597
- #: views/SlideshowPluginPostType/slides.php:159
598
- #: views/SlideshowPluginPostType/slides.php:209
599
- #: views/SlideshowPluginPostType/slides.php:279
600
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:75
601
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:32
602
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:102
603
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:51
604
- msgid "New window"
605
- msgstr "Nouvelle fenetre"
606
-
607
- #: views/SlideshowPluginPostType/slides.php:89
608
- #: views/SlideshowPluginPostType/slides.php:229
609
- #: views/SlideshowPluginSlideInserter/insert-video-button.php:1
610
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:52
611
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:13
612
- msgid "Video slide"
613
- msgstr "Diapositive vidéo"
614
-
615
- #: views/SlideshowPluginPostType/slides.php:94
616
- #: views/SlideshowPluginPostType/slides.php:234
617
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:57
618
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:19
619
- msgid "Youtube Video ID"
620
- msgstr "ID Vidéo Youtube"
621
-
622
- #: views/SlideshowPluginPostType/slides.php:132
623
- #: views/SlideshowPluginPostType/slides.php:254
624
- #: views/SlideshowPluginSlideInserter/insert-image-button.php:1
625
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:40
626
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:77
627
- msgid "Image slide"
628
- msgstr "Diapositive image"
629
-
630
- #: views/SlideshowPluginPostType/slides.php:170
631
- msgid ""
632
- "An error occurred while loading this slide, and it will not be present in "
633
- "the slideshow"
634
- msgstr ""
635
- "Une erreur s'est produite lors du chargement de cette diapositive, et il ne "
636
- "sera pas présent dans le diaporama"
637
-
638
- #: views/SlideshowPluginPostType/slides.php:176
639
- #: views/SlideshowPluginPostType/slides.php:217
640
- #: views/SlideshowPluginPostType/slides.php:242
641
- #: views/SlideshowPluginPostType/slides.php:288
642
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:84
643
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:40
644
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:65
645
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:111
646
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:59
647
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:27
648
- msgid "Delete slide"
649
- msgstr "Supprimer la diapositive"
650
-
651
- #: views/SlideshowPluginPostType/style-settings.php:22
652
- #, php-format
653
- msgid "Custom styles can be created and customized %shere%s."
654
- msgstr ""
655
-
656
- #: views/SlideshowPluginPostType/support-plugin.php:3
657
- msgid "Help to keep this plugin free!"
658
- msgstr "Aidez à maintenir ce plugin gratuit"
659
-
660
- #: views/SlideshowPluginPostType/support-plugin.php:6
661
- msgid ""
662
- "In order to keep you provided with the newest features, forum support, and "
663
- "bug-fixes, a lot of motivation is required. Therefore I'm kindly asking you "
664
- "to consider making a small donation to the plugin or rating it as 5-stars on "
665
- "Wordpress.org. Thank you in advance!"
666
- msgstr ""
667
- "Améliorer ce plugin, maintenir le forum d'aide et pousser des corrections "
668
- "demande beaucoup de motivation. En conséquence, pouvez-vous envisager une "
669
- "petite donation ou alors attribuer 5 étoiles à ce plugin sur Wordpress.org. "
670
- "Merci à vous !"
671
-
672
- #: views/SlideshowPluginPostType/support-plugin.php:15
673
- msgid "Rate on Wordpress.org"
674
- msgstr "Evaluer sur Wordpress.org"
675
-
676
- #: views/SlideshowPluginPostType/support-plugin.php:24
677
- msgid "Frequently Asked Questions (FAQ)"
678
- msgstr ""
679
-
680
- #: views/SlideshowPluginPostType/support-plugin.php:33
681
- msgid "Questions / Suggestions"
682
- msgstr "Questions / Suggestions"
683
-
684
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
685
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
686
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
687
- msgid "Insert a Slideshow"
688
- msgstr "Insérer un diaporama"
689
-
690
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
691
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
692
- msgid "Insert Slideshow"
693
- msgstr "Insérer diaporama"
694
-
695
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
696
- msgid "Select a slideshow"
697
- msgstr "Sélectionner un diaporama"
698
-
699
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
700
- #: views/SlideshowPluginWidget/form.php:12
701
- msgid "Untitled slideshow"
702
- msgstr "Diaporama sans nom"
703
-
704
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
705
- msgid "Cancel"
706
- msgstr "Annuler"
707
-
708
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
709
- #, php-format
710
- msgid ""
711
- "It seems you haven't created any slideshows yet. %sYou can create a "
712
- "slideshow here!%s"
713
- msgstr ""
714
- "Il semble que vous n'avez pas encore crée de diaporama. %sVous pouvez le "
715
- "faire ici%s"
716
-
717
- #: views/SlideshowPluginSlideInserter/search-popup.php:6
718
- msgid "Search"
719
- msgstr "Recherche"
720
-
721
- #: views/SlideshowPluginSlideInserter/search-popup.php:7
722
- msgid "Search images by title or ID"
723
- msgstr "Chercher les images par titre ou ID"
724
-
725
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:18
726
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:35
727
- msgid "Text color"
728
- msgstr ""
729
-
730
- #: views/SlideshowPluginUpload/upload-button.php:1
731
- msgid "Upload/Manage Images"
732
- msgstr "Upload/Gestion des images"
733
-
734
- #: views/SlideshowPluginWidget/form.php:9
735
- msgid "Random Slideshow"
736
- msgstr "Diaporama aléatoire"
737
-
738
- #~ msgid "light"
739
- #~ msgstr "clair"
740
-
741
- #~ msgid "slide"
742
- #~ msgstr "diapo"
743
-
744
- #~ msgid "Custom style editor (Does not work with a Strict Doctype)"
745
- #~ msgstr "Aangepaste stijl bewerker (Werkt niet met een Strict Doctype)"
746
-
747
- #~ msgid "Has the Slideshow plugin helped you?"
748
- #~ msgstr "Heeft de Slideshow plugin je geholpen?"
749
-
750
- #~ msgid "Help it back!"
751
- #~ msgstr "Help hem terug!"
752
-
753
- #~ msgid ""
754
- #~ "If this plugin has filled you with happiness, please support the upkeep "
755
- #~ "of the plugin by rating it on Wordpress, posting a suggestion for "
756
- #~ "improvement on the support forum, or making a donation."
757
- #~ msgstr ""
758
- #~ "Als deze plugin je met blijdschap heeft vervuld, zou ik het enorm "
759
- #~ "waarderen als je de plugin wilt beoordelen op Wordpress, een suggestie "
760
- #~ "wilt maken voor verbetering, of een donatie doen wilt."
761
-
762
- #~ msgid "Click on an image to insert it as a slide"
763
- #~ msgstr "Klik op een plaatje om deze in te voegen als slide"
764
-
765
- #~ msgid "Width of the slideshow"
766
- #~ msgstr "Breedte van de slideshow"
767
-
768
- #~ msgid "Defaults to parent's width."
769
- #~ msgstr "Standaard ingesteld op de breedte van het bovenliggende element."
770
-
771
- #~ msgid "Send user to image URL on click"
772
- #~ msgstr ""
773
- #~ "Wanner de gebruiker op de afbeelding klikt, stuur hem naar de URL van het "
774
- #~ "plaatje"
775
-
776
- #~ msgid "Leave any field open to use default value."
777
- #~ msgstr "Een veld dat open wordt gelaten neemt de standaardwaarde aan."
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Slideshow Plugin\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-02-02 01:47+0100\n"
6
+ "PO-Revision-Date: 2013-02-02 01:47+0100\n"
7
+ "Last-Translator: Murat Demir <demir.murat1@gmail.com>\n"
8
+ "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
+ "Language: fr_FR\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-KeywordsList: _e;__\n"
14
+ "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.5.4\n"
16
+ "X-Poedit-SourceCharset: UTF-8\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: classes/SlideshowPluginGeneralSettings.php:64
20
+ #: classes/SlideshowPluginGeneralSettings.php:65
21
+ msgid "General Settings"
22
+ msgstr ""
23
+
24
+ #: classes/SlideshowPluginGeneralSettings.php:142
25
+ msgid "New"
26
+ msgstr ""
27
+
28
+ #: classes/SlideshowPluginGeneralSettings.php:143
29
+ msgid "Are you sure you want to delete this custom style?"
30
+ msgstr ""
31
+
32
+ #: classes/SlideshowPluginGeneralSettings.php:162
33
+ #: classes/SlideshowPluginInstaller.php:388
34
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:6
35
+ msgid "Light"
36
+ msgstr "Clair"
37
+
38
+ #: classes/SlideshowPluginGeneralSettings.php:163
39
+ #: classes/SlideshowPluginInstaller.php:388
40
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:7
41
+ msgid "Dark"
42
+ msgstr "Sombre"
43
+
44
+ #: classes/SlideshowPluginGeneralSettings.php:267
45
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:49
46
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:131
47
+ msgid "Untitled"
48
+ msgstr ""
49
+
50
+ #: classes/SlideshowPluginInstaller.php:385
51
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:374
52
+ msgid "Yes"
53
+ msgstr "Oui"
54
+
55
+ #: classes/SlideshowPluginInstaller.php:386
56
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:375
57
+ msgid "No"
58
+ msgstr "Non"
59
+
60
+ #: classes/SlideshowPluginInstaller.php:388
61
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:473
62
+ msgid "The style used for this slideshow"
63
+ msgstr "Le style utilisé pour ce diaporama"
64
+
65
+ #: classes/SlideshowPluginInstaller.php:388
66
+ msgid "Custom"
67
+ msgstr "Personnalisé"
68
+
69
+ #: classes/SlideshowPluginInstaller.php:389
70
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:114
71
+ msgid "Custom style editor"
72
+ msgstr "Editeur de style personnalisé"
73
+
74
+ #: classes/SlideshowPluginInstaller.php:390
75
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
76
+ msgid "Animation used for transition between slides"
77
+ msgstr "Animation utilisée pour la transition entre diapos"
78
+
79
+ #: classes/SlideshowPluginInstaller.php:390
80
+ msgid "Slide"
81
+ msgstr "Diapo"
82
+
83
+ #: classes/SlideshowPluginInstaller.php:390
84
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
85
+ msgid "Fade"
86
+ msgstr "Effacement"
87
+
88
+ #: classes/SlideshowPluginInstaller.php:390
89
+ #: classes/SlideshowPluginInstaller.php:391
90
+ #: classes/SlideshowPluginInstaller.php:392
91
+ #: classes/SlideshowPluginInstaller.php:393
92
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
93
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
94
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:417
95
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:418
96
+ msgid "Animation"
97
+ msgstr "Animation"
98
+
99
+ #: classes/SlideshowPluginInstaller.php:391
100
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
101
+ msgid "Number of seconds the slide takes to slide in"
102
+ msgstr "Nombres de secondes pour que la diapo glisse"
103
+
104
+ #: classes/SlideshowPluginInstaller.php:392
105
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:417
106
+ msgid "Number of seconds the description takes to slide in"
107
+ msgstr "Nombres de secondes pour que la description glisse"
108
+
109
+ #: classes/SlideshowPluginInstaller.php:393
110
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:418
111
+ msgid "Seconds between changing slides"
112
+ msgstr "Secondes entre le changement de diapos"
113
+
114
+ #: classes/SlideshowPluginInstaller.php:394
115
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
116
+ msgid "Number of slides to fit into one slide"
117
+ msgstr "Nombre de diapositives à placer dans un diaporama"
118
+
119
+ #: classes/SlideshowPluginInstaller.php:394
120
+ #: classes/SlideshowPluginInstaller.php:395
121
+ #: classes/SlideshowPluginInstaller.php:396
122
+ #: classes/SlideshowPluginInstaller.php:397
123
+ #: classes/SlideshowPluginInstaller.php:398
124
+ #: classes/SlideshowPluginInstaller.php:399
125
+ #: classes/SlideshowPluginInstaller.php:400
126
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
127
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:420
128
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
129
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:422
130
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
131
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:424
132
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
133
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:426
134
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:427
135
+ msgid "Display"
136
+ msgstr "Affichage"
137
+
138
+ #: classes/SlideshowPluginInstaller.php:395
139
+ msgid "Width of the slideshow, set to parent&#39;s width on 0"
140
+ msgstr "Largeur du diaporama, s'adapte au parent lorsqu'égale à 0"
141
+
142
+ #: classes/SlideshowPluginInstaller.php:396
143
+ msgid "Height of the slideshow"
144
+ msgstr "Hauteur du diaporama"
145
+
146
+ #: classes/SlideshowPluginInstaller.php:397
147
+ msgid "Height of the description boxes"
148
+ msgstr "Hauteur de la boite de description"
149
+
150
+ #: classes/SlideshowPluginInstaller.php:398
151
+ msgid "Fit image into slide (stretching it)"
152
+ msgstr "Adapter l'image dans la diapo (en l'étirant)"
153
+
154
+ #: classes/SlideshowPluginInstaller.php:399
155
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:426
156
+ msgid "Show title and description"
157
+ msgstr "Montrer le titre et la description"
158
+
159
+ #: classes/SlideshowPluginInstaller.php:400
160
+ msgid "Hide description box, it will pop up when a mouse hovers over the slide"
161
+ msgstr ""
162
+ "Masquer le champ de description, ne le faire apparaître que lorsque le "
163
+ "curseur de la souris passe sur la diapositive"
164
+
165
+ #: classes/SlideshowPluginInstaller.php:401
166
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
167
+ msgid "Automatically slide to the next slide"
168
+ msgstr "Passer automatiquement à la diapo suivante"
169
+
170
+ #: classes/SlideshowPluginInstaller.php:401
171
+ #: classes/SlideshowPluginInstaller.php:402
172
+ #: classes/SlideshowPluginInstaller.php:403
173
+ #: classes/SlideshowPluginInstaller.php:404
174
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
175
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:429
176
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:430
177
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:431
178
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:432
179
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:433
180
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:434
181
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:435
182
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:436
183
+ msgid "Control"
184
+ msgstr "Controle"
185
+
186
+ #: classes/SlideshowPluginInstaller.php:402
187
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:429
188
+ msgid "Return to the beginning of the slideshow after last slide"
189
+ msgstr "Retour au début du diaporama après la dernière diapositive"
190
+
191
+ #: classes/SlideshowPluginInstaller.php:403
192
+ msgid "Activate buttons (so the user can scroll through the slides)"
193
+ msgstr ""
194
+ "Activer les boutons ( l'utilisateur pourra naviger à travers les diapos)"
195
+
196
+ #: classes/SlideshowPluginInstaller.php:404
197
+ msgid "Show control panel (play and pause button)"
198
+ msgstr "Montrer le panneau de contrôle (bouton play et pause) "
199
+
200
+ #: classes/SlideshowPluginPostType.php:39
201
+ msgid "Slideshows"
202
+ msgstr "Diaporamas"
203
+
204
+ #: classes/SlideshowPluginPostType.php:40
205
+ #: views/SlideshowPluginWidget/form.php:7
206
+ msgid "Slideshow"
207
+ msgstr "Diaporama"
208
+
209
+ #: classes/SlideshowPluginPostType.php:41
210
+ msgid "Add New Slideshow"
211
+ msgstr "Ajouter un nouveau diaporama"
212
+
213
+ #: classes/SlideshowPluginPostType.php:42
214
+ msgid "Edit slideshow"
215
+ msgstr "Modifier le diaporama"
216
+
217
+ #: classes/SlideshowPluginPostType.php:43
218
+ msgid "New slideshow"
219
+ msgstr "Nouveau diaporama"
220
+
221
+ #: classes/SlideshowPluginPostType.php:44
222
+ msgid "View slideshow"
223
+ msgstr "Voir le diaporama"
224
+
225
+ #: classes/SlideshowPluginPostType.php:45
226
+ msgid "Search slideshows"
227
+ msgstr "Chercher un diaporama"
228
+
229
+ #: classes/SlideshowPluginPostType.php:46
230
+ #: classes/SlideshowPluginPostType.php:47
231
+ msgid "No slideshows found"
232
+ msgstr "Aucun diaporama trouvé"
233
+
234
+ #: classes/SlideshowPluginPostType.php:167
235
+ msgid "Information"
236
+ msgstr "Information"
237
+
238
+ #: classes/SlideshowPluginPostType.php:176
239
+ msgid "Slides List"
240
+ msgstr "Liste de diapos"
241
+
242
+ #: classes/SlideshowPluginPostType.php:185
243
+ msgid "Slideshow Style"
244
+ msgstr "Style du diaporama"
245
+
246
+ #: classes/SlideshowPluginPostType.php:194
247
+ msgid "Slideshow Settings"
248
+ msgstr "Réglages du diaporama"
249
+
250
+ #: classes/SlideshowPluginPostType.php:244
251
+ #: classes/SlideshowPluginSlideInserter.php:156
252
+ #: views/SlideshowPluginPostType/slides.php:2
253
+ msgid "Insert"
254
+ msgstr "Insérer"
255
+
256
+ #: classes/SlideshowPluginPostType.php:252
257
+ #: views/SlideshowPluginPostType/slides.php:9
258
+ msgid "Add slides to this slideshow by using one of the buttons above."
259
+ msgstr ""
260
+
261
+ #: classes/SlideshowPluginShortcode.php:132
262
+ msgid "No slideshow selected."
263
+ msgstr "Aucun diaporama choisi"
264
+
265
+ #: classes/SlideshowPluginSlideInserter.php:165
266
+ msgid "Load more results"
267
+ msgstr "Afficher plus de résultats"
268
+
269
+ #: classes/SlideshowPluginSlideInserter.php:174
270
+ msgid "No images were found, click here to upload some."
271
+ msgstr "Aucune image trouvée, cliquer ici pour en charger"
272
+
273
+ #: classes/SlideshowPluginSlideInserter.php:243
274
+ msgid "Are you sure you want to delete this slide?"
275
+ msgstr "Etes-vous sur de supprimer cette diapo ? "
276
+
277
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
278
+ msgid "Slide Left"
279
+ msgstr ""
280
+
281
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
282
+ msgid "Slide Right"
283
+ msgstr ""
284
+
285
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
286
+ msgid "Slide Up"
287
+ msgstr ""
288
+
289
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
290
+ msgid "Slide Down"
291
+ msgstr ""
292
+
293
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
294
+ msgid "Direct Fade"
295
+ msgstr ""
296
+
297
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
298
+ msgid "Random Animation"
299
+ msgstr ""
300
+
301
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:420
302
+ msgid "Maximum width. When maximum width is 0, maximum width is ignored"
303
+ msgstr ""
304
+
305
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
306
+ msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
307
+ msgstr ""
308
+
309
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
310
+ msgid "More info"
311
+ msgstr ""
312
+
313
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
314
+ #, php-format
315
+ msgid ""
316
+ "Proportional relationship%s between slideshow's width and height (width:"
317
+ "height)"
318
+ msgstr ""
319
+
320
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:422
321
+ msgid "Slideshow's height"
322
+ msgstr ""
323
+
324
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
325
+ msgid "Fit image into slide (Stretch image)"
326
+ msgstr ""
327
+
328
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:424
329
+ msgid "Shrink slideshow's height when width shrinks"
330
+ msgstr ""
331
+
332
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
333
+ msgid ""
334
+ "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
335
+ msgstr ""
336
+
337
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:427
338
+ msgid "Hide description box, pop up when mouse hovers over"
339
+ msgstr ""
340
+
341
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:430
342
+ msgid "Pause slideshow when mouse hovers over"
343
+ msgstr ""
344
+
345
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:431
346
+ msgid "Activate navigation buttons"
347
+ msgstr ""
348
+
349
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:432
350
+ msgid "Hide navigation buttons, show when mouse hovers over"
351
+ msgstr ""
352
+
353
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:433
354
+ msgid "Activate pagination"
355
+ msgstr ""
356
+
357
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:434
358
+ msgid "Hide pagination, show when mouse hovers over"
359
+ msgstr ""
360
+
361
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:435
362
+ msgid "Activate control panel (play and pause button)"
363
+ msgstr ""
364
+
365
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:436
366
+ msgid "Hide control panel, show when mouse hovers over"
367
+ msgstr ""
368
+
369
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:437
370
+ msgid "Randomize slides"
371
+ msgstr "Diapos aléatoires"
372
+
373
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:437
374
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:438
375
+ msgid "Miscellaneous"
376
+ msgstr "Divers"
377
+
378
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:438
379
+ #, php-format
380
+ msgid "Avoid content filter (disable if '%s' is shown)"
381
+ msgstr "Éviter filtre de contenu (désactiver si '%s' est affiché)"
382
+
383
+ #: classes/SlideshowPluginWidget.php:23
384
+ msgid "Enables you to show your slideshows in the widget area of your website."
385
+ msgstr "Afficher vos présentations dans la zone de widgets de votre site web."
386
+
387
+ #: classes/SlideshowPluginWidget.php:29
388
+ msgid "Slideshow Widget"
389
+ msgstr "Widget diaporama"
390
+
391
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:38
392
+ msgid "Default stylesheets"
393
+ msgstr ""
394
+
395
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:52
396
+ msgid "Create a new custom style from this style"
397
+ msgstr ""
398
+
399
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:54
400
+ msgid "Customize"
401
+ msgstr ""
402
+
403
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:68
404
+ msgid "Custom stylesheets"
405
+ msgstr ""
406
+
407
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:81
408
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:160
409
+ msgid "Edit this style"
410
+ msgstr ""
411
+
412
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:83
413
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:162
414
+ #: views/SlideshowPluginPostType/slides.php:137
415
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:46
416
+ msgid "Edit"
417
+ msgstr "Modifier"
418
+
419
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:90
420
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:169
421
+ msgid "Delete this style"
422
+ msgstr ""
423
+
424
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:92
425
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:171
426
+ msgid "Delete"
427
+ msgstr ""
428
+
429
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:102
430
+ msgid "Click 'Customize' to create a new custom stylesheet."
431
+ msgstr ""
432
+
433
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:118
434
+ msgid "Select a stylesheet from the left to start customizing it."
435
+ msgstr ""
436
+
437
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:127
438
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:180
439
+ #: views/SlideshowPluginPostType/slides.php:58
440
+ #: views/SlideshowPluginPostType/slides.php:143
441
+ #: views/SlideshowPluginPostType/slides.php:195
442
+ #: views/SlideshowPluginPostType/slides.php:263
443
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:54
444
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:12
445
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:92
446
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:29
447
+ #: views/SlideshowPluginWidget/form.php:2
448
+ msgid "Title"
449
+ msgstr "Titre"
450
+
451
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:136
452
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:188
453
+ msgid "Style"
454
+ msgstr "Style"
455
+
456
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:11
457
+ msgid "Note"
458
+ msgstr ""
459
+
460
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:18
461
+ #, php-format
462
+ msgid ""
463
+ "The settings set on this page apply only to newly created slideshows and "
464
+ "therefore do not alter any existing ones. To adapt a slideshow's settings, "
465
+ "%sclick here.%s"
466
+ msgstr ""
467
+
468
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:30
469
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:16
470
+ msgid "Default Slideshow Settings"
471
+ msgstr ""
472
+
473
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:43
474
+ #: views/SlideshowPluginPostType/settings.php:12
475
+ msgid "settings"
476
+ msgstr "réglages"
477
+
478
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:80
479
+ msgid "Default Slideshow Stylesheet"
480
+ msgstr ""
481
+
482
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:15
483
+ msgid "User Capabilities"
484
+ msgstr ""
485
+
486
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:17
487
+ msgid "Custom Styles"
488
+ msgstr ""
489
+
490
+ #: views/SlideshowPluginGeneralSettings/user-capabilities.php:8
491
+ msgid "Add slideshows"
492
+ msgstr ""
493
+
494
+ #: views/SlideshowPluginGeneralSettings/user-capabilities.php:9
495
+ msgid "Edit slideshows"
496
+ msgstr ""
497
+
498
+ #: views/SlideshowPluginGeneralSettings/user-capabilities.php:10
499
+ msgid "Delete slideshows"
500
+ msgstr ""
501
+
502
+ #: views/SlideshowPluginGeneralSettings/user-capabilities.php:18
503
+ msgid "Select the user roles that will able to perform certain actions."
504
+ msgstr ""
505
+
506
+ #: views/SlideshowPluginGeneralSettings/user-capabilities.php:35
507
+ msgid "Untitled role"
508
+ msgstr ""
509
+
510
+ #: views/SlideshowPluginPostType/information.php:1
511
+ msgid ""
512
+ "To use this slideshow in your website either add this piece of shortcode to "
513
+ "your posts or pages"
514
+ msgstr ""
515
+ "Pour utiliser ce diaporama sur votre site web, ajoutez ce morceau de code "
516
+ "dans vos articles ou pages"
517
+
518
+ #: views/SlideshowPluginPostType/information.php:5
519
+ msgid ""
520
+ "Or add this piece of code to where ever in your website you want to place "
521
+ "the slideshow"
522
+ msgstr ""
523
+ "Ou ajoutez ce morceau de code là où vous souhaitez afficher le diaporama"
524
+
525
+ #: views/SlideshowPluginPostType/information.php:9
526
+ #, php-format
527
+ msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
528
+ msgstr ""
529
+
530
+ #: views/SlideshowPluginPostType/settings.php:26
531
+ #: views/SlideshowPluginPostType/style-settings.php:11
532
+ msgid "Default"
533
+ msgstr "Par défaut"
534
+
535
+ #: views/SlideshowPluginPostType/slides.php:53
536
+ #: views/SlideshowPluginPostType/slides.php:190
537
+ #: views/SlideshowPluginSlideInserter/insert-text-button.php:1
538
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:6
539
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:23
540
+ msgid "Text slide"
541
+ msgstr "Diapositive texte"
542
+
543
+ #: views/SlideshowPluginPostType/slides.php:60
544
+ #: views/SlideshowPluginPostType/slides.php:149
545
+ #: views/SlideshowPluginPostType/slides.php:197
546
+ #: views/SlideshowPluginPostType/slides.php:269
547
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:61
548
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:15
549
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:99
550
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:32
551
+ msgid "Description"
552
+ msgstr "Description"
553
+
554
+ #: views/SlideshowPluginPostType/slides.php:62
555
+ #: views/SlideshowPluginPostType/slides.php:199
556
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:21
557
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:38
558
+ msgid "Background color"
559
+ msgstr "Couleur du fond"
560
+
561
+ #: views/SlideshowPluginPostType/slides.php:67
562
+ #: views/SlideshowPluginPostType/slides.php:154
563
+ #: views/SlideshowPluginPostType/slides.php:204
564
+ #: views/SlideshowPluginPostType/slides.php:274
565
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:68
566
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:28
567
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:106
568
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:45
569
+ msgid "URL"
570
+ msgstr "URL"
571
+
572
+ #: views/SlideshowPluginPostType/slides.php:69
573
+ #: views/SlideshowPluginPostType/slides.php:156
574
+ #: views/SlideshowPluginPostType/slides.php:206
575
+ #: views/SlideshowPluginPostType/slides.php:276
576
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:71
577
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:31
578
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:109
579
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:48
580
+ msgid "Open URL in"
581
+ msgstr ""
582
+
583
+ #: views/SlideshowPluginPostType/slides.php:71
584
+ #: views/SlideshowPluginPostType/slides.php:158
585
+ #: views/SlideshowPluginPostType/slides.php:208
586
+ #: views/SlideshowPluginPostType/slides.php:278
587
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:73
588
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:33
589
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:111
590
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:50
591
+ msgid "Same window"
592
+ msgstr "Même fenetre"
593
+
594
+ #: views/SlideshowPluginPostType/slides.php:72
595
+ #: views/SlideshowPluginPostType/slides.php:159
596
+ #: views/SlideshowPluginPostType/slides.php:209
597
+ #: views/SlideshowPluginPostType/slides.php:279
598
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:74
599
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:34
600
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:112
601
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:51
602
+ msgid "New window"
603
+ msgstr "Nouvelle fenetre"
604
+
605
+ #: views/SlideshowPluginPostType/slides.php:89
606
+ #: views/SlideshowPluginPostType/slides.php:229
607
+ #: views/SlideshowPluginSlideInserter/insert-video-button.php:1
608
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:54
609
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:13
610
+ msgid "Video slide"
611
+ msgstr "Diapositive vidéo"
612
+
613
+ #: views/SlideshowPluginPostType/slides.php:94
614
+ #: views/SlideshowPluginPostType/slides.php:234
615
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:60
616
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:19
617
+ msgid "Youtube Video ID"
618
+ msgstr "ID Vidéo Youtube"
619
+
620
+ #: views/SlideshowPluginPostType/slides.php:132
621
+ #: views/SlideshowPluginPostType/slides.php:254
622
+ #: views/SlideshowPluginSlideInserter/insert-image-button.php:1
623
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:40
624
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:80
625
+ msgid "Image slide"
626
+ msgstr "Diapositive image"
627
+
628
+ #: views/SlideshowPluginPostType/slides.php:170
629
+ msgid ""
630
+ "An error occurred while loading this slide, and it will not be present in "
631
+ "the slideshow"
632
+ msgstr ""
633
+ "Une erreur s'est produite lors du chargement de cette diapositive, et il ne "
634
+ "sera pas présent dans le diaporama"
635
+
636
+ #: views/SlideshowPluginPostType/slides.php:176
637
+ #: views/SlideshowPluginPostType/slides.php:217
638
+ #: views/SlideshowPluginPostType/slides.php:242
639
+ #: views/SlideshowPluginPostType/slides.php:288
640
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:83
641
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:42
642
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:68
643
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:121
644
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:59
645
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:27
646
+ msgid "Delete slide"
647
+ msgstr "Supprimer la diapositive"
648
+
649
+ #: views/SlideshowPluginPostType/style-settings.php:22
650
+ #, php-format
651
+ msgid "Custom styles can be created and customized %shere%s."
652
+ msgstr ""
653
+
654
+ #: views/SlideshowPluginPostType/support-plugin.php:3
655
+ msgid "Help to keep this plugin free!"
656
+ msgstr "Aidez à maintenir ce plugin gratuit"
657
+
658
+ #: views/SlideshowPluginPostType/support-plugin.php:6
659
+ msgid ""
660
+ "In order to keep you provided with the newest features, forum support, and "
661
+ "bug-fixes, a lot of motivation is required. Therefore I'm kindly asking you "
662
+ "to consider making a small donation to the plugin or rating it as 5-stars on "
663
+ "Wordpress.org. Thank you in advance!"
664
+ msgstr ""
665
+ "Améliorer ce plugin, maintenir le forum d'aide et pousser des corrections "
666
+ "demande beaucoup de motivation. En conséquence, pouvez-vous envisager une "
667
+ "petite donation ou alors attribuer 5 étoiles à ce plugin sur Wordpress.org. "
668
+ "Merci à vous !"
669
+
670
+ #: views/SlideshowPluginPostType/support-plugin.php:15
671
+ msgid "Rate on Wordpress.org"
672
+ msgstr "Evaluer sur Wordpress.org"
673
+
674
+ #: views/SlideshowPluginPostType/support-plugin.php:24
675
+ msgid "Frequently Asked Questions (FAQ)"
676
+ msgstr ""
677
+
678
+ #: views/SlideshowPluginPostType/support-plugin.php:33
679
+ msgid "Questions / Suggestions"
680
+ msgstr "Questions / Suggestions"
681
+
682
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
683
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
684
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
685
+ msgid "Insert a Slideshow"
686
+ msgstr "Insérer un diaporama"
687
+
688
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
689
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
690
+ msgid "Insert Slideshow"
691
+ msgstr "Insérer diaporama"
692
+
693
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
694
+ msgid "Select a slideshow"
695
+ msgstr "Sélectionner un diaporama"
696
+
697
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
698
+ #: views/SlideshowPluginWidget/form.php:12
699
+ msgid "Untitled slideshow"
700
+ msgstr "Diaporama sans nom"
701
+
702
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
703
+ msgid "Cancel"
704
+ msgstr "Annuler"
705
+
706
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
707
+ #, php-format
708
+ msgid ""
709
+ "It seems you haven't created any slideshows yet. %sYou can create a "
710
+ "slideshow here!%s"
711
+ msgstr ""
712
+ "Il semble que vous n'avez pas encore crée de diaporama. %sVous pouvez le "
713
+ "faire ici%s"
714
+
715
+ #: views/SlideshowPluginSlideInserter/search-popup.php:6
716
+ msgid "Search"
717
+ msgstr "Recherche"
718
+
719
+ #: views/SlideshowPluginSlideInserter/search-popup.php:7
720
+ msgid "Search images by title or ID"
721
+ msgstr "Chercher les images par titre ou ID"
722
+
723
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:18
724
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:35
725
+ msgid "Text color"
726
+ msgstr ""
727
+
728
+ #: views/SlideshowPluginUpload/upload-button.php:1
729
+ msgid "Upload/Manage Images"
730
+ msgstr "Upload/Gestion des images"
731
+
732
+ #: views/SlideshowPluginWidget/form.php:9
733
+ msgid "Random Slideshow"
734
+ msgstr "Diaporama aléatoire"
735
+
736
+ #~ msgid "light"
737
+ #~ msgstr "clair"
738
+
739
+ #~ msgid "slide"
740
+ #~ msgstr "diapo"
741
+
742
+ #~ msgid "Custom style editor (Does not work with a Strict Doctype)"
743
+ #~ msgstr "Aangepaste stijl bewerker (Werkt niet met een Strict Doctype)"
744
+
745
+ #~ msgid "Has the Slideshow plugin helped you?"
746
+ #~ msgstr "Heeft de Slideshow plugin je geholpen?"
747
+
748
+ #~ msgid "Help it back!"
749
+ #~ msgstr "Help hem terug!"
750
+
751
+ #~ msgid ""
752
+ #~ "If this plugin has filled you with happiness, please support the upkeep "
753
+ #~ "of the plugin by rating it on Wordpress, posting a suggestion for "
754
+ #~ "improvement on the support forum, or making a donation."
755
+ #~ msgstr ""
756
+ #~ "Als deze plugin je met blijdschap heeft vervuld, zou ik het enorm "
757
+ #~ "waarderen als je de plugin wilt beoordelen op Wordpress, een suggestie "
758
+ #~ "wilt maken voor verbetering, of een donatie doen wilt."
759
+
760
+ #~ msgid "Click on an image to insert it as a slide"
761
+ #~ msgstr "Klik op een plaatje om deze in te voegen als slide"
762
+
763
+ #~ msgid "Width of the slideshow"
764
+ #~ msgstr "Breedte van de slideshow"
765
+
766
+ #~ msgid "Defaults to parent's width."
767
+ #~ msgstr "Standaard ingesteld op de breedte van het bovenliggende element."
768
+
769
+ #~ msgid "Send user to image URL on click"
770
+ #~ msgstr ""
771
+ #~ "Wanner de gebruiker op de afbeelding klikt, stuur hem naar de URL van het "
772
+ #~ "plaatje"
773
+
774
+ #~ msgid "Leave any field open to use default value."
775
+ #~ msgstr "Een veld dat open wordt gelaten neemt de standaardwaarde aan."
 
 
languages/slideshow-plugin-nl_NL.mo CHANGED
Binary file
languages/slideshow-plugin-nl_NL.po CHANGED
@@ -1,806 +1,810 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Slideshow Plugin\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-02-01 15:06+0100\n"
6
- "PO-Revision-Date: 2013-02-01 15:08+0100\n"
7
- "Last-Translator: Stefan Boonstra <stefanboonstra@hotmail.com>\n"
8
- "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
- "Language: nl_NL\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: _e;__\n"
14
- "X-Poedit-Basepath: ../\n"
15
- "X-Generator: Poedit 1.5.4\n"
16
- "X-Poedit-SearchPath-0: .\n"
17
-
18
- #: classes/SlideshowPluginGeneralSettings.php:64
19
- #: classes/SlideshowPluginGeneralSettings.php:65
20
- msgid "General Settings"
21
- msgstr "Algemene Instellingen"
22
-
23
- #: classes/SlideshowPluginGeneralSettings.php:142
24
- msgid "New"
25
- msgstr "Nieuw"
26
-
27
- #: classes/SlideshowPluginGeneralSettings.php:143
28
- msgid "Are you sure you want to delete this custom style?"
29
- msgstr "Weet je zeker dat je deze aangepaste stijl wilt verwijderen?"
30
-
31
- #: classes/SlideshowPluginGeneralSettings.php:162
32
- #: classes/SlideshowPluginInstaller.php:388
33
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:6
34
- msgid "Light"
35
- msgstr "Licht"
36
-
37
- #: classes/SlideshowPluginGeneralSettings.php:163
38
- #: classes/SlideshowPluginInstaller.php:388
39
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:7
40
- msgid "Dark"
41
- msgstr "Donker"
42
-
43
- #: classes/SlideshowPluginGeneralSettings.php:267
44
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:49
45
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:131
46
- msgid "Untitled"
47
- msgstr "Naamloos"
48
-
49
- #: classes/SlideshowPluginInstaller.php:385
50
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:374
51
- msgid "Yes"
52
- msgstr "Ja"
53
-
54
- #: classes/SlideshowPluginInstaller.php:386
55
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:375
56
- msgid "No"
57
- msgstr "Nee"
58
-
59
- #: classes/SlideshowPluginInstaller.php:388
60
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:475
61
- msgid "The style used for this slideshow"
62
- msgstr "De stijl te gebruiken voor deze slideshow"
63
-
64
- #: classes/SlideshowPluginInstaller.php:388
65
- msgid "Custom"
66
- msgstr "Aangepast"
67
-
68
- #: classes/SlideshowPluginInstaller.php:389
69
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:114
70
- msgid "Custom style editor"
71
- msgstr "Aangepaste stijl bewerker"
72
-
73
- #: classes/SlideshowPluginInstaller.php:390
74
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
75
- msgid "Animation used for transition between slides"
76
- msgstr "Animatie tussen het wisselen van de slides"
77
-
78
- #: classes/SlideshowPluginInstaller.php:390
79
- msgid "Slide"
80
- msgstr "Slide"
81
-
82
- #: classes/SlideshowPluginInstaller.php:390
83
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
84
- msgid "Fade"
85
- msgstr "Fade"
86
-
87
- #: classes/SlideshowPluginInstaller.php:390
88
- #: classes/SlideshowPluginInstaller.php:391
89
- #: classes/SlideshowPluginInstaller.php:392
90
- #: classes/SlideshowPluginInstaller.php:393
91
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
92
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:417
93
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:418
94
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
95
- msgid "Animation"
96
- msgstr "Animatie"
97
-
98
- #: classes/SlideshowPluginInstaller.php:391
99
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:417
100
- msgid "Number of seconds the slide takes to slide in"
101
- msgstr ""
102
- "Aantal seconden dat de animatie van het inschuiven van de volgende slide "
103
- "duurt"
104
-
105
- #: classes/SlideshowPluginInstaller.php:392
106
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:418
107
- msgid "Number of seconds the description takes to slide in"
108
- msgstr "Aantal seconden dat het inschuiven van de beschrijving duurt"
109
-
110
- #: classes/SlideshowPluginInstaller.php:393
111
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
112
- msgid "Seconds between changing slides"
113
- msgstr "Seconden tussen het wisselen van de slides"
114
-
115
- #: classes/SlideshowPluginInstaller.php:394
116
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:420
117
- msgid "Number of slides to fit into one slide"
118
- msgstr "Aantal slides om in een slide te plaatsen"
119
-
120
- #: classes/SlideshowPluginInstaller.php:394
121
- #: classes/SlideshowPluginInstaller.php:395
122
- #: classes/SlideshowPluginInstaller.php:396
123
- #: classes/SlideshowPluginInstaller.php:397
124
- #: classes/SlideshowPluginInstaller.php:398
125
- #: classes/SlideshowPluginInstaller.php:399
126
- #: classes/SlideshowPluginInstaller.php:400
127
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:420
128
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
129
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:422
130
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
131
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:424
132
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
133
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:426
134
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:427
135
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
136
- msgid "Display"
137
- msgstr "Weergave"
138
-
139
- #: classes/SlideshowPluginInstaller.php:395
140
- msgid "Width of the slideshow, set to parent&#39;s width on 0"
141
- msgstr ""
142
- "Breedte van de slideshow, past zich aan op bovenliggende element wanneer 0"
143
-
144
- #: classes/SlideshowPluginInstaller.php:396
145
- msgid "Height of the slideshow"
146
- msgstr "Hoogte van de slideshow"
147
-
148
- #: classes/SlideshowPluginInstaller.php:397
149
- msgid "Height of the description boxes"
150
- msgstr "Hoogte van de beschrijvingen"
151
-
152
- #: classes/SlideshowPluginInstaller.php:398
153
- msgid "Fit image into slide (stretching it)"
154
- msgstr "Pas afbeelding in de slideshow (oprekken)"
155
-
156
- #: classes/SlideshowPluginInstaller.php:399
157
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:427
158
- msgid "Show title and description"
159
- msgstr "Toon titel en beschrijving"
160
-
161
- #: classes/SlideshowPluginInstaller.php:400
162
- msgid "Hide description box, it will pop up when a mouse hovers over the slide"
163
- msgstr ""
164
- "Verberg beschrijving, toon deze alleen wanneer de muisaanwijzer boven de "
165
- "slide is"
166
-
167
- #: classes/SlideshowPluginInstaller.php:401
168
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:430
169
- msgid "Automatically slide to the next slide"
170
- msgstr "Automatisch naar de volgende slide gaan"
171
-
172
- #: classes/SlideshowPluginInstaller.php:401
173
- #: classes/SlideshowPluginInstaller.php:402
174
- #: classes/SlideshowPluginInstaller.php:403
175
- #: classes/SlideshowPluginInstaller.php:404
176
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:430
177
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:431
178
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:432
179
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:433
180
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:434
181
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:435
182
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:436
183
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:437
184
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:438
185
- msgid "Control"
186
- msgstr "Controle"
187
-
188
- #: classes/SlideshowPluginInstaller.php:402
189
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:431
190
- msgid "Return to the beginning of the slideshow after last slide"
191
- msgstr "Keer terug naar het begin van de slideshow na de laatste slide."
192
-
193
- #: classes/SlideshowPluginInstaller.php:403
194
- msgid "Activate buttons (so the user can scroll through the slides)"
195
- msgstr "Knoppen activeren (zodat de gebruiker door de slides kan scrollen)"
196
-
197
- #: classes/SlideshowPluginInstaller.php:404
198
- msgid "Show control panel (play and pause button)"
199
- msgstr "Toon controlepaneel (speel en pause knop)"
200
-
201
- #: classes/SlideshowPluginPostType.php:37
202
- msgid "Slideshows"
203
- msgstr "Slideshows"
204
-
205
- #: classes/SlideshowPluginPostType.php:38
206
- #: views/SlideshowPluginWidget/form.php:7
207
- msgid "Slideshow"
208
- msgstr "Slideshow"
209
-
210
- #: classes/SlideshowPluginPostType.php:39
211
- msgid "Add New Slideshow"
212
- msgstr "Nieuwe Slideshow Toevoegen"
213
-
214
- #: classes/SlideshowPluginPostType.php:40
215
- msgid "Edit slideshow"
216
- msgstr "Slideshow bewerken"
217
-
218
- #: classes/SlideshowPluginPostType.php:41
219
- msgid "New slideshow"
220
- msgstr "Nieuwe slideshow"
221
-
222
- #: classes/SlideshowPluginPostType.php:42
223
- msgid "View slideshow"
224
- msgstr "Slideshow bekijken"
225
-
226
- #: classes/SlideshowPluginPostType.php:43
227
- msgid "Search slideshows"
228
- msgstr "Slideshows zoeken"
229
-
230
- #: classes/SlideshowPluginPostType.php:44
231
- #: classes/SlideshowPluginPostType.php:45
232
- msgid "No slideshows found"
233
- msgstr "Geen slideshows gevonden"
234
-
235
- #: classes/SlideshowPluginPostType.php:126
236
- msgid "Information"
237
- msgstr "Informatie"
238
-
239
- #: classes/SlideshowPluginPostType.php:135
240
- msgid "Slides List"
241
- msgstr "Slides Lijst"
242
-
243
- #: classes/SlideshowPluginPostType.php:144
244
- msgid "Slideshow Style"
245
- msgstr "Slideshow Stijl"
246
-
247
- #: classes/SlideshowPluginPostType.php:153
248
- msgid "Slideshow Settings"
249
- msgstr "Slideshow Instellingen"
250
-
251
- #: classes/SlideshowPluginPostType.php:203
252
- #: classes/SlideshowPluginSlideInserter.php:156
253
- #: views/SlideshowPluginPostType/slides.php:2
254
- msgid "Insert"
255
- msgstr "Invoegen"
256
-
257
- #: classes/SlideshowPluginPostType.php:211
258
- #: views/SlideshowPluginPostType/slides.php:9
259
- msgid "Add slides to this slideshow by using one of the buttons above."
260
- msgstr "Voeg slides toe doormiddel van de bovenstaande knoppen."
261
-
262
- #: classes/SlideshowPluginShortcode.php:132
263
- msgid "No slideshow selected."
264
- msgstr "Geen slideshow geselecteerd."
265
-
266
- #: classes/SlideshowPluginSlideInserter.php:165
267
- msgid "Load more results"
268
- msgstr "Meer resultaten laden"
269
-
270
- #: classes/SlideshowPluginSlideInserter.php:174
271
- msgid "No images were found, click here to upload some."
272
- msgstr "Geen afbeeldingen gevonden, klik hier om afbeeldingen te uploaden."
273
-
274
- #: classes/SlideshowPluginSlideInserter.php:243
275
- msgid "Are you sure you want to delete this slide?"
276
- msgstr "Weet je zeker dat je deze slide wilt verwijderen?"
277
-
278
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
279
- msgid "Slide Left"
280
- msgstr "Schuif Links"
281
-
282
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
283
- msgid "Slide Right"
284
- msgstr "Schuif Rechts"
285
-
286
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
287
- msgid "Slide Up"
288
- msgstr "Schuif Omhoog"
289
-
290
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
291
- msgid "Slide Down"
292
- msgstr "Schuif Omlaag"
293
-
294
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
295
- msgid "Direct Fade"
296
- msgstr "Rechtstreekse Fade"
297
-
298
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
299
- msgid "Random Animation"
300
- msgstr "Willekeurige Animatie"
301
-
302
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
303
- msgid "Maximum width. When maximum width is 0, maximum width is ignored"
304
- msgstr ""
305
- "Maximum breedte. Wanneer maximum breedte 0 is, zal deze worden genegeerd"
306
-
307
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:422
308
- msgid ""
309
- "Shrink slideshow's height when width shrinks (Fixed height can be defined "
310
- "when setting this value to 'No')"
311
- msgstr ""
312
- "Krimp de slideshow's hoogte wanneer de breedte kleiner wordt (Vastgestelde "
313
- "hoogte kan worden ingesteld als deze instelling op 'Nee' staat)"
314
-
315
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
316
- msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
317
- msgstr "http://nl.wikipedia.org/wiki/Beeldverhouding"
318
-
319
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
320
- msgid "More info"
321
- msgstr "Meer informatie"
322
-
323
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
324
- #, php-format
325
- msgid ""
326
- "Proportional relationship%s between slideshow's width and height (width:"
327
- "height)"
328
- msgstr ""
329
- "Proportionele verhouding%s tussen de slideshow's breedte en hoogte (breedte:"
330
- "hoogte)"
331
-
332
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:424
333
- msgid "Slideshow's height"
334
- msgstr "Slideshow's hoogte"
335
-
336
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
337
- msgid "Fit image into slide (Stretch image)"
338
- msgstr "Pas afbeelding in de slideshow (Afbeedling uitrekken)"
339
-
340
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:426
341
- msgid ""
342
- "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
343
- msgstr ""
344
- "Gebruik responsiviteit (Maak slideshow smaller wanneer de pagina smaller "
345
- "wordt)"
346
-
347
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
348
- msgid "Hide description box, pop up when mouse hovers over"
349
- msgstr ""
350
- "Verbeg beschrijving, toon deze alleen wanneer de muisaanwijzer boven de "
351
- "slideshow is"
352
-
353
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:432
354
- msgid "Pause slideshow when mouse hovers over"
355
- msgstr "Pauzeer slideshow wanneer de muisaanwijzer boven de slideshow is"
356
-
357
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:433
358
- msgid "Activate navigation buttons"
359
- msgstr "Toon navigatie knoppen"
360
-
361
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:434
362
- msgid "Hide navigation buttons, show when mouse hovers over"
363
- msgstr ""
364
- "Verberg navigatieknoppen, toon deze aleen wanneer de muisaanwijzer boven de "
365
- "slideshow is"
366
-
367
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:435
368
- msgid "Activate pagination"
369
- msgstr "Toon paginering"
370
-
371
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:436
372
- msgid "Hide pagination, show when mouse hovers over"
373
- msgstr ""
374
- "Verberg paginering, toon deze alleen wanneer de muisaanwijzer boven de "
375
- "slideshow is"
376
-
377
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:437
378
- msgid "Activate control panel (play and pause button)"
379
- msgstr "Toon controlepaneel (speel en pause knop)"
380
-
381
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:438
382
- msgid "Hide control panel, show when mouse hovers over"
383
- msgstr ""
384
- "Verberg controlepaneel, toon deze alleen wanneer de muisaanwijzer boven de "
385
- "slideshow is"
386
-
387
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:439
388
- msgid "Randomize slides"
389
- msgstr "Toon slides in willekeurige volgorde"
390
-
391
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:439
392
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:440
393
- msgid "Miscellaneous"
394
- msgstr "Overige"
395
-
396
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:440
397
- #, php-format
398
- msgid "Avoid content filter (disable if '%s' is shown)"
399
- msgstr "Content filter omzeilen (uitschakelen als '%s' wordt getoond)"
400
-
401
- #: classes/SlideshowPluginWidget.php:23
402
- msgid "Enables you to show your slideshows in the widget area of your website."
403
- msgstr ""
404
- "Maakt het mogelijk je slideshows te bijken in het widget gebied van je "
405
- "website."
406
-
407
- #: classes/SlideshowPluginWidget.php:29
408
- msgid "Slideshow Widget"
409
- msgstr "Slideshow Widget"
410
-
411
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:38
412
- msgid "Default stylesheets"
413
- msgstr "Standaard stijlen"
414
-
415
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:52
416
- msgid "Create a new custom style from this style"
417
- msgstr "Maak een nieuwe aangepaste stijl uit deze stijl"
418
-
419
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:54
420
- msgid "Customize"
421
- msgstr "Aanpassen"
422
-
423
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:68
424
- msgid "Custom stylesheets"
425
- msgstr "Aangepaste stijl"
426
-
427
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:81
428
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:160
429
- msgid "Edit this style"
430
- msgstr "Bewerk deze stijl"
431
-
432
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:83
433
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:162
434
- #: views/SlideshowPluginPostType/slides.php:137
435
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:46
436
- msgid "Edit"
437
- msgstr "Bewerken"
438
-
439
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:90
440
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:169
441
- msgid "Delete this style"
442
- msgstr "Verwijder stijl"
443
-
444
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:92
445
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:171
446
- msgid "Delete"
447
- msgstr "Verwijderen"
448
-
449
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:102
450
- msgid "Click 'Customize' to create a new custom stylesheet."
451
- msgstr "Klik op 'Aanpassen' om een nieuwe aangepaste stijl te maken."
452
-
453
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:118
454
- msgid "Select a stylesheet from the left to start customizing it."
455
- msgstr "Kies een stijl uit de linker kolom om deze aan te passen."
456
-
457
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:127
458
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:180
459
- #: views/SlideshowPluginPostType/slides.php:58
460
- #: views/SlideshowPluginPostType/slides.php:143
461
- #: views/SlideshowPluginPostType/slides.php:195
462
- #: views/SlideshowPluginPostType/slides.php:263
463
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:54
464
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:12
465
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:86
466
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:29
467
- #: views/SlideshowPluginWidget/form.php:2
468
- msgid "Title"
469
- msgstr "Titel"
470
-
471
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:136
472
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:188
473
- msgid "Style"
474
- msgstr "Stijl"
475
-
476
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:11
477
- msgid "Note"
478
- msgstr "Opgelet"
479
-
480
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:18
481
- #, php-format
482
- msgid ""
483
- "The settings set on this page apply only to newly created slideshows and "
484
- "therefore do not alter any existing ones. To adapt a slideshow's settings, "
485
- "%sclick here.%s"
486
- msgstr ""
487
- "De instellingen op deze pagina zijn alleen van toepassing op slideshows die "
488
- "nieuw worden aangemaakt en niet op de slideshows die reeds bestaan. Om een "
489
- "slideshow's instellingen te wijzigen, %sklik hier.%s"
490
-
491
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:30
492
- #: views/SlideshowPluginGeneralSettings/general-settings.php:16
493
- msgid "Default Slideshow Settings"
494
- msgstr "Standaard Slideshow Instellingen"
495
-
496
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:43
497
- #: views/SlideshowPluginPostType/settings.php:12
498
- msgid "settings"
499
- msgstr "instellingen"
500
-
501
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:80
502
- msgid "Default Slideshow Stylesheet"
503
- msgstr "Standaard Slideshow Stijl"
504
-
505
- #: views/SlideshowPluginGeneralSettings/general-settings.php:15
506
- msgid "User Capabilities"
507
- msgstr "Gebruikersrechten"
508
-
509
- #: views/SlideshowPluginGeneralSettings/general-settings.php:17
510
- msgid "Custom Styles"
511
- msgstr "Aangepaste Stijlen"
512
-
513
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:8
514
- msgid "Add slideshows"
515
- msgstr "Slideshows toevoegen"
516
-
517
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:9
518
- msgid "Edit slideshows"
519
- msgstr "Slideshows bewerken"
520
-
521
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:10
522
- msgid "Delete slideshows"
523
- msgstr "Slideshows verwijderen"
524
-
525
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:18
526
- msgid "Select the user roles that will able to perform certain actions."
527
- msgstr "Kies de gebruikersrol waaraan je bepaalde rechten wilt verlenen."
528
-
529
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:35
530
- msgid "Untitled role"
531
- msgstr "Naamloze gebruikersfunctie"
532
-
533
- #: views/SlideshowPluginPostType/information.php:1
534
- msgid ""
535
- "To use this slideshow in your website either add this piece of shortcode to "
536
- "your posts or pages"
537
- msgstr ""
538
- "Om deze slideshow op je website te gebruiken voeg je of dit stukje shortcode "
539
- "aan je pagina of post toe"
540
-
541
- #: views/SlideshowPluginPostType/information.php:5
542
- msgid ""
543
- "Or add this piece of code to where ever in your website you want to place "
544
- "the slideshow"
545
- msgstr ""
546
- "Of je voegt dit stuk code toe aan je broncode op de plaats waar je wilt dat "
547
- "de slideshow te zien is"
548
-
549
- #: views/SlideshowPluginPostType/information.php:9
550
- #, php-format
551
- msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
552
- msgstr ""
553
- "Ook kan je naar de %swidget pagina%s toegaan, om de slideshow te tonen als "
554
- "widget."
555
-
556
- #: views/SlideshowPluginPostType/settings.php:26
557
- #: views/SlideshowPluginPostType/style-settings.php:11
558
- msgid "Default"
559
- msgstr "Standaard"
560
-
561
- #: views/SlideshowPluginPostType/slides.php:53
562
- #: views/SlideshowPluginPostType/slides.php:190
563
- #: views/SlideshowPluginSlideInserter/insert-text-button.php:1
564
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:6
565
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:23
566
- msgid "Text slide"
567
- msgstr "Tekst slide"
568
-
569
- #: views/SlideshowPluginPostType/slides.php:60
570
- #: views/SlideshowPluginPostType/slides.php:149
571
- #: views/SlideshowPluginPostType/slides.php:197
572
- #: views/SlideshowPluginPostType/slides.php:269
573
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:62
574
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:15
575
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:92
576
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:32
577
- msgid "Description"
578
- msgstr "Beschrijving"
579
-
580
- #: views/SlideshowPluginPostType/slides.php:62
581
- #: views/SlideshowPluginPostType/slides.php:199
582
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:21
583
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:38
584
- msgid "Background color"
585
- msgstr "Achtergrond kleur"
586
-
587
- #: views/SlideshowPluginPostType/slides.php:67
588
- #: views/SlideshowPluginPostType/slides.php:154
589
- #: views/SlideshowPluginPostType/slides.php:204
590
- #: views/SlideshowPluginPostType/slides.php:274
591
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:69
592
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:27
593
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:97
594
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:45
595
- msgid "URL"
596
- msgstr "URL"
597
-
598
- #: views/SlideshowPluginPostType/slides.php:69
599
- #: views/SlideshowPluginPostType/slides.php:156
600
- #: views/SlideshowPluginPostType/slides.php:206
601
- #: views/SlideshowPluginPostType/slides.php:276
602
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:72
603
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:29
604
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:99
605
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:48
606
- msgid "Open URL in"
607
- msgstr "Open URL in"
608
-
609
- #: views/SlideshowPluginPostType/slides.php:71
610
- #: views/SlideshowPluginPostType/slides.php:158
611
- #: views/SlideshowPluginPostType/slides.php:208
612
- #: views/SlideshowPluginPostType/slides.php:278
613
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:74
614
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:31
615
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:101
616
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:50
617
- msgid "Same window"
618
- msgstr "Zelfde scherm"
619
-
620
- #: views/SlideshowPluginPostType/slides.php:72
621
- #: views/SlideshowPluginPostType/slides.php:159
622
- #: views/SlideshowPluginPostType/slides.php:209
623
- #: views/SlideshowPluginPostType/slides.php:279
624
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:75
625
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:32
626
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:102
627
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:51
628
- msgid "New window"
629
- msgstr "Nieuw scherm"
630
-
631
- #: views/SlideshowPluginPostType/slides.php:89
632
- #: views/SlideshowPluginPostType/slides.php:229
633
- #: views/SlideshowPluginSlideInserter/insert-video-button.php:1
634
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:52
635
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:13
636
- msgid "Video slide"
637
- msgstr "Video slide"
638
-
639
- #: views/SlideshowPluginPostType/slides.php:94
640
- #: views/SlideshowPluginPostType/slides.php:234
641
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:57
642
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:19
643
- msgid "Youtube Video ID"
644
- msgstr "Youtube Video ID"
645
-
646
- #: views/SlideshowPluginPostType/slides.php:132
647
- #: views/SlideshowPluginPostType/slides.php:254
648
- #: views/SlideshowPluginSlideInserter/insert-image-button.php:1
649
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:40
650
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:77
651
- msgid "Image slide"
652
- msgstr "Afbeeldingsslide"
653
-
654
- #: views/SlideshowPluginPostType/slides.php:170
655
- msgid ""
656
- "An error occurred while loading this slide, and it will not be present in "
657
- "the slideshow"
658
- msgstr ""
659
- "Een fout is ontstaan tijdens het laden van deze slide, de slide zal niet te "
660
- "bekijken zijn in je slideshow"
661
-
662
- #: views/SlideshowPluginPostType/slides.php:176
663
- #: views/SlideshowPluginPostType/slides.php:217
664
- #: views/SlideshowPluginPostType/slides.php:242
665
- #: views/SlideshowPluginPostType/slides.php:288
666
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:84
667
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:40
668
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:65
669
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:111
670
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:59
671
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:27
672
- msgid "Delete slide"
673
- msgstr "Verwijder slide"
674
-
675
- #: views/SlideshowPluginPostType/style-settings.php:22
676
- #, php-format
677
- msgid "Custom styles can be created and customized %shere%s."
678
- msgstr "Aangepaste stijlen kunnen %shier%s worden aangemaakt en aangepast."
679
-
680
- #: views/SlideshowPluginPostType/support-plugin.php:3
681
- msgid "Help to keep this plugin free!"
682
- msgstr "Help mee om deze plugin gratis te houden!"
683
-
684
- #: views/SlideshowPluginPostType/support-plugin.php:6
685
- msgid ""
686
- "In order to keep you provided with the newest features, forum support, and "
687
- "bug-fixes, a lot of motivation is required. Therefore I'm kindly asking you "
688
- "to consider making a small donation to the plugin or rating it as 5-stars on "
689
- "Wordpress.org. Thank you in advance!"
690
- msgstr ""
691
- "Om je te kunnen voorzien van de nieuwste functionaliteiten, forum "
692
- "ondersteuning en fout-oplossingen, is een hoop motivatie nodig. Daarom zou "
693
- "ik het enorm waarderen als je een kleine donatie aan de plugin zou willen "
694
- "doen, of de plugin 5 sterren zou willen geven op Wordpress.org. Alvast "
695
- "bedankt!"
696
-
697
- #: views/SlideshowPluginPostType/support-plugin.php:15
698
- msgid "Rate on Wordpress.org"
699
- msgstr "Geef een waardering op Wordpress.org"
700
-
701
- #: views/SlideshowPluginPostType/support-plugin.php:24
702
- msgid "Frequently Asked Questions (FAQ)"
703
- msgstr "Veelgestelde Vragen (FAQ)"
704
-
705
- #: views/SlideshowPluginPostType/support-plugin.php:33
706
- msgid "Questions / Suggestions"
707
- msgstr "Vragen / Opmerkingen"
708
-
709
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
710
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
711
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
712
- msgid "Insert a Slideshow"
713
- msgstr "Slideshow invoegen"
714
-
715
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
716
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
717
- msgid "Insert Slideshow"
718
- msgstr "Slideshow invoegen"
719
-
720
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
721
- msgid "Select a slideshow"
722
- msgstr "Selecteer een slideshow"
723
-
724
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
725
- #: views/SlideshowPluginWidget/form.php:12
726
- msgid "Untitled slideshow"
727
- msgstr "Naamloze slideshow"
728
-
729
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
730
- msgid "Cancel"
731
- msgstr "Annuleren"
732
-
733
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
734
- #, php-format
735
- msgid ""
736
- "It seems you haven't created any slideshows yet. %sYou can create a "
737
- "slideshow here!%s"
738
- msgstr ""
739
- "Het ziet er naar uit dat je nog geen slideshows hebt gemaakt. %sHier kan je "
740
- "een slideshow maken!%s"
741
-
742
- #: views/SlideshowPluginSlideInserter/search-popup.php:6
743
- msgid "Search"
744
- msgstr "Zoek"
745
-
746
- #: views/SlideshowPluginSlideInserter/search-popup.php:7
747
- msgid "Search images by title or ID"
748
- msgstr "Zoek afbeeldingen op titel of ID"
749
-
750
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:18
751
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:35
752
- msgid "Text color"
753
- msgstr "Tekst kleur"
754
-
755
- #: views/SlideshowPluginUpload/upload-button.php:1
756
- msgid "Upload/Manage Images"
757
- msgstr "Upload/Beheer Afbeeldingen"
758
-
759
- #: views/SlideshowPluginWidget/form.php:9
760
- msgid "Random Slideshow"
761
- msgstr "Willekeurige Slideshow"
762
-
763
- #, fuzzy
764
- #~ msgid "Editor"
765
- #~ msgstr "Bewerken"
766
-
767
- #~ msgid "light"
768
- #~ msgstr "licht"
769
-
770
- #~ msgid "slide"
771
- #~ msgstr "slide"
772
-
773
- #~ msgid "Custom style editor (Does not work with a Strict Doctype)"
774
- #~ msgstr "Aangepaste stijl bewerker (Werkt niet met een Strict Doctype)"
775
-
776
- #~ msgid "Has the Slideshow plugin helped you?"
777
- #~ msgstr "Heeft de Slideshow plugin je geholpen?"
778
-
779
- #~ msgid "Help it back!"
780
- #~ msgstr "Help hem terug!"
781
-
782
- #~ msgid ""
783
- #~ "If this plugin has filled you with happiness, please support the upkeep "
784
- #~ "of the plugin by rating it on Wordpress, posting a suggestion for "
785
- #~ "improvement on the support forum, or making a donation."
786
- #~ msgstr ""
787
- #~ "Als deze plugin je met blijdschap heeft vervuld, zou ik het enorm "
788
- #~ "waarderen als je de plugin wilt beoordelen op Wordpress, een suggestie "
789
- #~ "wilt maken voor verbetering, of een donatie doen wilt."
790
-
791
- #~ msgid "Click on an image to insert it as a slide"
792
- #~ msgstr "Klik op een plaatje om deze in te voegen als slide"
793
-
794
- #~ msgid "Width of the slideshow"
795
- #~ msgstr "Breedte van de slideshow"
796
-
797
- #~ msgid "Defaults to parent's width."
798
- #~ msgstr "Standaard ingesteld op de breedte van het bovenliggende element."
799
-
800
- #~ msgid "Send user to image URL on click"
801
- #~ msgstr ""
802
- #~ "Wanner de gebruiker op de afbeelding klikt, stuur hem naar de URL van het "
803
- #~ "plaatje"
804
-
805
- #~ msgid "Leave any field open to use default value."
806
- #~ msgstr "Een veld dat open wordt gelaten neemt de standaardwaarde aan."
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Slideshow Plugin\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-02-02 01:47+0100\n"
6
+ "PO-Revision-Date: 2013-02-02 01:47+0100\n"
7
+ "Last-Translator: Stefan Boonstra <stefanboonstra@hotmail.com>\n"
8
+ "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
+ "Language: nl_NL\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-KeywordsList: _e;__\n"
14
+ "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.5.4\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: classes/SlideshowPluginGeneralSettings.php:64
19
+ #: classes/SlideshowPluginGeneralSettings.php:65
20
+ msgid "General Settings"
21
+ msgstr "Algemene Instellingen"
22
+
23
+ #: classes/SlideshowPluginGeneralSettings.php:142
24
+ msgid "New"
25
+ msgstr "Nieuw"
26
+
27
+ #: classes/SlideshowPluginGeneralSettings.php:143
28
+ msgid "Are you sure you want to delete this custom style?"
29
+ msgstr "Weet je zeker dat je deze aangepaste stijl wilt verwijderen?"
30
+
31
+ #: classes/SlideshowPluginGeneralSettings.php:162
32
+ #: classes/SlideshowPluginInstaller.php:388
33
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:6
34
+ msgid "Light"
35
+ msgstr "Licht"
36
+
37
+ #: classes/SlideshowPluginGeneralSettings.php:163
38
+ #: classes/SlideshowPluginInstaller.php:388
39
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:7
40
+ msgid "Dark"
41
+ msgstr "Donker"
42
+
43
+ #: classes/SlideshowPluginGeneralSettings.php:267
44
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:49
45
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:131
46
+ msgid "Untitled"
47
+ msgstr "Naamloos"
48
+
49
+ #: classes/SlideshowPluginInstaller.php:385
50
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:374
51
+ msgid "Yes"
52
+ msgstr "Ja"
53
+
54
+ #: classes/SlideshowPluginInstaller.php:386
55
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:375
56
+ msgid "No"
57
+ msgstr "Nee"
58
+
59
+ #: classes/SlideshowPluginInstaller.php:388
60
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:473
61
+ msgid "The style used for this slideshow"
62
+ msgstr "De stijl te gebruiken voor deze slideshow"
63
+
64
+ #: classes/SlideshowPluginInstaller.php:388
65
+ msgid "Custom"
66
+ msgstr "Aangepast"
67
+
68
+ #: classes/SlideshowPluginInstaller.php:389
69
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:114
70
+ msgid "Custom style editor"
71
+ msgstr "Aangepaste stijl bewerker"
72
+
73
+ #: classes/SlideshowPluginInstaller.php:390
74
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
75
+ msgid "Animation used for transition between slides"
76
+ msgstr "Animatie tussen het wisselen van de slides"
77
+
78
+ #: classes/SlideshowPluginInstaller.php:390
79
+ msgid "Slide"
80
+ msgstr "Slide"
81
+
82
+ #: classes/SlideshowPluginInstaller.php:390
83
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
84
+ msgid "Fade"
85
+ msgstr "Fade"
86
+
87
+ #: classes/SlideshowPluginInstaller.php:390
88
+ #: classes/SlideshowPluginInstaller.php:391
89
+ #: classes/SlideshowPluginInstaller.php:392
90
+ #: classes/SlideshowPluginInstaller.php:393
91
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
92
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
93
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:417
94
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:418
95
+ msgid "Animation"
96
+ msgstr "Animatie"
97
+
98
+ #: classes/SlideshowPluginInstaller.php:391
99
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
100
+ msgid "Number of seconds the slide takes to slide in"
101
+ msgstr ""
102
+ "Aantal seconden dat de animatie van het inschuiven van de volgende slide "
103
+ "duurt"
104
+
105
+ #: classes/SlideshowPluginInstaller.php:392
106
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:417
107
+ msgid "Number of seconds the description takes to slide in"
108
+ msgstr "Aantal seconden dat het inschuiven van de beschrijving duurt"
109
+
110
+ #: classes/SlideshowPluginInstaller.php:393
111
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:418
112
+ msgid "Seconds between changing slides"
113
+ msgstr "Seconden tussen het wisselen van de slides"
114
+
115
+ #: classes/SlideshowPluginInstaller.php:394
116
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
117
+ msgid "Number of slides to fit into one slide"
118
+ msgstr "Aantal slides om in een slide te plaatsen"
119
+
120
+ #: classes/SlideshowPluginInstaller.php:394
121
+ #: classes/SlideshowPluginInstaller.php:395
122
+ #: classes/SlideshowPluginInstaller.php:396
123
+ #: classes/SlideshowPluginInstaller.php:397
124
+ #: classes/SlideshowPluginInstaller.php:398
125
+ #: classes/SlideshowPluginInstaller.php:399
126
+ #: classes/SlideshowPluginInstaller.php:400
127
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
128
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:420
129
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
130
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:422
131
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
132
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:424
133
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
134
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:426
135
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:427
136
+ msgid "Display"
137
+ msgstr "Weergave"
138
+
139
+ #: classes/SlideshowPluginInstaller.php:395
140
+ msgid "Width of the slideshow, set to parent&#39;s width on 0"
141
+ msgstr ""
142
+ "Breedte van de slideshow, past zich aan op bovenliggende element wanneer 0"
143
+
144
+ #: classes/SlideshowPluginInstaller.php:396
145
+ msgid "Height of the slideshow"
146
+ msgstr "Hoogte van de slideshow"
147
+
148
+ #: classes/SlideshowPluginInstaller.php:397
149
+ msgid "Height of the description boxes"
150
+ msgstr "Hoogte van de beschrijvingen"
151
+
152
+ #: classes/SlideshowPluginInstaller.php:398
153
+ msgid "Fit image into slide (stretching it)"
154
+ msgstr "Pas afbeelding in de slideshow (oprekken)"
155
+
156
+ #: classes/SlideshowPluginInstaller.php:399
157
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:426
158
+ msgid "Show title and description"
159
+ msgstr "Toon titel en beschrijving"
160
+
161
+ #: classes/SlideshowPluginInstaller.php:400
162
+ msgid "Hide description box, it will pop up when a mouse hovers over the slide"
163
+ msgstr ""
164
+ "Verberg beschrijving, toon deze alleen wanneer de muisaanwijzer boven de "
165
+ "slide is"
166
+
167
+ #: classes/SlideshowPluginInstaller.php:401
168
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
169
+ msgid "Automatically slide to the next slide"
170
+ msgstr "Automatisch naar de volgende slide gaan"
171
+
172
+ #: classes/SlideshowPluginInstaller.php:401
173
+ #: classes/SlideshowPluginInstaller.php:402
174
+ #: classes/SlideshowPluginInstaller.php:403
175
+ #: classes/SlideshowPluginInstaller.php:404
176
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
177
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:429
178
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:430
179
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:431
180
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:432
181
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:433
182
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:434
183
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:435
184
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:436
185
+ msgid "Control"
186
+ msgstr "Controle"
187
+
188
+ #: classes/SlideshowPluginInstaller.php:402
189
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:429
190
+ msgid "Return to the beginning of the slideshow after last slide"
191
+ msgstr "Keer terug naar het begin van de slideshow na de laatste slide."
192
+
193
+ #: classes/SlideshowPluginInstaller.php:403
194
+ msgid "Activate buttons (so the user can scroll through the slides)"
195
+ msgstr "Knoppen activeren (zodat de gebruiker door de slides kan scrollen)"
196
+
197
+ #: classes/SlideshowPluginInstaller.php:404
198
+ msgid "Show control panel (play and pause button)"
199
+ msgstr "Toon controlepaneel (speel en pause knop)"
200
+
201
+ #: classes/SlideshowPluginPostType.php:39
202
+ msgid "Slideshows"
203
+ msgstr "Slideshows"
204
+
205
+ #: classes/SlideshowPluginPostType.php:40
206
+ #: views/SlideshowPluginWidget/form.php:7
207
+ msgid "Slideshow"
208
+ msgstr "Slideshow"
209
+
210
+ #: classes/SlideshowPluginPostType.php:41
211
+ msgid "Add New Slideshow"
212
+ msgstr "Nieuwe Slideshow Toevoegen"
213
+
214
+ #: classes/SlideshowPluginPostType.php:42
215
+ msgid "Edit slideshow"
216
+ msgstr "Slideshow bewerken"
217
+
218
+ #: classes/SlideshowPluginPostType.php:43
219
+ msgid "New slideshow"
220
+ msgstr "Nieuwe slideshow"
221
+
222
+ #: classes/SlideshowPluginPostType.php:44
223
+ msgid "View slideshow"
224
+ msgstr "Slideshow bekijken"
225
+
226
+ #: classes/SlideshowPluginPostType.php:45
227
+ msgid "Search slideshows"
228
+ msgstr "Slideshows zoeken"
229
+
230
+ #: classes/SlideshowPluginPostType.php:46
231
+ #: classes/SlideshowPluginPostType.php:47
232
+ msgid "No slideshows found"
233
+ msgstr "Geen slideshows gevonden"
234
+
235
+ #: classes/SlideshowPluginPostType.php:167
236
+ msgid "Information"
237
+ msgstr "Informatie"
238
+
239
+ #: classes/SlideshowPluginPostType.php:176
240
+ msgid "Slides List"
241
+ msgstr "Slides Lijst"
242
+
243
+ #: classes/SlideshowPluginPostType.php:185
244
+ msgid "Slideshow Style"
245
+ msgstr "Slideshow Stijl"
246
+
247
+ #: classes/SlideshowPluginPostType.php:194
248
+ msgid "Slideshow Settings"
249
+ msgstr "Slideshow Instellingen"
250
+
251
+ #: classes/SlideshowPluginPostType.php:244
252
+ #: classes/SlideshowPluginSlideInserter.php:156
253
+ #: views/SlideshowPluginPostType/slides.php:2
254
+ msgid "Insert"
255
+ msgstr "Invoegen"
256
+
257
+ #: classes/SlideshowPluginPostType.php:252
258
+ #: views/SlideshowPluginPostType/slides.php:9
259
+ msgid "Add slides to this slideshow by using one of the buttons above."
260
+ msgstr "Voeg slides toe doormiddel van de bovenstaande knoppen."
261
+
262
+ #: classes/SlideshowPluginShortcode.php:132
263
+ msgid "No slideshow selected."
264
+ msgstr "Geen slideshow geselecteerd."
265
+
266
+ #: classes/SlideshowPluginSlideInserter.php:165
267
+ msgid "Load more results"
268
+ msgstr "Meer resultaten laden"
269
+
270
+ #: classes/SlideshowPluginSlideInserter.php:174
271
+ msgid "No images were found, click here to upload some."
272
+ msgstr "Geen afbeeldingen gevonden, klik hier om afbeeldingen te uploaden."
273
+
274
+ #: classes/SlideshowPluginSlideInserter.php:243
275
+ msgid "Are you sure you want to delete this slide?"
276
+ msgstr "Weet je zeker dat je deze slide wilt verwijderen?"
277
+
278
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
279
+ msgid "Slide Left"
280
+ msgstr "Schuif Links"
281
+
282
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
283
+ msgid "Slide Right"
284
+ msgstr "Schuif Rechts"
285
+
286
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
287
+ msgid "Slide Up"
288
+ msgstr "Schuif Omhoog"
289
+
290
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
291
+ msgid "Slide Down"
292
+ msgstr "Schuif Omlaag"
293
+
294
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
295
+ msgid "Direct Fade"
296
+ msgstr "Rechtstreekse Fade"
297
+
298
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
299
+ msgid "Random Animation"
300
+ msgstr "Willekeurige Animatie"
301
+
302
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:420
303
+ msgid "Maximum width. When maximum width is 0, maximum width is ignored"
304
+ msgstr ""
305
+ "Maximum breedte. Wanneer maximum breedte 0 is, zal deze worden genegeerd"
306
+
307
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
308
+ msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
309
+ msgstr "http://nl.wikipedia.org/wiki/Beeldverhouding"
310
+
311
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
312
+ msgid "More info"
313
+ msgstr "Meer informatie"
314
+
315
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
316
+ #, php-format
317
+ msgid ""
318
+ "Proportional relationship%s between slideshow's width and height (width:"
319
+ "height)"
320
+ msgstr ""
321
+ "Proportionele verhouding%s tussen de slideshow's breedte en hoogte (breedte:"
322
+ "hoogte)"
323
+
324
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:422
325
+ msgid "Slideshow's height"
326
+ msgstr "Slideshow's hoogte"
327
+
328
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
329
+ msgid "Fit image into slide (Stretch image)"
330
+ msgstr "Pas afbeelding in de slideshow (Afbeedling uitrekken)"
331
+
332
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:424
333
+ msgid "Shrink slideshow's height when width shrinks"
334
+ msgstr "Maak de slideshow's hoogte kleiner wanneer de breedte kleiner wordt"
335
+
336
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
337
+ msgid ""
338
+ "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
339
+ msgstr ""
340
+ "Gebruik responsiviteit (Maak slideshow smaller wanneer de pagina smaller "
341
+ "wordt)"
342
+
343
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:427
344
+ msgid "Hide description box, pop up when mouse hovers over"
345
+ msgstr ""
346
+ "Verbeg beschrijving, toon deze alleen wanneer de muisaanwijzer boven de "
347
+ "slideshow is"
348
+
349
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:430
350
+ msgid "Pause slideshow when mouse hovers over"
351
+ msgstr "Pauzeer slideshow wanneer de muisaanwijzer boven de slideshow is"
352
+
353
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:431
354
+ msgid "Activate navigation buttons"
355
+ msgstr "Toon navigatie knoppen"
356
+
357
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:432
358
+ msgid "Hide navigation buttons, show when mouse hovers over"
359
+ msgstr ""
360
+ "Verberg navigatieknoppen, toon deze aleen wanneer de muisaanwijzer boven de "
361
+ "slideshow is"
362
+
363
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:433
364
+ msgid "Activate pagination"
365
+ msgstr "Toon paginering"
366
+
367
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:434
368
+ msgid "Hide pagination, show when mouse hovers over"
369
+ msgstr ""
370
+ "Verberg paginering, toon deze alleen wanneer de muisaanwijzer boven de "
371
+ "slideshow is"
372
+
373
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:435
374
+ msgid "Activate control panel (play and pause button)"
375
+ msgstr "Toon controlepaneel (speel en pause knop)"
376
+
377
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:436
378
+ msgid "Hide control panel, show when mouse hovers over"
379
+ msgstr ""
380
+ "Verberg controlepaneel, toon deze alleen wanneer de muisaanwijzer boven de "
381
+ "slideshow is"
382
+
383
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:437
384
+ msgid "Randomize slides"
385
+ msgstr "Toon slides in willekeurige volgorde"
386
+
387
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:437
388
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:438
389
+ msgid "Miscellaneous"
390
+ msgstr "Overige"
391
+
392
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:438
393
+ #, php-format
394
+ msgid "Avoid content filter (disable if '%s' is shown)"
395
+ msgstr "Content filter omzeilen (uitschakelen als '%s' wordt getoond)"
396
+
397
+ #: classes/SlideshowPluginWidget.php:23
398
+ msgid "Enables you to show your slideshows in the widget area of your website."
399
+ msgstr ""
400
+ "Maakt het mogelijk je slideshows te bijken in het widget gebied van je "
401
+ "website."
402
+
403
+ #: classes/SlideshowPluginWidget.php:29
404
+ msgid "Slideshow Widget"
405
+ msgstr "Slideshow Widget"
406
+
407
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:38
408
+ msgid "Default stylesheets"
409
+ msgstr "Standaard stijlen"
410
+
411
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:52
412
+ msgid "Create a new custom style from this style"
413
+ msgstr "Maak een nieuwe aangepaste stijl uit deze stijl"
414
+
415
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:54
416
+ msgid "Customize"
417
+ msgstr "Aanpassen"
418
+
419
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:68
420
+ msgid "Custom stylesheets"
421
+ msgstr "Aangepaste stijl"
422
+
423
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:81
424
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:160
425
+ msgid "Edit this style"
426
+ msgstr "Bewerk deze stijl"
427
+
428
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:83
429
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:162
430
+ #: views/SlideshowPluginPostType/slides.php:137
431
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:46
432
+ msgid "Edit"
433
+ msgstr "Bewerken"
434
+
435
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:90
436
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:169
437
+ msgid "Delete this style"
438
+ msgstr "Verwijder stijl"
439
+
440
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:92
441
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:171
442
+ msgid "Delete"
443
+ msgstr "Verwijderen"
444
+
445
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:102
446
+ msgid "Click 'Customize' to create a new custom stylesheet."
447
+ msgstr "Klik op 'Aanpassen' om een nieuwe aangepaste stijl te maken."
448
+
449
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:118
450
+ msgid "Select a stylesheet from the left to start customizing it."
451
+ msgstr "Kies een stijl uit de linker kolom om deze aan te passen."
452
+
453
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:127
454
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:180
455
+ #: views/SlideshowPluginPostType/slides.php:58
456
+ #: views/SlideshowPluginPostType/slides.php:143
457
+ #: views/SlideshowPluginPostType/slides.php:195
458
+ #: views/SlideshowPluginPostType/slides.php:263
459
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:54
460
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:12
461
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:92
462
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:29
463
+ #: views/SlideshowPluginWidget/form.php:2
464
+ msgid "Title"
465
+ msgstr "Titel"
466
+
467
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:136
468
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:188
469
+ msgid "Style"
470
+ msgstr "Stijl"
471
+
472
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:11
473
+ msgid "Note"
474
+ msgstr "Opgelet"
475
+
476
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:18
477
+ #, php-format
478
+ msgid ""
479
+ "The settings set on this page apply only to newly created slideshows and "
480
+ "therefore do not alter any existing ones. To adapt a slideshow's settings, "
481
+ "%sclick here.%s"
482
+ msgstr ""
483
+ "De instellingen op deze pagina zijn alleen van toepassing op slideshows die "
484
+ "nieuw worden aangemaakt en niet op de slideshows die reeds bestaan. Om een "
485
+ "slideshow's instellingen te wijzigen, %sklik hier.%s"
486
+
487
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:30
488
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:16
489
+ msgid "Default Slideshow Settings"
490
+ msgstr "Standaard Slideshow Instellingen"
491
+
492
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:43
493
+ #: views/SlideshowPluginPostType/settings.php:12
494
+ msgid "settings"
495
+ msgstr "instellingen"
496
+
497
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:80
498
+ msgid "Default Slideshow Stylesheet"
499
+ msgstr "Standaard Slideshow Stijl"
500
+
501
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:15
502
+ msgid "User Capabilities"
503
+ msgstr "Gebruikersrechten"
504
+
505
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:17
506
+ msgid "Custom Styles"
507
+ msgstr "Aangepaste Stijlen"
508
+
509
+ #: views/SlideshowPluginGeneralSettings/user-capabilities.php:8
510
+ msgid "Add slideshows"
511
+ msgstr "Slideshows toevoegen"
512
+
513
+ #: views/SlideshowPluginGeneralSettings/user-capabilities.php:9
514
+ msgid "Edit slideshows"
515
+ msgstr "Slideshows bewerken"
516
+
517
+ #: views/SlideshowPluginGeneralSettings/user-capabilities.php:10
518
+ msgid "Delete slideshows"
519
+ msgstr "Slideshows verwijderen"
520
+
521
+ #: views/SlideshowPluginGeneralSettings/user-capabilities.php:18
522
+ msgid "Select the user roles that will able to perform certain actions."
523
+ msgstr "Kies de gebruikersrol waaraan je bepaalde rechten wilt verlenen."
524
+
525
+ #: views/SlideshowPluginGeneralSettings/user-capabilities.php:35
526
+ msgid "Untitled role"
527
+ msgstr "Naamloze gebruikersfunctie"
528
+
529
+ #: views/SlideshowPluginPostType/information.php:1
530
+ msgid ""
531
+ "To use this slideshow in your website either add this piece of shortcode to "
532
+ "your posts or pages"
533
+ msgstr ""
534
+ "Om deze slideshow op je website te gebruiken voeg je of dit stukje shortcode "
535
+ "aan je pagina of post toe"
536
+
537
+ #: views/SlideshowPluginPostType/information.php:5
538
+ msgid ""
539
+ "Or add this piece of code to where ever in your website you want to place "
540
+ "the slideshow"
541
+ msgstr ""
542
+ "Of je voegt dit stuk code toe aan je broncode op de plaats waar je wilt dat "
543
+ "de slideshow te zien is"
544
+
545
+ #: views/SlideshowPluginPostType/information.php:9
546
+ #, php-format
547
+ msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
548
+ msgstr ""
549
+ "Ook kan je naar de %swidget pagina%s toegaan, om de slideshow te tonen als "
550
+ "widget."
551
+
552
+ #: views/SlideshowPluginPostType/settings.php:26
553
+ #: views/SlideshowPluginPostType/style-settings.php:11
554
+ msgid "Default"
555
+ msgstr "Standaard"
556
+
557
+ #: views/SlideshowPluginPostType/slides.php:53
558
+ #: views/SlideshowPluginPostType/slides.php:190
559
+ #: views/SlideshowPluginSlideInserter/insert-text-button.php:1
560
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:6
561
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:23
562
+ msgid "Text slide"
563
+ msgstr "Tekst slide"
564
+
565
+ #: views/SlideshowPluginPostType/slides.php:60
566
+ #: views/SlideshowPluginPostType/slides.php:149
567
+ #: views/SlideshowPluginPostType/slides.php:197
568
+ #: views/SlideshowPluginPostType/slides.php:269
569
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:61
570
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:15
571
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:99
572
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:32
573
+ msgid "Description"
574
+ msgstr "Beschrijving"
575
+
576
+ #: views/SlideshowPluginPostType/slides.php:62
577
+ #: views/SlideshowPluginPostType/slides.php:199
578
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:21
579
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:38
580
+ msgid "Background color"
581
+ msgstr "Achtergrond kleur"
582
+
583
+ #: views/SlideshowPluginPostType/slides.php:67
584
+ #: views/SlideshowPluginPostType/slides.php:154
585
+ #: views/SlideshowPluginPostType/slides.php:204
586
+ #: views/SlideshowPluginPostType/slides.php:274
587
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:68
588
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:28
589
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:106
590
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:45
591
+ msgid "URL"
592
+ msgstr "URL"
593
+
594
+ #: views/SlideshowPluginPostType/slides.php:69
595
+ #: views/SlideshowPluginPostType/slides.php:156
596
+ #: views/SlideshowPluginPostType/slides.php:206
597
+ #: views/SlideshowPluginPostType/slides.php:276
598
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:71
599
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:31
600
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:109
601
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:48
602
+ msgid "Open URL in"
603
+ msgstr "Open URL in"
604
+
605
+ #: views/SlideshowPluginPostType/slides.php:71
606
+ #: views/SlideshowPluginPostType/slides.php:158
607
+ #: views/SlideshowPluginPostType/slides.php:208
608
+ #: views/SlideshowPluginPostType/slides.php:278
609
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:73
610
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:33
611
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:111
612
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:50
613
+ msgid "Same window"
614
+ msgstr "Zelfde scherm"
615
+
616
+ #: views/SlideshowPluginPostType/slides.php:72
617
+ #: views/SlideshowPluginPostType/slides.php:159
618
+ #: views/SlideshowPluginPostType/slides.php:209
619
+ #: views/SlideshowPluginPostType/slides.php:279
620
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:74
621
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:34
622
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:112
623
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:51
624
+ msgid "New window"
625
+ msgstr "Nieuw scherm"
626
+
627
+ #: views/SlideshowPluginPostType/slides.php:89
628
+ #: views/SlideshowPluginPostType/slides.php:229
629
+ #: views/SlideshowPluginSlideInserter/insert-video-button.php:1
630
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:54
631
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:13
632
+ msgid "Video slide"
633
+ msgstr "Video slide"
634
+
635
+ #: views/SlideshowPluginPostType/slides.php:94
636
+ #: views/SlideshowPluginPostType/slides.php:234
637
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:60
638
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:19
639
+ msgid "Youtube Video ID"
640
+ msgstr "Youtube Video ID"
641
+
642
+ #: views/SlideshowPluginPostType/slides.php:132
643
+ #: views/SlideshowPluginPostType/slides.php:254
644
+ #: views/SlideshowPluginSlideInserter/insert-image-button.php:1
645
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:40
646
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:80
647
+ msgid "Image slide"
648
+ msgstr "Afbeeldingsslide"
649
+
650
+ #: views/SlideshowPluginPostType/slides.php:170
651
+ msgid ""
652
+ "An error occurred while loading this slide, and it will not be present in "
653
+ "the slideshow"
654
+ msgstr ""
655
+ "Een fout is ontstaan tijdens het laden van deze slide, de slide zal niet te "
656
+ "bekijken zijn in je slideshow"
657
+
658
+ #: views/SlideshowPluginPostType/slides.php:176
659
+ #: views/SlideshowPluginPostType/slides.php:217
660
+ #: views/SlideshowPluginPostType/slides.php:242
661
+ #: views/SlideshowPluginPostType/slides.php:288
662
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:83
663
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:42
664
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:68
665
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:121
666
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:59
667
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:27
668
+ msgid "Delete slide"
669
+ msgstr "Verwijder slide"
670
+
671
+ #: views/SlideshowPluginPostType/style-settings.php:22
672
+ #, php-format
673
+ msgid "Custom styles can be created and customized %shere%s."
674
+ msgstr "Aangepaste stijlen kunnen %shier%s worden aangemaakt en aangepast."
675
+
676
+ #: views/SlideshowPluginPostType/support-plugin.php:3
677
+ msgid "Help to keep this plugin free!"
678
+ msgstr "Help mee om deze plugin gratis te houden!"
679
+
680
+ #: views/SlideshowPluginPostType/support-plugin.php:6
681
+ msgid ""
682
+ "In order to keep you provided with the newest features, forum support, and "
683
+ "bug-fixes, a lot of motivation is required. Therefore I'm kindly asking you "
684
+ "to consider making a small donation to the plugin or rating it as 5-stars on "
685
+ "Wordpress.org. Thank you in advance!"
686
+ msgstr ""
687
+ "Om je te kunnen voorzien van de nieuwste functionaliteiten, forum "
688
+ "ondersteuning en fout-oplossingen, is een hoop motivatie nodig. Daarom zou "
689
+ "ik het enorm waarderen als je een kleine donatie aan de plugin zou willen "
690
+ "doen, of de plugin 5 sterren zou willen geven op Wordpress.org. Alvast "
691
+ "bedankt!"
692
+
693
+ #: views/SlideshowPluginPostType/support-plugin.php:15
694
+ msgid "Rate on Wordpress.org"
695
+ msgstr "Geef een waardering op Wordpress.org"
696
+
697
+ #: views/SlideshowPluginPostType/support-plugin.php:24
698
+ msgid "Frequently Asked Questions (FAQ)"
699
+ msgstr "Veelgestelde Vragen (FAQ)"
700
+
701
+ #: views/SlideshowPluginPostType/support-plugin.php:33
702
+ msgid "Questions / Suggestions"
703
+ msgstr "Vragen / Opmerkingen"
704
+
705
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
706
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
707
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
708
+ msgid "Insert a Slideshow"
709
+ msgstr "Slideshow invoegen"
710
+
711
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
712
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
713
+ msgid "Insert Slideshow"
714
+ msgstr "Slideshow invoegen"
715
+
716
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
717
+ msgid "Select a slideshow"
718
+ msgstr "Selecteer een slideshow"
719
+
720
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
721
+ #: views/SlideshowPluginWidget/form.php:12
722
+ msgid "Untitled slideshow"
723
+ msgstr "Naamloze slideshow"
724
+
725
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
726
+ msgid "Cancel"
727
+ msgstr "Annuleren"
728
+
729
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
730
+ #, php-format
731
+ msgid ""
732
+ "It seems you haven't created any slideshows yet. %sYou can create a "
733
+ "slideshow here!%s"
734
+ msgstr ""
735
+ "Het ziet er naar uit dat je nog geen slideshows hebt gemaakt. %sHier kan je "
736
+ "een slideshow maken!%s"
737
+
738
+ #: views/SlideshowPluginSlideInserter/search-popup.php:6
739
+ msgid "Search"
740
+ msgstr "Zoek"
741
+
742
+ #: views/SlideshowPluginSlideInserter/search-popup.php:7
743
+ msgid "Search images by title or ID"
744
+ msgstr "Zoek afbeeldingen op titel of ID"
745
+
746
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:18
747
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:35
748
+ msgid "Text color"
749
+ msgstr "Tekst kleur"
750
+
751
+ #: views/SlideshowPluginUpload/upload-button.php:1
752
+ msgid "Upload/Manage Images"
753
+ msgstr "Upload/Beheer Afbeeldingen"
754
+
755
+ #: views/SlideshowPluginWidget/form.php:9
756
+ msgid "Random Slideshow"
757
+ msgstr "Willekeurige Slideshow"
758
+
759
+ #~ msgid ""
760
+ #~ "Shrink slideshow's height when width shrinks (Fixed height can be defined "
761
+ #~ "when setting this value to 'No')"
762
+ #~ msgstr ""
763
+ #~ "Krimp de slideshow's hoogte wanneer de breedte kleiner wordt "
764
+ #~ "(Vastgestelde hoogte kan worden ingesteld als deze instelling op 'Nee' "
765
+ #~ "staat)"
766
+
767
+ #, fuzzy
768
+ #~ msgid "Editor"
769
+ #~ msgstr "Bewerken"
770
+
771
+ #~ msgid "light"
772
+ #~ msgstr "licht"
773
+
774
+ #~ msgid "slide"
775
+ #~ msgstr "slide"
776
+
777
+ #~ msgid "Custom style editor (Does not work with a Strict Doctype)"
778
+ #~ msgstr "Aangepaste stijl bewerker (Werkt niet met een Strict Doctype)"
779
+
780
+ #~ msgid "Has the Slideshow plugin helped you?"
781
+ #~ msgstr "Heeft de Slideshow plugin je geholpen?"
782
+
783
+ #~ msgid "Help it back!"
784
+ #~ msgstr "Help hem terug!"
785
+
786
+ #~ msgid ""
787
+ #~ "If this plugin has filled you with happiness, please support the upkeep "
788
+ #~ "of the plugin by rating it on Wordpress, posting a suggestion for "
789
+ #~ "improvement on the support forum, or making a donation."
790
+ #~ msgstr ""
791
+ #~ "Als deze plugin je met blijdschap heeft vervuld, zou ik het enorm "
792
+ #~ "waarderen als je de plugin wilt beoordelen op Wordpress, een suggestie "
793
+ #~ "wilt maken voor verbetering, of een donatie doen wilt."
794
+
795
+ #~ msgid "Click on an image to insert it as a slide"
796
+ #~ msgstr "Klik op een plaatje om deze in te voegen als slide"
797
+
798
+ #~ msgid "Width of the slideshow"
799
+ #~ msgstr "Breedte van de slideshow"
800
+
801
+ #~ msgid "Defaults to parent's width."
802
+ #~ msgstr "Standaard ingesteld op de breedte van het bovenliggende element."
803
+
804
+ #~ msgid "Send user to image URL on click"
805
+ #~ msgstr ""
806
+ #~ "Wanner de gebruiker op de afbeelding klikt, stuur hem naar de URL van het "
807
+ #~ "plaatje"
808
+
809
+ #~ msgid "Leave any field open to use default value."
810
+ #~ msgstr "Een veld dat open wordt gelaten neemt de standaardwaarde aan."
languages/slideshow-plugin-ru_RU.mo CHANGED
Binary file
languages/slideshow-plugin-ru_RU.po CHANGED
@@ -1,770 +1,768 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Slideshow Plugin\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-02-01 15:08+0100\n"
6
- "PO-Revision-Date: 2013-02-01 15:08+0100\n"
7
- "Last-Translator: Stefan Boonstra <stefanboonstra@hotmail.com>\n"
8
- "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
- "Language: ru_UA\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: _e;__\n"
14
- "X-Poedit-Basepath: ../\n"
15
- "X-Generator: Poedit 1.5.4\n"
16
- "X-Poedit-SearchPath-0: .\n"
17
-
18
- #: classes/SlideshowPluginGeneralSettings.php:64
19
- #: classes/SlideshowPluginGeneralSettings.php:65
20
- msgid "General Settings"
21
- msgstr ""
22
-
23
- #: classes/SlideshowPluginGeneralSettings.php:142
24
- msgid "New"
25
- msgstr ""
26
-
27
- #: classes/SlideshowPluginGeneralSettings.php:143
28
- msgid "Are you sure you want to delete this custom style?"
29
- msgstr ""
30
-
31
- #: classes/SlideshowPluginGeneralSettings.php:162
32
- #: classes/SlideshowPluginInstaller.php:388
33
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:6
34
- msgid "Light"
35
- msgstr "Светлый"
36
-
37
- #: classes/SlideshowPluginGeneralSettings.php:163
38
- #: classes/SlideshowPluginInstaller.php:388
39
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:7
40
- msgid "Dark"
41
- msgstr "Тёмный"
42
-
43
- #: classes/SlideshowPluginGeneralSettings.php:267
44
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:49
45
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:131
46
- msgid "Untitled"
47
- msgstr ""
48
-
49
- #: classes/SlideshowPluginInstaller.php:385
50
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:374
51
- msgid "Yes"
52
- msgstr "Да"
53
-
54
- #: classes/SlideshowPluginInstaller.php:386
55
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:375
56
- msgid "No"
57
- msgstr "Нет"
58
-
59
- #: classes/SlideshowPluginInstaller.php:388
60
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:475
61
- msgid "The style used for this slideshow"
62
- msgstr "Стиль, используемый в этом слайдшоу"
63
-
64
- #: classes/SlideshowPluginInstaller.php:388
65
- msgid "Custom"
66
- msgstr "Собственный"
67
-
68
- #: classes/SlideshowPluginInstaller.php:389
69
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:114
70
- msgid "Custom style editor"
71
- msgstr "Редактор собственного стиля"
72
-
73
- #: classes/SlideshowPluginInstaller.php:390
74
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
75
- msgid "Animation used for transition between slides"
76
- msgstr "Анимация, используемая для перехода между слайдами"
77
-
78
- #: classes/SlideshowPluginInstaller.php:390
79
- msgid "Slide"
80
- msgstr "Слайд"
81
-
82
- #: classes/SlideshowPluginInstaller.php:390
83
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
84
- msgid "Fade"
85
- msgstr "Затухание"
86
-
87
- #: classes/SlideshowPluginInstaller.php:390
88
- #: classes/SlideshowPluginInstaller.php:391
89
- #: classes/SlideshowPluginInstaller.php:392
90
- #: classes/SlideshowPluginInstaller.php:393
91
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
92
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:417
93
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:418
94
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
95
- msgid "Animation"
96
- msgstr "Анимационные"
97
-
98
- #: classes/SlideshowPluginInstaller.php:391
99
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:417
100
- msgid "Number of seconds the slide takes to slide in"
101
- msgstr "Число секунд, которое занимает появление слайда"
102
-
103
- #: classes/SlideshowPluginInstaller.php:392
104
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:418
105
- msgid "Number of seconds the description takes to slide in"
106
- msgstr "Число секунд, которое занимает появление текста"
107
-
108
- #: classes/SlideshowPluginInstaller.php:393
109
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
110
- msgid "Seconds between changing slides"
111
- msgstr "Секунд между сменой слайдов"
112
-
113
- #: classes/SlideshowPluginInstaller.php:394
114
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:420
115
- msgid "Number of slides to fit into one slide"
116
- msgstr "Число слайдов, размещённых в одном слайде"
117
-
118
- #: classes/SlideshowPluginInstaller.php:394
119
- #: classes/SlideshowPluginInstaller.php:395
120
- #: classes/SlideshowPluginInstaller.php:396
121
- #: classes/SlideshowPluginInstaller.php:397
122
- #: classes/SlideshowPluginInstaller.php:398
123
- #: classes/SlideshowPluginInstaller.php:399
124
- #: classes/SlideshowPluginInstaller.php:400
125
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:420
126
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
127
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:422
128
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
129
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:424
130
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
131
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:426
132
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:427
133
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
134
- msgid "Display"
135
- msgstr "Визуальные"
136
-
137
- #: classes/SlideshowPluginInstaller.php:395
138
- msgid "Width of the slideshow, set to parent&#39;s width on 0"
139
- msgstr ""
140
- "Ширина слайдшоу. Установите в 0 для определения ширины по родительскому "
141
- "элементу"
142
-
143
- #: classes/SlideshowPluginInstaller.php:396
144
- msgid "Height of the slideshow"
145
- msgstr "Высота слайдшоу"
146
-
147
- #: classes/SlideshowPluginInstaller.php:397
148
- msgid "Height of the description boxes"
149
- msgstr "Высота блока описания"
150
-
151
- #: classes/SlideshowPluginInstaller.php:398
152
- msgid "Fit image into slide (stretching it)"
153
- msgstr "Уместить изображение в слайд (растянуть его)"
154
-
155
- #: classes/SlideshowPluginInstaller.php:399
156
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:427
157
- msgid "Show title and description"
158
- msgstr "Показать заголовок и описание"
159
-
160
- #: classes/SlideshowPluginInstaller.php:400
161
- msgid "Hide description box, it will pop up when a mouse hovers over the slide"
162
- msgstr ""
163
- "Скрыть блок описания. Он будет появляться при наведении указателя мыши "
164
- "поверх слайда"
165
-
166
- #: classes/SlideshowPluginInstaller.php:401
167
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:430
168
- msgid "Automatically slide to the next slide"
169
- msgstr "Автоматический переход к следующему слайду"
170
-
171
- #: classes/SlideshowPluginInstaller.php:401
172
- #: classes/SlideshowPluginInstaller.php:402
173
- #: classes/SlideshowPluginInstaller.php:403
174
- #: classes/SlideshowPluginInstaller.php:404
175
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:430
176
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:431
177
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:432
178
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:433
179
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:434
180
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:435
181
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:436
182
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:437
183
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:438
184
- msgid "Control"
185
- msgstr "Управляющие"
186
-
187
- #: classes/SlideshowPluginInstaller.php:402
188
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:431
189
- msgid "Return to the beginning of the slideshow after last slide"
190
- msgstr "Вернуться в начало слайдшоу после последнего слайда"
191
-
192
- #: classes/SlideshowPluginInstaller.php:403
193
- msgid "Activate buttons (so the user can scroll through the slides)"
194
- msgstr "Активировать кнопки (пользователь сможет пролистывать слайды)"
195
-
196
- #: classes/SlideshowPluginInstaller.php:404
197
- msgid "Show control panel (play and pause button)"
198
- msgstr "Отображать панель управления (кнопка воспроизведения и останова)"
199
-
200
- #: classes/SlideshowPluginPostType.php:37
201
- msgid "Slideshows"
202
- msgstr "Слайдшоу"
203
-
204
- #: classes/SlideshowPluginPostType.php:38
205
- #: views/SlideshowPluginWidget/form.php:7
206
- msgid "Slideshow"
207
- msgstr "Слайдшоу"
208
-
209
- #: classes/SlideshowPluginPostType.php:39
210
- msgid "Add New Slideshow"
211
- msgstr "Добавить новое слайдшоу"
212
-
213
- #: classes/SlideshowPluginPostType.php:40
214
- msgid "Edit slideshow"
215
- msgstr "Редактировать слайдшоу"
216
-
217
- #: classes/SlideshowPluginPostType.php:41
218
- msgid "New slideshow"
219
- msgstr "Новое слайдшоу"
220
-
221
- #: classes/SlideshowPluginPostType.php:42
222
- msgid "View slideshow"
223
- msgstr "Просмотр слайдшоу"
224
-
225
- #: classes/SlideshowPluginPostType.php:43
226
- msgid "Search slideshows"
227
- msgstr "Поиск слайдшоу"
228
-
229
- #: classes/SlideshowPluginPostType.php:44
230
- #: classes/SlideshowPluginPostType.php:45
231
- msgid "No slideshows found"
232
- msgstr "Ни одного слайдшоу не найдено"
233
-
234
- #: classes/SlideshowPluginPostType.php:126
235
- msgid "Information"
236
- msgstr "Информация"
237
-
238
- #: classes/SlideshowPluginPostType.php:135
239
- msgid "Slides List"
240
- msgstr "Список слайдов"
241
-
242
- #: classes/SlideshowPluginPostType.php:144
243
- msgid "Slideshow Style"
244
- msgstr "Стиль слайдшоу"
245
-
246
- #: classes/SlideshowPluginPostType.php:153
247
- msgid "Slideshow Settings"
248
- msgstr "Настройки слайдшоу"
249
-
250
- #: classes/SlideshowPluginPostType.php:203
251
- #: classes/SlideshowPluginSlideInserter.php:156
252
- #: views/SlideshowPluginPostType/slides.php:2
253
- msgid "Insert"
254
- msgstr "Вставить"
255
-
256
- #: classes/SlideshowPluginPostType.php:211
257
- #: views/SlideshowPluginPostType/slides.php:9
258
- msgid "Add slides to this slideshow by using one of the buttons above."
259
- msgstr "Добавить слайды к слайдшоу с помощью одной из кнопок ниже"
260
-
261
- #: classes/SlideshowPluginShortcode.php:132
262
- msgid "No slideshow selected."
263
- msgstr ""
264
-
265
- #: classes/SlideshowPluginSlideInserter.php:165
266
- msgid "Load more results"
267
- msgstr "Загрузить больше результатов"
268
-
269
- #: classes/SlideshowPluginSlideInserter.php:174
270
- msgid "No images were found, click here to upload some."
271
- msgstr "Не найдено изображений, щёлкните здесь для загрузки"
272
-
273
- #: classes/SlideshowPluginSlideInserter.php:243
274
- msgid "Are you sure you want to delete this slide?"
275
- msgstr ""
276
-
277
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
278
- msgid "Slide Left"
279
- msgstr ""
280
-
281
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
282
- msgid "Slide Right"
283
- msgstr ""
284
-
285
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
286
- msgid "Slide Up"
287
- msgstr ""
288
-
289
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
290
- msgid "Slide Down"
291
- msgstr ""
292
-
293
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
294
- msgid "Direct Fade"
295
- msgstr ""
296
-
297
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
298
- msgid "Random Animation"
299
- msgstr ""
300
-
301
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
302
- msgid "Maximum width. When maximum width is 0, maximum width is ignored"
303
- msgstr ""
304
-
305
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:422
306
- msgid ""
307
- "Shrink slideshow's height when width shrinks (Fixed height can be defined "
308
- "when setting this value to 'No')"
309
- msgstr ""
310
-
311
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
312
- msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
313
- msgstr ""
314
-
315
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
316
- msgid "More info"
317
- msgstr ""
318
-
319
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
320
- #, php-format
321
- msgid ""
322
- "Proportional relationship%s between slideshow's width and height (width:"
323
- "height)"
324
- msgstr ""
325
-
326
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:424
327
- msgid "Slideshow's height"
328
- msgstr ""
329
-
330
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
331
- msgid "Fit image into slide (Stretch image)"
332
- msgstr ""
333
-
334
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:426
335
- msgid ""
336
- "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
337
- msgstr ""
338
-
339
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
340
- msgid "Hide description box, pop up when mouse hovers over"
341
- msgstr ""
342
-
343
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:432
344
- msgid "Pause slideshow when mouse hovers over"
345
- msgstr ""
346
-
347
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:433
348
- msgid "Activate navigation buttons"
349
- msgstr ""
350
-
351
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:434
352
- msgid "Hide navigation buttons, show when mouse hovers over"
353
- msgstr ""
354
-
355
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:435
356
- msgid "Activate pagination"
357
- msgstr ""
358
-
359
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:436
360
- msgid "Hide pagination, show when mouse hovers over"
361
- msgstr ""
362
-
363
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:437
364
- msgid "Activate control panel (play and pause button)"
365
- msgstr ""
366
-
367
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:438
368
- msgid "Hide control panel, show when mouse hovers over"
369
- msgstr ""
370
-
371
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:439
372
- msgid "Randomize slides"
373
- msgstr "Слайды в случайном порядке"
374
-
375
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:439
376
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:440
377
- msgid "Miscellaneous"
378
- msgstr "Разные"
379
-
380
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:440
381
- #, php-format
382
- msgid "Avoid content filter (disable if '%s' is shown)"
383
- msgstr "Избегать фильтра содержимого (запрещено, если отображается '%s' )"
384
-
385
- #: classes/SlideshowPluginWidget.php:23
386
- msgid "Enables you to show your slideshows in the widget area of your website."
387
- msgstr "Позволяет отобразить ваше слайдшоу в области виджетов вашего сайта"
388
-
389
- #: classes/SlideshowPluginWidget.php:29
390
- msgid "Slideshow Widget"
391
- msgstr "Виджет слайдшоу"
392
-
393
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:38
394
- msgid "Default stylesheets"
395
- msgstr ""
396
-
397
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:52
398
- msgid "Create a new custom style from this style"
399
- msgstr ""
400
-
401
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:54
402
- msgid "Customize"
403
- msgstr ""
404
-
405
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:68
406
- msgid "Custom stylesheets"
407
- msgstr ""
408
-
409
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:81
410
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:160
411
- msgid "Edit this style"
412
- msgstr ""
413
-
414
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:83
415
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:162
416
- #: views/SlideshowPluginPostType/slides.php:137
417
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:46
418
- msgid "Edit"
419
- msgstr "Редактировать"
420
-
421
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:90
422
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:169
423
- msgid "Delete this style"
424
- msgstr ""
425
-
426
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:92
427
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:171
428
- msgid "Delete"
429
- msgstr ""
430
-
431
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:102
432
- msgid "Click 'Customize' to create a new custom stylesheet."
433
- msgstr ""
434
-
435
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:118
436
- msgid "Select a stylesheet from the left to start customizing it."
437
- msgstr ""
438
-
439
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:127
440
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:180
441
- #: views/SlideshowPluginPostType/slides.php:58
442
- #: views/SlideshowPluginPostType/slides.php:143
443
- #: views/SlideshowPluginPostType/slides.php:195
444
- #: views/SlideshowPluginPostType/slides.php:263
445
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:54
446
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:12
447
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:86
448
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:29
449
- #: views/SlideshowPluginWidget/form.php:2
450
- msgid "Title"
451
- msgstr "Заголовок"
452
-
453
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:136
454
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:188
455
- msgid "Style"
456
- msgstr "Style"
457
-
458
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:11
459
- msgid "Note"
460
- msgstr ""
461
-
462
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:18
463
- #, php-format
464
- msgid ""
465
- "The settings set on this page apply only to newly created slideshows and "
466
- "therefore do not alter any existing ones. To adapt a slideshow's settings, "
467
- "%sclick here.%s"
468
- msgstr ""
469
-
470
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:30
471
- #: views/SlideshowPluginGeneralSettings/general-settings.php:16
472
- msgid "Default Slideshow Settings"
473
- msgstr ""
474
-
475
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:43
476
- #: views/SlideshowPluginPostType/settings.php:12
477
- msgid "settings"
478
- msgstr "настройки"
479
-
480
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:80
481
- msgid "Default Slideshow Stylesheet"
482
- msgstr ""
483
-
484
- #: views/SlideshowPluginGeneralSettings/general-settings.php:15
485
- msgid "User Capabilities"
486
- msgstr ""
487
-
488
- #: views/SlideshowPluginGeneralSettings/general-settings.php:17
489
- msgid "Custom Styles"
490
- msgstr ""
491
-
492
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:8
493
- msgid "Add slideshows"
494
- msgstr ""
495
-
496
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:9
497
- msgid "Edit slideshows"
498
- msgstr ""
499
-
500
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:10
501
- msgid "Delete slideshows"
502
- msgstr ""
503
-
504
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:18
505
- msgid "Select the user roles that will able to perform certain actions."
506
- msgstr ""
507
-
508
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:35
509
- msgid "Untitled role"
510
- msgstr ""
511
-
512
- #: views/SlideshowPluginPostType/information.php:1
513
- msgid ""
514
- "To use this slideshow in your website either add this piece of shortcode to "
515
- "your posts or pages"
516
- msgstr ""
517
- "Для использования слайдшоу на вашем сайте добавьте этот шорткод в ваши "
518
- "записи или страницы"
519
-
520
- #: views/SlideshowPluginPostType/information.php:5
521
- msgid ""
522
- "Or add this piece of code to where ever in your website you want to place "
523
- "the slideshow"
524
- msgstr ""
525
- "Или добавьте этот фрагмент кода в том месте, где вы желаете разместить ваше "
526
- "слайдшоу"
527
-
528
- #: views/SlideshowPluginPostType/information.php:9
529
- #, php-format
530
- msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
531
- msgstr ""
532
- "Или отправьтесь на %sстраницу виджетов%s и отобразите слайдшоу как виджет"
533
-
534
- #: views/SlideshowPluginPostType/settings.php:26
535
- #: views/SlideshowPluginPostType/style-settings.php:11
536
- msgid "Default"
537
- msgstr "Исходное"
538
-
539
- #: views/SlideshowPluginPostType/slides.php:53
540
- #: views/SlideshowPluginPostType/slides.php:190
541
- #: views/SlideshowPluginSlideInserter/insert-text-button.php:1
542
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:6
543
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:23
544
- msgid "Text slide"
545
- msgstr "Текстовый слайд"
546
-
547
- #: views/SlideshowPluginPostType/slides.php:60
548
- #: views/SlideshowPluginPostType/slides.php:149
549
- #: views/SlideshowPluginPostType/slides.php:197
550
- #: views/SlideshowPluginPostType/slides.php:269
551
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:62
552
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:15
553
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:92
554
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:32
555
- msgid "Description"
556
- msgstr "Описание"
557
-
558
- #: views/SlideshowPluginPostType/slides.php:62
559
- #: views/SlideshowPluginPostType/slides.php:199
560
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:21
561
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:38
562
- msgid "Background color"
563
- msgstr "Фоновый цвет"
564
-
565
- #: views/SlideshowPluginPostType/slides.php:67
566
- #: views/SlideshowPluginPostType/slides.php:154
567
- #: views/SlideshowPluginPostType/slides.php:204
568
- #: views/SlideshowPluginPostType/slides.php:274
569
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:69
570
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:27
571
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:97
572
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:45
573
- msgid "URL"
574
- msgstr "URL"
575
-
576
- #: views/SlideshowPluginPostType/slides.php:69
577
- #: views/SlideshowPluginPostType/slides.php:156
578
- #: views/SlideshowPluginPostType/slides.php:206
579
- #: views/SlideshowPluginPostType/slides.php:276
580
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:72
581
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:29
582
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:99
583
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:48
584
- msgid "Open URL in"
585
- msgstr ""
586
-
587
- #: views/SlideshowPluginPostType/slides.php:71
588
- #: views/SlideshowPluginPostType/slides.php:158
589
- #: views/SlideshowPluginPostType/slides.php:208
590
- #: views/SlideshowPluginPostType/slides.php:278
591
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:74
592
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:31
593
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:101
594
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:50
595
- msgid "Same window"
596
- msgstr "Текущее окно"
597
-
598
- #: views/SlideshowPluginPostType/slides.php:72
599
- #: views/SlideshowPluginPostType/slides.php:159
600
- #: views/SlideshowPluginPostType/slides.php:209
601
- #: views/SlideshowPluginPostType/slides.php:279
602
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:75
603
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:32
604
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:102
605
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:51
606
- msgid "New window"
607
- msgstr "Новое окно"
608
-
609
- #: views/SlideshowPluginPostType/slides.php:89
610
- #: views/SlideshowPluginPostType/slides.php:229
611
- #: views/SlideshowPluginSlideInserter/insert-video-button.php:1
612
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:52
613
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:13
614
- msgid "Video slide"
615
- msgstr "Видео слайд"
616
-
617
- #: views/SlideshowPluginPostType/slides.php:94
618
- #: views/SlideshowPluginPostType/slides.php:234
619
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:57
620
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:19
621
- msgid "Youtube Video ID"
622
- msgstr "ID видео на Youtube"
623
-
624
- #: views/SlideshowPluginPostType/slides.php:132
625
- #: views/SlideshowPluginPostType/slides.php:254
626
- #: views/SlideshowPluginSlideInserter/insert-image-button.php:1
627
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:40
628
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:77
629
- msgid "Image slide"
630
- msgstr "Слайд с изображением"
631
-
632
- #: views/SlideshowPluginPostType/slides.php:170
633
- msgid ""
634
- "An error occurred while loading this slide, and it will not be present in "
635
- "the slideshow"
636
- msgstr ""
637
- "При загрузке этого слайда произошла ошибка, он не будет отображен в слайдшоу"
638
-
639
- #: views/SlideshowPluginPostType/slides.php:176
640
- #: views/SlideshowPluginPostType/slides.php:217
641
- #: views/SlideshowPluginPostType/slides.php:242
642
- #: views/SlideshowPluginPostType/slides.php:288
643
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:84
644
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:40
645
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:65
646
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:111
647
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:59
648
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:27
649
- msgid "Delete slide"
650
- msgstr "Удалить слайд"
651
-
652
- #: views/SlideshowPluginPostType/style-settings.php:22
653
- #, php-format
654
- msgid "Custom styles can be created and customized %shere%s."
655
- msgstr ""
656
-
657
- #: views/SlideshowPluginPostType/support-plugin.php:3
658
- msgid "Help to keep this plugin free!"
659
- msgstr "Помогите сохранить плагин свободным!"
660
-
661
- #: views/SlideshowPluginPostType/support-plugin.php:6
662
- msgid ""
663
- "In order to keep you provided with the newest features, forum support, and "
664
- "bug-fixes, a lot of motivation is required. Therefore I'm kindly asking you "
665
- "to consider making a small donation to the plugin or rating it as 5-stars on "
666
- "Wordpress.org. Thank you in advance!"
667
- msgstr ""
668
- "Для предоставления вам новейших возможностей, поддержки на форуме, "
669
- "исправлении ошибок необходима значительная мотивация. Поэтому просим вас "
670
- "сделать небольшое пожертвование плагину или оценить его в пять баллов на "
671
- "сайте Wordpress.org. Заранее спасибо!"
672
-
673
- #: views/SlideshowPluginPostType/support-plugin.php:15
674
- msgid "Rate on Wordpress.org"
675
- msgstr "Поставить оценку на Wordpress.org"
676
-
677
- #: views/SlideshowPluginPostType/support-plugin.php:24
678
- msgid "Frequently Asked Questions (FAQ)"
679
- msgstr ""
680
-
681
- #: views/SlideshowPluginPostType/support-plugin.php:33
682
- msgid "Questions / Suggestions"
683
- msgstr "Вопросы / Предложения"
684
-
685
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
686
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
687
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
688
- msgid "Insert a Slideshow"
689
- msgstr ""
690
-
691
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
692
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
693
- msgid "Insert Slideshow"
694
- msgstr ""
695
-
696
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
697
- msgid "Select a slideshow"
698
- msgstr ""
699
-
700
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
701
- #: views/SlideshowPluginWidget/form.php:12
702
- msgid "Untitled slideshow"
703
- msgstr ""
704
-
705
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
706
- msgid "Cancel"
707
- msgstr ""
708
-
709
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
710
- #, php-format
711
- msgid ""
712
- "It seems you haven't created any slideshows yet. %sYou can create a "
713
- "slideshow here!%s"
714
- msgstr ""
715
-
716
- #: views/SlideshowPluginSlideInserter/search-popup.php:6
717
- msgid "Search"
718
- msgstr "Поиск"
719
-
720
- #: views/SlideshowPluginSlideInserter/search-popup.php:7
721
- msgid "Search images by title or ID"
722
- msgstr "Поиск изображения по заголовку или ID"
723
-
724
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:18
725
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:35
726
- msgid "Text color"
727
- msgstr ""
728
-
729
- #: views/SlideshowPluginUpload/upload-button.php:1
730
- msgid "Upload/Manage Images"
731
- msgstr "Загрузка/Управление изображениями"
732
-
733
- #: views/SlideshowPluginWidget/form.php:9
734
- msgid "Random Slideshow"
735
- msgstr "Случайный порядок слайдшоу"
736
-
737
- #~ msgid "Custom style editor (Does not work with a Strict Doctype)"
738
- #~ msgstr "Aangepaste stijl bewerker (Werkt niet met een Strict Doctype)"
739
-
740
- #~ msgid "Has the Slideshow plugin helped you?"
741
- #~ msgstr "Heeft de Slideshow plugin je geholpen?"
742
-
743
- #~ msgid "Help it back!"
744
- #~ msgstr "Help hem terug!"
745
-
746
- #~ msgid ""
747
- #~ "If this plugin has filled you with happiness, please support the upkeep "
748
- #~ "of the plugin by rating it on Wordpress, posting a suggestion for "
749
- #~ "improvement on the support forum, or making a donation."
750
- #~ msgstr ""
751
- #~ "Als deze plugin je met blijdschap heeft vervuld, zou ik het enorm "
752
- #~ "waarderen als je de plugin wilt beoordelen op Wordpress, een suggestie "
753
- #~ "wilt maken voor verbetering, of een donatie doen wilt."
754
-
755
- #~ msgid "Click on an image to insert it as a slide"
756
- #~ msgstr "Klik op een plaatje om deze in te voegen als slide"
757
-
758
- #~ msgid "Width of the slideshow"
759
- #~ msgstr "Breedte van de slideshow"
760
-
761
- #~ msgid "Defaults to parent's width."
762
- #~ msgstr "Standaard ingesteld op de breedte van het bovenliggende element."
763
-
764
- #~ msgid "Send user to image URL on click"
765
- #~ msgstr ""
766
- #~ "Wanner de gebruiker op de afbeelding klikt, stuur hem naar de URL van het "
767
- #~ "plaatje"
768
-
769
- #~ msgid "Leave any field open to use default value."
770
- #~ msgstr "Een veld dat open wordt gelaten neemt de standaardwaarde aan."
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Slideshow Plugin\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-02-02 01:48+0100\n"
6
+ "PO-Revision-Date: 2013-02-02 01:48+0100\n"
7
+ "Last-Translator: Stefan Boonstra <stefanboonstra@hotmail.com>\n"
8
+ "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
+ "Language: ru_UA\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-KeywordsList: _e;__\n"
14
+ "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.5.4\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: classes/SlideshowPluginGeneralSettings.php:64
19
+ #: classes/SlideshowPluginGeneralSettings.php:65
20
+ msgid "General Settings"
21
+ msgstr ""
22
+
23
+ #: classes/SlideshowPluginGeneralSettings.php:142
24
+ msgid "New"
25
+ msgstr ""
26
+
27
+ #: classes/SlideshowPluginGeneralSettings.php:143
28
+ msgid "Are you sure you want to delete this custom style?"
29
+ msgstr ""
30
+
31
+ #: classes/SlideshowPluginGeneralSettings.php:162
32
+ #: classes/SlideshowPluginInstaller.php:388
33
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:6
34
+ msgid "Light"
35
+ msgstr "Светлый"
36
+
37
+ #: classes/SlideshowPluginGeneralSettings.php:163
38
+ #: classes/SlideshowPluginInstaller.php:388
39
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:7
40
+ msgid "Dark"
41
+ msgstr "Тёмный"
42
+
43
+ #: classes/SlideshowPluginGeneralSettings.php:267
44
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:49
45
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:131
46
+ msgid "Untitled"
47
+ msgstr ""
48
+
49
+ #: classes/SlideshowPluginInstaller.php:385
50
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:374
51
+ msgid "Yes"
52
+ msgstr "Да"
53
+
54
+ #: classes/SlideshowPluginInstaller.php:386
55
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:375
56
+ msgid "No"
57
+ msgstr "Нет"
58
+
59
+ #: classes/SlideshowPluginInstaller.php:388
60
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:473
61
+ msgid "The style used for this slideshow"
62
+ msgstr "Стиль, используемый в этом слайдшоу"
63
+
64
+ #: classes/SlideshowPluginInstaller.php:388
65
+ msgid "Custom"
66
+ msgstr "Собственный"
67
+
68
+ #: classes/SlideshowPluginInstaller.php:389
69
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:114
70
+ msgid "Custom style editor"
71
+ msgstr "Редактор собственного стиля"
72
+
73
+ #: classes/SlideshowPluginInstaller.php:390
74
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
75
+ msgid "Animation used for transition between slides"
76
+ msgstr "Анимация, используемая для перехода между слайдами"
77
+
78
+ #: classes/SlideshowPluginInstaller.php:390
79
+ msgid "Slide"
80
+ msgstr "Слайд"
81
+
82
+ #: classes/SlideshowPluginInstaller.php:390
83
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
84
+ msgid "Fade"
85
+ msgstr "Затухание"
86
+
87
+ #: classes/SlideshowPluginInstaller.php:390
88
+ #: classes/SlideshowPluginInstaller.php:391
89
+ #: classes/SlideshowPluginInstaller.php:392
90
+ #: classes/SlideshowPluginInstaller.php:393
91
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
92
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
93
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:417
94
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:418
95
+ msgid "Animation"
96
+ msgstr "Анимационные"
97
+
98
+ #: classes/SlideshowPluginInstaller.php:391
99
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
100
+ msgid "Number of seconds the slide takes to slide in"
101
+ msgstr "Число секунд, которое занимает появление слайда"
102
+
103
+ #: classes/SlideshowPluginInstaller.php:392
104
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:417
105
+ msgid "Number of seconds the description takes to slide in"
106
+ msgstr "Число секунд, которое занимает появление текста"
107
+
108
+ #: classes/SlideshowPluginInstaller.php:393
109
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:418
110
+ msgid "Seconds between changing slides"
111
+ msgstr "Секунд между сменой слайдов"
112
+
113
+ #: classes/SlideshowPluginInstaller.php:394
114
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
115
+ msgid "Number of slides to fit into one slide"
116
+ msgstr "Число слайдов, размещённых в одном слайде"
117
+
118
+ #: classes/SlideshowPluginInstaller.php:394
119
+ #: classes/SlideshowPluginInstaller.php:395
120
+ #: classes/SlideshowPluginInstaller.php:396
121
+ #: classes/SlideshowPluginInstaller.php:397
122
+ #: classes/SlideshowPluginInstaller.php:398
123
+ #: classes/SlideshowPluginInstaller.php:399
124
+ #: classes/SlideshowPluginInstaller.php:400
125
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
126
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:420
127
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
128
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:422
129
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
130
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:424
131
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
132
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:426
133
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:427
134
+ msgid "Display"
135
+ msgstr "Визуальные"
136
+
137
+ #: classes/SlideshowPluginInstaller.php:395
138
+ msgid "Width of the slideshow, set to parent&#39;s width on 0"
139
+ msgstr ""
140
+ "Ширина слайдшоу. Установите в 0 для определения ширины по родительскому "
141
+ "элементу"
142
+
143
+ #: classes/SlideshowPluginInstaller.php:396
144
+ msgid "Height of the slideshow"
145
+ msgstr "Высота слайдшоу"
146
+
147
+ #: classes/SlideshowPluginInstaller.php:397
148
+ msgid "Height of the description boxes"
149
+ msgstr "Высота блока описания"
150
+
151
+ #: classes/SlideshowPluginInstaller.php:398
152
+ msgid "Fit image into slide (stretching it)"
153
+ msgstr "Уместить изображение в слайд (растянуть его)"
154
+
155
+ #: classes/SlideshowPluginInstaller.php:399
156
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:426
157
+ msgid "Show title and description"
158
+ msgstr "Показать заголовок и описание"
159
+
160
+ #: classes/SlideshowPluginInstaller.php:400
161
+ msgid "Hide description box, it will pop up when a mouse hovers over the slide"
162
+ msgstr ""
163
+ "Скрыть блок описания. Он будет появляться при наведении указателя мыши "
164
+ "поверх слайда"
165
+
166
+ #: classes/SlideshowPluginInstaller.php:401
167
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
168
+ msgid "Automatically slide to the next slide"
169
+ msgstr "Автоматический переход к следующему слайду"
170
+
171
+ #: classes/SlideshowPluginInstaller.php:401
172
+ #: classes/SlideshowPluginInstaller.php:402
173
+ #: classes/SlideshowPluginInstaller.php:403
174
+ #: classes/SlideshowPluginInstaller.php:404
175
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
176
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:429
177
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:430
178
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:431
179
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:432
180
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:433
181
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:434
182
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:435
183
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:436
184
+ msgid "Control"
185
+ msgstr "Управляющие"
186
+
187
+ #: classes/SlideshowPluginInstaller.php:402
188
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:429
189
+ msgid "Return to the beginning of the slideshow after last slide"
190
+ msgstr "Вернуться в начало слайдшоу после последнего слайда"
191
+
192
+ #: classes/SlideshowPluginInstaller.php:403
193
+ msgid "Activate buttons (so the user can scroll through the slides)"
194
+ msgstr "Активировать кнопки (пользователь сможет пролистывать слайды)"
195
+
196
+ #: classes/SlideshowPluginInstaller.php:404
197
+ msgid "Show control panel (play and pause button)"
198
+ msgstr "Отображать панель управления (кнопка воспроизведения и останова)"
199
+
200
+ #: classes/SlideshowPluginPostType.php:39
201
+ msgid "Slideshows"
202
+ msgstr "Слайдшоу"
203
+
204
+ #: classes/SlideshowPluginPostType.php:40
205
+ #: views/SlideshowPluginWidget/form.php:7
206
+ msgid "Slideshow"
207
+ msgstr "Слайдшоу"
208
+
209
+ #: classes/SlideshowPluginPostType.php:41
210
+ msgid "Add New Slideshow"
211
+ msgstr "Добавить новое слайдшоу"
212
+
213
+ #: classes/SlideshowPluginPostType.php:42
214
+ msgid "Edit slideshow"
215
+ msgstr "Редактировать слайдшоу"
216
+
217
+ #: classes/SlideshowPluginPostType.php:43
218
+ msgid "New slideshow"
219
+ msgstr "Новое слайдшоу"
220
+
221
+ #: classes/SlideshowPluginPostType.php:44
222
+ msgid "View slideshow"
223
+ msgstr "Просмотр слайдшоу"
224
+
225
+ #: classes/SlideshowPluginPostType.php:45
226
+ msgid "Search slideshows"
227
+ msgstr "Поиск слайдшоу"
228
+
229
+ #: classes/SlideshowPluginPostType.php:46
230
+ #: classes/SlideshowPluginPostType.php:47
231
+ msgid "No slideshows found"
232
+ msgstr "Ни одного слайдшоу не найдено"
233
+
234
+ #: classes/SlideshowPluginPostType.php:167
235
+ msgid "Information"
236
+ msgstr "Информация"
237
+
238
+ #: classes/SlideshowPluginPostType.php:176
239
+ msgid "Slides List"
240
+ msgstr "Список слайдов"
241
+
242
+ #: classes/SlideshowPluginPostType.php:185
243
+ msgid "Slideshow Style"
244
+ msgstr "Стиль слайдшоу"
245
+
246
+ #: classes/SlideshowPluginPostType.php:194
247
+ msgid "Slideshow Settings"
248
+ msgstr "Настройки слайдшоу"
249
+
250
+ #: classes/SlideshowPluginPostType.php:244
251
+ #: classes/SlideshowPluginSlideInserter.php:156
252
+ #: views/SlideshowPluginPostType/slides.php:2
253
+ msgid "Insert"
254
+ msgstr "Вставить"
255
+
256
+ #: classes/SlideshowPluginPostType.php:252
257
+ #: views/SlideshowPluginPostType/slides.php:9
258
+ msgid "Add slides to this slideshow by using one of the buttons above."
259
+ msgstr "Добавить слайды к слайдшоу с помощью одной из кнопок ниже"
260
+
261
+ #: classes/SlideshowPluginShortcode.php:132
262
+ msgid "No slideshow selected."
263
+ msgstr ""
264
+
265
+ #: classes/SlideshowPluginSlideInserter.php:165
266
+ msgid "Load more results"
267
+ msgstr "Загрузить больше результатов"
268
+
269
+ #: classes/SlideshowPluginSlideInserter.php:174
270
+ msgid "No images were found, click here to upload some."
271
+ msgstr "Не найдено изображений, щёлкните здесь для загрузки"
272
+
273
+ #: classes/SlideshowPluginSlideInserter.php:243
274
+ msgid "Are you sure you want to delete this slide?"
275
+ msgstr ""
276
+
277
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
278
+ msgid "Slide Left"
279
+ msgstr ""
280
+
281
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
282
+ msgid "Slide Right"
283
+ msgstr ""
284
+
285
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
286
+ msgid "Slide Up"
287
+ msgstr ""
288
+
289
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
290
+ msgid "Slide Down"
291
+ msgstr ""
292
+
293
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
294
+ msgid "Direct Fade"
295
+ msgstr ""
296
+
297
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
298
+ msgid "Random Animation"
299
+ msgstr ""
300
+
301
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:420
302
+ msgid "Maximum width. When maximum width is 0, maximum width is ignored"
303
+ msgstr ""
304
+
305
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
306
+ msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
307
+ msgstr ""
308
+
309
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
310
+ msgid "More info"
311
+ msgstr ""
312
+
313
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
314
+ #, php-format
315
+ msgid ""
316
+ "Proportional relationship%s between slideshow's width and height (width:"
317
+ "height)"
318
+ msgstr ""
319
+
320
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:422
321
+ msgid "Slideshow's height"
322
+ msgstr ""
323
+
324
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
325
+ msgid "Fit image into slide (Stretch image)"
326
+ msgstr ""
327
+
328
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:424
329
+ msgid "Shrink slideshow's height when width shrinks"
330
+ msgstr ""
331
+
332
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
333
+ msgid ""
334
+ "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
335
+ msgstr ""
336
+
337
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:427
338
+ msgid "Hide description box, pop up when mouse hovers over"
339
+ msgstr ""
340
+
341
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:430
342
+ msgid "Pause slideshow when mouse hovers over"
343
+ msgstr ""
344
+
345
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:431
346
+ msgid "Activate navigation buttons"
347
+ msgstr ""
348
+
349
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:432
350
+ msgid "Hide navigation buttons, show when mouse hovers over"
351
+ msgstr ""
352
+
353
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:433
354
+ msgid "Activate pagination"
355
+ msgstr ""
356
+
357
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:434
358
+ msgid "Hide pagination, show when mouse hovers over"
359
+ msgstr ""
360
+
361
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:435
362
+ msgid "Activate control panel (play and pause button)"
363
+ msgstr ""
364
+
365
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:436
366
+ msgid "Hide control panel, show when mouse hovers over"
367
+ msgstr ""
368
+
369
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:437
370
+ msgid "Randomize slides"
371
+ msgstr "Слайды в случайном порядке"
372
+
373
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:437
374
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:438
375
+ msgid "Miscellaneous"
376
+ msgstr "Разные"
377
+
378
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:438
379
+ #, php-format
380
+ msgid "Avoid content filter (disable if '%s' is shown)"
381
+ msgstr "Избегать фильтра содержимого (запрещено, если отображается '%s' )"
382
+
383
+ #: classes/SlideshowPluginWidget.php:23
384
+ msgid "Enables you to show your slideshows in the widget area of your website."
385
+ msgstr "Позволяет отобразить ваше слайдшоу в области виджетов вашего сайта"
386
+
387
+ #: classes/SlideshowPluginWidget.php:29
388
+ msgid "Slideshow Widget"
389
+ msgstr "Виджет слайдшоу"
390
+
391
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:38
392
+ msgid "Default stylesheets"
393
+ msgstr ""
394
+
395
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:52
396
+ msgid "Create a new custom style from this style"
397
+ msgstr ""
398
+
399
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:54
400
+ msgid "Customize"
401
+ msgstr ""
402
+
403
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:68
404
+ msgid "Custom stylesheets"
405
+ msgstr ""
406
+
407
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:81
408
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:160
409
+ msgid "Edit this style"
410
+ msgstr ""
411
+
412
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:83
413
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:162
414
+ #: views/SlideshowPluginPostType/slides.php:137
415
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:46
416
+ msgid "Edit"
417
+ msgstr "Редактировать"
418
+
419
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:90
420
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:169
421
+ msgid "Delete this style"
422
+ msgstr ""
423
+
424
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:92
425
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:171
426
+ msgid "Delete"
427
+ msgstr ""
428
+
429
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:102
430
+ msgid "Click 'Customize' to create a new custom stylesheet."
431
+ msgstr ""
432
+
433
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:118
434
+ msgid "Select a stylesheet from the left to start customizing it."
435
+ msgstr ""
436
+
437
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:127
438
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:180
439
+ #: views/SlideshowPluginPostType/slides.php:58
440
+ #: views/SlideshowPluginPostType/slides.php:143
441
+ #: views/SlideshowPluginPostType/slides.php:195
442
+ #: views/SlideshowPluginPostType/slides.php:263
443
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:54
444
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:12
445
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:92
446
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:29
447
+ #: views/SlideshowPluginWidget/form.php:2
448
+ msgid "Title"
449
+ msgstr "Заголовок"
450
+
451
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:136
452
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:188
453
+ msgid "Style"
454
+ msgstr "Style"
455
+
456
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:11
457
+ msgid "Note"
458
+ msgstr ""
459
+
460
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:18
461
+ #, php-format
462
+ msgid ""
463
+ "The settings set on this page apply only to newly created slideshows and "
464
+ "therefore do not alter any existing ones. To adapt a slideshow's settings, "
465
+ "%sclick here.%s"
466
+ msgstr ""
467
+
468
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:30
469
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:16
470
+ msgid "Default Slideshow Settings"
471
+ msgstr ""
472
+
473
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:43
474
+ #: views/SlideshowPluginPostType/settings.php:12
475
+ msgid "settings"
476
+ msgstr "настройки"
477
+
478
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:80
479
+ msgid "Default Slideshow Stylesheet"
480
+ msgstr ""
481
+
482
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:15
483
+ msgid "User Capabilities"
484
+ msgstr ""
485
+
486
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:17
487
+ msgid "Custom Styles"
488
+ msgstr ""
489
+
490
+ #: views/SlideshowPluginGeneralSettings/user-capabilities.php:8
491
+ msgid "Add slideshows"
492
+ msgstr ""
493
+
494
+ #: views/SlideshowPluginGeneralSettings/user-capabilities.php:9
495
+ msgid "Edit slideshows"
496
+ msgstr ""
497
+
498
+ #: views/SlideshowPluginGeneralSettings/user-capabilities.php:10
499
+ msgid "Delete slideshows"
500
+ msgstr ""
501
+
502
+ #: views/SlideshowPluginGeneralSettings/user-capabilities.php:18
503
+ msgid "Select the user roles that will able to perform certain actions."
504
+ msgstr ""
505
+
506
+ #: views/SlideshowPluginGeneralSettings/user-capabilities.php:35
507
+ msgid "Untitled role"
508
+ msgstr ""
509
+
510
+ #: views/SlideshowPluginPostType/information.php:1
511
+ msgid ""
512
+ "To use this slideshow in your website either add this piece of shortcode to "
513
+ "your posts or pages"
514
+ msgstr ""
515
+ "Для использования слайдшоу на вашем сайте добавьте этот шорткод в ваши "
516
+ "записи или страницы"
517
+
518
+ #: views/SlideshowPluginPostType/information.php:5
519
+ msgid ""
520
+ "Or add this piece of code to where ever in your website you want to place "
521
+ "the slideshow"
522
+ msgstr ""
523
+ "Или добавьте этот фрагмент кода в том месте, где вы желаете разместить ваше "
524
+ "слайдшоу"
525
+
526
+ #: views/SlideshowPluginPostType/information.php:9
527
+ #, php-format
528
+ msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
529
+ msgstr ""
530
+ "Или отправьтесь на %sстраницу виджетов%s и отобразите слайдшоу как виджет"
531
+
532
+ #: views/SlideshowPluginPostType/settings.php:26
533
+ #: views/SlideshowPluginPostType/style-settings.php:11
534
+ msgid "Default"
535
+ msgstr "Исходное"
536
+
537
+ #: views/SlideshowPluginPostType/slides.php:53
538
+ #: views/SlideshowPluginPostType/slides.php:190
539
+ #: views/SlideshowPluginSlideInserter/insert-text-button.php:1
540
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:6
541
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:23
542
+ msgid "Text slide"
543
+ msgstr "Текстовый слайд"
544
+
545
+ #: views/SlideshowPluginPostType/slides.php:60
546
+ #: views/SlideshowPluginPostType/slides.php:149
547
+ #: views/SlideshowPluginPostType/slides.php:197
548
+ #: views/SlideshowPluginPostType/slides.php:269
549
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:61
550
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:15
551
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:99
552
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:32
553
+ msgid "Description"
554
+ msgstr "Описание"
555
+
556
+ #: views/SlideshowPluginPostType/slides.php:62
557
+ #: views/SlideshowPluginPostType/slides.php:199
558
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:21
559
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:38
560
+ msgid "Background color"
561
+ msgstr "Фоновый цвет"
562
+
563
+ #: views/SlideshowPluginPostType/slides.php:67
564
+ #: views/SlideshowPluginPostType/slides.php:154
565
+ #: views/SlideshowPluginPostType/slides.php:204
566
+ #: views/SlideshowPluginPostType/slides.php:274
567
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:68
568
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:28
569
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:106
570
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:45
571
+ msgid "URL"
572
+ msgstr "URL"
573
+
574
+ #: views/SlideshowPluginPostType/slides.php:69
575
+ #: views/SlideshowPluginPostType/slides.php:156
576
+ #: views/SlideshowPluginPostType/slides.php:206
577
+ #: views/SlideshowPluginPostType/slides.php:276
578
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:71
579
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:31
580
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:109
581
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:48
582
+ msgid "Open URL in"
583
+ msgstr ""
584
+
585
+ #: views/SlideshowPluginPostType/slides.php:71
586
+ #: views/SlideshowPluginPostType/slides.php:158
587
+ #: views/SlideshowPluginPostType/slides.php:208
588
+ #: views/SlideshowPluginPostType/slides.php:278
589
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:73
590
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:33
591
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:111
592
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:50
593
+ msgid "Same window"
594
+ msgstr "Текущее окно"
595
+
596
+ #: views/SlideshowPluginPostType/slides.php:72
597
+ #: views/SlideshowPluginPostType/slides.php:159
598
+ #: views/SlideshowPluginPostType/slides.php:209
599
+ #: views/SlideshowPluginPostType/slides.php:279
600
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:74
601
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:34
602
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:112
603
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:51
604
+ msgid "New window"
605
+ msgstr "Новое окно"
606
+
607
+ #: views/SlideshowPluginPostType/slides.php:89
608
+ #: views/SlideshowPluginPostType/slides.php:229
609
+ #: views/SlideshowPluginSlideInserter/insert-video-button.php:1
610
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:54
611
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:13
612
+ msgid "Video slide"
613
+ msgstr "Видео слайд"
614
+
615
+ #: views/SlideshowPluginPostType/slides.php:94
616
+ #: views/SlideshowPluginPostType/slides.php:234
617
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:60
618
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:19
619
+ msgid "Youtube Video ID"
620
+ msgstr "ID видео на Youtube"
621
+
622
+ #: views/SlideshowPluginPostType/slides.php:132
623
+ #: views/SlideshowPluginPostType/slides.php:254
624
+ #: views/SlideshowPluginSlideInserter/insert-image-button.php:1
625
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:40
626
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:80
627
+ msgid "Image slide"
628
+ msgstr "Слайд с изображением"
629
+
630
+ #: views/SlideshowPluginPostType/slides.php:170
631
+ msgid ""
632
+ "An error occurred while loading this slide, and it will not be present in "
633
+ "the slideshow"
634
+ msgstr ""
635
+ "При загрузке этого слайда произошла ошибка, он не будет отображен в слайдшоу"
636
+
637
+ #: views/SlideshowPluginPostType/slides.php:176
638
+ #: views/SlideshowPluginPostType/slides.php:217
639
+ #: views/SlideshowPluginPostType/slides.php:242
640
+ #: views/SlideshowPluginPostType/slides.php:288
641
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:83
642
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:42
643
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:68
644
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:121
645
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:59
646
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:27
647
+ msgid "Delete slide"
648
+ msgstr "Удалить слайд"
649
+
650
+ #: views/SlideshowPluginPostType/style-settings.php:22
651
+ #, php-format
652
+ msgid "Custom styles can be created and customized %shere%s."
653
+ msgstr ""
654
+
655
+ #: views/SlideshowPluginPostType/support-plugin.php:3
656
+ msgid "Help to keep this plugin free!"
657
+ msgstr "Помогите сохранить плагин свободным!"
658
+
659
+ #: views/SlideshowPluginPostType/support-plugin.php:6
660
+ msgid ""
661
+ "In order to keep you provided with the newest features, forum support, and "
662
+ "bug-fixes, a lot of motivation is required. Therefore I'm kindly asking you "
663
+ "to consider making a small donation to the plugin or rating it as 5-stars on "
664
+ "Wordpress.org. Thank you in advance!"
665
+ msgstr ""
666
+ "Для предоставления вам новейших возможностей, поддержки на форуме, "
667
+ "исправлении ошибок необходима значительная мотивация. Поэтому просим вас "
668
+ "сделать небольшое пожертвование плагину или оценить его в пять баллов на "
669
+ "сайте Wordpress.org. Заранее спасибо!"
670
+
671
+ #: views/SlideshowPluginPostType/support-plugin.php:15
672
+ msgid "Rate on Wordpress.org"
673
+ msgstr "Поставить оценку на Wordpress.org"
674
+
675
+ #: views/SlideshowPluginPostType/support-plugin.php:24
676
+ msgid "Frequently Asked Questions (FAQ)"
677
+ msgstr ""
678
+
679
+ #: views/SlideshowPluginPostType/support-plugin.php:33
680
+ msgid "Questions / Suggestions"
681
+ msgstr "Вопросы / Предложения"
682
+
683
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
684
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
685
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
686
+ msgid "Insert a Slideshow"
687
+ msgstr ""
688
+
689
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
690
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
691
+ msgid "Insert Slideshow"
692
+ msgstr ""
693
+
694
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
695
+ msgid "Select a slideshow"
696
+ msgstr ""
697
+
698
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
699
+ #: views/SlideshowPluginWidget/form.php:12
700
+ msgid "Untitled slideshow"
701
+ msgstr ""
702
+
703
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
704
+ msgid "Cancel"
705
+ msgstr ""
706
+
707
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
708
+ #, php-format
709
+ msgid ""
710
+ "It seems you haven't created any slideshows yet. %sYou can create a "
711
+ "slideshow here!%s"
712
+ msgstr ""
713
+
714
+ #: views/SlideshowPluginSlideInserter/search-popup.php:6
715
+ msgid "Search"
716
+ msgstr "Поиск"
717
+
718
+ #: views/SlideshowPluginSlideInserter/search-popup.php:7
719
+ msgid "Search images by title or ID"
720
+ msgstr "Поиск изображения по заголовку или ID"
721
+
722
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:18
723
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:35
724
+ msgid "Text color"
725
+ msgstr ""
726
+
727
+ #: views/SlideshowPluginUpload/upload-button.php:1
728
+ msgid "Upload/Manage Images"
729
+ msgstr "Загрузка/Управление изображениями"
730
+
731
+ #: views/SlideshowPluginWidget/form.php:9
732
+ msgid "Random Slideshow"
733
+ msgstr "Случайный порядок слайдшоу"
734
+
735
+ #~ msgid "Custom style editor (Does not work with a Strict Doctype)"
736
+ #~ msgstr "Aangepaste stijl bewerker (Werkt niet met een Strict Doctype)"
737
+
738
+ #~ msgid "Has the Slideshow plugin helped you?"
739
+ #~ msgstr "Heeft de Slideshow plugin je geholpen?"
740
+
741
+ #~ msgid "Help it back!"
742
+ #~ msgstr "Help hem terug!"
743
+
744
+ #~ msgid ""
745
+ #~ "If this plugin has filled you with happiness, please support the upkeep "
746
+ #~ "of the plugin by rating it on Wordpress, posting a suggestion for "
747
+ #~ "improvement on the support forum, or making a donation."
748
+ #~ msgstr ""
749
+ #~ "Als deze plugin je met blijdschap heeft vervuld, zou ik het enorm "
750
+ #~ "waarderen als je de plugin wilt beoordelen op Wordpress, een suggestie "
751
+ #~ "wilt maken voor verbetering, of een donatie doen wilt."
752
+
753
+ #~ msgid "Click on an image to insert it as a slide"
754
+ #~ msgstr "Klik op een plaatje om deze in te voegen als slide"
755
+
756
+ #~ msgid "Width of the slideshow"
757
+ #~ msgstr "Breedte van de slideshow"
758
+
759
+ #~ msgid "Defaults to parent's width."
760
+ #~ msgstr "Standaard ingesteld op de breedte van het bovenliggende element."
761
+
762
+ #~ msgid "Send user to image URL on click"
763
+ #~ msgstr ""
764
+ #~ "Wanner de gebruiker op de afbeelding klikt, stuur hem naar de URL van het "
765
+ #~ "plaatje"
766
+
767
+ #~ msgid "Leave any field open to use default value."
768
+ #~ msgstr "Een veld dat open wordt gelaten neemt de standaardwaarde aan."
 
 
languages/slideshow-plugin-zh_CN.mo CHANGED
Binary file
languages/slideshow-plugin-zh_CN.po CHANGED
@@ -1,728 +1,726 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Slideshow Plugin\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-02-01 15:08+0100\n"
6
- "PO-Revision-Date: 2013-02-01 15:08+0100\n"
7
- "Last-Translator: Stefan Boonstra <stefanboonstra@hotmail.com>\n"
8
- "Language-Team: Kevin Tell\n"
9
- "Language: zh_CN\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: _e;__\n"
14
- "X-Poedit-Basepath: ../\n"
15
- "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Generator: Poedit 1.5.4\n"
17
- "X-Poedit-SearchPath-0: .\n"
18
-
19
- #: classes/SlideshowPluginGeneralSettings.php:64
20
- #: classes/SlideshowPluginGeneralSettings.php:65
21
- msgid "General Settings"
22
- msgstr ""
23
-
24
- #: classes/SlideshowPluginGeneralSettings.php:142
25
- msgid "New"
26
- msgstr ""
27
-
28
- #: classes/SlideshowPluginGeneralSettings.php:143
29
- msgid "Are you sure you want to delete this custom style?"
30
- msgstr ""
31
-
32
- #: classes/SlideshowPluginGeneralSettings.php:162
33
- #: classes/SlideshowPluginInstaller.php:388
34
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:6
35
- msgid "Light"
36
- msgstr ""
37
-
38
- #: classes/SlideshowPluginGeneralSettings.php:163
39
- #: classes/SlideshowPluginInstaller.php:388
40
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:7
41
- msgid "Dark"
42
- msgstr ""
43
-
44
- #: classes/SlideshowPluginGeneralSettings.php:267
45
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:49
46
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:131
47
- msgid "Untitled"
48
- msgstr ""
49
-
50
- #: classes/SlideshowPluginInstaller.php:385
51
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:374
52
- msgid "Yes"
53
- msgstr ""
54
-
55
- #: classes/SlideshowPluginInstaller.php:386
56
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:375
57
- msgid "No"
58
- msgstr ""
59
-
60
- #: classes/SlideshowPluginInstaller.php:388
61
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:475
62
- msgid "The style used for this slideshow"
63
- msgstr ""
64
-
65
- #: classes/SlideshowPluginInstaller.php:388
66
- msgid "Custom"
67
- msgstr ""
68
-
69
- #: classes/SlideshowPluginInstaller.php:389
70
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:114
71
- msgid "Custom style editor"
72
- msgstr ""
73
-
74
- #: classes/SlideshowPluginInstaller.php:390
75
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
76
- msgid "Animation used for transition between slides"
77
- msgstr "幻灯片滑动的动画效果设置"
78
-
79
- #: classes/SlideshowPluginInstaller.php:390
80
- msgid "Slide"
81
- msgstr ""
82
-
83
- #: classes/SlideshowPluginInstaller.php:390
84
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
85
- msgid "Fade"
86
- msgstr ""
87
-
88
- #: classes/SlideshowPluginInstaller.php:390
89
- #: classes/SlideshowPluginInstaller.php:391
90
- #: classes/SlideshowPluginInstaller.php:392
91
- #: classes/SlideshowPluginInstaller.php:393
92
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
93
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:417
94
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:418
95
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
96
- msgid "Animation"
97
- msgstr "动态"
98
-
99
- #: classes/SlideshowPluginInstaller.php:391
100
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:417
101
- msgid "Number of seconds the slide takes to slide in"
102
- msgstr "幻灯片滑动速度"
103
-
104
- #: classes/SlideshowPluginInstaller.php:392
105
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:418
106
- msgid "Number of seconds the description takes to slide in"
107
- msgstr "“描述”滑动速度"
108
-
109
- #: classes/SlideshowPluginInstaller.php:393
110
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
111
- msgid "Seconds between changing slides"
112
- msgstr "幻灯片间置换的时间间隔"
113
-
114
- #: classes/SlideshowPluginInstaller.php:394
115
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:420
116
- msgid "Number of slides to fit into one slide"
117
- msgstr "同一幅幻灯片中显示多少图片"
118
-
119
- #: classes/SlideshowPluginInstaller.php:394
120
- #: classes/SlideshowPluginInstaller.php:395
121
- #: classes/SlideshowPluginInstaller.php:396
122
- #: classes/SlideshowPluginInstaller.php:397
123
- #: classes/SlideshowPluginInstaller.php:398
124
- #: classes/SlideshowPluginInstaller.php:399
125
- #: classes/SlideshowPluginInstaller.php:400
126
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:420
127
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
128
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:422
129
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
130
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:424
131
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
132
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:426
133
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:427
134
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
135
- msgid "Display"
136
- msgstr "显示"
137
-
138
- #: classes/SlideshowPluginInstaller.php:395
139
- msgid "Width of the slideshow, set to parent&#39;s width on 0"
140
- msgstr "幻灯片宽度,0为继承父元素宽度"
141
-
142
- #: classes/SlideshowPluginInstaller.php:396
143
- msgid "Height of the slideshow"
144
- msgstr "幻灯片高度"
145
-
146
- #: classes/SlideshowPluginInstaller.php:397
147
- msgid "Height of the description boxes"
148
- msgstr "幻灯片中描述窗口的高度"
149
-
150
- #: classes/SlideshowPluginInstaller.php:398
151
- msgid "Fit image into slide (stretching it)"
152
- msgstr "图片适应显示 (即拉伸图片"
153
-
154
- #: classes/SlideshowPluginInstaller.php:399
155
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:427
156
- msgid "Show title and description"
157
- msgstr "显示标题和描述"
158
-
159
- #: classes/SlideshowPluginInstaller.php:400
160
- msgid "Hide description box, it will pop up when a mouse hovers over the slide"
161
- msgstr "隐藏描述窗口,只有鼠标移至幻灯片才弹出"
162
-
163
- #: classes/SlideshowPluginInstaller.php:401
164
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:430
165
- msgid "Automatically slide to the next slide"
166
- msgstr "幻灯片自动滚动显示"
167
-
168
- #: classes/SlideshowPluginInstaller.php:401
169
- #: classes/SlideshowPluginInstaller.php:402
170
- #: classes/SlideshowPluginInstaller.php:403
171
- #: classes/SlideshowPluginInstaller.php:404
172
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:430
173
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:431
174
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:432
175
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:433
176
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:434
177
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:435
178
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:436
179
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:437
180
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:438
181
- msgid "Control"
182
- msgstr "控制"
183
-
184
- #: classes/SlideshowPluginInstaller.php:402
185
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:431
186
- msgid "Return to the beginning of the slideshow after last slide"
187
- msgstr "循环展示幻灯片"
188
-
189
- #: classes/SlideshowPluginInstaller.php:403
190
- msgid "Activate buttons (so the user can scroll through the slides)"
191
- msgstr "激活按钮 (用户可通过按钮左右滚动显示幻灯片)"
192
-
193
- #: classes/SlideshowPluginInstaller.php:404
194
- msgid "Show control panel (play and pause button)"
195
- msgstr "显示控制面板 (播放和停止按钮)"
196
-
197
- #: classes/SlideshowPluginPostType.php:37
198
- msgid "Slideshows"
199
- msgstr "幻灯片"
200
-
201
- #: classes/SlideshowPluginPostType.php:38
202
- #: views/SlideshowPluginWidget/form.php:7
203
- msgid "Slideshow"
204
- msgstr "幻灯片"
205
-
206
- #: classes/SlideshowPluginPostType.php:39
207
- msgid "Add New Slideshow"
208
- msgstr ""
209
-
210
- #: classes/SlideshowPluginPostType.php:40
211
- msgid "Edit slideshow"
212
- msgstr ""
213
-
214
- #: classes/SlideshowPluginPostType.php:41
215
- msgid "New slideshow"
216
- msgstr ""
217
-
218
- #: classes/SlideshowPluginPostType.php:42
219
- msgid "View slideshow"
220
- msgstr ""
221
-
222
- #: classes/SlideshowPluginPostType.php:43
223
- msgid "Search slideshows"
224
- msgstr ""
225
-
226
- #: classes/SlideshowPluginPostType.php:44
227
- #: classes/SlideshowPluginPostType.php:45
228
- msgid "No slideshows found"
229
- msgstr ""
230
-
231
- #: classes/SlideshowPluginPostType.php:126
232
- msgid "Information"
233
- msgstr "信息"
234
-
235
- #: classes/SlideshowPluginPostType.php:135
236
- msgid "Slides List"
237
- msgstr ""
238
-
239
- #: classes/SlideshowPluginPostType.php:144
240
- msgid "Slideshow Style"
241
- msgstr "幻灯片展示样式"
242
-
243
- #: classes/SlideshowPluginPostType.php:153
244
- msgid "Slideshow Settings"
245
- msgstr "幻灯片设置"
246
-
247
- #: classes/SlideshowPluginPostType.php:203
248
- #: classes/SlideshowPluginSlideInserter.php:156
249
- #: views/SlideshowPluginPostType/slides.php:2
250
- msgid "Insert"
251
- msgstr "插入"
252
-
253
- #: classes/SlideshowPluginPostType.php:211
254
- #: views/SlideshowPluginPostType/slides.php:9
255
- msgid "Add slides to this slideshow by using one of the buttons above."
256
- msgstr ""
257
-
258
- #: classes/SlideshowPluginShortcode.php:132
259
- msgid "No slideshow selected."
260
- msgstr ""
261
-
262
- #: classes/SlideshowPluginSlideInserter.php:165
263
- msgid "Load more results"
264
- msgstr ""
265
-
266
- #: classes/SlideshowPluginSlideInserter.php:174
267
- msgid "No images were found, click here to upload some."
268
- msgstr ""
269
-
270
- #: classes/SlideshowPluginSlideInserter.php:243
271
- msgid "Are you sure you want to delete this slide?"
272
- msgstr ""
273
-
274
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
275
- msgid "Slide Left"
276
- msgstr ""
277
-
278
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
279
- msgid "Slide Right"
280
- msgstr ""
281
-
282
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
283
- msgid "Slide Up"
284
- msgstr ""
285
-
286
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
287
- msgid "Slide Down"
288
- msgstr ""
289
-
290
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
291
- msgid "Direct Fade"
292
- msgstr ""
293
-
294
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
295
- msgid "Random Animation"
296
- msgstr ""
297
-
298
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
299
- msgid "Maximum width. When maximum width is 0, maximum width is ignored"
300
- msgstr ""
301
-
302
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:422
303
- msgid ""
304
- "Shrink slideshow's height when width shrinks (Fixed height can be defined "
305
- "when setting this value to 'No')"
306
- msgstr ""
307
-
308
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
309
- msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
310
- msgstr ""
311
-
312
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
313
- msgid "More info"
314
- msgstr ""
315
-
316
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
317
- #, php-format
318
- msgid ""
319
- "Proportional relationship%s between slideshow's width and height (width:"
320
- "height)"
321
- msgstr ""
322
-
323
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:424
324
- msgid "Slideshow's height"
325
- msgstr ""
326
-
327
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
328
- msgid "Fit image into slide (Stretch image)"
329
- msgstr ""
330
-
331
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:426
332
- msgid ""
333
- "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
334
- msgstr ""
335
-
336
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
337
- msgid "Hide description box, pop up when mouse hovers over"
338
- msgstr ""
339
-
340
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:432
341
- msgid "Pause slideshow when mouse hovers over"
342
- msgstr ""
343
-
344
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:433
345
- msgid "Activate navigation buttons"
346
- msgstr ""
347
-
348
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:434
349
- msgid "Hide navigation buttons, show when mouse hovers over"
350
- msgstr ""
351
-
352
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:435
353
- msgid "Activate pagination"
354
- msgstr ""
355
-
356
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:436
357
- msgid "Hide pagination, show when mouse hovers over"
358
- msgstr ""
359
-
360
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:437
361
- msgid "Activate control panel (play and pause button)"
362
- msgstr ""
363
-
364
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:438
365
- msgid "Hide control panel, show when mouse hovers over"
366
- msgstr ""
367
-
368
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:439
369
- msgid "Randomize slides"
370
- msgstr "随机幻灯片"
371
-
372
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:439
373
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:440
374
- msgid "Miscellaneous"
375
- msgstr "其他"
376
-
377
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:440
378
- #, php-format
379
- msgid "Avoid content filter (disable if '%s' is shown)"
380
- msgstr ""
381
-
382
- #: classes/SlideshowPluginWidget.php:23
383
- msgid "Enables you to show your slideshows in the widget area of your website."
384
- msgstr ""
385
-
386
- #: classes/SlideshowPluginWidget.php:29
387
- msgid "Slideshow Widget"
388
- msgstr ""
389
-
390
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:38
391
- msgid "Default stylesheets"
392
- msgstr ""
393
-
394
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:52
395
- msgid "Create a new custom style from this style"
396
- msgstr ""
397
-
398
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:54
399
- msgid "Customize"
400
- msgstr ""
401
-
402
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:68
403
- msgid "Custom stylesheets"
404
- msgstr ""
405
-
406
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:81
407
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:160
408
- msgid "Edit this style"
409
- msgstr ""
410
-
411
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:83
412
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:162
413
- #: views/SlideshowPluginPostType/slides.php:137
414
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:46
415
- msgid "Edit"
416
- msgstr ""
417
-
418
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:90
419
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:169
420
- msgid "Delete this style"
421
- msgstr ""
422
-
423
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:92
424
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:171
425
- msgid "Delete"
426
- msgstr ""
427
-
428
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:102
429
- msgid "Click 'Customize' to create a new custom stylesheet."
430
- msgstr ""
431
-
432
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:118
433
- msgid "Select a stylesheet from the left to start customizing it."
434
- msgstr ""
435
-
436
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:127
437
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:180
438
- #: views/SlideshowPluginPostType/slides.php:58
439
- #: views/SlideshowPluginPostType/slides.php:143
440
- #: views/SlideshowPluginPostType/slides.php:195
441
- #: views/SlideshowPluginPostType/slides.php:263
442
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:54
443
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:12
444
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:86
445
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:29
446
- #: views/SlideshowPluginWidget/form.php:2
447
- msgid "Title"
448
- msgstr ""
449
-
450
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:136
451
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:188
452
- msgid "Style"
453
- msgstr ""
454
-
455
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:11
456
- msgid "Note"
457
- msgstr ""
458
-
459
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:18
460
- #, php-format
461
- msgid ""
462
- "The settings set on this page apply only to newly created slideshows and "
463
- "therefore do not alter any existing ones. To adapt a slideshow's settings, "
464
- "%sclick here.%s"
465
- msgstr ""
466
-
467
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:30
468
- #: views/SlideshowPluginGeneralSettings/general-settings.php:16
469
- msgid "Default Slideshow Settings"
470
- msgstr ""
471
-
472
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:43
473
- #: views/SlideshowPluginPostType/settings.php:12
474
- msgid "settings"
475
- msgstr "设置"
476
-
477
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:80
478
- msgid "Default Slideshow Stylesheet"
479
- msgstr ""
480
-
481
- #: views/SlideshowPluginGeneralSettings/general-settings.php:15
482
- msgid "User Capabilities"
483
- msgstr ""
484
-
485
- #: views/SlideshowPluginGeneralSettings/general-settings.php:17
486
- msgid "Custom Styles"
487
- msgstr ""
488
-
489
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:8
490
- msgid "Add slideshows"
491
- msgstr ""
492
-
493
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:9
494
- msgid "Edit slideshows"
495
- msgstr ""
496
-
497
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:10
498
- msgid "Delete slideshows"
499
- msgstr ""
500
-
501
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:18
502
- msgid "Select the user roles that will able to perform certain actions."
503
- msgstr ""
504
-
505
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:35
506
- msgid "Untitled role"
507
- msgstr ""
508
-
509
- #: views/SlideshowPluginPostType/information.php:1
510
- msgid ""
511
- "To use this slideshow in your website either add this piece of shortcode to "
512
- "your posts or pages"
513
- msgstr "要在你的网站使用幻灯片功能,请把下面代码加入到文章或者页面内:"
514
-
515
- #: views/SlideshowPluginPostType/information.php:5
516
- msgid ""
517
- "Or add this piece of code to where ever in your website you want to place "
518
- "the slideshow"
519
- msgstr "或者加入这串代码到你网站想展示的地方:"
520
-
521
- #: views/SlideshowPluginPostType/information.php:9
522
- #, php-format
523
- msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
524
- msgstr "%s或者到小工具页面把幻灯片加入小工具内。%s"
525
-
526
- #: views/SlideshowPluginPostType/settings.php:26
527
- #: views/SlideshowPluginPostType/style-settings.php:11
528
- msgid "Default"
529
- msgstr ""
530
-
531
- #: views/SlideshowPluginPostType/slides.php:53
532
- #: views/SlideshowPluginPostType/slides.php:190
533
- #: views/SlideshowPluginSlideInserter/insert-text-button.php:1
534
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:6
535
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:23
536
- msgid "Text slide"
537
- msgstr "文本幻灯片"
538
-
539
- #: views/SlideshowPluginPostType/slides.php:60
540
- #: views/SlideshowPluginPostType/slides.php:149
541
- #: views/SlideshowPluginPostType/slides.php:197
542
- #: views/SlideshowPluginPostType/slides.php:269
543
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:62
544
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:15
545
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:92
546
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:32
547
- msgid "Description"
548
- msgstr ""
549
-
550
- #: views/SlideshowPluginPostType/slides.php:62
551
- #: views/SlideshowPluginPostType/slides.php:199
552
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:21
553
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:38
554
- msgid "Background color"
555
- msgstr ""
556
-
557
- #: views/SlideshowPluginPostType/slides.php:67
558
- #: views/SlideshowPluginPostType/slides.php:154
559
- #: views/SlideshowPluginPostType/slides.php:204
560
- #: views/SlideshowPluginPostType/slides.php:274
561
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:69
562
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:27
563
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:97
564
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:45
565
- msgid "URL"
566
- msgstr ""
567
-
568
- #: views/SlideshowPluginPostType/slides.php:69
569
- #: views/SlideshowPluginPostType/slides.php:156
570
- #: views/SlideshowPluginPostType/slides.php:206
571
- #: views/SlideshowPluginPostType/slides.php:276
572
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:72
573
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:29
574
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:99
575
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:48
576
- msgid "Open URL in"
577
- msgstr ""
578
-
579
- #: views/SlideshowPluginPostType/slides.php:71
580
- #: views/SlideshowPluginPostType/slides.php:158
581
- #: views/SlideshowPluginPostType/slides.php:208
582
- #: views/SlideshowPluginPostType/slides.php:278
583
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:74
584
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:31
585
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:101
586
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:50
587
- msgid "Same window"
588
- msgstr ""
589
-
590
- #: views/SlideshowPluginPostType/slides.php:72
591
- #: views/SlideshowPluginPostType/slides.php:159
592
- #: views/SlideshowPluginPostType/slides.php:209
593
- #: views/SlideshowPluginPostType/slides.php:279
594
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:75
595
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:32
596
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:102
597
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:51
598
- msgid "New window"
599
- msgstr ""
600
-
601
- #: views/SlideshowPluginPostType/slides.php:89
602
- #: views/SlideshowPluginPostType/slides.php:229
603
- #: views/SlideshowPluginSlideInserter/insert-video-button.php:1
604
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:52
605
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:13
606
- msgid "Video slide"
607
- msgstr "视频幻灯片"
608
-
609
- #: views/SlideshowPluginPostType/slides.php:94
610
- #: views/SlideshowPluginPostType/slides.php:234
611
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:57
612
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:19
613
- msgid "Youtube Video ID"
614
- msgstr ""
615
-
616
- #: views/SlideshowPluginPostType/slides.php:132
617
- #: views/SlideshowPluginPostType/slides.php:254
618
- #: views/SlideshowPluginSlideInserter/insert-image-button.php:1
619
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:40
620
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:77
621
- msgid "Image slide"
622
- msgstr "图示幻灯片"
623
-
624
- #: views/SlideshowPluginPostType/slides.php:170
625
- msgid ""
626
- "An error occurred while loading this slide, and it will not be present in "
627
- "the slideshow"
628
- msgstr ""
629
-
630
- #: views/SlideshowPluginPostType/slides.php:176
631
- #: views/SlideshowPluginPostType/slides.php:217
632
- #: views/SlideshowPluginPostType/slides.php:242
633
- #: views/SlideshowPluginPostType/slides.php:288
634
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:84
635
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:40
636
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:65
637
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:111
638
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:59
639
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:27
640
- msgid "Delete slide"
641
- msgstr ""
642
-
643
- #: views/SlideshowPluginPostType/style-settings.php:22
644
- #, php-format
645
- msgid "Custom styles can be created and customized %shere%s."
646
- msgstr ""
647
-
648
- #: views/SlideshowPluginPostType/support-plugin.php:3
649
- msgid "Help to keep this plugin free!"
650
- msgstr "协助保持本插件免费"
651
-
652
- #: views/SlideshowPluginPostType/support-plugin.php:6
653
- msgid ""
654
- "In order to keep you provided with the newest features, forum support, and "
655
- "bug-fixes, a lot of motivation is required. Therefore I'm kindly asking you "
656
- "to consider making a small donation to the plugin or rating it as 5-stars on "
657
- "Wordpress.org. Thank you in advance!"
658
- msgstr ""
659
- "我很爽快地希望你们能考虑对本插件作出一些小捐赠,或者能在wordpress.org给予5星"
660
- "好评,这样能让我保持积极性,在未来提供给你们插件的持续更新、论坛支持和bug的修"
661
- "复,先跟你们提前谢谢!"
662
-
663
- #: views/SlideshowPluginPostType/support-plugin.php:15
664
- msgid "Rate on Wordpress.org"
665
- msgstr "为本插件打分"
666
-
667
- #: views/SlideshowPluginPostType/support-plugin.php:24
668
- msgid "Frequently Asked Questions (FAQ)"
669
- msgstr ""
670
-
671
- #: views/SlideshowPluginPostType/support-plugin.php:33
672
- msgid "Questions / Suggestions"
673
- msgstr "问题/建议"
674
-
675
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
676
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
677
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
678
- msgid "Insert a Slideshow"
679
- msgstr ""
680
-
681
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
682
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
683
- msgid "Insert Slideshow"
684
- msgstr ""
685
-
686
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
687
- msgid "Select a slideshow"
688
- msgstr ""
689
-
690
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
691
- #: views/SlideshowPluginWidget/form.php:12
692
- msgid "Untitled slideshow"
693
- msgstr ""
694
-
695
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
696
- msgid "Cancel"
697
- msgstr ""
698
-
699
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
700
- #, php-format
701
- msgid ""
702
- "It seems you haven't created any slideshows yet. %sYou can create a "
703
- "slideshow here!%s"
704
- msgstr ""
705
-
706
- #: views/SlideshowPluginSlideInserter/search-popup.php:6
707
- msgid "Search"
708
- msgstr ""
709
-
710
- #: views/SlideshowPluginSlideInserter/search-popup.php:7
711
- msgid "Search images by title or ID"
712
- msgstr ""
713
-
714
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:18
715
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:35
716
- msgid "Text color"
717
- msgstr ""
718
-
719
- #: views/SlideshowPluginUpload/upload-button.php:1
720
- msgid "Upload/Manage Images"
721
- msgstr ""
722
-
723
- #: views/SlideshowPluginWidget/form.php:9
724
- msgid "Random Slideshow"
725
- msgstr ""
726
-
727
- #~ msgid "Leave any field open to use default value."
728
- #~ msgstr "Een veld dat open wordt gelaten neemt de standaardwaarde aan."
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Slideshow Plugin\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-02-02 01:48+0100\n"
6
+ "PO-Revision-Date: 2013-02-02 01:48+0100\n"
7
+ "Last-Translator: Stefan Boonstra <stefanboonstra@hotmail.com>\n"
8
+ "Language-Team: Kevin Tell\n"
9
+ "Language: zh_CN\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-KeywordsList: _e;__\n"
14
+ "X-Poedit-Basepath: ../\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Poedit 1.5.4\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: classes/SlideshowPluginGeneralSettings.php:64
20
+ #: classes/SlideshowPluginGeneralSettings.php:65
21
+ msgid "General Settings"
22
+ msgstr ""
23
+
24
+ #: classes/SlideshowPluginGeneralSettings.php:142
25
+ msgid "New"
26
+ msgstr ""
27
+
28
+ #: classes/SlideshowPluginGeneralSettings.php:143
29
+ msgid "Are you sure you want to delete this custom style?"
30
+ msgstr ""
31
+
32
+ #: classes/SlideshowPluginGeneralSettings.php:162
33
+ #: classes/SlideshowPluginInstaller.php:388
34
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:6
35
+ msgid "Light"
36
+ msgstr ""
37
+
38
+ #: classes/SlideshowPluginGeneralSettings.php:163
39
+ #: classes/SlideshowPluginInstaller.php:388
40
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:7
41
+ msgid "Dark"
42
+ msgstr ""
43
+
44
+ #: classes/SlideshowPluginGeneralSettings.php:267
45
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:49
46
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:131
47
+ msgid "Untitled"
48
+ msgstr ""
49
+
50
+ #: classes/SlideshowPluginInstaller.php:385
51
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:374
52
+ msgid "Yes"
53
+ msgstr ""
54
+
55
+ #: classes/SlideshowPluginInstaller.php:386
56
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:375
57
+ msgid "No"
58
+ msgstr ""
59
+
60
+ #: classes/SlideshowPluginInstaller.php:388
61
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:473
62
+ msgid "The style used for this slideshow"
63
+ msgstr ""
64
+
65
+ #: classes/SlideshowPluginInstaller.php:388
66
+ msgid "Custom"
67
+ msgstr ""
68
+
69
+ #: classes/SlideshowPluginInstaller.php:389
70
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:114
71
+ msgid "Custom style editor"
72
+ msgstr ""
73
+
74
+ #: classes/SlideshowPluginInstaller.php:390
75
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
76
+ msgid "Animation used for transition between slides"
77
+ msgstr "幻灯片滑动的动画效果设置"
78
+
79
+ #: classes/SlideshowPluginInstaller.php:390
80
+ msgid "Slide"
81
+ msgstr ""
82
+
83
+ #: classes/SlideshowPluginInstaller.php:390
84
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
85
+ msgid "Fade"
86
+ msgstr ""
87
+
88
+ #: classes/SlideshowPluginInstaller.php:390
89
+ #: classes/SlideshowPluginInstaller.php:391
90
+ #: classes/SlideshowPluginInstaller.php:392
91
+ #: classes/SlideshowPluginInstaller.php:393
92
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
93
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
94
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:417
95
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:418
96
+ msgid "Animation"
97
+ msgstr "动态"
98
+
99
+ #: classes/SlideshowPluginInstaller.php:391
100
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:416
101
+ msgid "Number of seconds the slide takes to slide in"
102
+ msgstr "幻灯片滑动速度"
103
+
104
+ #: classes/SlideshowPluginInstaller.php:392
105
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:417
106
+ msgid "Number of seconds the description takes to slide in"
107
+ msgstr "“描述”滑动速度"
108
+
109
+ #: classes/SlideshowPluginInstaller.php:393
110
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:418
111
+ msgid "Seconds between changing slides"
112
+ msgstr "幻灯片间置换的时间间隔"
113
+
114
+ #: classes/SlideshowPluginInstaller.php:394
115
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
116
+ msgid "Number of slides to fit into one slide"
117
+ msgstr "同一幅幻灯片中显示多少图片"
118
+
119
+ #: classes/SlideshowPluginInstaller.php:394
120
+ #: classes/SlideshowPluginInstaller.php:395
121
+ #: classes/SlideshowPluginInstaller.php:396
122
+ #: classes/SlideshowPluginInstaller.php:397
123
+ #: classes/SlideshowPluginInstaller.php:398
124
+ #: classes/SlideshowPluginInstaller.php:399
125
+ #: classes/SlideshowPluginInstaller.php:400
126
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
127
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:420
128
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
129
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:422
130
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
131
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:424
132
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
133
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:426
134
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:427
135
+ msgid "Display"
136
+ msgstr "显示"
137
+
138
+ #: classes/SlideshowPluginInstaller.php:395
139
+ msgid "Width of the slideshow, set to parent&#39;s width on 0"
140
+ msgstr "幻灯片宽度,0为继承父元素宽度"
141
+
142
+ #: classes/SlideshowPluginInstaller.php:396
143
+ msgid "Height of the slideshow"
144
+ msgstr "幻灯片高度"
145
+
146
+ #: classes/SlideshowPluginInstaller.php:397
147
+ msgid "Height of the description boxes"
148
+ msgstr "幻灯片中描述窗口的高度"
149
+
150
+ #: classes/SlideshowPluginInstaller.php:398
151
+ msgid "Fit image into slide (stretching it)"
152
+ msgstr "图片适应显示 (即拉伸图片"
153
+
154
+ #: classes/SlideshowPluginInstaller.php:399
155
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:426
156
+ msgid "Show title and description"
157
+ msgstr "显示标题和描述"
158
+
159
+ #: classes/SlideshowPluginInstaller.php:400
160
+ msgid "Hide description box, it will pop up when a mouse hovers over the slide"
161
+ msgstr "隐藏描述窗口,只有鼠标移至幻灯片才弹出"
162
+
163
+ #: classes/SlideshowPluginInstaller.php:401
164
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
165
+ msgid "Automatically slide to the next slide"
166
+ msgstr "幻灯片自动滚动显示"
167
+
168
+ #: classes/SlideshowPluginInstaller.php:401
169
+ #: classes/SlideshowPluginInstaller.php:402
170
+ #: classes/SlideshowPluginInstaller.php:403
171
+ #: classes/SlideshowPluginInstaller.php:404
172
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
173
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:429
174
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:430
175
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:431
176
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:432
177
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:433
178
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:434
179
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:435
180
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:436
181
+ msgid "Control"
182
+ msgstr "控制"
183
+
184
+ #: classes/SlideshowPluginInstaller.php:402
185
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:429
186
+ msgid "Return to the beginning of the slideshow after last slide"
187
+ msgstr "循环展示幻灯片"
188
+
189
+ #: classes/SlideshowPluginInstaller.php:403
190
+ msgid "Activate buttons (so the user can scroll through the slides)"
191
+ msgstr "激活按钮 (用户可通过按钮左右滚动显示幻灯片)"
192
+
193
+ #: classes/SlideshowPluginInstaller.php:404
194
+ msgid "Show control panel (play and pause button)"
195
+ msgstr "显示控制面板 (播放和停止按钮)"
196
+
197
+ #: classes/SlideshowPluginPostType.php:39
198
+ msgid "Slideshows"
199
+ msgstr "幻灯片"
200
+
201
+ #: classes/SlideshowPluginPostType.php:40
202
+ #: views/SlideshowPluginWidget/form.php:7
203
+ msgid "Slideshow"
204
+ msgstr "幻灯片"
205
+
206
+ #: classes/SlideshowPluginPostType.php:41
207
+ msgid "Add New Slideshow"
208
+ msgstr ""
209
+
210
+ #: classes/SlideshowPluginPostType.php:42
211
+ msgid "Edit slideshow"
212
+ msgstr ""
213
+
214
+ #: classes/SlideshowPluginPostType.php:43
215
+ msgid "New slideshow"
216
+ msgstr ""
217
+
218
+ #: classes/SlideshowPluginPostType.php:44
219
+ msgid "View slideshow"
220
+ msgstr ""
221
+
222
+ #: classes/SlideshowPluginPostType.php:45
223
+ msgid "Search slideshows"
224
+ msgstr ""
225
+
226
+ #: classes/SlideshowPluginPostType.php:46
227
+ #: classes/SlideshowPluginPostType.php:47
228
+ msgid "No slideshows found"
229
+ msgstr ""
230
+
231
+ #: classes/SlideshowPluginPostType.php:167
232
+ msgid "Information"
233
+ msgstr "信息"
234
+
235
+ #: classes/SlideshowPluginPostType.php:176
236
+ msgid "Slides List"
237
+ msgstr ""
238
+
239
+ #: classes/SlideshowPluginPostType.php:185
240
+ msgid "Slideshow Style"
241
+ msgstr "幻灯片展示样式"
242
+
243
+ #: classes/SlideshowPluginPostType.php:194
244
+ msgid "Slideshow Settings"
245
+ msgstr "幻灯片设置"
246
+
247
+ #: classes/SlideshowPluginPostType.php:244
248
+ #: classes/SlideshowPluginSlideInserter.php:156
249
+ #: views/SlideshowPluginPostType/slides.php:2
250
+ msgid "Insert"
251
+ msgstr "插入"
252
+
253
+ #: classes/SlideshowPluginPostType.php:252
254
+ #: views/SlideshowPluginPostType/slides.php:9
255
+ msgid "Add slides to this slideshow by using one of the buttons above."
256
+ msgstr ""
257
+
258
+ #: classes/SlideshowPluginShortcode.php:132
259
+ msgid "No slideshow selected."
260
+ msgstr ""
261
+
262
+ #: classes/SlideshowPluginSlideInserter.php:165
263
+ msgid "Load more results"
264
+ msgstr ""
265
+
266
+ #: classes/SlideshowPluginSlideInserter.php:174
267
+ msgid "No images were found, click here to upload some."
268
+ msgstr ""
269
+
270
+ #: classes/SlideshowPluginSlideInserter.php:243
271
+ msgid "Are you sure you want to delete this slide?"
272
+ msgstr ""
273
+
274
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
275
+ msgid "Slide Left"
276
+ msgstr ""
277
+
278
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
279
+ msgid "Slide Right"
280
+ msgstr ""
281
+
282
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
283
+ msgid "Slide Up"
284
+ msgstr ""
285
+
286
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
287
+ msgid "Slide Down"
288
+ msgstr ""
289
+
290
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
291
+ msgid "Direct Fade"
292
+ msgstr ""
293
+
294
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:415
295
+ msgid "Random Animation"
296
+ msgstr ""
297
+
298
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:420
299
+ msgid "Maximum width. When maximum width is 0, maximum width is ignored"
300
+ msgstr ""
301
+
302
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
303
+ msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
304
+ msgstr ""
305
+
306
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
307
+ msgid "More info"
308
+ msgstr ""
309
+
310
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
311
+ #, php-format
312
+ msgid ""
313
+ "Proportional relationship%s between slideshow's width and height (width:"
314
+ "height)"
315
+ msgstr ""
316
+
317
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:422
318
+ msgid "Slideshow's height"
319
+ msgstr ""
320
+
321
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
322
+ msgid "Fit image into slide (Stretch image)"
323
+ msgstr ""
324
+
325
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:424
326
+ msgid "Shrink slideshow's height when width shrinks"
327
+ msgstr ""
328
+
329
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
330
+ msgid ""
331
+ "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
332
+ msgstr ""
333
+
334
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:427
335
+ msgid "Hide description box, pop up when mouse hovers over"
336
+ msgstr ""
337
+
338
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:430
339
+ msgid "Pause slideshow when mouse hovers over"
340
+ msgstr ""
341
+
342
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:431
343
+ msgid "Activate navigation buttons"
344
+ msgstr ""
345
+
346
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:432
347
+ msgid "Hide navigation buttons, show when mouse hovers over"
348
+ msgstr ""
349
+
350
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:433
351
+ msgid "Activate pagination"
352
+ msgstr ""
353
+
354
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:434
355
+ msgid "Hide pagination, show when mouse hovers over"
356
+ msgstr ""
357
+
358
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:435
359
+ msgid "Activate control panel (play and pause button)"
360
+ msgstr ""
361
+
362
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:436
363
+ msgid "Hide control panel, show when mouse hovers over"
364
+ msgstr ""
365
+
366
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:437
367
+ msgid "Randomize slides"
368
+ msgstr "随机幻灯片"
369
+
370
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:437
371
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:438
372
+ msgid "Miscellaneous"
373
+ msgstr "其他"
374
+
375
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:438
376
+ #, php-format
377
+ msgid "Avoid content filter (disable if '%s' is shown)"
378
+ msgstr ""
379
+
380
+ #: classes/SlideshowPluginWidget.php:23
381
+ msgid "Enables you to show your slideshows in the widget area of your website."
382
+ msgstr ""
383
+
384
+ #: classes/SlideshowPluginWidget.php:29
385
+ msgid "Slideshow Widget"
386
+ msgstr ""
387
+
388
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:38
389
+ msgid "Default stylesheets"
390
+ msgstr ""
391
+
392
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:52
393
+ msgid "Create a new custom style from this style"
394
+ msgstr ""
395
+
396
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:54
397
+ msgid "Customize"
398
+ msgstr ""
399
+
400
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:68
401
+ msgid "Custom stylesheets"
402
+ msgstr ""
403
+
404
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:81
405
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:160
406
+ msgid "Edit this style"
407
+ msgstr ""
408
+
409
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:83
410
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:162
411
+ #: views/SlideshowPluginPostType/slides.php:137
412
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:46
413
+ msgid "Edit"
414
+ msgstr ""
415
+
416
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:90
417
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:169
418
+ msgid "Delete this style"
419
+ msgstr ""
420
+
421
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:92
422
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:171
423
+ msgid "Delete"
424
+ msgstr ""
425
+
426
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:102
427
+ msgid "Click 'Customize' to create a new custom stylesheet."
428
+ msgstr ""
429
+
430
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:118
431
+ msgid "Select a stylesheet from the left to start customizing it."
432
+ msgstr ""
433
+
434
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:127
435
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:180
436
+ #: views/SlideshowPluginPostType/slides.php:58
437
+ #: views/SlideshowPluginPostType/slides.php:143
438
+ #: views/SlideshowPluginPostType/slides.php:195
439
+ #: views/SlideshowPluginPostType/slides.php:263
440
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:54
441
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:12
442
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:92
443
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:29
444
+ #: views/SlideshowPluginWidget/form.php:2
445
+ msgid "Title"
446
+ msgstr ""
447
+
448
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:136
449
+ #: views/SlideshowPluginGeneralSettings/custom-styles.php:188
450
+ msgid "Style"
451
+ msgstr ""
452
+
453
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:11
454
+ msgid "Note"
455
+ msgstr ""
456
+
457
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:18
458
+ #, php-format
459
+ msgid ""
460
+ "The settings set on this page apply only to newly created slideshows and "
461
+ "therefore do not alter any existing ones. To adapt a slideshow's settings, "
462
+ "%sclick here.%s"
463
+ msgstr ""
464
+
465
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:30
466
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:16
467
+ msgid "Default Slideshow Settings"
468
+ msgstr ""
469
+
470
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:43
471
+ #: views/SlideshowPluginPostType/settings.php:12
472
+ msgid "settings"
473
+ msgstr "设置"
474
+
475
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:80
476
+ msgid "Default Slideshow Stylesheet"
477
+ msgstr ""
478
+
479
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:15
480
+ msgid "User Capabilities"
481
+ msgstr ""
482
+
483
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:17
484
+ msgid "Custom Styles"
485
+ msgstr ""
486
+
487
+ #: views/SlideshowPluginGeneralSettings/user-capabilities.php:8
488
+ msgid "Add slideshows"
489
+ msgstr ""
490
+
491
+ #: views/SlideshowPluginGeneralSettings/user-capabilities.php:9
492
+ msgid "Edit slideshows"
493
+ msgstr ""
494
+
495
+ #: views/SlideshowPluginGeneralSettings/user-capabilities.php:10
496
+ msgid "Delete slideshows"
497
+ msgstr ""
498
+
499
+ #: views/SlideshowPluginGeneralSettings/user-capabilities.php:18
500
+ msgid "Select the user roles that will able to perform certain actions."
501
+ msgstr ""
502
+
503
+ #: views/SlideshowPluginGeneralSettings/user-capabilities.php:35
504
+ msgid "Untitled role"
505
+ msgstr ""
506
+
507
+ #: views/SlideshowPluginPostType/information.php:1
508
+ msgid ""
509
+ "To use this slideshow in your website either add this piece of shortcode to "
510
+ "your posts or pages"
511
+ msgstr "要在你的网站使用幻灯片功能,请把下面代码加入到文章或者页面内:"
512
+
513
+ #: views/SlideshowPluginPostType/information.php:5
514
+ msgid ""
515
+ "Or add this piece of code to where ever in your website you want to place "
516
+ "the slideshow"
517
+ msgstr "或者加入这串代码到你网站想展示的地方:"
518
+
519
+ #: views/SlideshowPluginPostType/information.php:9
520
+ #, php-format
521
+ msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
522
+ msgstr "%s或者到小工具页面把幻灯片加入小工具内。%s"
523
+
524
+ #: views/SlideshowPluginPostType/settings.php:26
525
+ #: views/SlideshowPluginPostType/style-settings.php:11
526
+ msgid "Default"
527
+ msgstr ""
528
+
529
+ #: views/SlideshowPluginPostType/slides.php:53
530
+ #: views/SlideshowPluginPostType/slides.php:190
531
+ #: views/SlideshowPluginSlideInserter/insert-text-button.php:1
532
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:6
533
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:23
534
+ msgid "Text slide"
535
+ msgstr "文本幻灯片"
536
+
537
+ #: views/SlideshowPluginPostType/slides.php:60
538
+ #: views/SlideshowPluginPostType/slides.php:149
539
+ #: views/SlideshowPluginPostType/slides.php:197
540
+ #: views/SlideshowPluginPostType/slides.php:269
541
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:61
542
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:15
543
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:99
544
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:32
545
+ msgid "Description"
546
+ msgstr ""
547
+
548
+ #: views/SlideshowPluginPostType/slides.php:62
549
+ #: views/SlideshowPluginPostType/slides.php:199
550
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:21
551
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:38
552
+ msgid "Background color"
553
+ msgstr ""
554
+
555
+ #: views/SlideshowPluginPostType/slides.php:67
556
+ #: views/SlideshowPluginPostType/slides.php:154
557
+ #: views/SlideshowPluginPostType/slides.php:204
558
+ #: views/SlideshowPluginPostType/slides.php:274
559
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:68
560
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:28
561
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:106
562
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:45
563
+ msgid "URL"
564
+ msgstr ""
565
+
566
+ #: views/SlideshowPluginPostType/slides.php:69
567
+ #: views/SlideshowPluginPostType/slides.php:156
568
+ #: views/SlideshowPluginPostType/slides.php:206
569
+ #: views/SlideshowPluginPostType/slides.php:276
570
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:71
571
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:31
572
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:109
573
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:48
574
+ msgid "Open URL in"
575
+ msgstr ""
576
+
577
+ #: views/SlideshowPluginPostType/slides.php:71
578
+ #: views/SlideshowPluginPostType/slides.php:158
579
+ #: views/SlideshowPluginPostType/slides.php:208
580
+ #: views/SlideshowPluginPostType/slides.php:278
581
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:73
582
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:33
583
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:111
584
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:50
585
+ msgid "Same window"
586
+ msgstr ""
587
+
588
+ #: views/SlideshowPluginPostType/slides.php:72
589
+ #: views/SlideshowPluginPostType/slides.php:159
590
+ #: views/SlideshowPluginPostType/slides.php:209
591
+ #: views/SlideshowPluginPostType/slides.php:279
592
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:74
593
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:34
594
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:112
595
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:51
596
+ msgid "New window"
597
+ msgstr ""
598
+
599
+ #: views/SlideshowPluginPostType/slides.php:89
600
+ #: views/SlideshowPluginPostType/slides.php:229
601
+ #: views/SlideshowPluginSlideInserter/insert-video-button.php:1
602
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:54
603
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:13
604
+ msgid "Video slide"
605
+ msgstr "视频幻灯片"
606
+
607
+ #: views/SlideshowPluginPostType/slides.php:94
608
+ #: views/SlideshowPluginPostType/slides.php:234
609
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:60
610
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:19
611
+ msgid "Youtube Video ID"
612
+ msgstr ""
613
+
614
+ #: views/SlideshowPluginPostType/slides.php:132
615
+ #: views/SlideshowPluginPostType/slides.php:254
616
+ #: views/SlideshowPluginSlideInserter/insert-image-button.php:1
617
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:40
618
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:80
619
+ msgid "Image slide"
620
+ msgstr "图示幻灯片"
621
+
622
+ #: views/SlideshowPluginPostType/slides.php:170
623
+ msgid ""
624
+ "An error occurred while loading this slide, and it will not be present in "
625
+ "the slideshow"
626
+ msgstr ""
627
+
628
+ #: views/SlideshowPluginPostType/slides.php:176
629
+ #: views/SlideshowPluginPostType/slides.php:217
630
+ #: views/SlideshowPluginPostType/slides.php:242
631
+ #: views/SlideshowPluginPostType/slides.php:288
632
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:83
633
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:42
634
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:68
635
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:121
636
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:59
637
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:27
638
+ msgid "Delete slide"
639
+ msgstr ""
640
+
641
+ #: views/SlideshowPluginPostType/style-settings.php:22
642
+ #, php-format
643
+ msgid "Custom styles can be created and customized %shere%s."
644
+ msgstr ""
645
+
646
+ #: views/SlideshowPluginPostType/support-plugin.php:3
647
+ msgid "Help to keep this plugin free!"
648
+ msgstr "协助保持本插件免费"
649
+
650
+ #: views/SlideshowPluginPostType/support-plugin.php:6
651
+ msgid ""
652
+ "In order to keep you provided with the newest features, forum support, and "
653
+ "bug-fixes, a lot of motivation is required. Therefore I'm kindly asking you "
654
+ "to consider making a small donation to the plugin or rating it as 5-stars on "
655
+ "Wordpress.org. Thank you in advance!"
656
+ msgstr ""
657
+ "我很爽快地希望你们能考虑对本插件作出一些小捐赠,或者能在wordpress.org给予5星"
658
+ "好评,这样能让我保持积极性,在未来提供给你们插件的持续更新、论坛支持和bug的修"
659
+ "复,先跟你们提前谢谢!"
660
+
661
+ #: views/SlideshowPluginPostType/support-plugin.php:15
662
+ msgid "Rate on Wordpress.org"
663
+ msgstr "为本插件打分"
664
+
665
+ #: views/SlideshowPluginPostType/support-plugin.php:24
666
+ msgid "Frequently Asked Questions (FAQ)"
667
+ msgstr ""
668
+
669
+ #: views/SlideshowPluginPostType/support-plugin.php:33
670
+ msgid "Questions / Suggestions"
671
+ msgstr "问题/建议"
672
+
673
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
674
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
675
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
676
+ msgid "Insert a Slideshow"
677
+ msgstr ""
678
+
679
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
680
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
681
+ msgid "Insert Slideshow"
682
+ msgstr ""
683
+
684
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
685
+ msgid "Select a slideshow"
686
+ msgstr ""
687
+
688
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
689
+ #: views/SlideshowPluginWidget/form.php:12
690
+ msgid "Untitled slideshow"
691
+ msgstr ""
692
+
693
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
694
+ msgid "Cancel"
695
+ msgstr ""
696
+
697
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
698
+ #, php-format
699
+ msgid ""
700
+ "It seems you haven't created any slideshows yet. %sYou can create a "
701
+ "slideshow here!%s"
702
+ msgstr ""
703
+
704
+ #: views/SlideshowPluginSlideInserter/search-popup.php:6
705
+ msgid "Search"
706
+ msgstr ""
707
+
708
+ #: views/SlideshowPluginSlideInserter/search-popup.php:7
709
+ msgid "Search images by title or ID"
710
+ msgstr ""
711
+
712
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:18
713
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:35
714
+ msgid "Text color"
715
+ msgstr ""
716
+
717
+ #: views/SlideshowPluginUpload/upload-button.php:1
718
+ msgid "Upload/Manage Images"
719
+ msgstr ""
720
+
721
+ #: views/SlideshowPluginWidget/form.php:9
722
+ msgid "Random Slideshow"
723
+ msgstr ""
724
+
725
+ #~ msgid "Leave any field open to use default value."
726
+ #~ msgstr "Een veld dat open wordt gelaten neemt de standaardwaarde aan."
 
 
readme.txt CHANGED
@@ -5,7 +5,7 @@ Donate link: http://stefanboonstra.com/donate-to-slideshow/
5
  Tags: slideshow, slider, slide, slides, show, images, image, photo, gallery, galleries, jquery, javascript, video, text
6
  Requires at least: 3.3
7
  Tested up to: 3.5.1
8
- Stable tag: 2.2.1
9
  License: GPLv2
10
 
11
  Integrate a fancy slideshow in just five steps. - Rainbows. Rainbows everywhere.
@@ -37,6 +37,7 @@ different images, settings and styles for each one of them.
37
  = Languages =
38
 
39
  - Chinese (27% Translated by [Kevin Tell](http://www.ivygg.com/))
 
40
  - Dutch
41
  - English
42
  - French (60% Translated by [Wptheme](http://wptheme.fr/))
@@ -164,6 +165,13 @@ personal taste.
164
 
165
  == Changelog ==
166
 
 
 
 
 
 
 
 
167
  = 2.2.1 =
168
  * Fixed: A bug in the width calculations caused slideshows in width-less elements to be hidden.
169
  * Fixed: The functional stylesheet defined the last five header elements for the entire page, instead of just for the slideshow.
@@ -362,16 +370,6 @@ personal taste.
362
  * Initial release.
363
 
364
 
365
- == Upgrade Notice ==
366
-
367
- = 2.2.0 =
368
- This update brings a completely renewed slideshow, which comes with the necessary changes to the way the HTML and CSS is
369
- built up. To keep your slideshows styled after the update, all slideshows will be reset to the 'Light' or 'Dark'
370
- stylesheet. Your customized slideshows will remain intact, but it's sensible to create a new custom stylesheet and use
371
- the old one to customize it with. To support responsiveness, there's also been some changes to the slideshow's settings.
372
- Any setting you have changed to alter the dimensions of the plugin, may be lost. I'm sorry for the inconvenience.
373
-
374
-
375
  == Links ==
376
 
377
  * [Stefan Boonstra](http://stefanboonstra.com/)
5
  Tags: slideshow, slider, slide, slides, show, images, image, photo, gallery, galleries, jquery, javascript, video, text
6
  Requires at least: 3.3
7
  Tested up to: 3.5.1
8
+ Stable tag: 2.2.2
9
  License: GPLv2
10
 
11
  Integrate a fancy slideshow in just five steps. - Rainbows. Rainbows everywhere.
37
  = Languages =
38
 
39
  - Chinese (27% Translated by [Kevin Tell](http://www.ivygg.com/))
40
+ - Czech (100% Translated by Edhel)
41
  - Dutch
42
  - English
43
  - French (60% Translated by [Wptheme](http://wptheme.fr/))
165
 
166
  == Changelog ==
167
 
168
+ = 2.2.2 =
169
+ * Fixed: Float and size bugs caused by the maximum width element.
170
+ * Fixed: PHP errors were showing in 'Delete slide' links.
171
+ * Live width calculations have been halved to improve performance.
172
+ * Default settings have been tuned to cater better to most users.
173
+ * Added Czech translation by Edhel.
174
+
175
  = 2.2.1 =
176
  * Fixed: A bug in the width calculations caused slideshows in width-less elements to be hidden.
177
  * Fixed: The functional stylesheet defined the last five header elements for the entire page, instead of just for the slideshow.
370
  * Initial release.
371
 
372
 
 
 
 
 
 
 
 
 
 
 
373
  == Links ==
374
 
375
  * [Stefan Boonstra](http://stefanboonstra.com/)
screenshot-1.png DELETED
Binary file
screenshot-2.png DELETED
Binary file
screenshot-3.png DELETED
Binary file
screenshot-4.png DELETED
Binary file
screenshot-5.png DELETED
Binary file
screenshot-6.png DELETED
Binary file
screenshot-7.png DELETED
Binary file
screenshot-8.png DELETED
Binary file
slideshow.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Slideshow
4
  Plugin URI: http://wordpress.org/extend/plugins/slideshow-jquery-image-gallery/
5
  Description: The slideshow plugin is easily deployable on your website. Add any image that has already been uploaded to add to your slideshow, add text slides, or even add a video. Options and styles are customizable for every single slideshow on your website.
6
- Version: 2.2.1
7
  Requires at least: 3.3
8
  Author: StefanBoonstra
9
  Author URI: http://stefanboonstra.com/
@@ -22,7 +22,7 @@
22
  class SlideshowPluginMain {
23
 
24
  /** Variables */
25
- static $version = '2.2.1';
26
 
27
  /**
28
  * Bootstraps the application by assigning the right functions to
3
  Plugin Name: Slideshow
4
  Plugin URI: http://wordpress.org/extend/plugins/slideshow-jquery-image-gallery/
5
  Description: The slideshow plugin is easily deployable on your website. Add any image that has already been uploaded to add to your slideshow, add text slides, or even add a video. Options and styles are customizable for every single slideshow on your website.
6
+ Version: 2.2.2
7
  Requires at least: 3.3
8
  Author: StefanBoonstra
9
  Author URI: http://stefanboonstra.com/
22
  class SlideshowPluginMain {
23
 
24
  /** Variables */
25
+ static $version = '2.2.2';
26
 
27
  /**
28
  * Bootstraps the application by assigning the right functions to
style/SlideshowPlugin/functional.css CHANGED
@@ -1 +1 @@
1
- .slideshow_container{margin:0;position:relative}.slideshow_container div{clear:none!important;max-width:none;padding:0}.slideshow_container img{border:0;margin:0;padding:0}.slideshow_container p{margin:0;padding:10px}.slideshow_container a{margin:0;display:block}.slideshow_container ul{margin:0;padding:0}.slideshow_container ul li{margin:0;padding:0}.slideshow_container h1,.slideshow_container h2,.slideshow_container h3,.slideshow_container h4,.slideshow_container h5,.slideshow_container h6{margin:0;padding:10px}.slideshow_container .slideshow_content{position:relative;overflow:hidden}.slideshow_container .slideshow_view{position:absolute;width:0;height:0;overflow:hidden}.slideshow_container .slideshow_slide{position:relative;float:left!important;overflow:hidden}.slideshow_container .slideshow_description{display:none;position:absolute;bottom:0}.slideshow_container .transparent{zoom:1}.slideshow_container .transparent:hover{zoom:1}.slideshow_container .slideshow_controlPanel{position:absolute;top:5px;left:50%;display:none;z-index:2}.slideshow_container .slideshow_controlPanel ul{list-style:none;margin:0;padding:0}.slideshow_container .slideshow_controlPanel ul li{float:left}.slideshow_container .slideshow_controlPanel ul li:hover{cursor:pointer}.slideshow_container .slideshow_button{padding:0;position:absolute;top:50%;cursor:pointer;display:none;z-index:2}.slideshow_container .slideshow_previous{left:5px}.slideshow_container .slideshow_next{right:5px}.slideshow_container .slideshow_pagination{height:0;position:absolute;width:100%;display:none;z-index:2}.slideshow_container .slideshow_pagination_center{display:table;margin:0 auto}.slideshow_container .slideshow_pagination ul{list-style:none;margin:0;padding:0}.slideshow_container .slideshow_pagination ul li{display:inline;float:left}.slideshow_container .slideshow_pagination ul li:hover{cursor:pointer}.slideshow_container .slideshow_plugin_manufacturer{position:absolute!important;height:1px;width:1px;overflow:hidden;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px)}
1
+ .slideshow_container{margin:0;position:relative}.slideshow_container div{clear:none!important;max-width:none;padding:0}.slideshow_container img{border:0;margin:0;padding:0;max-width:none}.slideshow_container p{margin:0;padding:10px}.slideshow_container a{margin:0;display:block}.slideshow_container ul{margin:0;padding:0}.slideshow_container ul li{margin:0;padding:0}.slideshow_container h1,.slideshow_container h2,.slideshow_container h3,.slideshow_container h4,.slideshow_container h5,.slideshow_container h6{margin:0;padding:10px}.slideshow_container .slideshow_content{position:relative;overflow:hidden}.slideshow_container .slideshow_view{position:absolute;width:0;height:0;overflow:hidden}.slideshow_container .slideshow_slide{position:relative;float:left!important;overflow:hidden}.slideshow_container .slideshow_description{display:none;position:absolute;bottom:0}.slideshow_container .transparent{zoom:1}.slideshow_container .transparent:hover{zoom:1}.slideshow_container .slideshow_controlPanel{position:absolute;top:5px;left:50%;display:none;z-index:2}.slideshow_container .slideshow_controlPanel ul{list-style:none;margin:0;padding:0}.slideshow_container .slideshow_controlPanel ul li{float:left}.slideshow_container .slideshow_controlPanel ul li:hover{cursor:pointer}.slideshow_container .slideshow_button{padding:0;position:absolute;top:50%;cursor:pointer;display:none;z-index:2}.slideshow_container .slideshow_previous{left:5px}.slideshow_container .slideshow_next{right:5px}.slideshow_container .slideshow_pagination{height:0;position:absolute;width:100%;display:none;z-index:2}.slideshow_container .slideshow_pagination_center{display:table;margin:0 auto}.slideshow_container .slideshow_pagination ul{list-style:none;margin:0;padding:0}.slideshow_container .slideshow_pagination ul li{display:inline;float:left}.slideshow_container .slideshow_pagination ul li:hover{cursor:pointer}.slideshow_container .slideshow_plugin_manufacturer{position:absolute!important;height:1px;width:1px;overflow:hidden;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px)}
style/SlideshowPluginPostType/style.css ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* ==== ==== */
2
+ .sortable-slides-list li {
3
+ margin: 10px 0;
4
+ width: auto;
5
+ background-color: #fafafa;
6
+ }
7
+
8
+ .sortable-slides-list li .hndle span {
9
+ font-size: 0.8em;
10
+ }
11
+
12
+ .sortable-slides-list li p {
13
+ margin: 5px 15px 5px 5px;
14
+ }
15
+
16
+ .sortable-slides-list li .slideshow-delete-slide,
17
+ .sortable-slides-list li .slideshow-delete-new-slide {
18
+ color: red;
19
+ cursor: pointer;
20
+ }
views/SlideshowPlugin/slideshow.php CHANGED
@@ -1,6 +1,19 @@
1
- <?php echo isset($settings['maxWidth']) && $settings['maxWidth'] > 0 ? '<div style="max-width: ' . $settings['maxWidth'] . 'px;">' : ''; ?>
2
- <div class="slideshow_container slideshow_container_<?php echo $sessionID; ?>" style="display: none; <?php echo (isset($settings['height']) && $settings['height'] > 0) ? 'height: ' . $settings['height'] . 'px; ' : ''; ?>">
3
- <div class="slideshow_content">
 
 
 
 
 
 
 
 
 
 
 
 
 
4
 
5
  <?php
6
 
@@ -12,13 +25,6 @@
12
 
13
  </div>
14
 
15
- <div class="slideshow_controlPanel slideshow_transparent"><ul><li class="slideshow_togglePlay"></li></ul></div>
16
-
17
- <div class="slideshow_button slideshow_previous slideshow_transparent"></div>
18
- <div class="slideshow_button slideshow_next slideshow_transparent"></div>
19
-
20
- <div class="slideshow_pagination"><div class="slideshow_pagination_center"><ul></ul></div></div>
21
-
22
  <div class="slideshow_plugin_manufacturer">
23
  <a href="http://www.stefanboonstra.com/slideshow/">Wordpress Slideshow</a>
24
  </div>
@@ -38,5 +44,4 @@
38
  <?php echo htmlspecialchars($style); ?>
39
  </style>
40
  <?php endif; ?>
41
- </div>
42
- <?php echo isset($settings['maxWidth']) && $settings['maxWidth'] > 0 ? '</div>' : ''; ?>
1
+ <div
2
+ class="slideshow_container slideshow_container_<?php echo $sessionID; ?>"
3
+ style="
4
+ <?php echo (isset($settings['preserveSlideshowDimensions']) && $settings['preserveSlideshowDimensions'] == 'false' && isset($settings['height']) && $settings['height'] > 0) ? 'height: ' . $settings['height'] . 'px; ' : ''; ?>
5
+ <?php echo (isset($settings['maxWidth']) && $settings['maxWidth'] > 0) ? 'max-width: ' . $settings['maxWidth'] . 'px;' : ''; ?>
6
+ "
7
+ >
8
+
9
+ <div class="slideshow_controlPanel slideshow_transparent"><ul><li class="slideshow_togglePlay"></li></ul></div>
10
+
11
+ <div class="slideshow_button slideshow_previous slideshow_transparent"></div>
12
+ <div class="slideshow_button slideshow_next slideshow_transparent"></div>
13
+
14
+ <div class="slideshow_pagination"><div class="slideshow_pagination_center"><ul></ul></div></div>
15
+
16
+ <div class="slideshow_content" style="display: none;">
17
 
18
  <?php
19
 
25
 
26
  </div>
27
 
 
 
 
 
 
 
 
28
  <div class="slideshow_plugin_manufacturer">
29
  <a href="http://www.stefanboonstra.com/slideshow/">Wordpress Slideshow</a>
30
  </div>
44
  <?php echo htmlspecialchars($style); ?>
45
  </style>
46
  <?php endif; ?>
47
+ </div>
 
views/SlideshowPluginSlideshowSlide/backend_attachment.php CHANGED
@@ -33,15 +33,15 @@ if(isset($attachment)):
33
 
34
  if($displaySlide): ?>
35
 
36
- <li class="widefat sortable-slides-list-item" style="margin: 10px 0; width: auto; background-color: #fafafa;">
37
 
38
  <h3 class="hndle">
39
- <span style="font-size: 0.8em;">
40
  <?php _e('Image slide', 'slideshow-plugin'); ?>
41
  </span>
42
  </h3>
43
 
44
- <p style="float: left; margin: 5px;">
45
 
46
  <a href="<?php echo $editUrl; ?>" title="<?php _e('Edit', 'slideshow-plugin'); ?> &#34;<?php echo $attachment->post_title; ?>&#34;">
47
  <img width="80" height="60" src="<?php echo $imageSrc; ?>" class="attachment-80x60" alt="<?php echo $attachment->post_title; ?>" title="<?php echo $attachment->post_title; ?>" />
@@ -49,25 +49,24 @@ if(isset($attachment)):
49
 
50
  </p>
51
 
52
- <p style="float: left; margin: 5px 15px 5px 5px;">
53
 
54
  <i><?php _e('Title', 'slideshow-plugin'); ?></i><br />
55
- <input type="text" name="<?php echo $name; ?>[title]" value="<?php echo $title; ?>" />
56
 
57
  </p>
58
- <p style="clear: both"></p>
59
 
60
- <p style="margin: 5px 15px 5px 5px;">
61
 
62
  <i><?php _e('Description', 'slideshow-plugin'); ?></i><br />
63
  <textarea name="<?php echo $name; ?>[description]" rows="3" cols="" style="width: 100%;"><?php echo $description; ?></textarea><br />
64
 
65
  </p>
66
 
67
- <p style="margin: 5px 15px 5px 5px;">
68
 
69
  <i><?php _e('URL', 'slideshow-plugin'); ?></i><br />
70
- <input type="text" name="<?php echo $name; ?>[url]" value="<?php echo $url; ?>" /><br />
71
 
72
  <i><?php _e('Open URL in', 'slideshow-plugin'); ?></i>
73
  <select name="<?php echo $name; ?>[urlTarget]">
@@ -80,9 +79,8 @@ if(isset($attachment)):
80
  <input type="hidden" name="<?php echo $name; ?>[type]" value="attachment" />
81
  <input type="hidden" name="<?php echo $name; ?>[postId]" value="<?php echo $attachment->ID; ?>" />
82
 
83
- <p style="margin: 5px 15px 5px 5px; color: red; cursor: pointer;" class="slideshow-delete-slide">
84
  <span><?php _e('Delete slide', 'slideshow-plugin'); ?></span>
85
- <span style="display: none;" class="<?php echo $id; ?>"></span>
86
  </p>
87
 
88
  </li>
33
 
34
  if($displaySlide): ?>
35
 
36
+ <li class="widefat sortable-slides-list-item">
37
 
38
  <h3 class="hndle">
39
+ <span>
40
  <?php _e('Image slide', 'slideshow-plugin'); ?>
41
  </span>
42
  </h3>
43
 
44
+ <p>
45
 
46
  <a href="<?php echo $editUrl; ?>" title="<?php _e('Edit', 'slideshow-plugin'); ?> &#34;<?php echo $attachment->post_title; ?>&#34;">
47
  <img width="80" height="60" src="<?php echo $imageSrc; ?>" class="attachment-80x60" alt="<?php echo $attachment->post_title; ?>" title="<?php echo $attachment->post_title; ?>" />
49
 
50
  </p>
51
 
52
+ <p>
53
 
54
  <i><?php _e('Title', 'slideshow-plugin'); ?></i><br />
55
+ <input type="text" name="<?php echo $name; ?>[title]" value="<?php echo $title; ?>" style="width: 100%;" />
56
 
57
  </p>
 
58
 
59
+ <p>
60
 
61
  <i><?php _e('Description', 'slideshow-plugin'); ?></i><br />
62
  <textarea name="<?php echo $name; ?>[description]" rows="3" cols="" style="width: 100%;"><?php echo $description; ?></textarea><br />
63
 
64
  </p>
65
 
66
+ <p>
67
 
68
  <i><?php _e('URL', 'slideshow-plugin'); ?></i><br />
69
+ <input type="text" name="<?php echo $name; ?>[url]" value="<?php echo $url; ?>" style="width: 100%;" /><br />
70
 
71
  <i><?php _e('Open URL in', 'slideshow-plugin'); ?></i>
72
  <select name="<?php echo $name; ?>[urlTarget]">
79
  <input type="hidden" name="<?php echo $name; ?>[type]" value="attachment" />
80
  <input type="hidden" name="<?php echo $name; ?>[postId]" value="<?php echo $attachment->ID; ?>" />
81
 
82
+ <p class="slideshow-delete-slide">
83
  <span><?php _e('Delete slide', 'slideshow-plugin'); ?></span>
 
84
  </p>
85
 
86
  </li>
views/SlideshowPluginSlideshowSlide/backend_templates.php CHANGED
@@ -1,16 +1,16 @@
1
  <div class="text-slide-template" style="display: none;">
2
- <li class="widefat sortable-slides-list-item" style="margin: 10px 0; width: auto; background-color: #fafafa;">
3
 
4
  <h3 class="hndle">
5
- <span style="font-size: 0.8em;">
6
  <?php _e('Text slide', 'slideshow-plugin'); ?>
7
  </span>
8
  </h3>
9
 
10
- <p style="margin: 5px 15px 5px 5px;">
11
 
12
  <i><?php _e('Title', 'slideshow-plugin'); ?></i><br />
13
- <input type="text" class="title" /><br />
14
 
15
  <i><?php _e('Description', 'slideshow-plugin'); ?></i><br />
16
  <textarea class="description" cols="" rows="7" style="width: 100%;"></textarea><br />
@@ -23,93 +23,100 @@
23
 
24
  </p>
25
 
26
- <p style="margin: 5px 15px 5px 5px;">
 
27
  <i><?php _e('URL', 'slideshow-plugin'); ?></i><br />
28
- <input type="text" class="url" value="" /><br />
 
29
  <i><?php _e('Open URL in', 'slideshow-plugin'); ?></i>
30
  <select class="urlTarget">
31
  <option value="_self"><?php _e('Same window', 'slideshow-plugin'); ?></option>
32
  <option value="_blank"><?php _e('New window', 'slideshow-plugin'); ?></option>
33
  </select>
 
34
  </p>
35
 
36
  <input type="hidden" class="type" value="text" />
37
- <input type="hidden" class="slide_order" />
38
 
39
- <p style="margin: 5px 15px 5px 5px; color: red; cursor: pointer;" class="slideshow-delete-new-slide">
40
  <span><?php _e('Delete slide', 'slideshow-plugin'); ?></span>
41
- <span style="display: none;" class="<?php echo $id; ?>"></span>
42
  </p>
43
 
44
  </li>
45
  </div>
46
 
47
  <div class="video-slide-template" style="display: none;">
48
- <li class="widefat sortable-slides-list-item" style="margin: 10px 0; width: auto; background-color: #fafafa;">
49
 
50
  <h3 class="hndle">
51
- <span style="font-size: 0.8em;">
52
  <?php _e('Video slide', 'slideshow-plugin'); ?>
53
  </span>
54
  </h3>
55
 
56
- <p style="margin: 5px 15px 5px 5px;">
 
57
  <i><?php _e('Youtube Video ID', 'slideshow-plugin'); ?></i><br />
58
- <input type="text" class="videoId" />
 
59
  </p>
60
 
61
  <input type="hidden" class="type" value="video" />
62
- <input type="hidden" class="slide_order" />
63
 
64
- <p style="margin: 5px 15px 5px 5px; color: red; cursor: pointer;" class="slideshow-delete-new-slide">
65
  <span><?php _e('Delete slide', 'slideshow-plugin'); ?></span>
66
- <span style="display: none;" class="<?php echo $id; ?>"></span>
67
  </p>
68
 
69
  </li>
70
  </div>
71
 
72
  <div class="image-slide-template" style="display: none;">
73
- <li class="widefat sortable-slides-list-item" style="margin: 10px 0; width: auto; background-color: #fafafa;">
74
 
75
  <h3 class="hndle">
76
- <span style="font-size: 0.8em;">
77
  <?php _e('Image slide', 'slideshow-plugin'); ?>
78
  </span>
79
  </h3>
80
 
81
- <p style="float: left; margin: 5px;">
 
82
  <img width="80" height="60" src="" class="attachment attachment-80x60" alt="" title="" />
 
83
  </p>
84
 
85
- <p style="float: left; margin: 5px 15px 5px 5px;">
 
86
  <i><?php _e('Title', 'slideshow-plugin'); ?></i><br />
87
- <input type="text" class="title" />
 
88
  </p>
89
- <p style="clear: both"></p>
90
 
91
- <p style="margin: 5px 15px 5px 5px;">
 
92
  <i><?php _e('Description', 'slideshow-plugin'); ?></i><br />
93
  <textarea class="description" rows="3" cols="" style="width: 100%;"></textarea><br />
 
94
  </p>
95
 
96
- <p style="margin: 5px 15px 5px 5px;">
 
97
  <i><?php _e('URL', 'slideshow-plugin'); ?></i><br />
98
- <input type="text" class="url" value="" /><br />
 
99
  <i><?php _e('Open URL in', 'slideshow-plugin'); ?></i>
100
  <select class="urlTarget">
101
  <option value="_self"><?php _e('Same window', 'slideshow-plugin'); ?></option>
102
  <option value="_blank"><?php _e('New window', 'slideshow-plugin'); ?></option>
103
  </select>
 
104
  </p>
105
 
106
  <input type="hidden" class="type" value="attachment" />
107
  <input type="hidden" class="postId" value="" />
108
- <input type="hidden" value="" class="slide_order" />
109
 
110
- <p style="margin: 5px 15px 5px 5px; color: red; cursor: pointer;" class="slideshow-delete-new-slide">
111
  <span><?php _e('Delete slide', 'slideshow-plugin'); ?></span>
112
- <span style="display: none;" class="<?php echo $id; ?>"></span>
113
  </p>
114
 
115
  </li>
1
  <div class="text-slide-template" style="display: none;">
2
+ <li class="widefat sortable-slides-list-item">
3
 
4
  <h3 class="hndle">
5
+ <span>
6
  <?php _e('Text slide', 'slideshow-plugin'); ?>
7
  </span>
8
  </h3>
9
 
10
+ <p>
11
 
12
  <i><?php _e('Title', 'slideshow-plugin'); ?></i><br />
13
+ <input type="text" class="title" style="width: 100%;" /><br />
14
 
15
  <i><?php _e('Description', 'slideshow-plugin'); ?></i><br />
16
  <textarea class="description" cols="" rows="7" style="width: 100%;"></textarea><br />
23
 
24
  </p>
25
 
26
+ <p>
27
+
28
  <i><?php _e('URL', 'slideshow-plugin'); ?></i><br />
29
+ <input type="text" class="url" value="" style="width: 100%;" /><br />
30
+
31
  <i><?php _e('Open URL in', 'slideshow-plugin'); ?></i>
32
  <select class="urlTarget">
33
  <option value="_self"><?php _e('Same window', 'slideshow-plugin'); ?></option>
34
  <option value="_blank"><?php _e('New window', 'slideshow-plugin'); ?></option>
35
  </select>
36
+
37
  </p>
38
 
39
  <input type="hidden" class="type" value="text" />
 
40
 
41
+ <p class="slideshow-delete-slide">
42
  <span><?php _e('Delete slide', 'slideshow-plugin'); ?></span>
 
43
  </p>
44
 
45
  </li>
46
  </div>
47
 
48
  <div class="video-slide-template" style="display: none;">
49
+ <li class="widefat sortable-slides-list-item">
50
 
51
  <h3 class="hndle">
52
+ <span>
53
  <?php _e('Video slide', 'slideshow-plugin'); ?>
54
  </span>
55
  </h3>
56
 
57
+ <p>
58
+
59
  <i><?php _e('Youtube Video ID', 'slideshow-plugin'); ?></i><br />
60
+ <input type="text" class="videoId" style="width: 100%;" />
61
+
62
  </p>
63
 
64
  <input type="hidden" class="type" value="video" />
 
65
 
66
+ <p class="slideshow-delete-slide">
67
  <span><?php _e('Delete slide', 'slideshow-plugin'); ?></span>
 
68
  </p>
69
 
70
  </li>
71
  </div>
72
 
73
  <div class="image-slide-template" style="display: none;">
74
+ <li class="widefat sortable-slides-list-item">
75
 
76
  <h3 class="hndle">
77
+ <span>
78
  <?php _e('Image slide', 'slideshow-plugin'); ?>
79
  </span>
80
  </h3>
81
 
82
+ <p>
83
+
84
  <img width="80" height="60" src="" class="attachment attachment-80x60" alt="" title="" />
85
+
86
  </p>
87
 
88
+ <p>
89
+
90
  <i><?php _e('Title', 'slideshow-plugin'); ?></i><br />
91
+ <input type="text" class="title" style="width: 100%;" />
92
+
93
  </p>
 
94
 
95
+ <p>
96
+
97
  <i><?php _e('Description', 'slideshow-plugin'); ?></i><br />
98
  <textarea class="description" rows="3" cols="" style="width: 100%;"></textarea><br />
99
+
100
  </p>
101
 
102
+ <p>
103
+
104
  <i><?php _e('URL', 'slideshow-plugin'); ?></i><br />
105
+ <input type="text" class="url" value="" style="width: 100%;" /><br />
106
+
107
  <i><?php _e('Open URL in', 'slideshow-plugin'); ?></i>
108
  <select class="urlTarget">
109
  <option value="_self"><?php _e('Same window', 'slideshow-plugin'); ?></option>
110
  <option value="_blank"><?php _e('New window', 'slideshow-plugin'); ?></option>
111
  </select>
112
+
113
  </p>
114
 
115
  <input type="hidden" class="type" value="attachment" />
116
  <input type="hidden" class="postId" value="" />
 
117
 
118
+ <p class="slideshow-delete-slide">
119
  <span><?php _e('Delete slide', 'slideshow-plugin'); ?></span>
 
120
  </p>
121
 
122
  </li>
views/SlideshowPluginSlideshowSlide/backend_text.php CHANGED
@@ -16,18 +16,18 @@ if(isset($properties['urlTarget']))
16
 
17
  ?>
18
 
19
- <li class="widefat sortable-slides-list-item" style="margin: 10px 0; width: auto; background-color: #fafafa;">
20
 
21
  <h3 class="hndle">
22
- <span style="font-size: 0.8em;">
23
  <?php _e('Text slide', 'slideshow-plugin'); ?>
24
  </span>
25
  </h3>
26
 
27
- <p style="margin: 5px 15px 5px 5px;">
28
 
29
  <i><?php _e('Title', 'slideshow-plugin'); ?></i><br />
30
- <input type="text" name="<?php echo $name; ?>[title]" value="<?php echo $title; ?>" /><br />
31
 
32
  <i><?php _e('Description', 'slideshow-plugin'); ?></i><br />
33
  <textarea name="<?php echo $name; ?>[description]" rows="7" cols="" style="width: 100%;"><?php echo $description; ?></textarea><br />
@@ -40,10 +40,10 @@ if(isset($properties['urlTarget']))
40
 
41
  </p>
42
 
43
- <p style="margin: 5px 15px 5px 5px;">
44
 
45
  <i><?php _e('URL', 'slideshow-plugin'); ?></i><br />
46
- <input type="text" name="<?php echo $name; ?>[url]" value="<?php echo $url; ?>" /><br />
47
 
48
  <i><?php _e('Open URL in', 'slideshow-plugin'); ?></i>
49
  <select name="<?php echo $name; ?>[urlTarget]">
@@ -55,9 +55,8 @@ if(isset($properties['urlTarget']))
55
 
56
  <input type="hidden" name="<?php echo $name; ?>[type]" value="text" />
57
 
58
- <p style="margin: 5px 15px 5px 5px; color: red; cursor: pointer;" class="slideshow-delete-slide">
59
  <span><?php _e('Delete slide', 'slideshow-plugin'); ?></span>
60
- <span style="display: none;" class="<?php echo $id; ?>"></span>
61
  </p>
62
 
63
  </li>
16
 
17
  ?>
18
 
19
+ <li class="widefat sortable-slides-list-item">
20
 
21
  <h3 class="hndle">
22
+ <span>
23
  <?php _e('Text slide', 'slideshow-plugin'); ?>
24
  </span>
25
  </h3>
26
 
27
+ <p>
28
 
29
  <i><?php _e('Title', 'slideshow-plugin'); ?></i><br />
30
+ <input type="text" name="<?php echo $name; ?>[title]" value="<?php echo $title; ?>" style="width: 100%;" /><br />
31
 
32
  <i><?php _e('Description', 'slideshow-plugin'); ?></i><br />
33
  <textarea name="<?php echo $name; ?>[description]" rows="7" cols="" style="width: 100%;"><?php echo $description; ?></textarea><br />
40
 
41
  </p>
42
 
43
+ <p>
44
 
45
  <i><?php _e('URL', 'slideshow-plugin'); ?></i><br />
46
+ <input type="text" name="<?php echo $name; ?>[url]" value="<?php echo $url; ?>" style="width: 100%;" /><br />
47
 
48
  <i><?php _e('Open URL in', 'slideshow-plugin'); ?></i>
49
  <select name="<?php echo $name; ?>[urlTarget]">
55
 
56
  <input type="hidden" name="<?php echo $name; ?>[type]" value="text" />
57
 
58
+ <p class="slideshow-delete-slide">
59
  <span><?php _e('Delete slide', 'slideshow-plugin'); ?></span>
 
60
  </p>
61
 
62
  </li>
views/SlideshowPluginSlideshowSlide/backend_video.php CHANGED
@@ -6,26 +6,25 @@ if(isset($properties['videoId']))
6
 
7
  ?>
8
 
9
- <li class="widefat sortable-slides-list-item" style="margin: 10px 0; width: auto; background-color: #fafafa;">
10
 
11
  <h3 class="hndle">
12
- <span style="font-size: 0.8em;">
13
  <?php _e('Video slide', 'slideshow-plugin'); ?>
14
  </span>
15
  </h3>
16
 
17
- <p style="margin: 5px 15px 5px 5px;">
18
 
19
  <i><?php _e('Youtube Video ID', 'slideshow-plugin'); ?></i><br />
20
- <input type="text" name="<?php echo $name; ?>[videoId]" value="<?php echo $videoId; ?>" />
21
 
22
  </p>
23
 
24
  <input type="hidden" name="<?php echo $name; ?>[type]" value="video" />
25
 
26
- <p style="margin: 5px 15px 5px 5px; color: red; cursor: pointer;" class="slideshow-delete-slide">
27
  <span><?php _e('Delete slide', 'slideshow-plugin'); ?></span>
28
- <span style="display: none;" class="<?php echo $id; ?>"></span>
29
  </p>
30
 
31
  </li>
6
 
7
  ?>
8
 
9
+ <li class="widefat sortable-slides-list-item">
10
 
11
  <h3 class="hndle">
12
+ <span>
13
  <?php _e('Video slide', 'slideshow-plugin'); ?>
14
  </span>
15
  </h3>
16
 
17
+ <p>
18
 
19
  <i><?php _e('Youtube Video ID', 'slideshow-plugin'); ?></i><br />
20
+ <input type="text" name="<?php echo $name; ?>[videoId]" value="<?php echo $videoId; ?>" style="width: 100%;" />
21
 
22
  </p>
23
 
24
  <input type="hidden" name="<?php echo $name; ?>[type]" value="video" />
25
 
26
+ <p class="slideshow-delete-slide">
27
  <span><?php _e('Delete slide', 'slideshow-plugin'); ?></span>
 
28
  </p>
29
 
30
  </li>
views/SlideshowPluginSlideshowSlide/frontend_attachment.php CHANGED
@@ -44,10 +44,8 @@ if(is_numeric($postId)):
44
  </a>
45
  <div class="slideshow_description slideshow_transparent">
46
  <a <?php echo $anchorTagAttributes; ?>>
47
- <h2><?php echo $title; ?></h2>
48
- <p>
49
- <?php echo $description; ?>
50
- </p>
51
  </a>
52
  </div>
53
  </div>
44
  </a>
45
  <div class="slideshow_description slideshow_transparent">
46
  <a <?php echo $anchorTagAttributes; ?>>
47
+ <?php echo !empty($title) ? '<h2>' . $title . '</h2>' : ''; ?>
48
+ <?php echo !empty($description) ? '<p>' . $description . '</p>' : ''; ?>
 
 
49
  </a>
50
  </div>
51
  </div>