Slideshow - Version 2.1.21

Version Description

  • Fixed: Adding new slides was made impossible by a faulty setting.
  • Fixed: Image tag placed on multiple lines caused some sites to not display images correctly due to an inserted break character.
Download this release

Release Info

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

Code changes from version 2.1.20 to 2.1.21

classes/SlideshowPluginPostType.php CHANGED
@@ -177,13 +177,12 @@ class SlideshowPluginPostType {
177
 
178
  // Get settings
179
  $settings = SlideshowPluginSettingsHandler::getStyleSettings($post->ID, true);
180
- //var_dump($settings);
181
 
182
  // Fill custom style with default css if empty
183
  if(isset($settings['custom']) && isset($settings['custom']['value']) && empty($settings['custom']['value'])){
184
  ob_start();
185
  include(SlideshowPluginMain::getPluginPath() . '/style/SlideshowPlugin/style-custom.css');
186
- $settings['style_custom'][1] = ob_get_clean();
187
  }
188
 
189
  // Include style settings file
177
 
178
  // Get settings
179
  $settings = SlideshowPluginSettingsHandler::getStyleSettings($post->ID, true);
 
180
 
181
  // Fill custom style with default css if empty
182
  if(isset($settings['custom']) && isset($settings['custom']['value']) && empty($settings['custom']['value'])){
183
  ob_start();
184
  include(SlideshowPluginMain::getPluginPath() . '/style/SlideshowPlugin/style-custom.css');
185
+ $settings['custom']['value'] = ob_get_clean();
186
  }
187
 
188
  // Include style settings file
classes/SlideshowPluginSettingsHandler.php CHANGED
@@ -311,48 +311,45 @@ class SlideshowPluginSettingsHandler {
311
 
312
  // Default values
313
  $data = array(
314
- 'animation' => array('default' => 'slide'),
315
- 'slideSpeed' => array('default' => '1'),
316
- 'descriptionSpeed' => array('default' => '0.4'),
317
- 'intervalSpeed' => array('default' => '5'),
318
- 'play' => array('default' => 'true'),
319
- 'loop' => array('default' => 'true'),
320
- 'slidesPerView' => array('default' => '1'),
321
- 'width' => array('default' => '0'),
322
- 'height' => array('default' => '200'),
323
- 'descriptionHeight' => array('default' => '50'),
324
- 'stretchImages' => array('default' => 'true'),
325
- 'controllable' => array('default' => 'true'),
326
- 'controlPanel' => array('default' => 'false'),
327
- 'showDescription' => array('default' => 'true'),
328
- 'hideDescription' => array('default' => 'true'),
329
- 'random' => array('default' => 'false'),
330
- 'avoidFilter' => array('default' => 'true')
331
  );
332
 
333
  // Full definition
334
  if($fullDefinition){
335
- $data = array_merge_recursive(
336
- array(
337
- 'animation' => array('type' => 'select', 'description' => __('Animation used for transition between slides', 'slideshow-plugin'), 'options' => array('slide' => __('Slide', 'slideshow-plugin'), 'fade' => __('Fade', 'slideshow-plugin')), 'group' => __('Animation', 'slideshow-plugin')),
338
- 'slideSpeed' => array('type' => 'text', 'description' => __('Number of seconds the slide takes to slide in', 'slideshow-plugin'), 'group' => __('Animation', 'slideshow-plugin')),
339
- 'descriptionSpeed' => array('type' => 'text', 'description' => __('Number of seconds the description takes to slide in', 'slideshow-plugin'), 'group' => __('Animation', 'slideshow-plugin')),
340
- 'intervalSpeed' => array('type' => 'text', 'description' => __('Seconds between changing slides', 'slideshow-plugin'), 'group' => __('Animation', 'slideshow-plugin')),
341
- 'slidesPerView' => array('type' => 'text', 'description' => __('Number of slides to fit into one slide', 'slideshow-plugin'), 'group' => __('Display', 'slideshow-plugin')),
342
- 'width' => array('type' => 'text', 'description' => __('Width of the slideshow, set to parent's width on 0', 'slideshow-plugin'), 'group' => __('Display', 'slideshow-plugin')),
343
- 'height' => array('type' => 'text', 'description' => __('Height of the slideshow', 'slideshow-plugin'), 'group' => __('Display', 'slideshow-plugin')),
344
- 'descriptionHeight' => array('type' => 'text', 'description' => __('Height of the description boxes', 'slideshow-plugin'), 'group' => __('Display', 'slideshow-plugin')),
345
- 'stretchImages' => array('type' => 'radio', 'description' => __('Fit image into slide (stretching it)', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'group' => __('Display', 'slideshow-plugin')),
346
- 'showDescription' => array('type' => 'radio', 'description' => __('Show title and description', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'group' => __('Display', 'slideshow-plugin')),
347
- 'hideDescription' => array('type' => 'radio', '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')),
348
- 'play' => array('type' => 'radio', 'description' => __('Automatically slide to the next slide', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'group' => __('Control', 'slideshow-plugin')),
349
- 'loop' => array('type' => 'radio', 'description' => __('Return to the beginning of the slideshow after last slide', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'group' => __('Control', 'slideshow-plugin')),
350
- 'controllable' => array('type' => 'radio', 'description' => __('Activate buttons (so the user can scroll through the slides)', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'group' => __('Control', 'slideshow-plugin')),
351
- 'controlPanel' => array('type' => 'radio', 'description' => __('Show control panel (play and pause button)', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'group' => __('Control', 'slideshow-plugin')),
352
- 'random' => array('type' => 'radio', 'description' => __('Randomize slides', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'group' => __('Miscellaneous', 'slideshow-plugin')),
353
- 'avoidFilter' => array('type' => 'radio', 'description' => sprintf(__('Avoid content filter (disable if \'%s\' is shown)', 'slideshow-plugin'), SlideshowPluginShortcode::$bookmark), 'options' => array('true' => $yes, 'false' => $no), 'group' => __('Miscellaneous', 'slideshow-plugin'))
354
- ),
355
- $data
356
  );
357
  }
358
 
311
 
312
  // Default values
313
  $data = array(
314
+ 'animation' => 'slide',
315
+ 'slideSpeed' => '1',
316
+ 'descriptionSpeed' => '0.4',
317
+ 'intervalSpeed' => '5',
318
+ 'play' => 'true',
319
+ 'loop' => 'true',
320
+ 'slidesPerView' => '1',
321
+ 'width' => '0',
322
+ 'height' => '200',
323
+ 'descriptionHeight' => '50',
324
+ 'stretchImages' => 'true',
325
+ 'controllable' => 'true',
326
+ 'controlPanel' => 'false',
327
+ 'showDescription' => 'true',
328
+ 'hideDescription' => 'true',
329
+ 'random' => 'false',
330
+ 'avoidFilter' => 'true'
331
  );
332
 
333
  // Full definition
334
  if($fullDefinition){
335
+ $data = array(
336
+ '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')),
337
+ 'slideSpeed' => array('type' => 'text', 'default' => $data['slideSpeed'], 'description' => __('Number of seconds the slide takes to slide in', 'slideshow-plugin'), 'group' => __('Animation', 'slideshow-plugin')),
338
+ 'descriptionSpeed' => array('type' => 'text', 'default' => $data['descriptionSpeed'], 'description' => __('Number of seconds the description takes to slide in', 'slideshow-plugin'), 'group' => __('Animation', 'slideshow-plugin')),
339
+ 'intervalSpeed' => array('type' => 'text', 'default' => $data['intervalSpeed'], 'description' => __('Seconds between changing slides', 'slideshow-plugin'), 'group' => __('Animation', 'slideshow-plugin')),
340
+ 'slidesPerView' => array('type' => 'text', 'default' => $data['slidesPerView'], 'description' => __('Number of slides to fit into one slide', 'slideshow-plugin'), 'group' => __('Display', 'slideshow-plugin')),
341
+ 'width' => array('type' => 'text', 'default' => $data['width'], 'description' => __('Width of the slideshow, set to parent's width on 0', 'slideshow-plugin'), 'group' => __('Display', 'slideshow-plugin')),
342
+ 'height' => array('type' => 'text', 'default' => $data['height'], 'description' => __('Height of the slideshow', 'slideshow-plugin'), 'group' => __('Display', 'slideshow-plugin')),
343
+ 'descriptionHeight' => array('type' => 'text', 'default' => $data['descriptionHeight'], 'description' => __('Height of the description boxes', 'slideshow-plugin'), 'group' => __('Display', 'slideshow-plugin')),
344
+ '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')),
345
+ 'showDescription' => array('type' => 'radio', 'default' => $data['showDescription'], 'description' => __('Show title and description', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'group' => __('Display', 'slideshow-plugin')),
346
+ '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')),
347
+ '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')),
348
+ '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')),
349
+ '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')),
350
+ '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')),
351
+ 'random' => array('type' => 'radio', 'default' => $data['random'], 'description' => __('Randomize slides', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'group' => __('Miscellaneous', 'slideshow-plugin')),
352
+ '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'))
 
 
 
