Slideshow - Version 2.2.0

Version Description

  • The slideshow script has been completely renewed, making it more lightweight, more versatile and responsive altogether.
  • Slideshow now has a continuing loop.
  • Pagination bullets can now be shown.
  • Slide order can now be completely random, as can the animation type.
  • Added new animations.
  • Slideshow now pauses when a (YouTube) video is playing or when a mouse is hovering over.
  • Fixed: Image title and description were wrongly filled with attachment's content.
Download this release

Release Info

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

Code changes from version 2.1.23 to 2.2.0

Files changed (49) hide show
  1. classes/SlideshowPlugin.php +24 -13
  2. classes/SlideshowPluginInstaller.php +60 -1
  3. classes/SlideshowPluginPostType.php +42 -12
  4. classes/SlideshowPluginShortcode.php +1 -0
  5. classes/SlideshowPluginSlideshowSettingsHandler.php +86 -17
  6. classes/SlideshowPluginSlideshowSlide.php +158 -0
  7. classes/SlideshowPluginSlideshowView.php +92 -0
  8. images/{button-next.png → SlideshowPlugin/dark-bullet.png} +0 -0
  9. images/{adminIcon.png → SlideshowPlugin/light-bullet.png} +0 -0
  10. images/button-previous.png +0 -0
  11. images/no-img.png +0 -0
  12. js/SlideshowPlugin/slideshow.js +0 -1
  13. js/SlideshowPlugin/slideshow.min.js +1 -0
  14. js/SlideshowPluginPostType/post-type-handler.js +28 -13
  15. js/SlideshowPluginPostType/style-settings.js +0 -2
  16. js/SlideshowPluginSlideInserter/slide-inserter.js +1 -0
  17. languages/slideshow-plugin-es_ES.mo +0 -0
  18. languages/slideshow-plugin-es_ES.po +498 -224
  19. languages/slideshow-plugin-fr_FR.mo +0 -0
  20. languages/slideshow-plugin-fr_FR.po +498 -224
  21. languages/slideshow-plugin-nl_NL.mo +0 -0
  22. languages/slideshow-plugin-nl_NL.po +380 -208
  23. languages/slideshow-plugin-ru_RU.mo +0 -0
  24. languages/slideshow-plugin-ru_RU.po +496 -188
  25. languages/slideshow-plugin-zh_CN.mo +0 -0
  26. languages/slideshow-plugin-zh_CN.po +489 -175
  27. readme.txt +26 -8
  28. slideshow.php +2 -2
  29. style/SlideshowPlugin/functional.css +1 -1
  30. style/SlideshowPlugin/style-dark.css +35 -44
  31. style/SlideshowPlugin/style-light.css +34 -40
  32. style/SlideshowPluginGeneralSettings/general-settings.css +2 -2
  33. views/SlideshowPlugin/slideshow.php +15 -116
  34. views/SlideshowPluginGeneralSettings/custom-styles.php +199 -0
  35. views/SlideshowPluginGeneralSettings/default-slideshow-settings.php +110 -0
  36. views/SlideshowPluginGeneralSettings/general-settings.php +10 -308
  37. views/SlideshowPluginGeneralSettings/user-capabilities.php +58 -0
  38. views/SlideshowPluginPostType/settings.php +1 -1
  39. views/SlideshowPluginPostType/slides.php +2 -11
  40. views/SlideshowPluginPostType/style-settings.php +1 -1
  41. views/SlideshowPluginPostType/support-plugin.php +9 -0
  42. views/SlideshowPluginShortcode/shortcode-inserter.php +1 -2
  43. views/SlideshowPluginSlideshowSlide/backend_attachment.php +91 -0
  44. views/SlideshowPluginSlideshowSlide/backend_templates.php +116 -0
  45. views/SlideshowPluginSlideshowSlide/backend_text.php +63 -0
  46. views/SlideshowPluginSlideshowSlide/backend_video.php +31 -0
  47. views/SlideshowPluginSlideshowSlide/frontend_attachment.php +57 -0
  48. views/SlideshowPluginSlideshowSlide/frontend_text.php +31 -0
  49. views/SlideshowPluginSlideshowSlide/frontend_video.php +28 -0
