Slideshow - Version 2.2.22

Version Description

  • Compatible with WordPress 4.2.
  • Default stylesheets are no longer dynamically loaded through admin-ajax.php.
  • Fixed: Security vulnerability in the SlideshowPluginSlideshowStylesheet class.
  • Fixed: An issue with admin-ajax.php when the frontend uses HTTP, while the backend uses HTTPS. Thanks to Chris Scott
  • Fixed: A bug that caused the previous slide button and the navigation bullets to malfunction on "Cross Fade" setting.
  • Fixed: Slideshow container calculation now uses the JavaScript round function instead of the floor function.
  • Fixed: Separated assignment of $sessionID and increment of SlideshowPlugin::$sessionCounter.
  • Added Norwegian translation by A. Nonymous.
  • Updated Persian translation by W3Design.
  • Updated German translation by A. Nonymous.
  • Updated Brazilian Portuguese by A. Nonymous.
Download this release

Release Info

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

Code changes from version 2.2.21 to 2.2.22

Files changed (48) hide show
  1. classes/SlideshowPlugin.php +3 -1
  2. classes/SlideshowPluginSlideshowStylesheet.php +37 -16
  3. css/style-dark.css +115 -0
  4. css/style-light.css +120 -0
  5. js/min/all.frontend.min.js +7 -7
  6. languages/slideshow-plugin-bg_BG.mo +0 -0
  7. languages/slideshow-plugin-bg_BG.po +10 -7
  8. languages/slideshow-plugin-cs_CZ.mo +0 -0
  9. languages/slideshow-plugin-cs_CZ.po +7 -3
  10. languages/slideshow-plugin-de_DE.mo +0 -0
  11. languages/slideshow-plugin-de_DE.po +151 -142
  12. languages/slideshow-plugin-es_ES.mo +0 -0
  13. languages/slideshow-plugin-es_ES.po +8 -4
  14. languages/slideshow-plugin-fa_IR.mo +0 -0
  15. languages/slideshow-plugin-fa_IR.po +23 -18
  16. languages/slideshow-plugin-fi.mo +0 -0
  17. languages/slideshow-plugin-fi.po +7 -3
  18. languages/slideshow-plugin-fr_FR.mo +0 -0
  19. languages/slideshow-plugin-fr_FR.po +7 -3
  20. languages/slideshow-plugin-he_IL.mo +0 -0
  21. languages/slideshow-plugin-he_IL.po +7 -3
  22. languages/slideshow-plugin-it_IT.mo +0 -0
  23. languages/slideshow-plugin-it_IT.po +7 -3
  24. languages/slideshow-plugin-ja.mo +0 -0
  25. languages/slideshow-plugin-ja.po +7 -3
  26. languages/slideshow-plugin-nl_NL.mo +0 -0
  27. languages/slideshow-plugin-nl_NL.po +950 -946
  28. languages/slideshow-plugin-original.mo +0 -0
  29. languages/slideshow-plugin-original.po +850 -844
  30. languages/slideshow-plugin-pl_PL.mo +0 -0
  31. languages/slideshow-plugin-pl_PL.po +7 -3
  32. languages/slideshow-plugin-pt_BR.mo +0 -0
  33. languages/slideshow-plugin-pt_BR.po +36 -32
  34. languages/slideshow-plugin-pt_PT.mo +0 -0
  35. languages/slideshow-plugin-pt_PT.po +7 -3
  36. languages/slideshow-plugin-ru_RU.mo +0 -0
  37. languages/slideshow-plugin-ru_RU.po +8 -4
  38. languages/slideshow-plugin-sr_RS.mo +0 -0
  39. languages/slideshow-plugin-sr_RS.po +8 -4
  40. languages/slideshow-plugin-sv_SE.mo +0 -0
  41. languages/slideshow-plugin-sv_SE.po +7 -3
  42. languages/slideshow-plugin-tr_TR.mo +0 -0
  43. languages/slideshow-plugin-tr_TR.po +7 -3
  44. languages/slideshow-plugin-zh_CN.mo +0 -0
  45. languages/slideshow-plugin-zh_CN.po +7 -3
  46. readme.txt +25 -11
  47. slideshow.php +2 -2
  48. style/SlideshowPlugin/functional.css +149 -149
classes/SlideshowPlugin.php CHANGED
@@ -104,7 +104,7 @@ class SlideshowPlugin
104
  $styleSettings = SlideshowPluginSlideshowSettingsHandler::getStyleSettings($post->ID);
105
 
106
  // The slideshow's session ID, allows JavaScript and CSS to distinguish between multiple slideshows
107
- $sessionID = self::$sessionCounter++;
108
 
109
  // Only enqueue the functional stylesheet when the 'allStylesheetsRegistered' flag is false
110
  if (!SlideshowPluginSlideshowStylesheet::$allStylesheetsRegistered)
@@ -177,6 +177,8 @@ class SlideshowPlugin
177
  admin_url()
178
  );
179
 
 
 
180
  // Return output
181
  return $output;
182
  }
104
  $styleSettings = SlideshowPluginSlideshowSettingsHandler::getStyleSettings($post->ID);
105
 
106
  // The slideshow's session ID, allows JavaScript and CSS to distinguish between multiple slideshows
107
+ $sessionID = self::$sessionCounter;
108
 
109
  // Only enqueue the functional stylesheet when the 'allStylesheetsRegistered' flag is false
110
  if (!SlideshowPluginSlideshowStylesheet::$allStylesheetsRegistered)
177
  admin_url()
178
  );
179
 
180
+ self::$sessionCounter++;
181
+
182
  // Return output
183
  return $output;
184
  }
classes/SlideshowPluginSlideshowStylesheet.php CHANGED
@@ -58,7 +58,7 @@ class SlideshowPluginSlideshowStylesheet
58
  {
59
  wp_enqueue_style(
60
  'slideshow-jquery-image-gallery-ajax-stylesheet_' . $stylesheetKey,
61
- admin_url('admin-ajax.php?action=slideshow_jquery_image_gallery_load_stylesheet&style=' . $stylesheetKey),
62
  array(),
63
  $stylesheetValue['version']
64
  );
@@ -80,6 +80,9 @@ class SlideshowPluginSlideshowStylesheet
80
  */
81
  public static function enqueueStylesheet($name = null)
82
  {
 
 
 
83
  if (isset($name))
84
  {
85
  // Try to get the custom style's version
@@ -98,23 +101,35 @@ class SlideshowPluginSlideshowStylesheet
98
  }
99
  else
100
  {
101
- $name = str_replace('.css', '', $name);
102
- $version = SlideshowPluginMain::$version;
103
  }
104
  }
105
  else
106
  {
107
- $name = 'style-light';
108
- $version = SlideshowPluginMain::$version;
109
  }
110
 
111
  // Enqueue stylesheet
112
- wp_enqueue_style(
113
- 'slideshow-jquery-image-gallery-ajax-stylesheet_' . $name,
114
- admin_url('admin-ajax.php?action=slideshow_jquery_image_gallery_load_stylesheet&style=' . $name),
115
- array(),
116
- $version
117
- );
 
 
 
 
 
 
 
 
 
 
 
 
118
 
119
  return array($name, $version);
120
  }
@@ -172,10 +187,16 @@ class SlideshowPluginSlideshowStylesheet
172
  */
173
  public static function getStylesheet($styleName)
174
  {
175
- // Get custom stylesheet, of the default stylesheet if the custom stylesheet does not exist
176
- $stylesheet = get_option($styleName, '');
177
 
178
- if (strlen($stylesheet) <= 0)
 
 
 
 
 
 
179
  {
180
  $stylesheetFile = SlideshowPluginMain::getPluginPath() . DIRECTORY_SEPARATOR . 'style' . DIRECTORY_SEPARATOR . 'SlideshowPlugin' . DIRECTORY_SEPARATOR . $styleName . '.css';
181
 
@@ -187,7 +208,7 @@ class SlideshowPluginSlideshowStylesheet
187
  // Get contents of stylesheet
188
  ob_start();
189
  include($stylesheetFile);
190
- $stylesheet .= ob_get_clean();
191
  }
192
 
193
  // Replace the URL placeholders with actual URLs and add a unique identifier to separate stylesheets
@@ -199,4 +220,4 @@ class SlideshowPluginSlideshowStylesheet
199
 
200
  return $stylesheet;
201
  }
202
- }
58
  {
59
  wp_enqueue_style(
60
  'slideshow-jquery-image-gallery-ajax-stylesheet_' . $stylesheetKey,
61
+ admin_url('admin-ajax.php?action=slideshow_jquery_image_gallery_load_stylesheet&style=' . $stylesheetKey, 'admin'),
62
  array(),
63
  $stylesheetValue['version']
64
  );
80
  */
81
  public static function enqueueStylesheet($name = null)
82
  {
83
+ $enqueueDynamicStylesheet = true;
84
+ $version = SlideshowPluginMain::$version;
85
+
86
  if (isset($name))
87
  {
88
  // Try to get the custom style's version
101
  }
102
  else
103
  {
104
+ $enqueueDynamicStylesheet = false;
105
+ $name = str_replace('.css', '', $name);
106
  }
107
  }
108
  else
109
  {
110
+ $enqueueDynamicStylesheet = false;
111
+ $name = 'style-light';
112
  }
113
 
114
  // Enqueue stylesheet
115
+ if ($enqueueDynamicStylesheet)
116
+ {
117
+ wp_enqueue_style(
118
+ 'slideshow-jquery-image-gallery-ajax-stylesheet_' . $name,
119
+ admin_url('admin-ajax.php?action=slideshow_jquery_image_gallery_load_stylesheet&style=' . $name, 'admin'),
120
+ array(),
121
+ $version
122
+ );
123
+ }
124
+ else
125
+ {
126
+ wp_enqueue_style(
127
+ 'slideshow-jquery-image-gallery-stylesheet_' . $name,
128
+ SlideshowPluginMain::getPluginUrl() . '/css/' . $name . '.css',
129
+ array(),
130
+ $version
131
+ );
132
+ }
133
 
134
  return array($name, $version);
135
  }
187
  */
188
  public static function getStylesheet($styleName)
189
  {
190
+ // Get custom style keys
191
+ $customStyleKeys = array_keys(get_option(SlideshowPluginGeneralSettings::$customStyles, array()));
192
 
193
+ // Match $styleName against custom style keys
194
+ if (in_array($styleName, $customStyleKeys))
195
+ {
196
+ // Get custom stylesheet
197
+ $stylesheet = get_option($styleName, '');
198
+ }
199
+ else
200
  {
201
  $stylesheetFile = SlideshowPluginMain::getPluginPath() . DIRECTORY_SEPARATOR . 'style' . DIRECTORY_SEPARATOR . 'SlideshowPlugin' . DIRECTORY_SEPARATOR . $styleName . '.css';
202
 
208
  // Get contents of stylesheet
209
  ob_start();
210
  include($stylesheetFile);
211
+ $stylesheet = ob_get_clean();
212
  }
213
 
214
  // Replace the URL placeholders with actual URLs and add a unique identifier to separate stylesheets
220
 
221
  return $stylesheet;
222
  }