353
  );
354
  }
355
 
classes/SlideshowPluginUpdater.php CHANGED
@@ -64,72 +64,76 @@ class SlideshowPluginUpdater {
64
  ));
65
 
66
  // Loop through slideshow
67
- foreach($slideshows as $slideshow){
68
- // Get settings
69
- $settings = get_post_meta(
70
- $slideshow->ID,
71
- 'settings',
72
- true
73
- );
74
-
75
- // Old prefixes
76
- $settingsPrefix = 'setting_';
77
- $stylePrefix = 'style_';
78
- $slidePrefix = 'slide_';
79
-
80
- // Meta keys
81
- $settingsKey = 'settings';
82
- $styleSettingsKey = 'styleSettings';
83
- $slidesKey = 'slides';
84
-
85
- // Extract key => value into new arrays
86
- $newSettings = array();
87
- $styleSettings = array();
88
- $slides = array();
89
- foreach($settings as $key => $value){
90
- if($settingsPrefix == substr($key, 0, strlen($settingsPrefix)))
91
- $newSettings[substr($key, strlen($settingsPrefix))] = $value;
92
- elseif($stylePrefix == substr($key, 0, strlen($stylePrefix)))
93
- $styleSettings[substr($key, strlen($stylePrefix))] = $value;
94
- elseif($slidePrefix == substr($key, 0, strlen($slidePrefix)))
95
- $slides[substr($key, strlen($slidePrefix))] = $value;
96
- }
 
 
 
97
 
98
- // Slides are prefixed with another prefix, their order ID. All settings of one slide should go into an
99
- // array referenced by their order ID. Create order lookup array below, then order slides accordingly
100
- $slidesOrderLookup = array();
101
- foreach($slides as $key => $value){
102
- $key = explode('_', $key);
103
 
104
- if($key[1] == 'order')
105
- $slidesOrderLookup[$value] = $key[0];
106
- }
107
 
108
- // Order slides with order lookup array
109
- $orderedSlides = array();
110
- foreach($slides as $key => $value){
111
- $key = explode('_', $key);
112
 
113
- foreach($slidesOrderLookup as $order => $id){
114
- if($key[0] == $id){
115
 
116
- // Create array if slot is empty
117
- if(!isset($orderedSlides[$order]) || !is_array($orderedSlides[$order]))
118
- $orderedSlides[$order] = array();
119
 
120
- // Add slide value to array
121
- $orderedSlides[$order][$key[1]] = $value;
122
 
123
- // Slide ID found and value placed in correct order slot, break to next $value
124
- break;
 
125
  }
126
  }
127
- }
128
 
129
- // Update post meta
130
- update_post_meta($slideshow->ID, $settingsKey, $newSettings);
131
- update_post_meta($slideshow->ID, $styleSettingsKey, $styleSettings);
132
- update_post_meta($slideshow->ID, $slidesKey, $orderedSlides);
 
133
  }
134
 
135
  update_option('slideshow-plugin-updated-from-v2-to-v2-1-20', 'updated');
64
  ));
65
 
66
  // Loop through slideshow
67
+ if(is_array($slideshows) && count($slideshows > 0)){
68
+ foreach($slideshows as $slideshow){
69
+ // Get settings
70
+ $settings = get_post_meta(
71
+ $slideshow->ID,
72
+ 'settings',
73
+ true
74
+ );
75
+ if(!is_array($settings))
76
+ $settings = array();
77
+
78
+ // Old prefixes
79
+ $settingsPrefix = 'setting_';
80
+ $stylePrefix = 'style_';
81
+ $slidePrefix = 'slide_';
82
+
83
+ // Meta keys
84
+ $settingsKey = 'settings';
85
+ $styleSettingsKey = 'styleSettings';
86
+ $slidesKey = 'slides';
87
+
88
+ // Extract key => value into new arrays
89
+ $newSettings = array();
90
+ $styleSettings = array();
91
+ $slides = array();
92
+ foreach($settings as $key => $value){
93
+ if($settingsPrefix == substr($key, 0, strlen($settingsPrefix)))
94
+ $newSettings[substr($key, strlen($settingsPrefix))] = $value;
95
+ elseif($stylePrefix == substr($key, 0, strlen($stylePrefix)))
96
+ $styleSettings[substr($key, strlen($stylePrefix))] = $value;
97
+ elseif($slidePrefix == substr($key, 0, strlen($slidePrefix)))
98
+ $slides[substr($key, strlen($slidePrefix))] = $value;
99
+ }
100
 
101
+ // Slides are prefixed with another prefix, their order ID. All settings of one slide should go into an
102
+ // array referenced by their order ID. Create order lookup array below, then order slides accordingly
103
+ $slidesOrderLookup = array();
104
+ foreach($slides as $key => $value){
105
+ $key = explode('_', $key);
106
 
107
+ if($key[1] == 'order')
108
+ $slidesOrderLookup[$value] = $key[0];
109
+ }
110
 
111
+ // Order slides with order lookup array
112
+ $orderedSlides = array();
113
+ foreach($slides as $key => $value){
114
+ $key = explode('_', $key);
115
 
116
+ foreach($slidesOrderLookup as $order => $id){
117
+ if($key[0] == $id){
118
 
119
+ // Create array if slot is empty
120
+ if(!isset($orderedSlides[$order]) || !is_array($orderedSlides[$order]))
121
+ $orderedSlides[$order] = array();
122
 
123
+ // Add slide value to array
124
+ $orderedSlides[$order][$key[1]] = $value;
125
 
126
+ // Slide ID found and value placed in correct order slot, break to next $value
127
+ break;
128
+ }
129
  }
130
  }
 
131
 
132
+ // Update post meta
133
+ update_post_meta($slideshow->ID, $settingsKey, $newSettings);
134
+ update_post_meta($slideshow->ID, $styleSettingsKey, $styleSettings);
135
+ update_post_meta($slideshow->ID, $slidesKey, $orderedSlides);
136
+ }
137
  }