classes/SlideshowPlugin.php CHANGED
@@ -73,19 +73,15 @@ class SlideshowPlugin {
73
  // Log slideshow's issues to be able to track them on the page.
74
  $log = array();
75
 
76
- // Get slides
77
- $slides = SlideshowPluginSlideshowSettingsHandler::getSlides($post->ID);
78
- if(!is_array($slides) || count($slides) <= 0)
79
- $log[] = 'No slides were found';
80
 
81
  // Get settings
82
  $settings = SlideshowPluginSlideshowSettingsHandler::getSettings($post->ID);
83
  $styleSettings = SlideshowPluginSlideshowSettingsHandler::getStyleSettings($post->ID);
84
 
85
- // Randomize if setting is true.
86
- if(isset($settings['random']) && $settings['random'] == 'true')
87
- shuffle($slides);
88
-
89
  // Enqueue functional sheet
90
  wp_enqueue_style(
91
  'slideshow_functional_style',
@@ -132,14 +128,29 @@ class SlideshowPlugin {
132
  // Enqueue slideshow script
133
  wp_enqueue_script(
134
  'slideshow-jquery-image-gallery-script',
135
- SlideshowPluginMain::getPluginUrl() . '/js/' . __CLASS__ . '/slideshow.js',
136
- array(
137
- 'jquery',
138
- 'swfobject'
139
- ),
140
  SlideshowPluginMain::$version
141
  );
142
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
143
  // Include slideshow settings by localizing them
144
  wp_localize_script(
145
  'slideshow-jquery-image-gallery-script',
73
  // Log slideshow's issues to be able to track them on the page.
74
  $log = array();
75
 
76
+ // Get views
77
+ $views = SlideshowPluginSlideshowSettingsHandler::getViews($post->ID);
78
+ if(!is_array($views) || count($views) <= 0)
79
+ $log[] = 'No views were found';
80
 
81
  // Get settings
82
  $settings = SlideshowPluginSlideshowSettingsHandler::getSettings($post->ID);
83
  $styleSettings = SlideshowPluginSlideshowSettingsHandler::getStyleSettings($post->ID);
84
 
 
 
 
 
85
  // Enqueue functional sheet
86
  wp_enqueue_style(
87
  'slideshow_functional_style',
128
  // Enqueue slideshow script
129
  wp_enqueue_script(
130
  'slideshow-jquery-image-gallery-script',
131
+ SlideshowPluginMain::getPluginUrl() . '/js/' . __CLASS__ . '/slideshow.min.js',
132
+ array('jquery'),
 
 
 
133
  SlideshowPluginMain::$version
134
  );
135
 
136
+ // Set dimensionWidth and dimensionHeight if dimensions should be preserved
137
+ if(isset($settings['preserveSlideshowDimensions']) && $settings['preserveSlideshowDimensions'] == 'true'){
138
+
139
+ $aspectRatio = explode(':', $settings['aspectRatio']);
140
+
141
+ // Width
142
+ if(isset($aspectRatio[0]) && is_numeric($aspectRatio[0]))
143
+ $settings['dimensionWidth'] = $aspectRatio[0];
144
+ else
145
+ $settings['dimensionWidth'] = 1;
146
+
147
+ // Height
148
+ if(isset($aspectRatio[1]) && is_numeric($aspectRatio[1]))
149
+ $settings['dimensionHeight'] = $aspectRatio[1];
150
+ else
151
+ $settings['dimensionHeight'] = 1;
152
+ }
153
+
154
  // Include slideshow settings by localizing them
155
  wp_localize_script(
156
  'slideshow-jquery-image-gallery-script',
classes/SlideshowPluginInstaller.php CHANGED
@@ -59,10 +59,69 @@ class SlideshowPluginInstaller {
59
  if(self::firstVersionGreaterThanSecond('2.1.23', $currentVersion) || $currentVersion == null)
60
  self::updateV2_1_20_to_V2_2_1_23();
61
 
 
 
 
 
62
  // Set new version
63
  update_option(self::$versionKey, SlideshowPluginMain::$version);
64
  }
65
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
66
  /**
67
  * Version 2.1.23 introduces shared custom styles. Styles customized by a user need to be converted to a custom
68
  * style on the General Settings page.
@@ -142,7 +201,7 @@ class SlideshowPluginInstaller {
142
  }
143
  }
144
 
145
- update_option('slideshow-plugin-updated-from-v2-to-v2-1-20', 'updated');
146
  }
147
 
148
  /**
59
  if(self::firstVersionGreaterThanSecond('2.1.23', $currentVersion) || $currentVersion == null)
60
  self::updateV2_1_20_to_V2_2_1_23();
61
 
62
+ // Update to version 2.2.0
63
+ if(self::firstVersionGreaterThanSecond('2.2.0', $currentVersion) || $currentVersion == null)
64
+ self::updateV2_2_1_23_to_V_2_2_0();
65
+
66
  // Set new version
67
  update_option(self::$versionKey, SlideshowPluginMain::$version);
68
  }
69
 
70
+ /**
71
+ * Version 2.2.0 comes with redesigned stylesheets, which makes the old ones obsolete. Set the style settings for
72
+ * each slideshow to 'Light', if it's a custom style.
73
+ *
74
+ * @since 2.2.0
75
+ */
76
+ function updateV2_2_1_23_to_V_2_2_0(){
77
+
78
+ // Check if this has already been done
79
+ if(get_option('slideshow-jquery-image-gallery-updated-from-v2-1-23-to-v2-2-0') !== false)
80
+ return;
81
+
82
+ // Get slideshows
83
+ $slideshows = get_posts(array(
84
+ 'numberposts' => -1,
85
+ 'offset' => 0,
86
+ 'post_type' => 'slideshow'
87
+ ));
88
+
89
+ // Loop through slideshows
90
+ if(is_array($slideshows) && count($slideshows > 0)){
91
+ foreach($slideshows as $slideshow){
92
+
93
+ // Get settings
94
+ $styleSettings = maybe_unserialize(get_post_meta(
95
+ $slideshow->ID,
96
+ 'styleSettings',
97
+ true
98
+ ));
99
+ if(!is_array($styleSettings) || count($styleSettings) <= 0)
100
+ continue;
101
+
102
+ // Only set style to the default light style if the style is currently a custom one
103
+ if( isset($styleSettings['style']) &&
104
+ $styleSettings['style'] != 'light' &&
105
+ $styleSettings['style'] != 'dark'){
106
+
107
+ $styleSettings['style'] = 'light';
108
+ }
109
+
110
+ // Delete 'custom' key from array
111
+ unset($styleSettings['custom']);
112
+
113
+ // Update post meta
114
+ update_post_meta(
115
+ $slideshow->ID,
116
+ 'styleSettings',
117
+ $styleSettings
118
+ );
119
+ }
120
+ }
121
+
122
+ update_option('slideshow-jquery-image-gallery-updated-from-v2-1-23-to-v2-2-0', 'updated');
123
+ }
124
+
125
  /**
126
  * Version 2.1.23 introduces shared custom styles. Styles customized by a user need to be converted to a custom
127
  * style on the General Settings page.
201
  }
202
  }
203
 
204
+ update_option('slideshow-jquery-image-gallery-updated-from-v2-1-20-to-v2-1-23', 'updated');
205
  }
206
 
207
  /**
classes/SlideshowPluginPostType.php CHANGED
@@ -168,7 +168,7 @@ class SlideshowPluginPostType {
168
  * @since 2.0.0
169
  */
170
  static function supportPluginMessage(){
171
- include(SlideshowPluginMain::getPluginPath() . '/views/' . __CLASS__ . '/support-plugin.php');
172
  }
173
 
174
  /**
@@ -182,28 +182,58 @@ class SlideshowPluginPostType {
182
  $snippet = htmlentities(sprintf('<?php do_action(\'slideshow_deploy\', \'%s\'); ?>', $post->ID));
183
  $shortCode = htmlentities(sprintf('[' . SlideshowPluginShortcode::$shortCode . ' id=\'%s\']', $post->ID));
184
 
185
- include(SlideshowPluginMain::getPluginPath() . '/views/' . __CLASS__ . '/information.php');
186
  }
187
 
188
  /**
189
  * Shows slides currently in slideshow
190
  *
 
 
191
  * @since 1.0.0
192
  */
193
  static function slidesMetaBox(){
194
  global $post;
195
 
196
- // Get slides
197
- $slides = SlideshowPluginSlideshowSettingsHandler::getSlides($post->ID);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
198
 
199
- // Stores highest slide id.
200
- $highestSlideId = count($slides) - 1;
 
 
201
 
202
- // Set url from which a substitute icon can be fetched
203
- $noPreviewIcon = SlideshowPluginMain::getPluginUrl() . '/images/' . __CLASS__ . '/no-img.png';
204
 
205
- // Include slides preview file
206
- include(SlideshowPluginMain::getPluginPath() . '/views/' . __CLASS__ . '/slides.php');
207
  }
208
 
209
  /**
@@ -225,7 +255,7 @@ class SlideshowPluginPostType {
225
  }
226
 
227
  // Include style settings file
228
- include(SlideshowPluginMain::getPluginPath() . '/views/' . __CLASS__ . '/style-settings.php');
229
  }
230
 
231
  /**
@@ -240,6 +270,6 @@ class SlideshowPluginPostType {
240
  $settings = SlideshowPluginSlideshowSettingsHandler::getSettings($post->ID, true);
241
 
242
  // Include
243
- include(SlideshowPluginMain::getPluginPath() . '/views/' . __CLASS__ . '/settings.php');
244
  }
245
  }
168
  * @since 2.0.0
169
  */
170
  static function supportPluginMessage(){
171
+ include SlideshowPluginMain::getPluginPath() . '/views/' . __CLASS__ . '/support-plugin.php';
172
  }
173
 
174
  /**
182
  $snippet = htmlentities(sprintf('<?php do_action(\'slideshow_deploy\', \'%s\'); ?>', $post->ID));
183
  $shortCode = htmlentities(sprintf('[' . SlideshowPluginShortcode::$shortCode . ' id=\'%s\']', $post->ID));
184
 
185
+ include SlideshowPluginMain::getPluginPath() . '/views/' . __CLASS__ . '/information.php';
186
  }
187
 
188
  /**
189
  * Shows slides currently in slideshow
190
  *
191
+ * TODO Tidy up, it's probably best to move all to 'slides.php'
192
+ *
193
  * @since 1.0.0
194
  */
195
  static function slidesMetaBox(){
196
  global $post;
197
 
198
+ // Get views
199
+ $views = SlideshowPluginSlideshowSettingsHandler::getViews($post->ID);
200
+
201
+ // Insert slide buttons
202
+ echo '<p style="text-align: center;">
203
+ <i>' . __('Insert', 'slideshow-plugin') . ':</i><br/>' .
204
+ SlideshowPluginSlideInserter::getImageSlideInsertButton() .
205
+ SlideshowPluginSlideInserter::getTextSlideInsertButton() .
206
+ SlideshowPluginSlideInserter::getVideoSlideInsertButton() .
207
+ '</p>';
208
+
209
+ // No views/slides message
210
+ if(count($views) <= 0)
211
+ echo '<p>' . __('Add slides to this slideshow by using one of the buttons above.', 'slideshow-plugin') . '</p>';
212
+
213
+ // Style
214
+ echo '<style type="text/css">
215
+ .sortable li {
216
+ cursor: pointer;
217
+ }
218
+
219
+ .sortable-slide-placeholder {
220
+ border: 1px solid #f00;
221
+ }
222
+ </style>';
223
+
224
+ // Start list
225
+ echo '<ul class="sortable-slides-list">';
226
 
227
+ // Print views
228
+ if(is_array($views))
229
+ foreach($views as $view)
230
+ echo $view->toBackEndHTML();
231
 
232
+ // Templates
233
+ SlideshowPluginSlideshowSlide::getBackEndTemplates(false);
234
 
235
+ // End list
236
+ echo '</ul>';
237
  }
238
 
239
  /**
255
  }
256
 
257
  // Include style settings file
258
+ include SlideshowPluginMain::getPluginPath() . '/views/' . __CLASS__ . '/style-settings.php';
259
  }
260
 
261
  /**
270
  $settings = SlideshowPluginSlideshowSettingsHandler::getSettings($post->ID, true);
271
 
272
  // Include
273
+ include SlideshowPluginMain::getPluginPath() . '/views/' . __CLASS__ . '/settings.php';
274
  }
275
  }
classes/SlideshowPluginShortcode.php CHANGED
@@ -105,6 +105,7 @@ class SlideshowPluginShortcode {
105
  $slideshows = new WP_Query(array(
106
  'post_type' => SlideshowPluginPostType::$postType,
107
  'orderby' => 'post_date',
 
108
  'order' => 'DESC'
109
  ));
110
 
105
  $slideshows = new WP_Query(array(
106
  'post_type' => SlideshowPluginPostType::$postType,
107
  'orderby' => 'post_date',
108
+ 'posts_per_page' => -1,
109
  'order' => 'DESC'
110
  ));
111
 
classes/SlideshowPluginSlideshowSettingsHandler.php CHANGED
@@ -225,6 +225,59 @@ class SlideshowPluginSlideshowSettingsHandler {
225
  return $slides;
226
  }
227
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
228
  /**
229
  * Get new settings from $_POST variable and merge them with
230
  * the old and default settings.
@@ -245,7 +298,6 @@ class SlideshowPluginSlideshowSettingsHandler {
245
  // Old settings
246
  $oldSettings = self::getSettings($postId);
247
  $oldStyleSettings = self::getStyleSettings($postId);
248
- $oldSlides = self::getSlides($postId);
249
 
250
  // Get new settings from $_POST, making sure they're arrays
251
  $newPostSettings = $newPostStyleSettings = $newPostSlides = array();
@@ -328,17 +380,25 @@ class SlideshowPluginSlideshowSettingsHandler {
328
  'slideSpeed' => '1',
329
  'descriptionSpeed' => '0.4',
330
  'intervalSpeed' => '5',
331
- 'play' => 'true',
332
- 'loop' => 'true',
333
  'slidesPerView' => '1',
334
- 'width' => '0',
 
 
335
  'height' => '200',
336
- 'descriptionHeight' => '50',
337
  'stretchImages' => 'true',
338
- 'controllable' => 'true',
339
- 'controlPanel' => 'false',
340
  'showDescription' => 'true',
341
  'hideDescription' => 'true',
 
 
 
 
 
 
 
 
 
 
 
342
  'random' => 'false',
343
  'avoidFilter' => 'true'
344
  );
@@ -353,21 +413,29 @@ class SlideshowPluginSlideshowSettingsHandler {
353
  // Full definition
354
  if($fullDefinition){
355
  $data = array(
356
- 'animation' => array('type' => 'select', 'default' => $data['animation'], 'description' => __('Animation used for transition between slides', 'slideshow-plugin'), 'options' => array('slide' => __('Slide', 'slideshow-plugin'), 'fade' => __('Fade', 'slideshow-plugin')), 'group' => __('Animation', 'slideshow-plugin')),
357
  'slideSpeed' => array('type' => 'text', 'default' => $data['slideSpeed'], 'description' => __('Number of seconds the slide takes to slide in', 'slideshow-plugin'), 'group' => __('Animation', 'slideshow-plugin')),
358
  'descriptionSpeed' => array('type' => 'text', 'default' => $data['descriptionSpeed'], 'description' => __('Number of seconds the description takes to slide in', 'slideshow-plugin'), 'group' => __('Animation', 'slideshow-plugin')),
359
  'intervalSpeed' => array('type' => 'text', 'default' => $data['intervalSpeed'], 'description' => __('Seconds between changing slides', 'slideshow-plugin'), 'group' => __('Animation', 'slideshow-plugin')),
360
  'slidesPerView' => array('type' => 'text', 'default' => $data['slidesPerView'], 'description' => __('Number of slides to fit into one slide', 'slideshow-plugin'), 'group' => __('Display', 'slideshow-plugin')),
361
- 'width' => array('type' => 'text', 'default' => $data['width'], 'description' => __('Width of the slideshow, set to parent&#39;s width on 0', 'slideshow-plugin'), 'group' => __('Display', 'slideshow-plugin')),
362
- 'height' => array('type' => 'text', 'default' => $data['height'], 'description' => __('Height of the slideshow', 'slideshow-plugin'), 'group' => __('Display', 'slideshow-plugin')),
363
- 'descriptionHeight' => array('type' => 'text', 'default' => $data['descriptionHeight'], 'description' => __('Height of the description boxes', 'slideshow-plugin'), 'group' => __('Display', 'slideshow-plugin')),
364
- 'stretchImages' => array('type' => 'radio', 'default' => $data['stretchImages'], 'description' => __('Fit image into slide (stretching it)', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'group' => __('Display', 'slideshow-plugin')),
 
365
  'showDescription' => array('type' => 'radio', 'default' => $data['showDescription'], 'description' => __('Show title and description', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'group' => __('Display', 'slideshow-plugin')),
366
- 'hideDescription' => array('type' => 'radio', 'default' => $data['hideDescription'], 'description' => __('Hide description box, it will pop up when a mouse hovers over the slide', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'dependsOn' => array('settings[showDescription]', 'true'), 'group' => __('Display', 'slideshow-plugin')),
 
 
367
  'play' => array('type' => 'radio', 'default' => $data['play'], 'description' => __('Automatically slide to the next slide', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'group' => __('Control', 'slideshow-plugin')),
368
  'loop' => array('type' => 'radio', 'default' => $data['loop'], 'description' => __('Return to the beginning of the slideshow after last slide', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'group' => __('Control', 'slideshow-plugin')),
369
- 'controllable' => array('type' => 'radio', 'default' => $data['controllable'], 'description' => __('Activate buttons (so the user can scroll through the slides)', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'group' => __('Control', 'slideshow-plugin')),
370
- 'controlPanel' => array('type' => 'radio', 'default' => $data['controlPanel'], 'description' => __('Show control panel (play and pause button)', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'group' => __('Control', 'slideshow-plugin')),
 
 
 
 
 
371
  'random' => array('type' => 'radio', 'default' => $data['random'], 'description' => __('Randomize slides', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'group' => __('Miscellaneous', 'slideshow-plugin')),
372
  'avoidFilter' => array('type' => 'radio', 'default' => $data['avoidFilter'], 'description' => sprintf(__('Avoid content filter (disable if \'%s\' is shown)', 'slideshow-plugin'), SlideshowPluginShortcode::$bookmark), 'options' => array('true' => $yes, 'false' => $no), 'group' => __('Miscellaneous', 'slideshow-plugin'))
373
  );
@@ -423,9 +491,10 @@ class SlideshowPluginSlideshowSettingsHandler {
423
  * @param string $settingsKey
424
  * @param string $settingsName
425
  * @param mixed $settings
 
426
  * @return mixed $inputField
427
  */
428
- static function getInputField($settingsKey, $settingsName, $settings){
429
 
430
  if(!is_array($settings) || empty($settings) || empty($settingsName))
431
  return null;
@@ -433,7 +502,7 @@ class SlideshowPluginSlideshowSettingsHandler {
433
  $inputField = '';
434
  $name = $settingsKey . '[' . $settingsName . ']';
435
  $displayValue = (!isset($settings['value']) || (empty($settings['value']) && !is_numeric($settings['value'])) ? $settings['default'] : $settings['value']);
436
- $class = ((isset($settings['dependsOn']))? 'depends-on-field-value ' . $settings['dependsOn'][0] . ' ' . $settings['dependsOn'][1] . ' ': '') . $settingsKey . '-' . $settingsName;
437
  switch($settings['type']){
438
  case 'text':
439
  $inputField .= '<input
225
  return $slides;
226
  }
227
 
228
+ /**
229
+ * Returns an array of SlideshowPluginSlideshowView objects if $returnAsObjects is true, otherwise returns an array
230
+ * of view arrays that contain slide properties.
231
+ *
232
+ * To prevent the result from being cached set $enableCache to false. It's set to true by default.
233
+ *
234
+ * @since 2.2.0
235
+ * @param int $slideshowId
236
+ * @param bool $returnAsObjects (optional, defaults to true)
237
+ * @param bool $enableCache (optional, defaults to true)
238
+ * @return mixed $views
239
+ */
240
+ static function getViews($slideshowId, $returnAsObjects = true, $enableCache = true){
241
+
242
+ // Get slides
243
+ $slides = self::getSlides($slideshowId, $enableCache);
244
+
245
+ // Get settings. Since in version 2.2.X slides aren't put into views yet, this has to be done manually
246
+ $settings = SlideshowPluginSlideshowSettingsHandler::getSettings($slideshowId, false, $enableCache);
247
+ $slidesPerView = 1;
248
+ if(isset($settings['slidesPerView']))
249
+ $slidesPerView = $settings['slidesPerView'];
250
+
251
+ // Loop through slides, forcing them into views
252
+ $i = 0;
253
+ $viewId = -1;
254
+ $views = array();
255
+ if(is_array($slides)){
256
+ foreach($slides as $slide){
257
+
258
+ // Create new view when view is full or not yet created
259
+ if($i % $slidesPerView == 0){
260
+
261
+ $viewId++;
262
+ if($returnAsObjects)
263
+ $views[$viewId] = new SlideshowPluginSlideshowView();
264
+ else
265
+ $views[$viewId] = array();
266
+ }
267
+
268
+ // Add slide to view
269
+ if($returnAsObjects)
270
+ $views[$viewId]->addSlide($slide);
271
+ else
272
+ $views[$viewId][] = $slide;
273
+
274
+ $i++;
275
+ }
276
+ }
277
+
278
+ return $views;
279
+ }
280
+
281
  /**
282
  * Get new settings from $_POST variable and merge them with
283
  * the old and default settings.
298
  // Old settings
299
  $oldSettings = self::getSettings($postId);
300
  $oldStyleSettings = self::getStyleSettings($postId);
 
301
 
302
  // Get new settings from $_POST, making sure they're arrays
303
  $newPostSettings = $newPostStyleSettings = $newPostSlides = array();
380
  'slideSpeed' => '1',
381
  'descriptionSpeed' => '0.4',
382
  'intervalSpeed' => '5',
 
 
383
  'slidesPerView' => '1',
384
+ 'maxWidth' => '0',
385
+ 'preserveSlideshowDimensions' => 'true',
386
+ 'aspectRatio' => '4:1',
387
  'height' => '200',
 
388
  'stretchImages' => 'true',
 
 
389
  'showDescription' => 'true',
390
  'hideDescription' => 'true',
391
+ 'enableResponsiveness' => 'true',
392
+ // 'descriptionHeight' => '50',
393
+ 'play' => 'true',
394
+ 'loop' => 'true',
395
+ 'pauseOnHover' => 'true',
396
+ 'controllable' => 'true',
397
+ 'hideNavigationButtons' => 'false',
398
+ 'showPagination' => 'true',
399
+ 'hidePagination' => 'true',
400
+ 'controlPanel' => 'false',
401
+ 'hideControlPanel' => 'true',
402
  'random' => 'false',
403
  'avoidFilter' => 'true'
404
  );
413
  // Full definition
414
  if($fullDefinition){
415
  $data = array(
416
+ 'animation' => array('type' => 'select', 'default' => $data['animation'], 'description' => __('Animation used for transition between slides', 'slideshow-plugin'), 'options' => array('slide' => __('Slide Left', 'slideshow-plugin'), 'slideRight' => __('Slide Right', 'slideshow-plugin'), 'slideUp' => __('Slide Up', 'slideshow-plugin'), 'slideDown' => __('Slide Down', 'slideshow-plugin'), 'directFade' => __('Direct Fade', 'slideshow-plugin'), 'fade' => __('Fade', 'slideshow-plugin'), 'random' => __('Random Animation', 'slideshow-plugin')), 'group' => __('Animation', 'slideshow-plugin')),
417
  'slideSpeed' => array('type' => 'text', 'default' => $data['slideSpeed'], 'description' => __('Number of seconds the slide takes to slide in', 'slideshow-plugin'), 'group' => __('Animation', 'slideshow-plugin')),
418
  'descriptionSpeed' => array('type' => 'text', 'default' => $data['descriptionSpeed'], 'description' => __('Number of seconds the description takes to slide in', 'slideshow-plugin'), 'group' => __('Animation', 'slideshow-plugin')),
419
  'intervalSpeed' => array('type' => 'text', 'default' => $data['intervalSpeed'], 'description' => __('Seconds between changing slides', 'slideshow-plugin'), 'group' => __('Animation', 'slideshow-plugin')),
420
  'slidesPerView' => array('type' => 'text', 'default' => $data['slidesPerView'], 'description' => __('Number of slides to fit into one slide', 'slideshow-plugin'), 'group' => __('Display', 'slideshow-plugin')),
421
+ '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')),
422
+ 'preserveSlideshowDimensions' => array('type' => 'radio', 'default' => $data['preserveSlideshowDimensions'], 'description' => __('Shrink 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')),
423
+ '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 width and height (width:height)', 'slideshow-plugin'), '</a>'), 'dependsOn' => array('settings[preserveSlideshowDimensions]', 'true'), 'group' => __('Display', 'slideshow-plugin')),
424
+ 'height' => array('type' => 'text', 'default' => $data['height'], 'description' => __('Slideshow\'s height', 'slideshow-plugin'), 'dependsOn' => array('settings[preserveSlideshowDimensions]', 'false'), 'group' => __('Display', 'slideshow-plugin')),
425
+ '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')),
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')),
428
+ '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')),
429
+ // 'descriptionHeight' => array('type' => 'text', 'default' => $data['descriptionHeight'], 'description' => __('Height of the description boxes', 'slideshow-plugin'), 'dependsOn' => array('settings[hideDescription]', 'false'), 'group' => __('Display', 'slideshow-plugin')),
430
  'play' => array('type' => 'radio', 'default' => $data['play'], 'description' => __('Automatically slide to the next slide', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'group' => __('Control', 'slideshow-plugin')),
431
  'loop' => array('type' => 'radio', 'default' => $data['loop'], 'description' => __('Return to the beginning of the slideshow after last slide', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'group' => __('Control', 'slideshow-plugin')),
432
+ 'pauseOnHover' => array('type' => 'radio', 'default' => $data['loop'], 'description' => __('Pause slideshow when mouse hovers over', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'group' => __('Control', 'slideshow-plugin')),
433
+ 'controllable' => array('type' => 'radio', 'default' => $data['controllable'], 'description' => __('Activate navigation buttons', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'group' => __('Control', 'slideshow-plugin')),
434
+ 'hideNavigationButtons' => array('type' => 'radio', 'default' => $data['hideNavigationButtons'], 'description' => __('Hide navigation buttons, show when mouse hovers over', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'dependsOn' => array('settings[controllable]', 'true'), 'group' => __('Control', 'slideshow-plugin')),
435
+ 'showPagination' => array('type' => 'radio', 'default' => $data['showPagination'], 'description' => __('Activate pagination', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'group' => __('Control', 'slideshow-plugin')),
436
+ 'hidePagination' => array('type' => 'radio', 'default' => $data['hidePagination'], 'description' => __('Hide pagination, show when mouse hovers over', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'dependsOn' => array('settings[showPagination]', 'true'), 'group' => __('Control', 'slideshow-plugin')),
437
+ 'controlPanel' => array('type' => 'radio', 'default' => $data['controlPanel'], 'description' => __('Activate control panel (play and pause button)', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'group' => __('Control', 'slideshow-plugin')),
438
+ 'hideControlPanel' => array('type' => 'radio', 'default' => $data['hideControlPanel'], 'description' => __('Hide control panel, show when mouse hovers over', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'dependsOn' => array('settings[controlPanel]', 'true'), 'group' => __('Control', 'slideshow-plugin')),
439
  'random' => array('type' => 'radio', 'default' => $data['random'], 'description' => __('Randomize slides', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'group' => __('Miscellaneous', 'slideshow-plugin')),
440
  'avoidFilter' => array('type' => 'radio', 'default' => $data['avoidFilter'], 'description' => sprintf(__('Avoid content filter (disable if \'%s\' is shown)', 'slideshow-plugin'), SlideshowPluginShortcode::$bookmark), 'options' => array('true' => $yes, 'false' => $no), 'group' => __('Miscellaneous', 'slideshow-plugin'))
441
  );
491
  * @param string $settingsKey
492
  * @param string $settingsName
493
  * @param mixed $settings
494
+ * @param bool $hideDependentValues (optional, defaults to true)
495
  * @return mixed $inputField
496
  */
497
+ static function getInputField($settingsKey, $settingsName, $settings, $hideDependentValues = true){
498
 
499
  if(!is_array($settings) || empty($settings) || empty($settingsName))
500
  return null;
502
  $inputField = '';
503
  $name = $settingsKey . '[' . $settingsName . ']';
504
  $displayValue = (!isset($settings['value']) || (empty($settings['value']) && !is_numeric($settings['value'])) ? $settings['default'] : $settings['value']);
505
+ $class = ((isset($settings['dependsOn']) && $hideDependentValues)? 'depends-on-field-value ' . $settings['dependsOn'][0] . ' ' . $settings['dependsOn'][1] . ' ': '') . $settingsKey . '-' . $settingsName;
506
  switch($settings['type']){
507
  case 'text':
508
  $inputField .= '<input
classes/SlideshowPluginSlideshowSlide.php ADDED
@@ -0,0 +1,158 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * SlideshowPluginSlideshowSlide provides functions for outputting a slide for back-end as well as front-end display.
4
+ * It also provides all slide templates.
5
+ *
6
+ * Every slide needs to pass their slide type in the properties array. A slide type can be one of the following:
7
+ * - text
8
+ * - attachment
9
+ * - video
10
+ *
11
+ * A text slide can consist of one of these properties:
12
+ * - title
13
+ * - description
14
+ * - textColor
15
+ * - color
16
+ * - url
17
+ * - urlTarget
18
+ *
19
+ * An attachment slide can consist of one of these properties:
20
+ * - title
21
+ * - description
22
+ * - url
23
+ * - urlTarget
24
+ * - postId (required)
25
+ *
26
+ * A video slide can consist of one these properties:
27
+ * - videoId (required)
28
+ *
29
+ * @since 2.2.0
30
+ * @author Stefan Boonstra
31
+ * @version 13-1-13
32
+ */
33
+ class SlideshowPluginSlideshowSlide {
34
+
35
+ /** Properties */
36
+ private $properties;
37
+
38
+ /**
39
+ * Creates a slide object with the parsed properties. For information on how to build the properties array, view
40
+ * the class' description.
41
+ *
42
+ * @since 2.2.0
43
+ * @param array $properties
44
+ */
45
+ function __construct($properties){
46
+
47
+ if(is_array($properties))
48
+ $this->properties = $properties;
49
+ }
50
+
51
+ /**
52
+ * Build slide for front-end use.
53
+ *
54
+ * Returns when $return is true, prints when $return is false.
55
+ *
56
+ * @since 2.2.0
57
+ * @param boolean $return (optional, defaults to true)
58
+ * @return String $frontEndHTML
59
+ */
60
+ function toFrontEndHTML($return = true){
61
+
62
+ // Exit when no slide type has been set or is empty
63
+ if(!isset($this->properties['type']) || empty($this->properties['type']))
64
+ return '';
65
+
66
+ $properties = $this->properties;
67
+
68
+ // Build file path
69
+ $file = SlideshowPluginMain::getPluginPath() . DIRECTORY_SEPARATOR .
70
+ 'views' . DIRECTORY_SEPARATOR .
71
+ __CLASS__ . DIRECTORY_SEPARATOR .
72
+ 'frontend_' . $this->properties['type'] . '.php';
73
+
74
+ // Include file path
75
+ if(!file_exists($file))
76
+ return '';
77
+
78
+ // Start output buffering if output needs to be returned
79
+ if($return)
80
+ ob_start();
81
+
82
+ include $file;
83
+
84
+ // Return output
85
+ if($return)
86
+ return ob_get_clean();
87
+
88
+ return '';
89
+ }
90
+
91
+ /**
92
+ * Build slide for back-end use.
93
+ *
94
+ * Returns when $return is true, prints when $return is false.
95
+ *
96
+ * @since 2.2.0
97
+ * @param boolean $return (optional, defaults to true)
98
+ * @return String $backEndHTML
99
+ */
100
+ function toBackEndHTML($return = true){
101
+
102
+ // Exit when no slide type has been set or is empty
103
+ if(!isset($this->properties['type']) || empty($this->properties['type']))
104
+ return '';
105
+
106
+ // Make properties array available to included file
107
+ $properties = $this->properties;
108
+
109
+ // The name is used to prefix a setting name with. Although the ID's are set on load, set a random one to be sure
110
+ $name = SlideshowPluginSlideshowSettingsHandler::$slidesKey . '[' . rand() . ']';
111
+
112
+ // Build file path
113
+ $file = SlideshowPluginMain::getPluginPath() . DIRECTORY_SEPARATOR .
114
+ 'views' . DIRECTORY_SEPARATOR .
115
+ __CLASS__ . DIRECTORY_SEPARATOR .
116
+ 'backend_' . $this->properties['type'] . '.php';
117
+
118
+ // Include file path
119
+ if(!file_exists($file))
120
+ return '';
121
+
122
+ // Start output buffering if output needs to be returned
123
+ if($return)
124
+ ob_start();
125
+
126
+ include $file;
127
+
128
+ // Return output
129
+ if($return)
130
+ return ob_get_clean();
131
+
132
+ return '';
133
+ }
134
+
135
+ /**
136
+ * Build templates for back-end slides.
137
+ *
138
+ * Returns when $return is true, prints when $return is false.
139
+ *
140
+ * @since 2.2.0
141
+ * @param boolean $return (optional, defaults to true)
142
+ * @return String $backEndTemplates
143
+ */
144
+ static function getBackEndTemplates($return = true){
145
+
146
+ // Start output buffering if output needs to be returned
147
+ if($return)
148
+ ob_start();
149
+
150
+ include SlideshowPluginMain::getPluginPath() . DIRECTORY_SEPARATOR . 'views' . DIRECTORY_SEPARATOR . __CLASS__ . DIRECTORY_SEPARATOR . 'backend_templates.php';
151
+
152
+ // Return output
153
+ if($return)
154
+ return ob_get_clean();
155
+
156
+ return '';
157
+ }
158
+ }
classes/SlideshowPluginSlideshowView.php ADDED
@@ -0,0 +1,92 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * SlideshowPluginSlideshowView provides functions for outputting a view with all its slides for back-end as well as
4
+ * front-end display.
5
+ *
6
+ * @since 2.2.0
7
+ * @author Stefan Boonstra
8
+ * @version 13-1-13
9
+ */
10
+ class SlideshowPluginSlideshowView {
11
+
12
+ /** Slides */
13
+ private $slides = array();
14
+
15
+ /**
16
+ * Pass an array of slideProperties to create slides from.
17
+ *
18
+ * See SlideshowPluginSlideshowSlide's class description for the properties needed to build a slide.
19
+ *
20
+ * @since 2.2.0
21
+ * @param array $slidesProperties (optional)
22
+ */
23
+ function __construct($slidesProperties = array()){
24
+
25
+ if(is_array($slidesProperties))
26
+ foreach($slidesProperties as $slideProperties)
27
+ $this->slides[] = new SlideshowPluginSlideshowSlide($slideProperties);
28
+ }
29
+
30
+ /**
31
+ * Creates a new slide object and adds it to the view.
32
+ *
33
+ * See SlideshowPluginSlideshowSlide's class description for the properties needed to build a slide.
34
+ *
35
+ * @since 2.2.0
36
+ * @param array $slideProperties
37
+ */
38
+ function addSlide($slideProperties){
39
+
40
+ if(is_array($slideProperties))
41
+ $this->slides[] = new SlideshowPluginSlideshowSlide($slideProperties);
42
+ }
43
+
44
+ /**
45
+ * Build view for front-end use.
46
+ *
47
+ * Returns when $return is true, prints when $return is false.
48
+ *
49
+ * @since 2.2.0
50
+ * @param boolean $return (optional, defaults to true)
51
+ * @return String $frontEndHTML
52
+ */
53
+ function toFrontEndHTML($return = true){
54
+
55
+ $frontEndHTML = '<div class="slideshow_view">';
56
+
57
+ foreach($this->slides as $slide){
58
+
59
+ $frontEndHTML .= $slide->toFrontEndHTML();
60
+ }
61
+
62
+ $frontEndHTML .= '<div style="clear: both;"></div></div>';
63
+
64
+ if($return)
65
+ return $frontEndHTML;
66
+ else
67
+ echo $frontEndHTML;
68
+ }
69
+
70
+ /**
71
+ * Build view for back-end use.
72
+ *
73
+ * Returns when $return is true, prints when $return is false.
74
+ *
75
+ * @since 2.2.0
76
+ * @param boolean $return (optional, defaults to true)
77
+ * @return String $backEndHTML
78
+ */
79
+ function toBackEndHTML($return = true){
80
+
81
+ $backEndHTML = '';
82
+ foreach($this->slides as $slide){
83
+
84
+ $backEndHTML .= $slide->toBackEndHTML();
85
+ }
86
+
87
+ if($return)
88
+ return $backEndHTML;
89
+ else
90
+ echo $backEndHTML;
91
+ }
92
+ }
images/{button-next.png → SlideshowPlugin/dark-bullet.png} RENAMED
Binary file
images/{adminIcon.png → SlideshowPlugin/light-bullet.png} RENAMED
Binary file
images/button-previous.png DELETED
Binary file
images/no-img.png DELETED
Binary file
js/SlideshowPlugin/slideshow.js DELETED
@@ -1 +0,0 @@
1
- jQuery.fn.slideshow_script=function(){var $container=jQuery(this),$overflow=$container.find('.slideshow_overflow'),$controlPanel=$container.find('.controlPanel'),$togglePlayButton=$controlPanel.find('.togglePlay'),$nextButton=$container.find('.next'),$previousButton=$container.find('.previous'),$slideshow=$container.find('.slideshow'),$slides=$slideshow.find('.slide'),$sessionID=getSessionID();var $settings=window['SlideshowPluginSettings_'+$sessionID];jQuery.each($settings,function(setting,value){if(value=='true')$settings[setting]=true;else if(value=='false')$settings[setting]=false});if($container.width()<=0){var parentElement=$container.parent();if(parentElement.width()<=0)$container.css('width',parentElement.closest('div').width());else $container.css('width',parentElement.width())}$overflow.css('width',$container.width());var $numberSlidesVisible=3,$buttonsActive=false,$interval='',$currentSlideId=0,$currentViewId=0,$slideWidth=$container.width()/$settings['slidesPerView'];init();function init(){var slidePosition=0;var totalWidth=100;jQuery.each($slides,function(key,slide){if(slidePosition<=0)jQuery(slide).css({'padding-left':0,'margin-left':0});if(slidePosition>=$settings['slidesPerView']-1)jQuery(slide).css({'padding-right':0,'margin-right':0});var slideWidth=$slideWidth-(jQuery(slide).outerWidth(true)-jQuery(slide).width());jQuery(slide).css({width:slideWidth});totalWidth+=jQuery(slide).outerWidth(true);var image=jQuery(slide).find('img');if(image.attr('src')!=undefined){if($settings['stretchImages']){image.attr({width:jQuery(slide).width(),height:jQuery(slide).height()})}else{image.css('width','auto')}}var description=jQuery(slide).find('.description');if($settings['showDescription']&&description.attr('class')!=undefined){if($settings['hideDescription'])description.css({marginBottom:'-'+description.outerHeight(true)+'px'});else description.css({height:$settings['descriptionHeight']});description.css({display:'block'})}var videoSlideIds=jQuery(slide).find('.videoId').text().split(' ');var videoId=videoSlideIds[0];var elementVideoId=videoSlideIds[1];if(videoId&&elementVideoId){swfobject.embedSWF('http://www.youtube.com/v/'+videoId+'?version=3&enablejsapi=1&playerapiid=player',elementVideoId,jQuery(slide).width(),jQuery(slide).height(),'9',null,null,{allowScriptAccess:'always',wmode:'opaque'},{id:elementVideoId})}slidePosition++;if(slidePosition>=$settings['slidesPerView'])slidePosition=0});$slideshow.css({width:totalWidth,float:'none',position:'absolute',top:0,left:0});if($settings['controlPanel']&&$settings['play'])togglePlay(true);resetInterval();if($settings['controllable']){setNextButtonVisible(true);setPreviousButtonVisible(true);$buttonsActive=true}}function gotoView(viewId,relative){if(relative)viewId=$currentViewId+viewId;if(viewId*$settings['slidesPerView']>=$slides.length){if($settings['loop']){viewId=0}else{viewId=Math.floor(($slides.length-1)/$settings['slidesPerView']);return}}else if(viewId<0){if($settings['loop']){viewId=Math.floor(($slides.length-1)/$settings['slidesPerView'])}else{viewId=0;return}}$currentViewId=viewId;var position=0;var slidePosition=$slideshow.find('.slide_'+(viewId*$settings['slidesPerView'])).position();if(slidePosition)position=slidePosition.left-Math.abs($slideshow.position().left);$buttonsActive=false;if($settings['animation']=='fade'){$slideshow.fadeOut(parseInt($settings['slideSpeed']*1000)/2);setTimeout(function(){$slideshow.animate({left:'-='+position},0);$slideshow.fadeIn(parseInt($settings['slideSpeed']*1000)/ 2)}, parseInt($settings['slideSpeed'] * 1000) /2)}else{$slideshow.animate({left:'-='+position},parseInt($settings['slideSpeed']*1000))}setTimeout(function(){$buttonsActive=true},parseInt($settings['slideSpeed']*1000))}$nextButton.click(function(){if($buttonsActive){resetInterval();gotoView(1,true)}});$previousButton.click(function(){if($buttonsActive){resetInterval();gotoView(-1,true)}});function setNextButtonVisible(visible){if(!$settings['controllable'])return;if(visible)$nextButton.stop(true,true).fadeIn($settings['slideSpeed']);else $nextButton.stop(true,true).fadeOut($settings['slideSpeed'])}function setPreviousButtonVisible(visible){if(!$settings['controllable'])return;if(visible)$previousButton.stop(true,true).fadeIn($settings['slideSpeed']);else $previousButton.stop(true,true).fadeOut($settings['slideSpeed'])}$togglePlayButton.click(function(){togglePlay()});function togglePlay(adaptButton){if(!adaptButton){$settings['play']=!$settings['play'];resetInterval()}if($settings['play'])$togglePlayButton.attr('class','pause');else $togglePlayButton.attr('class','play')}$container.mouseleave(function(){$controlPanel.stop(true,true).fadeOut('slow')});$container.mouseenter(function(){if($settings['controlPanel'])$controlPanel.stop(true,true).fadeIn('fast')});$slides.mouseenter(function(){if($settings['showDescription']&&$settings['hideDescription'])jQuery(this).find('.description').stop(true,true).animate({'margin-bottom':'0px'},parseInt($settings['descriptionSpeed']*1000))});$slides.mouseleave(function(){if($settings['showDescription']&&$settings['hideDescription']){var description=jQuery(this).find('.description');description.stop(true,true).animate({'margin-bottom':'-'+description.outerHeight(true)+'px'},parseInt($settings['descriptionSpeed']*1000))}});function resetInterval(){clearInterval($interval);if($settings['play'])$interval=setInterval(function(){gotoView(1,true)},$settings['intervalSpeed']*1000)}function getSessionID(){var splitClasses=$container.attr('class').split('_');return splitClasses[splitClasses.length-1]}jQuery(window).load(function(){jQuery.each($slides,function(key,slide){var image=jQuery(slide).find('img');if(image.attr('src')!=undefined){var imageWidth=jQuery(slide).width()-(image.outerWidth(true)-image.width());var imageHeight=jQuery(slide).height()-(image.outerHeight(true)-image.height());if($settings['stretchImages']){image.css({width:imageWidth,height:imageHeight})}else{if(image.outerWidth(true)>jQuery(slide).width()){image.css({width:imageWidth,height:'auto'})}else if(image.outerHeight(true)>jQuery(slide).height()){image.css({width:'auto',height:imageHeight})}else{image.css({width:'auto',height:'auto'})}}}})})};jQuery(document).ready(function(){jQuery.each(jQuery('.slideshow_container'),function(key,value){jQuery(value).slideshow_script()})});
 
js/SlideshowPlugin/slideshow.min.js ADDED
@@ -0,0 +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'),$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();if($parentElement.width()<=0)$parentElement=$parentElement.closest('div').width();var $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){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',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/SlideshowPluginPostType/post-type-handler.js CHANGED
@@ -6,35 +6,50 @@ jQuery(document).ready(function(){
6
  jQuery('.depends-on-field-value').each(function(key, value){
7
  var attributes = jQuery(this).attr('class').split(' ');
8
 
 
 
 
 
 
 
9
  // Check if field should be shown
10
  var element = jQuery(this).closest('tr');
11
- if((jQuery('input[name="' + attributes[1] + '"]').val() == attributes[2] && jQuery('input[name="' + attributes[1] + '"]').prop('checked')) ||
12
- jQuery('select[name="' + attributes[1] + '"]').val() == attributes[2])
13
- setElementVisibility(element, true);
14
  else
15
- setElementVisibility(element, false);
16
 
17
  // On change, set field's visibility
18
- jQuery('input[name="' + attributes[1] + '"], select[name="' + attributes[1] + '"]').change(attributes, function(){
19
  var element = jQuery('.' + attributes[3]).closest('tr');
20
 
21
  if(jQuery(this).val() == attributes[2])
22
- setElementVisibility(element, true);
23
  else
24
- setElementVisibility(element, false);
25
  });
26
  });
27
 
28
  /**
29
- * Set element visibility
30
  *
31
  * @param element
32
  * @param visible
33
  */
34
- function setElementVisibility(element, visible){
35
- if(visible)
36
- jQuery(element).css({'display': 'table-row'});
37
- else
38
- jQuery(element).css({'display': 'none'});
 
 
 
 
 
 
 
 
 
 
39
  }
40
  });
6
  jQuery('.depends-on-field-value').each(function(key, value){
7
  var attributes = jQuery(this).attr('class').split(' ');
8
 
9
+ if(attributes[1] == 'settings[preserveSlideshowDimensions]'){
10
+ console.log(jQuery('input[name="' + attributes[1] + '"]:checked').val());
11
+ console.log(attributes[2]);
12
+ console.log();
13
+ console.log('---');
14
+ }
15
  // Check if field should be shown
16
  var element = jQuery(this).closest('tr');
17
+ if(jQuery('input[name="' + attributes[1] + '"]:checked').val() == attributes[2])
18
+ jQuery(element).show();
 
19
  else
20
+ jQuery(element).hide();
21
 
22
  // On change, set field's visibility
23
+ jQuery('input[name="' + attributes[1] + '"]').change(attributes, function(){
24
  var element = jQuery('.' + attributes[3]).closest('tr');
25
 
26
  if(jQuery(this).val() == attributes[2])
27
+ animateElementVisibility(element, true);
28
  else
29
+ animateElementVisibility(element, false);
30
  });
31
  });
32
 
33
  /**
34
+ * Animate to element's visibility
35
  *
36
  * @param element
37
  * @param visible
38
  */
39
+ function animateElementVisibility(element, visible){
40
+ if(visible){
41
+ jQuery(element)
42
+ .show()
43
+ .css('background-color', '#c0dd52')
44
+
45
+ setTimeout(
46
+ function(){
47
+ jQuery(element).stop(true, true).animate({ 'background-color': 'transparent' }, 1500);
48
+ },
49
+ 500
50
+ );
51
+ }else{
52
+ jQuery(element).stop(true, true).hide();
53
+ }
54
  }
55
  });
js/SlideshowPluginPostType/style-settings.js CHANGED
@@ -1,6 +1,4 @@
1
  jQuery(document).ready(function(){
2
- //if(jQuery('.custom-style-textarea').val() == '')
3
- // jQuery.get('./css/' + this.val(), function(data) { $('#myTextbox').val(data); });
4
 
5
  var currentlyEdited = '.' + jQuery('.style-list').val();
6
  setVisible(currentlyEdited, true);
1
  jQuery(document).ready(function(){
 
 
2
 
3
  var currentlyEdited = '.' + jQuery('.style-list').val();
4
  setVisible(currentlyEdited, true);
js/SlideshowPluginSlideInserter/slide-inserter.js CHANGED
@@ -258,6 +258,7 @@ jQuery(document).ready(function(){
258
  // Set names to be saved to the database
259
  textSlide.find('.title').attr('name', 'slides[0][title]');
260
  textSlide.find('.description').attr('name', 'slides[0][description]');
 
261
  textSlide.find('.color').attr('name', 'slides[0][color]');
262
  textSlide.find('.url').attr('name', 'slides[0][url]');
263
  textSlide.find('.urlTarget').attr('name', 'slides[0][urlTarget]');
258
  // Set names to be saved to the database
259
  textSlide.find('.title').attr('name', 'slides[0][title]');
260
  textSlide.find('.description').attr('name', 'slides[0][description]');
261
+ textSlide.find('.textColor').attr('name', 'slides[0][textColor]');
262
  textSlide.find('.color').attr('name', 'slides[0][color]');
263
  textSlide.find('.url').attr('name', 'slides[0][url]');
264
  textSlide.find('.urlTarget').attr('name', 'slides[0][urlTarget]');
languages/slideshow-plugin-es_ES.mo CHANGED
Binary file
languages/slideshow-plugin-es_ES.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Slideshow Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-12-06 18:46+0100\n"
6
- "PO-Revision-Date: 2013-01-19 20:23-0600\n"
7
  "Last-Translator: Violeta Rosales <ellaes@violetarosales.com>\n"
8
  "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
  "Language: fr_FR\n"
@@ -16,265 +16,499 @@ msgstr ""
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: classes/SlideshowPluginPostType.php:32
20
- msgid "Slideshows"
21
- msgstr "Diapositivas"
22
-
23
- #: classes/SlideshowPluginPostType.php:33
24
- #: views/SlideshowPluginWidget/form.php:7
25
- msgid "Slideshow"
26
- msgstr "Diapositiva"
27
-
28
- #: classes/SlideshowPluginPostType.php:34
29
- msgid "Add New Slideshow"
30
- msgstr "Agregar Nueva Diapositiva"
31
-
32
- #: classes/SlideshowPluginPostType.php:35
33
- msgid "Edit slideshow"
34
- msgstr "Editar diapositiva"
35
-
36
- #: classes/SlideshowPluginPostType.php:36
37
- msgid "New slideshow"
38
- msgstr "Nueva diapositiva"
39
-
40
- #: classes/SlideshowPluginPostType.php:37
41
- msgid "View slideshow"
42
- msgstr "Ver diapositivas"
43
-
44
- #: classes/SlideshowPluginPostType.php:38
45
- msgid "Search slideshows"
46
- msgstr "Buscar diapositivas"
47
 
48
- #: classes/SlideshowPluginPostType.php:39
49
- #: classes/SlideshowPluginPostType.php:40
50
- msgid "No slideshows found"
51
- msgstr "No se encontraron diapositivas"
52
 
53
- #: classes/SlideshowPluginPostType.php:95
54
- msgid "Information"
55
- msgstr "Información"
56
 
57
- #: classes/SlideshowPluginPostType.php:104
58
- msgid "Slides List"
59
- msgstr "Lista de diapositivas"
 
 
60
 
61
- #: classes/SlideshowPluginPostType.php:113
62
- msgid "Slideshow Style"
63
- msgstr "Estilo de las diapositivas"
 
 
64
 
65
- #: classes/SlideshowPluginPostType.php:122
66
- msgid "Slideshow Settings"
67
- msgstr "Configuración de las diapositivas"
 
 
68
 
69
- #: classes/SlideshowPluginSettingsHandler.php:309
70
- #: classes/SlideshowPluginSettingsHandler.php:374
71
- #: classes/SlideshowPluginUpdater.php:183
72
  msgid "Yes"
73
  msgstr "Sí"
74
 
75
- #: classes/SlideshowPluginSettingsHandler.php:310
76
- #: classes/SlideshowPluginSettingsHandler.php:375
77
- #: classes/SlideshowPluginUpdater.php:184
78
  msgid "No"
79
  msgstr "No"
80
 
81
- #: classes/SlideshowPluginSettingsHandler.php:337
82
- #: classes/SlideshowPluginUpdater.php:188
 
 
 
 
 
 
 
 
 
 
 
 
 
 
83
  msgid "Animation used for transition between slides"
84
  msgstr "Animación para las transiciones entre las diapositivas"
85
 
86
- #: classes/SlideshowPluginSettingsHandler.php:337
87
- #: classes/SlideshowPluginUpdater.php:188
88
  msgid "Slide"
89
  msgstr "Diapositiva"
90
 
91
- #: classes/SlideshowPluginSettingsHandler.php:337
92
- #: classes/SlideshowPluginUpdater.php:188
93
  msgid "Fade"
94
  msgstr "Desvanecer"
95
 
96
- #: classes/SlideshowPluginSettingsHandler.php:337
97
- #: classes/SlideshowPluginSettingsHandler.php:338
98
- #: classes/SlideshowPluginSettingsHandler.php:339
99
- #: classes/SlideshowPluginSettingsHandler.php:340
100
- #: classes/SlideshowPluginUpdater.php:188
101
- #: classes/SlideshowPluginUpdater.php:189
102
- #: classes/SlideshowPluginUpdater.php:190
103
- #: classes/SlideshowPluginUpdater.php:191
104
  msgid "Animation"
105
  msgstr "Animación"
106
 
107
- #: classes/SlideshowPluginSettingsHandler.php:338
108
- #: classes/SlideshowPluginUpdater.php:189
109
  msgid "Number of seconds the slide takes to slide in"
110
  msgstr "Núero de segundos que tarda la diapositiva en entrar"
111
 
112
- #: classes/SlideshowPluginSettingsHandler.php:339
113
- #: classes/SlideshowPluginUpdater.php:190
114
  msgid "Number of seconds the description takes to slide in"
115
  msgstr "Número de segundos que tarda la descripción en entrar"
116
 
117
- #: classes/SlideshowPluginSettingsHandler.php:340
118
- #: classes/SlideshowPluginUpdater.php:191
119
  msgid "Seconds between changing slides"
120
  msgstr "Segundos entre cada diapositiva"
121
 
122
- #: classes/SlideshowPluginSettingsHandler.php:341
123
- #: classes/SlideshowPluginUpdater.php:192
124
  msgid "Number of slides to fit into one slide"
125
  msgstr "Número de imágenes/videos/texto dentro de cada diapositiva"
126
 
127
- #: classes/SlideshowPluginSettingsHandler.php:341
128
- #: classes/SlideshowPluginSettingsHandler.php:342
129
- #: classes/SlideshowPluginSettingsHandler.php:343
130
- #: classes/SlideshowPluginSettingsHandler.php:344
131
- #: classes/SlideshowPluginSettingsHandler.php:345
132
- #: classes/SlideshowPluginSettingsHandler.php:346
133
- #: classes/SlideshowPluginSettingsHandler.php:347
134
- #: classes/SlideshowPluginUpdater.php:192
135
- #: classes/SlideshowPluginUpdater.php:193
136
- #: classes/SlideshowPluginUpdater.php:194
137
- #: classes/SlideshowPluginUpdater.php:195
138
- #: classes/SlideshowPluginUpdater.php:196
139
- #: classes/SlideshowPluginUpdater.php:197
140
- #: classes/SlideshowPluginUpdater.php:198
 
 
141
  msgid "Display"
142
  msgstr "Mostrar"
143
 
144
- #: classes/SlideshowPluginSettingsHandler.php:342
145
- #: classes/SlideshowPluginUpdater.php:193
146
  msgid "Width of the slideshow, set to parent&#39;s width on 0"
147
  msgstr ""
148
  "Ancho de las diapositivas. Escribe 0 para tomar el ancho del nodo padre."
149
 
150
- #: classes/SlideshowPluginSettingsHandler.php:343
151
- #: classes/SlideshowPluginUpdater.php:194
152
  msgid "Height of the slideshow"
153
  msgstr "Alto de las diapositivas"
154
 
155
- #: classes/SlideshowPluginSettingsHandler.php:344
156
- #: classes/SlideshowPluginUpdater.php:195
157
  msgid "Height of the description boxes"
158
  msgstr "Alto de la caja de descripción"
159
 
160
- #: classes/SlideshowPluginSettingsHandler.php:345
161
- #: classes/SlideshowPluginUpdater.php:196
162
  msgid "Fit image into slide (stretching it)"
163
  msgstr "Adaptar la diapositiva (estirarla)"
164
 
165
- #: classes/SlideshowPluginSettingsHandler.php:346
166
- #: classes/SlideshowPluginUpdater.php:197
167
  msgid "Show title and description"
168
  msgstr "Mostrar título y descripción"
169
 
170
- #: classes/SlideshowPluginSettingsHandler.php:347
171
- #: classes/SlideshowPluginUpdater.php:198
172
  msgid "Hide description box, it will pop up when a mouse hovers over the slide"
173
  msgstr ""
174
  "Esconder la caja de descripción, se mostrará cuando el puntero esté sobre la "
175
  "diapositiva"
176
 
177
- #: classes/SlideshowPluginSettingsHandler.php:348
178
- #: classes/SlideshowPluginUpdater.php:199
179
  msgid "Automatically slide to the next slide"
180
  msgstr "Pasar automáticamente a la siguiente diapositiva"
181
 
182
- #: classes/SlideshowPluginSettingsHandler.php:348
183
- #: classes/SlideshowPluginSettingsHandler.php:349
184
- #: classes/SlideshowPluginSettingsHandler.php:350
185
- #: classes/SlideshowPluginSettingsHandler.php:351
186
- #: classes/SlideshowPluginUpdater.php:199
187
- #: classes/SlideshowPluginUpdater.php:200
188
- #: classes/SlideshowPluginUpdater.php:201
189
- #: classes/SlideshowPluginUpdater.php:202
 
 
 
 
 
190
  msgid "Control"
191
  msgstr "Control"
192
 
193
- #: classes/SlideshowPluginSettingsHandler.php:349
194
- #: classes/SlideshowPluginUpdater.php:200
195
  msgid "Return to the beginning of the slideshow after last slide"
196
  msgstr "Regresar al inicio de las diapositivas, al llegar al final"
197
 
198
- #: classes/SlideshowPluginSettingsHandler.php:350
199
- #: classes/SlideshowPluginUpdater.php:201
200
  msgid "Activate buttons (so the user can scroll through the slides)"
201
  msgstr ""
202
  "Activar botones (para que el usuario pueda desplazarse entre las "
203
  "diapositivas)"
204
 
205
- #: classes/SlideshowPluginSettingsHandler.php:351
206
- #: classes/SlideshowPluginUpdater.php:202
207
  msgid "Show control panel (play and pause button)"
208
  msgstr "Mostrar panel de control (botones de play y pausa)"
209
 
210
- #: classes/SlideshowPluginSettingsHandler.php:352
211
- msgid "Randomize slides"
212
- msgstr "Diapositivas aleatorias"
213
 
214
- #: classes/SlideshowPluginSettingsHandler.php:352
215
- #: classes/SlideshowPluginSettingsHandler.php:353
216
- msgid "Miscellaneous"
217
- msgstr "Miscelanea"
218
 
219
- #: classes/SlideshowPluginSettingsHandler.php:353
220
- #, php-format
221
- msgid "Avoid content filter (disable if '%s' is shown)"
222
- msgstr "Evitar filtro de contenido (desactivar si '%s' se muestra)"
223
 
224
- #: classes/SlideshowPluginSettingsHandler.php:386
225
- #: classes/SlideshowPluginUpdater.php:186
226
- msgid "The style used for this slideshow"
227
- msgstr "El estilo usado para esta diapositiva"
228
 
229
- #: classes/SlideshowPluginSettingsHandler.php:386
230
- #: classes/SlideshowPluginUpdater.php:186
231
- msgid "Light"
232
- msgstr "Claro"
233
 
234
- #: classes/SlideshowPluginSettingsHandler.php:386
235
- #: classes/SlideshowPluginUpdater.php:186
236
- msgid "Dark"
237
- msgstr "Obscuro"
238
 
239
- #: classes/SlideshowPluginSettingsHandler.php:386
240
- #: classes/SlideshowPluginUpdater.php:186
241
- msgid "Custom"
242
- msgstr "Personalizar"
243
 
244
- #: classes/SlideshowPluginSettingsHandler.php:387
245
- #: classes/SlideshowPluginUpdater.php:187
246
- msgid "Custom style editor"
247
- msgstr "Editor de estilo personalizado"
248
 
249
- #: classes/SlideshowPluginShortcode.php:130
250
- msgid "No slideshow selected."
251
- msgstr "No se ha seleccionado ninguna diapositiva"
252
 
253
- #: classes/SlideshowPluginSlideInserter.php:148
 
 
 
 
 
 
 
 
 
 
 
 
 
254
  #: views/SlideshowPluginPostType/slides.php:2
255
  msgid "Insert"
256
  msgstr "Insertar"
257
 
258
- #: classes/SlideshowPluginSlideInserter.php:157
 
 
 
 
 
 
 
 
 
259
  msgid "Load more results"
260
  msgstr "Cargar más resultados"
261
 
262
- #: classes/SlideshowPluginSlideInserter.php:166
263
  msgid "No images were found, click here to upload some."
264
  msgstr "No se encontraron imágenes, da clic para subir algunas."
265
 
266
- #: classes/SlideshowPluginSlideInserter.php:227
267
  msgid "Are you sure you want to delete this slide?"
268
  msgstr "¿Estás seguro de que quieres borrar esta diapositiva?"
269
 
270
- #: classes/SlideshowPluginWidget.php:20
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
271
  msgid "Enables you to show your slideshows in the widget area of your website."
272
  msgstr "Permite que puedas mostrar las diapositivas en el área de los Widgets"
273
 
274
- #: classes/SlideshowPluginWidget.php:26
275
  msgid "Slideshow Widget"
276
  msgstr "Widget de diapositiva"
277
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
278
  #: views/SlideshowPluginPostType/information.php:1
279
  msgid ""
280
  "To use this slideshow in your website either add this piece of shortcode to "
@@ -294,67 +528,105 @@ msgstr "O agrega este código en tu tema"
294
  msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
295
  msgstr "Ve al %sárea de widgets%s y muestra las Diapositivas como Widget"
296
 
297
- #: views/SlideshowPluginPostType/settings.php:12
298
- msgid "settings"
299
- msgstr "Configuración"
300
-
301
  #: views/SlideshowPluginPostType/settings.php:26
302
- #: views/SlideshowPluginPostType/style-settings.php:8
303
  msgid "Default"
304
  msgstr "Por defecto"
305
 
306
- #: views/SlideshowPluginPostType/slides.php:9
307
- msgid "Add slides to this slideshow by using one of the buttons above."
308
- msgstr "Agrega una diapositiva usando uno de los botones de abajo."
309
-
310
- #: views/SlideshowPluginPostType/slides.php:51
311
- #: views/SlideshowPluginPostType/slides.php:156
312
- #: views/SlideshowPluginWidget/form.php:2
313
- msgid "Title"
314
- msgstr "Título"
315
 
316
- #: views/SlideshowPluginPostType/slides.php:52
317
- #: views/SlideshowPluginPostType/slides.php:157
 
 
 
 
 
 
318
  msgid "Description"
319
  msgstr "Descripción"
320
 
321
- #: views/SlideshowPluginPostType/slides.php:53
322
- #: views/SlideshowPluginPostType/slides.php:158
 
 
323
  msgid "Background color"
324
  msgstr "Color de fondo"
325
 
326
- #: views/SlideshowPluginPostType/slides.php:59
327
- #: views/SlideshowPluginPostType/slides.php:124
328
- #: views/SlideshowPluginPostType/slides.php:164
329
- #: views/SlideshowPluginPostType/slides.php:212
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
330
  msgid "Same window"
331
  msgstr "Misma ventana"
332
 
333
- #: views/SlideshowPluginPostType/slides.php:60
334
- #: views/SlideshowPluginPostType/slides.php:125
335
- #: views/SlideshowPluginPostType/slides.php:165
336
- #: views/SlideshowPluginPostType/slides.php:213
 
 
 
 
337
  msgid "New window"
338
  msgstr "Ventana nueva"
339
 
340
- #: views/SlideshowPluginPostType/slides.php:64
341
- #: views/SlideshowPluginPostType/slides.php:129
342
- #: views/SlideshowPluginPostType/slides.php:169
343
- #: views/SlideshowPluginPostType/slides.php:217
344
- msgid "URL"
345
- msgstr "URL"
 
346
 
347
- #: views/SlideshowPluginPostType/slides.php:80
348
- #: views/SlideshowPluginPostType/slides.php:185
 
 
349
  msgid "Youtube Video ID"
350
  msgstr "Video de YouTube"
351
 
352
- #: views/SlideshowPluginPostType/slides.php:108
353
- #: views/SlideshowPluginPostType/slides.php:115
354
- msgid "Edit"
355
- msgstr "Editar"
 
 
 
356
 
357
- #: views/SlideshowPluginPostType/slides.php:140
358
  msgid ""
359
  "An error occurred while loading this slide, and it will not be present in "
360
  "the slideshow"
@@ -362,13 +634,24 @@ msgstr ""
362
  "Ha ocurrido un error miestras se cargaba esta diapositiva y no puede ser "
363
  "presentada"
364
 
365
- #: views/SlideshowPluginPostType/slides.php:145
366
- #: views/SlideshowPluginPostType/slides.php:177
367
- #: views/SlideshowPluginPostType/slides.php:192
368
- #: views/SlideshowPluginPostType/slides.php:226
 
 
 
 
 
 
369
  msgid "Delete slide"
370
  msgstr "Borrar diapositiva"
371
 
 
 
 
 
 
372
  #: views/SlideshowPluginPostType/support-plugin.php:3
373
  msgid "Help to keep this plugin free!"
374
  msgstr "¡Ayuda a que este plugin sea gratis!"
@@ -391,34 +674,38 @@ msgid "Rate on Wordpress.org"
391
  msgstr "Calificar en Wordpress.org"
392
 
393
  #: views/SlideshowPluginPostType/support-plugin.php:24
 
 
 
 
394
  msgid "Questions / Suggestions"
395
  msgstr "Preguntas / Sugerencias"
396
 
397
  #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
398
  #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
399
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:16
400
  msgid "Insert a Slideshow"
401
  msgstr "Insertar una Diapositiva"
402
 
403
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:6
404
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:50
405
  msgid "Insert Slideshow"
406
  msgstr "Insertar Diapositiva"
407
 
408
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:26
409
  msgid "Select a slideshow"
410
  msgstr "Seleccionar una diapositiva"
411
 
412
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:35
413
  #: views/SlideshowPluginWidget/form.php:12
414
  msgid "Untitled slideshow"
415
  msgstr "Diapositiva sin título"
416
 
417
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:55
418
  msgid "Cancel"
419
  msgstr "Cancelar"
420
 
421
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:66
422
  #, php-format
423
  msgid ""
424
  "It seems you haven't created any slideshows yet. %sYou can create a "
@@ -426,18 +713,6 @@ msgid ""
426
  msgstr ""
427
  "Parece que no has creado ninguna diapositiva aún. %s¡Puedes crear una aquí!%s"
428
 
429
- #: views/SlideshowPluginSlideInserter/insert-image-button.php:1
430
- msgid "Image slide"
431
- msgstr "Diapositiva de Imagen"
432
-
433
- #: views/SlideshowPluginSlideInserter/insert-text-button.php:1
434
- msgid "Text slide"
435
- msgstr "Diapositiva de Texto"
436
-
437
- #: views/SlideshowPluginSlideInserter/insert-video-button.php:1
438
- msgid "Video slide"
439
- msgstr "Diapositiva de Video"
440
-
441
  #: views/SlideshowPluginSlideInserter/search-popup.php:6
442
  msgid "Search"
443
  msgstr "Buscar"
@@ -446,6 +721,11 @@ msgstr "Buscar"
446
  msgid "Search images by title or ID"
447
  msgstr "Buscar imágenes por título o ID"
448
 
 
 
 
 
 
449
  #: views/SlideshowPluginUpload/upload-button.php:1
450
  msgid "Upload/Manage Images"
451
  msgstr "Cargar/Administrar Imágenes"
@@ -492,11 +772,5 @@ msgstr "Diapositivas Aleatorias"
492
  #~ "Wanner de gebruiker op de afbeelding klikt, stuur hem naar de URL van het "
493
  #~ "plaatje"
494
 
495
- #~ msgid "Style"
496
- #~ msgstr "Style"
497
-
498
- #~ msgid "Custom style"
499
- #~ msgstr "Aangepaste stijl"
500
-
501
  #~ msgid "Leave any field open to use default value."
502
  #~ msgstr "Een veld dat open wordt gelaten neemt de standaardwaarde aan."
2
  msgstr ""
3
  "Project-Id-Version: Slideshow Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-01-31 14:29+0100\n"
6
+ "PO-Revision-Date: 2013-01-31 14:30+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"
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: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: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 height when width shrinks (Fixed height can be defined when setting "
310
+ "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 "Proportional relationship%s between width and height (width: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:427
335
+ msgid "Hide description box, pop up when mouse hovers over"
336
+ msgstr ""
337
+
338
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
339
+ msgid ""
340
+ "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
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 "Diapositivas aleatorias"
374
+
375
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:439
376
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:440
377
+ msgid "Miscellaneous"
378
+ msgstr "Miscelanea"
379
+
380
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:440
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:86
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 "
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:62
549
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:15
550
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:92
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:69
567
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:27
568
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:97
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:72
578
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:29
579
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:99
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:74
589
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:31
590
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:101
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:75
600
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:32
601
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:102
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:52
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:57
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:77
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"
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:84
642
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:40
643
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:65
644
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:111
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!"
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 "
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"
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"
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
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Slideshow Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-12-06 18:46+0100\n"
6
- "PO-Revision-Date: 2012-12-06 18:54+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"
@@ -16,263 +16,497 @@ msgstr ""
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: classes/SlideshowPluginPostType.php:32
20
- msgid "Slideshows"
21
- msgstr "Diaporamas"
22
-
23
- #: classes/SlideshowPluginPostType.php:33
24
- #: views/SlideshowPluginWidget/form.php:7
25
- msgid "Slideshow"
26
- msgstr "Diaporama"
27
-
28
- #: classes/SlideshowPluginPostType.php:34
29
- msgid "Add New Slideshow"
30
- msgstr "Ajouter un nouveau diaporama"
31
-
32
- #: classes/SlideshowPluginPostType.php:35
33
- msgid "Edit slideshow"
34
- msgstr "Modifier le diaporama"
35
-
36
- #: classes/SlideshowPluginPostType.php:36
37
- msgid "New slideshow"
38
- msgstr "Nouveau diaporama"
39
-
40
- #: classes/SlideshowPluginPostType.php:37
41
- msgid "View slideshow"
42
- msgstr "Voir le diaporama"
43
-
44
- #: classes/SlideshowPluginPostType.php:38
45
- msgid "Search slideshows"
46
- msgstr "Chercher un diaporama"
47
 
48
- #: classes/SlideshowPluginPostType.php:39
49
- #: classes/SlideshowPluginPostType.php:40
50
- msgid "No slideshows found"
51
- msgstr "Aucun diaporama trouvé"
52
 
53
- #: classes/SlideshowPluginPostType.php:95
54
- msgid "Information"
55
- msgstr "Information"
56
 
57
- #: classes/SlideshowPluginPostType.php:104
58
- msgid "Slides List"
59
- msgstr "Liste de diapos"
 
 
60
 
61
- #: classes/SlideshowPluginPostType.php:113
62
- msgid "Slideshow Style"
63
- msgstr "Style du diaporama"
 
 
64
 
65
- #: classes/SlideshowPluginPostType.php:122
66
- msgid "Slideshow Settings"
67
- msgstr "Réglages du diaporama"
 
 
68
 
69
- #: classes/SlideshowPluginSettingsHandler.php:309
70
- #: classes/SlideshowPluginSettingsHandler.php:374
71
- #: classes/SlideshowPluginUpdater.php:183
72
  msgid "Yes"
73
  msgstr "Oui"
74
 
75
- #: classes/SlideshowPluginSettingsHandler.php:310
76
- #: classes/SlideshowPluginSettingsHandler.php:375
77
- #: classes/SlideshowPluginUpdater.php:184
78
  msgid "No"
79
  msgstr "Non"
80
 
81
- #: classes/SlideshowPluginSettingsHandler.php:337
82
- #: classes/SlideshowPluginUpdater.php:188
 
 
 
 
 
 
 
 
 
 
 
 
 
 
83
  msgid "Animation used for transition between slides"
84
  msgstr "Animation utilisée pour la transition entre diapos"
85
 
86
- #: classes/SlideshowPluginSettingsHandler.php:337
87
- #: classes/SlideshowPluginUpdater.php:188
88
  msgid "Slide"
89
  msgstr "Diapo"
90
 
91
- #: classes/SlideshowPluginSettingsHandler.php:337
92
- #: classes/SlideshowPluginUpdater.php:188
93
  msgid "Fade"
94
  msgstr "Effacement"
95
 
96
- #: classes/SlideshowPluginSettingsHandler.php:337
97
- #: classes/SlideshowPluginSettingsHandler.php:338
98
- #: classes/SlideshowPluginSettingsHandler.php:339
99
- #: classes/SlideshowPluginSettingsHandler.php:340
100
- #: classes/SlideshowPluginUpdater.php:188
101
- #: classes/SlideshowPluginUpdater.php:189
102
- #: classes/SlideshowPluginUpdater.php:190
103
- #: classes/SlideshowPluginUpdater.php:191
104
  msgid "Animation"
105
  msgstr "Animation"
106
 
107
- #: classes/SlideshowPluginSettingsHandler.php:338
108
- #: classes/SlideshowPluginUpdater.php:189
109
  msgid "Number of seconds the slide takes to slide in"
110
  msgstr "Nombres de secondes pour que la diapo glisse"
111
 
112
- #: classes/SlideshowPluginSettingsHandler.php:339
113
- #: classes/SlideshowPluginUpdater.php:190
114
  msgid "Number of seconds the description takes to slide in"
115
  msgstr "Nombres de secondes pour que la description glisse"
116
 
117
- #: classes/SlideshowPluginSettingsHandler.php:340
118
- #: classes/SlideshowPluginUpdater.php:191
119
  msgid "Seconds between changing slides"
120
  msgstr "Secondes entre le changement de diapos"
121
 
122
- #: classes/SlideshowPluginSettingsHandler.php:341
123
- #: classes/SlideshowPluginUpdater.php:192
124
  msgid "Number of slides to fit into one slide"
125
  msgstr "Nombre de diapositives à placer dans un diaporama"
126
 
127
- #: classes/SlideshowPluginSettingsHandler.php:341
128
- #: classes/SlideshowPluginSettingsHandler.php:342
129
- #: classes/SlideshowPluginSettingsHandler.php:343
130
- #: classes/SlideshowPluginSettingsHandler.php:344
131
- #: classes/SlideshowPluginSettingsHandler.php:345
132
- #: classes/SlideshowPluginSettingsHandler.php:346
133
- #: classes/SlideshowPluginSettingsHandler.php:347
134
- #: classes/SlideshowPluginUpdater.php:192
135
- #: classes/SlideshowPluginUpdater.php:193
136
- #: classes/SlideshowPluginUpdater.php:194
137
- #: classes/SlideshowPluginUpdater.php:195
138
- #: classes/SlideshowPluginUpdater.php:196
139
- #: classes/SlideshowPluginUpdater.php:197
140
- #: classes/SlideshowPluginUpdater.php:198
 
 
141
  msgid "Display"
142
  msgstr "Affichage"
143
 
144
- #: classes/SlideshowPluginSettingsHandler.php:342
145
- #: classes/SlideshowPluginUpdater.php:193
146
  msgid "Width of the slideshow, set to parent&#39;s width on 0"
147
  msgstr "Largeur du diaporama, s'adapte au parent lorsqu'égale à 0"
148
 
149
- #: classes/SlideshowPluginSettingsHandler.php:343
150
- #: classes/SlideshowPluginUpdater.php:194
151
  msgid "Height of the slideshow"
152
  msgstr "Hauteur du diaporama"
153
 
154
- #: classes/SlideshowPluginSettingsHandler.php:344
155
- #: classes/SlideshowPluginUpdater.php:195
156
  msgid "Height of the description boxes"
157
  msgstr "Hauteur de la boite de description"
158
 
159
- #: classes/SlideshowPluginSettingsHandler.php:345
160
- #: classes/SlideshowPluginUpdater.php:196
161
  msgid "Fit image into slide (stretching it)"
162
  msgstr "Adapter l'image dans la diapo (en l'étirant)"
163
 
164
- #: classes/SlideshowPluginSettingsHandler.php:346
165
- #: classes/SlideshowPluginUpdater.php:197
166
  msgid "Show title and description"
167
  msgstr "Montrer le titre et la description"
168
 
169
- #: classes/SlideshowPluginSettingsHandler.php:347
170
- #: classes/SlideshowPluginUpdater.php:198
171
  msgid "Hide description box, it will pop up when a mouse hovers over the slide"
172
  msgstr ""
173
  "Masquer le champ de description, ne le faire apparaître que lorsque le "
174
  "curseur de la souris passe sur la diapositive"
175
 
176
- #: classes/SlideshowPluginSettingsHandler.php:348
177
- #: classes/SlideshowPluginUpdater.php:199
178
  msgid "Automatically slide to the next slide"
179
  msgstr "Passer automatiquement à la diapo suivante"
180
 
181
- #: classes/SlideshowPluginSettingsHandler.php:348
182
- #: classes/SlideshowPluginSettingsHandler.php:349
183
- #: classes/SlideshowPluginSettingsHandler.php:350
184
- #: classes/SlideshowPluginSettingsHandler.php:351
185
- #: classes/SlideshowPluginUpdater.php:199
186
- #: classes/SlideshowPluginUpdater.php:200
187
- #: classes/SlideshowPluginUpdater.php:201
188
- #: classes/SlideshowPluginUpdater.php:202
 
 
 
 
 
189
  msgid "Control"
190
  msgstr "Controle"
191
 
192
- #: classes/SlideshowPluginSettingsHandler.php:349
193
- #: classes/SlideshowPluginUpdater.php:200
194
  msgid "Return to the beginning of the slideshow after last slide"
195
  msgstr "Retour au début du diaporama après la dernière diapositive"
196
 
197
- #: classes/SlideshowPluginSettingsHandler.php:350
198
- #: classes/SlideshowPluginUpdater.php:201
199
  msgid "Activate buttons (so the user can scroll through the slides)"
200
  msgstr ""
201
  "Activer les boutons ( l'utilisateur pourra naviger à travers les diapos)"
202
 
203
- #: classes/SlideshowPluginSettingsHandler.php:351
204
- #: classes/SlideshowPluginUpdater.php:202
205
  msgid "Show control panel (play and pause button)"
206
  msgstr "Montrer le panneau de contrôle (bouton play et pause) "
207
 
208
- #: classes/SlideshowPluginSettingsHandler.php:352
209
- msgid "Randomize slides"
210
- msgstr "Diapos aléatoires"
211
 
212
- #: classes/SlideshowPluginSettingsHandler.php:352
213
- #: classes/SlideshowPluginSettingsHandler.php:353
214
- msgid "Miscellaneous"
215
- msgstr "Divers"
216
 
217
- #: classes/SlideshowPluginSettingsHandler.php:353
218
- #, php-format
219
- msgid "Avoid content filter (disable if '%s' is shown)"
220
- msgstr "Éviter filtre de contenu (désactiver si '%s' est affiché)"
221
 
222
- #: classes/SlideshowPluginSettingsHandler.php:386
223
- #: classes/SlideshowPluginUpdater.php:186
224
- msgid "The style used for this slideshow"
225
- msgstr "Le style utilisé pour ce diaporama"
226
 
227
- #: classes/SlideshowPluginSettingsHandler.php:386
228
- #: classes/SlideshowPluginUpdater.php:186
229
- msgid "Light"
230
- msgstr "Clair"
231
 
232
- #: classes/SlideshowPluginSettingsHandler.php:386
233
- #: classes/SlideshowPluginUpdater.php:186
234
- msgid "Dark"
235
- msgstr "Sombre"
236
 
237
- #: classes/SlideshowPluginSettingsHandler.php:386
238
- #: classes/SlideshowPluginUpdater.php:186
239
- msgid "Custom"
240
- msgstr "Personnalisé"
241
 
242
- #: classes/SlideshowPluginSettingsHandler.php:387
243
- #: classes/SlideshowPluginUpdater.php:187
244
- msgid "Custom style editor"
245
- msgstr "Editeur de style personnalisé"
246
 
247
- #: classes/SlideshowPluginShortcode.php:130
248
- msgid "No slideshow selected."
249
- msgstr "Aucun diaporama choisi"
250
 
251
- #: classes/SlideshowPluginSlideInserter.php:148
 
 
 
 
 
 
 
 
 
 
 
 
 
252
  #: views/SlideshowPluginPostType/slides.php:2
253
  msgid "Insert"
254
  msgstr "Insérer"
255
 
256
- #: classes/SlideshowPluginSlideInserter.php:157
 
 
 
 
 
 
 
 
 
257
  msgid "Load more results"
258
  msgstr "Afficher plus de résultats"
259
 
260
- #: classes/SlideshowPluginSlideInserter.php:166
261
  msgid "No images were found, click here to upload some."
262
  msgstr "Aucune image trouvée, cliquer ici pour en charger"
263
 
264
- #: classes/SlideshowPluginSlideInserter.php:227
265
  msgid "Are you sure you want to delete this slide?"
266
  msgstr "Etes-vous sur de supprimer cette diapo ? "
267
 
268
- #: classes/SlideshowPluginWidget.php:20
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
269
  msgid "Enables you to show your slideshows in the widget area of your website."
270
  msgstr "Afficher vos présentations dans la zone de widgets de votre site web."
271
 
272
- #: classes/SlideshowPluginWidget.php:26
273
  msgid "Slideshow Widget"
274
  msgstr "Widget diaporama"
275
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
276
  #: views/SlideshowPluginPostType/information.php:1
277
  msgid ""
278
  "To use this slideshow in your website either add this piece of shortcode to "
@@ -293,67 +527,105 @@ msgstr ""
293
  msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
294
  msgstr ""
295
 
296
- #: views/SlideshowPluginPostType/settings.php:12
297
- msgid "settings"
298
- msgstr "réglages"
299
-
300
  #: views/SlideshowPluginPostType/settings.php:26
301
- #: views/SlideshowPluginPostType/style-settings.php:8
302
  msgid "Default"
303
  msgstr "Par défaut"
304
 
305
- #: views/SlideshowPluginPostType/slides.php:9
306
- msgid "Add slides to this slideshow by using one of the buttons above."
307
- msgstr ""
308
-
309
- #: views/SlideshowPluginPostType/slides.php:51
310
- #: views/SlideshowPluginPostType/slides.php:156
311
- #: views/SlideshowPluginWidget/form.php:2
312
- msgid "Title"
313
- msgstr "Titre"
314
 
315
- #: views/SlideshowPluginPostType/slides.php:52
316
- #: views/SlideshowPluginPostType/slides.php:157
 
 
 
 
 
 
317
  msgid "Description"
318
  msgstr "Description"
319
 
320
- #: views/SlideshowPluginPostType/slides.php:53
321
- #: views/SlideshowPluginPostType/slides.php:158
 
 
322
  msgid "Background color"
323
  msgstr "Couleur du fond"
324
 
325
- #: views/SlideshowPluginPostType/slides.php:59
326
- #: views/SlideshowPluginPostType/slides.php:124
327
- #: views/SlideshowPluginPostType/slides.php:164
328
- #: views/SlideshowPluginPostType/slides.php:212
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
329
  msgid "Same window"
330
  msgstr "Même fenetre"
331
 
332
- #: views/SlideshowPluginPostType/slides.php:60
333
- #: views/SlideshowPluginPostType/slides.php:125
334
- #: views/SlideshowPluginPostType/slides.php:165
335
- #: views/SlideshowPluginPostType/slides.php:213
 
 
 
 
336
  msgid "New window"
337
  msgstr "Nouvelle fenetre"
338
 
339
- #: views/SlideshowPluginPostType/slides.php:64
340
- #: views/SlideshowPluginPostType/slides.php:129
341
- #: views/SlideshowPluginPostType/slides.php:169
342
- #: views/SlideshowPluginPostType/slides.php:217
343
- msgid "URL"
344
- msgstr "URL"
 
345
 
346
- #: views/SlideshowPluginPostType/slides.php:80
347
- #: views/SlideshowPluginPostType/slides.php:185
 
 
348
  msgid "Youtube Video ID"
349
  msgstr "ID Vidéo Youtube"
350
 
351
- #: views/SlideshowPluginPostType/slides.php:108
352
- #: views/SlideshowPluginPostType/slides.php:115
353
- msgid "Edit"
354
- msgstr "Modifier"
 
 
 
355
 
356
- #: views/SlideshowPluginPostType/slides.php:140
357
  msgid ""
358
  "An error occurred while loading this slide, and it will not be present in "
359
  "the slideshow"
@@ -361,13 +633,24 @@ msgstr ""
361
  "Une erreur s'est produite lors du chargement de cette diapositive, et il ne "
362
  "sera pas présent dans le diaporama"
363
 
364
- #: views/SlideshowPluginPostType/slides.php:145
365
- #: views/SlideshowPluginPostType/slides.php:177
366
- #: views/SlideshowPluginPostType/slides.php:192
367
- #: views/SlideshowPluginPostType/slides.php:226
 
 
 
 
 
 
368
  msgid "Delete slide"
369
  msgstr "Supprimer la diapositive"
370
 
 
 
 
 
 
371
  #: views/SlideshowPluginPostType/support-plugin.php:3
372
  msgid "Help to keep this plugin free!"
373
  msgstr "Aidez à maintenir ce plugin gratuit"
@@ -389,34 +672,38 @@ msgid "Rate on Wordpress.org"
389
  msgstr "Evaluer sur Wordpress.org"
390
 
391
  #: views/SlideshowPluginPostType/support-plugin.php:24
 
 
 
 
392
  msgid "Questions / Suggestions"
393
  msgstr "Questions / Suggestions"
394
 
395
  #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
396
  #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
397
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:16
398
  msgid "Insert a Slideshow"
399
  msgstr "Insérer un diaporama"
400
 
401
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:6
402
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:50
403
  msgid "Insert Slideshow"
404
  msgstr "Insérer diaporama"
405
 
406
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:26
407
  msgid "Select a slideshow"
408
  msgstr "Sélectionner un diaporama"
409
 
410
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:35
411
  #: views/SlideshowPluginWidget/form.php:12
412
  msgid "Untitled slideshow"
413
  msgstr "Diaporama sans nom"
414
 
415
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:55
416
  msgid "Cancel"
417
  msgstr "Annuler"
418
 
419
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:66
420
  #, php-format
421
  msgid ""
422
  "It seems you haven't created any slideshows yet. %sYou can create a "
@@ -425,18 +712,6 @@ msgstr ""
425
  "Il semble que vous n'avez pas encore crée de diaporama. %sVous pouvez le "
426
  "faire ici%s"
427
 
428
- #: views/SlideshowPluginSlideInserter/insert-image-button.php:1
429
- msgid "Image slide"
430
- msgstr "Diapositive image"
431
-
432
- #: views/SlideshowPluginSlideInserter/insert-text-button.php:1
433
- msgid "Text slide"
434
- msgstr "Diapositive texte"
435
-
436
- #: views/SlideshowPluginSlideInserter/insert-video-button.php:1
437
- msgid "Video slide"
438
- msgstr "Diapositive vidéo"
439
-
440
  #: views/SlideshowPluginSlideInserter/search-popup.php:6
441
  msgid "Search"
442
  msgstr "Recherche"
@@ -445,6 +720,11 @@ msgstr "Recherche"
445
  msgid "Search images by title or ID"
446
  msgstr "Chercher les images par titre ou ID"
447
 
 
 
 
 
 
448
  #: views/SlideshowPluginUpload/upload-button.php:1
449
  msgid "Upload/Manage Images"
450
  msgstr "Upload/Gestion des images"
@@ -491,11 +771,5 @@ msgstr "Diaporama aléatoire"
491
  #~ "Wanner de gebruiker op de afbeelding klikt, stuur hem naar de URL van het "
492
  #~ "plaatje"
493
 
494
- #~ msgid "Style"
495
- #~ msgstr "Style"
496
-
497
- #~ msgid "Custom style"
498
- #~ msgstr "Aangepaste stijl"
499
-
500
  #~ msgid "Leave any field open to use default value."
501
  #~ msgstr "Een veld dat open wordt gelaten neemt de standaardwaarde aan."
2
  msgstr ""
3
  "Project-Id-Version: Slideshow Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-01-31 14:28+0100\n"
6
+ "PO-Revision-Date: 2013-01-31 14:29+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"
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: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: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 height when width shrinks (Fixed height can be defined when setting "
308
+ "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 "Proportional relationship%s between width and height (width:height)"
322
+ msgstr ""
323
+
324
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:424
325
+ msgid "Slideshow's height"
326
+ msgstr ""
327
+
328
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
329
+ msgid "Fit image into slide (Stretch image)"
330
+ msgstr ""
331
+
332
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:427
333
+ msgid "Hide description box, pop up when mouse hovers over"
334
+ msgstr ""
335
+
336
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
337
+ msgid ""
338
+ "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
339
+ msgstr ""
340
+
341
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:432
342
+ msgid "Pause slideshow when mouse hovers over"
343
+ msgstr ""
344
+
345
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:433
346
+ msgid "Activate navigation buttons"
347
+ msgstr ""
348
+
349
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:434
350
+ msgid "Hide navigation buttons, show when mouse hovers over"
351
+ msgstr ""
352
+
353
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:435
354
+ msgid "Activate pagination"
355
+ msgstr ""
356
+
357
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:436
358
+ msgid "Hide pagination, show when mouse hovers over"
359
+ msgstr ""
360
+
361
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:437
362
+ msgid "Activate control panel (play and pause button)"
363
+ msgstr ""
364
+
365
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:438
366
+ msgid "Hide control panel, show when mouse hovers over"
367
+ msgstr ""
368
+
369
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:439
370
+ msgid "Randomize slides"
371
+ msgstr "Diapos aléatoires"
372
+
373
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:439
374
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:440
375
+ msgid "Miscellaneous"
376
+ msgstr "Divers"
377
+
378
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:440
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:86
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 "
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:62
548
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:15
549
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:92
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:69
566
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:27
567
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:97
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:72
577
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:29
578
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:99
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:74
588
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:31
589
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:101
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:75
599
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:32
600
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:102
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:52
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:57
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:77
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"
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:84
641
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:40
642
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:65
643
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:111
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"
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 "
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"
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"
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
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Slideshow Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-01-01 18:47+0100\n"
6
- "PO-Revision-Date: 2013-01-01 18: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"
@@ -20,182 +20,181 @@ msgstr ""
20
  msgid "General Settings"
21
  msgstr "Algemene Instellingen"
22
 
23
- #: classes/SlideshowPluginGeneralSettings.php:137
24
  msgid "New"
25
  msgstr "Nieuw"
26
 
27
- #: classes/SlideshowPluginGeneralSettings.php:138
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:157
32
- #: classes/SlideshowPluginInstaller.php:329
33
- #: views/SlideshowPluginGeneralSettings/general-settings.php:26
34
  msgid "Light"
35
  msgstr "Licht"
36
 
37
- #: classes/SlideshowPluginGeneralSettings.php:158
38
- #: classes/SlideshowPluginInstaller.php:329
39
- #: views/SlideshowPluginGeneralSettings/general-settings.php:27
40
  msgid "Dark"
41
  msgstr "Donker"
42
 
43
- #: classes/SlideshowPluginGeneralSettings.php:262
44
- #: views/SlideshowPluginGeneralSettings/general-settings.php:181
45
- #: views/SlideshowPluginGeneralSettings/general-settings.php:263
46
  msgid "Untitled"
47
  msgstr "Naamloos"
48
 
49
- #: classes/SlideshowPluginInstaller.php:326
50
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:322
51
  msgid "Yes"
52
  msgstr "Ja"
53
 
54
- #: classes/SlideshowPluginInstaller.php:327
55
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:323
56
  msgid "No"
57
  msgstr "Nee"
58
 
59
- #: classes/SlideshowPluginInstaller.php:329
60
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:407
61
  msgid "The style used for this slideshow"
62
  msgstr "De stijl te gebruiken voor deze slideshow"
63
 
64
- #: classes/SlideshowPluginInstaller.php:329
65
  msgid "Custom"
66
  msgstr "Aangepast"
67
 
68
- #: classes/SlideshowPluginInstaller.php:330
69
- #: views/SlideshowPluginGeneralSettings/general-settings.php:246
70
  msgid "Custom style editor"
71
  msgstr "Aangepaste stijl bewerker"
72
 
73
- #: classes/SlideshowPluginInstaller.php:331
74
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:356
75
  msgid "Animation used for transition between slides"
76
  msgstr "Animatie tussen het wisselen van de slides"
77
 
78
- #: classes/SlideshowPluginInstaller.php:331
79
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:356
80
  msgid "Slide"
81
  msgstr "Slide"
82
 
83
- #: classes/SlideshowPluginInstaller.php:331
84
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:356
85
  msgid "Fade"
86
  msgstr "Fade"
87
 
88
- #: classes/SlideshowPluginInstaller.php:331
89
- #: classes/SlideshowPluginInstaller.php:332
90
- #: classes/SlideshowPluginInstaller.php:333
91
- #: classes/SlideshowPluginInstaller.php:334
92
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:356
93
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:357
94
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:358
95
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:359
96
  msgid "Animation"
97
  msgstr "Animatie"
98
 
99
- #: classes/SlideshowPluginInstaller.php:332
100
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:357
101
  msgid "Number of seconds the slide takes to slide in"
102
  msgstr ""
103
  "Aantal seconden dat de animatie van het inschuiven van de volgende slide "
104
  "duurt"
105
 
106
- #: classes/SlideshowPluginInstaller.php:333
107
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:358
108
  msgid "Number of seconds the description takes to slide in"
109
  msgstr "Aantal seconden dat het inschuiven van de beschrijving duurt"
110
 
111
- #: classes/SlideshowPluginInstaller.php:334
112
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:359
113
  msgid "Seconds between changing slides"
114
  msgstr "Seconden tussen het wisselen van de slides"
115
 
116
- #: classes/SlideshowPluginInstaller.php:335
117
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:360
118
  msgid "Number of slides to fit into one slide"
119
  msgstr "Aantal slides om in een slide te plaatsen"
120
 
121
- #: classes/SlideshowPluginInstaller.php:335
122
- #: classes/SlideshowPluginInstaller.php:336
123
- #: classes/SlideshowPluginInstaller.php:337
124
- #: classes/SlideshowPluginInstaller.php:338
125
- #: classes/SlideshowPluginInstaller.php:339
126
- #: classes/SlideshowPluginInstaller.php:340
127
- #: classes/SlideshowPluginInstaller.php:341
128
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:360
129
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:361
130
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:362
131
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:363
132
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:364
133
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:365
134
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:366
 
 
135
  msgid "Display"
136
  msgstr "Weergave"
137
 
138
- #: classes/SlideshowPluginInstaller.php:336
139
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:361
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:337
145
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:362
146
  msgid "Height of the slideshow"
147
  msgstr "Hoogte van de slideshow"
148
 
149
- #: classes/SlideshowPluginInstaller.php:338
150
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:363
151
  msgid "Height of the description boxes"
152
  msgstr "Hoogte van de beschrijvingen"
153
 
154
- #: classes/SlideshowPluginInstaller.php:339
155
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:364
156
  msgid "Fit image into slide (stretching it)"
157
  msgstr "Pas afbeelding in de slideshow (oprekken)"
158
 
159
- #: classes/SlideshowPluginInstaller.php:340
160
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:365
161
  msgid "Show title and description"
162
  msgstr "Toon titel en beschrijving"
163
 
164
- #: classes/SlideshowPluginInstaller.php:341
165
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:366
166
  msgid "Hide description box, it will pop up when a mouse hovers over the slide"
167
  msgstr ""
168
- "Verbeg beschrijving, toon de slide alleen wanneer de muisaanwijzer boven de "
169
  "slide is"
170
 
171
- #: classes/SlideshowPluginInstaller.php:342
172
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:367
173
  msgid "Automatically slide to the next slide"
174
  msgstr "Automatisch naar de volgende slide gaan"
175
 
176
- #: classes/SlideshowPluginInstaller.php:342
177
- #: classes/SlideshowPluginInstaller.php:343
178
- #: classes/SlideshowPluginInstaller.php:344
179
- #: classes/SlideshowPluginInstaller.php:345
180
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:367
181
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:368
182
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:369
183
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:370
 
 
 
 
 
184
  msgid "Control"
185
  msgstr "Controle"
186
 
187
- #: classes/SlideshowPluginInstaller.php:343
188
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:368
189
  msgid "Return to the beginning of the slideshow after last slide"
190
  msgstr "Keer terug naar het begin van de slideshow na de laatste slide."
191
 
192
- #: classes/SlideshowPluginInstaller.php:344
193
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:369
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:345
198
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:370
199
  msgid "Show control panel (play and pause button)"
200
  msgstr "Toon controlepaneel (speel en pause knop)"
201
 
@@ -233,31 +232,37 @@ msgstr "Slideshows zoeken"
233
  msgid "No slideshows found"
234
  msgstr "Geen slideshows gevonden"
235
 
236
- #: classes/SlideshowPluginPostType.php:121
237
  msgid "Information"
238
  msgstr "Informatie"
239
 
240
- #: classes/SlideshowPluginPostType.php:130
241
  msgid "Slides List"
242
  msgstr "Slides Lijst"
243
 
244
- #: classes/SlideshowPluginPostType.php:139
245
  msgid "Slideshow Style"
246
  msgstr "Slideshow Stijl"
247
 
248
- #: classes/SlideshowPluginPostType.php:148
249
  msgid "Slideshow Settings"
250
  msgstr "Slideshow Instellingen"
251
 
252
- #: classes/SlideshowPluginShortcode.php:130
253
- msgid "No slideshow selected."
254
- msgstr "Geen slideshow geselecteerd."
255
-
256
  #: classes/SlideshowPluginSlideInserter.php:156
257
  #: views/SlideshowPluginPostType/slides.php:2
258
  msgid "Insert"
259
  msgstr "Invoegen"
260
 
 
 
 
 
 
 
 
 
 
261
  #: classes/SlideshowPluginSlideInserter.php:165
262
  msgid "Load more results"
263
  msgstr "Meer resultaten laden"
@@ -266,20 +271,125 @@ msgstr "Meer resultaten laden"
266
  msgid "No images were found, click here to upload some."
267
  msgstr "Geen afbeeldingen gevonden, klik hier om afbeeldingen te uploaden."
268
 
269
- #: classes/SlideshowPluginSlideInserter.php:240
270
  msgid "Are you sure you want to delete this slide?"
271
  msgstr "Weet je zeker dat je deze slide wilt verwijderen?"
272
 
273
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:371
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
274
  msgid "Randomize slides"
275
  msgstr "Toon slides in willekeurige volgorde"
276
 
277
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:371
278
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:372
279
  msgid "Miscellaneous"
280
  msgstr "Overige"
281
 
282
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:372
283
  #, php-format
284
  msgid "Avoid content filter (disable if '%s' is shown)"
285
  msgstr "Content filter omzeilen (uitschakelen als '%s' wordt getoond)"
@@ -294,103 +404,128 @@ msgstr ""
294
  msgid "Slideshow Widget"
295
  msgstr "Slideshow Widget"
296
 
297
- #: views/SlideshowPluginGeneralSettings/general-settings.php:10
298
- msgid "Add slideshows"
299
- msgstr "Slideshows toevoegen"
300
-
301
- #: views/SlideshowPluginGeneralSettings/general-settings.php:11
302
- msgid "Edit slideshows"
303
- msgstr "Slideshows bewerken"
304
-
305
- #: views/SlideshowPluginGeneralSettings/general-settings.php:12
306
- msgid "Delete slideshows"
307
- msgstr "Slideshows verwijderen"
308
-
309
- #: views/SlideshowPluginGeneralSettings/general-settings.php:61
310
- msgid "User Capabilities"
311
- msgstr "Gebruikersrechten"
312
-
313
- #: views/SlideshowPluginGeneralSettings/general-settings.php:62
314
- #: views/SlideshowPluginGeneralSettings/general-settings.php:118
315
- msgid "Default Slideshow Settings"
316
- msgstr "Standaard Slideshow Instellingen"
317
-
318
- #: views/SlideshowPluginGeneralSettings/general-settings.php:63
319
- msgid "Custom Styles"
320
- msgstr "Aangepaste Stijlen"
321
-
322
- #: views/SlideshowPluginGeneralSettings/general-settings.php:72
323
- msgid "Select the user roles that will able to perform certain actions."
324
- msgstr "Kies de gebruikersrol waaraan je bepaalde rechten wilt verlenen."
325
-
326
- #: views/SlideshowPluginGeneralSettings/general-settings.php:89
327
- msgid "Untitled role"
328
- msgstr "Naamloze gebruikersfunctie"
329
-
330
- #: views/SlideshowPluginGeneralSettings/general-settings.php:142
331
- msgid "Default Slideshow Stylesheet"
332
- msgstr "Standaard Slideshow Stijl"
333
-
334
- #: views/SlideshowPluginGeneralSettings/general-settings.php:170
335
  msgid "Default stylesheets"
336
  msgstr "Standaard stijlen"
337
 
338
- #: views/SlideshowPluginGeneralSettings/general-settings.php:184
339
  msgid "Create a new custom style from this style"
340
  msgstr "Maak een nieuwe aangepaste stijl uit deze stijl"
341
 
342
- #: views/SlideshowPluginGeneralSettings/general-settings.php:186
343
  msgid "Customize"
344
  msgstr "Aanpassen"
345
 
346
- #: views/SlideshowPluginGeneralSettings/general-settings.php:200
347
  msgid "Custom stylesheets"
348
  msgstr "Aangepaste stijl"
349
 
350
- #: views/SlideshowPluginGeneralSettings/general-settings.php:213
351
- #: views/SlideshowPluginGeneralSettings/general-settings.php:292
352
  msgid "Edit this style"
353
  msgstr "Bewerk deze stijl"
354
 
355
- #: views/SlideshowPluginGeneralSettings/general-settings.php:215
356
- #: views/SlideshowPluginGeneralSettings/general-settings.php:294
357
- #: views/SlideshowPluginPostType/slides.php:146
 
358
  msgid "Edit"
359
  msgstr "Bewerken"
360
 
361
- #: views/SlideshowPluginGeneralSettings/general-settings.php:222
362
- #: views/SlideshowPluginGeneralSettings/general-settings.php:301
363
  msgid "Delete this style"
364
  msgstr "Verwijder stijl"
365
 
366
- #: views/SlideshowPluginGeneralSettings/general-settings.php:224
367
- #: views/SlideshowPluginGeneralSettings/general-settings.php:303
368
  msgid "Delete"
369
  msgstr "Verwijderen"
370
 
371
- #: views/SlideshowPluginGeneralSettings/general-settings.php:234
372
  msgid "Click 'Customize' to create a new custom stylesheet."
373
  msgstr "Klik op 'Aanpassen' om een nieuwe aangepaste stijl te maken."
374
 
375
- #: views/SlideshowPluginGeneralSettings/general-settings.php:250
376
  msgid "Select a stylesheet from the left to start customizing it."
377
  msgstr "Kies een stijl uit de linker kolom om deze aan te passen."
378
 
379
- #: views/SlideshowPluginGeneralSettings/general-settings.php:259
380
- #: views/SlideshowPluginGeneralSettings/general-settings.php:312
381
- #: views/SlideshowPluginPostType/slides.php:62
382
- #: views/SlideshowPluginPostType/slides.php:152
383
- #: views/SlideshowPluginPostType/slides.php:204
384
- #: views/SlideshowPluginPostType/slides.php:272
 
 
 
 
385
  #: views/SlideshowPluginWidget/form.php:2
386
  msgid "Title"
387
  msgstr "Titel"
388
 
389
- #: views/SlideshowPluginGeneralSettings/general-settings.php:268
390
- #: views/SlideshowPluginGeneralSettings/general-settings.php:320
391
  msgid "Style"
392
  msgstr "Stijl"
393
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
394
  #: views/SlideshowPluginPostType/information.php:1
395
  msgid ""
396
  "To use this slideshow in your website either add this piece of shortcode to "
@@ -414,83 +549,105 @@ msgstr ""
414
  "Ook kan je naar de %swidget pagina%s toegaan, om de slideshow te tonen als "
415
  "widget."
416
 
417
- #: views/SlideshowPluginPostType/settings.php:12
418
- msgid "settings"
419
- msgstr "instellingen"
420
-
421
  #: views/SlideshowPluginPostType/settings.php:26
422
  #: views/SlideshowPluginPostType/style-settings.php:11
423
  msgid "Default"
424
  msgstr "Standaard"
425
 
426
- #: views/SlideshowPluginPostType/slides.php:9
427
- msgid "Add slides to this slideshow by using one of the buttons above."
428
- msgstr "Voeg slides toe doormiddel van de bovenstaande knoppen."
429
-
430
- #: views/SlideshowPluginPostType/slides.php:57
431
- #: views/SlideshowPluginPostType/slides.php:199
432
  #: views/SlideshowPluginSlideInserter/insert-text-button.php:1
 
 
433
  msgid "Text slide"
434
  msgstr "Tekst slide"
435
 
436
- #: views/SlideshowPluginPostType/slides.php:64
437
- #: views/SlideshowPluginPostType/slides.php:158
438
- #: views/SlideshowPluginPostType/slides.php:206
439
- #: views/SlideshowPluginPostType/slides.php:278
 
 
 
 
440
  msgid "Description"
441
  msgstr "Beschrijving"
442
 
443
- #: views/SlideshowPluginPostType/slides.php:66
444
- #: views/SlideshowPluginPostType/slides.php:208
 
 
445
  msgid "Background color"
446
  msgstr "Achtergrond kleur"
447
 
448
- #: views/SlideshowPluginPostType/slides.php:71
449
- #: views/SlideshowPluginPostType/slides.php:163
450
- #: views/SlideshowPluginPostType/slides.php:213
451
- #: views/SlideshowPluginPostType/slides.php:283
 
 
 
 
452
  msgid "URL"
453
  msgstr "URL"
454
 
455
- #: views/SlideshowPluginPostType/slides.php:73
456
- #: views/SlideshowPluginPostType/slides.php:165
457
- #: views/SlideshowPluginPostType/slides.php:215
458
- #: views/SlideshowPluginPostType/slides.php:285
 
 
 
 
459
  msgid "Open URL in"
460
  msgstr "Open URL in"
461
 
462
- #: views/SlideshowPluginPostType/slides.php:75
463
- #: views/SlideshowPluginPostType/slides.php:167
464
- #: views/SlideshowPluginPostType/slides.php:217
465
- #: views/SlideshowPluginPostType/slides.php:287
 
 
 
 
466
  msgid "Same window"
467
  msgstr "Zelfde scherm"
468
 
469
- #: views/SlideshowPluginPostType/slides.php:76
470
- #: views/SlideshowPluginPostType/slides.php:168
471
- #: views/SlideshowPluginPostType/slides.php:218
472
- #: views/SlideshowPluginPostType/slides.php:288
 
 
 
 
473
  msgid "New window"
474
  msgstr "Nieuw scherm"
475
 
476
- #: views/SlideshowPluginPostType/slides.php:93
477
- #: views/SlideshowPluginPostType/slides.php:238
478
  #: views/SlideshowPluginSlideInserter/insert-video-button.php:1
 
 
479
  msgid "Video slide"
480
  msgstr "Video slide"
481
 
482
- #: views/SlideshowPluginPostType/slides.php:98
483
- #: views/SlideshowPluginPostType/slides.php:243
 
 
484
  msgid "Youtube Video ID"
485
  msgstr "Youtube Video ID"
486
 
487
- #: views/SlideshowPluginPostType/slides.php:141
488
- #: views/SlideshowPluginPostType/slides.php:263
489
  #: views/SlideshowPluginSlideInserter/insert-image-button.php:1
 
 
490
  msgid "Image slide"
491
  msgstr "Afbeeldingsslide"
492
 
493
- #: views/SlideshowPluginPostType/slides.php:179
494
  msgid ""
495
  "An error occurred while loading this slide, and it will not be present in "
496
  "the slideshow"
@@ -498,10 +655,16 @@ msgstr ""
498
  "Een fout is ontstaan tijdens het laden van deze slide, de slide zal niet te "
499
  "bekijken zijn in je slideshow"
500
 
501
- #: views/SlideshowPluginPostType/slides.php:185
502
- #: views/SlideshowPluginPostType/slides.php:226
503
- #: views/SlideshowPluginPostType/slides.php:251
504
- #: views/SlideshowPluginPostType/slides.php:297
 
 
 
 
 
 
505
  msgid "Delete slide"
506
  msgstr "Verwijder slide"
507
 
@@ -532,6 +695,10 @@ msgid "Rate on Wordpress.org"
532
  msgstr "Geef een waardering op Wordpress.org"
533
 
534
  #: views/SlideshowPluginPostType/support-plugin.php:24
 
 
 
 
535
  msgid "Questions / Suggestions"
536
  msgstr "Vragen / Opmerkingen"
537
 
@@ -542,24 +709,24 @@ msgid "Insert a Slideshow"
542
  msgstr "Slideshow invoegen"
543
 
544
  #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
545
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:52
546
  msgid "Insert Slideshow"
547
  msgstr "Slideshow invoegen"
548
 
549
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:28
550
  msgid "Select a slideshow"
551
  msgstr "Selecteer een slideshow"
552
 
553
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:37
554
  #: views/SlideshowPluginWidget/form.php:12
555
  msgid "Untitled slideshow"
556
  msgstr "Naamloze slideshow"
557
 
558
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:57
559
  msgid "Cancel"
560
  msgstr "Annuleren"
561
 
562
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:68
563
  #, php-format
564
  msgid ""
565
  "It seems you haven't created any slideshows yet. %sYou can create a "
@@ -576,6 +743,11 @@ msgstr "Zoek"
576
  msgid "Search images by title or ID"
577
  msgstr "Zoek afbeeldingen op titel of ID"
578
 
 
 
 
 
 
579
  #: views/SlideshowPluginUpload/upload-button.php:1
580
  msgid "Upload/Manage Images"
581
  msgstr "Upload/Beheer Afbeeldingen"
2
  msgstr ""
3
  "Project-Id-Version: Slideshow Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-01-31 14:08+0100\n"
6
+ "PO-Revision-Date: 2013-01-31 14:24+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"
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: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: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
 
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"
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 height when width shrinks (Fixed height can be defined when setting "
310
+ "this value to 'No')"
311
+ msgstr ""
312
+ "Maak hoogte kleiner wanneer breedte kleiner wordt (Vastgestelde hoogte moet "
313
+ "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 "Proportional relationship%s between width and height (width:height)"
326
+ msgstr "Proportionele verhouding%s tussen breedte en hoogte (breedte:hoogte)"
327
+
328
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:424
329
+ msgid "Slideshow's height"
330
+ msgstr "Slideshow's hoogte"
331
+
332
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
333
+ msgid "Fit image into slide (Stretch image)"
334
+ msgstr "Pas afbeelding in de slideshow (Afbeedling uitrekken)"
335
+
336
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:427
337
+ msgid "Hide description box, pop up when mouse hovers over"
338
+ msgstr ""
339
+ "Verbeg beschrijving, toon deze alleen wanneer de muisaanwijzer boven de "
340
+ "slideshow is"
341
+
342
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
343
+ msgid ""
344
+ "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
345
+ msgstr ""
346
+ "Gebruik responsiviteit (Maak slideshow smaller wanneer de pagina smaller "
347
+ "wordt)"
348
+
349
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:432
350
+ msgid "Pause slideshow when mouse hovers over"
351
+ msgstr "Pauzeer slideshow wanneer de muisaanwijzer boven de slideshow is"
352
+
353
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:433
354
+ msgid "Activate navigation buttons"
355
+ msgstr "Toon navigatie knoppen"
356
+
357
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:434
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:435
364
+ msgid "Activate pagination"
365
+ msgstr "Toon paginering"
366
+
367
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:436
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:437
374
+ msgid "Activate control panel (play and pause button)"
375
+ msgstr "Toon controlepaneel (speel en pause knop)"
376
+
377
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:438
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:439
384
  msgid "Randomize slides"
385
  msgstr "Toon slides in willekeurige volgorde"
386
 
387
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:439
388
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:440
389
  msgid "Miscellaneous"
390
  msgstr "Overige"
391
 
392
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:440
393
  #, php-format
394
  msgid "Avoid content filter (disable if '%s' is shown)"
395
  msgstr "Content filter omzeilen (uitschakelen als '%s' wordt getoond)"
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:86
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 "
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:62
570
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:15
571
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:92
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:69
588
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:27
589
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:97
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:72
599
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:29
600
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:99
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:74
610
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:31
611
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:101
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:75
621
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:32
622
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:102
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:52
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:57
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:77
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"
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:84
663
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:40
664
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:65
665
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:111
666
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:59
667
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:27
668
  msgid "Delete slide"
669
  msgstr "Verwijder slide"
670
 
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
 
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 "
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"
languages/slideshow-plugin-ru_RU.mo CHANGED
Binary file
languages/slideshow-plugin-ru_RU.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Slideshow Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-11-10 13:13+0100\n"
6
- "PO-Revision-Date: 2012-11-10 13:13+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"
@@ -15,231 +15,498 @@ msgstr ""
15
  "X-Generator: Poedit 1.5.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: classes/SlideshowPluginPostType.php:40
19
- msgid "Slideshows"
20
- msgstr "Слайдшоу"
21
-
22
- #: classes/SlideshowPluginPostType.php:41
23
- #: views/SlideshowPluginWidget/form.php:7
24
- msgid "Slideshow"
25
- msgstr "Слайдшоу"
26
-
27
- #: classes/SlideshowPluginPostType.php:42
28
- msgid "Add New Slideshow"
29
- msgstr "Добавить новое слайдшоу"
30
-
31
- #: classes/SlideshowPluginPostType.php:43
32
- msgid "Edit slideshow"
33
- msgstr "Редактировать слайдшоу"
34
-
35
- #: classes/SlideshowPluginPostType.php:44
36
- msgid "New slideshow"
37
- msgstr "Новое слайдшоу"
38
-
39
- #: classes/SlideshowPluginPostType.php:45
40
- msgid "View slideshow"
41
- msgstr "Просмотр слайдшоу"
42
-
43
- #: classes/SlideshowPluginPostType.php:46
44
- msgid "Search slideshows"
45
- msgstr "Поиск слайдшоу"
46
-
47
- #: classes/SlideshowPluginPostType.php:47
48
- #: classes/SlideshowPluginPostType.php:48
49
- msgid "No slideshows found"
50
- msgstr "Ни одного слайдшоу не найдено"
51
-
52
- #: classes/SlideshowPluginPostType.php:102
53
- msgid "Information"
54
- msgstr "Информация"
55
 
56
- #: classes/SlideshowPluginPostType.php:111
57
- msgid "Slides List"
58
- msgstr "Список слайдов"
59
 
60
- #: classes/SlideshowPluginPostType.php:120
61
- msgid "Slideshow Style"
62
- msgstr "Стиль слайдшоу"
63
 
64
- #: classes/SlideshowPluginPostType.php:129
65
- msgid "Slideshow Settings"
66
- msgstr "Настройки слайдшоу"
 
 
67
 
68
- #: classes/SlideshowPluginPostType.php:389
69
- msgid "light"
70
- msgstr ""
 
 
71
 
72
- #: classes/SlideshowPluginPostType.php:391
73
- msgid "slide"
 
 
74
  msgstr ""
75
 
76
- #: classes/SlideshowPluginPostType.php:412
 
77
  msgid "Yes"
78
  msgstr "Да"
79
 
80
- #: classes/SlideshowPluginPostType.php:413
 
81
  msgid "No"
82
  msgstr "Нет"
83
 
84
- #: classes/SlideshowPluginPostType.php:415
 
85
  msgid "The style used for this slideshow"
86
  msgstr "Стиль, используемый в этом слайдшоу"
87
 
88
- #: classes/SlideshowPluginPostType.php:415
89
- msgid "Light"
90
- msgstr "Светлый"
91
-
92
- #: classes/SlideshowPluginPostType.php:415
93
- msgid "Dark"
94
- msgstr "Тёмный"
95
-
96
- #: classes/SlideshowPluginPostType.php:415
97
  msgid "Custom"
98
  msgstr "Собственный"
99
 
100
- #: classes/SlideshowPluginPostType.php:416
 
101
  msgid "Custom style editor"
102
  msgstr "Редактор собственного стиля"
103
 
104
- #: classes/SlideshowPluginPostType.php:417
 
105
  msgid "Animation used for transition between slides"
106
  msgstr "Анимация, используемая для перехода между слайдами"
107
 
108
- #: classes/SlideshowPluginPostType.php:417
109
  msgid "Slide"
110
  msgstr "Слайд"
111
 
112
- #: classes/SlideshowPluginPostType.php:417
 
113
  msgid "Fade"
114
  msgstr "Затухание"
115
 
116
- #: classes/SlideshowPluginPostType.php:417
117
- #: classes/SlideshowPluginPostType.php:418
118
- #: classes/SlideshowPluginPostType.php:419
119
- #: classes/SlideshowPluginPostType.php:420
 
 
 
 
120
  msgid "Animation"
121
  msgstr "Анимационные"
122
 
123
- #: classes/SlideshowPluginPostType.php:418
 
124
  msgid "Number of seconds the slide takes to slide in"
125
  msgstr "Число секунд, которое занимает появление слайда"
126
 
127
- #: classes/SlideshowPluginPostType.php:419
 
128
  msgid "Number of seconds the description takes to slide in"
129
  msgstr "Число секунд, которое занимает появление текста"
130
 
131
- #: classes/SlideshowPluginPostType.php:420
 
132
  msgid "Seconds between changing slides"
133
  msgstr "Секунд между сменой слайдов"
134
 
135
- #: classes/SlideshowPluginPostType.php:421
 
136
  msgid "Number of slides to fit into one slide"
137
  msgstr "Число слайдов, размещённых в одном слайде"
138
 
139
- #: classes/SlideshowPluginPostType.php:421
140
- #: classes/SlideshowPluginPostType.php:422
141
- #: classes/SlideshowPluginPostType.php:423
142
- #: classes/SlideshowPluginPostType.php:424
143
- #: classes/SlideshowPluginPostType.php:425
144
- #: classes/SlideshowPluginPostType.php:426
145
- #: classes/SlideshowPluginPostType.php:427
 
 
 
 
 
 
 
 
 
146
  msgid "Display"
147
  msgstr "Визуальные"
148
 
149
- #: classes/SlideshowPluginPostType.php:422
150
  msgid "Width of the slideshow, set to parent&#39;s width on 0"
151
  msgstr ""
152
  "Ширина слайдшоу. Установите в 0 для определения ширины по родительскому "
153
  "элементу"
154
 
155
- #: classes/SlideshowPluginPostType.php:423
156
  msgid "Height of the slideshow"
157
  msgstr "Высота слайдшоу"
158
 
159
- #: classes/SlideshowPluginPostType.php:424
160
  msgid "Height of the description boxes"
161
  msgstr "Высота блока описания"
162
 
163
- #: classes/SlideshowPluginPostType.php:425
164
  msgid "Fit image into slide (stretching it)"
165
  msgstr "Уместить изображение в слайд (растянуть его)"
166
 
167
- #: classes/SlideshowPluginPostType.php:426
 
168
  msgid "Show title and description"
169
  msgstr "Показать заголовок и описание"
170
 
171
- #: classes/SlideshowPluginPostType.php:427
172
  msgid "Hide description box, it will pop up when a mouse hovers over the slide"
173
  msgstr ""
174
  "Скрыть блок описания. Он будет появляться при наведении указателя мыши "
175
  "поверх слайда"
176
 
177
- #: classes/SlideshowPluginPostType.php:428
 
178
  msgid "Automatically slide to the next slide"
179
  msgstr "Автоматический переход к следующему слайду"
180
 
181
- #: classes/SlideshowPluginPostType.php:428
182
- #: classes/SlideshowPluginPostType.php:429
183
- #: classes/SlideshowPluginPostType.php:430
184
- #: classes/SlideshowPluginPostType.php:431
 
 
 
 
 
 
 
 
 
185
  msgid "Control"
186
  msgstr "Управляющие"
187
 
188
- #: classes/SlideshowPluginPostType.php:429
 
189
  msgid "Return to the beginning of the slideshow after last slide"
190
  msgstr "Вернуться в начало слайдшоу после последнего слайда"
191
 
192
- #: classes/SlideshowPluginPostType.php:430
193
  msgid "Activate buttons (so the user can scroll through the slides)"
194
  msgstr "Активировать кнопки (пользователь сможет пролистывать слайды)"
195
 
196
- #: classes/SlideshowPluginPostType.php:431
197
  msgid "Show control panel (play and pause button)"
198
  msgstr "Отображать панель управления (кнопка воспроизведения и останова)"
199
 
200
- #: classes/SlideshowPluginPostType.php:432
201
- msgid "Randomize slides"
202
- msgstr "Слайды в случайном порядке"
203
 
204
- #: classes/SlideshowPluginPostType.php:432
205
- #: classes/SlideshowPluginPostType.php:434
206
- msgid "Miscellaneous"
207
- msgstr "Разные"
208
 
209
- #: classes/SlideshowPluginPostType.php:434
210
- #, php-format
211
- msgid "Avoid content filter (disable if '%s' is shown)"
212
- msgstr "Избегать фильтра содержимого (запрещено, если отображается '%s' )"
213
 
214
- #: classes/SlideshowPluginShortcode.php:129
215
- msgid "No slideshow selected."
216
- msgstr ""
217
 
218
- #: classes/SlideshowPluginSlideInserter.php:138
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
219
  #: views/SlideshowPluginPostType/slides.php:2
220
  msgid "Insert"
221
  msgstr "Вставить"
222
 
223
- #: classes/SlideshowPluginSlideInserter.php:147
 
 
 
 
 
 
 
 
 
224
  msgid "Load more results"
225
  msgstr "Загрузить больше результатов"
226
 
227
- #: classes/SlideshowPluginSlideInserter.php:156
228
  msgid "No images were found, click here to upload some."
229
  msgstr "Не найдено изображений, щёлкните здесь для загрузки"
230
 
231
- #: classes/SlideshowPluginSlideInserter.php:216
232
  msgid "Are you sure you want to delete this slide?"
233
  msgstr ""
234
 
235
- #: classes/SlideshowPluginWidget.php:20
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
236
  msgid "Enables you to show your slideshows in the widget area of your website."
237
  msgstr "Позволяет отобразить ваше слайдшоу в области виджетов вашего сайта"
238
 
239
- #: classes/SlideshowPluginWidget.php:26
240
  msgid "Slideshow Widget"
241
  msgstr "Виджет слайдшоу"
242
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
243
  #: views/SlideshowPluginPostType/information.php:1
244
  msgid ""
245
  "To use this slideshow in your website either add this piece of shortcode to "
@@ -248,7 +515,7 @@ msgstr ""
248
  "Для использования слайдшоу на вашем сайте добавьте этот шорткод в ваши "
249
  "записи или страницы"
250
 
251
- #: views/SlideshowPluginPostType/information.php:3
252
  msgid ""
253
  "Or add this piece of code to where ever in your website you want to place "
254
  "the slideshow"
@@ -256,86 +523,135 @@ msgstr ""
256
  "Или добавьте этот фрагмент кода в том месте, где вы желаете разместить ваше "
257
  "слайдшоу"
258
 
259
- #: views/SlideshowPluginPostType/information.php:5
260
  #, php-format
261
  msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
262
  msgstr ""
263
  "Или отправьтесь на %sстраницу виджетов%s и отобразите слайдшоу как виджет"
264
 
265
- #: views/SlideshowPluginPostType/settings.php:12
266
- msgid "settings"
267
- msgstr "настройки"
268
-
269
  #: views/SlideshowPluginPostType/settings.php:26
270
- #: views/SlideshowPluginPostType/style-settings.php:8
271
  msgid "Default"
272
  msgstr "Исходное"
273
 
274
- #: views/SlideshowPluginPostType/slides.php:9
275
- msgid "Add slides to this slideshow by using one of the buttons above."
276
- msgstr "Добавить слайды к слайдшоу с помощью одной из кнопок ниже"
277
-
278
- #: views/SlideshowPluginPostType/slides.php:47
279
- #: views/SlideshowPluginPostType/slides.php:141
280
- #: views/SlideshowPluginWidget/form.php:2
281
- msgid "Title"
282
- msgstr "Заголовок"
283
 
284
- #: views/SlideshowPluginPostType/slides.php:48
285
- #: views/SlideshowPluginPostType/slides.php:142
 
 
 
 
 
 
286
  msgid "Description"
287
  msgstr "Описание"
288
 
289
- #: views/SlideshowPluginPostType/slides.php:49
290
- #: views/SlideshowPluginPostType/slides.php:143
 
 
291
  msgid "Background color"
292
  msgstr "Фоновый цвет"
293
 
294
- #: views/SlideshowPluginPostType/slides.php:55
295
- #: views/SlideshowPluginPostType/slides.php:110
296
- #: views/SlideshowPluginPostType/slides.php:149
297
- #: views/SlideshowPluginPostType/slides.php:197
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
298
  msgid "Same window"
299
  msgstr "Текущее окно"
300
 
301
- #: views/SlideshowPluginPostType/slides.php:56
302
- #: views/SlideshowPluginPostType/slides.php:111
303
- #: views/SlideshowPluginPostType/slides.php:150
304
- #: views/SlideshowPluginPostType/slides.php:198
 
 
 
 
305
  msgid "New window"
306
  msgstr "Новое окно"
307
 
308
- #: views/SlideshowPluginPostType/slides.php:60
309
- #: views/SlideshowPluginPostType/slides.php:115
310
- #: views/SlideshowPluginPostType/slides.php:154
311
- #: views/SlideshowPluginPostType/slides.php:202
312
- msgid "URL"
313
- msgstr "URL"
 
314
 
315
- #: views/SlideshowPluginPostType/slides.php:76
316
- #: views/SlideshowPluginPostType/slides.php:170
 
 
317
  msgid "Youtube Video ID"
318
  msgstr "ID видео на Youtube"
319
 
320
- #: views/SlideshowPluginPostType/slides.php:94
321
- #: views/SlideshowPluginPostType/slides.php:101
322
- msgid "Edit"
323
- msgstr "Редактировать"
 
 
 
324
 
325
- #: views/SlideshowPluginPostType/slides.php:126
326
  msgid ""
327
  "An error occurred while loading this slide, and it will not be present in "
328
  "the slideshow"
329
  msgstr ""
330
  "При загрузке этого слайда произошла ошибка, он не будет отображен в слайдшоу"
331
 
332
- #: views/SlideshowPluginPostType/slides.php:131
333
- #: views/SlideshowPluginPostType/slides.php:162
334
- #: views/SlideshowPluginPostType/slides.php:177
335
- #: views/SlideshowPluginPostType/slides.php:211
 
 
 
 
 
 
336
  msgid "Delete slide"
337
  msgstr "Удалить слайд"
338
 
 
 
 
 
 
339
  #: views/SlideshowPluginPostType/support-plugin.php:3
340
  msgid "Help to keep this plugin free!"
341
  msgstr "Помогите сохранить плагин свободным!"
@@ -357,51 +673,44 @@ msgid "Rate on Wordpress.org"
357
  msgstr "Поставить оценку на Wordpress.org"
358
 
359
  #: views/SlideshowPluginPostType/support-plugin.php:24
 
 
 
 
360
  msgid "Questions / Suggestions"
361
  msgstr "Вопросы / Предложения"
362
 
363
  #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
364
  #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
365
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:16
366
  msgid "Insert a Slideshow"
367
  msgstr ""
368
 
369
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:6
370
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:50
371
  msgid "Insert Slideshow"
372
  msgstr ""
373
 
374
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:26
375
  msgid "Select a slideshow"
376
  msgstr ""
377
 
378
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:35
 
379
  msgid "Untitled slideshow"
380
  msgstr ""
381
 
382
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:55
383
  msgid "Cancel"
384
  msgstr ""
385
 
386
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:66
387
  #, php-format
388
  msgid ""
389
  "It seems you haven't created any slideshows yet. %sYou can create a "
390
  "slideshow here!%s"
391
  msgstr ""
392
 
393
- #: views/SlideshowPluginSlideInserter/insert-image-button.php:1
394
- msgid "Image slide"
395
- msgstr "Слайд с изображением"
396
-
397
- #: views/SlideshowPluginSlideInserter/insert-text-button.php:1
398
- msgid "Text slide"
399
- msgstr "Текстовый слайд"
400
-
401
- #: views/SlideshowPluginSlideInserter/insert-video-button.php:1
402
- msgid "Video slide"
403
- msgstr "Видео слайд"
404
-
405
  #: views/SlideshowPluginSlideInserter/search-popup.php:6
406
  msgid "Search"
407
  msgstr "Поиск"
@@ -410,6 +719,11 @@ msgstr "Поиск"
410
  msgid "Search images by title or ID"
411
  msgstr "Поиск изображения по заголовку или ID"
412
 
 
 
 
 
 
413
  #: views/SlideshowPluginUpload/upload-button.php:1
414
  msgid "Upload/Manage Images"
415
  msgstr "Загрузка/Управление изображениями"
@@ -450,11 +764,5 @@ msgstr "Случайный порядок слайдшоу"
450
  #~ "Wanner de gebruiker op de afbeelding klikt, stuur hem naar de URL van het "
451
  #~ "plaatje"
452
 
453
- #~ msgid "Style"
454
- #~ msgstr "Style"
455
-
456
- #~ msgid "Custom style"
457
- #~ msgstr "Aangepaste stijl"
458
-
459
  #~ msgid "Leave any field open to use default value."
460
  #~ msgstr "Een veld dat open wordt gelaten neemt de standaardwaarde aan."
2
  msgstr ""
3
  "Project-Id-Version: Slideshow Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-01-31 14:31+0100\n"
6
+ "PO-Revision-Date: 2013-01-31 14:32+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"
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: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: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 height when width shrinks (Fixed height can be defined when setting "
308
+ "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 "Proportional relationship%s between width and height (width:height)"
322
+ msgstr ""
323
+
324
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:424
325
+ msgid "Slideshow's height"
326
+ msgstr ""
327
+
328
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
329
+ msgid "Fit image into slide (Stretch image)"
330
+ msgstr ""
331
+
332
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:427
333
+ msgid "Hide description box, pop up when mouse hovers over"
334
+ msgstr ""
335
+
336
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
337
+ msgid ""
338
+ "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
339
+ msgstr ""
340
+
341
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:432
342
+ msgid "Pause slideshow when mouse hovers over"
343
+ msgstr ""
344
+
345
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:433
346
+ msgid "Activate navigation buttons"
347
+ msgstr ""
348
+
349
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:434
350
+ msgid "Hide navigation buttons, show when mouse hovers over"
351
+ msgstr ""
352
+
353
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:435
354
+ msgid "Activate pagination"
355
+ msgstr ""
356
+
357
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:436
358
+ msgid "Hide pagination, show when mouse hovers over"
359
+ msgstr ""
360
+
361
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:437
362
+ msgid "Activate control panel (play and pause button)"
363
+ msgstr ""
364
+
365
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:438
366
+ msgid "Hide control panel, show when mouse hovers over"
367
+ msgstr ""
368
+
369
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:439
370
+ msgid "Randomize slides"
371
+ msgstr "Слайды в случайном порядке"
372
+
373
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:439
374
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:440
375
+ msgid "Miscellaneous"
376
+ msgstr "Разные"
377
+
378
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:440
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:86
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 "
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"
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: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 "Описание"
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: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 "Текущее окно"
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 "Новое окно"
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 "Видео слайд"
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 видео на 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 "Слайд с изображением"
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:84
642
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:40
643
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:65
644
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:111
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 "Помогите сохранить плагин свободным!"
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 "Поиск"
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 "Загрузка/Управление изображениями"
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
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Slideshow Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-11-10 13:14+0100\n"
6
- "PO-Revision-Date: 2012-11-10 13:14+0100\n"
7
  "Last-Translator: Stefan Boonstra <stefanboonstra@hotmail.com>\n"
8
  "Language-Team: Kevin Tell\n"
9
  "Language: zh_CN\n"
@@ -16,317 +16,633 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: classes/SlideshowPluginPostType.php:40
20
- msgid "Slideshows"
21
- msgstr "幻灯片"
22
-
23
- #: classes/SlideshowPluginPostType.php:41
24
- #: views/SlideshowPluginWidget/form.php:7
25
- msgid "Slideshow"
26
- msgstr "幻灯片"
27
-
28
- #: classes/SlideshowPluginPostType.php:42
29
- msgid "Add New Slideshow"
30
- msgstr ""
31
-
32
- #: classes/SlideshowPluginPostType.php:43
33
- msgid "Edit slideshow"
34
- msgstr ""
35
-
36
- #: classes/SlideshowPluginPostType.php:44
37
- msgid "New slideshow"
38
  msgstr ""
39
 
40
- #: classes/SlideshowPluginPostType.php:45
41
- msgid "View slideshow"
42
  msgstr ""
43
 
44
- #: classes/SlideshowPluginPostType.php:46
45
- msgid "Search slideshows"
46
  msgstr ""
47
 
48
- #: classes/SlideshowPluginPostType.php:47
49
- #: classes/SlideshowPluginPostType.php:48
50
- msgid "No slideshows found"
51
- msgstr ""
52
-
53
- #: classes/SlideshowPluginPostType.php:102
54
- msgid "Information"
55
- msgstr "信息"
56
-
57
- #: classes/SlideshowPluginPostType.php:111
58
- msgid "Slides List"
59
  msgstr ""
60
 
61
- #: classes/SlideshowPluginPostType.php:120
62
- msgid "Slideshow Style"
63
- msgstr "幻灯片展示样式"
64
-
65
- #: classes/SlideshowPluginPostType.php:129
66
- msgid "Slideshow Settings"
67
- msgstr "幻灯片设置"
68
-
69
- #: classes/SlideshowPluginPostType.php:389
70
- msgid "light"
71
  msgstr ""
72
 
73
- #: classes/SlideshowPluginPostType.php:391
74
- msgid "slide"
 
 
75
  msgstr ""
76
 
77
- #: classes/SlideshowPluginPostType.php:412
 
78
  msgid "Yes"
79
  msgstr ""
80
 
81
- #: classes/SlideshowPluginPostType.php:413
 
82
  msgid "No"
83
  msgstr ""
84
 
85
- #: classes/SlideshowPluginPostType.php:415
 
86
  msgid "The style used for this slideshow"
87
  msgstr ""
88
 
89
- #: classes/SlideshowPluginPostType.php:415
90
- msgid "Light"
91
- msgstr ""
92
-
93
- #: classes/SlideshowPluginPostType.php:415
94
- msgid "Dark"
95
- msgstr ""
96
-
97
- #: classes/SlideshowPluginPostType.php:415
98
  msgid "Custom"
99
  msgstr ""
100
 
101
- #: classes/SlideshowPluginPostType.php:416
 
102
  msgid "Custom style editor"
103
  msgstr ""
104
 
105
- #: classes/SlideshowPluginPostType.php:417
 
106
  msgid "Animation used for transition between slides"
107
  msgstr "幻灯片滑动的动画效果设置"
108
 
109
- #: classes/SlideshowPluginPostType.php:417
110
  msgid "Slide"
111
  msgstr ""
112
 
113
- #: classes/SlideshowPluginPostType.php:417
 
114
  msgid "Fade"
115
  msgstr ""
116
 
117
- #: classes/SlideshowPluginPostType.php:417
118
- #: classes/SlideshowPluginPostType.php:418
119
- #: classes/SlideshowPluginPostType.php:419
120
- #: classes/SlideshowPluginPostType.php:420
 
 
 
 
121
  msgid "Animation"
122
  msgstr "动态"
123
 
124
- #: classes/SlideshowPluginPostType.php:418
 
125
  msgid "Number of seconds the slide takes to slide in"
126
  msgstr "幻灯片滑动速度"
127
 
128
- #: classes/SlideshowPluginPostType.php:419
 
129
  msgid "Number of seconds the description takes to slide in"
130
  msgstr "“描述”滑动速度"
131
 
132
- #: classes/SlideshowPluginPostType.php:420
 
133
  msgid "Seconds between changing slides"
134
  msgstr "幻灯片间置换的时间间隔"
135
 
136
- #: classes/SlideshowPluginPostType.php:421
 
137
  msgid "Number of slides to fit into one slide"
138
  msgstr "同一幅幻灯片中显示多少图片"
139
 
140
- #: classes/SlideshowPluginPostType.php:421
141
- #: classes/SlideshowPluginPostType.php:422
142
- #: classes/SlideshowPluginPostType.php:423
143
- #: classes/SlideshowPluginPostType.php:424
144
- #: classes/SlideshowPluginPostType.php:425
145
- #: classes/SlideshowPluginPostType.php:426
146
- #: classes/SlideshowPluginPostType.php:427
 
 
 
 
 
 
 
 
 
147
  msgid "Display"
148
  msgstr "显示"
149
 
150
- #: classes/SlideshowPluginPostType.php:422
151
  msgid "Width of the slideshow, set to parent&#39;s width on 0"
152
  msgstr "幻灯片宽度,0为继承父元素宽度"
153
 
154
- #: classes/SlideshowPluginPostType.php:423
155
  msgid "Height of the slideshow"
156
  msgstr "幻灯片高度"
157
 
158
- #: classes/SlideshowPluginPostType.php:424
159
  msgid "Height of the description boxes"
160
  msgstr "幻灯片中描述窗口的高度"
161
 
162
- #: classes/SlideshowPluginPostType.php:425
163
  msgid "Fit image into slide (stretching it)"
164
  msgstr "图片适应显示 (即拉伸图片"
165
 
166
- #: classes/SlideshowPluginPostType.php:426
 
167
  msgid "Show title and description"
168
  msgstr "显示标题和描述"
169
 
170
- #: classes/SlideshowPluginPostType.php:427
171
  msgid "Hide description box, it will pop up when a mouse hovers over the slide"
172
  msgstr "隐藏描述窗口,只有鼠标移至幻灯片才弹出"
173
 
174
- #: classes/SlideshowPluginPostType.php:428
 
175
  msgid "Automatically slide to the next slide"
176
  msgstr "幻灯片自动滚动显示"
177
 
178
- #: classes/SlideshowPluginPostType.php:428
179
- #: classes/SlideshowPluginPostType.php:429
180
- #: classes/SlideshowPluginPostType.php:430
181
- #: classes/SlideshowPluginPostType.php:431
 
 
 
 
 
 
 
 
 
182
  msgid "Control"
183
  msgstr "控制"
184
 
185
- #: classes/SlideshowPluginPostType.php:429
 
186
  msgid "Return to the beginning of the slideshow after last slide"
187
  msgstr "循环展示幻灯片"
188
 
189
- #: classes/SlideshowPluginPostType.php:430
190
  msgid "Activate buttons (so the user can scroll through the slides)"
191
  msgstr "激活按钮 (用户可通过按钮左右滚动显示幻灯片)"
192
 
193
- #: classes/SlideshowPluginPostType.php:431
194
  msgid "Show control panel (play and pause button)"
195
  msgstr "显示控制面板 (播放和停止按钮)"
196
 
197
- #: classes/SlideshowPluginPostType.php:432
198
- msgid "Randomize slides"
199
- msgstr "随机幻灯片"
200
 
201
- #: classes/SlideshowPluginPostType.php:432
202
- #: classes/SlideshowPluginPostType.php:434
203
- msgid "Miscellaneous"
204
- msgstr "其他"
205
 
206
- #: classes/SlideshowPluginPostType.php:434
207
- #, php-format
208
- msgid "Avoid content filter (disable if '%s' is shown)"
209
  msgstr ""
210
 
211
- #: classes/SlideshowPluginShortcode.php:129
212
- msgid "No slideshow selected."
213
  msgstr ""
214
 
215
- #: classes/SlideshowPluginSlideInserter.php:138
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
216
  #: views/SlideshowPluginPostType/slides.php:2
217
  msgid "Insert"
218
  msgstr "插入"
219
 
220
- #: classes/SlideshowPluginSlideInserter.php:147
 
 
 
 
 
 
 
 
 
221
  msgid "Load more results"
222
  msgstr ""
223
 
224
- #: classes/SlideshowPluginSlideInserter.php:156
225
  msgid "No images were found, click here to upload some."
226
  msgstr ""
227
 
228
- #: classes/SlideshowPluginSlideInserter.php:216
229
  msgid "Are you sure you want to delete this slide?"
230
  msgstr ""
231
 
232
- #: classes/SlideshowPluginWidget.php:20
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
233
  msgid "Enables you to show your slideshows in the widget area of your website."
234
  msgstr ""
235
 
236
- #: classes/SlideshowPluginWidget.php:26
237
  msgid "Slideshow Widget"
238
  msgstr ""
239
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
240
  #: views/SlideshowPluginPostType/information.php:1
241
  msgid ""
242
  "To use this slideshow in your website either add this piece of shortcode to "
243
  "your posts or pages"
244
  msgstr "要在你的网站使用幻灯片功能,请把下面代码加入到文章或者页面内:"
245
 
246
- #: views/SlideshowPluginPostType/information.php:3
247
  msgid ""
248
  "Or add this piece of code to where ever in your website you want to place "
249
  "the slideshow"
250
  msgstr "或者加入这串代码到你网站想展示的地方:"
251
 
252
- #: views/SlideshowPluginPostType/information.php:5
253
  #, php-format
254
  msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
255
  msgstr "%s或者到小工具页面把幻灯片加入小工具内。%s"
256
 
257
- #: views/SlideshowPluginPostType/settings.php:12
258
- msgid "settings"
259
- msgstr "设置"
260
-
261
  #: views/SlideshowPluginPostType/settings.php:26
262
- #: views/SlideshowPluginPostType/style-settings.php:8
263
  msgid "Default"
264
  msgstr ""
265
 
266
- #: views/SlideshowPluginPostType/slides.php:9
267
- msgid "Add slides to this slideshow by using one of the buttons above."
268
- msgstr ""
269
-
270
- #: views/SlideshowPluginPostType/slides.php:47
271
- #: views/SlideshowPluginPostType/slides.php:141
272
- #: views/SlideshowPluginWidget/form.php:2
273
- msgid "Title"
274
- msgstr ""
275
 
276
- #: views/SlideshowPluginPostType/slides.php:48
277
- #: views/SlideshowPluginPostType/slides.php:142
 
 
 
 
 
 
278
  msgid "Description"
279
  msgstr ""
280
 
281
- #: views/SlideshowPluginPostType/slides.php:49
282
- #: views/SlideshowPluginPostType/slides.php:143
 
 
283
  msgid "Background color"
284
  msgstr ""
285
 
286
- #: views/SlideshowPluginPostType/slides.php:55
287
- #: views/SlideshowPluginPostType/slides.php:110
288
- #: views/SlideshowPluginPostType/slides.php:149
289
- #: views/SlideshowPluginPostType/slides.php:197
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
290
  msgid "Same window"
291
  msgstr ""
292
 
293
- #: views/SlideshowPluginPostType/slides.php:56
294
- #: views/SlideshowPluginPostType/slides.php:111
295
- #: views/SlideshowPluginPostType/slides.php:150
296
- #: views/SlideshowPluginPostType/slides.php:198
 
 
 
 
297
  msgid "New window"
298
  msgstr ""
299
 
300
- #: views/SlideshowPluginPostType/slides.php:60
301
- #: views/SlideshowPluginPostType/slides.php:115
302
- #: views/SlideshowPluginPostType/slides.php:154
303
- #: views/SlideshowPluginPostType/slides.php:202
304
- msgid "URL"
305
- msgstr ""
 
306
 
307
- #: views/SlideshowPluginPostType/slides.php:76
308
- #: views/SlideshowPluginPostType/slides.php:170
 
 
309
  msgid "Youtube Video ID"
310
  msgstr ""
311
 
312
- #: views/SlideshowPluginPostType/slides.php:94
313
- #: views/SlideshowPluginPostType/slides.php:101
314
- msgid "Edit"
315
- msgstr ""
 
 
 
316
 
317
- #: views/SlideshowPluginPostType/slides.php:126
318
  msgid ""
319
  "An error occurred while loading this slide, and it will not be present in "
320
  "the slideshow"
321
  msgstr ""
322
 
323
- #: views/SlideshowPluginPostType/slides.php:131
324
- #: views/SlideshowPluginPostType/slides.php:162
325
- #: views/SlideshowPluginPostType/slides.php:177
326
- #: views/SlideshowPluginPostType/slides.php:211
 
 
 
 
 
 
327
  msgid "Delete slide"
328
  msgstr ""
329
 
 
 
 
 
 
330
  #: views/SlideshowPluginPostType/support-plugin.php:3
331
  msgid "Help to keep this plugin free!"
332
  msgstr "协助保持本插件免费"
@@ -347,51 +663,44 @@ msgid "Rate on Wordpress.org"
347
  msgstr "为本插件打分"
348
 
349
  #: views/SlideshowPluginPostType/support-plugin.php:24
 
 
 
 
350
  msgid "Questions / Suggestions"
351
  msgstr "问题/建议"
352
 
353
  #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
354
  #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
355
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:16
356
  msgid "Insert a Slideshow"
357
  msgstr ""
358
 
359
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:6
360
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:50
361
  msgid "Insert Slideshow"
362
  msgstr ""
363
 
364
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:26
365
  msgid "Select a slideshow"
366
  msgstr ""
367
 
368
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:35
 
369
  msgid "Untitled slideshow"
370
  msgstr ""
371
 
372
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:55
373
  msgid "Cancel"
374
  msgstr ""
375
 
376
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:66
377
  #, php-format
378
  msgid ""
379
  "It seems you haven't created any slideshows yet. %sYou can create a "
380
  "slideshow here!%s"
381
  msgstr ""
382
 
383
- #: views/SlideshowPluginSlideInserter/insert-image-button.php:1
384
- msgid "Image slide"
385
- msgstr "图示幻灯片"
386
-
387
- #: views/SlideshowPluginSlideInserter/insert-text-button.php:1
388
- msgid "Text slide"
389
- msgstr "文本幻灯片"
390
-
391
- #: views/SlideshowPluginSlideInserter/insert-video-button.php:1
392
- msgid "Video slide"
393
- msgstr "视频幻灯片"
394
-
395
  #: views/SlideshowPluginSlideInserter/search-popup.php:6
396
  msgid "Search"
397
  msgstr ""
@@ -400,6 +709,11 @@ msgstr ""
400
  msgid "Search images by title or ID"
401
  msgstr ""
402
 
 
 
 
 
 
403
  #: views/SlideshowPluginUpload/upload-button.php:1
404
  msgid "Upload/Manage Images"
405
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: Slideshow Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-01-31 14:26+0100\n"
6
+ "PO-Revision-Date: 2013-01-31 14:27+0100\n"
7
  "Last-Translator: Stefan Boonstra <stefanboonstra@hotmail.com>\n"
8
  "Language-Team: Kevin Tell\n"
9
  "Language: zh_CN\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: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: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 height when width shrinks (Fixed height can be defined when setting "
305
+ "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 "Proportional relationship%s between width and height (width:height)"
319
+ msgstr ""
320
+
321
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:424
322
+ msgid "Slideshow's height"
323
+ msgstr ""
324
+
325
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
326
+ msgid "Fit image into slide (Stretch image)"
327
+ msgstr ""
328
+
329
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:427
330
+ msgid "Hide description box, pop up when mouse hovers over"
331
+ msgstr ""
332
+
333
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
334
+ msgid ""
335
+ "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
336
+ msgstr ""
337
+
338
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:432
339
+ msgid "Pause slideshow when mouse hovers over"
340
+ msgstr ""
341
+
342
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:433
343
+ msgid "Activate navigation buttons"
344
+ msgstr ""
345
+
346
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:434
347
+ msgid "Hide navigation buttons, show when mouse hovers over"
348
+ msgstr ""
349
+
350
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:435
351
+ msgid "Activate pagination"
352
+ msgstr ""
353
+
354
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:436
355
+ msgid "Hide pagination, show when mouse hovers over"
356
+ msgstr ""
357
+
358
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:437
359
+ msgid "Activate control panel (play and pause button)"
360
+ msgstr ""
361
+
362
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:438
363
+ msgid "Hide control panel, show when mouse hovers over"
364
+ msgstr ""
365
+
366
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:439
367
+ msgid "Randomize slides"
368
+ msgstr "随机幻灯片"
369
+
370
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:439
371
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:440
372
+ msgid "Miscellaneous"
373
+ msgstr "其他"
374
+
375
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:440
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:86
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:62
542
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:15
543
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:92
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:69
560
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:27
561
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:97
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:72
571
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:29
572
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:99
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:74
582
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:31
583
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:101
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:75
593
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:32
594
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:102
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:52
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:57
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:77
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:84
633
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:40
634
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:65
635
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:111
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 "协助保持本插件免费"
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 ""
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 ""
readme.txt CHANGED
@@ -4,8 +4,8 @@ Contributors: stefanboonstra
4
  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
8
- Stable tag: 2.1.23
9
  License: GPLv2
10
 
11
  Integrate a fancy slideshow in just five steps. - Rainbows. Rainbows everywhere.
@@ -13,8 +13,6 @@ Integrate a fancy slideshow in just five steps. - Rainbows. Rainbows everywhere.
13
 
14
  == Description ==
15
 
16
- Slideshow version 2.2.0 Beta is now available for testing. [Click here to try it out!](http://stefanboonstra.com/)
17
-
18
  Slideshow provides an easy way to integrate a slideshow for any WordPress installation.
19
 
20
  Any image can be loaded into the slideshow by picking it from the WordPress media page, even images you've already
@@ -29,6 +27,7 @@ different images, settings and styles for each one of them.
29
  - Image slides
30
  - Text slides
31
  - Video slides
 
32
  - Place it anywhere on your website
33
  - Run multiple slideshows on the same page
34
  - Change animations and handling
@@ -37,12 +36,12 @@ different images, settings and styles for each one of them.
37
 
38
  = Languages =
39
 
40
- - Chinese (Translated by [Kevin Tell](http://www.ivygg.com/))
41
  - Dutch
42
  - English
43
- - French (Translated by [Wptheme](http://wptheme.fr/))
44
- - Spanish (Translated by [Violeta Rosales](https://twitter.com/violetisha))
45
- - Russian (Translated by [Oleg Fritz](http://www.facebook.com/profile.php?id=100001331241069))
46
 
47
  Feel free to send me your own translation of the plugin to my e-mail address: wordpress@stefanboonstra.com. Many
48
  thanks in advance!
@@ -165,6 +164,15 @@ personal taste.
165
 
166
  == Changelog ==
167
 
 
 
 
 
 
 
 
 
 
168
  = 2.1.23 =
169
  * Default settings can now be changed from the 'General Settings' page.
170
  * Custom styles are now shared across all slideshows and endless customizations can be created.
@@ -346,6 +354,16 @@ personal taste.
346
  * Initial release.
347
 
348
 
 
 
 
 
 
 
 
 
 
 
349
  == Links ==
350
 
351
  * [Stefan Boonstra](http://stefanboonstra.com/)
4
  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.0
9
  License: GPLv2
10
 
11
  Integrate a fancy slideshow in just five steps. - Rainbows. Rainbows everywhere.
13
 
14
  == Description ==
15
 
 
 
16
  Slideshow provides an easy way to integrate a slideshow for any WordPress installation.
17
 
18
  Any image can be loaded into the slideshow by picking it from the WordPress media page, even images you've already
27
  - Image slides
28
  - Text slides
29
  - Video slides
30
+ - Responsive
31
  - Place it anywhere on your website
32
  - Run multiple slideshows on the same page
33
  - Change animations and handling
36
 
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/))
43
+ - Russian (56% Translated by [Oleg Fritz](http://www.facebook.com/profile.php?id=100001331241069))
44
+ - Spanish (62% Translated by [Violeta Rosales](https://twitter.com/violetisha))
45
 
46
  Feel free to send me your own translation of the plugin to my e-mail address: wordpress@stefanboonstra.com. Many
47
  thanks in advance!
164
 
165
  == Changelog ==
166
 
167
+ = 2.2.0 =
168
+ * The slideshow script has been completely renewed, making it more lightweight, more versatile and responsive altogether.
169
+ * Slideshow now has a continuing loop.
170
+ * Pagination bullets can now be shown.
171
+ * Slide order can now be completely random, as can the animation type.
172
+ * Added new animations.
173
+ * Slideshow now pauses when a (YouTube) video is playing or when a mouse is hovering over.
174
+ * Fixed: Image title and description were wrongly filled with attachment's content.
175
+
176
  = 2.1.23 =
177
  * Default settings can now be changed from the 'General Settings' page.
178
  * Custom styles are now shared across all slideshows and endless customizations can be created.
354
  * Initial release.
355
 
356
 
357
+ == Upgrade Notice ==
358
+
359
+ = 2.2.0 =
360
+ This update brings a completely renewed slideshow, which comes with the necessary changes to the way the HTML and CSS is
361
+ built up. To keep your slideshows styled after the update, all slideshows will be reset to the 'Light' or 'Dark'
362
+ stylesheet. Your customized slideshows will remain intact, but it's sensible to create a new custom stylesheet and use
363
+ the old one to customize it with. To support responsiveness, there's also been some changes to the slideshow's settings.
364
+ Any setting you have changed to alter the dimensions of the plugin, may be lost. I'm sorry for the inconvenience.
365
+
366
+
367
  == Links ==
368
 
369
  * [Stefan Boonstra](http://stefanboonstra.com/)
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.1.23
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.1.23';
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.0
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.0';
26
 
27
  /**
28
  * Bootstraps the application by assigning the right functions to
style/SlideshowPlugin/functional.css CHANGED
@@ -1 +1 @@
1
- .slideshow_container{position:relative}.slideshow_container .slideshow_overflow{position:relative;overflow:hidden}.slideshow_container .slideshow{height:100%;width:200%;overflow:hidden}.slideshow_container img{margin:0!important;padding:0!important;max-width:100%;max-height:100%;border:0}.slideshow_container .slide{height:100%;float:left!important;overflow:hidden;text-align:center}.slideshow_container .transparent{zoom:1}.slideshow_container .transparent:hover{zoom:1}.slideshow_container .description{position:absolute;bottom:0;display:none;width:inherit}.slideshow_container .controlPanel{position:absolute;top:5px;left:50%;display:none}.slideshow_container .controlPanel ul{list-style:none;margin:0;padding:0}.slideshow_container .controlPanel ul li{float:left}.slideshow_container .controlPanel ul li:hover{cursor:pointer}.slideshow_container .button{padding:0;position:absolute;top:50%;cursor:pointer;display:none}.slideshow_container .previous{left:5px}.slideshow_container .next{right:5px}.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}.slideshow_container h1,h2,h3,h4,h5,h6{margin:0;padding:10px}.slideshow_container p{margin:0;padding:10px}.slideshow_container a{margin:0;display:block}.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/SlideshowPlugin/style-dark.css CHANGED
@@ -1,79 +1,70 @@
1
- .slideshow_container {
2
- background: #000;
3
- }
4
-
5
- .slideshow_container .slideshow { }
6
 
7
- .slideshow_container img { }
8
 
9
- .slideshow_container .slide {
10
- margin-right: 2px;
11
- }
 
 
12
 
13
- .slideshow_container .transparent {
14
- filter: alpha(opacity = 50);
15
- opacity: 0.5;
16
- }
17
-
18
- .slideshow_container .transparent:hover {
19
- filter: alpha(opacity = 80);
20
- opacity: 0.8;
21
- }
22
 
23
- .slideshow_container .description {
24
- background: #000;
25
- }
26
 
27
- .slideshow_container .controlPanel {
28
  width: 20px;
29
  height: 20px;
 
30
  }
31
 
32
- .slideshow_container .controlPanel ul { }
33
 
34
- .slideshow_container .controlPanel ul li {
35
- margin: 3px;
36
  width: 20px;
37
  height: 20px;
38
  }
39
 
40
- .slideshow_container .controlPanel ul li:hover { }
41
 
42
- .slideshow_container .play {
43
  background: url('%plugin-url%/images/SlideshowPlugin/dark-controlpanel.png') 0 0 no-repeat;
44
  }
45
 
46
- .slideshow_container .pause {
47
  background: url('%plugin-url%/images/SlideshowPlugin/dark-controlpanel.png') -20px 0 no-repeat;
48
  }
49
 
50
- .slideshow_container .button {
51
  margin-top: -50px;
52
  height: 100px;
53
  width: 24px;
54
  background: url('%plugin-url%/images/SlideshowPlugin/dark-arrows.png') no-repeat;
55
  }
56
 
57
- .slideshow_container .previous { }
58
 
59
- .slideshow_container .next {
60
  background-position: -24px 0;
61
  }
62
 
63
- .slideshow_container h2,
64
- .slideshow_container p,
65
- .slideshow_container a {
66
- text-decoration: none;
67
- color: #fff;
68
- text-align: center;
69
- }
70
 
71
- .slideshow_container h2 {
72
- margin: 5px;
73
- font-size: 25px;
74
  }
75
 
76
- .slideshow_container p {
77
- margin: 7px;
78
- font-size: 15px;
 
 
 
 
79
  }
1
+ .slideshow_container { background: #000; }
 
 
 
 
2
 
3
+ .slideshow_container a { text-decoration: none; }
4
 
5
+ .slideshow_container .slideshow_slide { margin-right: 2px; }
6
+ .slideshow_container .slideshow_slide_text h2 { text-align: center; font-size: 1.3em; }
7
+ .slideshow_container .slideshow_slide_text p { text-align: center; }
8
+ .slideshow_container .slideshow_slide_image { }
9
+ .slideshow_container .slideshow_slide_vieo { }
10
 
11
+ .slideshow_container .slideshow_description { background: #000; width: 100%; }
12
+ .slideshow_container .slideshow_description h2 { color: #fff; font-size: 1.3em; text-align: center; }
13
+ .slideshow_container .slideshow_description p { color: #fff; text-align: center; }
 
 
 
 
 
 
14
 
15
+ .slideshow_container .slideshow_transparent { filter: alpha(opacity = 50); opacity: 0.5; }
16
+ .slideshow_container .slideshow_transparent:hover { filter: alpha(opacity = 80); opacity: 0.8; }
 
17
 
18
+ .slideshow_container .slideshow_controlPanel {
19
  width: 20px;
20
  height: 20px;
21
+ margin-left: -10px;
22
  }
23
 
24
+ .slideshow_container .slideshow_controlPanel ul { }
25
 
26
+ .slideshow_container .slideshow_controlPanel ul li {
 
27
  width: 20px;
28
  height: 20px;
29
  }
30
 
31
+ .slideshow_container .slideshow_controlPanel ul li:hover { }
32
 
33
+ .slideshow_container .slideshow_play {
34
  background: url('%plugin-url%/images/SlideshowPlugin/dark-controlpanel.png') 0 0 no-repeat;
35
  }
36
 
37
+ .slideshow_container .slideshow_pause {
38
  background: url('%plugin-url%/images/SlideshowPlugin/dark-controlpanel.png') -20px 0 no-repeat;
39
  }
40
 
41
+ .slideshow_container .slideshow_button {
42
  margin-top: -50px;
43
  height: 100px;
44
  width: 24px;
45
  background: url('%plugin-url%/images/SlideshowPlugin/dark-arrows.png') no-repeat;
46
  }
47
 
48
+ .slideshow_container .slideshow_previous { }
49
 
50
+ .slideshow_container .slideshow_next {
51
  background-position: -24px 0;
52
  }
53
 
54
+ .slideshow_container .slideshow_pagination { bottom: 20px; }
55
+
56
+ .slideshow_container .slideshow_pagination_center { }
 
 
 
 
57
 
58
+ .slideshow_container .slideshow_pagination .slideshow_currentView {
59
+ filter: alpha(opacity = 80);
60
+ opacity: 0.8;
61
  }
62
 
63
+ .slideshow_container .slideshow_pagination ul { }
64
+
65
+ .slideshow_container .slideshow_pagination ul li {
66
+ margin: 0 2px;
67
+ width: 15px;
68
+ height: 15px;
69
+ background: url('%plugin-url%/images/SlideshowPlugin/dark-bullet.png');
70
  }
style/SlideshowPlugin/style-light.css CHANGED
@@ -1,80 +1,74 @@
1
  .slideshow_container { }
2
 
3
- .slideshow_container .slideshow { }
4
 
5
- .slideshow_container img { }
 
 
 
 
6
 
7
- .slideshow_container .slide {
8
- margin-right: 2px;
9
- }
10
-
11
- .slideshow_container .transparent {
12
- filter: alpha(opacity = 50);
13
- opacity: 0.5;
14
- }
15
-
16
- .slideshow_container .transparent:hover {
17
- filter: alpha(opacity = 80);
18
- opacity: 0.8;
19
- }
20
 
21
- .slideshow_container .description {
22
- background: #000;
23
- }
24
 
25
- .slideshow_container .controlPanel {
26
  width: 21px;
27
  height: 21px;
 
28
  background: #000;
29
  border-radius: 2px;
30
  -moz-border-radius: 10px;
31
  }
32
 
33
- .slideshow_container .controlPanel ul { }
34
 
35
- .slideshow_container .controlPanel ul li {
36
  margin: 3px;
37
  width: 15px;
38
  height: 15px;
39
  }
40
 
41
- .slideshow_container .controlPanel ul li:hover { }
42
 
43
- .slideshow_container .play {
44
  background: url('%plugin-url%/images/SlideshowPlugin/light-controlpanel.png') 0 0 no-repeat;
45
  }
46
 
47
- .slideshow_container .pause {
48
  background: url('%plugin-url%/images/SlideshowPlugin/light-controlpanel.png') -15px 0 no-repeat;
49
  }
50
 
51
- .slideshow_container .button {
52
  margin-top: -20px;
53
  height: 40px;
54
  width: 19px;
55
  background: url('%plugin-url%/images/SlideshowPlugin/light-arrows.png') no-repeat;
56
  }
57
 
58
- .slideshow_container .previous { }
59
 
60
- .slideshow_container .next {
61
  background-position: -19px 0;
62
  }
63
 
64
- .slideshow_container h2,
65
- .slideshow_container p,
66
- .slideshow_container a {
67
- text-decoration: none;
68
- color: #fff;
69
- text-align: center;
70
- }
71
 
72
- .slideshow_container h2 {
73
- margin: 5px;
74
- font-size: 25px;
75
  }
76
 
77
- .slideshow_container p {
78
- margin: 7px;
79
- font-size: 15px;
 
 
 
 
80
  }
1
  .slideshow_container { }
2
 
3
+ .slideshow_container a { text-decoration: none; }
4
 
5
+ .slideshow_container .slideshow_slide { margin-right: 2px; }
6
+ .slideshow_container .slideshow_slide_text h2 { text-align: center; font-size: 1.3em; }
7
+ .slideshow_container .slideshow_slide_text p { text-align: center; }
8
+ .slideshow_container .slideshow_slide_image { }
9
+ .slideshow_container .slideshow_slide_vieo { }
10
 
11
+ .slideshow_container .slideshow_description { background: #000; width: 100%; }
12
+ .slideshow_container .slideshow_description h2 { color: #fff; font-size: 1.3em; text-align: center; }
13
+ .slideshow_container .slideshow_description p { color: #fff; text-align: center; }
 
 
 
 
 
 
 
 
 
 
14
 
15
+ .slideshow_container .slideshow_transparent { filter: alpha(opacity = 50); opacity: 0.5; }
16
+ .slideshow_container .slideshow_transparent:hover { filter: alpha(opacity = 80); opacity: 0.8; }
 
17
 
18
+ .slideshow_container .slideshow_controlPanel {
19
  width: 21px;
20
  height: 21px;
21
+ margin-left: -11px;
22
  background: #000;
23
  border-radius: 2px;
24
  -moz-border-radius: 10px;
25
  }
26
 
27
+ .slideshow_container .slideshow_controlPanel ul { }
28
 
29
+ .slideshow_container .slideshow_controlPanel ul li {
30
  margin: 3px;
31
  width: 15px;
32
  height: 15px;
33
  }
34
 
35
+ .slideshow_container .slideshow_controlPanel ul li:hover { }
36
 
37
+ .slideshow_container .slideshow_play {
38
  background: url('%plugin-url%/images/SlideshowPlugin/light-controlpanel.png') 0 0 no-repeat;
39
  }
40
 
41
+ .slideshow_container .slideshow_pause {
42
  background: url('%plugin-url%/images/SlideshowPlugin/light-controlpanel.png') -15px 0 no-repeat;
43
  }
44
 
45
+ .slideshow_container .slideshow_button {
46
  margin-top: -20px;
47
  height: 40px;
48
  width: 19px;
49
  background: url('%plugin-url%/images/SlideshowPlugin/light-arrows.png') no-repeat;
50
  }
51
 
52
+ .slideshow_container .slideshow_previous { }
53
 
54
+ .slideshow_container .slideshow_next {
55
  background-position: -19px 0;
56
  }
57
 
58
+ .slideshow_container .slideshow_pagination { bottom: 16px; }
59
+
60
+ .slideshow_container .slideshow_pagination_center { }
 
 
 
 
61
 
62
+ .slideshow_container .slideshow_pagination .slideshow_currentView {
63
+ filter: alpha(opacity = 80);
64
+ opacity: 0.8;
65
  }
66
 
67
+ .slideshow_container .slideshow_pagination ul { }
68
+
69
+ .slideshow_container .slideshow_pagination ul li {
70
+ margin: 0 2px;
71
+ width: 11px;
72
+ height: 11px;
73
+ background: url('%plugin-url%/images/SlideshowPlugin/light-bullet.png');
74
  }
style/SlideshowPluginGeneralSettings/general-settings.css CHANGED
@@ -29,7 +29,7 @@
29
  /* ==== ==== ==== Custom styles ==== ==== ==== */
30
 
31
  .custom-styles {
32
- min-width: 500px;
33
  }
34
 
35
  .custom-styles .styles-list {
@@ -88,7 +88,7 @@
88
  .custom-styles .style-editors {
89
  float: left;
90
 
91
- min-width: 350px;
92
 
93
  padding-left: 10px;
94
  margin: 0 -21px 0 -1px;
29
  /* ==== ==== ==== Custom styles ==== ==== ==== */
30
 
31
  .custom-styles {
32
+ min-width: 650px;
33
  }
34
 
35
  .custom-styles .styles-list {
88
  .custom-styles .style-editors {
89
  float: left;
90
 
91
+ min-width: 500px;
92
 
93
  padding-left: 10px;
94
  margin: 0 -21px 0 -1px;
views/SlideshowPlugin/slideshow.php CHANGED
@@ -1,125 +1,23 @@
1
- <div class="slideshow_container slideshow_container_<?php echo (is_numeric($sessionID)) ? $sessionID : 0; ?>" style="width: <?php echo (is_numeric($settings['width']))? $settings['width'] : 0; ?>px; height: <?php echo (is_numeric($settings['height']))? $settings['height'] : 0; ?>px;">
2
- <div class="slideshow_overflow" style="width: <?php echo (is_numeric($settings['width']))? $settings['width'] : 0; ?>px; height: <?php echo (is_numeric($settings['height']))? $settings['height'] : 0; ?>px;">
3
- <div class="slideshow">
4
- <?php if(count($slides) > 0): ?>
5
- <?php $i = 0; ?>
6
- <?php foreach($slides as $slide): ?>
7
 
8
- <?php
9
- $title = $description = $url = $target = '';
10
- if(isset($slide['title']))
11
- $title = SlideshowPluginSecurity::htmlspecialchars_allow_exceptions($slide['title']);
12
- if(isset($slide['description']))
13
- $description = SlideshowPluginSecurity::htmlspecialchars_allow_exceptions($slide['description']);
14
- if(isset($slide['url']))
15
- $url = htmlspecialchars($slide['url']);
16
- if(isset($slide['urlTarget']))
17
- $target = htmlspecialchars($slide['urlTarget']);
18
- ?>
19
 
20
- <?php if($slide['type'] == 'text'): ?>
 
 
21
 
22
- <?php
23
- $color = '';
24
- if(isset($slide['color']))
25
- $color = htmlspecialchars($slide['color']);
26
- ?>
27
 
28
- <div class="slide slide_<?php echo $i; ?>" <?php if(!empty($color)) echo 'style="background: #' . $color . ';"'; ?> style="height: <?php echo (is_numeric($settings['height']))? $settings['height'] : 0; ?>px;">
29
- <a <?php if(!empty($url)) echo 'href="' . $url . '"';?> <?php if(!empty($target)) echo 'target="' . $target . '"'; ?>>
30
- <h2><?php echo $title; ?></h2>
31
- <p><?php echo $description; ?></p>
32
- </a>
33
- </div>
34
-
35
- <?php elseif($slide['type'] == 'video'): ?>
36
-
37
- <?php
38
- $videoId = '';
39
- if(isset($slide['videoId']))
40
- $videoId = htmlspecialchars($slide['videoId']);
41
-
42
- // If the video ID contains 'v=', it means a URL has been passed. Retrieve the video ID.
43
- $idPosition = null;
44
- if(($idPosition = stripos($videoId, 'v=')) !== false){
45
- // The video ID, which perhaps still has some arguments behind it.
46
- $videoId = substr($videoId, $idPosition + 2);
47
-
48
- // Explode on extra arguments (&).
49
- $videoId = explode('&', $videoId);
50
-
51
- // The first element is the video ID
52
- if(is_array($videoId) && isset($videoId[0]))
53
- $videoId = $videoId[0];
54
- }
55
-
56
- $elementVideoId = 'youtube-player-' . rand() . '-' . $videoId;
57
- ?>
58
-
59
- <div class="slide slide_<?php echo $i; ?> slide_video" style="height: <?php echo (is_numeric($settings['height']))? $settings['height'] : 0; ?>px;">
60
- <div class="videoId" style="display: none;"><?php echo $videoId; ?> <?php echo $elementVideoId; ?></div>
61
- <div id="<?php echo $elementVideoId; ?>"></div>
62
- </div>
63
-
64
- <?php elseif($slide['type'] == 'attachment'): ?>
65
-
66
- <?php
67
- // Get post id, continue if no post id was found
68
- $postId = '';
69
- if(isset($slide['postId']) && is_numeric($slide['postId']))
70
- $postId = $slide['postId'];
71
- else
72
- continue;
73
-
74
- // Get post from post id. Continue if post can't be loaded
75
- $attachment = get_post($postId);
76
- if(empty($attachment))
77
- continue;
78
-
79
- // Get post tile and description when empty
80
- if(empty($title))
81
- $title = SlideshowPluginSecurity::htmlspecialchars_allow_exceptions($attachment->post_title);
82
- if(empty($description))
83
- $description = SlideshowPluginSecurity::htmlspecialchars_allow_exceptions($attachment->post_content);
84
-
85
- // Prepare image
86
- $image = wp_get_attachment_image_src($attachment->ID, 'full');
87
- $imageSrc = '';
88
- if(!is_array($image) || !$image){
89
- if(!empty($attachment->guid))
90
- $imageSrc = $attachment->guid;
91
- else
92
- continue;
93
- }else{
94
- $imageSrc = $image[0];
95
- }
96
- ?>
97
-
98
- <div class="slide slide_<?php echo $i; ?>" style="height: <?php echo (is_numeric($settings['height']))? $settings['height'] : 0; ?>px;">
99
- <div class="description transparent">
100
- <a <?php if(!empty($url)) echo 'href="' . $url . '"'; ?> <?php if(!empty($target)) echo 'target="' . $target . '"'; ?>>
101
- <h2><?php echo $title ?></h2>
102
- <p><?php echo $description; ?></p>
103
- </a>
104
- </div>
105
- <a <?php if(!empty($url)) echo 'href="' . $url . '"'; ?> <?php if(!empty($target)) echo 'target="' . $target . '"'; ?>>
106
- <img src="<?php echo htmlspecialchars($imageSrc); ?>" alt="<?php echo $title; ?>" />
107
- </a>
108
- </div>
109
-
110
- <?php endif; ?>
111
- <?php $i++; ?>
112
- <?php endforeach; ?>
113
- <?php endif; ?>
114
- </div>
115
  </div>
116
 
117
- <div class="controllers">
118
- <div class="controlPanel transparent"><ul><li class="togglePlay play"></li></ul></div>
119
 
120
- <div class="button previous transparent"></div>
121
- <div class="button next transparent"></div>
122
- </div>
 
123
 
124
  <div class="slideshow_plugin_manufacturer">
125
  <a href="http://www.stefanboonstra.com/slideshow/">Wordpress Slideshow</a>
@@ -140,4 +38,5 @@
140
  <?php echo htmlspecialchars($style); ?>
141
  </style>
142
  <?php endif; ?>
143
- </div>
 
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
 
7
+ if(is_array($views) && count($views) > 0)
8
+ foreach($views as $view)
9
+ echo $view->toFrontEndHTML();
10
 
11
+ ?>
 
 
 
 
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>
38
  <?php echo htmlspecialchars($style); ?>
39
  </style>
40
  <?php endif; ?>
41
+ </div>
42
+ <?php echo isset($settings['maxWidth']) && $settings['maxWidth'] > 0 ? '</div>' : ''; ?>
views/SlideshowPluginGeneralSettings/custom-styles.php ADDED
@@ -0,0 +1,199 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ // Get default stylesheets
4
+ $defaultStyles = array();
5
+ $defaultStylesheets = array(
6
+ 'style-light.css' => __('Light', 'slideshow-plugin'),
7
+ 'style-dark.css' => __('Dark', 'slideshow-plugin')
8
+ );
9
+ $stylesheetsFilePath = SlideshowPluginMain::getPluginPath() . DIRECTORY_SEPARATOR . 'style' . DIRECTORY_SEPARATOR . 'SlideshowPlugin';
10
+ foreach($defaultStylesheets as $fileName => $name){
11
+ if(file_exists($stylesheetsFilePath . DIRECTORY_SEPARATOR . $fileName)){
12
+ ob_start();
13
+ include $stylesheetsFilePath . DIRECTORY_SEPARATOR . $fileName;
14
+ $defaultStyles[$fileName] = array(
15
+ 'name' => $name,
16
+ 'style' => ob_get_clean()
17
+ );
18
+ }
19
+ }
20
+
21
+ // Get custom styles
22
+ $customStyleValues = array();
23
+ $customStyleKeys = get_option(SlideshowPluginGeneralSettings::$customStyles, array());
24
+ if(is_array($customStyleKeys)){
25
+ foreach($customStyleKeys as $customStyleKey => $customStyleKeyName){
26
+
27
+ // Get custom style value from custom style key
28
+ $customStyleValues[$customStyleKey] = get_option($customStyleKey);
29
+ }
30
+ }
31
+
32
+ ?>
33
+
34
+ <div class="custom-styles feature-filter" style="display: none;">
35
+ <div class="styles-list">
36
+
37
+ <p>
38
+ <b><?php _e('Default stylesheets', 'slideshow-plugin'); ?></b>
39
+ </p>
40
+
41
+ <ul class="default-styles-list">
42
+
43
+ <?php if(is_array($defaultStyles)): ?>
44
+ <?php foreach($defaultStyles as $defaultStyleKey => $defaultStyleValues): ?>
45
+
46
+ <?php if(!isset($defaultStyleValues['style']) || empty($defaultStyleValues['style'])) continue; // Continue if style is not set or empty ?>
47
+
48
+ <li>
49
+ <span class="style-title"><?php echo (isset($defaultStyleValues['name'])) ? htmlspecialchars($defaultStyleValues['name']) : __('Untitled'); ?></span>
50
+ <span
51
+ class="style-action style-default <?php htmlspecialchars($defaultStyleKey); ?>"
52
+ title="<?php _e('Create a new custom style from this style', 'slideshow-plugin'); ?>"
53
+ >
54
+ <?php _e('Customize', 'slideshow-plugin'); ?> &raquo;
55
+ </span>
56
+
57
+ <p style="clear: both;"></p>
58
+
59
+ <span class="style-content" style="display: none;"><?php echo htmlspecialchars($defaultStyleValues['style']); ?></span>
60
+ </li>
61
+
62
+ <?php endforeach; ?>
63
+ <?php endif; ?>
64
+
65
+ </ul>
66
+
67
+ <p>
68
+ <b><?php _e('Custom stylesheets', 'slideshow-plugin'); ?></b>
69
+ </p>
70
+
71
+ <ul class="custom-styles-list">
72
+
73
+ <?php if(is_array($customStyleKeys) && count($customStyleKeys) > 0): ?>
74
+ <?php foreach($customStyleKeys as $customStyleKey => $customStyleKeyName): ?>
75
+
76
+ <li>
77
+ <span class="style-title"><?php echo htmlspecialchars($customStyleKeyName); ?></span>
78
+
79
+ <span
80
+ class="style-action <?php echo htmlspecialchars($customStyleKey); ?>"
81
+ title="<?php _e('Edit this style', 'slideshow-plugin'); ?>"
82
+ >
83
+ <?php _e('Edit', 'slideshow-plugin'); ?> &raquo;
84
+ </span>
85
+
86
+ <span style="float: right;">&#124;</span>
87
+
88
+ <span
89
+ class="style-delete <?php echo htmlspecialchars($customStyleKey); ?>"
90
+ title="<?php _e('Delete this style', 'slideshow-plugin'); ?>"
91
+ >
92
+ <?php _e('Delete', 'slideshow-plugin'); ?>
93
+ </span>
94
+
95
+ <p style="clear: both;"></p>
96
+ </li>
97
+
98
+ <?php endforeach; ?>
99
+ <?php else: ?>
100
+
101
+ <li class="no-custom-styles-found">
102
+ <?php _e("Click 'Customize' to create a new custom stylesheet."); ?>
103
+ </li>
104
+
105
+ <?php endif; ?>
106
+
107
+ </ul>
108
+
109
+ </div>
110
+
111
+ <div class="style-editors">
112
+
113
+ <p>
114
+ <b><?php _e('Custom style editor', 'slideshow-plugin'); ?></b>
115
+ </p>
116
+
117
+ <p class="style-editor">
118
+ <?php _e('Select a stylesheet from the left to start customizing it.', 'slideshow-plugin'); ?>
119
+ </p>
120
+
121
+ <?php if(is_array($customStyleValues)): ?>
122
+ <?php foreach($customStyleValues as $customStyleKey => $customStyleValue): ?>
123
+
124
+ <div class="style-editor <?php echo htmlspecialchars($customStyleKey); ?>" style="display: none;">
125
+
126
+ <p>
127
+ <i><?php _e('Title', 'slideshow-plugin'); ?></i><br />
128
+ <input
129
+ type="text"
130
+ name="<?php echo SlideshowPluginGeneralSettings::$customStyles; ?>[<?php echo htmlspecialchars($customStyleKey); ?>][title]"
131
+ value="<?php echo (isset($customStyleKeys[$customStyleKey]) && !empty($customStyleKeys[$customStyleKey])) ? $customStyleKeys[$customStyleKey] : __('Untitled', 'slideshow-plugin'); ?>"
132
+ />
133
+ </p>
134
+
135
+ <p>
136
+ <i><?php _e('Style', 'slideshow-plugin'); ?></i><br />
137
+ <textarea
138
+ name="<?php echo SlideshowPluginGeneralSettings::$customStyles; ?>[<?php echo htmlspecialchars($customStyleKey); ?>][style]"
139
+ rows="25"
140
+ cols=""
141
+ ><?php echo htmlspecialchars($customStyleValue); ?></textarea>
142
+ </p>
143
+
144
+ </div>
145
+
146
+ <?php endforeach; ?>
147
+ <?php endif; ?>
148
+
149
+ </div>
150
+
151
+ <div style="clear: both;"></div>
152
+
153
+ <div class="custom-style-templates" style="display: none;">
154
+
155
+ <li class="custom-styles-list-item">
156
+ <span class="style-title"></span>
157
+
158
+ <span
159
+ class="style-action"
160
+ title="<?php _e('Edit this style', 'slideshow-plugin'); ?>"
161
+ >
162
+ <?php _e('Edit', 'slideshow-plugin'); ?> &raquo;
163
+ </span>
164
+
165
+ <span style="float: right;">&#124;</span>
166
+
167
+ <span
168
+ class="style-delete"
169
+ title="<?php _e('Delete this style', 'slideshow-plugin'); ?>"
170
+ >
171
+ <?php _e('Delete', 'slideshow-plugin'); ?>
172
+ </span>
173
+
174
+ <p style="clear: both;"></p>
175
+ </li>
176
+
177
+ <div class="style-editor" style="display: none;">
178
+
179
+ <p>
180
+ <i><?php _e('Title', 'slideshow-plugin'); ?></i><br />
181
+ <input
182
+ type="text"
183
+ class="new-custom-style-title"
184
+ />
185
+ </p>
186
+
187
+ <p>
188
+ <i><?php _e('Style', 'slideshow-plugin'); ?></i><br />
189
+ <textarea
190
+ class="new-custom-style-content"
191
+ rows="25"
192
+ cols=""
193
+ ></textarea>
194
+ </p>
195
+
196
+ </div>
197
+ </div>
198
+
199
+ </div>
views/SlideshowPluginGeneralSettings/default-slideshow-settings.php ADDED
@@ -0,0 +1,110 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ // Default settings
4
+ $defaultSettings = SlideshowPluginSlideshowSettingsHandler::getDefaultSettings(true);
5
+ $defaultStyleSettings = SlideshowPluginSlideshowSettingsHandler::getDefaultStyleSettings(true);
6
+
7
+ ?>
8
+
9
+ <div class="default-slideshow-settings" style="display: none; float: none;">
10
+ <p>
11
+ <strong><?php _e('Note', 'slideshow-plugin'); ?>:</strong>
12
+ </p>
13
+
14
+ <p style="width: 500px;">
15
+ <?php
16
+
17
+ echo sprintf(__(
18
+ 'The settings set on this page apply only to newly created slideshows and therefore do not alter any existing ones. To adapt a slideshow\'s settings, %sclick here.%s', 'slideshow-plugin'),
19
+ '<a href="' . get_admin_url(null, 'edit.php?post_type=' . SlideshowPluginPostType::$postType) . '">',
20
+ '</a>'
21
+ );
22
+
23
+ ?>
24
+ </p>
25
+ </div>
26
+
27
+ <div class="default-slideshow-settings feature-filter" style="display: none;">
28
+
29
+ <p>
30
+ <b><?php _e('Default Slideshow Settings', 'slideshow-plugin'); ?></b>
31
+ </p>
32
+
33
+ <table>
34
+
35
+ <?php $groups = array(); ?>
36
+ <?php foreach($defaultSettings as $defaultSettingKey => $defaultSettingValue): ?>
37
+
38
+ <?php if(!empty($defaultSettingValue['group']) && !isset($groups[$defaultSettingValue['group']])): $groups[$defaultSettingValue['group']] = true; ?>
39
+
40
+ <tr>
41
+ <td colspan="3" style="border-bottom: 1px solid #dfdfdf; text-align: center;">
42
+ <span style="display: inline-block; position: relative; top: 9px; padding: 0 12px; background: #fff;">
43
+ <?php echo $defaultSettingValue['group']; ?> <?php _e('settings', 'slideshow-plugin'); ?>
44
+ </span>
45
+ </td>
46
+ </tr>
47
+ <tr>
48
+ <td colspan="3"></td>
49
+ </tr>
50
+
51
+ <?php endif; ?>
52
+
53
+ <tr>
54
+ <td>
55
+ <?php echo $defaultSettingValue['description']; ?>
56
+ </td>
57
+ <td>
58
+ <?php
59
+
60
+ echo SlideshowPluginSlideshowSettingsHandler::getInputField(
61
+ SlideshowPluginGeneralSettings::$defaultSettings,
62
+ $defaultSettingKey,
63
+ $defaultSettingValue,
64
+ /* hideDependentValues = */ false
65
+ );
66
+
67
+ ?>
68
+ </td>
69
+ </tr>
70
+
71
+ <?php endforeach; ?>
72
+ <?php unset($groups); ?>
73
+
74
+ </table>
75
+ </div>
76
+
77
+ <div class="default-slideshow-settings feature-filter" style="display: none;">
78
+
79
+ <p>
80
+ <b><?php _e('Default Slideshow Stylesheet', 'slideshow-plugin'); ?></b>
81
+ </p>
82
+
83
+ <table>
84
+
85
+ <?php foreach($defaultStyleSettings as $defaultStyleSettingKey => $defaultStyleSettingValue): ?>
86
+
87
+ <tr>
88
+ <td>
89
+ <?php echo $defaultStyleSettingValue['description']; ?>
90
+ </td>
91
+ <td>
92
+ <?php
93
+
94
+ echo SlideshowPluginSlideshowSettingsHandler::getInputField(
95
+ SlideshowPluginGeneralSettings::$defaultStyleSettings,
96
+ $defaultStyleSettingKey,
97
+ $defaultStyleSettingValue,
98
+ /* hideDependentValues = */ false
99
+ );
100
+
101
+ ?>
102
+ </td>
103
+ </tr>
104
+
105
+ <?php endforeach; ?>
106
+
107
+ </table>
108
+ </div>
109
+
110
+ <div style="clear: both;"></div>
views/SlideshowPluginGeneralSettings/general-settings.php CHANGED
@@ -1,53 +1,7 @@
1
  <?php
2
 
3
- /* ==== ==== ==== User capabilities ==== ==== ==== */
4
-
5
- // Roles
6
- global $wp_roles;
7
-
8
- // Capabilities
9
- $capabilities = array(
10
- SlideshowPluginGeneralSettings::$capabilities['addSlideshows'] => __('Add slideshows', 'slideshow-plugin'),
11
- SlideshowPluginGeneralSettings::$capabilities['editSlideshows'] => __('Edit slideshows', 'slideshow-plugin'),
12
- SlideshowPluginGeneralSettings::$capabilities['deleteSlideshows'] => __('Delete slideshows', 'slideshow-plugin')
13
- );
14
-
15
- /* ==== ==== ==== Default settings ==== ==== ==== */
16
-
17
- // Default settings
18
- $defaultSettings = SlideshowPluginSlideshowSettingsHandler::getDefaultSettings(true);
19
- $defaultStyleSettings = SlideshowPluginSlideshowSettingsHandler::getDefaultStyleSettings(true);
20
-
21
- /* ==== ==== ==== Custom styles ==== ==== ==== */
22
-
23
- // Get default stylesheets
24
- $defaultStyles = array();
25
- $defaultStylesheets = array(
26
- 'style-light.css' => __('Light', 'slideshow-plugin'),
27
- 'style-dark.css' => __('Dark', 'slideshow-plugin')
28
- );
29
- $stylesheetsFilePath = SlideshowPluginMain::getPluginPath() . DIRECTORY_SEPARATOR . 'style' . DIRECTORY_SEPARATOR . 'SlideshowPlugin';
30
- foreach($defaultStylesheets as $fileName => $name){
31
- if(file_exists($stylesheetsFilePath . DIRECTORY_SEPARATOR . $fileName)){
32
- ob_start();
33
- include $stylesheetsFilePath . DIRECTORY_SEPARATOR . $fileName;
34
- $defaultStyles[$fileName] = array(
35
- 'name' => $name,
36
- 'style' => ob_get_clean()
37
- );
38
- }
39
- }
40
-
41
- // Get custom styles
42
- $customStyleValues = array();
43
- $customStyleKeys = get_option(SlideshowPluginGeneralSettings::$customStyles, array());
44
- if(is_array($customStyleKeys)){
45
- foreach($customStyleKeys as $customStyleKey => $customStyleKeyName){
46
-
47
- // Get custom style value from custom style key
48
- $customStyleValues[$customStyleKey] = get_option($customStyleKey);
49
- }
50
- }
51
 
52
  ?>
53
 
@@ -65,270 +19,18 @@ if(is_array($customStyleKeys)){
65
  <?php submit_button(null, 'primary', null, false, 'style="float: right;"'); ?>
66
  </h2>
67
 
68
- <!-- ==== ==== User capabilities ==== ==== -->
69
- <div class="user-capabilities feature-filter">
70
-
71
- <p>
72
- <b><?php _e('Select the user roles that will able to perform certain actions.', 'slideshow-plugin'); ?></b>
73
- </p>
74
-
75
- <table>
76
-
77
- <?php foreach($capabilities as $capability => $capabilityName): ?>
78
-
79
- <tr valign="top">
80
- <th><?php echo $capabilityName; ?></th>
81
- <td>
82
- <?php
83
-
84
- if(isset($wp_roles->roles) && is_array($wp_roles->roles)):
85
- foreach($wp_roles->roles as $roleSlug => $values):
86
-
87
- $disabled = ($roleSlug == 'administrator') ? 'disabled="disabled"' : '';
88
- $checked = ((isset($values['capabilities']) && array_key_exists($capability, $values['capabilities']) && $values['capabilities'][$capability] == true) || $roleSlug == 'administrator') ? 'checked="checked"' : '';
89
- $name = (isset($values['name'])) ? htmlspecialchars($values['name']) : __('Untitled role', 'slideshow-plugin');
90
-
91
- ?>
92
-
93
- <input
94
- type="checkbox"
95
- name="<?php echo htmlspecialchars($capability); ?>[<?php echo htmlspecialchars($roleSlug); ?>]"
96
- id="<?php echo htmlspecialchars($capability . '_' . $roleSlug); ?>"
97
- <?php echo $disabled; ?>
98
- <?php echo $checked; ?>
99
- />
100
- <label for="<?php echo htmlspecialchars($capability . '_' . $roleSlug); ?>"><?php echo $name; ?></label>
101
- <br />
102
-
103
- <?php endforeach; ?>
104
- <?php endif; ?>
105
-
106
- </td>
107
- </tr>
108
-
109
- <?php endforeach; ?>
110
-
111
- </table>
112
- </div>
113
-
114
- <!-- ==== ==== Defaults slideshow settings ==== ==== -->
115
- <div class="default-slideshow-settings feature-filter" style="display: none;">
116
-
117
- <p>
118
- <b><?php _e('Default Slideshow Settings', 'slideshow-plugin'); ?></b>
119
- </p>
120
-
121
- <table>
122
-
123
- <?php foreach($defaultSettings as $defaultSettingKey => $defaultSettingValue): ?>
124
-
125
- <tr>
126
- <td>
127
- <?php echo $defaultSettingValue['description']; ?>
128
- </td>
129
- <td>
130
- <?php echo SlideshowPluginSlideshowSettingsHandler::getInputField(SlideshowPluginGeneralSettings::$defaultSettings, $defaultSettingKey, $defaultSettingValue) ?>
131
- </td>
132
- </tr>
133
-
134
- <?php endforeach; ?>
135
-
136
- </table>
137
- </div>
138
-
139
- <div class="default-slideshow-settings feature-filter" style="display: none;">
140
-
141
- <p>
142
- <b><?php _e('Default Slideshow Stylesheet', 'slideshow-plugin'); ?></b>
143
- </p>
144
-
145
- <table>
146
-
147
- <?php foreach($defaultStyleSettings as $defaultStyleSettingKey => $defaultStyleSettingValue): ?>
148
-
149
- <tr>
150
- <td>
151
- <?php echo $defaultStyleSettingValue['description']; ?>
152
- </td>
153
- <td>
154
- <?php echo SlideshowPluginSlideshowSettingsHandler::getInputField(SlideshowPluginGeneralSettings::$defaultStyleSettings, $defaultStyleSettingKey, $defaultStyleSettingValue) ?>
155
- </td>
156
- </tr>
157
-
158
- <?php endforeach; ?>
159
-
160
- </table>
161
- </div>
162
-
163
- <div style="clear: both;"></div>
164
-
165
- <!-- ==== ==== Custom styles ==== ==== -->
166
- <div class="custom-styles feature-filter" style="display: none;">
167
- <div class="styles-list">
168
-
169
- <p>
170
- <b><?php _e('Default stylesheets', 'slideshow-plugin'); ?></b>
171
- </p>
172
-
173
- <ul class="default-styles-list">
174
-
175
- <?php if(is_array($defaultStyles)): ?>
176
- <?php foreach($defaultStyles as $defaultStyleKey => $defaultStyleValues): ?>
177
-
178
- <?php if(!isset($defaultStyleValues['style']) || empty($defaultStyleValues['style'])) continue; // Continue if style is not set or empty ?>
179
-
180
- <li>
181
- <span class="style-title"><?php echo (isset($defaultStyleValues['name'])) ? htmlspecialchars($defaultStyleValues['name']) : __('Untitled'); ?></span>
182
- <span
183
- class="style-action style-default <?php htmlspecialchars($defaultStyleKey); ?>"
184
- title="<?php _e('Create a new custom style from this style', 'slideshow-plugin'); ?>"
185
- >
186
- <?php _e('Customize', 'slideshow-plugin'); ?> &raquo;
187
- </span>
188
-
189
- <p style="clear: both;"></p>
190
-
191
- <span class="style-content" style="display: none;"><?php echo htmlspecialchars($defaultStyleValues['style']); ?></span>
192
- </li>
193
-
194
- <?php endforeach; ?>
195
- <?php endif; ?>
196
-
197
- </ul>
198
-
199
- <p>
200
- <b><?php _e('Custom stylesheets', 'slideshow-plugin'); ?></b>
201
- </p>
202
-
203
- <ul class="custom-styles-list">
204
-
205
- <?php if(is_array($customStyleKeys) && count($customStyleKeys) > 0): ?>
206
- <?php foreach($customStyleKeys as $customStyleKey => $customStyleKeyName): ?>
207
-
208
- <li>
209
- <span class="style-title"><?php echo htmlspecialchars($customStyleKeyName); ?></span>
210
-
211
- <span
212
- class="style-action <?php echo htmlspecialchars($customStyleKey); ?>"
213
- title="<?php _e('Edit this style', 'slideshow-plugin'); ?>"
214
- >
215
- <?php _e('Edit', 'slideshow-plugin'); ?> &raquo;
216
- </span>
217
-
218
- <span style="float: right;">&#124;</span>
219
-
220
- <span
221
- class="style-delete <?php echo htmlspecialchars($customStyleKey); ?>"
222
- title="<?php _e('Delete this style', 'slideshow-plugin'); ?>"
223
- >
224
- <?php _e('Delete', 'slideshow-plugin'); ?>
225
- </span>
226
-
227
- <p style="clear: both;"></p>
228
- </li>
229
-
230
- <?php endforeach; ?>
231
- <?php else: ?>
232
-
233
- <li class="no-custom-styles-found">
234
- <?php _e("Click 'Customize' to create a new custom stylesheet."); ?>
235
- </li>
236
-
237
- <?php endif; ?>
238
-
239
- </ul>
240
-
241
- </div>
242
-
243
- <div class="style-editors">
244
-
245
- <p>
246
- <b><?php _e('Custom style editor', 'slideshow-plugin'); ?></b>
247
- </p>
248
-
249
- <p class="style-editor">
250
- <?php _e('Select a stylesheet from the left to start customizing it.', 'slideshow-plugin'); ?>
251
- </p>
252
-
253
- <?php if(is_array($customStyleValues)): ?>
254
- <?php foreach($customStyleValues as $customStyleKey => $customStyleValue): ?>
255
-
256
- <div class="style-editor <?php echo htmlspecialchars($customStyleKey); ?>" style="display: none;">
257
-
258
- <p>
259
- <i><?php _e('Title', 'slideshow-plugin'); ?></i><br />
260
- <input
261
- type="text"
262
- name="<?php echo SlideshowPluginGeneralSettings::$customStyles; ?>[<?php echo htmlspecialchars($customStyleKey); ?>][title]"
263
- value="<?php echo (isset($customStyleKeys[$customStyleKey]) && !empty($customStyleKeys[$customStyleKey])) ? $customStyleKeys[$customStyleKey] : __('Untitled', 'slideshow-plugin'); ?>"
264
- />
265
- </p>
266
-
267
- <p>
268
- <i><?php _e('Style', 'slideshow-plugin'); ?></i><br />
269
- <textarea
270
- name="<?php echo SlideshowPluginGeneralSettings::$customStyles; ?>[<?php echo htmlspecialchars($customStyleKey); ?>][style]"
271
- rows="25"
272
- cols=""
273
- ><?php echo htmlspecialchars($customStyleValue); ?></textarea>
274
- </p>
275
-
276
- </div>
277
-
278
- <?php endforeach; ?>
279
- <?php endif; ?>
280
-
281
- </div>
282
-
283
- <div style="clear: both;"></div>
284
-
285
- <div class="custom-style-templates" style="display: none;">
286
-
287
- <li class="custom-styles-list-item">
288
- <span class="style-title"></span>
289
-
290
- <span
291
- class="style-action"
292
- title="<?php _e('Edit this style', 'slideshow-plugin'); ?>"
293
- >
294
- <?php _e('Edit', 'slideshow-plugin'); ?> &raquo;
295
- </span>
296
-
297
- <span style="float: right;">&#124;</span>
298
-
299
- <span
300
- class="style-delete"
301
- title="<?php _e('Delete this style', 'slideshow-plugin'); ?>"
302
- >
303
- <?php _e('Delete', 'slideshow-plugin'); ?>
304
- </span>
305
-
306
- <p style="clear: both;"></p>
307
- </li>
308
-
309
- <div class="style-editor" style="display: none;">
310
 
311
- <p>
312
- <i><?php _e('Title', 'slideshow-plugin'); ?></i><br />
313
- <input
314
- type="text"
315
- class="new-custom-style-title"
316
- />
317
- </p>
318
 
319
- <p>
320
- <i><?php _e('Style', 'slideshow-plugin'); ?></i><br />
321
- <textarea
322
- class="new-custom-style-content"
323
- rows="25"
324
- cols=""
325
- ></textarea>
326
- </p>
327
 
328
- </div>
329
- </div>
330
 
331
- </div>
332
 
333
  <p>
334
  <?php submit_button(null, 'primary', null, false); ?>
1
  <?php
2
 
3
+ // Path to the General Settings' views folder
4
+ $generalSettingsViewsPath = SlideshowPluginMain::getPluginPath() . DIRECTORY_SEPARATOR . 'views' . DIRECTORY_SEPARATOR . 'SlideshowPluginGeneralSettings' . DIRECTORY_SEPARATOR;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
 
6
  ?>
7
 
19
  <?php submit_button(null, 'primary', null, false, 'style="float: right;"'); ?>
20
  </h2>
21
 
22
+ <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
 
24
+ // User capabilities
25
+ include $generalSettingsViewsPath . 'user-capabilities.php';
 
 
 
 
 
26
 
27
+ // Default slideshow settings
28
+ include $generalSettingsViewsPath . 'default-slideshow-settings.php';
 
 
 
 
 
 
29
 
30
+ // Custom styles
31
+ include $generalSettingsViewsPath . 'custom-styles.php';
32
 
33
+ ?>
34
 
35
  <p>
36
  <?php submit_button(null, 'primary', null, false); ?>
views/SlideshowPluginGeneralSettings/user-capabilities.php ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ // Roles
4
+ global $wp_roles;
5
+
6
+ // Capabilities
7
+ $capabilities = array(
8
+ SlideshowPluginGeneralSettings::$capabilities['addSlideshows'] => __('Add slideshows', 'slideshow-plugin'),
9
+ SlideshowPluginGeneralSettings::$capabilities['editSlideshows'] => __('Edit slideshows', 'slideshow-plugin'),
10
+ SlideshowPluginGeneralSettings::$capabilities['deleteSlideshows'] => __('Delete slideshows', 'slideshow-plugin')
11
+ );
12
+
13
+ ?>
14
+
15
+ <div class="user-capabilities feature-filter">
16
+
17
+ <p>
18
+ <b><?php _e('Select the user roles that will able to perform certain actions.', 'slideshow-plugin'); ?></b>
19
+ </p>
20
+
21
+ <table>
22
+
23
+ <?php foreach($capabilities as $capability => $capabilityName): ?>
24
+
25
+ <tr valign="top">
26
+ <th><?php echo $capabilityName; ?></th>
27
+ <td>
28
+ <?php
29
+
30
+ if(isset($wp_roles->roles) && is_array($wp_roles->roles)):
31
+ foreach($wp_roles->roles as $roleSlug => $values):
32
+
33
+ $disabled = ($roleSlug == 'administrator') ? 'disabled="disabled"' : '';
34
+ $checked = ((isset($values['capabilities']) && array_key_exists($capability, $values['capabilities']) && $values['capabilities'][$capability] == true) || $roleSlug == 'administrator') ? 'checked="checked"' : '';
35
+ $name = (isset($values['name'])) ? htmlspecialchars($values['name']) : __('Untitled role', 'slideshow-plugin');
36
+
37
+ ?>
38
+
39
+ <input
40
+ type="checkbox"
41
+ name="<?php echo htmlspecialchars($capability); ?>[<?php echo htmlspecialchars($roleSlug); ?>]"
42
+ id="<?php echo htmlspecialchars($capability . '_' . $roleSlug); ?>"
43
+ <?php echo $disabled; ?>
44
+ <?php echo $checked; ?>
45
+ />
46
+ <label for="<?php echo htmlspecialchars($capability . '_' . $roleSlug); ?>"><?php echo $name; ?></label>
47
+ <br />
48
+
49
+ <?php endforeach; ?>
50
+ <?php endif; ?>
51
+
52
+ </td>
53
+ </tr>
54
+
55
+ <?php endforeach; ?>
56
+
57
+ </table>
58
+ </div>
views/SlideshowPluginPostType/settings.php CHANGED
@@ -3,7 +3,7 @@
3
  <?php if(count($settings) > 0): ?>
4
  <?php foreach($settings as $key => $value): ?>
5
 
6
- <?php if( !isset($value, $value['type'], $value['value'], $value['default'], $value['description']) || !is_array($value)) continue; ?>
7
 
8
  <?php if(!empty($value['group']) && !isset($groups[$value['group']])): $groups[$value['group']] = true; ?>
9
  <tr>
3
  <?php if(count($settings) > 0): ?>
4
  <?php foreach($settings as $key => $value): ?>
5
 
6
+ <?php if( !isset($value, $value['type'], $value['default'], $value['description']) || !is_array($value)) continue; ?>
7
 
8
  <?php if(!empty($value['group']) && !isset($groups[$value['group']])): $groups[$value['group']] = true; ?>
9
  <tr>
views/SlideshowPluginPostType/slides.php CHANGED
@@ -19,10 +19,6 @@
19
  }
20
  </style>
21
 
22
- <script type="text/javascript">
23
- //var slideshowHighestSlideId = <?php echo (is_numeric($highestSlideId))? $highestSlideId : 0; ?>
24
- </script>
25
-
26
  <ul class="sortable-slides-list">
27
  <?php if(count($slides) > 0): ?>
28
  <?php foreach($slides as $key => $slide):
@@ -111,15 +107,10 @@
111
 
112
  // Title and description
113
  $title = $description = '';
114
- if(isset($slide['title']) && !empty($slide['title']))
115
  $title = $slide['title'];
116
- else
117
- $title = $attachment->post_title;
118
-
119
- if(isset($slide['description']) && !empty($slide['description']))
120
  $description = $slide['description'];
121
- else
122
- $description = $attachment->post_content;
123
 
124
  // Prepare image
125
  $image = wp_get_attachment_image_src($attachment->ID);
19
  }
20
  </style>
21
 
 
 
 
 
22
  <ul class="sortable-slides-list">
23
  <?php if(count($slides) > 0): ?>
24
  <?php foreach($slides as $key => $slide):
107
 
108
  // Title and description
109
  $title = $description = '';
110
+ if(isset($slide['title']))
111
  $title = $slide['title'];
112
+ if(isset($slide['description']))
 
 
 
113
  $description = $slide['description'];
 
 
114
 
115
  // Prepare image
116
  $image = wp_get_attachment_image_src($attachment->ID);
views/SlideshowPluginPostType/style-settings.php CHANGED
@@ -3,7 +3,7 @@
3
 
4
  <?php foreach($settings as $key => $value): ?>
5
 
6
- <?php if( !isset($value, $value['type'], $value['value'], $value['default'], $value['description']) || !is_array($value)) continue; ?>
7
 
8
  <tr <?php if(isset($value['dependsOn'])) echo 'style="display:none;"'; ?>>
9
  <td><?php echo $value['description']; ?></td>
3
 
4
  <?php foreach($settings as $key => $value): ?>
5
 
6
+ <?php if( !isset($value, $value['type'], $value['default'], $value['description']) || !is_array($value)) continue; ?>
7
 
8
  <tr <?php if(isset($value['dependsOn'])) echo 'style="display:none;"'; ?>>
9
  <td><?php echo $value['description']; ?></td>
views/SlideshowPluginPostType/support-plugin.php CHANGED
@@ -17,6 +17,15 @@
17
  />
18
  </p>
19
 
 
 
 
 
 
 
 
 
 
20
  <p>
21
  <input
22
  type="button"
17
  />
18
  </p>
19
 
20
+ <p>
21
+ <input
22
+ type="button"
23
+ class="button-secondary"
24
+ value="<?php _e('Frequently Asked Questions (FAQ)', 'slideshow-plugin'); ?>"
25
+ onclick="window.open('http://wordpress.org/extend/plugins/slideshow-jquery-image-gallery/faq/')"
26
+ />
27
+ </p>
28
+
29
  <p>
30
  <input
31
  type="button"
views/SlideshowPluginShortcode/shortcode-inserter.php CHANGED
@@ -5,7 +5,7 @@
5
  style="padding-left: .4em;"
6
  >
7
  <img
8
- src="<?php echo SlideshowPluginMain::getPluginUrl() . '/images/adminIcon.png'; ?>"
9
  alt="<?php _e('Insert a Slideshow', 'slideshow-plugin'); ?>"
10
  style="vertical-align: text-top;"
11
  />
@@ -21,7 +21,6 @@
21
  <div style="border: 1px solid #ddd; padding: 10px; color: #5a5a5a;">
22
 
23
  <?php if($slideshows instanceof WP_Query && count($slideshows->get_posts()) > 0): ?>
24
-
25
  <table>
26
  <tr>
27
 
5
  style="padding-left: .4em;"
6
  >
7
  <img
8
+ src="<?php echo SlideshowPluginMain::getPluginUrl() . '/images/SlideshowPluginPostType/adminIcon.png'; ?>"
9
  alt="<?php _e('Insert a Slideshow', 'slideshow-plugin'); ?>"
10
  style="vertical-align: text-top;"
11
  />
21
  <div style="border: 1px solid #ddd; padding: 10px; color: #5a5a5a;">
22
 
23
  <?php if($slideshows instanceof WP_Query && count($slideshows->get_posts()) > 0): ?>
 
24
  <table>
25
  <tr>
26
 
views/SlideshowPluginSlideshowSlide/backend_attachment.php ADDED
@@ -0,0 +1,91 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ // The attachment should always be there
4
+ $attachment = get_post($properties['postId']);
5
+ if(isset($attachment)):
6
+
7
+ // Title and description
8
+ $title = $description = $url = $target = '';
9
+ if(isset($properties['title']))
10
+ $title = SlideshowPluginSecurity::htmlspecialchars_allow_exceptions($properties['title']);
11
+ if(isset($properties['description']))
12
+ $description = SlideshowPluginSecurity::htmlspecialchars_allow_exceptions($properties['description']);
13
+ if(isset($properties['url']))
14
+ $url = $properties['url'];
15
+ if(isset($properties['urlTarget']))
16
+ $target = $properties['urlTarget'];
17
+
18
+ // Prepare image
19
+ $image = wp_get_attachment_image_src($attachment->ID);
20
+ $imageSrc = '';
21
+ $displaySlide = true;
22
+ if(!is_array($image) || !$image){
23
+ if(!empty($attachment->guid))
24
+ $imageSrc = $attachment->guid;
25
+ else
26
+ $displaySlide = false;
27
+ }else{
28
+ $imageSrc = $image[0];
29
+ }
30
+ if(!$imageSrc || empty($imageSrc)) $imageSrc = SlideshowPluginMain::getPluginUrl() . '/images/' . __CLASS__ . '/no-img.png';
31
+
32
+ $editUrl = admin_url() . '/media.php?attachment_id=' . $attachment->ID . '&amp;action=edit';
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; ?>" />
48
+ </a>
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]">
74
+ <option value="_self" <?php selected('_self', $target); ?>><?php _e('Same window', 'slideshow-plugin'); ?></option>
75
+ <option value="_blank" <?php selected('_blank', $target); ?>><?php _e('New window', 'slideshow-plugin'); ?></option>
76
+ </select>
77
+
78
+ </p>
79
+
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>
89
+
90
+ <?php endif; ?>
91
+ <?php endif; ?>
views/SlideshowPluginSlideshowSlide/backend_templates.php ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 />
17
+
18
+ <i><?php _e('Text color', 'slideshow-plugin'); ?></i><br />
19
+ <input type="text" class="textColor {required:false}" value="000000" /><br />
20
+
21
+ <i><?php _e('Background color', 'slideshow-plugin'); ?></i><br />
22
+ <input type="text" class="color {required:false}" value="FFFFFF" />
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>
116
+ </div>
views/SlideshowPluginSlideshowSlide/backend_text.php ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ $title = $description = $textColor = $color = $url = $target = '';
4
+ if(isset($properties['title']))
5
+ $title = SlideshowPluginSecurity::htmlspecialchars_allow_exceptions($properties['title']);
6
+ if(isset($properties['description']))
7
+ $description = SlideshowPluginSecurity::htmlspecialchars_allow_exceptions($properties['description']);
8
+ if(isset($properties['textColor']))
9
+ $textColor = $properties['textColor'];
10
+ if(isset($properties['color']))
11
+ $color = $properties['color'];
12
+ if(isset($properties['url']))
13
+ $url = $properties['url'];
14
+ if(isset($properties['urlTarget']))
15
+ $target = $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 />
34
+
35
+ <i><?php _e('Text color', 'slideshow-plugin'); ?></i><br />
36
+ <input type="text" name="<?php echo $name; ?>[textColor]" value="<?php echo !empty($textColor) ? $textColor : '000000'; ?>" class="color {required:false}" /><br />
37
+
38
+ <i><?php _e('Background color', 'slideshow-plugin'); ?></i><br />
39
+ <input type="text" name="<?php echo $name; ?>[color]" value="<?php echo $color; ?>" class="color {required:false}" />
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]">
50
+ <option value="_self" <?php selected('_self', $target); ?>><?php _e('Same window', 'slideshow-plugin'); ?></option>
51
+ <option value="_blank" <?php selected('_blank', $target); ?>><?php _e('New window', 'slideshow-plugin'); ?></option>
52
+ </select>
53
+
54
+ </p>
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>
views/SlideshowPluginSlideshowSlide/backend_video.php ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ $videoId = '';
4
+ if(isset($properties['videoId']))
5
+ $videoId = $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>
views/SlideshowPluginSlideshowSlide/frontend_attachment.php ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ $title = $description = $url = $urlTarget = $postId = '';
4
+ if(isset($properties['title']))
5
+ $title = SlideshowPluginSecurity::htmlspecialchars_allow_exceptions($properties['title']);
6
+ if(isset($properties['description']))
7
+ $description = SlideshowPluginSecurity::htmlspecialchars_allow_exceptions($properties['description']);
8
+ if(isset($properties['url']))
9
+ $url = htmlspecialchars($properties['url']);
10
+ if(isset($properties['urlTarget']))
11
+ $urlTarget = htmlspecialchars($properties['urlTarget']);
12
+ if(isset($properties['postId']))
13
+ $postId = $properties['postId'];
14
+
15
+ // Post ID should always be numeric
16
+ if(is_numeric($postId)):
17
+
18
+ // Anchor tag is used twice
19
+ $anchorTagAttributes = (!empty($url) ? ' href="' . $url . '" ' : '') . (!empty($urlTarget) ? ' target="' . $urlTarget . '" ' : '');
20
+
21
+ // Get post from post id. Post should be able to load
22
+ $attachment = get_post($postId);
23
+ if(!empty($attachment)):
24
+
25
+ // Prepare image
26
+ $image = wp_get_attachment_image_src($attachment->ID, 'full');
27
+ $imageSrc = '';
28
+ $imageAvailable = true;
29
+ if(!is_array($image) || !$image){
30
+ if(!empty($attachment->guid))
31
+ $imageSrc = $attachment->guid;
32
+ else
33
+ $imageAvailable = false;
34
+ }else{
35
+ $imageSrc = $image[0];
36
+ }
37
+
38
+ // If image is available
39
+ if($imageAvailable): ?>
40
+
41
+ <div class="slideshow_slide slideshow_slide_image">
42
+ <a <?php echo $anchorTagAttributes; ?>>
43
+ <img src="<?php echo htmlspecialchars($imageSrc); ?>" alt="<?php echo $title; ?>">
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>
54
+
55
+ <?php endif; ?>
56
+ <?php endif; ?>
57
+ <?php endif; ?>
views/SlideshowPluginSlideshowSlide/frontend_text.php ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ $title = $description = $textColor = $color = $url = $urlTarget = '';
4
+ if(isset($properties['title']))
5
+ $title = SlideshowPluginSecurity::htmlspecialchars_allow_exceptions($properties['title']);
6
+ if(isset($properties['description']))
7
+ $description = SlideshowPluginSecurity::htmlspecialchars_allow_exceptions($properties['description']);
8
+ if(isset($properties['textColor']))
9
+ $textColor = htmlspecialchars($properties['textColor']);
10
+ if(isset($properties['color']))
11
+ $color = htmlspecialchars($properties['color']);
12
+ if(isset($properties['url']))
13
+ $url = htmlspecialchars($properties['url']);
14
+ if(isset($properties['urlTarget']))
15
+ $urlTarget = htmlspecialchars($properties['urlTarget']);
16
+
17
+ ?>
18
+
19
+ <div class="slideshow_slide slideshow_slide_text" style="background-color: #<?php echo !empty($color) ? $color : 'FFFFFF'; ?>">
20
+ <a <?php echo !empty($url) ? 'href="' . $url . '"' : ''; ?> <?php echo !empty($urlTarget) ? 'target="' . $urlTarget . '"' : ''; ?>>
21
+
22
+ <h2 style="color: #<?php echo !empty($textColor) ? $textColor : '000000'; ?>;">
23
+ <?php echo $title; ?>
24
+ </h2>
25
+
26
+ <p style="color: #<?php echo !empty($textColor) ? $textColor : '000000'; ?>;">
27
+ <?php echo $description; ?>
28
+ </p>
29
+
30
+ </a>
31
+ </div>
views/SlideshowPluginSlideshowSlide/frontend_video.php ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ $videoId = '';
4
+ if(isset($properties['videoId']))
5
+ $videoId = htmlspecialchars($properties['videoId']);
6
+
7
+ // If the video ID contains 'v=', it means a URL has been passed. Retrieve the video ID.
8
+ $idPosition = null;
9
+ if(($idPosition = stripos($videoId, 'v=')) !== false){
10
+ // The video ID, which perhaps still has some arguments behind it.
11
+ $videoId = substr($videoId, $idPosition + 2);
12
+
13
+ // Explode on extra arguments (&).
14
+ $videoId = explode('&', $videoId);
15
+
16
+ // The first element is the video ID
17
+ if(is_array($videoId) && isset($videoId[0]))
18
+ $videoId = $videoId[0];
19
+ }
20
+
21
+ // Enqueue SwfObject script
22
+ wp_enqueue_script('swfobject');
23
+
24
+ ?>
25
+
26
+ <div class="slideshow_slide slideshow_slide_video">
27
+ <div style="display: none;"><?php echo $videoId; ?></div>
28
+ </div>