223
+ }
css/style-dark.css ADDED
@@ -0,0 +1,115 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .slideshow_container_style-dark { background: #000; }
2
+
3
+ .slideshow_container_style-dark a { text-decoration: none; }
4
+ .slideshow_container_style-dark a:hover { text-decoration: none; }
5
+
6
+ .slideshow_container_style-dark .slideshow_slide { margin-right: 2px; }
7
+ .slideshow_container_style-dark .slideshow_slide_image { }
8
+ .slideshow_container_style-dark .slideshow_slide_video { }
9
+
10
+ .slideshow_container_style-dark .slideshow_slide_text div.slideshow_title { font-size: 1.3em; }
11
+ .slideshow_container_style-dark .slideshow_slide_text div.slideshow_description { }
12
+
13
+ .slideshow_container_style-dark .slideshow_slide_text div,
14
+ .slideshow_container_style-dark .slideshow_slide_text p,
15
+ .slideshow_container_style-dark .slideshow_slide_text h1,
16
+ .slideshow_container_style-dark .slideshow_slide_text h2,
17
+ .slideshow_container_style-dark .slideshow_slide_text h3,
18
+ .slideshow_container_style-dark .slideshow_slide_text h4,
19
+ .slideshow_container_style-dark .slideshow_slide_text h5,
20
+ .slideshow_container_style-dark .slideshow_slide_text h6 {
21
+ text-align: center;
22
+ }
23
+
24
+ .slideshow_container_style-dark .slideshow_description_box { background: #000; width: 100%; }
25
+
26
+ .slideshow_container_style-dark .slideshow_description_box div.slideshow_title { font-size: 1.3em; }
27
+ .slideshow_container_style-dark .slideshow_description_box div.slideshow_description { }
28
+
29
+ .slideshow_container_style-dark .slideshow_description_box div,
30
+ .slideshow_container_style-dark .slideshow_description_box div a,
31
+ .slideshow_container_style-dark .slideshow_description_box p,
32
+ .slideshow_container_style-dark .slideshow_description_box p a,
33
+ .slideshow_container_style-dark .slideshow_description_box h1,
34
+ .slideshow_container_style-dark .slideshow_description_box h1 a,
35
+ .slideshow_container_style-dark .slideshow_description_box h2,
36
+ .slideshow_container_style-dark .slideshow_description_box h2 a,
37
+ .slideshow_container_style-dark .slideshow_description_box h3,
38
+ .slideshow_container_style-dark .slideshow_description_box h3 a,
39
+ .slideshow_container_style-dark .slideshow_description_box h4,
40
+ .slideshow_container_style-dark .slideshow_description_box h4 a,
41
+ .slideshow_container_style-dark .slideshow_description_box h5,
42
+ .slideshow_container_style-dark .slideshow_description_box h5 a,
43
+ .slideshow_container_style-dark .slideshow_description_box h6,
44
+ .slideshow_container_style-dark .slideshow_description_box h6 a {
45
+ text-align: center;
46
+ color: #fff;
47
+ }
48
+
49
+ .slideshow_container_style-dark .slideshow_transparent { filter: alpha(opacity = 50); opacity: 0.5; }
50
+ .slideshow_container_style-dark .slideshow_transparent:hover { filter: alpha(opacity = 80); opacity: 0.8; }
51
+
52
+ .slideshow_container_style-dark .slideshow_loading_icon {
53
+ position: absolute;
54
+ top: 50%;
55
+ left: 50%;
56
+ width: 32px;
57
+ height: 32px;
58
+ margin: -16px 0 0 -16px;
59
+ background: url('../images/SlideshowPlugin/loading-icon-128x128.gif') no-repeat;
60
+ background-size: 32px 32px;
61
+ }
62
+
63
+ .slideshow_container_style-dark .slideshow_controlPanel {
64
+ width: 20px;
65
+ height: 20px;
66
+ margin-left: -10px;
67
+ }
68
+
69
+ .slideshow_container_style-dark .slideshow_controlPanel ul { }
70
+
71
+ .slideshow_container_style-dark .slideshow_controlPanel ul li {
72
+ width: 20px;
73
+ height: 20px;
74
+ }
75
+
76
+ .slideshow_container_style-dark .slideshow_controlPanel ul li:hover { }
77
+
78
+ .slideshow_container_style-dark .slideshow_play {
79
+ background: url('../images/SlideshowPlugin/dark-controlpanel.png') 0 0 no-repeat;
80
+ }
81
+
82
+ .slideshow_container_style-dark .slideshow_pause {
83
+ background: url('../images/SlideshowPlugin/dark-controlpanel.png') -20px 0 no-repeat;
84
+ }
85
+
86
+ .slideshow_container_style-dark .slideshow_button {
87
+ margin-top: -50px;
88
+ height: 100px;
89
+ width: 24px;
90
+ background: url('../images/SlideshowPlugin/dark-arrows.png') no-repeat;
91
+ }
92
+
93
+ .slideshow_container_style-dark .slideshow_previous { }
94
+
95
+ .slideshow_container_style-dark .slideshow_next {
96
+ background-position: -24px 0;
97
+ }
98
+
99
+ .slideshow_container_style-dark .slideshow_pagination { bottom: 20px; }
100
+
101
+ .slideshow_container_style-dark .slideshow_pagination_center { }
102
+
103
+ .slideshow_container_style-dark .slideshow_pagination .slideshow_currentView {
104
+ filter: alpha(opacity = 80);
105
+ opacity: 0.8;
106
+ }
107
+
108
+ .slideshow_container_style-dark .slideshow_pagination ul { }
109
+
110
+ .slideshow_container_style-dark .slideshow_pagination ul li {
111
+ margin: 0 2px;
112
+ width: 15px;
113
+ height: 15px;
114
+ background: url('../images/SlideshowPlugin/dark-bullet.png') no-repeat;
115
+ }
css/style-light.css ADDED
@@ -0,0 +1,120 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .slideshow_container_style-light { }
2
+
3
+ .slideshow_container_style-light a { text-decoration: none; }
4
+ .slideshow_container_style-light a:hover { text-decoration: none; }
5
+
6
+ .slideshow_container_style-light .slideshow_slide { margin-right: 2px; }
7
+ .slideshow_container_style-light .slideshow_slide_image { }
8
+ .slideshow_container_style-light .slideshow_slide_video { }
9
+ .slideshow_container_style-light .slideshow_slide_text { }
10
+
11
+ .slideshow_container_style-light .slideshow_slide_text div.slideshow_title { font-size: 1.3em; }
12
+ .slideshow_container_style-light .slideshow_slide_text div.slideshow_description { }
13
+
14
+ .slideshow_container_style-light .slideshow_slide_text div,
15
+ .slideshow_container_style-light .slideshow_slide_text p,
16
+ .slideshow_container_style-light .slideshow_slide_text h1,
17
+ .slideshow_container_style-light .slideshow_slide_text h2,
18
+ .slideshow_container_style-light .slideshow_slide_text h3,
19
+ .slideshow_container_style-light .slideshow_slide_text h4,
20
+ .slideshow_container_style-light .slideshow_slide_text h5,
21
+ .slideshow_container_style-light .slideshow_slide_text h6 {
22
+ text-align: center;
23
+ }
24
+
25
+ .slideshow_container_style-light .slideshow_description_box { background: #000; width: 100%; }
26
+
27
+ .slideshow_container_style-light .slideshow_description_box div.slideshow_title { font-size: 1.3em;; }
28
+ .slideshow_container_style-light .slideshow_description_box div.slideshow_description { }
29
+
30
+ .slideshow_container_style-light .slideshow_description_box div,
31
+ .slideshow_container_style-light .slideshow_description_box div a,
32
+ .slideshow_container_style-light .slideshow_description_box p,
33
+ .slideshow_container_style-light .slideshow_description_box p a,
34
+ .slideshow_container_style-light .slideshow_description_box h1,
35
+ .slideshow_container_style-light .slideshow_description_box h1 a,
36
+ .slideshow_container_style-light .slideshow_description_box h2,
37
+ .slideshow_container_style-light .slideshow_description_box h2 a,
38
+ .slideshow_container_style-light .slideshow_description_box h3,
39
+ .slideshow_container_style-light .slideshow_description_box h3 a,
40
+ .slideshow_container_style-light .slideshow_description_box h4,
41
+ .slideshow_container_style-light .slideshow_description_box h4 a,
42
+ .slideshow_container_style-light .slideshow_description_box h5,
43
+ .slideshow_container_style-light .slideshow_description_box h5 a,
44
+ .slideshow_container_style-light .slideshow_description_box h6,
45
+ .slideshow_container_style-light .slideshow_description_box h6 a {
46
+ text-align: center;
47
+ color: #fff;
48
+ }
49
+
50
+ .slideshow_container_style-light .slideshow_transparent { filter: alpha(opacity = 50); opacity: 0.5; }
51
+ .slideshow_container_style-light .slideshow_transparent:hover { filter: alpha(opacity = 80); opacity: 0.8; }
52
+
53
+ .slideshow_container_style-light .slideshow_loading_icon {
54
+ position: absolute;
55
+ top: 50%;
56
+ left: 50%;
57
+ width: 32px;
58
+ height: 32px;
59
+ margin: -16px 0 0 -16px;
60
+ background: url('../images/SlideshowPlugin/loading-icon-128x128.gif') no-repeat;
61
+ background-size: 32px 32px;
62
+ }
63
+
64
+ .slideshow_container_style-light .slideshow_controlPanel {
65
+ width: 21px;
66
+ height: 21px;
67
+ margin-left: -11px;
68
+ background: #000;
69
+ border-radius: 2px;
70
+ -moz-border-radius: 10px;
71
+ }
72
+
73
+ .slideshow_container_style-light .slideshow_controlPanel ul { }
74
+
75
+ .slideshow_container_style-light .slideshow_controlPanel ul li {
76
+ margin: 3px;
77
+ width: 15px;
78
+ height: 15px;
79
+ }
80
+
81
+ .slideshow_container_style-light .slideshow_controlPanel ul li:hover { }
82
+
83
+ .slideshow_container_style-light .slideshow_play {
84
+ background: url('../images/SlideshowPlugin/light-controlpanel.png') 0 0 no-repeat;
85
+ }
86
+
87
+ .slideshow_container_style-light .slideshow_pause {
88
+ background: url('../images/SlideshowPlugin/light-controlpanel.png') -15px 0 no-repeat;
89
+ }
90
+
91
+ .slideshow_container_style-light .slideshow_button {
92
+ margin-top: -20px;
93
+ height: 40px;
94
+ width: 19px;
95
+ background: url('../images/SlideshowPlugin/light-arrows.png') no-repeat;
96
+ }
97
+
98
+ .slideshow_container_style-light .slideshow_previous { }
99
+
100
+ .slideshow_container_style-light .slideshow_next {
101
+ background-position: -19px 0;
102
+ }
103
+
104
+ .slideshow_container_style-light .slideshow_pagination { bottom: 16px; }
105
+
106
+ .slideshow_container_style-light .slideshow_pagination_center { }
107
+
108
+ .slideshow_container_style-light .slideshow_pagination .slideshow_currentView {
109
+ filter: alpha(opacity = 80);
110
+ opacity: 0.8;
111
+ }
112
+
113
+ .slideshow_container_style-light .slideshow_pagination ul { }
114
+
115
+ .slideshow_container_style-light .slideshow_pagination ul li {
116
+ margin: 0 2px;
117
+ width: 11px;
118
+ height: 11px;
119
+ background: url('../images/SlideshowPlugin/light-bullet.png') no-repeat;
120
+ }
js/min/all.frontend.min.js CHANGED
@@ -1,8 +1,8 @@
1
- function onYouTubeIframeAPIReady(){slideshow_jquery_image_gallery_script.youTubeAPIReady=!0}slideshow_jquery_image_gallery_backend_script_scriptsloadedFlag=!1,slideshow_jquery_image_gallery_script=function(){var e=jQuery,t={};return t.slideshowInstances={},t.initialized=!1,t.youTubeAPIReady=!1,t.init=function(){slideshow_jquery_image_gallery_backend_script_scriptsloadedFlag!==!0||t.initialized||(t.initialized=!0,e(document).trigger("slideshow_jquery_image_gallery_script_ready"),t.loadYouTubeAPI(),t.repairStylesheetURLs(),t.activateSlideshows(),e(document).trigger("slideshow_jquery_image_gallery_slideshows_ready"))},t.getSlideshowInstance=function(s){if(isNaN(parseInt(s,10))){if(s instanceof e&&s.length>0)for(var i in t.slideshowInstances)if(t.slideshowInstances.hasOwnProperty(i)){var n=t.slideshowInstances[i];if(n instanceof t.Slideshow&&n.$container.get(0)===s.get(0))return n}}else if(t.slideshowInstances[s]instanceof t.Slideshow)return t.slideshowInstances[s];return new t.Slideshow},t.activateSlideshows=function(){e.each(jQuery(".slideshow_container"),function(s,i){var n=e(i),a=n.data("sessionId");isNaN(parseInt(a,10))&&(a=n.attr("data-session-id")),t.slideshowInstances[a]instanceof t.Slideshow||(t.slideshowInstances[a]=new t.Slideshow(n))})},t.loadYouTubeAPI=function(){if(t.loadYouTubeAPICalled=!0,!(e(".slideshow_slide_video").length<=0)){var s=document.createElement("script"),i=document.getElementsByTagName("script")[0];s.src="//www.youtube.com/iframe_api",i.parentNode.insertBefore(s,i)}},t.repairStylesheetURLs=function(){var s=e('[id*="slideshow-jquery-image-gallery-ajax-stylesheet_"]');return s.length<=0?(t.generateStylesheetURLs(!1),void 0):(e.each(s,function(t,s){var i,n,a,l=e(s),o=e(s).attr("href");void 0!==o&&""!==o&&(i=l.attr("id").split("_"),n=i.splice(1,i.length-1).join("_").slice(0,-4),a=o.split("?"),(void 0===a[1]||""===a[1]||a[1].toLowerCase().indexOf("style=")<0)&&(a[1]="action=slideshow_jquery_image_gallery_load_stylesheet&style="+n+"&ver="+Math.round((new Date).getTime()/1e3),o=a.join("?"),l.attr("href",o)))}),void 0)},t.generateStylesheetURLs=function(t){var s=e(".slideshow_container"),i=window.slideshow_jquery_image_gallery_script_adminURL;s.length<=0||"string"!=typeof i||i.length<=0||e.each(s,function(s,n){var a,l,o=e(n),r=o.attr("data-style-name"),d=o.attr("data-style-version"),c="slideshow-jquery-image-gallery-ajax-stylesheet_"+r+"-css";if("string"==typeof r&&"string"==typeof d&&r.length>0&&d.length>0){if(!t&&"boolean"==typeof t&&(a=e("#"+c),a.length>0))return;l=i+"admin-ajax.php?action=slideshow_jquery_image_gallery_load_stylesheet&style="+r+"&ver="+d,e("head").append('<link rel="stylesheet" id="'+c+'" href="'+l+'" type="text/css" media="all">')}})},e(document).ready(function(){t.init()}),e(window).load(function(){t.init()}),e.fn.getSlideshowInstance=function(){return t.getSlideshowInstance(this)},t}();
2
-
3
- !function(){var i=jQuery,t=slideshow_jquery_image_gallery_script;t.Slideshow=function(t){if(t instanceof i&&(this.$container=t,this.$content=this.$container.find(".slideshow_content"),this.$views=this.$container.find(".slideshow_view"),this.$slides=this.$container.find(".slideshow_slide"),this.$controlPanel=this.$container.find(".slideshow_controlPanel"),this.$togglePlayButton=this.$controlPanel.find(".slideshow_togglePlay"),this.$nextButton=this.$container.find(".slideshow_next"),this.$previousButton=this.$container.find(".slideshow_previous"),this.$pagination=this.$container.find(".slideshow_pagination"),this.$loadingIcon=this.$container.find(".slideshow_loading_icon"),this.ID=this.getID(),!isNaN(parseInt(this.ID,10)))){this.settings=window["SlideshowPluginSettings_"+this.ID],i.each(this.settings,i.proxy(function(i,t){"true"==t?this.settings[i]=!0:"false"==t&&(this.settings[i]=!1)},this)),this.$parentElement=this.$container.parent(),this.viewData=[],this.viewIDs=[],this.currentlyAnimating=!1,this.currentViewID=void 0,this.currentWidth=0,this.visibleViews=[],this.videoPlayers=[],this.PlayStates={UNSTARTED:-2,PAUSED:-1,TEMPORARILY_PAUSED:0,PLAYING:1},this.playState=this.PlayStates.UNSTARTED,this.interval=!1,this.pauseOnHoverTimer=!1,this.descriptionTimer=!1,this.randomNextHistoryViewIDs=[],this.randomPreviousHistoryViewIDs=[],this.randomAvailableViewIDs=[],i.each(this.$views,i.proxy(function(i){this.viewIDs.push(i)},this)),this.currentViewID=this.getNextViewID(),this.visibleViews=[this.currentViewID],this.recalculate(!1);var s=i.proxy(function(t){(this.$container.width()<=0||this.$container.height()<=0)&&setTimeout(i.proxy(function(){t(t)},this),500),i.each(this.$views,i.proxy(function(t,s){var e=i(s);t!=this.visibleViews[0]?e.css("top",this.$container.outerHeight(!0)).find("a").attr("tabindex","-1"):e.addClass("slideshow_currentView")},this))},this);s(s);var e=!0;i.each(this.$views,i.proxy(function(t,s){var n=i(s);this.viewData[t]=[],i.each(n.find(".slideshow_slide"),i.proxy(function(s,n){var h=i(n);if(this.viewData[t][s]={},h.hasClass("slideshow_slide_image")){var a=h.find("img");a.length>0?a.get(0).complete?this.viewData[t][s].loaded=1:(t===this.currentViewID&&(e=!1),this.viewData[t][s].loaded=0,this.onImageLoad(a,i.proxy(function(i){this.viewData[t][s].loaded=i?1:2,this.settings.waitUntilLoaded&&t===this.currentViewID&&this.isViewLoaded(t)&&this.start()},this))):this.viewData[t][s].loaded=-1}else this.viewData[t][s].loaded=-1},this))},this)),i(window).load(i.proxy(function(){this.recalculateVisibleViews()},this)),parseFloat(this.settings.intervalSpeed)<parseFloat(this.settings.slideSpeed)+.1&&(this.settings.intervalSpeed=parseFloat(this.settings.slideSpeed)+.1),(!this.settings.waitUntilLoaded||this.settings.waitUntilLoaded&&e)&&this.start()}}}();
4
- !function(){var t=jQuery,i=slideshow_jquery_image_gallery_script;i.Slideshow.prototype.start=function(){this.activateDescriptions(),this.activateControlPanel(),this.activateNavigationButtons(),this.activatePagination(),this.activatePauseOnHover(),this.$loadingIcon.length>0&&this.$loadingIcon.remove(),this.$content.show(),this.recalculateViews(),this.settings.enableResponsiveness&&t(window).resize(t.proxy(function(){this.recalculate(!0)},this)),this.playState=this.PlayStates.PAUSED,this.$container.trigger("slideshowPlayStateChange",[this.playState]),this.settings.play&&this.play()},i.Slideshow.prototype.play=function(){this.interval||(this.playState=this.PlayStates.PLAYING,this.$container.trigger("slideshowPlayStateChange",[this.playState]),this.interval=setInterval(t.proxy(function i(e,s){void 0===s&&(s=this),void 0===e&&(e=s.getNextViewID()),s.isViewLoaded(e)?(s.animateTo(e,1),s.play()):(s.pause(this.PlayStates.TEMPORARILY_PAUSED),setTimeout(t.proxy(function(){i(e,s)},s),100))},this),1e3*this.settings.intervalSpeed))},i.Slideshow.prototype.pause=function(t){clearInterval(this.interval),this.interval=!1,t!==this.PlayStates.PAUSED&&t!==this.PlayStates.TEMPORARILY_PAUSED&&(t=this.PlayStates.PAUSED),this.playState=t,this.$container.trigger("slideshowPlayStateChange",[this.playState])},i.Slideshow.prototype.next=function(){this.playState===this.PlayStates.PLAYING&&(this.pause(this.PlayStates.TEMPORARILY_PAUSED),this.play()),this.animateTo(this.getNextViewID(),1)},i.Slideshow.prototype.previous=function(){this.playState===this.PlayStates.PLAYING&&(this.pause(this.PlayStates.TEMPORARILY_PAUSED),this.play()),this.animateTo(this.getPreviousViewID(),-1)},i.Slideshow.prototype.isVideoPlaying=function(){for(var t in this.videoPlayers)if(this.videoPlayers.hasOwnProperty(t)){var i=this.videoPlayers[t].state;if(1==i||3==i)return!0}return!1},i.Slideshow.prototype.pauseAllVideos=function(){for(var t in this.videoPlayers)if(this.videoPlayers.hasOwnProperty(t)){var i=this.videoPlayers[t].player;null!=i&&"function"==typeof i.pauseVideo&&(this.videoPlayers[t].state=2,i.pauseVideo())}},i.Slideshow.prototype.isViewLoaded=function(i){var e=!0;return isNaN(parseInt(i,10))?!1:(t.each(this.viewData[i],t.proxy(function(t,i){0==i.loaded&&(e=!1)},this)),e)},i.Slideshow.prototype.getNaturalImageSize=function(i,e,s){return i.length<=0||!(i instanceof t)||"string"!=typeof i.attr("src")?(e(-1,-1,s),void 0):(this.onImageLoad(i,t.proxy(function(t,i){e(i.width,i.height,s)},this)),void 0)},i.Slideshow.prototype.onImageLoad=function(i,e,s){var a=new Image;return i.length<=0||!(i instanceof t)||"string"!=typeof i.attr("src")?(e(!1,a,s),void 0):(a.onload=t.proxy(function(){e(!0,a,s)},this),a.src=i.attr("src"),void 0)},i.Slideshow.prototype.getNextViewID=function(){var t=this.currentViewID;if(this.settings.random){var i=t;if(t=this.getNextRandomViewID(),t!=i)return t}return isNaN(parseInt(t,10))?0:t>=this.$views.length-1?this.settings.loop?0:this.currentViewID:t+1},i.Slideshow.prototype.getPreviousViewID=function(){var t=this.currentViewID;if(isNaN(parseInt(t,10))&&(t=0),this.settings.random){var i=t;if(t=this.getPreviousRandomViewID(),t!=i)return t}return 0>=t?this.settings.loop?t=this.$views.length-1:this.currentViewID:t-=1},i.Slideshow.prototype.getNextRandomViewID=function(){if(isNaN(parseInt(this.currentViewID,10))||this.randomPreviousHistoryViewIDs.push(this.currentViewID),this.randomPreviousHistoryViewIDs.length>2*this.viewIDs.length&&this.randomPreviousHistoryViewIDs.shift(),this.randomNextHistoryViewIDs.length>0)return this.randomNextHistoryViewIDs.pop();if(void 0===this.randomAvailableViewIDs||this.randomAvailableViewIDs.length<=0){this.randomAvailableViewIDs=t.extend(!0,[],this.viewIDs);var i=t.inArray(this.currentViewID,this.randomAvailableViewIDs);i>=0&&this.randomAvailableViewIDs.splice(i,1)}return this.randomAvailableViewIDs.splice(Math.floor(Math.random()*this.randomAvailableViewIDs.length),1).pop()},i.Slideshow.prototype.getPreviousRandomViewID=function(){return isNaN(parseInt(this.currentViewID,10))||this.randomNextHistoryViewIDs.push(this.currentViewID),this.randomNextHistoryViewIDs.length>2*this.viewIDs.length&&this.randomNextHistoryViewIDs.shift(),this.randomPreviousHistoryViewIDs.length>0?this.randomPreviousHistoryViewIDs.pop():this.viewIDs[Math.floor(Math.random()*this.viewIDs.length)]},i.Slideshow.prototype.getID=function(){var t=this.$container.data("sessionId");return isNaN(parseInt(t,10))&&(t=this.$container.attr("data-session-id")),t},i.Slideshow.prototype.bindSubmitListener=function(i){i.keypress(t.proxy(function(i){var e=i.keyCode||i.which;13===e&&(i.preventDefault(),t(i.currentTarget).click())},this))}}();
5
- !function(){var e=jQuery,t=slideshow_jquery_image_gallery_script;t.Slideshow.prototype.animateTo=function(t,i){if(!(this.isVideoPlaying()||0>t||t>=this.$views.length||t==this.currentViewID)){if(this.currentlyAnimating===!0)return this.$container.one("slideshowAnimationEnd",e.proxy(function(){this.playState===this.PlayStates.PLAYING&&(this.pause(this.PlayStates.TEMPORARILY_PAUSED),this.play()),this.animateTo(t,i)},this)),void 0;this.currentlyAnimating=!0,(isNaN(parseInt(i,10))||0==i)&&(i=t<this.currentViewID?-1:1),this.visibleViews=[this.currentViewID,t];var s=this.settings.animation,n=["slide","slideRight","slideUp","slideDown","fade","directFade"];"random"==s&&(s=n[Math.floor(Math.random()*n.length)]);var o={slide:"slideRight",slideRight:"slide",slideUp:"slideDown",slideDown:"slideUp",fade:"fade",directFade:"directFade"};0>i&&(s=o[s]);var d=e(this.$views[this.currentViewID]),a=e(this.$views[t]);switch(d.stop(!0,!0),a.stop(!0,!0),a.addClass("slideshow_nextView"),this.recalculateVisibleViews(),this.currentViewID=t,this.$container.trigger("slideshowAnimationStart",[t,s,i]),s){case"slide":a.css({top:0,left:this.$content.width()}),d.animate({left:-d.outerWidth(!0)},1e3*this.settings.slideSpeed),a.animate({left:0},1e3*this.settings.slideSpeed),setTimeout(e.proxy(function(){d.stop(!0,!0).css("top",this.$container.outerHeight(!0))},this),1e3*this.settings.slideSpeed);break;case"slideRight":a.css({top:0,left:-this.$content.width()}),d.animate({left:d.outerWidth(!0)},1e3*this.settings.slideSpeed),a.animate({left:0},1e3*this.settings.slideSpeed),setTimeout(e.proxy(function(){d.stop(!0,!0).css("top",this.$container.outerHeight(!0))},this),1e3*this.settings.slideSpeed);break;case"slideUp":a.css({top:this.$content.height(),left:0}),d.animate({top:-d.outerHeight(!0)},1e3*this.settings.slideSpeed),a.animate({top:0},1e3*this.settings.slideSpeed),setTimeout(e.proxy(function(){d.stop(!0,!0).css("top",this.$container.outerHeight(!0))},this),1e3*this.settings.slideSpeed);break;case"slideDown":a.css({top:-this.$content.height(),left:0}),d.animate({top:d.outerHeight(!0)},1e3*this.settings.slideSpeed),a.animate({top:0},1e3*this.settings.slideSpeed),setTimeout(e.proxy(function(){d.stop(!0,!0).css("top",this.$container.outerHeight(!0))},this),1e3*this.settings.slideSpeed);break;case"fade":a.css({top:0,left:0,display:"none"}),d.fadeOut(1e3*this.settings.slideSpeed/2),setTimeout(e.proxy(function(){a.fadeIn(1e3*this.settings.slideSpeed/2),d.stop(!0,!0).css({top:this.$container.outerHeight(!0),display:"block"})},this),1e3*this.settings.slideSpeed/2);break;case"directFade":a.css({top:0,left:0,"z-index":0,display:"none"}),d.css({"z-index":1}),a.stop(!0,!0).fadeIn(1e3*this.settings.slideSpeed),d.stop(!0,!0).fadeOut(1e3*this.settings.slideSpeed),setTimeout(e.proxy(function(){a.stop(!0,!0).css({"z-index":0}),d.stop(!0,!0).css({top:this.$container.outerHeight(!0),display:"block","z-index":0})},this),1e3*this.settings.slideSpeed);break;case"crossFade":a.css({top:0,left:0,"z-index":1,display:"none"}),d.css({"z-index":0}),a.stop(!0,!0).fadeIn(1e3*this.settings.slideSpeed),setTimeout(e.proxy(function(){d.css({top:this.$container.outerHeight(!0)}),a.css({"z-index":1})},this),1e3*this.settings.slideSpeed)}setTimeout(e.proxy(function(){d.removeClass("slideshow_currentView").find("a").attr("tabindex","-1"),a.removeClass("slideshow_nextView"),a.addClass("slideshow_currentView").find("a").attr("tabindex","0"),this.visibleViews=[t],this.currentlyAnimating=!1,this.$container.trigger("slideshowAnimationEnd")},this),1e3*this.settings.slideSpeed)}}}();
6
- !function(){var t=jQuery,i=slideshow_jquery_image_gallery_script;i.Slideshow.prototype.recalculate=function(i){if(!this.$container.is(":visible"))return setTimeout(t.proxy(function(){this.recalculate(i)},this),500),void 0;for(var e=this.$parentElement,h=0;e.width()<=0&&(e=e.parent(),!(h>50));h++);if(this.currentWidth!=e.width()){this.currentWidth=e.width();var s=e.width()-(this.$container.outerWidth()-this.$container.width());if(parseInt(this.settings.maxWidth,10)>0&&parseInt(this.settings.maxWidth,10)<s&&(s=parseInt(this.settings.maxWidth,10)),this.$container.css("width",Math.floor(s)),this.$content.css("width",Math.floor(s)-(this.$content.outerWidth(!0)-this.$content.width())),this.settings.preserveSlideshowDimensions){var o=s*this.settings.dimensionHeight/this.settings.dimensionWidth;this.$container.css("height",Math.floor(o)),this.$content.css("height",Math.floor(o)-(this.$content.outerHeight(!0)-this.$content.height()))}else this.$container.css("height",Math.floor(this.settings.height)),this.$content.css("height",Math.floor(this.settings.height));this.$views.each(t.proxy(function(i,e){t.inArray(i,this.visibleViews)<0&&t(e).css("top",this.$container.outerHeight(!0))},this)),this.$container.trigger("slideshowResize"),(i||"boolean"!=typeof i)&&this.recalculateVisibleViews()}},i.Slideshow.prototype.recalculateViews=function(){t.each(this.$views,t.proxy(function(t){this.recalculateView(t,!1)},this))},i.Slideshow.prototype.recalculateVisibleViews=function(){t.each(this.visibleViews,t.proxy(function(t,i){this.recalculateView(i,!1)},this))},i.Slideshow.prototype.recalculateView=function(e,h){if(this.$content.width()<=0||this.$content.height()<=0)return setTimeout(t.proxy(function(){this.recalculateView(e,h)},this),500),void 0;var s=t(this.$views[e]);if("boolean"==typeof h&&h||this.$content.width()!=s.outerWidth(!0)){var o=s.find(".slideshow_slide");if(!(o.length<=0)){var r=this.$content.width()-(s.outerWidth(!0)-s.width()),a=this.$content.height()-(s.outerHeight(!0)-s.height()),n=Math.floor(r/o.length),d=a,l=r%o.length,c=0;t(o[0]).css("margin-left",0),t(o[o.length-1]).css("margin-right",0),t.each(o,t.proxy(function(h,s){var r=t(s),a=r.outerWidth(!0)-r.width(),g=r.outerHeight(!0)-r.height();if(h==o.length-1?r.width(n-a+l):r.width(n-a),r.height(d-g),r.hasClass("slideshow_slide_text")){var w=r.find(".slideshow_background_anchor");if(w.length<=0)return;var u=r.width()-(w.outerWidth(!0)-w.width()),f=r.height()-(w.outerHeight(!0)-w.height());w.css({width:u,height:f})}else if(r.hasClass("slideshow_slide_image")){var v=r.find("img");if(v.length<=0)return;var p,m,y=v.outerWidth(),$=v.outerHeight();p=isNaN(parseInt(y,10))?0:y-v.width(),m=isNaN(parseInt($,10))?0:$-v.height();var _=r.width()-p,x=r.height()-m;"stretch"===this.settings.imageBehaviour?(v.css({width:_,height:x}),v.attr({width:_,height:x})):this.getNaturalImageSize(v,t.proxy(function(i,h){var s,o;return 0>=i||0>=h?(setTimeout(t.proxy(function(){this.recalculateView(e,!0)},this),500),void 0):(s=r.width()/r.height(),o=(i+p)/(h+m),o>=s?"natural"===this.settings.imageBehaviour?(v.css({margin:"0px",width:_,height:Math.floor(_/o)}),v.attr({width:_,height:Math.floor(_/o)})):"crop"===this.settings.imageBehaviour&&(v.css({"margin-top":"0px","margin-left":-Math.floor((x*o-_)/2),height:x,width:Math.floor(x*o)}),v.attr({width:Math.floor(x*o),height:x})):"natural"===this.settings.imageBehaviour?(v.css({"margin-left":"auto","margin-right":"auto",display:"block",width:Math.floor(x*o),height:x}),v.attr({width:Math.floor(x*o),height:x})):"crop"===this.settings.imageBehaviour&&(v.css({"margin-top":-Math.floor((_/o-x)/2),"margin-left":"0px",width:_,height:Math.floor(_/o)}),v.attr({width:_,height:Math.floor(_/o)})),void 0)},this))}else if(r.hasClass("slideshow_slide_video")){var M=r.find("iframe");if(M.length>0)M.attr({width:r.width(),height:r.height()});else var W=setInterval(t.proxy(function(){if(i.youTubeAPIReady){clearInterval(W);var e=r.find(".slideshow_slide_video_id");e.attr("id","slideshow_slide_video_"+Math.floor(1e6*Math.random())+"_"+e.text());var h=e.attr("data-show-related-videos"),s=new YT.Player(e.attr("id"),{width:r.width(),height:r.height(),videoId:e.text(),playerVars:{wmode:"opaque",rel:h},events:{onReady:function(){},onStateChange:t.proxy(function(t){this.videoPlayers[e.attr("id")].state=t.data},this)}}),o=t("#"+e.attr("id"));o.show(),o.attr("src",o.attr("src")+"&wmode=opaque"),this.videoPlayers[e.attr("id")]={player:s,state:-1}}},this),500)}c+=r.outerWidth(!0)},this)),s.css({width:r,height:a})}}}}();
7
- !function(){var t=jQuery,i=slideshow_jquery_image_gallery_script;i.Slideshow.prototype.activateDescriptions=function(){this.settings.showDescription&&(t.each(this.$slides.find(".slideshow_description_box"),t.proxy(function(i,s){var e=t(s);e.show(),this.settings.hideDescription?e.css({position:"absolute",top:this.$container.outerHeight(!0)}):e.css({position:"absolute",bottom:0})},this)),this.settings.hideDescription&&(this.$container.bind("slideshowResize",t.proxy(function(){t.each(this.$container.find(".slideshow_description_box"),t.proxy(function(i,s){t(s).css("top",this.$container.outerHeight(!0))},this))},this)),this.$container.bind("slideshowAnimationStart",t.proxy(function(){void 0!=this.visibleViews[1]&&t.each(t(this.$views[this.visibleViews[1]]).find(".slideshow_description_box"),t.proxy(function(i,s){t(s).css("top",this.$container.outerHeight(!0))},this))},this)),this.$slides.mouseenter(t.proxy(function(i){var s=t(i.currentTarget).find(".slideshow_description_box");this.descriptionTimer=setTimeout(t.proxy(function(){this.descriptionTimer="",s.stop(!0,!1).animate({top:this.$container.outerHeight(!0)-s.outerHeight(!0)},parseInt(1e3*this.settings.descriptionSpeed,10))},this),200)},this)),this.$slides.mouseleave(t.proxy(function(i){this.descriptionTimer!==!1&&(clearInterval(this.descriptionTimer),this.descriptionTimer=!1),t(i.currentTarget).find(".slideshow_description_box").stop(!0,!1).animate({top:this.$container.outerHeight(!0)},parseInt(1e3*this.settings.descriptionSpeed,10))},this))))},i.Slideshow.prototype.activateNavigationButtons=function(){var i,s;this.settings.controllable&&(i=this.$nextButton.data("nextText"),s=this.$previousButton.data("previousText"),("string"!=typeof i||"string"!=typeof s||i.length<=0||s.length<=0)&&(i=this.$nextButton.attr("data-next-text"),s=this.$previousButton.attr("data-previous-text")),this.$nextButton.html('<span class="assistive-text hide-text">'+i+"</span>").attr({tabindex:"0",title:i}),this.$previousButton.html('<span class="assistive-text hide-text">'+s+"</span>").attr({tabindex:"0",title:s}),this.$nextButton.click(t.proxy(function(){this.currentlyAnimating||(this.pauseAllVideos(),this.playState===this.PlayStates.PLAYING&&(this.pause(this.PlayStates.TEMPORARILY_PAUSED),this.play()),this.animateTo(this.getNextViewID(),1))},this)),this.$previousButton.click(t.proxy(function(){this.currentlyAnimating||(this.pauseAllVideos(),this.playState===this.PlayStates.PLAYING&&(this.pause(this.PlayStates.TEMPORARILY_PAUSED),this.play()),this.animateTo(this.getPreviousViewID(),-1))},this)),this.bindSubmitListener(this.$nextButton),this.bindSubmitListener(this.$previousButton),this.settings.hideNavigationButtons?(this.$container.mouseenter(t.proxy(function(){this.$nextButton.stop(!0,!0).fadeIn(100)},this)),this.$container.mouseleave(t.proxy(function(){this.$nextButton.stop(!0,!0).fadeOut(500)},this)),this.$container.mouseenter(t.proxy(function(){this.$previousButton.stop(!0,!0).fadeIn(100)},this)),this.$container.mouseleave(t.proxy(function(){this.$previousButton.stop(!0,!0).fadeOut(500)},this))):(this.$nextButton.show(),this.$previousButton.show()))},i.Slideshow.prototype.activateControlPanel=function(){this.settings.controlPanel&&(this.$togglePlayButton.attr("tabindex","0"),this.$container.bind("slideshowPlayStateChange",t.proxy(function(t,i){var s,e;this.$togglePlayButton.attr("role","button"),s=this.$togglePlayButton.data("playText"),e=this.$togglePlayButton.data("pauseText"),("string"!=typeof s||"string"!=typeof e||s.length<=0||e.length<=0)&&(s=this.$nextButton.attr("data-play-text"),e=this.$previousButton.attr("data-pause-text")),i===this.PlayStates.PLAYING?this.$togglePlayButton.html('<span class="assistive-text hide-text">'+e+"</span>").attr({"class":"slideshow_pause",title:e}):i===this.PlayStates.PAUSED&&this.$togglePlayButton.html('<span class="assistive-text hide-text">'+s+"</span>").attr({"class":"slideshow_play",title:s})},this)),this.$togglePlayButton.click(t.proxy(function(i){var s=t(i.currentTarget);s.hasClass("slideshow_play")?this.play():this.pause(this.PlayStates.PAUSED)},this)),this.bindSubmitListener(this.$togglePlayButton),this.settings.hideControlPanel?(this.$container.mouseenter(t.proxy(function(){this.$controlPanel.stop(!0,!0).fadeIn(100)},this)),this.$container.mouseleave(t.proxy(function(){this.$controlPanel.stop(!0,!0).fadeOut(500)},this))):this.$controlPanel.show())},i.Slideshow.prototype.activatePagination=function(){if(this.settings.showPagination){this.$pagination.find(".slideshow_pagination_center").html("<ul></ul>");var i=this.$pagination.find("ul");i.html(""),this.$views.each(t.proxy(function(t){var s="",e=parseInt(t,10)+1,n=this.$pagination.data("goToText");("string"!=typeof n||n.length<=0)&&(n=this.$pagination.attr("data-go-to-text")),t==this.currentViewID&&(s="slideshow_currentView"),i.append('<li class="slideshow_transparent '+s+'" data-view-id="'+t+'" role="button" title="'+n+" "+e+'"><span class="assistive-text hide-text">'+n+" "+e+"</span></li>")},this)),this.$pagination.find("li").attr("tabindex","0").click(t.proxy(function(i){var s,e=t(i.currentTarget);this.currentlyAnimating||(s=e.data("viewId"),isNaN(parseInt(s,10))&&(s=e.attr("data-view-id"),isNaN(parseInt(s,10)))||(this.pauseAllVideos(),this.playState===this.PlayStates.PLAYING&&(this.pause(this.PlayStates.TEMPORARILY_PAUSED),this.play()),this.animateTo(parseInt(s,10),0)))},this)),this.bindSubmitListener(this.$pagination.find("li")),this.$container.bind("slideshowAnimationStart",t.proxy(function(){var i=this.$pagination.find("li");i.each(t.proxy(function(i,s){t(s).removeClass("slideshow_currentView")},this)),t(i[this.currentViewID]).addClass("slideshow_currentView")},this)),this.settings.hidePagination?(this.$container.mouseenter(t.proxy(function(){this.$pagination.stop(!0,!0).fadeIn(100)},this)),this.$container.mouseleave(t.proxy(function(){this.$pagination.stop(!0,!0).fadeOut(500)},this))):this.$pagination.show()}},i.Slideshow.prototype.activatePauseOnHover=function(){this.settings.pauseOnHover&&(this.$container.mouseenter(t.proxy(function(){clearTimeout(this.pauseOnHoverTimer),this.playState!==this.PlayStates.PAUSED&&(this.pauseOnHoverTimer=setTimeout(t.proxy(function(){this.pause(this.PlayStates.TEMPORARILY_PAUSED)},this),500))},this)),this.$container.mouseleave(t.proxy(function(){clearTimeout(this.pauseOnHoverTimer),this.playState!==this.PlayStates.PAUSED&&this.interval===!1&&this.play()},this)))}}();
8
  slideshow_jquery_image_gallery_backend_script_scriptsloadedFlag=!0;
1
+ function onYouTubeIframeAPIReady(){slideshow_jquery_image_gallery_script.youTubeAPIReady=!0}slideshow_jquery_image_gallery_backend_script_scriptsloadedFlag=!1,slideshow_jquery_image_gallery_script=function(){var e=jQuery,t={};return t.slideshowInstances={},t.initialized=!1,t.youTubeAPIReady=!1,t.init=function(){slideshow_jquery_image_gallery_backend_script_scriptsloadedFlag!==!0||t.initialized||(t.initialized=!0,e(document).trigger("slideshow_jquery_image_gallery_script_ready"),t.loadYouTubeAPI(),t.repairStylesheetURLs(),t.activateSlideshows(),e(document).trigger("slideshow_jquery_image_gallery_slideshows_ready"))},t.getSlideshowInstance=function(s){if(isNaN(parseInt(s,10))){if(s instanceof e&&s.length>0)for(var i in t.slideshowInstances)if(t.slideshowInstances.hasOwnProperty(i)){var n=t.slideshowInstances[i];if(n instanceof t.Slideshow&&n.$container.get(0)===s.get(0))return n}}else if(t.slideshowInstances[s]instanceof t.Slideshow)return t.slideshowInstances[s];return new t.Slideshow},t.activateSlideshows=function(){e.each(jQuery(".slideshow_container"),function(s,i){var n=e(i),a=n.data("sessionId");isNaN(parseInt(a,10))&&(a=n.attr("data-session-id")),t.slideshowInstances[a]instanceof t.Slideshow||(t.slideshowInstances[a]=new t.Slideshow(n))})},t.loadYouTubeAPI=function(){if(t.loadYouTubeAPICalled=!0,!(e(".slideshow_slide_video").length<=0)){var s=document.createElement("script"),i=document.getElementsByTagName("script")[0];s.src="//www.youtube.com/iframe_api",i.parentNode.insertBefore(s,i)}},t.repairStylesheetURLs=function(){var s=e('[id*="slideshow-jquery-image-gallery-ajax-stylesheet_"]');return s.length<=0?(t.generateStylesheetURLs(!1),void 0):(e.each(s,function(t,s){var i,n,a,l=e(s),o=e(s).attr("href");void 0!==o&&""!==o&&(i=l.attr("id").split("_"),n=i.splice(1,i.length-1).join("_").slice(0,-4),a=o.split("?"),(void 0===a[1]||""===a[1]||a[1].toLowerCase().indexOf("style=")<0)&&(a[1]="action=slideshow_jquery_image_gallery_load_stylesheet&style="+n+"&ver="+Math.round((new Date).getTime()/1e3),o=a.join("?"),l.attr("href",o)))}),void 0)},t.generateStylesheetURLs=function(t){var s=e(".slideshow_container"),i=window.slideshow_jquery_image_gallery_script_adminURL;s.length<=0||"string"!=typeof i||i.length<=0||e.each(s,function(s,n){var a,l,o=e(n),r=o.attr("data-style-name"),d=o.attr("data-style-version"),c="slideshow-jquery-image-gallery-ajax-stylesheet_"+r+"-css";if("string"==typeof r&&"string"==typeof d&&r.length>0&&d.length>0){if(!t&&"boolean"==typeof t&&(a=e("#"+c),a.length>0))return;l=i+"admin-ajax.php?action=slideshow_jquery_image_gallery_load_stylesheet&style="+r+"&ver="+d,e("head").append('<link rel="stylesheet" id="'+c+'" href="'+l+'" type="text/css" media="all">')}})},e(document).ready(function(){t.init()}),e(window).load(function(){t.init()}),e.fn.getSlideshowInstance=function(){return t.getSlideshowInstance(this)},t}();
2
+
3
+ !function(){var i=jQuery,t=slideshow_jquery_image_gallery_script;t.Slideshow=function(t){if(t instanceof i&&(this.$container=t,this.$content=this.$container.find(".slideshow_content"),this.$views=this.$container.find(".slideshow_view"),this.$slides=this.$container.find(".slideshow_slide"),this.$controlPanel=this.$container.find(".slideshow_controlPanel"),this.$togglePlayButton=this.$controlPanel.find(".slideshow_togglePlay"),this.$nextButton=this.$container.find(".slideshow_next"),this.$previousButton=this.$container.find(".slideshow_previous"),this.$pagination=this.$container.find(".slideshow_pagination"),this.$loadingIcon=this.$container.find(".slideshow_loading_icon"),this.ID=this.getID(),!isNaN(parseInt(this.ID,10)))){this.settings=window["SlideshowPluginSettings_"+this.ID],i.each(this.settings,i.proxy(function(i,t){"true"==t?this.settings[i]=!0:"false"==t&&(this.settings[i]=!1)},this)),this.$parentElement=this.$container.parent(),this.viewData=[],this.viewIDs=[],this.currentlyAnimating=!1,this.currentViewID=void 0,this.currentWidth=0,this.visibleViews=[],this.videoPlayers=[],this.PlayStates={UNSTARTED:-2,PAUSED:-1,TEMPORARILY_PAUSED:0,PLAYING:1},this.playState=this.PlayStates.UNSTARTED,this.interval=!1,this.pauseOnHoverTimer=!1,this.descriptionTimer=!1,this.randomNextHistoryViewIDs=[],this.randomPreviousHistoryViewIDs=[],this.randomAvailableViewIDs=[],i.each(this.$views,i.proxy(function(i){this.viewIDs.push(i)},this)),this.currentViewID=this.getNextViewID(),this.visibleViews=[this.currentViewID],this.recalculate(!1);var s=i.proxy(function(t){(this.$container.width()<=0||this.$container.height()<=0)&&setTimeout(i.proxy(function(){t(t)},this),500),i.each(this.$views,i.proxy(function(t,s){var e=i(s);t!=this.visibleViews[0]?e.css("top",this.$container.outerHeight(!0)).find("a").attr("tabindex","-1"):e.addClass("slideshow_currentView")},this))},this);s(s);var e=!0;i.each(this.$views,i.proxy(function(t,s){var n=i(s);this.viewData[t]=[],i.each(n.find(".slideshow_slide"),i.proxy(function(s,n){var h=i(n);if(this.viewData[t][s]={},h.hasClass("slideshow_slide_image")){var a=h.find("img");a.length>0?a.get(0).complete?this.viewData[t][s].loaded=1:(t===this.currentViewID&&(e=!1),this.viewData[t][s].loaded=0,this.onImageLoad(a,i.proxy(function(i){this.viewData[t][s].loaded=i?1:2,this.settings.waitUntilLoaded&&t===this.currentViewID&&this.isViewLoaded(t)&&this.start()},this))):this.viewData[t][s].loaded=-1}else this.viewData[t][s].loaded=-1},this))},this)),i(window).load(i.proxy(function(){this.recalculateVisibleViews()},this)),parseFloat(this.settings.intervalSpeed)<parseFloat(this.settings.slideSpeed)+.1&&(this.settings.intervalSpeed=parseFloat(this.settings.slideSpeed)+.1),(!this.settings.waitUntilLoaded||this.settings.waitUntilLoaded&&e)&&this.start()}}}();
4
+ !function(){var t=jQuery,i=slideshow_jquery_image_gallery_script;i.Slideshow.prototype.start=function(){this.activateDescriptions(),this.activateControlPanel(),this.activateNavigationButtons(),this.activatePagination(),this.activatePauseOnHover(),this.$loadingIcon.length>0&&this.$loadingIcon.remove(),this.$content.show(),this.recalculateViews(),this.settings.enableResponsiveness&&t(window).resize(t.proxy(function(){this.recalculate(!0)},this)),this.playState=this.PlayStates.PAUSED,this.$container.trigger("slideshowPlayStateChange",[this.playState]),this.settings.play&&this.play()},i.Slideshow.prototype.play=function(){this.interval||(this.playState=this.PlayStates.PLAYING,this.$container.trigger("slideshowPlayStateChange",[this.playState]),this.interval=setInterval(t.proxy(function i(e,s){void 0===s&&(s=this),void 0===e&&(e=s.getNextViewID()),s.isViewLoaded(e)?(s.animateTo(e,1),s.play()):(s.pause(this.PlayStates.TEMPORARILY_PAUSED),setTimeout(t.proxy(function(){i(e,s)},s),100))},this),1e3*this.settings.intervalSpeed))},i.Slideshow.prototype.pause=function(t){clearInterval(this.interval),this.interval=!1,t!==this.PlayStates.PAUSED&&t!==this.PlayStates.TEMPORARILY_PAUSED&&(t=this.PlayStates.PAUSED),this.playState=t,this.$container.trigger("slideshowPlayStateChange",[this.playState])},i.Slideshow.prototype.next=function(){this.playState===this.PlayStates.PLAYING&&(this.pause(this.PlayStates.TEMPORARILY_PAUSED),this.play()),this.animateTo(this.getNextViewID(),1)},i.Slideshow.prototype.previous=function(){this.playState===this.PlayStates.PLAYING&&(this.pause(this.PlayStates.TEMPORARILY_PAUSED),this.play()),this.animateTo(this.getPreviousViewID(),-1)},i.Slideshow.prototype.isVideoPlaying=function(){for(var t in this.videoPlayers)if(this.videoPlayers.hasOwnProperty(t)){var i=this.videoPlayers[t].state;if(1==i||3==i)return!0}return!1},i.Slideshow.prototype.pauseAllVideos=function(){for(var t in this.videoPlayers)if(this.videoPlayers.hasOwnProperty(t)){var i=this.videoPlayers[t].player;null!=i&&"function"==typeof i.pauseVideo&&(this.videoPlayers[t].state=2,i.pauseVideo())}},i.Slideshow.prototype.isViewLoaded=function(i){var e=!0;return isNaN(parseInt(i,10))?!1:(t.each(this.viewData[i],t.proxy(function(t,i){0==i.loaded&&(e=!1)},this)),e)},i.Slideshow.prototype.getNaturalImageSize=function(i,e,s){return i.length<=0||!(i instanceof t)||"string"!=typeof i.attr("src")?(e(-1,-1,s),void 0):(this.onImageLoad(i,t.proxy(function(t,i){e(i.width,i.height,s)},this)),void 0)},i.Slideshow.prototype.onImageLoad=function(i,e,s){var a=new Image;return i.length<=0||!(i instanceof t)||"string"!=typeof i.attr("src")?(e(!1,a,s),void 0):(a.onload=t.proxy(function(){e(!0,a,s)},this),a.src=i.attr("src"),void 0)},i.Slideshow.prototype.getNextViewID=function(){var t=this.currentViewID;if(this.settings.random){var i=t;if(t=this.getNextRandomViewID(),t!=i)return t}return isNaN(parseInt(t,10))?0:t>=this.$views.length-1?this.settings.loop?0:this.currentViewID:t+1},i.Slideshow.prototype.getPreviousViewID=function(){var t=this.currentViewID;if(isNaN(parseInt(t,10))&&(t=0),this.settings.random){var i=t;if(t=this.getPreviousRandomViewID(),t!=i)return t}return 0>=t?this.settings.loop?t=this.$views.length-1:this.currentViewID:t-=1},i.Slideshow.prototype.getNextRandomViewID=function(){if(isNaN(parseInt(this.currentViewID,10))||this.randomPreviousHistoryViewIDs.push(this.currentViewID),this.randomPreviousHistoryViewIDs.length>2*this.viewIDs.length&&this.randomPreviousHistoryViewIDs.shift(),this.randomNextHistoryViewIDs.length>0)return this.randomNextHistoryViewIDs.pop();if(void 0===this.randomAvailableViewIDs||this.randomAvailableViewIDs.length<=0){this.randomAvailableViewIDs=t.extend(!0,[],this.viewIDs);var i=t.inArray(this.currentViewID,this.randomAvailableViewIDs);i>=0&&this.randomAvailableViewIDs.splice(i,1)}return this.randomAvailableViewIDs.splice(Math.floor(Math.random()*this.randomAvailableViewIDs.length),1).pop()},i.Slideshow.prototype.getPreviousRandomViewID=function(){return isNaN(parseInt(this.currentViewID,10))||this.randomNextHistoryViewIDs.push(this.currentViewID),this.randomNextHistoryViewIDs.length>2*this.viewIDs.length&&this.randomNextHistoryViewIDs.shift(),this.randomPreviousHistoryViewIDs.length>0?this.randomPreviousHistoryViewIDs.pop():this.viewIDs[Math.floor(Math.random()*this.viewIDs.length)]},i.Slideshow.prototype.getID=function(){var t=this.$container.data("sessionId");return isNaN(parseInt(t,10))&&(t=this.$container.attr("data-session-id")),t},i.Slideshow.prototype.bindSubmitListener=function(i){i.keypress(t.proxy(function(i){var e=i.keyCode||i.which;13===e&&(i.preventDefault(),t(i.currentTarget).click())},this))}}();
5
+ !function(){var e=jQuery,t=slideshow_jquery_image_gallery_script;t.Slideshow.prototype.animateTo=function(t,s){if(!(this.isVideoPlaying()||0>t||t>=this.$views.length||t==this.currentViewID)){if(this.currentlyAnimating===!0)return this.$container.one("slideshowAnimationEnd",e.proxy(function(){this.playState===this.PlayStates.PLAYING&&(this.pause(this.PlayStates.TEMPORARILY_PAUSED),this.play()),this.animateTo(t,s)},this)),void 0;this.currentlyAnimating=!0,(isNaN(parseInt(s,10))||0==s)&&(s=t<this.currentViewID?-1:1),this.visibleViews=[this.currentViewID,t];var i=this.settings.animation,n=["slide","slideRight","slideUp","slideDown","fade","directFade"];"random"==i&&(i=n[Math.floor(Math.random()*n.length)]);var o={slide:"slideRight",slideRight:"slide",slideUp:"slideDown",slideDown:"slideUp",fade:"fade",directFade:"directFade",crossFade:"crossFade"};0>s&&(i=o[i]);var d=e(this.$views[this.currentViewID]),a=e(this.$views[t]);switch(d.stop(!0,!0),a.stop(!0,!0),a.addClass("slideshow_nextView"),this.recalculateVisibleViews(),this.currentViewID=t,this.$container.trigger("slideshowAnimationStart",[t,i,s]),i){case"slide":a.css({top:0,left:this.$content.width()}),d.animate({left:-d.outerWidth(!0)},1e3*this.settings.slideSpeed),a.animate({left:0},1e3*this.settings.slideSpeed),setTimeout(e.proxy(function(){d.stop(!0,!0).css("top",this.$container.outerHeight(!0))},this),1e3*this.settings.slideSpeed);break;case"slideRight":a.css({top:0,left:-this.$content.width()}),d.animate({left:d.outerWidth(!0)},1e3*this.settings.slideSpeed),a.animate({left:0},1e3*this.settings.slideSpeed),setTimeout(e.proxy(function(){d.stop(!0,!0).css("top",this.$container.outerHeight(!0))},this),1e3*this.settings.slideSpeed);break;case"slideUp":a.css({top:this.$content.height(),left:0}),d.animate({top:-d.outerHeight(!0)},1e3*this.settings.slideSpeed),a.animate({top:0},1e3*this.settings.slideSpeed),setTimeout(e.proxy(function(){d.stop(!0,!0).css("top",this.$container.outerHeight(!0))},this),1e3*this.settings.slideSpeed);break;case"slideDown":a.css({top:-this.$content.height(),left:0}),d.animate({top:d.outerHeight(!0)},1e3*this.settings.slideSpeed),a.animate({top:0},1e3*this.settings.slideSpeed),setTimeout(e.proxy(function(){d.stop(!0,!0).css("top",this.$container.outerHeight(!0))},this),1e3*this.settings.slideSpeed);break;case"fade":a.css({top:0,left:0,display:"none"}),d.fadeOut(1e3*this.settings.slideSpeed/2),setTimeout(e.proxy(function(){a.fadeIn(1e3*this.settings.slideSpeed/2),d.stop(!0,!0).css({top:this.$container.outerHeight(!0),display:"block"})},this),1e3*this.settings.slideSpeed/2);break;case"directFade":a.css({top:0,left:0,"z-index":0,display:"none"}),d.css({"z-index":1}),a.stop(!0,!0).fadeIn(1e3*this.settings.slideSpeed),d.stop(!0,!0).fadeOut(1e3*this.settings.slideSpeed),setTimeout(e.proxy(function(){a.stop(!0,!0).css({"z-index":0}),d.stop(!0,!0).css({top:this.$container.outerHeight(!0),display:"block","z-index":0})},this),1e3*this.settings.slideSpeed);break;case"crossFade":a.css({top:0,left:0,"z-index":1,display:"none"}),d.css({"z-index":0}),a.stop(!0,!0).fadeIn(1e3*this.settings.slideSpeed),setTimeout(e.proxy(function(){d.css({top:this.$container.outerHeight(!0)}),a.css({"z-index":1})},this),1e3*this.settings.slideSpeed)}setTimeout(e.proxy(function(){d.removeClass("slideshow_currentView").find("a").attr("tabindex","-1"),a.removeClass("slideshow_nextView"),a.addClass("slideshow_currentView").find("a").attr("tabindex","0"),this.visibleViews=[t],this.currentlyAnimating=!1,this.$container.trigger("slideshowAnimationEnd")},this),1e3*this.settings.slideSpeed)}}}();
6
+ !function(){var t=jQuery,i=slideshow_jquery_image_gallery_script;i.Slideshow.prototype.recalculate=function(i){if(!this.$container.is(":visible"))return setTimeout(t.proxy(function(){this.recalculate(i)},this),500),void 0;for(var e=this.$parentElement,h=0;e.width()<=0&&(e=e.parent(),!(h>50));h++);if(this.currentWidth!=e.width()){this.currentWidth=e.width();var s=e.width()-(this.$container.outerWidth()-this.$container.width());if(parseInt(this.settings.maxWidth,10)>0&&parseInt(this.settings.maxWidth,10)<s&&(s=parseInt(this.settings.maxWidth,10)),this.$container.css("width",Math.round(s)),this.$content.css("width",Math.round(s)-(this.$content.outerWidth(!0)-this.$content.width())),this.settings.preserveSlideshowDimensions){var r=s*this.settings.dimensionHeight/this.settings.dimensionWidth;this.$container.css("height",Math.round(r)),this.$content.css("height",Math.round(r)-(this.$content.outerHeight(!0)-this.$content.height()))}else this.$container.css("height",Math.round(this.settings.height)),this.$content.css("height",Math.round(this.settings.height));this.$views.each(t.proxy(function(i,e){t.inArray(i,this.visibleViews)<0&&t(e).css("top",this.$container.outerHeight(!0))},this)),this.$container.trigger("slideshowResize"),(i||"boolean"!=typeof i)&&this.recalculateVisibleViews()}},i.Slideshow.prototype.recalculateViews=function(){t.each(this.$views,t.proxy(function(t){this.recalculateView(t,!1)},this))},i.Slideshow.prototype.recalculateVisibleViews=function(){t.each(this.visibleViews,t.proxy(function(t,i){this.recalculateView(i,!1)},this))},i.Slideshow.prototype.recalculateView=function(e,h){if(this.$content.width()<=0||this.$content.height()<=0)return setTimeout(t.proxy(function(){this.recalculateView(e,h)},this),500),void 0;var s=t(this.$views[e]);if("boolean"==typeof h&&h||this.$content.width()!=s.outerWidth(!0)){var r=s.find(".slideshow_slide");if(!(r.length<=0)){var a=this.$content.width()-(s.outerWidth(!0)-s.width()),o=this.$content.height()-(s.outerHeight(!0)-s.height()),n=Math.floor(a/r.length),d=o,l=a%r.length,c=0;t(r[0]).css("margin-left",0),t(r[r.length-1]).css("margin-right",0),t.each(r,t.proxy(function(h,s){var a=t(s),o=a.outerWidth(!0)-a.width(),g=a.outerHeight(!0)-a.height();if(h==r.length-1?a.width(n-o+l):a.width(n-o),a.height(d-g),a.hasClass("slideshow_slide_text")){var u=a.find(".slideshow_background_anchor");if(u.length<=0)return;var w=a.width()-(u.outerWidth(!0)-u.width()),f=a.height()-(u.outerHeight(!0)-u.height());u.css({width:w,height:f})}else if(a.hasClass("slideshow_slide_image")){var v=a.find("img");if(v.length<=0)return;var p,m,y=v.outerWidth(),$=v.outerHeight();p=isNaN(parseInt(y,10))?0:y-v.width(),m=isNaN(parseInt($,10))?0:$-v.height();var _=a.width()-p,x=a.height()-m;"stretch"===this.settings.imageBehaviour?(v.css({width:_,height:x}),v.attr({width:_,height:x})):this.getNaturalImageSize(v,t.proxy(function(i,h){var s,r;return 0>=i||0>=h?(setTimeout(t.proxy(function(){this.recalculateView(e,!0)},this),500),void 0):(s=a.width()/a.height(),r=(i+p)/(h+m),r>=s?"natural"===this.settings.imageBehaviour?(v.css({margin:"0px",width:_,height:Math.floor(_/r)}),v.attr({width:_,height:Math.floor(_/r)})):"crop"===this.settings.imageBehaviour&&(v.css({"margin-top":"0px","margin-left":-Math.floor((x*r-_)/2),height:x,width:Math.floor(x*r)}),v.attr({width:Math.floor(x*r),height:x})):"natural"===this.settings.imageBehaviour?(v.css({"margin-left":"auto","margin-right":"auto",display:"block",width:Math.floor(x*r),height:x}),v.attr({width:Math.floor(x*r),height:x})):"crop"===this.settings.imageBehaviour&&(v.css({"margin-top":-Math.floor((_/r-x)/2),"margin-left":"0px",width:_,height:Math.floor(_/r)}),v.attr({width:_,height:Math.floor(_/r)})),void 0)},this))}else if(a.hasClass("slideshow_slide_video")){var M=a.find("iframe");if(M.length>0)M.attr({width:a.width(),height:a.height()});else var W=setInterval(t.proxy(function(){if(i.youTubeAPIReady){clearInterval(W);var e=a.find(".slideshow_slide_video_id");e.attr("id","slideshow_slide_video_"+Math.floor(1e6*Math.random())+"_"+e.text());var h=e.attr("data-show-related-videos"),s=new YT.Player(e.attr("id"),{width:a.width(),height:a.height(),videoId:e.text(),playerVars:{wmode:"opaque",rel:h},events:{onReady:function(){},onStateChange:t.proxy(function(t){this.videoPlayers[e.attr("id")].state=t.data},this)}}),r=t("#"+e.attr("id"));r.show(),r.attr("src",r.attr("src")+"&wmode=opaque"),this.videoPlayers[e.attr("id")]={player:s,state:-1}}},this),500)}c+=a.outerWidth(!0)},this)),s.css({width:a,height:o})}}}}();
7
+ !function(){var t=jQuery,i=slideshow_jquery_image_gallery_script;i.Slideshow.prototype.activateDescriptions=function(){this.settings.showDescription&&(t.each(this.$slides.find(".slideshow_description_box"),t.proxy(function(i,s){var e=t(s);e.show(),this.settings.hideDescription?e.css({position:"absolute",top:this.$container.outerHeight(!0)}):e.css({position:"absolute",bottom:0})},this)),this.settings.hideDescription&&(this.$container.bind("slideshowResize",t.proxy(function(){t.each(this.$container.find(".slideshow_description_box"),t.proxy(function(i,s){t(s).css("top",this.$container.outerHeight(!0))},this))},this)),this.$container.bind("slideshowAnimationStart",t.proxy(function(){void 0!=this.visibleViews[1]&&t.each(t(this.$views[this.visibleViews[1]]).find(".slideshow_description_box"),t.proxy(function(i,s){t(s).css("top",this.$container.outerHeight(!0))},this))},this)),this.$slides.mouseenter(t.proxy(function(i){var s=t(i.currentTarget).find(".slideshow_description_box");this.descriptionTimer=setTimeout(t.proxy(function(){this.descriptionTimer="",s.stop(!0,!1).animate({top:this.$container.outerHeight(!0)-s.outerHeight(!0)},parseInt(1e3*this.settings.descriptionSpeed,10))},this),200)},this)),this.$slides.mouseleave(t.proxy(function(i){this.descriptionTimer!==!1&&(clearInterval(this.descriptionTimer),this.descriptionTimer=!1),t(i.currentTarget).find(".slideshow_description_box").stop(!0,!1).animate({top:this.$container.outerHeight(!0)},parseInt(1e3*this.settings.descriptionSpeed,10))},this))))},i.Slideshow.prototype.activateNavigationButtons=function(){var i,s;this.settings.controllable&&(i=this.$nextButton.data("nextText"),s=this.$previousButton.data("previousText"),("string"!=typeof i||"string"!=typeof s||i.length<=0||s.length<=0)&&(i=this.$nextButton.attr("data-next-text"),s=this.$previousButton.attr("data-previous-text")),this.$nextButton.html('<span class="assistive-text hide-text">'+i+"</span>").attr({tabindex:"0",title:i}),this.$previousButton.html('<span class="assistive-text hide-text">'+s+"</span>").attr({tabindex:"0",title:s}),this.$nextButton.click(t.proxy(function(){this.currentlyAnimating||(this.pauseAllVideos(),this.playState===this.PlayStates.PLAYING&&(this.pause(this.PlayStates.TEMPORARILY_PAUSED),this.play()),this.animateTo(this.getNextViewID(),1))},this)),this.$previousButton.click(t.proxy(function(){this.currentlyAnimating||(this.pauseAllVideos(),this.playState===this.PlayStates.PLAYING&&(this.pause(this.PlayStates.TEMPORARILY_PAUSED),this.play()),this.animateTo(this.getPreviousViewID(),-1))},this)),this.bindSubmitListener(this.$nextButton),this.bindSubmitListener(this.$previousButton),this.settings.hideNavigationButtons?(this.$container.mouseenter(t.proxy(function(){this.$nextButton.stop(!0,!0).fadeIn(100)},this)),this.$container.mouseleave(t.proxy(function(){this.$nextButton.stop(!0,!0).fadeOut(500)},this)),this.$container.mouseenter(t.proxy(function(){this.$previousButton.stop(!0,!0).fadeIn(100)},this)),this.$container.mouseleave(t.proxy(function(){this.$previousButton.stop(!0,!0).fadeOut(500)},this))):(this.$nextButton.show(),this.$previousButton.show()))},i.Slideshow.prototype.activateControlPanel=function(){this.settings.controlPanel&&(this.$togglePlayButton.attr("tabindex","0"),this.$container.bind("slideshowPlayStateChange",t.proxy(function(t,i){var s,e;this.$togglePlayButton.attr("role","button"),s=this.$togglePlayButton.data("playText"),e=this.$togglePlayButton.data("pauseText"),("string"!=typeof s||"string"!=typeof e||s.length<=0||e.length<=0)&&(s=this.$nextButton.attr("data-play-text"),e=this.$previousButton.attr("data-pause-text")),i===this.PlayStates.PLAYING?this.$togglePlayButton.html('<span class="assistive-text hide-text">'+e+"</span>").attr({"class":"slideshow_pause",title:e}):i===this.PlayStates.PAUSED&&this.$togglePlayButton.html('<span class="assistive-text hide-text">'+s+"</span>").attr({"class":"slideshow_play",title:s})},this)),this.$togglePlayButton.click(t.proxy(function(i){var s=t(i.currentTarget);s.hasClass("slideshow_play")?this.play():this.pause(this.PlayStates.PAUSED)},this)),this.bindSubmitListener(this.$togglePlayButton),this.settings.hideControlPanel?(this.$container.mouseenter(t.proxy(function(){this.$controlPanel.stop(!0,!0).fadeIn(100)},this)),this.$container.mouseleave(t.proxy(function(){this.$controlPanel.stop(!0,!0).fadeOut(500)},this))):this.$controlPanel.show())},i.Slideshow.prototype.activatePagination=function(){if(this.settings.showPagination){this.$pagination.find(".slideshow_pagination_center").html("<ul></ul>");var i=this.$pagination.find("ul");i.html(""),this.$views.each(t.proxy(function(t){var s="",e=parseInt(t,10)+1,n=this.$pagination.data("goToText");("string"!=typeof n||n.length<=0)&&(n=this.$pagination.attr("data-go-to-text")),t==this.currentViewID&&(s="slideshow_currentView"),i.append('<li class="slideshow_transparent '+s+'" data-view-id="'+t+'" role="button" title="'+n+" "+e+'"><span class="assistive-text hide-text">'+n+" "+e+"</span></li>")},this)),this.$pagination.find("li").attr("tabindex","0").click(t.proxy(function(i){var s,e=t(i.currentTarget);this.currentlyAnimating||(s=e.data("viewId"),isNaN(parseInt(s,10))&&(s=e.attr("data-view-id"),isNaN(parseInt(s,10)))||(this.pauseAllVideos(),this.playState===this.PlayStates.PLAYING&&(this.pause(this.PlayStates.TEMPORARILY_PAUSED),this.play()),this.animateTo(parseInt(s,10),0)))},this)),this.bindSubmitListener(this.$pagination.find("li")),this.$container.bind("slideshowAnimationStart",t.proxy(function(){var i=this.$pagination.find("li");i.each(t.proxy(function(i,s){t(s).removeClass("slideshow_currentView")},this)),t(i[this.currentViewID]).addClass("slideshow_currentView")},this)),this.settings.hidePagination?(this.$container.mouseenter(t.proxy(function(){this.$pagination.stop(!0,!0).fadeIn(100)},this)),this.$container.mouseleave(t.proxy(function(){this.$pagination.stop(!0,!0).fadeOut(500)},this))):this.$pagination.show()}},i.Slideshow.prototype.activatePauseOnHover=function(){this.settings.pauseOnHover&&(this.$container.mouseenter(t.proxy(function(){clearTimeout(this.pauseOnHoverTimer),this.playState!==this.PlayStates.PAUSED&&(this.pauseOnHoverTimer=setTimeout(t.proxy(function(){this.pause(this.PlayStates.TEMPORARILY_PAUSED)},this),500))},this)),this.$container.mouseleave(t.proxy(function(){clearTimeout(this.pauseOnHoverTimer),this.playState!==this.PlayStates.PAUSED&&this.interval===!1&&this.play()},this)))}}();
8
  slideshow_jquery_image_gallery_backend_script_scriptsloadedFlag=!0;
languages/slideshow-plugin-bg_BG.mo CHANGED
Binary file
languages/slideshow-plugin-bg_BG.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Slideshow v2.2.19\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-03-19 20:31+0100\n"
6
- "PO-Revision-Date: 2014-03-19 20:31+0100\n"
7
  "Last-Translator: admin <home@avalonbg.com>\n"
8
  "Language-Team: \n"
9
  "Language: bg_BG\n"
@@ -11,10 +11,9 @@ msgstr ""
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
- "X-Generator: Poedit 1.6.4\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
17
- "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
18
  "X-Poedit-Basepath: ../\n"
19
  "X-Textdomain-Support: yes\n"
20
  "X-Poedit-SearchPath-0: .\n"
@@ -503,6 +502,10 @@ msgstr "Прехвърляй кадрите нагоре"
503
  msgid "Slide Down"
504
  msgstr "Прехвърляй кадрите надолу"
505
 
 
 
 
 
506
  # @ slideshow-plugin
507
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
508
  msgid "Direct Fade"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Slideshow Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-08-19 11:47+0100\n"
6
+ "PO-Revision-Date: 2014-08-19 11:49+0100\n"
7
  "Last-Translator: admin <home@avalonbg.com>\n"
8
  "Language-Team: \n"
9
  "Language: bg_BG\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
+ "X-Generator: Poedit 1.5.7\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Poedit-KeywordsList: __;_e\n"
 
17
  "X-Poedit-Basepath: ../\n"
18
  "X-Textdomain-Support: yes\n"
19
  "X-Poedit-SearchPath-0: .\n"
502
  msgid "Slide Down"
503
  msgstr "Прехвърляй кадрите надолу"
504
 
505
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
506
+ msgid "Cross Fade"
507
+ msgstr ""
508
+
509
  # @ slideshow-plugin
510
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
511
  msgid "Direct Fade"
languages/slideshow-plugin-cs_CZ.mo CHANGED
Binary file
languages/slideshow-plugin-cs_CZ.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: 2014-03-19 20:31+0100\n"
6
- "PO-Revision-Date: 2014-03-19 20:31+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
  "Language: cz_CZ\n"
@@ -12,7 +12,7 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
- "X-Generator: Poedit 1.6.4\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
@@ -413,6 +413,10 @@ msgstr "Posunout nahoru"
413
  msgid "Slide Down"
414
  msgstr "Posunout dolů"
415
 
 
 
 
 
416
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
417
  msgid "Direct Fade"
418
  msgstr "Přímé prolnutí"
2
  msgstr ""
3
  "Project-Id-Version: Slideshow Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-08-19 11:49+0100\n"
6
+ "PO-Revision-Date: 2014-08-19 11:50+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
  "Language: cz_CZ\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
413
  msgid "Slide Down"
414
  msgstr "Posunout dolů"
415
 
416
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
417
+ msgid "Cross Fade"
418
+ msgstr ""
419
+
420
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
421
  msgid "Direct Fade"
422
  msgstr "Přímé prolnutí"
languages/slideshow-plugin-de_DE.mo CHANGED
Binary file
languages/slideshow-plugin-de_DE.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Slideshow Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-03-19 20:32+0100\n"
6
- "PO-Revision-Date: 2014-03-19 20:32+0100\n"
7
- "Last-Translator: Markus Amann <amann@dema-itsupport.com>\n"
8
  "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
  "Language: de_DE\n"
10
  "MIME-Version: 1.0\n"
@@ -12,7 +12,7 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
- "X-Generator: Poedit 1.6.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
  #: classes/SlideshowPluginGeneralSettings.php:82
@@ -27,7 +27,8 @@ msgstr "Neu"
27
 
28
  #: classes/SlideshowPluginGeneralSettings.php:151
29
  msgid "Are you sure you want to delete this custom style?"
30
- msgstr "Sind Sie sicher, dass Sie dieses standard Layout löschen möchten?"
 
31
 
32
  #: classes/SlideshowPluginGeneralSettings.php:196
33
  #: classes/SlideshowPluginInstaller.php:803
@@ -64,30 +65,30 @@ msgstr "Nein"
64
  #: classes/SlideshowPluginInstaller.php:803
65
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:610
66
  msgid "The style used for this slideshow"
67
- msgstr "Das Layout dieser Diashow"
68
 
69
  #: classes/SlideshowPluginInstaller.php:803
70
  msgid "Custom"
71
- msgstr "Standard"
72
 
73
  #: classes/SlideshowPluginInstaller.php:804
74
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:126
75
  msgid "Custom style editor"
76
- msgstr "Standard Layout Editor"
77
 
78
  #: classes/SlideshowPluginInstaller.php:805
79
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:518
80
  msgid "Animation used for transition between slides"
81
- msgstr "gewählte Animation zwischen den Dias"
82
 
83
  #: classes/SlideshowPluginInstaller.php:805
84
  msgid "Slide"
85
- msgstr "Dia"
86
 
87
  #: classes/SlideshowPluginInstaller.php:805
88
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
89
  msgid "Fade"
90
- msgstr "verblassen"
91
 
92
  #: classes/SlideshowPluginInstaller.php:805
93
  #: classes/SlideshowPluginInstaller.php:806
@@ -98,12 +99,12 @@ msgstr "verblassen"
98
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:549
99
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:550
100
  msgid "Animation"
101
- msgstr "Animation"
102
 
103
  #: classes/SlideshowPluginInstaller.php:806
104
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:519
105
  msgid "Number of seconds the slide takes to slide in"
106
- msgstr "Zeit in sec. für das Hineingleiten des Dias"
107
 
108
  #: classes/SlideshowPluginInstaller.php:807
109
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:520
@@ -113,12 +114,12 @@ msgstr "Zeit in sec. für das Hineingleiten der Beschreibung"
113
  #: classes/SlideshowPluginInstaller.php:808
114
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:521
115
  msgid "Seconds between changing slides"
116
- msgstr "Zeit in sec. für das Wechseln der Dias"
117
 
118
  #: classes/SlideshowPluginInstaller.php:809
119
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:522
120
  msgid "Number of slides to fit into one slide"
121
- msgstr "Anzahl einzel Dias pro Diafläche"
122
 
123
  #: classes/SlideshowPluginInstaller.php:809
124
  #: classes/SlideshowPluginInstaller.php:810
@@ -137,15 +138,15 @@ msgstr "Anzahl einzel Dias pro Diafläche"
137
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:558
138
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:559
139
  msgid "Display"
140
- msgstr "Anzeige"
141
 
142
  #: classes/SlideshowPluginInstaller.php:810
143
  msgid "Width of the slideshow, set to parent&#39;s width on 0"
144
- msgstr "Breite der Diashow, Standard = 0"
145
 
146
  #: classes/SlideshowPluginInstaller.php:811
147
  msgid "Height of the slideshow"
148
- msgstr "Höhe der Diashow"
149
 
150
  #: classes/SlideshowPluginInstaller.php:812
151
  msgid "Height of the description boxes"
@@ -153,7 +154,7 @@ msgstr "Höhe der Beschreibungsbox"
153
 
154
  #: classes/SlideshowPluginInstaller.php:813
155
  msgid "Fit image into slide (stretching it)"
156
- msgstr "Dia passend aufzoomen entsprechend der Vorgabe"
157
 
158
  #: classes/SlideshowPluginInstaller.php:814
159
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:529
@@ -167,7 +168,7 @@ msgstr "Beschreibungsbox verstecken, Anzeige erst bei Mausberührung"
167
  #: classes/SlideshowPluginInstaller.php:816
168
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:531
169
  msgid "Automatically slide to the next slide"
170
- msgstr "automatisch weiter zum nächsten Dia"
171
 
172
  #: classes/SlideshowPluginInstaller.php:816
173
  #: classes/SlideshowPluginInstaller.php:817
@@ -183,55 +184,56 @@ msgstr "automatisch weiter zum nächsten Dia"
183
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:567
184
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:568
185
  msgid "Control"
186
- msgstr "Konsole"
187
 
188
  #: classes/SlideshowPluginInstaller.php:817
189
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:532
190
  msgid "Return to the beginning of the slideshow after last slide"
191
- msgstr "zum Anfang der Diashow zurückkehren nach dem letzten Dia"
192
 
193
  #: classes/SlideshowPluginInstaller.php:818
194
  msgid "Activate buttons (so the user can scroll through the slides)"
195
  msgstr ""
196
- "Kontrollknöpfe aktivieren (damit der Besucher zum nächsten Dia wechseln kann)"
 
197
 
198
  #: classes/SlideshowPluginInstaller.php:819
199
  msgid "Show control panel (play and pause button)"
200
- msgstr "Bedienfeld anzeigen (Abspielen- und Pasueknopf)"
201
 
202
  #: classes/SlideshowPluginPostType.php:45
203
  msgid "Slideshows"
204
- msgstr "Diashows"
205
 
206
  #: classes/SlideshowPluginPostType.php:46
207
  #: views/SlideshowPluginWidget/form.php:7
208
  msgid "Slideshow"
209
- msgstr "Diashow"
210
 
211
  #: classes/SlideshowPluginPostType.php:47
212
  msgid "Add New Slideshow"
213
- msgstr "neue Diashow anlegen"
214
 
215
  #: classes/SlideshowPluginPostType.php:48
216
  msgid "Edit slideshow"
217
- msgstr "Diashow bearbeiten"
218
 
219
  #: classes/SlideshowPluginPostType.php:49
220
  msgid "New slideshow"
221
- msgstr "neue Diashow"
222
 
223
  #: classes/SlideshowPluginPostType.php:50
224
  msgid "View slideshow"
225
- msgstr "Diashow anzeigen"
226
 
227
  #: classes/SlideshowPluginPostType.php:51
228
  msgid "Search slideshows"
229
- msgstr "Diashow suchen"
230
 
231
  #: classes/SlideshowPluginPostType.php:52
232
  #: classes/SlideshowPluginPostType.php:53
233
  msgid "No slideshows found"
234
- msgstr "keine Diashow vorhanden"
235
 
236
  #: classes/SlideshowPluginPostType.php:98
237
  msgid "Information"
@@ -239,80 +241,81 @@ msgstr "Information"
239
 
240
  #: classes/SlideshowPluginPostType.php:107
241
  msgid "Slides List"
242
- msgstr "Liste Diashow"
243
 
244
  #: classes/SlideshowPluginPostType.php:116
245
  msgid "Slideshow Style"
246
- msgstr "Layout Diashow"
247
 
248
  #: classes/SlideshowPluginPostType.php:125
249
  msgid "Slideshow Settings"
250
- msgstr "Einstellungen Diashow"
251
 
252
  #: classes/SlideshowPluginPostType.php:173
253
  msgid "Slideshow created"
254
- msgstr ""
255
 
256
  #: classes/SlideshowPluginPostType.php:177
257
  msgid "Slideshow updated"
258
- msgstr ""
259
 
260
  #: classes/SlideshowPluginPostType.php:224
261
  #: classes/SlideshowPluginSlideInserter.php:238
262
  #: views/SlideshowPluginPostType/slides.php:2
263
  msgid "Insert"
264
- msgstr "einfügen"
265
 
266
  #: classes/SlideshowPluginPostType.php:232
267
  msgid "Open all"
268
- msgstr ""
269
 
270
  #: classes/SlideshowPluginPostType.php:234
271
  msgid "Close all"
272
- msgstr ""
273
 
274
  #: classes/SlideshowPluginPostType.php:240
275
  #: views/SlideshowPluginPostType/slides.php:10
276
  msgid "Add slides to this slideshow by using one of the buttons above."
277
  msgstr ""
278
- "benutzen Sie den Auswahlknopf oben um weitere Dias in die Diashow einzufügen."
 
279
 
280
  #: classes/SlideshowPluginPostType.php:320
281
  msgid "Duplicate"
282
- msgstr ""
283
 
284
  #: classes/SlideshowPluginPostType.php:371
285
  msgid "Copy"
286
- msgstr ""
287
 
288
  #: classes/SlideshowPluginShortcode.php:148
289
  msgid "No slideshow selected."
290
- msgstr "Keine Diashow ausgewählt."
291
 
292
  #: classes/SlideshowPluginSlideInserter.php:194
293
  msgid "More results loaded"
294
- msgstr "weitere Ergebnissse geladen"
295
 
296
  #: classes/SlideshowPluginSlideInserter.php:249
297
  msgid "Load more results"
298
- msgstr "lade weitere Ergebnisse"
299
 
300
  #: classes/SlideshowPluginSlideInserter.php:260
301
  msgid "No images were found, click here to upload some."
302
- msgstr "keine Bilder gefunden,hier klicken um weitere hochzuladen"
303
 
304
  #: classes/SlideshowPluginSlideInserter.php:332
305
  msgid "Are you sure you want to delete this slide?"
306
- msgstr "Sind Sie Sicher dass Sie dieses Dia löschen möchten?"
307
 
308
  #: classes/SlideshowPluginSlideInserter.php:333
309
  msgid "Insert image slide"
310
- msgstr ""
311
 
312
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:523
313
  msgid "Maximum width. When maximum width is 0, maximum width is ignored"
314
  msgstr ""
315
- "maximale Breite. Bei maximaler Breite = 0, wird die maximale Breite "
316
  "ignoriert."
317
 
318
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
@@ -321,7 +324,7 @@ msgstr "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
321
 
322
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
323
  msgid "More info"
324
- msgstr "weitere Informationen"
325
 
326
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
327
  #, php-format
@@ -329,97 +332,101 @@ msgid ""
329
  "Proportional relationship%s between slideshow's width and height (width:"
330
  "height)"
331
  msgstr ""
332
- "proportionaler Zusammenhang%s zwischen der Breite und Höhe der Diashow "
333
  "(Breite:Höhe)"
334
 
335
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:525
336
  msgid "Slideshow's height"
337
- msgstr "Höhe Diashow"
338
 
339
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:526
340
  msgid "Image behaviour"
341
- msgstr ""
342
 
343
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:527
344
  msgid "Shrink slideshow's height when width shrinks"
345
- msgstr ""
346
- "Höhe proportional anpassen wenn sich die Breite der Diashow verringert."
347
 
348
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:528
349
  msgid ""
350
  "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
351
  msgstr ""
352
- "Ansprechbarkeit aktivieren (vermindere die Breite der Diashow wenn sich die "
353
  "Seitenbreite verringert)"
354
 
355
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:530
356
  msgid "Hide description box, pop up when mouse hovers over"
357
- msgstr "Beschreibungsfeld ausblenden,einblenden bei Mausberührung"
358
 
359
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:533
360
  msgid "Pause slideshow when mouse hovers over"
361
- msgstr "Diashow pausieren bei Mausberührung"
362
 
363
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:534
364
  msgid "Activate navigation buttons"
365
- msgstr "Navigation aktivieren"
366
 
367
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:535
368
  msgid "Hide navigation buttons, show when mouse hovers over"
369
- msgstr "Navigation ausblenden, sichtbar bei Mausberührung"
370
 
371
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:536
372
  msgid "Activate pagination"
373
- msgstr "Seitennummerierung aktivieren"
374
 
375
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:537
376
  msgid "Hide pagination, show when mouse hovers over"
377
- msgstr "Seitennummerierung ausblenden, sichtbar bei Mausberührung"
 
378
 
379
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:538
380
  msgid "Activate control panel (play and pause button)"
381
- msgstr "Bedienfeld aktivieren (Abspiel- und Pauseknopf) "
382
 
383
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:539
384
  msgid "Hide control panel, show when mouse hovers over"
385
- msgstr "Bedienfeld ausblenden, sichtbar bei Mausberührung"
386
 
387
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:540
388
  msgid "Wait until the next slide has loaded before showing it"
389
- msgstr ""
390
 
391
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:541
392
  msgid "Show a loading icon until the first slide appears"
393
- msgstr ""
394
 
395
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:542
396
  msgid "Randomize slides"
397
- msgstr "Dias in zufälliger Reihenfolge anzeigen"
398
 
399
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:543
400
  #, php-format
401
  msgid "Avoid content filter (disable if '%s' is shown)"
402
- msgstr "vermeide Inhaltsfilter (deaktiviere bei angezeigtem '%s')"
403
 
404
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
405
  msgid "Slide Left"
406
- msgstr "Dia von links"
407
 
408
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
409
  msgid "Slide Right"
410
- msgstr "Dia von rechts"
411
 
412
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
413
  msgid "Slide Up"
414
- msgstr "Dia aufwärts"
415
 
416
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
417
  msgid "Slide Down"
418
- msgstr "Dia abwärts"
 
 
 
 
419
 
420
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
421
  msgid "Direct Fade"
422
- msgstr "verblassen"
423
 
424
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
425
  msgid "Random Animation"
@@ -427,59 +434,59 @@ msgstr "Zufalls-Animation"
427
 
428
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
429
  msgid "Natural and centered"
430
- msgstr ""
431
 
432
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
433
  msgid "Crop to fit"
434
- msgstr ""
435
 
436
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
437
  msgid "Stretch to fit"
438
- msgstr ""
439
 
440
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:569
441
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:570
442
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:571
443
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:572
444
  msgid "Miscellaneous"
445
- msgstr "Diverses"
446
 
447
  #: classes/SlideshowPluginWidget.php:23
448
  msgid "Enables you to show your slideshows in the widget area of your website."
449
  msgstr ""
450
- "ermöglicht Ihnen die Diashow im Widget-Bereich der Webseite anzuzeigen."
451
 
452
  #: classes/SlideshowPluginWidget.php:29
453
  msgid "Slideshow Widget"
454
- msgstr "Diashow Widget"
455
 
456
  #: views/SlideshowPlugin/slideshow.php:23
457
  msgid "Play"
458
- msgstr ""
459
 
460
  #: views/SlideshowPlugin/slideshow.php:23
461
  msgid "Pause"
462
- msgstr ""
463
 
464
  #: views/SlideshowPlugin/slideshow.php:25
465
  msgid "Previous"
466
- msgstr ""
467
 
468
  #: views/SlideshowPlugin/slideshow.php:26
469
  msgid "Next"
470
- msgstr ""
471
 
472
  #: views/SlideshowPlugin/slideshow.php:28
473
  msgid "Go to slide"
474
- msgstr ""
475
 
476
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:46
477
  msgid "Default stylesheets"
478
- msgstr "Standard Layout"
479
 
480
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:60
481
  msgid "Create a new custom style from this style"
482
- msgstr "Erstelle ein eigenes Layout aus diesem Layout"
483
 
484
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:62
485
  msgid "Customize"
@@ -487,37 +494,37 @@ msgstr "modifizieren"
487
 
488
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:76
489
  msgid "Custom stylesheets"
490
- msgstr "eigenes Layout"
491
 
492
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:89
493
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:172
494
  msgid "Edit this style"
495
- msgstr "dieses Layout bearbeiten"
496
 
497
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:91
498
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:174
499
  #: views/SlideshowPluginPostType/slides.php:138
500
  #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:112
501
  msgid "Edit"
502
- msgstr "bearbeiten"
503
 
504
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:98
505
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:181
506
  msgid "Delete this style"
507
- msgstr "dieses Layout löschen"
508
 
509
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:100
510
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:183
511
  msgid "Delete"
512
- msgstr "löschen"
513
 
514
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:110
515
  msgid "Click 'Customize' to create a new custom stylesheet."
516
- msgstr "Klicke 'modifizieren' um eine neues Layout zu erstellen."
517
 
518
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:130
519
  msgid "Select a stylesheet to start customizing it."
520
- msgstr "Wählen sie ein Layout um mit der Modifikation zu beginnen."
521
 
522
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:139
523
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:192
@@ -550,13 +557,13 @@ msgid ""
550
  "%sclick here.%s"
551
  msgstr ""
552
  "Die Einstellungen auf dieser Seite werden nur auf die neu erstellten "
553
- "Diashows angewandt, bereits bestehende werden davon nicht betroffen. Um die "
554
- "Einstellunegn zu verändern, %sKlicken Sie hier.%s"
555
 
556
  #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:29
557
  #: views/SlideshowPluginGeneralSettings/general-settings.php:15
558
  msgid "Default Slideshow Settings"
559
- msgstr "Standardeinstellungen Diashow"
560
 
561
  #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:41
562
  #: views/SlideshowPluginPostType/settings.php:12
@@ -565,19 +572,19 @@ msgstr "Einstellungen"
565
 
566
  #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:77
567
  msgid "Default Slideshow Stylesheet"
568
- msgstr "Standardeinstellungen Layout"
569
 
570
  #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:11
571
  msgid "Add slideshows"
572
- msgstr "Diashow hinzufügen"
573
 
574
  #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:12
575
  msgid "Edit slideshows"
576
- msgstr "Diashow bearbeiten"
577
 
578
  #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:13
579
  msgid "Delete slideshows"
580
- msgstr "Diashow löschen"
581
 
582
  #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:20
583
  msgid "User Capabilities"
@@ -586,12 +593,12 @@ msgstr "Benutzerberechtigungen"
586
  #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:22
587
  msgid "Select the user roles that will able to perform certain actions."
588
  msgstr ""
589
- "Wählen Sie die Stufe der Benutzerberechtigung zum ausführen bestimmter "
590
  "Aktionen."
591
 
592
  #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:38
593
  msgid "Untitled role"
594
- msgstr "ohne Rang"
595
 
596
  #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:65
597
  msgid "Settings"
@@ -599,41 +606,42 @@ msgstr "Einstellungen"
599
 
600
  #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:69
601
  msgid "Stylesheet location"
602
- msgstr ""
603
 
604
  #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:72
605
  msgid "top"
606
- msgstr ""
607
 
608
  #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:73
609
  msgid "bottom"
610
- msgstr ""
611
 
612
  #: views/SlideshowPluginGeneralSettings/general-settings.php:16
613
  msgid "Custom Styles"
614
- msgstr "Eigenmodifikationen"
615
 
616
  #: views/SlideshowPluginPostType/information.php:1
617
  msgid ""
618
  "To use this slideshow in your website either add this piece of shortcode to "
619
  "your posts or pages"
620
  msgstr ""
621
- "Um diese Diashow in Ihrer Webseite zu benutzen, fügen Sie bitte den "
622
- "Quellcode in Ihre Artikel oder Seiten ein."
623
 
624
  #: views/SlideshowPluginPostType/information.php:5
625
  msgid ""
626
  "Or add this piece of code to where ever in your website you want to place "
627
  "the slideshow"
628
  msgstr ""
629
- "oder fügen Sie diesen Codeteil an jeder beliebigen Stelle auf Ihrer Webseite "
630
- "zum Anzeigen der Diashow ein."
631
 
632
  #: views/SlideshowPluginPostType/information.php:9
633
  #, php-format
634
  msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
635
  msgstr ""
636
- "oder gehen Sie auf die %swidgets page%s und zeigen die Diashow als Widget an."
 
637
 
638
  #: views/SlideshowPluginPostType/settings.php:26
639
  #: views/SlideshowPluginPostType/style-settings.php:11
@@ -646,7 +654,7 @@ msgstr "Standard"
646
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:9
647
  #: views/SlideshowPluginSlideshowSlide/backend_text.php:69
648
  msgid "Text slide"
649
- msgstr "Textshow"
650
 
651
  #: views/SlideshowPluginPostType/slides.php:61
652
  #: views/SlideshowPluginPostType/slides.php:150
@@ -675,7 +683,7 @@ msgstr "Hintergrundfarbe"
675
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:180
676
  #: views/SlideshowPluginSlideshowSlide/backend_text.php:121
677
  msgid "URL"
678
- msgstr "Webadresse"
679
 
680
  #: views/SlideshowPluginPostType/slides.php:70
681
  #: views/SlideshowPluginPostType/slides.php:157
@@ -686,7 +694,7 @@ msgstr "Webadresse"
686
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:183
687
  #: views/SlideshowPluginSlideshowSlide/backend_text.php:124
688
  msgid "Open URL in"
689
- msgstr "öffne Webadresse in"
690
 
691
  #: views/SlideshowPluginPostType/slides.php:72
692
  #: views/SlideshowPluginPostType/slides.php:159
@@ -708,7 +716,7 @@ msgstr "gleichem Fenster"
708
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:186
709
  #: views/SlideshowPluginSlideshowSlide/backend_text.php:127
710
  msgid "New window"
711
- msgstr "neues Fenster"
712
 
713
  #: views/SlideshowPluginPostType/slides.php:90
714
  #: views/SlideshowPluginPostType/slides.php:230
@@ -716,14 +724,14 @@ msgstr "neues Fenster"
716
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:94
717
  #: views/SlideshowPluginSlideshowSlide/backend_video.php:26
718
  msgid "Video slide"
719
- msgstr "Videoshow"
720
 
721
  #: views/SlideshowPluginPostType/slides.php:95
722
  #: views/SlideshowPluginPostType/slides.php:235
723
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:103
724
  #: views/SlideshowPluginSlideshowSlide/backend_video.php:35
725
  msgid "Youtube Video ID"
726
- msgstr "Youtube Video ID"
727
 
728
  #: views/SlideshowPluginPostType/slides.php:133
729
  #: views/SlideshowPluginPostType/slides.php:255
@@ -732,14 +740,14 @@ msgstr "Youtube Video ID"
732
  #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:101
733
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:135
734
  msgid "Image slide"
735
- msgstr "Bildershow"
736
 
737
  #: views/SlideshowPluginPostType/slides.php:171
738
  msgid ""
739
  "An error occurred while loading this slide, and it will not be present in "
740
  "the slideshow"
741
  msgstr ""
742
- "Beim Laden des Dias trat ein Fehler auf und kann in der Diashow nicht "
743
  "angezeigt werden."
744
 
745
  #: views/SlideshowPluginPostType/slides.php:177
@@ -753,16 +761,17 @@ msgstr ""
753
  #: views/SlideshowPluginSlideshowSlide/backend_text.php:138
754
  #: views/SlideshowPluginSlideshowSlide/backend_video.php:49
755
  msgid "Delete slide"
756
- msgstr "Dia löschen"
757
 
758
  #: views/SlideshowPluginPostType/style-settings.php:22
759
  #, php-format
760
  msgid "Custom styles can be created and customized %shere%s."
761
- msgstr "Eigenmodifikationen können %shier%s erstellt und bearbeitet werden."
 
762
 
763
  #: views/SlideshowPluginPostType/support-plugin.php:3
764
  msgid "Help to keep this plugin free!"
765
- msgstr "Helfen Sie dass das Plugin auch weiterhin kostenlos bleibt!"
766
 
767
  #: views/SlideshowPluginPostType/support-plugin.php:6
768
  msgid ""
@@ -771,42 +780,42 @@ msgid ""
771
  "consider making a small donation to the plugin or rating it as 5-stars on "
772
  "Wordpress.org. Thank you in advance!"
773
  msgstr ""
774
- "Um sicherzustellen dass es auch weiterhin Programmerweiterungen, Hilfe bei "
775
- "Fragen und Updates gibt bin ich auf Ihre Motivation und Unterstützung "
776
- "angewiesen, deshalb bitte ich um eine kleine Spende für das Plugin oder um "
777
- "eine 5-Sterne Bewertung auf Wordpress.org. Vielen Dank vorab."
778
 
779
  #: views/SlideshowPluginPostType/support-plugin.php:15
780
  msgid "Rate on Wordpress.org"
781
- msgstr "auf Wordpress.org bewerten"
782
 
783
  #: views/SlideshowPluginPostType/support-plugin.php:24
784
  msgid "Frequently Asked Questions (FAQ)"
785
- msgstr "häufig gestelle Fragen (FAQ)"
786
 
787
  #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
788
  #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
789
  #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
790
  msgid "Insert a Slideshow"
791
- msgstr "eine Diashow einfügen"
792
 
793
  #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
794
  #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
795
  msgid "Insert Slideshow"
796
- msgstr "Diashow einfügen"
797
 
798
  #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
799
  msgid "Select a slideshow"
800
- msgstr "Diashow auswählen"
801
 
802
  #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
803
  #: views/SlideshowPluginWidget/form.php:12
804
  msgid "Untitled slideshow"
805
- msgstr "unbenannte Diashow"
806
 
807
  #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
808
  msgid "Cancel"
809
- msgstr "Abbruch"
810
 
811
  #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
812
  #, php-format
@@ -814,12 +823,12 @@ msgid ""
814
  "It seems you haven't created any slideshows yet. %sYou can create a "
815
  "slideshow here!%s"
816
  msgstr ""
817
- "Sie haben noch keine Diashow angelegt. %sSie können eine Diashow hier anlegen"
818
- "%s"
819
 
820
  #: views/SlideshowPluginSlideInserter/search-popup.php:6
821
  msgid "Search"
822
- msgstr "Suche"
823
 
824
  #: views/SlideshowPluginSlideInserter/search-popup.php:7
825
  msgid "Search images by title or ID"
@@ -832,19 +841,19 @@ msgstr "Bildersuche über Titel oder ID"
832
  #: views/SlideshowPluginSlideshowSlide/backend_text.php:58
833
  #: views/SlideshowPluginSlideshowSlide/backend_video.php:21
834
  msgid "Click to toggle"
835
- msgstr ""
836
 
837
  #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:160
838
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:69
839
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:190
840
  #: views/SlideshowPluginSlideshowSlide/backend_text.php:131
841
  msgid "Don't let search engines follow link"
842
- msgstr ""
843
 
844
  #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:168
845
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:197
846
  msgid "Alternative text"
847
- msgstr ""
848
 
849
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:48
850
  #: views/SlideshowPluginSlideshowSlide/backend_text.php:110
@@ -859,7 +868,7 @@ msgstr "(für transparenten Hintergrund bitte freilassen)"
859
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:110
860
  #: views/SlideshowPluginSlideshowSlide/backend_video.php:42
861
  msgid "Show related videos"
862
- msgstr ""
863
 
864
  #: views/SlideshowPluginUpload/upload-button.php:1
865
  msgid "Upload/Manage Images"
@@ -867,7 +876,7 @@ msgstr "Bilder hochladen/verwalten"
867
 
868
  #: views/SlideshowPluginWidget/form.php:9
869
  msgid "Random Slideshow"
870
- msgstr "Zufallsdiashow"
871
 
872
  #~ msgid "Fit image into slide (Stretch image)"
873
  #~ msgstr "einzel Bild in die Diashow einpassen (Bild strecken)"
2
  msgstr ""
3
  "Project-Id-Version: Slideshow Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-08-19 11:52+0100\n"
6
+ "PO-Revision-Date: 2014-08-19 11:53+0100\n"
7
+ "Last-Translator: \n"
8
  "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
  "Language: de_DE\n"
10
  "MIME-Version: 1.0\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
  #: classes/SlideshowPluginGeneralSettings.php:82
27
 
28
  #: classes/SlideshowPluginGeneralSettings.php:151
29
  msgid "Are you sure you want to delete this custom style?"
30
+ msgstr ""
31
+ "Sind Sie sicher, dass Sie dieses benutzerdefinierte Layout löschen möchten?"
32
 
33
  #: classes/SlideshowPluginGeneralSettings.php:196
34
  #: classes/SlideshowPluginInstaller.php:803
65
  #: classes/SlideshowPluginInstaller.php:803
66
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:610
67
  msgid "The style used for this slideshow"
68
+ msgstr "Das Layout dieser Slideshow"
69
 
70
  #: classes/SlideshowPluginInstaller.php:803
71
  msgid "Custom"
72
+ msgstr "Benutzerdefiniert"
73
 
74
  #: classes/SlideshowPluginInstaller.php:804
75
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:126
76
  msgid "Custom style editor"
77
+ msgstr "Editor für benutzerdefiniertes Layout"
78
 
79
  #: classes/SlideshowPluginInstaller.php:805
80
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:518
81
  msgid "Animation used for transition between slides"
82
+ msgstr "Animation für den Übergang zwischen den Bildern"
83
 
84
  #: classes/SlideshowPluginInstaller.php:805
85
  msgid "Slide"
86
+ msgstr "Bild"
87
 
88
  #: classes/SlideshowPluginInstaller.php:805
89
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
90
  msgid "Fade"
91
+ msgstr "Überblenden (Fade)"
92
 
93
  #: classes/SlideshowPluginInstaller.php:805
94
  #: classes/SlideshowPluginInstaller.php:806
99
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:549
100
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:550
101
  msgid "Animation"
102
+ msgstr "Animations-"
103
 
104
  #: classes/SlideshowPluginInstaller.php:806
105
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:519
106
  msgid "Number of seconds the slide takes to slide in"
107
+ msgstr "Zeit in sec. für das Hineingleiten des Bildes"
108
 
109
  #: classes/SlideshowPluginInstaller.php:807
110
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:520
114
  #: classes/SlideshowPluginInstaller.php:808
115
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:521
116
  msgid "Seconds between changing slides"
117
+ msgstr "Zeit in sec. für das Wechseln der Bilder"
118
 
119
  #: classes/SlideshowPluginInstaller.php:809
120
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:522
121
  msgid "Number of slides to fit into one slide"
122
+ msgstr "Anzahl der Bilder innerhalb einer Slideshow"
123
 
124
  #: classes/SlideshowPluginInstaller.php:809
125
  #: classes/SlideshowPluginInstaller.php:810
138
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:558
139
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:559
140
  msgid "Display"
141
+ msgstr "Anzeige-"
142
 
143
  #: classes/SlideshowPluginInstaller.php:810
144
  msgid "Width of the slideshow, set to parent&#39;s width on 0"
145
+ msgstr "Breite der Slideshow, Standard = 0"
146
 
147
  #: classes/SlideshowPluginInstaller.php:811
148
  msgid "Height of the slideshow"
149
+ msgstr "Höhe der Slideshow"
150
 
151
  #: classes/SlideshowPluginInstaller.php:812
152
  msgid "Height of the description boxes"
154
 
155
  #: classes/SlideshowPluginInstaller.php:813
156
  msgid "Fit image into slide (stretching it)"
157
+ msgstr "Bild entsprechend der Vorgabe strecken"
158
 
159
  #: classes/SlideshowPluginInstaller.php:814
160
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:529
168
  #: classes/SlideshowPluginInstaller.php:816
169
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:531
170
  msgid "Automatically slide to the next slide"
171
+ msgstr "Automatisch weiter zum nächsten Bild"
172
 
173
  #: classes/SlideshowPluginInstaller.php:816
174
  #: classes/SlideshowPluginInstaller.php:817
184
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:567
185
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:568
186
  msgid "Control"
187
+ msgstr "Kontroll-"
188
 
189
  #: classes/SlideshowPluginInstaller.php:817
190
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:532
191
  msgid "Return to the beginning of the slideshow after last slide"
192
+ msgstr "Zum Anfang der Slideshow zurückkehren nach dem letzten Bild"
193
 
194
  #: classes/SlideshowPluginInstaller.php:818
195
  msgid "Activate buttons (so the user can scroll through the slides)"
196
  msgstr ""
197
+ "Kontrollknöpfe aktivieren (damit der Besucher zum nächsten Bild wechseln "
198
+ "kann)"
199
 
200
  #: classes/SlideshowPluginInstaller.php:819
201
  msgid "Show control panel (play and pause button)"
202
+ msgstr "Bedienfeld anzeigen (Abspielen- und Pause-Knopf)"
203
 
204
  #: classes/SlideshowPluginPostType.php:45
205
  msgid "Slideshows"
206
+ msgstr "Slideshows"
207
 
208
  #: classes/SlideshowPluginPostType.php:46
209
  #: views/SlideshowPluginWidget/form.php:7
210
  msgid "Slideshow"
211
+ msgstr "Slideshow"
212
 
213
  #: classes/SlideshowPluginPostType.php:47
214
  msgid "Add New Slideshow"
215
+ msgstr "neue Slideshow anlegen"
216
 
217
  #: classes/SlideshowPluginPostType.php:48
218
  msgid "Edit slideshow"
219
+ msgstr "Slideshow bearbeiten"
220
 
221
  #: classes/SlideshowPluginPostType.php:49
222
  msgid "New slideshow"
223
+ msgstr "neue Slideshow"
224
 
225
  #: classes/SlideshowPluginPostType.php:50
226
  msgid "View slideshow"
227
+ msgstr "Slideshow anzeigen"
228
 
229
  #: classes/SlideshowPluginPostType.php:51
230
  msgid "Search slideshows"
231
+ msgstr "Slideshow suchen"
232
 
233
  #: classes/SlideshowPluginPostType.php:52
234
  #: classes/SlideshowPluginPostType.php:53
235
  msgid "No slideshows found"
236
+ msgstr "keine Slideshow vorhanden"
237
 
238
  #: classes/SlideshowPluginPostType.php:98
239
  msgid "Information"
241
 
242
  #: classes/SlideshowPluginPostType.php:107
243
  msgid "Slides List"
244
+ msgstr "Liste der Slideshow Elemente"
245
 
246
  #: classes/SlideshowPluginPostType.php:116
247
  msgid "Slideshow Style"
248
+ msgstr "Layout Slideshow"
249
 
250
  #: classes/SlideshowPluginPostType.php:125
251
  msgid "Slideshow Settings"
252
+ msgstr "Einstellungen Slideshow"
253
 
254
  #: classes/SlideshowPluginPostType.php:173
255
  msgid "Slideshow created"
256
+ msgstr "Slideshow erstellt"
257
 
258
  #: classes/SlideshowPluginPostType.php:177
259
  msgid "Slideshow updated"
260
+ msgstr "Slideshow aktualisiert"
261
 
262
  #: classes/SlideshowPluginPostType.php:224
263
  #: classes/SlideshowPluginSlideInserter.php:238
264
  #: views/SlideshowPluginPostType/slides.php:2
265
  msgid "Insert"
266
+ msgstr "Einfügen"
267
 
268
  #: classes/SlideshowPluginPostType.php:232
269
  msgid "Open all"
270
+ msgstr "Alle öffnen"
271
 
272
  #: classes/SlideshowPluginPostType.php:234
273
  msgid "Close all"
274
+ msgstr "Alle schließen"
275
 
276
  #: classes/SlideshowPluginPostType.php:240
277
  #: views/SlideshowPluginPostType/slides.php:10
278
  msgid "Add slides to this slideshow by using one of the buttons above."
279
  msgstr ""
280
+ "Benutzen Sie den Auswahlknopf oben, um weitere Bilder in die Slideshow "
281
+ "einzufügen."
282
 
283
  #: classes/SlideshowPluginPostType.php:320
284
  msgid "Duplicate"
285
+ msgstr "Duplizieren"
286
 
287
  #: classes/SlideshowPluginPostType.php:371
288
  msgid "Copy"
289
+ msgstr "Kopie"
290
 
291
  #: classes/SlideshowPluginShortcode.php:148
292
  msgid "No slideshow selected."
293
+ msgstr "Keine Slideshow ausgewählt"
294
 
295
  #: classes/SlideshowPluginSlideInserter.php:194
296
  msgid "More results loaded"
297
+ msgstr "Weitere Ergebnissse geladen"
298
 
299
  #: classes/SlideshowPluginSlideInserter.php:249
300
  msgid "Load more results"
301
+ msgstr "Lade weitere Ergebnisse"
302
 
303
  #: classes/SlideshowPluginSlideInserter.php:260
304
  msgid "No images were found, click here to upload some."
305
+ msgstr "Keine Bilder gefunden, hier klicken um weitere Bilder hochzuladen"
306
 
307
  #: classes/SlideshowPluginSlideInserter.php:332
308
  msgid "Are you sure you want to delete this slide?"
309
+ msgstr "Sind Sie Sicher dass Sie dieses Bild löschen möchten?"
310
 
311
  #: classes/SlideshowPluginSlideInserter.php:333
312
  msgid "Insert image slide"
313
+ msgstr "Bilder Slideshow einfügen"
314
 
315
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:523
316
  msgid "Maximum width. When maximum width is 0, maximum width is ignored"
317
  msgstr ""
318
+ "Maximale Breite. Bei maximaler Breite = 0, wird die maximale Breite "
319
  "ignoriert."
320
 
321
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
324
 
325
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
326
  msgid "More info"
327
+ msgstr "Weitere Informationen"
328
 
329
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
330
  #, php-format
332
  "Proportional relationship%s between slideshow's width and height (width:"
333
  "height)"
334
  msgstr ""
335
+ "Proportionaler Zusammenhang%s zwischen der Breite und Höhe der Slideshow "
336
  "(Breite:Höhe)"
337
 
338
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:525
339
  msgid "Slideshow's height"
340
+ msgstr "Höhe der Slideshow"
341
 
342
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:526
343
  msgid "Image behaviour"
344
+ msgstr "Bild Verhalten"
345
 
346
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:527
347
  msgid "Shrink slideshow's height when width shrinks"
348
+ msgstr "Höhe proportional anpassen, wenn sich die Slideshow-Breite verringert"
 
349
 
350
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:528
351
  msgid ""
352
  "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
353
  msgstr ""
354
+ "Responsive-Modus aktivieren (verringert die Slideshow-Breite, wenn sich die "
355
  "Seitenbreite verringert)"
356
 
357
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:530
358
  msgid "Hide description box, pop up when mouse hovers over"
359
+ msgstr "Beschreibungsfeld ausblenden, einblenden bei Mausberührung"
360
 
361
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:533
362
  msgid "Pause slideshow when mouse hovers over"
363
+ msgstr "Slideshow pausieren bei Mausberührung"
364
 
365
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:534
366
  msgid "Activate navigation buttons"
367
+ msgstr "Navigations-Pfeile (< >) aktivieren"
368
 
369
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:535
370
  msgid "Hide navigation buttons, show when mouse hovers over"
371
+ msgstr "Navigations-Pfeile (< >) ausblenden, sichtbar erst bei Mausberührung"
372
 
373
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:536
374
  msgid "Activate pagination"
375
+ msgstr "Seitennummerierung ( . . . ) aktivieren"
376
 
377
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:537
378
  msgid "Hide pagination, show when mouse hovers over"
379
+ msgstr ""
380
+ "Seitennummerierung ( . . . ) ausblenden, sichtbar erst bei Mausberührung"
381
 
382
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:538
383
  msgid "Activate control panel (play and pause button)"
384
+ msgstr "Bedienfeld aktivieren (Abspiel- und Pause-Knopf) "
385
 
386
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:539
387
  msgid "Hide control panel, show when mouse hovers over"
388
+ msgstr "Bedienfeld ausblenden, sichtbar erst bei Mausberührung"
389
 
390
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:540
391
  msgid "Wait until the next slide has loaded before showing it"
392
+ msgstr "Warten bis das nächste Bild geladen wurde, bevor es angezeigt wird"
393
 
394
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:541
395
  msgid "Show a loading icon until the first slide appears"
396
+ msgstr "Zeige ein Lade-Symbol bis das erste Bild erscheint"
397
 
398
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:542
399
  msgid "Randomize slides"
400
+ msgstr "Bilder in zufälliger Reihenfolge anzeigen"
401
 
402
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:543
403
  #, php-format
404
  msgid "Avoid content filter (disable if '%s' is shown)"
405
+ msgstr "Vermeide Inhaltsfilter (Deaktivieren wenn '%s' angezeigt wird)"
406
 
407
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
408
  msgid "Slide Left"
409
+ msgstr "Bild von links"
410
 
411
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
412
  msgid "Slide Right"
413
+ msgstr "Bild von rechts"
414
 
415
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
416
  msgid "Slide Up"
417
+ msgstr "Bild nach oben"
418
 
419
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
420
  msgid "Slide Down"
421
+ msgstr "Bild nach unten"
422
+
423
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
424
+ msgid "Cross Fade"
425
+ msgstr ""
426
 
427
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
428
  msgid "Direct Fade"
429
+ msgstr "Direkt Überblenden"
430
 
431
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
432
  msgid "Random Animation"
434
 
435
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
436
  msgid "Natural and centered"
437
+ msgstr "Zentriert (normal)"
438
 
439
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
440
  msgid "Crop to fit"
441
+ msgstr "Angepasst (abgeschnitten)"
442
 
443
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
444
  msgid "Stretch to fit"
445
+ msgstr "Gestreckt"
446
 
447
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:569
448
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:570
449
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:571
450
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:572
451
  msgid "Miscellaneous"
452
+ msgstr "Diverse"
453
 
454
  #: classes/SlideshowPluginWidget.php:23
455
  msgid "Enables you to show your slideshows in the widget area of your website."
456
  msgstr ""
457
+ "Ermöglicht Ihnen die Slideshow im Widget-Bereich der Webseite anzuzeigen."
458
 
459
  #: classes/SlideshowPluginWidget.php:29
460
  msgid "Slideshow Widget"
461
+ msgstr "Slideshow Widget"
462
 
463
  #: views/SlideshowPlugin/slideshow.php:23
464
  msgid "Play"
465
+ msgstr "Abspielen"
466
 
467
  #: views/SlideshowPlugin/slideshow.php:23
468
  msgid "Pause"
469
+ msgstr "Pause"
470
 
471
  #: views/SlideshowPlugin/slideshow.php:25
472
  msgid "Previous"
473
+ msgstr "Vorheriges"
474
 
475
  #: views/SlideshowPlugin/slideshow.php:26
476
  msgid "Next"
477
+ msgstr "Nächstes"
478
 
479
  #: views/SlideshowPlugin/slideshow.php:28
480
  msgid "Go to slide"
481
+ msgstr "Gehe zum Bild"
482
 
483
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:46
484
  msgid "Default stylesheets"
485
+ msgstr "Standard Layouts"
486
 
487
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:60
488
  msgid "Create a new custom style from this style"
489
+ msgstr "Erstelle ein eigenes Layout (CSS) aus diesem Layout"
490
 
491
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:62
492
  msgid "Customize"
494
 
495
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:76
496
  msgid "Custom stylesheets"
497
+ msgstr "Benutzerdefinierte Layouts"
498
 
499
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:89
500
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:172
501
  msgid "Edit this style"
502
+ msgstr "Layout bearbeiten"
503
 
504
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:91
505
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:174
506
  #: views/SlideshowPluginPostType/slides.php:138
507
  #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:112
508
  msgid "Edit"
509
+ msgstr "Bearbeiten"
510
 
511
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:98
512
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:181
513
  msgid "Delete this style"
514
+ msgstr "Layout löschen"
515
 
516
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:100
517
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:183
518
  msgid "Delete"
519
+ msgstr "Löschen"
520
 
521
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:110
522
  msgid "Click 'Customize' to create a new custom stylesheet."
523
+ msgstr "Klicken Sie 'modifizieren' um eine neues Layout zu erstellen."
524
 
525
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:130
526
  msgid "Select a stylesheet to start customizing it."
527
+ msgstr "Wählen Sie ein Layout, um mit der Modifikation zu beginnen."
528
 
529
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:139
530
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:192
557
  "%sclick here.%s"
558
  msgstr ""
559
  "Die Einstellungen auf dieser Seite werden nur auf die neu erstellten "
560
+ "Slideshows angewandt. Bereits bestehende Slideshows werden davon nicht "
561
+ "betroffen. Um die Einstellungen zu verändern, %sklicken Sie hier.%s"
562
 
563
  #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:29
564
  #: views/SlideshowPluginGeneralSettings/general-settings.php:15
565
  msgid "Default Slideshow Settings"
566
+ msgstr "Standard Einstellungen Slideshow"
567
 
568
  #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:41
569
  #: views/SlideshowPluginPostType/settings.php:12
572
 
573
  #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:77
574
  msgid "Default Slideshow Stylesheet"
575
+ msgstr "Standard Layout Slideshow"
576
 
577
  #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:11
578
  msgid "Add slideshows"
579
+ msgstr "Slideshow hinzufügen"
580
 
581
  #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:12
582
  msgid "Edit slideshows"
583
+ msgstr "Slideshow bearbeiten"
584
 
585
  #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:13
586
  msgid "Delete slideshows"
587
+ msgstr "Slideshow löschen"
588
 
589
  #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:20
590
  msgid "User Capabilities"
593
  #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:22
594
  msgid "Select the user roles that will able to perform certain actions."
595
  msgstr ""
596
+ "Wählen Sie die Stufe der Benutzerberechtigung zum Ausführen bestimmter "
597
  "Aktionen."
598
 
599
  #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:38
600
  msgid "Untitled role"
601
+ msgstr "unbenannte Funktion"
602
 
603
  #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:65
604
  msgid "Settings"
606
 
607
  #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:69
608
  msgid "Stylesheet location"
609
+ msgstr "Layout Speicherort"
610
 
611
  #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:72
612
  msgid "top"
613
+ msgstr "oben"
614
 
615
  #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:73
616
  msgid "bottom"
617
+ msgstr "unten"
618
 
619
  #: views/SlideshowPluginGeneralSettings/general-settings.php:16
620
  msgid "Custom Styles"
621
+ msgstr "Benutzerdefiniertes Layout"
622
 
623
  #: views/SlideshowPluginPostType/information.php:1
624
  msgid ""
625
  "To use this slideshow in your website either add this piece of shortcode to "
626
  "your posts or pages"
627
  msgstr ""
628
+ "Um diese Slideshow in Ihrer Webseite zu benutzen, fügen Sie bitte den "
629
+ "Quellcode in Ihre Beiträge oder Seiten ein"
630
 
631
  #: views/SlideshowPluginPostType/information.php:5
632
  msgid ""
633
  "Or add this piece of code to where ever in your website you want to place "
634
  "the slideshow"
635
  msgstr ""
636
+ "Oder fügen Sie diesen Codeteil an jeder beliebigen Stelle auf Ihrer Webseite "
637
+ "zum Anzeigen der Slideshow ein"
638
 
639
  #: views/SlideshowPluginPostType/information.php:9
640
  #, php-format
641
  msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
642
  msgstr ""
643
+ "Oder gehen Sie auf die %sWidgets Seite%s (>Design >Widgets) und zeigen die "
644
+ "Slideshow als Widget an."
645
 
646
  #: views/SlideshowPluginPostType/settings.php:26
647
  #: views/SlideshowPluginPostType/style-settings.php:11
654
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:9
655
  #: views/SlideshowPluginSlideshowSlide/backend_text.php:69
656
  msgid "Text slide"
657
+ msgstr "Text Slide"
658
 
659
  #: views/SlideshowPluginPostType/slides.php:61
660
  #: views/SlideshowPluginPostType/slides.php:150
683
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:180
684
  #: views/SlideshowPluginSlideshowSlide/backend_text.php:121
685
  msgid "URL"
686
+ msgstr "Webadresse (URL)"
687
 
688
  #: views/SlideshowPluginPostType/slides.php:70
689
  #: views/SlideshowPluginPostType/slides.php:157
694
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:183
695
  #: views/SlideshowPluginSlideshowSlide/backend_text.php:124
696
  msgid "Open URL in"
697
+ msgstr "Öffne Webadresse in"
698
 
699
  #: views/SlideshowPluginPostType/slides.php:72
700
  #: views/SlideshowPluginPostType/slides.php:159
716
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:186
717
  #: views/SlideshowPluginSlideshowSlide/backend_text.php:127
718
  msgid "New window"
719
+ msgstr "neuem Fenster"
720
 
721
  #: views/SlideshowPluginPostType/slides.php:90
722
  #: views/SlideshowPluginPostType/slides.php:230
724
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:94
725
  #: views/SlideshowPluginSlideshowSlide/backend_video.php:26
726
  msgid "Video slide"
727
+ msgstr "Video Slide"
728
 
729
  #: views/SlideshowPluginPostType/slides.php:95
730
  #: views/SlideshowPluginPostType/slides.php:235
731
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:103
732
  #: views/SlideshowPluginSlideshowSlide/backend_video.php:35
733
  msgid "Youtube Video ID"
734
+ msgstr "Youtube Video ID"
735
 
736
  #: views/SlideshowPluginPostType/slides.php:133
737
  #: views/SlideshowPluginPostType/slides.php:255
740
  #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:101
741
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:135
742
  msgid "Image slide"
743
+ msgstr "Bilder Slide"
744
 
745
  #: views/SlideshowPluginPostType/slides.php:171
746
  msgid ""
747
  "An error occurred while loading this slide, and it will not be present in "
748
  "the slideshow"
749
  msgstr ""
750
+ "Beim Laden des Bildes trat ein Fehler auf und kann in der Slidehow nicht "
751
  "angezeigt werden."
752
 
753
  #: views/SlideshowPluginPostType/slides.php:177
761
  #: views/SlideshowPluginSlideshowSlide/backend_text.php:138
762
  #: views/SlideshowPluginSlideshowSlide/backend_video.php:49
763
  msgid "Delete slide"
764
+ msgstr "Löschen"
765
 
766
  #: views/SlideshowPluginPostType/style-settings.php:22
767
  #, php-format
768
  msgid "Custom styles can be created and customized %shere%s."
769
+ msgstr ""
770
+ "Eigene Layouts (CSS-Dateien) können %shier%s erstellt und bearbeitet werden."
771
 
772
  #: views/SlideshowPluginPostType/support-plugin.php:3
773
  msgid "Help to keep this plugin free!"
774
+ msgstr "Helfen Sie, dass das Plugin auch weiterhin kostenlos bleibt!"
775
 
776
  #: views/SlideshowPluginPostType/support-plugin.php:6
777
  msgid ""
780
  "consider making a small donation to the plugin or rating it as 5-stars on "
781
  "Wordpress.org. Thank you in advance!"
782
  msgstr ""
783
+ "Um sicherzustellen, dass es auch weiterhin Programm-Erweiterungen, Hilfe bei "
784
+ "Fragen und Updates gibt, bin ich auf Ihre Motivation und Unterstützung "
785
+ "angewiesen. Deshalb bitte ich um eine kleine Spende für das Plugin oder um "
786
+ "eine 5-Sterne Bewertung auf Wordpress.org. Vielen Dank vorab!"
787
 
788
  #: views/SlideshowPluginPostType/support-plugin.php:15
789
  msgid "Rate on Wordpress.org"
790
+ msgstr "Bewerten auf Wordpress.org"
791
 
792
  #: views/SlideshowPluginPostType/support-plugin.php:24
793
  msgid "Frequently Asked Questions (FAQ)"
794
+ msgstr "Häufig gestellte Fragen (FAQ)"
795
 
796
  #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
797
  #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
798
  #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
799
  msgid "Insert a Slideshow"
800
+ msgstr "Eine Slideshow einfügen"
801
 
802
  #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
803
  #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
804
  msgid "Insert Slideshow"
805
+ msgstr "Slideshow einfügen"
806
 
807
  #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
808
  msgid "Select a slideshow"
809
+ msgstr "Eine Slideshow auswählen"
810
 
811
  #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
812
  #: views/SlideshowPluginWidget/form.php:12
813
  msgid "Untitled slideshow"
814
+ msgstr "Unbenannte Slideshow"
815
 
816
  #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
817
  msgid "Cancel"
818
+ msgstr "Abbrechen"
819
 
820
  #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
821
  #, php-format
823
  "It seems you haven't created any slideshows yet. %sYou can create a "
824
  "slideshow here!%s"
825
  msgstr ""
826
+ "Sie haben noch keine Slideshow angelegt. %sSie können eine Slideshow hier "
827
+ "anlegen%s"
828
 
829
  #: views/SlideshowPluginSlideInserter/search-popup.php:6
830
  msgid "Search"
831
+ msgstr "Suchen"
832
 
833
  #: views/SlideshowPluginSlideInserter/search-popup.php:7
834
  msgid "Search images by title or ID"
841
  #: views/SlideshowPluginSlideshowSlide/backend_text.php:58
842
  #: views/SlideshowPluginSlideshowSlide/backend_video.php:21
843
  msgid "Click to toggle"
844
+ msgstr "Anklicken zum Umschalten"
845
 
846
  #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:160
847
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:69
848
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:190
849
  #: views/SlideshowPluginSlideshowSlide/backend_text.php:131
850
  msgid "Don't let search engines follow link"
851
+ msgstr "Verbietet Suchmaschinen den Link zu indexieren"
852
 
853
  #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:168
854
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:197
855
  msgid "Alternative text"
856
+ msgstr "Alternativtext"
857
 
858
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:48
859
  #: views/SlideshowPluginSlideshowSlide/backend_text.php:110
868
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:110
869
  #: views/SlideshowPluginSlideshowSlide/backend_video.php:42
870
  msgid "Show related videos"
871
+ msgstr "Zeige verwandte Videos"
872
 
873
  #: views/SlideshowPluginUpload/upload-button.php:1
874
  msgid "Upload/Manage Images"
876
 
877
  #: views/SlideshowPluginWidget/form.php:9
878
  msgid "Random Slideshow"
879
+ msgstr "Zufalls-Slideshow"
880
 
881
  #~ msgid "Fit image into slide (Stretch image)"
882
  #~ msgstr "einzel Bild in die Diashow einpassen (Bild strecken)"
languages/slideshow-plugin-es_ES.mo CHANGED
Binary file
languages/slideshow-plugin-es_ES.po CHANGED
@@ -2,17 +2,17 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Slideshow Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-03-19 20:32+0100\n"
6
- "PO-Revision-Date: 2014-03-19 20:32+0100\n"
7
  "Last-Translator: Violeta Rosales <ellaes@violetarosales.com>\n"
8
  "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
- "Language: fr_FR\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
- "X-Generator: Poedit 1.6.4\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
@@ -414,6 +414,10 @@ msgstr ""
414
  msgid "Slide Down"
415
  msgstr ""
416
 
 
 
 
 
417
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
418
  msgid "Direct Fade"
419
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: Slideshow Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-08-19 11:53+0100\n"
6
+ "PO-Revision-Date: 2014-08-19 11:53+0100\n"
7
  "Last-Translator: Violeta Rosales <ellaes@violetarosales.com>\n"
8
  "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
+ "Language: es_ES\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.7\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
414
  msgid "Slide Down"
415
  msgstr ""
416
 
417
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
418
+ msgid "Cross Fade"
419
+ msgstr ""
420
+
421
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
422
  msgid "Direct Fade"
423
  msgstr ""
languages/slideshow-plugin-fa_IR.mo CHANGED
Binary file
languages/slideshow-plugin-fa_IR.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: 2014-03-19 20:32+0100\n"
6
- "PO-Revision-Date: 2014-03-19 20:32+0100\n"
7
  "Last-Translator: Maziar Moradpour <info@w3design.ir>\n"
8
  "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
  "Language: fa_IR\n"
@@ -12,7 +12,8 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
- "X-Generator: Poedit 1.6.4\n"
 
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
  #: classes/SlideshowPluginGeneralSettings.php:82
@@ -251,11 +252,11 @@ msgstr "تنظیمات نمایشگر"
251
 
252
  #: classes/SlideshowPluginPostType.php:173
253
  msgid "Slideshow created"
254
- msgstr ""
255
 
256
  #: classes/SlideshowPluginPostType.php:177
257
  msgid "Slideshow updated"
258
- msgstr ""
259
 
260
  #: classes/SlideshowPluginPostType.php:224
261
  #: classes/SlideshowPluginSlideInserter.php:238
@@ -265,11 +266,11 @@ msgstr "درج"
265
 
266
  #: classes/SlideshowPluginPostType.php:232
267
  msgid "Open all"
268
- msgstr ""
269
 
270
  #: classes/SlideshowPluginPostType.php:234
271
  msgid "Close all"
272
- msgstr ""
273
 
274
  #: classes/SlideshowPluginPostType.php:240
275
  #: views/SlideshowPluginPostType/slides.php:10
@@ -278,11 +279,11 @@ msgstr "افزودن اسلاید به این نمایشگر با استفاده
278
 
279
  #: classes/SlideshowPluginPostType.php:320
280
  msgid "Duplicate"
281
- msgstr ""
282
 
283
  #: classes/SlideshowPluginPostType.php:371
284
  msgid "Copy"
285
- msgstr ""
286
 
287
  #: classes/SlideshowPluginShortcode.php:148
288
  msgid "No slideshow selected."
@@ -410,6 +411,10 @@ msgstr "کشویی به بالا"
410
  msgid "Slide Down"
411
  msgstr "کشویی به پائین"
412
 
 
 
 
 
413
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
414
  msgid "Direct Fade"
415
  msgstr "محو شدن مستقیم"
@@ -449,23 +454,23 @@ msgstr "ابزارک نمایشگر اسلاید"
449
 
450
  #: views/SlideshowPlugin/slideshow.php:23
451
  msgid "Play"
452
- msgstr ""
453
 
454
  #: views/SlideshowPlugin/slideshow.php:23
455
  msgid "Pause"
456
- msgstr ""
457
 
458
  #: views/SlideshowPlugin/slideshow.php:25
459
  msgid "Previous"
460
- msgstr ""
461
 
462
  #: views/SlideshowPlugin/slideshow.php:26
463
  msgid "Next"
464
- msgstr ""
465
 
466
  #: views/SlideshowPlugin/slideshow.php:28
467
  msgid "Go to slide"
468
- msgstr ""
469
 
470
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:46
471
  msgid "Default stylesheets"
@@ -511,7 +516,7 @@ msgstr "برای ایجاد یک شیوه نامه جدید بر روی 'سفا
511
 
512
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:130
513
  msgid "Select a stylesheet to start customizing it."
514
- msgstr ""
515
 
516
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:139
517
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:192
@@ -763,8 +768,8 @@ msgid ""
763
  msgstr ""
764
  "درود بر شما. برای توسعه بیشتر و رفع اشکال این افزونه، به انگیزه بیشتری "
765
  "نیازمندیم. شما می توانید با مراجعه به wordpress.org و اعطای رتبه 5 ستاره به "
766
- "ما انگیزه بیشتری دهید. بی گمان مهرورزی شما با ارائه زود هنگام نسخه های بعدی "
767
- "به بهترین شکل پاسخ داده خواهد شد."
768
 
769
  #: views/SlideshowPluginPostType/support-plugin.php:15
770
  msgid "Rate on Wordpress.org"
@@ -822,7 +827,7 @@ msgstr "تصاویر جستجو صورت اساس عنوان یا شناسه"
822
  #: views/SlideshowPluginSlideshowSlide/backend_text.php:58
823
  #: views/SlideshowPluginSlideshowSlide/backend_video.php:21
824
  msgid "Click to toggle"
825
- msgstr ""
826
 
827
  #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:160
828
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:69
2
  msgstr ""
3
  "Project-Id-Version: Slideshow Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-08-19 11:53+0100\n"
6
+ "PO-Revision-Date: 2014-08-19 11:54+0100\n"
7
  "Last-Translator: Maziar Moradpour <info@w3design.ir>\n"
8
  "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
  "Language: fa_IR\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.5.7\n"
16
+ "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: classes/SlideshowPluginGeneralSettings.php:82
252
 
253
  #: classes/SlideshowPluginPostType.php:173
254
  msgid "Slideshow created"
255
+ msgstr "نمایشگر اسلایدی ایجاد شد"
256
 
257
  #: classes/SlideshowPluginPostType.php:177
258
  msgid "Slideshow updated"
259
+ msgstr "نمایشگر اسلایدی بروز شد"
260
 
261
  #: classes/SlideshowPluginPostType.php:224
262
  #: classes/SlideshowPluginSlideInserter.php:238
266
 
267
  #: classes/SlideshowPluginPostType.php:232
268
  msgid "Open all"
269
+ msgstr "گشودن همه"
270
 
271
  #: classes/SlideshowPluginPostType.php:234
272
  msgid "Close all"
273
+ msgstr "بستن همه"
274
 
275
  #: classes/SlideshowPluginPostType.php:240
276
  #: views/SlideshowPluginPostType/slides.php:10
279
 
280
  #: classes/SlideshowPluginPostType.php:320
281
  msgid "Duplicate"
282
+ msgstr "تکثیر"
283
 
284
  #: classes/SlideshowPluginPostType.php:371
285
  msgid "Copy"
286
+ msgstr "کپی"
287
 
288
  #: classes/SlideshowPluginShortcode.php:148
289
  msgid "No slideshow selected."
411
  msgid "Slide Down"
412
  msgstr "کشویی به پائین"
413
 
414
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
415
+ msgid "Cross Fade"
416
+ msgstr "محو شدن کروز"
417
+
418
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
419
  msgid "Direct Fade"
420
  msgstr "محو شدن مستقیم"
454
 
455
  #: views/SlideshowPlugin/slideshow.php:23
456
  msgid "Play"
457
+ msgstr "حرکت"
458
 
459
  #: views/SlideshowPlugin/slideshow.php:23
460
  msgid "Pause"
461
+ msgstr "توقف"
462
 
463
  #: views/SlideshowPlugin/slideshow.php:25
464
  msgid "Previous"
465
+ msgstr "پیشین"
466
 
467
  #: views/SlideshowPlugin/slideshow.php:26
468
  msgid "Next"
469
+ msgstr "پسین"
470
 
471
  #: views/SlideshowPlugin/slideshow.php:28
472
  msgid "Go to slide"
473
+ msgstr "برو به اسلاید"
474
 
475
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:46
476
  msgid "Default stylesheets"
516
 
517
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:130
518
  msgid "Select a stylesheet to start customizing it."
519
+ msgstr "شیوه نامه ای را جهت شروع سفارشی سازی انتخاب کنید"
520
 
521
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:139
522
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:192
768
  msgstr ""
769
  "درود بر شما. برای توسعه بیشتر و رفع اشکال این افزونه، به انگیزه بیشتری "
770
  "نیازمندیم. شما می توانید با مراجعه به wordpress.org و اعطای رتبه 5 ستاره به "
771
+ "افزونه این کار را انجام دهید. بی گمان مهرورزی شما با ارائه زود هنگام نسخه "
772
+ "های بعدی به بهترین شکل پاسخ داده خواهد شد."
773
 
774
  #: views/SlideshowPluginPostType/support-plugin.php:15
775
  msgid "Rate on Wordpress.org"
827
  #: views/SlideshowPluginSlideshowSlide/backend_text.php:58
828
  #: views/SlideshowPluginSlideshowSlide/backend_video.php:21
829
  msgid "Click to toggle"
830
+ msgstr "برای جابجایی کلیک کنید"
831
 
832
  #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:160
833
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:69
languages/slideshow-plugin-fi.mo CHANGED
Binary file
languages/slideshow-plugin-fi.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: 2014-03-19 20:32+0100\n"
6
- "PO-Revision-Date: 2014-03-19 20:32+0100\n"
7
  "Last-Translator: Hyvä Ihme Design <minna.holtta@hyvaihme.com>\n"
8
  "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
  "Language: fi\n"
@@ -12,7 +12,7 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
- "X-Generator: Poedit 1.6.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
  #: classes/SlideshowPluginGeneralSettings.php:82
@@ -417,6 +417,10 @@ msgstr "Liuku ylös"
417
  msgid "Slide Down"
418
  msgstr "Liuku alas"
419
 
 
 
 
 
420
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
421
  msgid "Direct Fade"
422
  msgstr "Suora ristikuva"
2
  msgstr ""
3
  "Project-Id-Version: Slideshow Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-08-19 11:54+0100\n"
6
+ "PO-Revision-Date: 2014-08-19 11:54+0100\n"
7
  "Last-Translator: Hyvä Ihme Design <minna.holtta@hyvaihme.com>\n"
8
  "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
  "Language: fi\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
  #: classes/SlideshowPluginGeneralSettings.php:82
417
  msgid "Slide Down"
418
  msgstr "Liuku alas"
419
 
420
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
421
+ msgid "Cross Fade"
422
+ msgstr ""
423
+
424
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
425
  msgid "Direct Fade"
426
  msgstr "Suora ristikuva"
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: 2014-03-19 20:32+0100\n"
6
- "PO-Revision-Date: 2014-03-19 20:32+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"
@@ -12,7 +12,7 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
- "X-Generator: Poedit 1.6.4\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
@@ -422,6 +422,10 @@ msgstr "Glissement vers le haut"
422
  msgid "Slide Down"
423
  msgstr "Glissement vers le bas"
424
 
 
 
 
 
425
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
426
  msgid "Direct Fade"
427
  msgstr "Fondu direct"
2
  msgstr ""
3
  "Project-Id-Version: Slideshow Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-08-19 11:55+0100\n"
6
+ "PO-Revision-Date: 2014-08-19 11:55+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"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
422
  msgid "Slide Down"
423
  msgstr "Glissement vers le bas"
424
 
425
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
426
+ msgid "Cross Fade"
427
+ msgstr ""
428
+
429
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
430
  msgid "Direct Fade"
431
  msgstr "Fondu direct"
languages/slideshow-plugin-he_IL.mo CHANGED
Binary file
languages/slideshow-plugin-he_IL.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: 2014-03-19 20:32+0100\n"
6
- "PO-Revision-Date: 2014-03-19 20:32+0100\n"
7
  "Last-Translator: Murat Demir <demir.murat1@gmail.com>\n"
8
  "Language-Team: EliSegev\n"
9
  "Language: he_IL\n"
@@ -12,7 +12,7 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
- "X-Generator: Poedit 1.6.4\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
@@ -409,6 +409,10 @@ msgstr "החלק למעלה"
409
  msgid "Slide Down"
410
  msgstr "החלק למטה"
411
 
 
 
 
 
412
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
413
  msgid "Direct Fade"
414
  msgstr "דהייה ישירה"
2
  msgstr ""
3
  "Project-Id-Version: Slideshow Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-08-19 11:55+0100\n"
6
+ "PO-Revision-Date: 2014-08-19 11:55+0100\n"
7
  "Last-Translator: Murat Demir <demir.murat1@gmail.com>\n"
8
  "Language-Team: EliSegev\n"
9
  "Language: he_IL\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
409
  msgid "Slide Down"
410
  msgstr "החלק למטה"
411
 
412
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
413
+ msgid "Cross Fade"
414
+ msgstr ""
415
+
416
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
417
  msgid "Direct Fade"
418
  msgstr "דהייה ישירה"
languages/slideshow-plugin-it_IT.mo CHANGED
Binary file
languages/slideshow-plugin-it_IT.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: 2014-03-19 20:32+0100\n"
6
- "PO-Revision-Date: 2014-03-19 20:33+0100\n"
7
  "Last-Translator: Stefan Boonstra <stefanboonstra@hotmail.com>\n"
8
  "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
  "Language: it_IT\n"
@@ -12,7 +12,7 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
- "X-Generator: Poedit 1.6.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
  #: classes/SlideshowPluginGeneralSettings.php:82
@@ -419,6 +419,10 @@ msgstr "Scorrere verso l'alto"
419
  msgid "Slide Down"
420
  msgstr "Scorrere verso il basso"
421
 
 
 
 
 
422
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
423
  msgid "Direct Fade"
424
  msgstr "Dissolvenza"
2
  msgstr ""
3
  "Project-Id-Version: Slideshow Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-08-19 11:56+0100\n"
6
+ "PO-Revision-Date: 2014-08-19 11:56+0100\n"
7
  "Last-Translator: Stefan Boonstra <stefanboonstra@hotmail.com>\n"
8
  "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
  "Language: it_IT\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
  #: classes/SlideshowPluginGeneralSettings.php:82
419
  msgid "Slide Down"
420
  msgstr "Scorrere verso il basso"
421
 
422
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
423
+ msgid "Cross Fade"
424
+ msgstr ""
425
+
426
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
427
  msgid "Direct Fade"
428
  msgstr "Dissolvenza"
languages/slideshow-plugin-ja.mo CHANGED
Binary file
languages/slideshow-plugin-ja.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: 2014-03-19 20:33+0100\n"
6
- "PO-Revision-Date: 2014-03-19 20:33+0100\n"
7
  "Last-Translator: HOTTA Michihide <hotta@net-newbie.com>\n"
8
  "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
  "Language: ja\n"
@@ -13,7 +13,7 @@ msgstr ""
13
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
  "X-Poedit-KeywordsList: _e;__\n"
15
  "X-Poedit-Basepath: ../\n"
16
- "X-Generator: Poedit 1.6.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: classes/SlideshowPluginGeneralSettings.php:82
@@ -413,6 +413,10 @@ msgstr "上へスライド"
413
  msgid "Slide Down"
414
  msgstr "下へスライド"
415
 
 
 
 
 
416
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
417
  msgid "Direct Fade"
418
  msgstr "ダイレクト・フェード"
2
  msgstr ""
3
  "Project-Id-Version: Slideshow Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-08-19 11:56+0100\n"
6
+ "PO-Revision-Date: 2014-08-19 11:56+0100\n"
7
  "Last-Translator: HOTTA Michihide <hotta@net-newbie.com>\n"
8
  "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
  "Language: ja\n"
13
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
  "X-Poedit-KeywordsList: _e;__\n"
15
  "X-Poedit-Basepath: ../\n"
16
+ "X-Generator: Poedit 1.5.7\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: classes/SlideshowPluginGeneralSettings.php:82
413
  msgid "Slide Down"
414
  msgstr "下へスライド"
415
 
416
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
417
+ msgid "Cross Fade"
418
+ msgstr ""
419
+
420
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
421
  msgid "Direct Fade"
422
  msgstr "ダイレクト・フェード"
languages/slideshow-plugin-nl_NL.mo CHANGED
Binary file
languages/slideshow-plugin-nl_NL.po CHANGED
@@ -1,946 +1,950 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Slideshow Plugin\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-03-19 20:33+0100\n"
6
- "PO-Revision-Date: 2014-03-19 20:34+0100\n"
7
- "Last-Translator: Stefan Boonstra <stefanboonstra@hotmail.com>\n"
8
- "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
- "Language: nl_NL\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: _e;__\n"
14
- "X-Poedit-Basepath: ../\n"
15
- "X-Generator: Poedit 1.6.4\n"
16
- "X-Poedit-SearchPath-0: .\n"
17
-
18
- #: classes/SlideshowPluginGeneralSettings.php:82
19
- #: classes/SlideshowPluginGeneralSettings.php:83
20
- #: views/SlideshowPluginGeneralSettings/general-settings.php:14
21
- msgid "General Settings"
22
- msgstr "Algemene Instellingen"
23
-
24
- #: classes/SlideshowPluginGeneralSettings.php:150
25
- msgid "New"
26
- msgstr "Nieuw"
27
-
28
- #: classes/SlideshowPluginGeneralSettings.php:151
29
- msgid "Are you sure you want to delete this custom style?"
30
- msgstr "Weet je zeker dat je deze aangepaste stijl wilt verwijderen?"
31
-
32
- #: classes/SlideshowPluginGeneralSettings.php:196
33
- #: classes/SlideshowPluginInstaller.php:803
34
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:6
35
- msgid "Light"
36
- msgstr "Licht"
37
-
38
- #: classes/SlideshowPluginGeneralSettings.php:197
39
- #: classes/SlideshowPluginInstaller.php:803
40
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:7
41
- msgid "Dark"
42
- msgstr "Donker"
43
-
44
- #: classes/SlideshowPluginGeneralSettings.php:353
45
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:57
46
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:143
47
- msgid "Untitled"
48
- msgstr "Naamloos"
49
-
50
- #: classes/SlideshowPluginInstaller.php:800
51
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:472
52
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:111
53
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:43
54
- msgid "Yes"
55
- msgstr "Ja"
56
-
57
- #: classes/SlideshowPluginInstaller.php:801
58
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:473
59
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:112
60
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:44
61
- msgid "No"
62
- msgstr "Nee"
63
-
64
- #: classes/SlideshowPluginInstaller.php:803
65
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:610
66
- msgid "The style used for this slideshow"
67
- msgstr "De stijl te gebruiken voor deze slideshow"
68
-
69
- #: classes/SlideshowPluginInstaller.php:803
70
- msgid "Custom"
71
- msgstr "Aangepast"
72
-
73
- #: classes/SlideshowPluginInstaller.php:804
74
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:126
75
- msgid "Custom style editor"
76
- msgstr "Aangepaste stijl bewerker"
77
-
78
- #: classes/SlideshowPluginInstaller.php:805
79
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:518
80
- msgid "Animation used for transition between slides"
81
- msgstr "Animatie tussen het wisselen van de slides"
82
-
83
- #: classes/SlideshowPluginInstaller.php:805
84
- msgid "Slide"
85
- msgstr "Slide"
86
-
87
- #: classes/SlideshowPluginInstaller.php:805
88
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
89
- msgid "Fade"
90
- msgstr "Fade"
91
-
92
- #: classes/SlideshowPluginInstaller.php:805
93
- #: classes/SlideshowPluginInstaller.php:806
94
- #: classes/SlideshowPluginInstaller.php:807
95
- #: classes/SlideshowPluginInstaller.php:808
96
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
97
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:548
98
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:549
99
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:550
100
- msgid "Animation"
101
- msgstr "Animatie"
102
-
103
- #: classes/SlideshowPluginInstaller.php:806
104
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:519
105
- msgid "Number of seconds the slide takes to slide in"
106
- msgstr ""
107
- "Aantal seconden dat de animatie van het inschuiven van de volgende slide "
108
- "duurt"
109
-
110
- #: classes/SlideshowPluginInstaller.php:807
111
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:520
112
- msgid "Number of seconds the description takes to slide in"
113
- msgstr "Aantal seconden dat het inschuiven van de beschrijving duurt"
114
-
115
- #: classes/SlideshowPluginInstaller.php:808
116
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:521
117
- msgid "Seconds between changing slides"
118
- msgstr "Seconden tussen het wisselen van de slides"
119
-
120
- #: classes/SlideshowPluginInstaller.php:809
121
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:522
122
- msgid "Number of slides to fit into one slide"
123
- msgstr "Aantal slides om in een slide te plaatsen"
124
-
125
- #: classes/SlideshowPluginInstaller.php:809
126
- #: classes/SlideshowPluginInstaller.php:810
127
- #: classes/SlideshowPluginInstaller.php:811
128
- #: classes/SlideshowPluginInstaller.php:812
129
- #: classes/SlideshowPluginInstaller.php:813
130
- #: classes/SlideshowPluginInstaller.php:814
131
- #: classes/SlideshowPluginInstaller.php:815
132
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:551
133
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:552
134
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:553
135
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:554
136
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
137
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:556
138
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:557
139
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:558
140
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:559
141
- msgid "Display"
142
- msgstr "Weergave"
143
-
144
- #: classes/SlideshowPluginInstaller.php:810
145
- msgid "Width of the slideshow, set to parent&#39;s width on 0"
146
- msgstr ""
147
- "Breedte van de slideshow, past zich aan op bovenliggende element wanneer 0"
148
-
149
- #: classes/SlideshowPluginInstaller.php:811
150
- msgid "Height of the slideshow"
151
- msgstr "Hoogte van de slideshow"
152
-
153
- #: classes/SlideshowPluginInstaller.php:812
154
- msgid "Height of the description boxes"
155
- msgstr "Hoogte van de beschrijvingen"
156
-
157
- #: classes/SlideshowPluginInstaller.php:813
158
- msgid "Fit image into slide (stretching it)"
159
- msgstr "Pas afbeelding in de slideshow (oprekken)"
160
-
161
- #: classes/SlideshowPluginInstaller.php:814
162
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:529
163
- msgid "Show title and description"
164
- msgstr "Toon titel en beschrijving"
165
-
166
- #: classes/SlideshowPluginInstaller.php:815
167
- msgid "Hide description box, it will pop up when a mouse hovers over the slide"
168
- msgstr ""
169
- "Verberg beschrijving, toon deze alleen wanneer de muisaanwijzer boven de "
170
- "slide is"
171
-
172
- #: classes/SlideshowPluginInstaller.php:816
173
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:531
174
- msgid "Automatically slide to the next slide"
175
- msgstr "Automatisch naar de volgende slide gaan"
176
-
177
- #: classes/SlideshowPluginInstaller.php:816
178
- #: classes/SlideshowPluginInstaller.php:817
179
- #: classes/SlideshowPluginInstaller.php:818
180
- #: classes/SlideshowPluginInstaller.php:819
181
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:560
182
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:561
183
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:562
184
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:563
185
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:564
186
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:565
187
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:566
188
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:567
189
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:568
190
- msgid "Control"
191
- msgstr "Controle"
192
-
193
- #: classes/SlideshowPluginInstaller.php:817
194
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:532
195
- msgid "Return to the beginning of the slideshow after last slide"
196
- msgstr "Keer terug naar het begin van de slideshow na de laatste slide."
197
-
198
- #: classes/SlideshowPluginInstaller.php:818
199
- msgid "Activate buttons (so the user can scroll through the slides)"
200
- msgstr "Knoppen activeren (zodat de gebruiker door de slides kan scrollen)"
201
-
202
- #: classes/SlideshowPluginInstaller.php:819
203
- msgid "Show control panel (play and pause button)"
204
- msgstr "Toon controlepaneel (speel en pause knop)"
205
-
206
- #: classes/SlideshowPluginPostType.php:45
207
- msgid "Slideshows"
208
- msgstr "Slideshows"
209
-
210
- #: classes/SlideshowPluginPostType.php:46
211
- #: views/SlideshowPluginWidget/form.php:7
212
- msgid "Slideshow"
213
- msgstr "Slideshow"
214
-
215
- #: classes/SlideshowPluginPostType.php:47
216
- msgid "Add New Slideshow"
217
- msgstr "Nieuwe Slideshow Toevoegen"
218
-
219
- #: classes/SlideshowPluginPostType.php:48
220
- msgid "Edit slideshow"
221
- msgstr "Slideshow bewerken"
222
-
223
- #: classes/SlideshowPluginPostType.php:49
224
- msgid "New slideshow"
225
- msgstr "Nieuwe slideshow"
226
-
227
- #: classes/SlideshowPluginPostType.php:50
228
- msgid "View slideshow"
229
- msgstr "Slideshow bekijken"
230
-
231
- #: classes/SlideshowPluginPostType.php:51
232
- msgid "Search slideshows"
233
- msgstr "Slideshows zoeken"
234
-
235
- #: classes/SlideshowPluginPostType.php:52
236
- #: classes/SlideshowPluginPostType.php:53
237
- msgid "No slideshows found"
238
- msgstr "Geen slideshows gevonden"
239
-
240
- #: classes/SlideshowPluginPostType.php:98
241
- msgid "Information"
242
- msgstr "Informatie"
243
-
244
- #: classes/SlideshowPluginPostType.php:107
245
- msgid "Slides List"
246
- msgstr "Slides Lijst"
247
-
248
- #: classes/SlideshowPluginPostType.php:116
249
- msgid "Slideshow Style"
250
- msgstr "Slideshow Stijl"
251
-
252
- #: classes/SlideshowPluginPostType.php:125
253
- msgid "Slideshow Settings"
254
- msgstr "Slideshow Instellingen"
255
-
256
- #: classes/SlideshowPluginPostType.php:173
257
- msgid "Slideshow created"
258
- msgstr "Slideshow aangemaakt"
259
-
260
- #: classes/SlideshowPluginPostType.php:177
261
- msgid "Slideshow updated"
262
- msgstr "Slideshow bijgewerkt"
263
-
264
- #: classes/SlideshowPluginPostType.php:224
265
- #: classes/SlideshowPluginSlideInserter.php:238
266
- #: views/SlideshowPluginPostType/slides.php:2
267
- msgid "Insert"
268
- msgstr "Invoegen"
269
-
270
- #: classes/SlideshowPluginPostType.php:232
271
- msgid "Open all"
272
- msgstr "Open alle"
273
-
274
- #: classes/SlideshowPluginPostType.php:234
275
- msgid "Close all"
276
- msgstr "Sluit alle"
277
-
278
- #: classes/SlideshowPluginPostType.php:240
279
- #: views/SlideshowPluginPostType/slides.php:10
280
- msgid "Add slides to this slideshow by using one of the buttons above."
281
- msgstr "Voeg slides toe doormiddel van de bovenstaande knoppen."
282
-
283
- #: classes/SlideshowPluginPostType.php:320
284
- msgid "Duplicate"
285
- msgstr "Dupliceer"
286
-
287
- #: classes/SlideshowPluginPostType.php:371
288
- msgid "Copy"
289
- msgstr "Kopie"
290
-
291
- #: classes/SlideshowPluginShortcode.php:148
292
- msgid "No slideshow selected."
293
- msgstr "Geen slideshow geselecteerd."
294
-
295
- #: classes/SlideshowPluginSlideInserter.php:194
296
- msgid "More results loaded"
297
- msgstr "Extra resultaten geladen"
298
-
299
- #: classes/SlideshowPluginSlideInserter.php:249
300
- msgid "Load more results"
301
- msgstr "Meer resultaten laden"
302
-
303
- #: classes/SlideshowPluginSlideInserter.php:260
304
- msgid "No images were found, click here to upload some."
305
- msgstr "Geen afbeeldingen gevonden, klik hier om afbeeldingen te uploaden."
306
-
307
- #: classes/SlideshowPluginSlideInserter.php:332
308
- msgid "Are you sure you want to delete this slide?"
309
- msgstr "Weet je zeker dat je deze slide wilt verwijderen?"
310
-
311
- #: classes/SlideshowPluginSlideInserter.php:333
312
- msgid "Insert image slide"
313
- msgstr "Afbeeldingsslide invoegen"
314
-
315
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:523
316
- msgid "Maximum width. When maximum width is 0, maximum width is ignored"
317
- msgstr ""
318
- "Maximum breedte. Wanneer maximum breedte 0 is, zal deze worden genegeerd"
319
-
320
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
321
- msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
322
- msgstr "http://nl.wikipedia.org/wiki/Beeldverhouding"
323
-
324
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
325
- msgid "More info"
326
- msgstr "Meer informatie"
327
-
328
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
329
- #, php-format
330
- msgid ""
331
- "Proportional relationship%s between slideshow's width and height (width:"
332
- "height)"
333
- msgstr ""
334
- "Proportionele verhouding%s tussen de slideshow's breedte en hoogte (breedte:"
335
- "hoogte)"
336
-
337
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:525
338
- msgid "Slideshow's height"
339
- msgstr "Slideshow's hoogte"
340
-
341
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:526
342
- msgid "Image behaviour"
343
- msgstr "Gedrag van afbeeldingen"
344
-
345
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:527
346
- msgid "Shrink slideshow's height when width shrinks"
347
- msgstr "Maak de slideshow's hoogte kleiner wanneer de breedte kleiner wordt"
348
-
349
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:528
350
- msgid ""
351
- "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
352
- msgstr ""
353
- "Gebruik responsiviteit (Maak slideshow smaller wanneer de pagina smaller "
354
- "wordt)"
355
-
356
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:530
357
- msgid "Hide description box, pop up when mouse hovers over"
358
- msgstr ""
359
- "Verbeg beschrijving, toon deze alleen wanneer de muisaanwijzer boven de "
360
- "slideshow is"
361
-
362
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:533
363
- msgid "Pause slideshow when mouse hovers over"
364
- msgstr "Pauzeer slideshow wanneer de muisaanwijzer boven de slideshow is"
365
-
366
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:534
367
- msgid "Activate navigation buttons"
368
- msgstr "Toon navigatie knoppen"
369
-
370
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:535
371
- msgid "Hide navigation buttons, show when mouse hovers over"
372
- msgstr ""
373
- "Verberg navigatieknoppen, toon deze aleen wanneer de muisaanwijzer boven de "
374
- "slideshow is"
375
-
376
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:536
377
- msgid "Activate pagination"
378
- msgstr "Toon paginering"
379
-
380
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:537
381
- msgid "Hide pagination, show when mouse hovers over"
382
- msgstr ""
383
- "Verberg paginering, toon deze alleen wanneer de muisaanwijzer boven de "
384
- "slideshow is"
385
-
386
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:538
387
- msgid "Activate control panel (play and pause button)"
388
- msgstr "Toon controlepaneel (speel en pause knop)"
389
-
390
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:539
391
- msgid "Hide control panel, show when mouse hovers over"
392
- msgstr ""
393
- "Verberg controlepaneel, toon deze alleen wanneer de muisaanwijzer boven de "
394
- "slideshow is"
395
-
396
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:540
397
- msgid "Wait until the next slide has loaded before showing it"
398
- msgstr "Wacht tot de volgende slide is geladen, voor het tonen ervan"
399
-
400
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:541
401
- msgid "Show a loading icon until the first slide appears"
402
- msgstr ""
403
- "Toon een icoon dat aanduidt dat de slideshow bezig is met laden, voordat de "
404
- "eerste slide wordt getoond"
405
-
406
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:542
407
- msgid "Randomize slides"
408
- msgstr "Toon slides in willekeurige volgorde"
409
-
410
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:543
411
- #, php-format
412
- msgid "Avoid content filter (disable if '%s' is shown)"
413
- msgstr "Content filter omzeilen (uitschakelen als '%s' wordt getoond)"
414
-
415
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
416
- msgid "Slide Left"
417
- msgstr "Schuif Links"
418
-
419
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
420
- msgid "Slide Right"
421
- msgstr "Schuif Rechts"
422
-
423
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
424
- msgid "Slide Up"
425
- msgstr "Schuif Omhoog"
426
-
427
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
428
- msgid "Slide Down"
429
- msgstr "Schuif Omlaag"
430
-
431
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
432
- msgid "Direct Fade"
433
- msgstr "Rechtstreekse Fade"
434
-
435
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
436
- msgid "Random Animation"
437
- msgstr "Willekeurige Animatie"
438
-
439
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
440
- msgid "Natural and centered"
441
- msgstr "Natuurlijk en gecentreerd"
442
-
443
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
444
- msgid "Crop to fit"
445
- msgstr "Passend maken door bijknippen"
446
-
447
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
448
- msgid "Stretch to fit"
449
- msgstr "Passend maken door oprekken"
450
-
451
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:569
452
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:570
453
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:571
454
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:572
455
- msgid "Miscellaneous"
456
- msgstr "Overige"
457
-
458
- #: classes/SlideshowPluginWidget.php:23
459
- msgid "Enables you to show your slideshows in the widget area of your website."
460
- msgstr ""
461
- "Maakt het mogelijk je slideshows te bijken in het widget gebied van je "
462
- "website."
463
-
464
- #: classes/SlideshowPluginWidget.php:29
465
- msgid "Slideshow Widget"
466
- msgstr "Slideshow Widget"
467
-
468
- #: views/SlideshowPlugin/slideshow.php:23
469
- msgid "Play"
470
- msgstr "Afspelen"
471
-
472
- #: views/SlideshowPlugin/slideshow.php:23
473
- msgid "Pause"
474
- msgstr "Pauzeren"
475
-
476
- #: views/SlideshowPlugin/slideshow.php:25
477
- msgid "Previous"
478
- msgstr "Vorige"
479
-
480
- #: views/SlideshowPlugin/slideshow.php:26
481
- msgid "Next"
482
- msgstr "Volgende"
483
-
484
- #: views/SlideshowPlugin/slideshow.php:28
485
- msgid "Go to slide"
486
- msgstr "Ga naar slide"
487
-
488
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:46
489
- msgid "Default stylesheets"
490
- msgstr "Standaard stijlen"
491
-
492
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:60
493
- msgid "Create a new custom style from this style"
494
- msgstr "Maak een nieuwe aangepaste stijl uit deze stijl"
495
-
496
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:62
497
- msgid "Customize"
498
- msgstr "Aanpassen"
499
-
500
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:76
501
- msgid "Custom stylesheets"
502
- msgstr "Aangepaste stijl"
503
-
504
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:89
505
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:172
506
- msgid "Edit this style"
507
- msgstr "Bewerk deze stijl"
508
-
509
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:91
510
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:174
511
- #: views/SlideshowPluginPostType/slides.php:138
512
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:112
513
- msgid "Edit"
514
- msgstr "Bewerken"
515
-
516
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:98
517
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:181
518
- msgid "Delete this style"
519
- msgstr "Verwijder stijl"
520
-
521
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:100
522
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:183
523
- msgid "Delete"
524
- msgstr "Verwijderen"
525
-
526
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:110
527
- msgid "Click 'Customize' to create a new custom stylesheet."
528
- msgstr "Klik op 'Aanpassen' om een nieuwe aangepaste stijl te maken."
529
-
530
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:130
531
- msgid "Select a stylesheet to start customizing it."
532
- msgstr "Kies een stijl om deze aan te passen."
533
-
534
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:139
535
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:192
536
- #: views/SlideshowPluginPostType/slides.php:59
537
- #: views/SlideshowPluginPostType/slides.php:144
538
- #: views/SlideshowPluginPostType/slides.php:196
539
- #: views/SlideshowPluginPostType/slides.php:264
540
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:120
541
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:18
542
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:150
543
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:80
544
- #: views/SlideshowPluginWidget/form.php:2
545
- msgid "Title"
546
- msgstr "Titel"
547
-
548
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:148
549
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:200
550
- msgid "Style"
551
- msgstr "Stijl"
552
-
553
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:11
554
- msgid "Note"
555
- msgstr "Opgelet"
556
-
557
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:18
558
- #, php-format
559
- msgid ""
560
- "The settings set on this page apply only to newly created slideshows and "
561
- "therefore do not alter any existing ones. To adapt a slideshow's settings, "
562
- "%sclick here.%s"
563
- msgstr ""
564
- "De instellingen op deze pagina zijn alleen van toepassing op slideshows die "
565
- "nieuw worden aangemaakt en niet op de slideshows die reeds bestaan. Om een "
566
- "slideshow's instellingen te wijzigen, %sklik hier.%s"
567
-
568
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:29
569
- #: views/SlideshowPluginGeneralSettings/general-settings.php:15
570
- msgid "Default Slideshow Settings"
571
- msgstr "Standaard Slideshow Instellingen"
572
-
573
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:41
574
- #: views/SlideshowPluginPostType/settings.php:12
575
- msgid "settings"
576
- msgstr "instellingen"
577
-
578
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:77
579
- msgid "Default Slideshow Stylesheet"
580
- msgstr "Standaard Slideshow Stijl"
581
-
582
- #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:11
583
- msgid "Add slideshows"
584
- msgstr "Slideshows toevoegen"
585
-
586
- #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:12
587
- msgid "Edit slideshows"
588
- msgstr "Slideshows bewerken"
589
-
590
- #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:13
591
- msgid "Delete slideshows"
592
- msgstr "Slideshows verwijderen"
593
-
594
- #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:20
595
- msgid "User Capabilities"
596
- msgstr "Gebruikersrechten"
597
-
598
- #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:22
599
- msgid "Select the user roles that will able to perform certain actions."
600
- msgstr "Kies de gebruikersrol waaraan je bepaalde rechten wilt verlenen."
601
-
602
- #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:38
603
- msgid "Untitled role"
604
- msgstr "Naamloze gebruikersfunctie"
605
-
606
- #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:65
607
- msgid "Settings"
608
- msgstr "instellingen"
609
-
610
- #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:69
611
- msgid "Stylesheet location"
612
- msgstr "Stylesheet locatie"
613
-
614
- #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:72
615
- msgid "top"
616
- msgstr "boven"
617
-
618
- #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:73
619
- msgid "bottom"
620
- msgstr "onder"
621
-
622
- #: views/SlideshowPluginGeneralSettings/general-settings.php:16
623
- msgid "Custom Styles"
624
- msgstr "Aangepaste Stijlen"
625
-
626
- #: views/SlideshowPluginPostType/information.php:1
627
- msgid ""
628
- "To use this slideshow in your website either add this piece of shortcode to "
629
- "your posts or pages"
630
- msgstr ""
631
- "Om deze slideshow op je website te gebruiken voeg je of dit stukje shortcode "
632
- "aan je pagina of post toe"
633
-
634
- #: views/SlideshowPluginPostType/information.php:5
635
- msgid ""
636
- "Or add this piece of code to where ever in your website you want to place "
637
- "the slideshow"
638
- msgstr ""
639
- "Of je voegt dit stuk code toe aan je broncode op de plaats waar je wilt dat "
640
- "de slideshow te zien is"
641
-
642
- #: views/SlideshowPluginPostType/information.php:9
643
- #, php-format
644
- msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
645
- msgstr ""
646
- "Ook kan je naar de %swidget pagina%s toegaan, om de slideshow te tonen als "
647
- "widget."
648
-
649
- #: views/SlideshowPluginPostType/settings.php:26
650
- #: views/SlideshowPluginPostType/style-settings.php:11
651
- msgid "Default"
652
- msgstr "Standaard"
653
-
654
- #: views/SlideshowPluginPostType/slides.php:54
655
- #: views/SlideshowPluginPostType/slides.php:191
656
- #: views/SlideshowPluginSlideInserter/insert-text-button.php:2
657
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:9
658
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:69
659
- msgid "Text slide"
660
- msgstr "Tekst slide"
661
-
662
- #: views/SlideshowPluginPostType/slides.php:61
663
- #: views/SlideshowPluginPostType/slides.php:150
664
- #: views/SlideshowPluginPostType/slides.php:198
665
- #: views/SlideshowPluginPostType/slides.php:270
666
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:135
667
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:33
668
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:165
669
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:95
670
- msgid "Description"
671
- msgstr "Beschrijving"
672
-
673
- #: views/SlideshowPluginPostType/slides.php:63
674
- #: views/SlideshowPluginPostType/slides.php:200
675
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:51
676
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:113
677
- msgid "Background color"
678
- msgstr "Achtergrond kleur"
679
-
680
- #: views/SlideshowPluginPostType/slides.php:68
681
- #: views/SlideshowPluginPostType/slides.php:155
682
- #: views/SlideshowPluginPostType/slides.php:205
683
- #: views/SlideshowPluginPostType/slides.php:275
684
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:150
685
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:59
686
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:180
687
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:121
688
- msgid "URL"
689
- msgstr "URL"
690
-
691
- #: views/SlideshowPluginPostType/slides.php:70
692
- #: views/SlideshowPluginPostType/slides.php:157
693
- #: views/SlideshowPluginPostType/slides.php:207
694
- #: views/SlideshowPluginPostType/slides.php:277
695
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:153
696
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:62
697
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:183
698
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:124
699
- msgid "Open URL in"
700
- msgstr "Open URL in"
701
-
702
- #: views/SlideshowPluginPostType/slides.php:72
703
- #: views/SlideshowPluginPostType/slides.php:159
704
- #: views/SlideshowPluginPostType/slides.php:209
705
- #: views/SlideshowPluginPostType/slides.php:279
706
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:155
707
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:64
708
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:185
709
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:126
710
- msgid "Same window"
711
- msgstr "Zelfde scherm"
712
-
713
- #: views/SlideshowPluginPostType/slides.php:73
714
- #: views/SlideshowPluginPostType/slides.php:160
715
- #: views/SlideshowPluginPostType/slides.php:210
716
- #: views/SlideshowPluginPostType/slides.php:280
717
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:156
718
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:65
719
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:186
720
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:127
721
- msgid "New window"
722
- msgstr "Nieuw scherm"
723
-
724
- #: views/SlideshowPluginPostType/slides.php:90
725
- #: views/SlideshowPluginPostType/slides.php:230
726
- #: views/SlideshowPluginSlideInserter/insert-video-button.php:2
727
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:94
728
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:26
729
- msgid "Video slide"
730
- msgstr "Video slide"
731
-
732
- #: views/SlideshowPluginPostType/slides.php:95
733
- #: views/SlideshowPluginPostType/slides.php:235
734
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:103
735
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:35
736
- msgid "Youtube Video ID"
737
- msgstr "Youtube Video ID"
738
-
739
- #: views/SlideshowPluginPostType/slides.php:133
740
- #: views/SlideshowPluginPostType/slides.php:255
741
- #: views/SlideshowPluginSlideInserter/insert-image-button.php:2
742
- #: views/SlideshowPluginSlideInserter/insert-image-button.php:4
743
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:101
744
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:135
745
- msgid "Image slide"
746
- msgstr "Afbeeldingsslide"
747
-
748
- #: views/SlideshowPluginPostType/slides.php:171
749
- msgid ""
750
- "An error occurred while loading this slide, and it will not be present in "
751
- "the slideshow"
752
- msgstr ""
753
- "Een fout is ontstaan tijdens het laden van deze slide, de slide zal niet te "
754
- "bekijken zijn in je slideshow"
755
-
756
- #: views/SlideshowPluginPostType/slides.php:177
757
- #: views/SlideshowPluginPostType/slides.php:218
758
- #: views/SlideshowPluginPostType/slides.php:243
759
- #: views/SlideshowPluginPostType/slides.php:289
760
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:174
761
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:76
762
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:117
763
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:203
764
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:138
765
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:49
766
- msgid "Delete slide"
767
- msgstr "Verwijder slide"
768
-
769
- #: views/SlideshowPluginPostType/style-settings.php:22
770
- #, php-format
771
- msgid "Custom styles can be created and customized %shere%s."
772
- msgstr "Aangepaste stijlen kunnen %shier%s worden aangemaakt en aangepast."
773
-
774
- #: views/SlideshowPluginPostType/support-plugin.php:3
775
- msgid "Help to keep this plugin free!"
776
- msgstr "Help mee om deze plugin gratis te houden!"
777
-
778
- #: views/SlideshowPluginPostType/support-plugin.php:6
779
- msgid ""
780
- "In order to keep you provided with the newest features, updates and bug "
781
- "fixes, a lot of motivation is required. Therefore I'm kindly asking you to "
782
- "consider making a small donation to the plugin or rating it as 5-stars on "
783
- "Wordpress.org. Thank you in advance!"
784
- msgstr ""
785
- "Om je te kunnen voorzien van de nieuwste functionaliteiten, updates en "
786
- "foutoplossingen, is een hoop motivatie nodig. Ik zou je daarom willen vragen "
787
- "een kleine donatie aan deze plugin te willen overwegen, of de plugin een "
788
- "goede beoordeling te geven op WordPress.org. Alvast bedankt!"
789
-
790
- #: views/SlideshowPluginPostType/support-plugin.php:15
791
- msgid "Rate on Wordpress.org"
792
- msgstr "Geef een waardering op Wordpress.org"
793
-
794
- #: views/SlideshowPluginPostType/support-plugin.php:24
795
- msgid "Frequently Asked Questions (FAQ)"
796
- msgstr "Veelgestelde Vragen (FAQ)"
797
-
798
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
799
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
800
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
801
- msgid "Insert a Slideshow"
802
- msgstr "Slideshow invoegen"
803
-
804
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
805
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
806
- msgid "Insert Slideshow"
807
- msgstr "Slideshow invoegen"
808
-
809
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
810
- msgid "Select a slideshow"
811
- msgstr "Selecteer een slideshow"
812
-
813
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
814
- #: views/SlideshowPluginWidget/form.php:12
815
- msgid "Untitled slideshow"
816
- msgstr "Naamloze slideshow"
817
-
818
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
819
- msgid "Cancel"
820
- msgstr "Annuleren"
821
-
822
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
823
- #, php-format
824
- msgid ""
825
- "It seems you haven't created any slideshows yet. %sYou can create a "
826
- "slideshow here!%s"
827
- msgstr ""
828
- "Het ziet er naar uit dat je nog geen slideshows hebt gemaakt. %sHier kan je "
829
- "een slideshow maken!%s"
830
-
831
- #: views/SlideshowPluginSlideInserter/search-popup.php:6
832
- msgid "Search"
833
- msgstr "Zoek"
834
-
835
- #: views/SlideshowPluginSlideInserter/search-popup.php:7
836
- msgid "Search images by title or ID"
837
- msgstr "Zoek afbeeldingen op titel of ID"
838
-
839
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:90
840
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:4
841
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:89
842
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:130
843
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:58
844
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:21
845
- msgid "Click to toggle"
846
- msgstr "Klik om te wisselen"
847
-
848
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:160
849
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:69
850
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:190
851
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:131
852
- msgid "Don't let search engines follow link"
853
- msgstr "Laat zoekmachines deze link niet volgen"
854
-
855
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:168
856
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:197
857
- msgid "Alternative text"
858
- msgstr "Alterntieve tekst"
859
-
860
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:48
861
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:110
862
- msgid "Text color"
863
- msgstr "Tekst kleur"
864
-
865
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:53
866
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:115
867
- msgid "(Leave empty for a transparent background)"
868
- msgstr "(Laat leeg voor een transparante achtergrond)"
869
-
870
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:110
871
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:42
872
- msgid "Show related videos"
873
- msgstr "Toon gerelateerde videos"
874
-
875
- #: views/SlideshowPluginUpload/upload-button.php:1
876
- msgid "Upload/Manage Images"
877
- msgstr "Upload/Beheer Afbeeldingen"
878
-
879
- #: views/SlideshowPluginWidget/form.php:9
880
- msgid "Random Slideshow"
881
- msgstr "Willekeurige Slideshow"
882
-
883
- #~ msgid "Fit image into slide (Stretch image)"
884
- #~ msgstr "Pas afbeelding in de slideshow (Afbeedling uitrekken)"
885
-
886
- #~ msgid "Head (top)"
887
- #~ msgstr "Head (boven)"
888
-
889
- #~ msgid "Footer (bottom)"
890
- #~ msgstr "Footer (onder)"
891
-
892
- #~ msgid "Questions / Suggestions"
893
- #~ msgstr "Vragen / Opmerkingen"
894
-
895
- #~ msgid ""
896
- #~ "Shrink slideshow's height when width shrinks (Fixed height can be defined "
897
- #~ "when setting this value to 'No')"
898
- #~ msgstr ""
899
- #~ "Krimp de slideshow's hoogte wanneer de breedte kleiner wordt "
900
- #~ "(Vastgestelde hoogte kan worden ingesteld als deze instelling op 'Nee' "
901
- #~ "staat)"
902
-
903
- #, fuzzy
904
- #~ msgid "Editor"
905
- #~ msgstr "Bewerken"
906
-
907
- #~ msgid "light"
908
- #~ msgstr "licht"
909
-
910
- #~ msgid "slide"
911
- #~ msgstr "slide"
912
-
913
- #~ msgid "Custom style editor (Does not work with a Strict Doctype)"
914
- #~ msgstr "Aangepaste stijl bewerker (Werkt niet met een Strict Doctype)"
915
-
916
- #~ msgid "Has the Slideshow plugin helped you?"
917
- #~ msgstr "Heeft de Slideshow plugin je geholpen?"
918
-
919
- #~ msgid "Help it back!"
920
- #~ msgstr "Help hem terug!"
921
-
922
- #~ msgid ""
923
- #~ "If this plugin has filled you with happiness, please support the upkeep "
924
- #~ "of the plugin by rating it on Wordpress, posting a suggestion for "
925
- #~ "improvement on the support forum, or making a donation."
926
- #~ msgstr ""
927
- #~ "Als deze plugin je met blijdschap heeft vervuld, zou ik het enorm "
928
- #~ "waarderen als je de plugin wilt beoordelen op Wordpress, een suggestie "
929
- #~ "wilt maken voor verbetering, of een donatie doen wilt."
930
-
931
- #~ msgid "Click on an image to insert it as a slide"
932
- #~ msgstr "Klik op een plaatje om deze in te voegen als slide"
933
-
934
- #~ msgid "Width of the slideshow"
935
- #~ msgstr "Breedte van de slideshow"
936
-
937
- #~ msgid "Defaults to parent's width."
938
- #~ msgstr "Standaard ingesteld op de breedte van het bovenliggende element."
939
-
940
- #~ msgid "Send user to image URL on click"
941
- #~ msgstr ""
942
- #~ "Wanner de gebruiker op de afbeelding klikt, stuur hem naar de URL van het "
943
- #~ "plaatje"
944
-
945
- #~ msgid "Leave any field open to use default value."
946
- #~ msgstr "Een veld dat open wordt gelaten neemt de standaardwaarde aan."
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Slideshow Plugin\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-23 17:44+0100\n"
6
+ "PO-Revision-Date: 2015-04-23 17: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"
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.7.6\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: classes/SlideshowPluginGeneralSettings.php:82
19
+ #: classes/SlideshowPluginGeneralSettings.php:83
20
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:14
21
+ msgid "General Settings"
22
+ msgstr "Algemene Instellingen"
23
+
24
+ #: classes/SlideshowPluginGeneralSettings.php:150
25
+ msgid "New"
26
+ msgstr "Nieuw"
27
+
28
+ #: classes/SlideshowPluginGeneralSettings.php:151
29
+ msgid "Are you sure you want to delete this custom style?"
30
+ msgstr "Weet je zeker dat je deze aangepaste stijl wilt verwijderen?"
31
+
32
+ #: classes/SlideshowPluginGeneralSettings.php:196
33
+ #: classes/SlideshowPluginInstaller.php:803
34
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:6
35
+ msgid "Light"
36
+ msgstr "Licht"
37
+
38
+ #: classes/SlideshowPluginGeneralSettings.php:197
39
+ #: classes/SlideshowPluginInstaller.php:803
40
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:7
41
+ msgid "Dark"
42
+ msgstr "Donker"
43
+
44
+ #: classes/SlideshowPluginGeneralSettings.php:353
45
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:57
46
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:143
47
+ msgid "Untitled"
48
+ msgstr "Naamloos"
49
+
50
+ #: classes/SlideshowPluginInstaller.php:800
51
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:472
52
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:111
53
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:43
54
+ msgid "Yes"
55
+ msgstr "Ja"
56
+
57
+ #: classes/SlideshowPluginInstaller.php:801
58
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:473
59
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:112
60
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:44
61
+ msgid "No"
62
+ msgstr "Nee"
63
+
64
+ #: classes/SlideshowPluginInstaller.php:803
65
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:610
66
+ msgid "The style used for this slideshow"
67
+ msgstr "De stijl te gebruiken voor deze slideshow"
68
+
69
+ #: classes/SlideshowPluginInstaller.php:803
70
+ msgid "Custom"
71
+ msgstr "Aangepast"
72
+
73
+ #: classes/SlideshowPluginInstaller.php:804
74
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:126
75
+ msgid "Custom style editor"
76
+ msgstr "Aangepaste stijl bewerker"
77
+
78
+ #: classes/SlideshowPluginInstaller.php:805
79
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:518
80
+ msgid "Animation used for transition between slides"
81
+ msgstr "Animatie tussen het wisselen van de slides"
82
+
83
+ #: classes/SlideshowPluginInstaller.php:805
84
+ msgid "Slide"
85
+ msgstr "Slide"
86
+
87
+ #: classes/SlideshowPluginInstaller.php:805
88
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
89
+ msgid "Fade"
90
+ msgstr "Fade"
91
+
92
+ #: classes/SlideshowPluginInstaller.php:805
93
+ #: classes/SlideshowPluginInstaller.php:806
94
+ #: classes/SlideshowPluginInstaller.php:807
95
+ #: classes/SlideshowPluginInstaller.php:808
96
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
97
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:548
98
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:549
99
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:550
100
+ msgid "Animation"
101
+ msgstr "Animatie"
102
+
103
+ #: classes/SlideshowPluginInstaller.php:806
104
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:519
105
+ msgid "Number of seconds the slide takes to slide in"
106
+ msgstr ""
107
+ "Aantal seconden dat de animatie van het inschuiven van de volgende slide "
108
+ "duurt"
109
+
110
+ #: classes/SlideshowPluginInstaller.php:807
111
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:520
112
+ msgid "Number of seconds the description takes to slide in"
113
+ msgstr "Aantal seconden dat het inschuiven van de beschrijving duurt"
114
+
115
+ #: classes/SlideshowPluginInstaller.php:808
116
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:521
117
+ msgid "Seconds between changing slides"
118
+ msgstr "Seconden tussen het wisselen van de slides"
119
+
120
+ #: classes/SlideshowPluginInstaller.php:809
121
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:522
122
+ msgid "Number of slides to fit into one slide"
123
+ msgstr "Aantal slides om in een slide te plaatsen"
124
+
125
+ #: classes/SlideshowPluginInstaller.php:809
126
+ #: classes/SlideshowPluginInstaller.php:810
127
+ #: classes/SlideshowPluginInstaller.php:811
128
+ #: classes/SlideshowPluginInstaller.php:812
129
+ #: classes/SlideshowPluginInstaller.php:813
130
+ #: classes/SlideshowPluginInstaller.php:814
131
+ #: classes/SlideshowPluginInstaller.php:815
132
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:551
133
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:552
134
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:553
135
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:554
136
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
137
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:556
138
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:557
139
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:558
140
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:559
141
+ msgid "Display"
142
+ msgstr "Weergave"
143
+
144
+ #: classes/SlideshowPluginInstaller.php:810
145
+ msgid "Width of the slideshow, set to parent&#39;s width on 0"
146
+ msgstr ""
147
+ "Breedte van de slideshow, past zich aan op bovenliggende element wanneer 0"
148
+
149
+ #: classes/SlideshowPluginInstaller.php:811
150
+ msgid "Height of the slideshow"
151
+ msgstr "Hoogte van de slideshow"
152
+
153
+ #: classes/SlideshowPluginInstaller.php:812
154
+ msgid "Height of the description boxes"
155
+ msgstr "Hoogte van de beschrijvingen"
156
+
157
+ #: classes/SlideshowPluginInstaller.php:813
158
+ msgid "Fit image into slide (stretching it)"
159
+ msgstr "Pas afbeelding in de slideshow (oprekken)"
160
+
161
+ #: classes/SlideshowPluginInstaller.php:814
162
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:529
163
+ msgid "Show title and description"
164
+ msgstr "Toon titel en beschrijving"
165
+
166
+ #: classes/SlideshowPluginInstaller.php:815
167
+ msgid "Hide description box, it will pop up when a mouse hovers over the slide"
168
+ msgstr ""
169
+ "Verberg beschrijving, toon deze alleen wanneer de muisaanwijzer boven de "
170
+ "slide is"
171
+
172
+ #: classes/SlideshowPluginInstaller.php:816
173
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:531
174
+ msgid "Automatically slide to the next slide"
175
+ msgstr "Automatisch naar de volgende slide gaan"
176
+
177
+ #: classes/SlideshowPluginInstaller.php:816
178
+ #: classes/SlideshowPluginInstaller.php:817
179
+ #: classes/SlideshowPluginInstaller.php:818
180
+ #: classes/SlideshowPluginInstaller.php:819
181
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:560
182
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:561
183
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:562
184
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:563
185
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:564
186
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:565
187
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:566
188
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:567
189
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:568
190
+ msgid "Control"
191
+ msgstr "Controle"
192
+
193
+ #: classes/SlideshowPluginInstaller.php:817
194
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:532
195
+ msgid "Return to the beginning of the slideshow after last slide"
196
+ msgstr "Keer terug naar het begin van de slideshow na de laatste slide."
197
+
198
+ #: classes/SlideshowPluginInstaller.php:818
199
+ msgid "Activate buttons (so the user can scroll through the slides)"
200
+ msgstr "Knoppen activeren (zodat de gebruiker door de slides kan scrollen)"
201
+
202
+ #: classes/SlideshowPluginInstaller.php:819
203
+ msgid "Show control panel (play and pause button)"
204
+ msgstr "Toon controlepaneel (speel en pause knop)"
205
+
206
+ #: classes/SlideshowPluginPostType.php:45
207
+ msgid "Slideshows"
208
+ msgstr "Slideshows"
209
+
210
+ #: classes/SlideshowPluginPostType.php:46
211
+ #: views/SlideshowPluginWidget/form.php:7
212
+ msgid "Slideshow"
213
+ msgstr "Slideshow"
214
+
215
+ #: classes/SlideshowPluginPostType.php:47
216
+ msgid "Add New Slideshow"
217
+ msgstr "Nieuwe Slideshow Toevoegen"
218
+
219
+ #: classes/SlideshowPluginPostType.php:48
220
+ msgid "Edit slideshow"
221
+ msgstr "Slideshow bewerken"
222
+
223
+ #: classes/SlideshowPluginPostType.php:49
224
+ msgid "New slideshow"
225
+ msgstr "Nieuwe slideshow"
226
+
227
+ #: classes/SlideshowPluginPostType.php:50
228
+ msgid "View slideshow"
229
+ msgstr "Slideshow bekijken"
230
+
231
+ #: classes/SlideshowPluginPostType.php:51
232
+ msgid "Search slideshows"
233
+ msgstr "Slideshows zoeken"
234
+
235
+ #: classes/SlideshowPluginPostType.php:52
236
+ #: classes/SlideshowPluginPostType.php:53
237
+ msgid "No slideshows found"
238
+ msgstr "Geen slideshows gevonden"
239
+
240
+ #: classes/SlideshowPluginPostType.php:98
241
+ msgid "Information"
242
+ msgstr "Informatie"
243
+
244
+ #: classes/SlideshowPluginPostType.php:107
245
+ msgid "Slides List"
246
+ msgstr "Slides Lijst"
247
+
248
+ #: classes/SlideshowPluginPostType.php:116
249
+ msgid "Slideshow Style"
250
+ msgstr "Slideshow Stijl"
251
+
252
+ #: classes/SlideshowPluginPostType.php:125
253
+ msgid "Slideshow Settings"
254
+ msgstr "Slideshow Instellingen"
255
+
256
+ #: classes/SlideshowPluginPostType.php:173
257
+ msgid "Slideshow created"
258
+ msgstr "Slideshow aangemaakt"
259
+
260
+ #: classes/SlideshowPluginPostType.php:177
261
+ msgid "Slideshow updated"
262
+ msgstr "Slideshow bijgewerkt"
263
+
264
+ #: classes/SlideshowPluginPostType.php:224
265
+ #: classes/SlideshowPluginSlideInserter.php:238
266
+ #: views/SlideshowPluginPostType/slides.php:2
267
+ msgid "Insert"
268
+ msgstr "Invoegen"
269
+
270
+ #: classes/SlideshowPluginPostType.php:232
271
+ msgid "Open all"
272
+ msgstr "Open alle"
273
+
274
+ #: classes/SlideshowPluginPostType.php:234
275
+ msgid "Close all"
276
+ msgstr "Sluit alle"
277
+
278
+ #: classes/SlideshowPluginPostType.php:240
279
+ #: views/SlideshowPluginPostType/slides.php:10
280
+ msgid "Add slides to this slideshow by using one of the buttons above."
281
+ msgstr "Voeg slides toe doormiddel van de bovenstaande knoppen."
282
+
283
+ #: classes/SlideshowPluginPostType.php:320
284
+ msgid "Duplicate"
285
+ msgstr "Dupliceer"
286
+
287
+ #: classes/SlideshowPluginPostType.php:371
288
+ msgid "Copy"
289
+ msgstr "Kopie"
290
+
291
+ #: classes/SlideshowPluginShortcode.php:148
292
+ msgid "No slideshow selected."
293
+ msgstr "Geen slideshow geselecteerd."
294
+
295
+ #: classes/SlideshowPluginSlideInserter.php:194
296
+ msgid "More results loaded"
297
+ msgstr "Extra resultaten geladen"
298
+
299
+ #: classes/SlideshowPluginSlideInserter.php:249
300
+ msgid "Load more results"
301
+ msgstr "Meer resultaten laden"
302
+
303
+ #: classes/SlideshowPluginSlideInserter.php:260
304
+ msgid "No images were found, click here to upload some."
305
+ msgstr "Geen afbeeldingen gevonden, klik hier om afbeeldingen te uploaden."
306
+
307
+ #: classes/SlideshowPluginSlideInserter.php:332
308
+ msgid "Are you sure you want to delete this slide?"
309
+ msgstr "Weet je zeker dat je deze slide wilt verwijderen?"
310
+
311
+ #: classes/SlideshowPluginSlideInserter.php:333
312
+ msgid "Insert image slide"
313
+ msgstr "Afbeeldingsslide invoegen"
314
+
315
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:523
316
+ msgid "Maximum width. When maximum width is 0, maximum width is ignored"
317
+ msgstr ""
318
+ "Maximum breedte. Wanneer maximum breedte 0 is, zal deze worden genegeerd"
319
+
320
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
321
+ msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
322
+ msgstr "http://nl.wikipedia.org/wiki/Beeldverhouding"
323
+
324
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
325
+ msgid "More info"
326
+ msgstr "Meer informatie"
327
+
328
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
329
+ #, php-format
330
+ msgid ""
331
+ "Proportional relationship%s between slideshow's width and height (width:"
332
+ "height)"
333
+ msgstr ""
334
+ "Proportionele verhouding%s tussen de slideshow's breedte en hoogte (breedte:"
335
+ "hoogte)"
336
+
337
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:525
338
+ msgid "Slideshow's height"
339
+ msgstr "Slideshow's hoogte"
340
+
341
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:526
342
+ msgid "Image behaviour"
343
+ msgstr "Gedrag van afbeeldingen"
344
+
345
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:527
346
+ msgid "Shrink slideshow's height when width shrinks"
347
+ msgstr "Maak de slideshow's hoogte kleiner wanneer de breedte kleiner wordt"
348
+
349
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:528
350
+ msgid ""
351
+ "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
352
+ msgstr ""
353
+ "Gebruik responsiviteit (Maak slideshow smaller wanneer de pagina smaller "
354
+ "wordt)"
355
+
356
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:530
357
+ msgid "Hide description box, pop up when mouse hovers over"
358
+ msgstr ""
359
+ "Verbeg beschrijving, toon deze alleen wanneer de muisaanwijzer boven de "
360
+ "slideshow is"
361
+
362
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:533
363
+ msgid "Pause slideshow when mouse hovers over"
364
+ msgstr "Pauzeer slideshow wanneer de muisaanwijzer boven de slideshow is"
365
+
366
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:534
367
+ msgid "Activate navigation buttons"
368
+ msgstr "Toon navigatie knoppen"
369
+
370
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:535
371
+ msgid "Hide navigation buttons, show when mouse hovers over"
372
+ msgstr ""
373
+ "Verberg navigatieknoppen, toon deze aleen wanneer de muisaanwijzer boven de "
374
+ "slideshow is"
375
+
376
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:536
377
+ msgid "Activate pagination"
378
+ msgstr "Toon paginering"
379
+
380
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:537
381
+ msgid "Hide pagination, show when mouse hovers over"
382
+ msgstr ""
383
+ "Verberg paginering, toon deze alleen wanneer de muisaanwijzer boven de "
384
+ "slideshow is"
385
+
386
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:538
387
+ msgid "Activate control panel (play and pause button)"
388
+ msgstr "Toon controlepaneel (speel en pause knop)"
389
+
390
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:539
391
+ msgid "Hide control panel, show when mouse hovers over"
392
+ msgstr ""
393
+ "Verberg controlepaneel, toon deze alleen wanneer de muisaanwijzer boven de "
394
+ "slideshow is"
395
+
396
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:540
397
+ msgid "Wait until the next slide has loaded before showing it"
398
+ msgstr "Wacht tot de volgende slide is geladen, voor het tonen ervan"
399
+
400
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:541
401
+ msgid "Show a loading icon until the first slide appears"
402
+ msgstr ""
403
+ "Toon een icoon dat aanduidt dat de slideshow bezig is met laden, voordat de "
404
+ "eerste slide wordt getoond"
405
+
406
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:542
407
+ msgid "Randomize slides"
408
+ msgstr "Toon slides in willekeurige volgorde"
409
+
410
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:543
411
+ #, php-format
412
+ msgid "Avoid content filter (disable if '%s' is shown)"
413
+ msgstr "Content filter omzeilen (uitschakelen als '%s' wordt getoond)"
414
+
415
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
416
+ msgid "Slide Left"
417
+ msgstr "Schuif Links"
418
+
419
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
420
+ msgid "Slide Right"
421
+ msgstr "Schuif Rechts"
422
+
423
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
424
+ msgid "Slide Up"
425
+ msgstr "Schuif Omhoog"
426
+
427
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
428
+ msgid "Slide Down"
429
+ msgstr "Schuif Omlaag"
430
+
431
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
432
+ msgid "Cross Fade"
433
+ msgstr "Rechtstreekse Fade"
434
+
435
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
436
+ msgid "Direct Fade"
437
+ msgstr "Transparante Fade"
438
+
439
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
440
+ msgid "Random Animation"
441
+ msgstr "Willekeurige Animatie"
442
+
443
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
444
+ msgid "Natural and centered"
445
+ msgstr "Natuurlijk en gecentreerd"
446
+
447
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
448
+ msgid "Crop to fit"
449
+ msgstr "Passend maken door bijknippen"
450
+
451
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
452
+ msgid "Stretch to fit"
453
+ msgstr "Passend maken door oprekken"
454
+
455
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:569
456
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:570
457
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:571
458
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:572
459
+ msgid "Miscellaneous"
460
+ msgstr "Overige"
461
+
462
+ #: classes/SlideshowPluginWidget.php:23
463
+ msgid "Enables you to show your slideshows in the widget area of your website."
464
+ msgstr ""
465
+ "Maakt het mogelijk je slideshows te bijken in het widget gebied van je "
466
+ "website."
467
+
468
+ #: classes/SlideshowPluginWidget.php:29
469
+ msgid "Slideshow Widget"
470
+ msgstr "Slideshow Widget"
471
+
472
+ #: views/SlideshowPlugin/slideshow.php:23
473
+ msgid "Play"
474
+ msgstr "Afspelen"
475
+
476
+ #: views/SlideshowPlugin/slideshow.php:23
477
+ msgid "Pause"
478
+ msgstr "Pauzeren"
479
+
480
+ #: views/SlideshowPlugin/slideshow.php:25
481
+ msgid "Previous"
482
+ msgstr "Vorige"
483
+
484
+ #: views/SlideshowPlugin/slideshow.php:26
485
+ msgid "Next"
486
+ msgstr "Volgende"
487
+
488
+ #: views/SlideshowPlugin/slideshow.php:28
489
+ msgid "Go to slide"
490
+ msgstr "Ga naar slide"
491
+
492
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:46
493
+ msgid "Default stylesheets"
494
+ msgstr "Standaard stijlen"
495
+
496
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:60
497
+ msgid "Create a new custom style from this style"
498
+ msgstr "Maak een nieuwe aangepaste stijl uit deze stijl"
499
+
500
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:62
501
+ msgid "Customize"
502
+ msgstr "Aanpassen"
503
+
504
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:76
505
+ msgid "Custom stylesheets"
506
+ msgstr "Aangepaste stijl"
507
+
508
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:89
509
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:172
510
+ msgid "Edit this style"
511
+ msgstr "Bewerk deze stijl"
512
+
513
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:91
514
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:174
515
+ #: views/SlideshowPluginPostType/slides.php:138
516
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:112
517
+ msgid "Edit"
518
+ msgstr "Bewerken"
519
+
520
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:98
521
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:181
522
+ msgid "Delete this style"
523
+ msgstr "Verwijder stijl"
524
+
525
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:100
526
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:183
527
+ msgid "Delete"
528
+ msgstr "Verwijderen"
529
+
530
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:110
531
+ msgid "Click 'Customize' to create a new custom stylesheet."
532
+ msgstr "Klik op 'Aanpassen' om een nieuwe aangepaste stijl te maken."
533
+
534
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:130
535
+ msgid "Select a stylesheet to start customizing it."
536
+ msgstr "Kies een stijl om deze aan te passen."
537
+
538
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:139
539
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:192
540
+ #: views/SlideshowPluginPostType/slides.php:59
541
+ #: views/SlideshowPluginPostType/slides.php:144
542
+ #: views/SlideshowPluginPostType/slides.php:196
543
+ #: views/SlideshowPluginPostType/slides.php:264
544
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:120
545
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:18
546
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:150
547
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:80
548
+ #: views/SlideshowPluginWidget/form.php:2
549
+ msgid "Title"
550
+ msgstr "Titel"
551
+
552
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:148
553
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:200
554
+ msgid "Style"
555
+ msgstr "Stijl"
556
+
557
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:11
558
+ msgid "Note"
559
+ msgstr "Opgelet"
560
+
561
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:18
562
+ #, php-format
563
+ msgid ""
564
+ "The settings set on this page apply only to newly created slideshows and "
565
+ "therefore do not alter any existing ones. To adapt a slideshow's settings, "
566
+ "%sclick here.%s"
567
+ msgstr ""
568
+ "De instellingen op deze pagina zijn alleen van toepassing op slideshows die "
569
+ "nieuw worden aangemaakt en niet op de slideshows die reeds bestaan. Om een "
570
+ "slideshow's instellingen te wijzigen, %sklik hier.%s"
571
+
572
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:29
573
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:15
574
+ msgid "Default Slideshow Settings"
575
+ msgstr "Standaard Slideshow Instellingen"
576
+
577
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:41
578
+ #: views/SlideshowPluginPostType/settings.php:12
579
+ msgid "settings"
580
+ msgstr "instellingen"
581
+
582
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:77
583
+ msgid "Default Slideshow Stylesheet"
584
+ msgstr "Standaard Slideshow Stijl"
585
+
586
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:11
587
+ msgid "Add slideshows"
588
+ msgstr "Slideshows toevoegen"
589
+
590
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:12
591
+ msgid "Edit slideshows"
592
+ msgstr "Slideshows bewerken"
593
+
594
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:13
595
+ msgid "Delete slideshows"
596
+ msgstr "Slideshows verwijderen"
597
+
598
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:20
599
+ msgid "User Capabilities"
600
+ msgstr "Gebruikersrechten"
601
+
602
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:22
603
+ msgid "Select the user roles that will able to perform certain actions."
604
+ msgstr "Kies de gebruikersrol waaraan je bepaalde rechten wilt verlenen."
605
+
606
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:38
607
+ msgid "Untitled role"
608
+ msgstr "Naamloze gebruikersfunctie"
609
+
610
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:65
611
+ msgid "Settings"
612
+ msgstr "instellingen"
613
+
614
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:69
615
+ msgid "Stylesheet location"
616
+ msgstr "Stylesheet locatie"
617
+
618
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:72
619
+ msgid "top"
620
+ msgstr "boven"
621
+
622
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:73
623
+ msgid "bottom"
624
+ msgstr "onder"
625
+
626
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:16
627
+ msgid "Custom Styles"
628
+ msgstr "Aangepaste Stijlen"
629
+
630
+ #: views/SlideshowPluginPostType/information.php:1
631
+ msgid ""
632
+ "To use this slideshow in your website either add this piece of shortcode to "
633
+ "your posts or pages"
634
+ msgstr ""
635
+ "Om deze slideshow op je website te gebruiken voeg je of dit stukje shortcode "
636
+ "aan je pagina of post toe"
637
+
638
+ #: views/SlideshowPluginPostType/information.php:5
639
+ msgid ""
640
+ "Or add this piece of code to where ever in your website you want to place "
641
+ "the slideshow"
642
+ msgstr ""
643
+ "Of je voegt dit stuk code toe aan je broncode op de plaats waar je wilt dat "
644
+ "de slideshow te zien is"
645
+
646
+ #: views/SlideshowPluginPostType/information.php:9
647
+ #, php-format
648
+ msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
649
+ msgstr ""
650
+ "Ook kan je naar de %swidget pagina%s toegaan, om de slideshow te tonen als "
651
+ "widget."
652
+
653
+ #: views/SlideshowPluginPostType/settings.php:26
654
+ #: views/SlideshowPluginPostType/style-settings.php:11
655
+ msgid "Default"
656
+ msgstr "Standaard"
657
+
658
+ #: views/SlideshowPluginPostType/slides.php:54
659
+ #: views/SlideshowPluginPostType/slides.php:191
660
+ #: views/SlideshowPluginSlideInserter/insert-text-button.php:2
661
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:9
662
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:69
663
+ msgid "Text slide"
664
+ msgstr "Tekst slide"
665
+
666
+ #: views/SlideshowPluginPostType/slides.php:61
667
+ #: views/SlideshowPluginPostType/slides.php:150
668
+ #: views/SlideshowPluginPostType/slides.php:198
669
+ #: views/SlideshowPluginPostType/slides.php:270
670
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:135
671
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:33
672
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:165
673
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:95
674
+ msgid "Description"
675
+ msgstr "Beschrijving"
676
+
677
+ #: views/SlideshowPluginPostType/slides.php:63
678
+ #: views/SlideshowPluginPostType/slides.php:200
679
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:51
680
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:113
681
+ msgid "Background color"
682
+ msgstr "Achtergrond kleur"
683
+
684
+ #: views/SlideshowPluginPostType/slides.php:68
685
+ #: views/SlideshowPluginPostType/slides.php:155
686
+ #: views/SlideshowPluginPostType/slides.php:205
687
+ #: views/SlideshowPluginPostType/slides.php:275
688
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:150
689
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:59
690
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:180
691
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:121
692
+ msgid "URL"
693
+ msgstr "URL"
694
+
695
+ #: views/SlideshowPluginPostType/slides.php:70
696
+ #: views/SlideshowPluginPostType/slides.php:157
697
+ #: views/SlideshowPluginPostType/slides.php:207
698
+ #: views/SlideshowPluginPostType/slides.php:277
699
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:153
700
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:62
701
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:183
702
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:124
703
+ msgid "Open URL in"
704
+ msgstr "Open URL in"
705
+
706
+ #: views/SlideshowPluginPostType/slides.php:72
707
+ #: views/SlideshowPluginPostType/slides.php:159
708
+ #: views/SlideshowPluginPostType/slides.php:209
709
+ #: views/SlideshowPluginPostType/slides.php:279
710
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:155
711
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:64
712
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:185
713
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:126
714
+ msgid "Same window"
715
+ msgstr "Zelfde scherm"
716
+
717
+ #: views/SlideshowPluginPostType/slides.php:73
718
+ #: views/SlideshowPluginPostType/slides.php:160
719
+ #: views/SlideshowPluginPostType/slides.php:210
720
+ #: views/SlideshowPluginPostType/slides.php:280
721
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:156
722
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:65
723
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:186
724
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:127
725
+ msgid "New window"
726
+ msgstr "Nieuw scherm"
727
+
728
+ #: views/SlideshowPluginPostType/slides.php:90
729
+ #: views/SlideshowPluginPostType/slides.php:230
730
+ #: views/SlideshowPluginSlideInserter/insert-video-button.php:2
731
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:94
732
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:26
733
+ msgid "Video slide"
734
+ msgstr "Video slide"
735
+
736
+ #: views/SlideshowPluginPostType/slides.php:95
737
+ #: views/SlideshowPluginPostType/slides.php:235
738
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:103
739
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:35
740
+ msgid "Youtube Video ID"
741
+ msgstr "Youtube Video ID"
742
+
743
+ #: views/SlideshowPluginPostType/slides.php:133
744
+ #: views/SlideshowPluginPostType/slides.php:255
745
+ #: views/SlideshowPluginSlideInserter/insert-image-button.php:2
746
+ #: views/SlideshowPluginSlideInserter/insert-image-button.php:4
747
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:101
748
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:135
749
+ msgid "Image slide"
750
+ msgstr "Afbeeldingsslide"
751
+
752
+ #: views/SlideshowPluginPostType/slides.php:171
753
+ msgid ""
754
+ "An error occurred while loading this slide, and it will not be present in "
755
+ "the slideshow"
756
+ msgstr ""
757
+ "Een fout is ontstaan tijdens het laden van deze slide, de slide zal niet te "
758
+ "bekijken zijn in je slideshow"
759
+
760
+ #: views/SlideshowPluginPostType/slides.php:177
761
+ #: views/SlideshowPluginPostType/slides.php:218
762
+ #: views/SlideshowPluginPostType/slides.php:243
763
+ #: views/SlideshowPluginPostType/slides.php:289
764
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:174
765
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:76
766
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:117
767
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:203
768
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:138
769
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:49
770
+ msgid "Delete slide"
771
+ msgstr "Verwijder slide"
772
+
773
+ #: views/SlideshowPluginPostType/style-settings.php:22
774
+ #, php-format
775
+ msgid "Custom styles can be created and customized %shere%s."
776
+ msgstr "Aangepaste stijlen kunnen %shier%s worden aangemaakt en aangepast."
777
+
778
+ #: views/SlideshowPluginPostType/support-plugin.php:3
779
+ msgid "Help to keep this plugin free!"
780
+ msgstr "Help mee om deze plugin gratis te houden!"
781
+
782
+ #: views/SlideshowPluginPostType/support-plugin.php:6
783
+ msgid ""
784
+ "In order to keep you provided with the newest features, updates and bug "
785
+ "fixes, a lot of motivation is required. Therefore I'm kindly asking you to "
786
+ "consider making a small donation to the plugin or rating it as 5-stars on "
787
+ "Wordpress.org. Thank you in advance!"
788
+ msgstr ""
789
+ "Om je te kunnen voorzien van de nieuwste functionaliteiten, updates en "
790
+ "foutoplossingen, is een hoop motivatie nodig. Ik zou je daarom willen vragen "
791
+ "een kleine donatie aan deze plugin te willen overwegen, of de plugin een "
792
+ "goede beoordeling te geven op WordPress.org. Alvast bedankt!"
793
+
794
+ #: views/SlideshowPluginPostType/support-plugin.php:15
795
+ msgid "Rate on Wordpress.org"
796
+ msgstr "Geef een waardering op Wordpress.org"
797
+
798
+ #: views/SlideshowPluginPostType/support-plugin.php:24
799
+ msgid "Frequently Asked Questions (FAQ)"
800
+ msgstr "Veelgestelde Vragen (FAQ)"
801
+
802
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
803
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
804
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
805
+ msgid "Insert a Slideshow"
806
+ msgstr "Slideshow invoegen"
807
+
808
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
809
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
810
+ msgid "Insert Slideshow"
811
+ msgstr "Slideshow invoegen"
812
+
813
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
814
+ msgid "Select a slideshow"
815
+ msgstr "Selecteer een slideshow"
816
+
817
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
818
+ #: views/SlideshowPluginWidget/form.php:12
819
+ msgid "Untitled slideshow"
820
+ msgstr "Naamloze slideshow"
821
+
822
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
823
+ msgid "Cancel"
824
+ msgstr "Annuleren"
825
+
826
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
827
+ #, php-format
828
+ msgid ""
829
+ "It seems you haven't created any slideshows yet. %sYou can create a "
830
+ "slideshow here!%s"
831
+ msgstr ""
832
+ "Het ziet er naar uit dat je nog geen slideshows hebt gemaakt. %sHier kan je "
833
+ "een slideshow maken!%s"
834
+
835
+ #: views/SlideshowPluginSlideInserter/search-popup.php:6
836
+ msgid "Search"
837
+ msgstr "Zoek"
838
+
839
+ #: views/SlideshowPluginSlideInserter/search-popup.php:7
840
+ msgid "Search images by title or ID"
841
+ msgstr "Zoek afbeeldingen op titel of ID"
842
+
843
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:90
844
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:4
845
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:89
846
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:130
847
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:58
848
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:21
849
+ msgid "Click to toggle"
850
+ msgstr "Klik om te wisselen"
851
+
852
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:160
853
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:69
854
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:190
855
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:131
856
+ msgid "Don't let search engines follow link"
857
+ msgstr "Laat zoekmachines deze link niet volgen"
858
+
859
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:168
860
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:197
861
+ msgid "Alternative text"
862
+ msgstr "Alterntieve tekst"
863
+
864
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:48
865
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:110
866
+ msgid "Text color"
867
+ msgstr "Tekst kleur"
868
+
869
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:53
870
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:115
871
+ msgid "(Leave empty for a transparent background)"
872
+ msgstr "(Laat leeg voor een transparante achtergrond)"
873
+
874
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:110
875
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:42
876
+ msgid "Show related videos"
877
+ msgstr "Toon gerelateerde videos"
878
+
879
+ #: views/SlideshowPluginUpload/upload-button.php:1
880
+ msgid "Upload/Manage Images"
881
+ msgstr "Upload/Beheer Afbeeldingen"
882
+
883
+ #: views/SlideshowPluginWidget/form.php:9
884
+ msgid "Random Slideshow"
885
+ msgstr "Willekeurige Slideshow"
886
+
887
+ #~ msgid "Fit image into slide (Stretch image)"
888
+ #~ msgstr "Pas afbeelding in de slideshow (Afbeedling uitrekken)"
889
+
890
+ #~ msgid "Head (top)"
891
+ #~ msgstr "Head (boven)"
892
+
893
+ #~ msgid "Footer (bottom)"
894
+ #~ msgstr "Footer (onder)"
895
+
896
+ #~ msgid "Questions / Suggestions"
897
+ #~ msgstr "Vragen / Opmerkingen"
898
+
899
+ #~ msgid ""
900
+ #~ "Shrink slideshow's height when width shrinks (Fixed height can be defined "
901
+ #~ "when setting this value to 'No')"
902
+ #~ msgstr ""
903
+ #~ "Krimp de slideshow's hoogte wanneer de breedte kleiner wordt "
904
+ #~ "(Vastgestelde hoogte kan worden ingesteld als deze instelling op 'Nee' "
905
+ #~ "staat)"
906
+
907
+ #, fuzzy
908
+ #~ msgid "Editor"
909
+ #~ msgstr "Bewerken"
910
+
911
+ #~ msgid "light"
912
+ #~ msgstr "licht"
913
+
914
+ #~ msgid "slide"
915
+ #~ msgstr "slide"
916
+
917
+ #~ msgid "Custom style editor (Does not work with a Strict Doctype)"
918
+ #~ msgstr "Aangepaste stijl bewerker (Werkt niet met een Strict Doctype)"
919
+
920
+ #~ msgid "Has the Slideshow plugin helped you?"
921
+ #~ msgstr "Heeft de Slideshow plugin je geholpen?"
922
+
923
+ #~ msgid "Help it back!"
924
+ #~ msgstr "Help hem terug!"
925
+
926
+ #~ msgid ""
927
+ #~ "If this plugin has filled you with happiness, please support the upkeep "
928
+ #~ "of the plugin by rating it on Wordpress, posting a suggestion for "
929
+ #~ "improvement on the support forum, or making a donation."
930
+ #~ msgstr ""
931
+ #~ "Als deze plugin je met blijdschap heeft vervuld, zou ik het enorm "
932
+ #~ "waarderen als je de plugin wilt beoordelen op Wordpress, een suggestie "
933
+ #~ "wilt maken voor verbetering, of een donatie doen wilt."
934
+
935
+ #~ msgid "Click on an image to insert it as a slide"
936
+ #~ msgstr "Klik op een plaatje om deze in te voegen als slide"
937
+
938
+ #~ msgid "Width of the slideshow"
939
+ #~ msgstr "Breedte van de slideshow"
940
+
941
+ #~ msgid "Defaults to parent's width."
942
+ #~ msgstr "Standaard ingesteld op de breedte van het bovenliggende element."
943
+
944
+ #~ msgid "Send user to image URL on click"
945
+ #~ msgstr ""
946
+ #~ "Wanner de gebruiker op de afbeelding klikt, stuur hem naar de URL van het "
947
+ #~ "plaatje"
948
+
949
+ #~ msgid "Leave any field open to use default value."
950
+ #~ msgstr "Een veld dat open wordt gelaten neemt de standaardwaarde aan."
languages/slideshow-plugin-original.mo CHANGED
Binary file
languages/slideshow-plugin-original.po CHANGED
@@ -1,844 +1,850 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Slideshow Plugin\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-03-19 20:34+0100\n"
6
- "PO-Revision-Date: 2014-03-19 20:34+0100\n"
7
- "Last-Translator: Stefan Boonstra <stefanboonstra@hotmail.com>\n"
8
- "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-KeywordsList: _e;__\n"
13
- "X-Poedit-Basepath: ../\n"
14
- "X-Generator: Poedit 1.6.4\n"
15
- "X-Poedit-SearchPath-0: .\n"
16
-
17
- #: classes/SlideshowPluginGeneralSettings.php:82
18
- #: classes/SlideshowPluginGeneralSettings.php:83
19
- #: views/SlideshowPluginGeneralSettings/general-settings.php:14
20
- msgid "General Settings"
21
- msgstr ""
22
-
23
- #: classes/SlideshowPluginGeneralSettings.php:150
24
- msgid "New"
25
- msgstr ""
26
-
27
- #: classes/SlideshowPluginGeneralSettings.php:151
28
- msgid "Are you sure you want to delete this custom style?"
29
- msgstr ""
30
-
31
- #: classes/SlideshowPluginGeneralSettings.php:196
32
- #: classes/SlideshowPluginInstaller.php:803
33
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:6
34
- msgid "Light"
35
- msgstr ""
36
-
37
- #: classes/SlideshowPluginGeneralSettings.php:197
38
- #: classes/SlideshowPluginInstaller.php:803
39
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:7
40
- msgid "Dark"
41
- msgstr ""
42
-
43
- #: classes/SlideshowPluginGeneralSettings.php:353
44
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:57
45
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:143
46
- msgid "Untitled"
47
- msgstr ""
48
-
49
- #: classes/SlideshowPluginInstaller.php:800
50
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:472
51
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:111
52
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:43
53
- msgid "Yes"
54
- msgstr ""
55
-
56
- #: classes/SlideshowPluginInstaller.php:801
57
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:473
58
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:112
59
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:44
60
- msgid "No"
61
- msgstr ""
62
-
63
- #: classes/SlideshowPluginInstaller.php:803
64
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:610
65
- msgid "The style used for this slideshow"
66
- msgstr ""
67
-
68
- #: classes/SlideshowPluginInstaller.php:803
69
- msgid "Custom"
70
- msgstr ""
71
-
72
- #: classes/SlideshowPluginInstaller.php:804
73
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:126
74
- msgid "Custom style editor"
75
- msgstr ""
76
-
77
- #: classes/SlideshowPluginInstaller.php:805
78
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:518
79
- msgid "Animation used for transition between slides"
80
- msgstr ""
81
-
82
- #: classes/SlideshowPluginInstaller.php:805
83
- msgid "Slide"
84
- msgstr ""
85
-
86
- #: classes/SlideshowPluginInstaller.php:805
87
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
88
- msgid "Fade"
89
- msgstr ""
90
-
91
- #: classes/SlideshowPluginInstaller.php:805
92
- #: classes/SlideshowPluginInstaller.php:806
93
- #: classes/SlideshowPluginInstaller.php:807
94
- #: classes/SlideshowPluginInstaller.php:808
95
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
96
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:548
97
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:549
98
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:550
99
- msgid "Animation"
100
- msgstr ""
101
-
102
- #: classes/SlideshowPluginInstaller.php:806
103
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:519
104
- msgid "Number of seconds the slide takes to slide in"
105
- msgstr ""
106
-
107
- #: classes/SlideshowPluginInstaller.php:807
108
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:520
109
- msgid "Number of seconds the description takes to slide in"
110
- msgstr ""
111
-
112
- #: classes/SlideshowPluginInstaller.php:808
113
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:521
114
- msgid "Seconds between changing slides"
115
- msgstr ""
116
-
117
- #: classes/SlideshowPluginInstaller.php:809
118
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:522
119
- msgid "Number of slides to fit into one slide"
120
- msgstr ""
121
-
122
- #: classes/SlideshowPluginInstaller.php:809
123
- #: classes/SlideshowPluginInstaller.php:810
124
- #: classes/SlideshowPluginInstaller.php:811
125
- #: classes/SlideshowPluginInstaller.php:812
126
- #: classes/SlideshowPluginInstaller.php:813
127
- #: classes/SlideshowPluginInstaller.php:814
128
- #: classes/SlideshowPluginInstaller.php:815
129
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:551
130
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:552
131
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:553
132
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:554
133
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
134
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:556
135
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:557
136
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:558
137
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:559
138
- msgid "Display"
139
- msgstr ""
140
-
141
- #: classes/SlideshowPluginInstaller.php:810
142
- msgid "Width of the slideshow, set to parent&#39;s width on 0"
143
- msgstr ""
144
-
145
- #: classes/SlideshowPluginInstaller.php:811
146
- msgid "Height of the slideshow"
147
- msgstr ""
148
-
149
- #: classes/SlideshowPluginInstaller.php:812
150
- msgid "Height of the description boxes"
151
- msgstr ""
152
-
153
- #: classes/SlideshowPluginInstaller.php:813
154
- msgid "Fit image into slide (stretching it)"
155
- msgstr ""
156
-
157
- #: classes/SlideshowPluginInstaller.php:814
158
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:529
159
- msgid "Show title and description"
160
- msgstr ""
161
-
162
- #: classes/SlideshowPluginInstaller.php:815
163
- msgid "Hide description box, it will pop up when a mouse hovers over the slide"
164
- msgstr ""
165
-
166
- #: classes/SlideshowPluginInstaller.php:816
167
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:531
168
- msgid "Automatically slide to the next slide"
169
- msgstr ""
170
-
171
- #: classes/SlideshowPluginInstaller.php:816
172
- #: classes/SlideshowPluginInstaller.php:817
173
- #: classes/SlideshowPluginInstaller.php:818
174
- #: classes/SlideshowPluginInstaller.php:819
175
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:560
176
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:561
177
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:562
178
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:563
179
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:564
180
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:565
181
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:566
182
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:567
183
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:568
184
- msgid "Control"
185
- msgstr ""
186
-
187
- #: classes/SlideshowPluginInstaller.php:817
188
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:532
189
- msgid "Return to the beginning of the slideshow after last slide"
190
- msgstr ""
191
-
192
- #: classes/SlideshowPluginInstaller.php:818
193
- msgid "Activate buttons (so the user can scroll through the slides)"
194
- msgstr ""
195
-
196
- #: classes/SlideshowPluginInstaller.php:819
197
- msgid "Show control panel (play and pause button)"
198
- msgstr ""
199
-
200
- #: classes/SlideshowPluginPostType.php:45
201
- msgid "Slideshows"
202
- msgstr ""
203
-
204
- #: classes/SlideshowPluginPostType.php:46
205
- #: views/SlideshowPluginWidget/form.php:7
206
- msgid "Slideshow"
207
- msgstr ""
208
-
209
- #: classes/SlideshowPluginPostType.php:47
210
- msgid "Add New Slideshow"
211
- msgstr ""
212
-
213
- #: classes/SlideshowPluginPostType.php:48
214
- msgid "Edit slideshow"
215
- msgstr ""
216
-
217
- #: classes/SlideshowPluginPostType.php:49
218
- msgid "New slideshow"
219
- msgstr ""
220
-
221
- #: classes/SlideshowPluginPostType.php:50
222
- msgid "View slideshow"
223
- msgstr ""
224
-
225
- #: classes/SlideshowPluginPostType.php:51
226
- msgid "Search slideshows"
227
- msgstr ""
228
-
229
- #: classes/SlideshowPluginPostType.php:52
230
- #: classes/SlideshowPluginPostType.php:53
231
- msgid "No slideshows found"
232
- msgstr ""
233
-
234
- #: classes/SlideshowPluginPostType.php:98
235
- msgid "Information"
236
- msgstr ""
237
-
238
- #: classes/SlideshowPluginPostType.php:107
239
- msgid "Slides List"
240
- msgstr ""
241
-
242
- #: classes/SlideshowPluginPostType.php:116
243
- msgid "Slideshow Style"
244
- msgstr ""
245
-
246
- #: classes/SlideshowPluginPostType.php:125
247
- msgid "Slideshow Settings"
248
- msgstr ""
249
-
250
- #: classes/SlideshowPluginPostType.php:173
251
- msgid "Slideshow created"
252
- msgstr ""
253
-
254
- #: classes/SlideshowPluginPostType.php:177
255
- msgid "Slideshow updated"
256
- msgstr ""
257
-
258
- #: classes/SlideshowPluginPostType.php:224
259
- #: classes/SlideshowPluginSlideInserter.php:238
260
- #: views/SlideshowPluginPostType/slides.php:2
261
- msgid "Insert"
262
- msgstr ""
263
-
264
- #: classes/SlideshowPluginPostType.php:232
265
- msgid "Open all"
266
- msgstr ""
267
-
268
- #: classes/SlideshowPluginPostType.php:234
269
- msgid "Close all"
270
- msgstr ""
271
-
272
- #: classes/SlideshowPluginPostType.php:240
273
- #: views/SlideshowPluginPostType/slides.php:10
274
- msgid "Add slides to this slideshow by using one of the buttons above."
275
- msgstr ""
276
-
277
- #: classes/SlideshowPluginPostType.php:320
278
- msgid "Duplicate"
279
- msgstr ""
280
-
281
- #: classes/SlideshowPluginPostType.php:371
282
- msgid "Copy"
283
- msgstr ""
284
-
285
- #: classes/SlideshowPluginShortcode.php:148
286
- msgid "No slideshow selected."
287
- msgstr ""
288
-
289
- #: classes/SlideshowPluginSlideInserter.php:194
290
- msgid "More results loaded"
291
- msgstr ""
292
-
293
- #: classes/SlideshowPluginSlideInserter.php:249
294
- msgid "Load more results"
295
- msgstr ""
296
-
297
- #: classes/SlideshowPluginSlideInserter.php:260
298
- msgid "No images were found, click here to upload some."
299
- msgstr ""
300
-
301
- #: classes/SlideshowPluginSlideInserter.php:332
302
- msgid "Are you sure you want to delete this slide?"
303
- msgstr ""
304
-
305
- #: classes/SlideshowPluginSlideInserter.php:333
306
- msgid "Insert image slide"
307
- msgstr ""
308
-
309
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:523
310
- msgid "Maximum width. When maximum width is 0, maximum width is ignored"
311
- msgstr ""
312
-
313
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
314
- msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
315
- msgstr ""
316
-
317
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
318
- msgid "More info"
319
- msgstr ""
320
-
321
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
322
- #, php-format
323
- msgid ""
324
- "Proportional relationship%s between slideshow's width and height (width:"
325
- "height)"
326
- msgstr ""
327
-
328
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:525
329
- msgid "Slideshow's height"
330
- msgstr ""
331
-
332
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:526
333
- msgid "Image behaviour"
334
- msgstr ""
335
-
336
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:527
337
- msgid "Shrink slideshow's height when width shrinks"
338
- msgstr ""
339
-
340
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:528
341
- msgid ""
342
- "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
343
- msgstr ""
344
-
345
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:530
346
- msgid "Hide description box, pop up when mouse hovers over"
347
- msgstr ""
348
-
349
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:533
350
- msgid "Pause slideshow when mouse hovers over"
351
- msgstr ""
352
-
353
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:534
354
- msgid "Activate navigation buttons"
355
- msgstr ""
356
-
357
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:535
358
- msgid "Hide navigation buttons, show when mouse hovers over"
359
- msgstr ""
360
-
361
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:536
362
- msgid "Activate pagination"
363
- msgstr ""
364
-
365
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:537
366
- msgid "Hide pagination, show when mouse hovers over"
367
- msgstr ""
368
-
369
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:538
370
- msgid "Activate control panel (play and pause button)"
371
- msgstr ""
372
-
373
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:539
374
- msgid "Hide control panel, show when mouse hovers over"
375
- msgstr ""
376
-
377
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:540
378
- msgid "Wait until the next slide has loaded before showing it"
379
- msgstr ""
380
-
381
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:541
382
- msgid "Show a loading icon until the first slide appears"
383
- msgstr ""
384
-
385
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:542
386
- msgid "Randomize slides"
387
- msgstr ""
388
-
389
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:543
390
- #, php-format
391
- msgid "Avoid content filter (disable if '%s' is shown)"
392
- msgstr ""
393
-
394
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
395
- msgid "Slide Left"
396
- msgstr ""
397
-
398
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
399
- msgid "Slide Right"
400
- msgstr ""
401
-
402
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
403
- msgid "Slide Up"
404
- msgstr ""
405
-
406
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
407
- msgid "Slide Down"
408
- msgstr ""
409
-
410
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
411
- msgid "Direct Fade"
412
- msgstr ""
413
-
414
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
415
- msgid "Random Animation"
416
- msgstr ""
417
-
418
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
419
- msgid "Natural and centered"
420
- msgstr ""
421
-
422
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
423
- msgid "Crop to fit"
424
- msgstr ""
425
-
426
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
427
- msgid "Stretch to fit"
428
- msgstr ""
429
-
430
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:569
431
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:570
432
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:571
433
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:572
434
- msgid "Miscellaneous"
435
- msgstr ""
436
-
437
- #: classes/SlideshowPluginWidget.php:23
438
- msgid "Enables you to show your slideshows in the widget area of your website."
439
- msgstr ""
440
-
441
- #: classes/SlideshowPluginWidget.php:29
442
- msgid "Slideshow Widget"
443
- msgstr ""
444
-
445
- #: views/SlideshowPlugin/slideshow.php:23
446
- msgid "Play"
447
- msgstr ""
448
-
449
- #: views/SlideshowPlugin/slideshow.php:23
450
- msgid "Pause"
451
- msgstr ""
452
-
453
- #: views/SlideshowPlugin/slideshow.php:25
454
- msgid "Previous"
455
- msgstr ""
456
-
457
- #: views/SlideshowPlugin/slideshow.php:26
458
- msgid "Next"
459
- msgstr ""
460
-
461
- #: views/SlideshowPlugin/slideshow.php:28
462
- msgid "Go to slide"
463
- msgstr ""
464
-
465
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:46
466
- msgid "Default stylesheets"
467
- msgstr ""
468
-
469
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:60
470
- msgid "Create a new custom style from this style"
471
- msgstr ""
472
-
473
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:62
474
- msgid "Customize"
475
- msgstr ""
476
-
477
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:76
478
- msgid "Custom stylesheets"
479
- msgstr ""
480
-
481
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:89
482
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:172
483
- msgid "Edit this style"
484
- msgstr ""
485
-
486
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:91
487
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:174
488
- #: views/SlideshowPluginPostType/slides.php:138
489
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:112
490
- msgid "Edit"
491
- msgstr ""
492
-
493
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:98
494
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:181
495
- msgid "Delete this style"
496
- msgstr ""
497
-
498
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:100
499
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:183
500
- msgid "Delete"
501
- msgstr ""
502
-
503
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:110
504
- msgid "Click 'Customize' to create a new custom stylesheet."
505
- msgstr ""
506
-
507
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:130
508
- msgid "Select a stylesheet to start customizing it."
509
- msgstr ""
510
-
511
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:139
512
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:192
513
- #: views/SlideshowPluginPostType/slides.php:59
514
- #: views/SlideshowPluginPostType/slides.php:144
515
- #: views/SlideshowPluginPostType/slides.php:196
516
- #: views/SlideshowPluginPostType/slides.php:264
517
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:120
518
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:18
519
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:150
520
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:80
521
- #: views/SlideshowPluginWidget/form.php:2
522
- msgid "Title"
523
- msgstr ""
524
-
525
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:148
526
- #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:200
527
- msgid "Style"
528
- msgstr ""
529
-
530
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:11
531
- msgid "Note"
532
- msgstr ""
533
-
534
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:18
535
- #, php-format
536
- msgid ""
537
- "The settings set on this page apply only to newly created slideshows and "
538
- "therefore do not alter any existing ones. To adapt a slideshow's settings, "
539
- "%sclick here.%s"
540
- msgstr ""
541
-
542
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:29
543
- #: views/SlideshowPluginGeneralSettings/general-settings.php:15
544
- msgid "Default Slideshow Settings"
545
- msgstr ""
546
-
547
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:41
548
- #: views/SlideshowPluginPostType/settings.php:12
549
- msgid "settings"
550
- msgstr ""
551
-
552
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:77
553
- msgid "Default Slideshow Stylesheet"
554
- msgstr ""
555
-
556
- #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:11
557
- msgid "Add slideshows"
558
- msgstr ""
559
-
560
- #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:12
561
- msgid "Edit slideshows"
562
- msgstr ""
563
-
564
- #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:13
565
- msgid "Delete slideshows"
566
- msgstr ""
567
-
568
- #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:20
569
- msgid "User Capabilities"
570
- msgstr ""
571
-
572
- #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:22
573
- msgid "Select the user roles that will able to perform certain actions."
574
- msgstr ""
575
-
576
- #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:38
577
- msgid "Untitled role"
578
- msgstr ""
579
-
580
- #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:65
581
- msgid "Settings"
582
- msgstr ""
583
-
584
- #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:69
585
- msgid "Stylesheet location"
586
- msgstr ""
587
-
588
- #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:72
589
- msgid "top"
590
- msgstr ""
591
-
592
- #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:73
593
- msgid "bottom"
594
- msgstr ""
595
-
596
- #: views/SlideshowPluginGeneralSettings/general-settings.php:16
597
- msgid "Custom Styles"
598
- msgstr ""
599
-
600
- #: views/SlideshowPluginPostType/information.php:1
601
- msgid ""
602
- "To use this slideshow in your website either add this piece of shortcode to "
603
- "your posts or pages"
604
- msgstr ""
605
-
606
- #: views/SlideshowPluginPostType/information.php:5
607
- msgid ""
608
- "Or add this piece of code to where ever in your website you want to place "
609
- "the slideshow"
610
- msgstr ""
611
-
612
- #: views/SlideshowPluginPostType/information.php:9
613
- #, php-format
614
- msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
615
- msgstr ""
616
-
617
- #: views/SlideshowPluginPostType/settings.php:26
618
- #: views/SlideshowPluginPostType/style-settings.php:11
619
- msgid "Default"
620
- msgstr ""
621
-
622
- #: views/SlideshowPluginPostType/slides.php:54
623
- #: views/SlideshowPluginPostType/slides.php:191
624
- #: views/SlideshowPluginSlideInserter/insert-text-button.php:2
625
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:9
626
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:69
627
- msgid "Text slide"
628
- msgstr ""
629
-
630
- #: views/SlideshowPluginPostType/slides.php:61
631
- #: views/SlideshowPluginPostType/slides.php:150
632
- #: views/SlideshowPluginPostType/slides.php:198
633
- #: views/SlideshowPluginPostType/slides.php:270
634
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:135
635
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:33
636
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:165
637
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:95
638
- msgid "Description"
639
- msgstr ""
640
-
641
- #: views/SlideshowPluginPostType/slides.php:63
642
- #: views/SlideshowPluginPostType/slides.php:200
643
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:51
644
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:113
645
- msgid "Background color"
646
- msgstr ""
647
-
648
- #: views/SlideshowPluginPostType/slides.php:68
649
- #: views/SlideshowPluginPostType/slides.php:155
650
- #: views/SlideshowPluginPostType/slides.php:205
651
- #: views/SlideshowPluginPostType/slides.php:275
652
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:150
653
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:59
654
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:180
655
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:121
656
- msgid "URL"
657
- msgstr ""
658
-
659
- #: views/SlideshowPluginPostType/slides.php:70
660
- #: views/SlideshowPluginPostType/slides.php:157
661
- #: views/SlideshowPluginPostType/slides.php:207
662
- #: views/SlideshowPluginPostType/slides.php:277
663
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:153
664
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:62
665
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:183
666
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:124
667
- msgid "Open URL in"
668
- msgstr ""
669
-
670
- #: views/SlideshowPluginPostType/slides.php:72
671
- #: views/SlideshowPluginPostType/slides.php:159
672
- #: views/SlideshowPluginPostType/slides.php:209
673
- #: views/SlideshowPluginPostType/slides.php:279
674
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:155
675
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:64
676
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:185
677
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:126
678
- msgid "Same window"
679
- msgstr ""
680
-
681
- #: views/SlideshowPluginPostType/slides.php:73
682
- #: views/SlideshowPluginPostType/slides.php:160
683
- #: views/SlideshowPluginPostType/slides.php:210
684
- #: views/SlideshowPluginPostType/slides.php:280
685
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:156
686
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:65
687
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:186
688
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:127
689
- msgid "New window"
690
- msgstr ""
691
-
692
- #: views/SlideshowPluginPostType/slides.php:90
693
- #: views/SlideshowPluginPostType/slides.php:230
694
- #: views/SlideshowPluginSlideInserter/insert-video-button.php:2
695
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:94
696
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:26
697
- msgid "Video slide"
698
- msgstr ""
699
-
700
- #: views/SlideshowPluginPostType/slides.php:95
701
- #: views/SlideshowPluginPostType/slides.php:235
702
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:103
703
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:35
704
- msgid "Youtube Video ID"
705
- msgstr ""
706
-
707
- #: views/SlideshowPluginPostType/slides.php:133
708
- #: views/SlideshowPluginPostType/slides.php:255
709
- #: views/SlideshowPluginSlideInserter/insert-image-button.php:2
710
- #: views/SlideshowPluginSlideInserter/insert-image-button.php:4
711
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:101
712
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:135
713
- msgid "Image slide"
714
- msgstr ""
715
-
716
- #: views/SlideshowPluginPostType/slides.php:171
717
- msgid ""
718
- "An error occurred while loading this slide, and it will not be present in "
719
- "the slideshow"
720
- msgstr ""
721
-
722
- #: views/SlideshowPluginPostType/slides.php:177
723
- #: views/SlideshowPluginPostType/slides.php:218
724
- #: views/SlideshowPluginPostType/slides.php:243
725
- #: views/SlideshowPluginPostType/slides.php:289
726
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:174
727
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:76
728
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:117
729
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:203
730
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:138
731
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:49
732
- msgid "Delete slide"
733
- msgstr ""
734
-
735
- #: views/SlideshowPluginPostType/style-settings.php:22
736
- #, php-format
737
- msgid "Custom styles can be created and customized %shere%s."
738
- msgstr ""
739
-
740
- #: views/SlideshowPluginPostType/support-plugin.php:3
741
- msgid "Help to keep this plugin free!"
742
- msgstr ""
743
-
744
- #: views/SlideshowPluginPostType/support-plugin.php:6
745
- msgid ""
746
- "In order to keep you provided with the newest features, updates and bug "
747
- "fixes, a lot of motivation is required. Therefore I'm kindly asking you to "
748
- "consider making a small donation to the plugin or rating it as 5-stars on "
749
- "Wordpress.org. Thank you in advance!"
750
- msgstr ""
751
-
752
- #: views/SlideshowPluginPostType/support-plugin.php:15
753
- msgid "Rate on Wordpress.org"
754
- msgstr ""
755
-
756
- #: views/SlideshowPluginPostType/support-plugin.php:24
757
- msgid "Frequently Asked Questions (FAQ)"
758
- msgstr ""
759
-
760
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
761
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
762
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
763
- msgid "Insert a Slideshow"
764
- msgstr ""
765
-
766
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
767
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
768
- msgid "Insert Slideshow"
769
- msgstr ""
770
-
771
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
772
- msgid "Select a slideshow"
773
- msgstr ""
774
-
775
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
776
- #: views/SlideshowPluginWidget/form.php:12
777
- msgid "Untitled slideshow"
778
- msgstr ""
779
-
780
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
781
- msgid "Cancel"
782
- msgstr ""
783
-
784
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
785
- #, php-format
786
- msgid ""
787
- "It seems you haven't created any slideshows yet. %sYou can create a "
788
- "slideshow here!%s"
789
- msgstr ""
790
-
791
- #: views/SlideshowPluginSlideInserter/search-popup.php:6
792
- msgid "Search"
793
- msgstr ""
794
-
795
- #: views/SlideshowPluginSlideInserter/search-popup.php:7
796
- msgid "Search images by title or ID"
797
- msgstr ""
798
-
799
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:90
800
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:4
801
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:89
802
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:130
803
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:58
804
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:21
805
- msgid "Click to toggle"
806
- msgstr ""
807
-
808
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:160
809
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:69
810
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:190
811
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:131
812
- msgid "Don't let search engines follow link"
813
- msgstr ""
814
-
815
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:168
816
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:197
817
- msgid "Alternative text"
818
- msgstr ""
819
-
820
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:48
821
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:110
822
- msgid "Text color"
823
- msgstr ""
824
-
825
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:53
826
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:115
827
- msgid "(Leave empty for a transparent background)"
828
- msgstr ""
829
-
830
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:110
831
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:42
832
- msgid "Show related videos"
833
- msgstr ""
834
-
835
- #: views/SlideshowPluginUpload/upload-button.php:1
836
- msgid "Upload/Manage Images"
837
- msgstr ""
838
-
839
- #: views/SlideshowPluginWidget/form.php:9
840
- msgid "Random Slideshow"
841
- msgstr ""
842
-
843
- #~ msgid "Leave any field open to use default value."
844
- #~ msgstr "Een veld dat open wordt gelaten neemt de standaardwaarde aan."
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Slideshow Plugin\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-23 17:43+0100\n"
6
+ "PO-Revision-Date: 2015-04-23 17:43+0100\n"
7
+ "Last-Translator: Stefan Boonstra <stefanboonstra@hotmail.com>\n"
8
+ "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: _e;__\n"
13
+ "X-Poedit-Basepath: ../\n"
14
+ "X-Generator: Poedit 1.7.6\n"
15
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
+ "Language: en\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: classes/SlideshowPluginGeneralSettings.php:82
20
+ #: classes/SlideshowPluginGeneralSettings.php:83
21
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:14
22
+ msgid "General Settings"
23
+ msgstr ""
24
+
25
+ #: classes/SlideshowPluginGeneralSettings.php:150
26
+ msgid "New"
27
+ msgstr ""
28
+
29
+ #: classes/SlideshowPluginGeneralSettings.php:151
30
+ msgid "Are you sure you want to delete this custom style?"
31
+ msgstr ""
32
+
33
+ #: classes/SlideshowPluginGeneralSettings.php:196
34
+ #: classes/SlideshowPluginInstaller.php:803
35
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:6
36
+ msgid "Light"
37
+ msgstr ""
38
+
39
+ #: classes/SlideshowPluginGeneralSettings.php:197
40
+ #: classes/SlideshowPluginInstaller.php:803
41
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:7
42
+ msgid "Dark"
43
+ msgstr ""
44
+
45
+ #: classes/SlideshowPluginGeneralSettings.php:353
46
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:57
47
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:143
48
+ msgid "Untitled"
49
+ msgstr ""
50
+
51
+ #: classes/SlideshowPluginInstaller.php:800
52
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:472
53
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:111
54
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:43
55
+ msgid "Yes"
56
+ msgstr ""
57
+
58
+ #: classes/SlideshowPluginInstaller.php:801
59
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:473
60
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:112
61
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:44
62
+ msgid "No"
63
+ msgstr ""
64
+
65
+ #: classes/SlideshowPluginInstaller.php:803
66
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:610
67
+ msgid "The style used for this slideshow"
68
+ msgstr ""
69
+
70
+ #: classes/SlideshowPluginInstaller.php:803
71
+ msgid "Custom"
72
+ msgstr ""
73
+
74
+ #: classes/SlideshowPluginInstaller.php:804
75
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:126
76
+ msgid "Custom style editor"
77
+ msgstr ""
78
+
79
+ #: classes/SlideshowPluginInstaller.php:805
80
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:518
81
+ msgid "Animation used for transition between slides"
82
+ msgstr ""
83
+
84
+ #: classes/SlideshowPluginInstaller.php:805
85
+ msgid "Slide"
86
+ msgstr ""
87
+
88
+ #: classes/SlideshowPluginInstaller.php:805
89
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
90
+ msgid "Fade"
91
+ msgstr ""
92
+
93
+ #: classes/SlideshowPluginInstaller.php:805
94
+ #: classes/SlideshowPluginInstaller.php:806
95
+ #: classes/SlideshowPluginInstaller.php:807
96
+ #: classes/SlideshowPluginInstaller.php:808
97
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
98
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:548
99
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:549
100
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:550
101
+ msgid "Animation"
102
+ msgstr ""
103
+
104
+ #: classes/SlideshowPluginInstaller.php:806
105
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:519
106
+ msgid "Number of seconds the slide takes to slide in"
107
+ msgstr ""
108
+
109
+ #: classes/SlideshowPluginInstaller.php:807
110
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:520
111
+ msgid "Number of seconds the description takes to slide in"
112
+ msgstr ""
113
+
114
+ #: classes/SlideshowPluginInstaller.php:808
115
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:521
116
+ msgid "Seconds between changing slides"
117
+ msgstr ""
118
+
119
+ #: classes/SlideshowPluginInstaller.php:809
120
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:522
121
+ msgid "Number of slides to fit into one slide"
122
+ msgstr ""
123
+
124
+ #: classes/SlideshowPluginInstaller.php:809
125
+ #: classes/SlideshowPluginInstaller.php:810
126
+ #: classes/SlideshowPluginInstaller.php:811
127
+ #: classes/SlideshowPluginInstaller.php:812
128
+ #: classes/SlideshowPluginInstaller.php:813
129
+ #: classes/SlideshowPluginInstaller.php:814
130
+ #: classes/SlideshowPluginInstaller.php:815
131
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:551
132
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:552
133
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:553
134
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:554
135
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
136
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:556
137
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:557
138
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:558
139
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:559
140
+ msgid "Display"
141
+ msgstr ""
142
+
143
+ #: classes/SlideshowPluginInstaller.php:810
144
+ msgid "Width of the slideshow, set to parent&#39;s width on 0"
145
+ msgstr ""
146
+
147
+ #: classes/SlideshowPluginInstaller.php:811
148
+ msgid "Height of the slideshow"
149
+ msgstr ""
150
+
151
+ #: classes/SlideshowPluginInstaller.php:812
152
+ msgid "Height of the description boxes"
153
+ msgstr ""
154
+
155
+ #: classes/SlideshowPluginInstaller.php:813
156
+ msgid "Fit image into slide (stretching it)"
157
+ msgstr ""
158
+
159
+ #: classes/SlideshowPluginInstaller.php:814
160
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:529
161
+ msgid "Show title and description"
162
+ msgstr ""
163
+
164
+ #: classes/SlideshowPluginInstaller.php:815
165
+ msgid "Hide description box, it will pop up when a mouse hovers over the slide"
166
+ msgstr ""
167
+
168
+ #: classes/SlideshowPluginInstaller.php:816
169
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:531
170
+ msgid "Automatically slide to the next slide"
171
+ msgstr ""
172
+
173
+ #: classes/SlideshowPluginInstaller.php:816
174
+ #: classes/SlideshowPluginInstaller.php:817
175
+ #: classes/SlideshowPluginInstaller.php:818
176
+ #: classes/SlideshowPluginInstaller.php:819
177
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:560
178
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:561
179
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:562
180
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:563
181
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:564
182
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:565
183
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:566
184
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:567
185
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:568
186
+ msgid "Control"
187
+ msgstr ""
188
+
189
+ #: classes/SlideshowPluginInstaller.php:817
190
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:532
191
+ msgid "Return to the beginning of the slideshow after last slide"
192
+ msgstr ""
193
+
194
+ #: classes/SlideshowPluginInstaller.php:818
195
+ msgid "Activate buttons (so the user can scroll through the slides)"
196
+ msgstr ""
197
+
198
+ #: classes/SlideshowPluginInstaller.php:819
199
+ msgid "Show control panel (play and pause button)"
200
+ msgstr ""
201
+
202
+ #: classes/SlideshowPluginPostType.php:45
203
+ msgid "Slideshows"
204
+ msgstr ""
205
+
206
+ #: classes/SlideshowPluginPostType.php:46
207
+ #: views/SlideshowPluginWidget/form.php:7
208
+ msgid "Slideshow"
209
+ msgstr ""
210
+
211
+ #: classes/SlideshowPluginPostType.php:47
212
+ msgid "Add New Slideshow"
213
+ msgstr ""
214
+
215
+ #: classes/SlideshowPluginPostType.php:48
216
+ msgid "Edit slideshow"
217
+ msgstr ""
218
+
219
+ #: classes/SlideshowPluginPostType.php:49
220
+ msgid "New slideshow"
221
+ msgstr ""
222
+
223
+ #: classes/SlideshowPluginPostType.php:50
224
+ msgid "View slideshow"
225
+ msgstr ""
226
+
227
+ #: classes/SlideshowPluginPostType.php:51
228
+ msgid "Search slideshows"
229
+ msgstr ""
230
+
231
+ #: classes/SlideshowPluginPostType.php:52
232
+ #: classes/SlideshowPluginPostType.php:53
233
+ msgid "No slideshows found"
234
+ msgstr ""
235
+
236
+ #: classes/SlideshowPluginPostType.php:98
237
+ msgid "Information"
238
+ msgstr ""
239
+
240
+ #: classes/SlideshowPluginPostType.php:107
241
+ msgid "Slides List"
242
+ msgstr ""
243
+
244
+ #: classes/SlideshowPluginPostType.php:116
245
+ msgid "Slideshow Style"
246
+ msgstr ""
247
+
248
+ #: classes/SlideshowPluginPostType.php:125
249
+ msgid "Slideshow Settings"
250
+ msgstr ""
251
+
252
+ #: classes/SlideshowPluginPostType.php:173
253
+ msgid "Slideshow created"
254
+ msgstr ""
255
+
256
+ #: classes/SlideshowPluginPostType.php:177
257
+ msgid "Slideshow updated"
258
+ msgstr ""
259
+
260
+ #: classes/SlideshowPluginPostType.php:224
261
+ #: classes/SlideshowPluginSlideInserter.php:238
262
+ #: views/SlideshowPluginPostType/slides.php:2
263
+ msgid "Insert"
264
+ msgstr ""
265
+
266
+ #: classes/SlideshowPluginPostType.php:232
267
+ msgid "Open all"
268
+ msgstr ""
269
+
270
+ #: classes/SlideshowPluginPostType.php:234
271
+ msgid "Close all"
272
+ msgstr ""
273
+
274
+ #: classes/SlideshowPluginPostType.php:240
275
+ #: views/SlideshowPluginPostType/slides.php:10
276
+ msgid "Add slides to this slideshow by using one of the buttons above."
277
+ msgstr ""
278
+
279
+ #: classes/SlideshowPluginPostType.php:320
280
+ msgid "Duplicate"
281
+ msgstr ""
282
+
283
+ #: classes/SlideshowPluginPostType.php:371
284
+ msgid "Copy"
285
+ msgstr ""
286
+
287
+ #: classes/SlideshowPluginShortcode.php:148
288
+ msgid "No slideshow selected."
289
+ msgstr ""
290
+
291
+ #: classes/SlideshowPluginSlideInserter.php:194
292
+ msgid "More results loaded"
293
+ msgstr ""
294
+
295
+ #: classes/SlideshowPluginSlideInserter.php:249
296
+ msgid "Load more results"
297
+ msgstr ""
298
+
299
+ #: classes/SlideshowPluginSlideInserter.php:260
300
+ msgid "No images were found, click here to upload some."
301
+ msgstr ""
302
+
303
+ #: classes/SlideshowPluginSlideInserter.php:332
304
+ msgid "Are you sure you want to delete this slide?"
305
+ msgstr ""
306
+
307
+ #: classes/SlideshowPluginSlideInserter.php:333
308
+ msgid "Insert image slide"
309
+ msgstr ""
310
+
311
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:523
312
+ msgid "Maximum width. When maximum width is 0, maximum width is ignored"
313
+ msgstr ""
314
+
315
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
316
+ msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
317
+ msgstr ""
318
+
319
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
320
+ msgid "More info"
321
+ msgstr ""
322
+
323
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
324
+ #, php-format
325
+ msgid ""
326
+ "Proportional relationship%s between slideshow's width and height (width:"
327
+ "height)"
328
+ msgstr ""
329
+
330
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:525
331
+ msgid "Slideshow's height"
332
+ msgstr ""
333
+
334
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:526
335
+ msgid "Image behaviour"
336
+ msgstr ""
337
+
338
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:527
339
+ msgid "Shrink slideshow's height when width shrinks"
340
+ msgstr ""
341
+
342
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:528
343
+ msgid ""
344
+ "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
345
+ msgstr ""
346
+
347
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:530
348
+ msgid "Hide description box, pop up when mouse hovers over"
349
+ msgstr ""
350
+
351
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:533
352
+ msgid "Pause slideshow when mouse hovers over"
353
+ msgstr ""
354
+
355
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:534
356
+ msgid "Activate navigation buttons"
357
+ msgstr ""
358
+
359
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:535
360
+ msgid "Hide navigation buttons, show when mouse hovers over"
361
+ msgstr ""
362
+
363
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:536
364
+ msgid "Activate pagination"
365
+ msgstr ""
366
+
367
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:537
368
+ msgid "Hide pagination, show when mouse hovers over"
369
+ msgstr ""
370
+
371
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:538
372
+ msgid "Activate control panel (play and pause button)"
373
+ msgstr ""
374
+
375
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:539
376
+ msgid "Hide control panel, show when mouse hovers over"
377
+ msgstr ""
378
+
379
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:540
380
+ msgid "Wait until the next slide has loaded before showing it"
381
+ msgstr ""
382
+
383
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:541
384
+ msgid "Show a loading icon until the first slide appears"
385
+ msgstr ""
386
+
387
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:542
388
+ msgid "Randomize slides"
389
+ msgstr ""
390
+
391
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:543
392
+ #, php-format
393
+ msgid "Avoid content filter (disable if '%s' is shown)"
394
+ msgstr ""
395
+
396
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
397
+ msgid "Slide Left"
398
+ msgstr ""
399
+
400
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
401
+ msgid "Slide Right"
402
+ msgstr ""
403
+
404
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
405
+ msgid "Slide Up"
406
+ msgstr ""
407
+
408
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
409
+ msgid "Slide Down"
410
+ msgstr ""
411
+
412
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
413
+ msgid "Cross Fade"
414
+ msgstr ""
415
+
416
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
417
+ msgid "Direct Fade"
418
+ msgstr ""
419
+
420
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
421
+ msgid "Random Animation"
422
+ msgstr ""
423
+
424
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
425
+ msgid "Natural and centered"
426
+ msgstr ""
427
+
428
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
429
+ msgid "Crop to fit"
430
+ msgstr ""
431
+
432
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
433
+ msgid "Stretch to fit"
434
+ msgstr ""
435
+
436
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:569
437
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:570
438
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:571
439
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:572
440
+ msgid "Miscellaneous"
441
+ msgstr ""
442
+
443
+ #: classes/SlideshowPluginWidget.php:23
444
+ msgid "Enables you to show your slideshows in the widget area of your website."
445
+ msgstr ""
446
+
447
+ #: classes/SlideshowPluginWidget.php:29
448
+ msgid "Slideshow Widget"
449
+ msgstr ""
450
+
451
+ #: views/SlideshowPlugin/slideshow.php:23
452
+ msgid "Play"
453
+ msgstr ""
454
+
455
+ #: views/SlideshowPlugin/slideshow.php:23
456
+ msgid "Pause"
457
+ msgstr ""
458
+
459
+ #: views/SlideshowPlugin/slideshow.php:25
460
+ msgid "Previous"
461
+ msgstr ""
462
+
463
+ #: views/SlideshowPlugin/slideshow.php:26
464
+ msgid "Next"
465
+ msgstr ""
466
+
467
+ #: views/SlideshowPlugin/slideshow.php:28
468
+ msgid "Go to slide"
469
+ msgstr ""
470
+
471
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:46
472
+ msgid "Default stylesheets"
473
+ msgstr ""
474
+
475
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:60
476
+ msgid "Create a new custom style from this style"
477
+ msgstr ""
478
+
479
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:62
480
+ msgid "Customize"
481
+ msgstr ""
482
+
483
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:76
484
+ msgid "Custom stylesheets"
485
+ msgstr ""
486
+
487
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:89
488
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:172
489
+ msgid "Edit this style"
490
+ msgstr ""
491
+
492
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:91
493
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:174
494
+ #: views/SlideshowPluginPostType/slides.php:138
495
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:112
496
+ msgid "Edit"
497
+ msgstr ""
498
+
499
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:98
500
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:181
501
+ msgid "Delete this style"
502
+ msgstr ""
503
+
504
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:100
505
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:183
506
+ msgid "Delete"
507
+ msgstr ""
508
+
509
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:110
510
+ msgid "Click 'Customize' to create a new custom stylesheet."
511
+ msgstr ""
512
+
513
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:130
514
+ msgid "Select a stylesheet to start customizing it."
515
+ msgstr ""
516
+
517
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:139
518
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:192
519
+ #: views/SlideshowPluginPostType/slides.php:59
520
+ #: views/SlideshowPluginPostType/slides.php:144
521
+ #: views/SlideshowPluginPostType/slides.php:196
522
+ #: views/SlideshowPluginPostType/slides.php:264
523
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:120
524
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:18
525
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:150
526
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:80
527
+ #: views/SlideshowPluginWidget/form.php:2
528
+ msgid "Title"
529
+ msgstr ""
530
+
531
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:148
532
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:200
533
+ msgid "Style"
534
+ msgstr ""
535
+
536
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:11
537
+ msgid "Note"
538
+ msgstr ""
539
+
540
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:18
541
+ #, php-format
542
+ msgid ""
543
+ "The settings set on this page apply only to newly created slideshows and "
544
+ "therefore do not alter any existing ones. To adapt a slideshow's settings, "
545
+ "%sclick here.%s"
546
+ msgstr ""
547
+
548
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:29
549
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:15
550
+ msgid "Default Slideshow Settings"
551
+ msgstr ""
552
+
553
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:41
554
+ #: views/SlideshowPluginPostType/settings.php:12
555
+ msgid "settings"
556
+ msgstr ""
557
+
558
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:77
559
+ msgid "Default Slideshow Stylesheet"
560
+ msgstr ""
561
+
562
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:11
563
+ msgid "Add slideshows"
564
+ msgstr ""
565
+
566
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:12
567
+ msgid "Edit slideshows"
568
+ msgstr ""
569
+
570
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:13
571
+ msgid "Delete slideshows"
572
+ msgstr ""
573
+
574
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:20
575
+ msgid "User Capabilities"
576
+ msgstr ""
577
+
578
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:22
579
+ msgid "Select the user roles that will able to perform certain actions."
580
+ msgstr ""
581
+
582
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:38
583
+ msgid "Untitled role"
584
+ msgstr ""
585
+
586
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:65
587
+ msgid "Settings"
588
+ msgstr ""
589
+
590
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:69
591
+ msgid "Stylesheet location"
592
+ msgstr ""
593
+
594
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:72
595
+ msgid "top"
596
+ msgstr ""
597
+
598
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:73
599
+ msgid "bottom"
600
+ msgstr ""
601
+
602
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:16
603
+ msgid "Custom Styles"
604
+ msgstr ""
605
+
606
+ #: views/SlideshowPluginPostType/information.php:1
607
+ msgid ""
608
+ "To use this slideshow in your website either add this piece of shortcode to "
609
+ "your posts or pages"
610
+ msgstr ""
611
+
612
+ #: views/SlideshowPluginPostType/information.php:5
613
+ msgid ""
614
+ "Or add this piece of code to where ever in your website you want to place "
615
+ "the slideshow"
616
+ msgstr ""
617
+
618
+ #: views/SlideshowPluginPostType/information.php:9
619
+ #, php-format
620
+ msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
621
+ msgstr ""
622
+
623
+ #: views/SlideshowPluginPostType/settings.php:26
624
+ #: views/SlideshowPluginPostType/style-settings.php:11
625
+ msgid "Default"
626
+ msgstr ""
627
+
628
+ #: views/SlideshowPluginPostType/slides.php:54
629
+ #: views/SlideshowPluginPostType/slides.php:191
630
+ #: views/SlideshowPluginSlideInserter/insert-text-button.php:2
631
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:9
632
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:69
633
+ msgid "Text slide"
634
+ msgstr ""
635
+
636
+ #: views/SlideshowPluginPostType/slides.php:61
637
+ #: views/SlideshowPluginPostType/slides.php:150
638
+ #: views/SlideshowPluginPostType/slides.php:198
639
+ #: views/SlideshowPluginPostType/slides.php:270
640
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:135
641
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:33
642
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:165
643
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:95
644
+ msgid "Description"
645
+ msgstr ""
646
+
647
+ #: views/SlideshowPluginPostType/slides.php:63
648
+ #: views/SlideshowPluginPostType/slides.php:200
649
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:51
650
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:113
651
+ msgid "Background color"
652
+ msgstr ""
653
+
654
+ #: views/SlideshowPluginPostType/slides.php:68
655
+ #: views/SlideshowPluginPostType/slides.php:155
656
+ #: views/SlideshowPluginPostType/slides.php:205
657
+ #: views/SlideshowPluginPostType/slides.php:275
658
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:150
659
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:59
660
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:180
661
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:121
662
+ msgid "URL"
663
+ msgstr ""
664
+
665
+ #: views/SlideshowPluginPostType/slides.php:70
666
+ #: views/SlideshowPluginPostType/slides.php:157
667
+ #: views/SlideshowPluginPostType/slides.php:207
668
+ #: views/SlideshowPluginPostType/slides.php:277
669
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:153
670
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:62
671
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:183
672
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:124
673
+ msgid "Open URL in"
674
+ msgstr ""
675
+
676
+ #: views/SlideshowPluginPostType/slides.php:72
677
+ #: views/SlideshowPluginPostType/slides.php:159
678
+ #: views/SlideshowPluginPostType/slides.php:209
679
+ #: views/SlideshowPluginPostType/slides.php:279
680
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:155
681
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:64
682
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:185
683
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:126
684
+ msgid "Same window"
685
+ msgstr ""
686
+
687
+ #: views/SlideshowPluginPostType/slides.php:73
688
+ #: views/SlideshowPluginPostType/slides.php:160
689
+ #: views/SlideshowPluginPostType/slides.php:210
690
+ #: views/SlideshowPluginPostType/slides.php:280
691
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:156
692
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:65
693
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:186
694
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:127
695
+ msgid "New window"
696
+ msgstr ""
697
+
698
+ #: views/SlideshowPluginPostType/slides.php:90
699
+ #: views/SlideshowPluginPostType/slides.php:230
700
+ #: views/SlideshowPluginSlideInserter/insert-video-button.php:2
701
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:94
702
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:26
703
+ msgid "Video slide"
704
+ msgstr ""
705
+
706
+ #: views/SlideshowPluginPostType/slides.php:95
707
+ #: views/SlideshowPluginPostType/slides.php:235
708
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:103
709
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:35
710
+ msgid "Youtube Video ID"
711
+ msgstr ""
712
+
713
+ #: views/SlideshowPluginPostType/slides.php:133
714
+ #: views/SlideshowPluginPostType/slides.php:255
715
+ #: views/SlideshowPluginSlideInserter/insert-image-button.php:2
716
+ #: views/SlideshowPluginSlideInserter/insert-image-button.php:4
717
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:101
718
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:135
719
+ msgid "Image slide"
720
+ msgstr ""
721
+
722
+ #: views/SlideshowPluginPostType/slides.php:171
723
+ msgid ""
724
+ "An error occurred while loading this slide, and it will not be present in "
725
+ "the slideshow"
726
+ msgstr ""
727
+
728
+ #: views/SlideshowPluginPostType/slides.php:177
729
+ #: views/SlideshowPluginPostType/slides.php:218
730
+ #: views/SlideshowPluginPostType/slides.php:243
731
+ #: views/SlideshowPluginPostType/slides.php:289
732
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:174
733
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:76
734
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:117
735
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:203
736
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:138
737
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:49
738
+ msgid "Delete slide"
739
+ msgstr ""
740
+
741
+ #: views/SlideshowPluginPostType/style-settings.php:22
742
+ #, php-format
743
+ msgid "Custom styles can be created and customized %shere%s."
744
+ msgstr ""
745
+
746
+ #: views/SlideshowPluginPostType/support-plugin.php:3
747
+ msgid "Help to keep this plugin free!"
748
+ msgstr ""
749
+
750
+ #: views/SlideshowPluginPostType/support-plugin.php:6
751
+ msgid ""
752
+ "In order to keep you provided with the newest features, updates and bug "
753
+ "fixes, a lot of motivation is required. Therefore I'm kindly asking you to "
754
+ "consider making a small donation to the plugin or rating it as 5-stars on "
755
+ "Wordpress.org. Thank you in advance!"
756
+ msgstr ""
757
+
758
+ #: views/SlideshowPluginPostType/support-plugin.php:15
759
+ msgid "Rate on Wordpress.org"
760
+ msgstr ""
761
+
762
+ #: views/SlideshowPluginPostType/support-plugin.php:24
763
+ msgid "Frequently Asked Questions (FAQ)"
764
+ msgstr ""
765
+
766
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
767
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
768
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
769
+ msgid "Insert a Slideshow"
770
+ msgstr ""
771
+
772
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
773
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
774
+ msgid "Insert Slideshow"
775
+ msgstr ""
776
+
777
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
778
+ msgid "Select a slideshow"
779
+ msgstr ""
780
+
781
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
782
+ #: views/SlideshowPluginWidget/form.php:12
783
+ msgid "Untitled slideshow"
784
+ msgstr ""
785
+
786
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
787
+ msgid "Cancel"
788
+ msgstr ""
789
+
790
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
791
+ #, php-format
792
+ msgid ""
793
+ "It seems you haven't created any slideshows yet. %sYou can create a "
794
+ "slideshow here!%s"
795
+ msgstr ""
796
+
797
+ #: views/SlideshowPluginSlideInserter/search-popup.php:6
798
+ msgid "Search"
799
+ msgstr ""
800
+
801
+ #: views/SlideshowPluginSlideInserter/search-popup.php:7
802
+ msgid "Search images by title or ID"
803
+ msgstr ""
804
+
805
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:90
806
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:4
807
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:89
808
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:130
809
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:58
810
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:21
811
+ msgid "Click to toggle"
812
+ msgstr ""
813
+
814
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:160
815
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:69
816
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:190
817
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:131
818
+ msgid "Don't let search engines follow link"
819
+ msgstr ""
820
+
821
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:168
822
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:197
823
+ msgid "Alternative text"
824
+ msgstr ""
825
+
826
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:48
827
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:110
828
+ msgid "Text color"
829
+ msgstr ""
830
+
831
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:53
832
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:115
833
+ msgid "(Leave empty for a transparent background)"
834
+ msgstr ""
835
+
836
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:110
837
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:42
838
+ msgid "Show related videos"
839
+ msgstr ""
840
+
841
+ #: views/SlideshowPluginUpload/upload-button.php:1
842
+ msgid "Upload/Manage Images"
843
+ msgstr ""
844
+
845
+ #: views/SlideshowPluginWidget/form.php:9
846
+ msgid "Random Slideshow"
847
+ msgstr ""
848
+
849
+ #~ msgid "Leave any field open to use default value."
850
+ #~ msgstr "Een veld dat open wordt gelaten neemt de standaardwaarde aan."
languages/slideshow-plugin-pl_PL.mo CHANGED
Binary file
languages/slideshow-plugin-pl_PL.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: 2014-03-19 20:34+0100\n"
6
- "PO-Revision-Date: 2014-03-19 20:34+0100\n"
7
  "Last-Translator: Stefan Boonstra <stefanboonstra@hotmail.com>\n"
8
  "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
  "Language: pl_PL\n"
@@ -12,7 +12,7 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
- "X-Generator: Poedit 1.6.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
  #: classes/SlideshowPluginGeneralSettings.php:82
@@ -414,6 +414,10 @@ msgstr "Slajd do góry"
414
  msgid "Slide Down"
415
  msgstr "Slajd w dół"
416
 
 
 
 
 
417
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
418
  msgid "Direct Fade"
419
  msgstr "Bezpośrednie zanikanie"
2
  msgstr ""
3
  "Project-Id-Version: Slideshow Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-08-19 12:00+0100\n"
6
+ "PO-Revision-Date: 2014-08-19 12:01+0100\n"
7
  "Last-Translator: Stefan Boonstra <stefanboonstra@hotmail.com>\n"
8
  "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
  "Language: pl_PL\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
  #: classes/SlideshowPluginGeneralSettings.php:82
414
  msgid "Slide Down"
415
  msgstr "Slajd w dół"
416
 
417
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
418
+ msgid "Cross Fade"
419
+ msgstr ""
420
+
421
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
422
  msgid "Direct Fade"
423
  msgstr "Bezpośrednie zanikanie"
languages/slideshow-plugin-pt_BR.mo CHANGED
Binary file
languages/slideshow-plugin-pt_BR.po CHANGED
@@ -2,16 +2,16 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Slideshow v2.2.10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-03-19 20:35+0100\n"
6
- "PO-Revision-Date: 2014-03-19 20:35+0100\n"
7
- "Last-Translator: admin <caixat@newer7.com.br>\n"
8
  "Language-Team: \n"
9
  "Language: pt_BR\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
- "X-Generator: Poedit 1.6.4\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
  "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
17
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
@@ -100,7 +100,7 @@ msgstr "Animação usada para a transição entre os slides"
100
  # @ slideshow-plugin
101
  #: classes/SlideshowPluginInstaller.php:805
102
  msgid "Slide"
103
- msgstr ""
104
 
105
  # @ slideshow-plugin
106
  #: classes/SlideshowPluginInstaller.php:805
@@ -301,12 +301,12 @@ msgstr "Configurações do slideshow"
301
  # @ slideshow-plugin
302
  #: classes/SlideshowPluginPostType.php:173
303
  msgid "Slideshow created"
304
- msgstr ""
305
 
306
  # @ slideshow-plugin
307
  #: classes/SlideshowPluginPostType.php:177
308
  msgid "Slideshow updated"
309
- msgstr ""
310
 
311
  # @ slideshow-plugin
312
  #: classes/SlideshowPluginPostType.php:224
@@ -317,11 +317,11 @@ msgstr "Inserir"
317
 
318
  #: classes/SlideshowPluginPostType.php:232
319
  msgid "Open all"
320
- msgstr ""
321
 
322
  #: classes/SlideshowPluginPostType.php:234
323
  msgid "Close all"
324
- msgstr ""
325
 
326
  # @ slideshow-plugin
327
  #: classes/SlideshowPluginPostType.php:240
@@ -331,11 +331,11 @@ msgstr "Adicione slides para este slideshow usando um dos botões acima."
331
 
332
  #: classes/SlideshowPluginPostType.php:320
333
  msgid "Duplicate"
334
- msgstr ""
335
 
336
  #: classes/SlideshowPluginPostType.php:371
337
  msgid "Copy"
338
- msgstr ""
339
 
340
  # @ slideshow-plugin
341
  #: classes/SlideshowPluginShortcode.php:148
@@ -457,11 +457,11 @@ msgstr "Ocultar painel de controle, exibir apenas quando o mouse passar sobre"
457
 
458
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:540
459
  msgid "Wait until the next slide has loaded before showing it"
460
- msgstr ""
461
 
462
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:541
463
  msgid "Show a loading icon until the first slide appears"
464
- msgstr ""
465
 
466
  # @ slideshow-plugin
467
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:542
@@ -494,6 +494,10 @@ msgstr "Deslize para cima"
494
  msgid "Slide Down"
495
  msgstr "Deslize para baixo"
496
 
 
 
 
 
497
  # @ slideshow-plugin
498
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
499
  msgid "Direct Fade"
@@ -506,15 +510,15 @@ msgstr "Animação aleatória"
506
 
507
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
508
  msgid "Natural and centered"
509
- msgstr ""
510
 
511
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
512
  msgid "Crop to fit"
513
- msgstr ""
514
 
515
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
516
  msgid "Stretch to fit"
517
- msgstr ""
518
 
519
  # @ slideshow-plugin
520
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:569
@@ -536,24 +540,24 @@ msgstr ""
536
 
537
  #: views/SlideshowPlugin/slideshow.php:23
538
  msgid "Play"
539
- msgstr ""
540
 
541
  #: views/SlideshowPlugin/slideshow.php:23
542
  msgid "Pause"
543
- msgstr ""
544
 
545
  #: views/SlideshowPlugin/slideshow.php:25
546
  msgid "Previous"
547
- msgstr ""
548
 
549
  #: views/SlideshowPlugin/slideshow.php:26
550
  msgid "Next"
551
- msgstr ""
552
 
553
  # @ slideshow-plugin
554
  #: views/SlideshowPlugin/slideshow.php:28
555
  msgid "Go to slide"
556
- msgstr ""
557
 
558
  # @ slideshow-plugin
559
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:46
@@ -604,12 +608,12 @@ msgstr "Excluir"
604
  # @ default
605
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:110
606
  msgid "Click 'Customize' to create a new custom stylesheet."
607
- msgstr ""
608
 
609
  # @ slideshow-plugin
610
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:130
611
  msgid "Select a stylesheet to start customizing it."
612
- msgstr ""
613
 
614
  # @ slideshow-plugin
615
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:139
@@ -705,15 +709,15 @@ msgstr "Configurações"
705
 
706
  #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:69
707
  msgid "Stylesheet location"
708
- msgstr ""
709
 
710
  #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:72
711
  msgid "top"
712
- msgstr ""
713
 
714
  #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:73
715
  msgid "bottom"
716
- msgstr ""
717
 
718
  # @ slideshow-plugin
719
  #: views/SlideshowPluginGeneralSettings/general-settings.php:16
@@ -787,7 +791,7 @@ msgstr "Cor de fundo"
787
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:180
788
  #: views/SlideshowPluginSlideshowSlide/backend_text.php:121
789
  msgid "URL"
790
- msgstr ""
791
 
792
  # @ slideshow-plugin
793
  #: views/SlideshowPluginPostType/slides.php:70
@@ -964,19 +968,19 @@ msgstr "Procurar imagens por título ou ID"
964
  #: views/SlideshowPluginSlideshowSlide/backend_text.php:58
965
  #: views/SlideshowPluginSlideshowSlide/backend_video.php:21
966
  msgid "Click to toggle"
967
- msgstr ""
968
 
969
  #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:160
970
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:69
971
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:190
972
  #: views/SlideshowPluginSlideshowSlide/backend_text.php:131
973
  msgid "Don't let search engines follow link"
974
- msgstr ""
975
 
976
  #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:168
977
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:197
978
  msgid "Alternative text"
979
- msgstr ""
980
 
981
  # @ slideshow-plugin
982
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:48
@@ -993,11 +997,11 @@ msgstr "(Deixe em branco para um fundo transparente)"
993
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:110
994
  #: views/SlideshowPluginSlideshowSlide/backend_video.php:42
995
  msgid "Show related videos"
996
- msgstr ""
997
 
998
  #: views/SlideshowPluginUpload/upload-button.php:1
999
  msgid "Upload/Manage Images"
1000
- msgstr ""
1001
 
1002
  # @ slideshow-plugin
1003
  #: views/SlideshowPluginWidget/form.php:9
2
  msgstr ""
3
  "Project-Id-Version: Slideshow v2.2.10\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-04-23 15:01+0100\n"
6
+ "PO-Revision-Date: 2015-04-23 15:01+0100\n"
7
+ "Last-Translator: Carlos Jordao <carlosjordao@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: pt_BR\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
+ "X-Generator: Poedit 1.7.6\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
  "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
17
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
100
  # @ slideshow-plugin
101
  #: classes/SlideshowPluginInstaller.php:805
102
  msgid "Slide"
103
+ msgstr "Deslizar"
104
 
105
  # @ slideshow-plugin
106
  #: classes/SlideshowPluginInstaller.php:805
301
  # @ slideshow-plugin
302
  #: classes/SlideshowPluginPostType.php:173
303
  msgid "Slideshow created"
304
+ msgstr "Slideshow criado"
305
 
306
  # @ slideshow-plugin
307
  #: classes/SlideshowPluginPostType.php:177
308
  msgid "Slideshow updated"
309
+ msgstr "Slideshow atualizado"
310
 
311
  # @ slideshow-plugin
312
  #: classes/SlideshowPluginPostType.php:224
317
 
318
  #: classes/SlideshowPluginPostType.php:232
319
  msgid "Open all"
320
+ msgstr "Abrir todos"
321
 
322
  #: classes/SlideshowPluginPostType.php:234
323
  msgid "Close all"
324
+ msgstr "Fechar todos"
325
 
326
  # @ slideshow-plugin
327
  #: classes/SlideshowPluginPostType.php:240
331
 
332
  #: classes/SlideshowPluginPostType.php:320
333
  msgid "Duplicate"
334
+ msgstr "Duplicar"
335
 
336
  #: classes/SlideshowPluginPostType.php:371
337
  msgid "Copy"
338
+ msgstr "Copiar"
339
 
340
  # @ slideshow-plugin
341
  #: classes/SlideshowPluginShortcode.php:148
457
 
458
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:540
459
  msgid "Wait until the next slide has loaded before showing it"
460
+ msgstr "Esperar até que o próximo slide tenha carregado antes de mostrá-lo"
461
 
462
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:541
463
  msgid "Show a loading icon until the first slide appears"
464
+ msgstr "Mostrar um ícone de carregando até o primeiro slide aparecer"
465
 
466
  # @ slideshow-plugin
467
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:542
494
  msgid "Slide Down"
495
  msgstr "Deslize para baixo"
496
 
497
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
498
+ msgid "Cross Fade"
499
+ msgstr ""
500
+
501
  # @ slideshow-plugin
502
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
503
  msgid "Direct Fade"
510
 
511
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
512
  msgid "Natural and centered"
513
+ msgstr "Natural e centrado"
514
 
515
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
516
  msgid "Crop to fit"
517
+ msgstr "Corte para enquadrar"
518
 
519
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
520
  msgid "Stretch to fit"
521
+ msgstr "Estique para enquadrar"
522
 
523
  # @ slideshow-plugin
524
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:569
540
 
541
  #: views/SlideshowPlugin/slideshow.php:23
542
  msgid "Play"
543
+ msgstr "Acionar"
544
 
545
  #: views/SlideshowPlugin/slideshow.php:23
546
  msgid "Pause"
547
+ msgstr "Pausar"
548
 
549
  #: views/SlideshowPlugin/slideshow.php:25
550
  msgid "Previous"
551
+ msgstr "Anterior"
552
 
553
  #: views/SlideshowPlugin/slideshow.php:26
554
  msgid "Next"
555
+ msgstr "Próximo"
556
 
557
  # @ slideshow-plugin
558
  #: views/SlideshowPlugin/slideshow.php:28
559
  msgid "Go to slide"
560
+ msgstr "Ir para o slide"
561
 
562
  # @ slideshow-plugin
563
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:46
608
  # @ default
609
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:110
610
  msgid "Click 'Customize' to create a new custom stylesheet."
611
+ msgstr "Clique 'Customizar' para criar uma nova folha de estilo."
612
 
613
  # @ slideshow-plugin
614
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:130
615
  msgid "Select a stylesheet to start customizing it."
616
+ msgstr "Selecione uma folha de estilo para customizá-la"
617
 
618
  # @ slideshow-plugin
619
  #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:139
709
 
710
  #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:69
711
  msgid "Stylesheet location"
712
+ msgstr "Localização da folha de estilo"
713
 
714
  #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:72
715
  msgid "top"
716
+ msgstr "topo"
717
 
718
  #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:73
719
  msgid "bottom"
720
+ msgstr "base"
721
 
722
  # @ slideshow-plugin
723
  #: views/SlideshowPluginGeneralSettings/general-settings.php:16
791
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:180
792
  #: views/SlideshowPluginSlideshowSlide/backend_text.php:121
793
  msgid "URL"
794
+ msgstr "URL"
795
 
796
  # @ slideshow-plugin
797
  #: views/SlideshowPluginPostType/slides.php:70
968
  #: views/SlideshowPluginSlideshowSlide/backend_text.php:58
969
  #: views/SlideshowPluginSlideshowSlide/backend_video.php:21
970
  msgid "Click to toggle"
971
+ msgstr "Clique para trocar"
972
 
973
  #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:160
974
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:69
975
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:190
976
  #: views/SlideshowPluginSlideshowSlide/backend_text.php:131
977
  msgid "Don't let search engines follow link"
978
+ msgstr "Não permitir aos mecanismos de busca seguirem o link"
979
 
980
  #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:168
981
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:197
982
  msgid "Alternative text"
983
+ msgstr "Texto alternativo"
984
 
985
  # @ slideshow-plugin
986
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:48
997
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:110
998
  #: views/SlideshowPluginSlideshowSlide/backend_video.php:42
999
  msgid "Show related videos"
1000
+ msgstr "Mostrar vídeos relacionados"
1001
 
1002
  #: views/SlideshowPluginUpload/upload-button.php:1
1003
  msgid "Upload/Manage Images"
1004
+ msgstr "Enviar/Gerenciar Imagens"
1005
 
1006
  # @ slideshow-plugin
1007
  #: views/SlideshowPluginWidget/form.php:9
languages/slideshow-plugin-pt_PT.mo CHANGED
Binary file
languages/slideshow-plugin-pt_PT.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: 2014-03-19 20:35+0100\n"
6
- "PO-Revision-Date: 2014-03-19 20:35+0100\n"
7
  "Last-Translator: Filipe Catraia <fcatraia@sapo.pt>\n"
8
  "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
  "Language: pt_PT\n"
@@ -12,7 +12,7 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
- "X-Generator: Poedit 1.6.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
  #: classes/SlideshowPluginGeneralSettings.php:82
@@ -419,6 +419,10 @@ msgstr "Deslizar para cima"
419
  msgid "Slide Down"
420
  msgstr "Deslizar para baixo"
421
 
 
 
 
 
422
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
423
  msgid "Direct Fade"
424
  msgstr "Desvanecimento directo"
2
  msgstr ""
3
  "Project-Id-Version: Slideshow Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-08-19 12:01+0100\n"
6
+ "PO-Revision-Date: 2014-08-19 12:02+0100\n"
7
  "Last-Translator: Filipe Catraia <fcatraia@sapo.pt>\n"
8
  "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
  "Language: pt_PT\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
  #: classes/SlideshowPluginGeneralSettings.php:82
419
  msgid "Slide Down"
420
  msgstr "Deslizar para baixo"
421
 
422
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
423
+ msgid "Cross Fade"
424
+ msgstr ""
425
+
426
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
427
  msgid "Direct Fade"
428
  msgstr "Desvanecimento directo"
languages/slideshow-plugin-ru_RU.mo CHANGED
Binary file
languages/slideshow-plugin-ru_RU.po CHANGED
@@ -2,17 +2,17 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Slideshow Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-03-19 20:35+0100\n"
6
- "PO-Revision-Date: 2014-03-19 20:35+0100\n"
7
  "Last-Translator: Dmitry Fatakov <dfatakov@mail.ru>\n"
8
  "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
- "Language: ru_UA\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
- "X-Generator: Poedit 1.6.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
  #: classes/SlideshowPluginGeneralSettings.php:82
@@ -416,6 +416,10 @@ msgstr "Сдвиг вверх"
416
  msgid "Slide Down"
417
  msgstr "Сдвиг вниз"
418
 
 
 
 
 
419
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
420
  msgid "Direct Fade"
421
  msgstr "Вспышка"
2
  msgstr ""
3
  "Project-Id-Version: Slideshow Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-08-19 12:02+0100\n"
6
+ "PO-Revision-Date: 2014-08-19 12:02+0100\n"
7
  "Last-Translator: Dmitry Fatakov <dfatakov@mail.ru>\n"
8
  "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
+ "Language: ru_RU\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.7\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
  #: classes/SlideshowPluginGeneralSettings.php:82
416
  msgid "Slide Down"
417
  msgstr "Сдвиг вниз"
418
 
419
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
420
+ msgid "Cross Fade"
421
+ msgstr ""
422
+
423
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
424
  msgid "Direct Fade"
425
  msgstr "Вспышка"
languages/slideshow-plugin-sr_RS.mo CHANGED
Binary file
languages/slideshow-plugin-sr_RS.po CHANGED
@@ -2,17 +2,17 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Slideshow Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-03-19 20:36+0100\n"
6
- "PO-Revision-Date: 2014-03-19 20:36+0100\n"
7
  "Last-Translator: Borisa Djuraskovic <borisad@webhostinghub.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.6.4\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
@@ -416,6 +416,10 @@ msgstr "Slide gore"
416
  msgid "Slide Down"
417
  msgstr "Slide dole"
418
 
 
 
 
 
419
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
420
  msgid "Direct Fade"
421
  msgstr "Direktno da izbledi"
2
  msgstr ""
3
  "Project-Id-Version: Slideshow Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-08-19 12:02+0100\n"
6
+ "PO-Revision-Date: 2014-08-19 12:03+0100\n"
7
  "Last-Translator: Borisa Djuraskovic <borisad@webhostinghub.com>\n"
8
  "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
+ "Language: sr_RS\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.7\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
416
  msgid "Slide Down"
417
  msgstr "Slide dole"
418
 
419
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
420
+ msgid "Cross Fade"
421
+ msgstr ""
422
+
423
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
424
  msgid "Direct Fade"
425
  msgstr "Direktno da izbledi"
languages/slideshow-plugin-sv_SE.mo CHANGED
Binary file
languages/slideshow-plugin-sv_SE.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: 2014-03-19 20:36+0100\n"
6
- "PO-Revision-Date: 2014-03-19 20:38+0100\n"
7
  "Last-Translator: Wilhelm Svenselius <wilhelm.svenselius@gmail.com>\n"
8
  "Language-Team: Wilhelm Svenselius <wilhelm.svenselius@gmail.com>\n"
9
  "Language: sv_SE\n"
@@ -12,7 +12,7 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
- "X-Generator: Poedit 1.6.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
  #: classes/SlideshowPluginGeneralSettings.php:82
@@ -408,6 +408,10 @@ msgstr "Animera uppåt"
408
  msgid "Slide Down"
409
  msgstr "Animera nedåt"
410
 
 
 
 
 
411
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
412
  msgid "Direct Fade"
413
  msgstr "Tona direkt"
2
  msgstr ""
3
  "Project-Id-Version: Slideshow Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-08-19 12:03+0100\n"
6
+ "PO-Revision-Date: 2014-08-19 12:03+0100\n"
7
  "Last-Translator: Wilhelm Svenselius <wilhelm.svenselius@gmail.com>\n"
8
  "Language-Team: Wilhelm Svenselius <wilhelm.svenselius@gmail.com>\n"
9
  "Language: sv_SE\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
  #: classes/SlideshowPluginGeneralSettings.php:82
408
  msgid "Slide Down"
409
  msgstr "Animera nedåt"
410
 
411
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
412
+ msgid "Cross Fade"
413
+ msgstr ""
414
+
415
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
416
  msgid "Direct Fade"
417
  msgstr "Tona direkt"
languages/slideshow-plugin-tr_TR.mo CHANGED
Binary file
languages/slideshow-plugin-tr_TR.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: 2014-03-19 20:38+0100\n"
6
- "PO-Revision-Date: 2014-03-19 20:38+0100\n"
7
  "Last-Translator: Kelkirpi <admin@kelkirpi.net>\n"
8
  "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
  "Language: tr_TR\n"
@@ -12,7 +12,7 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
- "X-Generator: Poedit 1.6.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
  #: classes/SlideshowPluginGeneralSettings.php:82
@@ -416,6 +416,10 @@ msgstr "Yukarı Doğru"
416
  msgid "Slide Down"
417
  msgstr "Aşağı Doğru"
418
 
 
 
 
 
419
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
420
  msgid "Direct Fade"
421
  msgstr "Direkt Solma"
2
  msgstr ""
3
  "Project-Id-Version: Slideshow Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-08-19 12:03+0100\n"
6
+ "PO-Revision-Date: 2014-08-19 12:03+0100\n"
7
  "Last-Translator: Kelkirpi <admin@kelkirpi.net>\n"
8
  "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
  "Language: tr_TR\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
  #: classes/SlideshowPluginGeneralSettings.php:82
416
  msgid "Slide Down"
417
  msgstr "Aşağı Doğru"
418
 
419
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
420
+ msgid "Cross Fade"
421
+ msgstr ""
422
+
423
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
424
  msgid "Direct Fade"
425
  msgstr "Direkt Solma"
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: 2014-03-19 20:38+0100\n"
6
- "PO-Revision-Date: 2014-03-19 20:38+0100\n"
7
  "Last-Translator: leo <441968345@qq.com>\n"
8
  "Language-Team: Kevin Tell\n"
9
  "Language: zh_CN\n"
@@ -13,7 +13,7 @@ msgstr ""
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Generator: Poedit 1.6.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: classes/SlideshowPluginGeneralSettings.php:82
@@ -409,6 +409,10 @@ msgstr ""
409
  msgid "Slide Down"
410
  msgstr ""
411
 
 
 
 
 
412
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
413
  msgid "Direct Fade"
414
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: Slideshow Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-08-19 12:03+0100\n"
6
+ "PO-Revision-Date: 2014-08-19 12:04+0100\n"
7
  "Last-Translator: leo <441968345@qq.com>\n"
8
  "Language-Team: Kevin Tell\n"
9
  "Language: zh_CN\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Poedit 1.5.7\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: classes/SlideshowPluginGeneralSettings.php:82
409
  msgid "Slide Down"
410
  msgstr ""
411
 
412
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
413
+ msgid "Cross Fade"
414
+ msgstr ""
415
+
416
  #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
417
  msgid "Direct Fade"
418
  msgstr ""
readme.txt CHANGED
@@ -4,8 +4,8 @@ Contributors: stefanboonstra
4
  Donate link: http://stefanboonstra.com/donate-to-slideshow/
5
  Tags: responsive, slideshow, slider, slide show, images, image, photo, video, text, gallery, galleries, jquery, javascript
6
  Requires at least: 3.5
7
- Tested up to: 3.9
8
- Stable tag: 2.2.21
9
  License: GPLv2
10
 
11
  Integrate a fancy slideshow in just five steps. - Rainbows. Rainbows everywhere.
@@ -36,25 +36,26 @@ different images, settings and styles for each one of them.
36
 
37
  = Languages =
38
 
39
- - Bulgarian (88% - bg_BG - Translated by [Ilko Ivanov](http://software.avalonbg.com/en/index.php))
40
- - Chinese (66% - zh_CN - Translated by [Kevin Tell](http://www.ivygg.com/) and [Leo Newbiesup](http://smallseotips.com/))
41
- - Czech (82% - cs_CZ - Translated by Edhel)
42
  - Dutch (100% - nl_NL - Translated by [Stefan Boonstra](http://stefanboonstra.com/) (That's me!))
43
  - English (100%)
44
  - Finnish (83% - fi - Translated by A. Nonymous)
45
  - French (91% - fr_FR - Translated by [Romain Sandri](http://www.onidesign.fr/))
46
- - German (84% - de_DE - Translated by [Markus Amann](http://www.dema-itsupport.com/))
47
  - Hebrew (53% - he_IL - Translated by Eli Segev)
48
  - Italian (83% - it_IT - Translated by [Tecnikgeek](http://tecnikgeek.com/))
49
- - Japanese (83% - ja - Translated by [Michihide Hotta](http://net-newbie.com/))
50
- - Persian (91% - fa_IR - Translated by [W3Design](http://w3design.ir/))
 
51
  - Polish (83% - pl_PL - Translated by Wicher Wiater)
52
- - Portuguese (75% - pt_BR - Translated by [Piero Luiz](http://www.newer7.com.br/))
53
  - Portuguese (83% - pt_PT - Translated by [Filipe Catraia](http://www.filipecatraia.com/))
54
  - Russian (83% - ru_RU - Translated by Dmitry Fatakov)
55
  - Serbo-Croatian (91% - sr_RS - Translated by [Webhosting Hub](http://www.webhostinghub.com/))
56
- - Spanish (52% - es_ES - Translated by [Violeta Rosales](https://twitter.com/violetisha))
57
- - Swedish (92% - sv_SE - Translated by [Åke Isacsson](http://www.nojdkund.se/) and Wilhelm Svenselius)
58
  - Turkish (83% - tr_TR - Translated by [İlker Akdoğan](http://www.kelkirpi.net/))
59
 
60
  Feel free to send me your own translation of the plugin to my e-mail address: wordpress@stefanboonstra.com. The original
@@ -180,6 +181,19 @@ personal taste.
180
 
181
  == Changelog ==
182
 
 
 
 
 
 
 
 
 
 
 
 
 
 
183
  = 2.2.21 =
184
  * Compatible with WordPress 3.9.
185
  * Added "Cross Fade" option to the animation settings.
4
  Donate link: http://stefanboonstra.com/donate-to-slideshow/
5
  Tags: responsive, slideshow, slider, slide show, images, image, photo, video, text, gallery, galleries, jquery, javascript
6
  Requires at least: 3.5
7
+ Tested up to: 4.2
8
+ Stable tag: 2.2.22
9
  License: GPLv2
10
 
11
  Integrate a fancy slideshow in just five steps. - Rainbows. Rainbows everywhere.
36
 
37
  = Languages =
38
 
39
+ - Bulgarian (87% - bg_BG - Translated by [Ilko Ivanov](http://software.avalonbg.com/en/index.php))
40
+ - Chinese (65% - zh_CN - Translated by [Kevin Tell](http://www.ivygg.com/) and [Leo Newbiesup](http://smallseotips.com/))
41
+ - Czech (81% - cs_CZ - Translated by Edhel)
42
  - Dutch (100% - nl_NL - Translated by [Stefan Boonstra](http://stefanboonstra.com/) (That's me!))
43
  - English (100%)
44
  - Finnish (83% - fi - Translated by A. Nonymous)
45
  - French (91% - fr_FR - Translated by [Romain Sandri](http://www.onidesign.fr/))
46
+ - German (99% - de_DE - Translated by [Markus Amann](http://www.dema-itsupport.com/) and others)
47
  - Hebrew (53% - he_IL - Translated by Eli Segev)
48
  - Italian (83% - it_IT - Translated by [Tecnikgeek](http://tecnikgeek.com/))
49
+ - Japanese (82% - ja - Translated by [Michihide Hotta](http://net-newbie.com/))
50
+ - Norwegian (99% - nb_NO - Translated by A. Nonymous)
51
+ - Persian (100% - fa_IR - Translated by [W3Design](http://w3design.ir/))
52
  - Polish (83% - pl_PL - Translated by Wicher Wiater)
53
+ - Portuguese (92% - pt_BR - Translated by [Piero Luiz](http://www.newer7.com.br/) and others)
54
  - Portuguese (83% - pt_PT - Translated by [Filipe Catraia](http://www.filipecatraia.com/))
55
  - Russian (83% - ru_RU - Translated by Dmitry Fatakov)
56
  - Serbo-Croatian (91% - sr_RS - Translated by [Webhosting Hub](http://www.webhostinghub.com/))
57
+ - Spanish (51% - es_ES - Translated by [Violeta Rosales](https://twitter.com/violetisha))
58
+ - Swedish (91% - sv_SE - Translated by [Åke Isacsson](http://www.nojdkund.se/) and Wilhelm Svenselius)
59
  - Turkish (83% - tr_TR - Translated by [İlker Akdoğan](http://www.kelkirpi.net/))
60
 
61
  Feel free to send me your own translation of the plugin to my e-mail address: wordpress@stefanboonstra.com. The original
181
 
182
  == Changelog ==
183
 
184
+ = 2.2.22 =
185
+ * Compatible with WordPress 4.2.
186
+ * Default stylesheets are no longer dynamically loaded through admin-ajax.php.
187
+ * Fixed: Security vulnerability in the SlideshowPluginSlideshowStylesheet class.
188
+ * Fixed: An issue with admin-ajax.php when the frontend uses HTTP, while the backend uses HTTPS. Thanks to [Chris Scott](https://github.com/chrisscott)
189
+ * Fixed: A bug that caused the previous slide button and the navigation bullets to malfunction on "Cross Fade" setting.
190
+ * Fixed: Slideshow container calculation now uses the JavaScript round function instead of the floor function.
191
+ * Fixed: Separated assignment of $sessionID and increment of SlideshowPlugin::$sessionCounter.
192
+ * Added Norwegian translation by A. Nonymous.
193
+ * Updated Persian translation by W3Design.
194
+ * Updated German translation by A. Nonymous.
195
+ * Updated Brazilian Portuguese by A. Nonymous.
196
+
197
  = 2.2.21 =
198
  * Compatible with WordPress 3.9.
199
  * Added "Cross Fade" option to the animation 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.2.21
7
  Requires at least: 3.5
8
  Author: StefanBoonstra
9
  Author URI: http://stefanboonstra.com/
@@ -22,7 +22,7 @@
22
  class SlideshowPluginMain
23
  {
24
  /** @var string $version */
25
- static $version = '2.2.21';
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.22
7
  Requires at least: 3.5
8
  Author: StefanBoonstra
9
  Author URI: http://stefanboonstra.com/
22
  class SlideshowPluginMain
23
  {
24
  /** @var string $version */
25
+ static $version = '2.2.22';
26
 
27
  /**
28
  * Bootstraps the application by assigning the right functions to
style/SlideshowPlugin/functional.css CHANGED
@@ -1,149 +1,149 @@
1
- .slideshow_container {
2
- margin: 0;
3
- position: relative;
4
- width: 100%;
5
- }
6
- .slideshow_container div {
7
- clear: none !important;
8
- max-width: none !important;
9
- padding: 0;
10
- }
11
- .slideshow_container img {
12
- border: none;
13
- margin: 0;
14
- padding: 0;
15
- max-width: none !important;
16
- }
17
- .slideshow_container p {
18
- margin: 0;
19
- padding: 10px;
20
- }
21
- .slideshow_container a {
22
- margin: 0 !important;
23
- padding: 0 !important;
24
- display: block !important;
25
- }
26
- .slideshow_container ul {
27
- margin: 0;
28
- padding: 0;
29
- }
30
- .slideshow_container ul li {
31
- margin: 0;
32
- padding: 0;
33
- }
34
- .slideshow_container h1,
35
- .slideshow_container h2,
36
- .slideshow_container h3,
37
- .slideshow_container h4,
38
- .slideshow_container h5,
39
- .slideshow_container h6 {
40
- margin: 0;
41
- padding: 10px;
42
- }
43
- .slideshow_container .slideshow_transparent,
44
- .slideshow_container .slideshow_transparent:hover {
45
- zoom: 1;
46
- }
47
- .slideshow_container .slideshow_content {
48
- position: relative !important;
49
- overflow: hidden !important;
50
- }
51
- .slideshow_container .slideshow_view {
52
- position: absolute !important;
53
- top: 0;
54
- left: 0;
55
- width: 0;
56
- height: 0;
57
- overflow: hidden !important;
58
- }
59
- .slideshow_container .slideshow_view .slideshow_slide {
60
- position: relative !important;
61
- float: left !important;
62
- overflow: hidden !important;
63
- }
64
- .slideshow_container .slideshow_view .slideshow_slide.slideshow_slide_text .slideshow_background_anchor {
65
- position: absolute;
66
- top: 0;
67
- }
68
- .slideshow_container .slideshow_view .slideshow_slide.slideshow_slide_image img {
69
- float: none;
70
- }
71
- .slideshow_container .slideshow_view .slideshow_slide.slideshow_slide_image .slideshow_description_box {
72
- display: none;
73
- position: absolute;
74
- width: 100%;
75
- }
76
- .slideshow_container .slideshow_controlPanel {
77
- position: absolute;
78
- top: 5px;
79
- left: 50%;
80
- display: none;
81
- z-index: 2;
82
- }
83
- .slideshow_container .slideshow_controlPanel ul {
84
- list-style: none;
85
- margin: 0;
86
- padding: 0;
87
- }
88
- .slideshow_container .slideshow_controlPanel ul li {
89
- float: left;
90
- }
91
- .slideshow_container .slideshow_controlPanel ul li:hover {
92
- cursor: pointer;
93
- }
94
- .slideshow_container .slideshow_button {
95
- padding: 0;
96
- position: absolute;
97
- top: 50%;
98
- cursor: pointer;
99
- display: none;
100
- z-index: 2;
101
- }
102
- .slideshow_container .slideshow_button.slideshow_previous {
103
- left: 5px;
104
- }
105
- .slideshow_container .slideshow_button.slideshow_next {
106
- right: 5px;
107
- }
108
- .slideshow_container .slideshow_pagination {
109
- height: 0;
110
- position: absolute;
111
- width: 100%;
112
- display: none;
113
- z-index: 2;
114
- }
115
- .slideshow_container .slideshow_pagination .slideshow_pagination_center {
116
- display: table;
117
- margin: 0 auto;
118
- }
119
- .slideshow_container .slideshow_pagination .slideshow_pagination_center ul {
120
- list-style: none;
121
- margin: 0;
122
- padding: 0;
123
- }
124
- .slideshow_container .slideshow_pagination .slideshow_pagination_center ul li {
125
- display: inline;
126
- float: left;
127
- }
128
- .slideshow_container .slideshow_pagination .slideshow_pagination_center ul li:hover {
129
- cursor: pointer;
130
- }
131
- .slideshow_container .assistive-text {
132
- clip: rect(1px, 1px, 1px, 1px);
133
- position: absolute !important;
134
- }
135
- .slideshow_container .hide-text {
136
- font: 0/0 a;
137
- color: rgba(0, 0, 0, 0);
138
- text-shadow: none;
139
- background-color: rgba(0, 0, 0, 0);
140
- border: 0;
141
- }
142
- .slideshow_container .slideshow_manufacturer {
143
- position: absolute !important;
144
- height: 1px;
145
- width: 1px;
146
- overflow: hidden;
147
- clip: rect(1px 1px 1px 1px);
148
- clip: rect(1px, 1px, 1px, 1px);
149
- }
1
+ .slideshow_container {
2
+ margin: 0;
3
+ position: relative;
4
+ width: 100%;
5
+ }
6
+ .slideshow_container div {
7
+ clear: none !important;
8
+ max-width: none !important;
9
+ padding: 0;
10
+ }
11
+ .slideshow_container img {
12
+ border: none;
13
+ margin: 0;
14
+ padding: 0;
15
+ max-width: none !important;
16
+ }
17
+ .slideshow_container p {
18
+ margin: 0;
19
+ padding: 10px;
20
+ }
21
+ .slideshow_container a {
22
+ margin: 0 !important;
23
+ padding: 0 !important;
24
+ display: block !important;
25
+ }
26
+ .slideshow_container ul {
27
+ margin: 0;
28
+ padding: 0;
29
+ }
30
+ .slideshow_container ul li {
31
+ margin: 0;
32
+ padding: 0;
33
+ }
34
+ .slideshow_container h1,
35
+ .slideshow_container h2,
36
+ .slideshow_container h3,
37
+ .slideshow_container h4,
38
+ .slideshow_container h5,
39
+ .slideshow_container h6 {
40
+ margin: 0;
41
+ padding: 10px;
42
+ }
43
+ .slideshow_container .slideshow_transparent,
44
+ .slideshow_container .slideshow_transparent:hover {
45
+ zoom: 1;
46
+ }
47
+ .slideshow_container .slideshow_content {
48
+ position: relative !important;
49
+ overflow: hidden !important;
50
+ }
51
+ .slideshow_container .slideshow_view {
52
+ position: absolute !important;
53
+ top: 0;
54
+ left: 0;
55
+ width: 0;
56
+ height: 0;
57
+ overflow: hidden !important;
58
+ }
59
+ .slideshow_container .slideshow_view .slideshow_slide {
60
+ position: relative !important;
61
+ float: left !important;
62
+ overflow: hidden !important;
63
+ }
64
+ .slideshow_container .slideshow_view .slideshow_slide.slideshow_slide_text .slideshow_background_anchor {
65
+ position: absolute;
66
+ top: 0;
67
+ }
68
+ .slideshow_container .slideshow_view .slideshow_slide.slideshow_slide_image img {
69
+ float: none;
70
+ }
71
+ .slideshow_container .slideshow_view .slideshow_slide.slideshow_slide_image .slideshow_description_box {
72
+ display: none;
73
+ position: absolute;
74
+ width: 100%;
75
+ }
76
+ .slideshow_container .slideshow_controlPanel {
77
+ position: absolute;
78
+ top: 5px;
79
+ left: 50%;
80
+ display: none;
81
+ z-index: 2;
82
+ }
83
+ .slideshow_container .slideshow_controlPanel ul {
84
+ list-style: none;
85
+ margin: 0;
86
+ padding: 0;
87
+ }
88
+ .slideshow_container .slideshow_controlPanel ul li {
89
+ float: left;
90
+ }
91
+ .slideshow_container .slideshow_controlPanel ul li:hover {
92
+ cursor: pointer;
93
+ }
94
+ .slideshow_container .slideshow_button {
95
+ padding: 0;
96
+ position: absolute;
97
+ top: 50%;
98
+ cursor: pointer;
99
+ display: none;
100
+ z-index: 2;
101
+ }
102
+ .slideshow_container .slideshow_button.slideshow_previous {
103
+ left: 5px;
104
+ }
105
+ .slideshow_container .slideshow_button.slideshow_next {
106
+ right: 5px;
107
+ }
108
+ .slideshow_container .slideshow_pagination {
109
+ height: 0;
110
+ position: absolute;
111
+ width: 100%;
112
+ display: none;
113
+ z-index: 2;
114
+ }
115
+ .slideshow_container .slideshow_pagination .slideshow_pagination_center {
116
+ display: table;
117
+ margin: 0 auto;
118
+ }
119
+ .slideshow_container .slideshow_pagination .slideshow_pagination_center ul {
120
+ list-style: none;
121
+ margin: 0;
122
+ padding: 0;
123
+ }
124
+ .slideshow_container .slideshow_pagination .slideshow_pagination_center ul li {
125
+ display: inline;
126
+ float: left;
127
+ }
128
+ .slideshow_container .slideshow_pagination .slideshow_pagination_center ul li:hover {
129
+ cursor: pointer;
130
+ }
131
+ .slideshow_container .assistive-text {
132
+ clip: rect(1px, 1px, 1px, 1px);
133
+ position: absolute !important;
134
+ }
135
+ .slideshow_container .hide-text {
136
+ font: 0/0 a;
137
+ color: rgba(0, 0, 0, 0);
138
+ text-shadow: none;
139
+ background-color: rgba(0, 0, 0, 0);
140
+ border: 0;
141
+ }
142
+ .slideshow_container .slideshow_manufacturer {
143
+ position: absolute !important;
144
+ height: 1px;
145
+ width: 1px;
146
+ overflow: hidden;
147
+ clip: rect(1px 1px 1px 1px);
148
+ clip: rect(1px, 1px, 1px, 1px);
149
+ }