138
 
139
  update_option('slideshow-plugin-updated-from-v2-to-v2-1-20', 'updated');
languages/slideshow-plugin-fr_FR.mo ADDED
Binary file
languages/slideshow-plugin-fr_FR.po ADDED
@@ -0,0 +1,501 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 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"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-KeywordsList: _e;__\n"
14
+ "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.5.4\n"
16
+ "X-Poedit-SourceCharset: UTF-8\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: classes/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 "
279
+ "your posts or pages"
280
+ msgstr ""
281
+ "Pour utiliser ce diaporama sur votre site web, ajoutez ce morceau de code "
282
+ "dans vos articles ou pages"
283
+
284
+ #: views/SlideshowPluginPostType/information.php:5
285
+ msgid ""
286
+ "Or add this piece of code to where ever in your website you want to place "
287
+ "the slideshow"
288
+ msgstr ""
289
+ "Ou ajoutez ce morceau de code là où vous souhaitez afficher le diaporama"
290
+
291
+ #: views/SlideshowPluginPostType/information.php:9
292
+ #, php-format
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"
360
+ 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"
374
+
375
+ #: views/SlideshowPluginPostType/support-plugin.php:6
376
+ msgid ""
377
+ "In order to keep you provided with the newest features, forum support, and "
378
+ "bug-fixes, a lot of motivation is required. Therefore I'm kindly asking you "
379
+ "to consider making a small donation to the plugin or rating it as 5-stars on "
380
+ "Wordpress.org. Thank you in advance!"
381
+ msgstr ""
382
+ "Améliorer ce plugin, maintenir le forum d'aide et pousser des corrections "
383
+ "demande beaucoup de motivation. En conséquence, pouvez-vous envisager une "
384
+ "petite donation ou alors attribuer 5 étoiles à ce plugin sur Wordpress.org. "
385
+ "Merci à vous !"
386
+
387
+ #: views/SlideshowPluginPostType/support-plugin.php:15
388
+ 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 "
423
+ "slideshow here!%s"
424
+ 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"
443
+
444
+ #: views/SlideshowPluginSlideInserter/search-popup.php:7
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"
451
+
452
+ #: views/SlideshowPluginWidget/form.php:9
453
+ msgid "Random Slideshow"
454
+ msgstr "Diaporama aléatoire"
455
+
456
+ #~ msgid "light"
457
+ #~ msgstr "clair"
458
+
459
+ #~ msgid "slide"
460
+ #~ msgstr "diapo"
461
+
462
+ #~ msgid "Custom style editor (Does not work with a Strict Doctype)"
463
+ #~ msgstr "Aangepaste stijl bewerker (Werkt niet met een Strict Doctype)"
464
+
465
+ #~ msgid "Has the Slideshow plugin helped you?"
466
+ #~ msgstr "Heeft de Slideshow plugin je geholpen?"
467
+
468
+ #~ msgid "Help it back!"
469
+ #~ msgstr "Help hem terug!"
470
+
471
+ #~ msgid ""
472
+ #~ "If this plugin has filled you with happiness, please support the upkeep "
473
+ #~ "of the plugin by rating it on Wordpress, posting a suggestion for "
474
+ #~ "improvement on the support forum, or making a donation."
475
+ #~ msgstr ""
476
+ #~ "Als deze plugin je met blijdschap heeft vervuld, zou ik het enorm "
477
+ #~ "waarderen als je de plugin wilt beoordelen op Wordpress, een suggestie "
478
+ #~ "wilt maken voor verbetering, of een donatie doen wilt."
479
+
480
+ #~ msgid "Click on an image to insert it as a slide"
481
+ #~ msgstr "Klik op een plaatje om deze in te voegen als slide"
482
+
483
+ #~ msgid "Width of the slideshow"
484
+ #~ msgstr "Breedte van de slideshow"
485
+
486
+ #~ msgid "Defaults to parent's width."
487
+ #~ msgstr "Standaard ingesteld op de breedte van het bovenliggende element."
488
+
489
+ #~ msgid "Send user to image URL on click"
490
+ #~ msgstr ""
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."
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: 2012-11-10 13:12+0100\n"
6
- "PO-Revision-Date: 2012-11-10 13:12+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"
@@ -15,221 +15,254 @@ 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 "Slideshows"
21
 
22
- #: classes/SlideshowPluginPostType.php:41
23
  #: views/SlideshowPluginWidget/form.php:7
24
  msgid "Slideshow"
25
  msgstr "Slideshow"
26
 
27
- #: classes/SlideshowPluginPostType.php:42
28
  msgid "Add New Slideshow"
29
  msgstr "Nieuwe Slideshow Toevoegen"
30
 
31
- #: classes/SlideshowPluginPostType.php:43
32
  msgid "Edit slideshow"
33
  msgstr "Slideshow bewerken"
34
 
35
- #: classes/SlideshowPluginPostType.php:44
36
  msgid "New slideshow"
37
  msgstr "Nieuwe slideshow"
38
 
39
- #: classes/SlideshowPluginPostType.php:45
40
  msgid "View slideshow"
41
  msgstr "Slideshow bekijken"
42
 
43
- #: classes/SlideshowPluginPostType.php:46
44
  msgid "Search slideshows"
45
  msgstr "Slideshows zoeken"
46
 
47
- #: classes/SlideshowPluginPostType.php:47
48
- #: classes/SlideshowPluginPostType.php:48
49
  msgid "No slideshows found"
50
  msgstr "Geen slideshows gevonden"
51
 
52
- #: classes/SlideshowPluginPostType.php:102
53
  msgid "Information"
54
  msgstr "Informatie"
55
 
56
- #: classes/SlideshowPluginPostType.php:111
57
  msgid "Slides List"
58
  msgstr "Slides Lijst"
59
 
60
- #: classes/SlideshowPluginPostType.php:120
61
  msgid "Slideshow Style"
62
  msgstr "Slideshow Stijl"
63
 
64
- #: classes/SlideshowPluginPostType.php:129
65
  msgid "Slideshow Settings"
66
  msgstr "Slideshow Instellingen"
67
 
68
- #: classes/SlideshowPluginPostType.php:389
69
- msgid "light"
70
- msgstr "licht"
71
-
72
- #: classes/SlideshowPluginPostType.php:391
73
- msgid "slide"
74
- msgstr "slide"
75
-
76
- #: classes/SlideshowPluginPostType.php:412
77
  msgid "Yes"
78
  msgstr "Ja"
79
 
80
- #: classes/SlideshowPluginPostType.php:413
 
 
81
  msgid "No"
82
  msgstr "Nee"
83
 
84
- #: classes/SlideshowPluginPostType.php:415
85
- msgid "The style used for this slideshow"
86
- msgstr "De stijl te gebruiken voor deze slideshow"
87
-
88
- #: classes/SlideshowPluginPostType.php:415
89
- msgid "Light"
90
- msgstr "Licht"
91
-
92
- #: classes/SlideshowPluginPostType.php:415
93
- msgid "Dark"
94
- msgstr "Donker"
95
-
96
- #: classes/SlideshowPluginPostType.php:415
97
- msgid "Custom"
98
- msgstr "Aangepast"
99
-
100
- #: classes/SlideshowPluginPostType.php:416
101
- msgid "Custom style editor"
102
- msgstr "Aangepaste stijl bewerker"
103
-
104
- #: classes/SlideshowPluginPostType.php:417
105
  msgid "Animation used for transition between slides"
106
  msgstr "Animatie tussen het wisselen van de slides"
107
 
108
- #: classes/SlideshowPluginPostType.php:417
 
109
  msgid "Slide"
110
  msgstr "Slide"
111
 
112
- #: classes/SlideshowPluginPostType.php:417
 
113
  msgid "Fade"
114
  msgstr "Fade"
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 "Animatie"
122
 
123
- #: classes/SlideshowPluginPostType.php:418
 
124
  msgid "Number of seconds the slide takes to slide in"
125
  msgstr ""
126
  "Aantal seconden dat de animatie van het inschuiven van de volgende slide "
127
  "duurt"
128
 
129
- #: classes/SlideshowPluginPostType.php:419
 
130
  msgid "Number of seconds the description takes to slide in"
131
  msgstr "Aantal seconden dat het inschuiven van de beschrijving duurt"
132
 
133
- #: classes/SlideshowPluginPostType.php:420
 
134
  msgid "Seconds between changing slides"
135
  msgstr "Seconden tussen het wisselen van de slides"
136
 
137
- #: classes/SlideshowPluginPostType.php:421
 
138
  msgid "Number of slides to fit into one slide"
139
  msgstr "Aantal slides om in een slide te plaatsen"
140
 
141
- #: classes/SlideshowPluginPostType.php:421
142
- #: classes/SlideshowPluginPostType.php:422
143
- #: classes/SlideshowPluginPostType.php:423
144
- #: classes/SlideshowPluginPostType.php:424
145
- #: classes/SlideshowPluginPostType.php:425
146
- #: classes/SlideshowPluginPostType.php:426
147
- #: classes/SlideshowPluginPostType.php:427
 
 
 
 
 
 
 
148
  msgid "Display"
149
  msgstr "Weergave"
150
 
151
- #: classes/SlideshowPluginPostType.php:422
 
152
  msgid "Width of the slideshow, set to parent&#39;s width on 0"
153
  msgstr ""
154
  "Breedte van de slideshow, past zich aan op bovenliggende element wanneer 0"
155
 
156
- #: classes/SlideshowPluginPostType.php:423
 
157
  msgid "Height of the slideshow"
158
  msgstr "Hoogte van de slideshow"
159
 
160
- #: classes/SlideshowPluginPostType.php:424
 
161
  msgid "Height of the description boxes"
162
  msgstr "Hoogte van de beschrijvingen"
163
 
164
- #: classes/SlideshowPluginPostType.php:425
 
165
  msgid "Fit image into slide (stretching it)"
166
  msgstr "Pas afbeelding in de slideshow (oprekken)"
167
 
168
- #: classes/SlideshowPluginPostType.php:426
 
169
  msgid "Show title and description"
170
  msgstr "Toon titel en beschrijving"
171
 
172
- #: classes/SlideshowPluginPostType.php:427
 
173
  msgid "Hide description box, it will pop up when a mouse hovers over the slide"
174
  msgstr ""
175
  "Verbeg beschrijving, toon de slide alleen wanneer de muisaanwijzer boven de "
176
  "slide is"
177
 
178
- #: classes/SlideshowPluginPostType.php:428
 
179
  msgid "Automatically slide to the next slide"
180
  msgstr "Automatisch naar de volgende slide gaan"
181
 
182
- #: classes/SlideshowPluginPostType.php:428
183
- #: classes/SlideshowPluginPostType.php:429
184
- #: classes/SlideshowPluginPostType.php:430
185
- #: classes/SlideshowPluginPostType.php:431
 
 
 
 
186
  msgid "Control"
187
  msgstr "Controle"
188
 
189
- #: classes/SlideshowPluginPostType.php:429
 
190
  msgid "Return to the beginning of the slideshow after last slide"
191
  msgstr "Keer terug naar het begin van de slideshow na de laatste slide."
192
 
193
- #: classes/SlideshowPluginPostType.php:430
 
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/SlideshowPluginPostType.php:431
 
198
  msgid "Show control panel (play and pause button)"
199
  msgstr "Toon controlepaneel (speel en pause knop)"
200
 
201
- #: classes/SlideshowPluginPostType.php:432
202
  msgid "Randomize slides"
203
  msgstr "Toon slides in willekeurige volgorde"
204
 
205
- #: classes/SlideshowPluginPostType.php:432
206
- #: classes/SlideshowPluginPostType.php:434
207
  msgid "Miscellaneous"
208
  msgstr "Overige"
209
 
210
- #: classes/SlideshowPluginPostType.php:434
211
  #, php-format
212
  msgid "Avoid content filter (disable if '%s' is shown)"
213
  msgstr "Content filter omzeilen (uitschakelen als '%s' wordt getoond)"
214
 
215
- #: classes/SlideshowPluginShortcode.php:129
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
216
  msgid "No slideshow selected."
217
  msgstr "Geen slideshow geselecteerd."
218
 
219
- #: classes/SlideshowPluginSlideInserter.php:138
220
  #: views/SlideshowPluginPostType/slides.php:2
221
  msgid "Insert"
222
  msgstr "Invoegen"
223
 
224
- #: classes/SlideshowPluginSlideInserter.php:147
225
  msgid "Load more results"
226
  msgstr "Meer resultaten laden"
227
 
228
- #: classes/SlideshowPluginSlideInserter.php:156
229
  msgid "No images were found, click here to upload some."
230
  msgstr "Geen afbeeldingen gevonden, klik hier om afbeeldingen te uploaden."
231
 
232
- #: classes/SlideshowPluginSlideInserter.php:216
233
  msgid "Are you sure you want to delete this slide?"
234
  msgstr "Weet je zeker dat je deze slide wilt verwijderen?"
235
 
@@ -251,7 +284,7 @@ msgstr ""
251
  "Om deze slideshow op je website te gebruiken voeg je of dit stukje shortcode "
252
  "aan je pagina of post toe"
253
 
254
- #: views/SlideshowPluginPostType/information.php:3
255
  msgid ""
256
  "Or add this piece of code to where ever in your website you want to place "
257
  "the slideshow"
@@ -259,7 +292,7 @@ msgstr ""
259
  "Of je voegt dit stuk code toe aan je broncode op de plaats waar je wilt dat "
260
  "de slideshow te zien is"
261
 
262
- #: views/SlideshowPluginPostType/information.php:5
263
  #, php-format
264
  msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
265
  msgstr ""
@@ -279,54 +312,54 @@ msgstr "Standaard"
279
  msgid "Add slides to this slideshow by using one of the buttons above."
280
  msgstr "Voeg slides toe doormiddel van de bovenstaande knoppen."
281
 
282
- #: views/SlideshowPluginPostType/slides.php:47
283
- #: views/SlideshowPluginPostType/slides.php:141
284
  #: views/SlideshowPluginWidget/form.php:2
285
  msgid "Title"
286
  msgstr "Titel"
287
 
288
- #: views/SlideshowPluginPostType/slides.php:48
289
- #: views/SlideshowPluginPostType/slides.php:142
290
  msgid "Description"
291
  msgstr "Beschrijving"
292
 
293
- #: views/SlideshowPluginPostType/slides.php:49
294
- #: views/SlideshowPluginPostType/slides.php:143
295
  msgid "Background color"
296
  msgstr "Achtergrond kleur"
297
 
298
- #: views/SlideshowPluginPostType/slides.php:55
299
- #: views/SlideshowPluginPostType/slides.php:110
300
- #: views/SlideshowPluginPostType/slides.php:149
301
- #: views/SlideshowPluginPostType/slides.php:197
302
  msgid "Same window"
303
  msgstr "Zelfde scherm"
304
 
305
- #: views/SlideshowPluginPostType/slides.php:56
306
- #: views/SlideshowPluginPostType/slides.php:111
307
- #: views/SlideshowPluginPostType/slides.php:150
308
- #: views/SlideshowPluginPostType/slides.php:198
309
  msgid "New window"
310
  msgstr "Nieuw scherm"
311
 
312
- #: views/SlideshowPluginPostType/slides.php:60
313
- #: views/SlideshowPluginPostType/slides.php:115
314
- #: views/SlideshowPluginPostType/slides.php:154
315
- #: views/SlideshowPluginPostType/slides.php:202
316
  msgid "URL"
317
  msgstr "URL"
318
 
319
- #: views/SlideshowPluginPostType/slides.php:76
320
- #: views/SlideshowPluginPostType/slides.php:170
321
  msgid "Youtube Video ID"
322
  msgstr "Youtube Video ID"
323
 
324
- #: views/SlideshowPluginPostType/slides.php:94
325
- #: views/SlideshowPluginPostType/slides.php:101
326
  msgid "Edit"
327
  msgstr "Bewerken"
328
 
329
- #: views/SlideshowPluginPostType/slides.php:126
330
  msgid ""
331
  "An error occurred while loading this slide, and it will not be present in "
332
  "the slideshow"
@@ -334,10 +367,10 @@ msgstr ""
334
  "Een fout is ontstaan tijdens het laden van deze slide, de slide zal niet te "
335
  "bekijken zijn in je slideshow"
336
 
337
- #: views/SlideshowPluginPostType/slides.php:131
338
- #: views/SlideshowPluginPostType/slides.php:162
339
  #: views/SlideshowPluginPostType/slides.php:177
340
- #: views/SlideshowPluginPostType/slides.php:211
 
341
  msgid "Delete slide"
342
  msgstr "Verwijder slide"
343
 
@@ -382,6 +415,7 @@ msgid "Select a slideshow"
382
  msgstr "Selecteer een slideshow"
383
 
384
  #: views/SlideshowPluginShortcode/shortcode-inserter.php:35
 
385
  msgid "Untitled slideshow"
386
  msgstr "Naamloze slideshow"
387
 
@@ -426,6 +460,12 @@ msgstr "Upload/Beheer Afbeeldingen"
426
  msgid "Random Slideshow"
427
  msgstr "Willekeurige Slideshow"
428
 
 
 
 
 
 
 
429
  #~ msgid "Custom style editor (Does not work with a Strict Doctype)"
430
  #~ msgstr "Aangepaste stijl bewerker (Werkt niet met een Strict Doctype)"
431
 
2
  msgstr ""
3
  "Project-Id-Version: Slideshow Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-06 18:44+0100\n"
6
+ "PO-Revision-Date: 2012-12-06 18:44+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"
15
  "X-Generator: Poedit 1.5.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: classes/SlideshowPluginPostType.php:32
19
  msgid "Slideshows"
20
  msgstr "Slideshows"
21
 
22
+ #: classes/SlideshowPluginPostType.php:33
23
  #: views/SlideshowPluginWidget/form.php:7
24
  msgid "Slideshow"
25
  msgstr "Slideshow"
26
 
27
+ #: classes/SlideshowPluginPostType.php:34
28
  msgid "Add New Slideshow"
29
  msgstr "Nieuwe Slideshow Toevoegen"
30
 
31
+ #: classes/SlideshowPluginPostType.php:35
32
  msgid "Edit slideshow"
33
  msgstr "Slideshow bewerken"
34
 
35
+ #: classes/SlideshowPluginPostType.php:36
36
  msgid "New slideshow"
37
  msgstr "Nieuwe slideshow"
38
 
39
+ #: classes/SlideshowPluginPostType.php:37
40
  msgid "View slideshow"
41
  msgstr "Slideshow bekijken"
42
 
43
+ #: classes/SlideshowPluginPostType.php:38
44
  msgid "Search slideshows"
45
  msgstr "Slideshows zoeken"
46
 
47
+ #: classes/SlideshowPluginPostType.php:39
48
+ #: classes/SlideshowPluginPostType.php:40
49
  msgid "No slideshows found"
50
  msgstr "Geen slideshows gevonden"
51
 
52
+ #: classes/SlideshowPluginPostType.php:95
53
  msgid "Information"
54
  msgstr "Informatie"
55
 
56
+ #: classes/SlideshowPluginPostType.php:104
57
  msgid "Slides List"
58
  msgstr "Slides Lijst"
59
 
60
+ #: classes/SlideshowPluginPostType.php:113
61
  msgid "Slideshow Style"
62
  msgstr "Slideshow Stijl"
63
 
64
+ #: classes/SlideshowPluginPostType.php:122
65
  msgid "Slideshow Settings"
66
  msgstr "Slideshow Instellingen"
67
 
68
+ #: classes/SlideshowPluginSettingsHandler.php:309
69
+ #: classes/SlideshowPluginSettingsHandler.php:374
70
+ #: classes/SlideshowPluginUpdater.php:183
 
 
 
 
 
 
71
  msgid "Yes"
72
  msgstr "Ja"
73
 
74
+ #: classes/SlideshowPluginSettingsHandler.php:310
75
+ #: classes/SlideshowPluginSettingsHandler.php:375
76
+ #: classes/SlideshowPluginUpdater.php:184
77
  msgid "No"
78
  msgstr "Nee"
79
 
80
+ #: classes/SlideshowPluginSettingsHandler.php:337
81
+ #: classes/SlideshowPluginUpdater.php:188
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
82
  msgid "Animation used for transition between slides"
83
  msgstr "Animatie tussen het wisselen van de slides"
84
 
85
+ #: classes/SlideshowPluginSettingsHandler.php:337
86
+ #: classes/SlideshowPluginUpdater.php:188
87
  msgid "Slide"
88
  msgstr "Slide"
89
 
90
+ #: classes/SlideshowPluginSettingsHandler.php:337
91
+ #: classes/SlideshowPluginUpdater.php:188
92
  msgid "Fade"
93
  msgstr "Fade"
94
 
95
+ #: classes/SlideshowPluginSettingsHandler.php:337
96
+ #: classes/SlideshowPluginSettingsHandler.php:338
97
+ #: classes/SlideshowPluginSettingsHandler.php:339
98
+ #: classes/SlideshowPluginSettingsHandler.php:340
99
+ #: classes/SlideshowPluginUpdater.php:188
100
+ #: classes/SlideshowPluginUpdater.php:189
101
+ #: classes/SlideshowPluginUpdater.php:190
102
+ #: classes/SlideshowPluginUpdater.php:191
103
  msgid "Animation"
104
  msgstr "Animatie"
105
 
106
+ #: classes/SlideshowPluginSettingsHandler.php:338
107
+ #: classes/SlideshowPluginUpdater.php:189
108
  msgid "Number of seconds the slide takes to slide in"
109
  msgstr ""
110
  "Aantal seconden dat de animatie van het inschuiven van de volgende slide "
111
  "duurt"
112
 
113
+ #: classes/SlideshowPluginSettingsHandler.php:339
114
+ #: classes/SlideshowPluginUpdater.php:190
115
  msgid "Number of seconds the description takes to slide in"
116
  msgstr "Aantal seconden dat het inschuiven van de beschrijving duurt"
117
 
118
+ #: classes/SlideshowPluginSettingsHandler.php:340
119
+ #: classes/SlideshowPluginUpdater.php:191
120
  msgid "Seconds between changing slides"
121
  msgstr "Seconden tussen het wisselen van de slides"
122
 
123
+ #: classes/SlideshowPluginSettingsHandler.php:341
124
+ #: classes/SlideshowPluginUpdater.php:192
125
  msgid "Number of slides to fit into one slide"
126
  msgstr "Aantal slides om in een slide te plaatsen"
127
 
128
+ #: classes/SlideshowPluginSettingsHandler.php:341
129
+ #: classes/SlideshowPluginSettingsHandler.php:342
130
+ #: classes/SlideshowPluginSettingsHandler.php:343
131
+ #: classes/SlideshowPluginSettingsHandler.php:344
132
+ #: classes/SlideshowPluginSettingsHandler.php:345
133
+ #: classes/SlideshowPluginSettingsHandler.php:346
134
+ #: classes/SlideshowPluginSettingsHandler.php:347
135
+ #: classes/SlideshowPluginUpdater.php:192
136
+ #: classes/SlideshowPluginUpdater.php:193
137
+ #: classes/SlideshowPluginUpdater.php:194
138
+ #: classes/SlideshowPluginUpdater.php:195
139
+ #: classes/SlideshowPluginUpdater.php:196
140
+ #: classes/SlideshowPluginUpdater.php:197
141
+ #: classes/SlideshowPluginUpdater.php:198
142
  msgid "Display"
143
  msgstr "Weergave"
144
 
145
+ #: classes/SlideshowPluginSettingsHandler.php:342
146
+ #: classes/SlideshowPluginUpdater.php:193
147
  msgid "Width of the slideshow, set to parent&#39;s width on 0"
148
  msgstr ""
149
  "Breedte van de slideshow, past zich aan op bovenliggende element wanneer 0"
150
 
151
+ #: classes/SlideshowPluginSettingsHandler.php:343
152
+ #: classes/SlideshowPluginUpdater.php:194
153
  msgid "Height of the slideshow"
154
  msgstr "Hoogte van de slideshow"
155
 
156
+ #: classes/SlideshowPluginSettingsHandler.php:344
157
+ #: classes/SlideshowPluginUpdater.php:195
158
  msgid "Height of the description boxes"
159
  msgstr "Hoogte van de beschrijvingen"
160
 
161
+ #: classes/SlideshowPluginSettingsHandler.php:345
162
+ #: classes/SlideshowPluginUpdater.php:196
163
  msgid "Fit image into slide (stretching it)"
164
  msgstr "Pas afbeelding in de slideshow (oprekken)"
165
 
166
+ #: classes/SlideshowPluginSettingsHandler.php:346
167
+ #: classes/SlideshowPluginUpdater.php:197
168
  msgid "Show title and description"
169
  msgstr "Toon titel en beschrijving"
170
 
171
+ #: classes/SlideshowPluginSettingsHandler.php:347
172
+ #: classes/SlideshowPluginUpdater.php:198
173
  msgid "Hide description box, it will pop up when a mouse hovers over the slide"
174
  msgstr ""
175
  "Verbeg beschrijving, toon de slide alleen wanneer de muisaanwijzer boven de "
176
  "slide is"
177
 
178
+ #: classes/SlideshowPluginSettingsHandler.php:348
179
+ #: classes/SlideshowPluginUpdater.php:199
180
  msgid "Automatically slide to the next slide"
181
  msgstr "Automatisch naar de volgende slide gaan"
182
 
183
+ #: classes/SlideshowPluginSettingsHandler.php:348
184
+ #: classes/SlideshowPluginSettingsHandler.php:349
185
+ #: classes/SlideshowPluginSettingsHandler.php:350
186
+ #: classes/SlideshowPluginSettingsHandler.php:351
187
+ #: classes/SlideshowPluginUpdater.php:199
188
+ #: classes/SlideshowPluginUpdater.php:200
189
+ #: classes/SlideshowPluginUpdater.php:201
190
+ #: classes/SlideshowPluginUpdater.php:202
191
  msgid "Control"
192
  msgstr "Controle"
193
 
194
+ #: classes/SlideshowPluginSettingsHandler.php:349
195
+ #: classes/SlideshowPluginUpdater.php:200
196
  msgid "Return to the beginning of the slideshow after last slide"
197
  msgstr "Keer terug naar het begin van de slideshow na de laatste slide."
198
 
199
+ #: classes/SlideshowPluginSettingsHandler.php:350
200
+ #: classes/SlideshowPluginUpdater.php:201
201
  msgid "Activate buttons (so the user can scroll through the slides)"
202
  msgstr "Knoppen activeren (zodat de gebruiker door de slides kan scrollen)"
203
 
204
+ #: classes/SlideshowPluginSettingsHandler.php:351
205
+ #: classes/SlideshowPluginUpdater.php:202
206
  msgid "Show control panel (play and pause button)"
207
  msgstr "Toon controlepaneel (speel en pause knop)"
208
 
209
+ #: classes/SlideshowPluginSettingsHandler.php:352
210
  msgid "Randomize slides"
211
  msgstr "Toon slides in willekeurige volgorde"
212
 
213
+ #: classes/SlideshowPluginSettingsHandler.php:352
214
+ #: classes/SlideshowPluginSettingsHandler.php:353
215
  msgid "Miscellaneous"
216
  msgstr "Overige"
217
 
218
+ #: classes/SlideshowPluginSettingsHandler.php:353
219
  #, php-format
220
  msgid "Avoid content filter (disable if '%s' is shown)"
221
  msgstr "Content filter omzeilen (uitschakelen als '%s' wordt getoond)"
222
 
223
+ #: classes/SlideshowPluginSettingsHandler.php:386
224
+ #: classes/SlideshowPluginUpdater.php:186
225
+ msgid "The style used for this slideshow"
226
+ msgstr "De stijl te gebruiken voor deze slideshow"
227
+
228
+ #: classes/SlideshowPluginSettingsHandler.php:386
229
+ #: classes/SlideshowPluginUpdater.php:186
230
+ msgid "Light"
231
+ msgstr "Licht"
232
+
233
+ #: classes/SlideshowPluginSettingsHandler.php:386
234
+ #: classes/SlideshowPluginUpdater.php:186
235
+ msgid "Dark"
236
+ msgstr "Donker"
237
+
238
+ #: classes/SlideshowPluginSettingsHandler.php:386
239
+ #: classes/SlideshowPluginUpdater.php:186
240
+ msgid "Custom"
241
+ msgstr "Aangepast"
242
+
243
+ #: classes/SlideshowPluginSettingsHandler.php:387
244
+ #: classes/SlideshowPluginUpdater.php:187
245
+ msgid "Custom style editor"
246
+ msgstr "Aangepaste stijl bewerker"
247
+
248
+ #: classes/SlideshowPluginShortcode.php:130
249
  msgid "No slideshow selected."
250
  msgstr "Geen slideshow geselecteerd."
251
 
252
+ #: classes/SlideshowPluginSlideInserter.php:148
253
  #: views/SlideshowPluginPostType/slides.php:2
254
  msgid "Insert"
255
  msgstr "Invoegen"
256
 
257
+ #: classes/SlideshowPluginSlideInserter.php:157
258
  msgid "Load more results"
259
  msgstr "Meer resultaten laden"
260
 
261
+ #: classes/SlideshowPluginSlideInserter.php:166
262
  msgid "No images were found, click here to upload some."
263
  msgstr "Geen afbeeldingen gevonden, klik hier om afbeeldingen te uploaden."
264
 
265
+ #: classes/SlideshowPluginSlideInserter.php:227
266
  msgid "Are you sure you want to delete this slide?"
267
  msgstr "Weet je zeker dat je deze slide wilt verwijderen?"
268
 
284
  "Om deze slideshow op je website te gebruiken voeg je of dit stukje shortcode "
285
  "aan je pagina of post toe"
286
 
287
+ #: views/SlideshowPluginPostType/information.php:5
288
  msgid ""
289
  "Or add this piece of code to where ever in your website you want to place "
290
  "the slideshow"
292
  "Of je voegt dit stuk code toe aan je broncode op de plaats waar je wilt dat "
293
  "de slideshow te zien is"
294
 
295
+ #: views/SlideshowPluginPostType/information.php:9
296
  #, php-format
297
  msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
298
  msgstr ""
312
  msgid "Add slides to this slideshow by using one of the buttons above."
313
  msgstr "Voeg slides toe doormiddel van de bovenstaande knoppen."
314
 
315
+ #: views/SlideshowPluginPostType/slides.php:51
316
+ #: views/SlideshowPluginPostType/slides.php:156
317
  #: views/SlideshowPluginWidget/form.php:2
318
  msgid "Title"
319
  msgstr "Titel"
320
 
321
+ #: views/SlideshowPluginPostType/slides.php:52
322
+ #: views/SlideshowPluginPostType/slides.php:157
323
  msgid "Description"
324
  msgstr "Beschrijving"
325
 
326
+ #: views/SlideshowPluginPostType/slides.php:53
327
+ #: views/SlideshowPluginPostType/slides.php:158
328
  msgid "Background color"
329
  msgstr "Achtergrond kleur"
330
 
331
+ #: views/SlideshowPluginPostType/slides.php:59
332
+ #: views/SlideshowPluginPostType/slides.php:124
333
+ #: views/SlideshowPluginPostType/slides.php:164
334
+ #: views/SlideshowPluginPostType/slides.php:212
335
  msgid "Same window"
336
  msgstr "Zelfde scherm"
337
 
338
+ #: views/SlideshowPluginPostType/slides.php:60
339
+ #: views/SlideshowPluginPostType/slides.php:125
340
+ #: views/SlideshowPluginPostType/slides.php:165
341
+ #: views/SlideshowPluginPostType/slides.php:213
342
  msgid "New window"
343
  msgstr "Nieuw scherm"
344
 
345
+ #: views/SlideshowPluginPostType/slides.php:64
346
+ #: views/SlideshowPluginPostType/slides.php:129
347
+ #: views/SlideshowPluginPostType/slides.php:169
348
+ #: views/SlideshowPluginPostType/slides.php:217
349
  msgid "URL"
350
  msgstr "URL"
351
 
352
+ #: views/SlideshowPluginPostType/slides.php:80
353
+ #: views/SlideshowPluginPostType/slides.php:185
354
  msgid "Youtube Video ID"
355
  msgstr "Youtube Video ID"
356
 
357
+ #: views/SlideshowPluginPostType/slides.php:108
358
+ #: views/SlideshowPluginPostType/slides.php:115
359
  msgid "Edit"
360
  msgstr "Bewerken"
361
 
362
+ #: views/SlideshowPluginPostType/slides.php:140
363
  msgid ""
364
  "An error occurred while loading this slide, and it will not be present in "
365
  "the slideshow"
367
  "Een fout is ontstaan tijdens het laden van deze slide, de slide zal niet te "
368
  "bekijken zijn in je slideshow"
369
 
370
+ #: views/SlideshowPluginPostType/slides.php:145
 
371
  #: views/SlideshowPluginPostType/slides.php:177
372
+ #: views/SlideshowPluginPostType/slides.php:192
373
+ #: views/SlideshowPluginPostType/slides.php:226
374
  msgid "Delete slide"
375
  msgstr "Verwijder slide"
376
 
415
  msgstr "Selecteer een slideshow"
416
 
417
  #: views/SlideshowPluginShortcode/shortcode-inserter.php:35
418
+ #: views/SlideshowPluginWidget/form.php:12
419
  msgid "Untitled slideshow"
420
  msgstr "Naamloze slideshow"
421
 
460
  msgid "Random Slideshow"
461
  msgstr "Willekeurige Slideshow"
462
 
463
+ #~ msgid "light"
464
+ #~ msgstr "licht"
465
+
466
+ #~ msgid "slide"
467
+ #~ msgstr "slide"
468
+
469
  #~ msgid "Custom style editor (Does not work with a Strict Doctype)"
470
  #~ msgstr "Aangepaste stijl bewerker (Werkt niet met een Strict Doctype)"
471
 
readme.txt CHANGED
@@ -5,7 +5,7 @@ Donate link: http://stefanboonstra.com/donate-to-slideshow/
5
  Tags: slideshow, slider, slide, slides, show, images, image, photo, gallery, galleries, jquery, javascript, video, text
6
  Requires at least: 3.3
7
  Tested up to: 3.5
8
- Stable tag: 2.1.20
9
  License: GPLv2
10
 
11
  Integrate a fancy slideshow in just five steps. - Rainbows. Rainbows everywhere.
@@ -35,10 +35,11 @@ different images, settings and styles for each one of them.
35
 
36
  = Languages =
37
 
38
- - English
39
  - Dutch
 
 
40
  - Russian (Translated by [Oleg Fritz](http://www.facebook.com/profile.php?id=100001331241069))
41
- - Chinese (Translated by [Kevin Tell](http://www.ivygg.com/))
42
 
43
  Feel free to send me your own translation of the plugin to my e-mail address: wordpress@stefanboonstra.com. Many
44
  thanks in advance!
@@ -107,11 +108,16 @@ slideshow may not be styled.
107
 
108
  == Changelog ==
109
 
 
 
 
 
110
  = 2.1.20 =
111
  * Fixed: Query filters will no longer alter the output of the slideshow.
112
  * Fixed: Images not always showing in image inserter popup.
113
  * Compatibility with WordPress 3.5 confirmed.
114
  * First back-end increment towards version 2.2.0, introducing a more efficient way to store and retrieve the slideshow's settings and slides.
 
115
 
116
  = 2.1.19 =
117
  * Fixed: Slides are now always floated, despite any parent CSS settings.
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.21
9
  License: GPLv2
10
 
11
  Integrate a fancy slideshow in just five steps. - Rainbows. Rainbows everywhere.
35
 
36
  = Languages =
37
 
38
+ - Chinese (Translated by [Kevin Tell](http://www.ivygg.com/))
39
  - Dutch
40
+ - English
41
+ - French (Translated by [Wptheme](http://wptheme.fr/)
42
  - Russian (Translated by [Oleg Fritz](http://www.facebook.com/profile.php?id=100001331241069))
 
43
 
44
  Feel free to send me your own translation of the plugin to my e-mail address: wordpress@stefanboonstra.com. Many
45
  thanks in advance!
108
 
109
  == Changelog ==
110
 
111
+ = 2.1.21 =
112
+ * Fixed: Adding new slides was made impossible by a faulty setting.
113
+ * Fixed: Image tag placed on multiple lines caused some sites to not display images correctly due to an inserted break character.
114
+
115
  = 2.1.20 =
116
  * Fixed: Query filters will no longer alter the output of the slideshow.
117
  * Fixed: Images not always showing in image inserter popup.
118
  * Compatibility with WordPress 3.5 confirmed.
119
  * First back-end increment towards version 2.2.0, introducing a more efficient way to store and retrieve the slideshow's settings and slides.
120
+ * Added French translation
121
 
122
  = 2.1.19 =
123
  * Fixed: Slides are now always floated, despite any parent CSS settings.
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.20
7
  Requires at least: 3.3
8
  Author: StefanBoonstra
9
  Author URI: http://stefanboonstra.com
@@ -21,7 +21,7 @@
21
  class SlideshowPluginMain {
22
 
23
  /** Variables */
24
- static $version = '2.1.20';
25
 
26
  /**
27
  * 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.1.21
7
  Requires at least: 3.3
8
  Author: StefanBoonstra
9
  Author URI: http://stefanboonstra.com
21
  class SlideshowPluginMain {
22
 
23
  /** Variables */
24
+ static $version = '2.1.21';
25
 
26
  /**
27
  * Bootstraps the application by assigning the right functions to
views/SlideshowPlugin/slideshow.php CHANGED
@@ -94,10 +94,7 @@
94
  </a>
95
  </div>
96
  <a <?php if(!empty($url)) echo 'href="' . $url . '"'; ?> <?php if(!empty($target)) echo 'target="' . $target . '"'; ?>>
97
- <img
98
- src="<?php echo htmlspecialchars($imageSrc); ?>"
99
- alt="<?php echo htmlspecialchars($attachment->post_title); ?>"
100
- />
101
  </a>
102
  </div>
103
 
94
  </a>
95
  </div>
96
  <a <?php if(!empty($url)) echo 'href="' . $url . '"'; ?> <?php if(!empty($target)) echo 'target="' . $target . '"'; ?>>
97
+ <img src="<?php echo htmlspecialchars($imageSrc); ?>" alt="<?php echo htmlspecialchars($attachment->post_title); ?>" />
 
 
 
98
  </a>
99
  </div>
100
 
views/SlideshowPluginPostType/style-settings.php CHANGED
@@ -1,7 +1,10 @@
1
  <table>
2
- <?php if(count($settings) > 0): ?>
 
3
  <?php foreach($settings as $key => $value): ?>
4
 
 
 
5
  <tr <?php if(isset($value['dependsOn'])) echo 'style="display:none;"'; ?>>
6
  <td><?php echo $value['description']; ?></td>
7
  <td><?php echo SlideshowPluginSettingsHandler::getInputField(htmlspecialchars(SlideshowPluginSettingsHandler::$styleSettingsKey), $key, $value); ?></td>
@@ -9,5 +12,6 @@
9
  </tr>
10
 
11
  <?php endforeach; ?>
 
12
  <?php endif; ?>
13
  </table>
1
  <table>
2
+ <?php if(count($settings) > 0): $i = 0; ?>
3
+
4
  <?php foreach($settings as $key => $value): ?>
5
 
6
+ <?php if(empty($value) || !is_array($value)) continue; ?>
7
+ <?php //var_dump($value); ?>
8
  <tr <?php if(isset($value['dependsOn'])) echo 'style="display:none;"'; ?>>
9
  <td><?php echo $value['description']; ?></td>
10
  <td><?php echo SlideshowPluginSettingsHandler::getInputField(htmlspecialchars(SlideshowPluginSettingsHandler::$styleSettingsKey), $key, $value); ?></td>
12
  </tr>
13
 
14
  <?php endforeach; ?>
15
+
16
  <?php endif; ?>
17
  </table>