Slideshow - Version 2.2.12

Version Description

  • Compatible with WordPress 3.6.
  • Complete javascript revision to be better manageable with the help of the Prepros tool.
  • Related videos can now be enabled or disabled on YouTube videos.
  • YouTube API now is only loaded when a video slide needs to be shown.
  • Re-arranged the 'General Settings' page to have a 'General Settings' tab that contains overall system settings.
  • Added option to choose the loading location of the stylesheets, as IE8 and older don't always allow in-body styling.
  • Implemented a new algorithm for randomizing slides.
  • Slideshow can now wait for a slide to load before showing it.
  • Fixed: The 'Enable responsiveness' setting disappeared when disabling the 'Show title and description' option.
  • Added Turkish translation by lker Akdoan.
  • Added Polish translation by Wicher Wiater.
  • Added Finnish translation by an anonymous supporter.
  • Updated French translation by Romain Sandri.
  • Added Portuguese translation by Filipe Catraia.
  • Added Persian translation by W3Design.
  • Added Italian translation by Tecnikgeek.
  • Added Japanese translation by Michihide Hotta.
Download this release

Release Info

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

Code changes from version 2.2.11 to 2.2.12

Files changed (75) hide show
  1. classes/SlideshowPlugin.php +66 -62
  2. classes/{SlideshowPluginAjax.php → SlideshowPluginAJAX.php} +8 -8
  3. classes/SlideshowPluginGeneralSettings.php +167 -81
  4. classes/SlideshowPluginInstaller.php +298 -122
  5. classes/SlideshowPluginPostType.php +80 -132
  6. classes/SlideshowPluginSecurity.php +68 -49
  7. classes/SlideshowPluginShortcode.php +49 -34
  8. classes/SlideshowPluginSlideInserter.php +123 -80
  9. classes/SlideshowPluginSlideshowSettingsHandler.php +265 -106
  10. classes/SlideshowPluginSlideshowSlide.php +45 -22
  11. classes/SlideshowPluginSlideshowStylesheet.php +139 -13
  12. classes/SlideshowPluginSlideshowView.php +42 -24
  13. classes/SlideshowPluginWidget.php +46 -25
  14. css/all.backend.css +136 -0
  15. images/SlideshowPlugin/loading-icon-128x128.gif +0 -0
  16. images/SlideshowPlugin/loading-icon-512-512.gif +0 -0
  17. js/SlideshowPlugin/slideshow.min.js +0 -1
  18. js/SlideshowPluginFeedback/feedback.js +0 -12
  19. js/SlideshowPluginGeneralSettings/general-settings.js +0 -227
  20. js/SlideshowPluginPostType/jscolor/arrow.gif +0 -0
  21. js/SlideshowPluginPostType/jscolor/cross.gif +0 -0
  22. js/SlideshowPluginPostType/jscolor/hs.png +0 -0
  23. js/SlideshowPluginPostType/jscolor/hv.png +0 -0
  24. js/SlideshowPluginPostType/jscolor/jscolor.js +0 -1
  25. js/SlideshowPluginPostType/post-type-handler.js +0 -49
  26. js/SlideshowPluginPostType/style-settings.js +0 -19
  27. js/SlideshowPluginShortcode/shortcode-inserter.js +0 -28
  28. js/SlideshowPluginSlideInserter/slide-inserter.js +0 -301
  29. js/SlideshowPluginUpload/upload-button.js +0 -8
  30. js/min/all.backend.min.js +896 -0
  31. js/min/all.frontend.min.js +1 -0
  32. languages/slideshow-plugin-cs_CZ.mo +0 -0
  33. languages/slideshow-plugin-cs_CZ.po +827 -793
  34. languages/slideshow-plugin-de_DE.mo +0 -0
  35. languages/slideshow-plugin-de_DE.po +789 -0
  36. languages/slideshow-plugin-es_ES.mo +0 -0
  37. languages/slideshow-plugin-es_ES.po +819 -783
  38. languages/slideshow-plugin-fa_IR.mo +0 -0
  39. languages/slideshow-plugin-fa_IR.po +775 -0
  40. languages/slideshow-plugin-fi.mo +0 -0
  41. languages/slideshow-plugin-fi.po +782 -0
  42. languages/slideshow-plugin-fr_FR.mo +0 -0
  43. languages/slideshow-plugin-fr_FR.po +832 -782
  44. languages/slideshow-plugin-he_IL.mo +0 -0
  45. languages/slideshow-plugin-he_IL.po +804 -768
  46. languages/slideshow-plugin-it_IT.mo +0 -0
  47. languages/slideshow-plugin-it_IT.po +795 -0
  48. languages/slideshow-plugin-ja.mo +0 -0
  49. languages/slideshow-plugin-ja.po +782 -0
  50. languages/slideshow-plugin-nl_NL.mo +0 -0
  51. languages/slideshow-plugin-nl_NL.po +860 -817
  52. languages/slideshow-plugin-original.mo +0 -0
  53. languages/slideshow-plugin-original.po +761 -725
  54. languages/slideshow-plugin-pl_PL.mo +0 -0
  55. languages/slideshow-plugin-pl_PL.po +775 -0
  56. languages/slideshow-plugin-pt_PT.mo +0 -0
  57. languages/slideshow-plugin-pt_PT.po +791 -0
  58. languages/slideshow-plugin-ru_RU.mo +0 -0
  59. languages/slideshow-plugin-ru_RU.po +818 -782
  60. languages/slideshow-plugin-sv_SE.mo +0 -0
  61. languages/slideshow-plugin-sv_SE.po +778 -742
  62. languages/slideshow-plugin-tr_TR.mo +0 -0
  63. languages/slideshow-plugin-tr_TR.po +255 -219
  64. languages/slideshow-plugin-zh_CN.mo +0 -0
  65. languages/slideshow-plugin-zh_CN.po +769 -733
  66. readme.txt +48 -13
  67. slideshow.php +61 -17
  68. style/SlideshowPlugin/functional.css +118 -1
  69. style/SlideshowPlugin/style-dark.css +15 -3
  70. style/SlideshowPlugin/style-light.css +15 -3
  71. style/SlideshowPluginGeneralSettings/general-settings.css +0 -101
  72. style/SlideshowPluginPostType/style.css +0 -20
  73. style/SlideshowPluginSlideInserter/slide-inserter.css +0 -49
  74. views/SlideshowPlugin/slideshow.php +8 -4
  75. views/SlideshowPluginGeneralSettings/{custom-styles.php → custom-styles-tab.php} +1 -1
classes/SlideshowPlugin.php CHANGED
@@ -1,14 +1,13 @@
1
  <?php
2
  /**
3
- * Class SlideslowPlugin is called whenever a slideshow do_action tag is come across.
4
  * Responsible for outputting the slideshow's HTML, CSS and Javascript.
5
  *
6
  * @since 1.0.0
7
  * @author: Stefan Boonstra
8
- * @version: 03-03-2013
9
  */
10
- class SlideshowPlugin {
11
-
12
  /** int $sessionCounter */
13
  private static $sessionCounter = 0;
14
 
@@ -18,7 +17,8 @@ class SlideshowPlugin {
18
  * @since 1.2.0
19
  * @param int $postId
20
  */
21
- static function deploy($postId = null){
 
22
  echo self::prepare($postId);
23
  }
24
 
@@ -33,99 +33,92 @@ class SlideshowPlugin {
33
  * @param int $postId
34
  * @return String $output
35
  */
36
- static function prepare($postId = null){
37
-
38
  $post = null;
39
 
40
  // Get post by its ID, if the ID is not a negative value
41
- if(is_numeric($postId) && $postId >= 0)
 
 
42
  $post = get_post($postId);
 
43
 
44
  // Get slideshow by slug when it's a non-empty string
45
- if($post === null && is_string($postId) && !is_numeric($postId) && !empty($postId)){
 
 
 
 
46
  $query = new WP_Query(array(
47
- 'post_type' => SlideshowPluginPostType::$postType,
48
- 'name' => $postId,
49
- 'orderby' => 'post_date',
50
- 'order' => 'DESC',
51
  'suppress_filters' => true
52
  ));
53
 
54
  if($query->have_posts())
 
55
  $post = $query->next_post();
 
56
  }
57
 
58
  // When no slideshow is found, get one at random
59
- if($post === null){
 
60
  $post = get_posts(array(
61
- 'numberposts' => 1,
62
- 'offset' => 0,
63
- 'orderby' => 'rand',
64
- 'post_type' => SlideshowPluginPostType::$postType,
65
  'suppress_filters' => true
66
  ));
67
 
68
  if(is_array($post))
 
69
  $post = $post[0];
 
70
  }
71
 
72
  // Exit on error
73
  if($post === null)
74
- return '<!-- Wordpress Slideshow - No slideshows available -->';
 
 
75
 
76
  // Log slideshow's issues to be able to track them on the page.
77
  $log = array();
78
 
79
  // Get views
80
  $views = SlideshowPluginSlideshowSettingsHandler::getViews($post->ID);
81
- if(!is_array($views) || count($views) <= 0)
 
 
 
82
  $log[] = 'No views were found';
 
83
 
84
  // Get settings
85
- $settings = SlideshowPluginSlideshowSettingsHandler::getSettings($post->ID);
86
  $styleSettings = SlideshowPluginSlideshowSettingsHandler::getStyleSettings($post->ID);
87
 
88
  // The slideshow's session ID, allows JavaScript and CSS to distinguish between multiple slideshows
89
  $sessionID = self::$sessionCounter++;
90
 
91
- // Try to get a custom stylesheet
92
- if(isset($styleSettings['style'])){
93
-
94
- // Try to get the custom style's version
95
- $customStyle = get_option($styleSettings['style'], false);
96
- $customStyleVersion = false;
97
- if($customStyle){
98
- $customStyleVersion = get_option($styleSettings['style'] . '_version', false);
99
- }
100
-
101
- // Style name and version
102
- if($customStyle && $customStyleVersion){
103
- $styleName = $styleSettings['style'];
104
- $styleVersion = $customStyleVersion;
105
- }else{
106
- $styleName = str_replace('.css', '', $styleSettings['style']);
107
- $styleVersion = SlideshowPluginMain::$version;
108
- }
109
- }else{
110
- $styleName = 'style-light';
111
- $styleVersion = SlideshowPluginMain::$version;
112
  }
113
 
114
- // Register function stylesheet
115
- wp_enqueue_style(
116
- 'slideshow-jquery-image-gallery-stylesheet_functional',
117
- SlideshowPluginMain::getPluginUrl() . '/style/' . __CLASS__ . '/functional.css',
118
- array(),
119
- SlideshowPluginMain::$version
120
- );
121
-
122
- // Enqueue stylesheet
123
- wp_enqueue_style(
124
- 'slideshow-jquery-image-gallery-ajax-stylesheet_' . $styleName,
125
- admin_url('admin-ajax.php?action=slideshow_jquery_image_gallery_load_stylesheet&style=' . $styleName),
126
- array(),
127
- $styleVersion
128
- );
129
 
130
  // Include output file to store output in $output.
131
  $output = '';
@@ -136,27 +129,38 @@ class SlideshowPlugin {
136
  // Enqueue slideshow script
137
  wp_enqueue_script(
138
  'slideshow-jquery-image-gallery-script',
139
- SlideshowPluginMain::getPluginUrl() . '/js/' . __CLASS__ . '/slideshow.min.js',
140
  array('jquery'),
141
  SlideshowPluginMain::$version
142
  );
143
 
144
  // Set dimensionWidth and dimensionHeight if dimensions should be preserved
145
- if(isset($settings['preserveSlideshowDimensions']) && $settings['preserveSlideshowDimensions'] == 'true'){
146
-
 
147
  $aspectRatio = explode(':', $settings['aspectRatio']);
148
 
149
  // Width
150
- if(isset($aspectRatio[0]) && is_numeric($aspectRatio[0]))
 
 
151
  $settings['dimensionWidth'] = $aspectRatio[0];
 
152
  else
 
153
  $settings['dimensionWidth'] = 1;
 
154
 
155
  // Height
156
- if(isset($aspectRatio[1]) && is_numeric($aspectRatio[1]))
 
 
157
  $settings['dimensionHeight'] = $aspectRatio[1];
 
158
  else
 
159
  $settings['dimensionHeight'] = 1;
 
160
  }
161
 
162
  // Include slideshow settings by localizing them
1
  <?php
2
  /**
3
+ * Class SlideshowPlugin is called whenever a slideshow do_action tag is come across.
4
  * Responsible for outputting the slideshow's HTML, CSS and Javascript.
5
  *
6
  * @since 1.0.0
7
  * @author: Stefan Boonstra
 
8
  */
9
+ class SlideshowPlugin
10
+ {
11
  /** int $sessionCounter */
12
  private static $sessionCounter = 0;
13
 
17
  * @since 1.2.0
18
  * @param int $postId
19
  */
20
+ static function deploy($postId = null)
21
+ {
22
  echo self::prepare($postId);
23
  }
24
 
33
  * @param int $postId
34
  * @return String $output
35
  */
36
+ static function prepare($postId = null)
37
+ {
38
  $post = null;
39
 
40
  // Get post by its ID, if the ID is not a negative value
41
+ if (is_numeric($postId) &&
42
+ $postId >= 0)
43
+ {
44
  $post = get_post($postId);
45
+ }
46
 
47
  // Get slideshow by slug when it's a non-empty string
48
+ if ($post === null &&
49
+ is_string($postId) &&
50
+ !is_numeric($postId) &&
51
+ !empty($postId))
52
+ {
53
  $query = new WP_Query(array(
54
+ 'post_type' => SlideshowPluginPostType::$postType,
55
+ 'name' => $postId,
56
+ 'orderby' => 'post_date',
57
+ 'order' => 'DESC',
58
  'suppress_filters' => true
59
  ));
60
 
61
  if($query->have_posts())
62
+ {
63
  $post = $query->next_post();
64
+ }
65
  }
66
 
67
  // When no slideshow is found, get one at random
68
+ if ($post === null)
69
+ {
70
  $post = get_posts(array(
71
+ 'numberposts' => 1,
72
+ 'offset' => 0,
73
+ 'orderby' => 'rand',
74
+ 'post_type' => SlideshowPluginPostType::$postType,
75
  'suppress_filters' => true
76
  ));
77
 
78
  if(is_array($post))
79
+ {
80
  $post = $post[0];
81
+ }
82
  }
83
 
84
  // Exit on error
85
  if($post === null)
86
+ {
87
+ return '<!-- WordPress Slideshow - No slideshows available -->';
88
+ }
89
 
90
  // Log slideshow's issues to be able to track them on the page.
91
  $log = array();
92
 
93
  // Get views
94
  $views = SlideshowPluginSlideshowSettingsHandler::getViews($post->ID);
95
+
96
+ if (!is_array($views) ||
97
+ count($views) <= 0)
98
+ {
99
  $log[] = 'No views were found';
100
+ }
101
 
102
  // Get settings
103
+ $settings = SlideshowPluginSlideshowSettingsHandler::getSettings($post->ID);
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)
111
+ {
112
+ wp_enqueue_style(
113
+ 'slideshow-jquery-image-gallery-stylesheet_functional',
114
+ SlideshowPluginMain::getPluginUrl() . '/style/' . __CLASS__ . '/functional.css',
115
+ array(),
116
+ SlideshowPluginMain::$version
117
+ );
 
 
 
 
 
 
 
 
 
 
 
 
118
  }
119
 
120
+ // Check if requested style is available. If not, use the default
121
+ list($styleName, $styleVersion) = SlideshowPluginSlideshowStylesheet::enqueueStylesheet($styleSettings['style']);
 
 
 
 
 
 
 
 
 
 
 
 
 
122
 
123
  // Include output file to store output in $output.
124
  $output = '';
129
  // Enqueue slideshow script
130
  wp_enqueue_script(
131
  'slideshow-jquery-image-gallery-script',
132
+ SlideshowPluginMain::getPluginUrl() . '/js/min/all.frontend.min.js',
133
  array('jquery'),
134
  SlideshowPluginMain::$version
135
  );
136
 
137
  // Set dimensionWidth and dimensionHeight if dimensions should be preserved
138
+ if (isset($settings['preserveSlideshowDimensions']) &&
139
+ $settings['preserveSlideshowDimensions'] == 'true')
140
+ {
141
  $aspectRatio = explode(':', $settings['aspectRatio']);
142
 
143
  // Width
144
+ if (isset($aspectRatio[0]) &&
145
+ is_numeric($aspectRatio[0]))
146
+ {
147
  $settings['dimensionWidth'] = $aspectRatio[0];
148
+ }
149
  else
150
+ {
151
  $settings['dimensionWidth'] = 1;
152
+ }
153
 
154
  // Height
155
+ if (isset($aspectRatio[1]) &&
156
+ is_numeric($aspectRatio[1]))
157
+ {
158
  $settings['dimensionHeight'] = $aspectRatio[1];
159
+ }
160
  else
161
+ {
162
  $settings['dimensionHeight'] = 1;
163
+ }
164
  }
165
 
166
  // Include slideshow settings by localizing them
classes/{SlideshowPluginAjax.php → SlideshowPluginAJAX.php} RENAMED
@@ -1,24 +1,24 @@
1
  <?php
2
  /**
3
- * Class SlideshowAjax is used to register ajax functions
4
- * as soon as possible, so they leave a light footprint.
5
  *
6
  * @since 2.0.0
7
  * @author: Stefan Boonstra
8
- * @version: 03-03-13
9
  */
10
- class SlideshowPluginAjax {
11
-
12
  /**
13
  * Called as early as possible to be able to have as light as possible AJAX requests. Hooks can be added here as to
14
  * have early execution.
15
  *
16
  * @since 2.0.0
17
  */
18
- static function init() {
 
19
  add_action('wp_ajax_slideshow_slide_inserter_search_query', array('SlideshowPluginSlideInserter', 'printSearchResults'));
20
 
21
- add_action('wp_ajax_slideshow_jquery_image_gallery_load_stylesheet', array('SlideshowPluginSlideshowStylesheet', 'loadStylesheetByAjax'));
22
- add_action('wp_ajax_nopriv_slideshow_jquery_image_gallery_load_stylesheet', array('SlideshowPluginSlideshowStylesheet', 'loadStylesheetByAjax'));
23
  }
24
  }
1
  <?php
2
  /**
3
+ * Class SlideshowAJAX is used to register AJAX functions
4
+ * as soon as possible, so they only leave a light footprint.
5
  *
6
  * @since 2.0.0
7
  * @author: Stefan Boonstra
 
8
  */
9
+ class SlideshowPluginAJAX
10
+ {
11
  /**
12
  * Called as early as possible to be able to have as light as possible AJAX requests. Hooks can be added here as to
13
  * have early execution.
14
  *
15
  * @since 2.0.0
16
  */
17
+ static function init()
18
+ {
19
  add_action('wp_ajax_slideshow_slide_inserter_search_query', array('SlideshowPluginSlideInserter', 'printSearchResults'));
20
 
21
+ add_action('wp_ajax_slideshow_jquery_image_gallery_load_stylesheet', array('SlideshowPluginSlideshowStylesheet', 'loadStylesheetByAJAX'));
22
+ add_action('wp_ajax_nopriv_slideshow_jquery_image_gallery_load_stylesheet', array('SlideshowPluginSlideshowStylesheet', 'loadStylesheetByAJAX'));
23
  }
24
  }
classes/SlideshowPluginGeneralSettings.php CHANGED
@@ -5,25 +5,31 @@
5
  *
6
  * @since 2.1.22
7
  * @author Stefan Boonstra
8
- * @version 01-02-2013
9
  */
10
- class SlideshowPluginGeneralSettings {
 
 
 
11
 
12
- /** Settings Group */
13
  static $settingsGroup = 'slideshow-jquery-image-gallery-general-settings';
14
 
15
- /** User capability settings */
 
 
 
16
  static $capabilities = array(
17
- 'addSlideshows' => 'slideshow-jquery-image-gallery-add-slideshows',
18
- 'editSlideshows' => 'slideshow-jquery-image-gallery-edit-slideshows',
19
  'deleteSlideshows' => 'slideshow-jquery-image-gallery-delete-slideshows'
20
  );
21
 
22
- /** Default slideshow settings */
23
  static $defaultSettings = 'slideshow-jquery-image-gallery-default-settings';
 
24
  static $defaultStyleSettings = 'slideshow-jquery-image-gallery-default-style-settings';
25
 
26
- /** List of pointers to custom style options */
27
  static $customStyles = 'slideshow-jquery-image-gallery-custom-styles';
28
 
29
  /**
@@ -31,11 +37,21 @@ class SlideshowPluginGeneralSettings {
31
  *
32
  * @since 2.1.22
33
  */
34
- static function init(){
35
-
36
  // Only initialize in admin
37
- if(!is_admin())
 
38
  return;
 
 
 
 
 
 
 
 
 
39
 
40
  // Register settings
41
  add_action('admin_init', array(__CLASS__, 'registerSettings'));
@@ -43,8 +59,8 @@ class SlideshowPluginGeneralSettings {
43
  // Add sub menu
44
  add_action('admin_menu', array(__CLASS__, 'addSubMenuPage'));
45
 
46
- // Enqueue stylesheet and scripts
47
- add_action('admin_enqueue_scripts', array(__CLASS__, 'enqueue'));
48
  }
49
 
50
  /**
@@ -52,11 +68,13 @@ class SlideshowPluginGeneralSettings {
52
  *
53
  * @since 2.1.22
54
  */
55
- static function addSubMenuPage(){
56
-
57
  // Return if the slideshow post type does not exist
58
  if(!post_type_exists(SlideshowPluginPostType::$postType))
 
59
  return;
 
60
 
61
  // Add sub menu
62
  add_submenu_page(
@@ -74,8 +92,8 @@ class SlideshowPluginGeneralSettings {
74
  *
75
  * @since 2.1.22
76
  */
77
- static function generalSettings(){
78
-
79
  // Include general settings page
80
  include SlideshowPluginMain::getPluginPath() . DIRECTORY_SEPARATOR . 'views' . DIRECTORY_SEPARATOR . __CLASS__ . DIRECTORY_SEPARATOR . 'general-settings.php';
81
  }
@@ -86,11 +104,18 @@ class SlideshowPluginGeneralSettings {
86
  *
87
  * @since 2.1.22
88
  */
89
- static function registerSettings(){
90
-
91
  // Register settings only when the user is going through the options.php page
92
- if(array_pop(explode('/', $_SERVER['PHP_SELF'])) != 'options.php')
 
 
 
93
  return;
 
 
 
 
94
 
95
  // Register user capability settings, saving capabilities only has to be called once.
96
  register_setting(self::$settingsGroup, self::$capabilities['addSlideshows']);
@@ -106,85 +131,120 @@ class SlideshowPluginGeneralSettings {
106
  }
107
 
108
  /**
109
- * Enqueue scripts and stylesheets. Needs to be called on the 'admin_enqueue_scripts' hook.
110
- *
111
- * @since 2.1.22
112
  */
113
- static function enqueue(){
114
-
115
- // Return if function doesn't exist
116
- if(!function_exists('get_current_screen'))
117
  return;
118
-
119
- // Return when not on a slideshow edit page, or files have already been included.
120
- $currentScreen = get_current_screen();
121
- if($currentScreen->post_type != SlideshowPluginPostType::$postType)
122
- return;
123
-
124
- // Enqueue general settings stylesheet
125
- wp_enqueue_style(
126
- 'slideshow-jquery-image-gallery-general-settings',
127
- SlideshowPluginMain::getPluginUrl() . '/style/' . __CLASS__ . '/general-settings.css',
128
- array(),
129
- SlideshowPluginMain::$version
130
- );
131
-
132
- // Enqueue general settings script
133
- wp_enqueue_script(
134
- 'slideshow-jquery-image-gallery-general-settings',
135
- SlideshowPluginMain::getPluginUrl() . '/js/' . __CLASS__ . '/general-settings.js',
136
- array('jquery'),
137
- SlideshowPluginMain::$version
138
- );
139
 
140
  // Localize general settings script
141
  wp_localize_script(
142
- 'slideshow-jquery-image-gallery-general-settings',
143
- 'GeneralSettingsVariables',
144
  array(
145
- 'customStylesKey' => self::$customStyles,
146
- 'newCustomizationPrefix' => __('New', 'slideshow-plugin'),
147
- 'confirmDeleteMessage' => __('Are you sure you want to delete this custom style?', 'slideshow-plugin')
 
 
148
  )
149
  );
150
  }
151
 
 
 
 
 
 
 
 
 
 
 
 
152
  /**
153
  * Returns an array of stylesheets with its keys and respective names.
154
  *
 
 
155
  * When the $separateDefaultFromCustom boolean is set to true, the default stylesheets will be returned separately
156
- * from the custom stylesheets as: array('default' => array(), 'custom' => array()) respectively.
 
 
 
 
 
 
 
 
 
 
 
157
  *
158
  * @since 2.1.23
 
159
  * @param boolean $separateDefaultFromCustom (optional, defaults to false)
160
  * @return array $stylesheets
161
  */
162
- static function getStylesheets($separateDefaultFromCustom = false){
163
-
164
  // Default styles
165
  $defaultStyles = array(
166
  'style-light.css' => __('Light', 'slideshow-plugin'),
167
- 'style-dark.css' => __('Dark', 'slideshow-plugin')
168
  );
169
 
170
  // Loop through default stylesheets
171
  $stylesheetsFilePath = SlideshowPluginMain::getPluginPath() . DIRECTORY_SEPARATOR . 'style' . DIRECTORY_SEPARATOR . 'SlideshowPlugin';
172
- foreach($defaultStyles as $fileName => $name){
173
 
 
 
174
  // Check if stylesheet exists on server, don't offer it when it does not exist.
175
- if(!file_exists($stylesheetsFilePath . DIRECTORY_SEPARATOR . $fileName))
 
176
  unset($defaultStyles[$fileName]);
 
 
 
 
 
 
 
 
 
177
  }
178
 
179
  // Get custom styles
180
  $customStyles = get_option(SlideshowPluginGeneralSettings::$customStyles, array());
181
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
182
  // Return
183
- if($separateDefaultFromCustom)
 
184
  return array(
185
  'default' => $defaultStyles,
186
  'custom' => $customStyles
187
  );
 
 
188
  return array_merge(
189
  $defaultStyles,
190
  $customStyles
@@ -198,39 +258,52 @@ class SlideshowPluginGeneralSettings {
198
  * @param String $capability
199
  * @return String $capability
200
  */
201
- static function saveCapabilities($capability){
202
-
203
  // Verify nonce
204
  $nonce = isset($_POST['_wpnonce']) ? $_POST['_wpnonce'] : '';
205
- if(!wp_verify_nonce($nonce, self::$settingsGroup . '-options'))
 
 
206
  return $capability;
 
207
 
208
  // Roles
209
  global $wp_roles;
210
 
211
  // Loop through available user roles
212
- foreach($wp_roles->roles as $roleSlug => $roleValues){
213
-
214
  // Continue when the capabilities are either not set or are no array
215
- if(!is_array($roleValues) || !isset($roleValues['capabilities']) || !is_array($roleValues['capabilities']))
 
 
 
216
  continue;
 
217
 
218
  // Get role
219
  $role = get_role($roleSlug);
220
 
221
  // Continue when role is not set
222
- if($role == null)
 
223
  continue;
 
224
 
225
  // Loop through available capabilities
226
- foreach(self::$capabilities as $capabilitySlug){
227
-
228
  // If $roleSlug is present in $_POST's capability, add the capability to the role, otherwise remove the capability from the role.
229
- if( (isset($_POST[$capabilitySlug]) && is_array($_POST[$capabilitySlug]) && array_key_exists($roleSlug, $_POST[$capabilitySlug])) ||
230
  $roleSlug == 'administrator')
 
231
  $role->add_cap($capabilitySlug);
 
232
  else
 
233
  $role->remove_cap($capabilitySlug);
 
234
  }
235
  }
236
 
@@ -244,29 +317,38 @@ class SlideshowPluginGeneralSettings {
244
  * @param array $customStyles
245
  * @return array $newCustomStyles
246
  */
247
- static function saveCustomStyles($customStyles){
248
-
249
  // Verify nonce
250
  $nonce = isset($_POST['_wpnonce']) ? $_POST['_wpnonce'] : '';
251
- if(!wp_verify_nonce($nonce, self::$settingsGroup . '-options'))
 
 
252
  return $customStyles;
 
253
 
254
  // Remove custom styles that have been deleted
255
  $oldCustomStyles = get_option(self::$customStyles, array());
256
- if(is_array($oldCustomStyles)){
257
- foreach($oldCustomStyles as $oldCustomStyleKey => $oldCustomStyleValue){
258
 
 
 
 
 
259
  // Delete option from database if it no longer exists
260
- if(!array_key_exists($oldCustomStyleKey, $customStyles))
 
261
  delete_option($oldCustomStyleKey);
 
262
  }
263
  }
264
 
265
  // Loop through new custom styles
266
  $newCustomStyles = array();
267
- if(is_array($customStyles)){
268
- foreach($customStyles as $customStyleKey => $customStyleValue){
269
 
 
 
 
 
270
  // Put custom style key and name into the $newCustomStyle array
271
  $newCustomStyles[$customStyleKey] = isset($customStyleValue['title']) ? $customStyleValue['title'] : __('Untitled', 'slideshow-plugin');
272
 
@@ -275,14 +357,18 @@ class SlideshowPluginGeneralSettings {
275
 
276
  // Create or update new custom style
277
  $oldStyle = get_option($customStyleKey, false);
278
- if($oldStyle){
279
 
 
 
280
  // Check if style has changed
281
- if($oldStyle !== $newStyle){
 
282
  update_option($customStyleKey, $newStyle);
283
  update_option($customStyleKey . '_version', time());
284
  }
285
- }else{
 
 
286
  // The custom style itself shouldn't be auto-loaded, it's never used within WordPress
287
  add_option($customStyleKey, $newStyle, '', 'no');
288
  add_option($customStyleKey . '_version', time());
5
  *
6
  * @since 2.1.22
7
  * @author Stefan Boonstra
 
8
  */
9
+ class SlideshowPluginGeneralSettings
10
+ {
11
+ /** @var bool $isCurrentPage Flag that represents whether or not the general settings page is the current page */
12
+ static $isCurrentPage = false;
13
 
14
+ /** @var string $settingsGroup Settings group */
15
  static $settingsGroup = 'slideshow-jquery-image-gallery-general-settings';
16
 
17
+ /** @var string $stylesheetLocation General settings */
18
+ static $stylesheetLocation = 'slideshow-jquery-image-gallery-stylesheet-location';
19
+
20
+ /** @var array $capabilities User capability settings */
21
  static $capabilities = array(
22
+ 'addSlideshows' => 'slideshow-jquery-image-gallery-add-slideshows',
23
+ 'editSlideshows' => 'slideshow-jquery-image-gallery-edit-slideshows',
24
  'deleteSlideshows' => 'slideshow-jquery-image-gallery-delete-slideshows'
25
  );
26
 
27
+ /** @var string $defaultSettings */
28
  static $defaultSettings = 'slideshow-jquery-image-gallery-default-settings';
29
+ /** @var string $defaultStyleSettings */
30
  static $defaultStyleSettings = 'slideshow-jquery-image-gallery-default-style-settings';
31
 
32
+ /** @var string $customStyles List of pointers to custom style options */
33
  static $customStyles = 'slideshow-jquery-image-gallery-custom-styles';
34
 
35
  /**
37
  *
38
  * @since 2.1.22
39
  */
40
+ static function init()
41
+ {
42
  // Only initialize in admin
43
+ if (!is_admin())
44
+ {
45
  return;
46
+ }
47
+
48
+ if (isset($_GET['post_type']) &&
49
+ $_GET['post_type'] == 'slideshow' &&
50
+ isset($_GET['page']) &&
51
+ $_GET['page'] == 'general_settings')
52
+ {
53
+ self::$isCurrentPage = true;
54
+ }
55
 
56
  // Register settings
57
  add_action('admin_init', array(__CLASS__, 'registerSettings'));
59
  // Add sub menu
60
  add_action('admin_menu', array(__CLASS__, 'addSubMenuPage'));
61
 
62
+ // Localize
63
+ add_action('admin_enqueue_scripts', array(__CLASS__, 'localizeScript'));
64
  }
65
 
66
  /**
68
  *
69
  * @since 2.1.22
70
  */
71
+ static function addSubMenuPage()
72
+ {
73
  // Return if the slideshow post type does not exist
74
  if(!post_type_exists(SlideshowPluginPostType::$postType))
75
+ {
76
  return;
77
+ }
78
 
79
  // Add sub menu
80
  add_submenu_page(
92
  *
93
  * @since 2.1.22
94
  */
95
+ static function generalSettings()
96
+ {
97
  // Include general settings page
98
  include SlideshowPluginMain::getPluginPath() . DIRECTORY_SEPARATOR . 'views' . DIRECTORY_SEPARATOR . __CLASS__ . DIRECTORY_SEPARATOR . 'general-settings.php';
99
  }
104
  *
105
  * @since 2.1.22
106
  */
107
+ static function registerSettings()
108
+ {
109
  // Register settings only when the user is going through the options.php page
110
+ $urlParts = explode('/', $_SERVER['PHP_SELF']);
111
+
112
+ if (array_pop($urlParts) != 'options.php')
113
+ {
114
  return;
115
+ }
116
+
117
+ // Register general settings
118
+ register_setting(self::$settingsGroup, self::$stylesheetLocation);
119
 
120
  // Register user capability settings, saving capabilities only has to be called once.
121
  register_setting(self::$settingsGroup, self::$capabilities['addSlideshows']);
131
  }
132
 
133
  /**
134
+ * Localizes the general settings script. Needs to be called on the 'admin_enqueue_scripts' hook.
 
 
135
  */
136
+ static function localizeScript()
137
+ {
138
+ if (!self::$isCurrentPage)
139
+ {
140
  return;
141
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
142
 
143
  // Localize general settings script
144
  wp_localize_script(
145
+ 'slideshow-jquery-image-gallery-backend-script',
146
+ 'slideshow_jquery_image_gallery_backend_script_generalSettings',
147
  array(
148
+ 'data' => array('customStylesKey' => self::$customStyles),
149
+ 'localization' => array(
150
+ 'newCustomizationPrefix' => __('New', 'slideshow-plugin'),
151
+ 'confirmDeleteMessage' => __('Are you sure you want to delete this custom style?', 'slideshow-plugin')
152
+ )
153
  )
154
  );
155
  }
156
 
157
+ /**
158
+ * Returns the stylesheet location, or 'footer' when no stylesheet position has been defined yet.
159
+ *
160
+ * @since 2.2.12
161
+ * @return string $stylesheetLocation
162
+ */
163
+ public static function getStylesheetLocation()
164
+ {
165
+ return get_option(SlideshowPluginGeneralSettings::$stylesheetLocation, 'footer');
166
+ }
167
+
168
  /**
169
  * Returns an array of stylesheets with its keys and respective names.
170
  *
171
+ * Gets the version number for each stylesheet when $withVersion is set to true.
172
+ *
173
  * When the $separateDefaultFromCustom boolean is set to true, the default stylesheets will be returned separately
174
+ * from the custom stylesheets.
175
+ *
176
+ * The data returned with both parameters set to 'false' will look like the following:
177
+ *
178
+ * [$stylesheetKey => $stylesheetName]
179
+ *
180
+ * With both parameters set to 'true' the returned data will be formed like this:
181
+ *
182
+ * [
183
+ * default => [$stylesheetKey => [name => $stylesheetName, version => $versionNumber]],
184
+ * custom => [$stylesheetKey => [name => $stylesheetName, version => $versionNumber]]
185
+ * ]
186
  *
187
  * @since 2.1.23
188
+ * @param boolean $withVersion (optional, defaults to false)
189
  * @param boolean $separateDefaultFromCustom (optional, defaults to false)
190
  * @return array $stylesheets
191
  */
192
+ static function getStylesheets($withVersion = false, $separateDefaultFromCustom = false)
193
+ {
194
  // Default styles
195
  $defaultStyles = array(
196
  'style-light.css' => __('Light', 'slideshow-plugin'),
197
+ 'style-dark.css' => __('Dark', 'slideshow-plugin')
198
  );
199
 
200
  // Loop through default stylesheets
201
  $stylesheetsFilePath = SlideshowPluginMain::getPluginPath() . DIRECTORY_SEPARATOR . 'style' . DIRECTORY_SEPARATOR . 'SlideshowPlugin';
 
202
 
203
+ foreach ($defaultStyles as $fileName => $name)
204
+ {
205
  // Check if stylesheet exists on server, don't offer it when it does not exist.
206
+ if (!file_exists($stylesheetsFilePath . DIRECTORY_SEPARATOR . $fileName))
207
+ {
208
  unset($defaultStyles[$fileName]);
209
+
210
+ continue;
211
+ }
212
+
213
+ // Add version if $withVersion is true
214
+ if($withVersion)
215
+ {
216
+ $defaultStyles[$fileName] = array('name' => $name, 'version' => SlideshowPluginMain::$version);
217
+ }
218
  }
219
 
220
  // Get custom styles
221
  $customStyles = get_option(SlideshowPluginGeneralSettings::$customStyles, array());
222
 
223
+ // Add version to the custom styles if $withVersion is true
224
+ if ($withVersion)
225
+ {
226
+ foreach ($customStyles as $customStylesKey => $customStylesName)
227
+ {
228
+ $customStylesVersion = get_option($customStylesKey . '_version', false);
229
+
230
+ if (!$customStylesVersion)
231
+ {
232
+ $customStylesVersion = time();
233
+ }
234
+
235
+ $customStyles[$customStylesKey] = array('name' => $customStylesName, 'version' => $customStylesVersion);
236
+ }
237
+ }
238
+
239
  // Return
240
+ if ($separateDefaultFromCustom)
241
+ {
242
  return array(
243
  'default' => $defaultStyles,
244
  'custom' => $customStyles
245
  );
246
+ }
247
+
248
  return array_merge(
249
  $defaultStyles,
250
  $customStyles
258
  * @param String $capability
259
  * @return String $capability
260
  */
261
+ static function saveCapabilities($capability)
262
+ {
263
  // Verify nonce
264
  $nonce = isset($_POST['_wpnonce']) ? $_POST['_wpnonce'] : '';
265
+
266
+ if (!wp_verify_nonce($nonce, self::$settingsGroup . '-options'))
267
+ {
268
  return $capability;
269
+ }
270
 
271
  // Roles
272
  global $wp_roles;
273
 
274
  // Loop through available user roles
275
+ foreach ($wp_roles->roles as $roleSlug => $roleValues)
276
+ {
277
  // Continue when the capabilities are either not set or are no array
278
+ if (!is_array($roleValues) ||
279
+ !isset($roleValues['capabilities']) ||
280
+ !is_array($roleValues['capabilities']))
281
+ {
282
  continue;
283
+ }
284
 
285
  // Get role
286
  $role = get_role($roleSlug);
287
 
288
  // Continue when role is not set
289
+ if ($role == null)
290
+ {
291
  continue;
292
+ }
293
 
294
  // Loop through available capabilities
295
+ foreach (self::$capabilities as $capabilitySlug)
296
+ {
297
  // If $roleSlug is present in $_POST's capability, add the capability to the role, otherwise remove the capability from the role.
298
+ if ((isset($_POST[$capabilitySlug]) && is_array($_POST[$capabilitySlug]) && array_key_exists($roleSlug, $_POST[$capabilitySlug])) ||
299
  $roleSlug == 'administrator')
300
+ {
301
  $role->add_cap($capabilitySlug);
302
+ }
303
  else
304
+ {
305
  $role->remove_cap($capabilitySlug);
306
+ }
307
  }
308
  }
309
 
317
  * @param array $customStyles
318
  * @return array $newCustomStyles
319
  */
320
+ static function saveCustomStyles($customStyles)
321
+ {
322
  // Verify nonce
323
  $nonce = isset($_POST['_wpnonce']) ? $_POST['_wpnonce'] : '';
324
+
325
+ if (!wp_verify_nonce($nonce, self::$settingsGroup . '-options'))
326
+ {
327
  return $customStyles;
328
+ }
329
 
330
  // Remove custom styles that have been deleted
331
  $oldCustomStyles = get_option(self::$customStyles, array());
 
 
332
 
333
+ if (is_array($oldCustomStyles))
334
+ {
335
+ foreach ($oldCustomStyles as $oldCustomStyleKey => $oldCustomStyleValue)
336
+ {
337
  // Delete option from database if it no longer exists
338
+ if (!array_key_exists($oldCustomStyleKey, $customStyles))
339
+ {
340
  delete_option($oldCustomStyleKey);
341
+ }
342
  }
343
  }
344
 
345
  // Loop through new custom styles
346
  $newCustomStyles = array();
 
 
347
 
348
+ if (is_array($customStyles))
349
+ {
350
+ foreach ($customStyles as $customStyleKey => $customStyleValue)
351
+ {
352
  // Put custom style key and name into the $newCustomStyle array
353
  $newCustomStyles[$customStyleKey] = isset($customStyleValue['title']) ? $customStyleValue['title'] : __('Untitled', 'slideshow-plugin');
354
 
357
 
358
  // Create or update new custom style
359
  $oldStyle = get_option($customStyleKey, false);
 
360
 
361
+ if ($oldStyle)
362
+ {
363
  // Check if style has changed
364
+ if ($oldStyle !== $newStyle)
365
+ {
366
  update_option($customStyleKey, $newStyle);
367
  update_option($customStyleKey . '_version', time());
368
  }
369
+ }
370
+ else
371
+ {
372
  // The custom style itself shouldn't be auto-loaded, it's never used within WordPress
373
  add_option($customStyleKey, $newStyle, '', 'no');
374
  add_option($customStyleKey . '_version', time());
classes/SlideshowPluginInstaller.php CHANGED
@@ -5,11 +5,10 @@
5
  *
6
  * @since 2.1.20
7
  * @author Stefan Boonstra
8
- * @version 01-02-2013
9
  */
10
- class SlideshowPluginInstaller {
11
-
12
- /** Version option key */
13
  private static $versionKey = 'slideshow-jquery-image-gallery-plugin-version';
14
 
15
  /**
@@ -18,20 +17,26 @@ class SlideshowPluginInstaller {
18
  *
19
  * @since 2.1.20
20
  */
21
- static function init(){
22
-
23
  // Only check versions in admin
24
- if(!is_admin())
 
25
  return;
 
26
 
27
  // Transfer if no version number is set, or the new version number is greater than the current one saved in the database
28
  $currentVersion = get_option(self::$versionKey, null);
29
- if($currentVersion == null || self::firstVersionGreaterThanSecond(SlideshowPluginMain::$version, $currentVersion))
 
 
 
30
  self::update($currentVersion);
 
31
 
32
  // New installation
33
- if($currentVersion == null){
34
-
35
  // Set up capabilities
36
  self::setCapabilities();
37
  }
@@ -43,34 +48,106 @@ class SlideshowPluginInstaller {
43
  * @since 2.1.20
44
  * @param string $currentVersion
45
  */
46
- private static function update($currentVersion){
47
-
48
  // Version numbers are registered after version 2.1.20
49
- if($currentVersion == null){
 
50
  self::updateV1toV2();
51
  self::updateV2toV2_1_20();
52
  }
53
 
54
  // Update to version 2.1.22
55
- if(self::firstVersionGreaterThanSecond('2.1.22', $currentVersion) || $currentVersion == null)
 
 
56
  self::setCapabilities();
 
57
 
58
  // Update to version 2.1.23
59
- if(self::firstVersionGreaterThanSecond('2.1.23', $currentVersion) || $currentVersion == null)
 
 
60
  self::updateV2_1_20_to_V2_2_1_23();
 
61
 
62
  // Update to version 2.2.0
63
- if(self::firstVersionGreaterThanSecond('2.2.0', $currentVersion) || $currentVersion == null)
 
 
64
  self::updateV2_1_23_to_V_2_2_0();
 
65
 
66
- // Update to version 2.2.0
67
- if(self::firstVersionGreaterThanSecond('2.2.8', $currentVersion) || $currentVersion == null)
 
 
68
  self::updateV2_2_0_to_V_2_2_8();
 
 
 
 
 
 
 
 
69
 
70
  // Set new version
71
  update_option(self::$versionKey, SlideshowPluginMain::$version);
72
  }
73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
74
  /**
75
  * Version 2.2.0 to 2.2.8
76
  *
@@ -80,36 +157,45 @@ class SlideshowPluginInstaller {
80
  *
81
  * @since 2.2.8
82
  */
83
- private static function updateV2_2_0_to_V_2_2_8(){
84
-
85
  // Check if this has already been done
86
- if(get_option('slideshow-jquery-image-gallery-updated-from-v2-2-0-to-v2-2-8') !== false)
 
87
  return;
 
88
 
89
  $customStylesOptionsKey = 'slideshow-jquery-image-gallery-custom-styles';
90
 
91
  // Get all custom stylesheet keys
92
  $customStyles = get_option($customStylesOptionsKey, array());
93
- if(is_array($customStyles)){
94
- foreach($customStyles as $customStyleKey => $customStyleValue){
95
-
 
96
  // Get custom style from custom style key
97
  $customStyle = get_option($customStyleKey, null);
98
- if(!isset($customStyle))
 
 
99
  continue;
 
100
 
101
  $h2Class = '.slideshow_container .slideshow_description h2';
102
- $pClass = '.slideshow_container .slideshow_description p';
103
 
104
  // Don't add to custom styles that already have this rule
105
- if(stripos($customStyle, $h2Class . ' a') !== false || stripos($customStyle, $pClass . ' a') !== false)
 
 
106
  continue;
 
107
 
108
  // Add anchor classes
109
- $h2Position = stripos($customStyle, $h2Class) + strlen($h2Class);
110
  $customStyle = substr($customStyle, 0, $h2Position) . ' a ' . substr($customStyle, $h2Position);
111
 
112
- $pPosition = stripos($customStyle, $pClass) + strlen($pClass);
113
  $customStyle = substr($customStyle, 0, $pPosition) . ' a ' . substr($customStyle, $pPosition);
114
 
115
  // Save
@@ -126,37 +212,43 @@ class SlideshowPluginInstaller {
126
  *
127
  * @since 2.2.0
128
  */
129
- private static function updateV2_1_23_to_V_2_2_0(){
130
-
131
  // Check if this has already been done
132
- if(get_option('slideshow-jquery-image-gallery-updated-from-v2-1-23-to-v2-2-0') !== false)
 
133
  return;
 
134
 
135
  // Get slideshows
136
  $slideshows = get_posts(array(
137
  'numberposts' => -1,
138
- 'offset' => 0,
139
- 'post_type' => 'slideshow'
140
  ));
141
 
142
  // Loop through slideshows
143
- if(is_array($slideshows) && count($slideshows > 0)){
144
- foreach($slideshows as $slideshow){
145
-
 
146
  // Get settings
147
  $styleSettings = maybe_unserialize(get_post_meta(
148
  $slideshow->ID,
149
  'styleSettings',
150
  true
151
  ));
152
- if(!is_array($styleSettings) || count($styleSettings) <= 0)
 
 
153
  continue;
 
154
 
155
  // Only set style to the default light style if the style is currently a custom one
156
- if( isset($styleSettings['style']) &&
157
  $styleSettings['style'] != 'light' &&
158
- $styleSettings['style'] != 'dark'){
159
-
160
  $styleSettings['style'] = 'light';
161
  }
162
 
@@ -181,56 +273,65 @@ class SlideshowPluginInstaller {
181
  *
182
  * @since 2.1.23
183
  */
184
- private static function updateV2_1_20_to_V2_2_1_23(){
185
-
186
  // Check if this has already been done
187
- if(get_option('slideshow-jquery-image-gallery-updated-from-v2-1-20-to-v2-1-23') !== false)
 
188
  return;
 
189
 
190
  // Get slideshows
191
  $slideshows = get_posts(array(
192
  'numberposts' => -1,
193
- 'offset' => 0,
194
- 'post_type' => 'slideshow'
195
  ));
196
 
197
  // Loop through slideshows
198
- if(is_array($slideshows) && count($slideshows > 0)){
199
- foreach($slideshows as $slideshow){
 
 
 
200
  // Get settings
201
  $styleSettings = maybe_unserialize(get_post_meta(
202
  $slideshow->ID,
203
  'styleSettings',
204
  true
205
  ));
206
- if(!is_array($styleSettings) || count($styleSettings) <= 0)
 
 
 
207
  continue;
 
208
 
209
  // Only save custom style when it's the current setting
210
- if( isset($styleSettings['style']) &&
211
  $styleSettings['style'] == 'custom' &&
212
  isset($styleSettings['custom']) &&
213
- !empty($styleSettings['custom'])){
214
-
215
  // Custom style key
216
- $stylesKey = 'slideshow-jquery-image-gallery-custom-styles';
217
  $customStyleKey = $stylesKey . '_' . $slideshow->ID;
218
 
219
  // Add stylesheet to database, continue to next post when failed.
220
- if(!add_option(
221
- $customStyleKey,
222
- $styleSettings['custom'],
223
- '',
224
- 'no'
225
- ))
226
  continue;
 
227
 
228
  // Get list of stylesheets to link the new stylesheet to.
229
  $styleSheets = get_option($stylesKey, array());
230
 
231
  // Stylesheets must be an array
232
- if(!is_array($styleSheets) || count($styleSheets) <= 0)
 
 
233
  $styleSheets = array();
 
234
 
235
  // Link new stylesheet to stylesheets array
236
  $styleSheets[$customStyleKey] = $slideshow->post_title . ' (ID: ' . $slideshow->ID . ')';
@@ -262,27 +363,32 @@ class SlideshowPluginInstaller {
262
  *
263
  * @since 2.1.22
264
  */
265
- private static function setCapabilities(){
266
-
267
  // Check if update has already been done
268
- if(get_option('slideshow-jquery-image-gallery-updated-from-v2-1-20-to-v2-1-22') !== false)
 
269
  return;
 
270
 
271
  // Capabilities
272
- $addSlideshows = 'slideshow-jquery-image-gallery-add-slideshows';
273
- $editSlideshows = 'slideshow-jquery-image-gallery-edit-slideshows';
274
  $deleteSlideshow = 'slideshow-jquery-image-gallery-delete-slideshows';
275
 
276
  // Add capabilities to roles
277
  $roles = array('administrator', 'editor', 'author');
278
- foreach($roles as $roleName){
279
 
 
 
280
  // Get role
281
  $role = get_role($roleName);
282
 
283
  // Continue on non-existent role
284
- if($role == null)
 
285
  continue;
 
286
 
287
  // Add capability to role
288
  $role->add_cap($addSlideshows);
@@ -300,75 +406,101 @@ class SlideshowPluginInstaller {
300
  *
301
  * @since 2.1.20
302
  */
303
- private static function updateV2toV2_1_20(){
304
-
305
  // Check if this has already been done
306
- if(get_option('slideshow-plugin-updated-from-v2-to-v2-1-20') !== false)
 
307
  return;
 
308
 
309
  // Get slideshows
310
  $slideshows = get_posts(array(
311
  'numberposts' => -1,
312
- 'offset' => 0,
313
- 'post_type' => 'slideshow'
314
  ));
315
 
316
  // Loop through slideshows
317
- if(is_array($slideshows) && count($slideshows > 0)){
318
- foreach($slideshows as $slideshow){
 
 
319
  // Get settings
320
  $settings = maybe_unserialize(get_post_meta(
321
  $slideshow->ID,
322
  'settings',
323
  true
324
  ));
325
- if(!is_array($settings) || count($settings) <= 0)
 
 
 
326
  continue;
 
327
 
328
  // Old prefixes
329
  $settingsPrefix = 'setting_';
330
- $stylePrefix = 'style_';
331
- $slidePrefix = 'slide_';
332
 
333
  // Meta keys
334
- $settingsKey = 'settings';
335
  $styleSettingsKey = 'styleSettings';
336
- $slidesKey = 'slides';
337
 
338
  // Extract key => value into new arrays
339
- $newSettings = array();
340
  $styleSettings = array();
341
- $slides = array();
342
- foreach($settings as $key => $value){
343
- if($settingsPrefix == substr($key, 0, strlen($settingsPrefix)))
 
 
 
344
  $newSettings[substr($key, strlen($settingsPrefix))] = $value;
345
- elseif($stylePrefix == substr($key, 0, strlen($stylePrefix)))
 
 
346
  $styleSettings[substr($key, strlen($stylePrefix))] = $value;
347
- elseif($slidePrefix == substr($key, 0, strlen($slidePrefix)))
 
 
348
  $slides[substr($key, strlen($slidePrefix))] = $value;
 
349
  }
350
 
351
  // Slides are prefixed with another prefix, their order ID. All settings of one slide should go into an
352
  // array referenced by their order ID. Create order lookup array below, then order slides accordingly
353
  $slidesOrderLookup = array();
354
- foreach($slides as $key => $value){
 
 
355
  $key = explode('_', $key);
356
 
357
- if($key[1] == 'order')
 
358
  $slidesOrderLookup[$value] = $key[0];
 
359
  }
360
 
361
  // Order slides with order lookup array
362
  $orderedSlides = array();
363
- foreach($slides as $key => $value){
364
- $key = explode('_', $key);
365
 
366
- foreach($slidesOrderLookup as $order => $id){
367
- if($key[0] == $id){
 
368
 
 
 
 
 
369
  // Create array if slot is empty
370
- if(!isset($orderedSlides[$order]) || !is_array($orderedSlides[$order]))
 
 
371
  $orderedSlides[$order] = array();
 
372
 
373
  // Add slide value to array
374
  $orderedSlides[$order][$key[1]] = $value;
@@ -395,22 +527,24 @@ class SlideshowPluginInstaller {
395
  *
396
  * @since 2.0.1
397
  */
398
- private static function updateV1toV2(){
399
-
400
  // Check if this has already been done
401
- if(get_option('slideshow-plugin-updated-from-v1-x-x-to-v2-0-1') !== false)
 
402
  return;
 
403
 
404
  // Get posts
405
  $posts = get_posts(array(
406
  'numberposts' => -1,
407
- 'offset' => 0,
408
- 'post_type' => 'slideshow'
409
  ));
410
 
411
  // Loop through posts
412
- foreach($posts as $post){
413
-
414
  // Stores highest slide id.
415
  $highestSlideId = -1;
416
 
@@ -465,57 +599,83 @@ class SlideshowPluginInstaller {
465
  );
466
 
467
  // Fill data with settings
468
- foreach($data as $key => $value)
469
- if(isset($currentSettings[$key])){
 
 
470
  $data[$key][1] = $currentSettings[$key];
 
471
  unset($currentSettings[$key]);
472
  }
 
473
 
474
  // Load settings that are not there by default into data (slides in particular)
475
- foreach($currentSettings as $key => $value)
476
- if(!isset($data[$key]))
 
 
477
  $data[$key] = $value;
 
 
478
 
479
  // Settings
480
  $settings = $data;
481
 
482
  // Filter slides
483
  $prefix = 'slide_';
484
- foreach($settings as $key => $value)
485
- if($prefix != substr($key, 0, strlen($prefix)))
 
 
 
486
  unset($settings[$key]);
 
 
487
 
488
  // Convert slide settings to array([slide-key] => array([setting-name] => [value]));
489
  $slidesPreOrder = array();
490
- foreach($settings as $key => $value){
 
 
491
  $key = explode('_', $key);
492
- if(is_numeric($key[1]))
 
 
493
  $slidesPreOrder[$key[1]][$key[2]] = $value;
 
494
  }
495
 
496
  // Save slide keys from the $slidePreOrder array in the array itself for later use
497
- foreach($slidesPreOrder as $key => $value){
 
498
  // Save highest slide id
499
  if($key > $highestSlideId)
 
500
  $highestSlideId = $key;
 
501
  }
502
 
503
  // Get old data
504
  $oldData = get_post_meta($post->ID, 'settings', true);
 
505
  if(!is_array(($oldData)))
 
506
  $oldData = array();
 
507
 
508
  // Get attachments
509
  $attachments = get_posts(array(
510
  'numberposts' => -1,
511
- 'offset' => 0,
512
- 'post_type' => 'attachment',
513
  'post_parent' => $post->ID
514
  ));
515
 
516
  // Get data from attachments
517
  $newData = array();
518
- foreach($attachments as $attachment){
 
 
519
  $highestSlideId++;
520
  $newData['slide_' . $highestSlideId . '_postId'] = $attachment->ID;
521
  $newData['slide_' . $highestSlideId . '_type'] = 'attachment';
@@ -529,7 +689,8 @@ class SlideshowPluginInstaller {
529
  $defaultData,
530
  $oldData,
531
  $newData
532
- ));
 
533
  }
534
 
535
  update_option('slideshow-plugin-updated-from-v1-x-x-to-v2-0-1', 'updated');
@@ -545,29 +706,44 @@ class SlideshowPluginInstaller {
545
  * @param String $secondVersion
546
  * @return boolean $firstGreaterThanSecond
547
  */
548
- private static function firstVersionGreaterThanSecond($firstVersion, $secondVersion){
549
-
550
  // Return false if $firstVersion is not set
551
- if(empty($firstVersion) || !is_string($firstVersion))
 
 
552
  return false;
 
553
 
554
  // Return true if $secondVersion is not set
555
- if(empty($secondVersion) || !is_string($secondVersion))
 
 
556
  return true;
 
557
 
558
  // Separate main, sub and bug-fix version number from one another.
559
- $firstVersion = explode('.', $firstVersion);
560
  $secondVersion = explode('.', $secondVersion);
561
 
562
  // Compare version numbers per piece
563
- for($i = 0; $i < count($firstVersion); $i++){
564
- if(isset($firstVersion[$i], $secondVersion[$i])){
565
- if($firstVersion[$i] > $secondVersion[$i])
 
 
 
566
  return true;
567
- elseif($firstVersion[$i] < $secondVersion[$i])
 
 
568
  return false;
 
 
 
 
 
569
  }
570
- else return false;
571
  }
572
 
573
  // Return false by default
5
  *
6
  * @since 2.1.20
7
  * @author Stefan Boonstra
 
8
  */
9
+ class SlideshowPluginInstaller
10
+ {
11
+ /** @var string $versionKey Version option key */
12
  private static $versionKey = 'slideshow-jquery-image-gallery-plugin-version';
13
 
14
  /**
17
  *
18
  * @since 2.1.20
19
  */
20
+ static function init()
21
+ {
22
  // Only check versions in admin
23
+ if (!is_admin())
24
+ {
25
  return;
26
+ }
27
 
28
  // Transfer if no version number is set, or the new version number is greater than the current one saved in the database
29
  $currentVersion = get_option(self::$versionKey, null);
30
+
31
+ if ($currentVersion == null ||
32
+ self::firstVersionGreaterThanSecond(SlideshowPluginMain::$version, $currentVersion))
33
+ {
34
  self::update($currentVersion);
35
+ }
36
 
37
  // New installation
38
+ if ($currentVersion == null)
39
+ {
40
  // Set up capabilities
41
  self::setCapabilities();
42
  }
48
  * @since 2.1.20
49
  * @param string $currentVersion
50
  */
51
+ private static function update($currentVersion)
52
+ {
53
  // Version numbers are registered after version 2.1.20
54
+ if($currentVersion == null)
55
+ {
56
  self::updateV1toV2();
57
  self::updateV2toV2_1_20();
58
  }
59
 
60
  // Update to version 2.1.22
61
+ if (self::firstVersionGreaterThanSecond('2.1.22', $currentVersion) ||
62
+ $currentVersion == null)
63
+ {
64
  self::setCapabilities();
65
+ }
66
 
67
  // Update to version 2.1.23
68
+ if (self::firstVersionGreaterThanSecond('2.1.23', $currentVersion) ||
69
+ $currentVersion == null)
70
+ {
71
  self::updateV2_1_20_to_V2_2_1_23();
72
+ }
73
 
74
  // Update to version 2.2.0
75
+ if (self::firstVersionGreaterThanSecond('2.2.0', $currentVersion) ||
76
+ $currentVersion == null)
77
+ {
78
  self::updateV2_1_23_to_V_2_2_0();
79
+ }
80
 
81
+ // Update to version 2.2.8
82
+ if (self::firstVersionGreaterThanSecond('2.2.8', $currentVersion) ||
83
+ $currentVersion == null)
84
+ {
85
  self::updateV2_2_0_to_V_2_2_8();
86
+ }
87
+
88
+ // Update to version 2.2.12
89
+ if (self::firstVersionGreaterThanSecond('2.2.12', $currentVersion) ||
90
+ $currentVersion == null)
91
+ {
92
+ self::updateV2_2_8_to_V_2_2_12();
93
+ }
94
 
95
  // Set new version
96
  update_option(self::$versionKey, SlideshowPluginMain::$version);
97
  }
98
 
99
+ /**
100
+ * Version 2.2.8 to 2.2.12
101
+ *
102
+ * Version 2.2.12 introduces a loading icon to entertain those nice folks while waiting for the first slide to load.
103
+ * This function puts the CSS for the loading icon into the custom stylesheets.
104
+ *
105
+ * @since 2.2.12
106
+ */
107
+ private static function updateV2_2_8_to_V_2_2_12()
108
+ {
109
+ // Check if this has already been done
110
+ if (get_option('slideshow-jquery-image-gallery-updated-from-v2-2-8-to-v2-2-12') !== false)
111
+ {
112
+ return;
113
+ }
114
+
115
+ $customStylesOptionsKey = 'slideshow-jquery-image-gallery-custom-styles';
116
+
117
+ // Get all custom stylesheet keys
118
+ $customStyles = get_option($customStylesOptionsKey, array());
119
+
120
+ if (is_array($customStyles))
121
+ {
122
+ foreach ($customStyles as $customStyleKey => $customStyleValue)
123
+ {
124
+ // Get custom style from custom style key
125
+ $customStyle = get_option($customStyleKey, null);
126
+
127
+ if (!isset($customStyle))
128
+ {
129
+ continue;
130
+ }
131
+
132
+ $customStyle .= PHP_EOL . PHP_EOL . '.slideshow_container .slideshow_loading_icon {' . PHP_EOL .
133
+ "\t" . 'position: absolute;' . PHP_EOL .
134
+ "\t" . 'top: 50%;' . PHP_EOL .
135
+ "\t" . 'left: 50%;' . PHP_EOL .
136
+ "\t" . 'width: 32px;' . PHP_EOL .
137
+ "\t" . 'height: 32px;' . PHP_EOL .
138
+ "\t" . 'margin: -16px 0 0 -16px;' . PHP_EOL .
139
+ "\t" . 'background: url(\'%plugin-url%/images/SlideshowPlugin/loading-icon-128x128.gif\') no-repeat;' . PHP_EOL .
140
+ "\t" . 'background-size: 32px 32px;' . PHP_EOL .
141
+ '}';
142
+
143
+ // Save
144
+ update_option($customStyleKey, $customStyle);
145
+ }
146
+ }
147
+
148
+ update_option('slideshow-jquery-image-gallery-updated-from-v2-2-8-to-v2-2-12', 'updated');
149
+ }
150
+
151
  /**
152
  * Version 2.2.0 to 2.2.8
153
  *
157
  *
158
  * @since 2.2.8
159
  */
160
+ private static function updateV2_2_0_to_V_2_2_8()
161
+ {
162
  // Check if this has already been done
163
+ if (get_option('slideshow-jquery-image-gallery-updated-from-v2-2-0-to-v2-2-8') !== false)
164
+ {
165
  return;
166
+ }
167
 
168
  $customStylesOptionsKey = 'slideshow-jquery-image-gallery-custom-styles';
169
 
170
  // Get all custom stylesheet keys
171
  $customStyles = get_option($customStylesOptionsKey, array());
172
+ if (is_array($customStyles))
173
+ {
174
+ foreach ($customStyles as $customStyleKey => $customStyleValue)
175
+ {
176
  // Get custom style from custom style key
177
  $customStyle = get_option($customStyleKey, null);
178
+
179
+ if (!isset($customStyle))
180
+ {
181
  continue;
182
+ }
183
 
184
  $h2Class = '.slideshow_container .slideshow_description h2';
185
+ $pClass = '.slideshow_container .slideshow_description p';
186
 
187
  // Don't add to custom styles that already have this rule
188
+ if (stripos($customStyle, $h2Class . ' a') !== false ||
189
+ stripos($customStyle, $pClass . ' a') !== false)
190
+ {
191
  continue;
192
+ }
193
 
194
  // Add anchor classes
195
+ $h2Position = stripos($customStyle, $h2Class) + strlen($h2Class);
196
  $customStyle = substr($customStyle, 0, $h2Position) . ' a ' . substr($customStyle, $h2Position);
197
 
198
+ $pPosition = stripos($customStyle, $pClass) + strlen($pClass);
199
  $customStyle = substr($customStyle, 0, $pPosition) . ' a ' . substr($customStyle, $pPosition);
200
 
201
  // Save
212
  *
213
  * @since 2.2.0
214
  */
215
+ private static function updateV2_1_23_to_V_2_2_0()
216
+ {
217
  // Check if this has already been done
218
+ if (get_option('slideshow-jquery-image-gallery-updated-from-v2-1-23-to-v2-2-0') !== false)
219
+ {
220
  return;
221
+ }
222
 
223
  // Get slideshows
224
  $slideshows = get_posts(array(
225
  'numberposts' => -1,
226
+ 'offset' => 0,
227
+ 'post_type' => 'slideshow'
228
  ));
229
 
230
  // Loop through slideshows
231
+ if (is_array($slideshows) && count($slideshows > 0))
232
+ {
233
+ foreach ($slideshows as $slideshow)
234
+ {
235
  // Get settings
236
  $styleSettings = maybe_unserialize(get_post_meta(
237
  $slideshow->ID,
238
  'styleSettings',
239
  true
240
  ));
241
+
242
+ if (!is_array($styleSettings) || count($styleSettings) <= 0)
243
+ {
244
  continue;
245
+ }
246
 
247
  // Only set style to the default light style if the style is currently a custom one
248
+ if (isset($styleSettings['style']) &&
249
  $styleSettings['style'] != 'light' &&
250
+ $styleSettings['style'] != 'dark')
251
+ {
252
  $styleSettings['style'] = 'light';
253
  }
254
 
273
  *
274
  * @since 2.1.23
275
  */
276
+ private static function updateV2_1_20_to_V2_2_1_23()
277
+ {
278
  // Check if this has already been done
279
+ if (get_option('slideshow-jquery-image-gallery-updated-from-v2-1-20-to-v2-1-23') !== false)
280
+ {
281
  return;
282
+ }
283
 
284
  // Get slideshows
285
  $slideshows = get_posts(array(
286
  'numberposts' => -1,
287
+ 'offset' => 0,
288
+ 'post_type' => 'slideshow'
289
  ));
290
 
291
  // Loop through slideshows
292
+ if (is_array($slideshows) &&
293
+ count($slideshows > 0))
294
+ {
295
+ foreach ($slideshows as $slideshow)
296
+ {
297
  // Get settings
298
  $styleSettings = maybe_unserialize(get_post_meta(
299
  $slideshow->ID,
300
  'styleSettings',
301
  true
302
  ));
303
+
304
+ if (!is_array($styleSettings) ||
305
+ count($styleSettings) <= 0)
306
+ {
307
  continue;
308
+ }
309
 
310
  // Only save custom style when it's the current setting
311
+ if (isset($styleSettings['style']) &&
312
  $styleSettings['style'] == 'custom' &&
313
  isset($styleSettings['custom']) &&
314
+ !empty($styleSettings['custom']))
315
+ {
316
  // Custom style key
317
+ $stylesKey = 'slideshow-jquery-image-gallery-custom-styles';
318
  $customStyleKey = $stylesKey . '_' . $slideshow->ID;
319
 
320
  // Add stylesheet to database, continue to next post when failed.
321
+ if (!add_option($customStyleKey, $styleSettings['custom'], '', 'no'))
322
+ {
 
 
 
 
323
  continue;
324
+ }
325
 
326
  // Get list of stylesheets to link the new stylesheet to.
327
  $styleSheets = get_option($stylesKey, array());
328
 
329
  // Stylesheets must be an array
330
+ if (!is_array($styleSheets) ||
331
+ count($styleSheets) <= 0)
332
+ {
333
  $styleSheets = array();
334
+ }
335
 
336
  // Link new stylesheet to stylesheets array
337
  $styleSheets[$customStyleKey] = $slideshow->post_title . ' (ID: ' . $slideshow->ID . ')';
363
  *
364
  * @since 2.1.22
365
  */
366
+ private static function setCapabilities()
367
+ {
368
  // Check if update has already been done
369
+ if (get_option('slideshow-jquery-image-gallery-updated-from-v2-1-20-to-v2-1-22') !== false)
370
+ {
371
  return;
372
+ }
373
 
374
  // Capabilities
375
+ $addSlideshows = 'slideshow-jquery-image-gallery-add-slideshows';
376
+ $editSlideshows = 'slideshow-jquery-image-gallery-edit-slideshows';
377
  $deleteSlideshow = 'slideshow-jquery-image-gallery-delete-slideshows';
378
 
379
  // Add capabilities to roles
380
  $roles = array('administrator', 'editor', 'author');
 
381
 
382
+ foreach ($roles as $roleName)
383
+ {
384
  // Get role
385
  $role = get_role($roleName);
386
 
387
  // Continue on non-existent role
388
+ if ($role == null)
389
+ {
390
  continue;
391
+ }
392
 
393
  // Add capability to role
394
  $role->add_cap($addSlideshows);
406
  *
407
  * @since 2.1.20
408
  */
409
+ private static function updateV2toV2_1_20()
410
+ {
411
  // Check if this has already been done
412
+ if (get_option('slideshow-plugin-updated-from-v2-to-v2-1-20') !== false)
413
+ {
414
  return;
415
+ }
416
 
417
  // Get slideshows
418
  $slideshows = get_posts(array(
419
  'numberposts' => -1,
420
+ 'offset' => 0,
421
+ 'post_type' => 'slideshow'
422
  ));
423
 
424
  // Loop through slideshows
425
+ if (is_array($slideshows) && count($slideshows > 0))
426
+ {
427
+ foreach ($slideshows as $slideshow)
428
+ {
429
  // Get settings
430
  $settings = maybe_unserialize(get_post_meta(
431
  $slideshow->ID,
432
  'settings',
433
  true
434
  ));
435
+
436
+ if (!is_array($settings) ||
437
+ count($settings) <= 0)
438
+ {
439
  continue;
440
+ }
441
 
442
  // Old prefixes
443
  $settingsPrefix = 'setting_';
444
+ $stylePrefix = 'style_';
445
+ $slidePrefix = 'slide_';
446
 
447
  // Meta keys
448
+ $settingsKey = 'settings';
449
  $styleSettingsKey = 'styleSettings';
450
+ $slidesKey = 'slides';
451
 
452
  // Extract key => value into new arrays
453
+ $newSettings = array();
454
  $styleSettings = array();
455
+ $slides = array();
456
+
457
+ foreach ($settings as $key => $value)
458
+ {
459
+ if ($settingsPrefix == substr($key, 0, strlen($settingsPrefix)))
460
+ {
461
  $newSettings[substr($key, strlen($settingsPrefix))] = $value;
462
+ }
463
+ elseif ($stylePrefix == substr($key, 0, strlen($stylePrefix)))
464
+ {
465
  $styleSettings[substr($key, strlen($stylePrefix))] = $value;
466
+ }
467
+ elseif ($slidePrefix == substr($key, 0, strlen($slidePrefix)))
468
+ {
469
  $slides[substr($key, strlen($slidePrefix))] = $value;
470
+ }
471
  }
472
 
473
  // Slides are prefixed with another prefix, their order ID. All settings of one slide should go into an
474
  // array referenced by their order ID. Create order lookup array below, then order slides accordingly
475
  $slidesOrderLookup = array();
476
+
477
+ foreach ($slides as $key => $value)
478
+ {
479
  $key = explode('_', $key);
480
 
481
+ if ($key[1] == 'order')
482
+ {
483
  $slidesOrderLookup[$value] = $key[0];
484
+ }
485
  }
486
 
487
  // Order slides with order lookup array
488
  $orderedSlides = array();
 
 
489
 
490
+ foreach ($slides as $key => $value)
491
+ {
492
+ $key = explode('_', $key);
493
 
494
+ foreach ($slidesOrderLookup as $order => $id)
495
+ {
496
+ if ($key[0] == $id)
497
+ {
498
  // Create array if slot is empty
499
+ if (!isset($orderedSlides[$order]) ||
500
+ !is_array($orderedSlides[$order]))
501
+ {
502
  $orderedSlides[$order] = array();
503
+ }
504
 
505
  // Add slide value to array
506
  $orderedSlides[$order][$key[1]] = $value;
527
  *
528
  * @since 2.0.1
529
  */
530
+ private static function updateV1toV2()
531
+ {
532
  // Check if this has already been done
533
+ if (get_option('slideshow-plugin-updated-from-v1-x-x-to-v2-0-1') !== false)
534
+ {
535
  return;
536
+ }
537
 
538
  // Get posts
539
  $posts = get_posts(array(
540
  'numberposts' => -1,
541
+ 'offset' => 0,
542
+ 'post_type' => 'slideshow'
543
  ));
544
 
545
  // Loop through posts
546
+ foreach ($posts as $post)
547
+ {
548
  // Stores highest slide id.
549
  $highestSlideId = -1;
550
 
599
  );
600
 
601
  // Fill data with settings
602
+ foreach ($data as $key => $value)
603
+ {
604
+ if (isset($currentSettings[$key]))
605
+ {
606
  $data[$key][1] = $currentSettings[$key];
607
+
608
  unset($currentSettings[$key]);
609
  }
610
+ }
611
 
612
  // Load settings that are not there by default into data (slides in particular)
613
+ foreach ($currentSettings as $key => $value)
614
+ {
615
+ if (!isset($data[$key]))
616
+ {
617
  $data[$key] = $value;
618
+ }
619
+ }
620
 
621
  // Settings
622
  $settings = $data;
623
 
624
  // Filter slides
625
  $prefix = 'slide_';
626
+
627
+ foreach ($settings as $key => $value)
628
+ {
629
+ if ($prefix != substr($key, 0, strlen($prefix)))
630
+ {
631
  unset($settings[$key]);
632
+ }
633
+ }
634
 
635
  // Convert slide settings to array([slide-key] => array([setting-name] => [value]));
636
  $slidesPreOrder = array();
637
+
638
+ foreach ($settings as $key => $value)
639
+ {
640
  $key = explode('_', $key);
641
+
642
+ if (is_numeric($key[1]))
643
+ {
644
  $slidesPreOrder[$key[1]][$key[2]] = $value;
645
+ }
646
  }
647
 
648
  // Save slide keys from the $slidePreOrder array in the array itself for later use
649
+ foreach ($slidesPreOrder as $key => $value)
650
+ {
651
  // Save highest slide id
652
  if($key > $highestSlideId)
653
+ {
654
  $highestSlideId = $key;
655
+ }
656
  }
657
 
658
  // Get old data
659
  $oldData = get_post_meta($post->ID, 'settings', true);
660
+
661
  if(!is_array(($oldData)))
662
+ {
663
  $oldData = array();
664
+ }
665
 
666
  // Get attachments
667
  $attachments = get_posts(array(
668
  'numberposts' => -1,
669
+ 'offset' => 0,
670
+ 'post_type' => 'attachment',
671
  'post_parent' => $post->ID
672
  ));
673
 
674
  // Get data from attachments
675
  $newData = array();
676
+
677
+ foreach ($attachments as $attachment)
678
+ {
679
  $highestSlideId++;
680
  $newData['slide_' . $highestSlideId . '_postId'] = $attachment->ID;
681
  $newData['slide_' . $highestSlideId . '_type'] = 'attachment';
689
  $defaultData,
690
  $oldData,
691
  $newData
692
+ )
693
+ );
694
  }
695
 
696
  update_option('slideshow-plugin-updated-from-v1-x-x-to-v2-0-1', 'updated');
706
  * @param String $secondVersion
707
  * @return boolean $firstGreaterThanSecond
708
  */
709
+ private static function firstVersionGreaterThanSecond($firstVersion, $secondVersion)
710
+ {
711
  // Return false if $firstVersion is not set
712
+ if (empty($firstVersion) ||
713
+ !is_string($firstVersion))
714
+ {
715
  return false;
716
+ }
717
 
718
  // Return true if $secondVersion is not set
719
+ if (empty($secondVersion) ||
720
+ !is_string($secondVersion))
721
+ {
722
  return true;
723
+ }
724
 
725
  // Separate main, sub and bug-fix version number from one another.
726
+ $firstVersion = explode('.', $firstVersion);
727
  $secondVersion = explode('.', $secondVersion);
728
 
729
  // Compare version numbers per piece
730
+ for ($i = 0; $i < count($firstVersion); $i++)
731
+ {
732
+ if (isset($firstVersion[$i], $secondVersion[$i]))
733
+ {
734
+ if ($firstVersion[$i] > $secondVersion[$i])
735
+ {
736
  return true;
737
+ }
738
+ elseif ($firstVersion[$i] < $secondVersion[$i])
739
+ {
740
  return false;
741
+ }
742
+ }
743
+ else
744
+ {
745
+ return false;
746
  }
 
747
  }
748
 
749
  // Return false by default
classes/SlideshowPluginPostType.php CHANGED
@@ -5,11 +5,10 @@
5
  *
6
  * @since 1.0.0
7
  * @author: Stefan Boonstra
8
- * @version: 01-02-2013
9
  */
10
- class SlideshowPluginPostType {
11
-
12
- /** Variables */
13
  static $postType = 'slideshow';
14
 
15
  /**
@@ -18,138 +17,75 @@ class SlideshowPluginPostType {
18
  *
19
  * @since 1.3.0
20
  */
21
- static function init(){
22
- add_action('init', array(__CLASS__, 'registerSlideshowPostType'));
23
- add_action('admin_print_styles', array(__CLASS__, 'enqueueAdminStyles'));
24
- add_action('admin_enqueue_scripts', array(__CLASS__, 'enqueueAdminScripts'));
25
- add_action('save_post', array('SlideshowPluginSlideshowSettingsHandler', 'save'));
26
  }
27
 
28
  /**
29
- * Registers new posttype slideshow
30
  *
31
  * @since 1.0.0
32
  */
33
- static function registerSlideshowPostType(){
 
34
  register_post_type(
35
  self::$postType,
36
  array(
37
- 'labels' => array(
38
- 'name' => __('Slideshows', 'slideshow-plugin'),
39
- 'singular_name' => __('Slideshow', 'slideshow-plugin'),
40
- 'add_new_item' => __('Add New Slideshow', 'slideshow-plugin'),
41
- 'edit_item' => __('Edit slideshow', 'slideshow-plugin'),
42
- 'new_item' => __('New slideshow', 'slideshow-plugin'),
43
- 'view_item' => __('View slideshow', 'slideshow-plugin'),
44
- 'search_items' => __('Search slideshows', 'slideshow-plugin'),
45
- 'not_found' => __('No slideshows found', 'slideshow-plugin'),
46
  'not_found_in_trash' => __('No slideshows found', 'slideshow-plugin')
47
  ),
48
- 'public' => false,
49
- 'publicly_queryable' => false,
50
- 'show_ui' => true,
51
- 'show_in_menu' => true,
52
- 'query_var' => true,
53
- 'rewrite' => true,
54
- 'capability_type' => 'post',
55
- 'capabilities' => array(
56
- 'edit_post' => SlideshowPluginGeneralSettings::$capabilities['editSlideshows'],
57
- 'read_post' => SlideshowPluginGeneralSettings::$capabilities['addSlideshows'],
58
- 'delete_post' => SlideshowPluginGeneralSettings::$capabilities['deleteSlideshows'],
59
- 'edit_posts' => SlideshowPluginGeneralSettings::$capabilities['editSlideshows'],
60
- 'edit_others_posts' => SlideshowPluginGeneralSettings::$capabilities['editSlideshows'],
61
- 'publish_posts' => SlideshowPluginGeneralSettings::$capabilities['addSlideshows'],
62
- 'read_private_posts' => SlideshowPluginGeneralSettings::$capabilities['editSlideshows'],
63
-
64
- 'read' => SlideshowPluginGeneralSettings::$capabilities['addSlideshows'],
65
- 'delete_posts' => SlideshowPluginGeneralSettings::$capabilities['deleteSlideshows'],
66
- 'delete_private_posts' => SlideshowPluginGeneralSettings::$capabilities['deleteSlideshows'],
67
  'delete_published_posts' => SlideshowPluginGeneralSettings::$capabilities['deleteSlideshows'],
68
- 'delete_others_posts' => SlideshowPluginGeneralSettings::$capabilities['deleteSlideshows'],
69
- 'edit_private_posts' => SlideshowPluginGeneralSettings::$capabilities['editSlideshows'],
70
- 'edit_published_posts' => SlideshowPluginGeneralSettings::$capabilities['editSlideshows'],
71
  ),
72
- 'has_archive' => true,
73
- 'hierarchical' => false,
74
- 'menu_position' => null,
75
- 'menu_icon' => SlideshowPluginMain::getPluginUrl() . '/images/' . __CLASS__ . '/adminIcon.png',
76
- 'supports' => array('title'),
77
  'register_meta_box_cb' => array(__CLASS__, 'registerMetaBoxes')
78
  )
79
  );
80
  }
81
 
82
- /**
83
- * Enqueues the admin stylesheets when one a slideshow edit page.
84
- *
85
- * @since 2.2.2
86
- */
87
- static function enqueueAdminStyles(){
88
-
89
- // Return when function doesn't exist
90
- if(!function_exists('get_current_screen'))
91
- return;
92
-
93
- // Return when not on a slideshow edit page.
94
- $currentScreen = get_current_screen();
95
- if($currentScreen->post_type != self::$postType)
96
- return;
97
-
98
- wp_enqueue_style(
99
- 'slideshow-plugin-post-type-stylesheet',
100
- SlideshowPluginMain::getPluginUrl() . '/style/' . __CLASS__ . '/style.css',
101
- array(),
102
- SlideshowPluginMain::$version
103
- );
104
- }
105
-
106
- /**
107
- * Enqueues scripts for when the admin page is a slideshow edit page.
108
- *
109
- * @since 2.1.11
110
- */
111
- static function enqueueAdminScripts(){
112
-
113
- // Return if function doesn't exist
114
- if(!function_exists('get_current_screen'))
115
- return;
116
-
117
- // Return when not on a slideshow edit page.
118
- $currentScreen = get_current_screen();
119
- if($currentScreen->post_type != self::$postType)
120
- return;
121
-
122
- // Enqueue associating script
123
- wp_enqueue_script(
124
- 'post-type-handler',
125
- SlideshowPluginMain::getPluginUrl() . '/js/' . __CLASS__ . '/post-type-handler.js',
126
- array('jquery'),
127
- SlideshowPluginMain::$version
128
- );
129
-
130
- // TODO: These scripts have been moved here from the footer. They need to be always printed in the header
131
- // TODO: a solution for this needs to be found.
132
- // Enqueue scripts required for sorting the slides list
133
- wp_enqueue_script('jquery-ui-sortable');
134
-
135
- // Enqueue JSColor
136
- wp_enqueue_script(
137
- 'jscolor-colorpicker',
138
- SlideshowPluginMain::getPluginUrl() . '/js/SlideshowPluginPostType/jscolor/jscolor.js',
139
- null,
140
- SlideshowPluginMain::$version
141
- );
142
-
143
- // Enqueue slide insert script and style
144
- SlideshowPluginSlideInserter::enqueueFiles();
145
- }
146
-
147
  /**
148
  * Adds custom meta boxes to slideshow post type.
149
  *
150
  * @since 1.0.0
151
  */
152
- static function registerMetaBoxes(){
 
153
  add_meta_box(
154
  'information',
155
  __('Information', 'slideshow-plugin'),
@@ -187,8 +123,11 @@ class SlideshowPluginPostType {
187
  );
188
 
189
  // Add support plugin message on edit slideshow
190
- if(isset($_GET['action']) && strtolower($_GET['action']) == strtolower('edit'))
 
 
191
  add_action('admin_notices', array(__CLASS__, 'supportPluginMessage'));
 
192
  }
193
 
194
  /**
@@ -196,7 +135,8 @@ class SlideshowPluginPostType {
196
  *
197
  * @since 2.0.0
198
  */
199
- static function supportPluginMessage(){
 
200
  include SlideshowPluginMain::getPluginPath() . '/views/' . __CLASS__ . '/support-plugin.php';
201
  }
202
 
@@ -205,10 +145,11 @@ class SlideshowPluginPostType {
205
  *
206
  * @since 1.0.0
207
  */
208
- static function informationMetaBox(){
 
209
  global $post;
210
 
211
- $snippet = htmlentities(sprintf('<?php do_action(\'slideshow_deploy\', \'%s\'); ?>', $post->ID));
212
  $shortCode = htmlentities(sprintf('[' . SlideshowPluginShortcode::$shortCode . ' id=\'%s\']', $post->ID));
213
 
214
  include SlideshowPluginMain::getPluginPath() . '/views/' . __CLASS__ . '/information.php';
@@ -221,7 +162,8 @@ class SlideshowPluginPostType {
221
  *
222
  * @since 1.0.0
223
  */
224
- static function slidesMetaBox(){
 
225
  global $post;
226
 
227
  // Get views
@@ -236,8 +178,10 @@ class SlideshowPluginPostType {
236
  '</p>';
237
 
238
  // No views/slides message
239
- if(count($views) <= 0)
 
240
  echo '<p>' . __('Add slides to this slideshow by using one of the buttons above.', 'slideshow-plugin') . '</p>';
 
241
 
242
  // Style
243
  echo '<style type="text/css">
@@ -254,15 +198,24 @@ class SlideshowPluginPostType {
254
  echo '<ul class="sortable-slides-list">';
255
 
256
  // Print views
257
- if(is_array($views))
 
258
  foreach($views as $view)
259
- echo $view->toBackEndHTML();
 
 
 
 
260
 
261
- // Templates
262
- SlideshowPluginSlideshowSlide::getBackEndTemplates(false);
 
263
 
264
  // End list
265
  echo '</ul>';
 
 
 
266
  }
267
 
268
  /**
@@ -270,19 +223,13 @@ class SlideshowPluginPostType {
270
  *
271
  * @since 1.3.0
272
  */
273
- static function styleMetaBox(){
 
274
  global $post;
275
 
276
  // Get settings
277
  $settings = SlideshowPluginSlideshowSettingsHandler::getStyleSettings($post->ID, true);
278
 
279
- // Fill custom style with default css if empty
280
- if(isset($settings['custom']) && isset($settings['custom']['value']) && empty($settings['custom']['value'])){
281
- ob_start();
282
- include(SlideshowPluginMain::getPluginPath() . '/style/SlideshowPlugin/style-custom.css');
283
- $settings['custom']['value'] = ob_get_clean();
284
- }
285
-
286
  // Include style settings file
287
  include SlideshowPluginMain::getPluginPath() . '/views/' . __CLASS__ . '/style-settings.php';
288
  }
@@ -292,7 +239,8 @@ class SlideshowPluginPostType {
292
  *
293
  * @since 1.0.0
294
  */
295
- static function settingsMetaBox(){
 
296
  global $post;
297
 
298
  // Nonce
5
  *
6
  * @since 1.0.0
7
  * @author: Stefan Boonstra
 
8
  */
9
+ class SlideshowPluginPostType
10
+ {
11
+ /** @var string $postType */
12
  static $postType = 'slideshow';
13
 
14
  /**
17
  *
18
  * @since 1.3.0
19
  */
20
+ static function init()
21
+ {
22
+ add_action('init' , array(__CLASS__, 'registerSlideshowPostType'));
23
+ add_action('save_post' , array('SlideshowPluginSlideshowSettingsHandler', 'save'));
24
+ add_action('admin_enqueue_scripts', array('SlideshowPluginSlideInserter', 'localizeScript'));
25
  }
26
 
27
  /**
28
+ * Registers new post type slideshow
29
  *
30
  * @since 1.0.0
31
  */
32
+ static function registerSlideshowPostType()
33
+ {
34
  register_post_type(
35
  self::$postType,
36
  array(
37
+ 'labels' => array(
38
+ 'name' => __('Slideshows', 'slideshow-plugin'),
39
+ 'singular_name' => __('Slideshow', 'slideshow-plugin'),
40
+ 'add_new_item' => __('Add New Slideshow', 'slideshow-plugin'),
41
+ 'edit_item' => __('Edit slideshow', 'slideshow-plugin'),
42
+ 'new_item' => __('New slideshow', 'slideshow-plugin'),
43
+ 'view_item' => __('View slideshow', 'slideshow-plugin'),
44
+ 'search_items' => __('Search slideshows', 'slideshow-plugin'),
45
+ 'not_found' => __('No slideshows found', 'slideshow-plugin'),
46
  'not_found_in_trash' => __('No slideshows found', 'slideshow-plugin')
47
  ),
48
+ 'public' => false,
49
+ 'publicly_queryable' => false,
50
+ 'show_ui' => true,
51
+ 'show_in_menu' => true,
52
+ 'query_var' => true,
53
+ 'rewrite' => true,
54
+ 'capability_type' => 'post',
55
+ 'capabilities' => array(
56
+ 'edit_post' => SlideshowPluginGeneralSettings::$capabilities['editSlideshows'],
57
+ 'read_post' => SlideshowPluginGeneralSettings::$capabilities['addSlideshows'],
58
+ 'delete_post' => SlideshowPluginGeneralSettings::$capabilities['deleteSlideshows'],
59
+ 'edit_posts' => SlideshowPluginGeneralSettings::$capabilities['editSlideshows'],
60
+ 'edit_others_posts' => SlideshowPluginGeneralSettings::$capabilities['editSlideshows'],
61
+ 'publish_posts' => SlideshowPluginGeneralSettings::$capabilities['addSlideshows'],
62
+ 'read_private_posts' => SlideshowPluginGeneralSettings::$capabilities['editSlideshows'],
63
+
64
+ 'read' => SlideshowPluginGeneralSettings::$capabilities['addSlideshows'],
65
+ 'delete_posts' => SlideshowPluginGeneralSettings::$capabilities['deleteSlideshows'],
66
+ 'delete_private_posts' => SlideshowPluginGeneralSettings::$capabilities['deleteSlideshows'],
67
  'delete_published_posts' => SlideshowPluginGeneralSettings::$capabilities['deleteSlideshows'],
68
+ 'delete_others_posts' => SlideshowPluginGeneralSettings::$capabilities['deleteSlideshows'],
69
+ 'edit_private_posts' => SlideshowPluginGeneralSettings::$capabilities['editSlideshows'],
70
+ 'edit_published_posts' => SlideshowPluginGeneralSettings::$capabilities['editSlideshows'],
71
  ),
72
+ 'has_archive' => true,
73
+ 'hierarchical' => false,
74
+ 'menu_position' => null,
75
+ 'menu_icon' => SlideshowPluginMain::getPluginUrl() . '/images/' . __CLASS__ . '/adminIcon.png',
76
+ 'supports' => array('title'),
77
  'register_meta_box_cb' => array(__CLASS__, 'registerMetaBoxes')
78
  )
79
  );
80
  }
81
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
82
  /**
83
  * Adds custom meta boxes to slideshow post type.
84
  *
85
  * @since 1.0.0
86
  */
87
+ static function registerMetaBoxes()
88
+ {
89
  add_meta_box(
90
  'information',
91
  __('Information', 'slideshow-plugin'),
123
  );
124
 
125
  // Add support plugin message on edit slideshow
126
+ if (isset($_GET['action']) &&
127
+ strtolower($_GET['action']) == strtolower('edit'))
128
+ {
129
  add_action('admin_notices', array(__CLASS__, 'supportPluginMessage'));
130
+ }
131
  }
132
 
133
  /**
135
  *
136
  * @since 2.0.0
137
  */
138
+ static function supportPluginMessage()
139
+ {
140
  include SlideshowPluginMain::getPluginPath() . '/views/' . __CLASS__ . '/support-plugin.php';
141
  }
142
 
145
  *
146
  * @since 1.0.0
147
  */
148
+ static function informationMetaBox()
149
+ {
150
  global $post;
151
 
152
+ $snippet = htmlentities(sprintf('<?php do_action(\'slideshow_deploy\', \'%s\'); ?>', $post->ID));
153
  $shortCode = htmlentities(sprintf('[' . SlideshowPluginShortcode::$shortCode . ' id=\'%s\']', $post->ID));
154
 
155
  include SlideshowPluginMain::getPluginPath() . '/views/' . __CLASS__ . '/information.php';
162
  *
163
  * @since 1.0.0
164
  */
165
+ static function slidesMetaBox()
166
+ {
167
  global $post;
168
 
169
  // Get views
178
  '</p>';
179
 
180
  // No views/slides message
181
+ if (count($views) <= 0)
182
+ {
183
  echo '<p>' . __('Add slides to this slideshow by using one of the buttons above.', 'slideshow-plugin') . '</p>';
184
+ }
185
 
186
  // Style
187
  echo '<style type="text/css">
198
  echo '<ul class="sortable-slides-list">';
199
 
200
  // Print views
201
+ if (is_array($views))
202
+ {
203
  foreach($views as $view)
204
+ {
205
+ if (!($view instanceof SlideshowPluginSlideshowView))
206
+ {
207
+ continue;
208
+ }
209
 
210
+ echo $view->toBackEndHTML();
211
+ }
212
+ }
213
 
214
  // End list
215
  echo '</ul>';
216
+
217
+ // Templates
218
+ SlideshowPluginSlideshowSlide::getBackEndTemplates(false);
219
  }
220
 
221
  /**
223
  *
224
  * @since 1.3.0
225
  */
226
+ static function styleMetaBox()
227
+ {
228
  global $post;
229
 
230
  // Get settings
231
  $settings = SlideshowPluginSlideshowSettingsHandler::getStyleSettings($post->ID, true);
232
 
 
 
 
 
 
 
 
233
  // Include style settings file
234
  include SlideshowPluginMain::getPluginPath() . '/views/' . __CLASS__ . '/style-settings.php';
235
  }
239
  *
240
  * @since 1.0.0
241
  */
242
+ static function settingsMetaBox()
243
+ {
244
  global $post;
245
 
246
  // Nonce
classes/SlideshowPluginSecurity.php CHANGED
@@ -4,40 +4,39 @@
4
  *
5
  * @since 2.1.16
6
  * @author Stefan Boonstra
7
- * @version 01-02-2013
8
  */
9
- class SlideshowPluginSecurity {
10
-
11
  /**
12
  * @since 2.1.16
13
  * @var array List of allowed element tags
14
  */
15
  private static $allowedElements = array(
16
- 'b' => array('endTag' => true, 'attributes' => 'default'),
17
- 'br' => array('endTag' => false),
18
- 'div' => array('endTag' => true, 'attributes' => 'default'),
19
- 'h1' => array('endTag' => true, 'attributes' => 'default'),
20
- 'h2' => array('endTag' => true, 'attributes' => 'default'),
21
- 'h3' => array('endTag' => true, 'attributes' => 'default'),
22
- 'h4' => array('endTag' => true, 'attributes' => 'default'),
23
- 'h5' => array('endTag' => true, 'attributes' => 'default'),
24
- 'h6' => array('endTag' => true, 'attributes' => 'default'),
25
- 'i' => array('endTag' => true, 'attributes' => 'default'),
26
- 'li' => array('endTag' => true, 'attributes' => 'default'),
27
- 'ol' => array('endTag' => true, 'attributes' => 'default'),
28
- 'p' => array('endTag' => true, 'attributes' => 'default'),
29
- 'span' => array('endTag' => true, 'attributes' => 'default'),
30
  'strong' => array('endTag' => true, 'attributes' => 'default'),
31
- 'sub' => array('endTag' => true, 'attributes' => 'default'),
32
- 'sup' => array('endTag' => true, 'attributes' => 'default'),
33
- 'table' => array('endTag' => true, 'attributes' => 'default'),
34
- 'tbody' => array('endTag' => true, 'attributes' => 'default'),
35
- 'td' => array('endTag' => true, 'attributes' => 'default'),
36
- 'tfoot' => array('endTag' => true, 'attributes' => 'default'),
37
- 'th' => array('endTag' => true, 'attributes' => 'default'),
38
- 'thead' => array('endTag' => true, 'attributes' => 'default'),
39
- 'tr' => array('endTag' => true, 'attributes' => 'default'),
40
- 'ul' => array('endTag' => true, 'attributes' => 'default')
41
  );
42
 
43
  /**
@@ -56,68 +55,86 @@ class SlideshowPluginSecurity {
56
  *
57
  * @since 2.1.16
58
  */
59
- static function htmlspecialchars_allow_exceptions($text){
 
60
  $text = htmlspecialchars(htmlspecialchars_decode($text));
61
 
62
  $allowedElements = self::$allowedElements;
63
 
64
  // Loop through allowed elements decoding their HTML special chars and allowed attributes.
65
- if(is_array($allowedElements) && count($allowedElements) > 0){
66
- foreach($allowedElements as $element => $attributes){
67
-
 
 
68
  $position = 0;
69
 
70
- while(($position = stripos($text, $element, $position)) !== false){ // While element tags found
71
-
72
- $openingTag = '<';
73
  $encodedOpeningTag = htmlspecialchars($openingTag);
74
 
75
- if(substr($text, $position - strlen($encodedOpeningTag), strlen($encodedOpeningTag)) == $encodedOpeningTag){ // Check if an opening tag '<' can be found before the tag name
76
-
77
  // Replace encoded opening tag
78
- $text = substr_replace($text, '<', $position - strlen($encodedOpeningTag), strlen($encodedOpeningTag));
79
  $position -= strlen($encodedOpeningTag) - strlen($openingTag);
80
 
81
  // Get the position of the first element closing tag
82
- $closingTag = '>';
83
- $encodedClosingTag = htmlspecialchars($closingTag);
84
  $closingTagPosition = stripos($text, $encodedClosingTag, $position);
85
 
86
  // Replace encoded closing tag
87
- if($closingTagPosition !== false)
 
88
  $text = substr_replace($text, '>', $closingTagPosition, strlen($encodedClosingTag));
 
89
 
90
  $elementAttributes = null;
91
- if(isset($attributes['attributes']) && is_array($attributes['attributes']))
 
 
92
  $elementAttributes = $attributes['attributes'];
93
- elseif(isset($attributes['attributes']) && $attributes['attributes'] == 'default')
 
 
94
  $elementAttributes = self::$defaultAllowedAttributes;
 
95
  else
 
96
  continue;
 
97
 
98
- if(!is_array($elementAttributes))
 
99
  continue;
 
100
 
101
  $tagText = substr($text, $position, $closingTagPosition - $position);
102
 
103
  // Decode allowed attributes
104
- foreach($elementAttributes as $attribute){
105
-
106
  $attributeOpener = $attribute . '=' . htmlspecialchars('"');
107
 
108
  $attributePosition = 0;
109
- if(($attributePosition = stripos($tagText, $attributeOpener, $attributePosition)) !== false){ // Attribute was found
110
 
 
 
111
  $attributeClosingPosition = 0;
112
- if(($attributeClosingPosition = stripos($tagText, htmlspecialchars('"'), $attributePosition + strlen($attributeOpener))) === false) // If no closing position of attribute was found, skip.
 
 
113
  continue;
 
114
 
115
  // Open the attribute
116
  $tagText = str_ireplace($attributeOpener, $attribute . '="', $tagText);
117
 
118
  // Close the attribute
119
  $attributeClosingPosition -= strlen($attributeOpener) - strlen($attribute . '="');
120
- $tagText = substr_replace($tagText, '"', $attributeClosingPosition, strlen(htmlspecialchars('"')));
121
  }
122
 
123
  }
@@ -130,8 +147,10 @@ class SlideshowPluginSecurity {
130
  }
131
 
132
  // Decode closing tags
133
- if(isset($attributes['endTag']) && $attributes['endTag'])
 
134
  $text = str_ireplace(htmlspecialchars('</' . $element . '>'), '</' . $element . '>', $text);
 
135
  }
136
  }
137
 
4
  *
5
  * @since 2.1.16
6
  * @author Stefan Boonstra
 
7
  */
8
+ class SlideshowPluginSecurity
9
+ {
10
  /**
11
  * @since 2.1.16
12
  * @var array List of allowed element tags
13
  */
14
  private static $allowedElements = array(
15
+ 'b' => array('endTag' => true, 'attributes' => 'default'),
16
+ 'br' => array('endTag' => false),
17
+ 'div' => array('endTag' => true, 'attributes' => 'default'),
18
+ 'h1' => array('endTag' => true, 'attributes' => 'default'),
19
+ 'h2' => array('endTag' => true, 'attributes' => 'default'),
20
+ 'h3' => array('endTag' => true, 'attributes' => 'default'),
21
+ 'h4' => array('endTag' => true, 'attributes' => 'default'),
22
+ 'h5' => array('endTag' => true, 'attributes' => 'default'),
23
+ 'h6' => array('endTag' => true, 'attributes' => 'default'),
24
+ 'i' => array('endTag' => true, 'attributes' => 'default'),
25
+ 'li' => array('endTag' => true, 'attributes' => 'default'),
26
+ 'ol' => array('endTag' => true, 'attributes' => 'default'),
27
+ 'p' => array('endTag' => true, 'attributes' => 'default'),
28
+ 'span' => array('endTag' => true, 'attributes' => 'default'),
29
  'strong' => array('endTag' => true, 'attributes' => 'default'),
30
+ 'sub' => array('endTag' => true, 'attributes' => 'default'),
31
+ 'sup' => array('endTag' => true, 'attributes' => 'default'),
32
+ 'table' => array('endTag' => true, 'attributes' => 'default'),
33
+ 'tbody' => array('endTag' => true, 'attributes' => 'default'),
34
+ 'td' => array('endTag' => true, 'attributes' => 'default'),
35
+ 'tfoot' => array('endTag' => true, 'attributes' => 'default'),
36
+ 'th' => array('endTag' => true, 'attributes' => 'default'),
37
+ 'thead' => array('endTag' => true, 'attributes' => 'default'),
38
+ 'tr' => array('endTag' => true, 'attributes' => 'default'),
39
+ 'ul' => array('endTag' => true, 'attributes' => 'default')
40
  );
41
 
42
  /**
55
  *
56
  * @since 2.1.16
57
  */
58
+ static function htmlspecialchars_allow_exceptions($text)
59
+ {
60
  $text = htmlspecialchars(htmlspecialchars_decode($text));
61
 
62
  $allowedElements = self::$allowedElements;
63
 
64
  // Loop through allowed elements decoding their HTML special chars and allowed attributes.
65
+ if (is_array($allowedElements) &&
66
+ count($allowedElements) > 0)
67
+ {
68
+ foreach ($allowedElements as $element => $attributes)
69
+ {
70
  $position = 0;
71
 
72
+ while (($position = stripos($text, $element, $position)) !== false) // While element tags found
73
+ {
74
+ $openingTag = '<';
75
  $encodedOpeningTag = htmlspecialchars($openingTag);
76
 
77
+ if (substr($text, $position - strlen($encodedOpeningTag), strlen($encodedOpeningTag)) == $encodedOpeningTag) // Check if an opening tag '<' can be found before the tag name
78
+ {
79
  // Replace encoded opening tag
80
+ $text = substr_replace($text, '<', $position - strlen($encodedOpeningTag), strlen($encodedOpeningTag));
81
  $position -= strlen($encodedOpeningTag) - strlen($openingTag);
82
 
83
  // Get the position of the first element closing tag
84
+ $closingTag = '>';
85
+ $encodedClosingTag = htmlspecialchars($closingTag);
86
  $closingTagPosition = stripos($text, $encodedClosingTag, $position);
87
 
88
  // Replace encoded closing tag
89
+ if ($closingTagPosition !== false)
90
+ {
91
  $text = substr_replace($text, '>', $closingTagPosition, strlen($encodedClosingTag));
92
+ }
93
 
94
  $elementAttributes = null;
95
+
96
+ if (isset($attributes['attributes']) && is_array($attributes['attributes']))
97
+ {
98
  $elementAttributes = $attributes['attributes'];
99
+ }
100
+ elseif (isset($attributes['attributes']) && $attributes['attributes'] == 'default')
101
+ {
102
  $elementAttributes = self::$defaultAllowedAttributes;
103
+ }
104
  else
105
+ {
106
  continue;
107
+ }
108
 
109
+ if (!is_array($elementAttributes))
110
+ {
111
  continue;
112
+ }
113
 
114
  $tagText = substr($text, $position, $closingTagPosition - $position);
115
 
116
  // Decode allowed attributes
117
+ foreach ($elementAttributes as $attribute)
118
+ {
119
  $attributeOpener = $attribute . '=' . htmlspecialchars('"');
120
 
121
  $attributePosition = 0;
 
122
 
123
+ if (($attributePosition = stripos($tagText, $attributeOpener, $attributePosition)) !== false) // Attribute was found
124
+ {
125
  $attributeClosingPosition = 0;
126
+
127
+ if (($attributeClosingPosition = stripos($tagText, htmlspecialchars('"'), $attributePosition + strlen($attributeOpener))) === false) // If no closing position of attribute was found, skip.
128
+ {
129
  continue;
130
+ }
131
 
132
  // Open the attribute
133
  $tagText = str_ireplace($attributeOpener, $attribute . '="', $tagText);
134
 
135
  // Close the attribute
136
  $attributeClosingPosition -= strlen($attributeOpener) - strlen($attribute . '="');
137
+ $tagText = substr_replace($tagText, '"', $attributeClosingPosition, strlen(htmlspecialchars('"')));
138
  }
139
 
140
  }
147
  }
148
 
149
  // Decode closing tags
150
+ if (isset($attributes['endTag']) && $attributes['endTag'])
151
+ {
152
  $text = str_ireplace(htmlspecialchars('</' . $element . '>'), '</' . $element . '>', $text);
153
+ }
154
  }
155
  }
156
 
classes/SlideshowPluginShortcode.php CHANGED
@@ -7,13 +7,16 @@
7
  *
8
  * @since 1.2.0
9
  * @author: Stefan Boonstra
10
- * @version: 01-02-2013
11
  */
12
- class SlideshowPluginShortcode {
13
-
14
- /** Variables */
15
  public static $shortCode = 'slideshow_deploy';
 
 
16
  public static $bookmark = '!slideshow_deploy!';
 
 
17
  private static $postIds = array();
18
 
19
  /**
@@ -22,17 +25,19 @@ class SlideshowPluginShortcode {
22
  *
23
  * @since 2.1.16
24
  */
25
- static function init(){
 
26
  // Register shortcode
27
  add_shortcode(self::$shortCode, array(__CLASS__, 'slideshowDeploy'));
28
 
29
  // Admin
30
- if(is_admin()){
 
31
  // Add shortcode inserter HTML
32
  add_action('media_buttons', array(__CLASS__, 'shortcodeInserter'), 11);
33
 
34
  // Enqueue shortcode inserter script
35
- add_action('admin_enqueue_scripts', array(__CLASS__, 'shortcodeInserterScript'));
36
  }
37
  }
38
 
@@ -42,17 +47,23 @@ class SlideshowPluginShortcode {
42
  * Wordpress has done its HTML checks.
43
  *
44
  * @since 1.2.0
45
- * @param mixed $atts
46
  * @return String $output
47
  */
48
- static function slideshowDeploy($atts){
 
49
  $postId = '';
50
- if(isset($atts['id']))
51
- $postId = $atts['id'];
52
 
53
- $output = '';
 
 
 
 
 
54
  $settings = SlideshowPluginSlideshowSettingsHandler::getSettings($postId);
55
- if($settings['avoidFilter'] == 'true'){
 
 
56
  // Filter content after all Wordpress HTML parsers are done, then replace bookmarks with raw HTML
57
  add_filter('the_content', array(__CLASS__, 'insertSlideshow'), 999);
58
  add_filter('the_excerpt', array(__CLASS__, 'insertSlideshow'), 999);
@@ -62,7 +73,9 @@ class SlideshowPluginShortcode {
62
 
63
  // Set output
64
  $output = self::$bookmark;
65
- }else{
 
 
66
  // Just output the slideshow, without filtering
67
  $output = SlideshowPlugin::prepare($postId);
68
  }
@@ -79,15 +92,22 @@ class SlideshowPluginShortcode {
79
  * @param String $content
80
  * @return String $content
81
  */
82
- static function insertSlideshow($content){
 
83
  // Loop through post ids
84
- if(is_array(self::$postIds) && count(self::$postIds) > 0)
85
- foreach(self::$postIds as $postId){
 
 
 
86
  $updatedContent = preg_replace("/" . self::$bookmark . "/", SlideshowPlugin::prepare($postId), $content, 1);
87
 
88
- if(is_string($updatedContent))
 
89
  $content = $updatedContent;
 
90
  }
 
91
 
92
  // Reset postIds, so a shortcode in a next post can be used
93
  self::$postIds = array();
@@ -100,13 +120,14 @@ class SlideshowPluginShortcode {
100
  *
101
  * @since 2.1.16
102
  */
103
- static function shortcodeInserter(){
 
104
  // Get slideshows
105
  $slideshows = new WP_Query(array(
106
- 'post_type' => SlideshowPluginPostType::$postType,
107
- 'orderby' => 'post_date',
108
  'posts_per_page' => -1,
109
- 'order' => 'DESC'
110
  ));
111
 
112
  include(SlideshowPluginMain::getPluginPath() . DIRECTORY_SEPARATOR . 'views' . DIRECTORY_SEPARATOR . __CLASS__ . DIRECTORY_SEPARATOR . 'shortcode-inserter.php');
@@ -117,20 +138,14 @@ class SlideshowPluginShortcode {
117
  *
118
  * @since 2.1.16
119
  */
120
- static function shortcodeInserterScript(){
121
- wp_enqueue_script(
122
- 'slideshow-shortcode-inserter',
123
- SlideshowPluginMain::getPluginUrl() . '/js/' . __CLASS__ . '/shortcode-inserter.js',
124
- array('jquery'),
125
- SlideshowPluginMain::$version
126
- );
127
-
128
  wp_localize_script(
129
- 'slideshow-shortcode-inserter',
130
- 'SlideshowShortcodeInserter',
131
  array(
132
- 'undefinedSlideshowMessage' => __('No slideshow selected.', 'slideshow-plugin'),
133
- 'shortcode' => SlideshowPluginShortcode::$shortCode
134
  )
135
  );
136
  }
7
  *
8
  * @since 1.2.0
9
  * @author: Stefan Boonstra
 
10
  */
11
+ class SlideshowPluginShortcode
12
+ {
13
+ /** @var string $shortCode */
14
  public static $shortCode = 'slideshow_deploy';
15
+
16
+ /** @var string $bookmark */
17
  public static $bookmark = '!slideshow_deploy!';
18
+
19
+ /** @var array $postIDs */
20
  private static $postIds = array();
21
 
22
  /**
25
  *
26
  * @since 2.1.16
27
  */
28
+ static function init()
29
+ {
30
  // Register shortcode
31
  add_shortcode(self::$shortCode, array(__CLASS__, 'slideshowDeploy'));
32
 
33
  // Admin
34
+ if (is_admin())
35
+ {
36
  // Add shortcode inserter HTML
37
  add_action('media_buttons', array(__CLASS__, 'shortcodeInserter'), 11);
38
 
39
  // Enqueue shortcode inserter script
40
+ add_action('admin_enqueue_scripts', array(__CLASS__, 'localizeScript'));
41
  }
42
  }
43
 
47
  * Wordpress has done its HTML checks.
48
  *
49
  * @since 1.2.0
50
+ * @param mixed $attributes
51
  * @return String $output
52
  */
53
+ static function slideshowDeploy($attributes)
54
+ {
55
  $postId = '';
 
 
56
 
57
+ if (isset($attributes['id']))
58
+ {
59
+ $postId = $attributes['id'];
60
+ }
61
+
62
+ $output = '';
63
  $settings = SlideshowPluginSlideshowSettingsHandler::getSettings($postId);
64
+
65
+ if ($settings['avoidFilter'] == 'true')
66
+ {
67
  // Filter content after all Wordpress HTML parsers are done, then replace bookmarks with raw HTML
68
  add_filter('the_content', array(__CLASS__, 'insertSlideshow'), 999);
69
  add_filter('the_excerpt', array(__CLASS__, 'insertSlideshow'), 999);
73
 
74
  // Set output
75
  $output = self::$bookmark;
76
+ }
77
+ else
78
+ {
79
  // Just output the slideshow, without filtering
80
  $output = SlideshowPlugin::prepare($postId);
81
  }
92
  * @param String $content
93
  * @return String $content
94
  */
95
+ static function insertSlideshow($content)
96
+ {
97
  // Loop through post ids
98
+ if (is_array(self::$postIds) &&
99
+ count(self::$postIds) > 0)
100
+ {
101
+ foreach (self::$postIds as $postId)
102
+ {
103
  $updatedContent = preg_replace("/" . self::$bookmark . "/", SlideshowPlugin::prepare($postId), $content, 1);
104
 
105
+ if (is_string($updatedContent))
106
+ {
107
  $content = $updatedContent;
108
+ }
109
  }
110
+ }
111
 
112
  // Reset postIds, so a shortcode in a next post can be used
113
  self::$postIds = array();
120
  *
121
  * @since 2.1.16
122
  */
123
+ static function shortcodeInserter()
124
+ {
125
  // Get slideshows
126
  $slideshows = new WP_Query(array(
127
+ 'post_type' => SlideshowPluginPostType::$postType,
128
+ 'orderby' => 'post_date',
129
  'posts_per_page' => -1,
130
+ 'order' => 'DESC'
131
  ));
132
 
133
  include(SlideshowPluginMain::getPluginPath() . DIRECTORY_SEPARATOR . 'views' . DIRECTORY_SEPARATOR . __CLASS__ . DIRECTORY_SEPARATOR . 'shortcode-inserter.php');
138
  *
139
  * @since 2.1.16
140
  */
141
+ static function localizeScript()
142
+ {
 
 
 
 
 
 
143
  wp_localize_script(
144
+ 'slideshow-jquery-image-gallery-backend-script',
145
+ 'slideshow_jquery_image_gallery_backend_script_shortcode',
146
  array(
147
+ 'data' => array('shortcode' => SlideshowPluginShortcode::$shortCode),
148
+ 'localization' => array('undefinedSlideshow' => __('No slideshow selected.', 'slideshow-plugin'))
149
  )
150
  );
151
  }
classes/SlideshowPluginSlideInserter.php CHANGED
@@ -4,26 +4,29 @@
4
  *
5
  * TODO This class will probably need to be renamed to SlideshowPluginSlideHandler to explain more functionality
6
  * TODO than just inserting slides.
 
7
  * @since 2.0.0
8
  * @author Stefan Boonstra
9
- * @version 01-02-2013
10
  */
11
- class SlideshowPluginSlideInserter {
12
-
13
- /** Flag to see if enqueue function has been called */
14
- private static $enqueuedFiles;
15
 
16
  /**
17
  * Returns the html for showing the image insert button.
18
- * Enqueues scripts unless $enqueueFiles is set to false.
19
  *
20
  * @since 2.0.0
21
- * @param boolean $enqueueFiles
22
  * @return String $button
23
  */
24
- static function getImageSlideInsertButton($enqueueFiles = true){
25
- if($enqueueFiles)
26
- self::enqueueFiles();
 
 
 
27
 
28
  // Put popup html in footer
29
  add_action('admin_footer', array(__CLASS__, 'includePopup'));
@@ -36,15 +39,18 @@ class SlideshowPluginSlideInserter {
36
 
37
  /**
38
  * Returns the html for showing the text insert button.
39
- * Enqueues scripts unless $enqueueFiles is set to false.
40
  *
41
  * @since 2.0.0
42
- * @param boolean $enqueueFiles
43
  * @return String $button
44
  */
45
- static function getTextSlideInsertButton($enqueueFiles = true){
46
- if($enqueueFiles)
47
- self::enqueueFiles();
 
 
 
48
 
49
  // Return button html
50
  ob_start();
@@ -54,15 +60,18 @@ class SlideshowPluginSlideInserter {
54
 
55
  /**
56
  * Returns the html for showing the video insert button.
57
- * Enqueues scripts unless $enqueueFiles is set to false.
58
  *
59
  * @since 2.1.0
60
- * @param boolean $enqueueFiles
61
  * @return String $button
62
  */
63
- static function getVideoSlideInsertButton($enqueueFiles = true){
64
- if($enqueueFiles)
65
- self::enqueueFiles();
 
 
 
66
 
67
  // Return button html
68
  ob_start();
@@ -76,51 +85,61 @@ class SlideshowPluginSlideInserter {
76
  *
77
  * @since 2.0.0
78
  */
79
- static function printSearchResults(){
 
80
  global $wpdb;
81
 
82
  // Numberposts and offset
83
  $numberPosts = 10;
84
- $offset = 0;
85
- if(isset($_POST['offset']) && is_numeric($_POST['offset']))
 
 
 
86
  $offset = $_POST['offset'];
 
87
 
88
  $attachmentIDs = array();
89
- if(isset($_POST['attachmentIDs']))
 
 
90
  $attachmentIDs = array_filter($_POST['attachmentIDs'], 'ctype_digit');
 
91
 
92
  // Get attachments with a title alike the search string, needs to be filtered
93
  add_filter('posts_where', array(__CLASS__, 'printSearchResultsWhereFilter'));
94
  $query = new WP_Query(array(
95
- 'post_type' => 'attachment',
96
- 'post_status' => 'inherit',
97
- 'offset' => $offset,
98
  'posts_per_page' => $numberPosts + 1,
99
- 'orderby' => 'date',
100
- 'order' => 'DESC'
101
  ));
102
  $attachments = $query->get_posts();
103
  remove_filter('posts_where', array(__CLASS__, 'printSearchResultsWhereFilter'));
104
 
105
  // Look for images by their file's name when not enough matching results were found
106
- if(count($attachments) < $numberPosts){
107
- $searchString = $wpdb->escape($_POST['search']);
 
108
 
109
  // Add results found with the previous query to the $attachmentIDs array to exclude them as well
110
- foreach($attachments as $attachment){
 
111
  $attachmentIDs[] = $attachment->ID;
112
  }
113
 
114
  // Search by file name
115
  $fileNameQuery = new WP_Query(array(
116
- 'post_type' => 'attachment',
117
- 'post_status' => 'inherit',
118
  'posts_per_page' => $numberPosts - count($attachments),
119
- 'post__not_in' => $attachmentIDs,
120
- 'meta_query' => array(
121
  array(
122
- 'key' => '_wp_attached_file',
123
- 'value' => $searchString,
124
  'compare' => 'LIKE'
125
  )
126
  )
@@ -128,41 +147,66 @@ class SlideshowPluginSlideInserter {
128
 
129
  // Put found results in attachments array
130
  $fileNameQueryAttachments = $fileNameQuery->get_posts();
131
- if(is_array($fileNameQueryAttachments) && count($fileNameQueryAttachments) > 0){
132
 
133
- foreach($fileNameQueryAttachments as $fileNameQueryAttachment)
 
 
 
 
134
  $attachments[] = $fileNameQueryAttachment;
 
135
  }
136
  }
137
 
138
  // Check if there are enough attachments to print a 'Load more images' button
139
  $loadMoreResults = false;
140
- if(count($attachments) > $numberPosts){
 
 
141
  array_pop($attachments);
 
142
  $loadMoreResults = true;
143
  }
144
 
145
  // Print results to the screen
146
- if(count($attachments) > 0){
147
-
148
- if($offset > 0)
 
149
  echo '<tr valign="top">
150
  <td colspan="3" style="text-align: center;">
151
  <b>' . count($attachments) . ' ' . __('More results loaded', 'slideshow-plugin') . '<b>
152
  </td>
153
  </tr>';
 
154
 
155
- foreach($attachments as $attachment){
 
156
  $image = wp_get_attachment_image_src($attachment->ID);
157
- if(!is_array($image) || !$image){
158
- if(!empty($attachment->guid))
 
 
 
 
159
  $imageSrc = $attachment->guid;
 
160
  else
 
161
  continue;
162
- }else{
 
 
 
163
  $imageSrc = $image[0];
164
  }
165
- if(!$imageSrc || empty($imageSrc)) $imageSrc = SlideshowPluginMain::getPluginUrl() . '/images/SlideshowPluginPostType/no-img.png';
 
 
 
 
 
 
166
  echo '<tr valign="top" data-attachment-Id="' . $attachment->ID . '" class="result-table-row">
167
  <td class="image">
168
  <img width="60" height="60" src="' . $imageSrc . '" class="attachment" alt="' . $attachment->post_title . '" title="' . $attachment->post_title . '">
@@ -180,7 +224,9 @@ class SlideshowPluginSlideInserter {
180
  </td>
181
  </tr>';
182
  }
183
- if($loadMoreResults){
 
 
184
  echo '<tr>
185
  <td colspan="3" style="text-align: center;">
186
  <button class="button-secondary load-more-results" data-offset="' . ($offset + $numberPosts) . '">
@@ -189,7 +235,9 @@ class SlideshowPluginSlideInserter {
189
  </td>
190
  </tr>';
191
  }
192
- } else {
 
 
193
  echo '<tr>
194
  <td colspan="3" style="text-align: center;">
195
  <a href="' . admin_url() . 'media-new.php" target="_blank">
@@ -209,18 +257,21 @@ class SlideshowPluginSlideInserter {
209
  * @param string $where
210
  * @return string $where
211
  */
212
- static function printSearchResultsWhereFilter($where){
 
213
  global $wpdb;
214
 
215
  $searchString = $_POST['search'];
216
- $searchString = $wpdb->escape($searchString);
217
 
218
- if(isset($_POST['search']))
 
219
  $where .= $wpdb->prepare(
220
  " AND (post_title LIKE '%%%s%%' OR ID LIKE '%%%s%%') ",
221
  $searchString,
222
  $searchString
223
  );
 
224
 
225
  return $where;
226
  }
@@ -230,51 +281,43 @@ class SlideshowPluginSlideInserter {
230
  *
231
  * @since 2.0.0
232
  */
233
- static function includePopup(){
 
234
  include(SlideshowPluginMain::getPluginPath() . '/views/' . __CLASS__ . '/search-popup.php');
235
  }
236
 
237
  /**
238
  * Enqueues styles and scripts necessary for the media upload button.
239
  *
240
- * @since 2.0.0
241
  */
242
- static function enqueueFiles(){
243
-
244
  // Return if function doesn't exist
245
- if(!function_exists('get_current_screen'))
 
 
246
  return;
 
247
 
248
  // Return when not on a slideshow edit page, or files have already been included.
249
  $currentScreen = get_current_screen();
250
- if($currentScreen->post_type != SlideshowPluginPostType::$postType || self::$enqueuedFiles)
251
- return;
252
 
253
- // Enqueue style
254
- wp_enqueue_style(
255
- 'slideshow-slide-inserter',
256
- SlideshowPluginMain::getPluginUrl() . '/style/' . __CLASS__ . '/slide-inserter.css',
257
- null,
258
- SlideshowPluginMain::$version
259
- );
260
-
261
- // Enqueue insert button script
262
- wp_enqueue_script(
263
- 'slideshow-slide-inserter',
264
- SlideshowPluginMain::getPluginUrl() . '/js/' . __CLASS__ . '/slide-inserter.js',
265
- array('jquery'),
266
- SlideshowPluginMain::$version
267
- );
268
 
269
  wp_localize_script(
270
- 'slideshow-slide-inserter',
271
- 'SlideInserterTranslations',
272
  array(
273
- 'confirmMessage' => __('Are you sure you want to delete this slide?', 'slideshow-plugin')
 
274
  )
275
  );
276
 
277
  // Set enqueued to true
278
- self::$enqueuedFiles = true;
279
  }
280
  }
4
  *
5
  * TODO This class will probably need to be renamed to SlideshowPluginSlideHandler to explain more functionality
6
  * TODO than just inserting slides.
7
+ *
8
  * @since 2.0.0
9
  * @author Stefan Boonstra
 
10
  */
11
+ class SlideshowPluginSlideInserter
12
+ {
13
+ /** @var bool $localizedScript Flag to see if localizeScript function has been called */
14
+ private static $localizedScript;
15
 
16
  /**
17
  * Returns the html for showing the image insert button.
18
+ * Localizes script unless $localizeScript is set to false.
19
  *
20
  * @since 2.0.0
21
+ * @param boolean $localizeScript
22
  * @return String $button
23
  */
24
+ static function getImageSlideInsertButton($localizeScript = true)
25
+ {
26
+ if ($localizeScript)
27
+ {
28
+ self::localizeScript();
29
+ }
30
 
31
  // Put popup html in footer
32
  add_action('admin_footer', array(__CLASS__, 'includePopup'));
39
 
40
  /**
41
  * Returns the html for showing the text insert button.
42
+ * Localizes script unless $localizeScript is set to false.
43
  *
44
  * @since 2.0.0
45
+ * @param boolean $localizeScript
46
  * @return String $button
47
  */
48
+ static function getTextSlideInsertButton($localizeScript = true)
49
+ {
50
+ if ($localizeScript)
51
+ {
52
+ self::localizeScript();
53
+ }
54
 
55
  // Return button html
56
  ob_start();
60
 
61
  /**
62
  * Returns the html for showing the video insert button.
63
+ * Localizes script unless $localizeScript is set to false.
64
  *
65
  * @since 2.1.0
66
+ * @param boolean $localizeScript
67
  * @return String $button
68
  */
69
+ static function getVideoSlideInsertButton($localizeScript = true)
70
+ {
71
+ if ($localizeScript)
72
+ {
73
+ self::localizeScript();
74
+ }
75
 
76
  // Return button html
77
  ob_start();
85
  *
86
  * @since 2.0.0
87
  */
88
+ static function printSearchResults()
89
+ {
90
  global $wpdb;
91
 
92
  // Numberposts and offset
93
  $numberPosts = 10;
94
+ $offset = 0;
95
+
96
+ if (isset($_POST['offset']) &&
97
+ is_numeric($_POST['offset']))
98
+ {
99
  $offset = $_POST['offset'];
100
+ }
101
 
102
  $attachmentIDs = array();
103
+
104
+ if (isset($_POST['attachmentIDs']))
105
+ {
106
  $attachmentIDs = array_filter($_POST['attachmentIDs'], 'ctype_digit');
107
+ }
108
 
109
  // Get attachments with a title alike the search string, needs to be filtered
110
  add_filter('posts_where', array(__CLASS__, 'printSearchResultsWhereFilter'));
111
  $query = new WP_Query(array(
112
+ 'post_type' => 'attachment',
113
+ 'post_status' => 'inherit',
114
+ 'offset' => $offset,
115
  'posts_per_page' => $numberPosts + 1,
116
+ 'orderby' => 'date',
117
+ 'order' => 'DESC'
118
  ));
119
  $attachments = $query->get_posts();
120
  remove_filter('posts_where', array(__CLASS__, 'printSearchResultsWhereFilter'));
121
 
122
  // Look for images by their file's name when not enough matching results were found
123
+ if (count($attachments) < $numberPosts)
124
+ {
125
+ $searchString = esc_sql($_POST['search']);
126
 
127
  // Add results found with the previous query to the $attachmentIDs array to exclude them as well
128
+ foreach ($attachments as $attachment)
129
+ {
130
  $attachmentIDs[] = $attachment->ID;
131
  }
132
 
133
  // Search by file name
134
  $fileNameQuery = new WP_Query(array(
135
+ 'post_type' => 'attachment',
136
+ 'post_status' => 'inherit',
137
  'posts_per_page' => $numberPosts - count($attachments),
138
+ 'post__not_in' => $attachmentIDs,
139
+ 'meta_query' => array(
140
  array(
141
+ 'key' => '_wp_attached_file',
142
+ 'value' => $searchString,
143
  'compare' => 'LIKE'
144
  )
145
  )
147
 
148
  // Put found results in attachments array
149
  $fileNameQueryAttachments = $fileNameQuery->get_posts();
 
150
 
151
+ if (is_array($fileNameQueryAttachments) &&
152
+ count($fileNameQueryAttachments) > 0)
153
+ {
154
+ foreach ($fileNameQueryAttachments as $fileNameQueryAttachment)
155
+ {
156
  $attachments[] = $fileNameQueryAttachment;
157
+ }
158
  }
159
  }
160
 
161
  // Check if there are enough attachments to print a 'Load more images' button
162
  $loadMoreResults = false;
163
+
164
+ if (count($attachments) > $numberPosts)
165
+ {
166
  array_pop($attachments);
167
+
168
  $loadMoreResults = true;
169
  }
170
 
171
  // Print results to the screen
172
+ if (count($attachments) > 0)
173
+ {
174
+ if ($offset > 0)
175
+ {
176
  echo '<tr valign="top">
177
  <td colspan="3" style="text-align: center;">
178
  <b>' . count($attachments) . ' ' . __('More results loaded', 'slideshow-plugin') . '<b>
179
  </td>
180
  </tr>';
181
+ }
182
 
183
+ foreach ($attachments as $attachment)
184
+ {
185
  $image = wp_get_attachment_image_src($attachment->ID);
186
+
187
+ if (!is_array($image) ||
188
+ !$image)
189
+ {
190
+ if (!empty($attachment->guid))
191
+ {
192
  $imageSrc = $attachment->guid;
193
+ }
194
  else
195
+ {
196
  continue;
197
+ }
198
+ }
199
+ else
200
+ {
201
  $imageSrc = $image[0];
202
  }
203
+
204
+ if (!$imageSrc ||
205
+ empty($imageSrc))
206
+ {
207
+ $imageSrc = SlideshowPluginMain::getPluginUrl() . '/images/SlideshowPluginPostType/no-img.png';
208
+ }
209
+
210
  echo '<tr valign="top" data-attachment-Id="' . $attachment->ID . '" class="result-table-row">
211
  <td class="image">
212
  <img width="60" height="60" src="' . $imageSrc . '" class="attachment" alt="' . $attachment->post_title . '" title="' . $attachment->post_title . '">
224
  </td>
225
  </tr>';
226
  }
227
+
228
+ if ($loadMoreResults)
229
+ {
230
  echo '<tr>
231
  <td colspan="3" style="text-align: center;">
232
  <button class="button-secondary load-more-results" data-offset="' . ($offset + $numberPosts) . '">
235
  </td>
236
  </tr>';
237
  }
238
+ }
239
+ else
240
+ {
241
  echo '<tr>
242
  <td colspan="3" style="text-align: center;">
243
  <a href="' . admin_url() . 'media-new.php" target="_blank">
257
  * @param string $where
258
  * @return string $where
259
  */
260
+ static function printSearchResultsWhereFilter($where)
261
+ {
262
  global $wpdb;
263
 
264
  $searchString = $_POST['search'];
265
+ $searchString = esc_sql($searchString);
266
 
267
+ if (isset($_POST['search']))
268
+ {
269
  $where .= $wpdb->prepare(
270
  " AND (post_title LIKE '%%%s%%' OR ID LIKE '%%%s%%') ",
271
  $searchString,
272
  $searchString
273
  );
274
+ }
275
 
276
  return $where;
277
  }
281
  *
282
  * @since 2.0.0
283
  */
284
+ static function includePopup()
285
+ {
286
  include(SlideshowPluginMain::getPluginPath() . '/views/' . __CLASS__ . '/search-popup.php');
287
  }
288
 
289
  /**
290
  * Enqueues styles and scripts necessary for the media upload button.
291
  *
292
+ * @since 2.2.12
293
  */
294
+ static function localizeScript()
295
+ {
296
  // Return if function doesn't exist
297
+ if (!function_exists('get_current_screen') ||
298
+ self::$localizedScript)
299
+ {
300
  return;
301
+ }
302
 
303
  // Return when not on a slideshow edit page, or files have already been included.
304
  $currentScreen = get_current_screen();
 
 
305
 
306
+ if ($currentScreen->post_type != SlideshowPluginPostType::$postType)
307
+ {
308
+ return;
309
+ }
 
 
 
 
 
 
 
 
 
 
 
310
 
311
  wp_localize_script(
312
+ 'slideshow-jquery-image-gallery-backend-script',
313
+ 'slideshow_jquery_image_gallery_backend_script_editSlideshow',
314
  array(
315
+ 'data' => array(),
316
+ 'localization' => array('confirm' => __('Are you sure you want to delete this slide?', 'slideshow-plugin'))
317
  )
318
  );
319
 
320
  // Set enqueued to true
321
+ self::$localizedScript = true;
322
  }
323
  }
classes/SlideshowPluginSlideshowSettingsHandler.php CHANGED
@@ -4,22 +4,26 @@
4
  *
5
  * @since 2.1.20
6
  * @author Stefan Boonstra
7
- * @version 01-02-2013
8
  */
9
- class SlideshowPluginSlideshowSettingsHandler {
10
-
11
- /** Nonce */
12
  static $nonceAction = 'slideshow-jquery-image-gallery-nonceAction';
 
13
  static $nonceName = 'slideshow-jquery-image-gallery-nonceName';
14
 
15
- /** Setting keys */
16
  static $settingsKey = 'settings';
 
17
  static $styleSettingsKey = 'styleSettings';
 
18
  static $slidesKey = 'slides';
19
 
20
- /** Cached settings stored by slideshow ID */
21
  static $settings = array();
 
22
  static $styleSettings = array();
 
23
  static $slides = array();
24
 
25
  /**
@@ -43,12 +47,12 @@ class SlideshowPluginSlideshowSettingsHandler {
43
  * @param boolean $mergeDefaults (optional, defaults to true)
44
  * @return mixed $settings
45
  */
46
- static function getAllSettings($slideshowId, $fullDefinition = false, $enableCache = true, $mergeDefaults = true){
47
-
48
- $settings = array();
49
- $settings[self::$settingsKey] = self::getSettings($slideshowId, $fullDefinition, $enableCache, $mergeDefaults);
50
  $settings[self::$styleSettingsKey] = self::getStyleSettings($slideshowId, $fullDefinition, $enableCache, $mergeDefaults);
51
- $settings[self::$slidesKey] = self::getSlides($slideshowId, $enableCache);
52
 
53
  return $settings;
54
  }
@@ -65,55 +69,80 @@ class SlideshowPluginSlideshowSettingsHandler {
65
  * @param boolean $mergeDefaults (optional, defaults to true)
66
  * @return mixed $settings
67
  */
68
- static function getSettings($slideshowId, $fullDefinition = false, $enableCache = true, $mergeDefaults = true){
69
-
70
- if(!is_numeric($slideshowId) || empty($slideshowId))
 
 
71
  return array();
 
72
 
73
  // Set caching to false and merging defaults to true when $fullDefinition is set to true
74
- if($fullDefinition){
75
- $enableCache = false;
 
76
  $mergeDefaults = true;
77
  }
78
 
79
  // If no cache is set, or cache is disabled
80
- if(!isset(self::$settings[$slideshowId]) || empty(self::$settings[$slideshowId]) || !$enableCache){
 
 
 
81
  // Meta data
82
  $settingsMeta = get_post_meta(
83
  $slideshowId,
84
  self::$settingsKey,
85
  true
86
  );
87
- if(!$settingsMeta || !is_array($settingsMeta))
 
 
 
88
  $settingsMeta = array();
 
89
 
90
  // If the settings should be merged with the defaults as a full definition, place each setting in an array referenced by 'value'.
91
- if($fullDefinition)
92
- foreach($settingsMeta as $key => $value)
 
 
93
  $settingsMeta[$key] = array('value' => $value);
 
 
94
 
95
  // Get defaults
96
  $defaults = array();
97
- if($mergeDefaults)
 
 
98
  $defaults = self::getDefaultSettings($fullDefinition);
 
99
 
100
  // Merge with defaults, recursively if a the full definition is required
101
- if($fullDefinition)
 
102
  $settings = array_merge_recursive(
103
  $defaults,
104
  $settingsMeta
105
  );
 
106
  else
 
107
  $settings = array_merge(
108
  $defaults,
109
  $settingsMeta
110
  );
 
111
 
112
  // Cache if cache is enabled
113
- if($enableCache){
 
114
  self::$settings[$slideshowId] = $settings;
115
  }
116
- }else{
 
 
117
  // Get cached settings
118
  $settings = self::$settings[$slideshowId];
119
  }
@@ -134,55 +163,80 @@ class SlideshowPluginSlideshowSettingsHandler {
134
  * @param boolean $mergeDefaults (optional, defaults to true)
135
  * @return mixed $settings
136
  */
137
- static function getStyleSettings($slideshowId, $fullDefinition = false, $enableCache = true, $mergeDefaults = true){
138
-
139
- if(!is_numeric($slideshowId) || empty($slideshowId))
 
 
140
  return array();
 
141
 
142
  // Set caching to false and merging defaults to true when $fullDefinition is set to true
143
- if($fullDefinition){
144
- $enableCache = false;
 
145
  $mergeDefaults = true;
146
  }
147
 
148
  // If no cache is set, or cache is disabled
149
- if(!isset(self::$styleSettings[$slideshowId]) || empty(self::$styleSettings[$slideshowId]) || !$enableCache){
 
 
 
150
  // Meta data
151
  $styleSettingsMeta = get_post_meta(
152
  $slideshowId,
153
  self::$styleSettingsKey,
154
  true
155
  );
156
- if(!$styleSettingsMeta || !is_array($styleSettingsMeta))
 
 
 
157
  $styleSettingsMeta = array();
 
158
 
159
  // If the settings should be merged with the defaults as a full definition, place each setting in an array referenced by 'value'.
160
- if($fullDefinition)
161
- foreach($styleSettingsMeta as $key => $value)
 
 
162
  $styleSettingsMeta[$key] = array('value' => $value);
 
 
163
 
164
  // Get defaults
165
  $defaults = array();
166
- if($mergeDefaults)
 
 
167
  $defaults = self::getDefaultStyleSettings($fullDefinition);
 
168
 
169
  // Merge with defaults, recursively if a the full definition is required
170
- if($fullDefinition)
 
171
  $styleSettings = array_merge_recursive(
172
  $defaults,
173
  $styleSettingsMeta
174
  );
 
175
  else
 
176
  $styleSettings = array_merge(
177
  $defaults,
178
  $styleSettingsMeta
179
  );
 
180
 
181
  // Cache if cache is enabled
182
- if($enableCache){
 
183
  self::$styleSettings[$slideshowId] = $styleSettings;
184
  }
185
- }else{
 
 
186
  // Get cached settings
187
  $styleSettings = self::$styleSettings[$slideshowId];
188
  }
@@ -201,29 +255,41 @@ class SlideshowPluginSlideshowSettingsHandler {
201
  * @param boolean $enableCache (optional, defaults to true)
202
  * @return mixed $settings
203
  */
204
- static function getSlides($slideshowId, $enableCache = true){
205
-
206
- if(!is_numeric($slideshowId) || empty($slideshowId))
 
 
207
  return array();
 
208
 
209
  // If no cache is set, or cache is disabled
210
- if(!isset(self::$slides[$slideshowId]) || empty(self::$slides[$slideshowId]) || !$enableCache){
 
 
 
211
  // Meta data
212
  $slides = get_post_meta(
213
  $slideshowId,
214
  self::$slidesKey,
215
  true
216
  );
217
- }else{
 
 
218
  // Get cached settings
219
  $slides = self::$slides[$slideshowId];
220
  }
221
 
222
  // Sort slides by order ID
223
- if(is_array($slides))
 
224
  ksort($slides);
 
225
  else
 
226
  $slides = array();
 
227
 
228
  // Return
229
  return $slides;
@@ -241,39 +307,53 @@ class SlideshowPluginSlideshowSettingsHandler {
241
  * @param bool $enableCache (optional, defaults to true)
242
  * @return mixed $views
243
  */
244
- static function getViews($slideshowId, $returnAsObjects = true, $enableCache = true){
245
-
246
  // Get slides
247
  $slides = self::getSlides($slideshowId, $enableCache);
248
 
249
  // Get settings. Since in version 2.2.X slides aren't put into views yet, this has to be done manually
250
  $settings = SlideshowPluginSlideshowSettingsHandler::getSettings($slideshowId, false, $enableCache);
251
  $slidesPerView = 1;
 
252
  if(isset($settings['slidesPerView']))
 
253
  $slidesPerView = $settings['slidesPerView'];
 
254
 
255
  // Loop through slides, forcing them into views
256
- $i = 0;
257
  $viewId = -1;
258
- $views = array();
259
- if(is_array($slides)){
260
- foreach($slides as $slide){
261
 
 
 
 
 
262
  // Create new view when view is full or not yet created
263
- if($i % $slidesPerView == 0){
264
-
265
  $viewId++;
266
- if($returnAsObjects)
 
 
267
  $views[$viewId] = new SlideshowPluginSlideshowView();
 
268
  else
 
269
  $views[$viewId] = array();
 
270
  }
271
 
272
  // Add slide to view
273
- if($returnAsObjects)
 
274
  $views[$viewId]->addSlide($slide);
 
275
  else
 
276
  $views[$viewId][] = $slide;
 
277
 
278
  $i++;
279
  }
@@ -290,27 +370,41 @@ class SlideshowPluginSlideshowSettingsHandler {
290
  * @param int $postId
291
  * @return int $postId
292
  */
293
- static function save($postId){
294
-
295
  // Verify nonce, check if user has sufficient rights and return on auto-save.
296
- if(get_post_type($postId) != SlideshowPluginPostType::$postType ||
297
  (!isset($_POST[self::$nonceName]) || !wp_verify_nonce($_POST[self::$nonceName], self::$nonceAction)) ||
298
  !current_user_can('edit_post', $postId) ||
299
  (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE))
 
300
  return $postId;
 
301
 
302
  // Old settings
303
- $oldSettings = self::getSettings($postId);
304
  $oldStyleSettings = self::getStyleSettings($postId);
305
 
306
  // Get new settings from $_POST, making sure they're arrays
307
  $newPostSettings = $newPostStyleSettings = $newPostSlides = array();
308
- if(isset($_POST[self::$settingsKey]) && is_array($_POST[self::$settingsKey]))
 
 
 
309
  $newPostSettings = $_POST[self::$settingsKey];
310
- if(isset($_POST[self::$styleSettingsKey]) && is_array($_POST[self::$styleSettingsKey]))
 
 
 
 
311
  $newPostStyleSettings = $_POST[self::$styleSettingsKey];
312
- if(isset($_POST[self::$slidesKey]) && is_array($_POST[self::$slidesKey]))
 
 
 
 
313
  $newPostSlides = $_POST[self::$slidesKey];
 
314
 
315
  // Merge new settings with its old values
316
  $newSettings = array_merge(
@@ -353,10 +447,10 @@ class SlideshowPluginSlideshowSettingsHandler {
353
  * @param boolean $fromDatabase (optional, defaults to true)
354
  * @return mixed $data
355
  */
356
- static function getAllDefaults($key = null, $fullDefinition = false, $fromDatabase = true){
357
-
358
- $data = array();
359
- $data[self::$settingsKey] = self::getDefaultSettings($fullDefinition, $fromDatabase);
360
  $data[self::$styleSettingsKey] = self::getDefaultStyleSettings($fullDefinition, $fromDatabase);
361
 
362
  return $data;
@@ -372,11 +466,11 @@ class SlideshowPluginSlideshowSettingsHandler {
372
  * @param boolean $fromDatabase (optional, defaults to true)
373
  * @return mixed $data
374
  */
375
- static function getDefaultSettings($fullDefinition = false, $fromDatabase = true){
376
-
377
  // Much used data for translation
378
  $yes = __('Yes', 'slideshow-plugin');
379
- $no = __('No', 'slideshow-plugin');
380
 
381
  // Default values
382
  $data = array(
@@ -402,44 +496,80 @@ class SlideshowPluginSlideshowSettingsHandler {
402
  'hidePagination' => 'true',
403
  'controlPanel' => 'false',
404
  'hideControlPanel' => 'true',
 
 
405
  'random' => 'false',
406
  'avoidFilter' => 'true'
407
  );
408
 
409
  // Read defaults from database and merge with $data, when $fromDatabase is set to true
410
- if($fromDatabase)
 
411
  $data = array_merge(
412
  $data,
413
  $customData = get_option(SlideshowPluginGeneralSettings::$defaultSettings, array())
414
  );
 
415
 
416
  // Full definition
417
- if($fullDefinition){
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
418
  $data = array(
419
- 'animation' => array('type' => 'select', 'default' => $data['animation'], 'description' => __('Animation used for transition between slides', 'slideshow-plugin'), 'options' => array('slide' => __('Slide Left', 'slideshow-plugin'), 'slideRight' => __('Slide Right', 'slideshow-plugin'), 'slideUp' => __('Slide Up', 'slideshow-plugin'), 'slideDown' => __('Slide Down', 'slideshow-plugin'), 'directFade' => __('Direct Fade', 'slideshow-plugin'), 'fade' => __('Fade', 'slideshow-plugin'), 'random' => __('Random Animation', 'slideshow-plugin')), 'group' => __('Animation', 'slideshow-plugin')),
420
- 'slideSpeed' => array('type' => 'text', 'default' => $data['slideSpeed'], 'description' => __('Number of seconds the slide takes to slide in', 'slideshow-plugin'), 'group' => __('Animation', 'slideshow-plugin')),
421
- 'descriptionSpeed' => array('type' => 'text', 'default' => $data['descriptionSpeed'], 'description' => __('Number of seconds the description takes to slide in', 'slideshow-plugin'), 'group' => __('Animation', 'slideshow-plugin')),
422
- 'intervalSpeed' => array('type' => 'text', 'default' => $data['intervalSpeed'], 'description' => __('Seconds between changing slides', 'slideshow-plugin'), 'group' => __('Animation', 'slideshow-plugin')),
423
- 'slidesPerView' => array('type' => 'text', 'default' => $data['slidesPerView'], 'description' => __('Number of slides to fit into one slide', 'slideshow-plugin'), 'group' => __('Display', 'slideshow-plugin')),
424
- 'maxWidth' => array('type' => 'text', 'default' => $data['maxWidth'], 'description' => __('Maximum width. When maximum width is 0, maximum width is ignored', 'slideshow-plugin'), 'group' => __('Display', 'slideshow-plugin')),
425
- 'aspectRatio' => array('type' => 'text', 'default' => $data['aspectRatio'], 'description' => sprintf('<a href="' . __('http://en.wikipedia.org/wiki/Aspect_ratio_(image)', 'slideshow-plugin') . '" title="' . __('More info', 'slideshow-plugin') . '" target="_blank">' . __('Proportional relationship%s between slideshow\'s width and height (width:height)', 'slideshow-plugin'), '</a>'), 'dependsOn' => array('settings[preserveSlideshowDimensions]', 'true'), 'group' => __('Display', 'slideshow-plugin')),
426
- 'height' => array('type' => 'text', 'default' => $data['height'], 'description' => __('Slideshow\'s height', 'slideshow-plugin'), 'dependsOn' => array('settings[preserveSlideshowDimensions]', 'false'), 'group' => __('Display', 'slideshow-plugin')),
427
- 'stretchImages' => array('type' => 'radio', 'default' => $data['stretchImages'], 'description' => __('Fit image into slide (Stretch image)', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'group' => __('Display', 'slideshow-plugin')),
428
- 'preserveSlideshowDimensions' => array('type' => 'radio', 'default' => $data['preserveSlideshowDimensions'], 'description' => __('Shrink slideshow\'s height when width shrinks', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'group' => __('Display', 'slideshow-plugin')),
429
- 'enableResponsiveness' => array('type' => 'radio', 'default' => $data['enableResponsiveness'], 'description' => __('Enable responsiveness (Shrink slideshow\'s width when page\'s width shrinks)', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'dependsOn' => array('settings[showDescription]', 'true'), 'group' => __('Display', 'slideshow-plugin')),
430
- 'showDescription' => array('type' => 'radio', 'default' => $data['showDescription'], 'description' => __('Show title and description', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'group' => __('Display', 'slideshow-plugin')),
431
- 'hideDescription' => array('type' => 'radio', 'default' => $data['hideDescription'], 'description' => __('Hide description box, pop up when mouse hovers over', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'dependsOn' => array('settings[showDescription]', 'true'), 'group' => __('Display', 'slideshow-plugin')),
432
- 'play' => array('type' => 'radio', 'default' => $data['play'], 'description' => __('Automatically slide to the next slide', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'group' => __('Control', 'slideshow-plugin')),
433
- 'loop' => array('type' => 'radio', 'default' => $data['loop'], 'description' => __('Return to the beginning of the slideshow after last slide', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'group' => __('Control', 'slideshow-plugin')),
434
- 'pauseOnHover' => array('type' => 'radio', 'default' => $data['loop'], 'description' => __('Pause slideshow when mouse hovers over', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'group' => __('Control', 'slideshow-plugin')),
435
- 'controllable' => array('type' => 'radio', 'default' => $data['controllable'], 'description' => __('Activate navigation buttons', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'group' => __('Control', 'slideshow-plugin')),
436
- 'hideNavigationButtons' => array('type' => 'radio', 'default' => $data['hideNavigationButtons'], 'description' => __('Hide navigation buttons, show when mouse hovers over', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'dependsOn' => array('settings[controllable]', 'true'), 'group' => __('Control', 'slideshow-plugin')),
437
- 'showPagination' => array('type' => 'radio', 'default' => $data['showPagination'], 'description' => __('Activate pagination', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'group' => __('Control', 'slideshow-plugin')),
438
- 'hidePagination' => array('type' => 'radio', 'default' => $data['hidePagination'], 'description' => __('Hide pagination, show when mouse hovers over', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'dependsOn' => array('settings[showPagination]', 'true'), 'group' => __('Control', 'slideshow-plugin')),
439
- 'controlPanel' => array('type' => 'radio', 'default' => $data['controlPanel'], 'description' => __('Activate control panel (play and pause button)', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'group' => __('Control', 'slideshow-plugin')),
440
- 'hideControlPanel' => array('type' => 'radio', 'default' => $data['hideControlPanel'], 'description' => __('Hide control panel, show when mouse hovers over', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'dependsOn' => array('settings[controlPanel]', 'true'), 'group' => __('Control', 'slideshow-plugin')),
441
- 'random' => array('type' => 'radio', 'default' => $data['random'], 'description' => __('Randomize slides', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no), 'group' => __('Miscellaneous', 'slideshow-plugin')),
442
- 'avoidFilter' => array('type' => 'radio', 'default' => $data['avoidFilter'], 'description' => sprintf(__('Avoid content filter (disable if \'%s\' is shown)', 'slideshow-plugin'), SlideshowPluginShortcode::$bookmark), 'options' => array('true' => $yes, 'false' => $no), 'group' => __('Miscellaneous', 'slideshow-plugin'))
 
 
443
  );
444
  }
445
 
@@ -457,22 +587,25 @@ class SlideshowPluginSlideshowSettingsHandler {
457
  * @param boolean $fromDatabase (optional, defaults to true)
458
  * @return mixed $data
459
  */
460
- static function getDefaultStyleSettings($fullDefinition = false, $fromDatabase = true){
461
-
462
  // Default style settings
463
  $data = array(
464
  'style' => 'style-light.css'
465
  );
466
 
467
  // Read defaults from database and merge with $data, when $fromDatabase is set to true
468
- if($fromDatabase)
 
469
  $data = array_merge(
470
  $data,
471
  $customData = get_option(SlideshowPluginGeneralSettings::$defaultStyleSettings, array())
472
  );
 
473
 
474
  // Full definition
475
- if($fullDefinition){
 
476
  $data = array(
477
  'style' => array('type' => 'select', 'default' => $data['style'], 'description' => __('The style used for this slideshow', 'slideshow-plugin'), 'options' => SlideshowPluginGeneralSettings::getStylesheets()),
478
  );
@@ -496,42 +629,63 @@ class SlideshowPluginSlideshowSettingsHandler {
496
  * @param bool $hideDependentValues (optional, defaults to true)
497
  * @return mixed $inputField
498
  */
499
- static function getInputField($settingsKey, $settingsName, $settings, $hideDependentValues = true){
500
-
501
- if(!is_array($settings) || empty($settings) || empty($settingsName))
 
 
 
502
  return null;
 
503
 
504
- $inputField = '';
505
- $name = $settingsKey . '[' . $settingsName . ']';
506
  $displayValue = (!isset($settings['value']) || (empty($settings['value']) && !is_numeric($settings['value'])) ? $settings['default'] : $settings['value']);
507
- $class = ((isset($settings['dependsOn']) && $hideDependentValues)? 'depends-on-field-value ' . $settings['dependsOn'][0] . ' ' . $settings['dependsOn'][1] . ' ': '') . $settingsKey . '-' . $settingsName;
508
- switch($settings['type']){
 
 
509
  case 'text':
 
510
  $inputField .= '<input
511
  type="text"
512
  name="' . $name . '"
513
  class="' . $class . '"
514
  value="' . $displayValue . '"
515
  />';
 
516
  break;
 
517
  case 'textarea':
 
518
  $inputField .= '<textarea
519
  name="' . $name . '"
520
  class="' . $class . '"
521
  rows="20"
522
  cols="60"
523
  >' . $displayValue . '</textarea>';
 
524
  break;
 
525
  case 'select':
 
526
  $inputField .= '<select name="' . $name . '" class="' . $class . '">';
527
- foreach($settings['options'] as $optionKey => $optionValue)
 
 
528
  $inputField .= '<option value="' . $optionKey . '" ' . selected($displayValue, $optionKey, false) . '>
529
  ' . $optionValue . '
530
  </option>';
 
 
531
  $inputField .= '</select>';
 
532
  break;
 
533
  case 'radio':
534
- foreach($settings['options'] as $radioKey => $radioValue)
 
 
535
  $inputField .= '<label><input
536
  type="radio"
537
  name="' . $name . '"
@@ -539,9 +693,14 @@ class SlideshowPluginSlideshowSettingsHandler {
539
  value="' . $radioKey . '" ' .
540
  checked($displayValue, $radioKey, false) .
541
  ' />' . $radioValue . '</label><br />';
 
 
542
  break;
 
543
  default:
 
544
  $inputField = null;
 
545
  break;
546
  };
547
 
4
  *
5
  * @since 2.1.20
6
  * @author Stefan Boonstra
 
7
  */
8
+ class SlideshowPluginSlideshowSettingsHandler
9
+ {
10
+ /** @var string $nonceAction */
11
  static $nonceAction = 'slideshow-jquery-image-gallery-nonceAction';
12
+ /** @var string $nonceName */
13
  static $nonceName = 'slideshow-jquery-image-gallery-nonceName';
14
 
15
+ /** @var string $settingsKey */
16
  static $settingsKey = 'settings';
17
+ /** @var string $styleSettingsKey */
18
  static $styleSettingsKey = 'styleSettings';
19
+ /** @var string $slidesKey */
20
  static $slidesKey = 'slides';
21
 
22
+ /** @var array $settings Used for caching by slideshow ID */
23
  static $settings = array();
24
+ /** @var array $styleSettings Used for caching by slideshow ID */
25
  static $styleSettings = array();
26
+ /** @var array $slides Used for caching by slideshow ID */
27
  static $slides = array();
28
 
29
  /**
47
  * @param boolean $mergeDefaults (optional, defaults to true)
48
  * @return mixed $settings
49
  */
50
+ static function getAllSettings($slideshowId, $fullDefinition = false, $enableCache = true, $mergeDefaults = true)
51
+ {
52
+ $settings = array();
53
+ $settings[self::$settingsKey] = self::getSettings($slideshowId, $fullDefinition, $enableCache, $mergeDefaults);
54
  $settings[self::$styleSettingsKey] = self::getStyleSettings($slideshowId, $fullDefinition, $enableCache, $mergeDefaults);
55
+ $settings[self::$slidesKey] = self::getSlides($slideshowId, $enableCache);
56
 
57
  return $settings;
58
  }
69
  * @param boolean $mergeDefaults (optional, defaults to true)
70
  * @return mixed $settings
71
  */
72
+ static function getSettings($slideshowId, $fullDefinition = false, $enableCache = true, $mergeDefaults = true)
73
+ {
74
+ if (!is_numeric($slideshowId) ||
75
+ empty($slideshowId))
76
+ {
77
  return array();
78
+ }
79
 
80
  // Set caching to false and merging defaults to true when $fullDefinition is set to true
81
+ if ($fullDefinition)
82
+ {
83
+ $enableCache = false;
84
  $mergeDefaults = true;
85
  }
86
 
87
  // If no cache is set, or cache is disabled
88
+ if (!isset(self::$settings[$slideshowId]) ||
89
+ empty(self::$settings[$slideshowId]) ||
90
+ !$enableCache)
91
+ {
92
  // Meta data
93
  $settingsMeta = get_post_meta(
94
  $slideshowId,
95
  self::$settingsKey,
96
  true
97
  );
98
+
99
+ if (!$settingsMeta ||
100
+ !is_array($settingsMeta))
101
+ {
102
  $settingsMeta = array();
103
+ }
104
 
105
  // If the settings should be merged with the defaults as a full definition, place each setting in an array referenced by 'value'.
106
+ if ($fullDefinition)
107
+ {
108
+ foreach ($settingsMeta as $key => $value)
109
+ {
110
  $settingsMeta[$key] = array('value' => $value);
111
+ }
112
+ }
113
 
114
  // Get defaults
115
  $defaults = array();
116
+
117
+ if ($mergeDefaults)
118
+ {
119
  $defaults = self::getDefaultSettings($fullDefinition);
120
+ }
121
 
122
  // Merge with defaults, recursively if a the full definition is required
123
+ if ($fullDefinition)
124
+ {
125
  $settings = array_merge_recursive(
126
  $defaults,
127
  $settingsMeta
128
  );
129
+ }
130
  else
131
+ {
132
  $settings = array_merge(
133
  $defaults,
134
  $settingsMeta
135
  );
136
+ }
137
 
138
  // Cache if cache is enabled
139
+ if ($enableCache)
140
+ {
141
  self::$settings[$slideshowId] = $settings;
142
  }
143
+ }
144
+ else
145
+ {
146
  // Get cached settings
147
  $settings = self::$settings[$slideshowId];
148
  }
163
  * @param boolean $mergeDefaults (optional, defaults to true)
164
  * @return mixed $settings
165
  */
166
+ static function getStyleSettings($slideshowId, $fullDefinition = false, $enableCache = true, $mergeDefaults = true)
167
+ {
168
+ if (!is_numeric($slideshowId) ||
169
+ empty($slideshowId))
170
+ {
171
  return array();
172
+ }
173
 
174
  // Set caching to false and merging defaults to true when $fullDefinition is set to true
175
+ if ($fullDefinition)
176
+ {
177
+ $enableCache = false;
178
  $mergeDefaults = true;
179
  }
180
 
181
  // If no cache is set, or cache is disabled
182
+ if (!isset(self::$styleSettings[$slideshowId]) ||
183
+ empty(self::$styleSettings[$slideshowId]) ||
184
+ !$enableCache)
185
+ {
186
  // Meta data
187
  $styleSettingsMeta = get_post_meta(
188
  $slideshowId,
189
  self::$styleSettingsKey,
190
  true
191
  );
192
+
193
+ if (!$styleSettingsMeta ||
194
+ !is_array($styleSettingsMeta))
195
+ {
196
  $styleSettingsMeta = array();
197
+ }
198
 
199
  // If the settings should be merged with the defaults as a full definition, place each setting in an array referenced by 'value'.
200
+ if ($fullDefinition)
201
+ {
202
+ foreach ($styleSettingsMeta as $key => $value)
203
+ {
204
  $styleSettingsMeta[$key] = array('value' => $value);
205
+ }
206
+ }
207
 
208
  // Get defaults
209
  $defaults = array();
210
+
211
+ if ($mergeDefaults)
212
+ {
213
  $defaults = self::getDefaultStyleSettings($fullDefinition);
214
+ }
215
 
216
  // Merge with defaults, recursively if a the full definition is required
217
+ if ($fullDefinition)
218
+ {
219
  $styleSettings = array_merge_recursive(
220
  $defaults,
221
  $styleSettingsMeta
222
  );
223
+ }
224
  else
225
+ {
226
  $styleSettings = array_merge(
227
  $defaults,
228
  $styleSettingsMeta
229
  );
230
+ }
231
 
232
  // Cache if cache is enabled
233
+ if ($enableCache)
234
+ {
235
  self::$styleSettings[$slideshowId] = $styleSettings;
236
  }
237
+ }
238
+ else
239
+ {
240
  // Get cached settings
241
  $styleSettings = self::$styleSettings[$slideshowId];
242
  }
255
  * @param boolean $enableCache (optional, defaults to true)
256
  * @return mixed $settings
257
  */
258
+ static function getSlides($slideshowId, $enableCache = true)
259
+ {
260
+ if (!is_numeric($slideshowId) ||
261
+ empty($slideshowId))
262
+ {
263
  return array();
264
+ }
265
 
266
  // If no cache is set, or cache is disabled
267
+ if (!isset(self::$slides[$slideshowId]) ||
268
+ empty(self::$slides[$slideshowId]) ||
269
+ !$enableCache)
270
+ {
271
  // Meta data
272
  $slides = get_post_meta(
273
  $slideshowId,
274
  self::$slidesKey,
275
  true
276
  );
277
+ }
278
+ else
279
+ {
280
  // Get cached settings
281
  $slides = self::$slides[$slideshowId];
282
  }
283
 
284
  // Sort slides by order ID
285
+ if (is_array($slides))
286
+ {
287
  ksort($slides);
288
+ }
289
  else
290
+ {
291
  $slides = array();
292
+ }
293
 
294
  // Return
295
  return $slides;
307
  * @param bool $enableCache (optional, defaults to true)
308
  * @return mixed $views
309
  */
310
+ static function getViews($slideshowId, $returnAsObjects = true, $enableCache = true)
311
+ {
312
  // Get slides
313
  $slides = self::getSlides($slideshowId, $enableCache);
314
 
315
  // Get settings. Since in version 2.2.X slides aren't put into views yet, this has to be done manually
316
  $settings = SlideshowPluginSlideshowSettingsHandler::getSettings($slideshowId, false, $enableCache);
317
  $slidesPerView = 1;
318
+
319
  if(isset($settings['slidesPerView']))
320
+ {
321
  $slidesPerView = $settings['slidesPerView'];
322
+ }
323
 
324
  // Loop through slides, forcing them into views
325
+ $i = 0;
326
  $viewId = -1;
327
+ $views = array();
 
 
328
 
329
+ if (is_array($slides))
330
+ {
331
+ foreach ($slides as $slide)
332
+ {
333
  // Create new view when view is full or not yet created
334
+ if ($i % $slidesPerView == 0)
335
+ {
336
  $viewId++;
337
+
338
+ if ($returnAsObjects)
339
+ {
340
  $views[$viewId] = new SlideshowPluginSlideshowView();
341
+ }
342
  else
343
+ {
344
  $views[$viewId] = array();
345
+ }
346
  }
347
 
348
  // Add slide to view
349
+ if ($returnAsObjects)
350
+ {
351
  $views[$viewId]->addSlide($slide);
352
+ }
353
  else
354
+ {
355
  $views[$viewId][] = $slide;
356
+ }
357
 
358
  $i++;
359
  }
370
  * @param int $postId
371
  * @return int $postId
372
  */
373
+ static function save($postId)
374
+ {
375
  // Verify nonce, check if user has sufficient rights and return on auto-save.
376
+ if (get_post_type($postId) != SlideshowPluginPostType::$postType ||
377
  (!isset($_POST[self::$nonceName]) || !wp_verify_nonce($_POST[self::$nonceName], self::$nonceAction)) ||
378
  !current_user_can('edit_post', $postId) ||
379
  (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE))
380
+ {
381
  return $postId;
382
+ }
383
 
384
  // Old settings
385
+ $oldSettings = self::getSettings($postId);
386
  $oldStyleSettings = self::getStyleSettings($postId);
387
 
388
  // Get new settings from $_POST, making sure they're arrays
389
  $newPostSettings = $newPostStyleSettings = $newPostSlides = array();
390
+
391
+ if (isset($_POST[self::$settingsKey]) &&
392
+ is_array($_POST[self::$settingsKey]))
393
+ {
394
  $newPostSettings = $_POST[self::$settingsKey];
395
+ }
396
+
397
+ if (isset($_POST[self::$styleSettingsKey]) &&
398
+ is_array($_POST[self::$styleSettingsKey]))
399
+ {
400
  $newPostStyleSettings = $_POST[self::$styleSettingsKey];
401
+ }
402
+
403
+ if (isset($_POST[self::$slidesKey]) &&
404
+ is_array($_POST[self::$slidesKey]))
405
+ {
406
  $newPostSlides = $_POST[self::$slidesKey];
407
+ }
408
 
409
  // Merge new settings with its old values
410
  $newSettings = array_merge(
447
  * @param boolean $fromDatabase (optional, defaults to true)
448
  * @return mixed $data
449
  */
450
+ static function getAllDefaults($key = null, $fullDefinition = false, $fromDatabase = true)
451
+ {
452
+ $data = array();
453
+ $data[self::$settingsKey] = self::getDefaultSettings($fullDefinition, $fromDatabase);
454
  $data[self::$styleSettingsKey] = self::getDefaultStyleSettings($fullDefinition, $fromDatabase);
455
 
456
  return $data;
466
  * @param boolean $fromDatabase (optional, defaults to true)
467
  * @return mixed $data
468
  */
469
+ static function getDefaultSettings($fullDefinition = false, $fromDatabase = true)
470
+ {
471
  // Much used data for translation
472
  $yes = __('Yes', 'slideshow-plugin');
473
+ $no = __('No', 'slideshow-plugin');
474
 
475
  // Default values
476
  $data = array(
496
  'hidePagination' => 'true',
497
  'controlPanel' => 'false',
498
  'hideControlPanel' => 'true',
499
+ 'waitUntilLoaded' => 'false',
500
+ 'showLoadingIcon' => 'false',
501
  'random' => 'false',
502
  'avoidFilter' => 'true'
503
  );
504
 
505
  // Read defaults from database and merge with $data, when $fromDatabase is set to true
506
+ if ($fromDatabase)
507
+ {
508
  $data = array_merge(
509
  $data,
510
  $customData = get_option(SlideshowPluginGeneralSettings::$defaultSettings, array())
511
  );
512
+ }
513
 
514
  // Full definition
515
+ if ($fullDefinition)
516
+ {
517
+ $descriptions = array(
518
+ 'animation' => __('Animation used for transition between slides', 'slideshow-plugin'),
519
+ 'slideSpeed' => __('Number of seconds the slide takes to slide in', 'slideshow-plugin'),
520
+ 'descriptionSpeed' => __('Number of seconds the description takes to slide in', 'slideshow-plugin'),
521
+ 'intervalSpeed' => __('Seconds between changing slides', 'slideshow-plugin'),
522
+ 'slidesPerView' => __('Number of slides to fit into one slide', 'slideshow-plugin'),
523
+ 'maxWidth' => __('Maximum width. When maximum width is 0, maximum width is ignored', 'slideshow-plugin'),
524
+ 'aspectRatio' => sprintf('<a href="' . str_replace('%', '%%', __('http://en.wikipedia.org/wiki/Aspect_ratio_(image)', 'slideshow-plugin')) . '" title="' . __('More info', 'slideshow-plugin') . '" target="_blank">' . __('Proportional relationship%s between slideshow\'s width and height (width:height)', 'slideshow-plugin'), '</a>'),
525
+ 'height' => __('Slideshow\'s height', 'slideshow-plugin'),
526
+ 'stretchImages' => __('Fit image into slide (Stretch image)', 'slideshow-plugin'),
527
+ 'preserveSlideshowDimensions' => __('Shrink slideshow\'s height when width shrinks', 'slideshow-plugin'),
528
+ 'enableResponsiveness' => __('Enable responsiveness (Shrink slideshow\'s width when page\'s width shrinks)', 'slideshow-plugin'),
529
+ 'showDescription' => __('Show title and description', 'slideshow-plugin'),
530
+ 'hideDescription' => __('Hide description box, pop up when mouse hovers over', 'slideshow-plugin'),
531
+ 'play' => __('Automatically slide to the next slide', 'slideshow-plugin'),
532
+ 'loop' => __('Return to the beginning of the slideshow after last slide', 'slideshow-plugin'),
533
+ 'pauseOnHover' => __('Pause slideshow when mouse hovers over', 'slideshow-plugin'),
534
+ 'controllable' => __('Activate navigation buttons', 'slideshow-plugin'),
535
+ 'hideNavigationButtons' => __('Hide navigation buttons, show when mouse hovers over', 'slideshow-plugin'),
536
+ 'showPagination' => __('Activate pagination', 'slideshow-plugin'),
537
+ 'hidePagination' => __('Hide pagination, show when mouse hovers over', 'slideshow-plugin'),
538
+ 'controlPanel' => __('Activate control panel (play and pause button)', 'slideshow-plugin'),
539
+ 'hideControlPanel' => __('Hide control panel, show when mouse hovers over', 'slideshow-plugin'),
540
+ 'waitUntilLoaded' => __('Wait until the next slide has loaded before showing it', 'slideshow-plugin'),
541
+ 'showLoadingIcon' => __('Show a loading icon until the first slide appears', 'slideshow-plugin'),
542
+ 'random' => __('Randomize slides', 'slideshow-plugin'),
543
+ 'avoidFilter' => sprintf(__('Avoid content filter (disable if \'%s\' is shown)', 'slideshow-plugin'), SlideshowPluginShortcode::$bookmark)
544
+ );
545
+
546
  $data = array(
547
+ 'animation' => array('type' => 'select', 'default' => $data['animation'] , 'description' => $descriptions['animation'] , 'group' => __('Animation', 'slideshow-plugin') , 'options' => array('slide' => __('Slide Left', 'slideshow-plugin'), 'slideRight' => __('Slide Right', 'slideshow-plugin'), 'slideUp' => __('Slide Up', 'slideshow-plugin'), 'slideDown' => __('Slide Down', 'slideshow-plugin'), 'directFade' => __('Direct Fade', 'slideshow-plugin'), 'fade' => __('Fade', 'slideshow-plugin'), 'random' => __('Random Animation', 'slideshow-plugin'))),
548
+ 'slideSpeed' => array('type' => 'text' , 'default' => $data['slideSpeed'] , 'description' => $descriptions['slideSpeed'] , 'group' => __('Animation', 'slideshow-plugin')),
549
+ 'descriptionSpeed' => array('type' => 'text' , 'default' => $data['descriptionSpeed'] , 'description' => $descriptions['descriptionSpeed'] , 'group' => __('Animation', 'slideshow-plugin')),
550
+ 'intervalSpeed' => array('type' => 'text' , 'default' => $data['intervalSpeed'] , 'description' => $descriptions['intervalSpeed'] , 'group' => __('Animation', 'slideshow-plugin')),
551
+ 'slidesPerView' => array('type' => 'text' , 'default' => $data['slidesPerView'] , 'description' => $descriptions['slidesPerView'] , 'group' => __('Display', 'slideshow-plugin')),
552
+ 'maxWidth' => array('type' => 'text' , 'default' => $data['maxWidth'] , 'description' => $descriptions['maxWidth'] , 'group' => __('Display', 'slideshow-plugin')),
553
+ 'aspectRatio' => array('type' => 'text' , 'default' => $data['aspectRatio'] , 'description' => $descriptions['aspectRatio'] , 'group' => __('Display', 'slideshow-plugin') , 'dependsOn' => array('settings[preserveSlideshowDimensions]', 'true')),
554
+ 'height' => array('type' => 'text' , 'default' => $data['height'] , 'description' => $descriptions['height'] , 'group' => __('Display', 'slideshow-plugin') , 'dependsOn' => array('settings[preserveSlideshowDimensions]', 'false')),
555
+ 'stretchImages' => array('type' => 'radio' , 'default' => $data['stretchImages'] , 'description' => $descriptions['stretchImages'] , 'group' => __('Display', 'slideshow-plugin') , 'options' => array('true' => $yes, 'false' => $no)),
556
+ 'preserveSlideshowDimensions' => array('type' => 'radio' , 'default' => $data['preserveSlideshowDimensions'], 'description' => $descriptions['preserveSlideshowDimensions'], 'group' => __('Display', 'slideshow-plugin') , 'options' => array('true' => $yes, 'false' => $no) , 'dependsOn' => array('settings[enableResponsiveness]', 'true')),
557
+ 'enableResponsiveness' => array('type' => 'radio' , 'default' => $data['enableResponsiveness'] , 'description' => $descriptions['enableResponsiveness'] , 'group' => __('Display', 'slideshow-plugin') , 'options' => array('true' => $yes, 'false' => $no)),
558
+ 'showDescription' => array('type' => 'radio' , 'default' => $data['showDescription'] , 'description' => $descriptions['showDescription'] , 'group' => __('Display', 'slideshow-plugin') , 'options' => array('true' => $yes, 'false' => $no)),
559
+ 'hideDescription' => array('type' => 'radio' , 'default' => $data['hideDescription'] , 'description' => $descriptions['hideDescription'] , 'group' => __('Display', 'slideshow-plugin') , 'options' => array('true' => $yes, 'false' => $no) , 'dependsOn' => array('settings[showDescription]', 'true')),
560
+ 'play' => array('type' => 'radio' , 'default' => $data['play'] , 'description' => $descriptions['play'] , 'group' => __('Control', 'slideshow-plugin') , 'options' => array('true' => $yes, 'false' => $no)),
561
+ 'loop' => array('type' => 'radio' , 'default' => $data['loop'] , 'description' => $descriptions['loop'] , 'group' => __('Control', 'slideshow-plugin') , 'options' => array('true' => $yes, 'false' => $no)),
562
+ 'pauseOnHover' => array('type' => 'radio' , 'default' => $data['loop'] , 'description' => $descriptions['pauseOnHover'] , 'group' => __('Control', 'slideshow-plugin') , 'options' => array('true' => $yes, 'false' => $no)),
563
+ 'controllable' => array('type' => 'radio' , 'default' => $data['controllable'] , 'description' => $descriptions['controllable'] , 'group' => __('Control', 'slideshow-plugin') , 'options' => array('true' => $yes, 'false' => $no)),
564
+ 'hideNavigationButtons' => array('type' => 'radio' , 'default' => $data['hideNavigationButtons'] , 'description' => $descriptions['hideNavigationButtons'] , 'group' => __('Control', 'slideshow-plugin') , 'options' => array('true' => $yes, 'false' => $no) , 'dependsOn' => array('settings[controllable]', 'true')),
565
+ 'showPagination' => array('type' => 'radio' , 'default' => $data['showPagination'] , 'description' => $descriptions['showPagination'] , 'group' => __('Control', 'slideshow-plugin') , 'options' => array('true' => $yes, 'false' => $no)),
566
+ 'hidePagination' => array('type' => 'radio' , 'default' => $data['hidePagination'] , 'description' => $descriptions['hidePagination'] , 'group' => __('Control', 'slideshow-plugin') , 'options' => array('true' => $yes, 'false' => $no) , 'dependsOn' => array('settings[showPagination]', 'true')),
567
+ 'controlPanel' => array('type' => 'radio' , 'default' => $data['controlPanel'] , 'description' => $descriptions['controlPanel'] , 'group' => __('Control', 'slideshow-plugin') , 'options' => array('true' => $yes, 'false' => $no)),
568
+ 'hideControlPanel' => array('type' => 'radio' , 'default' => $data['hideControlPanel'] , 'description' => $descriptions['hideControlPanel'] , 'group' => __('Control', 'slideshow-plugin') , 'options' => array('true' => $yes, 'false' => $no) , 'dependsOn' => array('settings[controlPanel]', 'true')),
569
+ 'waitUntilLoaded' => array('type' => 'radio' , 'default' => $data['waitUntilLoaded'] , 'description' => $descriptions['waitUntilLoaded'] , 'group' => __('Miscellaneous', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no)),
570
+ 'showLoadingIcon' => array('type' => 'radio' , 'default' => $data['showLoadingIcon'] , 'description' => $descriptions['showLoadingIcon'] , 'group' => __('Miscellaneous', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no)),
571
+ 'random' => array('type' => 'radio' , 'default' => $data['random'] , 'description' => $descriptions['random'] , 'group' => __('Miscellaneous', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no)),
572
+ 'avoidFilter' => array('type' => 'radio' , 'default' => $data['avoidFilter'] , 'description' => $descriptions['avoidFilter'] , 'group' => __('Miscellaneous', 'slideshow-plugin'), 'options' => array('true' => $yes, 'false' => $no))
573
  );
574
  }
575
 
587
  * @param boolean $fromDatabase (optional, defaults to true)
588
  * @return mixed $data
589
  */
590
+ static function getDefaultStyleSettings($fullDefinition = false, $fromDatabase = true)
591
+ {
592
  // Default style settings
593
  $data = array(
594
  'style' => 'style-light.css'
595
  );
596
 
597
  // Read defaults from database and merge with $data, when $fromDatabase is set to true
598
+ if ($fromDatabase)
599
+ {
600
  $data = array_merge(
601
  $data,
602
  $customData = get_option(SlideshowPluginGeneralSettings::$defaultStyleSettings, array())
603
  );
604
+ }
605
 
606
  // Full definition
607
+ if ($fullDefinition)
608
+ {
609
  $data = array(
610
  'style' => array('type' => 'select', 'default' => $data['style'], 'description' => __('The style used for this slideshow', 'slideshow-plugin'), 'options' => SlideshowPluginGeneralSettings::getStylesheets()),
611
  );
629
  * @param bool $hideDependentValues (optional, defaults to true)
630
  * @return mixed $inputField
631
  */
632
+ static function getInputField($settingsKey, $settingsName, $settings, $hideDependentValues = true)
633
+ {
634
+ if (!is_array($settings) ||
635
+ empty($settings) ||
636
+ empty($settingsName))
637
+ {
638
  return null;
639
+ }
640
 
641
+ $inputField = '';
642
+ $name = $settingsKey . '[' . $settingsName . ']';
643
  $displayValue = (!isset($settings['value']) || (empty($settings['value']) && !is_numeric($settings['value'])) ? $settings['default'] : $settings['value']);
644
+ $class = ((isset($settings['dependsOn']) && $hideDependentValues)? 'depends-on-field-value ' . $settings['dependsOn'][0] . ' ' . $settings['dependsOn'][1] . ' ': '') . $settingsKey . '-' . $settingsName;
645
+
646
+ switch($settings['type'])
647
+ {
648
  case 'text':
649
+
650
  $inputField .= '<input
651
  type="text"
652
  name="' . $name . '"
653
  class="' . $class . '"
654
  value="' . $displayValue . '"
655
  />';
656
+
657
  break;
658
+
659
  case 'textarea':
660
+
661
  $inputField .= '<textarea
662
  name="' . $name . '"
663
  class="' . $class . '"
664
  rows="20"
665
  cols="60"
666
  >' . $displayValue . '</textarea>';
667
+
668
  break;
669
+
670
  case 'select':
671
+
672
  $inputField .= '<select name="' . $name . '" class="' . $class . '">';
673
+
674
+ foreach ($settings['options'] as $optionKey => $optionValue)
675
+ {
676
  $inputField .= '<option value="' . $optionKey . '" ' . selected($displayValue, $optionKey, false) . '>
677
  ' . $optionValue . '
678
  </option>';
679
+ }
680
+
681
  $inputField .= '</select>';
682
+
683
  break;
684
+
685
  case 'radio':
686
+
687
+ foreach ($settings['options'] as $radioKey => $radioValue)
688
+ {
689
  $inputField .= '<label><input
690
  type="radio"
691
  name="' . $name . '"
693
  value="' . $radioKey . '" ' .
694
  checked($displayValue, $radioKey, false) .
695
  ' />' . $radioValue . '</label><br />';
696
+ }
697
+
698
  break;
699
+
700
  default:
701
+
702
  $inputField = null;
703
+
704
  break;
705
  };
706
 
classes/SlideshowPluginSlideshowSlide.php CHANGED
@@ -28,11 +28,10 @@
28
  *
29
  * @since 2.2.0
30
  * @author Stefan Boonstra
31
- * @version 01-02-2013
32
  */
33
- class SlideshowPluginSlideshowSlide {
34
-
35
- /** Properties */
36
  private $properties;
37
 
38
  /**
@@ -42,10 +41,12 @@ class SlideshowPluginSlideshowSlide {
42
  * @since 2.2.0
43
  * @param array $properties
44
  */
45
- function __construct($properties){
46
-
47
- if(is_array($properties))
 
48
  $this->properties = $properties;
 
49
  }
50
 
51
  /**
@@ -57,11 +58,14 @@ class SlideshowPluginSlideshowSlide {
57
  * @param boolean $return (optional, defaults to true)
58
  * @return String $frontEndHTML
59
  */
60
- function toFrontEndHTML($return = true){
61
-
62
  // Exit when no slide type has been set or is empty
63
- if(!isset($this->properties['type']) || empty($this->properties['type']))
 
 
64
  return '';
 
65
 
66
  $properties = $this->properties;
67
 
@@ -72,18 +76,24 @@ class SlideshowPluginSlideshowSlide {
72
  'frontend_' . $this->properties['type'] . '.php';
73
 
74
  // Include file path
75
- if(!file_exists($file))
 
76
  return '';
 
77
 
78
  // Start output buffering if output needs to be returned
79
- if($return)
 
80
  ob_start();
 
81
 
82
  include $file;
83
 
84
  // Return output
85
- if($return)
 
86
  return ob_get_clean();
 
87
 
88
  return '';
89
  }
@@ -97,11 +107,14 @@ class SlideshowPluginSlideshowSlide {
97
  * @param boolean $return (optional, defaults to true)
98
  * @return String $backEndHTML
99
  */
100
- function toBackEndHTML($return = true){
101
-
102
  // Exit when no slide type has been set or is empty
103
- if(!isset($this->properties['type']) || empty($this->properties['type']))
 
 
104
  return '';
 
105
 
106
  // Make properties array available to included file
107
  $properties = $this->properties;
@@ -116,18 +129,24 @@ class SlideshowPluginSlideshowSlide {
116
  'backend_' . $this->properties['type'] . '.php';
117
 
118
  // Include file path
119
- if(!file_exists($file))
 
120
  return '';
 
121
 
122
  // Start output buffering if output needs to be returned
123
- if($return)
 
124
  ob_start();
 
125
 
126
  include $file;
127
 
128
  // Return output
129
- if($return)
 
130
  return ob_get_clean();
 
131
 
132
  return '';
133
  }
@@ -141,17 +160,21 @@ class SlideshowPluginSlideshowSlide {
141
  * @param boolean $return (optional, defaults to true)
142
  * @return String $backEndTemplates
143
  */
144
- static function getBackEndTemplates($return = true){
145
-
146
  // Start output buffering if output needs to be returned
147
- if($return)
 
148
  ob_start();
 
149
 
150
  include SlideshowPluginMain::getPluginPath() . DIRECTORY_SEPARATOR . 'views' . DIRECTORY_SEPARATOR . __CLASS__ . DIRECTORY_SEPARATOR . 'backend_templates.php';
151
 
152
  // Return output
153
  if($return)
 
154
  return ob_get_clean();
 
155
 
156
  return '';
157
  }
28
  *
29
  * @since 2.2.0
30
  * @author Stefan Boonstra
 
31
  */
32
+ class SlideshowPluginSlideshowSlide
33
+ {
34
+ /** @var array $properties */
35
  private $properties;
36
 
37
  /**
41
  * @since 2.2.0
42
  * @param array $properties
43
  */
44
+ function __construct($properties)
45
+ {
46
+ if (is_array($properties))
47
+ {
48
  $this->properties = $properties;
49
+ }
50
  }
51
 
52
  /**
58
  * @param boolean $return (optional, defaults to true)
59
  * @return String $frontEndHTML
60
  */
61
+ function toFrontEndHTML($return = true)
62
+ {
63
  // Exit when no slide type has been set or is empty
64
+ if (!isset($this->properties['type']) ||
65
+ empty($this->properties['type']))
66
+ {
67
  return '';
68
+ }
69
 
70
  $properties = $this->properties;
71
 
76
  'frontend_' . $this->properties['type'] . '.php';
77
 
78
  // Include file path
79
+ if (!file_exists($file))
80
+ {
81
  return '';
82
+ }
83
 
84
  // Start output buffering if output needs to be returned
85
+ if ($return)
86
+ {
87
  ob_start();
88
+ }
89
 
90
  include $file;
91
 
92
  // Return output
93
+ if ($return)
94
+ {
95
  return ob_get_clean();
96
+ }
97
 
98
  return '';
99
  }
107
  * @param boolean $return (optional, defaults to true)
108
  * @return String $backEndHTML
109
  */
110
+ function toBackEndHTML($return = true)
111
+ {
112
  // Exit when no slide type has been set or is empty
113
+ if (!isset($this->properties['type']) ||
114
+ empty($this->properties['type']))
115
+ {
116
  return '';
117
+ }
118
 
119
  // Make properties array available to included file
120
  $properties = $this->properties;
129
  'backend_' . $this->properties['type'] . '.php';
130
 
131
  // Include file path
132
+ if (!file_exists($file))
133
+ {
134
  return '';
135
+ }
136
 
137
  // Start output buffering if output needs to be returned
138
+ if ($return)
139
+ {
140
  ob_start();
141
+ }
142
 
143
  include $file;
144
 
145
  // Return output
146
+ if ($return)
147
+ {
148
  return ob_get_clean();
149
+ }
150
 
151
  return '';
152
  }
160
  * @param boolean $return (optional, defaults to true)
161
  * @return String $backEndTemplates
162
  */
163
+ static function getBackEndTemplates($return = true)
164
+ {
165
  // Start output buffering if output needs to be returned
166
+ if ($return)
167
+ {
168
  ob_start();
169
+ }
170
 
171
  include SlideshowPluginMain::getPluginPath() . DIRECTORY_SEPARATOR . 'views' . DIRECTORY_SEPARATOR . __CLASS__ . DIRECTORY_SEPARATOR . 'backend_templates.php';
172
 
173
  // Return output
174
  if($return)
175
+ {
176
  return ob_get_clean();
177
+ }
178
 
179
  return '';
180
  }
classes/SlideshowPluginSlideshowStylesheet.php CHANGED
@@ -1,15 +1,126 @@
1
  <?php
2
  /**
3
- * SlideshowPluginSlideshowStylesheet loads the requested stylesheet into the page and returns it as CSS.
4
  *
5
  * @since 2.2.8
6
  * @author Stefan Boonstra
7
- * @version 03-03-2013
8
  */
9
- class SlideshowPluginSlideshowStylesheet {
 
 
 
10
 
11
  /**
12
- * Called through WordPress' admin-ajax.php script, registered in the SlideshowPluginAjax class. This function
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  * must not be called on itself.
14
  *
15
  * Uses the loadStylesheet function to load the stylesheet passed in the URL data. If no stylesheet name is set, all
@@ -19,15 +130,27 @@ class SlideshowPluginSlideshowStylesheet {
19
  *
20
  * @since 2.2.11
21
  */
22
- public static function loadStylesheetByAjax(){
23
-
24
  $styleName = filter_input(INPUT_GET, 'style', FILTER_SANITIZE_SPECIAL_CHARS);
25
 
26
  // If no style name is set, all stylesheets will be loaded.
27
- if(isset($styleName) && !empty($styleName) && strlen($styleName) > 0)
28
- $stylesheet = self::loadStylesheet($styleName);
 
 
 
 
29
  else
 
 
 
 
 
 
 
30
  return;
 
31
 
32
  // Set header to CSS. Cache for a year (as WordPress does)
33
  header('Content-Type: text/css; charset=UTF-8');
@@ -41,20 +164,23 @@ class SlideshowPluginSlideshowStylesheet {
41
  }
42
 
43
  /**
44
- * Loads the stylesheet with the parsed style name, then returns it.
45
  *
46
  * @since 2.2.8
47
  * @param string $styleName
48
  * @return string $stylesheet
49
  */
50
- public static function loadStylesheet($styleName){
51
-
52
  // Get custom stylesheet, of the default stylesheet if the custom stylesheet does not exist
53
  $stylesheet = get_option($styleName, '');
54
- if(strlen($stylesheet) <= 0){
55
 
 
 
56
  $stylesheetFile = SlideshowPluginMain::getPluginPath() . DIRECTORY_SEPARATOR . 'style' . DIRECTORY_SEPARATOR . 'SlideshowPlugin' . DIRECTORY_SEPARATOR . $styleName . '.css';
57
- if(!file_exists($stylesheetFile)){
 
 
58
  $stylesheetFile = SlideshowPluginMain::getPluginPath() . DIRECTORY_SEPARATOR . 'style' . DIRECTORY_SEPARATOR . 'SlideshowPlugin' . DIRECTORY_SEPARATOR . 'style-light.css';
59
  }
60
 
1
  <?php
2
  /**
3
+ * SlideshowPluginSlideshowStylesheet handles the loading of the slideshow's stylesheets.
4
  *
5
  * @since 2.2.8
6
  * @author Stefan Boonstra
 
7
  */
8
+ class SlideshowPluginSlideshowStylesheet
9
+ {
10
+ /** @var bool $allStylesheetsRegistered */
11
+ public static $allStylesheetsRegistered = false;
12
 
13
  /**
14
+ * Initializes the SlideshowPluginSlideshowStylesheet class
15
+ *
16
+ * @since 2.2.12
17
+ */
18
+ public static function init()
19
+ {
20
+ add_action('wp_enqueue_scripts', array(__CLASS__, 'enqueueFrontendStylesheets'));
21
+ }
22
+
23
+ /**
24
+ * Enqueue stylesheet
25
+ */
26
+ public static function enqueueFrontendStylesheets()
27
+ {
28
+ if (SlideshowPluginGeneralSettings::getStylesheetLocation() === 'head')
29
+ {
30
+ // Register functional stylesheet
31
+ wp_enqueue_style(
32
+ 'slideshow-jquery-image-gallery-stylesheet_functional',
33
+ SlideshowPluginMain::getPluginUrl() . '/style/SlideshowPlugin/functional.css',
34
+ array(),
35
+ SlideshowPluginMain::$version
36
+ );
37
+
38
+ // Get default and custom stylesheets
39
+ $stylesheets = SlideshowPluginGeneralSettings::getStylesheets(true, true);
40
+ $defaultStylesheets = $stylesheets['default'];
41
+ $customStylesheets = $stylesheets['custom'];
42
+
43
+ // Clean the '.css' extension from the default stylesheets
44
+ foreach ($defaultStylesheets as $defaultStylesheetKey => $defaultStylesheetValue)
45
+ {
46
+ $newDefaultStylesheetKey = str_replace('.css', '', $defaultStylesheetKey);
47
+
48
+ $defaultStylesheets[$newDefaultStylesheetKey] = $defaultStylesheetValue;
49
+
50
+ if ($defaultStylesheetKey !== $newDefaultStylesheetKey)
51
+ {
52
+ unset($defaultStylesheets[$defaultStylesheetKey]);
53
+ }
54
+ }
55
+
56
+ // Enqueue stylesheets
57
+ foreach (array_merge($defaultStylesheets, $customStylesheets) as $stylesheetKey => $stylesheetValue)
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
+ );
65
+ }
66
+
67
+ self::$allStylesheetsRegistered = true;
68
+ }
69
+ }
70
+
71
+ /**
72
+ * Enqueues a stylesheet based on the stylesheet's name. This can either be a default stylesheet or a custom one.
73
+ * If the name parameter is left unset, the default stylesheet will be used.
74
+ *
75
+ * Returns the name and version number of the stylesheet that's been enqueued, as this can be different from the
76
+ * name passed. This can be this case if a stylesheet does not exist and a default stylesheet is enqueued.
77
+ *
78
+ * @param string $name (optional, defaults to null)
79
+ * @return array [$name, $version]
80
+ */
81
+ public static function enqueueStylesheet($name = null)
82
+ {
83
+ if (isset($name))
84
+ {
85
+ // Try to get the custom style's version
86
+ $customStyle = get_option($name, false);
87
+ $customStyleVersion = false;
88
+
89
+ if ($customStyle)
90
+ {
91
+ $customStyleVersion = get_option($name . '_version', false);
92
+ }
93
+
94
+ // Style name and version
95
+ if ($customStyle && $customStyleVersion)
96
+ {
97
+ $version = $customStyleVersion;
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
+ }
121
+
122
+ /**
123
+ * Called through WordPress' admin-ajax.php script, registered in the SlideshowPluginAJAX class. This function
124
  * must not be called on itself.
125
  *
126
  * Uses the loadStylesheet function to load the stylesheet passed in the URL data. If no stylesheet name is set, all
130
  *
131
  * @since 2.2.11
132
  */
133
+ public static function loadStylesheetByAJAX()
134
+ {
135
  $styleName = filter_input(INPUT_GET, 'style', FILTER_SANITIZE_SPECIAL_CHARS);
136
 
137
  // If no style name is set, all stylesheets will be loaded.
138
+ if (isset($styleName) &&
139
+ !empty($styleName) &&
140
+ strlen($styleName) > 0)
141
+ {
142
+ $stylesheet = self::getStylesheet($styleName);
143
+ }
144
  else
145
+ {
146
+ return;
147
+ }
148
+
149
+ // Exit if headers have already been sent
150
+ if (headers_sent())
151
+ {
152
  return;
153
+ }
154
 
155
  // Set header to CSS. Cache for a year (as WordPress does)
156
  header('Content-Type: text/css; charset=UTF-8');
164
  }
165
 
166
  /**
167
+ * Gets the stylesheet with the parsed style name, then returns it.
168
  *
169
  * @since 2.2.8
170
  * @param string $styleName
171
  * @return string $stylesheet
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
+
182
+ if (!file_exists($stylesheetFile))
183
+ {
184
  $stylesheetFile = SlideshowPluginMain::getPluginPath() . DIRECTORY_SEPARATOR . 'style' . DIRECTORY_SEPARATOR . 'SlideshowPlugin' . DIRECTORY_SEPARATOR . 'style-light.css';
185
  }
186
 
classes/SlideshowPluginSlideshowView.php CHANGED
@@ -5,11 +5,10 @@
5
  *
6
  * @since 2.2.0
7
  * @author Stefan Boonstra
8
- * @version 01-02-2013
9
  */
10
- class SlideshowPluginSlideshowView {
11
-
12
- /** Slides */
13
  private $slides = array();
14
 
15
  /**
@@ -20,11 +19,15 @@ class SlideshowPluginSlideshowView {
20
  * @since 2.2.0
21
  * @param array $slidesProperties (optional)
22
  */
23
- function __construct($slidesProperties = array()){
24
-
25
- if(is_array($slidesProperties))
26
- foreach($slidesProperties as $slideProperties)
 
 
27
  $this->slides[] = new SlideshowPluginSlideshowSlide($slideProperties);
 
 
28
  }
29
 
30
  /**
@@ -35,10 +38,12 @@ class SlideshowPluginSlideshowView {
35
  * @since 2.2.0
36
  * @param array $slideProperties
37
  */
38
- function addSlide($slideProperties){
39
-
40
- if(is_array($slideProperties))
 
41
  $this->slides[] = new SlideshowPluginSlideshowSlide($slideProperties);
 
42
  }
43
 
44
  /**
@@ -50,21 +55,25 @@ class SlideshowPluginSlideshowView {
50
  * @param boolean $return (optional, defaults to true)
51
  * @return String $frontEndHTML
52
  */
53
- function toFrontEndHTML($return = true){
54
-
55
  $frontEndHTML = '<div class="slideshow_view">';
56
 
57
- foreach($this->slides as $slide){
58
-
59
  $frontEndHTML .= $slide->toFrontEndHTML();
60
  }
61
 
62
  $frontEndHTML .= '<div style="clear: both;"></div></div>';
63
 
64
- if($return)
 
65
  return $frontEndHTML;
66
- else
67
- echo $frontEndHTML;
 
 
 
68
  }
69
 
70
  /**
@@ -76,17 +85,26 @@ class SlideshowPluginSlideshowView {
76
  * @param boolean $return (optional, defaults to true)
77
  * @return String $backEndHTML
78
  */
79
- function toBackEndHTML($return = true){
80
-
81
  $backEndHTML = '';
82
- foreach($this->slides as $slide){
 
 
 
 
 
83
 
84
  $backEndHTML .= $slide->toBackEndHTML();
85
  }
86
 
87
- if($return)
 
88
  return $backEndHTML;
89
- else
90
- echo $backEndHTML;
 
 
 
91
  }
92
  }
5
  *
6
  * @since 2.2.0
7
  * @author Stefan Boonstra
 
8
  */
9
+ class SlideshowPluginSlideshowView
10
+ {
11
+ /** @var SlideshowPluginSlideshowSlide $slides */
12
  private $slides = array();
13
 
14
  /**
19
  * @since 2.2.0
20
  * @param array $slidesProperties (optional)
21
  */
22
+ function __construct($slidesProperties = array())
23
+ {
24
+ if (is_array($slidesProperties))
25
+ {
26
+ foreach ($slidesProperties as $slideProperties)
27
+ {
28
  $this->slides[] = new SlideshowPluginSlideshowSlide($slideProperties);
29
+ }
30
+ }
31
  }
32
 
33
  /**
38
  * @since 2.2.0
39
  * @param array $slideProperties
40
  */
41
+ function addSlide($slideProperties)
42
+ {
43
+ if (is_array($slideProperties))
44
+ {
45
  $this->slides[] = new SlideshowPluginSlideshowSlide($slideProperties);
46
+ }
47
  }
48
 
49
  /**
55
  * @param boolean $return (optional, defaults to true)
56
  * @return String $frontEndHTML
57
  */
58
+ function toFrontEndHTML($return = true)
59
+ {
60
  $frontEndHTML = '<div class="slideshow_view">';
61
 
62
+ foreach ($this->slides as $slide)
63
+ {
64
  $frontEndHTML .= $slide->toFrontEndHTML();
65
  }
66
 
67
  $frontEndHTML .= '<div style="clear: both;"></div></div>';
68
 
69
+ if ($return)
70
+ {
71
  return $frontEndHTML;
72
+ }
73
+
74
+ echo $frontEndHTML;
75
+
76
+ return "";
77
  }
78
 
79
  /**
85
  * @param boolean $return (optional, defaults to true)
86
  * @return String $backEndHTML
87
  */
88
+ function toBackEndHTML($return = true)
89
+ {
90
  $backEndHTML = '';
91
+ foreach ($this->slides as $slide)
92
+ {
93
+ if (!($slide instanceof SlideshowPluginSlideshowSlide))
94
+ {
95
+ continue;
96
+ }
97
 
98
  $backEndHTML .= $slide->toBackEndHTML();
99
  }
100
 
101
+ if ($return)
102
+ {
103
  return $backEndHTML;
104
+ }
105
+
106
+ echo $backEndHTML;
107
+
108
+ return "";
109
  }
110
  }
classes/SlideshowPluginWidget.php CHANGED
@@ -4,11 +4,10 @@
4
  *
5
  * @since 1.2.0
6
  * @author: Stefan Boonstra
7
- * @version: 01-02-2013
8
  */
9
- class SlideshowPluginWidget extends WP_Widget {
10
-
11
- /** Variables */
12
  static $widgetName = 'Slideshow';
13
 
14
  /**
@@ -16,10 +15,11 @@ class SlideshowPluginWidget extends WP_Widget {
16
  *
17
  * @since 1.2.0
18
  */
19
- function SlideshowPluginWidget(){
 
20
  // Settings
21
  $options = array(
22
- 'classname' => 'SlideshowWidget',
23
  'description' => __('Enables you to show your slideshows in the widget area of your website.', 'slideshow-plugin')
24
  );
25
 
@@ -38,35 +38,48 @@ class SlideshowPluginWidget extends WP_Widget {
38
  * @param mixed array $args
39
  * @param mixed array $instance
40
  */
41
- function widget($args, $instance){
 
42
  // Get slideshowId
43
  $slideshowId = '';
44
- if(isset($instance['slideshowId']))
 
45
  $slideshowId = $instance['slideshowId'];
 
46
 
47
  // Get title
48
  $title = '';
49
- if(isset($instance['title']))
 
50
  $title = $instance['title'];
 
51
 
52
  // Prepare slideshow for output to website.
53
  $output = SlideshowPlugin::prepare($slideshowId);
54
 
55
  $beforeWidget = $afterWidget = $beforeTitle = $afterTitle = '';
56
- if(isset($args['before_widget']))
 
57
  $beforeWidget = $args['before_widget'];
58
- if(isset($args['after_widget']))
 
 
 
59
  $afterWidget = $args['after_widget'];
60
- if(isset($args['before_title']))
 
 
 
61
  $beforeTitle = $args['before_title'];
62
- if(isset($args['after_title']))
 
 
 
63
  $afterTitle = $args['after_title'];
 
64
 
65
  // Output widget
66
- echo $beforeWidget .
67
- (!empty($title) ? $beforeTitle . $title . $afterTitle : '') .
68
- $output .
69
- $afterWidget;
70
  }
71
 
72
  /**
@@ -76,10 +89,11 @@ class SlideshowPluginWidget extends WP_Widget {
76
  * @param mixed array $instance
77
  * @return string
78
  */
79
- function form($instance){
 
80
  // Defaults
81
  $defaults = array(
82
- 'title' => __(self::$widgetName, 'slideshow-plugin'),
83
  'slideshowId' => -1
84
  );
85
 
@@ -89,8 +103,8 @@ class SlideshowPluginWidget extends WP_Widget {
89
  // Get slideshows
90
  $slideshows = get_posts(array(
91
  'numberposts' => -1,
92
- 'offset' => 0,
93
- 'post_type' => SlideshowPluginPostType::$postType
94
  ));
95
 
96
  // Include form
@@ -105,14 +119,20 @@ class SlideshowPluginWidget extends WP_Widget {
105
  * @param mixed array $instance
106
  * @return mixed array $instance
107
  */
108
- function update($newInstance, $instance){
 
109
  // Update title
110
- if(isset($newInstance['title']))
 
111
  $instance['title'] = $newInstance['title'];
 
112
 
113
  // Update slideshowId
114
- if(isset($newInstance['slideshowId']) && !empty($newInstance['slideshowId']))
 
 
115
  $instance['slideshowId'] = $newInstance['slideshowId'];
 
116
 
117
  // Save
118
  return $instance;
@@ -123,7 +143,8 @@ class SlideshowPluginWidget extends WP_Widget {
123
  *
124
  * @since 1.2.0
125
  */
126
- static function registerWidget(){
 
127
  register_widget(__CLASS__);
128
  }
129
  }
4
  *
5
  * @since 1.2.0
6
  * @author: Stefan Boonstra
 
7
  */
8
+ class SlideshowPluginWidget extends WP_Widget
9
+ {
10
+ /** @var string $widgetName */
11
  static $widgetName = 'Slideshow';
12
 
13
  /**
15
  *
16
  * @since 1.2.0
17
  */
18
+ function SlideshowPluginWidget()
19
+ {
20
  // Settings
21
  $options = array(
22
+ 'classname' => 'SlideshowWidget',
23
  'description' => __('Enables you to show your slideshows in the widget area of your website.', 'slideshow-plugin')
24
  );
25
 
38
  * @param mixed array $args
39
  * @param mixed array $instance
40
  */
41
+ function widget($args, $instance)
42
+ {
43
  // Get slideshowId
44
  $slideshowId = '';
45
+ if (isset($instance['slideshowId']))
46
+ {
47
  $slideshowId = $instance['slideshowId'];
48
+ }
49
 
50
  // Get title
51
  $title = '';
52
+ if (isset($instance['title']))
53
+ {
54
  $title = $instance['title'];
55
+ }
56
 
57
  // Prepare slideshow for output to website.
58
  $output = SlideshowPlugin::prepare($slideshowId);
59
 
60
  $beforeWidget = $afterWidget = $beforeTitle = $afterTitle = '';
61
+ if (isset($args['before_widget']))
62
+ {
63
  $beforeWidget = $args['before_widget'];
64
+ }
65
+
66
+ if (isset($args['after_widget']))
67
+ {
68
  $afterWidget = $args['after_widget'];
69
+ }
70
+
71
+ if (isset($args['before_title']))
72
+ {
73
  $beforeTitle = $args['before_title'];
74
+ }
75
+
76
+ if (isset($args['after_title']))
77
+ {
78
  $afterTitle = $args['after_title'];
79
+ }
80
 
81
  // Output widget
82
+ echo $beforeWidget . (!empty($title) ? $beforeTitle . $title . $afterTitle : '') . $output . $afterWidget;
 
 
 
83
  }
84
 
85
  /**
89
  * @param mixed array $instance
90
  * @return string
91
  */
92
+ function form($instance)
93
+ {
94
  // Defaults
95
  $defaults = array(
96
+ 'title' => __(self::$widgetName, 'slideshow-plugin'),
97
  'slideshowId' => -1
98
  );
99
 
103
  // Get slideshows
104
  $slideshows = get_posts(array(
105
  'numberposts' => -1,
106
+ 'offset' => 0,
107
+ 'post_type' => SlideshowPluginPostType::$postType
108
  ));
109
 
110
  // Include form
119
  * @param mixed array $instance
120
  * @return mixed array $instance
121
  */
122
+ function update($newInstance, $instance)
123
+ {
124
  // Update title
125
+ if (isset($newInstance['title']))
126
+ {
127
  $instance['title'] = $newInstance['title'];
128
+ }
129
 
130
  // Update slideshowId
131
+ if (isset($newInstance['slideshowId']) &&
132
+ !empty($newInstance['slideshowId']))
133
+ {
134
  $instance['slideshowId'] = $newInstance['slideshowId'];
135
+ }
136
 
137
  // Save
138
  return $instance;
143
  *
144
  * @since 1.2.0
145
  */
146
+ static function registerWidget()
147
+ {
148
  register_widget(__CLASS__);
149
  }
150
  }
css/all.backend.css ADDED
@@ -0,0 +1,136 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .sortable-slides-list li {
2
+ margin: 10px 0;
3
+ width: auto;
4
+ background-color: #fafa;
5
+ }
6
+ .sortable-slides-list li .hndle span {
7
+ font-size: 0.8em;
8
+ }
9
+ .sortable-slides-list li p {
10
+ margin: 5px 15px 5px 5px;
11
+ }
12
+ .sortable-slides-list li .slideshow-delete-slide,
13
+ .sortable-slides-list li .slideshow-delete-new-slide {
14
+ color: red;
15
+ cursor: pointer;
16
+ }
17
+ .sortable-slides-list li.widefat {
18
+ border-color: #dfdfdf;
19
+ }
20
+ .sortable-slides-list li.sortable-slides-list-item {
21
+ background: #ffffff url('../images/SlideshowPluginPostType/draggable.png') no-repeat right center;
22
+ }
23
+ #slideshow-slide-inserter-popup-background {
24
+ background: #000;
25
+ display: none;
26
+ position: absolute;
27
+ top: 0;
28
+ left: 0;
29
+ width: 100%;
30
+ z-index: 10000;
31
+ zoom: 1;
32
+ filter: alpha(opacity = 50);
33
+ opacity: 0.5;
34
+ }
35
+ #slideshow-slide-inserter-popup {
36
+ background: #fff;
37
+ display: none;
38
+ position: absolute;
39
+ padding: 20px;
40
+ line-height: 23px;
41
+ z-index: 10001;
42
+ width: 600px;
43
+ }
44
+ #slideshow-slide-inserter-popup #search {
45
+ float: left;
46
+ width: 200px;
47
+ }
48
+ #slideshow-slide-inserter-popup #close {
49
+ float: right;
50
+ width: 32px;
51
+ height: 32px;
52
+ background: url('../images/SlideshowPluginSlideInserter/close.png') no-repeat;
53
+ }
54
+ #slideshow-slide-inserter-popup #close:hover {
55
+ cursor: pointer;
56
+ }
57
+ #slideshow-slide-inserter-popup #search-results {
58
+ height: 400px;
59
+ overflow-y: scroll;
60
+ }
61
+ .feature-filter {
62
+ padding: 0 10px 10px;
63
+ margin: 10px;
64
+ }
65
+ .general-settings-tab {
66
+ float: left;
67
+ }
68
+ .general-settings-tab td {
69
+ line-height: 1.5em;
70
+ padding: 0 10px;
71
+ }
72
+ .general-settings-tab h4 {
73
+ text-align: center;
74
+ }
75
+ .default-slideshow-settings-tab {
76
+ width: auto !important;
77
+ float: left;
78
+ }
79
+ .default-slideshow-settings-tab td {
80
+ padding: 0 10px !important;
81
+ }
82
+ .default-slideshow-settings-tab h4 {
83
+ text-align: center;
84
+ }
85
+ .custom-styles-tab {
86
+ min-width: 650px;
87
+ }
88
+ .custom-styles-tab.feature-filter {
89
+ padding-bottom: 0;
90
+ }
91
+ .custom-styles-tab .styles-list {
92
+ float: left;
93
+ min-width: 150px;
94
+ max-width: 250px;
95
+ padding-right: 10px;
96
+ border-right: 1px solid #dfdfdf;
97
+ }
98
+ .custom-styles-tab .styles-list ul {
99
+ margin-left: 10px;
100
+ }
101
+ .custom-styles-tab .styles-list li {
102
+ float: none;
103
+ }
104
+ .custom-styles-tab .styles-list li .style-title {
105
+ float: left;
106
+ padding-right: 10px;
107
+ }
108
+ .custom-styles-tab .styles-list li .style-action {
109
+ float: right;
110
+ color: #21759B;
111
+ }
112
+ .custom-styles-tab .styles-list li .style-action:hover {
113
+ cursor: pointer;
114
+ color: #D54E21;
115
+ }
116
+ .custom-styles-tab .styles-list li .style-delete {
117
+ float: right;
118
+ color: #BC0B0B;
119
+ }
120
+ .custom-styles-tab .styles-list li .style-delete:hover {
121
+ cursor: pointer;
122
+ color: red;
123
+ }
124
+ .custom-styles-tab .styles-list span {
125
+ padding: 0 2px;
126
+ }
127
+ .custom-styles-tab .style-editors {
128
+ float: left;
129
+ min-width: 500px;
130
+ padding-left: 10px;
131
+ margin: 0 -21px 0 -1px;
132
+ border-left: 1px solid #dfdfdf;
133
+ }
134
+ .custom-styles-tab .style-editors .style-editor textarea {
135
+ width: 100%;
136
+ }
images/SlideshowPlugin/loading-icon-128x128.gif ADDED
Binary file
images/SlideshowPlugin/loading-icon-512-512.gif ADDED
Binary file
js/SlideshowPlugin/slideshow.min.js DELETED
@@ -1 +0,0 @@
1
- jQuery.fn.slideshow_jquery_image_gallery_script=function(){var $=jQuery;var $container=$(this),$content=$container.find('.slideshow_content'),$views=$container.find('.slideshow_view'),$slides=$container.find('.slideshow_slide'),$controlPanel=$container.find('.slideshow_controlPanel'),$togglePlayButton=$controlPanel.find('.slideshow_togglePlay'),$nextButton=$container.find('.slideshow_next'),$previousButton=$container.find('.slideshow_previous'),$pagination=$container.find('.slideshow_pagination');var $ID=getID();if($ID===undefined||isNaN($ID)){return}var $settings=window['SlideshowPluginSettings_'+$ID];$.each($settings,function(setting,value){if(value=='true')$settings[setting]=true;else if(value=='false')$settings[setting]=false});var $parentElement=$container.parent(),$viewData=[],$navigationActive=true,$currentViewId=getNextViewId(),$currentWidth=0,$visibleViews=[$currentViewId],$videoPlayers=[],$interval='',$mouseEnterTimer='',$invisibilityTimer='',$descriptionTimer='';init();function init(){window.slideshow_jquery_image_gallery_registered_slideshows.push($ID);recalculate(false);$.each($views,function(viewId,view){recalculateView(view);if(viewId!=$visibleViews[0])$(view).css('top',$container.outerHeight(true));$viewData[viewId]=[];$.each($(view).find('.slideshow_slide'),function(slideId,slide){$viewData[viewId][slideId]={'imageDimension':''}})});$content.show();$(window).load(function(){recalculateVisibleViews()});if($settings['enableResponsiveness']){$(window).resize(function(){recalculate()})}if(parseFloat($settings['intervalSpeed'])<parseFloat($settings['slideSpeed'])+0.1)$settings['intervalSpeed']=parseFloat($settings['slideSpeed'])+0.1;activateDescriptions();activateControlPanel();activateNavigationButtons();activatePagination();activatePauseOnHover();start()}function start(){if(!$settings['play'])return;$interval=setInterval(function(){animateTo(getNextViewId(),1)},$settings['intervalSpeed']*1000)}function stop(){clearInterval($interval);$interval=false}function animateTo(viewId,direction){if(videoIsPlaying()||viewId<0||viewId>=$views.length||viewId==$currentViewId)return;$navigationActive=false;if(direction==0||direction==undefined){if(viewId<$currentViewId)direction=-1;else direction=1}$visibleViews=[$currentViewId,viewId];var animation=$settings['animation'];var animations=['slide','slideRight','slideUp','slideDown','fade','directFade'];if(animation=='random')animation=animations[Math.floor(Math.random()*animations.length)];var animationOpposites={'slide':'slideRight','slideRight':'slide','slideUp':'slideDown','slideDown':'slideUp','fade':'fade','directFade':'directFade'};if(direction<0)animation=animationOpposites[animation];var currentView=$($views[$currentViewId]);var nextView=$($views[viewId]);currentView.stop(true,true);nextView.stop(true,true);recalculateVisibleViews();$currentViewId=viewId;$container.trigger('slideshowAnimate');switch(animation){case'slide':recalculateVisibleViews();nextView.css({top:0,left:$content.width()});currentView.animate({left:-currentView.outerWidth(true)},$settings['slideSpeed']*1000);nextView.animate({left:0},$settings['slideSpeed']*1000);setTimeout(function(){currentView.stop(true,true).css('top',$container.outerHeight(true))},$settings['slideSpeed']*1000);break;case'slideRight':nextView.css({top:0,left:-$content.width()});currentView.animate({left:currentView.outerWidth(true)},$settings['slideSpeed']*1000);nextView.animate({left:0},$settings['slideSpeed']*1000);setTimeout(function(){currentView.stop(true,true).css('top',$container.outerHeight(true))},$settings['slideSpeed']*1000);break;case'slideUp':nextView.css({top:$content.height(),left:0});currentView.animate({top:-currentView.outerHeight(true)},$settings['slideSpeed']*1000);nextView.animate({top:0},$settings['slideSpeed']*1000);setTimeout(function(){currentView.stop(true,true).css('top',$container.outerHeight(true))},$settings['slideSpeed']*1000);break;case'slideDown':nextView.css({top:-$content.height(),left:0});currentView.animate({top:currentView.outerHeight(true)},$settings['slideSpeed']*1000);nextView.animate({top:0},$settings['slideSpeed']*1000);setTimeout(function(){currentView.stop(true,true).css('top',$container.outerHeight(true))},$settings['slideSpeed']*1000);break;case'fade':nextView.css({top:0,left:0,display:'none'});currentView.fadeOut(($settings['slideSpeed']*1000)/2);setTimeout(function(){nextView.fadeIn(($settings['slideSpeed']*1000)/2);currentView.stop(true,true).css({top:$container.outerHeight(true),display:'block'})},($settings['slideSpeed']*1000)/2);break;case'directFade':nextView.css({top:0,left:0,'z-index':0,display:'none'});currentView.css({'z-index':1});nextView.stop(true,true).fadeIn($settings['slideSpeed']*1000);currentView.stop(true,true).fadeOut($settings['slideSpeed']*1000);setTimeout(function(){nextView.stop(true,true).css({'z-index':0});currentView.stop(true,true).css({top:$container.outerHeight(true),display:'block','z-index':0})},$settings['slideSpeed']*1000);break}setTimeout(function(){$visibleViews=[viewId]},$settings['slideSpeed']*1000);setTimeout(function(){$navigationActive=true},$settings['slideSpeed']*1000)}function recalculate(recalculateViews){if(!$container.is(':visible')){$invisibilityTimer=setInterval(function(){if($container.is(':visible')){recalculate();clearInterval($invisibilityTimer);$invisibilityTimer=''}},500);return}var parentElement=$parentElement;for(var i=0;parentElement.width()<=0;i++){parentElement=parentElement.parent();if(i>50)break}if($currentWidth==parentElement.width())return;$currentWidth=parentElement.width();var width=parentElement.width()-($container.outerWidth()-$container.width());if(parseInt($settings['maxWidth'],10)>0&&parseInt($settings['maxWidth'],10)<width)width=parseInt($settings['maxWidth'],10);$container.css('width',Math.floor(width));$content.css('width',Math.floor(width)-($content.outerWidth(true)-$content.width()));if($settings['preserveSlideshowDimensions']){var height=(width*$settings['dimensionHeight'])/$settings['dimensionWidth'];$container.css('height',Math.floor(height));$content.css('height',Math.floor(height)-($content.outerHeight(true)-$content.height()))}else{$container.css('height',Math.floor($settings['height']));$content.css('height',Math.floor($settings['height']))}$views.each(function(viewId,view){if($.inArray(viewId,$visibleViews)<0)$(view).css('top',$container.outerHeight(true))});$container.trigger('slideshowResize');if(recalculateViews||recalculateViews==undefined){recalculateVisibleViews()}}function recalculateVisibleViews(){$.each($visibleViews,function(key,viewId){recalculateView(viewId)})}function recalculateView(viewId){view=$($views[viewId]);if($content.width()==view.outerWidth(true))return;var slides=view.find('.slideshow_slide');if(slides.length<=0)return;var viewWidth=$content.width()-(view.outerWidth(true)-view.width());var viewHeight=$content.height()-(view.outerHeight(true)-view.height());var slideWidth=Math.floor(viewWidth/slides.length);var slideHeight=viewHeight;var spareWidth=viewWidth%slides.length;var totalWidth=0;$(slides[0]).css('margin-left',0);$(slides[slides.length-1]).css('margin-right',0);$.each(slides,function(slideId,slide){slide=$(slide);var outerWidth=slide.outerWidth(true)-slide.width();var outerHeight=slide.outerHeight(true)-slide.height();if(slideId==(slides.length-1))slide.width((slideWidth-outerWidth)+spareWidth);else slide.width(slideWidth-outerWidth);slide.height(slideHeight-outerHeight);if(slide.hasClass('slideshow_slide_text')){var anchor=slide.find('.slideshow_background_anchor');if(anchor.length<=0)return;var anchorWidth=slide.width()-(anchor.outerWidth(true)-anchor.width());var anchorHeight=slide.height()-(anchor.outerHeight(true)-anchor.height());anchor.css({'width':anchorWidth,'height':anchorHeight})}else if(slide.hasClass('slideshow_slide_image')){var image=slide.find('img');if(image.length<=0)return;var maxImageWidth=slide.width()-(image.outerWidth(true)-image.width());var maxImageHeight=slide.height()-(image.outerHeight(true)-image.height());if($settings['stretchImages']){image.css({width:maxImageWidth,height:maxImageHeight});image.attr({width:maxImageWidth,height:maxImageHeight})}else if(image.width()>0&&image.height()>0){var imageDimension=$viewData[viewId][slideId]['imageDimension'];if(imageDimension=='')imageDimension=$viewData[viewId][slideId]['imageDimension']=image.outerWidth(true)/image.outerHeight(true);var slideDimension=slide.width()/slide.height();if(imageDimension>slideDimension){image.css({'margin':'0px','width':maxImageWidth,'height':Math.floor(maxImageWidth/imageDimension)});image.attr({width:maxImageWidth,height:Math.floor(maxImageWidth/imageDimension)})}else if(imageDimension<slideDimension){image.css({'margin-left':'auto','margin-right':'auto','display':'block','width':Math.floor(maxImageHeight*imageDimension),'height':maxImageHeight});image.attr({width:Math.floor(maxImageHeight*imageDimension),height:maxImageHeight})}}}else if(slide.hasClass('slideshow_slide_video')){var videoElement=slide.find('iframe');if(videoElement.length>0){videoElement.attr({width:slide.width(),height:slide.height()})}else{var youtubePlayerReadyTimer='';youtubePlayerReadyTimer=setInterval(function(){if(!window.slideshow_jquery_image_gallery_youtube_api_ready)return;var element=slide.find('div');element.attr('id','slideshow_slide_video_'+Math.floor(Math.random()*1000000)+'_'+element.text());var player=new YT.Player(element.attr('id'),{width:$(slide).width(),height:$(slide).height(),videoId:element.text(),playerVars:{wmode:'opaque'},events:{'onReady':function(){},'onStateChange':function(event){$videoPlayers[element.attr('id')].state=event.data}}});playerElement=$('#'+element.attr('id'));playerElement.show();playerElement.attr('src',playerElement.attr('src')+'&wmode=opaque');$videoPlayers[element.attr('id')]={'player':player,'state':-1};clearInterval(youtubePlayerReadyTimer)},500)}}totalWidth+=slide.outerWidth(true)});view.css({'width':viewWidth,'height':viewHeight})}function videoIsPlaying(){var videoIsPlaying=false;for(var playerID in $videoPlayers){if(!$videoPlayers.hasOwnProperty(playerID))continue;var state=$videoPlayers[playerID].state;if(state==1||state==3){videoIsPlaying=true;break}}return videoIsPlaying}function pauseAllVideos(){for(var playerID in $videoPlayers){if(!$videoPlayers.hasOwnProperty(playerID))continue;var player=$videoPlayers[playerID].player;if(player!=null&&typeof player.pauseVideo==='function'){$videoPlayers[playerID].state=2;player.pauseVideo()}}}function activateDescriptions(){if(!$settings['showDescription'])return;$.each($slides.find('.slideshow_description'),function(key,description){description=$(description);description.show();if($settings['hideDescription'])description.css({'position':'absolute','top':$container.outerHeight(true)});else description.css({'position':'absolute','bottom':0})});if(!$settings['hideDescription'])return;$container.bind('slideshowResize',function(){$.each($container.find('.slideshow_description'),function(key,description){$(description).css('top',$container.outerHeight(true))})});$container.bind('slideshowAnimate',function(){if($visibleViews[1]==undefined)return;$.each($($views[$visibleViews[1]]).find('.slideshow_description'),function(key,description){$(description).css('top',$container.outerHeight(true))})});$slides.mouseenter(function(){var description=$(this).find('.slideshow_description');$descriptionTimer=setTimeout(function(){$descriptionTimer='';description.stop(true,false).animate({'top':($container.outerHeight(true)-description.outerHeight(true))},parseInt($settings['descriptionSpeed']*1000))},100)});$slides.mouseleave(function(){if($descriptionTimer!==''){clearInterval($descriptionTimer);$descriptionTimer=''}$(this).find('.slideshow_description').stop(true,false).animate({'top':$container.outerHeight(true)},parseInt($settings['descriptionSpeed']*1000))})}function activateNavigationButtons(){if(!$settings['controllable'])return;$nextButton.click(function(){if(!$navigationActive)return;pauseAllVideos();stop();animateTo(getNextViewId(),1);start()});$previousButton.click(function(){if(!$navigationActive)return;pauseAllVideos();stop();animateTo(getPreviousViewId(),-1);start()});if($settings['hideNavigationButtons']){$container.mouseenter(function(){$nextButton.stop(true,true).fadeIn(100)});$container.mouseleave(function(){$nextButton.stop(true,true).fadeOut(500)});$container.mouseenter(function(){$previousButton.stop(true,true).fadeIn(100)});$container.mouseleave(function(){$previousButton.stop(true,true).fadeOut(500)})}else{$nextButton.show();$previousButton.show()}}function activateControlPanel(){if(!$settings['controlPanel'])return;if($settings['play'])$togglePlayButton.attr('class','slideshow_pause');else $togglePlayButton.attr('class','slideshow_play');$togglePlayButton.click(function(){if($settings['play']){$settings['play']=false;$(this).attr('class','slideshow_play');stop()}else{$settings['play']=true;$(this).attr('class','slideshow_pause');start()}});if($settings['hideControlPanel']){$container.mouseenter(function(){$controlPanel.stop(true,true).fadeIn(100)});$container.mouseleave(function(){$controlPanel.stop(true,true).fadeOut(500)})}else{$controlPanel.show()}}function activatePagination(){if(!$settings['showPagination'])return;$pagination.find('.slideshow_pagination_center').html('<ul></ul>');var ul=$pagination.find('ul');ul.html('');$views.each(function(key,view){var currentView='';if(key==$currentViewId)currentView='slideshow_currentView';ul.append('<li class="slideshow_transparent '+currentView+'">'+'<span style="display: none;">'+key+'</span>'+'</li>')});$pagination.find('li').click(function(){if(!$navigationActive)return;var viewId=$(this).find('span').text();if(viewId==''||viewId==undefined)return;pauseAllVideos();stop();animateTo(parseInt(viewId),0);start()});$container.bind('slideshowAnimate',function(){var bullets=$pagination.find('li');bullets.each(function(key,bullet){$(bullet).removeClass('slideshow_currentView')});$(bullets[$currentViewId]).addClass('slideshow_currentView')});if($settings['hidePagination']){$container.mouseenter(function(){$pagination.stop(true,true).fadeIn(100)});$container.mouseleave(function(){$pagination.stop(true,true).fadeOut(500)})}else{$pagination.show()}}function activatePauseOnHover(){if(!$settings['pauseOnHover'])return;$container.mouseenter(function(){clearTimeout($mouseEnterTimer);$mouseEnterTimer=setTimeout(function(){stop()},500)});$container.mouseleave(function(){clearTimeout($mouseEnterTimer);if($interval===false)start()})}function getNextViewId(){if($settings['random']){var oldViewId=viewId;viewId=Math.floor(Math.random()*$views.length);if(viewId!=oldViewId)return viewId}var viewId=$currentViewId;if(viewId==undefined)return 0;if(viewId>=$views.length-1){if($settings['loop'])return viewId=0;else return $currentViewId}return viewId+=1}function getPreviousViewId(){var viewId=$currentViewId;if(viewId==undefined)viewId=0;if($settings['random']){var oldViewId=viewId;viewId=Math.floor(Math.random()*$views.length);if(viewId!=oldViewId)return viewId}if(viewId<=0){if($settings['loop'])return viewId=$views.length-1;else return $currentViewId}return viewId-=1}function getID(){var ID=$container.data('sessionId');if(isNaN(ID)||ID===null||ID===undefined)ID=$container.attr('data-session-id');return ID}};window.slideshow_jquery_image_gallery_registered_slideshows=[];jQuery(document).ready(function(){slideshow_jquery_image_gallery_load_youtube_api();slideshow_jquery_image_gallery_check_stylesheet_URL();jQuery.each(jQuery('.slideshow_container'),function(key,slideshow){jQuery(slideshow).slideshow_jquery_image_gallery_script()})});jQuery(window).load(function(){slideshow_jquery_image_gallery_load_youtube_api();slideshow_jquery_image_gallery_check_stylesheet_URL();jQuery.each(jQuery('.slideshow_container'),function(key,slideshow){var $slideshow=jQuery(slideshow),ID=$slideshow.data('sessionId');if(isNaN(ID)||ID===null||ID===undefined)ID=$slideshow.attr('data-session-id');if(jQuery.inArray(ID,window.slideshow_jquery_image_gallery_registered_slideshows)<0)$slideshow.slideshow_jquery_image_gallery_script()})});window.slideshow_jquery_image_gallery_youtube_api_ready=false;function onYouTubeIframeAPIReady(){window.slideshow_jquery_image_gallery_youtube_api_ready=true}window.slideshow_jquery_image_gallery_load_youtube_api_called=false;function slideshow_jquery_image_gallery_load_youtube_api(){if(window.slideshow_jquery_image_gallery_load_youtube_api_called)return;window.slideshow_jquery_image_gallery_load_youtube_api_called=true;var tag=document.createElement('script');tag.src="//www.youtube.com/iframe_api";var firstScriptTag=document.getElementsByTagName('script')[0];firstScriptTag.parentNode.insertBefore(tag,firstScriptTag)}window.slideshow_jquery_image_gallery_stylesheet_URL_checked=false;function slideshow_jquery_image_gallery_check_stylesheet_URL(){if(window.slideshow_jquery_image_gallery_stylesheet_URL_checked)return;window.slideshow_jquery_image_gallery_stylesheet_URL_checked=true;var ajaxStylesheets=jQuery('[id*="slideshow-jquery-image-gallery-ajax-stylesheet_"]');if(ajaxStylesheets.length<=0)return;jQuery.each(ajaxStylesheets,function(ajaxStylesheetKey,ajaxStylesheet){var URL=jQuery(ajaxStylesheet).attr('href');if(URL===undefined||URL==='')return;var styleNameParts=jQuery(ajaxStylesheet).attr('id').split('_'),styleName=styleNameParts.splice(1,styleNameParts.length-1).join('_').slice(0,-4),URLData=URL.split('?');if(URLData[1]===undefined||URLData[1]===''||URLData[1].toLowerCase().indexOf('style=')<0)URLData[1]='action=slideshow_jquery_image_gallery_load_stylesheet'+'&style='+styleName+'&ver='+Math.round((new Date().getTime()/1000));else return;URL=URLData.join('?');jQuery(ajaxStylesheet).attr('href',URL)})}
 
js/SlideshowPluginFeedback/feedback.js DELETED
@@ -1,12 +0,0 @@
1
- jQuery(document).ready(function(){
2
- jQuery.ajax({
3
- url: slideshowFeedbackVariables['address'],
4
- dataType: 'jsonp',
5
- data: {
6
- method: slideshowFeedbackVariables['method'],
7
- access: slideshowFeedbackVariables['access'],
8
- host: slideshowFeedbackVariables['host'],
9
- version: slideshowFeedbackVariables['version']
10
- }
11
- });
12
- });
 
 
 
 
 
 
 
 
 
 
 
 
js/SlideshowPluginGeneralSettings/general-settings.js DELETED
@@ -1,227 +0,0 @@
1
- jQuery(document).ready(function(){
2
-
3
- /**
4
- * ==== Navigation ====
5
- *
6
- * On click of navigation tab, show different settings page.
7
- */
8
- jQuery('.nav-tab').click(function(){
9
-
10
- // Tab references
11
- var activeTab = jQuery('.nav-tab-active');
12
- var thisTab = jQuery(this);
13
-
14
- // Set active navigation tab
15
- activeTab.removeClass('nav-tab-active');
16
- thisTab.addClass('nav-tab-active');
17
-
18
- // Hide previously active tab's content
19
- jQuery(activeTab.attr('href').replace('#', '.')).hide();
20
-
21
- // Show newly activate tab
22
- jQuery(thisTab.attr('href').replace('#', '.')).show();
23
-
24
- // Set referrer value to the current page to be able to return there after saving
25
- var referrer = jQuery('input[name=_wp_http_referer]');
26
- referrer.attr('value', referrer.attr('value').split('#').shift() + thisTab.attr('href'));
27
- });
28
-
29
- // Navigate to correct tab by firing a click event on it. Click event needs to have already been registered on '.nav-tab'.
30
- jQuery('a[href="#' + document.URL.split('#').pop() + '"]').trigger('click');
31
-
32
- /**
33
- * ==== User Capabilities ====
34
- *
35
- * On checking either the 'Add slideshows' capability or the 'Delete slideshow' capability, the 'Edit slideshows'
36
- * checkbox should also be checked. Un-checking the 'Edit slideshows' checkbox needs to do the opposite.
37
- */
38
- jQuery('input').change(function(){
39
-
40
- // Check if the type was a checkbox
41
- if(jQuery(this).attr('type').toLowerCase() != 'checkbox')
42
- return;
43
-
44
- // Capabilities
45
- var addSlideshows = 'slideshow-jquery-image-gallery-add-slideshows';
46
- var editSlideshows = 'slideshow-jquery-image-gallery-edit-slideshows';
47
- var deleteSlideshows = 'slideshow-jquery-image-gallery-delete-slideshows';
48
-
49
- // Get capability and role
50
- var idArray = jQuery(this).attr('id').split('_');
51
- var capability = idArray.shift();
52
- var role = idArray.join('_');
53
-
54
- // When 'Edit slideshows' has been un-checked, set 'Add slideshows' and 'Delete slideshows' to un-checked as well
55
- if(capability == editSlideshows && !jQuery(this).attr('checked')){
56
-
57
- // Un-check 'Delete slideshows' and 'Add slideshows'
58
- jQuery('#' + addSlideshows + '_' + role).attr('checked', false);
59
- jQuery('#' + deleteSlideshows + '_' + role).attr('checked', false);
60
- }
61
- // When 'Add slideshows' or 'Delete slideshows' has been checked, 'Edit slideshows' must be checked as well
62
- else if(capability == addSlideshows || capability == deleteSlideshows){
63
-
64
- jQuery('#' + editSlideshows + '_' + role).attr('checked', true);
65
- }
66
- });
67
-
68
- /**
69
- * ==== Custom Styles ====
70
- *
71
- * Show chosen style editor and hide all others when clicked on style-action. Delete chosen style when clicked on
72
- * style-delete
73
- */
74
- jQuery(
75
- '.custom-styles .styles-list .style-action,' +
76
- '.custom-styles .styles-list .style-delete,' +
77
- '.custom-styles .custom-style-templates .custom-styles-list-item .style-action,' +
78
- '.custom-styles .custom-style-templates .custom-styles-list-item .style-delete'
79
- ).click(function(){
80
-
81
- // Get custom style key
82
- var customStyleKey = jQuery(this).attr('class').split(' ')[1];
83
-
84
- // Return if no style key was found
85
- if(customStyleKey == undefined)
86
- return;
87
-
88
- // Show
89
- if(jQuery(this).hasClass('style-action')){
90
-
91
- // Fade editors out
92
- jQuery('.custom-styles .style-editors .style-editor').each(function(){
93
- jQuery(this).fadeOut(200);
94
- });
95
-
96
- // Fade active editor in
97
- setTimeout(
98
- function(){
99
- jQuery('.style-editor.' + customStyleKey).fadeIn(200);
100
- },
101
- 200
102
- );
103
- }
104
-
105
- // Delete
106
- else if(jQuery(this).hasClass('style-delete')){
107
-
108
- // Exit when the general settings variables is not present
109
- var confirmDeleteMessage = 'Are you sure you want to delete this custom style?';
110
- if( typeof GeneralSettingsVariables != 'undefined' &&
111
- GeneralSettingsVariables.confirmDeleteMessage != undefined &&
112
- GeneralSettingsVariables.confirmDeleteMessage != '')
113
- confirmDeleteMessage = GeneralSettingsVariables.confirmDeleteMessage;
114
-
115
- // Show confirm deletion message
116
- if(!confirm(confirmDeleteMessage))
117
- return;
118
-
119
- // Delete custom style
120
- jQuery('.custom-styles .style-editors .style-editor.' + customStyleKey).remove();
121
-
122
- // Delete item from list
123
- jQuery(this).closest('li').remove();
124
- }
125
- });
126
-
127
- /**
128
- * ==== Custom Styles ====
129
- *
130
- * Create new editor from editor template when a default style needs to be customized.
131
- */
132
- jQuery('.custom-styles .styles-list .style-action.style-default').click(function(){
133
-
134
- // Get the default stylesheet title and content
135
- var title = jQuery(this).closest('li').find('.style-title').html();
136
- var content = jQuery(this).closest('li').find('.style-content').html();
137
-
138
- // Prefix title with new, or its translation
139
- if( typeof GeneralSettingsVariables != 'undefined' &&
140
- GeneralSettingsVariables.newCustomizationPrefix != undefined &&
141
- GeneralSettingsVariables.newCustomizationPrefix != '')
142
- title = GeneralSettingsVariables.newCustomizationPrefix + ' - ' + title;
143
-
144
- // Exit when content is empty
145
- if(content == '' || content == undefined)
146
- return;
147
-
148
- // Exit when the general settings variables is not present
149
- var customStylesKey = 'slideshow-jquery-image-gallery-custom-styles';
150
- if( typeof GeneralSettingsVariables != 'undefined' &&
151
- GeneralSettingsVariables.customStylesKey != undefined &&
152
- GeneralSettingsVariables.customStylesKey != '')
153
- customStylesKey = GeneralSettingsVariables.customStylesKey;
154
-
155
- // Highest custom style ID
156
- var highestCustomStyleID = getHighestCustomStyleID();
157
-
158
- // Custom style ID
159
- var customStyleID = customStylesKey + '_' + (highestCustomStyleID + 1);
160
-
161
- // Clone editor template
162
- var $editor = jQuery('.custom-styles .custom-style-templates .style-editor').clone();
163
-
164
- // Add class to editor
165
- $editor.addClass(customStyleID);
166
-
167
- // Add value attributes
168
- $editor.find('.new-custom-style-title').attr('value', title);
169
- $editor.find('.new-custom-style-content').html(content);
170
-
171
- // Add name attributes
172
- $editor.find('.new-custom-style-title').attr('name', customStylesKey + '[' + customStyleID + '][title]');
173
- $editor.find('.new-custom-style-content').attr('name', customStylesKey + '[' + customStyleID + '][style]');
174
-
175
- // Add editor to DOM
176
- jQuery('.custom-styles .style-editors').append($editor);
177
-
178
- // Fade editor in
179
- setTimeout(
180
- function(){
181
- $editor.fadeIn(200);
182
- },
183
- 200
184
- );
185
-
186
- // Clone custom styles list item
187
- var $li = jQuery('.custom-styles .custom-style-templates .custom-styles-list-item').clone(true);
188
-
189
- // Prepare
190
- $li.removeClass('custom-styles-list-item')
191
- $li.find('.style-title').html(title);
192
- $li.find('.style-action').addClass(customStyleID);
193
- $li.find('.style-delete').addClass(customStyleID);
194
-
195
- // Remove 'No custom stylesheets found message'
196
- jQuery('.custom-styles .styles-list .custom-styles-list .no-custom-styles-found').remove();
197
-
198
- // Add custom styles list item to DOM
199
- jQuery('.custom-styles .styles-list .custom-styles-list').append($li);
200
- });
201
-
202
- /**
203
- * ==== Custom Styles ====
204
- *
205
- * Returns highest custom style id in existence
206
- *
207
- * @return highestCustomStyleID
208
- */
209
- function getHighestCustomStyleID(){
210
-
211
- var highestCustomStyleID = 0;
212
-
213
- // Loop through style editors
214
- jQuery('.custom-styles .style-editors .style-editor').each(function(){
215
-
216
- // Get custom style ID
217
- var customStyleID = parseInt(jQuery(this).attr('class').split('_').pop());
218
-
219
- // Check if the ID is higher than any previously checked
220
- if(customStyleID > highestCustomStyleID)
221
- highestCustomStyleID = customStyleID;
222
- });
223
-
224
- // Return
225
- return parseInt(highestCustomStyleID);
226
- }
227
- });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
js/SlideshowPluginPostType/jscolor/arrow.gif DELETED
Binary file
js/SlideshowPluginPostType/jscolor/cross.gif DELETED
Binary file
js/SlideshowPluginPostType/jscolor/hs.png DELETED
Binary file
js/SlideshowPluginPostType/jscolor/hv.png DELETED
Binary file
js/SlideshowPluginPostType/jscolor/jscolor.js DELETED
@@ -1 +0,0 @@
1
- var jscolor={dir:'',bindClass:'color',binding:true,preloading:true,install:function(){jscolor.addEvent(window,'load',jscolor.init)},init:function(){if(jscolor.binding){jscolor.bind()}if(jscolor.preloading){jscolor.preload()}},getDir:function(){if(!jscolor.dir){var detected=jscolor.detectDir();jscolor.dir=detected!==false?detected:'jscolor/'}return jscolor.dir},detectDir:function(){var base=location.href;var e=document.getElementsByTagName('base');for(var i=0;i<e.length;i+=1){if(e[i].href){base=e[i].href}}var e=document.getElementsByTagName('script');for(var i=0;i<e.length;i+=1){if(e[i].src&&/(^|\/)jscolor\.js([?#].*)?$/i.test(e[i].src)){var src=new jscolor.URI(e[i].src);var srcAbs=src.toAbsolute(base);srcAbs.path=srcAbs.path.replace(/[^\/]+$/,'');srcAbs.query=null;srcAbs.fragment=null;return srcAbs.toString()}}return false},bind:function(){var matchClass=new RegExp('(^|\\s)('+jscolor.bindClass+')\\s*(\\{[^}]*\\})?','i');var e=document.getElementsByTagName('input');for(var i=0;i<e.length;i+=1){var m;if(!e[i].color&&e[i].className&&(m=e[i].className.match(matchClass))){var prop={};if(m[3]){try{prop=(new Function('return ('+m[3]+')'))()}catch(eInvalidProp){}}e[i].color=new jscolor.color(e[i],prop)}}},preload:function(){for(var fn in jscolor.imgRequire){if(jscolor.imgRequire.hasOwnProperty(fn)){jscolor.loadImage(fn)}}},images:{pad:[181,101],sld:[16,101],cross:[15,15],arrow:[7,11]},imgRequire:{},imgLoaded:{},requireImage:function(filename){jscolor.imgRequire[filename]=true},loadImage:function(filename){if(!jscolor.imgLoaded[filename]){jscolor.imgLoaded[filename]=new Image();jscolor.imgLoaded[filename].src=jscolor.getDir()+filename}},fetchElement:function(mixed){return typeof mixed==='string'?document.getElementById(mixed):mixed},addEvent:function(el,evnt,func){if(el.addEventListener){el.addEventListener(evnt,func,false)}else if(el.attachEvent){el.attachEvent('on'+evnt,func)}},fireEvent:function(el,evnt){if(!el){return}if(document.createEvent){var ev=document.createEvent('HTMLEvents');ev.initEvent(evnt,true,true);el.dispatchEvent(ev)}else if(document.createEventObject){var ev=document.createEventObject();el.fireEvent('on'+evnt,ev)}else if(el['on'+evnt]){el['on'+evnt]()}},getElementPos:function(e){var e1=e,e2=e;var x=0,y=0;if(e1.offsetParent){do{x+=e1.offsetLeft;y+=e1.offsetTop}while(e1=e1.offsetParent)}while((e2=e2.parentNode)&&e2.nodeName.toUpperCase()!=='BODY'){x-=e2.scrollLeft;y-=e2.scrollTop}return[x,y]},getElementSize:function(e){return[e.offsetWidth,e.offsetHeight]},getRelMousePos:function(e){var x=0,y=0;if(!e){e=window.event}if(typeof e.offsetX==='number'){x=e.offsetX;y=e.offsetY}else if(typeof e.layerX==='number'){x=e.layerX;y=e.layerY}return{x:x,y:y}},getViewPos:function(){if(typeof window.pageYOffset==='number'){return[window.pageXOffset,window.pageYOffset]}else if(document.body&&(document.body.scrollLeft||document.body.scrollTop)){return[document.body.scrollLeft,document.body.scrollTop]}else if(document.documentElement&&(document.documentElement.scrollLeft||document.documentElement.scrollTop)){return[document.documentElement.scrollLeft,document.documentElement.scrollTop]}else{return[0,0]}},getViewSize:function(){if(typeof window.innerWidth==='number'){return[window.innerWidth,window.innerHeight]}else if(document.body&&(document.body.clientWidth||document.body.clientHeight)){return[document.body.clientWidth,document.body.clientHeight]}else if(document.documentElement&&(document.documentElement.clientWidth||document.documentElement.clientHeight)){return[document.documentElement.clientWidth,document.documentElement.clientHeight]}else{return[0,0]}},URI:function(uri){this.scheme=null;this.authority=null;this.path='';this.query=null;this.fragment=null;this.parse=function(uri){var m=uri.match(/^(([A-Za-z][0-9A-Za-z+.-]*)(:))?((\/\/)([^\/?#]*))?([^?#]*)((\?)([^#]*))?((#)(.*))?/);this.scheme=m[3]?m[2]:null;this.authority=m[5]?m[6]:null;this.path=m[7];this.query=m[9]?m[10]:null;this.fragment=m[12]?m[13]:null;return this};this.toString=function(){var result='';if(this.scheme!==null){result=result+this.scheme+':'}if(this.authority!==null){result=result+'//'+this.authority}if(this.path!==null){result=result+this.path}if(this.query!==null){result=result+'?'+this.query}if(this.fragment!==null){result=result+'#'+this.fragment}return result};this.toAbsolute=function(base){var base=new jscolor.URI(base);var r=this;var t=new jscolor.URI;if(base.scheme===null){return false}if(r.scheme!==null&&r.scheme.toLowerCase()===base.scheme.toLowerCase()){r.scheme=null}if(r.scheme!==null){t.scheme=r.scheme;t.authority=r.authority;t.path=removeDotSegments(r.path);t.query=r.query}else{if(r.authority!==null){t.authority=r.authority;t.path=removeDotSegments(r.path);t.query=r.query}else{if(r.path===''){t.path=base.path;if(r.query!==null){t.query=r.query}else{t.query=base.query}}else{if(r.path.substr(0,1)==='/'){t.path=removeDotSegments(r.path)}else{if(base.authority!==null&&base.path===''){t.path='/'+r.path}else{t.path=base.path.replace(/[^\/]+$/,'')+r.path}t.path=removeDotSegments(t.path)}t.query=r.query}t.authority=base.authority}t.scheme=base.scheme}t.fragment=r.fragment;return t};function removeDotSegments(path){var out='';while(path){if(path.substr(0,3)==='../'||path.substr(0,2)==='./'){path=path.replace(/^\.+/,'').substr(1)}else if(path.substr(0,3)==='/./'||path==='/.'){path='/'+path.substr(3)}else if(path.substr(0,4)==='/../'||path==='/..'){path='/'+path.substr(4);out=out.replace(/\/?[^\/]*$/,'')}else if(path==='.'||path==='..'){path=''}else{var rm=path.match(/^\/?[^\/]*/)[0];path=path.substr(rm.length);out=out+rm}}return out}if(uri){this.parse(uri)}},color:function(target,prop){this.required=true;this.adjust=true;this.hash=false;this.caps=true;this.slider=true;this.valueElement=target;this.styleElement=target;this.onImmediateChange=null;this.hsv=[0,0,1];this.rgb=[1,1,1];this.minH=0;this.maxH=6;this.minS=0;this.maxS=1;this.minV=0;this.maxV=1;this.pickerOnfocus=true;this.pickerMode='HSV';this.pickerPosition='bottom';this.pickerSmartPosition=true;this.pickerButtonHeight=20;this.pickerClosable=false;this.pickerCloseText='Close';this.pickerButtonColor='ButtonText';this.pickerFace=10;this.pickerFaceColor='ThreeDFace';this.pickerBorder=1;this.pickerBorderColor='ThreeDHighlight ThreeDShadow ThreeDShadow ThreeDHighlight';this.pickerInset=1;this.pickerInsetColor='ThreeDShadow ThreeDHighlight ThreeDHighlight ThreeDShadow';this.pickerZIndex=10000;for(var p in prop){if(prop.hasOwnProperty(p)){this[p]=prop[p]}}this.hidePicker=function(){if(isPickerOwner()){removePicker()}};this.showPicker=function(){if(!isPickerOwner()){var tp=jscolor.getElementPos(target);var ts=jscolor.getElementSize(target);var vp=jscolor.getViewPos();var vs=jscolor.getViewSize();var ps=getPickerDims(this);var a,b,c;switch(this.pickerPosition.toLowerCase()){case'left':a=1;b=0;c=-1;break;case'right':a=1;b=0;c=1;break;case'top':a=0;b=1;c=-1;break;default:a=0;b=1;c=1;break}var l=(ts[b]+ps[b])/2;if(!this.pickerSmartPosition){var pp=[tp[a],tp[b]+ts[b]-l+l*c]}else{var pp=[-vp[a]+tp[a]+ps[a]>vs[a]?(-vp[a]+tp[a]+ts[a]/2 > vs[a]/2&&tp[a]+ts[a]-ps[a]>=0?tp[a]+ts[a]-ps[a]:tp[a]):tp[a],-vp[b]+tp[b]+ts[b]+ps[b]-l+l*c>vs[b]?(-vp[b]+tp[b]+ts[b]/2 > vs[b]/2&&tp[b]+ts[b]-l-l*c>=0?tp[b]+ts[b]-l-l*c:tp[b]+ts[b]-l+l*c):(tp[b]+ts[b]-l+l*c>=0?tp[b]+ts[b]-l+l*c:tp[b]+ts[b]-l-l*c)]}drawPicker(pp[a],pp[b])}};this.importColor=function(){if(!valueElement){this.exportColor()}else{if(!this.adjust){if(!this.fromString(valueElement.value,leaveValue)){styleElement.style.backgroundImage=styleElement.jscStyle.backgroundImage;styleElement.style.backgroundColor=styleElement.jscStyle.backgroundColor;styleElement.style.color=styleElement.jscStyle.color;this.exportColor(leaveValue|leaveStyle)}}else if(!this.required&&/^\s*$/.test(valueElement.value)){valueElement.value='';styleElement.style.backgroundImage=styleElement.jscStyle.backgroundImage;styleElement.style.backgroundColor=styleElement.jscStyle.backgroundColor;styleElement.style.color=styleElement.jscStyle.color;this.exportColor(leaveValue|leaveStyle)}else if(this.fromString(valueElement.value)){}else{this.exportColor()}}};this.exportColor=function(flags){if(!(flags&leaveValue)&&valueElement){var value=this.toString();if(this.caps){value=value.toUpperCase()}if(this.hash){value='#'+value}valueElement.value=value}if(!(flags&leaveStyle)&&styleElement){styleElement.style.backgroundImage="none";styleElement.style.backgroundColor='#'+this.toString();styleElement.style.color=0.213*this.rgb[0]+0.715*this.rgb[1]+0.072*this.rgb[2]<0.5?'#FFF':'#000'}if(!(flags&leavePad)&&isPickerOwner()){redrawPad()}if(!(flags&leaveSld)&&isPickerOwner()){redrawSld()}};this.fromHSV=function(h,s,v,flags){if(h!==null){h=Math.max(0.0,this.minH,Math.min(6.0,this.maxH,h))}if(s!==null){s=Math.max(0.0,this.minS,Math.min(1.0,this.maxS,s))}if(v!==null){v=Math.max(0.0,this.minV,Math.min(1.0,this.maxV,v))}this.rgb=HSV_RGB(h===null?this.hsv[0]:(this.hsv[0]=h),s===null?this.hsv[1]:(this.hsv[1]=s),v===null?this.hsv[2]:(this.hsv[2]=v));this.exportColor(flags)};this.fromRGB=function(r,g,b,flags){if(r!==null){r=Math.max(0.0,Math.min(1.0,r))}if(g!==null){g=Math.max(0.0,Math.min(1.0,g))}if(b!==null){b=Math.max(0.0,Math.min(1.0,b))}var hsv=RGB_HSV(r===null?this.rgb[0]:r,g===null?this.rgb[1]:g,b===null?this.rgb[2]:b);if(hsv[0]!==null){this.hsv[0]=Math.max(0.0,this.minH,Math.min(6.0,this.maxH,hsv[0]))}if(hsv[2]!==0){this.hsv[1]=hsv[1]===null?null:Math.max(0.0,this.minS,Math.min(1.0,this.maxS,hsv[1]))}this.hsv[2]=hsv[2]===null?null:Math.max(0.0,this.minV,Math.min(1.0,this.maxV,hsv[2]));var rgb=HSV_RGB(this.hsv[0],this.hsv[1],this.hsv[2]);this.rgb[0]=rgb[0];this.rgb[1]=rgb[1];this.rgb[2]=rgb[2];this.exportColor(flags)};this.fromString=function(hex,flags){var m=hex.match(/^\W*([0-9A-F]{3}([0-9A-F]{3})?)\W*$/i);if(!m){return false}else{if(m[1].length===6){this.fromRGB(parseInt(m[1].substr(0,2),16)/255,parseInt(m[1].substr(2,2),16)/255,parseInt(m[1].substr(4,2),16)/255,flags)}else{this.fromRGB(parseInt(m[1].charAt(0)+m[1].charAt(0),16)/255,parseInt(m[1].charAt(1)+m[1].charAt(1),16)/255,parseInt(m[1].charAt(2)+m[1].charAt(2),16)/255,flags)}return true}};this.toString=function(){return((0x100|Math.round(255*this.rgb[0])).toString(16).substr(1)+(0x100|Math.round(255*this.rgb[1])).toString(16).substr(1)+(0x100|Math.round(255*this.rgb[2])).toString(16).substr(1))};function RGB_HSV(r,g,b){var n=Math.min(Math.min(r,g),b);var v=Math.max(Math.max(r,g),b);var m=v-n;if(m===0){return[null,0,v]}var h=r===n?3+(b-g)/m:(g===n?5+(r-b)/m:1+(g-r)/m);return[h===6?0:h,m/v,v]}function HSV_RGB(h,s,v){if(h===null){return[v,v,v]}var i=Math.floor(h);var f=i%2?h-i:1-(h-i);var m=v*(1-s);var n=v*(1-s*f);switch(i){case 6:case 0:return[v,n,m];case 1:return[n,v,m];case 2:return[m,v,n];case 3:return[m,n,v];case 4:return[n,m,v];case 5:return[v,m,n]}}function removePicker(){delete jscolor.picker.owner;document.getElementsByTagName('body')[0].removeChild(jscolor.picker.boxB)}function drawPicker(x,y){if(!jscolor.picker){jscolor.picker={box:document.createElement('div'),boxB:document.createElement('div'),pad:document.createElement('div'),padB:document.createElement('div'),padM:document.createElement('div'),sld:document.createElement('div'),sldB:document.createElement('div'),sldM:document.createElement('div'),btn:document.createElement('div'),btnS:document.createElement('span'),btnT:document.createTextNode(THIS.pickerCloseText)};for(var i=0,segSize=4;i<jscolor.images.sld[1];i+=segSize){var seg=document.createElement('div');seg.style.height=segSize+'px';seg.style.fontSize='1px';seg.style.lineHeight='0';jscolor.picker.sld.appendChild(seg)}jscolor.picker.sldB.appendChild(jscolor.picker.sld);jscolor.picker.box.appendChild(jscolor.picker.sldB);jscolor.picker.box.appendChild(jscolor.picker.sldM);jscolor.picker.padB.appendChild(jscolor.picker.pad);jscolor.picker.box.appendChild(jscolor.picker.padB);jscolor.picker.box.appendChild(jscolor.picker.padM);jscolor.picker.btnS.appendChild(jscolor.picker.btnT);jscolor.picker.btn.appendChild(jscolor.picker.btnS);jscolor.picker.box.appendChild(jscolor.picker.btn);jscolor.picker.boxB.appendChild(jscolor.picker.box)}var p=jscolor.picker;p.box.onmouseup=p.box.onmouseout=function(){target.focus()};p.box.onmousedown=function(){abortBlur=true};p.box.onmousemove=function(e){if(holdPad||holdSld){holdPad&&setPad(e);holdSld&&setSld(e);if(document.selection){document.selection.empty()}else if(window.getSelection){window.getSelection().removeAllRanges()}dispatchImmediateChange()}};p.padM.onmouseup=p.padM.onmouseout=function(){if(holdPad){holdPad=false;jscolor.fireEvent(valueElement,'change')}};p.padM.onmousedown=function(e){switch(modeID){case 0:if(THIS.hsv[2]===0){THIS.fromHSV(null,null,1.0)};break;case 1:if(THIS.hsv[1]===0){THIS.fromHSV(null,1.0,null)};break}holdPad=true;setPad(e);dispatchImmediateChange()};p.sldM.onmouseup=p.sldM.onmouseout=function(){if(holdSld){holdSld=false;jscolor.fireEvent(valueElement,'change')}};p.sldM.onmousedown=function(e){holdSld=true;setSld(e);dispatchImmediateChange()};var dims=getPickerDims(THIS);p.box.style.width=dims[0]+'px';p.box.style.height=dims[1]+'px';p.boxB.style.position='absolute';p.boxB.style.clear='both';p.boxB.style.left=x+'px';p.boxB.style.top=y+'px';p.boxB.style.zIndex=THIS.pickerZIndex;p.boxB.style.border=THIS.pickerBorder+'px solid';p.boxB.style.borderColor=THIS.pickerBorderColor;p.boxB.style.background=THIS.pickerFaceColor;p.pad.style.width=jscolor.images.pad[0]+'px';p.pad.style.height=jscolor.images.pad[1]+'px';p.padB.style.position='absolute';p.padB.style.left=THIS.pickerFace+'px';p.padB.style.top=THIS.pickerFace+'px';p.padB.style.border=THIS.pickerInset+'px solid';p.padB.style.borderColor=THIS.pickerInsetColor;p.padM.style.position='absolute';p.padM.style.left='0';p.padM.style.top='0';p.padM.style.width=THIS.pickerFace+2*THIS.pickerInset+jscolor.images.pad[0]+jscolor.images.arrow[0]+'px';p.padM.style.height=p.box.style.height;p.padM.style.cursor='crosshair';p.sld.style.overflow='hidden';p.sld.style.width=jscolor.images.sld[0]+'px';p.sld.style.height=jscolor.images.sld[1]+'px';p.sldB.style.display=THIS.slider?'block':'none';p.sldB.style.position='absolute';p.sldB.style.right=THIS.pickerFace+'px';p.sldB.style.top=THIS.pickerFace+'px';p.sldB.style.border=THIS.pickerInset+'px solid';p.sldB.style.borderColor=THIS.pickerInsetColor;p.sldM.style.display=THIS.slider?'block':'none';p.sldM.style.position='absolute';p.sldM.style.right='0';p.sldM.style.top='0';p.sldM.style.width=jscolor.images.sld[0]+jscolor.images.arrow[0]+THIS.pickerFace+2*THIS.pickerInset+'px';p.sldM.style.height=p.box.style.height;try{p.sldM.style.cursor='pointer'}catch(eOldIE){p.sldM.style.cursor='hand'}function setBtnBorder(){var insetColors=THIS.pickerInsetColor.split(/\s+/);var pickerOutsetColor=insetColors.length<2?insetColors[0]:insetColors[1]+' '+insetColors[0]+' '+insetColors[0]+' '+insetColors[1];p.btn.style.borderColor=pickerOutsetColor}p.btn.style.display=THIS.pickerClosable?'block':'none';p.btn.style.position='absolute';p.btn.style.left=THIS.pickerFace+'px';p.btn.style.bottom=THIS.pickerFace+'px';p.btn.style.padding='0 15px';p.btn.style.height='18px';p.btn.style.border=THIS.pickerInset+'px solid';setBtnBorder();p.btn.style.color=THIS.pickerButtonColor;p.btn.style.font='12px sans-serif';p.btn.style.textAlign='center';try{p.btn.style.cursor='pointer'}catch(eOldIE){p.btn.style.cursor='hand'}p.btn.onmousedown=function(){THIS.hidePicker()};p.btnS.style.lineHeight=p.btn.style.height;switch(modeID){case 0:var padImg='hs.png';break;case 1:var padImg='hv.png';break}p.padM.style.backgroundImage="url('"+jscolor.getDir()+"cross.gif')";p.padM.style.backgroundRepeat="no-repeat";p.sldM.style.backgroundImage="url('"+jscolor.getDir()+"arrow.gif')";p.sldM.style.backgroundRepeat="no-repeat";p.pad.style.backgroundImage="url('"+jscolor.getDir()+padImg+"')";p.pad.style.backgroundRepeat="no-repeat";p.pad.style.backgroundPosition="0 0";redrawPad();redrawSld();jscolor.picker.owner=THIS;document.getElementsByTagName('body')[0].appendChild(p.boxB)}function getPickerDims(o){var dims=[2*o.pickerInset+2*o.pickerFace+jscolor.images.pad[0]+(o.slider?2*o.pickerInset+2*jscolor.images.arrow[0]+jscolor.images.sld[0]:0),o.pickerClosable?4*o.pickerInset+3*o.pickerFace+jscolor.images.pad[1]+o.pickerButtonHeight:2*o.pickerInset+2*o.pickerFace+jscolor.images.pad[1]];return dims}function redrawPad(){switch(modeID){case 0:var yComponent=1;break;case 1:var yComponent=2;break}var x=Math.round((THIS.hsv[0]/6)*(jscolor.images.pad[0]-1));var y=Math.round((1-THIS.hsv[yComponent])*(jscolor.images.pad[1]-1));jscolor.picker.padM.style.backgroundPosition=(THIS.pickerFace+THIS.pickerInset+x-Math.floor(jscolor.images.cross[0]/2))+'px '+(THIS.pickerFace+THIS.pickerInset+y-Math.floor(jscolor.images.cross[1]/2))+'px';var seg=jscolor.picker.sld.childNodes;switch(modeID){case 0:var rgb=HSV_RGB(THIS.hsv[0],THIS.hsv[1],1);for(var i=0;i<seg.length;i+=1){seg[i].style.backgroundColor='rgb('+(rgb[0]*(1-i/seg.length)*100)+'%,'+(rgb[1]*(1-i/seg.length)*100)+'%,'+(rgb[2]*(1-i/seg.length)*100)+'%)'}break;case 1:var rgb,s,c=[THIS.hsv[2],0,0];var i=Math.floor(THIS.hsv[0]);var f=i%2?THIS.hsv[0]-i:1-(THIS.hsv[0]-i);switch(i){case 6:case 0:rgb=[0,1,2];break;case 1:rgb=[1,0,2];break;case 2:rgb=[2,0,1];break;case 3:rgb=[2,1,0];break;case 4:rgb=[1,2,0];break;case 5:rgb=[0,2,1];break}for(var i=0;i<seg.length;i+=1){s=1-1/(seg.length-1)*i;c[1]=c[0]*(1-s*f);c[2]=c[0]*(1-s);seg[i].style.backgroundColor='rgb('+(c[rgb[0]]*100)+'%,'+(c[rgb[1]]*100)+'%,'+(c[rgb[2]]*100)+'%)'}break}}function redrawSld(){switch(modeID){case 0:var yComponent=2;break;case 1:var yComponent=1;break}var y=Math.round((1-THIS.hsv[yComponent])*(jscolor.images.sld[1]-1));jscolor.picker.sldM.style.backgroundPosition='0 '+(THIS.pickerFace+THIS.pickerInset+y-Math.floor(jscolor.images.arrow[1]/2))+'px'}function isPickerOwner(){return jscolor.picker&&jscolor.picker.owner===THIS}function blurTarget(){if(valueElement===target){THIS.importColor()}if(THIS.pickerOnfocus){THIS.hidePicker()}}function blurValue(){if(valueElement!==target){THIS.importColor()}}function setPad(e){var mpos=jscolor.getRelMousePos(e);var x=mpos.x-THIS.pickerFace-THIS.pickerInset;var y=mpos.y-THIS.pickerFace-THIS.pickerInset;switch(modeID){case 0:THIS.fromHSV(x*(6/(jscolor.images.pad[0]-1)),1-y/(jscolor.images.pad[1]-1),null,leaveSld);break;case 1:THIS.fromHSV(x*(6/(jscolor.images.pad[0]-1)),null,1-y/(jscolor.images.pad[1]-1),leaveSld);break}}function setSld(e){var mpos=jscolor.getRelMousePos(e);var y=mpos.y-THIS.pickerFace-THIS.pickerInset;switch(modeID){case 0:THIS.fromHSV(null,null,1-y/(jscolor.images.sld[1]-1),leavePad);break;case 1:THIS.fromHSV(null,1-y/(jscolor.images.sld[1]-1),null,leavePad);break}}function dispatchImmediateChange(){if(THIS.onImmediateChange){var callback;if(typeof THIS.onImmediateChange==='string'){callback=new Function(THIS.onImmediateChange)}else{callback=THIS.onImmediateChange}callback.call(THIS)}}var THIS=this;var modeID=this.pickerMode.toLowerCase()==='hvs'?1:0;var abortBlur=false;var valueElement=jscolor.fetchElement(this.valueElement),styleElement=jscolor.fetchElement(this.styleElement);var holdPad=false,holdSld=false;var leaveValue=1<<0,leaveStyle=1<<1,leavePad=1<<2,leaveSld=1<<3;jscolor.addEvent(target,'focus',function(){if(THIS.pickerOnfocus){THIS.showPicker()}});jscolor.addEvent(target,'blur',function(){if(!abortBlur){window.setTimeout(function(){abortBlur||blurTarget();abortBlur=false},0)}else{abortBlur=false}});if(valueElement){var updateField=function(){THIS.fromString(valueElement.value,leaveValue);dispatchImmediateChange()};jscolor.addEvent(valueElement,'keyup',updateField);jscolor.addEvent(valueElement,'input',updateField);jscolor.addEvent(valueElement,'blur',blurValue);valueElement.setAttribute('autocomplete','off')}if(styleElement){styleElement.jscStyle={backgroundImage:styleElement.style.backgroundImage,backgroundColor:styleElement.style.backgroundColor,color:styleElement.style.color}}switch(modeID){case 0:jscolor.requireImage('hs.png');break;case 1:jscolor.requireImage('hv.png');break}jscolor.requireImage('cross.gif');jscolor.requireImage('arrow.gif');this.importColor()}};jscolor.install();
 
js/SlideshowPluginPostType/post-type-handler.js DELETED
@@ -1,49 +0,0 @@
1
- jQuery(document).ready(function(){
2
-
3
- /**
4
- * Loop through fields that depend on another field's value for showing, register change event
5
- */
6
- jQuery('.depends-on-field-value').each(function(key, value){
7
- var attributes = jQuery(this).attr('class').split(' ');
8
-
9
- // Check if field should be shown
10
- var element = jQuery(this).closest('tr');
11
- if(jQuery('input[name="' + attributes[1] + '"]:checked').val() == attributes[2])
12
- jQuery(element).show();
13
- else
14
- jQuery(element).hide();
15
-
16
- // On change, set field's visibility
17
- jQuery('input[name="' + attributes[1] + '"]').change(attributes, function(){
18
- var element = jQuery('.' + attributes[3]).closest('tr');
19
-
20
- if(jQuery(this).val() == attributes[2])
21
- animateElementVisibility(element, true);
22
- else
23
- animateElementVisibility(element, false);
24
- });
25
- });
26
-
27
- /**
28
- * Animate to element's visibility
29
- *
30
- * @param element
31
- * @param visible
32
- */
33
- function animateElementVisibility(element, visible){
34
- if(visible){
35
- jQuery(element)
36
- .show()
37
- .css('background-color', '#c0dd52')
38
-
39
- setTimeout(
40
- function(){
41
- jQuery(element).stop(true, true).animate({ 'background-color': 'transparent' }, 1500);
42
- },
43
- 500
44
- );
45
- }else{
46
- jQuery(element).stop(true, true).hide();
47
- }
48
- }
49
- });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
js/SlideshowPluginPostType/style-settings.js DELETED
@@ -1,19 +0,0 @@
1
- jQuery(document).ready(function(){
2
-
3
- var currentlyEdited = '.' + jQuery('.style-list').val();
4
- setVisible(currentlyEdited, true);
5
-
6
- jQuery('.style-list').change(function(){
7
- setVisible(currentlyEdited, false);
8
-
9
- currentlyEdited = '.' + jQuery('.style-list').val();
10
- setVisible(currentlyEdited, true);
11
- });
12
-
13
- function setVisible(element, visible){
14
- if(visible)
15
- jQuery(element).css({'display': 'table-row'});
16
- else
17
- jQuery(element).css({'display': 'none'});
18
- }
19
- });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
js/SlideshowPluginShortcode/shortcode-inserter.js DELETED
@@ -1,28 +0,0 @@
1
- jQuery(document).ready(function(){
2
-
3
- jQuery('.insertSlideshowShortcodeSlideshowInsertButton').click(function(){
4
- var undefinedSlideshowMessage = SlideshowShortcodeInserter.undefinedSlideshowMessage;
5
- if(undefinedSlideshowMessage == undefined)
6
- undefinedSlideshowMessage = 'No slideshow selected.';
7
-
8
- var shortcode = SlideshowShortcodeInserter.shortcode;
9
- if(shortcode == undefined)
10
- shortcode = 'slideshow_deploy';
11
-
12
- var slideshowId = jQuery('#insertSlideshowShortcodeSlideshowSelect').val();
13
-
14
- if(slideshowId == undefined){
15
- alert(undefinedSlideshowMessage);
16
- return;
17
- }
18
-
19
- send_to_editor('[' + shortcode + ' id=\'' + slideshowId + '\']');
20
- tb_remove();
21
- return true;
22
- });
23
-
24
- jQuery('.insertSlideshowShortcodeCancelButton').click(function(){
25
- tb_remove();
26
- return false;
27
- });
28
- });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
js/SlideshowPluginSlideInserter/slide-inserter.js DELETED
@@ -1,301 +0,0 @@
1
- jQuery(document).ready(function(){
2
-
3
- // Index first
4
- slideshowSlideInserterIndexSlidesOrder();
5
-
6
- // Make list items in the sortables list sortable, exclude elements with cancel option.
7
- jQuery('.sortable-slides-list').sortable({
8
- revert: true,
9
- placeholder: 'sortable-placeholder',
10
- forcePlaceholderSize: true,
11
- stop: function(event, ui){
12
- slideshowSlideInserterIndexSlidesOrder();
13
- },
14
- cancel: 'input, select, p'
15
- });
16
-
17
- // Make the black background stretch all the way down the document
18
- jQuery('#slideshow-slide-inserter-popup-background').height(jQuery(document).outerHeight(true));
19
-
20
- // Center the popup in the window
21
- jQuery('#slideshow-slide-inserter-popup').css({
22
- 'top': parseInt((jQuery(window).height() / 2) - (jQuery('#slideshow-slide-inserter-popup').outerHeight(true) / 2), 10),
23
- 'left': parseInt((jQuery(window).width() / 2) - (jQuery('#slideshow-slide-inserter-popup').outerWidth(true) / 2), 10)
24
- });
25
-
26
- // Focus on search bar
27
- jQuery('#slideshow-slide-inserter-popup #search').focus();
28
-
29
- // Preload attachments
30
- slideshowSlideInserterGetSearchResults();
31
-
32
- /**
33
- * Close popup when clicked on cross
34
- */
35
- jQuery('#slideshow-slide-inserter-popup #close').click(function(){
36
- slideshowSlideInserterClosePopup();
37
- });
38
-
39
- /**
40
- * Close popup when clicked on background
41
- */
42
- jQuery('#slideshow-slide-inserter-popup-background').click(function(){
43
- slideshowSlideInserterClosePopup();
44
- });
45
-
46
- /**
47
- * Send ajax request on click of the search button
48
- */
49
- jQuery('#slideshow-slide-inserter-popup #search-submit').click(function(){
50
- slideshowSlideInserterGetSearchResults();
51
- });
52
-
53
- /**
54
- * Make the 'enter' key do the same as the search button
55
- */
56
- jQuery('#slideshow-slide-inserter-popup #search').keypress(function(event){
57
- if(event.which == 13){
58
- event.preventDefault();
59
- slideshowSlideInserterGetSearchResults();
60
- }
61
- });
62
-
63
- /**
64
- * Open popup by click on button
65
- */
66
- jQuery('#slideshow-insert-image-slide').click(function(){
67
- jQuery('#slideshow-slide-inserter-popup, #slideshow-slide-inserter-popup-background').css({ display: 'block' });
68
- });
69
-
70
- /**
71
- * Insert text slide into the sortable list when the Insert Text Slide button is clicked
72
- */
73
- jQuery('#slideshow-insert-text-slide').click(function(){
74
- slideshowSlideInserterInsertTextSlide();
75
- });
76
-
77
- /**
78
- * Insert video slide into the sortable list when the Insert Video Slide button is clicked
79
- */
80
- jQuery('#slideshow-insert-video-slide').click(function(){
81
- slideshowSlideInserterInsertVideoSlide();
82
- });
83
-
84
- /**
85
- * Call slideshowDeleteSlide on click
86
- */
87
- jQuery('.slideshow-delete-slide').click(function(){
88
- slideshowDeleteSlide(jQuery(this).closest('li'));
89
- });
90
-
91
- /**
92
- * Deletes slide from DOM
93
- *
94
- * @param slide
95
- */
96
- function slideshowDeleteSlide(slide){
97
-
98
- // Deletion message
99
- var confirmMessage = 'Are you sure you want to delete this slide?';
100
- if(typeof SlideInserterTranslations !== undefined)
101
- confirmMessage = SlideInserterTranslations.confirmMessage;
102
-
103
- // Confirm deletion
104
- var deleteSlide = confirm(confirmMessage);
105
- if(!deleteSlide)
106
- return;
107
-
108
- // Remove slide from DOM
109
- slide.remove();
110
- }
111
-
112
- /**
113
- * Loop through list items, setting slide orders
114
- */
115
- function slideshowSlideInserterIndexSlidesOrder(){
116
- // Loop through sortables
117
- jQuery.each(jQuery('.sortable-slides-list').find('li'), function(key, value){
118
-
119
- // Loop through all input, select and text area boxes
120
- jQuery.each(jQuery(this).find('input, select, textarea'), function(key2, input){
121
-
122
- // Remove brackets
123
- var name = jQuery(input).attr('name');
124
-
125
- // No name found, skip
126
- if(name == undefined)
127
- return;
128
-
129
- // Divide name parts
130
- name = name.replace(/[\[\]']+/g, ' ').split(' ');
131
-
132
- // Put name with new order ID back on the page
133
- jQuery(input).attr('name', name[0] + '[' + (key + 1) + '][' + name[2] + ']');
134
- });
135
- });
136
- }
137
-
138
- /**
139
- * Sends an ajax post request with the search query and print
140
- * retrieved html to the results table.
141
- *
142
- * If offset is set, append data to data that is already there
143
- *
144
- * @param offset (optional, defaults to 0)
145
- */
146
- function slideshowSlideInserterGetSearchResults(offset){
147
- var popup = jQuery('#slideshow-slide-inserter-popup');
148
- var resultsTable = popup.find('#results');
149
-
150
- if(!offset){
151
- offset = 0;
152
- resultsTable.html('');
153
- }
154
-
155
- var attachmentIDs = [];
156
- jQuery.each(resultsTable.find('.result-table-row'), function(key, tr){
157
- attachmentIDs.push(jQuery(tr).attr('data-attachment-id'));
158
- });
159
-
160
- jQuery.post(
161
- ajaxurl,
162
- {
163
- action: 'slideshow_slide_inserter_search_query',
164
- search: popup.find('#search').attr('value'),
165
- offset: offset,
166
- attachmentIDs: attachmentIDs
167
- },
168
- function(response){
169
- // Fill table
170
- resultsTable.append(response);
171
-
172
- // Apply insert to slideshow script
173
- resultsTable.find('.insert-attachment').unbind('click').click(function(){
174
- var tr = jQuery(this).closest('tr');
175
- slideshowSlideInserterInsertImageSlide(
176
- jQuery(tr).attr('data-attachment-id'),
177
- jQuery(tr).find('.title').text(),
178
- jQuery(tr).find('.description').text(),
179
- jQuery(tr).find('.image img').attr('src')
180
- );
181
- });
182
-
183
- // Load more results on click of the 'Load more results' button
184
- var loadMoreResultsButton = jQuery('.load-more-results');
185
- if(loadMoreResultsButton){
186
- loadMoreResultsButton.click(function(){
187
- // Get offset
188
- var previousOffset = jQuery(this).attr('data-offset');
189
-
190
- // Remove button row
191
- jQuery(this).closest('tr').hide();
192
-
193
- // Load ajax results
194
- slideshowSlideInserterGetSearchResults(previousOffset);
195
- });
196
- }
197
- }
198
- );
199
- }
200
-
201
- /**
202
- * Inserts image slide into the slides list
203
- *
204
- * @param id
205
- * @param title
206
- * @param description
207
- * @param src
208
- */
209
- function slideshowSlideInserterInsertImageSlide(id, title, description, src){
210
-
211
- // Find and clone the image slide template
212
- var imageSlide = jQuery('.image-slide-template').find('li').clone();
213
-
214
- // Fill slide with data
215
- imageSlide.find('.attachment').attr('src', src);
216
- imageSlide.find('.attachment').attr('title', title);
217
- imageSlide.find('.attachment').attr('alt', title);
218
- imageSlide.find('.title').attr('value', title);
219
- imageSlide.find('.description').html(description);
220
- imageSlide.find('.postId').attr('value', id);
221
-
222
- // Set names to be saved to the database
223
- imageSlide.find('.title').attr('name', 'slides[0][title]');
224
- imageSlide.find('.description').attr('name', 'slides[0][description]');
225
- imageSlide.find('.url').attr('name', 'slides[0][url]');
226
- imageSlide.find('.urlTarget').attr('name', 'slides[0][urlTarget]');
227
- imageSlide.find('.type').attr('name', 'slides[0][type]');
228
- imageSlide.find('.postId').attr('name', 'slides[0][postId]');
229
-
230
- // Register delete link
231
- imageSlide.find('.slideshow-delete-slide').click(function(){
232
- slideshowDeleteSlide(jQuery(this).closest('li'));
233
- });
234
-
235
- // Put slide in the sortables list.
236
- jQuery('.sortable-slides-list').prepend(imageSlide);
237
-
238
- // Reindex
239
- slideshowSlideInserterIndexSlidesOrder();
240
- }
241
-
242
- /**
243
- * Inserts text slide into the slides list
244
- */
245
- function slideshowSlideInserterInsertTextSlide(){
246
-
247
- // Find and clone the text slide template
248
- var textSlide = jQuery('.text-slide-template').find('li').clone();
249
-
250
- // Set names to be saved to the database
251
- textSlide.find('.title').attr('name', 'slides[0][title]');
252
- textSlide.find('.description').attr('name', 'slides[0][description]');
253
- textSlide.find('.textColor').attr('name', 'slides[0][textColor]');
254
- textSlide.find('.color').attr('name', 'slides[0][color]');
255
- textSlide.find('.url').attr('name', 'slides[0][url]');
256
- textSlide.find('.urlTarget').attr('name', 'slides[0][urlTarget]');
257
- textSlide.find('.type').attr('name', 'slides[0][type]');
258
-
259
- // Register delete link
260
- textSlide.find('.slideshow-delete-slide').click(function(){
261
- slideshowDeleteSlide(jQuery(this).closest('li'));
262
- });
263
-
264
- // Put slide in the sortables list.
265
- jQuery('.sortable-slides-list').prepend(textSlide);
266
-
267
- // Reindex slide orders
268
- slideshowSlideInserterIndexSlidesOrder();
269
- }
270
-
271
- /**
272
- * Inserts video slide into the slides list
273
- */
274
- function slideshowSlideInserterInsertVideoSlide(){
275
-
276
- // Find and clone the video slide template
277
- var videoSlide = jQuery('.video-slide-template').find('li').clone();
278
-
279
- // Set names to be saved to the database
280
- videoSlide.find('.videoId').attr('name', 'slides[0][videoId]');
281
- videoSlide.find('.type').attr('name', 'slides[0][type]');
282
-
283
- // Register delete link
284
- videoSlide.find('.slideshow-delete-slide').click(function(){
285
- slideshowDeleteSlide(jQuery(this).closest('li'));
286
- });
287
-
288
- // Put slide in the sortables list.
289
- jQuery('.sortable-slides-list').prepend(videoSlide);
290
-
291
- // Reindex slide orders
292
- slideshowSlideInserterIndexSlidesOrder();
293
- }
294
-
295
- /**
296
- * Closes popup
297
- */
298
- function slideshowSlideInserterClosePopup(){
299
- jQuery('#slideshow-slide-inserter-popup, #slideshow-slide-inserter-popup-background').css({ display: 'none' });
300
- }
301
- });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
js/SlideshowPluginUpload/upload-button.js DELETED
@@ -1,8 +0,0 @@
1
- jQuery(document).ready(function(){
2
- jQuery('#upload_image_button').click(function() {
3
- formfield = jQuery('#upload_image').attr('name');
4
- post_id = jQuery('#post_ID').val();
5
- tb_show('', 'media-upload.php?post_id='+post_id+'&amp;type=image&amp;TB_iframe=true');
6
- return false;
7
- });
8
- });
 
 
 
 
 
 
 
 
js/min/all.backend.min.js ADDED
@@ -0,0 +1,896 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * Slideshow backend script
3
+ *
4
+ * @author Stefan Boonstra
5
+ * @version 2.2.12
6
+ */
7
+ slideshow_jquery_image_gallery_backend_script = function()
8
+ {
9
+ var $ = jQuery,
10
+ self = {};
11
+
12
+ self.isBackendInitialized = false;
13
+
14
+ /**
15
+ * Called by either jQuery's document ready event or JavaScript's window load event in case document ready fails to
16
+ * fire.
17
+ *
18
+ * Triggers the slideshowBackendReady on the document to inform all backend scripts they can start.
19
+ */
20
+ self.init = function()
21
+ {
22
+ if (self.isBackendInitialized)
23
+ {
24
+ return;
25
+ }
26
+
27
+ self.isBackendInitialized = true;
28
+
29
+ $(document).trigger('slideshowBackendReady');
30
+ };
31
+
32
+ $(document).ready(self.init);
33
+
34
+ $(window).load(self.init);
35
+
36
+ return self;
37
+ }();
38
+
39
+ // @codekit-append backend/generalSettings.js
40
+ // @codekit-append backend/editSlideshow.js
41
+ // @codekit-append backend/shortcode.js
42
+
43
+ ///**
44
+ // * Simple logging function for Internet Explorer
45
+ // *
46
+ // * @param message
47
+ // */
48
+ //function log(message)
49
+ //{
50
+ // var $ = jQuery;
51
+ //
52
+ // $('body').prepend('<p style="color: red;">' + message + '</p>');
53
+ //}
54
+ slideshow_jquery_image_gallery_backend_script.generalSettings = function()
55
+ {
56
+ var $ = jQuery,
57
+ self = { };
58
+
59
+ self.isCurrentPage = false;
60
+
61
+ /**
62
+ *
63
+ */
64
+ self.init = function()
65
+ {
66
+ if (window.pagenow === 'slideshow_page_general_settings')
67
+ {
68
+ self.isCurrentPage = true;
69
+
70
+ self.activateUserCapabilities();
71
+ }
72
+ };
73
+
74
+ /**
75
+ * When either the 'Add slideshows' capability or the 'Delete slideshow' capability is changed, the 'Edit slideshows'
76
+ * checkbox should also be checked. Un-checking the 'Edit slideshows' checkbox needs to do the opposite.
77
+ */
78
+ self.activateUserCapabilities = function()
79
+ {
80
+ $('input').change(function(event)
81
+ {
82
+ var $this = $(event.currentTarget),
83
+ addSlideshowsCapability = 'slideshow-jquery-image-gallery-add-slideshows',
84
+ editSlideshowsCapability = 'slideshow-jquery-image-gallery-edit-slideshows',
85
+ deleteSlideshowsCapability = 'slideshow-jquery-image-gallery-delete-slideshows',
86
+ idArray,
87
+ capability,
88
+ role;
89
+
90
+ // Check if the type was a checkbox
91
+ if ($this.attr('type').toLowerCase() != 'checkbox')
92
+ {
93
+ return;
94
+ }
95
+
96
+ // Get capability and role
97
+ idArray = $this.attr('id').split('_');
98
+ capability = idArray.shift();
99
+ role = idArray.join('_');
100
+
101
+ // When 'Edit slideshows' has been un-checked, set 'Add slideshows' and 'Delete slideshows' to un-checked as well
102
+ if (capability === editSlideshowsCapability &&
103
+ !$this.attr('checked'))
104
+ {
105
+ $('#' + addSlideshowsCapability + '_' + role).attr('checked', false);
106
+ $('#' + deleteSlideshowsCapability + '_' + role).attr('checked', false);
107
+ }
108
+ // When 'Add slideshows' or 'Delete slideshows' is checked, 'Edit slideshows' must be checked as well
109
+ else if (capability === addSlideshowsCapability ||
110
+ capability === deleteSlideshowsCapability)
111
+ {
112
+ $('#' + editSlideshowsCapability + '_' + role).attr('checked', true);
113
+ }
114
+ });
115
+ };
116
+
117
+ $(document).bind('slideshowBackendReady', self.init);
118
+
119
+ return self;
120
+ }();
121
+
122
+ // @codekit-append generalSettings.navigation.js
123
+ // @codekit-append generalSettings.customStyles.js
124
+ slideshow_jquery_image_gallery_backend_script.editSlideshow = function()
125
+ {
126
+ var $ = jQuery,
127
+ self = { };
128
+
129
+ self.isCurrentPage = false;
130
+
131
+ /**
132
+ *
133
+ */
134
+ self.init = function()
135
+ {
136
+ if (window.pagenow === 'slideshow')
137
+ {
138
+ self.isCurrentPage = true;
139
+
140
+ self.activateSettingsVisibilityDependency();
141
+ }
142
+ };
143
+
144
+ /**
145
+ * Set fields, that depend on another field being a certain value, to show when that certain field becomes a certain
146
+ * value and to hide when that certain fields loses that certain value.
147
+ */
148
+ self.activateSettingsVisibilityDependency = function()
149
+ {
150
+ $('.depends-on-field-value').each(function(key, field)
151
+ {
152
+ var $field = $(field),
153
+ attributes = $field.attr('class').split(' '),
154
+ $tr = $field.closest('tr');
155
+
156
+ // Check whether or not field should be shown
157
+ if ($('input[name="' + attributes[1] + '"]:checked').val() == attributes[2])
158
+ {
159
+ $tr.show();
160
+ }
161
+ else
162
+ {
163
+ $tr.hide();
164
+ }
165
+
166
+ // On change of the field that the current field depends on, set field's visibility
167
+ $('input[name="' + attributes[1] + '"]').change(attributes, function(event)
168
+ {
169
+ var $tr = $('.' + attributes[3]).closest('tr');
170
+
171
+ if ($(event.currentTarget).val() == attributes[2])
172
+ {
173
+ self.animateElementVisibility($tr, true);
174
+ }
175
+ else
176
+ {
177
+ self.animateElementVisibility($tr, false);
178
+ }
179
+ });
180
+ });
181
+ };
182
+
183
+ /**
184
+ * Animate an element's visibility
185
+ *
186
+ * @param element
187
+ * @param setVisible Optional, defaults to the current opposite when left empty.
188
+ */
189
+ self.animateElementVisibility = function(element, setVisible)
190
+ {
191
+ var $element = $(element);
192
+
193
+ if (setVisible === undefined)
194
+ {
195
+ // Finish animation before checking visibility
196
+ $element.stop(true, true);
197
+
198
+ setVisible = !$element.is(':visible');
199
+ }
200
+
201
+ if (setVisible)
202
+ {
203
+ $element.show().css('background-color', '#c0dd52')
204
+
205
+ setTimeout(
206
+ function()
207
+ {
208
+ $element.stop(true, true).animate({ 'background-color': 'transparent' }, 1500);
209
+ },
210
+ 500
211
+ );
212
+ }
213
+ else
214
+ {
215
+ $element.stop(true, true).hide();
216
+ }
217
+ };
218
+
219
+ $(document).bind('slideshowBackendReady', self.init);
220
+
221
+ return self;
222
+ }();
223
+
224
+ // @codekit-append editSlideshow.slideManager.js
225
+ slideshow_jquery_image_gallery_backend_script.shortcode = function()
226
+ {
227
+ var $ = jQuery,
228
+ self = { };
229
+
230
+ /**
231
+ *
232
+ */
233
+ self.init = function()
234
+ {
235
+ self.activateShortcodeInserter();
236
+ };
237
+
238
+ /**
239
+ *
240
+ */
241
+ self.activateShortcodeInserter = function()
242
+ {
243
+ $('.insertSlideshowShortcodeSlideshowInsertButton').click(function()
244
+ {
245
+ var undefinedSlideshowMessage = 'No slideshow selected.',
246
+ shortcode = 'slideshow_deploy',
247
+ slideshowID = parseInt($('#insertSlideshowShortcodeSlideshowSelect').val()),
248
+ extraData = window.slideshow_jquery_image_gallery_backend_script_shortcode;
249
+
250
+ if (typeof extraData === 'object')
251
+ {
252
+ if (typeof extraData.data === 'object' &&
253
+ extraData.data.shortcode !== undefined &&
254
+ extraData.data.shortcode.length > 0)
255
+ {
256
+ shortcode = extraData.data.shortcode;
257
+ }
258
+
259
+ if (typeof extraData.localization === 'object' &&
260
+ extraData.localization.undefinedSlideshow !== undefined &&
261
+ extraData.localization.undefinedSlideshow.length > 0)
262
+ {
263
+ undefinedSlideshowMessage = extraData.localization.undefinedSlideshow;
264
+ }
265
+ }
266
+
267
+ if (isNaN(slideshowID))
268
+ {
269
+ alert(undefinedSlideshowMessage);
270
+
271
+ return false;
272
+ }
273
+
274
+ send_to_editor('[' + shortcode + ' id=\'' + slideshowID + '\']');
275
+
276
+ tb_remove();
277
+
278
+ return true;
279
+ });
280
+
281
+ $('.insertSlideshowShortcodeCancelButton').click(function()
282
+ {
283
+ tb_remove();
284
+
285
+ return false;
286
+ });
287
+ };
288
+
289
+ $(document).bind('slideshowBackendReady', self.init);
290
+
291
+ return self;
292
+ }();slideshow_jquery_image_gallery_backend_script.generalSettings.customStyles = function()
293
+ {
294
+ var $ = jQuery,
295
+ self = { };
296
+
297
+ /**
298
+ *
299
+ */
300
+ self.init = function()
301
+ {
302
+ if (!slideshow_jquery_image_gallery_backend_script.generalSettings.isCurrentPage)
303
+ {
304
+ return;
305
+ }
306
+
307
+ self.activateNavigation();
308
+ };
309
+
310
+ /**
311
+ * Binds functions to fire at click events on the navigation tabs
312
+ */
313
+ self.activateNavigation = function()
314
+ {
315
+ // On click of navigation tab, show different settings page.
316
+ $('.nav-tab').click(function(event)
317
+ {
318
+ var $this = $(event.currentTarget),
319
+ $activeTab = $('.nav-tab-active'),
320
+ $referrer;
321
+
322
+ $activeTab.removeClass('nav-tab-active');
323
+ $this.addClass('nav-tab-active');
324
+
325
+ // Hide previously active tab's content
326
+ $($activeTab.attr('href').replace('#', '.')).hide();
327
+
328
+ // Show newly activated tab
329
+ $($this.attr('href').replace('#', '.')).show();
330
+
331
+ // Set referrer value to the current page to be able to return there after saving
332
+ $referrer = $('input[name=_wp_http_referer]');
333
+ $referrer.attr('value', $referrer.attr('value').split('#').shift() + $this.attr('href'));
334
+ });
335
+
336
+ // Navigate to correct tab by firing a click event on it. Click event needs to have already been registered on '.nav-tab'.
337
+ $('a[href="#' + document.URL.split('#').pop() + '"]').trigger('click');
338
+ };
339
+
340
+ $(document).bind('slideshowBackendReady', self.init);
341
+
342
+ return self;
343
+ }();slideshow_jquery_image_gallery_backend_script.generalSettings.customStyles = function()
344
+ {
345
+ var $ = jQuery,
346
+ self = { };
347
+
348
+ /**
349
+ *
350
+ */
351
+ self.init = function()
352
+ {
353
+ if (!slideshow_jquery_image_gallery_backend_script.generalSettings.isCurrentPage)
354
+ {
355
+ return;
356
+ }
357
+
358
+ self.activateActionButtons();
359
+ self.activateDeleteButtons()
360
+ };
361
+
362
+ /**
363
+ *
364
+ */
365
+ self.activateActionButtons = function()
366
+ {
367
+ // On click of the customize default style button
368
+ $('.custom-styles-tab .styles-list .style-action.style-default').click(function(event)
369
+ {
370
+ var $this = $(event.currentTarget),
371
+ title = $this.closest('li').find('.style-title').html(),
372
+ content = $this.closest('li').find('.style-content').html(),
373
+ externalData = window.slideshow_jquery_image_gallery_backend_script_generalSettings,
374
+ customStylesKey = 'slideshow-jquery-image-gallery-custom-styles',
375
+ customStyleID,
376
+ $editor,
377
+ $li,
378
+ $customStyleTemplates,
379
+ $customStylesList;
380
+
381
+ if (typeof content !== 'string' ||
382
+ content.length <= 0)
383
+ {
384
+ return;
385
+ }
386
+
387
+ if (typeof externalData === 'object')
388
+ {
389
+ // Prefix title with 'New'
390
+ if (typeof externalData.localization === 'object' &&
391
+ externalData.localization.newCustomizationPrefix !== undefined &&
392
+ externalData.localization.newCustomizationPrefix.length > 0)
393
+ {
394
+ title = externalData.localization.newCustomizationPrefix + ' - ' + title;
395
+ }
396
+
397
+ // Get custom styles key
398
+ if (typeof externalData.data === 'object' &&
399
+ externalData.data.customStylesKey !== undefined &&
400
+ externalData.data.customStylesKey.length > 0)
401
+ {
402
+ customStylesKey = externalData.data.customStylesKey;
403
+ }
404
+ }
405
+
406
+ customStyleID = customStylesKey + '_' + (self.getHighestCustomStyleID() + 1);
407
+
408
+ $customStyleTemplates = $('.custom-styles-tab .custom-style-templates');
409
+
410
+ // Clone editor template
411
+ $editor = $customStyleTemplates.find('.style-editor').clone();
412
+
413
+ // Add class to editor
414
+ $editor.addClass(customStyleID);
415
+
416
+ // Add value attributes
417
+ $editor.find('.new-custom-style-title').attr('value', title);
418
+ $editor.find('.new-custom-style-content').html(content);
419
+
420
+ // Add name attributes
421
+ $editor.find('.new-custom-style-title').attr('name', customStylesKey + '[' + customStyleID + '][title]');
422
+ $editor.find('.new-custom-style-content').attr('name', customStylesKey + '[' + customStyleID + '][style]');
423
+
424
+ // Add editor to DOM
425
+ $('.custom-styles-tab .style-editors').append($editor);
426
+
427
+ // Fade editor in
428
+ setTimeout(
429
+ function()
430
+ {
431
+ $editor.fadeIn(200);
432
+ },
433
+ 200
434
+ );
435
+
436
+ // Clone custom styles list item (with events)
437
+ $li = $customStyleTemplates.find('.custom-styles-list-item').clone(true);
438
+
439
+ // Prepare
440
+ $li.removeClass('custom-styles-list-item');
441
+ $li.find('.style-title').html(title);
442
+ $li.find('.style-action').addClass(customStyleID);
443
+ $li.find('.style-delete').addClass(customStyleID);
444
+
445
+ $customStylesList = $('.custom-styles-tab .styles-list .custom-styles-list');
446
+
447
+ // Remove 'No custom stylesheets found message'
448
+ $customStylesList.find('.no-custom-styles-found').remove();
449
+
450
+ // Add custom styles list item to DOM
451
+ $customStylesList.append($li);
452
+ });
453
+
454
+ // On click of the edit custom style button
455
+ $('.custom-styles-tab .styles-list .style-action, .custom-styles-tab .custom-style-templates .custom-styles-list-item .style-action').click(function(event)
456
+ {
457
+ // Get custom style key
458
+ var customStyleKey = $(event.currentTarget).attr('class').split(' ')[1];
459
+
460
+ // Return if no style key was found
461
+ if (customStyleKey === undefined)
462
+ {
463
+ return;
464
+ }
465
+
466
+ // Fade editors out
467
+ $('.custom-styles-tab .style-editors .style-editor').each(function(key, editor)
468
+ {
469
+ $(editor).fadeOut(200);
470
+ });
471
+
472
+ // Fade active editor in
473
+ setTimeout(
474
+ function()
475
+ {
476
+ $('.style-editor.' + customStyleKey).fadeIn(200);
477
+ },
478
+ 200
479
+ );
480
+ });
481
+ };
482
+
483
+ /**
484
+ *
485
+ */
486
+ self.activateDeleteButtons = function()
487
+ {
488
+ $('.custom-styles-tab .styles-list .style-delete, .custom-styles-tab .custom-style-templates .custom-styles-list-item .style-delete').click(function(event)
489
+ {
490
+ // Get custom style key
491
+ var $this = $(event.currentTarget),
492
+ customStyleKey = $this.attr('class').split(' ')[1],
493
+ externalData = window.slideshow_jquery_image_gallery_backend_script_generalSettings,
494
+ confirmDeleteMessage = 'Are you sure you want to delete this custom style?';
495
+
496
+ // Return if no style key was found
497
+ if(customStyleKey === undefined)
498
+ {
499
+ return;
500
+ }
501
+
502
+ if (typeof externalData === 'object' &&
503
+ typeof externalData.localization === 'object' &&
504
+ externalData.localization.confirmDeleteMessage !== undefined &&
505
+ externalData.localization.confirmDeleteMessage.length > 0)
506
+ {
507
+ confirmDeleteMessage = externalData.localization.confirmDeleteMessage;
508
+ }
509
+
510
+ // Show confirm deletion message
511
+ if (!confirm(confirmDeleteMessage))
512
+ {
513
+ return;
514
+ }
515
+
516
+ // Delete custom style
517
+ $('.custom-styles-tab .style-editors .style-editor.' + customStyleKey).remove();
518
+
519
+ // Delete item from list
520
+ $this.closest('li').remove();
521
+ });
522
+ };
523
+
524
+ /**
525
+ * Returns highest custom style id in existence
526
+ *
527
+ * @return int highestCustomStyleID
528
+ */
529
+ self.getHighestCustomStyleID = function()
530
+ {
531
+ var highestCustomStyleID = 0;
532
+
533
+ // Loop through style editors
534
+ $('.custom-styles-tab .style-editors .style-editor').each(function(key, editor)
535
+ {
536
+ var customStyleID = parseInt($(editor).attr('class').split('_').pop());
537
+
538
+ // Check if the ID is higher than any previously checked
539
+ if (customStyleID > highestCustomStyleID)
540
+ {
541
+ highestCustomStyleID = customStyleID;
542
+ }
543
+ });
544
+
545
+ // Return
546
+ return parseInt(highestCustomStyleID);
547
+ };
548
+
549
+ $(document).bind('slideshowBackendReady', self.init);
550
+
551
+ return self;
552
+ }();slideshow_jquery_image_gallery_backend_script.editSlideshow.slideManager = function()
553
+ {
554
+ var $ = jQuery,
555
+ self = { };
556
+
557
+ self.isCurrentPage = false;
558
+
559
+ /**
560
+ *
561
+ */
562
+ self.init = function()
563
+ {
564
+ if (slideshow_jquery_image_gallery_backend_script.editSlideshow.isCurrentPage)
565
+ {
566
+ self.activate();
567
+ }
568
+ };
569
+
570
+ /**
571
+ *
572
+ */
573
+ self.activate = function()
574
+ {
575
+ var $popup = $('#slideshow-slide-inserter-popup'),
576
+ $popupBackground = $('#slideshow-slide-inserter-popup-background'),
577
+ $searchBar = $popup.find('#search');
578
+
579
+ // Index first
580
+ self.indexSlidesOrder();
581
+
582
+ // Make list items in the sortables list sortable, exclude elements by using the cancel option
583
+ $('.sortable-slides-list').sortable({
584
+ revert: true,
585
+ placeholder: 'sortable-placeholder',
586
+ forcePlaceholderSize: true,
587
+ stop: function()
588
+ {
589
+ self.indexSlidesOrder();
590
+ },
591
+ cancel: 'input, select, p'
592
+ });
593
+
594
+ // Add the wp-color-picker plugin to the color fields
595
+ $('.wp-color-picker-field').wpColorPicker({ width: 234 });
596
+
597
+ // Make the black background stretch all the way down the document
598
+ $popupBackground.height($(document).outerHeight(true));
599
+
600
+ // Center the popup in the window
601
+ $popup.css({
602
+ 'top': parseInt(($(window).height() / 2) - ($popup.outerHeight(true) / 2), 10),
603
+ 'left': parseInt(($(window).width() / 2) - ($popup.outerWidth(true) / 2), 10)
604
+ });
605
+
606
+ // Focus on search bar
607
+ $searchBar.focus();
608
+
609
+ // Preload attachments
610
+ self.getSearchResults();
611
+
612
+ // Close popup when clicked on cross or background
613
+ $popup.find('#close').click(self.closePopup);
614
+ $popupBackground .click(self.closePopup);
615
+
616
+ // Send ajax request on click of the search button
617
+ $popup.find('#search-submit').click(self.getSearchResults);
618
+
619
+ // Make the 'enter' key do the same as the search button
620
+ $searchBar.keypress(function(event)
621
+ {
622
+ if (event.which == 13)
623
+ {
624
+ event.preventDefault();
625
+
626
+ self.getSearchResults();
627
+ }
628
+ });
629
+
630
+ // Open popup by click on button
631
+ $('#slideshow-insert-image-slide').click(function()
632
+ {
633
+ $popup .css({ display: 'block' });
634
+ $popupBackground.css({ display: 'block' });
635
+ });
636
+
637
+ // Insert text slide into the sortable list when the Insert Text Slide button is clicked
638
+ $('#slideshow-insert-text-slide').click(self.insertTextSlide);
639
+
640
+ // Insert video slide into the sortable list when the Insert Video Slide button is clicked
641
+ $('#slideshow-insert-video-slide').click(self.insertVideoSlide);
642
+
643
+ // Call self.deleteSlide on click
644
+ $('.slideshow-delete-slide').click(function(event)
645
+ {
646
+ self.deleteSlide($(event.currentTarget).closest('li'));
647
+ });
648
+ };
649
+
650
+ /**
651
+ * Deletes slide from DOM
652
+ *
653
+ * @param $slide
654
+ */
655
+ self.deleteSlide = function($slide)
656
+ {
657
+ var confirmMessage = 'Are you sure you want to delete this slide?',
658
+ extraData = window.slideshow_jquery_image_gallery_backend_script_editSlideshow;
659
+
660
+ if (typeof extraData === 'object' &&
661
+ typeof extraData.localization === 'object' &&
662
+ extraData.localization.confirm !== undefined &&
663
+ extraData.localization.confirm.length > 0)
664
+ {
665
+ confirmMessage = extraData.localization.confirm;
666
+ }
667
+
668
+ if(!confirm(confirmMessage))
669
+ {
670
+ return;
671
+ }
672
+
673
+ // Remove slide from DOM
674
+ $slide.remove();
675
+ };
676
+
677
+ /**
678
+ * Loop through list items, setting slide orders
679
+ */
680
+ self.indexSlidesOrder = function()
681
+ {
682
+ // Loop through sortables
683
+ $.each($('.sortable-slides-list').find('li'), function(slideID, slide)
684
+ {
685
+ // Loop through all fields to set their name attributes with the new index
686
+ $.each($(slide).find('input, select, textarea'), function(key, input)
687
+ {
688
+ var $input = $(input),
689
+ name = $input.attr('name');
690
+
691
+ if (name === undefined ||
692
+ name.length <= 0)
693
+ {
694
+ return;
695
+ }
696
+
697
+ name = name.replace(/[\[\]']+/g, ' ').split(' ');
698
+
699
+ // Put name with new order ID back on the page
700
+ $input.attr('name', name[0] + '[' + (slideID + 1) + '][' + name[2] + ']');
701
+ });
702
+ });
703
+ };
704
+
705
+ /**
706
+ * Sends an ajax post request with the search query and print retrieved html to the results table.
707
+ *
708
+ * If offset is set, append data to data that is already there
709
+ *
710
+ * @param offset (optional, defaults to 0)
711
+ */
712
+ self.getSearchResults = function(offset)
713
+ {
714
+ var $popup = $('#slideshow-slide-inserter-popup'),
715
+ $resultsTable = $popup.find('#results'),
716
+ attachmentIDs = [];
717
+
718
+ offset = parseInt(offset);
719
+
720
+ if (isNaN(offset))
721
+ {
722
+ offset = 0;
723
+
724
+ $resultsTable.html('');
725
+ }
726
+
727
+ $.each($resultsTable.find('.result-table-row'), function(key, tr)
728
+ {
729
+ attachmentIDs.push(parseInt($(tr).attr('data-attachment-id')));
730
+ });
731
+
732
+ $.post(
733
+ window.ajaxurl,
734
+ {
735
+ action : 'slideshow_slide_inserter_search_query',
736
+ search : $popup.find('#search').attr('value'),
737
+ offset : offset,
738
+ attachmentIDs: attachmentIDs
739
+ },
740
+ function(response)
741
+ {
742
+ var $loadMoreResultsButton;
743
+
744
+ // Fill table
745
+ $resultsTable.append(response);
746
+
747
+ // When the insert button is clicked, the function to build a slide should be called. Unbind first so old entries don't have the event twice.
748
+ $resultsTable.find('.insert-attachment').unbind('click').click(function(event)
749
+ {
750
+ var $tr = $(event.currentTarget).closest('tr');
751
+
752
+ self.insertImageSlide(
753
+ $tr.attr('data-attachment-id'),
754
+ $tr.find('.title').text(),
755
+ $tr.find('.description').text(),
756
+ $tr.find('.image img').attr('src')
757
+ );
758
+ });
759
+
760
+ // Load more results on click of the 'Load more results' button
761
+ $loadMoreResultsButton = $('.load-more-results');
762
+ if($loadMoreResultsButton)
763
+ {
764
+ $loadMoreResultsButton.click(function(event)
765
+ {
766
+ // Get offset
767
+ var $this = $(event.currentTarget),
768
+ newOffset = $this.attr('data-offset');
769
+
770
+ $this.closest('tr').hide();
771
+
772
+ if (isNaN(parseInt(newOffset)))
773
+ {
774
+ return;
775
+ }
776
+
777
+ self.getSearchResults(newOffset);
778
+ });
779
+ }
780
+ }
781
+ );
782
+ };
783
+
784
+ /**
785
+ * Inserts image slide into the slides list
786
+ *
787
+ * @param id
788
+ * @param title
789
+ * @param description
790
+ * @param src
791
+ */
792
+ self.insertImageSlide = function(id, title, description, src)
793
+ {
794
+ // Find and clone the image slide template
795
+ var $imageSlide = $('.image-slide-template').find('li').clone();
796
+
797
+ // Fill slide with data
798
+ $imageSlide.find('.attachment').attr('src', src);
799
+ $imageSlide.find('.attachment').attr('title', title);
800
+ $imageSlide.find('.attachment').attr('alt', title);
801
+ $imageSlide.find('.title').attr('value', title);
802
+ $imageSlide.find('.description').html(description);
803
+ $imageSlide.find('.postId').attr('value', id);
804
+
805
+ // Set names to be saved to the database
806
+ $imageSlide.find('.title').attr('name', 'slides[0][title]');
807
+ $imageSlide.find('.description').attr('name', 'slides[0][description]');
808
+ $imageSlide.find('.url').attr('name', 'slides[0][url]');
809
+ $imageSlide.find('.urlTarget').attr('name', 'slides[0][urlTarget]');
810
+ $imageSlide.find('.type').attr('name', 'slides[0][type]');
811
+ $imageSlide.find('.postId').attr('name', 'slides[0][postId]');
812
+
813
+ // Register delete link
814
+ $imageSlide.find('.slideshow-delete-slide').click(function(event)
815
+ {
816
+ self.deleteSlide($(event.currentTarget).closest('li'));
817
+ });
818
+
819
+ // Put slide in the sortables list.
820
+ $('.sortable-slides-list').prepend($imageSlide);
821
+
822
+ // Reindex
823
+ self.indexSlidesOrder();
824
+ };
825
+
826
+ /**
827
+ * Inserts text slide into the slides list
828
+ */
829
+ self.insertTextSlide = function()
830
+ {
831
+ // Find and clone the text slide template
832
+ var $textSlide = $('.text-slide-template').find('li').clone();
833
+
834
+ // Set names to be saved to the database
835
+ $textSlide.find('.title').attr('name', 'slides[0][title]');
836
+ $textSlide.find('.description').attr('name', 'slides[0][description]');
837
+ $textSlide.find('.textColor').attr('name', 'slides[0][textColor]');
838
+ $textSlide.find('.color').attr('name', 'slides[0][color]');
839
+ $textSlide.find('.url').attr('name', 'slides[0][url]');
840
+ $textSlide.find('.urlTarget').attr('name', 'slides[0][urlTarget]');
841
+ $textSlide.find('.type').attr('name', 'slides[0][type]');
842
+
843
+ // Register delete link
844
+ $textSlide.find('.slideshow-delete-slide').click(function(event)
845
+ {
846
+ self.deleteSlide($(event.currentTarget).closest('li'));
847
+ });
848
+
849
+ // Add color picker
850
+ $textSlide.find('.color, .textColor').wpColorPicker();
851
+
852
+ // Put slide in the sortables list.
853
+ $('.sortable-slides-list').prepend($textSlide);
854
+
855
+ // Reindex slide orders
856
+ self.indexSlidesOrder();
857
+ };
858
+
859
+ /**
860
+ * Inserts video slide into the slides list
861
+ */
862
+ self.insertVideoSlide = function()
863
+ {
864
+ // Find and clone the video slide template
865
+ var $videoSlide = $('.video-slide-template').find('li').clone();
866
+
867
+ // Set names to be saved to the database
868
+ $videoSlide.find('.videoId').attr('name', 'slides[0][videoId]');
869
+ $videoSlide.find('.showRelatedVideos').attr('name', 'slides[0][showRelatedVideos]');
870
+ $videoSlide.find('.type').attr('name', 'slides[0][type]');
871
+
872
+ // Register delete link
873
+ $videoSlide.find('.slideshow-delete-slide').click(function(event)
874
+ {
875
+ self.deleteSlide($(event.currentTarget).closest('li'));
876
+ });
877
+
878
+ // Put slide in the sortables list.
879
+ $('.sortable-slides-list').prepend($videoSlide);
880
+
881
+ // Reindex slide orders
882
+ self.indexSlidesOrder();
883
+ };
884
+
885
+ /**
886
+ * Closes popup
887
+ */
888
+ self.closePopup = function()
889
+ {
890
+ $('#slideshow-slide-inserter-popup, #slideshow-slide-inserter-popup-background').css({ display: 'none' });
891
+ };
892
+
893
+ $(document).bind('slideshowBackendReady', self.init);
894
+
895
+ return self;
896
+ }();
js/min/all.frontend.min.js ADDED
@@ -0,0 +1 @@
 
1
+ function onYouTubeIframeAPIReady(){slideshow_jquery_image_gallery_script.youTubeAPIReady=!0}slideshow_jquery_image_gallery_script=function(){var t=jQuery,i={};return i.registeredSlideshows=[],i.youTubeAPIReady=!1,i.loadYouTubeAPICalled=!1,i.stylesheetURLChecked=!1,i.activateSlideshows=function(){t.each(jQuery(".slideshow_container"),function(e,s){var o=t(s),n=o.data("sessionId");isNaN(parseInt(n,10))&&(n=o.attr("data-session-id")),t.inArray(n,i.registeredSlideshows)<0&&new i.Slideshow(o)})},i.loadYouTubeAPI=function(){if(!(i.loadYouTubeAPICalled||(i.loadYouTubeAPICalled=!0,t(".slideshow_slide_video").length<=0))){var e=document.createElement("script"),s=document.getElementsByTagName("script")[0];e.src="//www.youtube.com/iframe_api",s.parentNode.insertBefore(e,s)}},i.checkStylesheetURL=function(){if(!i.stylesheetURLChecked){i.stylesheetURLChecked=!0;var e=t('[id*="slideshow-jquery-image-gallery-ajax-stylesheet_"]');e.length<=0||t.each(e,function(i,e){var s,o,n,h=t(e),a=t(e).attr("href");void 0!==a&&""!==a&&(s=h.attr("id").split("_"),o=s.splice(1,s.length-1).join("_").slice(0,-4),n=a.split("?"),(void 0===n[1]||""===n[1]||n[1].toLowerCase().indexOf("style=")<0)&&(n[1]="action=slideshow_jquery_image_gallery_load_stylesheet&style="+o+"&ver="+Math.round((new Date).getTime()/1e3),a=n.join("?"),h.attr("href",a)))})}},t(document).ready(function(){i.loadYouTubeAPI(),i.checkStylesheetURL(),i.activateSlideshows()}),t(window).load(function(){i.loadYouTubeAPI(),i.checkStylesheetURL(),i.activateSlideshows()}),i}();!function(){var t=jQuery,i=slideshow_jquery_image_gallery_script;i.Slideshow=function(e){if(this.$container=e,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],t.each(this.settings,t.proxy(function(t,i){"true"==i?this.settings[t]=!0:"false"==i&&(this.settings[t]=!1)},this)),this.$parentElement=this.$container.parent(),this.viewData=[],this.viewIDs=[],this.navigationActive=!0,this.currentViewID=void 0,this.currentWidth=0,this.visibleViews=[],this.videoPlayers=[],this.interval=!1,this.mouseEnterTimer=!1,this.invisibilityTimer=!1,this.descriptionTimer=!1,this.randomNextHistoryViewIDs=[],this.randomPreviousHistoryViewIDs=[],this.randomAvailableViewIDs=[],i.registeredSlideshows.push(this.ID),t.each(this.$views,t.proxy(function(t){this.viewIDs.push(t)},this)),this.currentViewID=this.getNextViewID(),this.visibleViews=[this.currentViewID],this.recalculate(!1);var s=!0;t.each(this.$views,t.proxy(function(i,e){var n=t(e);this.recalculateView(i),i!=this.visibleViews[0]?n.css("top",this.$container.outerHeight(!0)):n.addClass("slideshow_currentView"),this.viewData[i]=[],t.each(n.find(".slideshow_slide"),t.proxy(function(e,n){var o=t(n);if(this.viewData[i][e]={imageDimension:""},this.settings.waitUntilLoaded&&o.hasClass("slideshow_slide_image")){var h=o.find("img");h.length>0?h.each(t.proxy(function(n,o){o.complete?this.viewData[i][e].loaded=1:(i===this.currentViewID&&(s=!1),this.viewData[i][e].loaded=0,h.load(t.proxy(function(){this.viewData[i][e].loaded=1,i===this.currentViewID&&this.isViewLoaded(i)&&this.firstStart()},this)).bind("error",t.proxy(function(){this.viewData[i][e].loaded=2},this)))},this)):this.viewData[i][e].loaded=-1}else this.viewData[i][e].loaded=-1},this))},this)),t(window).load(t.proxy(function(){this.recalculateVisibleViews()},this)),parseFloat(this.settings.intervalSpeed)<parseFloat(this.settings.slideSpeed)+.1&&(this.settings.intervalSpeed=parseFloat(this.settings.slideSpeed)+.1),this.activateDescriptions(),this.activateControlPanel(),this.activateNavigationButtons(),this.activatePagination(),this.activatePauseOnHover(),(!this.settings.waitUntilLoaded||s)&&this.firstStart()}}}();!function(){var t=jQuery,i=slideshow_jquery_image_gallery_script;i.Slideshow.prototype.firstStart=function(){this.$loadingIcon.length>0&&this.$loadingIcon.remove(),this.$content.show(),this.settings.enableResponsiveness&&t(window).resize(t.proxy(function(){this.recalculate(!0)},this)),this.start()},i.Slideshow.prototype.start=function(){this.settings.play&&!this.interval&&(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.start()):(s.stop(),setTimeout(t.proxy(function(){i(e,s)},s),100))},this),1e3*this.settings.intervalSpeed))},i.Slideshow.prototype.stop=function(){clearInterval(this.interval),this.interval=!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 t.each(this.viewData[i],t.proxy(function(t,i){0==i.loaded&&(e=!1)},this)),e},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(){return isNaN(parseInt(this.currentViewID,10))||this.randomPreviousHistoryViewIDs.push(this.currentViewID),this.randomPreviousHistoryViewIDs.length>2*this.viewIDs.length&&this.randomPreviousHistoryViewIDs.shift(),this.randomNextHistoryViewIDs.length>0?this.randomNextHistoryViewIDs.pop():((void 0===this.randomAvailableViewIDs||this.randomAvailableViewIDs.length<=0)&&(this.randomAvailableViewIDs=t.extend(!0,[],this.viewIDs),this.randomAvailableViewIDs.splice(t.inArray(this.currentViewID,this.randomAvailableViewIDs))),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}}();!function(){var t=jQuery,i=slideshow_jquery_image_gallery_script;i.Slideshow.prototype.animateTo=function(i,e){if(!(this.isVideoPlaying()||0>i||i>=this.$views.length||i==this.currentViewID)){this.navigationActive=!1,(isNaN(parseInt(e,10))||0==e)&&(e=i<this.currentViewID?-1:1),this.visibleViews=[this.currentViewID,i];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>e&&(s=o[s]);var h=t(this.$views[this.currentViewID]),a=t(this.$views[i]);switch(h.stop(!0,!0),a.stop(!0,!0),a.addClass("slideshow_nextView"),this.recalculateVisibleViews(),this.currentViewID=i,this.$container.trigger("slideshowAnimate"),s){case"slide":a.css({top:0,left:this.$content.width()}),h.animate({left:-h.outerWidth(!0)},1e3*this.settings.slideSpeed),a.animate({left:0},1e3*this.settings.slideSpeed),setTimeout(t.proxy(function(){h.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()}),h.animate({left:h.outerWidth(!0)},1e3*this.settings.slideSpeed),a.animate({left:0},1e3*this.settings.slideSpeed),setTimeout(t.proxy(function(){h.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}),h.animate({top:-h.outerHeight(!0)},1e3*this.settings.slideSpeed),a.animate({top:0},1e3*this.settings.slideSpeed),setTimeout(t.proxy(function(){h.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}),h.animate({top:h.outerHeight(!0)},1e3*this.settings.slideSpeed),a.animate({top:0},1e3*this.settings.slideSpeed),setTimeout(t.proxy(function(){h.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"}),h.fadeOut(1e3*this.settings.slideSpeed/2),setTimeout(t.proxy(function(){a.fadeIn(1e3*this.settings.slideSpeed/2),h.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"}),h.css({"z-index":1}),a.stop(!0,!0).fadeIn(1e3*this.settings.slideSpeed),h.stop(!0,!0).fadeOut(1e3*this.settings.slideSpeed),setTimeout(t.proxy(function(){a.stop(!0,!0).css({"z-index":0}),h.stop(!0,!0).css({top:this.$container.outerHeight(!0),display:"block","z-index":0})},this),1e3*this.settings.slideSpeed)}setTimeout(t.proxy(function(){h.removeClass("slideshow_currentView"),a.removeClass("slideshow_nextView"),a.addClass("slideshow_currentView"),this.visibleViews=[i],this.navigationActive=!0},this),1e3*this.settings.slideSpeed)}}}();!function(){var t=jQuery,i=slideshow_jquery_image_gallery_script;i.Slideshow.prototype.recalculate=function(i){if(!this.$container.is(":visible"))return this.invisibilityTimer=setInterval(t.proxy(function(){this.$container.is(":visible")&&(this.recalculate(i),clearInterval(this.invisibilityTimer),this.invisibilityTimer=!1)},this),500),void 0;for(var e=this.$parentElement,s=0;e.width()<=0&&(e=e.parent(),!(s>50));s++);if(this.currentWidth!=e.width()){this.currentWidth=e.width();var n=e.width()-(this.$container.outerWidth()-this.$container.width());if(parseInt(this.settings.maxWidth,10)>0&&parseInt(this.settings.maxWidth,10)<n&&(n=parseInt(this.settings.maxWidth,10)),this.$container.css("width",Math.floor(n)),this.$content.css("width",Math.floor(n)-(this.$content.outerWidth(!0)-this.$content.width())),this.settings.preserveSlideshowDimensions){var o=n*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||void 0==i)&&this.recalculateVisibleViews()}},i.Slideshow.prototype.recalculateVisibleViews=function(){t.each(this.visibleViews,t.proxy(function(t,i){this.recalculateView(i)},this))},i.Slideshow.prototype.recalculateView=function(e){var s=t(this.$views[e]);if(this.$content.width()!=s.outerWidth(!0)){var n=s.find(".slideshow_slide");if(!(n.length<=0)){var o=this.$content.width()-(s.outerWidth(!0)-s.width()),h=this.$content.height()-(s.outerHeight(!0)-s.height()),a=Math.floor(o/n.length),r=h,l=o%n.length,d=0;t(n[0]).css("margin-left",0),t(n[n.length-1]).css("margin-right",0),t.each(n,t.proxy(function(s,o){var h=t(o),c=h.outerWidth(!0)-h.width(),u=h.outerHeight(!0)-h.height();if(s==n.length-1?h.width(a-c+l):h.width(a-c),h.height(r-u),h.hasClass("slideshow_slide_text")){var p=h.find(".slideshow_background_anchor");if(p.length<=0)return;var w=h.width()-(p.outerWidth(!0)-p.width()),g=h.height()-(p.outerHeight(!0)-p.height());p.css({width:w,height:g})}else if(h.hasClass("slideshow_slide_image")){var v=h.find("img");if(v.length<=0)return;var f=h.width()-(v.outerWidth(!0)-v.width()),y=h.height()-(v.outerHeight(!0)-v.height());if(this.settings.stretchImages)v.css({width:f,height:y}),v.attr({width:f,height:y});else if(v.width()>0&&v.height()>0){var m=this.viewData[e][s].imageDimension;isNaN(parseFloat(m))&&(m=this.viewData[e][s].imageDimension=v.outerWidth(!0)/v.outerHeight(!0));var I=h.width()/h.height();m>=I?(v.css({margin:"0px",width:f,height:Math.floor(f/m)}),v.attr({width:f,height:Math.floor(f/m)})):I>m&&(v.css({"margin-left":"auto","margin-right":"auto",display:"block",width:Math.floor(y*m),height:y}),v.attr({width:Math.floor(y*m),height:y}))}}else if(h.hasClass("slideshow_slide_video")){var $=h.find("iframe");if($.length>0)$.attr({width:h.width(),height:h.height()});else var V=setInterval(t.proxy(function(){if(i.youTubeAPIReady){clearInterval(V);var e=h.find(".slideshow_slide_video_id");e.attr("id","slideshow_slide_video_"+Math.floor(1e6*Math.random())+"_"+e.text());var s=e.attr("data-show-related-videos"),n=new YT.Player(e.attr("id"),{width:h.width(),height:h.height(),videoId:e.text(),playerVars:{wmode:"opaque",rel:s},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:n,state:-1}}},this),500)}d+=h.outerWidth(!0)},this)),s.css({width:o,height:h})}}}}();!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"),t.proxy(function(i,e){var s=t(e);s.show(),this.settings.hideDescription?s.css({position:"absolute",top:this.$container.outerHeight(!0)}):s.css({position:"absolute",bottom:0})},this)),this.settings.hideDescription&&(this.$container.bind("slideshowResize",t.proxy(function(){t.each(this.$container.find(".slideshow_description"),t.proxy(function(i,e){t(e).css("top",this.$container.outerHeight(!0))},this))},this)),this.$container.bind("slideshowAnimate",t.proxy(function(){void 0!=this.visibleViews[1]&&t.each(t(this.$views[this.visibleViews[1]]).find(".slideshow_description"),t.proxy(function(i,e){t(e).css("top",this.$container.outerHeight(!0))},this))},this)),this.$slides.mouseenter(t.proxy(function(i){var e=t(i.currentTarget).find(".slideshow_description");this.descriptionTimer=setTimeout(t.proxy(function(){this.descriptionTimer="",e.stop(!0,!1).animate({top:this.$container.outerHeight(!0)-e.outerHeight(!0)},parseInt(1e3*this.settings.descriptionSpeed,10))},this),100)},this)),this.$slides.mouseleave(t.proxy(function(i){this.descriptionTimer===!1&&(clearInterval(this.descriptionTimer),this.descriptionTimer=!1),t(i.currentTarget).find(".slideshow_description").stop(!0,!1).animate({top:this.$container.outerHeight(!0)},parseInt(1e3*this.settings.descriptionSpeed,10))},this))))},i.Slideshow.prototype.activateNavigationButtons=function(){this.settings.controllable&&(this.$nextButton.click(t.proxy(function(){this.navigationActive&&(this.pauseAllVideos(),this.stop(),this.animateTo(this.getNextViewID(),1),this.start())},this)),this.$previousButton.click(t.proxy(function(){this.navigationActive&&(this.pauseAllVideos(),this.stop(),this.animateTo(this.getPreviousViewID(),-1),this.start())},this)),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.settings.play?this.$togglePlayButton.attr("class","slideshow_pause"):this.$togglePlayButton.attr("class","slideshow_play"),this.$togglePlayButton.click(t.proxy(function(i){this.settings.play?(this.settings.play=!1,t(i.currentTarget).attr("class","slideshow_play"),this.stop()):(this.settings.play=!0,t(i.currentTarget).attr("class","slideshow_pause"),this.start())},this)),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 e="";t==this.currentViewID&&(e="slideshow_currentView"),i.append('<li class="slideshow_transparent '+e+'"><span style="display: none;">'+t+"</span></li>")},this)),this.$pagination.find("li").click(t.proxy(function(i){if(this.navigationActive){var e=t(i.currentTarget).find("span").text();isNaN(parseInt(e,10))||(this.pauseAllVideos(),this.stop(),this.animateTo(parseInt(e,10),0),this.start())}},this)),this.$container.bind("slideshowAnimate",t.proxy(function(){var i=this.$pagination.find("li");i.each(t.proxy(function(i,e){t(e).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.mouseEnterTimer),this.mouseEnterTimer=setTimeout(t.proxy(function(){this.stop()},this),500)},this)),this.$container.mouseleave(t.proxy(function(){clearTimeout(this.mouseEnterTimer),this.interval===!1&&this.start()},this)))}}();
languages/slideshow-plugin-cs_CZ.mo CHANGED
Binary file
languages/slideshow-plugin-cs_CZ.po CHANGED
@@ -1,793 +1,827 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Slideshow Plugin\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-03-25 19:55+0100\n"
6
- "PO-Revision-Date: 2013-03-25 19:56+0100\n"
7
- "Last-Translator: \n"
8
- "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
- "Language: cz_CZ\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: _e;__\n"
14
- "X-Poedit-Basepath: ../\n"
15
- "X-Generator: Poedit 1.5.5\n"
16
- "X-Poedit-SourceCharset: UTF-8\n"
17
- "X-Poedit-SearchPath-0: .\n"
18
-
19
- #: classes/SlideshowPluginGeneralSettings.php:64
20
- #: classes/SlideshowPluginGeneralSettings.php:65
21
- msgid "General Settings"
22
- msgstr "Obecné nastavení"
23
-
24
- #: classes/SlideshowPluginGeneralSettings.php:146
25
- msgid "New"
26
- msgstr "Nový"
27
-
28
- #: classes/SlideshowPluginGeneralSettings.php:147
29
- msgid "Are you sure you want to delete this custom style?"
30
- msgstr "Víte jistě, že chcete tuto přizpůsobenou šablonu stylů smazat?"
31
-
32
- #: classes/SlideshowPluginGeneralSettings.php:166
33
- #: classes/SlideshowPluginInstaller.php:441
34
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:6
35
- msgid "Light"
36
- msgstr "Světlý"
37
-
38
- #: classes/SlideshowPluginGeneralSettings.php:167
39
- #: classes/SlideshowPluginInstaller.php:441
40
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:7
41
- msgid "Dark"
42
- msgstr "Tmavý"
43
-
44
- #: classes/SlideshowPluginGeneralSettings.php:271
45
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:49
46
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:131
47
- msgid "Untitled"
48
- msgstr "Beze jména"
49
-
50
- #: classes/SlideshowPluginInstaller.php:438
51
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:378
52
- msgid "Yes"
53
- msgstr "Ano"
54
-
55
- #: classes/SlideshowPluginInstaller.php:439
56
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:379
57
- msgid "No"
58
- msgstr "Ne"
59
-
60
- #: classes/SlideshowPluginInstaller.php:441
61
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:477
62
- msgid "The style used for this slideshow"
63
- msgstr "Šablona stylů použitá pro tuto prezentaci"
64
-
65
- #: classes/SlideshowPluginInstaller.php:441
66
- msgid "Custom"
67
- msgstr "Přizpůsobit"
68
-
69
- #: classes/SlideshowPluginInstaller.php:442
70
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:114
71
- msgid "Custom style editor"
72
- msgstr "Přizpůsobení šablony stylů"
73
-
74
- #: classes/SlideshowPluginInstaller.php:443
75
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
76
- msgid "Animation used for transition between slides"
77
- msgstr "Animace použitá pro přechod mezi listy"
78
-
79
- #: classes/SlideshowPluginInstaller.php:443
80
- msgid "Slide"
81
- msgstr "List"
82
-
83
- #: classes/SlideshowPluginInstaller.php:443
84
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
85
- msgid "Fade"
86
- msgstr "Prolnout"
87
-
88
- #: classes/SlideshowPluginInstaller.php:443
89
- #: classes/SlideshowPluginInstaller.php:444
90
- #: classes/SlideshowPluginInstaller.php:445
91
- #: classes/SlideshowPluginInstaller.php:446
92
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
93
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:420
94
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
95
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:422
96
- msgid "Animation"
97
- msgstr "Nastavení animace"
98
-
99
- #: classes/SlideshowPluginInstaller.php:444
100
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:420
101
- msgid "Number of seconds the slide takes to slide in"
102
- msgstr "Kolik sekund zabere listu, než se přisune"
103
-
104
- #: classes/SlideshowPluginInstaller.php:445
105
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
106
- msgid "Number of seconds the description takes to slide in"
107
- msgstr "Kolik sekund zabere popisu, než se přisune"
108
-
109
- #: classes/SlideshowPluginInstaller.php:446
110
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:422
111
- msgid "Seconds between changing slides"
112
- msgstr "Kolik sekund mezi tím, než se vymění listy"
113
-
114
- #: classes/SlideshowPluginInstaller.php:447
115
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
116
- msgid "Number of slides to fit into one slide"
117
- msgstr "Počet listů, kolik se jich vejde do jednoho listu"
118
-
119
- #: classes/SlideshowPluginInstaller.php:447
120
- #: classes/SlideshowPluginInstaller.php:448
121
- #: classes/SlideshowPluginInstaller.php:449
122
- #: classes/SlideshowPluginInstaller.php:450
123
- #: classes/SlideshowPluginInstaller.php:451
124
- #: classes/SlideshowPluginInstaller.php:452
125
- #: classes/SlideshowPluginInstaller.php:453
126
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
127
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:424
128
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
129
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:426
130
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:427
131
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
132
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:429
133
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:430
134
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:431
135
- msgid "Display"
136
- msgstr "Nastavení zobrazení"
137
-
138
- #: classes/SlideshowPluginInstaller.php:448
139
- msgid "Width of the slideshow, set to parent&#39;s width on 0"
140
- msgstr ""
141
- "Šířka zobrazení, nastaveno na šířku rodičovského objektu, pokud je zadáno 0"
142
-
143
- #: classes/SlideshowPluginInstaller.php:449
144
- msgid "Height of the slideshow"
145
- msgstr "Výška prezentace"
146
-
147
- #: classes/SlideshowPluginInstaller.php:450
148
- msgid "Height of the description boxes"
149
- msgstr "Výška bloku s popisem"
150
-
151
- #: classes/SlideshowPluginInstaller.php:451
152
- msgid "Fit image into slide (stretching it)"
153
- msgstr "Přizpůsobit obrázek do listů (roztáhne se)"
154
-
155
- #: classes/SlideshowPluginInstaller.php:452
156
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:430
157
- msgid "Show title and description"
158
- msgstr "Zobrazit název a popis"
159
-
160
- #: classes/SlideshowPluginInstaller.php:453
161
- msgid "Hide description box, it will pop up when a mouse hovers over the slide"
162
- msgstr "Skrýt blok s popisem, vyskočí, pokud myš najede na list"
163
-
164
- #: classes/SlideshowPluginInstaller.php:454
165
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:432
166
- msgid "Automatically slide to the next slide"
167
- msgstr "Automaticky posouvat na další list"
168
-
169
- #: classes/SlideshowPluginInstaller.php:454
170
- #: classes/SlideshowPluginInstaller.php:455
171
- #: classes/SlideshowPluginInstaller.php:456
172
- #: classes/SlideshowPluginInstaller.php:457
173
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:432
174
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:433
175
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:434
176
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:435
177
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:436
178
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:437
179
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:438
180
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:439
181
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:440
182
- msgid "Control"
183
- msgstr "Nastavení ovládání"
184
-
185
- #: classes/SlideshowPluginInstaller.php:455
186
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:433
187
- msgid "Return to the beginning of the slideshow after last slide"
188
- msgstr "Návrat na začátek prezentace po posledním listu"
189
-
190
- #: classes/SlideshowPluginInstaller.php:456
191
- msgid "Activate buttons (so the user can scroll through the slides)"
192
- msgstr "Aktivovat tlačítka (takže uživatel může procházet mezi listy)"
193
-
194
- #: classes/SlideshowPluginInstaller.php:457
195
- msgid "Show control panel (play and pause button)"
196
- msgstr "Zobrazit ovládací panel (tlačítka přehrát a zastavit)"
197
-
198
- #: classes/SlideshowPluginPostType.php:38
199
- msgid "Slideshows"
200
- msgstr "Prezentace"
201
-
202
- #: classes/SlideshowPluginPostType.php:39
203
- #: views/SlideshowPluginWidget/form.php:7
204
- msgid "Slideshow"
205
- msgstr "Prezentace"
206
-
207
- #: classes/SlideshowPluginPostType.php:40
208
- msgid "Add New Slideshow"
209
- msgstr "Přidat novou prezentaci"
210
-
211
- #: classes/SlideshowPluginPostType.php:41
212
- msgid "Edit slideshow"
213
- msgstr "Upravit prezentaci"
214
-
215
- #: classes/SlideshowPluginPostType.php:42
216
- msgid "New slideshow"
217
- msgstr "Nová prezentace"
218
-
219
- #: classes/SlideshowPluginPostType.php:43
220
- msgid "View slideshow"
221
- msgstr "Zobrazit prezentaci"
222
-
223
- #: classes/SlideshowPluginPostType.php:44
224
- msgid "Search slideshows"
225
- msgstr "Hledat prezentaci"
226
-
227
- #: classes/SlideshowPluginPostType.php:45
228
- #: classes/SlideshowPluginPostType.php:46
229
- msgid "No slideshows found"
230
- msgstr "Žádná prezentace nenalezena"
231
-
232
- #: classes/SlideshowPluginPostType.php:155
233
- msgid "Information"
234
- msgstr "Informace"
235
-
236
- #: classes/SlideshowPluginPostType.php:164
237
- msgid "Slides List"
238
- msgstr "Seznam listů"
239
-
240
- #: classes/SlideshowPluginPostType.php:173
241
- msgid "Slideshow Style"
242
- msgstr "Šablona stylu prezentace"
243
-
244
- #: classes/SlideshowPluginPostType.php:182
245
- msgid "Slideshow Settings"
246
- msgstr "Nastavení prezentace"
247
-
248
- #: classes/SlideshowPluginPostType.php:232
249
- #: classes/SlideshowPluginSlideInserter.php:178
250
- #: views/SlideshowPluginPostType/slides.php:2
251
- msgid "Insert"
252
- msgstr "Vložit"
253
-
254
- #: classes/SlideshowPluginPostType.php:240
255
- #: views/SlideshowPluginPostType/slides.php:9
256
- msgid "Add slides to this slideshow by using one of the buttons above."
257
- msgstr ""
258
- "Vloží listy do této prezentace použitím jednoho z výše zobrazených tlačítek."
259
-
260
- #: classes/SlideshowPluginShortcode.php:132
261
- msgid "No slideshow selected."
262
- msgstr "Žádná prezentace nebyla vybrána."
263
-
264
- #: classes/SlideshowPluginSlideInserter.php:151
265
- msgid "More results loaded"
266
- msgstr ""
267
-
268
- #: classes/SlideshowPluginSlideInserter.php:187
269
- msgid "Load more results"
270
- msgstr "Načíst více výsledků"
271
-
272
- #: classes/SlideshowPluginSlideInserter.php:196
273
- msgid "No images were found, click here to upload some."
274
- msgstr "Žádné obrázky nebyly nalezeny, hlikněte sem, abyste nějaké nahráli."
275
-
276
- #: classes/SlideshowPluginSlideInserter.php:273
277
- msgid "Are you sure you want to delete this slide?"
278
- msgstr "Víte jistě, že chcete tento list smazat?"
279
-
280
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
281
- msgid "Slide Left"
282
- msgstr "Posunout doleva"
283
-
284
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
285
- msgid "Slide Right"
286
- msgstr "Posunout doprava"
287
-
288
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
289
- msgid "Slide Up"
290
- msgstr "Posunout nahoru"
291
-
292
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
293
- msgid "Slide Down"
294
- msgstr "Posunout dolů"
295
-
296
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
297
- msgid "Direct Fade"
298
- msgstr "Přímé prolnutí"
299
-
300
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
301
- msgid "Random Animation"
302
- msgstr "Náhodná animace"
303
-
304
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:424
305
- msgid "Maximum width. When maximum width is 0, maximum width is ignored"
306
- msgstr "Maximální šířka. Pokud je zadáno 0, je maximální šířka ignorována"
307
-
308
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
309
- msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
310
- msgstr "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
311
-
312
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
313
- msgid "More info"
314
- msgstr "Více informací"
315
-
316
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
317
- #, php-format
318
- msgid ""
319
- "Proportional relationship%s between slideshow's width and height (width:"
320
- "height)"
321
- msgstr "Proporcionální vazba%s mezi šířkou a výškou prezentace (šířka:výška)"
322
-
323
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:426
324
- msgid "Slideshow's height"
325
- msgstr "Výška prezentace"
326
-
327
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:427
328
- msgid "Fit image into slide (Stretch image)"
329
- msgstr "Přizpůsobit obrázek do listu (obrázek se roztáhne)"
330
-
331
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
332
- msgid "Shrink slideshow's height when width shrinks"
333
- msgstr ""
334
- "Umožnit přizpůsobení (Šířka prezentace se smrskne, pokud se smrskne šířka "
335
- "stránky)"
336
-
337
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:429
338
- msgid ""
339
- "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
340
- msgstr ""
341
- "Umožnit přizpůsobení (Šířka prezentace se smrskne, pokud se smrskne šířka "
342
- "stránky"
343
-
344
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:431
345
- msgid "Hide description box, pop up when mouse hovers over"
346
- msgstr "Skrýt blok s popisem, objeví se, když přes ni přejde myš"
347
-
348
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:434
349
- msgid "Pause slideshow when mouse hovers over"
350
- msgstr "Zastavit prezentaci, když přes ni přeběhne myš"
351
-
352
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:435
353
- msgid "Activate navigation buttons"
354
- msgstr "Použít tlačítka navigace"
355
-
356
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:436
357
- msgid "Hide navigation buttons, show when mouse hovers over"
358
- msgstr "Skrýt tlačítka navigace, objeví se, když přes ně přeběhne myš"
359
-
360
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:437
361
- msgid "Activate pagination"
362
- msgstr "Použít stránkování"
363
-
364
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:438
365
- msgid "Hide pagination, show when mouse hovers over"
366
- msgstr "Skrýt stránkování, objeví se, když přes něj přeběhne myš"
367
-
368
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:439
369
- msgid "Activate control panel (play and pause button)"
370
- msgstr "Použít ovládací panel (tlačítka přehrát a zastavit)"
371
-
372
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:440
373
- msgid "Hide control panel, show when mouse hovers over"
374
- msgstr "Skrát ovládací panel, objeví se, když jej přejde myš"
375
-
376
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:441
377
- msgid "Randomize slides"
378
- msgstr "Náhodné pořadí listů"
379
-
380
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:441
381
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:442
382
- msgid "Miscellaneous"
383
- msgstr "Další nastavení"
384
-
385
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:442
386
- #, php-format
387
- msgid "Avoid content filter (disable if '%s' is shown)"
388
- msgstr "Vyhnout se filtru obsahu (vypne se, pokud se ukáže '%s' )"
389
-
390
- #: classes/SlideshowPluginWidget.php:23
391
- msgid "Enables you to show your slideshows in the widget area of your website."
392
- msgstr "Dovolí Vám zobrazit Vaši prezentaci v oblasti widgetů na Vaší stránce"
393
-
394
- #: classes/SlideshowPluginWidget.php:29
395
- msgid "Slideshow Widget"
396
- msgstr "Widget prezentace"
397
-
398
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:38
399
- msgid "Default stylesheets"
400
- msgstr "Defaultní šablony stylů"
401
-
402
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:52
403
- msgid "Create a new custom style from this style"
404
- msgstr "Vytvořit z této šablony novou přizpůsobenou šablonu stylů"
405
-
406
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:54
407
- msgid "Customize"
408
- msgstr "Přizpůsobit"
409
-
410
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:68
411
- msgid "Custom stylesheets"
412
- msgstr "Přizpůsobené šablony stylů"
413
-
414
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:81
415
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:160
416
- msgid "Edit this style"
417
- msgstr "Upravit tuto šablonu stylů"
418
-
419
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:83
420
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:162
421
- #: views/SlideshowPluginPostType/slides.php:137
422
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:46
423
- msgid "Edit"
424
- msgstr "Upravit"
425
-
426
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:90
427
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:169
428
- msgid "Delete this style"
429
- msgstr "Smazat tuto šablonu stylů"
430
-
431
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:92
432
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:171
433
- msgid "Delete"
434
- msgstr "Smazat"
435
-
436
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:102
437
- msgid "Click 'Customize' to create a new custom stylesheet."
438
- msgstr "Kliknutím na 'Přizpůsobit' vytvoříte novou upravenou šablonu stylů"
439
-
440
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:118
441
- msgid "Select a stylesheet from the left to start customizing it."
442
- msgstr "Klikněte na některou šablonu stylů vlevo, abyste ji upravili."
443
-
444
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:127
445
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:180
446
- #: views/SlideshowPluginPostType/slides.php:58
447
- #: views/SlideshowPluginPostType/slides.php:143
448
- #: views/SlideshowPluginPostType/slides.php:195
449
- #: views/SlideshowPluginPostType/slides.php:263
450
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:54
451
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:12
452
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:90
453
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:29
454
- #: views/SlideshowPluginWidget/form.php:2
455
- msgid "Title"
456
- msgstr "Název"
457
-
458
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:136
459
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:188
460
- msgid "Style"
461
- msgstr "Šablona stylů"
462
-
463
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:11
464
- msgid "Note"
465
- msgstr "Poznámka"
466
-
467
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:18
468
- #, php-format
469
- msgid ""
470
- "The settings set on this page apply only to newly created slideshows and "
471
- "therefore do not alter any existing ones. To adapt a slideshow's settings, "
472
- "%sclick here.%s"
473
- msgstr ""
474
- "Nastavení na této stránce bude platné jen pro nově vytvořené prezentace, "
475
- "takže neovlivní ty, které již existují. Abyste upravili nastavení "
476
- "prezentace, %sklikněte sem.%s"
477
-
478
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:30
479
- #: views/SlideshowPluginGeneralSettings/general-settings.php:16
480
- msgid "Default Slideshow Settings"
481
- msgstr "Defaultní nastavení Prezentace"
482
-
483
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:43
484
- #: views/SlideshowPluginPostType/settings.php:12
485
- msgid "settings"
486
- msgstr "nastavení"
487
-
488
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:80
489
- msgid "Default Slideshow Stylesheet"
490
- msgstr "Defaultní šablona stylů prezentace"
491
-
492
- #: views/SlideshowPluginGeneralSettings/general-settings.php:15
493
- msgid "User Capabilities"
494
- msgstr "Možnosti uživatelů"
495
-
496
- #: views/SlideshowPluginGeneralSettings/general-settings.php:17
497
- msgid "Custom Styles"
498
- msgstr "Přizpůsobené šablony stylů"
499
-
500
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:8
501
- msgid "Add slideshows"
502
- msgstr "Přidat prezentace"
503
-
504
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:9
505
- msgid "Edit slideshows"
506
- msgstr "Upravit prezentace"
507
-
508
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:10
509
- msgid "Delete slideshows"
510
- msgstr "Mazat prezentace"
511
-
512
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:18
513
- msgid "Select the user roles that will able to perform certain actions."
514
- msgstr "Vyberte typy uživatelů, kteří budou moci provádět určité akce."
515
-
516
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:35
517
- msgid "Untitled role"
518
- msgstr "Nedefinovaný uživatel"
519
-
520
- #: views/SlideshowPluginPostType/information.php:1
521
- msgid ""
522
- "To use this slideshow in your website either add this piece of shortcode to "
523
- "your posts or pages"
524
- msgstr ""
525
- "Abyste mohli použít tuto prezentaci na svých stránkách, buď zadejte tento "
526
- "shortcode do svých příspěvků nebo stránek,"
527
-
528
- #: views/SlideshowPluginPostType/information.php:5
529
- msgid ""
530
- "Or add this piece of code to where ever in your website you want to place "
531
- "the slideshow"
532
- msgstr ""
533
- "Nebo přidejte tento kód tam, kde chcete prezentaci ve své strýnce umístit"
534
-
535
- #: views/SlideshowPluginPostType/information.php:9
536
- #, php-format
537
- msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
538
- msgstr "Nebo jděte do %ssprávy widgetů%s a přidejte prezentaci jako widget."
539
-
540
- #: views/SlideshowPluginPostType/settings.php:26
541
- #: views/SlideshowPluginPostType/style-settings.php:11
542
- msgid "Default"
543
- msgstr "Defaultně"
544
-
545
- #: views/SlideshowPluginPostType/slides.php:53
546
- #: views/SlideshowPluginPostType/slides.php:190
547
- #: views/SlideshowPluginSlideInserter/insert-text-button.php:1
548
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:6
549
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:23
550
- msgid "Text slide"
551
- msgstr "List s textem"
552
-
553
- #: views/SlideshowPluginPostType/slides.php:60
554
- #: views/SlideshowPluginPostType/slides.php:149
555
- #: views/SlideshowPluginPostType/slides.php:197
556
- #: views/SlideshowPluginPostType/slides.php:269
557
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:61
558
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:15
559
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:97
560
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:32
561
- msgid "Description"
562
- msgstr "Popis"
563
-
564
- #: views/SlideshowPluginPostType/slides.php:62
565
- #: views/SlideshowPluginPostType/slides.php:199
566
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:21
567
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:38
568
- msgid "Background color"
569
- msgstr "Barva pozadí"
570
-
571
- #: views/SlideshowPluginPostType/slides.php:67
572
- #: views/SlideshowPluginPostType/slides.php:154
573
- #: views/SlideshowPluginPostType/slides.php:204
574
- #: views/SlideshowPluginPostType/slides.php:274
575
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:68
576
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:28
577
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:104
578
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:46
579
- msgid "URL"
580
- msgstr "URL"
581
-
582
- #: views/SlideshowPluginPostType/slides.php:69
583
- #: views/SlideshowPluginPostType/slides.php:156
584
- #: views/SlideshowPluginPostType/slides.php:206
585
- #: views/SlideshowPluginPostType/slides.php:276
586
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:71
587
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:31
588
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:107
589
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:49
590
- msgid "Open URL in"
591
- msgstr "Otevřít URL v"
592
-
593
- #: views/SlideshowPluginPostType/slides.php:71
594
- #: views/SlideshowPluginPostType/slides.php:158
595
- #: views/SlideshowPluginPostType/slides.php:208
596
- #: views/SlideshowPluginPostType/slides.php:278
597
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:73
598
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:33
599
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:109
600
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:51
601
- msgid "Same window"
602
- msgstr "Stejné okno"
603
-
604
- #: views/SlideshowPluginPostType/slides.php:72
605
- #: views/SlideshowPluginPostType/slides.php:159
606
- #: views/SlideshowPluginPostType/slides.php:209
607
- #: views/SlideshowPluginPostType/slides.php:279
608
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:74
609
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:34
610
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:110
611
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:52
612
- msgid "New window"
613
- msgstr "Nové okno"
614
-
615
- #: views/SlideshowPluginPostType/slides.php:89
616
- #: views/SlideshowPluginPostType/slides.php:229
617
- #: views/SlideshowPluginSlideInserter/insert-video-button.php:1
618
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:53
619
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:13
620
- msgid "Video slide"
621
- msgstr "List s videem"
622
-
623
- #: views/SlideshowPluginPostType/slides.php:94
624
- #: views/SlideshowPluginPostType/slides.php:234
625
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:59
626
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:19
627
- msgid "Youtube Video ID"
628
- msgstr "ID videa na Youtube"
629
-
630
- #: views/SlideshowPluginPostType/slides.php:132
631
- #: views/SlideshowPluginPostType/slides.php:254
632
- #: views/SlideshowPluginSlideInserter/insert-image-button.php:1
633
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:40
634
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:78
635
- msgid "Image slide"
636
- msgstr "List s obrázkem"
637
-
638
- #: views/SlideshowPluginPostType/slides.php:170
639
- msgid ""
640
- "An error occurred while loading this slide, and it will not be present in "
641
- "the slideshow"
642
- msgstr ""
643
- "Během nahrávání tohoto listu se vyskytla chyba, takže se v prezentaci "
644
- "nezobrazí"
645
-
646
- #: views/SlideshowPluginPostType/slides.php:176
647
- #: views/SlideshowPluginPostType/slides.php:217
648
- #: views/SlideshowPluginPostType/slides.php:242
649
- #: views/SlideshowPluginPostType/slides.php:288
650
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:83
651
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:42
652
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:67
653
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:119
654
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:60
655
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:27
656
- msgid "Delete slide"
657
- msgstr "Smazat list"
658
-
659
- #: views/SlideshowPluginPostType/style-settings.php:22
660
- #, php-format
661
- msgid "Custom styles can be created and customized %shere%s."
662
- msgstr "Přizpůsobené šablony stylů můžete upravit %szde%s."
663
-
664
- #: views/SlideshowPluginPostType/support-plugin.php:3
665
- msgid "Help to keep this plugin free!"
666
- msgstr "Pomozte, aby tento plugin byl zdarma!"
667
-
668
- #: views/SlideshowPluginPostType/support-plugin.php:6
669
- msgid ""
670
- "In order to keep you provided with the newest features, forum support, and "
671
- "bug-fixes, a lot of motivation is required. Therefore I'm kindly asking you "
672
- "to consider making a small donation to the plugin or rating it as 5-stars on "
673
- "Wordpress.org. Thank you in advance!"
674
- msgstr ""
675
- "K tomu, abych Vás stále mohl zásobovat novými vlastnostmi, poskytovat "
676
- "podporu na fóru a vychytával chyby, je potřeba spousta motivace. Proto Vás "
677
- "laskavě žádám, abyste zvážili malou dotaci pluginu nebo ho ohodnotili pěti "
678
- "hvězdičkami na Wordpress.org. Velice Vám děkuji."
679
-
680
- #: views/SlideshowPluginPostType/support-plugin.php:15
681
- msgid "Rate on Wordpress.org"
682
- msgstr "Ohodnotit na Wordpress.org"
683
-
684
- #: views/SlideshowPluginPostType/support-plugin.php:24
685
- msgid "Frequently Asked Questions (FAQ)"
686
- msgstr "Často kladené otázky (FAQ)"
687
-
688
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
689
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
690
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
691
- msgid "Insert a Slideshow"
692
- msgstr "Vložit prezentaci"
693
-
694
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
695
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
696
- msgid "Insert Slideshow"
697
- msgstr "Vložit prezentaci"
698
-
699
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
700
- msgid "Select a slideshow"
701
- msgstr "Vybrat prezentaci"
702
-
703
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
704
- #: views/SlideshowPluginWidget/form.php:12
705
- msgid "Untitled slideshow"
706
- msgstr "Bezejmenná prezentace"
707
-
708
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
709
- msgid "Cancel"
710
- msgstr "Zrušit"
711
-
712
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
713
- #, php-format
714
- msgid ""
715
- "It seems you haven't created any slideshows yet. %sYou can create a "
716
- "slideshow here!%s"
717
- msgstr ""
718
- "Zdá se, že jste zatím nevytvořili žádnou prezentaci. %sPrezentaci si můžete "
719
- "vytvořit zde!%s"
720
-
721
- #: views/SlideshowPluginSlideInserter/search-popup.php:6
722
- msgid "Search"
723
- msgstr "Hledat"
724
-
725
- #: views/SlideshowPluginSlideInserter/search-popup.php:7
726
- msgid "Search images by title or ID"
727
- msgstr "Hledat obrázky podle titulku nebo ID"
728
-
729
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:18
730
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:35
731
- msgid "Text color"
732
- msgstr "Barva textu"
733
-
734
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:40
735
- msgid "(Leave empty for a transparent background)"
736
- msgstr ""
737
-
738
- #: views/SlideshowPluginUpload/upload-button.php:1
739
- msgid "Upload/Manage Images"
740
- msgstr "Nahrát/Spravovat obrázky"
741
-
742
- #: views/SlideshowPluginWidget/form.php:9
743
- msgid "Random Slideshow"
744
- msgstr "Náhodná prezentace"
745
-
746
- #~ msgid "Questions / Suggestions"
747
- #~ msgstr "Dotazy / Nápady"
748
-
749
- #~ msgid ""
750
- #~ "Shrink slideshow's height when width shrinks (Fixed height can be defined "
751
- #~ "when setting this value to 'No')"
752
- #~ msgstr ""
753
- #~ "Smrsknout výšu slideshow, pokud se smrskne šířka (Pevnou výšku lze "
754
- #~ "definovat, pokud je do toho nastavení zadáno 'Ne')"
755
-
756
- #~ msgid "light"
757
- #~ msgstr "světlý"
758
-
759
- #~ msgid "slide"
760
- #~ msgstr "list"
761
-
762
- #~ msgid "Custom style editor (Does not work with a Strict Doctype)"
763
- #~ msgstr "Editor stylů šablon (Nefunguje při Striktním Doctype)"
764
-
765
- #~ msgid "Has the Slideshow plugin helped you?"
766
- #~ msgstr "Pomohl Vám plugin Prezentace?"
767
-
768
- #~ msgid "Help it back!"
769
- #~ msgstr "Pomozte mu taky!"
770
-
771
- #~ msgid ""
772
- #~ "If this plugin has filled you with happiness, please support the upkeep "
773
- #~ "of the plugin by rating it on Wordpress, posting a suggestion for "
774
- #~ "improvement on the support forum, or making a donation."
775
- #~ msgstr ""
776
- #~ "Pokud Vás tento plugin naplnil štěstím, prosím, podpořte jeho udržování "
777
- #~ "jeho ohodnocením na Wordpress.org, posláním návhru na zlepšení na fórum "
778
- #~ "podpory nebo drobnou dotací."
779
-
780
- #~ msgid "Click on an image to insert it as a slide"
781
- #~ msgstr "Klikněte na obrázek, abyste ho přidali jako list"
782
-
783
- #~ msgid "Width of the slideshow"
784
- #~ msgstr "Šířka prezentace"
785
-
786
- #~ msgid "Defaults to parent's width."
787
- #~ msgstr "Defaultně nastavené na šířku rodičovského prvku."
788
-
789
- #~ msgid "Send user to image URL on click"
790
- #~ msgstr "Odkáže uživatele po kliknutí na URL obrázku"
791
-
792
- #~ msgid "Leave any field open to use default value."
793
- #~ msgstr "Nechejte pole volné, aby se použila defaultní hodnota."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Slideshow Plugin\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-08-21 10:39+0100\n"
6
+ "PO-Revision-Date: 2013-08-21 10:41+0100\n"
7
+ "Last-Translator: \n"
8
+ "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
+ "Language: cz_CZ\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-KeywordsList: _e;__\n"
14
+ "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.5.7\n"
16
+ "X-Poedit-SourceCharset: UTF-8\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 "Obecné nastavení"
24
+
25
+ #: classes/SlideshowPluginGeneralSettings.php:150
26
+ msgid "New"
27
+ msgstr "Nový"
28
+
29
+ #: classes/SlideshowPluginGeneralSettings.php:151
30
+ msgid "Are you sure you want to delete this custom style?"
31
+ msgstr "Víte jistě, že chcete tuto přizpůsobenou šablonu stylů smazat?"
32
+
33
+ #: classes/SlideshowPluginGeneralSettings.php:196
34
+ #: classes/SlideshowPluginInstaller.php:516
35
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:6
36
+ msgid "Light"
37
+ msgstr "Světlý"
38
+
39
+ #: classes/SlideshowPluginGeneralSettings.php:197
40
+ #: classes/SlideshowPluginInstaller.php:516
41
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:7
42
+ msgid "Dark"
43
+ msgstr "Tmavý"
44
+
45
+ #: classes/SlideshowPluginGeneralSettings.php:353
46
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:57
47
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:139
48
+ msgid "Untitled"
49
+ msgstr "Beze jména"
50
+
51
+ #: classes/SlideshowPluginInstaller.php:513
52
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:472
53
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:67
54
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:37
55
+ msgid "Yes"
56
+ msgstr "Ano"
57
+
58
+ #: classes/SlideshowPluginInstaller.php:514
59
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:473
60
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:68
61
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:38
62
+ msgid "No"
63
+ msgstr "Ne"
64
+
65
+ #: classes/SlideshowPluginInstaller.php:516
66
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:610
67
+ msgid "The style used for this slideshow"
68
+ msgstr "Šablona stylů použitá pro tuto prezentaci"
69
+
70
+ #: classes/SlideshowPluginInstaller.php:516
71
+ msgid "Custom"
72
+ msgstr "Přizpůsobit"
73
+
74
+ #: classes/SlideshowPluginInstaller.php:517
75
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:122
76
+ msgid "Custom style editor"
77
+ msgstr "Přizpůsobení šablony stylů"
78
+
79
+ #: classes/SlideshowPluginInstaller.php:518
80
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:518
81
+ msgid "Animation used for transition between slides"
82
+ msgstr "Animace použitá pro přechod mezi listy"
83
+
84
+ #: classes/SlideshowPluginInstaller.php:518
85
+ msgid "Slide"
86
+ msgstr "List"
87
+
88
+ #: classes/SlideshowPluginInstaller.php:518
89
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
90
+ msgid "Fade"
91
+ msgstr "Prolnout"
92
+
93
+ #: classes/SlideshowPluginInstaller.php:518
94
+ #: classes/SlideshowPluginInstaller.php:519
95
+ #: classes/SlideshowPluginInstaller.php:520
96
+ #: classes/SlideshowPluginInstaller.php:521
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 "Nastavení animace"
103
+
104
+ #: classes/SlideshowPluginInstaller.php:519
105
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:519
106
+ msgid "Number of seconds the slide takes to slide in"
107
+ msgstr "Kolik sekund zabere listu, než se přisune"
108
+
109
+ #: classes/SlideshowPluginInstaller.php:520
110
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:520
111
+ msgid "Number of seconds the description takes to slide in"
112
+ msgstr "Kolik sekund zabere popisu, než se přisune"
113
+
114
+ #: classes/SlideshowPluginInstaller.php:521
115
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:521
116
+ msgid "Seconds between changing slides"
117
+ msgstr "Kolik sekund mezi tím, než se vymění listy"
118
+
119
+ #: classes/SlideshowPluginInstaller.php:522
120
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:522
121
+ msgid "Number of slides to fit into one slide"
122
+ msgstr "Počet listů, kolik se jich vejde do jednoho listu"
123
+
124
+ #: classes/SlideshowPluginInstaller.php:522
125
+ #: classes/SlideshowPluginInstaller.php:523
126
+ #: classes/SlideshowPluginInstaller.php:524
127
+ #: classes/SlideshowPluginInstaller.php:525
128
+ #: classes/SlideshowPluginInstaller.php:526
129
+ #: classes/SlideshowPluginInstaller.php:527
130
+ #: classes/SlideshowPluginInstaller.php:528
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 "Nastavení zobrazení"
142
+
143
+ #: classes/SlideshowPluginInstaller.php:523
144
+ msgid "Width of the slideshow, set to parent&#39;s width on 0"
145
+ msgstr ""
146
+ "Šířka zobrazení, nastaveno na šířku rodičovského objektu, pokud je zadáno 0"
147
+
148
+ #: classes/SlideshowPluginInstaller.php:524
149
+ msgid "Height of the slideshow"
150
+ msgstr "Výška prezentace"
151
+
152
+ #: classes/SlideshowPluginInstaller.php:525
153
+ msgid "Height of the description boxes"
154
+ msgstr "Výška bloku s popisem"
155
+
156
+ #: classes/SlideshowPluginInstaller.php:526
157
+ msgid "Fit image into slide (stretching it)"
158
+ msgstr "Přizpůsobit obrázek do listů (roztáhne se)"
159
+
160
+ #: classes/SlideshowPluginInstaller.php:527
161
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:529
162
+ msgid "Show title and description"
163
+ msgstr "Zobrazit název a popis"
164
+
165
+ #: classes/SlideshowPluginInstaller.php:528
166
+ msgid "Hide description box, it will pop up when a mouse hovers over the slide"
167
+ msgstr "Skrýt blok s popisem, vyskočí, pokud myš najede na list"
168
+
169
+ #: classes/SlideshowPluginInstaller.php:529
170
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:531
171
+ msgid "Automatically slide to the next slide"
172
+ msgstr "Automaticky posouvat na další list"
173
+
174
+ #: classes/SlideshowPluginInstaller.php:529
175
+ #: classes/SlideshowPluginInstaller.php:530
176
+ #: classes/SlideshowPluginInstaller.php:531
177
+ #: classes/SlideshowPluginInstaller.php:532
178
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:560
179
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:561
180
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:562
181
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:563
182
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:564
183
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:565
184
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:566
185
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:567
186
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:568
187
+ msgid "Control"
188
+ msgstr "Nastavení ovládání"
189
+
190
+ #: classes/SlideshowPluginInstaller.php:530
191
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:532
192
+ msgid "Return to the beginning of the slideshow after last slide"
193
+ msgstr "Návrat na začátek prezentace po posledním listu"
194
+
195
+ #: classes/SlideshowPluginInstaller.php:531
196
+ msgid "Activate buttons (so the user can scroll through the slides)"
197
+ msgstr "Aktivovat tlačítka (takže uživatel může procházet mezi listy)"
198
+
199
+ #: classes/SlideshowPluginInstaller.php:532
200
+ msgid "Show control panel (play and pause button)"
201
+ msgstr "Zobrazit ovládací panel (tlačítka přehrát a zastavit)"
202
+
203
+ #: classes/SlideshowPluginPostType.php:38
204
+ msgid "Slideshows"
205
+ msgstr "Prezentace"
206
+
207
+ #: classes/SlideshowPluginPostType.php:39
208
+ #: views/SlideshowPluginWidget/form.php:7
209
+ msgid "Slideshow"
210
+ msgstr "Prezentace"
211
+
212
+ #: classes/SlideshowPluginPostType.php:40
213
+ msgid "Add New Slideshow"
214
+ msgstr "Přidat novou prezentaci"
215
+
216
+ #: classes/SlideshowPluginPostType.php:41
217
+ msgid "Edit slideshow"
218
+ msgstr "Upravit prezentaci"
219
+
220
+ #: classes/SlideshowPluginPostType.php:42
221
+ msgid "New slideshow"
222
+ msgstr "Nová prezentace"
223
+
224
+ #: classes/SlideshowPluginPostType.php:43
225
+ msgid "View slideshow"
226
+ msgstr "Zobrazit prezentaci"
227
+
228
+ #: classes/SlideshowPluginPostType.php:44
229
+ msgid "Search slideshows"
230
+ msgstr "Hledat prezentaci"
231
+
232
+ #: classes/SlideshowPluginPostType.php:45
233
+ #: classes/SlideshowPluginPostType.php:46
234
+ msgid "No slideshows found"
235
+ msgstr "Žádná prezentace nenalezena"
236
+
237
+ #: classes/SlideshowPluginPostType.php:91
238
+ msgid "Information"
239
+ msgstr "Informace"
240
+
241
+ #: classes/SlideshowPluginPostType.php:100
242
+ msgid "Slides List"
243
+ msgstr "Seznam listů"
244
+
245
+ #: classes/SlideshowPluginPostType.php:109
246
+ msgid "Slideshow Style"
247
+ msgstr "Šablona stylu prezentace"
248
+
249
+ #: classes/SlideshowPluginPostType.php:118
250
+ msgid "Slideshow Settings"
251
+ msgstr "Nastavení prezentace"
252
+
253
+ #: classes/SlideshowPluginPostType.php:174
254
+ #: classes/SlideshowPluginSlideInserter.php:222
255
+ #: views/SlideshowPluginPostType/slides.php:2
256
+ msgid "Insert"
257
+ msgstr "Vložit"
258
+
259
+ #: classes/SlideshowPluginPostType.php:183
260
+ #: views/SlideshowPluginPostType/slides.php:9
261
+ msgid "Add slides to this slideshow by using one of the buttons above."
262
+ msgstr ""
263
+ "Vloží listy do této prezentace použitím jednoho z výše zobrazených tlačítek."
264
+
265
+ #: classes/SlideshowPluginShortcode.php:148
266
+ msgid "No slideshow selected."
267
+ msgstr "Žádná prezentace nebyla vybrána."
268
+
269
+ #: classes/SlideshowPluginSlideInserter.php:178
270
+ msgid "More results loaded"
271
+ msgstr ""
272
+
273
+ #: classes/SlideshowPluginSlideInserter.php:233
274
+ msgid "Load more results"
275
+ msgstr "Načíst více výsledků"
276
+
277
+ #: classes/SlideshowPluginSlideInserter.php:244
278
+ msgid "No images were found, click here to upload some."
279
+ msgstr "Žádné obrázky nebyly nalezeny, hlikněte sem, abyste nějaké nahráli."
280
+
281
+ #: classes/SlideshowPluginSlideInserter.php:316
282
+ msgid "Are you sure you want to delete this slide?"
283
+ msgstr "Víte jistě, že chcete tento list smazat?"
284
+
285
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:523
286
+ msgid "Maximum width. When maximum width is 0, maximum width is ignored"
287
+ msgstr "Maximální šířka. Pokud je zadáno 0, je maximální šířka ignorována"
288
+
289
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
290
+ msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
291
+ msgstr "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
292
+
293
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
294
+ msgid "More info"
295
+ msgstr "Více informací"
296
+
297
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
298
+ #, php-format
299
+ msgid ""
300
+ "Proportional relationship%s between slideshow's width and height (width:"
301
+ "height)"
302
+ msgstr "Proporcionální vazba%s mezi šířkou a výškou prezentace (šířka:výška)"
303
+
304
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:525
305
+ msgid "Slideshow's height"
306
+ msgstr "Výška prezentace"
307
+
308
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:526
309
+ msgid "Fit image into slide (Stretch image)"
310
+ msgstr "Přizpůsobit obrázek do listu (obrázek se roztáhne)"
311
+
312
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:527
313
+ msgid "Shrink slideshow's height when width shrinks"
314
+ msgstr "Smrsknout výšku prezentace, pokud se smrskne její šířka"
315
+
316
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:528
317
+ msgid ""
318
+ "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
319
+ msgstr ""
320
+ "Umožnit přizpůsobení (Šířka prezentace se smrskne, pokud se smrskne šířka "
321
+ "stránky"
322
+
323
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:530
324
+ msgid "Hide description box, pop up when mouse hovers over"
325
+ msgstr "Skrýt blok s popisem, objeví se, když přes ni přejde myš"
326
+
327
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:533
328
+ msgid "Pause slideshow when mouse hovers over"
329
+ msgstr "Zastavit prezentaci, když přes ni přeběhne myš"
330
+
331
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:534
332
+ msgid "Activate navigation buttons"
333
+ msgstr "Použít tlačítka navigace"
334
+
335
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:535
336
+ msgid "Hide navigation buttons, show when mouse hovers over"
337
+ msgstr "Skrýt tlačítka navigace, objeví se, když přes ně přeběhne myš"
338
+
339
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:536
340
+ msgid "Activate pagination"
341
+ msgstr "Použít stránkování"
342
+
343
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:537
344
+ msgid "Hide pagination, show when mouse hovers over"
345
+ msgstr "Skrýt stránkování, objeví se, když přes něj přeběhne myš"
346
+
347
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:538
348
+ msgid "Activate control panel (play and pause button)"
349
+ msgstr "Použít ovládací panel (tlačítka přehrát a zastavit)"
350
+
351
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:539
352
+ msgid "Hide control panel, show when mouse hovers over"
353
+ msgstr "Skrát ovládací panel, objeví se, když jej přejde myš"
354
+
355
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:540
356
+ msgid "Wait until the next slide has loaded before showing it"
357
+ msgstr ""
358
+
359
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:541
360
+ msgid "Show a loading icon until the first slide appears"
361
+ msgstr ""
362
+
363
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:542
364
+ msgid "Randomize slides"
365
+ msgstr "Náhodné pořadí listů"
366
+
367
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:543
368
+ #, php-format
369
+ msgid "Avoid content filter (disable if '%s' is shown)"
370
+ msgstr "Vyhnout se filtru obsahu (vypne se, pokud se ukáže '%s' )"
371
+
372
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
373
+ msgid "Slide Left"
374
+ msgstr "Posunout doleva"
375
+
376
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
377
+ msgid "Slide Right"
378
+ msgstr "Posunout doprava"
379
+
380
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
381
+ msgid "Slide Up"
382
+ msgstr "Posunout nahoru"
383
+
384
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
385
+ msgid "Slide Down"
386
+ msgstr "Posunout dolů"
387
+
388
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
389
+ msgid "Direct Fade"
390
+ msgstr "Přímé prolnutí"
391
+
392
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
393
+ msgid "Random Animation"
394
+ msgstr "Náhodná animace"
395
+
396
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:569
397
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:570
398
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:571
399
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:572
400
+ msgid "Miscellaneous"
401
+ msgstr "Další nastavení"
402
+
403
+ #: classes/SlideshowPluginWidget.php:23
404
+ msgid "Enables you to show your slideshows in the widget area of your website."
405
+ msgstr "Dovolí Vám zobrazit Vaši prezentaci v oblasti widgetů na Vaší stránce"
406
+
407
+ #: classes/SlideshowPluginWidget.php:29
408
+ msgid "Slideshow Widget"
409
+ msgstr "Widget prezentace"
410
+
411
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:46
412
+ msgid "Default stylesheets"
413
+ msgstr "Defaultní šablony stylů"
414
+
415
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:60
416
+ msgid "Create a new custom style from this style"
417
+ msgstr "Vytvořit z této šablony novou přizpůsobenou šablonu stylů"
418
+
419
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:62
420
+ msgid "Customize"
421
+ msgstr "Přizpůsobit"
422
+
423
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:76
424
+ msgid "Custom stylesheets"
425
+ msgstr "Přizpůsobené šablony stylů"
426
+
427
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:89
428
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:168
429
+ msgid "Edit this style"
430
+ msgstr "Upravit tuto šablonu stylů"
431
+
432
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:91
433
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:170
434
+ #: views/SlideshowPluginPostType/slides.php:137
435
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:72
436
+ msgid "Edit"
437
+ msgstr "Upravit"
438
+
439
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:98
440
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:177
441
+ msgid "Delete this style"
442
+ msgstr "Smazat tuto šablonu stylů"
443
+
444
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:100
445
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:179
446
+ msgid "Delete"
447
+ msgstr "Smazat"
448
+
449
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:110
450
+ msgid "Click 'Customize' to create a new custom stylesheet."
451
+ msgstr "Kliknutím na 'Přizpůsobit' vytvoříte novou upravenou šablonu stylů"
452
+
453
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:126
454
+ msgid "Select a stylesheet from the left to start customizing it."
455
+ msgstr "Klikněte na některou šablonu stylů vlevo, abyste ji upravili."
456
+
457
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:135
458
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:188
459
+ #: views/SlideshowPluginPostType/slides.php:58
460
+ #: views/SlideshowPluginPostType/slides.php:143
461
+ #: views/SlideshowPluginPostType/slides.php:195
462
+ #: views/SlideshowPluginPostType/slides.php:263
463
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:80
464
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:12
465
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:98
466
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:47
467
+ #: views/SlideshowPluginWidget/form.php:2
468
+ msgid "Title"
469
+ msgstr "Název"
470
+
471
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:144
472
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:196
473
+ msgid "Style"
474
+ msgstr "Šablona stylů"
475
+
476
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:11
477
+ msgid "Note"
478
+ msgstr "Poznámka"
479
+
480
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:18
481
+ #, php-format
482
+ msgid ""
483
+ "The settings set on this page apply only to newly created slideshows and "
484
+ "therefore do not alter any existing ones. To adapt a slideshow's settings, "
485
+ "%sclick here.%s"
486
+ msgstr ""
487
+ "Nastavení na této stránce bude platné jen pro nově vytvořené prezentace, "
488
+ "takže neovlivní ty, které již existují. Abyste upravili nastavení "
489
+ "prezentace, %sklikněte sem.%s"
490
+
491
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:29
492
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:15
493
+ msgid "Default Slideshow Settings"
494
+ msgstr "Defaultní nastavení Prezentace"
495
+
496
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:41
497
+ #: views/SlideshowPluginPostType/settings.php:12
498
+ msgid "settings"
499
+ msgstr "nastavení"
500
+
501
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:77
502
+ msgid "Default Slideshow Stylesheet"
503
+ msgstr "Defaultní šablona stylů prezentace"
504
+
505
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:11
506
+ msgid "Add slideshows"
507
+ msgstr "Přidat prezentace"
508
+
509
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:12
510
+ msgid "Edit slideshows"
511
+ msgstr "Upravit prezentace"
512
+
513
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:13
514
+ msgid "Delete slideshows"
515
+ msgstr "Mazat prezentace"
516
+
517
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:20
518
+ msgid "User Capabilities"
519
+ msgstr "Možnosti uživatelů"
520
+
521
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:22
522
+ msgid "Select the user roles that will able to perform certain actions."
523
+ msgstr "Vyberte typy uživatelů, kteří budou moci provádět určité akce."
524
+
525
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:38
526
+ msgid "Untitled role"
527
+ msgstr "Nedefinovaný uživatel"
528
+
529
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:65
530
+ msgid "Settings"
531
+ msgstr "nastavení"
532
+
533
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:69
534
+ msgid "Stylesheet location"
535
+ msgstr ""
536
+
537
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:72
538
+ msgid "top"
539
+ msgstr ""
540
+
541
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:73
542
+ msgid "bottom"
543
+ msgstr ""
544
+
545
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:16
546
+ msgid "Custom Styles"
547
+ msgstr "Přizpůsobené šablony stylů"
548
+
549
+ #: views/SlideshowPluginPostType/information.php:1
550
+ msgid ""
551
+ "To use this slideshow in your website either add this piece of shortcode to "
552
+ "your posts or pages"
553
+ msgstr ""
554
+ "Abyste mohli použít tuto prezentaci na svých stránkách, buď zadejte tento "
555
+ "shortcode do svých příspěvků nebo stránek,"
556
+
557
+ #: views/SlideshowPluginPostType/information.php:5
558
+ msgid ""
559
+ "Or add this piece of code to where ever in your website you want to place "
560
+ "the slideshow"
561
+ msgstr ""
562
+ "Nebo přidejte tento kód tam, kde chcete prezentaci ve své strýnce umístit"
563
+
564
+ #: views/SlideshowPluginPostType/information.php:9
565
+ #, php-format
566
+ msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
567
+ msgstr "Nebo jděte do %ssprávy widgetů%s a přidejte prezentaci jako widget."
568
+
569
+ #: views/SlideshowPluginPostType/settings.php:26
570
+ #: views/SlideshowPluginPostType/style-settings.php:11
571
+ msgid "Default"
572
+ msgstr "Defaultně"
573
+
574
+ #: views/SlideshowPluginPostType/slides.php:53
575
+ #: views/SlideshowPluginPostType/slides.php:190
576
+ #: views/SlideshowPluginSlideInserter/insert-text-button.php:1
577
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:6
578
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:41
579
+ msgid "Text slide"
580
+ msgstr "List s textem"
581
+
582
+ #: views/SlideshowPluginPostType/slides.php:60
583
+ #: views/SlideshowPluginPostType/slides.php:149
584
+ #: views/SlideshowPluginPostType/slides.php:197
585
+ #: views/SlideshowPluginPostType/slides.php:269
586
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:87
587
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:15
588
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:105
589
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:50
590
+ msgid "Description"
591
+ msgstr "Popis"
592
+
593
+ #: views/SlideshowPluginPostType/slides.php:62
594
+ #: views/SlideshowPluginPostType/slides.php:199
595
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:21
596
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:56
597
+ msgid "Background color"
598
+ msgstr "Barva pozadí"
599
+
600
+ #: views/SlideshowPluginPostType/slides.php:67
601
+ #: views/SlideshowPluginPostType/slides.php:154
602
+ #: views/SlideshowPluginPostType/slides.php:204
603
+ #: views/SlideshowPluginPostType/slides.php:274
604
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:94
605
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:28
606
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:112
607
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:64
608
+ msgid "URL"
609
+ msgstr "URL"
610
+
611
+ #: views/SlideshowPluginPostType/slides.php:69
612
+ #: views/SlideshowPluginPostType/slides.php:156
613
+ #: views/SlideshowPluginPostType/slides.php:206
614
+ #: views/SlideshowPluginPostType/slides.php:276
615
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:97
616
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:31
617
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:115
618
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:67
619
+ msgid "Open URL in"
620
+ msgstr "Otevřít URL v"
621
+
622
+ #: views/SlideshowPluginPostType/slides.php:71
623
+ #: views/SlideshowPluginPostType/slides.php:158
624
+ #: views/SlideshowPluginPostType/slides.php:208
625
+ #: views/SlideshowPluginPostType/slides.php:278
626
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:99
627
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:33
628
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:117
629
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:69
630
+ msgid "Same window"
631
+ msgstr "Stejné okno"
632
+
633
+ #: views/SlideshowPluginPostType/slides.php:72
634
+ #: views/SlideshowPluginPostType/slides.php:159
635
+ #: views/SlideshowPluginPostType/slides.php:209
636
+ #: views/SlideshowPluginPostType/slides.php:279
637
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:100
638
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:34
639
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:118
640
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:70
641
+ msgid "New window"
642
+ msgstr "Nové okno"
643
+
644
+ #: views/SlideshowPluginPostType/slides.php:89
645
+ #: views/SlideshowPluginPostType/slides.php:229
646
+ #: views/SlideshowPluginSlideInserter/insert-video-button.php:1
647
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:53
648
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:23
649
+ msgid "Video slide"
650
+ msgstr "List s videem"
651
+
652
+ #: views/SlideshowPluginPostType/slides.php:94
653
+ #: views/SlideshowPluginPostType/slides.php:234
654
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:59
655
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:29
656
+ msgid "Youtube Video ID"
657
+ msgstr "ID videa na Youtube"
658
+
659
+ #: views/SlideshowPluginPostType/slides.php:132
660
+ #: views/SlideshowPluginPostType/slides.php:254
661
+ #: views/SlideshowPluginSlideInserter/insert-image-button.php:1
662
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:66
663
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:86
664
+ msgid "Image slide"
665
+ msgstr "List s obrázkem"
666
+
667
+ #: views/SlideshowPluginPostType/slides.php:170
668
+ msgid ""
669
+ "An error occurred while loading this slide, and it will not be present in "
670
+ "the slideshow"
671
+ msgstr ""
672
+ "Během nahrávání tohoto listu se vyskytla chyba, takže se v prezentaci "
673
+ "nezobrazí"
674
+
675
+ #: views/SlideshowPluginPostType/slides.php:176
676
+ #: views/SlideshowPluginPostType/slides.php:217
677
+ #: views/SlideshowPluginPostType/slides.php:242
678
+ #: views/SlideshowPluginPostType/slides.php:288
679
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:109
680
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:42
681
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:75
682
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:127
683
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:78
684
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:45
685
+ msgid "Delete slide"
686
+ msgstr "Smazat list"
687
+
688
+ #: views/SlideshowPluginPostType/style-settings.php:22
689
+ #, php-format
690
+ msgid "Custom styles can be created and customized %shere%s."
691
+ msgstr "Přizpůsobené šablony stylů můžete upravit %szde%s."
692
+
693
+ #: views/SlideshowPluginPostType/support-plugin.php:3
694
+ msgid "Help to keep this plugin free!"
695
+ msgstr "Pomozte, aby tento plugin byl zdarma!"
696
+
697
+ #: views/SlideshowPluginPostType/support-plugin.php:6
698
+ msgid ""
699
+ "In order to keep you provided with the newest features, updates and bug "
700
+ "fixes, a lot of motivation is required. Therefore I'm kindly asking you to "
701
+ "consider making a small donation to the plugin or rating it as 5-stars on "
702
+ "Wordpress.org. Thank you in advance!"
703
+ msgstr ""
704
+ "K tomu, abych Vás stále mohl zásobovat novými vlastnostmi, poskytovat "
705
+ "podporu na fóru a vychytával chyby, je potřeba spousta motivace. Proto Vás "
706
+ "laskavě žádám, abyste zvážili malou dotaci pluginu nebo ho ohodnotili pěti "
707
+ "hvězdičkami na Wordpress.org. Velice Vám děkuji."
708
+
709
+ #: views/SlideshowPluginPostType/support-plugin.php:15
710
+ msgid "Rate on Wordpress.org"
711
+ msgstr "Ohodnotit na Wordpress.org"
712
+
713
+ #: views/SlideshowPluginPostType/support-plugin.php:24
714
+ msgid "Frequently Asked Questions (FAQ)"
715
+ msgstr "Často kladené otázky (FAQ)"
716
+
717
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
718
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
719
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
720
+ msgid "Insert a Slideshow"
721
+ msgstr "Vložit prezentaci"
722
+
723
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
724
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
725
+ msgid "Insert Slideshow"
726
+ msgstr "Vložit prezentaci"
727
+
728
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
729
+ msgid "Select a slideshow"
730
+ msgstr "Vybrat prezentaci"
731
+
732
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
733
+ #: views/SlideshowPluginWidget/form.php:12
734
+ msgid "Untitled slideshow"
735
+ msgstr "Bezejmenná prezentace"
736
+
737
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
738
+ msgid "Cancel"
739
+ msgstr "Zrušit"
740
+
741
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
742
+ #, php-format
743
+ msgid ""
744
+ "It seems you haven't created any slideshows yet. %sYou can create a "
745
+ "slideshow here!%s"
746
+ msgstr ""
747
+ "Zdá se, že jste zatím nevytvořili žádnou prezentaci. %sPrezentaci si můžete "
748
+ "vytvořit zde!%s"
749
+
750
+ #: views/SlideshowPluginSlideInserter/search-popup.php:6
751
+ msgid "Search"
752
+ msgstr "Hledat"
753
+
754
+ #: views/SlideshowPluginSlideInserter/search-popup.php:7
755
+ msgid "Search images by title or ID"
756
+ msgstr "Hledat obrázky podle titulku nebo ID"
757
+
758
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:18
759
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:53
760
+ msgid "Text color"
761
+ msgstr "Barva textu"
762
+
763
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:66
764
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:36
765
+ msgid "Show related videos"
766
+ msgstr ""
767
+
768
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:58
769
+ msgid "(Leave empty for a transparent background)"
770
+ msgstr ""
771
+
772
+ #: views/SlideshowPluginUpload/upload-button.php:1
773
+ msgid "Upload/Manage Images"
774
+ msgstr "Nahrát/Spravovat obrázky"
775
+
776
+ #: views/SlideshowPluginWidget/form.php:9
777
+ msgid "Random Slideshow"
778
+ msgstr "Náhodná prezentace"
779
+
780
+ #~ msgid "Questions / Suggestions"
781
+ #~ msgstr "Dotazy / Nápady"
782
+
783
+ #~ msgid ""
784
+ #~ "Shrink slideshow's height when width shrinks (Fixed height can be defined "
785
+ #~ "when setting this value to 'No')"
786
+ #~ msgstr ""
787
+ #~ "Smrsknout výšu slideshow, pokud se smrskne šířka (Pevnou výšku lze "
788
+ #~ "definovat, pokud je do toho nastavení zadáno 'Ne')"
789
+
790
+ #~ msgid "light"
791
+ #~ msgstr "světlý"
792
+
793
+ #~ msgid "slide"
794
+ #~ msgstr "list"
795
+
796
+ #~ msgid "Custom style editor (Does not work with a Strict Doctype)"
797
+ #~ msgstr "Editor stylů šablon (Nefunguje při Striktním Doctype)"
798
+
799
+ #~ msgid "Has the Slideshow plugin helped you?"
800
+ #~ msgstr "Pomohl Vám plugin Prezentace?"
801
+
802
+ #~ msgid "Help it back!"
803
+ #~ msgstr "Pomozte mu taky!"
804
+
805
+ #~ msgid ""
806
+ #~ "If this plugin has filled you with happiness, please support the upkeep "
807
+ #~ "of the plugin by rating it on Wordpress, posting a suggestion for "
808
+ #~ "improvement on the support forum, or making a donation."
809
+ #~ msgstr ""
810
+ #~ "Pokud Vás tento plugin naplnil štěstím, prosím, podpořte jeho udržování "
811
+ #~ "jeho ohodnocením na Wordpress.org, posláním návhru na zlepšení na fórum "
812
+ #~ "podpory nebo drobnou dotací."
813
+
814
+ #~ msgid "Click on an image to insert it as a slide"
815
+ #~ msgstr "Klikněte na obrázek, abyste ho přidali jako list"
816
+
817
+ #~ msgid "Width of the slideshow"
818
+ #~ msgstr "Šířka prezentace"
819
+
820
+ #~ msgid "Defaults to parent's width."
821
+ #~ msgstr "Defaultně nastavené na šířku rodičovského prvku."
822
+
823
+ #~ msgid "Send user to image URL on click"
824
+ #~ msgstr "Odkáže uživatele po kliknutí na URL obrázku"
825
+
826
+ #~ msgid "Leave any field open to use default value."
827
+ #~ msgstr "Nechejte pole volné, aby se použila defaultní hodnota."
languages/slideshow-plugin-de_DE.mo ADDED
Binary file
languages/slideshow-plugin-de_DE.po ADDED
@@ -0,0 +1,789 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Slideshow Plugin\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-08-21 10:40+0100\n"
6
+ "PO-Revision-Date: 2013-08-21 10:40+0100\n"
7
+ "Last-Translator: Markus Amann <amann@dema-itsupport.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.5.7\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 "Allgemeine Einstellungen"
22
+
23
+ #: classes/SlideshowPluginGeneralSettings.php:150
24
+ msgid "New"
25
+ msgstr "Neu"
26
+
27
+ #: classes/SlideshowPluginGeneralSettings.php:151
28
+ msgid "Are you sure you want to delete this custom style?"
29
+ msgstr "Sind Sie sicher, dass Sie dieses standard Layout löschen möchten?"
30
+
31
+ #: classes/SlideshowPluginGeneralSettings.php:196
32
+ #: classes/SlideshowPluginInstaller.php:516
33
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:6
34
+ msgid "Light"
35
+ msgstr "hell"
36
+
37
+ #: classes/SlideshowPluginGeneralSettings.php:197
38
+ #: classes/SlideshowPluginInstaller.php:516
39
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:7
40
+ msgid "Dark"
41
+ msgstr "dunkel"
42
+
43
+ #: classes/SlideshowPluginGeneralSettings.php:353
44
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:57
45
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:139
46
+ msgid "Untitled"
47
+ msgstr "unbenannt"
48
+
49
+ #: classes/SlideshowPluginInstaller.php:513
50
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:472
51
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:67
52
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:37
53
+ msgid "Yes"
54
+ msgstr "Ja"
55
+
56
+ #: classes/SlideshowPluginInstaller.php:514
57
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:473
58
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:68
59
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:38
60
+ msgid "No"
61
+ msgstr "Nein"
62
+
63
+ #: classes/SlideshowPluginInstaller.php:516
64
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:610
65
+ msgid "The style used for this slideshow"
66
+ msgstr "Das Layout dieser Diashow"
67
+
68
+ #: classes/SlideshowPluginInstaller.php:516
69
+ msgid "Custom"
70
+ msgstr "Standard"
71
+
72
+ #: classes/SlideshowPluginInstaller.php:517
73
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:122
74
+ msgid "Custom style editor"
75
+ msgstr "Standard Layout Editor"
76
+
77
+ #: classes/SlideshowPluginInstaller.php:518
78
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:518
79
+ msgid "Animation used for transition between slides"
80
+ msgstr "gewählte Animation zwischen den Dias"
81
+
82
+ #: classes/SlideshowPluginInstaller.php:518
83
+ msgid "Slide"
84
+ msgstr "Dia"
85
+
86
+ #: classes/SlideshowPluginInstaller.php:518
87
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
88
+ msgid "Fade"
89
+ msgstr "verblassen"
90
+
91
+ #: classes/SlideshowPluginInstaller.php:518
92
+ #: classes/SlideshowPluginInstaller.php:519
93
+ #: classes/SlideshowPluginInstaller.php:520
94
+ #: classes/SlideshowPluginInstaller.php:521
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 "Animation"
101
+
102
+ #: classes/SlideshowPluginInstaller.php:519
103
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:519
104
+ msgid "Number of seconds the slide takes to slide in"
105
+ msgstr "Zeit in sec. für das Hineingleiten des Dias"
106
+
107
+ #: classes/SlideshowPluginInstaller.php:520
108
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:520
109
+ msgid "Number of seconds the description takes to slide in"
110
+ msgstr "Zeit in sec. für das Hineingleiten der Beschreibung"
111
+
112
+ #: classes/SlideshowPluginInstaller.php:521
113
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:521
114
+ msgid "Seconds between changing slides"
115
+ msgstr "Zeit in sec. für das Wechseln der Dias"
116
+
117
+ #: classes/SlideshowPluginInstaller.php:522
118
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:522
119
+ msgid "Number of slides to fit into one slide"
120
+ msgstr "Anzahl einzel Dias pro Diafläche"
121
+
122
+ #: classes/SlideshowPluginInstaller.php:522
123
+ #: classes/SlideshowPluginInstaller.php:523
124
+ #: classes/SlideshowPluginInstaller.php:524
125
+ #: classes/SlideshowPluginInstaller.php:525
126
+ #: classes/SlideshowPluginInstaller.php:526
127
+ #: classes/SlideshowPluginInstaller.php:527
128
+ #: classes/SlideshowPluginInstaller.php:528
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 "Anzeige"
140
+
141
+ #: classes/SlideshowPluginInstaller.php:523
142
+ msgid "Width of the slideshow, set to parent&#39;s width on 0"
143
+ msgstr "Breite der Diashow, Standard = 0"
144
+
145
+ #: classes/SlideshowPluginInstaller.php:524
146
+ msgid "Height of the slideshow"
147
+ msgstr "Höhe der Diashow"
148
+
149
+ #: classes/SlideshowPluginInstaller.php:525
150
+ msgid "Height of the description boxes"
151
+ msgstr "Höhe der Beschreibungsbox"
152
+
153
+ #: classes/SlideshowPluginInstaller.php:526
154
+ msgid "Fit image into slide (stretching it)"
155
+ msgstr "Dia passend aufzoomen entsprechend der Vorgabe"
156
+
157
+ #: classes/SlideshowPluginInstaller.php:527
158
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:529
159
+ msgid "Show title and description"
160
+ msgstr "Zeige Titel und Beschreibung"
161
+
162
+ #: classes/SlideshowPluginInstaller.php:528
163
+ msgid "Hide description box, it will pop up when a mouse hovers over the slide"
164
+ msgstr "Beschreibungsbox verstecken, Anzeige erst bei Mausberührung"
165
+
166
+ #: classes/SlideshowPluginInstaller.php:529
167
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:531
168
+ msgid "Automatically slide to the next slide"
169
+ msgstr "automatisch weiter zum nächsten Dia"
170
+
171
+ #: classes/SlideshowPluginInstaller.php:529
172
+ #: classes/SlideshowPluginInstaller.php:530
173
+ #: classes/SlideshowPluginInstaller.php:531
174
+ #: classes/SlideshowPluginInstaller.php:532
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 "Konsole"
186
+
187
+ #: classes/SlideshowPluginInstaller.php:530
188
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:532
189
+ msgid "Return to the beginning of the slideshow after last slide"
190
+ msgstr "zum Anfang der Diashow zurückkehren nach dem letzten Dia"
191
+
192
+ #: classes/SlideshowPluginInstaller.php:531
193
+ msgid "Activate buttons (so the user can scroll through the slides)"
194
+ msgstr ""
195
+ "Kontrollknöpfe aktivieren (damit der Besucher zum nächsten Dia wechseln kann)"
196
+
197
+ #: classes/SlideshowPluginInstaller.php:532
198
+ msgid "Show control panel (play and pause button)"
199
+ msgstr "Bedienfeld anzeigen (Abspielen- und Pasueknopf)"
200
+
201
+ #: classes/SlideshowPluginPostType.php:38
202
+ msgid "Slideshows"
203
+ msgstr "Diashows"
204
+
205
+ #: classes/SlideshowPluginPostType.php:39
206
+ #: views/SlideshowPluginWidget/form.php:7
207
+ msgid "Slideshow"
208
+ msgstr "Diashow"
209
+
210
+ #: classes/SlideshowPluginPostType.php:40
211
+ msgid "Add New Slideshow"
212
+ msgstr "neue Diashow anlegen"
213
+
214
+ #: classes/SlideshowPluginPostType.php:41
215
+ msgid "Edit slideshow"
216
+ msgstr "Diashow bearbeiten"
217
+
218
+ #: classes/SlideshowPluginPostType.php:42
219
+ msgid "New slideshow"
220
+ msgstr "neue Diashow"
221
+
222
+ #: classes/SlideshowPluginPostType.php:43
223
+ msgid "View slideshow"
224
+ msgstr "Diashow anzeigen"
225
+
226
+ #: classes/SlideshowPluginPostType.php:44
227
+ msgid "Search slideshows"
228
+ msgstr "Diashow suchen"
229
+
230
+ #: classes/SlideshowPluginPostType.php:45
231
+ #: classes/SlideshowPluginPostType.php:46
232
+ msgid "No slideshows found"
233
+ msgstr "keine Diashow vorhanden"
234
+
235
+ #: classes/SlideshowPluginPostType.php:91
236
+ msgid "Information"
237
+ msgstr "Information"
238
+
239
+ #: classes/SlideshowPluginPostType.php:100
240
+ msgid "Slides List"
241
+ msgstr "Liste Diashow"
242
+
243
+ #: classes/SlideshowPluginPostType.php:109
244
+ msgid "Slideshow Style"
245
+ msgstr "Layout Diashow"
246
+
247
+ #: classes/SlideshowPluginPostType.php:118
248
+ msgid "Slideshow Settings"
249
+ msgstr "Einstellungen Diashow"
250
+
251
+ #: classes/SlideshowPluginPostType.php:174
252
+ #: classes/SlideshowPluginSlideInserter.php:222
253
+ #: views/SlideshowPluginPostType/slides.php:2
254
+ msgid "Insert"
255
+ msgstr "einfügen"
256
+
257
+ #: classes/SlideshowPluginPostType.php:183
258
+ #: views/SlideshowPluginPostType/slides.php:9
259
+ msgid "Add slides to this slideshow by using one of the buttons above."
260
+ msgstr ""
261
+ "benutzen Sie den Auswahlknopf oben um weitere Dias in die Diashow einzufügen."
262
+
263
+ #: classes/SlideshowPluginShortcode.php:148
264
+ msgid "No slideshow selected."
265
+ msgstr "Keine Diashow ausgewählt."
266
+
267
+ #: classes/SlideshowPluginSlideInserter.php:178
268
+ msgid "More results loaded"
269
+ msgstr "weitere Ergebnissse geladen"
270
+
271
+ #: classes/SlideshowPluginSlideInserter.php:233
272
+ msgid "Load more results"
273
+ msgstr "lade weitere Ergebnisse"
274
+
275
+ #: classes/SlideshowPluginSlideInserter.php:244
276
+ msgid "No images were found, click here to upload some."
277
+ msgstr "keine Bilder gefunden,hier klicken um weitere hochzuladen"
278
+
279
+ #: classes/SlideshowPluginSlideInserter.php:316
280
+ msgid "Are you sure you want to delete this slide?"
281
+ msgstr "Sind Sie Sicher dass Sie dieses Dia löschen möchten?"
282
+
283
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:523
284
+ msgid "Maximum width. When maximum width is 0, maximum width is ignored"
285
+ msgstr ""
286
+ "maximale Breite. Bei maximaler Breite = 0, wird die maximale Breite "
287
+ "ignoriert."
288
+
289
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
290
+ msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
291
+ msgstr "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
292
+
293
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
294
+ msgid "More info"
295
+ msgstr "weitere Informationen"
296
+
297
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
298
+ #, php-format
299
+ msgid ""
300
+ "Proportional relationship%s between slideshow's width and height (width:"
301
+ "height)"
302
+ msgstr ""
303
+ "proportionaler Zusammenhang%s zwischen der Breite und Höhe der Diashow "
304
+ "(Breite:Höhe)"
305
+
306
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:525
307
+ msgid "Slideshow's height"
308
+ msgstr "Höhe Diashow"
309
+
310
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:526
311
+ msgid "Fit image into slide (Stretch image)"
312
+ msgstr "einzel Bild in die Diashow einpassen (Bild strecken)"
313
+
314
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:527
315
+ msgid "Shrink slideshow's height when width shrinks"
316
+ msgstr ""
317
+ "Höhe proportional anpassen wenn sich die Breite der Diashow verringert."
318
+
319
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:528
320
+ msgid ""
321
+ "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
322
+ msgstr ""
323
+ "Ansprechbarkeit aktivieren (vermindere die Breite der Diashow wenn sich die "
324
+ "Seitenbreite verringert)"
325
+
326
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:530
327
+ msgid "Hide description box, pop up when mouse hovers over"
328
+ msgstr "Beschreibungsfeld ausblenden,einblenden bei Mausberührung"
329
+
330
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:533
331
+ msgid "Pause slideshow when mouse hovers over"
332
+ msgstr "Diashow pausieren bei Mausberührung"
333
+
334
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:534
335
+ msgid "Activate navigation buttons"
336
+ msgstr "Navigation aktivieren"
337
+
338
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:535
339
+ msgid "Hide navigation buttons, show when mouse hovers over"
340
+ msgstr "Navigation ausblenden, sichtbar bei Mausberührung"
341
+
342
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:536
343
+ msgid "Activate pagination"
344
+ msgstr "Seitennummerierung aktivieren"
345
+
346
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:537
347
+ msgid "Hide pagination, show when mouse hovers over"
348
+ msgstr "Seitennummerierung ausblenden, sichtbar bei Mausberührung"
349
+
350
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:538
351
+ msgid "Activate control panel (play and pause button)"
352
+ msgstr "Bedienfeld aktivieren (Abspiel- und Pauseknopf) "
353
+
354
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:539
355
+ msgid "Hide control panel, show when mouse hovers over"
356
+ msgstr "Bedienfeld ausblenden, sichtbar bei Mausberührung"
357
+
358
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:540
359
+ msgid "Wait until the next slide has loaded before showing it"
360
+ msgstr ""
361
+
362
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:541
363
+ msgid "Show a loading icon until the first slide appears"
364
+ msgstr ""
365
+
366
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:542
367
+ msgid "Randomize slides"
368
+ msgstr "Dias in zufälliger Reihenfolge anzeigen"
369
+
370
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:543
371
+ #, php-format
372
+ msgid "Avoid content filter (disable if '%s' is shown)"
373
+ msgstr "vermeide Inhaltsfilter (deaktiviere bei angezeigtem '%s')"
374
+
375
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
376
+ msgid "Slide Left"
377
+ msgstr "Dia von links"
378
+
379
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
380
+ msgid "Slide Right"
381
+ msgstr "Dia von rechts"
382
+
383
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
384
+ msgid "Slide Up"
385
+ msgstr "Dia aufwärts"
386
+
387
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
388
+ msgid "Slide Down"
389
+ msgstr "Dia abwärts"
390
+
391
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
392
+ msgid "Direct Fade"
393
+ msgstr "verblassen"
394
+
395
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
396
+ msgid "Random Animation"
397
+ msgstr "Zufalls-Animation"
398
+
399
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:569
400
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:570
401
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:571
402
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:572
403
+ msgid "Miscellaneous"
404
+ msgstr "Diverses"
405
+
406
+ #: classes/SlideshowPluginWidget.php:23
407
+ msgid "Enables you to show your slideshows in the widget area of your website."
408
+ msgstr ""
409
+ "ermöglicht Ihnen die Diashow im Widget-Bereich der Webseite anzuzeigen."
410
+
411
+ #: classes/SlideshowPluginWidget.php:29
412
+ msgid "Slideshow Widget"
413
+ msgstr "Diashow Widget"
414
+
415
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:46
416
+ msgid "Default stylesheets"
417
+ msgstr "Standard Layout"
418
+
419
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:60
420
+ msgid "Create a new custom style from this style"
421
+ msgstr "Erstelle ein eigenes Layout aus diesem Layout"
422
+
423
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:62
424
+ msgid "Customize"
425
+ msgstr "modifizieren"
426
+
427
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:76
428
+ msgid "Custom stylesheets"
429
+ msgstr "eigenes Layout"
430
+
431
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:89
432
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:168
433
+ msgid "Edit this style"
434
+ msgstr "dieses Layout bearbeiten"
435
+
436
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:91
437
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:170
438
+ #: views/SlideshowPluginPostType/slides.php:137
439
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:72
440
+ msgid "Edit"
441
+ msgstr "bearbeiten"
442
+
443
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:98
444
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:177
445
+ msgid "Delete this style"
446
+ msgstr "dieses Layout löschen"
447
+
448
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:100
449
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:179
450
+ msgid "Delete"
451
+ msgstr "löschen"
452
+
453
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:110
454
+ msgid "Click 'Customize' to create a new custom stylesheet."
455
+ msgstr "Klicke 'modifizieren' um eine neues Layout zu erstellen."
456
+
457
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:126
458
+ msgid "Select a stylesheet from the left to start customizing it."
459
+ msgstr "Wählen sie von links ein Layout um mit der Modifikation zu beginnen."
460
+
461
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:135
462
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:188
463
+ #: views/SlideshowPluginPostType/slides.php:58
464
+ #: views/SlideshowPluginPostType/slides.php:143
465
+ #: views/SlideshowPluginPostType/slides.php:195
466
+ #: views/SlideshowPluginPostType/slides.php:263
467
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:80
468
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:12
469
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:98
470
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:47
471
+ #: views/SlideshowPluginWidget/form.php:2
472
+ msgid "Title"
473
+ msgstr "Titel"
474
+
475
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:144
476
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:196
477
+ msgid "Style"
478
+ msgstr "Layout"
479
+
480
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:11
481
+ msgid "Note"
482
+ msgstr "Notiz"
483
+
484
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:18
485
+ #, php-format
486
+ msgid ""
487
+ "The settings set on this page apply only to newly created slideshows and "
488
+ "therefore do not alter any existing ones. To adapt a slideshow's settings, "
489
+ "%sclick here.%s"
490
+ msgstr ""
491
+ "Die Einstellungen auf dieser Seite werden nur auf die neu erstellten "
492
+ "Diashows angewandt, bereits bestehende werden davon nicht betroffen. Um die "
493
+ "Einstellunegn zu verändern, %sKlicken Sie hier.%s"
494
+
495
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:29
496
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:15
497
+ msgid "Default Slideshow Settings"
498
+ msgstr "Standardeinstellungen Diashow"
499
+
500
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:41
501
+ #: views/SlideshowPluginPostType/settings.php:12
502
+ msgid "settings"
503
+ msgstr "Einstellungen"
504
+
505
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:77
506
+ msgid "Default Slideshow Stylesheet"
507
+ msgstr "Standardeinstellungen Layout"
508
+
509
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:11
510
+ msgid "Add slideshows"
511
+ msgstr "Diashow hinzufügen"
512
+
513
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:12
514
+ msgid "Edit slideshows"
515
+ msgstr "Diashow bearbeiten"
516
+
517
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:13
518
+ msgid "Delete slideshows"
519
+ msgstr "Diashow löschen"
520
+
521
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:20
522
+ msgid "User Capabilities"
523
+ msgstr "Benutzerberechtigungen"
524
+
525
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:22
526
+ msgid "Select the user roles that will able to perform certain actions."
527
+ msgstr ""
528
+ "Wählen Sie die Stufe der Benutzerberechtigung zum ausführen bestimmter "
529
+ "Aktionen."
530
+
531
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:38
532
+ msgid "Untitled role"
533
+ msgstr "ohne Rang"
534
+
535
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:65
536
+ msgid "Settings"
537
+ msgstr "Einstellungen"
538
+
539
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:69
540
+ msgid "Stylesheet location"
541
+ msgstr ""
542
+
543
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:72
544
+ msgid "top"
545
+ msgstr ""
546
+
547
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:73
548
+ msgid "bottom"
549
+ msgstr ""
550
+
551
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:16
552
+ msgid "Custom Styles"
553
+ msgstr "Eigenmodifikationen"
554
+
555
+ #: views/SlideshowPluginPostType/information.php:1
556
+ msgid ""
557
+ "To use this slideshow in your website either add this piece of shortcode to "
558
+ "your posts or pages"
559
+ msgstr ""
560
+ "Um diese Diashow in Ihrer Webseite zu benutzen, fügen Sie bitte den "
561
+ "Quellcode in Ihre Artikel oder Seiten ein."
562
+
563
+ #: views/SlideshowPluginPostType/information.php:5
564
+ msgid ""
565
+ "Or add this piece of code to where ever in your website you want to place "
566
+ "the slideshow"
567
+ msgstr ""
568
+ "oder fügen Sie diesen Codeteil an jeder beliebigen Stelle auf Ihrer Webseite "
569
+ "zum Anzeigen der Diashow ein."
570
+
571
+ #: views/SlideshowPluginPostType/information.php:9
572
+ #, php-format
573
+ msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
574
+ msgstr ""
575
+ "oder gehen Sie auf die %swidgets page%s und zeigen die Diashow als Widget an."
576
+
577
+ #: views/SlideshowPluginPostType/settings.php:26
578
+ #: views/SlideshowPluginPostType/style-settings.php:11
579
+ msgid "Default"
580
+ msgstr "Standard"
581
+
582
+ #: views/SlideshowPluginPostType/slides.php:53
583
+ #: views/SlideshowPluginPostType/slides.php:190
584
+ #: views/SlideshowPluginSlideInserter/insert-text-button.php:1
585
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:6
586
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:41
587
+ msgid "Text slide"
588
+ msgstr "Textshow"
589
+
590
+ #: views/SlideshowPluginPostType/slides.php:60
591
+ #: views/SlideshowPluginPostType/slides.php:149
592
+ #: views/SlideshowPluginPostType/slides.php:197
593
+ #: views/SlideshowPluginPostType/slides.php:269
594
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:87
595
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:15
596
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:105
597
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:50
598
+ msgid "Description"
599
+ msgstr "Beschreibung"
600
+
601
+ #: views/SlideshowPluginPostType/slides.php:62
602
+ #: views/SlideshowPluginPostType/slides.php:199
603
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:21
604
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:56
605
+ msgid "Background color"
606
+ msgstr "Hintergrundfarbe"
607
+
608
+ #: views/SlideshowPluginPostType/slides.php:67
609
+ #: views/SlideshowPluginPostType/slides.php:154
610
+ #: views/SlideshowPluginPostType/slides.php:204
611
+ #: views/SlideshowPluginPostType/slides.php:274
612
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:94
613
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:28
614
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:112
615
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:64
616
+ msgid "URL"
617
+ msgstr "Webadresse"
618
+
619
+ #: views/SlideshowPluginPostType/slides.php:69
620
+ #: views/SlideshowPluginPostType/slides.php:156
621
+ #: views/SlideshowPluginPostType/slides.php:206
622
+ #: views/SlideshowPluginPostType/slides.php:276
623
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:97
624
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:31
625
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:115
626
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:67
627
+ msgid "Open URL in"
628
+ msgstr "öffne Webadresse in"
629
+
630
+ #: views/SlideshowPluginPostType/slides.php:71
631
+ #: views/SlideshowPluginPostType/slides.php:158
632
+ #: views/SlideshowPluginPostType/slides.php:208
633
+ #: views/SlideshowPluginPostType/slides.php:278
634
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:99
635
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:33
636
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:117
637
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:69
638
+ msgid "Same window"
639
+ msgstr "gleichem Fenster"
640
+
641
+ #: views/SlideshowPluginPostType/slides.php:72
642
+ #: views/SlideshowPluginPostType/slides.php:159
643
+ #: views/SlideshowPluginPostType/slides.php:209
644
+ #: views/SlideshowPluginPostType/slides.php:279
645
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:100
646
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:34
647
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:118
648
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:70
649
+ msgid "New window"
650
+ msgstr "neues Fenster"
651
+
652
+ #: views/SlideshowPluginPostType/slides.php:89
653
+ #: views/SlideshowPluginPostType/slides.php:229
654
+ #: views/SlideshowPluginSlideInserter/insert-video-button.php:1
655
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:53
656
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:23
657
+ msgid "Video slide"
658
+ msgstr "Videoshow"
659
+
660
+ #: views/SlideshowPluginPostType/slides.php:94
661
+ #: views/SlideshowPluginPostType/slides.php:234
662
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:59
663
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:29
664
+ msgid "Youtube Video ID"
665
+ msgstr "Youtube Video ID"
666
+
667
+ #: views/SlideshowPluginPostType/slides.php:132
668
+ #: views/SlideshowPluginPostType/slides.php:254
669
+ #: views/SlideshowPluginSlideInserter/insert-image-button.php:1
670
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:66
671
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:86
672
+ msgid "Image slide"
673
+ msgstr "Bildershow"
674
+
675
+ #: views/SlideshowPluginPostType/slides.php:170
676
+ msgid ""
677
+ "An error occurred while loading this slide, and it will not be present in "
678
+ "the slideshow"
679
+ msgstr ""
680
+ "Beim Laden des Dias trat ein Fehler auf und kann in der Diashow nicht "
681
+ "angezeigt werden."
682
+
683
+ #: views/SlideshowPluginPostType/slides.php:176
684
+ #: views/SlideshowPluginPostType/slides.php:217
685
+ #: views/SlideshowPluginPostType/slides.php:242
686
+ #: views/SlideshowPluginPostType/slides.php:288
687
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:109
688
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:42
689
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:75
690
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:127
691
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:78
692
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:45
693
+ msgid "Delete slide"
694
+ msgstr "Dia löschen"
695
+
696
+ #: views/SlideshowPluginPostType/style-settings.php:22
697
+ #, php-format
698
+ msgid "Custom styles can be created and customized %shere%s."
699
+ msgstr "Eigenmodifikationen können %shier%s erstellt und bearbeitet werden."
700
+
701
+ #: views/SlideshowPluginPostType/support-plugin.php:3
702
+ msgid "Help to keep this plugin free!"
703
+ msgstr "Helfen Sie dass das Plugin auch weiterhin kostenlos bleibt!"
704
+
705
+ #: views/SlideshowPluginPostType/support-plugin.php:6
706
+ msgid ""
707
+ "In order to keep you provided with the newest features, updates and bug "
708
+ "fixes, a lot of motivation is required. Therefore I'm kindly asking you to "
709
+ "consider making a small donation to the plugin or rating it as 5-stars on "
710
+ "Wordpress.org. Thank you in advance!"
711
+ msgstr ""
712
+ "Um sicherzustellen dass es auch weiterhin Programmerweiterungen, Hilfe bei "
713
+ "Fragen und Updates gibt bin ich auf Ihre Motivation und Unterstützung "
714
+ "angewiesen, deshalb bitte ich um eine kleine Spende für das Plugin oder um "
715
+ "eine 5-Sterne Bewertung auf Wordpress.org. Vielen Dank vorab."
716
+
717
+ #: views/SlideshowPluginPostType/support-plugin.php:15
718
+ msgid "Rate on Wordpress.org"
719
+ msgstr "auf Wordpress.org bewerten"
720
+
721
+ #: views/SlideshowPluginPostType/support-plugin.php:24
722
+ msgid "Frequently Asked Questions (FAQ)"
723
+ msgstr "häufig gestelle Fragen (FAQ)"
724
+
725
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
726
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
727
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
728
+ msgid "Insert a Slideshow"
729
+ msgstr "eine Diashow einfügen"
730
+
731
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
732
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
733
+ msgid "Insert Slideshow"
734
+ msgstr "Diashow einfügen"
735
+
736
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
737
+ msgid "Select a slideshow"
738
+ msgstr "Diashow auswählen"
739
+
740
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
741
+ #: views/SlideshowPluginWidget/form.php:12
742
+ msgid "Untitled slideshow"
743
+ msgstr "unbenannte Diashow"
744
+
745
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
746
+ msgid "Cancel"
747
+ msgstr "Abbruch"
748
+
749
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
750
+ #, php-format
751
+ msgid ""
752
+ "It seems you haven't created any slideshows yet. %sYou can create a "
753
+ "slideshow here!%s"
754
+ msgstr ""
755
+ "Sie haben noch keine Diashow angelegt. %sSie können eine Diashow hier anlegen"
756
+ "%s"
757
+
758
+ #: views/SlideshowPluginSlideInserter/search-popup.php:6
759
+ msgid "Search"
760
+ msgstr "Suche"
761
+
762
+ #: views/SlideshowPluginSlideInserter/search-popup.php:7
763
+ msgid "Search images by title or ID"
764
+ msgstr "Bildersuche über Titel oder ID"
765
+
766
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:18
767
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:53
768
+ msgid "Text color"
769
+ msgstr "Textfarbe"
770
+
771
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:66
772
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:36
773
+ msgid "Show related videos"
774
+ msgstr ""
775
+
776
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:58
777
+ msgid "(Leave empty for a transparent background)"
778
+ msgstr "(für transparenten Hintergrund bitte freilassen)"
779
+
780
+ #: views/SlideshowPluginUpload/upload-button.php:1
781
+ msgid "Upload/Manage Images"
782
+ msgstr "Bilder hochladen/verwalten"
783
+
784
+ #: views/SlideshowPluginWidget/form.php:9
785
+ msgid "Random Slideshow"
786
+ msgstr "Zufallsdiashow"
787
+
788
+ #~ msgid "Leave any field open to use default value."
789
+ #~ msgstr "Een veld dat open wordt gelaten neemt de standaardwaarde aan."
languages/slideshow-plugin-es_ES.mo CHANGED
Binary file
languages/slideshow-plugin-es_ES.po CHANGED
@@ -1,783 +1,819 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Slideshow Plugin\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-03-25 19:56+0100\n"
6
- "PO-Revision-Date: 2013-03-25 19:56+0100\n"
7
- "Last-Translator: Violeta Rosales <ellaes@violetarosales.com>\n"
8
- "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
- "Language: fr_FR\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: _e;__\n"
14
- "X-Poedit-Basepath: ../\n"
15
- "X-Generator: Poedit 1.5.5\n"
16
- "X-Poedit-SourceCharset: UTF-8\n"
17
- "X-Poedit-SearchPath-0: .\n"
18
-
19
- #: classes/SlideshowPluginGeneralSettings.php:64
20
- #: classes/SlideshowPluginGeneralSettings.php:65
21
- msgid "General Settings"
22
- msgstr ""
23
-
24
- #: classes/SlideshowPluginGeneralSettings.php:146
25
- msgid "New"
26
- msgstr ""
27
-
28
- #: classes/SlideshowPluginGeneralSettings.php:147
29
- msgid "Are you sure you want to delete this custom style?"
30
- msgstr ""
31
-
32
- #: classes/SlideshowPluginGeneralSettings.php:166
33
- #: classes/SlideshowPluginInstaller.php:441
34
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:6
35
- msgid "Light"
36
- msgstr "Claro"
37
-
38
- #: classes/SlideshowPluginGeneralSettings.php:167
39
- #: classes/SlideshowPluginInstaller.php:441
40
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:7
41
- msgid "Dark"
42
- msgstr "Obscuro"
43
-
44
- #: classes/SlideshowPluginGeneralSettings.php:271
45
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:49
46
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:131
47
- msgid "Untitled"
48
- msgstr ""
49
-
50
- #: classes/SlideshowPluginInstaller.php:438
51
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:378
52
- msgid "Yes"
53
- msgstr "Sí"
54
-
55
- #: classes/SlideshowPluginInstaller.php:439
56
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:379
57
- msgid "No"
58
- msgstr "No"
59
-
60
- #: classes/SlideshowPluginInstaller.php:441
61
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:477
62
- msgid "The style used for this slideshow"
63
- msgstr "El estilo usado para esta diapositiva"
64
-
65
- #: classes/SlideshowPluginInstaller.php:441
66
- msgid "Custom"
67
- msgstr "Personalizar"
68
-
69
- #: classes/SlideshowPluginInstaller.php:442
70
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:114
71
- msgid "Custom style editor"
72
- msgstr "Editor de estilo personalizado"
73
-
74
- #: classes/SlideshowPluginInstaller.php:443
75
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
76
- msgid "Animation used for transition between slides"
77
- msgstr "Animación para las transiciones entre las diapositivas"
78
-
79
- #: classes/SlideshowPluginInstaller.php:443
80
- msgid "Slide"
81
- msgstr "Diapositiva"
82
-
83
- #: classes/SlideshowPluginInstaller.php:443
84
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
85
- msgid "Fade"
86
- msgstr "Desvanecer"
87
-
88
- #: classes/SlideshowPluginInstaller.php:443
89
- #: classes/SlideshowPluginInstaller.php:444
90
- #: classes/SlideshowPluginInstaller.php:445
91
- #: classes/SlideshowPluginInstaller.php:446
92
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
93
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:420
94
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
95
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:422
96
- msgid "Animation"
97
- msgstr "Animación"
98
-
99
- #: classes/SlideshowPluginInstaller.php:444
100
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:420
101
- msgid "Number of seconds the slide takes to slide in"
102
- msgstr "Núero de segundos que tarda la diapositiva en entrar"
103
-
104
- #: classes/SlideshowPluginInstaller.php:445
105
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
106
- msgid "Number of seconds the description takes to slide in"
107
- msgstr "Número de segundos que tarda la descripción en entrar"
108
-
109
- #: classes/SlideshowPluginInstaller.php:446
110
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:422
111
- msgid "Seconds between changing slides"
112
- msgstr "Segundos entre cada diapositiva"
113
-
114
- #: classes/SlideshowPluginInstaller.php:447
115
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
116
- msgid "Number of slides to fit into one slide"
117
- msgstr "Número de imágenes/videos/texto dentro de cada diapositiva"
118
-
119
- #: classes/SlideshowPluginInstaller.php:447
120
- #: classes/SlideshowPluginInstaller.php:448
121
- #: classes/SlideshowPluginInstaller.php:449
122
- #: classes/SlideshowPluginInstaller.php:450
123
- #: classes/SlideshowPluginInstaller.php:451
124
- #: classes/SlideshowPluginInstaller.php:452
125
- #: classes/SlideshowPluginInstaller.php:453
126
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
127
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:424
128
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
129
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:426
130
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:427
131
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
132
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:429
133
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:430
134
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:431
135
- msgid "Display"
136
- msgstr "Mostrar"
137
-
138
- #: classes/SlideshowPluginInstaller.php:448
139
- msgid "Width of the slideshow, set to parent&#39;s width on 0"
140
- msgstr ""
141
- "Ancho de las diapositivas. Escribe 0 para tomar el ancho del nodo padre."
142
-
143
- #: classes/SlideshowPluginInstaller.php:449
144
- msgid "Height of the slideshow"
145
- msgstr "Alto de las diapositivas"
146
-
147
- #: classes/SlideshowPluginInstaller.php:450
148
- msgid "Height of the description boxes"
149
- msgstr "Alto de la caja de descripción"
150
-
151
- #: classes/SlideshowPluginInstaller.php:451
152
- msgid "Fit image into slide (stretching it)"
153
- msgstr "Adaptar la diapositiva (estirarla)"
154
-
155
- #: classes/SlideshowPluginInstaller.php:452
156
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:430
157
- msgid "Show title and description"
158
- msgstr "Mostrar título y descripción"
159
-
160
- #: classes/SlideshowPluginInstaller.php:453
161
- msgid "Hide description box, it will pop up when a mouse hovers over the slide"
162
- msgstr ""
163
- "Esconder la caja de descripción, se mostrará cuando el puntero esté sobre la "
164
- "diapositiva"
165
-
166
- #: classes/SlideshowPluginInstaller.php:454
167
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:432
168
- msgid "Automatically slide to the next slide"
169
- msgstr "Pasar automáticamente a la siguiente diapositiva"
170
-
171
- #: classes/SlideshowPluginInstaller.php:454
172
- #: classes/SlideshowPluginInstaller.php:455
173
- #: classes/SlideshowPluginInstaller.php:456
174
- #: classes/SlideshowPluginInstaller.php:457
175
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:432
176
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:433
177
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:434
178
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:435
179
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:436
180
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:437
181
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:438
182
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:439
183
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:440
184
- msgid "Control"
185
- msgstr "Control"
186
-
187
- #: classes/SlideshowPluginInstaller.php:455
188
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:433
189
- msgid "Return to the beginning of the slideshow after last slide"
190
- msgstr "Regresar al inicio de las diapositivas, al llegar al final"
191
-
192
- #: classes/SlideshowPluginInstaller.php:456
193
- msgid "Activate buttons (so the user can scroll through the slides)"
194
- msgstr ""
195
- "Activar botones (para que el usuario pueda desplazarse entre las "
196
- "diapositivas)"
197
-
198
- #: classes/SlideshowPluginInstaller.php:457
199
- msgid "Show control panel (play and pause button)"
200
- msgstr "Mostrar panel de control (botones de play y pausa)"
201
-
202
- #: classes/SlideshowPluginPostType.php:38
203
- msgid "Slideshows"
204
- msgstr "Diapositivas"
205
-
206
- #: classes/SlideshowPluginPostType.php:39
207
- #: views/SlideshowPluginWidget/form.php:7
208
- msgid "Slideshow"
209
- msgstr "Diapositiva"
210
-
211
- #: classes/SlideshowPluginPostType.php:40
212
- msgid "Add New Slideshow"
213
- msgstr "Agregar Nueva Diapositiva"
214
-
215
- #: classes/SlideshowPluginPostType.php:41
216
- msgid "Edit slideshow"
217
- msgstr "Editar diapositiva"
218
-
219
- #: classes/SlideshowPluginPostType.php:42
220
- msgid "New slideshow"
221
- msgstr "Nueva diapositiva"
222
-
223
- #: classes/SlideshowPluginPostType.php:43
224
- msgid "View slideshow"
225
- msgstr "Ver diapositivas"
226
-
227
- #: classes/SlideshowPluginPostType.php:44
228
- msgid "Search slideshows"
229
- msgstr "Buscar diapositivas"
230
-
231
- #: classes/SlideshowPluginPostType.php:45
232
- #: classes/SlideshowPluginPostType.php:46
233
- msgid "No slideshows found"
234
- msgstr "No se encontraron diapositivas"
235
-
236
- #: classes/SlideshowPluginPostType.php:155
237
- msgid "Information"
238
- msgstr "Información"
239
-
240
- #: classes/SlideshowPluginPostType.php:164
241
- msgid "Slides List"
242
- msgstr "Lista de diapositivas"
243
-
244
- #: classes/SlideshowPluginPostType.php:173
245
- msgid "Slideshow Style"
246
- msgstr "Estilo de las diapositivas"
247
-
248
- #: classes/SlideshowPluginPostType.php:182
249
- msgid "Slideshow Settings"
250
- msgstr "Configuración de las diapositivas"
251
-
252
- #: classes/SlideshowPluginPostType.php:232
253
- #: classes/SlideshowPluginSlideInserter.php:178
254
- #: views/SlideshowPluginPostType/slides.php:2
255
- msgid "Insert"
256
- msgstr "Insertar"
257
-
258
- #: classes/SlideshowPluginPostType.php:240
259
- #: views/SlideshowPluginPostType/slides.php:9
260
- msgid "Add slides to this slideshow by using one of the buttons above."
261
- msgstr "Agrega una diapositiva usando uno de los botones de abajo."
262
-
263
- #: classes/SlideshowPluginShortcode.php:132
264
- msgid "No slideshow selected."
265
- msgstr "No se ha seleccionado ninguna diapositiva"
266
-
267
- #: classes/SlideshowPluginSlideInserter.php:151
268
- msgid "More results loaded"
269
- msgstr ""
270
-
271
- #: classes/SlideshowPluginSlideInserter.php:187
272
- msgid "Load more results"
273
- msgstr "Cargar más resultados"
274
-
275
- #: classes/SlideshowPluginSlideInserter.php:196
276
- msgid "No images were found, click here to upload some."
277
- msgstr "No se encontraron imágenes, da clic para subir algunas."
278
-
279
- #: classes/SlideshowPluginSlideInserter.php:273
280
- msgid "Are you sure you want to delete this slide?"
281
- msgstr "¿Estás seguro de que quieres borrar esta diapositiva?"
282
-
283
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
284
- msgid "Slide Left"
285
- msgstr ""
286
-
287
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
288
- msgid "Slide Right"
289
- msgstr ""
290
-
291
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
292
- msgid "Slide Up"
293
- msgstr ""
294
-
295
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
296
- msgid "Slide Down"
297
- msgstr ""
298
-
299
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
300
- msgid "Direct Fade"
301
- msgstr ""
302
-
303
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
304
- msgid "Random Animation"
305
- msgstr ""
306
-
307
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:424
308
- msgid "Maximum width. When maximum width is 0, maximum width is ignored"
309
- msgstr ""
310
-
311
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
312
- msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
313
- msgstr ""
314
-
315
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
316
- msgid "More info"
317
- msgstr ""
318
-
319
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
320
- #, php-format
321
- msgid ""
322
- "Proportional relationship%s between slideshow's width and height (width:"
323
- "height)"
324
- msgstr ""
325
-
326
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:426
327
- msgid "Slideshow's height"
328
- msgstr ""
329
-
330
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:427
331
- msgid "Fit image into slide (Stretch image)"
332
- msgstr ""
333
-
334
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
335
- msgid "Shrink slideshow's height when width shrinks"
336
- msgstr ""
337
-
338
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:429
339
- msgid ""
340
- "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
341
- msgstr ""
342
-
343
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:431
344
- msgid "Hide description box, pop up when mouse hovers over"
345
- msgstr ""
346
-
347
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:434
348
- msgid "Pause slideshow when mouse hovers over"
349
- msgstr ""
350
-
351
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:435
352
- msgid "Activate navigation buttons"
353
- msgstr ""
354
-
355
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:436
356
- msgid "Hide navigation buttons, show when mouse hovers over"
357
- msgstr ""
358
-
359
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:437
360
- msgid "Activate pagination"
361
- msgstr ""
362
-
363
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:438
364
- msgid "Hide pagination, show when mouse hovers over"
365
- msgstr ""
366
-
367
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:439
368
- msgid "Activate control panel (play and pause button)"
369
- msgstr ""
370
-
371
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:440
372
- msgid "Hide control panel, show when mouse hovers over"
373
- msgstr ""
374
-
375
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:441
376
- msgid "Randomize slides"
377
- msgstr "Diapositivas aleatorias"
378
-
379
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:441
380
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:442
381
- msgid "Miscellaneous"
382
- msgstr "Miscelanea"
383
-
384
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:442
385
- #, php-format
386
- msgid "Avoid content filter (disable if '%s' is shown)"
387
- msgstr "Evitar filtro de contenido (desactivar si '%s' se muestra)"
388
-
389
- #: classes/SlideshowPluginWidget.php:23
390
- msgid "Enables you to show your slideshows in the widget area of your website."
391
- msgstr "Permite que puedas mostrar las diapositivas en el área de los Widgets"
392
-
393
- #: classes/SlideshowPluginWidget.php:29
394
- msgid "Slideshow Widget"
395
- msgstr "Widget de diapositiva"
396
-
397
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:38
398
- msgid "Default stylesheets"
399
- msgstr ""
400
-
401
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:52
402
- msgid "Create a new custom style from this style"
403
- msgstr ""
404
-
405
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:54
406
- msgid "Customize"
407
- msgstr ""
408
-
409
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:68
410
- msgid "Custom stylesheets"
411
- msgstr ""
412
-
413
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:81
414
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:160
415
- msgid "Edit this style"
416
- msgstr ""
417
-
418
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:83
419
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:162
420
- #: views/SlideshowPluginPostType/slides.php:137
421
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:46
422
- msgid "Edit"
423
- msgstr "Editar"
424
-
425
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:90
426
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:169
427
- msgid "Delete this style"
428
- msgstr ""
429
-
430
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:92
431
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:171
432
- msgid "Delete"
433
- msgstr ""
434
-
435
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:102
436
- msgid "Click 'Customize' to create a new custom stylesheet."
437
- msgstr ""
438
-
439
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:118
440
- msgid "Select a stylesheet from the left to start customizing it."
441
- msgstr ""
442
-
443
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:127
444
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:180
445
- #: views/SlideshowPluginPostType/slides.php:58
446
- #: views/SlideshowPluginPostType/slides.php:143
447
- #: views/SlideshowPluginPostType/slides.php:195
448
- #: views/SlideshowPluginPostType/slides.php:263
449
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:54
450
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:12
451
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:90
452
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:29
453
- #: views/SlideshowPluginWidget/form.php:2
454
- msgid "Title"
455
- msgstr "Título"
456
-
457
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:136
458
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:188
459
- msgid "Style"
460
- msgstr "Style"
461
-
462
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:11
463
- msgid "Note"
464
- msgstr ""
465
-
466
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:18
467
- #, php-format
468
- msgid ""
469
- "The settings set on this page apply only to newly created slideshows and "
470
- "therefore do not alter any existing ones. To adapt a slideshow's settings, "
471
- "%sclick here.%s"
472
- msgstr ""
473
-
474
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:30
475
- #: views/SlideshowPluginGeneralSettings/general-settings.php:16
476
- msgid "Default Slideshow Settings"
477
- msgstr ""
478
-
479
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:43
480
- #: views/SlideshowPluginPostType/settings.php:12
481
- msgid "settings"
482
- msgstr "Configuración"
483
-
484
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:80
485
- msgid "Default Slideshow Stylesheet"
486
- msgstr ""
487
-
488
- #: views/SlideshowPluginGeneralSettings/general-settings.php:15
489
- msgid "User Capabilities"
490
- msgstr ""
491
-
492
- #: views/SlideshowPluginGeneralSettings/general-settings.php:17
493
- msgid "Custom Styles"
494
- msgstr ""
495
-
496
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:8
497
- msgid "Add slideshows"
498
- msgstr ""
499
-
500
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:9
501
- msgid "Edit slideshows"
502
- msgstr ""
503
-
504
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:10
505
- msgid "Delete slideshows"
506
- msgstr ""
507
-
508
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:18
509
- msgid "Select the user roles that will able to perform certain actions."
510
- msgstr ""
511
-
512
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:35
513
- msgid "Untitled role"
514
- msgstr ""
515
-
516
- #: views/SlideshowPluginPostType/information.php:1
517
- msgid ""
518
- "To use this slideshow in your website either add this piece of shortcode to "
519
- "your posts or pages"
520
- msgstr ""
521
- "Para utilizar estas diapositivas en la página, copia este código y pégalo en "
522
- "el editor de la página o entrada"
523
-
524
- #: views/SlideshowPluginPostType/information.php:5
525
- msgid ""
526
- "Or add this piece of code to where ever in your website you want to place "
527
- "the slideshow"
528
- msgstr "O agrega este código en tu tema"
529
-
530
- #: views/SlideshowPluginPostType/information.php:9
531
- #, php-format
532
- msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
533
- msgstr "Ve al %sárea de widgets%s y muestra las Diapositivas como Widget"
534
-
535
- #: views/SlideshowPluginPostType/settings.php:26
536
- #: views/SlideshowPluginPostType/style-settings.php:11
537
- msgid "Default"
538
- msgstr "Por defecto"
539
-
540
- #: views/SlideshowPluginPostType/slides.php:53
541
- #: views/SlideshowPluginPostType/slides.php:190
542
- #: views/SlideshowPluginSlideInserter/insert-text-button.php:1
543
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:6
544
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:23
545
- msgid "Text slide"
546
- msgstr "Diapositiva de Texto"
547
-
548
- #: views/SlideshowPluginPostType/slides.php:60
549
- #: views/SlideshowPluginPostType/slides.php:149
550
- #: views/SlideshowPluginPostType/slides.php:197
551
- #: views/SlideshowPluginPostType/slides.php:269
552
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:61
553
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:15
554
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:97
555
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:32
556
- msgid "Description"
557
- msgstr "Descripción"
558
-
559
- #: views/SlideshowPluginPostType/slides.php:62
560
- #: views/SlideshowPluginPostType/slides.php:199
561
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:21
562
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:38
563
- msgid "Background color"
564
- msgstr "Color de fondo"
565
-
566
- #: views/SlideshowPluginPostType/slides.php:67
567
- #: views/SlideshowPluginPostType/slides.php:154
568
- #: views/SlideshowPluginPostType/slides.php:204
569
- #: views/SlideshowPluginPostType/slides.php:274
570
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:68
571
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:28
572
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:104
573
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:46
574
- msgid "URL"
575
- msgstr "URL"
576
-
577
- #: views/SlideshowPluginPostType/slides.php:69
578
- #: views/SlideshowPluginPostType/slides.php:156
579
- #: views/SlideshowPluginPostType/slides.php:206
580
- #: views/SlideshowPluginPostType/slides.php:276
581
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:71
582
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:31
583
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:107
584
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:49
585
- msgid "Open URL in"
586
- msgstr ""
587
-
588
- #: views/SlideshowPluginPostType/slides.php:71
589
- #: views/SlideshowPluginPostType/slides.php:158
590
- #: views/SlideshowPluginPostType/slides.php:208
591
- #: views/SlideshowPluginPostType/slides.php:278
592
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:73
593
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:33
594
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:109
595
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:51
596
- msgid "Same window"
597
- msgstr "Misma ventana"
598
-
599
- #: views/SlideshowPluginPostType/slides.php:72
600
- #: views/SlideshowPluginPostType/slides.php:159
601
- #: views/SlideshowPluginPostType/slides.php:209
602
- #: views/SlideshowPluginPostType/slides.php:279
603
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:74
604
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:34
605
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:110
606
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:52
607
- msgid "New window"
608
- msgstr "Ventana nueva"
609
-
610
- #: views/SlideshowPluginPostType/slides.php:89
611
- #: views/SlideshowPluginPostType/slides.php:229
612
- #: views/SlideshowPluginSlideInserter/insert-video-button.php:1
613
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:53
614
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:13
615
- msgid "Video slide"
616
- msgstr "Diapositiva de Video"
617
-
618
- #: views/SlideshowPluginPostType/slides.php:94
619
- #: views/SlideshowPluginPostType/slides.php:234
620
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:59
621
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:19
622
- msgid "Youtube Video ID"
623
- msgstr "Video de YouTube"
624
-
625
- #: views/SlideshowPluginPostType/slides.php:132
626
- #: views/SlideshowPluginPostType/slides.php:254
627
- #: views/SlideshowPluginSlideInserter/insert-image-button.php:1
628
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:40
629
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:78
630
- msgid "Image slide"
631
- msgstr "Diapositiva de Imagen"
632
-
633
- #: views/SlideshowPluginPostType/slides.php:170
634
- msgid ""
635
- "An error occurred while loading this slide, and it will not be present in "
636
- "the slideshow"
637
- msgstr ""
638
- "Ha ocurrido un error miestras se cargaba esta diapositiva y no puede ser "
639
- "presentada"
640
-
641
- #: views/SlideshowPluginPostType/slides.php:176
642
- #: views/SlideshowPluginPostType/slides.php:217
643
- #: views/SlideshowPluginPostType/slides.php:242
644
- #: views/SlideshowPluginPostType/slides.php:288
645
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:83
646
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:42
647
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:67
648
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:119
649
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:60
650
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:27
651
- msgid "Delete slide"
652
- msgstr "Borrar diapositiva"
653
-
654
- #: views/SlideshowPluginPostType/style-settings.php:22
655
- #, php-format
656
- msgid "Custom styles can be created and customized %shere%s."
657
- msgstr ""
658
-
659
- #: views/SlideshowPluginPostType/support-plugin.php:3
660
- msgid "Help to keep this plugin free!"
661
- msgstr "¡Ayuda a que este plugin sea gratis!"
662
-
663
- #: views/SlideshowPluginPostType/support-plugin.php:6
664
- msgid ""
665
- "In order to keep you provided with the newest features, forum support, and "
666
- "bug-fixes, a lot of motivation is required. Therefore I'm kindly asking you "
667
- "to consider making a small donation to the plugin or rating it as 5-stars on "
668
- "Wordpress.org. Thank you in advance!"
669
- msgstr ""
670
- "Con el fin de mantenerlo siempre con las características más recientes, el "
671
- "apoyo foro, y correcciones de errores, mucha motivación es necesaria. Por lo "
672
- "tanto estoy pidiendo amablemente que consideren hacer una pequeña donación "
673
- "al plugin o que califiquen como 5 estrellas en Wordpress.org. ¡Gracias de "
674
- "antemano!"
675
-
676
- #: views/SlideshowPluginPostType/support-plugin.php:15
677
- msgid "Rate on Wordpress.org"
678
- msgstr "Calificar en Wordpress.org"
679
-
680
- #: views/SlideshowPluginPostType/support-plugin.php:24
681
- msgid "Frequently Asked Questions (FAQ)"
682
- msgstr ""
683
-
684
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
685
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
686
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
687
- msgid "Insert a Slideshow"
688
- msgstr "Insertar una Diapositiva"
689
-
690
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
691
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
692
- msgid "Insert Slideshow"
693
- msgstr "Insertar Diapositiva"
694
-
695
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
696
- msgid "Select a slideshow"
697
- msgstr "Seleccionar una diapositiva"
698
-
699
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
700
- #: views/SlideshowPluginWidget/form.php:12
701
- msgid "Untitled slideshow"
702
- msgstr "Diapositiva sin título"
703
-
704
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
705
- msgid "Cancel"
706
- msgstr "Cancelar"
707
-
708
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
709
- #, php-format
710
- msgid ""
711
- "It seems you haven't created any slideshows yet. %sYou can create a "
712
- "slideshow here!%s"
713
- msgstr ""
714
- "Parece que no has creado ninguna diapositiva aún. %s¡Puedes crear una aquí!%s"
715
-
716
- #: views/SlideshowPluginSlideInserter/search-popup.php:6
717
- msgid "Search"
718
- msgstr "Buscar"
719
-
720
- #: views/SlideshowPluginSlideInserter/search-popup.php:7
721
- msgid "Search images by title or ID"
722
- msgstr "Buscar imágenes por título o ID"
723
-
724
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:18
725
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:35
726
- msgid "Text color"
727
- msgstr ""
728
-
729
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:40
730
- msgid "(Leave empty for a transparent background)"
731
- msgstr ""
732
-
733
- #: views/SlideshowPluginUpload/upload-button.php:1
734
- msgid "Upload/Manage Images"
735
- msgstr "Cargar/Administrar Imágenes"
736
-
737
- #: views/SlideshowPluginWidget/form.php:9
738
- msgid "Random Slideshow"
739
- msgstr "Diapositivas Aleatorias"
740
-
741
- #~ msgid "Questions / Suggestions"
742
- #~ msgstr "Preguntas / Sugerencias"
743
-
744
- #~ msgid "light"
745
- #~ msgstr "clair"
746
-
747
- #~ msgid "slide"
748
- #~ msgstr "diapo"
749
-
750
- #~ msgid "Custom style editor (Does not work with a Strict Doctype)"
751
- #~ msgstr "Aangepaste stijl bewerker (Werkt niet met een Strict Doctype)"
752
-
753
- #~ msgid "Has the Slideshow plugin helped you?"
754
- #~ msgstr "Heeft de Slideshow plugin je geholpen?"
755
-
756
- #~ msgid "Help it back!"
757
- #~ msgstr "Help hem terug!"
758
-
759
- #~ msgid ""
760
- #~ "If this plugin has filled you with happiness, please support the upkeep "
761
- #~ "of the plugin by rating it on Wordpress, posting a suggestion for "
762
- #~ "improvement on the support forum, or making a donation."
763
- #~ msgstr ""
764
- #~ "Als deze plugin je met blijdschap heeft vervuld, zou ik het enorm "
765
- #~ "waarderen als je de plugin wilt beoordelen op Wordpress, een suggestie "
766
- #~ "wilt maken voor verbetering, of een donatie doen wilt."
767
-
768
- #~ msgid "Click on an image to insert it as a slide"
769
- #~ msgstr "Klik op een plaatje om deze in te voegen als slide"
770
-
771
- #~ msgid "Width of the slideshow"
772
- #~ msgstr "Breedte van de slideshow"
773
-
774
- #~ msgid "Defaults to parent's width."
775
- #~ msgstr "Standaard ingesteld op de breedte van het bovenliggende element."
776
-
777
- #~ msgid "Send user to image URL on click"
778
- #~ msgstr ""
779
- #~ "Wanner de gebruiker op de afbeelding klikt, stuur hem naar de URL van het "
780
- #~ "plaatje"
781
-
782
- #~ msgid "Leave any field open to use default value."
783
- #~ msgstr "Een veld dat open wordt gelaten neemt de standaardwaarde aan."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Slideshow Plugin\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-08-21 10:50+0100\n"
6
+ "PO-Revision-Date: 2013-08-21 10:51+0100\n"
7
+ "Last-Translator: Violeta Rosales <ellaes@violetarosales.com>\n"
8
+ "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
+ "Language: fr_FR\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-KeywordsList: _e;__\n"
14
+ "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.5.7\n"
16
+ "X-Poedit-SourceCharset: UTF-8\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:516
35
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:6
36
+ msgid "Light"
37
+ msgstr "Claro"
38
+
39
+ #: classes/SlideshowPluginGeneralSettings.php:197
40
+ #: classes/SlideshowPluginInstaller.php:516
41
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:7
42
+ msgid "Dark"
43
+ msgstr "Obscuro"
44
+
45
+ #: classes/SlideshowPluginGeneralSettings.php:353
46
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:57
47
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:139
48
+ msgid "Untitled"
49
+ msgstr ""
50
+
51
+ #: classes/SlideshowPluginInstaller.php:513
52
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:472
53
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:67
54
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:37
55
+ msgid "Yes"
56
+ msgstr "Sí"
57
+
58
+ #: classes/SlideshowPluginInstaller.php:514
59
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:473
60
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:68
61
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:38
62
+ msgid "No"
63
+ msgstr "No"
64
+
65
+ #: classes/SlideshowPluginInstaller.php:516
66
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:610
67
+ msgid "The style used for this slideshow"
68
+ msgstr "El estilo usado para esta diapositiva"
69
+
70
+ #: classes/SlideshowPluginInstaller.php:516
71
+ msgid "Custom"
72
+ msgstr "Personalizar"
73
+
74
+ #: classes/SlideshowPluginInstaller.php:517
75
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:122
76
+ msgid "Custom style editor"
77
+ msgstr "Editor de estilo personalizado"
78
+
79
+ #: classes/SlideshowPluginInstaller.php:518
80
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:518
81
+ msgid "Animation used for transition between slides"
82
+ msgstr "Animación para las transiciones entre las diapositivas"
83
+
84
+ #: classes/SlideshowPluginInstaller.php:518
85
+ msgid "Slide"
86
+ msgstr "Diapositiva"
87
+
88
+ #: classes/SlideshowPluginInstaller.php:518
89
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
90
+ msgid "Fade"
91
+ msgstr "Desvanecer"
92
+
93
+ #: classes/SlideshowPluginInstaller.php:518
94
+ #: classes/SlideshowPluginInstaller.php:519
95
+ #: classes/SlideshowPluginInstaller.php:520
96
+ #: classes/SlideshowPluginInstaller.php:521
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 "Animación"
103
+
104
+ #: classes/SlideshowPluginInstaller.php:519
105
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:519
106
+ msgid "Number of seconds the slide takes to slide in"
107
+ msgstr "Núero de segundos que tarda la diapositiva en entrar"
108
+
109
+ #: classes/SlideshowPluginInstaller.php:520
110
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:520
111
+ msgid "Number of seconds the description takes to slide in"
112
+ msgstr "Número de segundos que tarda la descripción en entrar"
113
+
114
+ #: classes/SlideshowPluginInstaller.php:521
115
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:521
116
+ msgid "Seconds between changing slides"
117
+ msgstr "Segundos entre cada diapositiva"
118
+
119
+ #: classes/SlideshowPluginInstaller.php:522
120
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:522
121
+ msgid "Number of slides to fit into one slide"
122
+ msgstr "Número de imágenes/videos/texto dentro de cada diapositiva"
123
+
124
+ #: classes/SlideshowPluginInstaller.php:522
125
+ #: classes/SlideshowPluginInstaller.php:523
126
+ #: classes/SlideshowPluginInstaller.php:524
127
+ #: classes/SlideshowPluginInstaller.php:525
128
+ #: classes/SlideshowPluginInstaller.php:526
129
+ #: classes/SlideshowPluginInstaller.php:527
130
+ #: classes/SlideshowPluginInstaller.php:528
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 "Mostrar"
142
+
143
+ #: classes/SlideshowPluginInstaller.php:523
144
+ msgid "Width of the slideshow, set to parent&#39;s width on 0"
145
+ msgstr ""
146
+ "Ancho de las diapositivas. Escribe 0 para tomar el ancho del nodo padre."
147
+
148
+ #: classes/SlideshowPluginInstaller.php:524
149
+ msgid "Height of the slideshow"
150
+ msgstr "Alto de las diapositivas"
151
+
152
+ #: classes/SlideshowPluginInstaller.php:525
153
+ msgid "Height of the description boxes"
154
+ msgstr "Alto de la caja de descripción"
155
+
156
+ #: classes/SlideshowPluginInstaller.php:526
157
+ msgid "Fit image into slide (stretching it)"
158
+ msgstr "Adaptar la diapositiva (estirarla)"
159
+
160
+ #: classes/SlideshowPluginInstaller.php:527
161
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:529
162
+ msgid "Show title and description"
163
+ msgstr "Mostrar título y descripción"
164
+
165
+ #: classes/SlideshowPluginInstaller.php:528
166
+ msgid "Hide description box, it will pop up when a mouse hovers over the slide"
167
+ msgstr ""
168
+ "Esconder la caja de descripción, se mostrará cuando el puntero esté sobre la "
169
+ "diapositiva"
170
+
171
+ #: classes/SlideshowPluginInstaller.php:529
172
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:531
173
+ msgid "Automatically slide to the next slide"
174
+ msgstr "Pasar automáticamente a la siguiente diapositiva"
175
+
176
+ #: classes/SlideshowPluginInstaller.php:529
177
+ #: classes/SlideshowPluginInstaller.php:530
178
+ #: classes/SlideshowPluginInstaller.php:531
179
+ #: classes/SlideshowPluginInstaller.php:532
180
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:560
181
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:561
182
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:562
183
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:563
184
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:564
185
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:565
186
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:566
187
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:567
188
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:568
189
+ msgid "Control"
190
+ msgstr "Control"
191
+
192
+ #: classes/SlideshowPluginInstaller.php:530
193
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:532
194
+ msgid "Return to the beginning of the slideshow after last slide"
195
+ msgstr "Regresar al inicio de las diapositivas, al llegar al final"
196
+
197
+ #: classes/SlideshowPluginInstaller.php:531
198
+ msgid "Activate buttons (so the user can scroll through the slides)"
199
+ msgstr ""
200
+ "Activar botones (para que el usuario pueda desplazarse entre las "
201
+ "diapositivas)"
202
+
203
+ #: classes/SlideshowPluginInstaller.php:532
204
+ msgid "Show control panel (play and pause button)"
205
+ msgstr "Mostrar panel de control (botones de play y pausa)"
206
+
207
+ #: classes/SlideshowPluginPostType.php:38
208
+ msgid "Slideshows"
209
+ msgstr "Diapositivas"
210
+
211
+ #: classes/SlideshowPluginPostType.php:39
212
+ #: views/SlideshowPluginWidget/form.php:7
213
+ msgid "Slideshow"
214
+ msgstr "Diapositiva"
215
+
216
+ #: classes/SlideshowPluginPostType.php:40
217
+ msgid "Add New Slideshow"
218
+ msgstr "Agregar Nueva Diapositiva"
219
+
220
+ #: classes/SlideshowPluginPostType.php:41
221
+ msgid "Edit slideshow"
222
+ msgstr "Editar diapositiva"
223
+
224
+ #: classes/SlideshowPluginPostType.php:42
225
+ msgid "New slideshow"
226
+ msgstr "Nueva diapositiva"
227
+
228
+ #: classes/SlideshowPluginPostType.php:43
229
+ msgid "View slideshow"
230
+ msgstr "Ver diapositivas"
231
+
232
+ #: classes/SlideshowPluginPostType.php:44
233
+ msgid "Search slideshows"
234
+ msgstr "Buscar diapositivas"
235
+
236
+ #: classes/SlideshowPluginPostType.php:45
237
+ #: classes/SlideshowPluginPostType.php:46
238
+ msgid "No slideshows found"
239
+ msgstr "No se encontraron diapositivas"
240
+
241
+ #: classes/SlideshowPluginPostType.php:91
242
+ msgid "Information"
243
+ msgstr "Información"
244
+
245
+ #: classes/SlideshowPluginPostType.php:100
246
+ msgid "Slides List"
247
+ msgstr "Lista de diapositivas"
248
+
249
+ #: classes/SlideshowPluginPostType.php:109
250
+ msgid "Slideshow Style"
251
+ msgstr "Estilo de las diapositivas"
252
+
253
+ #: classes/SlideshowPluginPostType.php:118
254
+ msgid "Slideshow Settings"
255
+ msgstr "Configuración de las diapositivas"
256
+
257
+ #: classes/SlideshowPluginPostType.php:174
258
+ #: classes/SlideshowPluginSlideInserter.php:222
259
+ #: views/SlideshowPluginPostType/slides.php:2
260
+ msgid "Insert"
261
+ msgstr "Insertar"
262
+
263
+ #: classes/SlideshowPluginPostType.php:183
264
+ #: views/SlideshowPluginPostType/slides.php:9
265
+ msgid "Add slides to this slideshow by using one of the buttons above."
266
+ msgstr "Agrega una diapositiva usando uno de los botones de abajo."
267
+
268
+ #: classes/SlideshowPluginShortcode.php:148
269
+ msgid "No slideshow selected."
270
+ msgstr "No se ha seleccionado ninguna diapositiva"
271
+
272
+ #: classes/SlideshowPluginSlideInserter.php:178
273
+ msgid "More results loaded"
274
+ msgstr ""
275
+
276
+ #: classes/SlideshowPluginSlideInserter.php:233
277
+ msgid "Load more results"
278
+ msgstr "Cargar más resultados"
279
+
280
+ #: classes/SlideshowPluginSlideInserter.php:244
281
+ msgid "No images were found, click here to upload some."
282
+ msgstr "No se encontraron imágenes, da clic para subir algunas."
283
+
284
+ #: classes/SlideshowPluginSlideInserter.php:316
285
+ msgid "Are you sure you want to delete this slide?"
286
+ msgstr "¿Estás seguro de que quieres borrar esta diapositiva?"
287
+
288
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:523
289
+ msgid "Maximum width. When maximum width is 0, maximum width is ignored"
290
+ msgstr ""
291
+
292
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
293
+ msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
294
+ msgstr ""
295
+
296
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
297
+ msgid "More info"
298
+ msgstr ""
299
+
300
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
301
+ #, php-format
302
+ msgid ""
303
+ "Proportional relationship%s between slideshow's width and height (width:"
304
+ "height)"
305
+ msgstr ""
306
+
307
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:525
308
+ msgid "Slideshow's height"
309
+ msgstr ""
310
+
311
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:526
312
+ msgid "Fit image into slide (Stretch image)"
313
+ msgstr ""
314
+
315
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:527
316
+ msgid "Shrink slideshow's height when width shrinks"
317
+ msgstr ""
318
+
319
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:528
320
+ msgid ""
321
+ "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
322
+ msgstr ""
323
+
324
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:530
325
+ msgid "Hide description box, pop up when mouse hovers over"
326
+ msgstr ""
327
+
328
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:533
329
+ msgid "Pause slideshow when mouse hovers over"
330
+ msgstr ""
331
+
332
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:534
333
+ msgid "Activate navigation buttons"
334
+ msgstr ""
335
+
336
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:535
337
+ msgid "Hide navigation buttons, show when mouse hovers over"
338
+ msgstr ""
339
+
340
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:536
341
+ msgid "Activate pagination"
342
+ msgstr ""
343
+
344
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:537
345
+ msgid "Hide pagination, show when mouse hovers over"
346
+ msgstr ""
347
+
348
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:538
349
+ msgid "Activate control panel (play and pause button)"
350
+ msgstr ""
351
+
352
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:539
353
+ msgid "Hide control panel, show when mouse hovers over"
354
+ msgstr ""
355
+
356
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:540
357
+ msgid "Wait until the next slide has loaded before showing it"
358
+ msgstr ""
359
+
360
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:541
361
+ msgid "Show a loading icon until the first slide appears"
362
+ msgstr ""
363
+
364
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:542
365
+ msgid "Randomize slides"
366
+ msgstr "Diapositivas aleatorias"
367
+
368
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:543
369
+ #, php-format
370
+ msgid "Avoid content filter (disable if '%s' is shown)"
371
+ msgstr "Evitar filtro de contenido (desactivar si '%s' se muestra)"
372
+
373
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
374
+ msgid "Slide Left"
375
+ msgstr ""
376
+
377
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
378
+ msgid "Slide Right"
379
+ msgstr ""
380
+
381
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
382
+ msgid "Slide Up"
383
+ msgstr ""
384
+
385
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
386
+ msgid "Slide Down"
387
+ msgstr ""
388
+
389
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
390
+ msgid "Direct Fade"
391
+ msgstr ""
392
+
393
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
394
+ msgid "Random Animation"
395
+ msgstr ""
396
+
397
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:569
398
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:570
399
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:571
400
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:572
401
+ msgid "Miscellaneous"
402
+ msgstr "Miscelanea"
403
+
404
+ #: classes/SlideshowPluginWidget.php:23
405
+ msgid "Enables you to show your slideshows in the widget area of your website."
406
+ msgstr "Permite que puedas mostrar las diapositivas en el área de los Widgets"
407
+
408
+ #: classes/SlideshowPluginWidget.php:29
409
+ msgid "Slideshow Widget"
410
+ msgstr "Widget de diapositiva"
411
+
412
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:46
413
+ msgid "Default stylesheets"
414
+ msgstr ""
415
+
416
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:60
417
+ msgid "Create a new custom style from this style"
418
+ msgstr ""
419
+
420
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:62
421
+ msgid "Customize"
422
+ msgstr ""
423
+
424
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:76
425
+ msgid "Custom stylesheets"
426
+ msgstr ""
427
+
428
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:89
429
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:168
430
+ msgid "Edit this style"
431
+ msgstr ""
432
+
433
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:91
434
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:170
435
+ #: views/SlideshowPluginPostType/slides.php:137
436
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:72
437
+ msgid "Edit"
438
+ msgstr "Editar"
439
+
440
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:98
441
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:177
442
+ msgid "Delete this style"
443
+ msgstr ""
444
+
445
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:100
446
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:179
447
+ msgid "Delete"
448
+ msgstr ""
449
+
450
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:110
451
+ msgid "Click 'Customize' to create a new custom stylesheet."
452
+ msgstr ""
453
+
454
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:126
455
+ msgid "Select a stylesheet from the left to start customizing it."
456
+ msgstr ""
457
+
458
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:135
459
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:188
460
+ #: views/SlideshowPluginPostType/slides.php:58
461
+ #: views/SlideshowPluginPostType/slides.php:143
462
+ #: views/SlideshowPluginPostType/slides.php:195
463
+ #: views/SlideshowPluginPostType/slides.php:263
464
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:80
465
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:12
466
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:98
467
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:47
468
+ #: views/SlideshowPluginWidget/form.php:2
469
+ msgid "Title"
470
+ msgstr "Título"
471
+
472
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:144
473
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:196
474
+ msgid "Style"
475
+ msgstr "Style"
476
+
477
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:11
478
+ msgid "Note"
479
+ msgstr ""
480
+
481
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:18
482
+ #, php-format
483
+ msgid ""
484
+ "The settings set on this page apply only to newly created slideshows and "
485
+ "therefore do not alter any existing ones. To adapt a slideshow's settings, "
486
+ "%sclick here.%s"
487
+ msgstr ""
488
+
489
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:29
490
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:15
491
+ msgid "Default Slideshow Settings"
492
+ msgstr ""
493
+
494
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:41
495
+ #: views/SlideshowPluginPostType/settings.php:12
496
+ msgid "settings"
497
+ msgstr "Configuración"
498
+
499
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:77
500
+ msgid "Default Slideshow Stylesheet"
501
+ msgstr ""
502
+
503
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:11
504
+ msgid "Add slideshows"
505
+ msgstr ""
506
+
507
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:12
508
+ msgid "Edit slideshows"
509
+ msgstr ""
510
+
511
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:13
512
+ msgid "Delete slideshows"
513
+ msgstr ""
514
+
515
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:20
516
+ msgid "User Capabilities"
517
+ msgstr ""
518
+
519
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:22
520
+ msgid "Select the user roles that will able to perform certain actions."
521
+ msgstr ""
522
+
523
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:38
524
+ msgid "Untitled role"
525
+ msgstr ""
526
+
527
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:65
528
+ msgid "Settings"
529
+ msgstr "Configuración"
530
+
531
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:69
532
+ msgid "Stylesheet location"
533
+ msgstr ""
534
+
535
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:72
536
+ msgid "top"
537
+ msgstr ""
538
+
539
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:73
540
+ msgid "bottom"
541
+ msgstr ""
542
+
543
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:16
544
+ msgid "Custom Styles"
545
+ msgstr ""
546
+
547
+ #: views/SlideshowPluginPostType/information.php:1
548
+ msgid ""
549
+ "To use this slideshow in your website either add this piece of shortcode to "
550
+ "your posts or pages"
551
+ msgstr ""
552
+ "Para utilizar estas diapositivas en la página, copia este código y pégalo en "
553
+ "el editor de la página o entrada"
554
+
555
+ #: views/SlideshowPluginPostType/information.php:5
556
+ msgid ""
557
+ "Or add this piece of code to where ever in your website you want to place "
558
+ "the slideshow"
559
+ msgstr "O agrega este código en tu tema"
560
+
561
+ #: views/SlideshowPluginPostType/information.php:9
562
+ #, php-format
563
+ msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
564
+ msgstr "Ve al %sárea de widgets%s y muestra las Diapositivas como Widget"
565
+
566
+ #: views/SlideshowPluginPostType/settings.php:26
567
+ #: views/SlideshowPluginPostType/style-settings.php:11
568
+ msgid "Default"
569
+ msgstr "Por defecto"
570
+
571
+ #: views/SlideshowPluginPostType/slides.php:53
572
+ #: views/SlideshowPluginPostType/slides.php:190
573
+ #: views/SlideshowPluginSlideInserter/insert-text-button.php:1
574
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:6
575
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:41
576
+ msgid "Text slide"
577
+ msgstr "Diapositiva de Texto"
578
+
579
+ #: views/SlideshowPluginPostType/slides.php:60
580
+ #: views/SlideshowPluginPostType/slides.php:149
581
+ #: views/SlideshowPluginPostType/slides.php:197
582
+ #: views/SlideshowPluginPostType/slides.php:269
583
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:87
584
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:15
585
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:105
586
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:50
587
+ msgid "Description"
588
+ msgstr "Descripción"
589
+
590
+ #: views/SlideshowPluginPostType/slides.php:62
591
+ #: views/SlideshowPluginPostType/slides.php:199
592
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:21
593
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:56
594
+ msgid "Background color"
595
+ msgstr "Color de fondo"
596
+
597
+ #: views/SlideshowPluginPostType/slides.php:67
598
+ #: views/SlideshowPluginPostType/slides.php:154
599
+ #: views/SlideshowPluginPostType/slides.php:204
600
+ #: views/SlideshowPluginPostType/slides.php:274
601
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:94
602
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:28
603
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:112
604
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:64
605
+ msgid "URL"
606
+ msgstr "URL"
607
+
608
+ #: views/SlideshowPluginPostType/slides.php:69
609
+ #: views/SlideshowPluginPostType/slides.php:156
610
+ #: views/SlideshowPluginPostType/slides.php:206
611
+ #: views/SlideshowPluginPostType/slides.php:276
612
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:97
613
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:31
614
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:115
615
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:67
616
+ msgid "Open URL in"
617
+ msgstr ""
618
+
619
+ #: views/SlideshowPluginPostType/slides.php:71
620
+ #: views/SlideshowPluginPostType/slides.php:158
621
+ #: views/SlideshowPluginPostType/slides.php:208
622
+ #: views/SlideshowPluginPostType/slides.php:278
623
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:99
624
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:33
625
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:117
626
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:69
627
+ msgid "Same window"
628
+ msgstr "Misma ventana"
629
+
630
+ #: views/SlideshowPluginPostType/slides.php:72
631
+ #: views/SlideshowPluginPostType/slides.php:159
632
+ #: views/SlideshowPluginPostType/slides.php:209
633
+ #: views/SlideshowPluginPostType/slides.php:279
634
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:100
635
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:34
636
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:118
637
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:70
638
+ msgid "New window"
639
+ msgstr "Ventana nueva"
640
+
641
+ #: views/SlideshowPluginPostType/slides.php:89
642
+ #: views/SlideshowPluginPostType/slides.php:229
643
+ #: views/SlideshowPluginSlideInserter/insert-video-button.php:1
644
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:53
645
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:23
646
+ msgid "Video slide"
647
+ msgstr "Diapositiva de Video"
648
+
649
+ #: views/SlideshowPluginPostType/slides.php:94
650
+ #: views/SlideshowPluginPostType/slides.php:234
651
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:59
652
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:29
653
+ msgid "Youtube Video ID"
654
+ msgstr "Video de YouTube"
655
+
656
+ #: views/SlideshowPluginPostType/slides.php:132
657
+ #: views/SlideshowPluginPostType/slides.php:254
658
+ #: views/SlideshowPluginSlideInserter/insert-image-button.php:1
659
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:66
660
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:86
661
+ msgid "Image slide"
662
+ msgstr "Diapositiva de Imagen"
663
+
664
+ #: views/SlideshowPluginPostType/slides.php:170
665
+ msgid ""
666
+ "An error occurred while loading this slide, and it will not be present in "
667
+ "the slideshow"
668
+ msgstr ""
669
+ "Ha ocurrido un error miestras se cargaba esta diapositiva y no puede ser "
670
+ "presentada"
671
+
672
+ #: views/SlideshowPluginPostType/slides.php:176
673
+ #: views/SlideshowPluginPostType/slides.php:217
674
+ #: views/SlideshowPluginPostType/slides.php:242
675
+ #: views/SlideshowPluginPostType/slides.php:288
676
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:109
677
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:42
678
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:75
679
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:127
680
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:78
681
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:45
682
+ msgid "Delete slide"
683
+ msgstr "Borrar diapositiva"
684
+
685
+ #: views/SlideshowPluginPostType/style-settings.php:22
686
+ #, php-format
687
+ msgid "Custom styles can be created and customized %shere%s."
688
+ msgstr ""
689
+
690
+ #: views/SlideshowPluginPostType/support-plugin.php:3
691
+ msgid "Help to keep this plugin free!"
692
+ msgstr "¡Ayuda a que este plugin sea gratis!"
693
+
694
+ #: views/SlideshowPluginPostType/support-plugin.php:6
695
+ msgid ""
696
+ "In order to keep you provided with the newest features, updates and bug "
697
+ "fixes, a lot of motivation is required. Therefore I'm kindly asking you to "
698
+ "consider making a small donation to the plugin or rating it as 5-stars on "
699
+ "Wordpress.org. Thank you in advance!"
700
+ msgstr ""
701
+ "Con el fin de mantenerlo siempre con las características más recientes, el "
702
+ "apoyo foro, y correcciones de errores, mucha motivación es necesaria. Por lo "
703
+ "tanto estoy pidiendo amablemente que consideren hacer una pequeña donación "
704
+ "al plugin o que califiquen como 5 estrellas en Wordpress.org. ¡Gracias de "
705
+ "antemano!"
706
+
707
+ #: views/SlideshowPluginPostType/support-plugin.php:15
708
+ msgid "Rate on Wordpress.org"
709
+ msgstr "Calificar en Wordpress.org"
710
+
711
+ #: views/SlideshowPluginPostType/support-plugin.php:24
712
+ msgid "Frequently Asked Questions (FAQ)"
713
+ msgstr ""
714
+
715
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
716
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
717
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
718
+ msgid "Insert a Slideshow"
719
+ msgstr "Insertar una Diapositiva"
720
+
721
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
722
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
723
+ msgid "Insert Slideshow"
724
+ msgstr "Insertar Diapositiva"
725
+
726
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
727
+ msgid "Select a slideshow"
728
+ msgstr "Seleccionar una diapositiva"
729
+
730
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
731
+ #: views/SlideshowPluginWidget/form.php:12
732
+ msgid "Untitled slideshow"
733
+ msgstr "Diapositiva sin título"
734
+
735
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
736
+ msgid "Cancel"
737
+ msgstr "Cancelar"
738
+
739
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
740
+ #, php-format
741
+ msgid ""
742
+ "It seems you haven't created any slideshows yet. %sYou can create a "
743
+ "slideshow here!%s"
744
+ msgstr ""
745
+ "Parece que no has creado ninguna diapositiva aún. %s¡Puedes crear una aquí!%s"
746
+
747
+ #: views/SlideshowPluginSlideInserter/search-popup.php:6
748
+ msgid "Search"
749
+ msgstr "Buscar"
750
+
751
+ #: views/SlideshowPluginSlideInserter/search-popup.php:7
752
+ msgid "Search images by title or ID"
753
+ msgstr "Buscar imágenes por título o ID"
754
+
755
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:18
756
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:53
757
+ msgid "Text color"
758
+ msgstr ""
759
+
760
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:66
761
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:36
762
+ msgid "Show related videos"
763
+ msgstr ""
764
+
765
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:58
766
+ msgid "(Leave empty for a transparent background)"
767
+ msgstr ""
768
+
769
+ #: views/SlideshowPluginUpload/upload-button.php:1
770
+ msgid "Upload/Manage Images"
771
+ msgstr "Cargar/Administrar Imágenes"
772
+
773
+ #: views/SlideshowPluginWidget/form.php:9
774
+ msgid "Random Slideshow"
775
+ msgstr "Diapositivas Aleatorias"
776
+
777
+ #~ msgid "Questions / Suggestions"
778
+ #~ msgstr "Preguntas / Sugerencias"
779
+
780
+ #~ msgid "light"
781
+ #~ msgstr "clair"
782
+
783
+ #~ msgid "slide"
784
+ #~ msgstr "diapo"
785
+
786
+ #~ msgid "Custom style editor (Does not work with a Strict Doctype)"
787
+ #~ msgstr "Aangepaste stijl bewerker (Werkt niet met een Strict Doctype)"
788
+
789
+ #~ msgid "Has the Slideshow plugin helped you?"
790
+ #~ msgstr "Heeft de Slideshow plugin je geholpen?"
791
+
792
+ #~ msgid "Help it back!"
793
+ #~ msgstr "Help hem terug!"
794
+
795
+ #~ msgid ""
796
+ #~ "If this plugin has filled you with happiness, please support the upkeep "
797
+ #~ "of the plugin by rating it on Wordpress, posting a suggestion for "
798
+ #~ "improvement on the support forum, or making a donation."
799
+ #~ msgstr ""
800
+ #~ "Als deze plugin je met blijdschap heeft vervuld, zou ik het enorm "
801
+ #~ "waarderen als je de plugin wilt beoordelen op Wordpress, een suggestie "
802
+ #~ "wilt maken voor verbetering, of een donatie doen wilt."
803
+
804
+ #~ msgid "Click on an image to insert it as a slide"
805
+ #~ msgstr "Klik op een plaatje om deze in te voegen als slide"
806
+
807
+ #~ msgid "Width of the slideshow"
808
+ #~ msgstr "Breedte van de slideshow"
809
+
810
+ #~ msgid "Defaults to parent's width."
811
+ #~ msgstr "Standaard ingesteld op de breedte van het bovenliggende element."
812
+
813
+ #~ msgid "Send user to image URL on click"
814
+ #~ msgstr ""
815
+ #~ "Wanner de gebruiker op de afbeelding klikt, stuur hem naar de URL van het "
816
+ #~ "plaatje"
817
+
818
+ #~ msgid "Leave any field open to use default value."
819
+ #~ msgstr "Een veld dat open wordt gelaten neemt de standaardwaarde aan."
languages/slideshow-plugin-fa_IR.mo ADDED
Binary file
languages/slideshow-plugin-fa_IR.po ADDED
@@ -0,0 +1,775 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Slideshow Plugin\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-08-21 10:47+0100\n"
6
+ "PO-Revision-Date: 2013-08-21 10:48+0100\n"
7
+ "Last-Translator: Maziar Moradpour <w3design@email.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.5.7\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:516
33
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:6
34
+ msgid "Light"
35
+ msgstr "روشن"
36
+
37
+ #: classes/SlideshowPluginGeneralSettings.php:197
38
+ #: classes/SlideshowPluginInstaller.php:516
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:139
46
+ msgid "Untitled"
47
+ msgstr "بدون عنوان"
48
+
49
+ #: classes/SlideshowPluginInstaller.php:513
50
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:472
51
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:67
52
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:37
53
+ msgid "Yes"
54
+ msgstr "بله"
55
+
56
+ #: classes/SlideshowPluginInstaller.php:514
57
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:473
58
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:68
59
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:38
60
+ msgid "No"
61
+ msgstr "نه"
62
+
63
+ #: classes/SlideshowPluginInstaller.php:516
64
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:610
65
+ msgid "The style used for this slideshow"
66
+ msgstr "استایل استفاده شده برای این نمایشگر اسلاید"
67
+
68
+ #: classes/SlideshowPluginInstaller.php:516
69
+ msgid "Custom"
70
+ msgstr "سفارشی"
71
+
72
+ #: classes/SlideshowPluginInstaller.php:517
73
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:122
74
+ msgid "Custom style editor"
75
+ msgstr "ویرایشگر استایل سفارشی"
76
+
77
+ #: classes/SlideshowPluginInstaller.php:518
78
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:518
79
+ msgid "Animation used for transition between slides"
80
+ msgstr "انیمیشن برای انتقال بین اسلایدها استفاده می شود"
81
+
82
+ #: classes/SlideshowPluginInstaller.php:518
83
+ msgid "Slide"
84
+ msgstr "اسلاید"
85
+
86
+ #: classes/SlideshowPluginInstaller.php:518
87
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
88
+ msgid "Fade"
89
+ msgstr "محو شدن"
90
+
91
+ #: classes/SlideshowPluginInstaller.php:518
92
+ #: classes/SlideshowPluginInstaller.php:519
93
+ #: classes/SlideshowPluginInstaller.php:520
94
+ #: classes/SlideshowPluginInstaller.php:521
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:519
103
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:519
104
+ msgid "Number of seconds the slide takes to slide in"
105
+ msgstr "تعداد اسلاید ثانیه طول می کشد به اسلاید"
106
+
107
+ #: classes/SlideshowPluginInstaller.php:520
108
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:520
109
+ msgid "Number of seconds the description takes to slide in"
110
+ msgstr "تعداد ثانیه توضیحات طول می کشد به اسلاید"
111
+
112
+ #: classes/SlideshowPluginInstaller.php:521
113
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:521
114
+ msgid "Seconds between changing slides"
115
+ msgstr "ثانیه بین تغییر اسلاید"
116
+
117
+ #: classes/SlideshowPluginInstaller.php:522
118
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:522
119
+ msgid "Number of slides to fit into one slide"
120
+ msgstr "تعداد اسلایدها به جا را به یک اسلاید"
121
+
122
+ #: classes/SlideshowPluginInstaller.php:522
123
+ #: classes/SlideshowPluginInstaller.php:523
124
+ #: classes/SlideshowPluginInstaller.php:524
125
+ #: classes/SlideshowPluginInstaller.php:525
126
+ #: classes/SlideshowPluginInstaller.php:526
127
+ #: classes/SlideshowPluginInstaller.php:527
128
+ #: classes/SlideshowPluginInstaller.php:528
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:523
142
+ msgid "Width of the slideshow, set to parent&#39;s width on 0"
143
+ msgstr "عرض تصاویر به صورت خودکار، به عرض مادر بر روی 0 تنظیم شده است"
144
+
145
+ #: classes/SlideshowPluginInstaller.php:524
146
+ msgid "Height of the slideshow"
147
+ msgstr "ارتفاع تصاویر به صورت خودکار"
148
+
149
+ #: classes/SlideshowPluginInstaller.php:525
150
+ msgid "Height of the description boxes"
151
+ msgstr "ارتفاع جعبه توضیحات"
152
+
153
+ #: classes/SlideshowPluginInstaller.php:526
154
+ msgid "Fit image into slide (stretching it)"
155
+ msgstr "متناسب با تصویر به اسلاید (کشش)"
156
+
157
+ #: classes/SlideshowPluginInstaller.php:527
158
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:529
159
+ msgid "Show title and description"
160
+ msgstr "نمایش عنوان و توضیحات"
161
+
162
+ #: classes/SlideshowPluginInstaller.php:528
163
+ msgid "Hide description box, it will pop up when a mouse hovers over the slide"
164
+ msgstr ""
165
+ "پنهان کردن جعبه توضیحات، این پاپ تا زمانی که قراردادن موشواره ماوس بر روی "
166
+ "اسلاید"
167
+
168
+ #: classes/SlideshowPluginInstaller.php:529
169
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:531
170
+ msgid "Automatically slide to the next slide"
171
+ msgstr "به طور خودکار به اسلاید بعدی اسلاید"
172
+
173
+ #: classes/SlideshowPluginInstaller.php:529
174
+ #: classes/SlideshowPluginInstaller.php:530
175
+ #: classes/SlideshowPluginInstaller.php:531
176
+ #: classes/SlideshowPluginInstaller.php:532
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:530
190
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:532
191
+ msgid "Return to the beginning of the slideshow after last slide"
192
+ msgstr "بازگشت به ابتدای تصاویر به صورت خودکار پس از اسلاید آخرین"
193
+
194
+ #: classes/SlideshowPluginInstaller.php:531
195
+ msgid "Activate buttons (so the user can scroll through the slides)"
196
+ msgstr "دکمه های فعال کردن (به طوری که کاربر می تواند از طریق اسلاید حرکت)"
197
+
198
+ #: classes/SlideshowPluginInstaller.php:532
199
+ msgid "Show control panel (play and pause button)"
200
+ msgstr "نمایش کنترل پانل (روی دکمه پخش و مکث)"
201
+
202
+ #: classes/SlideshowPluginPostType.php:38
203
+ msgid "Slideshows"
204
+ msgstr "نمایشگر اسلاید"
205
+
206
+ #: classes/SlideshowPluginPostType.php:39
207
+ #: views/SlideshowPluginWidget/form.php:7
208
+ msgid "Slideshow"
209
+ msgstr "نمایش به صورت اسلاید"
210
+
211
+ #: classes/SlideshowPluginPostType.php:40
212
+ msgid "Add New Slideshow"
213
+ msgstr "اضافه کردن نمایشگر اسلاید جدید"
214
+
215
+ #: classes/SlideshowPluginPostType.php:41
216
+ msgid "Edit slideshow"
217
+ msgstr "ویرایش نمایشگر اسلاید"
218
+
219
+ #: classes/SlideshowPluginPostType.php:42
220
+ msgid "New slideshow"
221
+ msgstr "نمایشگر اسلاید جدید"
222
+
223
+ #: classes/SlideshowPluginPostType.php:43
224
+ msgid "View slideshow"
225
+ msgstr "مشاهده نمایشگر اسلاید"
226
+
227
+ #: classes/SlideshowPluginPostType.php:44
228
+ msgid "Search slideshows"
229
+ msgstr "نمایشگر اسلاید جستجو"
230
+
231
+ #: classes/SlideshowPluginPostType.php:45
232
+ #: classes/SlideshowPluginPostType.php:46
233
+ msgid "No slideshows found"
234
+ msgstr "نمایشگر اسلاید یافت نشد"
235
+
236
+ #: classes/SlideshowPluginPostType.php:91
237
+ msgid "Information"
238
+ msgstr "اطلاعات"
239
+
240
+ #: classes/SlideshowPluginPostType.php:100
241
+ msgid "Slides List"
242
+ msgstr "فهرست اسلاید"
243
+
244
+ #: classes/SlideshowPluginPostType.php:109
245
+ msgid "Slideshow Style"
246
+ msgstr "سبک نمایشگر اسلاید"
247
+
248
+ #: classes/SlideshowPluginPostType.php:118
249
+ msgid "Slideshow Settings"
250
+ msgstr "تنظیمات نمایشگر اسلاید"
251
+
252
+ #: classes/SlideshowPluginPostType.php:174
253
+ #: classes/SlideshowPluginSlideInserter.php:222
254
+ #: views/SlideshowPluginPostType/slides.php:2
255
+ msgid "Insert"
256
+ msgstr "درج"
257
+
258
+ #: classes/SlideshowPluginPostType.php:183
259
+ #: views/SlideshowPluginPostType/slides.php:9
260
+ msgid "Add slides to this slideshow by using one of the buttons above."
261
+ msgstr ""
262
+ "افزودن اسلاید به این نمایشگر اسلاید به صورت خودکار با استفاده از یکی از دکمه "
263
+ "های بالا."
264
+
265
+ #: classes/SlideshowPluginShortcode.php:148
266
+ msgid "No slideshow selected."
267
+ msgstr "نمایشگر اسلایدی انتخاب نشده"
268
+
269
+ #: classes/SlideshowPluginSlideInserter.php:178
270
+ msgid "More results loaded"
271
+ msgstr "نتایج بیشتر لود شده"
272
+
273
+ #: classes/SlideshowPluginSlideInserter.php:233
274
+ msgid "Load more results"
275
+ msgstr "بارگیری نتایج بیشتر"
276
+
277
+ #: classes/SlideshowPluginSlideInserter.php:244
278
+ msgid "No images were found, click here to upload some."
279
+ msgstr "تصویری یافت نشد، برای آپلود تصاویر جدید اینجا را کلیک کنید."
280
+
281
+ #: classes/SlideshowPluginSlideInserter.php:316
282
+ msgid "Are you sure you want to delete this slide?"
283
+ msgstr "آیا شما مطمئن هستید که میخواهید این اسلاید را حذف کنید؟"
284
+
285
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:523
286
+ msgid "Maximum width. When maximum width is 0, maximum width is ignored"
287
+ msgstr "حداکثر عرض. وقتی حداکثر عرض 0، حداکثر عرض نادیده گرفته می شود"
288
+
289
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
290
+ msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
291
+ msgstr "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
292
+
293
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
294
+ msgid "More info"
295
+ msgstr "اطلاعات بیشتر"
296
+
297
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
298
+ #, php-format
299
+ msgid ""
300
+ "Proportional relationship%s between slideshow's width and height (width:"
301
+ "height)"
302
+ msgstr "رابطه متناسب %s بین طول و عرض نمایشگر اسلاید (width:height)"
303
+
304
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:525
305
+ msgid "Slideshow's height"
306
+ msgstr "نمایشگر اسلاید تصاویر به صورت اسلاید ارتفاع"
307
+
308
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:526
309
+ msgid "Fit image into slide (Stretch image)"
310
+ msgstr "متناسب با تصویر به اسلاید (تصویر کشش)"
311
+
312
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:527
313
+ msgid "Shrink slideshow's height when width shrinks"
314
+ msgstr "کوچک ارتفاع نمایشگر اسلاید زمانی صورت کاهش عرض"
315
+
316
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:528
317
+ msgid ""
318
+ "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
319
+ msgstr "فعال کردن واکنش (کوچک عرض نمایشگر اسلاید زمانی که کاهش عرض صفحه)"
320
+
321
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:530
322
+ msgid "Hide description box, pop up when mouse hovers over"
323
+ msgstr "پنهان کردن توضیحات، ظاهر شدن زمانی که موشواره موس بر روی آن حرکت کرد."
324
+
325
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:533
326
+ msgid "Pause slideshow when mouse hovers over"
327
+ msgstr "توقف نمایشگر اسلاید هنگامی که موشواره موس بر روی آن حرکت کرد"
328
+
329
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:534
330
+ msgid "Activate navigation buttons"
331
+ msgstr "دکمه های ناوبری فعال"
332
+
333
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:535
334
+ msgid "Hide navigation buttons, show when mouse hovers over"
335
+ msgstr ""
336
+ "پنهان کردن دکمه های ناوبری، نشان دادن هنگامی که موشواره ماوس بر روی آن حرکت "
337
+ "کرد."
338
+
339
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:536
340
+ msgid "Activate pagination"
341
+ msgstr "فعال کردن صفحه بندی"
342
+
343
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:537
344
+ msgid "Hide pagination, show when mouse hovers over"
345
+ msgstr ""
346
+ "پنهان کردن صفحه بندی، نشان دادن هنگامی که موشواره ماوس بر روی آن حرکت کرد."
347
+
348
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:538
349
+ msgid "Activate control panel (play and pause button)"
350
+ msgstr "فعال شدن صفحه کنترل (دکمه پخش و توقف )"
351
+
352
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:539
353
+ msgid "Hide control panel, show when mouse hovers over"
354
+ msgstr "پنهان شدن صفحه کنترل، وقتی که موشواره موس بر روی آن حرکت کرد."
355
+
356
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:540
357
+ msgid "Wait until the next slide has loaded before showing it"
358
+ msgstr ""
359
+
360
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:541
361
+ msgid "Show a loading icon until the first slide appears"
362
+ msgstr ""
363
+
364
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:542
365
+ msgid "Randomize slides"
366
+ msgstr "اسلاید تصادفی"
367
+
368
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:543
369
+ #, php-format
370
+ msgid "Avoid content filter (disable if '%s' is shown)"
371
+ msgstr "اجتناب از فیلتر محتوا (غیر فعال کرد '%s' نشان داده شده است)"
372
+
373
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
374
+ msgid "Slide Left"
375
+ msgstr "کشویی سمت چپ"
376
+
377
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
378
+ msgid "Slide Right"
379
+ msgstr "کشویی سمت راست"
380
+
381
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
382
+ msgid "Slide Up"
383
+ msgstr "کشویی به بالا"
384
+
385
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
386
+ msgid "Slide Down"
387
+ msgstr "کشویی به پائین"
388
+
389
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
390
+ msgid "Direct Fade"
391
+ msgstr "محو شدن مستقیم"
392
+
393
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
394
+ msgid "Random Animation"
395
+ msgstr "انیمیشن تصادفی"
396
+
397
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:569
398
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:570
399
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:571
400
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:572
401
+ msgid "Miscellaneous"
402
+ msgstr "متفرقه"
403
+
404
+ #: classes/SlideshowPluginWidget.php:23
405
+ msgid "Enables you to show your slideshows in the widget area of your website."
406
+ msgstr ""
407
+ "شما قادر خواهید بود نمایشگر اسلاید خود را در منطقه ابزارک وب سایت خود را "
408
+ "نشان دهید."
409
+
410
+ #: classes/SlideshowPluginWidget.php:29
411
+ msgid "Slideshow Widget"
412
+ msgstr "ابزارک نمایشگر اسلاید"
413
+
414
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:46
415
+ msgid "Default stylesheets"
416
+ msgstr "شیوه نامه پیش فرض"
417
+
418
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:60
419
+ msgid "Create a new custom style from this style"
420
+ msgstr "ایجاد استایل جدید از روی این استایل"
421
+
422
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:62
423
+ msgid "Customize"
424
+ msgstr "سفارشی"
425
+
426
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:76
427
+ msgid "Custom stylesheets"
428
+ msgstr "شیوه نامه سفارشی"
429
+
430
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:89
431
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:168
432
+ msgid "Edit this style"
433
+ msgstr "وارایش این استایل"
434
+
435
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:91
436
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:170
437
+ #: views/SlideshowPluginPostType/slides.php:137
438
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:72
439
+ msgid "Edit"
440
+ msgstr "ویرایش"
441
+
442
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:98
443
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:177
444
+ msgid "Delete this style"
445
+ msgstr "حذف این استایل"
446
+
447
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:100
448
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:179
449
+ msgid "Delete"
450
+ msgstr "حذف"
451
+
452
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:110
453
+ msgid "Click 'Customize' to create a new custom stylesheet."
454
+ msgstr "برای ایجاد یک شیوه نامه جدید بر روی 'سفارشی' کلیک کنید."
455
+
456
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:126
457
+ msgid "Select a stylesheet from the left to start customizing it."
458
+ msgstr "یک شیوه نامه از سمت چپ انتخاب و شروع به سفارشی کردن آن را انتخاب کنید."
459
+
460
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:135
461
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:188
462
+ #: views/SlideshowPluginPostType/slides.php:58
463
+ #: views/SlideshowPluginPostType/slides.php:143
464
+ #: views/SlideshowPluginPostType/slides.php:195
465
+ #: views/SlideshowPluginPostType/slides.php:263
466
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:80
467
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:12
468
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:98
469
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:47
470
+ #: views/SlideshowPluginWidget/form.php:2
471
+ msgid "Title"
472
+ msgstr "عنوان"
473
+
474
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:144
475
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:196
476
+ msgid "Style"
477
+ msgstr "استایل"
478
+
479
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:11
480
+ msgid "Note"
481
+ msgstr "یادداشت"
482
+
483
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:18
484
+ #, php-format
485
+ msgid ""
486
+ "The settings set on this page apply only to newly created slideshows and "
487
+ "therefore do not alter any existing ones. To adapt a slideshow's settings, "
488
+ "%sclick here.%s"
489
+ msgstr ""
490
+ "تنظیمات در این صفحه فقط روی به نمایشگر اسلایدهایی که از این پس ایجاد می شود "
491
+ "اعمال خواهد شد و هیچ کدام از نمایشگرهای اسلاید موجود را تغییر نخواهد داد. "
492
+ "برای انطباق تنظیمات روی همه نمایشگرهای اسلاید %sاینجا کلیک کنید%s."
493
+
494
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:29
495
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:15
496
+ msgid "Default Slideshow Settings"
497
+ msgstr "تنظیمات پیش فرض نمایشگر اسلاید"
498
+
499
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:41
500
+ #: views/SlideshowPluginPostType/settings.php:12
501
+ msgid "settings"
502
+ msgstr "تنظیمات"
503
+
504
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:77
505
+ msgid "Default Slideshow Stylesheet"
506
+ msgstr "پیش فرض سبک نمایشگر اسلاید"
507
+
508
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:11
509
+ msgid "Add slideshows"
510
+ msgstr "افزودن نمایشگر اسلاید"
511
+
512
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:12
513
+ msgid "Edit slideshows"
514
+ msgstr "ویرایش نمایشگر اسلاید"
515
+
516
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:13
517
+ msgid "Delete slideshows"
518
+ msgstr "حذف نمایشگر اسلاید"
519
+
520
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:20
521
+ msgid "User Capabilities"
522
+ msgstr "قابلیت این کاربر"
523
+
524
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:22
525
+ msgid "Select the user roles that will able to perform certain actions."
526
+ msgstr "نقش های کاربر است قادر خواهد بود به انجام اقدامات خاصی انتخاب ."
527
+
528
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:38
529
+ msgid "Untitled role"
530
+ msgstr "نقش بدون عنوان"
531
+
532
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:65
533
+ msgid "Settings"
534
+ msgstr "تنظیمات"
535
+
536
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:69
537
+ msgid "Stylesheet location"
538
+ msgstr ""
539
+
540
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:72
541
+ msgid "top"
542
+ msgstr ""
543
+
544
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:73
545
+ msgid "bottom"
546
+ msgstr ""
547
+
548
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:16
549
+ msgid "Custom Styles"
550
+ msgstr "استایل سفارشی"
551
+
552
+ #: views/SlideshowPluginPostType/information.php:1
553
+ msgid ""
554
+ "To use this slideshow in your website either add this piece of shortcode to "
555
+ "your posts or pages"
556
+ msgstr "پست‌ها یا برگه‌های شما"
557
+
558
+ #: views/SlideshowPluginPostType/information.php:5
559
+ msgid ""
560
+ "Or add this piece of code to where ever in your website you want to place "
561
+ "the slideshow"
562
+ msgstr "نمایشگر اسلاید"
563
+
564
+ #: views/SlideshowPluginPostType/information.php:9
565
+ #, php-format
566
+ msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
567
+ msgstr "یا استفاده در %sبخش ابزارک%s و نمایش آن در ابزارک"
568
+
569
+ #: views/SlideshowPluginPostType/settings.php:26
570
+ #: views/SlideshowPluginPostType/style-settings.php:11
571
+ msgid "Default"
572
+ msgstr "پیش فرض"
573
+
574
+ #: views/SlideshowPluginPostType/slides.php:53
575
+ #: views/SlideshowPluginPostType/slides.php:190
576
+ #: views/SlideshowPluginSlideInserter/insert-text-button.php:1
577
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:6
578
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:41
579
+ msgid "Text slide"
580
+ msgstr "متن"
581
+
582
+ #: views/SlideshowPluginPostType/slides.php:60
583
+ #: views/SlideshowPluginPostType/slides.php:149
584
+ #: views/SlideshowPluginPostType/slides.php:197
585
+ #: views/SlideshowPluginPostType/slides.php:269
586
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:87
587
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:15
588
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:105
589
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:50
590
+ msgid "Description"
591
+ msgstr "توضیحات"
592
+
593
+ #: views/SlideshowPluginPostType/slides.php:62
594
+ #: views/SlideshowPluginPostType/slides.php:199
595
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:21
596
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:56
597
+ msgid "Background color"
598
+ msgstr "رنگ پس زمینه"
599
+
600
+ #: views/SlideshowPluginPostType/slides.php:67
601
+ #: views/SlideshowPluginPostType/slides.php:154
602
+ #: views/SlideshowPluginPostType/slides.php:204
603
+ #: views/SlideshowPluginPostType/slides.php:274
604
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:94
605
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:28
606
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:112
607
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:64
608
+ msgid "URL"
609
+ msgstr "آدرس URL"
610
+
611
+ #: views/SlideshowPluginPostType/slides.php:69
612
+ #: views/SlideshowPluginPostType/slides.php:156
613
+ #: views/SlideshowPluginPostType/slides.php:206
614
+ #: views/SlideshowPluginPostType/slides.php:276
615
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:97
616
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:31
617
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:115
618
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:67
619
+ msgid "Open URL in"
620
+ msgstr "باز کردن آدرس URL در"
621
+
622
+ #: views/SlideshowPluginPostType/slides.php:71
623
+ #: views/SlideshowPluginPostType/slides.php:158
624
+ #: views/SlideshowPluginPostType/slides.php:208
625
+ #: views/SlideshowPluginPostType/slides.php:278
626
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:99
627
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:33
628
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:117
629
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:69
630
+ msgid "Same window"
631
+ msgstr "همان پنجره"
632
+
633
+ #: views/SlideshowPluginPostType/slides.php:72
634
+ #: views/SlideshowPluginPostType/slides.php:159
635
+ #: views/SlideshowPluginPostType/slides.php:209
636
+ #: views/SlideshowPluginPostType/slides.php:279
637
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:100
638
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:34
639
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:118
640
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:70
641
+ msgid "New window"
642
+ msgstr "پنجره جدید"
643
+
644
+ #: views/SlideshowPluginPostType/slides.php:89
645
+ #: views/SlideshowPluginPostType/slides.php:229
646
+ #: views/SlideshowPluginSlideInserter/insert-video-button.php:1
647
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:53
648
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:23
649
+ msgid "Video slide"
650
+ msgstr "ویدیو"
651
+
652
+ #: views/SlideshowPluginPostType/slides.php:94
653
+ #: views/SlideshowPluginPostType/slides.php:234
654
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:59
655
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:29
656
+ msgid "Youtube Video ID"
657
+ msgstr "شناسه ویدیو در یوتوب"
658
+
659
+ #: views/SlideshowPluginPostType/slides.php:132
660
+ #: views/SlideshowPluginPostType/slides.php:254
661
+ #: views/SlideshowPluginSlideInserter/insert-image-button.php:1
662
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:66
663
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:86
664
+ msgid "Image slide"
665
+ msgstr "تصویر"
666
+
667
+ #: views/SlideshowPluginPostType/slides.php:170
668
+ msgid ""
669
+ "An error occurred while loading this slide, and it will not be present in "
670
+ "the slideshow"
671
+ msgstr "نمایشگر اسلاید"
672
+
673
+ #: views/SlideshowPluginPostType/slides.php:176
674
+ #: views/SlideshowPluginPostType/slides.php:217
675
+ #: views/SlideshowPluginPostType/slides.php:242
676
+ #: views/SlideshowPluginPostType/slides.php:288
677
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:109
678
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:42
679
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:75
680
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:127
681
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:78
682
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:45
683
+ msgid "Delete slide"
684
+ msgstr "حذف اسلاید"
685
+
686
+ #: views/SlideshowPluginPostType/style-settings.php:22
687
+ #, php-format
688
+ msgid "Custom styles can be created and customized %shere%s."
689
+ msgstr "استایلها به صورت سفارشی را می توان ایجاد و سفارشی %shere%s"
690
+
691
+ #: views/SlideshowPluginPostType/support-plugin.php:3
692
+ msgid "Help to keep this plugin free!"
693
+ msgstr "کمک به حفظ این افزونه !"
694
+
695
+ #: views/SlideshowPluginPostType/support-plugin.php:6
696
+ msgid ""
697
+ "In order to keep you provided with the newest features, updates and bug "
698
+ "fixes, a lot of motivation is required. Therefore I'm kindly asking you to "
699
+ "consider making a small donation to the plugin or rating it as 5-stars on "
700
+ "Wordpress.org. Thank you in advance!"
701
+ msgstr ""
702
+
703
+ #: views/SlideshowPluginPostType/support-plugin.php:15
704
+ msgid "Rate on Wordpress.org"
705
+ msgstr "رای دادن در Wordpress.org"
706
+
707
+ #: views/SlideshowPluginPostType/support-plugin.php:24
708
+ msgid "Frequently Asked Questions (FAQ)"
709
+ msgstr "پرسش و پاسخهای متداول (FAQ)"
710
+
711
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
712
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
713
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
714
+ msgid "Insert a Slideshow"
715
+ msgstr "درج یک نمایشگر اسلاید"
716
+
717
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
718
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
719
+ msgid "Insert Slideshow"
720
+ msgstr "درج نمایشگر اسلاید"
721
+
722
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
723
+ msgid "Select a slideshow"
724
+ msgstr "انتخاب یک نمایشگر اسلاید"
725
+
726
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
727
+ #: views/SlideshowPluginWidget/form.php:12
728
+ msgid "Untitled slideshow"
729
+ msgstr "نمایشگر اسلاید بدون عنوان"
730
+
731
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
732
+ msgid "Cancel"
733
+ msgstr "انصراف"
734
+
735
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
736
+ #, php-format
737
+ msgid ""
738
+ "It seems you haven't created any slideshows yet. %sYou can create a "
739
+ "slideshow here!%s"
740
+ msgstr ""
741
+ "به نظر می رسد هنوز هیچ نمایشگر اسلاید ایجاد نکرده اید. %sشما می توانید یک "
742
+ "نمایشگر اسلاید ایجاد کنید.%s"
743
+
744
+ #: views/SlideshowPluginSlideInserter/search-popup.php:6
745
+ msgid "Search"
746
+ msgstr "جستجو"
747
+
748
+ #: views/SlideshowPluginSlideInserter/search-popup.php:7
749
+ msgid "Search images by title or ID"
750
+ msgstr "تصاویر جستجو صورت اساس عنوان یا ID"
751
+
752
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:18
753
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:53
754
+ msgid "Text color"
755
+ msgstr "رنگ متن"
756
+
757
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:66
758
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:36
759
+ msgid "Show related videos"
760
+ msgstr ""
761
+
762
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:58
763
+ msgid "(Leave empty for a transparent background)"
764
+ msgstr "(خالی به عنوان یک پس زمینه شفاف)"
765
+
766
+ #: views/SlideshowPluginUpload/upload-button.php:1
767
+ msgid "Upload/Manage Images"
768
+ msgstr "آپلود / مدیریت تصاویر"
769
+
770
+ #: views/SlideshowPluginWidget/form.php:9
771
+ msgid "Random Slideshow"
772
+ msgstr "نمایشگر اسلاید تصادفی"
773
+
774
+ #~ msgid "Leave any field open to use default value."
775
+ #~ msgstr "Een veld dat open wordt gelaten neemt de standaardwaarde aan."
languages/slideshow-plugin-fi.mo ADDED
Binary file
languages/slideshow-plugin-fi.po ADDED
@@ -0,0 +1,782 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Slideshow Plugin\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-08-21 10:42+0100\n"
6
+ "PO-Revision-Date: 2013-08-21 10:43+0100\n"
7
+ "Last-Translator: Hyvä Ihme Design <minna.holtta@hyvaihme.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.5.7\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 "Yleiset asetukset"
22
+
23
+ #: classes/SlideshowPluginGeneralSettings.php:150
24
+ msgid "New"
25
+ msgstr "Uusi"
26
+
27
+ #: classes/SlideshowPluginGeneralSettings.php:151
28
+ msgid "Are you sure you want to delete this custom style?"
29
+ msgstr "Oletko varma, että haluat poistaa tämän muokatun tyylin?"
30
+
31
+ #: classes/SlideshowPluginGeneralSettings.php:196
32
+ #: classes/SlideshowPluginInstaller.php:516
33
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:6
34
+ msgid "Light"
35
+ msgstr "Vaalea"
36
+
37
+ #: classes/SlideshowPluginGeneralSettings.php:197
38
+ #: classes/SlideshowPluginInstaller.php:516
39
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:7
40
+ msgid "Dark"
41
+ msgstr "Tumma"
42
+
43
+ #: classes/SlideshowPluginGeneralSettings.php:353
44
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:57
45
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:139
46
+ msgid "Untitled"
47
+ msgstr "Nimetön"
48
+
49
+ #: classes/SlideshowPluginInstaller.php:513
50
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:472
51
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:67
52
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:37
53
+ msgid "Yes"
54
+ msgstr "Kyllä"
55
+
56
+ #: classes/SlideshowPluginInstaller.php:514
57
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:473
58
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:68
59
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:38
60
+ msgid "No"
61
+ msgstr "Ei"
62
+
63
+ #: classes/SlideshowPluginInstaller.php:516
64
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:610
65
+ msgid "The style used for this slideshow"
66
+ msgstr "Tätä tyyliä käytetään tässä kuvaesityksessä"
67
+
68
+ #: classes/SlideshowPluginInstaller.php:516
69
+ msgid "Custom"
70
+ msgstr "Muokattu"
71
+
72
+ #: classes/SlideshowPluginInstaller.php:517
73
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:122
74
+ msgid "Custom style editor"
75
+ msgstr "Tyylin muokkain"
76
+
77
+ #: classes/SlideshowPluginInstaller.php:518
78
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:518
79
+ msgid "Animation used for transition between slides"
80
+ msgstr "Efekti kuvien välillä"
81
+
82
+ #: classes/SlideshowPluginInstaller.php:518
83
+ msgid "Slide"
84
+ msgstr "Liuku"
85
+
86
+ #: classes/SlideshowPluginInstaller.php:518
87
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
88
+ msgid "Fade"
89
+ msgstr "Ristikuva"
90
+
91
+ #: classes/SlideshowPluginInstaller.php:518
92
+ #: classes/SlideshowPluginInstaller.php:519
93
+ #: classes/SlideshowPluginInstaller.php:520
94
+ #: classes/SlideshowPluginInstaller.php:521
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 "Efekti"
101
+
102
+ #: classes/SlideshowPluginInstaller.php:519
103
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:519
104
+ msgid "Number of seconds the slide takes to slide in"
105
+ msgstr "Aika joka kestää, kun kuva tulee kokonaan näkyviin (sekunteina) "
106
+
107
+ #: classes/SlideshowPluginInstaller.php:520
108
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:520
109
+ msgid "Number of seconds the description takes to slide in"
110
+ msgstr "Aika joka kestää, kun kuvaus tulee näkyviin (sekuntia)"
111
+
112
+ #: classes/SlideshowPluginInstaller.php:521
113
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:521
114
+ msgid "Seconds between changing slides"
115
+ msgstr "Kuvien vaihtovälin aika sekunteina"
116
+
117
+ #: classes/SlideshowPluginInstaller.php:522
118
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:522
119
+ msgid "Number of slides to fit into one slide"
120
+ msgstr "Kuinka monta kuvaa näytetään kerrallaan"
121
+
122
+ #: classes/SlideshowPluginInstaller.php:522
123
+ #: classes/SlideshowPluginInstaller.php:523
124
+ #: classes/SlideshowPluginInstaller.php:524
125
+ #: classes/SlideshowPluginInstaller.php:525
126
+ #: classes/SlideshowPluginInstaller.php:526
127
+ #: classes/SlideshowPluginInstaller.php:527
128
+ #: classes/SlideshowPluginInstaller.php:528
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 "Näyttö"
140
+
141
+ #: classes/SlideshowPluginInstaller.php:523
142
+ msgid "Width of the slideshow, set to parent&#39;s width on 0"
143
+ msgstr "Kuvaesityksen leveys, set to parent&#39;s width on 0\""
144
+
145
+ #: classes/SlideshowPluginInstaller.php:524
146
+ msgid "Height of the slideshow"
147
+ msgstr "Kuvaesityksen korkeus"
148
+
149
+ #: classes/SlideshowPluginInstaller.php:525
150
+ msgid "Height of the description boxes"
151
+ msgstr "Kuvauskentän korkeus"
152
+
153
+ #: classes/SlideshowPluginInstaller.php:526
154
+ msgid "Fit image into slide (stretching it)"
155
+ msgstr "Sovita kuva kuvaesitykseen (venyttää kuvan sopivaksi)"
156
+
157
+ #: classes/SlideshowPluginInstaller.php:527
158
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:529
159
+ msgid "Show title and description"
160
+ msgstr "Näytä kuvan otsikko ja kuvaus"
161
+
162
+ #: classes/SlideshowPluginInstaller.php:528
163
+ msgid "Hide description box, it will pop up when a mouse hovers over the slide"
164
+ msgstr ""
165
+ "Piilota kuvan kuvauskenttä. Kuvauskenttä tulee näkyviin vain silloin, kun "
166
+ "hiiren osoitin on kuvan päällä."
167
+
168
+ #: classes/SlideshowPluginInstaller.php:529
169
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:531
170
+ msgid "Automatically slide to the next slide"
171
+ msgstr "Automaattinen siirtyminen kuvasta toiseen"
172
+
173
+ #: classes/SlideshowPluginInstaller.php:529
174
+ #: classes/SlideshowPluginInstaller.php:530
175
+ #: classes/SlideshowPluginInstaller.php:531
176
+ #: classes/SlideshowPluginInstaller.php:532
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 "Hallinnoi"
188
+
189
+ #: classes/SlideshowPluginInstaller.php:530
190
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:532
191
+ msgid "Return to the beginning of the slideshow after last slide"
192
+ msgstr "Palaa kuvaesityksen alkuun kun viimeine kuva on näytetty"
193
+
194
+ #: classes/SlideshowPluginInstaller.php:531
195
+ msgid "Activate buttons (so the user can scroll through the slides)"
196
+ msgstr "Ota käyttöön painikkeet joilla käyttäjä voi siirtyä kuvasta toiseen."
197
+
198
+ #: classes/SlideshowPluginInstaller.php:532
199
+ msgid "Show control panel (play and pause button)"
200
+ msgstr "Näytä kuvien hallinta (play ja stop-painikkeet)"
201
+
202
+ #: classes/SlideshowPluginPostType.php:38
203
+ msgid "Slideshows"
204
+ msgstr "Kuvaesitykset"
205
+
206
+ #: classes/SlideshowPluginPostType.php:39
207
+ #: views/SlideshowPluginWidget/form.php:7
208
+ msgid "Slideshow"
209
+ msgstr "Kuvaesitys"
210
+
211
+ #: classes/SlideshowPluginPostType.php:40
212
+ msgid "Add New Slideshow"
213
+ msgstr "Lisää uusi kuvaesitys"
214
+
215
+ #: classes/SlideshowPluginPostType.php:41
216
+ msgid "Edit slideshow"
217
+ msgstr "Muokkaa kuvaesitystä"
218
+
219
+ #: classes/SlideshowPluginPostType.php:42
220
+ msgid "New slideshow"
221
+ msgstr "Uusi kuvaesitys"
222
+
223
+ #: classes/SlideshowPluginPostType.php:43
224
+ msgid "View slideshow"
225
+ msgstr "Katso kuvaesitys"
226
+
227
+ #: classes/SlideshowPluginPostType.php:44
228
+ msgid "Search slideshows"
229
+ msgstr "Etsi kuvaesitys"
230
+
231
+ #: classes/SlideshowPluginPostType.php:45
232
+ #: classes/SlideshowPluginPostType.php:46
233
+ msgid "No slideshows found"
234
+ msgstr "Kuvaesityksiä ei löydetty"
235
+
236
+ #: classes/SlideshowPluginPostType.php:91
237
+ msgid "Information"
238
+ msgstr "Lisätiedot"
239
+
240
+ #: classes/SlideshowPluginPostType.php:100
241
+ msgid "Slides List"
242
+ msgstr "Kuvalistaus"
243
+
244
+ #: classes/SlideshowPluginPostType.php:109
245
+ msgid "Slideshow Style"
246
+ msgstr "Kuvaesityksen tyyli"
247
+
248
+ #: classes/SlideshowPluginPostType.php:118
249
+ msgid "Slideshow Settings"
250
+ msgstr "Kuvaesityksen asetukset"
251
+
252
+ #: classes/SlideshowPluginPostType.php:174
253
+ #: classes/SlideshowPluginSlideInserter.php:222
254
+ #: views/SlideshowPluginPostType/slides.php:2
255
+ msgid "Insert"
256
+ msgstr "Lisää"
257
+
258
+ #: classes/SlideshowPluginPostType.php:183
259
+ #: views/SlideshowPluginPostType/slides.php:9
260
+ msgid "Add slides to this slideshow by using one of the buttons above."
261
+ msgstr "Lisää kuvia tähän kuvaesitykseen käyttämällä yllä olevia painikkeita"
262
+
263
+ #: classes/SlideshowPluginShortcode.php:148
264
+ msgid "No slideshow selected."
265
+ msgstr "Ei valittuja kuvaesityksiä"
266
+
267
+ #: classes/SlideshowPluginSlideInserter.php:178
268
+ msgid "More results loaded"
269
+ msgstr "Lisää tuloksia ladattu"
270
+
271
+ #: classes/SlideshowPluginSlideInserter.php:233
272
+ msgid "Load more results"
273
+ msgstr "Lataa lisää tuloksia"
274
+
275
+ #: classes/SlideshowPluginSlideInserter.php:244
276
+ msgid "No images were found, click here to upload some."
277
+ msgstr "Kuvia ei löydetty. Klikkaa tästä ladataksesi kuvia"
278
+
279
+ #: classes/SlideshowPluginSlideInserter.php:316
280
+ msgid "Are you sure you want to delete this slide?"
281
+ msgstr "Oletko varma että haluat poistaa tämän kuvan?"
282
+
283
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:523
284
+ msgid "Maximum width. When maximum width is 0, maximum width is ignored"
285
+ msgstr "Maksimileveys. Jos maksimileveys on 0, maksimileveyttä ei huomioida"
286
+
287
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
288
+ msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
289
+ msgstr "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
290
+
291
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
292
+ msgid "More info"
293
+ msgstr "Lisätietoja"
294
+
295
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
296
+ #, php-format
297
+ msgid ""
298
+ "Proportional relationship%s between slideshow's width and height (width:"
299
+ "height)"
300
+ msgstr "Kuvan leveyden ja korkeuden mittasuhteet%s (leveys:korkeus)"
301
+
302
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:525
303
+ msgid "Slideshow's height"
304
+ msgstr "Kuvaesityksen korkeus"
305
+
306
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:526
307
+ msgid "Fit image into slide (Stretch image)"
308
+ msgstr "Sovita kuva kuvaesitykseen (venyttää kuvaa)"
309
+
310
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:527
311
+ msgid "Shrink slideshow's height when width shrinks"
312
+ msgstr "Kuvaesityksen korkeus muuttuu, kun leveyskin muuttuu"
313
+
314
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:528
315
+ msgid ""
316
+ "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
317
+ msgstr ""
318
+ "Mahdollista responsiivisuus (muokkaa kuvaesityksen leveyttä kun sivun leveys "
319
+ "muuttuu)"
320
+
321
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:530
322
+ msgid "Hide description box, pop up when mouse hovers over"
323
+ msgstr ""
324
+ "Piilota kuvauskenttä. Kuvauskenttä tulee esiin vain silloin, kun hiiren "
325
+ "osoitin on kuvan päällä"
326
+
327
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:533
328
+ msgid "Pause slideshow when mouse hovers over"
329
+ msgstr "Pysäytä kuvaesitys silloin kun hiiren osoitin on kuvaesityksen päällä"
330
+
331
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:534
332
+ msgid "Activate navigation buttons"
333
+ msgstr "Ota käyttöön navigointipainikkeet"
334
+
335
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:535
336
+ msgid "Hide navigation buttons, show when mouse hovers over"
337
+ msgstr ""
338
+ "Piilota navigointipainikkeet kun hiiren osoitin on kuvaesityksen päällä"
339
+
340
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:536
341
+ msgid "Activate pagination"
342
+ msgstr "Ota käyttöön sivutus"
343
+
344
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:537
345
+ msgid "Hide pagination, show when mouse hovers over"
346
+ msgstr "Piilota sivutus, näytä vain kun hiiren osoitin on kuvaesityksen päällä"
347
+
348
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:538
349
+ msgid "Activate control panel (play and pause button)"
350
+ msgstr "Aktivoi hallinta (play- ja pause-painikkeet)"
351
+
352
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:539
353
+ msgid "Hide control panel, show when mouse hovers over"
354
+ msgstr ""
355
+ "Piilota kuvaesityksen hallinta. Näytä hallintapainikkeet vain silloin kun "
356
+ "hiiren osoitin on kuvaesityksen päällä"
357
+
358
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:540
359
+ msgid "Wait until the next slide has loaded before showing it"
360
+ msgstr ""
361
+
362
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:541
363
+ msgid "Show a loading icon until the first slide appears"
364
+ msgstr ""
365
+
366
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:542
367
+ msgid "Randomize slides"
368
+ msgstr "Satunnainen kuva"
369
+
370
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:543
371
+ #, php-format
372
+ msgid "Avoid content filter (disable if '%s' is shown)"
373
+ msgstr "Vältä sisällön suodatusta (ota pois käytöstä jos '%s' on näkyvillä)"
374
+
375
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
376
+ msgid "Slide Left"
377
+ msgstr "Liuku vasemmalle"
378
+
379
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
380
+ msgid "Slide Right"
381
+ msgstr "Liuku oikealle"
382
+
383
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
384
+ msgid "Slide Up"
385
+ msgstr "Liuku ylös"
386
+
387
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
388
+ msgid "Slide Down"
389
+ msgstr "Liuku alas"
390
+
391
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
392
+ msgid "Direct Fade"
393
+ msgstr "Suora ristikuva"
394
+
395
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
396
+ msgid "Random Animation"
397
+ msgstr "Satunnainen efekti"
398
+
399
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:569
400
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:570
401
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:571
402
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:572
403
+ msgid "Miscellaneous"
404
+ msgstr "Sekalaista"
405
+
406
+ #: classes/SlideshowPluginWidget.php:23
407
+ msgid "Enables you to show your slideshows in the widget area of your website."
408
+ msgstr "Mahdollistaa sinut käyttämään kuvaesityksiä sivustosi vimpainalueella"
409
+
410
+ #: classes/SlideshowPluginWidget.php:29
411
+ msgid "Slideshow Widget"
412
+ msgstr "Kuvaesityksen vimpain"
413
+
414
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:46
415
+ msgid "Default stylesheets"
416
+ msgstr "Oletusarvoinen tyyli"
417
+
418
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:60
419
+ msgid "Create a new custom style from this style"
420
+ msgstr "Luo uusi tyyli käyttämällä pohjana tätä tyyliä"
421
+
422
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:62
423
+ msgid "Customize"
424
+ msgstr "Muokkaa"
425
+
426
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:76
427
+ msgid "Custom stylesheets"
428
+ msgstr "Muokattu tyylitiedosto"
429
+
430
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:89
431
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:168
432
+ msgid "Edit this style"
433
+ msgstr "Muokkaa tätä tyyliä"
434
+
435
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:91
436
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:170
437
+ #: views/SlideshowPluginPostType/slides.php:137
438
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:72
439
+ msgid "Edit"
440
+ msgstr "Muokkaa"
441
+
442
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:98
443
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:177
444
+ msgid "Delete this style"
445
+ msgstr "Poista tämä tyyli"
446
+
447
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:100
448
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:179
449
+ msgid "Delete"
450
+ msgstr "Poista"
451
+
452
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:110
453
+ msgid "Click 'Customize' to create a new custom stylesheet."
454
+ msgstr "Klikkaa \"Muokkaa\" luodaksesi uusi tyylitiedosto"
455
+
456
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:126
457
+ msgid "Select a stylesheet from the left to start customizing it."
458
+ msgstr "Valitse tyylitiedosto vasemmalta muokataksesi sitä."
459
+
460
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:135
461
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:188
462
+ #: views/SlideshowPluginPostType/slides.php:58
463
+ #: views/SlideshowPluginPostType/slides.php:143
464
+ #: views/SlideshowPluginPostType/slides.php:195
465
+ #: views/SlideshowPluginPostType/slides.php:263
466
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:80
467
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:12
468
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:98
469
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:47
470
+ #: views/SlideshowPluginWidget/form.php:2
471
+ msgid "Title"
472
+ msgstr "Otsikko"
473
+
474
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:144
475
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:196
476
+ msgid "Style"
477
+ msgstr "Tyyli"
478
+
479
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:11
480
+ msgid "Note"
481
+ msgstr "Merkintä"
482
+
483
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:18
484
+ #, php-format
485
+ msgid ""
486
+ "The settings set on this page apply only to newly created slideshows and "
487
+ "therefore do not alter any existing ones. To adapt a slideshow's settings, "
488
+ "%sclick here.%s"
489
+ msgstr ""
490
+ "Tämä sivun asetusten muuttaminen ei muuta jo olemassa olevia kuvaesityksiä. "
491
+ "Muokataksesi olemassa olevan kuvaesityksen asetuksia, %sklikkaa tästä.%s"
492
+
493
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:29
494
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:15
495
+ msgid "Default Slideshow Settings"
496
+ msgstr "Kuvaesityksen oletusasetukset"
497
+
498
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:41
499
+ #: views/SlideshowPluginPostType/settings.php:12
500
+ msgid "settings"
501
+ msgstr "Asetukset"
502
+
503
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:77
504
+ msgid "Default Slideshow Stylesheet"
505
+ msgstr "Kuvaesityksen oletustyyli"
506
+
507
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:11
508
+ msgid "Add slideshows"
509
+ msgstr "Lisää kuvaesitys"
510
+
511
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:12
512
+ msgid "Edit slideshows"
513
+ msgstr "Muokkaa kuvaesitystä"
514
+
515
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:13
516
+ msgid "Delete slideshows"
517
+ msgstr "Poista kuvaesitys"
518
+
519
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:20
520
+ msgid "User Capabilities"
521
+ msgstr "Käyttäjän oikeudet"
522
+
523
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:22
524
+ msgid "Select the user roles that will able to perform certain actions."
525
+ msgstr "Valitse käyttäjäroolit jotka voivat suorittaa toimintoja"
526
+
527
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:38
528
+ msgid "Untitled role"
529
+ msgstr "Nimetön käyttäjä"
530
+
531
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:65
532
+ msgid "Settings"
533
+ msgstr "Asetukset"
534
+
535
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:69
536
+ msgid "Stylesheet location"
537
+ msgstr ""
538
+
539
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:72
540
+ msgid "top"
541
+ msgstr ""
542
+
543
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:73
544
+ msgid "bottom"
545
+ msgstr ""
546
+
547
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:16
548
+ msgid "Custom Styles"
549
+ msgstr "Muokatut tyylit"
550
+
551
+ #: views/SlideshowPluginPostType/information.php:1
552
+ msgid ""
553
+ "To use this slideshow in your website either add this piece of shortcode to "
554
+ "your posts or pages"
555
+ msgstr ""
556
+ "Ottaaksesi kuvaesityksen käyttöön sivuillasi, lisää tämä koodi tai "
557
+ "lyhytkoodi sivullesi tai artikkeliisi"
558
+
559
+ #: views/SlideshowPluginPostType/information.php:5
560
+ msgid ""
561
+ "Or add this piece of code to where ever in your website you want to place "
562
+ "the slideshow"
563
+ msgstr ""
564
+ "Tai lisää tämä koodi ihan minne tahansa sivuillasi jonne haluat "
565
+ "kuvaesityksen näkyviin."
566
+
567
+ #: views/SlideshowPluginPostType/information.php:9
568
+ #, php-format
569
+ msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
570
+ msgstr "Tai mene %svimpainalueelle%s ja ota kuvaesitys käyttöön vimpaimena"
571
+
572
+ #: views/SlideshowPluginPostType/settings.php:26
573
+ #: views/SlideshowPluginPostType/style-settings.php:11
574
+ msgid "Default"
575
+ msgstr "Oletus"
576
+
577
+ #: views/SlideshowPluginPostType/slides.php:53
578
+ #: views/SlideshowPluginPostType/slides.php:190
579
+ #: views/SlideshowPluginSlideInserter/insert-text-button.php:1
580
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:6
581
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:41
582
+ msgid "Text slide"
583
+ msgstr "Kuvaesityksen väliteksti"
584
+
585
+ #: views/SlideshowPluginPostType/slides.php:60
586
+ #: views/SlideshowPluginPostType/slides.php:149
587
+ #: views/SlideshowPluginPostType/slides.php:197
588
+ #: views/SlideshowPluginPostType/slides.php:269
589
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:87
590
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:15
591
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:105
592
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:50
593
+ msgid "Description"
594
+ msgstr "Kuvaus"
595
+
596
+ #: views/SlideshowPluginPostType/slides.php:62
597
+ #: views/SlideshowPluginPostType/slides.php:199
598
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:21
599
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:56
600
+ msgid "Background color"
601
+ msgstr "Taustaväri"
602
+
603
+ #: views/SlideshowPluginPostType/slides.php:67
604
+ #: views/SlideshowPluginPostType/slides.php:154
605
+ #: views/SlideshowPluginPostType/slides.php:204
606
+ #: views/SlideshowPluginPostType/slides.php:274
607
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:94
608
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:28
609
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:112
610
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:64
611
+ msgid "URL"
612
+ msgstr "URL"
613
+
614
+ #: views/SlideshowPluginPostType/slides.php:69
615
+ #: views/SlideshowPluginPostType/slides.php:156
616
+ #: views/SlideshowPluginPostType/slides.php:206
617
+ #: views/SlideshowPluginPostType/slides.php:276
618
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:97
619
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:31
620
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:115
621
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:67
622
+ msgid "Open URL in"
623
+ msgstr "Avaa osoite"
624
+
625
+ #: views/SlideshowPluginPostType/slides.php:71
626
+ #: views/SlideshowPluginPostType/slides.php:158
627
+ #: views/SlideshowPluginPostType/slides.php:208
628
+ #: views/SlideshowPluginPostType/slides.php:278
629
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:99
630
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:33
631
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:117
632
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:69
633
+ msgid "Same window"
634
+ msgstr "Samassa selaimen ikkunassa"
635
+
636
+ #: views/SlideshowPluginPostType/slides.php:72
637
+ #: views/SlideshowPluginPostType/slides.php:159
638
+ #: views/SlideshowPluginPostType/slides.php:209
639
+ #: views/SlideshowPluginPostType/slides.php:279
640
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:100
641
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:34
642
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:118
643
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:70
644
+ msgid "New window"
645
+ msgstr "Uudessa selaimen ikkunassa"
646
+
647
+ #: views/SlideshowPluginPostType/slides.php:89
648
+ #: views/SlideshowPluginPostType/slides.php:229
649
+ #: views/SlideshowPluginSlideInserter/insert-video-button.php:1
650
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:53
651
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:23
652
+ msgid "Video slide"
653
+ msgstr "Video"
654
+
655
+ #: views/SlideshowPluginPostType/slides.php:94
656
+ #: views/SlideshowPluginPostType/slides.php:234
657
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:59
658
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:29
659
+ msgid "Youtube Video ID"
660
+ msgstr "Youtuben videon ID-tunnus"
661
+
662
+ #: views/SlideshowPluginPostType/slides.php:132
663
+ #: views/SlideshowPluginPostType/slides.php:254
664
+ #: views/SlideshowPluginSlideInserter/insert-image-button.php:1
665
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:66
666
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:86
667
+ msgid "Image slide"
668
+ msgstr "Kuva"
669
+
670
+ #: views/SlideshowPluginPostType/slides.php:170
671
+ msgid ""
672
+ "An error occurred while loading this slide, and it will not be present in "
673
+ "the slideshow"
674
+ msgstr ""
675
+ "Tapahtui virhe ladattaessa kuvaa. Kuva ei tule näkyviin kuvaesityksessä."
676
+
677
+ #: views/SlideshowPluginPostType/slides.php:176
678
+ #: views/SlideshowPluginPostType/slides.php:217
679
+ #: views/SlideshowPluginPostType/slides.php:242
680
+ #: views/SlideshowPluginPostType/slides.php:288
681
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:109
682
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:42
683
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:75
684
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:127
685
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:78
686
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:45
687
+ msgid "Delete slide"
688
+ msgstr "Poista kuva"
689
+
690
+ #: views/SlideshowPluginPostType/style-settings.php:22
691
+ #, php-format
692
+ msgid "Custom styles can be created and customized %shere%s."
693
+ msgstr "Muokatut tyylit voidaan luoda ja muokata %stäällä%s."
694
+
695
+ #: views/SlideshowPluginPostType/support-plugin.php:3
696
+ msgid "Help to keep this plugin free!"
697
+ msgstr "Auta meitä pitämään tämä lisäosa ilmaisena"
698
+
699
+ #: views/SlideshowPluginPostType/support-plugin.php:6
700
+ msgid ""
701
+ "In order to keep you provided with the newest features, updates and bug "
702
+ "fixes, a lot of motivation is required. Therefore I'm kindly asking you to "
703
+ "consider making a small donation to the plugin or rating it as 5-stars on "
704
+ "Wordpress.org. Thank you in advance!"
705
+ msgstr ""
706
+ "Uusien ominaisuuksien kehitys, käyttäjätuen ylläpitäminen sekä päivitysten "
707
+ "julkaiseminen vaativat meiltä paljon työtä. Toivommekin että voisitte antaa "
708
+ "meille pienen lahjoituksen tai käydä arvostelemassa tämän lisäosan viidellä "
709
+ "tähdellä osoitteessa Wordpress.org. Kiitoksia jo etukäteen!"
710
+
711
+ #: views/SlideshowPluginPostType/support-plugin.php:15
712
+ msgid "Rate on Wordpress.org"
713
+ msgstr "Arvostele osoitteessa Wordpress.org"
714
+
715
+ #: views/SlideshowPluginPostType/support-plugin.php:24
716
+ msgid "Frequently Asked Questions (FAQ)"
717
+ msgstr "Usein kysytyt kysymykset (UKK)"
718
+
719
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
720
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
721
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
722
+ msgid "Insert a Slideshow"
723
+ msgstr "Lisää kuvaesitys"
724
+
725
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
726
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
727
+ msgid "Insert Slideshow"
728
+ msgstr "Lisää kuvaesitys"
729
+
730
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
731
+ msgid "Select a slideshow"
732
+ msgstr "Valitse kuvaesitys"
733
+
734
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
735
+ #: views/SlideshowPluginWidget/form.php:12
736
+ msgid "Untitled slideshow"
737
+ msgstr "Nimetön kuvaesitys"
738
+
739
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
740
+ msgid "Cancel"
741
+ msgstr "Peruuta"
742
+
743
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
744
+ #, php-format
745
+ msgid ""
746
+ "It seems you haven't created any slideshows yet. %sYou can create a "
747
+ "slideshow here!%s"
748
+ msgstr ""
749
+ "Et ole vielä luonut yhtään kuvaesitystä. %sLuo tästä uusi kuvaesitys%s "
750
+
751
+ #: views/SlideshowPluginSlideInserter/search-popup.php:6
752
+ msgid "Search"
753
+ msgstr "Etsi"
754
+
755
+ #: views/SlideshowPluginSlideInserter/search-popup.php:7
756
+ msgid "Search images by title or ID"
757
+ msgstr "Etsi kuvia nimen tai ID-tunnuksen perusteella"
758
+
759
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:18
760
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:53
761
+ msgid "Text color"
762
+ msgstr "Tekstin väri"
763
+
764
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:66
765
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:36
766
+ msgid "Show related videos"
767
+ msgstr ""
768
+
769
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:58
770
+ msgid "(Leave empty for a transparent background)"
771
+ msgstr "(Jätä tämä tyhjäksi jos haluat läpinäkyvän taustan)"
772
+
773
+ #: views/SlideshowPluginUpload/upload-button.php:1
774
+ msgid "Upload/Manage Images"
775
+ msgstr "Lataa/hallinnoi kuvia"
776
+
777
+ #: views/SlideshowPluginWidget/form.php:9
778
+ msgid "Random Slideshow"
779
+ msgstr "Satunnainen kuvaesitys"
780
+
781
+ #~ msgid "Leave any field open to use default value."
782
+ #~ msgstr "Een veld dat open wordt gelaten neemt de standaardwaarde aan."
languages/slideshow-plugin-fr_FR.mo CHANGED
Binary file
languages/slideshow-plugin-fr_FR.po CHANGED
@@ -1,782 +1,832 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Slideshow Plugin\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-03-25 19:57+0100\n"
6
- "PO-Revision-Date: 2013-03-25 19:57+0100\n"
7
- "Last-Translator: Murat Demir <demir.murat1@gmail.com>\n"
8
- "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
- "Language: fr_FR\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: _e;__\n"
14
- "X-Poedit-Basepath: ../\n"
15
- "X-Generator: Poedit 1.5.5\n"
16
- "X-Poedit-SourceCharset: UTF-8\n"
17
- "X-Poedit-SearchPath-0: .\n"
18
-
19
- #: classes/SlideshowPluginGeneralSettings.php:64
20
- #: classes/SlideshowPluginGeneralSettings.php:65
21
- msgid "General Settings"
22
- msgstr ""
23
-
24
- #: classes/SlideshowPluginGeneralSettings.php:146
25
- msgid "New"
26
- msgstr ""
27
-
28
- #: classes/SlideshowPluginGeneralSettings.php:147
29
- msgid "Are you sure you want to delete this custom style?"
30
- msgstr ""
31
-
32
- #: classes/SlideshowPluginGeneralSettings.php:166
33
- #: classes/SlideshowPluginInstaller.php:441
34
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:6
35
- msgid "Light"
36
- msgstr "Clair"
37
-
38
- #: classes/SlideshowPluginGeneralSettings.php:167
39
- #: classes/SlideshowPluginInstaller.php:441
40
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:7
41
- msgid "Dark"
42
- msgstr "Sombre"
43
-
44
- #: classes/SlideshowPluginGeneralSettings.php:271
45
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:49
46
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:131
47
- msgid "Untitled"
48
- msgstr ""
49
-
50
- #: classes/SlideshowPluginInstaller.php:438
51
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:378
52
- msgid "Yes"
53
- msgstr "Oui"
54
-
55
- #: classes/SlideshowPluginInstaller.php:439
56
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:379
57
- msgid "No"
58
- msgstr "Non"
59
-
60
- #: classes/SlideshowPluginInstaller.php:441
61
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:477
62
- msgid "The style used for this slideshow"
63
- msgstr "Le style utilisé pour ce diaporama"
64
-
65
- #: classes/SlideshowPluginInstaller.php:441
66
- msgid "Custom"
67
- msgstr "Personnalisé"
68
-
69
- #: classes/SlideshowPluginInstaller.php:442
70
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:114
71
- msgid "Custom style editor"
72
- msgstr "Editeur de style personnalisé"
73
-
74
- #: classes/SlideshowPluginInstaller.php:443
75
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
76
- msgid "Animation used for transition between slides"
77
- msgstr "Animation utilisée pour la transition entre diapos"
78
-
79
- #: classes/SlideshowPluginInstaller.php:443
80
- msgid "Slide"
81
- msgstr "Diapo"
82
-
83
- #: classes/SlideshowPluginInstaller.php:443
84
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
85
- msgid "Fade"
86
- msgstr "Effacement"
87
-
88
- #: classes/SlideshowPluginInstaller.php:443
89
- #: classes/SlideshowPluginInstaller.php:444
90
- #: classes/SlideshowPluginInstaller.php:445
91
- #: classes/SlideshowPluginInstaller.php:446
92
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
93
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:420
94
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
95
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:422
96
- msgid "Animation"
97
- msgstr "Animation"
98
-
99
- #: classes/SlideshowPluginInstaller.php:444
100
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:420
101
- msgid "Number of seconds the slide takes to slide in"
102
- msgstr "Nombres de secondes pour que la diapo glisse"
103
-
104
- #: classes/SlideshowPluginInstaller.php:445
105
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
106
- msgid "Number of seconds the description takes to slide in"
107
- msgstr "Nombres de secondes pour que la description glisse"
108
-
109
- #: classes/SlideshowPluginInstaller.php:446
110
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:422
111
- msgid "Seconds between changing slides"
112
- msgstr "Secondes entre le changement de diapos"
113
-
114
- #: classes/SlideshowPluginInstaller.php:447
115
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
116
- msgid "Number of slides to fit into one slide"
117
- msgstr "Nombre de diapositives à placer dans un diaporama"
118
-
119
- #: classes/SlideshowPluginInstaller.php:447
120
- #: classes/SlideshowPluginInstaller.php:448
121
- #: classes/SlideshowPluginInstaller.php:449
122
- #: classes/SlideshowPluginInstaller.php:450
123
- #: classes/SlideshowPluginInstaller.php:451
124
- #: classes/SlideshowPluginInstaller.php:452
125
- #: classes/SlideshowPluginInstaller.php:453
126
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
127
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:424
128
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
129
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:426
130
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:427
131
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
132
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:429
133
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:430
134
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:431
135
- msgid "Display"
136
- msgstr "Affichage"
137
-
138
- #: classes/SlideshowPluginInstaller.php:448
139
- msgid "Width of the slideshow, set to parent&#39;s width on 0"
140
- msgstr "Largeur du diaporama, s'adapte au parent lorsqu'égale à 0"
141
-
142
- #: classes/SlideshowPluginInstaller.php:449
143
- msgid "Height of the slideshow"
144
- msgstr "Hauteur du diaporama"
145
-
146
- #: classes/SlideshowPluginInstaller.php:450
147
- msgid "Height of the description boxes"
148
- msgstr "Hauteur de la boite de description"
149
-
150
- #: classes/SlideshowPluginInstaller.php:451
151
- msgid "Fit image into slide (stretching it)"
152
- msgstr "Adapter l'image dans la diapo (en l'étirant)"
153
-
154
- #: classes/SlideshowPluginInstaller.php:452
155
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:430
156
- msgid "Show title and description"
157
- msgstr "Montrer le titre et la description"
158
-
159
- #: classes/SlideshowPluginInstaller.php:453
160
- msgid "Hide description box, it will pop up when a mouse hovers over the slide"
161
- msgstr ""
162
- "Masquer le champ de description, ne le faire apparaître que lorsque le "
163
- "curseur de la souris passe sur la diapositive"
164
-
165
- #: classes/SlideshowPluginInstaller.php:454
166
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:432
167
- msgid "Automatically slide to the next slide"
168
- msgstr "Passer automatiquement à la diapo suivante"
169
-
170
- #: classes/SlideshowPluginInstaller.php:454
171
- #: classes/SlideshowPluginInstaller.php:455
172
- #: classes/SlideshowPluginInstaller.php:456
173
- #: classes/SlideshowPluginInstaller.php:457
174
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:432
175
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:433
176
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:434
177
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:435
178
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:436
179
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:437
180
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:438
181
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:439
182
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:440
183
- msgid "Control"
184
- msgstr "Controle"
185
-
186
- #: classes/SlideshowPluginInstaller.php:455
187
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:433
188
- msgid "Return to the beginning of the slideshow after last slide"
189
- msgstr "Retour au début du diaporama après la dernière diapositive"
190
-
191
- #: classes/SlideshowPluginInstaller.php:456
192
- msgid "Activate buttons (so the user can scroll through the slides)"
193
- msgstr ""
194
- "Activer les boutons ( l'utilisateur pourra naviger à travers les diapos)"
195
-
196
- #: classes/SlideshowPluginInstaller.php:457
197
- msgid "Show control panel (play and pause button)"
198
- msgstr "Montrer le panneau de contrôle (bouton play et pause) "
199
-
200
- #: classes/SlideshowPluginPostType.php:38
201
- msgid "Slideshows"
202
- msgstr "Diaporamas"
203
-
204
- #: classes/SlideshowPluginPostType.php:39
205
- #: views/SlideshowPluginWidget/form.php:7
206
- msgid "Slideshow"
207
- msgstr "Diaporama"
208
-
209
- #: classes/SlideshowPluginPostType.php:40
210
- msgid "Add New Slideshow"
211
- msgstr "Ajouter un nouveau diaporama"
212
-
213
- #: classes/SlideshowPluginPostType.php:41
214
- msgid "Edit slideshow"
215
- msgstr "Modifier le diaporama"
216
-
217
- #: classes/SlideshowPluginPostType.php:42
218
- msgid "New slideshow"
219
- msgstr "Nouveau diaporama"
220
-
221
- #: classes/SlideshowPluginPostType.php:43
222
- msgid "View slideshow"
223
- msgstr "Voir le diaporama"
224
-
225
- #: classes/SlideshowPluginPostType.php:44
226
- msgid "Search slideshows"
227
- msgstr "Chercher un diaporama"
228
-
229
- #: classes/SlideshowPluginPostType.php:45
230
- #: classes/SlideshowPluginPostType.php:46
231
- msgid "No slideshows found"
232
- msgstr "Aucun diaporama trouvé"
233
-
234
- #: classes/SlideshowPluginPostType.php:155
235
- msgid "Information"
236
- msgstr "Information"
237
-
238
- #: classes/SlideshowPluginPostType.php:164
239
- msgid "Slides List"
240
- msgstr "Liste de diapos"
241
-
242
- #: classes/SlideshowPluginPostType.php:173
243
- msgid "Slideshow Style"
244
- msgstr "Style du diaporama"
245
-
246
- #: classes/SlideshowPluginPostType.php:182
247
- msgid "Slideshow Settings"
248
- msgstr "Réglages du diaporama"
249
-
250
- #: classes/SlideshowPluginPostType.php:232
251
- #: classes/SlideshowPluginSlideInserter.php:178
252
- #: views/SlideshowPluginPostType/slides.php:2
253
- msgid "Insert"
254
- msgstr "Insérer"
255
-
256
- #: classes/SlideshowPluginPostType.php:240
257
- #: views/SlideshowPluginPostType/slides.php:9
258
- msgid "Add slides to this slideshow by using one of the buttons above."
259
- msgstr ""
260
-
261
- #: classes/SlideshowPluginShortcode.php:132
262
- msgid "No slideshow selected."
263
- msgstr "Aucun diaporama choisi"
264
-
265
- #: classes/SlideshowPluginSlideInserter.php:151
266
- msgid "More results loaded"
267
- msgstr ""
268
-
269
- #: classes/SlideshowPluginSlideInserter.php:187
270
- msgid "Load more results"
271
- msgstr "Afficher plus de résultats"
272
-
273
- #: classes/SlideshowPluginSlideInserter.php:196
274
- msgid "No images were found, click here to upload some."
275
- msgstr "Aucune image trouvée, cliquer ici pour en charger"
276
-
277
- #: classes/SlideshowPluginSlideInserter.php:273
278
- msgid "Are you sure you want to delete this slide?"
279
- msgstr "Etes-vous sur de supprimer cette diapo ? "
280
-
281
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
282
- msgid "Slide Left"
283
- msgstr ""
284
-
285
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
286
- msgid "Slide Right"
287
- msgstr ""
288
-
289
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
290
- msgid "Slide Up"
291
- msgstr ""
292
-
293
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
294
- msgid "Slide Down"
295
- msgstr ""
296
-
297
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
298
- msgid "Direct Fade"
299
- msgstr ""
300
-
301
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
302
- msgid "Random Animation"
303
- msgstr ""
304
-
305
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:424
306
- msgid "Maximum width. When maximum width is 0, maximum width is ignored"
307
- msgstr ""
308
-
309
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
310
- msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
311
- msgstr ""
312
-
313
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
314
- msgid "More info"
315
- msgstr ""
316
-
317
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
318
- #, php-format
319
- msgid ""
320
- "Proportional relationship%s between slideshow's width and height (width:"
321
- "height)"
322
- msgstr ""
323
-
324
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:426
325
- msgid "Slideshow's height"
326
- msgstr ""
327
-
328
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:427
329
- msgid "Fit image into slide (Stretch image)"
330
- msgstr ""
331
-
332
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
333
- msgid "Shrink slideshow's height when width shrinks"
334
- msgstr ""
335
-
336
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:429
337
- msgid ""
338
- "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
339
- msgstr ""
340
-
341
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:431
342
- msgid "Hide description box, pop up when mouse hovers over"
343
- msgstr ""
344
-
345
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:434
346
- msgid "Pause slideshow when mouse hovers over"
347
- msgstr ""
348
-
349
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:435
350
- msgid "Activate navigation buttons"
351
- msgstr ""
352
-
353
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:436
354
- msgid "Hide navigation buttons, show when mouse hovers over"
355
- msgstr ""
356
-
357
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:437
358
- msgid "Activate pagination"
359
- msgstr ""
360
-
361
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:438
362
- msgid "Hide pagination, show when mouse hovers over"
363
- msgstr ""
364
-
365
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:439
366
- msgid "Activate control panel (play and pause button)"
367
- msgstr ""
368
-
369
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:440
370
- msgid "Hide control panel, show when mouse hovers over"
371
- msgstr ""
372
-
373
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:441
374
- msgid "Randomize slides"
375
- msgstr "Diapos aléatoires"
376
-
377
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:441
378
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:442
379
- msgid "Miscellaneous"
380
- msgstr "Divers"
381
-
382
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:442
383
- #, php-format
384
- msgid "Avoid content filter (disable if '%s' is shown)"
385
- msgstr "Éviter filtre de contenu (désactiver si '%s' est affiché)"
386
-
387
- #: classes/SlideshowPluginWidget.php:23
388
- msgid "Enables you to show your slideshows in the widget area of your website."
389
- msgstr "Afficher vos présentations dans la zone de widgets de votre site web."
390
-
391
- #: classes/SlideshowPluginWidget.php:29
392
- msgid "Slideshow Widget"
393
- msgstr "Widget diaporama"
394
-
395
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:38
396
- msgid "Default stylesheets"
397
- msgstr ""
398
-
399
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:52
400
- msgid "Create a new custom style from this style"
401
- msgstr ""
402
-
403
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:54
404
- msgid "Customize"
405
- msgstr ""
406
-
407
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:68
408
- msgid "Custom stylesheets"
409
- msgstr ""
410
-
411
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:81
412
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:160
413
- msgid "Edit this style"
414
- msgstr ""
415
-
416
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:83
417
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:162
418
- #: views/SlideshowPluginPostType/slides.php:137
419
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:46
420
- msgid "Edit"
421
- msgstr "Modifier"
422
-
423
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:90
424
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:169
425
- msgid "Delete this style"
426
- msgstr ""
427
-
428
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:92
429
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:171
430
- msgid "Delete"
431
- msgstr ""
432
-
433
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:102
434
- msgid "Click 'Customize' to create a new custom stylesheet."
435
- msgstr ""
436
-
437
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:118
438
- msgid "Select a stylesheet from the left to start customizing it."
439
- msgstr ""
440
-
441
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:127
442
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:180
443
- #: views/SlideshowPluginPostType/slides.php:58
444
- #: views/SlideshowPluginPostType/slides.php:143
445
- #: views/SlideshowPluginPostType/slides.php:195
446
- #: views/SlideshowPluginPostType/slides.php:263
447
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:54
448
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:12
449
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:90
450
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:29
451
- #: views/SlideshowPluginWidget/form.php:2
452
- msgid "Title"
453
- msgstr "Titre"
454
-
455
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:136
456
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:188
457
- msgid "Style"
458
- msgstr "Style"
459
-
460
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:11
461
- msgid "Note"
462
- msgstr ""
463
-
464
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:18
465
- #, php-format
466
- msgid ""
467
- "The settings set on this page apply only to newly created slideshows and "
468
- "therefore do not alter any existing ones. To adapt a slideshow's settings, "
469
- "%sclick here.%s"
470
- msgstr ""
471
-
472
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:30
473
- #: views/SlideshowPluginGeneralSettings/general-settings.php:16
474
- msgid "Default Slideshow Settings"
475
- msgstr ""
476
-
477
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:43
478
- #: views/SlideshowPluginPostType/settings.php:12
479
- msgid "settings"
480
- msgstr "réglages"
481
-
482
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:80
483
- msgid "Default Slideshow Stylesheet"
484
- msgstr ""
485
-
486
- #: views/SlideshowPluginGeneralSettings/general-settings.php:15
487
- msgid "User Capabilities"
488
- msgstr ""
489
-
490
- #: views/SlideshowPluginGeneralSettings/general-settings.php:17
491
- msgid "Custom Styles"
492
- msgstr ""
493
-
494
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:8
495
- msgid "Add slideshows"
496
- msgstr ""
497
-
498
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:9
499
- msgid "Edit slideshows"
500
- msgstr ""
501
-
502
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:10
503
- msgid "Delete slideshows"
504
- msgstr ""
505
-
506
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:18
507
- msgid "Select the user roles that will able to perform certain actions."
508
- msgstr ""
509
-
510
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:35
511
- msgid "Untitled role"
512
- msgstr ""
513
-
514
- #: views/SlideshowPluginPostType/information.php:1
515
- msgid ""
516
- "To use this slideshow in your website either add this piece of shortcode to "
517
- "your posts or pages"
518
- msgstr ""
519
- "Pour utiliser ce diaporama sur votre site web, ajoutez ce morceau de code "
520
- "dans vos articles ou pages"
521
-
522
- #: views/SlideshowPluginPostType/information.php:5
523
- msgid ""
524
- "Or add this piece of code to where ever in your website you want to place "
525
- "the slideshow"
526
- msgstr ""
527
- "Ou ajoutez ce morceau de code là où vous souhaitez afficher le diaporama"
528
-
529
- #: views/SlideshowPluginPostType/information.php:9
530
- #, php-format
531
- msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
532
- msgstr ""
533
-
534
- #: views/SlideshowPluginPostType/settings.php:26
535
- #: views/SlideshowPluginPostType/style-settings.php:11
536
- msgid "Default"
537
- msgstr "Par défaut"
538
-
539
- #: views/SlideshowPluginPostType/slides.php:53
540
- #: views/SlideshowPluginPostType/slides.php:190
541
- #: views/SlideshowPluginSlideInserter/insert-text-button.php:1
542
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:6
543
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:23
544
- msgid "Text slide"
545
- msgstr "Diapositive texte"
546
-
547
- #: views/SlideshowPluginPostType/slides.php:60
548
- #: views/SlideshowPluginPostType/slides.php:149
549
- #: views/SlideshowPluginPostType/slides.php:197
550
- #: views/SlideshowPluginPostType/slides.php:269
551
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:61
552
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:15
553
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:97
554
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:32
555
- msgid "Description"
556
- msgstr "Description"
557
-
558
- #: views/SlideshowPluginPostType/slides.php:62
559
- #: views/SlideshowPluginPostType/slides.php:199
560
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:21
561
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:38
562
- msgid "Background color"
563
- msgstr "Couleur du fond"
564
-
565
- #: views/SlideshowPluginPostType/slides.php:67
566
- #: views/SlideshowPluginPostType/slides.php:154
567
- #: views/SlideshowPluginPostType/slides.php:204
568
- #: views/SlideshowPluginPostType/slides.php:274
569
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:68
570
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:28
571
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:104
572
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:46
573
- msgid "URL"
574
- msgstr "URL"
575
-
576
- #: views/SlideshowPluginPostType/slides.php:69
577
- #: views/SlideshowPluginPostType/slides.php:156
578
- #: views/SlideshowPluginPostType/slides.php:206
579
- #: views/SlideshowPluginPostType/slides.php:276
580
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:71
581
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:31
582
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:107
583
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:49
584
- msgid "Open URL in"
585
- msgstr ""
586
-
587
- #: views/SlideshowPluginPostType/slides.php:71
588
- #: views/SlideshowPluginPostType/slides.php:158
589
- #: views/SlideshowPluginPostType/slides.php:208
590
- #: views/SlideshowPluginPostType/slides.php:278
591
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:73
592
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:33
593
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:109
594
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:51
595
- msgid "Same window"
596
- msgstr "Même fenetre"
597
-
598
- #: views/SlideshowPluginPostType/slides.php:72
599
- #: views/SlideshowPluginPostType/slides.php:159
600
- #: views/SlideshowPluginPostType/slides.php:209
601
- #: views/SlideshowPluginPostType/slides.php:279
602
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:74
603
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:34
604
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:110
605
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:52
606
- msgid "New window"
607
- msgstr "Nouvelle fenetre"
608
-
609
- #: views/SlideshowPluginPostType/slides.php:89
610
- #: views/SlideshowPluginPostType/slides.php:229
611
- #: views/SlideshowPluginSlideInserter/insert-video-button.php:1
612
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:53
613
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:13
614
- msgid "Video slide"
615
- msgstr "Diapositive vidéo"
616
-
617
- #: views/SlideshowPluginPostType/slides.php:94
618
- #: views/SlideshowPluginPostType/slides.php:234
619
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:59
620
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:19
621
- msgid "Youtube Video ID"
622
- msgstr "ID Vidéo Youtube"
623
-
624
- #: views/SlideshowPluginPostType/slides.php:132
625
- #: views/SlideshowPluginPostType/slides.php:254
626
- #: views/SlideshowPluginSlideInserter/insert-image-button.php:1
627
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:40
628
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:78
629
- msgid "Image slide"
630
- msgstr "Diapositive image"
631
-
632
- #: views/SlideshowPluginPostType/slides.php:170
633
- msgid ""
634
- "An error occurred while loading this slide, and it will not be present in "
635
- "the slideshow"
636
- msgstr ""
637
- "Une erreur s'est produite lors du chargement de cette diapositive, et il ne "
638
- "sera pas présent dans le diaporama"
639
-
640
- #: views/SlideshowPluginPostType/slides.php:176
641
- #: views/SlideshowPluginPostType/slides.php:217
642
- #: views/SlideshowPluginPostType/slides.php:242
643
- #: views/SlideshowPluginPostType/slides.php:288
644
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:83
645
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:42
646
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:67
647
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:119
648
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:60
649
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:27
650
- msgid "Delete slide"
651
- msgstr "Supprimer la diapositive"
652
-
653
- #: views/SlideshowPluginPostType/style-settings.php:22
654
- #, php-format
655
- msgid "Custom styles can be created and customized %shere%s."
656
- msgstr ""
657
-
658
- #: views/SlideshowPluginPostType/support-plugin.php:3
659
- msgid "Help to keep this plugin free!"
660
- msgstr "Aidez à maintenir ce plugin gratuit"
661
-
662
- #: views/SlideshowPluginPostType/support-plugin.php:6
663
- msgid ""
664
- "In order to keep you provided with the newest features, forum support, and "
665
- "bug-fixes, a lot of motivation is required. Therefore I'm kindly asking you "
666
- "to consider making a small donation to the plugin or rating it as 5-stars on "
667
- "Wordpress.org. Thank you in advance!"
668
- msgstr ""
669
- "Améliorer ce plugin, maintenir le forum d'aide et pousser des corrections "
670
- "demande beaucoup de motivation. En conséquence, pouvez-vous envisager une "
671
- "petite donation ou alors attribuer 5 étoiles à ce plugin sur Wordpress.org. "
672
- "Merci à vous !"
673
-
674
- #: views/SlideshowPluginPostType/support-plugin.php:15
675
- msgid "Rate on Wordpress.org"
676
- msgstr "Evaluer sur Wordpress.org"
677
-
678
- #: views/SlideshowPluginPostType/support-plugin.php:24
679
- msgid "Frequently Asked Questions (FAQ)"
680
- msgstr ""
681
-
682
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
683
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
684
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
685
- msgid "Insert a Slideshow"
686
- msgstr "Insérer un diaporama"
687
-
688
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
689
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
690
- msgid "Insert Slideshow"
691
- msgstr "Insérer diaporama"
692
-
693
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
694
- msgid "Select a slideshow"
695
- msgstr "Sélectionner un diaporama"
696
-
697
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
698
- #: views/SlideshowPluginWidget/form.php:12
699
- msgid "Untitled slideshow"
700
- msgstr "Diaporama sans nom"
701
-
702
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
703
- msgid "Cancel"
704
- msgstr "Annuler"
705
-
706
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
707
- #, php-format
708
- msgid ""
709
- "It seems you haven't created any slideshows yet. %sYou can create a "
710
- "slideshow here!%s"
711
- msgstr ""
712
- "Il semble que vous n'avez pas encore crée de diaporama. %sVous pouvez le "
713
- "faire ici%s"
714
-
715
- #: views/SlideshowPluginSlideInserter/search-popup.php:6
716
- msgid "Search"
717
- msgstr "Recherche"
718
-
719
- #: views/SlideshowPluginSlideInserter/search-popup.php:7
720
- msgid "Search images by title or ID"
721
- msgstr "Chercher les images par titre ou ID"
722
-
723
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:18
724
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:35
725
- msgid "Text color"
726
- msgstr ""
727
-
728
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:40
729
- msgid "(Leave empty for a transparent background)"
730
- msgstr ""
731
-
732
- #: views/SlideshowPluginUpload/upload-button.php:1
733
- msgid "Upload/Manage Images"
734
- msgstr "Upload/Gestion des images"
735
-
736
- #: views/SlideshowPluginWidget/form.php:9
737
- msgid "Random Slideshow"
738
- msgstr "Diaporama aléatoire"
739
-
740
- #~ msgid "Questions / Suggestions"
741
- #~ msgstr "Questions / Suggestions"
742
-
743
- #~ msgid "light"
744
- #~ msgstr "clair"
745
-
746
- #~ msgid "slide"
747
- #~ msgstr "diapo"
748
-
749
- #~ msgid "Custom style editor (Does not work with a Strict Doctype)"
750
- #~ msgstr "Aangepaste stijl bewerker (Werkt niet met een Strict Doctype)"
751
-
752
- #~ msgid "Has the Slideshow plugin helped you?"
753
- #~ msgstr "Heeft de Slideshow plugin je geholpen?"
754
-
755
- #~ msgid "Help it back!"
756
- #~ msgstr "Help hem terug!"
757
-
758
- #~ msgid ""
759
- #~ "If this plugin has filled you with happiness, please support the upkeep "
760
- #~ "of the plugin by rating it on Wordpress, posting a suggestion for "
761
- #~ "improvement on the support forum, or making a donation."
762
- #~ msgstr ""
763
- #~ "Als deze plugin je met blijdschap heeft vervuld, zou ik het enorm "
764
- #~ "waarderen als je de plugin wilt beoordelen op Wordpress, een suggestie "
765
- #~ "wilt maken voor verbetering, of een donatie doen wilt."
766
-
767
- #~ msgid "Click on an image to insert it as a slide"
768
- #~ msgstr "Klik op een plaatje om deze in te voegen als slide"
769
-
770
- #~ msgid "Width of the slideshow"
771
- #~ msgstr "Breedte van de slideshow"
772
-
773
- #~ msgid "Defaults to parent's width."
774
- #~ msgstr "Standaard ingesteld op de breedte van het bovenliggende element."
775
-
776
- #~ msgid "Send user to image URL on click"
777
- #~ msgstr ""
778
- #~ "Wanner de gebruiker op de afbeelding klikt, stuur hem naar de URL van het "
779
- #~ "plaatje"
780
-
781
- #~ msgid "Leave any field open to use default value."
782
- #~ msgstr "Een veld dat open wordt gelaten neemt de standaardwaarde aan."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Slideshow Plugin\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-08-21 10:44+0100\n"
6
+ "PO-Revision-Date: 2013-08-21 10:45+0100\n"
7
+ "Last-Translator: Murat Demir <demir.murat1@gmail.com>\n"
8
+ "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
+ "Language: fr_FR\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-KeywordsList: _e;__\n"
14
+ "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.5.7\n"
16
+ "X-Poedit-SourceCharset: UTF-8\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 "Réglages"
24
+
25
+ #: classes/SlideshowPluginGeneralSettings.php:150
26
+ msgid "New"
27
+ msgstr "Nouveau"
28
+
29
+ #: classes/SlideshowPluginGeneralSettings.php:151
30
+ msgid "Are you sure you want to delete this custom style?"
31
+ msgstr "Êtes-vous sûr de vouloir supprimer ce style personnalisé ?"
32
+
33
+ #: classes/SlideshowPluginGeneralSettings.php:196
34
+ #: classes/SlideshowPluginInstaller.php:516
35
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:6
36
+ msgid "Light"
37
+ msgstr "Clair"
38
+
39
+ #: classes/SlideshowPluginGeneralSettings.php:197
40
+ #: classes/SlideshowPluginInstaller.php:516
41
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:7
42
+ msgid "Dark"
43
+ msgstr "Sombre"
44
+
45
+ #: classes/SlideshowPluginGeneralSettings.php:353
46
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:57
47
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:139
48
+ msgid "Untitled"
49
+ msgstr "Sans titre"
50
+
51
+ #: classes/SlideshowPluginInstaller.php:513
52
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:472
53
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:67
54
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:37
55
+ msgid "Yes"
56
+ msgstr "Oui"
57
+
58
+ #: classes/SlideshowPluginInstaller.php:514
59
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:473
60
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:68
61
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:38
62
+ msgid "No"
63
+ msgstr "Non"
64
+
65
+ #: classes/SlideshowPluginInstaller.php:516
66
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:610
67
+ msgid "The style used for this slideshow"
68
+ msgstr "Le style utilisé pour ce diaporama"
69
+
70
+ #: classes/SlideshowPluginInstaller.php:516
71
+ msgid "Custom"
72
+ msgstr "Personnalisé"
73
+
74
+ #: classes/SlideshowPluginInstaller.php:517
75
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:122
76
+ msgid "Custom style editor"
77
+ msgstr "Editeur de style personnalisé"
78
+
79
+ #: classes/SlideshowPluginInstaller.php:518
80
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:518
81
+ msgid "Animation used for transition between slides"
82
+ msgstr "Animation utilisée pour la transition entre diapos"
83
+
84
+ #: classes/SlideshowPluginInstaller.php:518
85
+ msgid "Slide"
86
+ msgstr "Diapo"
87
+
88
+ #: classes/SlideshowPluginInstaller.php:518
89
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
90
+ msgid "Fade"
91
+ msgstr "Fondu"
92
+
93
+ #: classes/SlideshowPluginInstaller.php:518
94
+ #: classes/SlideshowPluginInstaller.php:519
95
+ #: classes/SlideshowPluginInstaller.php:520
96
+ #: classes/SlideshowPluginInstaller.php:521
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 "Animation"
103
+
104
+ #: classes/SlideshowPluginInstaller.php:519
105
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:519
106
+ msgid "Number of seconds the slide takes to slide in"
107
+ msgstr "Nombres de secondes pour que la diapo défile"
108
+
109
+ #: classes/SlideshowPluginInstaller.php:520
110
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:520
111
+ msgid "Number of seconds the description takes to slide in"
112
+ msgstr "Nombres de secondes pour que la description défile"
113
+
114
+ #: classes/SlideshowPluginInstaller.php:521
115
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:521
116
+ msgid "Seconds between changing slides"
117
+ msgstr "Secondes entre le changement de diapos"
118
+
119
+ #: classes/SlideshowPluginInstaller.php:522
120
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:522
121
+ msgid "Number of slides to fit into one slide"
122
+ msgstr "Nombre de diapositives à placer dans un diaporama"
123
+
124
+ #: classes/SlideshowPluginInstaller.php:522
125
+ #: classes/SlideshowPluginInstaller.php:523
126
+ #: classes/SlideshowPluginInstaller.php:524
127
+ #: classes/SlideshowPluginInstaller.php:525
128
+ #: classes/SlideshowPluginInstaller.php:526
129
+ #: classes/SlideshowPluginInstaller.php:527
130
+ #: classes/SlideshowPluginInstaller.php:528
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 "Affichage"
142
+
143
+ #: classes/SlideshowPluginInstaller.php:523
144
+ msgid "Width of the slideshow, set to parent&#39;s width on 0"
145
+ msgstr "Largeur du diaporama, s'adapte au parent lorsqu'égale à 0"
146
+
147
+ #: classes/SlideshowPluginInstaller.php:524
148
+ msgid "Height of the slideshow"
149
+ msgstr "Hauteur du diaporama"
150
+
151
+ #: classes/SlideshowPluginInstaller.php:525
152
+ msgid "Height of the description boxes"
153
+ msgstr "Hauteur de la boite de description"
154
+
155
+ #: classes/SlideshowPluginInstaller.php:526
156
+ msgid "Fit image into slide (stretching it)"
157
+ msgstr "Adapter l'image dans la diapo (en l'étirant)"
158
+
159
+ #: classes/SlideshowPluginInstaller.php:527
160
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:529
161
+ msgid "Show title and description"
162
+ msgstr "Montrer le titre et la description"
163
+
164
+ #: classes/SlideshowPluginInstaller.php:528
165
+ msgid "Hide description box, it will pop up when a mouse hovers over the slide"
166
+ msgstr ""
167
+ "Masquer la boite de description, la faire apparaître quand la souris survole "
168
+ "la diapositive"
169
+
170
+ #: classes/SlideshowPluginInstaller.php:529
171
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:531
172
+ msgid "Automatically slide to the next slide"
173
+ msgstr "Passer automatiquement à la diapo suivante"
174
+
175
+ #: classes/SlideshowPluginInstaller.php:529
176
+ #: classes/SlideshowPluginInstaller.php:530
177
+ #: classes/SlideshowPluginInstaller.php:531
178
+ #: classes/SlideshowPluginInstaller.php:532
179
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:560
180
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:561
181
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:562
182
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:563
183
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:564
184
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:565
185
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:566
186
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:567
187
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:568
188
+ msgid "Control"
189
+ msgstr "Contrôle"
190
+
191
+ #: classes/SlideshowPluginInstaller.php:530
192
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:532
193
+ msgid "Return to the beginning of the slideshow after last slide"
194
+ msgstr "Retour au début du diaporama après la dernière diapositive"
195
+
196
+ #: classes/SlideshowPluginInstaller.php:531
197
+ msgid "Activate buttons (so the user can scroll through the slides)"
198
+ msgstr ""
199
+ "Activer les boutons (l’utilisateur pourra donc naviguer à travers les diapos)"
200
+
201
+ #: classes/SlideshowPluginInstaller.php:532
202
+ msgid "Show control panel (play and pause button)"
203
+ msgstr "Montrer le panneau de contrôle (boutons play et pause)"
204
+
205
+ #: classes/SlideshowPluginPostType.php:38
206
+ msgid "Slideshows"
207
+ msgstr "Diaporamas"
208
+
209
+ #: classes/SlideshowPluginPostType.php:39
210
+ #: views/SlideshowPluginWidget/form.php:7
211
+ msgid "Slideshow"
212
+ msgstr "Diaporama"
213
+
214
+ #: classes/SlideshowPluginPostType.php:40
215
+ msgid "Add New Slideshow"
216
+ msgstr "Ajouter un nouveau diaporama"
217
+
218
+ #: classes/SlideshowPluginPostType.php:41
219
+ msgid "Edit slideshow"
220
+ msgstr "Modifier le diaporama"
221
+
222
+ #: classes/SlideshowPluginPostType.php:42
223
+ msgid "New slideshow"
224
+ msgstr "Nouveau diaporama"
225
+
226
+ #: classes/SlideshowPluginPostType.php:43
227
+ msgid "View slideshow"
228
+ msgstr "Voir le diaporama"
229
+
230
+ #: classes/SlideshowPluginPostType.php:44
231
+ msgid "Search slideshows"
232
+ msgstr "Chercher un diaporama"
233
+
234
+ #: classes/SlideshowPluginPostType.php:45
235
+ #: classes/SlideshowPluginPostType.php:46
236
+ msgid "No slideshows found"
237
+ msgstr "Aucun diaporama trouvé"
238
+
239
+ #: classes/SlideshowPluginPostType.php:91
240
+ msgid "Information"
241
+ msgstr "Information"
242
+
243
+ #: classes/SlideshowPluginPostType.php:100
244
+ msgid "Slides List"
245
+ msgstr "Liste de diapos"
246
+
247
+ #: classes/SlideshowPluginPostType.php:109
248
+ msgid "Slideshow Style"
249
+ msgstr "Style du diaporama"
250
+
251
+ #: classes/SlideshowPluginPostType.php:118
252
+ msgid "Slideshow Settings"
253
+ msgstr "Réglages du diaporama"
254
+
255
+ #: classes/SlideshowPluginPostType.php:174
256
+ #: classes/SlideshowPluginSlideInserter.php:222
257
+ #: views/SlideshowPluginPostType/slides.php:2
258
+ msgid "Insert"
259
+ msgstr "Insérer"
260
+
261
+ #: classes/SlideshowPluginPostType.php:183
262
+ #: views/SlideshowPluginPostType/slides.php:9
263
+ msgid "Add slides to this slideshow by using one of the buttons above."
264
+ msgstr ""
265
+ "Ajouter les diapos à ce diaporama en utilisant un des boutons ci-dessus."
266
+
267
+ #: classes/SlideshowPluginShortcode.php:148
268
+ msgid "No slideshow selected."
269
+ msgstr "Aucun diaporama choisi."
270
+
271
+ #: classes/SlideshowPluginSlideInserter.php:178
272
+ msgid "More results loaded"
273
+ msgstr ""
274
+
275
+ #: classes/SlideshowPluginSlideInserter.php:233
276
+ msgid "Load more results"
277
+ msgstr "Afficher plus de résultats"
278
+
279
+ #: classes/SlideshowPluginSlideInserter.php:244
280
+ msgid "No images were found, click here to upload some."
281
+ msgstr "Aucune image trouvée, cliquer ici pour en charger"
282
+
283
+ #: classes/SlideshowPluginSlideInserter.php:316
284
+ msgid "Are you sure you want to delete this slide?"
285
+ msgstr "Etes-vous sur de supprimer cette diapo ? "
286
+
287
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:523
288
+ msgid "Maximum width. When maximum width is 0, maximum width is ignored"
289
+ msgstr ""
290
+ "Largeur maximum. Quand la largeur maximum est 0, la largeur maximum est "
291
+ "ignoré."
292
+
293
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
294
+ msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
295
+ msgstr "http://fr.wikipedia.org/wiki/Format_d’image"
296
+
297
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
298
+ msgid "More info"
299
+ msgstr "Plus d’infos"
300
+
301
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
302
+ #, php-format
303
+ msgid ""
304
+ "Proportional relationship%s between slideshow's width and height (width:"
305
+ "height)"
306
+ msgstr ""
307
+
308
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:525
309
+ msgid "Slideshow's height"
310
+ msgstr "Hauteur du diaporama"
311
+
312
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:526
313
+ msgid "Fit image into slide (Stretch image)"
314
+ msgstr "Adapte l'image au diaporama (en l'étirant)"
315
+
316
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:527
317
+ msgid "Shrink slideshow's height when width shrinks"
318
+ msgstr "Réduit la hauteur du diaporama quand la largeur diminue"
319
+
320
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:528
321
+ msgid ""
322
+ "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
323
+ msgstr ""
324
+ "Activer le «responsive design» ou «design auto-adaptable». (Réduit la "
325
+ "largeur du diaporama est la largeur page diminue)."
326
+
327
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:530
328
+ msgid "Hide description box, pop up when mouse hovers over"
329
+ msgstr ""
330
+ "Masquer la boite de description, la faire apparaître au survol de la souris"
331
+
332
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:533
333
+ msgid "Pause slideshow when mouse hovers over"
334
+ msgstr "Mettre en pause le diaporama au survol de la souris"
335
+
336
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:534
337
+ msgid "Activate navigation buttons"
338
+ msgstr "Activer les boutons de navigation"
339
+
340
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:535
341
+ msgid "Hide navigation buttons, show when mouse hovers over"
342
+ msgstr "Masquer les boutons de navigation, les afficher au survol de la souris"
343
+
344
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:536
345
+ msgid "Activate pagination"
346
+ msgstr "Activer le foliotage (ou pagination)"
347
+
348
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:537
349
+ msgid "Hide pagination, show when mouse hovers over"
350
+ msgstr "Masquer le foliotage, l’afficher au survol de la souris"
351
+
352
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:538
353
+ msgid "Activate control panel (play and pause button)"
354
+ msgstr "Activer les commandes de contrôle (bouton lecture et pause)"
355
+
356
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:539
357
+ msgid "Hide control panel, show when mouse hovers over"
358
+ msgstr "Masquer les commandes de contrôle, les afficher au survol de la souris"
359
+
360
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:540
361
+ msgid "Wait until the next slide has loaded before showing it"
362
+ msgstr ""
363
+
364
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:541
365
+ msgid "Show a loading icon until the first slide appears"
366
+ msgstr ""
367
+
368
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:542
369
+ msgid "Randomize slides"
370
+ msgstr "Diapos aléatoires"
371
+
372
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:543
373
+ #, php-format
374
+ msgid "Avoid content filter (disable if '%s' is shown)"
375
+ msgstr "Éviter filtre de contenu (désactiver si '%s' est affiché)"
376
+
377
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
378
+ msgid "Slide Left"
379
+ msgstr "Glissement à gauche"
380
+
381
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
382
+ msgid "Slide Right"
383
+ msgstr "Glissement à droite"
384
+
385
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
386
+ msgid "Slide Up"
387
+ msgstr "Glissement vers le haut"
388
+
389
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
390
+ msgid "Slide Down"
391
+ msgstr "Glissement vers le bas"
392
+
393
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
394
+ msgid "Direct Fade"
395
+ msgstr "Fondu direct"
396
+
397
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
398
+ msgid "Random Animation"
399
+ msgstr "Animation aléatoire"
400
+
401
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:569
402
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:570
403
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:571
404
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:572
405
+ msgid "Miscellaneous"
406
+ msgstr "Divers"
407
+
408
+ #: classes/SlideshowPluginWidget.php:23
409
+ msgid "Enables you to show your slideshows in the widget area of your website."
410
+ msgstr "Afficher vos présentations dans la zone de widgets de votre site web."
411
+
412
+ #: classes/SlideshowPluginWidget.php:29
413
+ msgid "Slideshow Widget"
414
+ msgstr "Widget diaporama"
415
+
416
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:46
417
+ msgid "Default stylesheets"
418
+ msgstr "Feuille de styles par défaut"
419
+
420
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:60
421
+ msgid "Create a new custom style from this style"
422
+ msgstr "Créer un nouveau style personnalisé depuis ce style"
423
+
424
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:62
425
+ msgid "Customize"
426
+ msgstr "Personnaliser"
427
+
428
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:76
429
+ msgid "Custom stylesheets"
430
+ msgstr "Style personnalisé"
431
+
432
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:89
433
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:168
434
+ msgid "Edit this style"
435
+ msgstr "Éditer ce style"
436
+
437
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:91
438
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:170
439
+ #: views/SlideshowPluginPostType/slides.php:137
440
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:72
441
+ msgid "Edit"
442
+ msgstr "Modifier"
443
+
444
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:98
445
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:177
446
+ msgid "Delete this style"
447
+ msgstr "Supprimer ce style"
448
+
449
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:100
450
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:179
451
+ msgid "Delete"
452
+ msgstr "Supprimer"
453
+
454
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:110
455
+ msgid "Click 'Customize' to create a new custom stylesheet."
456
+ msgstr ""
457
+ "Cliquez sur 'Personnaliser' pour créer une nouvelle feuille de style "
458
+ "personnalisée"
459
+
460
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:126
461
+ msgid "Select a stylesheet from the left to start customizing it."
462
+ msgstr ""
463
+ "Sélectionner une feuille de style à gauche pour commencer à la personnaliser"
464
+
465
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:135
466
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:188
467
+ #: views/SlideshowPluginPostType/slides.php:58
468
+ #: views/SlideshowPluginPostType/slides.php:143
469
+ #: views/SlideshowPluginPostType/slides.php:195
470
+ #: views/SlideshowPluginPostType/slides.php:263
471
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:80
472
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:12
473
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:98
474
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:47
475
+ #: views/SlideshowPluginWidget/form.php:2
476
+ msgid "Title"
477
+ msgstr "Titre"
478
+
479
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:144
480
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:196
481
+ msgid "Style"
482
+ msgstr "Style"
483
+
484
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:11
485
+ msgid "Note"
486
+ msgstr "Note"
487
+
488
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:18
489
+ #, php-format
490
+ msgid ""
491
+ "The settings set on this page apply only to newly created slideshows and "
492
+ "therefore do not alter any existing ones. To adapt a slideshow's settings, "
493
+ "%sclick here.%s"
494
+ msgstr ""
495
+ "Les réglages définis sur cette page s’applique uniquement aux nouveaux "
496
+ "diaporamas créés et par conséquent n’altère pas ceux existants. Pour "
497
+ "modifier les réglages d’un diaporama, %scliquez ici.%s"
498
+
499
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:29
500
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:15
501
+ msgid "Default Slideshow Settings"
502
+ msgstr "Réglages par défaut du diaporama"
503
+
504
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:41
505
+ #: views/SlideshowPluginPostType/settings.php:12
506
+ msgid "settings"
507
+ msgstr "réglages"
508
+
509
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:77
510
+ msgid "Default Slideshow Stylesheet"
511
+ msgstr "Feuille de style par défaut"
512
+
513
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:11
514
+ msgid "Add slideshows"
515
+ msgstr "Ajouter un (des) diaporama(s)"
516
+
517
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:12
518
+ msgid "Edit slideshows"
519
+ msgstr "Éditer un (des) diaporama(s)"
520
+
521
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:13
522
+ msgid "Delete slideshows"
523
+ msgstr "Supprimer un (des) diaporama(s)"
524
+
525
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:20
526
+ msgid "User Capabilities"
527
+ msgstr "Permissions utilisateurs"
528
+
529
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:22
530
+ msgid "Select the user roles that will able to perform certain actions."
531
+ msgstr ""
532
+ "Sélectionner les rôles des utilisateurs capables d’effectuer certaines "
533
+ "actions."
534
+
535
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:38
536
+ msgid "Untitled role"
537
+ msgstr "Rôle sans titre"
538
+
539
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:65
540
+ msgid "Settings"
541
+ msgstr "Réglages"
542
+
543
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:69
544
+ msgid "Stylesheet location"
545
+ msgstr ""
546
+
547
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:72
548
+ msgid "top"
549
+ msgstr ""
550
+
551
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:73
552
+ msgid "bottom"
553
+ msgstr ""
554
+
555
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:16
556
+ msgid "Custom Styles"
557
+ msgstr "Styles personnalisés"
558
+
559
+ #: views/SlideshowPluginPostType/information.php:1
560
+ msgid ""
561
+ "To use this slideshow in your website either add this piece of shortcode to "
562
+ "your posts or pages"
563
+ msgstr ""
564
+ "Pour utiliser ce diaporama sur votre site web, ajoutez ce morceau de code "
565
+ "dans vos articles ou pages"
566
+
567
+ #: views/SlideshowPluginPostType/information.php:5
568
+ msgid ""
569
+ "Or add this piece of code to where ever in your website you want to place "
570
+ "the slideshow"
571
+ msgstr ""
572
+ "Ou ajoutez ce morceau de code là où vous souhaitez afficher le diaporama"
573
+
574
+ #: views/SlideshowPluginPostType/information.php:9
575
+ #, php-format
576
+ msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
577
+ msgstr ""
578
+ "Ou aller sur la %swidgets page%s et afficher le diaporama en tant que widget"
579
+
580
+ #: views/SlideshowPluginPostType/settings.php:26
581
+ #: views/SlideshowPluginPostType/style-settings.php:11
582
+ msgid "Default"
583
+ msgstr "Par défaut"
584
+
585
+ #: views/SlideshowPluginPostType/slides.php:53
586
+ #: views/SlideshowPluginPostType/slides.php:190
587
+ #: views/SlideshowPluginSlideInserter/insert-text-button.php:1
588
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:6
589
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:41
590
+ msgid "Text slide"
591
+ msgstr "Diapositive texte"
592
+
593
+ #: views/SlideshowPluginPostType/slides.php:60
594
+ #: views/SlideshowPluginPostType/slides.php:149
595
+ #: views/SlideshowPluginPostType/slides.php:197
596
+ #: views/SlideshowPluginPostType/slides.php:269
597
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:87
598
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:15
599
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:105
600
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:50
601
+ msgid "Description"
602
+ msgstr "Description"
603
+
604
+ #: views/SlideshowPluginPostType/slides.php:62
605
+ #: views/SlideshowPluginPostType/slides.php:199
606
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:21
607
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:56
608
+ msgid "Background color"
609
+ msgstr "Couleur du fond"
610
+
611
+ #: views/SlideshowPluginPostType/slides.php:67
612
+ #: views/SlideshowPluginPostType/slides.php:154
613
+ #: views/SlideshowPluginPostType/slides.php:204
614
+ #: views/SlideshowPluginPostType/slides.php:274
615
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:94
616
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:28
617
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:112
618
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:64
619
+ msgid "URL"
620
+ msgstr "URL"
621
+
622
+ #: views/SlideshowPluginPostType/slides.php:69
623
+ #: views/SlideshowPluginPostType/slides.php:156
624
+ #: views/SlideshowPluginPostType/slides.php:206
625
+ #: views/SlideshowPluginPostType/slides.php:276
626
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:97
627
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:31
628
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:115
629
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:67
630
+ msgid "Open URL in"
631
+ msgstr "Ouvrir l’URL dans"
632
+
633
+ #: views/SlideshowPluginPostType/slides.php:71
634
+ #: views/SlideshowPluginPostType/slides.php:158
635
+ #: views/SlideshowPluginPostType/slides.php:208
636
+ #: views/SlideshowPluginPostType/slides.php:278
637
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:99
638
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:33
639
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:117
640
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:69
641
+ msgid "Same window"
642
+ msgstr "Même fenetre"
643
+
644
+ #: views/SlideshowPluginPostType/slides.php:72
645
+ #: views/SlideshowPluginPostType/slides.php:159
646
+ #: views/SlideshowPluginPostType/slides.php:209
647
+ #: views/SlideshowPluginPostType/slides.php:279
648
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:100
649
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:34
650
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:118
651
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:70
652
+ msgid "New window"
653
+ msgstr "Nouvelle fenêtre"
654
+
655
+ #: views/SlideshowPluginPostType/slides.php:89
656
+ #: views/SlideshowPluginPostType/slides.php:229
657
+ #: views/SlideshowPluginSlideInserter/insert-video-button.php:1
658
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:53
659
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:23
660
+ msgid "Video slide"
661
+ msgstr "Diapositive vidéo"
662
+
663
+ #: views/SlideshowPluginPostType/slides.php:94
664
+ #: views/SlideshowPluginPostType/slides.php:234
665
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:59
666
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:29
667
+ msgid "Youtube Video ID"
668
+ msgstr "ID Vidéo Youtube"
669
+
670
+ #: views/SlideshowPluginPostType/slides.php:132
671
+ #: views/SlideshowPluginPostType/slides.php:254
672
+ #: views/SlideshowPluginSlideInserter/insert-image-button.php:1
673
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:66
674
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:86
675
+ msgid "Image slide"
676
+ msgstr "Diapositive image"
677
+
678
+ #: views/SlideshowPluginPostType/slides.php:170
679
+ msgid ""
680
+ "An error occurred while loading this slide, and it will not be present in "
681
+ "the slideshow"
682
+ msgstr ""
683
+ "Une erreur s'est produite lors du chargement de cette diapositive, et il ne "
684
+ "sera pas présent dans le diaporama"
685
+
686
+ #: views/SlideshowPluginPostType/slides.php:176
687
+ #: views/SlideshowPluginPostType/slides.php:217
688
+ #: views/SlideshowPluginPostType/slides.php:242
689
+ #: views/SlideshowPluginPostType/slides.php:288
690
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:109
691
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:42
692
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:75
693
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:127
694
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:78
695
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:45
696
+ msgid "Delete slide"
697
+ msgstr "Supprimer la diapositive"
698
+
699
+ #: views/SlideshowPluginPostType/style-settings.php:22
700
+ #, php-format
701
+ msgid "Custom styles can be created and customized %shere%s."
702
+ msgstr "Les styles personnalisés peuvent être créés et modifiés %sici%s."
703
+
704
+ #: views/SlideshowPluginPostType/support-plugin.php:3
705
+ msgid "Help to keep this plugin free!"
706
+ msgstr "Aidez à maintenir ce plugin gratuit"
707
+
708
+ #: views/SlideshowPluginPostType/support-plugin.php:6
709
+ msgid ""
710
+ "In order to keep you provided with the newest features, updates and bug "
711
+ "fixes, a lot of motivation is required. Therefore I'm kindly asking you to "
712
+ "consider making a small donation to the plugin or rating it as 5-stars on "
713
+ "Wordpress.org. Thank you in advance!"
714
+ msgstr ""
715
+ "Améliorer ce plugin, maintenir le forum d'aide et pousser des corrections "
716
+ "demande beaucoup de motivation. En conséquence, pouvez-vous envisager une "
717
+ "petite donation ou alors attribuer 5 étoiles à ce plugin sur Wordpress.org. "
718
+ "Merci à vous !"
719
+
720
+ #: views/SlideshowPluginPostType/support-plugin.php:15
721
+ msgid "Rate on Wordpress.org"
722
+ msgstr "Evaluer sur Wordpress.org"
723
+
724
+ #: views/SlideshowPluginPostType/support-plugin.php:24
725
+ msgid "Frequently Asked Questions (FAQ)"
726
+ msgstr "Questions fréquentes (FAQ)"
727
+
728
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
729
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
730
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
731
+ msgid "Insert a Slideshow"
732
+ msgstr "Insérer un diaporama"
733
+
734
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
735
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
736
+ msgid "Insert Slideshow"
737
+ msgstr "Insérer diaporama"
738
+
739
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
740
+ msgid "Select a slideshow"
741
+ msgstr "Sélectionner un diaporama"
742
+
743
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
744
+ #: views/SlideshowPluginWidget/form.php:12
745
+ msgid "Untitled slideshow"
746
+ msgstr "Diaporama sans nom"
747
+
748
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
749
+ msgid "Cancel"
750
+ msgstr "Annuler"
751
+
752
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
753
+ #, php-format
754
+ msgid ""
755
+ "It seems you haven't created any slideshows yet. %sYou can create a "
756
+ "slideshow here!%s"
757
+ msgstr ""
758
+ "Il semble que vous n'avez pas encore crée de diaporama. %sVous pouvez le "
759
+ "faire ici%s"
760
+
761
+ #: views/SlideshowPluginSlideInserter/search-popup.php:6
762
+ msgid "Search"
763
+ msgstr "Recherche"
764
+
765
+ #: views/SlideshowPluginSlideInserter/search-popup.php:7
766
+ msgid "Search images by title or ID"
767
+ msgstr "Chercher les images par titre ou ID"
768
+
769
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:18
770
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:53
771
+ msgid "Text color"
772
+ msgstr "Couleur du texte"
773
+
774
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:66
775
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:36
776
+ msgid "Show related videos"
777
+ msgstr ""
778
+
779
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:58
780
+ msgid "(Leave empty for a transparent background)"
781
+ msgstr ""
782
+
783
+ #: views/SlideshowPluginUpload/upload-button.php:1
784
+ msgid "Upload/Manage Images"
785
+ msgstr "Upload/Gestion des images"
786
+
787
+ #: views/SlideshowPluginWidget/form.php:9
788
+ msgid "Random Slideshow"
789
+ msgstr "Diaporama aléatoire"
790
+
791
+ #~ msgid "Questions / Suggestions"
792
+ #~ msgstr "Questions / Suggestions"
793
+
794
+ #~ msgid "light"
795
+ #~ msgstr "clair"
796
+
797
+ #~ msgid "slide"
798
+ #~ msgstr "diapo"
799
+
800
+ #~ msgid "Custom style editor (Does not work with a Strict Doctype)"
801
+ #~ msgstr ""
802
+ #~ "Éditeur de style personnalisé (Ne fonctionne pas avec un Doctype Strict)"
803
+
804
+ #~ msgid "Has the Slideshow plugin helped you?"
805
+ #~ msgstr "Le plugin Slideshow vous a aidé ?"
806
+
807
+ #~ msgid "Help it back!"
808
+ #~ msgstr "Aidé le en retour !"
809
+
810
+ #~ msgid ""
811
+ #~ "If this plugin has filled you with happiness, please support the upkeep "
812
+ #~ "of the plugin by rating it on Wordpress, posting a suggestion for "
813
+ #~ "improvement on the support forum, or making a donation."
814
+ #~ msgstr ""
815
+ #~ "Si ce plugin a fait votre bonheur, merci de soutenir son développement en "
816
+ #~ "laissant une évaluation sur Wordpress, en partageant une suggestion pour "
817
+ #~ "l’améliorer sur le forum du support, ou en faisant un don."
818
+
819
+ #~ msgid "Click on an image to insert it as a slide"
820
+ #~ msgstr "Cliquez sur une image pour l’insérer en tant que diapo"
821
+
822
+ #~ msgid "Width of the slideshow"
823
+ #~ msgstr "Largeur du diaporama"
824
+
825
+ #~ msgid "Defaults to parent's width."
826
+ #~ msgstr "Largeur par défaut basé sur la largeur de l’élément parent."
827
+
828
+ #~ msgid "Send user to image URL on click"
829
+ #~ msgstr "Diriger le visiteur vers l’adresse URL de l’image au clic"
830
+
831
+ #~ msgid "Leave any field open to use default value."
832
+ #~ msgstr "Les champs vides prennent la valeur par défaut. "
languages/slideshow-plugin-he_IL.mo CHANGED
Binary file
languages/slideshow-plugin-he_IL.po CHANGED
@@ -1,768 +1,804 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Slideshow Plugin\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-03-25 19:57+0100\n"
6
- "PO-Revision-Date: 2013-03-25 19:57+0100\n"
7
- "Last-Translator: Murat Demir <demir.murat1@gmail.com>\n"
8
- "Language-Team: EliSegev\n"
9
- "Language: he_IL\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: _e;__\n"
14
- "X-Poedit-Basepath: ../\n"
15
- "X-Generator: Poedit 1.5.5\n"
16
- "X-Poedit-SourceCharset: UTF-8\n"
17
- "X-Poedit-SearchPath-0: .\n"
18
-
19
- #: classes/SlideshowPluginGeneralSettings.php:64
20
- #: classes/SlideshowPluginGeneralSettings.php:65
21
- msgid "General Settings"
22
- msgstr "הגדרות כלליות"
23
-
24
- #: classes/SlideshowPluginGeneralSettings.php:146
25
- msgid "New"
26
- msgstr "חדש"
27
-
28
- #: classes/SlideshowPluginGeneralSettings.php:147
29
- msgid "Are you sure you want to delete this custom style?"
30
- msgstr ""
31
-
32
- #: classes/SlideshowPluginGeneralSettings.php:166
33
- #: classes/SlideshowPluginInstaller.php:441
34
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:6
35
- msgid "Light"
36
- msgstr "בהיר"
37
-
38
- #: classes/SlideshowPluginGeneralSettings.php:167
39
- #: classes/SlideshowPluginInstaller.php:441
40
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:7
41
- msgid "Dark"
42
- msgstr "כהה"
43
-
44
- #: classes/SlideshowPluginGeneralSettings.php:271
45
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:49
46
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:131
47
- msgid "Untitled"
48
- msgstr "ללא-שם"
49
-
50
- #: classes/SlideshowPluginInstaller.php:438
51
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:378
52
- msgid "Yes"
53
- msgstr "כן"
54
-
55
- #: classes/SlideshowPluginInstaller.php:439
56
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:379
57
- msgid "No"
58
- msgstr "לא"
59
-
60
- #: classes/SlideshowPluginInstaller.php:441
61
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:477
62
- msgid "The style used for this slideshow"
63
- msgstr ""
64
-
65
- #: classes/SlideshowPluginInstaller.php:441
66
- msgid "Custom"
67
- msgstr "מותאם"
68
-
69
- #: classes/SlideshowPluginInstaller.php:442
70
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:114
71
- msgid "Custom style editor"
72
- msgstr "עורך עיצוב מותאם"
73
-
74
- #: classes/SlideshowPluginInstaller.php:443
75
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
76
- msgid "Animation used for transition between slides"
77
- msgstr ""
78
-
79
- #: classes/SlideshowPluginInstaller.php:443
80
- msgid "Slide"
81
- msgstr "גלישה"
82
-
83
- #: classes/SlideshowPluginInstaller.php:443
84
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
85
- msgid "Fade"
86
- msgstr "דהייה"
87
-
88
- #: classes/SlideshowPluginInstaller.php:443
89
- #: classes/SlideshowPluginInstaller.php:444
90
- #: classes/SlideshowPluginInstaller.php:445
91
- #: classes/SlideshowPluginInstaller.php:446
92
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
93
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:420
94
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
95
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:422
96
- msgid "Animation"
97
- msgstr "אנימציה"
98
-
99
- #: classes/SlideshowPluginInstaller.php:444
100
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:420
101
- msgid "Number of seconds the slide takes to slide in"
102
- msgstr ""
103
-
104
- #: classes/SlideshowPluginInstaller.php:445
105
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
106
- msgid "Number of seconds the description takes to slide in"
107
- msgstr ""
108
-
109
- #: classes/SlideshowPluginInstaller.php:446
110
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:422
111
- msgid "Seconds between changing slides"
112
- msgstr ""
113
-
114
- #: classes/SlideshowPluginInstaller.php:447
115
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
116
- msgid "Number of slides to fit into one slide"
117
- msgstr ""
118
-
119
- #: classes/SlideshowPluginInstaller.php:447
120
- #: classes/SlideshowPluginInstaller.php:448
121
- #: classes/SlideshowPluginInstaller.php:449
122
- #: classes/SlideshowPluginInstaller.php:450
123
- #: classes/SlideshowPluginInstaller.php:451
124
- #: classes/SlideshowPluginInstaller.php:452
125
- #: classes/SlideshowPluginInstaller.php:453
126
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
127
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:424
128
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
129
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:426
130
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:427
131
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
132
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:429
133
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:430
134
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:431
135
- msgid "Display"
136
- msgstr "תצוגה"
137
-
138
- #: classes/SlideshowPluginInstaller.php:448
139
- msgid "Width of the slideshow, set to parent&#39;s width on 0"
140
- msgstr ""
141
-
142
- #: classes/SlideshowPluginInstaller.php:449
143
- msgid "Height of the slideshow"
144
- msgstr ""
145
-
146
- #: classes/SlideshowPluginInstaller.php:450
147
- msgid "Height of the description boxes"
148
- msgstr ""
149
-
150
- #: classes/SlideshowPluginInstaller.php:451
151
- msgid "Fit image into slide (stretching it)"
152
- msgstr ""
153
-
154
- #: classes/SlideshowPluginInstaller.php:452
155
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:430
156
- msgid "Show title and description"
157
- msgstr "הצג שם ותיאור"
158
-
159
- #: classes/SlideshowPluginInstaller.php:453
160
- msgid "Hide description box, it will pop up when a mouse hovers over the slide"
161
- msgstr ""
162
-
163
- #: classes/SlideshowPluginInstaller.php:454
164
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:432
165
- msgid "Automatically slide to the next slide"
166
- msgstr "מעבר אוטומטי לשקופית הבאה"
167
-
168
- #: classes/SlideshowPluginInstaller.php:454
169
- #: classes/SlideshowPluginInstaller.php:455
170
- #: classes/SlideshowPluginInstaller.php:456
171
- #: classes/SlideshowPluginInstaller.php:457
172
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:432
173
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:433
174
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:434
175
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:435
176
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:436
177
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:437
178
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:438
179
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:439
180
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:440
181
- msgid "Control"
182
- msgstr ""
183
-
184
- #: classes/SlideshowPluginInstaller.php:455
185
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:433
186
- msgid "Return to the beginning of the slideshow after last slide"
187
- msgstr ""
188
-
189
- #: classes/SlideshowPluginInstaller.php:456
190
- msgid "Activate buttons (so the user can scroll through the slides)"
191
- msgstr ""
192
-
193
- #: classes/SlideshowPluginInstaller.php:457
194
- msgid "Show control panel (play and pause button)"
195
- msgstr ""
196
-
197
- #: classes/SlideshowPluginPostType.php:38
198
- msgid "Slideshows"
199
- msgstr "מצגות"
200
-
201
- #: classes/SlideshowPluginPostType.php:39
202
- #: views/SlideshowPluginWidget/form.php:7
203
- msgid "Slideshow"
204
- msgstr "מצגת"
205
-
206
- #: classes/SlideshowPluginPostType.php:40
207
- msgid "Add New Slideshow"
208
- msgstr "הוספת מצגת חדשה"
209
-
210
- #: classes/SlideshowPluginPostType.php:41
211
- msgid "Edit slideshow"
212
- msgstr "עריכת מצגת"
213
-
214
- #: classes/SlideshowPluginPostType.php:42
215
- msgid "New slideshow"
216
- msgstr "מצגת חדשה"
217
-
218
- #: classes/SlideshowPluginPostType.php:43
219
- msgid "View slideshow"
220
- msgstr "הצג מצגת"
221
-
222
- #: classes/SlideshowPluginPostType.php:44
223
- msgid "Search slideshows"
224
- msgstr "חיפוש מצגות"
225
-
226
- #: classes/SlideshowPluginPostType.php:45
227
- #: classes/SlideshowPluginPostType.php:46
228
- msgid "No slideshows found"
229
- msgstr "לא נמצאו מצגות"
230
-
231
- #: classes/SlideshowPluginPostType.php:155
232
- msgid "Information"
233
- msgstr "מידע"
234
-
235
- #: classes/SlideshowPluginPostType.php:164
236
- msgid "Slides List"
237
- msgstr "רשימת שקופיות"
238
-
239
- #: classes/SlideshowPluginPostType.php:173
240
- msgid "Slideshow Style"
241
- msgstr "עיצוב מצגת"
242
-
243
- #: classes/SlideshowPluginPostType.php:182
244
- msgid "Slideshow Settings"
245
- msgstr "הגדרות מצגת"
246
-
247
- #: classes/SlideshowPluginPostType.php:232
248
- #: classes/SlideshowPluginSlideInserter.php:178
249
- #: views/SlideshowPluginPostType/slides.php:2
250
- msgid "Insert"
251
- msgstr "הוספה"
252
-
253
- #: classes/SlideshowPluginPostType.php:240
254
- #: views/SlideshowPluginPostType/slides.php:9
255
- msgid "Add slides to this slideshow by using one of the buttons above."
256
- msgstr ""
257
-
258
- #: classes/SlideshowPluginShortcode.php:132
259
- msgid "No slideshow selected."
260
- msgstr "לא נבחרו מצגות."
261
-
262
- #: classes/SlideshowPluginSlideInserter.php:151
263
- msgid "More results loaded"
264
- msgstr ""
265
-
266
- #: classes/SlideshowPluginSlideInserter.php:187
267
- msgid "Load more results"
268
- msgstr "טען עוד תוצאות"
269
-
270
- #: classes/SlideshowPluginSlideInserter.php:196
271
- msgid "No images were found, click here to upload some."
272
- msgstr ""
273
-
274
- #: classes/SlideshowPluginSlideInserter.php:273
275
- msgid "Are you sure you want to delete this slide?"
276
- msgstr ""
277
-
278
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
279
- msgid "Slide Left"
280
- msgstr "החלק שמאלה"
281
-
282
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
283
- msgid "Slide Right"
284
- msgstr "החלק ימינה"
285
-
286
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
287
- msgid "Slide Up"
288
- msgstr "החלק למעלה"
289
-
290
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
291
- msgid "Slide Down"
292
- msgstr "החלק למטה"
293
-
294
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
295
- msgid "Direct Fade"
296
- msgstr "דהייה ישירה"
297
-
298
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
299
- msgid "Random Animation"
300
- msgstr "אנימציה אקראית"
301
-
302
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:424
303
- msgid "Maximum width. When maximum width is 0, maximum width is ignored"
304
- msgstr ""
305
-
306
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
307
- msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
308
- msgstr ""
309
-
310
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
311
- msgid "More info"
312
- msgstr "מידע נוסף"
313
-
314
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
315
- #, php-format
316
- msgid ""
317
- "Proportional relationship%s between slideshow's width and height (width:"
318
- "height)"
319
- msgstr ""
320
-
321
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:426
322
- msgid "Slideshow's height"
323
- msgstr "גובה המצגת"
324
-
325
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:427
326
- msgid "Fit image into slide (Stretch image)"
327
- msgstr ""
328
-
329
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
330
- msgid "Shrink slideshow's height when width shrinks"
331
- msgstr ""
332
-
333
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:429
334
- msgid ""
335
- "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
336
- msgstr ""
337
-
338
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:431
339
- msgid "Hide description box, pop up when mouse hovers over"
340
- msgstr ""
341
-
342
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:434
343
- msgid "Pause slideshow when mouse hovers over"
344
- msgstr ""
345
-
346
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:435
347
- msgid "Activate navigation buttons"
348
- msgstr ""
349
-
350
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:436
351
- msgid "Hide navigation buttons, show when mouse hovers over"
352
- msgstr ""
353
-
354
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:437
355
- msgid "Activate pagination"
356
- msgstr ""
357
-
358
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:438
359
- msgid "Hide pagination, show when mouse hovers over"
360
- msgstr ""
361
-
362
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:439
363
- msgid "Activate control panel (play and pause button)"
364
- msgstr ""
365
-
366
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:440
367
- msgid "Hide control panel, show when mouse hovers over"
368
- msgstr ""
369
-
370
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:441
371
- msgid "Randomize slides"
372
- msgstr ""
373
-
374
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:441
375
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:442
376
- msgid "Miscellaneous"
377
- msgstr "שונות"
378
-
379
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:442
380
- #, php-format
381
- msgid "Avoid content filter (disable if '%s' is shown)"
382
- msgstr ""
383
-
384
- #: classes/SlideshowPluginWidget.php:23
385
- msgid "Enables you to show your slideshows in the widget area of your website."
386
- msgstr ""
387
-
388
- #: classes/SlideshowPluginWidget.php:29
389
- msgid "Slideshow Widget"
390
- msgstr "וידג'ט מצגת"
391
-
392
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:38
393
- msgid "Default stylesheets"
394
- msgstr "קבצי עיצוב ברירת מחדל"
395
-
396
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:52
397
- msgid "Create a new custom style from this style"
398
- msgstr ""
399
-
400
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:54
401
- msgid "Customize"
402
- msgstr "התאמה"
403
-
404
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:68
405
- msgid "Custom stylesheets"
406
- msgstr "קבצי עיצוב ברירת מחדל"
407
-
408
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:81
409
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:160
410
- msgid "Edit this style"
411
- msgstr "עריכת עיצוב זה"
412
-
413
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:83
414
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:162
415
- #: views/SlideshowPluginPostType/slides.php:137
416
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:46
417
- msgid "Edit"
418
- msgstr "עריכה"
419
-
420
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:90
421
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:169
422
- msgid "Delete this style"
423
- msgstr "מחיקת עיצוב זה"
424
-
425
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:92
426
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:171
427
- msgid "Delete"
428
- msgstr "מחיקה"
429
-
430
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:102
431
- msgid "Click 'Customize' to create a new custom stylesheet."
432
- msgstr ""
433
-
434
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:118
435
- msgid "Select a stylesheet from the left to start customizing it."
436
- msgstr ""
437
-
438
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:127
439
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:180
440
- #: views/SlideshowPluginPostType/slides.php:58
441
- #: views/SlideshowPluginPostType/slides.php:143
442
- #: views/SlideshowPluginPostType/slides.php:195
443
- #: views/SlideshowPluginPostType/slides.php:263
444
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:54
445
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:12
446
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:90
447
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:29
448
- #: views/SlideshowPluginWidget/form.php:2
449
- msgid "Title"
450
- msgstr "כותרת"
451
-
452
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:136
453
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:188
454
- msgid "Style"
455
- msgstr "סגנון"
456
-
457
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:11
458
- msgid "Note"
459
- msgstr "הערה"
460
-
461
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:18
462
- #, php-format
463
- msgid ""
464
- "The settings set on this page apply only to newly created slideshows and "
465
- "therefore do not alter any existing ones. To adapt a slideshow's settings, "
466
- "%sclick here.%s"
467
- msgstr ""
468
-
469
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:30
470
- #: views/SlideshowPluginGeneralSettings/general-settings.php:16
471
- msgid "Default Slideshow Settings"
472
- msgstr "הגדרות ברירת המחדל למצגת"
473
-
474
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:43
475
- #: views/SlideshowPluginPostType/settings.php:12
476
- msgid "settings"
477
- msgstr "הגדרות"
478
-
479
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:80
480
- msgid "Default Slideshow Stylesheet"
481
- msgstr "קובץ ברירת מחדל להגדרות עיצוב"
482
-
483
- #: views/SlideshowPluginGeneralSettings/general-settings.php:15
484
- msgid "User Capabilities"
485
- msgstr "יכולות משתמשים"
486
-
487
- #: views/SlideshowPluginGeneralSettings/general-settings.php:17
488
- msgid "Custom Styles"
489
- msgstr "סגנונות מותאמים"
490
-
491
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:8
492
- msgid "Add slideshows"
493
- msgstr "הוספת מצגות"
494
-
495
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:9
496
- msgid "Edit slideshows"
497
- msgstr "עריכת מצגות"
498
-
499
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:10
500
- msgid "Delete slideshows"
501
- msgstr "מחיקת מצגות"
502
-
503
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:18
504
- msgid "Select the user roles that will able to perform certain actions."
505
- msgstr ""
506
-
507
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:35
508
- msgid "Untitled role"
509
- msgstr "תפקיד ללא-שם"
510
-
511
- #: views/SlideshowPluginPostType/information.php:1
512
- msgid ""
513
- "To use this slideshow in your website either add this piece of shortcode to "
514
- "your posts or pages"
515
- msgstr ""
516
-
517
- #: views/SlideshowPluginPostType/information.php:5
518
- msgid ""
519
- "Or add this piece of code to where ever in your website you want to place "
520
- "the slideshow"
521
- msgstr ""
522
-
523
- #: views/SlideshowPluginPostType/information.php:9
524
- #, php-format
525
- msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
526
- msgstr ""
527
-
528
- #: views/SlideshowPluginPostType/settings.php:26
529
- #: views/SlideshowPluginPostType/style-settings.php:11
530
- msgid "Default"
531
- msgstr "ברירת-מחדל"
532
-
533
- #: views/SlideshowPluginPostType/slides.php:53
534
- #: views/SlideshowPluginPostType/slides.php:190
535
- #: views/SlideshowPluginSlideInserter/insert-text-button.php:1
536
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:6
537
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:23
538
- msgid "Text slide"
539
- msgstr "שקופית טקסט"
540
-
541
- #: views/SlideshowPluginPostType/slides.php:60
542
- #: views/SlideshowPluginPostType/slides.php:149
543
- #: views/SlideshowPluginPostType/slides.php:197
544
- #: views/SlideshowPluginPostType/slides.php:269
545
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:61
546
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:15
547
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:97
548
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:32
549
- msgid "Description"
550
- msgstr "תיאור"
551
-
552
- #: views/SlideshowPluginPostType/slides.php:62
553
- #: views/SlideshowPluginPostType/slides.php:199
554
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:21
555
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:38
556
- msgid "Background color"
557
- msgstr "צבע רקע"
558
-
559
- #: views/SlideshowPluginPostType/slides.php:67
560
- #: views/SlideshowPluginPostType/slides.php:154
561
- #: views/SlideshowPluginPostType/slides.php:204
562
- #: views/SlideshowPluginPostType/slides.php:274
563
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:68
564
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:28
565
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:104
566
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:46
567
- msgid "URL"
568
- msgstr "קישור"
569
-
570
- #: views/SlideshowPluginPostType/slides.php:69
571
- #: views/SlideshowPluginPostType/slides.php:156
572
- #: views/SlideshowPluginPostType/slides.php:206
573
- #: views/SlideshowPluginPostType/slides.php:276
574
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:71
575
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:31
576
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:107
577
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:49
578
- msgid "Open URL in"
579
- msgstr "פתח קישור ב-"
580
-
581
- #: views/SlideshowPluginPostType/slides.php:71
582
- #: views/SlideshowPluginPostType/slides.php:158
583
- #: views/SlideshowPluginPostType/slides.php:208
584
- #: views/SlideshowPluginPostType/slides.php:278
585
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:73
586
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:33
587
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:109
588
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:51
589
- msgid "Same window"
590
- msgstr "אותו החלון"
591
-
592
- #: views/SlideshowPluginPostType/slides.php:72
593
- #: views/SlideshowPluginPostType/slides.php:159
594
- #: views/SlideshowPluginPostType/slides.php:209
595
- #: views/SlideshowPluginPostType/slides.php:279
596
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:74
597
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:34
598
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:110
599
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:52
600
- msgid "New window"
601
- msgstr "חלון חדש"
602
-
603
- #: views/SlideshowPluginPostType/slides.php:89
604
- #: views/SlideshowPluginPostType/slides.php:229
605
- #: views/SlideshowPluginSlideInserter/insert-video-button.php:1
606
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:53
607
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:13
608
- msgid "Video slide"
609
- msgstr "שקופית וידאו"
610
-
611
- #: views/SlideshowPluginPostType/slides.php:94
612
- #: views/SlideshowPluginPostType/slides.php:234
613
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:59
614
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:19
615
- msgid "Youtube Video ID"
616
- msgstr "מזהה וידאו ביו-טיוב"
617
-
618
- #: views/SlideshowPluginPostType/slides.php:132
619
- #: views/SlideshowPluginPostType/slides.php:254
620
- #: views/SlideshowPluginSlideInserter/insert-image-button.php:1
621
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:40
622
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:78
623
- msgid "Image slide"
624
- msgstr "שקופית תמונה"
625
-
626
- #: views/SlideshowPluginPostType/slides.php:170
627
- msgid ""
628
- "An error occurred while loading this slide, and it will not be present in "
629
- "the slideshow"
630
- msgstr ""
631
-
632
- #: views/SlideshowPluginPostType/slides.php:176
633
- #: views/SlideshowPluginPostType/slides.php:217
634
- #: views/SlideshowPluginPostType/slides.php:242
635
- #: views/SlideshowPluginPostType/slides.php:288
636
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:83
637
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:42
638
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:67
639
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:119
640
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:60
641
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:27
642
- msgid "Delete slide"
643
- msgstr "מחיקת שקופית"
644
-
645
- #: views/SlideshowPluginPostType/style-settings.php:22
646
- #, php-format
647
- msgid "Custom styles can be created and customized %shere%s."
648
- msgstr ""
649
-
650
- #: views/SlideshowPluginPostType/support-plugin.php:3
651
- msgid "Help to keep this plugin free!"
652
- msgstr "עזרו לשמור על הפלאגין הזה חינמי!"
653
-
654
- #: views/SlideshowPluginPostType/support-plugin.php:6
655
- msgid ""
656
- "In order to keep you provided with the newest features, forum support, and "
657
- "bug-fixes, a lot of motivation is required. Therefore I'm kindly asking you "
658
- "to consider making a small donation to the plugin or rating it as 5-stars on "
659
- "Wordpress.org. Thank you in advance!"
660
- msgstr ""
661
-
662
- #: views/SlideshowPluginPostType/support-plugin.php:15
663
- msgid "Rate on Wordpress.org"
664
- msgstr "דרג באתר הפלאגינים של וורדפרס"
665
-
666
- #: views/SlideshowPluginPostType/support-plugin.php:24
667
- msgid "Frequently Asked Questions (FAQ)"
668
- msgstr "שאלות נפוצות"
669
-
670
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
671
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
672
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
673
- msgid "Insert a Slideshow"
674
- msgstr "הוספת מצגת"
675
-
676
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
677
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
678
- msgid "Insert Slideshow"
679
- msgstr "הוסף מצגת"
680
-
681
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
682
- msgid "Select a slideshow"
683
- msgstr "בחר מצגת"
684
-
685
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
686
- #: views/SlideshowPluginWidget/form.php:12
687
- msgid "Untitled slideshow"
688
- msgstr "מצגת ללא-שם"
689
-
690
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
691
- msgid "Cancel"
692
- msgstr "ביטול"
693
-
694
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
695
- #, php-format
696
- msgid ""
697
- "It seems you haven't created any slideshows yet. %sYou can create a "
698
- "slideshow here!%s"
699
- msgstr ""
700
-
701
- #: views/SlideshowPluginSlideInserter/search-popup.php:6
702
- msgid "Search"
703
- msgstr "חיפוש"
704
-
705
- #: views/SlideshowPluginSlideInserter/search-popup.php:7
706
- msgid "Search images by title or ID"
707
- msgstr "חיפוש תמונות לפי כותרת או מזהה"
708
-
709
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:18
710
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:35
711
- msgid "Text color"
712
- msgstr "צבע כיתוב"
713
-
714
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:40
715
- msgid "(Leave empty for a transparent background)"
716
- msgstr ""
717
-
718
- #: views/SlideshowPluginUpload/upload-button.php:1
719
- msgid "Upload/Manage Images"
720
- msgstr "העלאה/ניהול תמונות"
721
-
722
- #: views/SlideshowPluginWidget/form.php:9
723
- msgid "Random Slideshow"
724
- msgstr "מצגת אקראית"
725
-
726
- #~ msgid "Questions / Suggestions"
727
- #~ msgstr "שאלות / הצעות"
728
-
729
- #~ msgid "light"
730
- #~ msgstr "clair"
731
-
732
- #~ msgid "slide"
733
- #~ msgstr "diapo"
734
-
735
- #~ msgid "Custom style editor (Does not work with a Strict Doctype)"
736
- #~ msgstr "Aangepaste stijl bewerker (Werkt niet met een Strict Doctype)"
737
-
738
- #~ msgid "Has the Slideshow plugin helped you?"
739
- #~ msgstr "Heeft de Slideshow plugin je geholpen?"
740
-
741
- #~ msgid "Help it back!"
742
- #~ msgstr "Help hem terug!"
743
-
744
- #~ msgid ""
745
- #~ "If this plugin has filled you with happiness, please support the upkeep "
746
- #~ "of the plugin by rating it on Wordpress, posting a suggestion for "
747
- #~ "improvement on the support forum, or making a donation."
748
- #~ msgstr ""
749
- #~ "Als deze plugin je met blijdschap heeft vervuld, zou ik het enorm "
750
- #~ "waarderen als je de plugin wilt beoordelen op Wordpress, een suggestie "
751
- #~ "wilt maken voor verbetering, of een donatie doen wilt."
752
-
753
- #~ msgid "Click on an image to insert it as a slide"
754
- #~ msgstr "Klik op een plaatje om deze in te voegen als slide"
755
-
756
- #~ msgid "Width of the slideshow"
757
- #~ msgstr "Breedte van de slideshow"
758
-
759
- #~ msgid "Defaults to parent's width."
760
- #~ msgstr "Standaard ingesteld op de breedte van het bovenliggende element."
761
-
762
- #~ msgid "Send user to image URL on click"
763
- #~ msgstr ""
764
- #~ "Wanner de gebruiker op de afbeelding klikt, stuur hem naar de URL van het "
765
- #~ "plaatje"
766
-
767
- #~ msgid "Leave any field open to use default value."
768
- #~ msgstr "Een veld dat open wordt gelaten neemt de standaardwaarde aan."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Slideshow Plugin\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-08-21 10:44+0100\n"
6
+ "PO-Revision-Date: 2013-08-21 10:45+0100\n"
7
+ "Last-Translator: Murat Demir <demir.murat1@gmail.com>\n"
8
+ "Language-Team: EliSegev\n"
9
+ "Language: he_IL\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
+
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:516
35
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:6
36
+ msgid "Light"
37
+ msgstr "בהיר"
38
+
39
+ #: classes/SlideshowPluginGeneralSettings.php:197
40
+ #: classes/SlideshowPluginInstaller.php:516
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:139
48
+ msgid "Untitled"
49
+ msgstr "ללא-שם"
50
+
51
+ #: classes/SlideshowPluginInstaller.php:513
52
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:472
53
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:67
54
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:37
55
+ msgid "Yes"
56
+ msgstr "כן"
57
+
58
+ #: classes/SlideshowPluginInstaller.php:514
59
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:473
60
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:68
61
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:38
62
+ msgid "No"
63
+ msgstr "לא"
64
+
65
+ #: classes/SlideshowPluginInstaller.php:516
66
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:610
67
+ msgid "The style used for this slideshow"
68
+ msgstr ""
69
+
70
+ #: classes/SlideshowPluginInstaller.php:516
71
+ msgid "Custom"
72
+ msgstr "מותאם"
73
+
74
+ #: classes/SlideshowPluginInstaller.php:517
75
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:122
76
+ msgid "Custom style editor"
77
+ msgstr "עורך עיצוב מותאם"
78
+
79
+ #: classes/SlideshowPluginInstaller.php:518
80
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:518
81
+ msgid "Animation used for transition between slides"
82
+ msgstr ""
83
+
84
+ #: classes/SlideshowPluginInstaller.php:518
85
+ msgid "Slide"
86
+ msgstr "גלישה"
87
+
88
+ #: classes/SlideshowPluginInstaller.php:518
89
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
90
+ msgid "Fade"
91
+ msgstr "דהייה"
92
+
93
+ #: classes/SlideshowPluginInstaller.php:518
94
+ #: classes/SlideshowPluginInstaller.php:519
95
+ #: classes/SlideshowPluginInstaller.php:520
96
+ #: classes/SlideshowPluginInstaller.php:521
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:519
105
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:519
106
+ msgid "Number of seconds the slide takes to slide in"
107
+ msgstr ""
108
+
109
+ #: classes/SlideshowPluginInstaller.php:520
110
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:520
111
+ msgid "Number of seconds the description takes to slide in"
112
+ msgstr ""
113
+
114
+ #: classes/SlideshowPluginInstaller.php:521
115
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:521
116
+ msgid "Seconds between changing slides"
117
+ msgstr ""
118
+
119
+ #: classes/SlideshowPluginInstaller.php:522
120
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:522
121
+ msgid "Number of slides to fit into one slide"
122
+ msgstr ""
123
+
124
+ #: classes/SlideshowPluginInstaller.php:522
125
+ #: classes/SlideshowPluginInstaller.php:523
126
+ #: classes/SlideshowPluginInstaller.php:524
127
+ #: classes/SlideshowPluginInstaller.php:525
128
+ #: classes/SlideshowPluginInstaller.php:526
129
+ #: classes/SlideshowPluginInstaller.php:527
130
+ #: classes/SlideshowPluginInstaller.php:528
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:523
144
+ msgid "Width of the slideshow, set to parent&#39;s width on 0"
145
+ msgstr ""
146
+
147
+ #: classes/SlideshowPluginInstaller.php:524
148
+ msgid "Height of the slideshow"
149
+ msgstr ""
150
+
151
+ #: classes/SlideshowPluginInstaller.php:525
152
+ msgid "Height of the description boxes"
153
+ msgstr ""
154
+
155
+ #: classes/SlideshowPluginInstaller.php:526
156
+ msgid "Fit image into slide (stretching it)"
157
+ msgstr ""
158
+
159
+ #: classes/SlideshowPluginInstaller.php:527
160
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:529
161
+ msgid "Show title and description"
162
+ msgstr "הצג שם ותיאור"
163
+
164
+ #: classes/SlideshowPluginInstaller.php:528
165
+ msgid "Hide description box, it will pop up when a mouse hovers over the slide"
166
+ msgstr ""
167
+
168
+ #: classes/SlideshowPluginInstaller.php:529
169
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:531
170
+ msgid "Automatically slide to the next slide"
171
+ msgstr "מעבר אוטומטי לשקופית הבאה"
172
+
173
+ #: classes/SlideshowPluginInstaller.php:529
174
+ #: classes/SlideshowPluginInstaller.php:530
175
+ #: classes/SlideshowPluginInstaller.php:531
176
+ #: classes/SlideshowPluginInstaller.php:532
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:530
190
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:532
191
+ msgid "Return to the beginning of the slideshow after last slide"
192
+ msgstr ""
193
+
194
+ #: classes/SlideshowPluginInstaller.php:531
195
+ msgid "Activate buttons (so the user can scroll through the slides)"
196
+ msgstr ""
197
+
198
+ #: classes/SlideshowPluginInstaller.php:532
199
+ msgid "Show control panel (play and pause button)"
200
+ msgstr ""
201
+
202
+ #: classes/SlideshowPluginPostType.php:38
203
+ msgid "Slideshows"
204
+ msgstr "מצגות"
205
+
206
+ #: classes/SlideshowPluginPostType.php:39
207
+ #: views/SlideshowPluginWidget/form.php:7
208
+ msgid "Slideshow"
209
+ msgstr "מצגת"
210
+
211
+ #: classes/SlideshowPluginPostType.php:40
212
+ msgid "Add New Slideshow"
213
+ msgstr "הוספת מצגת חדשה"
214
+
215
+ #: classes/SlideshowPluginPostType.php:41
216
+ msgid "Edit slideshow"
217
+ msgstr "עריכת מצגת"
218
+
219
+ #: classes/SlideshowPluginPostType.php:42
220
+ msgid "New slideshow"
221
+ msgstr "מצגת חדשה"
222
+
223
+ #: classes/SlideshowPluginPostType.php:43
224
+ msgid "View slideshow"
225
+ msgstr "הצג מצגת"
226
+
227
+ #: classes/SlideshowPluginPostType.php:44
228
+ msgid "Search slideshows"
229
+ msgstr "חיפוש מצגות"
230
+
231
+ #: classes/SlideshowPluginPostType.php:45
232
+ #: classes/SlideshowPluginPostType.php:46
233
+ msgid "No slideshows found"
234
+ msgstr "לא נמצאו מצגות"
235
+
236
+ #: classes/SlideshowPluginPostType.php:91
237
+ msgid "Information"
238
+ msgstr "מידע"
239
+
240
+ #: classes/SlideshowPluginPostType.php:100
241
+ msgid "Slides List"
242
+ msgstr "רשימת שקופיות"
243
+
244
+ #: classes/SlideshowPluginPostType.php:109
245
+ msgid "Slideshow Style"
246
+ msgstr "עיצוב מצגת"
247
+
248
+ #: classes/SlideshowPluginPostType.php:118
249
+ msgid "Slideshow Settings"
250
+ msgstr "הגדרות מצגת"
251
+
252
+ #: classes/SlideshowPluginPostType.php:174
253
+ #: classes/SlideshowPluginSlideInserter.php:222
254
+ #: views/SlideshowPluginPostType/slides.php:2
255
+ msgid "Insert"
256
+ msgstr "הוספה"
257
+
258
+ #: classes/SlideshowPluginPostType.php:183
259
+ #: views/SlideshowPluginPostType/slides.php:9
260
+ msgid "Add slides to this slideshow by using one of the buttons above."
261
+ msgstr ""
262
+
263
+ #: classes/SlideshowPluginShortcode.php:148
264
+ msgid "No slideshow selected."
265
+ msgstr "לא נבחרו מצגות."
266
+
267
+ #: classes/SlideshowPluginSlideInserter.php:178
268
+ msgid "More results loaded"
269
+ msgstr ""
270
+
271
+ #: classes/SlideshowPluginSlideInserter.php:233
272
+ msgid "Load more results"
273
+ msgstr "טען עוד תוצאות"
274
+
275
+ #: classes/SlideshowPluginSlideInserter.php:244
276
+ msgid "No images were found, click here to upload some."
277
+ msgstr ""
278
+
279
+ #: classes/SlideshowPluginSlideInserter.php:316
280
+ msgid "Are you sure you want to delete this slide?"
281
+ msgstr ""
282
+
283
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:523
284
+ msgid "Maximum width. When maximum width is 0, maximum width is ignored"
285
+ msgstr ""
286
+
287
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
288
+ msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
289
+ msgstr ""
290
+
291
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
292
+ msgid "More info"
293
+ msgstr "מידע נוסף"
294
+
295
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
296
+ #, php-format
297
+ msgid ""
298
+ "Proportional relationship%s between slideshow's width and height (width:"
299
+ "height)"
300
+ msgstr ""
301
+
302
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:525
303
+ msgid "Slideshow's height"
304
+ msgstr "גובה המצגת"
305
+
306
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:526
307
+ msgid "Fit image into slide (Stretch image)"
308
+ msgstr ""
309
+
310
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:527
311
+ msgid "Shrink slideshow's height when width shrinks"
312
+ msgstr ""
313
+
314
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:528
315
+ msgid ""
316
+ "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
317
+ msgstr ""
318
+
319
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:530
320
+ msgid "Hide description box, pop up when mouse hovers over"
321
+ msgstr ""
322
+
323
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:533
324
+ msgid "Pause slideshow when mouse hovers over"
325
+ msgstr ""
326
+
327
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:534
328
+ msgid "Activate navigation buttons"
329
+ msgstr ""
330
+
331
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:535
332
+ msgid "Hide navigation buttons, show when mouse hovers over"
333
+ msgstr ""
334
+
335
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:536
336
+ msgid "Activate pagination"
337
+ msgstr ""
338
+
339
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:537
340
+ msgid "Hide pagination, show when mouse hovers over"
341
+ msgstr ""
342
+
343
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:538
344
+ msgid "Activate control panel (play and pause button)"
345
+ msgstr ""
346
+
347
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:539
348
+ msgid "Hide control panel, show when mouse hovers over"
349
+ msgstr ""
350
+
351
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:540
352
+ msgid "Wait until the next slide has loaded before showing it"
353
+ msgstr ""
354
+
355
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:541
356
+ msgid "Show a loading icon until the first slide appears"
357
+ msgstr ""
358
+
359
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:542
360
+ msgid "Randomize slides"
361
+ msgstr ""
362
+
363
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:543
364
+ #, php-format
365
+ msgid "Avoid content filter (disable if '%s' is shown)"
366
+ msgstr ""
367
+
368
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
369
+ msgid "Slide Left"
370
+ msgstr "החלק שמאלה"
371
+
372
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
373
+ msgid "Slide Right"
374
+ msgstr "החלק ימינה"
375
+
376
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
377
+ msgid "Slide Up"
378
+ msgstr "החלק למעלה"
379
+
380
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
381
+ msgid "Slide Down"
382
+ msgstr "החלק למטה"
383
+
384
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
385
+ msgid "Direct Fade"
386
+ msgstr "דהייה ישירה"
387
+
388
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
389
+ msgid "Random Animation"
390
+ msgstr "אנימציה אקראית"
391
+
392
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:569
393
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:570
394
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:571
395
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:572
396
+ msgid "Miscellaneous"
397
+ msgstr "שונות"
398
+
399
+ #: classes/SlideshowPluginWidget.php:23
400
+ msgid "Enables you to show your slideshows in the widget area of your website."
401
+ msgstr ""
402
+
403
+ #: classes/SlideshowPluginWidget.php:29
404
+ msgid "Slideshow Widget"
405
+ msgstr "וידג'ט מצגת"
406
+
407
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:46
408
+ msgid "Default stylesheets"
409
+ msgstr "קבצי עיצוב ברירת מחדל"
410
+
411
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:60
412
+ msgid "Create a new custom style from this style"
413
+ msgstr ""
414
+
415
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:62
416
+ msgid "Customize"
417
+ msgstr "התאמה"
418
+
419
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:76
420
+ msgid "Custom stylesheets"
421
+ msgstr "קבצי עיצוב ברירת מחדל"
422
+
423
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:89
424
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:168
425
+ msgid "Edit this style"
426
+ msgstr "עריכת עיצוב זה"
427
+
428
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:91
429
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:170
430
+ #: views/SlideshowPluginPostType/slides.php:137
431
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:72
432
+ msgid "Edit"
433
+ msgstr "עריכה"
434
+
435
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:98
436
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:177
437
+ msgid "Delete this style"
438
+ msgstr "מחיקת עיצוב זה"
439
+
440
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:100
441
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:179
442
+ msgid "Delete"
443
+ msgstr "מחיקה"
444
+
445
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:110
446
+ msgid "Click 'Customize' to create a new custom stylesheet."
447
+ msgstr ""
448
+
449
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:126
450
+ msgid "Select a stylesheet from the left to start customizing it."
451
+ msgstr ""
452
+
453
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:135
454
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:188
455
+ #: views/SlideshowPluginPostType/slides.php:58
456
+ #: views/SlideshowPluginPostType/slides.php:143
457
+ #: views/SlideshowPluginPostType/slides.php:195
458
+ #: views/SlideshowPluginPostType/slides.php:263
459
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:80
460
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:12
461
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:98
462
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:47
463
+ #: views/SlideshowPluginWidget/form.php:2
464
+ msgid "Title"
465
+ msgstr "כותרת"
466
+
467
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:144
468
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:196
469
+ msgid "Style"
470
+ msgstr "סגנון"
471
+
472
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:11
473
+ msgid "Note"
474
+ msgstr "הערה"
475
+
476
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:18
477
+ #, php-format
478
+ msgid ""
479
+ "The settings set on this page apply only to newly created slideshows and "
480
+ "therefore do not alter any existing ones. To adapt a slideshow's settings, "
481
+ "%sclick here.%s"
482
+ msgstr ""
483
+
484
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:29
485
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:15
486
+ msgid "Default Slideshow Settings"
487
+ msgstr "הגדרות ברירת המחדל למצגת"
488
+
489
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:41
490
+ #: views/SlideshowPluginPostType/settings.php:12
491
+ msgid "settings"
492
+ msgstr "הגדרות"
493
+
494
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:77
495
+ msgid "Default Slideshow Stylesheet"
496
+ msgstr "קובץ ברירת מחדל להגדרות עיצוב"
497
+
498
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:11
499
+ msgid "Add slideshows"
500
+ msgstr "הוספת מצגות"
501
+
502
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:12
503
+ msgid "Edit slideshows"
504
+ msgstr "עריכת מצגות"
505
+
506
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:13
507
+ msgid "Delete slideshows"
508
+ msgstr "מחיקת מצגות"
509
+
510
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:20
511
+ msgid "User Capabilities"
512
+ msgstr "יכולות משתמשים"
513
+
514
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:22
515
+ msgid "Select the user roles that will able to perform certain actions."
516
+ msgstr ""
517
+
518
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:38
519
+ msgid "Untitled role"
520
+ msgstr "תפקיד ללא-שם"
521
+
522
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:65
523
+ msgid "Settings"
524
+ msgstr "הגדרות"
525
+
526
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:69
527
+ msgid "Stylesheet location"
528
+ msgstr ""
529
+
530
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:72
531
+ msgid "top"
532
+ msgstr ""
533
+
534
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:73
535
+ msgid "bottom"
536
+ msgstr ""
537
+
538
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:16
539
+ msgid "Custom Styles"
540
+ msgstr "סגנונות מותאמים"
541
+
542
+ #: views/SlideshowPluginPostType/information.php:1
543
+ msgid ""
544
+ "To use this slideshow in your website either add this piece of shortcode to "
545
+ "your posts or pages"
546
+ msgstr ""
547
+
548
+ #: views/SlideshowPluginPostType/information.php:5
549
+ msgid ""
550
+ "Or add this piece of code to where ever in your website you want to place "
551
+ "the slideshow"
552
+ msgstr ""
553
+
554
+ #: views/SlideshowPluginPostType/information.php:9
555
+ #, php-format
556
+ msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
557
+ msgstr ""
558
+
559
+ #: views/SlideshowPluginPostType/settings.php:26
560
+ #: views/SlideshowPluginPostType/style-settings.php:11
561
+ msgid "Default"
562
+ msgstr "ברירת-מחדל"
563
+
564
+ #: views/SlideshowPluginPostType/slides.php:53
565
+ #: views/SlideshowPluginPostType/slides.php:190
566
+ #: views/SlideshowPluginSlideInserter/insert-text-button.php:1
567
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:6
568
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:41
569
+ msgid "Text slide"
570
+ msgstr "שקופית טקסט"
571
+
572
+ #: views/SlideshowPluginPostType/slides.php:60
573
+ #: views/SlideshowPluginPostType/slides.php:149
574
+ #: views/SlideshowPluginPostType/slides.php:197
575
+ #: views/SlideshowPluginPostType/slides.php:269
576
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:87
577
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:15
578
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:105
579
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:50
580
+ msgid "Description"
581
+ msgstr "תיאור"
582
+
583
+ #: views/SlideshowPluginPostType/slides.php:62
584
+ #: views/SlideshowPluginPostType/slides.php:199
585
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:21
586
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:56
587
+ msgid "Background color"
588
+ msgstr "צבע רקע"
589
+
590
+ #: views/SlideshowPluginPostType/slides.php:67
591
+ #: views/SlideshowPluginPostType/slides.php:154
592
+ #: views/SlideshowPluginPostType/slides.php:204
593
+ #: views/SlideshowPluginPostType/slides.php:274
594
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:94
595
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:28
596
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:112
597
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:64
598
+ msgid "URL"
599
+ msgstr "קישור"
600
+
601
+ #: views/SlideshowPluginPostType/slides.php:69
602
+ #: views/SlideshowPluginPostType/slides.php:156
603
+ #: views/SlideshowPluginPostType/slides.php:206
604
+ #: views/SlideshowPluginPostType/slides.php:276
605
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:97
606
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:31
607
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:115
608
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:67
609
+ msgid "Open URL in"
610
+ msgstr "פתח קישור ב-"
611
+
612
+ #: views/SlideshowPluginPostType/slides.php:71
613
+ #: views/SlideshowPluginPostType/slides.php:158
614
+ #: views/SlideshowPluginPostType/slides.php:208
615
+ #: views/SlideshowPluginPostType/slides.php:278
616
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:99
617
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:33
618
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:117
619
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:69
620
+ msgid "Same window"
621
+ msgstr "אותו החלון"
622
+
623
+ #: views/SlideshowPluginPostType/slides.php:72
624
+ #: views/SlideshowPluginPostType/slides.php:159
625
+ #: views/SlideshowPluginPostType/slides.php:209
626
+ #: views/SlideshowPluginPostType/slides.php:279
627
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:100
628
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:34
629
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:118
630
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:70
631
+ msgid "New window"
632
+ msgstr "חלון חדש"
633
+
634
+ #: views/SlideshowPluginPostType/slides.php:89
635
+ #: views/SlideshowPluginPostType/slides.php:229
636
+ #: views/SlideshowPluginSlideInserter/insert-video-button.php:1
637
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:53
638
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:23
639
+ msgid "Video slide"
640
+ msgstr "שקופית וידאו"
641
+
642
+ #: views/SlideshowPluginPostType/slides.php:94
643
+ #: views/SlideshowPluginPostType/slides.php:234
644
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:59
645
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:29
646
+ msgid "Youtube Video ID"
647
+ msgstr "מזהה וידאו ביו-טיוב"
648
+
649
+ #: views/SlideshowPluginPostType/slides.php:132
650
+ #: views/SlideshowPluginPostType/slides.php:254
651
+ #: views/SlideshowPluginSlideInserter/insert-image-button.php:1
652
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:66
653
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:86
654
+ msgid "Image slide"
655
+ msgstr "שקופית תמונה"
656
+
657
+ #: views/SlideshowPluginPostType/slides.php:170
658
+ msgid ""
659
+ "An error occurred while loading this slide, and it will not be present in "
660
+ "the slideshow"
661
+ msgstr ""
662
+
663
+ #: views/SlideshowPluginPostType/slides.php:176
664
+ #: views/SlideshowPluginPostType/slides.php:217
665
+ #: views/SlideshowPluginPostType/slides.php:242
666
+ #: views/SlideshowPluginPostType/slides.php:288
667
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:109
668
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:42
669
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:75
670
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:127
671
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:78
672
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:45
673
+ msgid "Delete slide"
674
+ msgstr "מחיקת שקופית"
675
+
676
+ #: views/SlideshowPluginPostType/style-settings.php:22
677
+ #, php-format
678
+ msgid "Custom styles can be created and customized %shere%s."
679
+ msgstr ""
680
+
681
+ #: views/SlideshowPluginPostType/support-plugin.php:3
682
+ msgid "Help to keep this plugin free!"
683
+ msgstr "עזרו לשמור על הפלאגין הזה חינמי!"
684
+
685
+ #: views/SlideshowPluginPostType/support-plugin.php:6
686
+ msgid ""
687
+ "In order to keep you provided with the newest features, updates and bug "
688
+ "fixes, a lot of motivation is required. Therefore I'm kindly asking you to "
689
+ "consider making a small donation to the plugin or rating it as 5-stars on "
690
+ "Wordpress.org. Thank you in advance!"
691
+ msgstr ""
692
+
693
+ #: views/SlideshowPluginPostType/support-plugin.php:15
694
+ msgid "Rate on Wordpress.org"
695
+ msgstr "דרג באתר הפלאגינים של וורדפרס"
696
+
697
+ #: views/SlideshowPluginPostType/support-plugin.php:24
698
+ msgid "Frequently Asked Questions (FAQ)"
699
+ msgstr "שאלות נפוצות"
700
+
701
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
702
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
703
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
704
+ msgid "Insert a Slideshow"
705
+ msgstr "הוספת מצגת"
706
+
707
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
708
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
709
+ msgid "Insert Slideshow"
710
+ msgstr "הוסף מצגת"
711
+
712
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
713
+ msgid "Select a slideshow"
714
+ msgstr "בחר מצגת"
715
+
716
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
717
+ #: views/SlideshowPluginWidget/form.php:12
718
+ msgid "Untitled slideshow"
719
+ msgstr "מצגת ללא-שם"
720
+
721
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
722
+ msgid "Cancel"
723
+ msgstr "ביטול"
724
+
725
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
726
+ #, php-format
727
+ msgid ""
728
+ "It seems you haven't created any slideshows yet. %sYou can create a "
729
+ "slideshow here!%s"
730
+ msgstr ""
731
+
732
+ #: views/SlideshowPluginSlideInserter/search-popup.php:6
733
+ msgid "Search"
734
+ msgstr "חיפוש"
735
+
736
+ #: views/SlideshowPluginSlideInserter/search-popup.php:7
737
+ msgid "Search images by title or ID"
738
+ msgstr "חיפוש תמונות לפי כותרת או מזהה"
739
+
740
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:18
741
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:53
742
+ msgid "Text color"
743
+ msgstr "צבע כיתוב"
744
+
745
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:66
746
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:36
747
+ msgid "Show related videos"
748
+ msgstr ""
749
+
750
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:58
751
+ msgid "(Leave empty for a transparent background)"
752
+ msgstr ""
753
+
754
+ #: views/SlideshowPluginUpload/upload-button.php:1
755
+ msgid "Upload/Manage Images"
756
+ msgstr "העלאה/ניהול תמונות"
757
+
758
+ #: views/SlideshowPluginWidget/form.php:9
759
+ msgid "Random Slideshow"
760
+ msgstr "מצגת אקראית"
761
+
762
+ #~ msgid "Questions / Suggestions"
763
+ #~ msgstr "שאלות / הצעות"
764
+
765
+ #~ msgid "light"
766
+ #~ msgstr "clair"
767
+
768
+ #~ msgid "slide"
769
+ #~ msgstr "diapo"
770
+
771
+ #~ msgid "Custom style editor (Does not work with a Strict Doctype)"
772
+ #~ msgstr "Aangepaste stijl bewerker (Werkt niet met een Strict Doctype)"
773
+
774
+ #~ msgid "Has the Slideshow plugin helped you?"
775
+ #~ msgstr "Heeft de Slideshow plugin je geholpen?"
776
+
777
+ #~ msgid "Help it back!"
778
+ #~ msgstr "Help hem terug!"
779
+
780
+ #~ msgid ""
781
+ #~ "If this plugin has filled you with happiness, please support the upkeep "
782
+ #~ "of the plugin by rating it on Wordpress, posting a suggestion for "
783
+ #~ "improvement on the support forum, or making a donation."
784
+ #~ msgstr ""
785
+ #~ "Als deze plugin je met blijdschap heeft vervuld, zou ik het enorm "
786
+ #~ "waarderen als je de plugin wilt beoordelen op Wordpress, een suggestie "
787
+ #~ "wilt maken voor verbetering, of een donatie doen wilt."
788
+
789
+ #~ msgid "Click on an image to insert it as a slide"
790
+ #~ msgstr "Klik op een plaatje om deze in te voegen als slide"
791
+
792
+ #~ msgid "Width of the slideshow"
793
+ #~ msgstr "Breedte van de slideshow"
794
+
795
+ #~ msgid "Defaults to parent's width."
796
+ #~ msgstr "Standaard ingesteld op de breedte van het bovenliggende element."
797
+
798
+ #~ msgid "Send user to image URL on click"
799
+ #~ msgstr ""
800
+ #~ "Wanner de gebruiker op de afbeelding klikt, stuur hem naar de URL van het "
801
+ #~ "plaatje"
802
+
803
+ #~ msgid "Leave any field open to use default value."
804
+ #~ msgstr "Een veld dat open wordt gelaten neemt de standaardwaarde aan."
languages/slideshow-plugin-it_IT.mo ADDED
Binary file
languages/slideshow-plugin-it_IT.po ADDED
@@ -0,0 +1,795 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Slideshow Plugin\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-08-21 10:45+0100\n"
6
+ "PO-Revision-Date: 2013-08-21 10:45+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.5.7\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 "Opzioni Generali"
22
+
23
+ #: classes/SlideshowPluginGeneralSettings.php:150
24
+ msgid "New"
25
+ msgstr "Nuovo"
26
+
27
+ #: classes/SlideshowPluginGeneralSettings.php:151
28
+ msgid "Are you sure you want to delete this custom style?"
29
+ msgstr "Sei sicuro di voler cancellare questo stile personalizzato?"
30
+
31
+ #: classes/SlideshowPluginGeneralSettings.php:196
32
+ #: classes/SlideshowPluginInstaller.php:516
33
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:6
34
+ msgid "Light"
35
+ msgstr "Chiaro"
36
+
37
+ #: classes/SlideshowPluginGeneralSettings.php:197
38
+ #: classes/SlideshowPluginInstaller.php:516
39
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:7
40
+ msgid "Dark"
41
+ msgstr "Scuro"
42
+
43
+ #: classes/SlideshowPluginGeneralSettings.php:353
44
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:57
45
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:139
46
+ msgid "Untitled"
47
+ msgstr "Senza titolo"
48
+
49
+ #: classes/SlideshowPluginInstaller.php:513
50
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:472
51
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:67
52
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:37
53
+ msgid "Yes"
54
+ msgstr "Si"
55
+
56
+ #: classes/SlideshowPluginInstaller.php:514
57
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:473
58
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:68
59
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:38
60
+ msgid "No"
61
+ msgstr "No"
62
+
63
+ #: classes/SlideshowPluginInstaller.php:516
64
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:610
65
+ msgid "The style used for this slideshow"
66
+ msgstr "Lo stile utilizzato per questo slideshow"
67
+
68
+ #: classes/SlideshowPluginInstaller.php:516
69
+ msgid "Custom"
70
+ msgstr "Personalizzato"
71
+
72
+ #: classes/SlideshowPluginInstaller.php:517
73
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:122
74
+ msgid "Custom style editor"
75
+ msgstr "Editor di stile personalizzato"
76
+
77
+ #: classes/SlideshowPluginInstaller.php:518
78
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:518
79
+ msgid "Animation used for transition between slides"
80
+ msgstr "Animazione utilizzata per la transizione tra le diapositive"
81
+
82
+ #: classes/SlideshowPluginInstaller.php:518
83
+ msgid "Slide"
84
+ msgstr "Scorrere"
85
+
86
+ #: classes/SlideshowPluginInstaller.php:518
87
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
88
+ msgid "Fade"
89
+ msgstr "Dissolvenza"
90
+
91
+ #: classes/SlideshowPluginInstaller.php:518
92
+ #: classes/SlideshowPluginInstaller.php:519
93
+ #: classes/SlideshowPluginInstaller.php:520
94
+ #: classes/SlideshowPluginInstaller.php:521
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 "Animazione"
101
+
102
+ #: classes/SlideshowPluginInstaller.php:519
103
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:519
104
+ msgid "Number of seconds the slide takes to slide in"
105
+ msgstr "Numero di secondi il vetrino porta a scivolare in"
106
+
107
+ #: classes/SlideshowPluginInstaller.php:520
108
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:520
109
+ msgid "Number of seconds the description takes to slide in"
110
+ msgstr "Numero di secondi la descrizione serve per scorrere in"
111
+
112
+ #: classes/SlideshowPluginInstaller.php:521
113
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:521
114
+ msgid "Seconds between changing slides"
115
+ msgstr "Secondi tra le diapositive che cambiano"
116
+
117
+ #: classes/SlideshowPluginInstaller.php:522
118
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:522
119
+ msgid "Number of slides to fit into one slide"
120
+ msgstr "Numero di diapositive da inserirsi in una presentazione"
121
+
122
+ #: classes/SlideshowPluginInstaller.php:522
123
+ #: classes/SlideshowPluginInstaller.php:523
124
+ #: classes/SlideshowPluginInstaller.php:524
125
+ #: classes/SlideshowPluginInstaller.php:525
126
+ #: classes/SlideshowPluginInstaller.php:526
127
+ #: classes/SlideshowPluginInstaller.php:527
128
+ #: classes/SlideshowPluginInstaller.php:528
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 "Mostrare"
140
+
141
+ #: classes/SlideshowPluginInstaller.php:523
142
+ msgid "Width of the slideshow, set to parent&#39;s width on 0"
143
+ msgstr "Larghezza della presentazione, impostata su 0"
144
+
145
+ #: classes/SlideshowPluginInstaller.php:524
146
+ msgid "Height of the slideshow"
147
+ msgstr "Altezza della presentazione"
148
+
149
+ #: classes/SlideshowPluginInstaller.php:525
150
+ msgid "Height of the description boxes"
151
+ msgstr "Altezza delle scatole descrizione"
152
+
153
+ #: classes/SlideshowPluginInstaller.php:526
154
+ msgid "Fit image into slide (stretching it)"
155
+ msgstr "Inserire un'immagine in diapositiva "
156
+
157
+ #: classes/SlideshowPluginInstaller.php:527
158
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:529
159
+ msgid "Show title and description"
160
+ msgstr "Mostra titolo e una descrizione"
161
+
162
+ #: classes/SlideshowPluginInstaller.php:528
163
+ msgid "Hide description box, it will pop up when a mouse hovers over the slide"
164
+ msgstr ""
165
+ "Nascondi casella di descrizione, si aprirà quando il mouse passa sopra la "
166
+ "diapositiva"
167
+
168
+ #: classes/SlideshowPluginInstaller.php:529
169
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:531
170
+ msgid "Automatically slide to the next slide"
171
+ msgstr "Far scorrere automaticamente alla diapositiva successiva"
172
+
173
+ #: classes/SlideshowPluginInstaller.php:529
174
+ #: classes/SlideshowPluginInstaller.php:530
175
+ #: classes/SlideshowPluginInstaller.php:531
176
+ #: classes/SlideshowPluginInstaller.php:532
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 "Controllare"
188
+
189
+ #: classes/SlideshowPluginInstaller.php:530
190
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:532
191
+ msgid "Return to the beginning of the slideshow after last slide"
192
+ msgstr "Tornare all'inizio della presentazione dopo l'ultima diapositiva"
193
+
194
+ #: classes/SlideshowPluginInstaller.php:531
195
+ msgid "Activate buttons (so the user can scroll through the slides)"
196
+ msgstr "Pulsanti Attiva (in modo che l'utente può scorrere le diapositive)"
197
+
198
+ #: classes/SlideshowPluginInstaller.php:532
199
+ msgid "Show control panel (play and pause button)"
200
+ msgstr "Mostra pannello di controllo (tasto play e pausa)"
201
+
202
+ #: classes/SlideshowPluginPostType.php:38
203
+ msgid "Slideshows"
204
+ msgstr "Slideshow"
205
+
206
+ #: classes/SlideshowPluginPostType.php:39
207
+ #: views/SlideshowPluginWidget/form.php:7
208
+ msgid "Slideshow"
209
+ msgstr "Slideshow"
210
+
211
+ #: classes/SlideshowPluginPostType.php:40
212
+ msgid "Add New Slideshow"
213
+ msgstr "Aggiungi nuovo Slideshow"
214
+
215
+ #: classes/SlideshowPluginPostType.php:41
216
+ msgid "Edit slideshow"
217
+ msgstr "Modifica slideshow"
218
+
219
+ #: classes/SlideshowPluginPostType.php:42
220
+ msgid "New slideshow"
221
+ msgstr "Nuovo slideshow"
222
+
223
+ #: classes/SlideshowPluginPostType.php:43
224
+ msgid "View slideshow"
225
+ msgstr "Visualizza slideshow"
226
+
227
+ #: classes/SlideshowPluginPostType.php:44
228
+ msgid "Search slideshows"
229
+ msgstr "Cerca slideshow"
230
+
231
+ #: classes/SlideshowPluginPostType.php:45
232
+ #: classes/SlideshowPluginPostType.php:46
233
+ msgid "No slideshows found"
234
+ msgstr "Slideshow non trovato"
235
+
236
+ #: classes/SlideshowPluginPostType.php:91
237
+ msgid "Information"
238
+ msgstr "Informazioni"
239
+
240
+ #: classes/SlideshowPluginPostType.php:100
241
+ msgid "Slides List"
242
+ msgstr "Lista diapositive"
243
+
244
+ #: classes/SlideshowPluginPostType.php:109
245
+ msgid "Slideshow Style"
246
+ msgstr "Stile slideshow"
247
+
248
+ #: classes/SlideshowPluginPostType.php:118
249
+ msgid "Slideshow Settings"
250
+ msgstr "Impostazioni slideshow"
251
+
252
+ #: classes/SlideshowPluginPostType.php:174
253
+ #: classes/SlideshowPluginSlideInserter.php:222
254
+ #: views/SlideshowPluginPostType/slides.php:2
255
+ msgid "Insert"
256
+ msgstr "Inserire"
257
+
258
+ #: classes/SlideshowPluginPostType.php:183
259
+ #: views/SlideshowPluginPostType/slides.php:9
260
+ msgid "Add slides to this slideshow by using one of the buttons above."
261
+ msgstr ""
262
+ "Aggiungi diapositive per questo slideshow utilizzando uno dei pulsanti di "
263
+ "qui sopra."
264
+
265
+ #: classes/SlideshowPluginShortcode.php:148
266
+ msgid "No slideshow selected."
267
+ msgstr "Nessun presentazione selezionata."
268
+
269
+ #: classes/SlideshowPluginSlideInserter.php:178
270
+ msgid "More results loaded"
271
+ msgstr "Altri risultati caricati"
272
+
273
+ #: classes/SlideshowPluginSlideInserter.php:233
274
+ msgid "Load more results"
275
+ msgstr "Carica altri risultati"
276
+
277
+ #: classes/SlideshowPluginSlideInserter.php:244
278
+ msgid "No images were found, click here to upload some."
279
+ msgstr "Non ci sono immagini, clicca qui per caricare."
280
+
281
+ #: classes/SlideshowPluginSlideInserter.php:316
282
+ msgid "Are you sure you want to delete this slide?"
283
+ msgstr "Sei sicuro di voler eliminare questa diapositiva?"
284
+
285
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:523
286
+ msgid "Maximum width. When maximum width is 0, maximum width is ignored"
287
+ msgstr ""
288
+ "Larghezza massima. Quando la larghezza massima è pari a 0, la larghezza "
289
+ "massima è ignorato"
290
+
291
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
292
+ msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
293
+ msgstr "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
294
+
295
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
296
+ msgid "More info"
297
+ msgstr "Maggiori informazioni"
298
+
299
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
300
+ #, php-format
301
+ msgid ""
302
+ "Proportional relationship%s between slideshow's width and height (width:"
303
+ "height)"
304
+ msgstr ""
305
+ "Relazione proporzionale%s tra larghezza di slideshow e l'altezza (larghezza: "
306
+ "altezza)"
307
+
308
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:525
309
+ msgid "Slideshow's height"
310
+ msgstr "Altezza Slideshow"
311
+
312
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:526
313
+ msgid "Fit image into slide (Stretch image)"
314
+ msgstr "Inserire un'immagine in diapositiva (stendere immagine)"
315
+
316
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:527
317
+ msgid "Shrink slideshow's height when width shrinks"
318
+ msgstr "Riduci la quota di presentazione quando si restringe larghezza"
319
+
320
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:528
321
+ msgid ""
322
+ "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
323
+ msgstr ""
324
+ "Abilitare la reattività (Riduci la larghezza di presentazione quando si "
325
+ "riduce la larghezza di pagina)"
326
+
327
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:530
328
+ msgid "Hide description box, pop up when mouse hovers over"
329
+ msgstr "Nascondi casella di descrizione, pop-up quando si passa il mouse sopra"
330
+
331
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:533
332
+ msgid "Pause slideshow when mouse hovers over"
333
+ msgstr "Slideshow in pausa quando il mouse passa sopra"
334
+
335
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:534
336
+ msgid "Activate navigation buttons"
337
+ msgstr "Attiva pulsanti di navigazione"
338
+
339
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:535
340
+ msgid "Hide navigation buttons, show when mouse hovers over"
341
+ msgstr "Nascondi pulsanti di navigazione, mostrare quando il mouse passa sopra"
342
+
343
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:536
344
+ msgid "Activate pagination"
345
+ msgstr "Attiva paginazione"
346
+
347
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:537
348
+ msgid "Hide pagination, show when mouse hovers over"
349
+ msgstr "Nascondi impaginazione, mostrare quando il mouse passa sopra"
350
+
351
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:538
352
+ msgid "Activate control panel (play and pause button)"
353
+ msgstr "Pannello di controllo Attiva (tasto play e pausa)"
354
+
355
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:539
356
+ msgid "Hide control panel, show when mouse hovers over"
357
+ msgstr ""
358
+ "Nascondere il pannello di controllo, mostrare quando il mouse passa sopra"
359
+
360
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:540
361
+ msgid "Wait until the next slide has loaded before showing it"
362
+ msgstr ""
363
+
364
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:541
365
+ msgid "Show a loading icon until the first slide appears"
366
+ msgstr ""
367
+
368
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:542
369
+ msgid "Randomize slides"
370
+ msgstr "Diapositive casuale"
371
+
372
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:543
373
+ #, php-format
374
+ msgid "Avoid content filter (disable if '%s' is shown)"
375
+ msgstr "Filtro dei contenuti (disabilitare se viene mostrato '%s')"
376
+
377
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
378
+ msgid "Slide Left"
379
+ msgstr "Scorrere verso sinistra"
380
+
381
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
382
+ msgid "Slide Right"
383
+ msgstr "Scorrere verso destra"
384
+
385
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
386
+ msgid "Slide Up"
387
+ msgstr "Scorrere verso l'alto"
388
+
389
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
390
+ msgid "Slide Down"
391
+ msgstr "Scorrere verso il basso"
392
+
393
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
394
+ msgid "Direct Fade"
395
+ msgstr "Dissolvenza"
396
+
397
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
398
+ msgid "Random Animation"
399
+ msgstr "Animazione casuale"
400
+
401
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:569
402
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:570
403
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:571
404
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:572
405
+ msgid "Miscellaneous"
406
+ msgstr "Varie"
407
+
408
+ #: classes/SlideshowPluginWidget.php:23
409
+ msgid "Enables you to show your slideshows in the widget area of your website."
410
+ msgstr ""
411
+ "Consente di mostrare le vostre presentazioni nell'area widget di del tuo "
412
+ "sito web."
413
+
414
+ #: classes/SlideshowPluginWidget.php:29
415
+ msgid "Slideshow Widget"
416
+ msgstr "Slideshow Widget"
417
+
418
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:46
419
+ msgid "Default stylesheets"
420
+ msgstr "Fogli di stile di default"
421
+
422
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:60
423
+ msgid "Create a new custom style from this style"
424
+ msgstr "Creare un nuovo stile personalizzato da questo stile"
425
+
426
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:62
427
+ msgid "Customize"
428
+ msgstr "Personalizza"
429
+
430
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:76
431
+ msgid "Custom stylesheets"
432
+ msgstr "Fogli di stile personalizzati"
433
+
434
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:89
435
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:168
436
+ msgid "Edit this style"
437
+ msgstr "Modifica questo stile"
438
+
439
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:91
440
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:170
441
+ #: views/SlideshowPluginPostType/slides.php:137
442
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:72
443
+ msgid "Edit"
444
+ msgstr "Modifica"
445
+
446
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:98
447
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:177
448
+ msgid "Delete this style"
449
+ msgstr "Elimina questo stile"
450
+
451
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:100
452
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:179
453
+ msgid "Delete"
454
+ msgstr "Cancella"
455
+
456
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:110
457
+ msgid "Click 'Customize' to create a new custom stylesheet."
458
+ msgstr ""
459
+ "Fare clic su 'Personalizza' per creare un nuovo foglio di stile "
460
+ "personalizzato."
461
+
462
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:126
463
+ msgid "Select a stylesheet from the left to start customizing it."
464
+ msgstr ""
465
+ "Selezionare un foglio di stile da sinistra per iniziare a personalizzare."
466
+
467
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:135
468
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:188
469
+ #: views/SlideshowPluginPostType/slides.php:58
470
+ #: views/SlideshowPluginPostType/slides.php:143
471
+ #: views/SlideshowPluginPostType/slides.php:195
472
+ #: views/SlideshowPluginPostType/slides.php:263
473
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:80
474
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:12
475
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:98
476
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:47
477
+ #: views/SlideshowPluginWidget/form.php:2
478
+ msgid "Title"
479
+ msgstr "Titolo"
480
+
481
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:144
482
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:196
483
+ msgid "Style"
484
+ msgstr "Stile"
485
+
486
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:11
487
+ msgid "Note"
488
+ msgstr "Note"
489
+
490
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:18
491
+ #, php-format
492
+ msgid ""
493
+ "The settings set on this page apply only to newly created slideshows and "
494
+ "therefore do not alter any existing ones. To adapt a slideshow's settings, "
495
+ "%sclick here.%s"
496
+ msgstr ""
497
+ "Le impostazioni definite in questa pagina si applicano solo alle "
498
+ "presentazioni di nuova costituzione e, pertanto, non incidono sui quelli "
499
+ "esistenti. Per adattare le impostazioni di una presentazione, %sclick here.%s"
500
+
501
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:29
502
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:15
503
+ msgid "Default Slideshow Settings"
504
+ msgstr "Impostazioni Slideshow di default"
505
+
506
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:41
507
+ #: views/SlideshowPluginPostType/settings.php:12
508
+ msgid "settings"
509
+ msgstr "impostazioni"
510
+
511
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:77
512
+ msgid "Default Slideshow Stylesheet"
513
+ msgstr "Slideshow con foglio di stile predefinito"
514
+
515
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:11
516
+ msgid "Add slideshows"
517
+ msgstr "Aggiungi slideshows"
518
+
519
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:12
520
+ msgid "Edit slideshows"
521
+ msgstr "Modifica slideshow"
522
+
523
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:13
524
+ msgid "Delete slideshows"
525
+ msgstr "Elimina slideshow"
526
+
527
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:20
528
+ msgid "User Capabilities"
529
+ msgstr "Funzionalità utente"
530
+
531
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:22
532
+ msgid "Select the user roles that will able to perform certain actions."
533
+ msgstr ""
534
+ "Selezionare i ruoli utente, che sarà in grado di eseguire determinate azioni."
535
+
536
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:38
537
+ msgid "Untitled role"
538
+ msgstr "Ruolo senza titolo"
539
+
540
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:65
541
+ msgid "Settings"
542
+ msgstr ""
543
+
544
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:69
545
+ msgid "Stylesheet location"
546
+ msgstr ""
547
+
548
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:72
549
+ msgid "top"
550
+ msgstr ""
551
+
552
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:73
553
+ msgid "bottom"
554
+ msgstr ""
555
+
556
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:16
557
+ msgid "Custom Styles"
558
+ msgstr "Stili personalizzati"
559
+
560
+ #: views/SlideshowPluginPostType/information.php:1
561
+ msgid ""
562
+ "To use this slideshow in your website either add this piece of shortcode to "
563
+ "your posts or pages"
564
+ msgstr ""
565
+ "Per utilizzare questo slideshow nel tuo sito web o aggiungi questo pezzo di "
566
+ "shortcode ai tuoi post o le pagine"
567
+
568
+ #: views/SlideshowPluginPostType/information.php:5
569
+ msgid ""
570
+ "Or add this piece of code to where ever in your website you want to place "
571
+ "the slideshow"
572
+ msgstr ""
573
+ "Oppure aggiungi questo pezzo di codice dove mai nel vostro sito web che si "
574
+ "desidera posizionare la presentazione"
575
+
576
+ #: views/SlideshowPluginPostType/information.php:9
577
+ #, php-format
578
+ msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
579
+ msgstr ""
580
+ "Fare clic su %swidgets page%s per creare un nuovo foglio di stile "
581
+ "personalizzato."
582
+
583
+ #: views/SlideshowPluginPostType/settings.php:26
584
+ #: views/SlideshowPluginPostType/style-settings.php:11
585
+ msgid "Default"
586
+ msgstr "Default"
587
+
588
+ #: views/SlideshowPluginPostType/slides.php:53
589
+ #: views/SlideshowPluginPostType/slides.php:190
590
+ #: views/SlideshowPluginSlideInserter/insert-text-button.php:1
591
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:6
592
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:41
593
+ msgid "Text slide"
594
+ msgstr "Testo scorrevole"
595
+
596
+ #: views/SlideshowPluginPostType/slides.php:60
597
+ #: views/SlideshowPluginPostType/slides.php:149
598
+ #: views/SlideshowPluginPostType/slides.php:197
599
+ #: views/SlideshowPluginPostType/slides.php:269
600
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:87
601
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:15
602
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:105
603
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:50
604
+ msgid "Description"
605
+ msgstr "Descrizione"
606
+
607
+ #: views/SlideshowPluginPostType/slides.php:62
608
+ #: views/SlideshowPluginPostType/slides.php:199
609
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:21
610
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:56
611
+ msgid "Background color"
612
+ msgstr "Colore di sfondo"
613
+
614
+ #: views/SlideshowPluginPostType/slides.php:67
615
+ #: views/SlideshowPluginPostType/slides.php:154
616
+ #: views/SlideshowPluginPostType/slides.php:204
617
+ #: views/SlideshowPluginPostType/slides.php:274
618
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:94
619
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:28
620
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:112
621
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:64
622
+ msgid "URL"
623
+ msgstr "URL"
624
+
625
+ #: views/SlideshowPluginPostType/slides.php:69
626
+ #: views/SlideshowPluginPostType/slides.php:156
627
+ #: views/SlideshowPluginPostType/slides.php:206
628
+ #: views/SlideshowPluginPostType/slides.php:276
629
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:97
630
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:31
631
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:115
632
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:67
633
+ msgid "Open URL in"
634
+ msgstr "Apri URL nel"
635
+
636
+ #: views/SlideshowPluginPostType/slides.php:71
637
+ #: views/SlideshowPluginPostType/slides.php:158
638
+ #: views/SlideshowPluginPostType/slides.php:208
639
+ #: views/SlideshowPluginPostType/slides.php:278
640
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:99
641
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:33
642
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:117
643
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:69
644
+ msgid "Same window"
645
+ msgstr "Stessa finestra"
646
+
647
+ #: views/SlideshowPluginPostType/slides.php:72
648
+ #: views/SlideshowPluginPostType/slides.php:159
649
+ #: views/SlideshowPluginPostType/slides.php:209
650
+ #: views/SlideshowPluginPostType/slides.php:279
651
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:100
652
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:34
653
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:118
654
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:70
655
+ msgid "New window"
656
+ msgstr "Nuova finestra"
657
+
658
+ #: views/SlideshowPluginPostType/slides.php:89
659
+ #: views/SlideshowPluginPostType/slides.php:229
660
+ #: views/SlideshowPluginSlideInserter/insert-video-button.php:1
661
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:53
662
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:23
663
+ msgid "Video slide"
664
+ msgstr "Video slideshow"
665
+
666
+ #: views/SlideshowPluginPostType/slides.php:94
667
+ #: views/SlideshowPluginPostType/slides.php:234
668
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:59
669
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:29
670
+ msgid "Youtube Video ID"
671
+ msgstr "Youtube Video ID"
672
+
673
+ #: views/SlideshowPluginPostType/slides.php:132
674
+ #: views/SlideshowPluginPostType/slides.php:254
675
+ #: views/SlideshowPluginSlideInserter/insert-image-button.php:1
676
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:66
677
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:86
678
+ msgid "Image slide"
679
+ msgstr "Slideshow mmagine"
680
+
681
+ #: views/SlideshowPluginPostType/slides.php:170
682
+ msgid ""
683
+ "An error occurred while loading this slide, and it will not be present in "
684
+ "the slideshow"
685
+ msgstr ""
686
+ "Si è verificato un errore durante il caricamento di questa diapositiva, e "
687
+ "non sarà presente nello slideshow"
688
+
689
+ #: views/SlideshowPluginPostType/slides.php:176
690
+ #: views/SlideshowPluginPostType/slides.php:217
691
+ #: views/SlideshowPluginPostType/slides.php:242
692
+ #: views/SlideshowPluginPostType/slides.php:288
693
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:109
694
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:42
695
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:75
696
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:127
697
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:78
698
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:45
699
+ msgid "Delete slide"
700
+ msgstr "Elimina diapositiva"
701
+
702
+ #: views/SlideshowPluginPostType/style-settings.php:22
703
+ #, php-format
704
+ msgid "Custom styles can be created and customized %shere%s."
705
+ msgstr "Stili personalizzati possono essere creati e personalizzati %squi%s."
706
+
707
+ #: views/SlideshowPluginPostType/support-plugin.php:3
708
+ msgid "Help to keep this plugin free!"
709
+ msgstr "Aiuta a mantenere questo plugin gratuito!"
710
+
711
+ #: views/SlideshowPluginPostType/support-plugin.php:6
712
+ msgid ""
713
+ "In order to keep you provided with the newest features, updates and bug "
714
+ "fixes, a lot of motivation is required. Therefore I'm kindly asking you to "
715
+ "consider making a small donation to the plugin or rating it as 5-stars on "
716
+ "Wordpress.org. Thank you in advance!"
717
+ msgstr ""
718
+ "Per mantenere il plugin con le caratteristiche più recenti, il supporto, "
719
+ "forum e bug-fix, è necessario un sacco di tempo. Per questo chiedo "
720
+ "gentilmente di prendere in considerazione di fare una piccola donazione per "
721
+ "il plugin o se volete un semplice voto su Wordpress.org. Grazie in anticipo!"
722
+
723
+ #: views/SlideshowPluginPostType/support-plugin.php:15
724
+ msgid "Rate on Wordpress.org"
725
+ msgstr "Vota su Wordpress.org"
726
+
727
+ #: views/SlideshowPluginPostType/support-plugin.php:24
728
+ msgid "Frequently Asked Questions (FAQ)"
729
+ msgstr "Domande frequenti (FAQ)"
730
+
731
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
732
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
733
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
734
+ msgid "Insert a Slideshow"
735
+ msgstr "inserire uno slideshow"
736
+
737
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
738
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
739
+ msgid "Insert Slideshow"
740
+ msgstr "inserire slideshow"
741
+
742
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
743
+ msgid "Select a slideshow"
744
+ msgstr "Seleziona una slideshow"
745
+
746
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
747
+ #: views/SlideshowPluginWidget/form.php:12
748
+ msgid "Untitled slideshow"
749
+ msgstr "Presentazione senza titolo"
750
+
751
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
752
+ msgid "Cancel"
753
+ msgstr "Cancella"
754
+
755
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
756
+ #, php-format
757
+ msgid ""
758
+ "It seems you haven't created any slideshows yet. %sYou can create a "
759
+ "slideshow here!%s"
760
+ msgstr ""
761
+ "Sembra che non sono ancora stati creati slideshow. %sPuoi creare una "
762
+ "presentazione qui!%s"
763
+
764
+ #: views/SlideshowPluginSlideInserter/search-popup.php:6
765
+ msgid "Search"
766
+ msgstr "Cerca"
767
+
768
+ #: views/SlideshowPluginSlideInserter/search-popup.php:7
769
+ msgid "Search images by title or ID"
770
+ msgstr "Cerca immagini per titolo o ID"
771
+
772
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:18
773
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:53
774
+ msgid "Text color"
775
+ msgstr "Colore del testo"
776
+
777
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:66
778
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:36
779
+ msgid "Show related videos"
780
+ msgstr ""
781
+
782
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:58
783
+ msgid "(Leave empty for a transparent background)"
784
+ msgstr "(Lascia vuoto per uno sfondo trasparente)"
785
+
786
+ #: views/SlideshowPluginUpload/upload-button.php:1
787
+ msgid "Upload/Manage Images"
788
+ msgstr "Carica / Gestire le immagini"
789
+
790
+ #: views/SlideshowPluginWidget/form.php:9
791
+ msgid "Random Slideshow"
792
+ msgstr "Slideshow a caso"
793
+
794
+ #~ msgid "Leave any field open to use default value."
795
+ #~ msgstr "Een veld dat open wordt gelaten neemt de standaardwaarde aan."
languages/slideshow-plugin-ja.mo ADDED
Binary file
languages/slideshow-plugin-ja.po ADDED
@@ -0,0 +1,782 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Slideshow Plugin\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-08-21 10:46+0100\n"
6
+ "PO-Revision-Date: 2013-08-21 10:46+0100\n"
7
+ "Last-Translator: HOTTA Michihide <hotta@net-newbie.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
+ "Plural-Forms: nplurals=2; plural=n != 1;\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
19
+ #: classes/SlideshowPluginGeneralSettings.php:83
20
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:14
21
+ msgid "General Settings"
22
+ msgstr "一般設定"
23
+
24
+ #: classes/SlideshowPluginGeneralSettings.php:150
25
+ msgid "New"
26
+ msgstr "New"
27
+
28
+ #: classes/SlideshowPluginGeneralSettings.php:151
29
+ msgid "Are you sure you want to delete this custom style?"
30
+ msgstr "このカスタムスタイルを削除してよろしいですか?"
31
+
32
+ #: classes/SlideshowPluginGeneralSettings.php:196
33
+ #: classes/SlideshowPluginInstaller.php:516
34
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:6
35
+ msgid "Light"
36
+ msgstr "Light"
37
+
38
+ #: classes/SlideshowPluginGeneralSettings.php:197
39
+ #: classes/SlideshowPluginInstaller.php:516
40
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:7
41
+ msgid "Dark"
42
+ msgstr "Dark"
43
+
44
+ #: classes/SlideshowPluginGeneralSettings.php:353
45
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:57
46
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:139
47
+ msgid "Untitled"
48
+ msgstr "タイトルなし"
49
+
50
+ #: classes/SlideshowPluginInstaller.php:513
51
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:472
52
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:67
53
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:37
54
+ msgid "Yes"
55
+ msgstr "はい"
56
+
57
+ #: classes/SlideshowPluginInstaller.php:514
58
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:473
59
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:68
60
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:38
61
+ msgid "No"
62
+ msgstr "いいえ"
63
+
64
+ #: classes/SlideshowPluginInstaller.php:516
65
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:610
66
+ msgid "The style used for this slideshow"
67
+ msgstr "このスライドショーで使用するスタイル"
68
+
69
+ #: classes/SlideshowPluginInstaller.php:516
70
+ msgid "Custom"
71
+ msgstr "カスタム"
72
+
73
+ #: classes/SlideshowPluginInstaller.php:517
74
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:122
75
+ msgid "Custom style editor"
76
+ msgstr "カスタムスタイルエディタ"
77
+
78
+ #: classes/SlideshowPluginInstaller.php:518
79
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:518
80
+ msgid "Animation used for transition between slides"
81
+ msgstr "スライド遷移の際に使用するアニメーション"
82
+
83
+ #: classes/SlideshowPluginInstaller.php:518
84
+ msgid "Slide"
85
+ msgstr "スライド"
86
+
87
+ #: classes/SlideshowPluginInstaller.php:518
88
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
89
+ msgid "Fade"
90
+ msgstr "フェード"
91
+
92
+ #: classes/SlideshowPluginInstaller.php:518
93
+ #: classes/SlideshowPluginInstaller.php:519
94
+ #: classes/SlideshowPluginInstaller.php:520
95
+ #: classes/SlideshowPluginInstaller.php:521
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 "アニメーション"
102
+
103
+ #: classes/SlideshowPluginInstaller.php:519
104
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:519
105
+ msgid "Number of seconds the slide takes to slide in"
106
+ msgstr "スライドがスライド・インするために要する秒数"
107
+
108
+ #: classes/SlideshowPluginInstaller.php:520
109
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:520
110
+ msgid "Number of seconds the description takes to slide in"
111
+ msgstr "説明文がスライド・インするために要する秒数"
112
+
113
+ #: classes/SlideshowPluginInstaller.php:521
114
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:521
115
+ msgid "Seconds between changing slides"
116
+ msgstr "スライドを切り替える間の秒数"
117
+
118
+ #: classes/SlideshowPluginInstaller.php:522
119
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:522
120
+ msgid "Number of slides to fit into one slide"
121
+ msgstr "同時に表示するスライドの枠(分割数)"
122
+
123
+ #: classes/SlideshowPluginInstaller.php:522
124
+ #: classes/SlideshowPluginInstaller.php:523
125
+ #: classes/SlideshowPluginInstaller.php:524
126
+ #: classes/SlideshowPluginInstaller.php:525
127
+ #: classes/SlideshowPluginInstaller.php:526
128
+ #: classes/SlideshowPluginInstaller.php:527
129
+ #: classes/SlideshowPluginInstaller.php:528
130
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:551
131
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:552
132
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:553
133
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:554
134
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
135
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:556
136
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:557
137
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:558
138
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:559
139
+ msgid "Display"
140
+ msgstr "画面"
141
+
142
+ #: classes/SlideshowPluginInstaller.php:523
143
+ msgid "Width of the slideshow, set to parent&#39;s width on 0"
144
+ msgstr "スライドショーの幅。親の幅を 0 にします。"
145
+
146
+ #: classes/SlideshowPluginInstaller.php:524
147
+ msgid "Height of the slideshow"
148
+ msgstr "スライドショーの高さ"
149
+
150
+ #: classes/SlideshowPluginInstaller.php:525
151
+ msgid "Height of the description boxes"
152
+ msgstr "説明文ボックスの高さ"
153
+
154
+ #: classes/SlideshowPluginInstaller.php:526
155
+ msgid "Fit image into slide (stretching it)"
156
+ msgstr "画像をスライドの大きさに合わせる(拡大する)"
157
+
158
+ #: classes/SlideshowPluginInstaller.php:527
159
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:529
160
+ msgid "Show title and description"
161
+ msgstr "タイトルと説明文を表示する"
162
+
163
+ #: classes/SlideshowPluginInstaller.php:528
164
+ msgid "Hide description box, it will pop up when a mouse hovers over the slide"
165
+ msgstr ""
166
+ "説明文ボックスを隠しておき、スライド上でマウスオーバーしたらポップアップする"
167
+
168
+ #: classes/SlideshowPluginInstaller.php:529
169
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:531
170
+ msgid "Automatically slide to the next slide"
171
+ msgstr "自動的に次のスライドを表示する"
172
+
173
+ #: classes/SlideshowPluginInstaller.php:529
174
+ #: classes/SlideshowPluginInstaller.php:530
175
+ #: classes/SlideshowPluginInstaller.php:531
176
+ #: classes/SlideshowPluginInstaller.php:532
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:530
190
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:532
191
+ msgid "Return to the beginning of the slideshow after last slide"
192
+ msgstr "最終スライドの次は先頭に戻る"
193
+
194
+ #: classes/SlideshowPluginInstaller.php:531
195
+ msgid "Activate buttons (so the user can scroll through the slides)"
196
+ msgstr "ボタンを有効にする(ユーザはスライドを通してスクロールできます)"
197
+
198
+ #: classes/SlideshowPluginInstaller.php:532
199
+ msgid "Show control panel (play and pause button)"
200
+ msgstr "コントロールパネル(再生/停止ボタン)を表示する"
201
+
202
+ #: classes/SlideshowPluginPostType.php:38
203
+ msgid "Slideshows"
204
+ msgstr "スライドショー"
205
+
206
+ #: classes/SlideshowPluginPostType.php:39
207
+ #: views/SlideshowPluginWidget/form.php:7
208
+ msgid "Slideshow"
209
+ msgstr "スライドショー"
210
+
211
+ #: classes/SlideshowPluginPostType.php:40
212
+ msgid "Add New Slideshow"
213
+ msgstr "新しいスライドショーを追加する"
214
+
215
+ #: classes/SlideshowPluginPostType.php:41
216
+ msgid "Edit slideshow"
217
+ msgstr "スライドショーの編集"
218
+
219
+ #: classes/SlideshowPluginPostType.php:42
220
+ msgid "New slideshow"
221
+ msgstr "新しいスライドショー"
222
+
223
+ #: classes/SlideshowPluginPostType.php:43
224
+ msgid "View slideshow"
225
+ msgstr "スライドショーを見る"
226
+
227
+ #: classes/SlideshowPluginPostType.php:44
228
+ msgid "Search slideshows"
229
+ msgstr "スライドショーを検索"
230
+
231
+ #: classes/SlideshowPluginPostType.php:45
232
+ #: classes/SlideshowPluginPostType.php:46
233
+ msgid "No slideshows found"
234
+ msgstr "スライドショーがありません"
235
+
236
+ #: classes/SlideshowPluginPostType.php:91
237
+ msgid "Information"
238
+ msgstr "参考情報"
239
+
240
+ #: classes/SlideshowPluginPostType.php:100
241
+ msgid "Slides List"
242
+ msgstr ""
243
+
244
+ #: classes/SlideshowPluginPostType.php:109
245
+ msgid "Slideshow Style"
246
+ msgstr "スライドショーのスタイル"
247
+
248
+ #: classes/SlideshowPluginPostType.php:118
249
+ msgid "Slideshow Settings"
250
+ msgstr "スライドショー設定"
251
+
252
+ #: classes/SlideshowPluginPostType.php:174
253
+ #: classes/SlideshowPluginSlideInserter.php:222
254
+ #: views/SlideshowPluginPostType/slides.php:2
255
+ msgid "Insert"
256
+ msgstr "挿入"
257
+
258
+ #: classes/SlideshowPluginPostType.php:183
259
+ #: views/SlideshowPluginPostType/slides.php:9
260
+ msgid "Add slides to this slideshow by using one of the buttons above."
261
+ msgstr "上のボタンのいずれかを使ってこのスライドショーにスライドを追加します"
262
+
263
+ #: classes/SlideshowPluginShortcode.php:148
264
+ msgid "No slideshow selected."
265
+ msgstr "スライドショーが選択されていません"
266
+
267
+ #: classes/SlideshowPluginSlideInserter.php:178
268
+ msgid "More results loaded"
269
+ msgstr "次の画像をロードしました"
270
+
271
+ #: classes/SlideshowPluginSlideInserter.php:233
272
+ msgid "Load more results"
273
+ msgstr "より多くの画像をロードする"
274
+
275
+ #: classes/SlideshowPluginSlideInserter.php:244
276
+ msgid "No images were found, click here to upload some."
277
+ msgstr "画像が見つかりませんでした。ここをクリックしてアップロードできます。"
278
+
279
+ #: classes/SlideshowPluginSlideInserter.php:316
280
+ msgid "Are you sure you want to delete this slide?"
281
+ msgstr "このスライドを削除してよろしいですか?"
282
+
283
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:523
284
+ msgid "Maximum width. When maximum width is 0, maximum width is ignored"
285
+ msgstr "最大幅。0 の場合は無視されます。"
286
+
287
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
288
+ msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
289
+ msgstr ""
290
+ "http://ja.wikipedia.org/wiki/%E7%94%BB%E9%9D%A2%E3%82%A2%E3%82%B9%E3%83%9A"
291
+ "%E3%82%AF%E3%83%88%E6%AF%94"
292
+
293
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
294
+ msgid "More info"
295
+ msgstr "詳細情報"
296
+
297
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
298
+ #, php-format
299
+ msgid ""
300
+ "Proportional relationship%s between slideshow's width and height (width:"
301
+ "height)"
302
+ msgstr "スライドショーの幅と高さの間のアスペクト比%s(幅:高さ)"
303
+
304
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:525
305
+ msgid "Slideshow's height"
306
+ msgstr "スライドショーの高さ"
307
+
308
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:526
309
+ msgid "Fit image into slide (Stretch image)"
310
+ msgstr "スライドに画像サイズを合わせる(画像の伸長)"
311
+
312
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:527
313
+ msgid "Shrink slideshow's height when width shrinks"
314
+ msgstr "スライドショーの幅を縮めたら高さも縮める"
315
+
316
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:528
317
+ msgid ""
318
+ "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
319
+ msgstr ""
320
+ "レスポンシブを有効にする(ページ幅を縮めたらスライドショーの幅も縮める)"
321
+
322
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:530
323
+ msgid "Hide description box, pop up when mouse hovers over"
324
+ msgstr "説明文ボックスを隠しておき、マウスオーバーしたらポップアップする"
325
+
326
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:533
327
+ msgid "Pause slideshow when mouse hovers over"
328
+ msgstr "マウスオーバーしたらスライドショーを一時停止する"
329
+
330
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:534
331
+ msgid "Activate navigation buttons"
332
+ msgstr "ナビゲーションボタンを表示する"
333
+
334
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:535
335
+ msgid "Hide navigation buttons, show when mouse hovers over"
336
+ msgstr "ナビゲーションボタンは隠しておき、マウスオーバーしたら表示する"
337
+
338
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:536
339
+ msgid "Activate pagination"
340
+ msgstr "ページ制御を有効にする"
341
+
342
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:537
343
+ msgid "Hide pagination, show when mouse hovers over"
344
+ msgstr "ページ制御は隠しておき、マウスオーバーしたら表示する"
345
+
346
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:538
347
+ msgid "Activate control panel (play and pause button)"
348
+ msgstr "コントロールパネル(再生/停止ボタン)を有効にする"
349
+
350
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:539
351
+ msgid "Hide control panel, show when mouse hovers over"
352
+ msgstr "コントロールパネルは隠しておき、マウスオーバーしたら表示する"
353
+
354
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:540
355
+ msgid "Wait until the next slide has loaded before showing it"
356
+ msgstr ""
357
+
358
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:541
359
+ msgid "Show a loading icon until the first slide appears"
360
+ msgstr ""
361
+
362
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:542
363
+ msgid "Randomize slides"
364
+ msgstr "スライドをランダムに表示する"
365
+
366
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:543
367
+ #, php-format
368
+ msgid "Avoid content filter (disable if '%s' is shown)"
369
+ msgstr "コンテントフィルターを回避する('%s'が表示されたら無効にする)"
370
+
371
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
372
+ msgid "Slide Left"
373
+ msgstr "左へスライド"
374
+
375
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
376
+ msgid "Slide Right"
377
+ msgstr "右へスライド"
378
+
379
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
380
+ msgid "Slide Up"
381
+ msgstr "上へスライド"
382
+
383
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
384
+ msgid "Slide Down"
385
+ msgstr "下へスライド"
386
+
387
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
388
+ msgid "Direct Fade"
389
+ msgstr "ダイレクト・フェード"
390
+
391
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
392
+ msgid "Random Animation"
393
+ msgstr "ランダムなアニメーション"
394
+
395
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:569
396
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:570
397
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:571
398
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:572
399
+ msgid "Miscellaneous"
400
+ msgstr "その他"
401
+
402
+ #: classes/SlideshowPluginWidget.php:23
403
+ msgid "Enables you to show your slideshows in the widget area of your website."
404
+ msgstr "あなたのWebサイト上のウィジェット領域でスライドショーを表示する"
405
+
406
+ #: classes/SlideshowPluginWidget.php:29
407
+ msgid "Slideshow Widget"
408
+ msgstr "スライドショー・ウィジェット"
409
+
410
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:46
411
+ msgid "Default stylesheets"
412
+ msgstr "デフォルトのスタイルシート"
413
+
414
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:60
415
+ msgid "Create a new custom style from this style"
416
+ msgstr "このスタイルから新しいカスタムスタイルを作成する"
417
+
418
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:62
419
+ msgid "Customize"
420
+ msgstr "カスタマイズ"
421
+
422
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:76
423
+ msgid "Custom stylesheets"
424
+ msgstr "カスタマイズされたスタイルシート"
425
+
426
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:89
427
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:168
428
+ msgid "Edit this style"
429
+ msgstr "このスタイルを編集する"
430
+
431
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:91
432
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:170
433
+ #: views/SlideshowPluginPostType/slides.php:137
434
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:72
435
+ msgid "Edit"
436
+ msgstr "編集"
437
+
438
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:98
439
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:177
440
+ msgid "Delete this style"
441
+ msgstr "このスタイルを削除する"
442
+
443
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:100
444
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:179
445
+ msgid "Delete"
446
+ msgstr "削除"
447
+
448
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:110
449
+ msgid "Click 'Customize' to create a new custom stylesheet."
450
+ msgstr "'カスタマイズ'をクリックして新しくカスタムスタイルシートを作成する"
451
+
452
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:126
453
+ msgid "Select a stylesheet from the left to start customizing it."
454
+ msgstr "左からスタイルシートを選択してからカスタマイズを開始します。"
455
+
456
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:135
457
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:188
458
+ #: views/SlideshowPluginPostType/slides.php:58
459
+ #: views/SlideshowPluginPostType/slides.php:143
460
+ #: views/SlideshowPluginPostType/slides.php:195
461
+ #: views/SlideshowPluginPostType/slides.php:263
462
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:80
463
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:12
464
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:98
465
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:47
466
+ #: views/SlideshowPluginWidget/form.php:2
467
+ msgid "Title"
468
+ msgstr "タイトル"
469
+
470
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:144
471
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:196
472
+ msgid "Style"
473
+ msgstr "スタイル"
474
+
475
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:11
476
+ msgid "Note"
477
+ msgstr "注意"
478
+
479
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:18
480
+ #, php-format
481
+ msgid ""
482
+ "The settings set on this page apply only to newly created slideshows and "
483
+ "therefore do not alter any existing ones. To adapt a slideshow's settings, "
484
+ "%sclick here.%s"
485
+ msgstr ""
486
+ "このページの設定内容は、今後新しく作成されるスライドショーに対してのみ適用さ"
487
+ "れます。このため既存のものについては変更しないでください。%sここをクリック%s"
488
+ "して変更を適用します。"
489
+
490
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:29
491
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:15
492
+ msgid "Default Slideshow Settings"
493
+ msgstr "デフォルトのスライドショー設定"
494
+
495
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:41
496
+ #: views/SlideshowPluginPostType/settings.php:12
497
+ msgid "settings"
498
+ msgstr "設定"
499
+
500
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:77
501
+ msgid "Default Slideshow Stylesheet"
502
+ msgstr "デフォルトのスライドショー用スタイルシート"
503
+
504
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:11
505
+ msgid "Add slideshows"
506
+ msgstr "スライドショーの追加"
507
+
508
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:12
509
+ msgid "Edit slideshows"
510
+ msgstr "スライドショーの編集"
511
+
512
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:13
513
+ msgid "Delete slideshows"
514
+ msgstr "スライドショーの削除"
515
+
516
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:20
517
+ msgid "User Capabilities"
518
+ msgstr "利用可能なユーザ"
519
+
520
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:22
521
+ msgid "Select the user roles that will able to perform certain actions."
522
+ msgstr "特定の操作を実行可能なユーザロールを選択します。"
523
+
524
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:38
525
+ msgid "Untitled role"
526
+ msgstr "名前のつけられていないロール"
527
+
528
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:65
529
+ msgid "Settings"
530
+ msgstr "設定"
531
+
532
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:69
533
+ msgid "Stylesheet location"
534
+ msgstr ""
535
+
536
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:72
537
+ msgid "top"
538
+ msgstr ""
539
+
540
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:73
541
+ msgid "bottom"
542
+ msgstr ""
543
+
544
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:16
545
+ msgid "Custom Styles"
546
+ msgstr "スタイルのカスタマイズ"
547
+
548
+ #: views/SlideshowPluginPostType/information.php:1
549
+ msgid ""
550
+ "To use this slideshow in your website either add this piece of shortcode to "
551
+ "your posts or pages"
552
+ msgstr ""
553
+ "あなたのWebサイトでこのスライドショーを使用するには、このショートコード"
554
+
555
+ #: views/SlideshowPluginPostType/information.php:5
556
+ msgid ""
557
+ "Or add this piece of code to where ever in your website you want to place "
558
+ "the slideshow"
559
+ msgstr ""
560
+ "をあなたの投稿または固定ページに記載するか、または、あなたのWebサイトの中でス"
561
+ "ライドショーを設置したい所に以下のコードを記載します。"
562
+
563
+ #: views/SlideshowPluginPostType/information.php:9
564
+ #, php-format
565
+ msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
566
+ msgstr ""
567
+ "または%sウィジェットページ%s に行き、スライドショーをウィジェットとして表示し"
568
+ "ます。"
569
+
570
+ #: views/SlideshowPluginPostType/settings.php:26
571
+ #: views/SlideshowPluginPostType/style-settings.php:11
572
+ msgid "Default"
573
+ msgstr "デフォルト"
574
+
575
+ #: views/SlideshowPluginPostType/slides.php:53
576
+ #: views/SlideshowPluginPostType/slides.php:190
577
+ #: views/SlideshowPluginSlideInserter/insert-text-button.php:1
578
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:6
579
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:41
580
+ msgid "Text slide"
581
+ msgstr "テキストスライド"
582
+
583
+ #: views/SlideshowPluginPostType/slides.php:60
584
+ #: views/SlideshowPluginPostType/slides.php:149
585
+ #: views/SlideshowPluginPostType/slides.php:197
586
+ #: views/SlideshowPluginPostType/slides.php:269
587
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:87
588
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:15
589
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:105
590
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:50
591
+ msgid "Description"
592
+ msgstr "説明文"
593
+
594
+ #: views/SlideshowPluginPostType/slides.php:62
595
+ #: views/SlideshowPluginPostType/slides.php:199
596
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:21
597
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:56
598
+ msgid "Background color"
599
+ msgstr "背景色"
600
+
601
+ #: views/SlideshowPluginPostType/slides.php:67
602
+ #: views/SlideshowPluginPostType/slides.php:154
603
+ #: views/SlideshowPluginPostType/slides.php:204
604
+ #: views/SlideshowPluginPostType/slides.php:274
605
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:94
606
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:28
607
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:112
608
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:64
609
+ msgid "URL"
610
+ msgstr "URL"
611
+
612
+ #: views/SlideshowPluginPostType/slides.php:69
613
+ #: views/SlideshowPluginPostType/slides.php:156
614
+ #: views/SlideshowPluginPostType/slides.php:206
615
+ #: views/SlideshowPluginPostType/slides.php:276
616
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:97
617
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:31
618
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:115
619
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:67
620
+ msgid "Open URL in"
621
+ msgstr "URL を開く"
622
+
623
+ #: views/SlideshowPluginPostType/slides.php:71
624
+ #: views/SlideshowPluginPostType/slides.php:158
625
+ #: views/SlideshowPluginPostType/slides.php:208
626
+ #: views/SlideshowPluginPostType/slides.php:278
627
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:99
628
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:33
629
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:117
630
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:69
631
+ msgid "Same window"
632
+ msgstr "同じウィンドウ"
633
+
634
+ #: views/SlideshowPluginPostType/slides.php:72
635
+ #: views/SlideshowPluginPostType/slides.php:159
636
+ #: views/SlideshowPluginPostType/slides.php:209
637
+ #: views/SlideshowPluginPostType/slides.php:279
638
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:100
639
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:34
640
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:118
641
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:70
642
+ msgid "New window"
643
+ msgstr "新しいウィンドウ"
644
+
645
+ #: views/SlideshowPluginPostType/slides.php:89
646
+ #: views/SlideshowPluginPostType/slides.php:229
647
+ #: views/SlideshowPluginSlideInserter/insert-video-button.php:1
648
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:53
649
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:23
650
+ msgid "Video slide"
651
+ msgstr "ビデオスライド"
652
+
653
+ #: views/SlideshowPluginPostType/slides.php:94
654
+ #: views/SlideshowPluginPostType/slides.php:234
655
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:59
656
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:29
657
+ msgid "Youtube Video ID"
658
+ msgstr "ユーチューブビデオID"
659
+
660
+ #: views/SlideshowPluginPostType/slides.php:132
661
+ #: views/SlideshowPluginPostType/slides.php:254
662
+ #: views/SlideshowPluginSlideInserter/insert-image-button.php:1
663
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:66
664
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:86
665
+ msgid "Image slide"
666
+ msgstr "画像スライド"
667
+
668
+ #: views/SlideshowPluginPostType/slides.php:170
669
+ msgid ""
670
+ "An error occurred while loading this slide, and it will not be present in "
671
+ "the slideshow"
672
+ msgstr ""
673
+ "このスライドを読み込む際にエラーが起こりました。これはスライドショーには存在"
674
+ "しません。"
675
+
676
+ #: views/SlideshowPluginPostType/slides.php:176
677
+ #: views/SlideshowPluginPostType/slides.php:217
678
+ #: views/SlideshowPluginPostType/slides.php:242
679
+ #: views/SlideshowPluginPostType/slides.php:288
680
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:109
681
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:42
682
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:75
683
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:127
684
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:78
685
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:45
686
+ msgid "Delete slide"
687
+ msgstr "スライドを削除"
688
+
689
+ #: views/SlideshowPluginPostType/style-settings.php:22
690
+ #, php-format
691
+ msgid "Custom styles can be created and customized %shere%s."
692
+ msgstr "%sここ%sでカスタムスライドを作ったりカスタマイズしたりできます。"
693
+
694
+ #: views/SlideshowPluginPostType/support-plugin.php:3
695
+ msgid "Help to keep this plugin free!"
696
+ msgstr "このプラグインをフリーのままにしておけるようにご協力ください。"
697
+
698
+ #: views/SlideshowPluginPostType/support-plugin.php:6
699
+ msgid ""
700
+ "In order to keep you provided with the newest features, updates and bug "
701
+ "fixes, a lot of motivation is required. Therefore I'm kindly asking you to "
702
+ "consider making a small donation to the plugin or rating it as 5-stars on "
703
+ "Wordpress.org. Thank you in advance!"
704
+ msgstr ""
705
+ "最新機能、フォーラムのサポート、バグフィックス等のサービスを継続的に提供、す"
706
+ "るためには、とにかくモチベーションを持続できることが必要です。できればこのプ"
707
+ "ラグインに対してなにがしかの寄付をしていただくか、もしくは Wordpress.org で5"
708
+ "つ星をください。よろしくお願いします。"
709
+
710
+ #: views/SlideshowPluginPostType/support-plugin.php:15
711
+ msgid "Rate on Wordpress.org"
712
+ msgstr "Wordpress.org で格付け"
713
+
714
+ #: views/SlideshowPluginPostType/support-plugin.php:24
715
+ msgid "Frequently Asked Questions (FAQ)"
716
+ msgstr "よくある質問と回答(FAQ)"
717
+
718
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
719
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
720
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
721
+ msgid "Insert a Slideshow"
722
+ msgstr "スライドショーを挿入する"
723
+
724
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
725
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
726
+ msgid "Insert Slideshow"
727
+ msgstr "スライドショーを挿入する"
728
+
729
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
730
+ msgid "Select a slideshow"
731
+ msgstr "スライドショーを選択する"
732
+
733
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
734
+ #: views/SlideshowPluginWidget/form.php:12
735
+ msgid "Untitled slideshow"
736
+ msgstr "タイトルがついていないスライドショー"
737
+
738
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
739
+ msgid "Cancel"
740
+ msgstr "キャンセル"
741
+
742
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
743
+ #, php-format
744
+ msgid ""
745
+ "It seems you haven't created any slideshows yet. %sYou can create a "
746
+ "slideshow here!%s"
747
+ msgstr ""
748
+ "まだスライドショーのを1つも作成していないようです。%sここでスライドショーを"
749
+ "作成できます!%s"
750
+
751
+ #: views/SlideshowPluginSlideInserter/search-popup.php:6
752
+ msgid "Search"
753
+ msgstr "検索"
754
+
755
+ #: views/SlideshowPluginSlideInserter/search-popup.php:7
756
+ msgid "Search images by title or ID"
757
+ msgstr "タイトルまたは IS で画像を検索"
758
+
759
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:18
760
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:53
761
+ msgid "Text color"
762
+ msgstr "テキストカラー"
763
+
764
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:66
765
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:36
766
+ msgid "Show related videos"
767
+ msgstr ""
768
+
769
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:58
770
+ msgid "(Leave empty for a transparent background)"
771
+ msgstr "(背景を透明にするには空のままにしておきます)"
772
+
773
+ #: views/SlideshowPluginUpload/upload-button.php:1
774
+ msgid "Upload/Manage Images"
775
+ msgstr "画像をアップロード/管理する"
776
+
777
+ #: views/SlideshowPluginWidget/form.php:9
778
+ msgid "Random Slideshow"
779
+ msgstr "ランダムなスライドショー"
780
+
781
+ #~ msgid "Leave any field open to use default value."
782
+ #~ msgstr "Een veld dat open wordt gelaten neemt de standaardwaarde aan."
languages/slideshow-plugin-nl_NL.mo CHANGED
Binary file
languages/slideshow-plugin-nl_NL.po CHANGED
@@ -1,817 +1,860 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Slideshow Plugin\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-03-25 19:54+0100\n"
6
- "PO-Revision-Date: 2013-03-25 19:55+0100\n"
7
- "Last-Translator: Stefan Boonstra <stefanboonstra@hotmail.com>\n"
8
- "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
- "Language: nl_NL\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: _e;__\n"
14
- "X-Poedit-Basepath: ../\n"
15
- "X-Generator: Poedit 1.5.5\n"
16
- "X-Poedit-SearchPath-0: .\n"
17
-
18
- #: classes/SlideshowPluginGeneralSettings.php:64
19
- #: classes/SlideshowPluginGeneralSettings.php:65
20
- msgid "General Settings"
21
- msgstr "Algemene Instellingen"
22
-
23
- #: classes/SlideshowPluginGeneralSettings.php:146
24
- msgid "New"
25
- msgstr "Nieuw"
26
-
27
- #: classes/SlideshowPluginGeneralSettings.php:147
28
- msgid "Are you sure you want to delete this custom style?"
29
- msgstr "Weet je zeker dat je deze aangepaste stijl wilt verwijderen?"
30
-
31
- #: classes/SlideshowPluginGeneralSettings.php:166
32
- #: classes/SlideshowPluginInstaller.php:441
33
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:6
34
- msgid "Light"
35
- msgstr "Licht"
36
-
37
- #: classes/SlideshowPluginGeneralSettings.php:167
38
- #: classes/SlideshowPluginInstaller.php:441
39
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:7
40
- msgid "Dark"
41
- msgstr "Donker"
42
-
43
- #: classes/SlideshowPluginGeneralSettings.php:271
44
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:49
45
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:131
46
- msgid "Untitled"
47
- msgstr "Naamloos"
48
-
49
- #: classes/SlideshowPluginInstaller.php:438
50
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:378
51
- msgid "Yes"
52
- msgstr "Ja"
53
-
54
- #: classes/SlideshowPluginInstaller.php:439
55
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:379
56
- msgid "No"
57
- msgstr "Nee"
58
-
59
- #: classes/SlideshowPluginInstaller.php:441
60
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:477
61
- msgid "The style used for this slideshow"
62
- msgstr "De stijl te gebruiken voor deze slideshow"
63
-
64
- #: classes/SlideshowPluginInstaller.php:441
65
- msgid "Custom"
66
- msgstr "Aangepast"
67
-
68
- #: classes/SlideshowPluginInstaller.php:442
69
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:114
70
- msgid "Custom style editor"
71
- msgstr "Aangepaste stijl bewerker"
72
-
73
- #: classes/SlideshowPluginInstaller.php:443
74
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
75
- msgid "Animation used for transition between slides"
76
- msgstr "Animatie tussen het wisselen van de slides"
77
-
78
- #: classes/SlideshowPluginInstaller.php:443
79
- msgid "Slide"
80
- msgstr "Slide"
81
-
82
- #: classes/SlideshowPluginInstaller.php:443
83
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
84
- msgid "Fade"
85
- msgstr "Fade"
86
-
87
- #: classes/SlideshowPluginInstaller.php:443
88
- #: classes/SlideshowPluginInstaller.php:444
89
- #: classes/SlideshowPluginInstaller.php:445
90
- #: classes/SlideshowPluginInstaller.php:446
91
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
92
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:420
93
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
94
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:422
95
- msgid "Animation"
96
- msgstr "Animatie"
97
-
98
- #: classes/SlideshowPluginInstaller.php:444
99
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:420
100
- msgid "Number of seconds the slide takes to slide in"
101
- msgstr ""
102
- "Aantal seconden dat de animatie van het inschuiven van de volgende slide "
103
- "duurt"
104
-
105
- #: classes/SlideshowPluginInstaller.php:445
106
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
107
- msgid "Number of seconds the description takes to slide in"
108
- msgstr "Aantal seconden dat het inschuiven van de beschrijving duurt"
109
-
110
- #: classes/SlideshowPluginInstaller.php:446
111
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:422
112
- msgid "Seconds between changing slides"
113
- msgstr "Seconden tussen het wisselen van de slides"
114
-
115
- #: classes/SlideshowPluginInstaller.php:447
116
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
117
- msgid "Number of slides to fit into one slide"
118
- msgstr "Aantal slides om in een slide te plaatsen"
119
-
120
- #: classes/SlideshowPluginInstaller.php:447
121
- #: classes/SlideshowPluginInstaller.php:448
122
- #: classes/SlideshowPluginInstaller.php:449
123
- #: classes/SlideshowPluginInstaller.php:450
124
- #: classes/SlideshowPluginInstaller.php:451
125
- #: classes/SlideshowPluginInstaller.php:452
126
- #: classes/SlideshowPluginInstaller.php:453
127
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
128
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:424
129
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
130
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:426
131
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:427
132
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
133
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:429
134
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:430
135
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:431
136
- msgid "Display"
137
- msgstr "Weergave"
138
-
139
- #: classes/SlideshowPluginInstaller.php:448
140
- msgid "Width of the slideshow, set to parent&#39;s width on 0"
141
- msgstr ""
142
- "Breedte van de slideshow, past zich aan op bovenliggende element wanneer 0"
143
-
144
- #: classes/SlideshowPluginInstaller.php:449
145
- msgid "Height of the slideshow"
146
- msgstr "Hoogte van de slideshow"
147
-
148
- #: classes/SlideshowPluginInstaller.php:450
149
- msgid "Height of the description boxes"
150
- msgstr "Hoogte van de beschrijvingen"
151
-
152
- #: classes/SlideshowPluginInstaller.php:451
153
- msgid "Fit image into slide (stretching it)"
154
- msgstr "Pas afbeelding in de slideshow (oprekken)"
155
-
156
- #: classes/SlideshowPluginInstaller.php:452
157
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:430
158
- msgid "Show title and description"
159
- msgstr "Toon titel en beschrijving"
160
-
161
- #: classes/SlideshowPluginInstaller.php:453
162
- msgid "Hide description box, it will pop up when a mouse hovers over the slide"
163
- msgstr ""
164
- "Verberg beschrijving, toon deze alleen wanneer de muisaanwijzer boven de "
165
- "slide is"
166
-
167
- #: classes/SlideshowPluginInstaller.php:454
168
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:432
169
- msgid "Automatically slide to the next slide"
170
- msgstr "Automatisch naar de volgende slide gaan"
171
-
172
- #: classes/SlideshowPluginInstaller.php:454
173
- #: classes/SlideshowPluginInstaller.php:455
174
- #: classes/SlideshowPluginInstaller.php:456
175
- #: classes/SlideshowPluginInstaller.php:457
176
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:432
177
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:433
178
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:434
179
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:435
180
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:436
181
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:437
182
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:438
183
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:439
184
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:440
185
- msgid "Control"
186
- msgstr "Controle"
187
-
188
- #: classes/SlideshowPluginInstaller.php:455
189
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:433
190
- msgid "Return to the beginning of the slideshow after last slide"
191
- msgstr "Keer terug naar het begin van de slideshow na de laatste slide."
192
-
193
- #: classes/SlideshowPluginInstaller.php:456
194
- msgid "Activate buttons (so the user can scroll through the slides)"
195
- msgstr "Knoppen activeren (zodat de gebruiker door de slides kan scrollen)"
196
-
197
- #: classes/SlideshowPluginInstaller.php:457
198
- msgid "Show control panel (play and pause button)"
199
- msgstr "Toon controlepaneel (speel en pause knop)"
200
-
201
- #: classes/SlideshowPluginPostType.php:38
202
- msgid "Slideshows"
203
- msgstr "Slideshows"
204
-
205
- #: classes/SlideshowPluginPostType.php:39
206
- #: views/SlideshowPluginWidget/form.php:7
207
- msgid "Slideshow"
208
- msgstr "Slideshow"
209
-
210
- #: classes/SlideshowPluginPostType.php:40
211
- msgid "Add New Slideshow"
212
- msgstr "Nieuwe Slideshow Toevoegen"
213
-
214
- #: classes/SlideshowPluginPostType.php:41
215
- msgid "Edit slideshow"
216
- msgstr "Slideshow bewerken"
217
-
218
- #: classes/SlideshowPluginPostType.php:42
219
- msgid "New slideshow"
220
- msgstr "Nieuwe slideshow"
221
-
222
- #: classes/SlideshowPluginPostType.php:43
223
- msgid "View slideshow"
224
- msgstr "Slideshow bekijken"
225
-
226
- #: classes/SlideshowPluginPostType.php:44
227
- msgid "Search slideshows"
228
- msgstr "Slideshows zoeken"
229
-
230
- #: classes/SlideshowPluginPostType.php:45
231
- #: classes/SlideshowPluginPostType.php:46
232
- msgid "No slideshows found"
233
- msgstr "Geen slideshows gevonden"
234
-
235
- #: classes/SlideshowPluginPostType.php:155
236
- msgid "Information"
237
- msgstr "Informatie"
238
-
239
- #: classes/SlideshowPluginPostType.php:164
240
- msgid "Slides List"
241
- msgstr "Slides Lijst"
242
-
243
- #: classes/SlideshowPluginPostType.php:173
244
- msgid "Slideshow Style"
245
- msgstr "Slideshow Stijl"
246
-
247
- #: classes/SlideshowPluginPostType.php:182
248
- msgid "Slideshow Settings"
249
- msgstr "Slideshow Instellingen"
250
-
251
- #: classes/SlideshowPluginPostType.php:232
252
- #: classes/SlideshowPluginSlideInserter.php:178
253
- #: views/SlideshowPluginPostType/slides.php:2
254
- msgid "Insert"
255
- msgstr "Invoegen"
256
-
257
- #: classes/SlideshowPluginPostType.php:240
258
- #: views/SlideshowPluginPostType/slides.php:9
259
- msgid "Add slides to this slideshow by using one of the buttons above."
260
- msgstr "Voeg slides toe doormiddel van de bovenstaande knoppen."
261
-
262
- #: classes/SlideshowPluginShortcode.php:132
263
- msgid "No slideshow selected."
264
- msgstr "Geen slideshow geselecteerd."
265
-
266
- #: classes/SlideshowPluginSlideInserter.php:151
267
- msgid "More results loaded"
268
- msgstr "Extra resultaten geladen"
269
-
270
- #: classes/SlideshowPluginSlideInserter.php:187
271
- msgid "Load more results"
272
- msgstr "Meer resultaten laden"
273
-
274
- #: classes/SlideshowPluginSlideInserter.php:196
275
- msgid "No images were found, click here to upload some."
276
- msgstr "Geen afbeeldingen gevonden, klik hier om afbeeldingen te uploaden."
277
-
278
- #: classes/SlideshowPluginSlideInserter.php:273
279
- msgid "Are you sure you want to delete this slide?"
280
- msgstr "Weet je zeker dat je deze slide wilt verwijderen?"
281
-
282
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
283
- msgid "Slide Left"
284
- msgstr "Schuif Links"
285
-
286
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
287
- msgid "Slide Right"
288
- msgstr "Schuif Rechts"
289
-
290
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
291
- msgid "Slide Up"
292
- msgstr "Schuif Omhoog"
293
-
294
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
295
- msgid "Slide Down"
296
- msgstr "Schuif Omlaag"
297
-
298
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
299
- msgid "Direct Fade"
300
- msgstr "Rechtstreekse Fade"
301
-
302
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
303
- msgid "Random Animation"
304
- msgstr "Willekeurige Animatie"
305
-
306
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:424
307
- msgid "Maximum width. When maximum width is 0, maximum width is ignored"
308
- msgstr ""
309
- "Maximum breedte. Wanneer maximum breedte 0 is, zal deze worden genegeerd"
310
-
311
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
312
- msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
313
- msgstr "http://nl.wikipedia.org/wiki/Beeldverhouding"
314
-
315
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
316
- msgid "More info"
317
- msgstr "Meer informatie"
318
-
319
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
320
- #, php-format
321
- msgid ""
322
- "Proportional relationship%s between slideshow's width and height (width:"
323
- "height)"
324
- msgstr ""
325
- "Proportionele verhouding%s tussen de slideshow's breedte en hoogte (breedte:"
326
- "hoogte)"
327
-
328
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:426
329
- msgid "Slideshow's height"
330
- msgstr "Slideshow's hoogte"
331
-
332
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:427
333
- msgid "Fit image into slide (Stretch image)"
334
- msgstr "Pas afbeelding in de slideshow (Afbeedling uitrekken)"
335
-
336
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
337
- msgid "Shrink slideshow's height when width shrinks"
338
- msgstr "Maak de slideshow's hoogte kleiner wanneer de breedte kleiner wordt"
339
-
340
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:429
341
- msgid ""
342
- "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
343
- msgstr ""
344
- "Gebruik responsiviteit (Maak slideshow smaller wanneer de pagina smaller "
345
- "wordt)"
346
-
347
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:431
348
- msgid "Hide description box, pop up when mouse hovers over"
349
- msgstr ""
350
- "Verbeg beschrijving, toon deze alleen wanneer de muisaanwijzer boven de "
351
- "slideshow is"
352
-
353
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:434
354
- msgid "Pause slideshow when mouse hovers over"
355
- msgstr "Pauzeer slideshow wanneer de muisaanwijzer boven de slideshow is"
356
-
357
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:435
358
- msgid "Activate navigation buttons"
359
- msgstr "Toon navigatie knoppen"
360
-
361
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:436
362
- msgid "Hide navigation buttons, show when mouse hovers over"
363
- msgstr ""
364
- "Verberg navigatieknoppen, toon deze aleen wanneer de muisaanwijzer boven de "
365
- "slideshow is"
366
-
367
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:437
368
- msgid "Activate pagination"
369
- msgstr "Toon paginering"
370
-
371
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:438
372
- msgid "Hide pagination, show when mouse hovers over"
373
- msgstr ""
374
- "Verberg paginering, toon deze alleen wanneer de muisaanwijzer boven de "
375
- "slideshow is"
376
-
377
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:439
378
- msgid "Activate control panel (play and pause button)"
379
- msgstr "Toon controlepaneel (speel en pause knop)"
380
-
381
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:440
382
- msgid "Hide control panel, show when mouse hovers over"
383
- msgstr ""
384
- "Verberg controlepaneel, toon deze alleen wanneer de muisaanwijzer boven de "
385
- "slideshow is"
386
-
387
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:441
388
- msgid "Randomize slides"
389
- msgstr "Toon slides in willekeurige volgorde"
390
-
391
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:441
392
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:442
393
- msgid "Miscellaneous"
394
- msgstr "Overige"
395
-
396
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:442
397
- #, php-format
398
- msgid "Avoid content filter (disable if '%s' is shown)"
399
- msgstr "Content filter omzeilen (uitschakelen als '%s' wordt getoond)"
400
-
401
- #: classes/SlideshowPluginWidget.php:23
402
- msgid "Enables you to show your slideshows in the widget area of your website."
403
- msgstr ""
404
- "Maakt het mogelijk je slideshows te bijken in het widget gebied van je "
405
- "website."
406
-
407
- #: classes/SlideshowPluginWidget.php:29
408
- msgid "Slideshow Widget"
409
- msgstr "Slideshow Widget"
410
-
411
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:38
412
- msgid "Default stylesheets"
413
- msgstr "Standaard stijlen"
414
-
415
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:52
416
- msgid "Create a new custom style from this style"
417
- msgstr "Maak een nieuwe aangepaste stijl uit deze stijl"
418
-
419
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:54
420
- msgid "Customize"
421
- msgstr "Aanpassen"
422
-
423
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:68
424
- msgid "Custom stylesheets"
425
- msgstr "Aangepaste stijl"
426
-
427
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:81
428
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:160
429
- msgid "Edit this style"
430
- msgstr "Bewerk deze stijl"
431
-
432
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:83
433
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:162
434
- #: views/SlideshowPluginPostType/slides.php:137
435
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:46
436
- msgid "Edit"
437
- msgstr "Bewerken"
438
-
439
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:90
440
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:169
441
- msgid "Delete this style"
442
- msgstr "Verwijder stijl"
443
-
444
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:92
445
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:171
446
- msgid "Delete"
447
- msgstr "Verwijderen"
448
-
449
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:102
450
- msgid "Click 'Customize' to create a new custom stylesheet."
451
- msgstr "Klik op 'Aanpassen' om een nieuwe aangepaste stijl te maken."
452
-
453
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:118
454
- msgid "Select a stylesheet from the left to start customizing it."
455
- msgstr "Kies een stijl uit de linker kolom om deze aan te passen."
456
-
457
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:127
458
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:180
459
- #: views/SlideshowPluginPostType/slides.php:58
460
- #: views/SlideshowPluginPostType/slides.php:143
461
- #: views/SlideshowPluginPostType/slides.php:195
462
- #: views/SlideshowPluginPostType/slides.php:263
463
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:54
464
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:12
465
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:90
466
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:29
467
- #: views/SlideshowPluginWidget/form.php:2
468
- msgid "Title"
469
- msgstr "Titel"
470
-
471
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:136
472
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:188
473
- msgid "Style"
474
- msgstr "Stijl"
475
-
476
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:11
477
- msgid "Note"
478
- msgstr "Opgelet"
479
-
480
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:18
481
- #, php-format
482
- msgid ""
483
- "The settings set on this page apply only to newly created slideshows and "
484
- "therefore do not alter any existing ones. To adapt a slideshow's settings, "
485
- "%sclick here.%s"
486
- msgstr ""
487
- "De instellingen op deze pagina zijn alleen van toepassing op slideshows die "
488
- "nieuw worden aangemaakt en niet op de slideshows die reeds bestaan. Om een "
489
- "slideshow's instellingen te wijzigen, %sklik hier.%s"
490
-
491
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:30
492
- #: views/SlideshowPluginGeneralSettings/general-settings.php:16
493
- msgid "Default Slideshow Settings"
494
- msgstr "Standaard Slideshow Instellingen"
495
-
496
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:43
497
- #: views/SlideshowPluginPostType/settings.php:12
498
- msgid "settings"
499
- msgstr "instellingen"
500
-
501
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:80
502
- msgid "Default Slideshow Stylesheet"
503
- msgstr "Standaard Slideshow Stijl"
504
-
505
- #: views/SlideshowPluginGeneralSettings/general-settings.php:15
506
- msgid "User Capabilities"
507
- msgstr "Gebruikersrechten"
508
-
509
- #: views/SlideshowPluginGeneralSettings/general-settings.php:17
510
- msgid "Custom Styles"
511
- msgstr "Aangepaste Stijlen"
512
-
513
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:8
514
- msgid "Add slideshows"
515
- msgstr "Slideshows toevoegen"
516
-
517
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:9
518
- msgid "Edit slideshows"
519
- msgstr "Slideshows bewerken"
520
-
521
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:10
522
- msgid "Delete slideshows"
523
- msgstr "Slideshows verwijderen"
524
-
525
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:18
526
- msgid "Select the user roles that will able to perform certain actions."
527
- msgstr "Kies de gebruikersrol waaraan je bepaalde rechten wilt verlenen."
528
-
529
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:35
530
- msgid "Untitled role"
531
- msgstr "Naamloze gebruikersfunctie"
532
-
533
- #: views/SlideshowPluginPostType/information.php:1
534
- msgid ""
535
- "To use this slideshow in your website either add this piece of shortcode to "
536
- "your posts or pages"
537
- msgstr ""
538
- "Om deze slideshow op je website te gebruiken voeg je of dit stukje shortcode "
539
- "aan je pagina of post toe"
540
-
541
- #: views/SlideshowPluginPostType/information.php:5
542
- msgid ""
543
- "Or add this piece of code to where ever in your website you want to place "
544
- "the slideshow"
545
- msgstr ""
546
- "Of je voegt dit stuk code toe aan je broncode op de plaats waar je wilt dat "
547
- "de slideshow te zien is"
548
-
549
- #: views/SlideshowPluginPostType/information.php:9
550
- #, php-format
551
- msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
552
- msgstr ""
553
- "Ook kan je naar de %swidget pagina%s toegaan, om de slideshow te tonen als "
554
- "widget."
555
-
556
- #: views/SlideshowPluginPostType/settings.php:26
557
- #: views/SlideshowPluginPostType/style-settings.php:11
558
- msgid "Default"
559
- msgstr "Standaard"
560
-
561
- #: views/SlideshowPluginPostType/slides.php:53
562
- #: views/SlideshowPluginPostType/slides.php:190
563
- #: views/SlideshowPluginSlideInserter/insert-text-button.php:1
564
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:6
565
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:23
566
- msgid "Text slide"
567
- msgstr "Tekst slide"
568
-
569
- #: views/SlideshowPluginPostType/slides.php:60
570
- #: views/SlideshowPluginPostType/slides.php:149
571
- #: views/SlideshowPluginPostType/slides.php:197
572
- #: views/SlideshowPluginPostType/slides.php:269
573
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:61
574
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:15
575
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:97
576
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:32
577
- msgid "Description"
578
- msgstr "Beschrijving"
579
-
580
- #: views/SlideshowPluginPostType/slides.php:62
581
- #: views/SlideshowPluginPostType/slides.php:199
582
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:21
583
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:38
584
- msgid "Background color"
585
- msgstr "Achtergrond kleur"
586
-
587
- #: views/SlideshowPluginPostType/slides.php:67
588
- #: views/SlideshowPluginPostType/slides.php:154
589
- #: views/SlideshowPluginPostType/slides.php:204
590
- #: views/SlideshowPluginPostType/slides.php:274
591
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:68
592
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:28
593
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:104
594
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:46
595
- msgid "URL"
596
- msgstr "URL"
597
-
598
- #: views/SlideshowPluginPostType/slides.php:69
599
- #: views/SlideshowPluginPostType/slides.php:156
600
- #: views/SlideshowPluginPostType/slides.php:206
601
- #: views/SlideshowPluginPostType/slides.php:276
602
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:71
603
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:31
604
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:107
605
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:49
606
- msgid "Open URL in"
607
- msgstr "Open URL in"
608
-
609
- #: views/SlideshowPluginPostType/slides.php:71
610
- #: views/SlideshowPluginPostType/slides.php:158
611
- #: views/SlideshowPluginPostType/slides.php:208
612
- #: views/SlideshowPluginPostType/slides.php:278
613
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:73
614
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:33
615
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:109
616
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:51
617
- msgid "Same window"
618
- msgstr "Zelfde scherm"
619
-
620
- #: views/SlideshowPluginPostType/slides.php:72
621
- #: views/SlideshowPluginPostType/slides.php:159
622
- #: views/SlideshowPluginPostType/slides.php:209
623
- #: views/SlideshowPluginPostType/slides.php:279
624
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:74
625
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:34
626
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:110
627
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:52
628
- msgid "New window"
629
- msgstr "Nieuw scherm"
630
-
631
- #: views/SlideshowPluginPostType/slides.php:89
632
- #: views/SlideshowPluginPostType/slides.php:229
633
- #: views/SlideshowPluginSlideInserter/insert-video-button.php:1
634
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:53
635
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:13
636
- msgid "Video slide"
637
- msgstr "Video slide"
638
-
639
- #: views/SlideshowPluginPostType/slides.php:94
640
- #: views/SlideshowPluginPostType/slides.php:234
641
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:59
642
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:19
643
- msgid "Youtube Video ID"
644
- msgstr "Youtube Video ID"
645
-
646
- #: views/SlideshowPluginPostType/slides.php:132
647
- #: views/SlideshowPluginPostType/slides.php:254
648
- #: views/SlideshowPluginSlideInserter/insert-image-button.php:1
649
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:40
650
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:78
651
- msgid "Image slide"
652
- msgstr "Afbeeldingsslide"
653
-
654
- #: views/SlideshowPluginPostType/slides.php:170
655
- msgid ""
656
- "An error occurred while loading this slide, and it will not be present in "
657
- "the slideshow"
658
- msgstr ""
659
- "Een fout is ontstaan tijdens het laden van deze slide, de slide zal niet te "
660
- "bekijken zijn in je slideshow"
661
-
662
- #: views/SlideshowPluginPostType/slides.php:176
663
- #: views/SlideshowPluginPostType/slides.php:217
664
- #: views/SlideshowPluginPostType/slides.php:242
665
- #: views/SlideshowPluginPostType/slides.php:288
666
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:83
667
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:42
668
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:67
669
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:119
670
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:60
671
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:27
672
- msgid "Delete slide"
673
- msgstr "Verwijder slide"
674
-
675
- #: views/SlideshowPluginPostType/style-settings.php:22
676
- #, php-format
677
- msgid "Custom styles can be created and customized %shere%s."
678
- msgstr "Aangepaste stijlen kunnen %shier%s worden aangemaakt en aangepast."
679
-
680
- #: views/SlideshowPluginPostType/support-plugin.php:3
681
- msgid "Help to keep this plugin free!"
682
- msgstr "Help mee om deze plugin gratis te houden!"
683
-
684
- #: views/SlideshowPluginPostType/support-plugin.php:6
685
- msgid ""
686
- "In order to keep you provided with the newest features, forum support, and "
687
- "bug-fixes, a lot of motivation is required. Therefore I'm kindly asking you "
688
- "to consider making a small donation to the plugin or rating it as 5-stars on "
689
- "Wordpress.org. Thank you in advance!"
690
- msgstr ""
691
- "Om je te kunnen voorzien van de nieuwste functionaliteiten, forum "
692
- "ondersteuning en fout-oplossingen, is een hoop motivatie nodig. Daarom zou "
693
- "ik het enorm waarderen als je een kleine donatie aan de plugin zou willen "
694
- "doen, of de plugin 5 sterren zou willen geven op Wordpress.org. Alvast "
695
- "bedankt!"
696
-
697
- #: views/SlideshowPluginPostType/support-plugin.php:15
698
- msgid "Rate on Wordpress.org"
699
- msgstr "Geef een waardering op Wordpress.org"
700
-
701
- #: views/SlideshowPluginPostType/support-plugin.php:24
702
- msgid "Frequently Asked Questions (FAQ)"
703
- msgstr "Veelgestelde Vragen (FAQ)"
704
-
705
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
706
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
707
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
708
- msgid "Insert a Slideshow"
709
- msgstr "Slideshow invoegen"
710
-
711
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
712
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
713
- msgid "Insert Slideshow"
714
- msgstr "Slideshow invoegen"
715
-
716
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
717
- msgid "Select a slideshow"
718
- msgstr "Selecteer een slideshow"
719
-
720
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
721
- #: views/SlideshowPluginWidget/form.php:12
722
- msgid "Untitled slideshow"
723
- msgstr "Naamloze slideshow"
724
-
725
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
726
- msgid "Cancel"
727
- msgstr "Annuleren"
728
-
729
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
730
- #, php-format
731
- msgid ""
732
- "It seems you haven't created any slideshows yet. %sYou can create a "
733
- "slideshow here!%s"
734
- msgstr ""
735
- "Het ziet er naar uit dat je nog geen slideshows hebt gemaakt. %sHier kan je "
736
- "een slideshow maken!%s"
737
-
738
- #: views/SlideshowPluginSlideInserter/search-popup.php:6
739
- msgid "Search"
740
- msgstr "Zoek"
741
-
742
- #: views/SlideshowPluginSlideInserter/search-popup.php:7
743
- msgid "Search images by title or ID"
744
- msgstr "Zoek afbeeldingen op titel of ID"
745
-
746
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:18
747
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:35
748
- msgid "Text color"
749
- msgstr "Tekst kleur"
750
-
751
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:40
752
- msgid "(Leave empty for a transparent background)"
753
- msgstr "(Laat leeg voor een transparante achtergrond)"
754
-
755
- #: views/SlideshowPluginUpload/upload-button.php:1
756
- msgid "Upload/Manage Images"
757
- msgstr "Upload/Beheer Afbeeldingen"
758
-
759
- #: views/SlideshowPluginWidget/form.php:9
760
- msgid "Random Slideshow"
761
- msgstr "Willekeurige Slideshow"
762
-
763
- #~ msgid "Questions / Suggestions"
764
- #~ msgstr "Vragen / Opmerkingen"
765
-
766
- #~ msgid ""
767
- #~ "Shrink slideshow's height when width shrinks (Fixed height can be defined "
768
- #~ "when setting this value to 'No')"
769
- #~ msgstr ""
770
- #~ "Krimp de slideshow's hoogte wanneer de breedte kleiner wordt "
771
- #~ "(Vastgestelde hoogte kan worden ingesteld als deze instelling op 'Nee' "
772
- #~ "staat)"
773
-
774
- #, fuzzy
775
- #~ msgid "Editor"
776
- #~ msgstr "Bewerken"
777
-
778
- #~ msgid "light"
779
- #~ msgstr "licht"
780
-
781
- #~ msgid "slide"
782
- #~ msgstr "slide"
783
-
784
- #~ msgid "Custom style editor (Does not work with a Strict Doctype)"
785
- #~ msgstr "Aangepaste stijl bewerker (Werkt niet met een Strict Doctype)"
786
-
787
- #~ msgid "Has the Slideshow plugin helped you?"
788
- #~ msgstr "Heeft de Slideshow plugin je geholpen?"
789
-
790
- #~ msgid "Help it back!"
791
- #~ msgstr "Help hem terug!"
792
-
793
- #~ msgid ""
794
- #~ "If this plugin has filled you with happiness, please support the upkeep "
795
- #~ "of the plugin by rating it on Wordpress, posting a suggestion for "
796
- #~ "improvement on the support forum, or making a donation."
797
- #~ msgstr ""
798
- #~ "Als deze plugin je met blijdschap heeft vervuld, zou ik het enorm "
799
- #~ "waarderen als je de plugin wilt beoordelen op Wordpress, een suggestie "
800
- #~ "wilt maken voor verbetering, of een donatie doen wilt."
801
-
802
- #~ msgid "Click on an image to insert it as a slide"
803
- #~ msgstr "Klik op een plaatje om deze in te voegen als slide"
804
-
805
- #~ msgid "Width of the slideshow"
806
- #~ msgstr "Breedte van de slideshow"
807
-
808
- #~ msgid "Defaults to parent's width."
809
- #~ msgstr "Standaard ingesteld op de breedte van het bovenliggende element."
810
-
811
- #~ msgid "Send user to image URL on click"
812
- #~ msgstr ""
813
- #~ "Wanner de gebruiker op de afbeelding klikt, stuur hem naar de URL van het "
814
- #~ "plaatje"
815
-
816
- #~ msgid "Leave any field open to use default value."
817
- #~ msgstr "Een veld dat open wordt gelaten neemt de standaardwaarde aan."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Slideshow Plugin\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-08-21 10:41+0100\n"
6
+ "PO-Revision-Date: 2013-08-21 10:41+0100\n"
7
+ "Last-Translator: Stefan Boonstra <stefanboonstra@hotmail.com>\n"
8
+ "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
+ "Language: nl_NL\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-KeywordsList: _e;__\n"
14
+ "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.5.7\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:516
34
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:6
35
+ msgid "Light"
36
+ msgstr "Licht"
37
+
38
+ #: classes/SlideshowPluginGeneralSettings.php:197
39
+ #: classes/SlideshowPluginInstaller.php:516
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:139
47
+ msgid "Untitled"
48
+ msgstr "Naamloos"
49
+
50
+ #: classes/SlideshowPluginInstaller.php:513
51
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:472
52
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:67
53
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:37
54
+ msgid "Yes"
55
+ msgstr "Ja"
56
+
57
+ #: classes/SlideshowPluginInstaller.php:514
58
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:473
59
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:68
60
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:38
61
+ msgid "No"
62
+ msgstr "Nee"
63
+
64
+ #: classes/SlideshowPluginInstaller.php:516
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:516
70
+ msgid "Custom"
71
+ msgstr "Aangepast"
72
+
73
+ #: classes/SlideshowPluginInstaller.php:517
74
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:122
75
+ msgid "Custom style editor"
76
+ msgstr "Aangepaste stijl bewerker"
77
+
78
+ #: classes/SlideshowPluginInstaller.php:518
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:518
84
+ msgid "Slide"
85
+ msgstr "Slide"
86
+
87
+ #: classes/SlideshowPluginInstaller.php:518
88
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
89
+ msgid "Fade"
90
+ msgstr "Fade"
91
+
92
+ #: classes/SlideshowPluginInstaller.php:518
93
+ #: classes/SlideshowPluginInstaller.php:519
94
+ #: classes/SlideshowPluginInstaller.php:520
95
+ #: classes/SlideshowPluginInstaller.php:521
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:519
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:520
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:521
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:522
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:522
126
+ #: classes/SlideshowPluginInstaller.php:523
127
+ #: classes/SlideshowPluginInstaller.php:524
128
+ #: classes/SlideshowPluginInstaller.php:525
129
+ #: classes/SlideshowPluginInstaller.php:526
130
+ #: classes/SlideshowPluginInstaller.php:527
131
+ #: classes/SlideshowPluginInstaller.php:528
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:523
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:524
150
+ msgid "Height of the slideshow"
151
+ msgstr "Hoogte van de slideshow"
152
+
153
+ #: classes/SlideshowPluginInstaller.php:525
154
+ msgid "Height of the description boxes"
155
+ msgstr "Hoogte van de beschrijvingen"
156
+
157
+ #: classes/SlideshowPluginInstaller.php:526
158
+ msgid "Fit image into slide (stretching it)"
159
+ msgstr "Pas afbeelding in de slideshow (oprekken)"
160
+
161
+ #: classes/SlideshowPluginInstaller.php:527
162
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:529
163
+ msgid "Show title and description"
164
+ msgstr "Toon titel en beschrijving"
165
+
166
+ #: classes/SlideshowPluginInstaller.php:528
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:529
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:529
178
+ #: classes/SlideshowPluginInstaller.php:530
179
+ #: classes/SlideshowPluginInstaller.php:531
180
+ #: classes/SlideshowPluginInstaller.php:532
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:530
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:531
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:532
203
+ msgid "Show control panel (play and pause button)"
204
+ msgstr "Toon controlepaneel (speel en pause knop)"
205
+
206
+ #: classes/SlideshowPluginPostType.php:38
207
+ msgid "Slideshows"
208
+ msgstr "Slideshows"
209
+
210
+ #: classes/SlideshowPluginPostType.php:39
211
+ #: views/SlideshowPluginWidget/form.php:7
212
+ msgid "Slideshow"
213
+ msgstr "Slideshow"
214
+
215
+ #: classes/SlideshowPluginPostType.php:40
216
+ msgid "Add New Slideshow"
217
+ msgstr "Nieuwe Slideshow Toevoegen"
218
+
219
+ #: classes/SlideshowPluginPostType.php:41
220
+ msgid "Edit slideshow"
221
+ msgstr "Slideshow bewerken"
222
+
223
+ #: classes/SlideshowPluginPostType.php:42
224
+ msgid "New slideshow"
225
+ msgstr "Nieuwe slideshow"
226
+
227
+ #: classes/SlideshowPluginPostType.php:43
228
+ msgid "View slideshow"
229
+ msgstr "Slideshow bekijken"
230
+
231
+ #: classes/SlideshowPluginPostType.php:44
232
+ msgid "Search slideshows"
233
+ msgstr "Slideshows zoeken"
234
+
235
+ #: classes/SlideshowPluginPostType.php:45
236
+ #: classes/SlideshowPluginPostType.php:46
237
+ msgid "No slideshows found"
238
+ msgstr "Geen slideshows gevonden"
239
+
240
+ #: classes/SlideshowPluginPostType.php:91
241
+ msgid "Information"
242
+ msgstr "Informatie"
243
+
244
+ #: classes/SlideshowPluginPostType.php:100
245
+ msgid "Slides List"
246
+ msgstr "Slides Lijst"
247
+
248
+ #: classes/SlideshowPluginPostType.php:109
249
+ msgid "Slideshow Style"
250
+ msgstr "Slideshow Stijl"
251
+
252
+ #: classes/SlideshowPluginPostType.php:118
253
+ msgid "Slideshow Settings"
254
+ msgstr "Slideshow Instellingen"
255
+
256
+ #: classes/SlideshowPluginPostType.php:174
257
+ #: classes/SlideshowPluginSlideInserter.php:222
258
+ #: views/SlideshowPluginPostType/slides.php:2
259
+ msgid "Insert"
260
+ msgstr "Invoegen"
261
+
262
+ #: classes/SlideshowPluginPostType.php:183
263
+ #: views/SlideshowPluginPostType/slides.php:9
264
+ msgid "Add slides to this slideshow by using one of the buttons above."
265
+ msgstr "Voeg slides toe doormiddel van de bovenstaande knoppen."
266
+
267
+ #: classes/SlideshowPluginShortcode.php:148
268
+ msgid "No slideshow selected."
269
+ msgstr "Geen slideshow geselecteerd."
270
+
271
+ #: classes/SlideshowPluginSlideInserter.php:178
272
+ msgid "More results loaded"
273
+ msgstr "Extra resultaten geladen"
274
+
275
+ #: classes/SlideshowPluginSlideInserter.php:233
276
+ msgid "Load more results"
277
+ msgstr "Meer resultaten laden"
278
+
279
+ #: classes/SlideshowPluginSlideInserter.php:244
280
+ msgid "No images were found, click here to upload some."
281
+ msgstr "Geen afbeeldingen gevonden, klik hier om afbeeldingen te uploaden."
282
+
283
+ #: classes/SlideshowPluginSlideInserter.php:316
284
+ msgid "Are you sure you want to delete this slide?"
285
+ msgstr "Weet je zeker dat je deze slide wilt verwijderen?"
286
+
287
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:523
288
+ msgid "Maximum width. When maximum width is 0, maximum width is ignored"
289
+ msgstr ""
290
+ "Maximum breedte. Wanneer maximum breedte 0 is, zal deze worden genegeerd"
291
+
292
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
293
+ msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
294
+ msgstr "http://nl.wikipedia.org/wiki/Beeldverhouding"
295
+
296
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
297
+ msgid "More info"
298
+ msgstr "Meer informatie"
299
+
300
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
301
+ #, php-format
302
+ msgid ""
303
+ "Proportional relationship%s between slideshow's width and height (width:"
304
+ "height)"
305
+ msgstr ""
306
+ "Proportionele verhouding%s tussen de slideshow's breedte en hoogte (breedte:"
307
+ "hoogte)"
308
+
309
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:525
310
+ msgid "Slideshow's height"
311
+ msgstr "Slideshow's hoogte"
312
+
313
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:526
314
+ msgid "Fit image into slide (Stretch image)"
315
+ msgstr "Pas afbeelding in de slideshow (Afbeedling uitrekken)"
316
+
317
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:527
318
+ msgid "Shrink slideshow's height when width shrinks"
319
+ msgstr "Maak de slideshow's hoogte kleiner wanneer de breedte kleiner wordt"
320
+
321
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:528
322
+ msgid ""
323
+ "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
324
+ msgstr ""
325
+ "Gebruik responsiviteit (Maak slideshow smaller wanneer de pagina smaller "
326
+ "wordt)"
327
+
328
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:530
329
+ msgid "Hide description box, pop up when mouse hovers over"
330
+ msgstr ""
331
+ "Verbeg beschrijving, toon deze alleen wanneer de muisaanwijzer boven de "
332
+ "slideshow is"
333
+
334
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:533
335
+ msgid "Pause slideshow when mouse hovers over"
336
+ msgstr "Pauzeer slideshow wanneer de muisaanwijzer boven de slideshow is"
337
+
338
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:534
339
+ msgid "Activate navigation buttons"
340
+ msgstr "Toon navigatie knoppen"
341
+
342
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:535
343
+ msgid "Hide navigation buttons, show when mouse hovers over"
344
+ msgstr ""
345
+ "Verberg navigatieknoppen, toon deze aleen wanneer de muisaanwijzer boven de "
346
+ "slideshow is"
347
+
348
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:536
349
+ msgid "Activate pagination"
350
+ msgstr "Toon paginering"
351
+
352
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:537
353
+ msgid "Hide pagination, show when mouse hovers over"
354
+ msgstr ""
355
+ "Verberg paginering, toon deze alleen wanneer de muisaanwijzer boven de "
356
+ "slideshow is"
357
+
358
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:538
359
+ msgid "Activate control panel (play and pause button)"
360
+ msgstr "Toon controlepaneel (speel en pause knop)"
361
+
362
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:539
363
+ msgid "Hide control panel, show when mouse hovers over"
364
+ msgstr ""
365
+ "Verberg controlepaneel, toon deze alleen wanneer de muisaanwijzer boven de "
366
+ "slideshow is"
367
+
368
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:540
369
+ msgid "Wait until the next slide has loaded before showing it"
370
+ msgstr "Wacht tot de volgende slide is geladen, voor het tonen ervan"
371
+
372
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:541
373
+ msgid "Show a loading icon until the first slide appears"
374
+ msgstr ""
375
+ "Toon een icoon dat aanduidt dat de slideshow bezig is met laden, voordat de "
376
+ "eerste slide wordt getoond"
377
+
378
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:542
379
+ msgid "Randomize slides"
380
+ msgstr "Toon slides in willekeurige volgorde"
381
+
382
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:543
383
+ #, php-format
384
+ msgid "Avoid content filter (disable if '%s' is shown)"
385
+ msgstr "Content filter omzeilen (uitschakelen als '%s' wordt getoond)"
386
+
387
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
388
+ msgid "Slide Left"
389
+ msgstr "Schuif Links"
390
+
391
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
392
+ msgid "Slide Right"
393
+ msgstr "Schuif Rechts"
394
+
395
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
396
+ msgid "Slide Up"
397
+ msgstr "Schuif Omhoog"
398
+
399
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
400
+ msgid "Slide Down"
401
+ msgstr "Schuif Omlaag"
402
+
403
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
404
+ msgid "Direct Fade"
405
+ msgstr "Rechtstreekse Fade"
406
+
407
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
408
+ msgid "Random Animation"
409
+ msgstr "Willekeurige Animatie"
410
+
411
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:569
412
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:570
413
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:571
414
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:572
415
+ msgid "Miscellaneous"
416
+ msgstr "Overige"
417
+
418
+ #: classes/SlideshowPluginWidget.php:23
419
+ msgid "Enables you to show your slideshows in the widget area of your website."
420
+ msgstr ""
421
+ "Maakt het mogelijk je slideshows te bijken in het widget gebied van je "
422
+ "website."
423
+
424
+ #: classes/SlideshowPluginWidget.php:29
425
+ msgid "Slideshow Widget"
426
+ msgstr "Slideshow Widget"
427
+
428
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:46
429
+ msgid "Default stylesheets"
430
+ msgstr "Standaard stijlen"
431
+
432
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:60
433
+ msgid "Create a new custom style from this style"
434
+ msgstr "Maak een nieuwe aangepaste stijl uit deze stijl"
435
+
436
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:62
437
+ msgid "Customize"
438
+ msgstr "Aanpassen"
439
+
440
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:76
441
+ msgid "Custom stylesheets"
442
+ msgstr "Aangepaste stijl"
443
+
444
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:89
445
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:168
446
+ msgid "Edit this style"
447
+ msgstr "Bewerk deze stijl"
448
+
449
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:91
450
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:170
451
+ #: views/SlideshowPluginPostType/slides.php:137
452
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:72
453
+ msgid "Edit"
454
+ msgstr "Bewerken"
455
+
456
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:98
457
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:177
458
+ msgid "Delete this style"
459
+ msgstr "Verwijder stijl"
460
+
461
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:100
462
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:179
463
+ msgid "Delete"
464
+ msgstr "Verwijderen"
465
+
466
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:110
467
+ msgid "Click 'Customize' to create a new custom stylesheet."
468
+ msgstr "Klik op 'Aanpassen' om een nieuwe aangepaste stijl te maken."
469
+
470
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:126
471
+ msgid "Select a stylesheet from the left to start customizing it."
472
+ msgstr "Kies een stijl uit de linker kolom om deze aan te passen."
473
+
474
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:135
475
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:188
476
+ #: views/SlideshowPluginPostType/slides.php:58
477
+ #: views/SlideshowPluginPostType/slides.php:143
478
+ #: views/SlideshowPluginPostType/slides.php:195
479
+ #: views/SlideshowPluginPostType/slides.php:263
480
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:80
481
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:12
482
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:98
483
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:47
484
+ #: views/SlideshowPluginWidget/form.php:2
485
+ msgid "Title"
486
+ msgstr "Titel"
487
+
488
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:144
489
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:196
490
+ msgid "Style"
491
+ msgstr "Stijl"
492
+
493
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:11
494
+ msgid "Note"
495
+ msgstr "Opgelet"
496
+
497
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:18
498
+ #, php-format
499
+ msgid ""
500
+ "The settings set on this page apply only to newly created slideshows and "
501
+ "therefore do not alter any existing ones. To adapt a slideshow's settings, "
502
+ "%sclick here.%s"
503
+ msgstr ""
504
+ "De instellingen op deze pagina zijn alleen van toepassing op slideshows die "
505
+ "nieuw worden aangemaakt en niet op de slideshows die reeds bestaan. Om een "
506
+ "slideshow's instellingen te wijzigen, %sklik hier.%s"
507
+
508
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:29
509
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:15
510
+ msgid "Default Slideshow Settings"
511
+ msgstr "Standaard Slideshow Instellingen"
512
+
513
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:41
514
+ #: views/SlideshowPluginPostType/settings.php:12
515
+ msgid "settings"
516
+ msgstr "instellingen"
517
+
518
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:77
519
+ msgid "Default Slideshow Stylesheet"
520
+ msgstr "Standaard Slideshow Stijl"
521
+
522
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:11
523
+ msgid "Add slideshows"
524
+ msgstr "Slideshows toevoegen"
525
+
526
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:12
527
+ msgid "Edit slideshows"
528
+ msgstr "Slideshows bewerken"
529
+
530
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:13
531
+ msgid "Delete slideshows"
532
+ msgstr "Slideshows verwijderen"
533
+
534
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:20
535
+ msgid "User Capabilities"
536
+ msgstr "Gebruikersrechten"
537
+
538
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:22
539
+ msgid "Select the user roles that will able to perform certain actions."
540
+ msgstr "Kies de gebruikersrol waaraan je bepaalde rechten wilt verlenen."
541
+
542
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:38
543
+ msgid "Untitled role"
544
+ msgstr "Naamloze gebruikersfunctie"
545
+
546
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:65
547
+ msgid "Settings"
548
+ msgstr "instellingen"
549
+
550
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:69
551
+ msgid "Stylesheet location"
552
+ msgstr "Stylesheet locatie"
553
+
554
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:72
555
+ msgid "top"
556
+ msgstr "boven"
557
+
558
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:73
559
+ msgid "bottom"
560
+ msgstr "onder"
561
+
562
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:16
563
+ msgid "Custom Styles"
564
+ msgstr "Aangepaste Stijlen"
565
+
566
+ #: views/SlideshowPluginPostType/information.php:1
567
+ msgid ""
568
+ "To use this slideshow in your website either add this piece of shortcode to "
569
+ "your posts or pages"
570
+ msgstr ""
571
+ "Om deze slideshow op je website te gebruiken voeg je of dit stukje shortcode "
572
+ "aan je pagina of post toe"
573
+
574
+ #: views/SlideshowPluginPostType/information.php:5
575
+ msgid ""
576
+ "Or add this piece of code to where ever in your website you want to place "
577
+ "the slideshow"
578
+ msgstr ""
579
+ "Of je voegt dit stuk code toe aan je broncode op de plaats waar je wilt dat "
580
+ "de slideshow te zien is"
581
+
582
+ #: views/SlideshowPluginPostType/information.php:9
583
+ #, php-format
584
+ msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
585
+ msgstr ""
586
+ "Ook kan je naar de %swidget pagina%s toegaan, om de slideshow te tonen als "
587
+ "widget."
588
+
589
+ #: views/SlideshowPluginPostType/settings.php:26
590
+ #: views/SlideshowPluginPostType/style-settings.php:11
591
+ msgid "Default"
592
+ msgstr "Standaard"
593
+
594
+ #: views/SlideshowPluginPostType/slides.php:53
595
+ #: views/SlideshowPluginPostType/slides.php:190
596
+ #: views/SlideshowPluginSlideInserter/insert-text-button.php:1
597
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:6
598
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:41
599
+ msgid "Text slide"
600
+ msgstr "Tekst slide"
601
+
602
+ #: views/SlideshowPluginPostType/slides.php:60
603
+ #: views/SlideshowPluginPostType/slides.php:149
604
+ #: views/SlideshowPluginPostType/slides.php:197
605
+ #: views/SlideshowPluginPostType/slides.php:269
606
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:87
607
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:15
608
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:105
609
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:50
610
+ msgid "Description"
611
+ msgstr "Beschrijving"
612
+
613
+ #: views/SlideshowPluginPostType/slides.php:62
614
+ #: views/SlideshowPluginPostType/slides.php:199
615
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:21
616
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:56
617
+ msgid "Background color"
618
+ msgstr "Achtergrond kleur"
619
+
620
+ #: views/SlideshowPluginPostType/slides.php:67
621
+ #: views/SlideshowPluginPostType/slides.php:154
622
+ #: views/SlideshowPluginPostType/slides.php:204
623
+ #: views/SlideshowPluginPostType/slides.php:274
624
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:94
625
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:28
626
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:112
627
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:64
628
+ msgid "URL"
629
+ msgstr "URL"
630
+
631
+ #: views/SlideshowPluginPostType/slides.php:69
632
+ #: views/SlideshowPluginPostType/slides.php:156
633
+ #: views/SlideshowPluginPostType/slides.php:206
634
+ #: views/SlideshowPluginPostType/slides.php:276
635
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:97
636
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:31
637
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:115
638
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:67
639
+ msgid "Open URL in"
640
+ msgstr "Open URL in"
641
+
642
+ #: views/SlideshowPluginPostType/slides.php:71
643
+ #: views/SlideshowPluginPostType/slides.php:158
644
+ #: views/SlideshowPluginPostType/slides.php:208
645
+ #: views/SlideshowPluginPostType/slides.php:278
646
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:99
647
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:33
648
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:117
649
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:69
650
+ msgid "Same window"
651
+ msgstr "Zelfde scherm"
652
+
653
+ #: views/SlideshowPluginPostType/slides.php:72
654
+ #: views/SlideshowPluginPostType/slides.php:159
655
+ #: views/SlideshowPluginPostType/slides.php:209
656
+ #: views/SlideshowPluginPostType/slides.php:279
657
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:100
658
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:34
659
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:118
660
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:70
661
+ msgid "New window"
662
+ msgstr "Nieuw scherm"
663
+
664
+ #: views/SlideshowPluginPostType/slides.php:89
665
+ #: views/SlideshowPluginPostType/slides.php:229
666
+ #: views/SlideshowPluginSlideInserter/insert-video-button.php:1
667
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:53
668
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:23
669
+ msgid "Video slide"
670
+ msgstr "Video slide"
671
+
672
+ #: views/SlideshowPluginPostType/slides.php:94
673
+ #: views/SlideshowPluginPostType/slides.php:234
674
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:59
675
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:29
676
+ msgid "Youtube Video ID"
677
+ msgstr "Youtube Video ID"
678
+
679
+ #: views/SlideshowPluginPostType/slides.php:132
680
+ #: views/SlideshowPluginPostType/slides.php:254
681
+ #: views/SlideshowPluginSlideInserter/insert-image-button.php:1
682
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:66
683
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:86
684
+ msgid "Image slide"
685
+ msgstr "Afbeeldingsslide"
686
+
687
+ #: views/SlideshowPluginPostType/slides.php:170
688
+ msgid ""
689
+ "An error occurred while loading this slide, and it will not be present in "
690
+ "the slideshow"
691
+ msgstr ""
692
+ "Een fout is ontstaan tijdens het laden van deze slide, de slide zal niet te "
693
+ "bekijken zijn in je slideshow"
694
+
695
+ #: views/SlideshowPluginPostType/slides.php:176
696
+ #: views/SlideshowPluginPostType/slides.php:217
697
+ #: views/SlideshowPluginPostType/slides.php:242
698
+ #: views/SlideshowPluginPostType/slides.php:288
699
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:109
700
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:42
701
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:75
702
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:127
703
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:78
704
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:45
705
+ msgid "Delete slide"
706
+ msgstr "Verwijder slide"
707
+
708
+ #: views/SlideshowPluginPostType/style-settings.php:22
709
+ #, php-format
710
+ msgid "Custom styles can be created and customized %shere%s."
711
+ msgstr "Aangepaste stijlen kunnen %shier%s worden aangemaakt en aangepast."
712
+
713
+ #: views/SlideshowPluginPostType/support-plugin.php:3
714
+ msgid "Help to keep this plugin free!"
715
+ msgstr "Help mee om deze plugin gratis te houden!"
716
+
717
+ #: views/SlideshowPluginPostType/support-plugin.php:6
718
+ msgid ""
719
+ "In order to keep you provided with the newest features, updates and bug "
720
+ "fixes, a lot of motivation is required. Therefore I'm kindly asking you to "
721
+ "consider making a small donation to the plugin or rating it as 5-stars on "
722
+ "Wordpress.org. Thank you in advance!"
723
+ msgstr ""
724
+ "Om je te kunnen voorzien van de nieuwste functionaliteiten, updates en "
725
+ "foutoplossingen, is een hoop motivatie nodig. Ik zou je daarom willen vragen "
726
+ "een kleine donatie aan deze plugin te willen overwegen, of de plugin een "
727
+ "goede beoordeling te geven op WordPress.org. Alvast bedankt!"
728
+
729
+ #: views/SlideshowPluginPostType/support-plugin.php:15
730
+ msgid "Rate on Wordpress.org"
731
+ msgstr "Geef een waardering op Wordpress.org"
732
+
733
+ #: views/SlideshowPluginPostType/support-plugin.php:24
734
+ msgid "Frequently Asked Questions (FAQ)"
735
+ msgstr "Veelgestelde Vragen (FAQ)"
736
+
737
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
738
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
739
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
740
+ msgid "Insert a Slideshow"
741
+ msgstr "Slideshow invoegen"
742
+
743
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
744
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
745
+ msgid "Insert Slideshow"
746
+ msgstr "Slideshow invoegen"
747
+
748
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
749
+ msgid "Select a slideshow"
750
+ msgstr "Selecteer een slideshow"
751
+
752
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
753
+ #: views/SlideshowPluginWidget/form.php:12
754
+ msgid "Untitled slideshow"
755
+ msgstr "Naamloze slideshow"
756
+
757
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
758
+ msgid "Cancel"
759
+ msgstr "Annuleren"
760
+
761
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
762
+ #, php-format
763
+ msgid ""
764
+ "It seems you haven't created any slideshows yet. %sYou can create a "
765
+ "slideshow here!%s"
766
+ msgstr ""
767
+ "Het ziet er naar uit dat je nog geen slideshows hebt gemaakt. %sHier kan je "
768
+ "een slideshow maken!%s"
769
+
770
+ #: views/SlideshowPluginSlideInserter/search-popup.php:6
771
+ msgid "Search"
772
+ msgstr "Zoek"
773
+
774
+ #: views/SlideshowPluginSlideInserter/search-popup.php:7
775
+ msgid "Search images by title or ID"
776
+ msgstr "Zoek afbeeldingen op titel of ID"
777
+
778
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:18
779
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:53
780
+ msgid "Text color"
781
+ msgstr "Tekst kleur"
782
+
783
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:66
784
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:36
785
+ msgid "Show related videos"
786
+ msgstr "Toon gerelateerde videos"
787
+
788
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:58
789
+ msgid "(Leave empty for a transparent background)"
790
+ msgstr "(Laat leeg voor een transparante achtergrond)"
791
+
792
+ #: views/SlideshowPluginUpload/upload-button.php:1
793
+ msgid "Upload/Manage Images"
794
+ msgstr "Upload/Beheer Afbeeldingen"
795
+
796
+ #: views/SlideshowPluginWidget/form.php:9
797
+ msgid "Random Slideshow"
798
+ msgstr "Willekeurige Slideshow"
799
+
800
+ #~ msgid "Head (top)"
801
+ #~ msgstr "Head (boven)"
802
+
803
+ #~ msgid "Footer (bottom)"
804
+ #~ msgstr "Footer (onder)"
805
+
806
+ #~ msgid "Questions / Suggestions"
807
+ #~ msgstr "Vragen / Opmerkingen"
808
+
809
+ #~ msgid ""
810
+ #~ "Shrink slideshow's height when width shrinks (Fixed height can be defined "
811
+ #~ "when setting this value to 'No')"
812
+ #~ msgstr ""
813
+ #~ "Krimp de slideshow's hoogte wanneer de breedte kleiner wordt "
814
+ #~ "(Vastgestelde hoogte kan worden ingesteld als deze instelling op 'Nee' "
815
+ #~ "staat)"
816
+
817
+ #, fuzzy
818
+ #~ msgid "Editor"
819
+ #~ msgstr "Bewerken"
820
+
821
+ #~ msgid "light"
822
+ #~ msgstr "licht"
823
+
824
+ #~ msgid "slide"
825
+ #~ msgstr "slide"
826
+
827
+ #~ msgid "Custom style editor (Does not work with a Strict Doctype)"
828
+ #~ msgstr "Aangepaste stijl bewerker (Werkt niet met een Strict Doctype)"
829
+
830
+ #~ msgid "Has the Slideshow plugin helped you?"
831
+ #~ msgstr "Heeft de Slideshow plugin je geholpen?"
832
+
833
+ #~ msgid "Help it back!"
834
+ #~ msgstr "Help hem terug!"
835
+
836
+ #~ msgid ""
837
+ #~ "If this plugin has filled you with happiness, please support the upkeep "
838
+ #~ "of the plugin by rating it on Wordpress, posting a suggestion for "
839
+ #~ "improvement on the support forum, or making a donation."
840
+ #~ msgstr ""
841
+ #~ "Als deze plugin je met blijdschap heeft vervuld, zou ik het enorm "
842
+ #~ "waarderen als je de plugin wilt beoordelen op Wordpress, een suggestie "
843
+ #~ "wilt maken voor verbetering, of een donatie doen wilt."
844
+
845
+ #~ msgid "Click on an image to insert it as a slide"
846
+ #~ msgstr "Klik op een plaatje om deze in te voegen als slide"
847
+
848
+ #~ msgid "Width of the slideshow"
849
+ #~ msgstr "Breedte van de slideshow"
850
+
851
+ #~ msgid "Defaults to parent's width."
852
+ #~ msgstr "Standaard ingesteld op de breedte van het bovenliggende element."
853
+
854
+ #~ msgid "Send user to image URL on click"
855
+ #~ msgstr ""
856
+ #~ "Wanner de gebruiker op de afbeelding klikt, stuur hem naar de URL van het "
857
+ #~ "plaatje"
858
+
859
+ #~ msgid "Leave any field open to use default value."
860
+ #~ 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,725 +1,761 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Slideshow Plugin\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-03-25 20:09+0100\n"
6
- "PO-Revision-Date: 2013-03-25 20:09+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.5.5\n"
15
- "X-Poedit-SearchPath-0: .\n"
16
-
17
- #: classes/SlideshowPluginGeneralSettings.php:64
18
- #: classes/SlideshowPluginGeneralSettings.php:65
19
- msgid "General Settings"
20
- msgstr ""
21
-
22
- #: classes/SlideshowPluginGeneralSettings.php:146
23
- msgid "New"
24
- msgstr ""
25
-
26
- #: classes/SlideshowPluginGeneralSettings.php:147
27
- msgid "Are you sure you want to delete this custom style?"
28
- msgstr ""
29
-
30
- #: classes/SlideshowPluginGeneralSettings.php:166
31
- #: classes/SlideshowPluginInstaller.php:441
32
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:6
33
- msgid "Light"
34
- msgstr ""
35
-
36
- #: classes/SlideshowPluginGeneralSettings.php:167
37
- #: classes/SlideshowPluginInstaller.php:441
38
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:7
39
- msgid "Dark"
40
- msgstr ""
41
-
42
- #: classes/SlideshowPluginGeneralSettings.php:271
43
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:49
44
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:131
45
- msgid "Untitled"
46
- msgstr ""
47
-
48
- #: classes/SlideshowPluginInstaller.php:438
49
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:378
50
- msgid "Yes"
51
- msgstr ""
52
-
53
- #: classes/SlideshowPluginInstaller.php:439
54
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:379
55
- msgid "No"
56
- msgstr ""
57
-
58
- #: classes/SlideshowPluginInstaller.php:441
59
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:477
60
- msgid "The style used for this slideshow"
61
- msgstr ""
62
-
63
- #: classes/SlideshowPluginInstaller.php:441
64
- msgid "Custom"
65
- msgstr ""
66
-
67
- #: classes/SlideshowPluginInstaller.php:442
68
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:114
69
- msgid "Custom style editor"
70
- msgstr ""
71
-
72
- #: classes/SlideshowPluginInstaller.php:443
73
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
74
- msgid "Animation used for transition between slides"
75
- msgstr ""
76
-
77
- #: classes/SlideshowPluginInstaller.php:443
78
- msgid "Slide"
79
- msgstr ""
80
-
81
- #: classes/SlideshowPluginInstaller.php:443
82
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
83
- msgid "Fade"
84
- msgstr ""
85
-
86
- #: classes/SlideshowPluginInstaller.php:443
87
- #: classes/SlideshowPluginInstaller.php:444
88
- #: classes/SlideshowPluginInstaller.php:445
89
- #: classes/SlideshowPluginInstaller.php:446
90
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
91
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:420
92
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
93
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:422
94
- msgid "Animation"
95
- msgstr ""
96
-
97
- #: classes/SlideshowPluginInstaller.php:444
98
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:420
99
- msgid "Number of seconds the slide takes to slide in"
100
- msgstr ""
101
-
102
- #: classes/SlideshowPluginInstaller.php:445
103
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
104
- msgid "Number of seconds the description takes to slide in"
105
- msgstr ""
106
-
107
- #: classes/SlideshowPluginInstaller.php:446
108
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:422
109
- msgid "Seconds between changing slides"
110
- msgstr ""
111
-
112
- #: classes/SlideshowPluginInstaller.php:447
113
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
114
- msgid "Number of slides to fit into one slide"
115
- msgstr ""
116
-
117
- #: classes/SlideshowPluginInstaller.php:447
118
- #: classes/SlideshowPluginInstaller.php:448
119
- #: classes/SlideshowPluginInstaller.php:449
120
- #: classes/SlideshowPluginInstaller.php:450
121
- #: classes/SlideshowPluginInstaller.php:451
122
- #: classes/SlideshowPluginInstaller.php:452
123
- #: classes/SlideshowPluginInstaller.php:453
124
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
125
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:424
126
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
127
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:426
128
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:427
129
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
130
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:429
131
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:430
132
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:431
133
- msgid "Display"
134
- msgstr ""
135
-
136
- #: classes/SlideshowPluginInstaller.php:448
137
- msgid "Width of the slideshow, set to parent&#39;s width on 0"
138
- msgstr ""
139
-
140
- #: classes/SlideshowPluginInstaller.php:449
141
- msgid "Height of the slideshow"
142
- msgstr ""
143
-
144
- #: classes/SlideshowPluginInstaller.php:450
145
- msgid "Height of the description boxes"
146
- msgstr ""
147
-
148
- #: classes/SlideshowPluginInstaller.php:451
149
- msgid "Fit image into slide (stretching it)"
150
- msgstr ""
151
-
152
- #: classes/SlideshowPluginInstaller.php:452
153
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:430
154
- msgid "Show title and description"
155
- msgstr ""
156
-
157
- #: classes/SlideshowPluginInstaller.php:453
158
- msgid "Hide description box, it will pop up when a mouse hovers over the slide"
159
- msgstr ""
160
-
161
- #: classes/SlideshowPluginInstaller.php:454
162
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:432
163
- msgid "Automatically slide to the next slide"
164
- msgstr ""
165
-
166
- #: classes/SlideshowPluginInstaller.php:454
167
- #: classes/SlideshowPluginInstaller.php:455
168
- #: classes/SlideshowPluginInstaller.php:456
169
- #: classes/SlideshowPluginInstaller.php:457
170
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:432
171
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:433
172
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:434
173
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:435
174
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:436
175
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:437
176
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:438
177
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:439
178
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:440
179
- msgid "Control"
180
- msgstr ""
181
-
182
- #: classes/SlideshowPluginInstaller.php:455
183
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:433
184
- msgid "Return to the beginning of the slideshow after last slide"
185
- msgstr ""
186
-
187
- #: classes/SlideshowPluginInstaller.php:456
188
- msgid "Activate buttons (so the user can scroll through the slides)"
189
- msgstr ""
190
-
191
- #: classes/SlideshowPluginInstaller.php:457
192
- msgid "Show control panel (play and pause button)"
193
- msgstr ""
194
-
195
- #: classes/SlideshowPluginPostType.php:38
196
- msgid "Slideshows"
197
- msgstr ""
198
-
199
- #: classes/SlideshowPluginPostType.php:39
200
- #: views/SlideshowPluginWidget/form.php:7
201
- msgid "Slideshow"
202
- msgstr ""
203
-
204
- #: classes/SlideshowPluginPostType.php:40
205
- msgid "Add New Slideshow"
206
- msgstr ""
207
-
208
- #: classes/SlideshowPluginPostType.php:41
209
- msgid "Edit slideshow"
210
- msgstr ""
211
-
212
- #: classes/SlideshowPluginPostType.php:42
213
- msgid "New slideshow"
214
- msgstr ""
215
-
216
- #: classes/SlideshowPluginPostType.php:43
217
- msgid "View slideshow"
218
- msgstr ""
219
-
220
- #: classes/SlideshowPluginPostType.php:44
221
- msgid "Search slideshows"
222
- msgstr ""
223
-
224
- #: classes/SlideshowPluginPostType.php:45
225
- #: classes/SlideshowPluginPostType.php:46
226
- msgid "No slideshows found"
227
- msgstr ""
228
-
229
- #: classes/SlideshowPluginPostType.php:155
230
- msgid "Information"
231
- msgstr ""
232
-
233
- #: classes/SlideshowPluginPostType.php:164
234
- msgid "Slides List"
235
- msgstr ""
236
-
237
- #: classes/SlideshowPluginPostType.php:173
238
- msgid "Slideshow Style"
239
- msgstr ""
240
-
241
- #: classes/SlideshowPluginPostType.php:182
242
- msgid "Slideshow Settings"
243
- msgstr ""
244
-
245
- #: classes/SlideshowPluginPostType.php:232
246
- #: classes/SlideshowPluginSlideInserter.php:178
247
- #: views/SlideshowPluginPostType/slides.php:2
248
- msgid "Insert"
249
- msgstr ""
250
-
251
- #: classes/SlideshowPluginPostType.php:240
252
- #: views/SlideshowPluginPostType/slides.php:9
253
- msgid "Add slides to this slideshow by using one of the buttons above."
254
- msgstr ""
255
-
256
- #: classes/SlideshowPluginShortcode.php:132
257
- msgid "No slideshow selected."
258
- msgstr ""
259
-
260
- #: classes/SlideshowPluginSlideInserter.php:151
261
- msgid "More results loaded"
262
- msgstr ""
263
-
264
- #: classes/SlideshowPluginSlideInserter.php:187
265
- msgid "Load more results"
266
- msgstr ""
267
-
268
- #: classes/SlideshowPluginSlideInserter.php:196
269
- msgid "No images were found, click here to upload some."
270
- msgstr ""
271
-
272
- #: classes/SlideshowPluginSlideInserter.php:273
273
- msgid "Are you sure you want to delete this slide?"
274
- msgstr ""
275
-
276
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
277
- msgid "Slide Left"
278
- msgstr ""
279
-
280
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
281
- msgid "Slide Right"
282
- msgstr ""
283
-
284
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
285
- msgid "Slide Up"
286
- msgstr ""
287
-
288
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
289
- msgid "Slide Down"
290
- msgstr ""
291
-
292
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
293
- msgid "Direct Fade"
294
- msgstr ""
295
-
296
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
297
- msgid "Random Animation"
298
- msgstr ""
299
-
300
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:424
301
- msgid "Maximum width. When maximum width is 0, maximum width is ignored"
302
- msgstr ""
303
-
304
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
305
- msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
306
- msgstr ""
307
-
308
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
309
- msgid "More info"
310
- msgstr ""
311
-
312
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
313
- #, php-format
314
- msgid ""
315
- "Proportional relationship%s between slideshow's width and height (width:"
316
- "height)"
317
- msgstr ""
318
-
319
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:426
320
- msgid "Slideshow's height"
321
- msgstr ""
322
-
323
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:427
324
- msgid "Fit image into slide (Stretch image)"
325
- msgstr ""
326
-
327
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
328
- msgid "Shrink slideshow's height when width shrinks"
329
- msgstr ""
330
-
331
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:429
332
- msgid ""
333
- "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
334
- msgstr ""
335
-
336
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:431
337
- msgid "Hide description box, pop up when mouse hovers over"
338
- msgstr ""
339
-
340
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:434
341
- msgid "Pause slideshow when mouse hovers over"
342
- msgstr ""
343
-
344
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:435
345
- msgid "Activate navigation buttons"
346
- msgstr ""
347
-
348
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:436
349
- msgid "Hide navigation buttons, show when mouse hovers over"
350
- msgstr ""
351
-
352
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:437
353
- msgid "Activate pagination"
354
- msgstr ""
355
-
356
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:438
357
- msgid "Hide pagination, show when mouse hovers over"
358
- msgstr ""
359
-
360
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:439
361
- msgid "Activate control panel (play and pause button)"
362
- msgstr ""
363
-
364
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:440
365
- msgid "Hide control panel, show when mouse hovers over"
366
- msgstr ""
367
-
368
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:441
369
- msgid "Randomize slides"
370
- msgstr ""
371
-
372
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:441
373
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:442
374
- msgid "Miscellaneous"
375
- msgstr ""
376
-
377
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:442
378
- #, php-format
379
- msgid "Avoid content filter (disable if '%s' is shown)"
380
- msgstr ""
381
-
382
- #: classes/SlideshowPluginWidget.php:23
383
- msgid "Enables you to show your slideshows in the widget area of your website."
384
- msgstr ""
385
-
386
- #: classes/SlideshowPluginWidget.php:29
387
- msgid "Slideshow Widget"
388
- msgstr ""
389
-
390
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:38
391
- msgid "Default stylesheets"
392
- msgstr ""
393
-
394
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:52
395
- msgid "Create a new custom style from this style"
396
- msgstr ""
397
-
398
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:54
399
- msgid "Customize"
400
- msgstr ""
401
-
402
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:68
403
- msgid "Custom stylesheets"
404
- msgstr ""
405
-
406
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:81
407
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:160
408
- msgid "Edit this style"
409
- msgstr ""
410
-
411
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:83
412
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:162
413
- #: views/SlideshowPluginPostType/slides.php:137
414
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:46
415
- msgid "Edit"
416
- msgstr ""
417
-
418
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:90
419
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:169
420
- msgid "Delete this style"
421
- msgstr ""
422
-
423
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:92
424
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:171
425
- msgid "Delete"
426
- msgstr ""
427
-
428
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:102
429
- msgid "Click 'Customize' to create a new custom stylesheet."
430
- msgstr ""
431
-
432
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:118
433
- msgid "Select a stylesheet from the left to start customizing it."
434
- msgstr ""
435
-
436
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:127
437
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:180
438
- #: views/SlideshowPluginPostType/slides.php:58
439
- #: views/SlideshowPluginPostType/slides.php:143
440
- #: views/SlideshowPluginPostType/slides.php:195
441
- #: views/SlideshowPluginPostType/slides.php:263
442
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:54
443
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:12
444
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:90
445
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:29
446
- #: views/SlideshowPluginWidget/form.php:2
447
- msgid "Title"
448
- msgstr ""
449
-
450
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:136
451
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:188
452
- msgid "Style"
453
- msgstr ""
454
-
455
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:11
456
- msgid "Note"
457
- msgstr ""
458
-
459
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:18
460
- #, php-format
461
- msgid ""
462
- "The settings set on this page apply only to newly created slideshows and "
463
- "therefore do not alter any existing ones. To adapt a slideshow's settings, "
464
- "%sclick here.%s"
465
- msgstr ""
466
-
467
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:30
468
- #: views/SlideshowPluginGeneralSettings/general-settings.php:16
469
- msgid "Default Slideshow Settings"
470
- msgstr ""
471
-
472
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:43
473
- #: views/SlideshowPluginPostType/settings.php:12
474
- msgid "settings"
475
- msgstr ""
476
-
477
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:80
478
- msgid "Default Slideshow Stylesheet"
479
- msgstr ""
480
-
481
- #: views/SlideshowPluginGeneralSettings/general-settings.php:15
482
- msgid "User Capabilities"
483
- msgstr ""
484
-
485
- #: views/SlideshowPluginGeneralSettings/general-settings.php:17
486
- msgid "Custom Styles"
487
- msgstr ""
488
-
489
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:8
490
- msgid "Add slideshows"
491
- msgstr ""
492
-
493
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:9
494
- msgid "Edit slideshows"
495
- msgstr ""
496
-
497
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:10
498
- msgid "Delete slideshows"
499
- msgstr ""
500
-
501
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:18
502
- msgid "Select the user roles that will able to perform certain actions."
503
- msgstr ""
504
-
505
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:35
506
- msgid "Untitled role"
507
- msgstr ""
508
-
509
- #: views/SlideshowPluginPostType/information.php:1
510
- msgid ""
511
- "To use this slideshow in your website either add this piece of shortcode to "
512
- "your posts or pages"
513
- msgstr ""
514
-
515
- #: views/SlideshowPluginPostType/information.php:5
516
- msgid ""
517
- "Or add this piece of code to where ever in your website you want to place "
518
- "the slideshow"
519
- msgstr ""
520
-
521
- #: views/SlideshowPluginPostType/information.php:9
522
- #, php-format
523
- msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
524
- msgstr ""
525
-
526
- #: views/SlideshowPluginPostType/settings.php:26
527
- #: views/SlideshowPluginPostType/style-settings.php:11
528
- msgid "Default"
529
- msgstr ""
530
-
531
- #: views/SlideshowPluginPostType/slides.php:53
532
- #: views/SlideshowPluginPostType/slides.php:190
533
- #: views/SlideshowPluginSlideInserter/insert-text-button.php:1
534
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:6
535
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:23
536
- msgid "Text slide"
537
- msgstr ""
538
-
539
- #: views/SlideshowPluginPostType/slides.php:60
540
- #: views/SlideshowPluginPostType/slides.php:149
541
- #: views/SlideshowPluginPostType/slides.php:197
542
- #: views/SlideshowPluginPostType/slides.php:269
543
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:61
544
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:15
545
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:97
546
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:32
547
- msgid "Description"
548
- msgstr ""
549
-
550
- #: views/SlideshowPluginPostType/slides.php:62
551
- #: views/SlideshowPluginPostType/slides.php:199
552
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:21
553
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:38
554
- msgid "Background color"
555
- msgstr ""
556
-
557
- #: views/SlideshowPluginPostType/slides.php:67
558
- #: views/SlideshowPluginPostType/slides.php:154
559
- #: views/SlideshowPluginPostType/slides.php:204
560
- #: views/SlideshowPluginPostType/slides.php:274
561
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:68
562
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:28
563
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:104
564
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:46
565
- msgid "URL"
566
- msgstr ""
567
-
568
- #: views/SlideshowPluginPostType/slides.php:69
569
- #: views/SlideshowPluginPostType/slides.php:156
570
- #: views/SlideshowPluginPostType/slides.php:206
571
- #: views/SlideshowPluginPostType/slides.php:276
572
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:71
573
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:31
574
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:107
575
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:49
576
- msgid "Open URL in"
577
- msgstr ""
578
-
579
- #: views/SlideshowPluginPostType/slides.php:71
580
- #: views/SlideshowPluginPostType/slides.php:158
581
- #: views/SlideshowPluginPostType/slides.php:208
582
- #: views/SlideshowPluginPostType/slides.php:278
583
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:73
584
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:33
585
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:109
586
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:51
587
- msgid "Same window"
588
- msgstr ""
589
-
590
- #: views/SlideshowPluginPostType/slides.php:72
591
- #: views/SlideshowPluginPostType/slides.php:159
592
- #: views/SlideshowPluginPostType/slides.php:209
593
- #: views/SlideshowPluginPostType/slides.php:279
594
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:74
595
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:34
596
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:110
597
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:52
598
- msgid "New window"
599
- msgstr ""
600
-
601
- #: views/SlideshowPluginPostType/slides.php:89
602
- #: views/SlideshowPluginPostType/slides.php:229
603
- #: views/SlideshowPluginSlideInserter/insert-video-button.php:1
604
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:53
605
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:13
606
- msgid "Video slide"
607
- msgstr ""
608
-
609
- #: views/SlideshowPluginPostType/slides.php:94
610
- #: views/SlideshowPluginPostType/slides.php:234
611
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:59
612
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:19
613
- msgid "Youtube Video ID"
614
- msgstr ""
615
-
616
- #: views/SlideshowPluginPostType/slides.php:132
617
- #: views/SlideshowPluginPostType/slides.php:254
618
- #: views/SlideshowPluginSlideInserter/insert-image-button.php:1
619
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:40
620
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:78
621
- msgid "Image slide"
622
- msgstr ""
623
-
624
- #: views/SlideshowPluginPostType/slides.php:170
625
- msgid ""
626
- "An error occurred while loading this slide, and it will not be present in "
627
- "the slideshow"
628
- msgstr ""
629
-
630
- #: views/SlideshowPluginPostType/slides.php:176
631
- #: views/SlideshowPluginPostType/slides.php:217
632
- #: views/SlideshowPluginPostType/slides.php:242
633
- #: views/SlideshowPluginPostType/slides.php:288
634
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:83
635
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:42
636
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:67
637
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:119
638
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:60
639
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:27
640
- msgid "Delete slide"
641
- msgstr ""
642
-
643
- #: views/SlideshowPluginPostType/style-settings.php:22
644
- #, php-format
645
- msgid "Custom styles can be created and customized %shere%s."
646
- msgstr ""
647
-
648
- #: views/SlideshowPluginPostType/support-plugin.php:3
649
- msgid "Help to keep this plugin free!"
650
- msgstr ""
651
-
652
- #: views/SlideshowPluginPostType/support-plugin.php:6
653
- msgid ""
654
- "In order to keep you provided with the newest features, forum support, and "
655
- "bug-fixes, a lot of motivation is required. Therefore I'm kindly asking you "
656
- "to consider making a small donation to the plugin or rating it as 5-stars on "
657
- "Wordpress.org. Thank you in advance!"
658
- msgstr ""
659
-
660
- #: views/SlideshowPluginPostType/support-plugin.php:15
661
- msgid "Rate on Wordpress.org"
662
- msgstr ""
663
-
664
- #: views/SlideshowPluginPostType/support-plugin.php:24
665
- msgid "Frequently Asked Questions (FAQ)"
666
- msgstr ""
667
-
668
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
669
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
670
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
671
- msgid "Insert a Slideshow"
672
- msgstr ""
673
-
674
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
675
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
676
- msgid "Insert Slideshow"
677
- msgstr ""
678
-
679
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
680
- msgid "Select a slideshow"
681
- msgstr ""
682
-
683
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
684
- #: views/SlideshowPluginWidget/form.php:12
685
- msgid "Untitled slideshow"
686
- msgstr ""
687
-
688
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
689
- msgid "Cancel"
690
- msgstr ""
691
-
692
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
693
- #, php-format
694
- msgid ""
695
- "It seems you haven't created any slideshows yet. %sYou can create a "
696
- "slideshow here!%s"
697
- msgstr ""
698
-
699
- #: views/SlideshowPluginSlideInserter/search-popup.php:6
700
- msgid "Search"
701
- msgstr ""
702
-
703
- #: views/SlideshowPluginSlideInserter/search-popup.php:7
704
- msgid "Search images by title or ID"
705
- msgstr ""
706
-
707
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:18
708
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:35
709
- msgid "Text color"
710
- msgstr ""
711
-
712
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:40
713
- msgid "(Leave empty for a transparent background)"
714
- msgstr ""
715
-
716
- #: views/SlideshowPluginUpload/upload-button.php:1
717
- msgid "Upload/Manage Images"
718
- msgstr ""
719
-
720
- #: views/SlideshowPluginWidget/form.php:9
721
- msgid "Random Slideshow"
722
- msgstr ""
723
-
724
- #~ msgid "Leave any field open to use default value."
725
- #~ msgstr "Een veld dat open wordt gelaten neemt de standaardwaarde aan."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Slideshow Plugin\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-08-21 10:56+0100\n"
6
+ "PO-Revision-Date: 2013-08-21 10:56+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.5.7\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:516
33
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:6
34
+ msgid "Light"
35
+ msgstr ""
36
+
37
+ #: classes/SlideshowPluginGeneralSettings.php:197
38
+ #: classes/SlideshowPluginInstaller.php:516
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:139
46
+ msgid "Untitled"
47
+ msgstr ""
48
+
49
+ #: classes/SlideshowPluginInstaller.php:513
50
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:472
51
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:67
52
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:37
53
+ msgid "Yes"
54
+ msgstr ""
55
+
56
+ #: classes/SlideshowPluginInstaller.php:514
57
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:473
58
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:68
59
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:38
60
+ msgid "No"
61
+ msgstr ""
62
+
63
+ #: classes/SlideshowPluginInstaller.php:516
64
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:610
65
+ msgid "The style used for this slideshow"
66
+ msgstr ""
67
+
68
+ #: classes/SlideshowPluginInstaller.php:516
69
+ msgid "Custom"
70
+ msgstr ""
71
+
72
+ #: classes/SlideshowPluginInstaller.php:517
73
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:122
74
+ msgid "Custom style editor"
75
+ msgstr ""
76
+
77
+ #: classes/SlideshowPluginInstaller.php:518
78
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:518
79
+ msgid "Animation used for transition between slides"
80
+ msgstr ""
81
+
82
+ #: classes/SlideshowPluginInstaller.php:518
83
+ msgid "Slide"
84
+ msgstr ""
85
+
86
+ #: classes/SlideshowPluginInstaller.php:518
87
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
88
+ msgid "Fade"
89
+ msgstr ""
90
+
91
+ #: classes/SlideshowPluginInstaller.php:518
92
+ #: classes/SlideshowPluginInstaller.php:519
93
+ #: classes/SlideshowPluginInstaller.php:520
94
+ #: classes/SlideshowPluginInstaller.php:521
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:519
103
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:519
104
+ msgid "Number of seconds the slide takes to slide in"
105
+ msgstr ""
106
+
107
+ #: classes/SlideshowPluginInstaller.php:520
108
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:520
109
+ msgid "Number of seconds the description takes to slide in"
110
+ msgstr ""
111
+
112
+ #: classes/SlideshowPluginInstaller.php:521
113
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:521
114
+ msgid "Seconds between changing slides"
115
+ msgstr ""
116
+
117
+ #: classes/SlideshowPluginInstaller.php:522
118
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:522
119
+ msgid "Number of slides to fit into one slide"
120
+ msgstr ""
121
+
122
+ #: classes/SlideshowPluginInstaller.php:522
123
+ #: classes/SlideshowPluginInstaller.php:523
124
+ #: classes/SlideshowPluginInstaller.php:524
125
+ #: classes/SlideshowPluginInstaller.php:525
126
+ #: classes/SlideshowPluginInstaller.php:526
127
+ #: classes/SlideshowPluginInstaller.php:527
128
+ #: classes/SlideshowPluginInstaller.php:528
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:523
142
+ msgid "Width of the slideshow, set to parent&#39;s width on 0"
143
+ msgstr ""
144
+
145
+ #: classes/SlideshowPluginInstaller.php:524
146
+ msgid "Height of the slideshow"
147
+ msgstr ""
148
+
149
+ #: classes/SlideshowPluginInstaller.php:525
150
+ msgid "Height of the description boxes"
151
+ msgstr ""
152
+
153
+ #: classes/SlideshowPluginInstaller.php:526
154
+ msgid "Fit image into slide (stretching it)"
155
+ msgstr ""
156
+
157
+ #: classes/SlideshowPluginInstaller.php:527
158
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:529
159
+ msgid "Show title and description"
160
+ msgstr ""
161
+
162
+ #: classes/SlideshowPluginInstaller.php:528
163
+ msgid "Hide description box, it will pop up when a mouse hovers over the slide"
164
+ msgstr ""
165
+
166
+ #: classes/SlideshowPluginInstaller.php:529
167
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:531
168
+ msgid "Automatically slide to the next slide"
169
+ msgstr ""
170
+
171
+ #: classes/SlideshowPluginInstaller.php:529
172
+ #: classes/SlideshowPluginInstaller.php:530
173
+ #: classes/SlideshowPluginInstaller.php:531
174
+ #: classes/SlideshowPluginInstaller.php:532
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:530
188
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:532
189
+ msgid "Return to the beginning of the slideshow after last slide"
190
+ msgstr ""
191
+
192
+ #: classes/SlideshowPluginInstaller.php:531
193
+ msgid "Activate buttons (so the user can scroll through the slides)"
194
+ msgstr ""
195
+
196
+ #: classes/SlideshowPluginInstaller.php:532
197
+ msgid "Show control panel (play and pause button)"
198
+ msgstr ""
199
+
200
+ #: classes/SlideshowPluginPostType.php:38
201
+ msgid "Slideshows"
202
+ msgstr ""
203
+
204
+ #: classes/SlideshowPluginPostType.php:39
205
+ #: views/SlideshowPluginWidget/form.php:7
206
+ msgid "Slideshow"
207
+ msgstr ""
208
+
209
+ #: classes/SlideshowPluginPostType.php:40
210
+ msgid "Add New Slideshow"
211
+ msgstr ""
212
+
213
+ #: classes/SlideshowPluginPostType.php:41
214
+ msgid "Edit slideshow"
215
+ msgstr ""
216
+
217
+ #: classes/SlideshowPluginPostType.php:42
218
+ msgid "New slideshow"
219
+ msgstr ""
220
+
221
+ #: classes/SlideshowPluginPostType.php:43
222
+ msgid "View slideshow"
223
+ msgstr ""
224
+
225
+ #: classes/SlideshowPluginPostType.php:44
226
+ msgid "Search slideshows"
227
+ msgstr ""
228
+
229
+ #: classes/SlideshowPluginPostType.php:45
230
+ #: classes/SlideshowPluginPostType.php:46
231
+ msgid "No slideshows found"
232
+ msgstr ""
233
+
234
+ #: classes/SlideshowPluginPostType.php:91
235
+ msgid "Information"
236
+ msgstr ""
237
+
238
+ #: classes/SlideshowPluginPostType.php:100
239
+ msgid "Slides List"
240
+ msgstr ""
241
+
242
+ #: classes/SlideshowPluginPostType.php:109
243
+ msgid "Slideshow Style"
244
+ msgstr ""
245
+
246
+ #: classes/SlideshowPluginPostType.php:118
247
+ msgid "Slideshow Settings"
248
+ msgstr ""
249
+
250
+ #: classes/SlideshowPluginPostType.php:174
251
+ #: classes/SlideshowPluginSlideInserter.php:222
252
+ #: views/SlideshowPluginPostType/slides.php:2
253
+ msgid "Insert"
254
+ msgstr ""
255
+
256
+ #: classes/SlideshowPluginPostType.php:183
257
+ #: views/SlideshowPluginPostType/slides.php:9
258
+ msgid "Add slides to this slideshow by using one of the buttons above."
259
+ msgstr ""
260
+
261
+ #: classes/SlideshowPluginShortcode.php:148
262
+ msgid "No slideshow selected."
263
+ msgstr ""
264
+
265
+ #: classes/SlideshowPluginSlideInserter.php:178
266
+ msgid "More results loaded"
267
+ msgstr ""
268
+
269
+ #: classes/SlideshowPluginSlideInserter.php:233
270
+ msgid "Load more results"
271
+ msgstr ""
272
+
273
+ #: classes/SlideshowPluginSlideInserter.php:244
274
+ msgid "No images were found, click here to upload some."
275
+ msgstr ""
276
+
277
+ #: classes/SlideshowPluginSlideInserter.php:316
278
+ msgid "Are you sure you want to delete this slide?"
279
+ msgstr ""
280
+
281
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:523
282
+ msgid "Maximum width. When maximum width is 0, maximum width is ignored"
283
+ msgstr ""
284
+
285
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
286
+ msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
287
+ msgstr ""
288
+
289
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
290
+ msgid "More info"
291
+ msgstr ""
292
+
293
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
294
+ #, php-format
295
+ msgid ""
296
+ "Proportional relationship%s between slideshow's width and height (width:"
297
+ "height)"
298
+ msgstr ""
299
+
300
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:525
301
+ msgid "Slideshow's height"
302
+ msgstr ""
303
+
304
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:526
305
+ msgid "Fit image into slide (Stretch image)"
306
+ msgstr ""
307
+
308
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:527
309
+ msgid "Shrink slideshow's height when width shrinks"
310
+ msgstr ""
311
+
312
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:528
313
+ msgid ""
314
+ "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
315
+ msgstr ""
316
+
317
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:530
318
+ msgid "Hide description box, pop up when mouse hovers over"
319
+ msgstr ""
320
+
321
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:533
322
+ msgid "Pause slideshow when mouse hovers over"
323
+ msgstr ""
324
+
325
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:534
326
+ msgid "Activate navigation buttons"
327
+ msgstr ""
328
+
329
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:535
330
+ msgid "Hide navigation buttons, show when mouse hovers over"
331
+ msgstr ""
332
+
333
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:536
334
+ msgid "Activate pagination"
335
+ msgstr ""
336
+
337
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:537
338
+ msgid "Hide pagination, show when mouse hovers over"
339
+ msgstr ""
340
+
341
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:538
342
+ msgid "Activate control panel (play and pause button)"
343
+ msgstr ""
344
+
345
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:539
346
+ msgid "Hide control panel, show when mouse hovers over"
347
+ msgstr ""
348
+
349
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:540
350
+ msgid "Wait until the next slide has loaded before showing it"
351
+ msgstr ""
352
+
353
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:541
354
+ msgid "Show a loading icon until the first slide appears"
355
+ msgstr ""
356
+
357
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:542
358
+ msgid "Randomize slides"
359
+ msgstr ""
360
+
361
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:543
362
+ #, php-format
363
+ msgid "Avoid content filter (disable if '%s' is shown)"
364
+ msgstr ""
365
+
366
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
367
+ msgid "Slide Left"
368
+ msgstr ""
369
+
370
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
371
+ msgid "Slide Right"
372
+ msgstr ""
373
+
374
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
375
+ msgid "Slide Up"
376
+ msgstr ""
377
+
378
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
379
+ msgid "Slide Down"
380
+ msgstr ""
381
+
382
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
383
+ msgid "Direct Fade"
384
+ msgstr ""
385
+
386
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
387
+ msgid "Random Animation"
388
+ msgstr ""
389
+
390
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:569
391
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:570
392
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:571
393
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:572
394
+ msgid "Miscellaneous"
395
+ msgstr ""
396
+
397
+ #: classes/SlideshowPluginWidget.php:23
398
+ msgid "Enables you to show your slideshows in the widget area of your website."
399
+ msgstr ""
400
+
401
+ #: classes/SlideshowPluginWidget.php:29
402
+ msgid "Slideshow Widget"
403
+ msgstr ""
404
+
405
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:46
406
+ msgid "Default stylesheets"
407
+ msgstr ""
408
+
409
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:60
410
+ msgid "Create a new custom style from this style"
411
+ msgstr ""
412
+
413
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:62
414
+ msgid "Customize"
415
+ msgstr ""
416
+
417
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:76
418
+ msgid "Custom stylesheets"
419
+ msgstr ""
420
+
421
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:89
422
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:168
423
+ msgid "Edit this style"
424
+ msgstr ""
425
+
426
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:91
427
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:170
428
+ #: views/SlideshowPluginPostType/slides.php:137
429
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:72
430
+ msgid "Edit"
431
+ msgstr ""
432
+
433
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:98
434
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:177
435
+ msgid "Delete this style"
436
+ msgstr ""
437
+
438
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:100
439
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:179
440
+ msgid "Delete"
441
+ msgstr ""
442
+
443
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:110
444
+ msgid "Click 'Customize' to create a new custom stylesheet."
445
+ msgstr ""
446
+
447
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:126
448
+ msgid "Select a stylesheet from the left to start customizing it."
449
+ msgstr ""
450
+
451
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:135
452
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:188
453
+ #: views/SlideshowPluginPostType/slides.php:58
454
+ #: views/SlideshowPluginPostType/slides.php:143
455
+ #: views/SlideshowPluginPostType/slides.php:195
456
+ #: views/SlideshowPluginPostType/slides.php:263
457
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:80
458
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:12
459
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:98
460
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:47
461
+ #: views/SlideshowPluginWidget/form.php:2
462
+ msgid "Title"
463
+ msgstr ""
464
+
465
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:144
466
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:196
467
+ msgid "Style"
468
+ msgstr ""
469
+
470
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:11
471
+ msgid "Note"
472
+ msgstr ""
473
+
474
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:18
475
+ #, php-format
476
+ msgid ""
477
+ "The settings set on this page apply only to newly created slideshows and "
478
+ "therefore do not alter any existing ones. To adapt a slideshow's settings, "
479
+ "%sclick here.%s"
480
+ msgstr ""
481
+
482
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:29
483
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:15
484
+ msgid "Default Slideshow Settings"
485
+ msgstr ""
486
+
487
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:41
488
+ #: views/SlideshowPluginPostType/settings.php:12
489
+ msgid "settings"
490
+ msgstr ""
491
+
492
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:77
493
+ msgid "Default Slideshow Stylesheet"
494
+ msgstr ""
495
+
496
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:11
497
+ msgid "Add slideshows"
498
+ msgstr ""
499
+
500
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:12
501
+ msgid "Edit slideshows"
502
+ msgstr ""
503
+
504
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:13
505
+ msgid "Delete slideshows"
506
+ msgstr ""
507
+
508
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:20
509
+ msgid "User Capabilities"
510
+ msgstr ""
511
+
512
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:22
513
+ msgid "Select the user roles that will able to perform certain actions."
514
+ msgstr ""
515
+
516
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:38
517
+ msgid "Untitled role"
518
+ msgstr ""
519
+
520
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:65
521
+ msgid "Settings"
522
+ msgstr ""
523
+
524
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:69
525
+ msgid "Stylesheet location"
526
+ msgstr ""
527
+
528
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:72
529
+ msgid "top"
530
+ msgstr ""
531
+
532
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:73
533
+ msgid "bottom"
534
+ msgstr ""
535
+
536
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:16
537
+ msgid "Custom Styles"
538
+ msgstr ""
539
+
540
+ #: views/SlideshowPluginPostType/information.php:1
541
+ msgid ""
542
+ "To use this slideshow in your website either add this piece of shortcode to "
543
+ "your posts or pages"
544
+ msgstr ""
545
+
546
+ #: views/SlideshowPluginPostType/information.php:5
547
+ msgid ""
548
+ "Or add this piece of code to where ever in your website you want to place "
549
+ "the slideshow"
550
+ msgstr ""
551
+
552
+ #: views/SlideshowPluginPostType/information.php:9
553
+ #, php-format
554
+ msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
555
+ msgstr ""
556
+
557
+ #: views/SlideshowPluginPostType/settings.php:26
558
+ #: views/SlideshowPluginPostType/style-settings.php:11
559
+ msgid "Default"
560
+ msgstr ""
561
+
562
+ #: views/SlideshowPluginPostType/slides.php:53
563
+ #: views/SlideshowPluginPostType/slides.php:190
564
+ #: views/SlideshowPluginSlideInserter/insert-text-button.php:1
565
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:6
566
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:41
567
+ msgid "Text slide"
568
+ msgstr ""
569
+
570
+ #: views/SlideshowPluginPostType/slides.php:60
571
+ #: views/SlideshowPluginPostType/slides.php:149
572
+ #: views/SlideshowPluginPostType/slides.php:197
573
+ #: views/SlideshowPluginPostType/slides.php:269
574
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:87
575
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:15
576
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:105
577
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:50
578
+ msgid "Description"
579
+ msgstr ""
580
+
581
+ #: views/SlideshowPluginPostType/slides.php:62
582
+ #: views/SlideshowPluginPostType/slides.php:199
583
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:21
584
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:56
585
+ msgid "Background color"
586
+ msgstr ""
587
+
588
+ #: views/SlideshowPluginPostType/slides.php:67
589
+ #: views/SlideshowPluginPostType/slides.php:154
590
+ #: views/SlideshowPluginPostType/slides.php:204
591
+ #: views/SlideshowPluginPostType/slides.php:274
592
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:94
593
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:28
594
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:112
595
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:64
596
+ msgid "URL"
597
+ msgstr ""
598
+
599
+ #: views/SlideshowPluginPostType/slides.php:69
600
+ #: views/SlideshowPluginPostType/slides.php:156
601
+ #: views/SlideshowPluginPostType/slides.php:206
602
+ #: views/SlideshowPluginPostType/slides.php:276
603
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:97
604
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:31
605
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:115
606
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:67
607
+ msgid "Open URL in"
608
+ msgstr ""
609
+
610
+ #: views/SlideshowPluginPostType/slides.php:71
611
+ #: views/SlideshowPluginPostType/slides.php:158
612
+ #: views/SlideshowPluginPostType/slides.php:208
613
+ #: views/SlideshowPluginPostType/slides.php:278
614
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:99
615
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:33
616
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:117
617
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:69
618
+ msgid "Same window"
619
+ msgstr ""
620
+
621
+ #: views/SlideshowPluginPostType/slides.php:72
622
+ #: views/SlideshowPluginPostType/slides.php:159
623
+ #: views/SlideshowPluginPostType/slides.php:209
624
+ #: views/SlideshowPluginPostType/slides.php:279
625
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:100
626
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:34
627
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:118
628
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:70
629
+ msgid "New window"
630
+ msgstr ""
631
+
632
+ #: views/SlideshowPluginPostType/slides.php:89
633
+ #: views/SlideshowPluginPostType/slides.php:229
634
+ #: views/SlideshowPluginSlideInserter/insert-video-button.php:1
635
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:53
636
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:23
637
+ msgid "Video slide"
638
+ msgstr ""
639
+
640
+ #: views/SlideshowPluginPostType/slides.php:94
641
+ #: views/SlideshowPluginPostType/slides.php:234
642
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:59
643
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:29
644
+ msgid "Youtube Video ID"
645
+ msgstr ""
646
+
647
+ #: views/SlideshowPluginPostType/slides.php:132
648
+ #: views/SlideshowPluginPostType/slides.php:254
649
+ #: views/SlideshowPluginSlideInserter/insert-image-button.php:1
650
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:66
651
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:86
652
+ msgid "Image slide"
653
+ msgstr ""
654
+
655
+ #: views/SlideshowPluginPostType/slides.php:170
656
+ msgid ""
657
+ "An error occurred while loading this slide, and it will not be present in "
658
+ "the slideshow"
659
+ msgstr ""
660
+
661
+ #: views/SlideshowPluginPostType/slides.php:176
662
+ #: views/SlideshowPluginPostType/slides.php:217
663
+ #: views/SlideshowPluginPostType/slides.php:242
664
+ #: views/SlideshowPluginPostType/slides.php:288
665
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:109
666
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:42
667
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:75
668
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:127
669
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:78
670
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:45
671
+ msgid "Delete slide"
672
+ msgstr ""
673
+
674
+ #: views/SlideshowPluginPostType/style-settings.php:22
675
+ #, php-format
676
+ msgid "Custom styles can be created and customized %shere%s."
677
+ msgstr ""
678
+
679
+ #: views/SlideshowPluginPostType/support-plugin.php:3
680
+ msgid "Help to keep this plugin free!"
681
+ msgstr ""
682
+
683
+ #: views/SlideshowPluginPostType/support-plugin.php:6
684
+ msgid ""
685
+ "In order to keep you provided with the newest features, updates and bug "
686
+ "fixes, a lot of motivation is required. Therefore I'm kindly asking you to "
687
+ "consider making a small donation to the plugin or rating it as 5-stars on "
688
+ "Wordpress.org. Thank you in advance!"
689
+ msgstr ""
690
+
691
+ #: views/SlideshowPluginPostType/support-plugin.php:15
692
+ msgid "Rate on Wordpress.org"
693
+ msgstr ""
694
+
695
+ #: views/SlideshowPluginPostType/support-plugin.php:24
696
+ msgid "Frequently Asked Questions (FAQ)"
697
+ msgstr ""
698
+
699
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
700
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
701
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
702
+ msgid "Insert a Slideshow"
703
+ msgstr ""
704
+
705
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
706
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
707
+ msgid "Insert Slideshow"
708
+ msgstr ""
709
+
710
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
711
+ msgid "Select a slideshow"
712
+ msgstr ""
713
+
714
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
715
+ #: views/SlideshowPluginWidget/form.php:12
716
+ msgid "Untitled slideshow"
717
+ msgstr ""
718
+
719
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
720
+ msgid "Cancel"
721
+ msgstr ""
722
+
723
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
724
+ #, php-format
725
+ msgid ""
726
+ "It seems you haven't created any slideshows yet. %sYou can create a "
727
+ "slideshow here!%s"
728
+ msgstr ""
729
+
730
+ #: views/SlideshowPluginSlideInserter/search-popup.php:6
731
+ msgid "Search"
732
+ msgstr ""
733
+
734
+ #: views/SlideshowPluginSlideInserter/search-popup.php:7
735
+ msgid "Search images by title or ID"
736
+ msgstr ""
737
+
738
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:18
739
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:53
740
+ msgid "Text color"
741
+ msgstr ""
742
+
743
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:66
744
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:36
745
+ msgid "Show related videos"
746
+ msgstr ""
747
+
748
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:58
749
+ msgid "(Leave empty for a transparent background)"
750
+ msgstr ""
751
+
752
+ #: views/SlideshowPluginUpload/upload-button.php:1
753
+ msgid "Upload/Manage Images"
754
+ msgstr ""
755
+
756
+ #: views/SlideshowPluginWidget/form.php:9
757
+ msgid "Random Slideshow"
758
+ msgstr ""
759
+
760
+ #~ msgid "Leave any field open to use default value."
761
+ #~ msgstr "Een veld dat open wordt gelaten neemt de standaardwaarde aan."
languages/slideshow-plugin-pl_PL.mo ADDED
Binary file
languages/slideshow-plugin-pl_PL.po ADDED
@@ -0,0 +1,775 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Slideshow Plugin\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-08-21 10:48+0100\n"
6
+ "PO-Revision-Date: 2013-08-21 10:48+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.5.7\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 "Ustawienia ogólne"
22
+
23
+ #: classes/SlideshowPluginGeneralSettings.php:150
24
+ msgid "New"
25
+ msgstr "Nowy"
26
+
27
+ #: classes/SlideshowPluginGeneralSettings.php:151
28
+ msgid "Are you sure you want to delete this custom style?"
29
+ msgstr "Na pewno chcesz skasować własny styl?"
30
+
31
+ #: classes/SlideshowPluginGeneralSettings.php:196
32
+ #: classes/SlideshowPluginInstaller.php:516
33
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:6
34
+ msgid "Light"
35
+ msgstr "Jasny"
36
+
37
+ #: classes/SlideshowPluginGeneralSettings.php:197
38
+ #: classes/SlideshowPluginInstaller.php:516
39
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:7
40
+ msgid "Dark"
41
+ msgstr "Ciemny"
42
+
43
+ #: classes/SlideshowPluginGeneralSettings.php:353
44
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:57
45
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:139
46
+ msgid "Untitled"
47
+ msgstr "Bez nazwy"
48
+
49
+ #: classes/SlideshowPluginInstaller.php:513
50
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:472
51
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:67
52
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:37
53
+ msgid "Yes"
54
+ msgstr "Tak"
55
+
56
+ #: classes/SlideshowPluginInstaller.php:514
57
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:473
58
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:68
59
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:38
60
+ msgid "No"
61
+ msgstr "Nie"
62
+
63
+ #: classes/SlideshowPluginInstaller.php:516
64
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:610
65
+ msgid "The style used for this slideshow"
66
+ msgstr "Styl użyty dla tego pokazu"
67
+
68
+ #: classes/SlideshowPluginInstaller.php:516
69
+ msgid "Custom"
70
+ msgstr "Własny"
71
+
72
+ #: classes/SlideshowPluginInstaller.php:517
73
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:122
74
+ msgid "Custom style editor"
75
+ msgstr "Edytor własnego stylu"
76
+
77
+ #: classes/SlideshowPluginInstaller.php:518
78
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:518
79
+ msgid "Animation used for transition between slides"
80
+ msgstr "Animacja przejść"
81
+
82
+ #: classes/SlideshowPluginInstaller.php:518
83
+ msgid "Slide"
84
+ msgstr "Slajd"
85
+
86
+ #: classes/SlideshowPluginInstaller.php:518
87
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
88
+ msgid "Fade"
89
+ msgstr "Zanikanie"
90
+
91
+ #: classes/SlideshowPluginInstaller.php:518
92
+ #: classes/SlideshowPluginInstaller.php:519
93
+ #: classes/SlideshowPluginInstaller.php:520
94
+ #: classes/SlideshowPluginInstaller.php:521
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 "Animacja"
101
+
102
+ #: classes/SlideshowPluginInstaller.php:519
103
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:519
104
+ msgid "Number of seconds the slide takes to slide in"
105
+ msgstr "Liczba sekund na wejście slajdu"
106
+
107
+ #: classes/SlideshowPluginInstaller.php:520
108
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:520
109
+ msgid "Number of seconds the description takes to slide in"
110
+ msgstr "Liczba sekund na wejście opisu"
111
+
112
+ #: classes/SlideshowPluginInstaller.php:521
113
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:521
114
+ msgid "Seconds between changing slides"
115
+ msgstr "Sekund pomiędzy slajdami"
116
+
117
+ #: classes/SlideshowPluginInstaller.php:522
118
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:522
119
+ msgid "Number of slides to fit into one slide"
120
+ msgstr "Liczba slajdów w jednym slajdzie"
121
+
122
+ #: classes/SlideshowPluginInstaller.php:522
123
+ #: classes/SlideshowPluginInstaller.php:523
124
+ #: classes/SlideshowPluginInstaller.php:524
125
+ #: classes/SlideshowPluginInstaller.php:525
126
+ #: classes/SlideshowPluginInstaller.php:526
127
+ #: classes/SlideshowPluginInstaller.php:527
128
+ #: classes/SlideshowPluginInstaller.php:528
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 "Pokaż"
140
+
141
+ #: classes/SlideshowPluginInstaller.php:523
142
+ msgid "Width of the slideshow, set to parent&#39;s width on 0"
143
+ msgstr "Szerokość slajdu, ustaw parent jeśli 0"
144
+
145
+ #: classes/SlideshowPluginInstaller.php:524
146
+ msgid "Height of the slideshow"
147
+ msgstr "Wysokość pokazu slajdów"
148
+
149
+ #: classes/SlideshowPluginInstaller.php:525
150
+ msgid "Height of the description boxes"
151
+ msgstr "Wysokość pola opisu"
152
+
153
+ #: classes/SlideshowPluginInstaller.php:526
154
+ msgid "Fit image into slide (stretching it)"
155
+ msgstr "Dopasuj obraz do slajdu (rozciągnij)"
156
+
157
+ #: classes/SlideshowPluginInstaller.php:527
158
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:529
159
+ msgid "Show title and description"
160
+ msgstr "Pokaż tytuł i opis"
161
+
162
+ #: classes/SlideshowPluginInstaller.php:528
163
+ msgid "Hide description box, it will pop up when a mouse hovers over the slide"
164
+ msgstr "Schowaj opis - pokaże się po najechaniu myszą nad slajd"
165
+
166
+ #: classes/SlideshowPluginInstaller.php:529
167
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:531
168
+ msgid "Automatically slide to the next slide"
169
+ msgstr "Automatycznie przejdź do następnego slajdu"
170
+
171
+ #: classes/SlideshowPluginInstaller.php:529
172
+ #: classes/SlideshowPluginInstaller.php:530
173
+ #: classes/SlideshowPluginInstaller.php:531
174
+ #: classes/SlideshowPluginInstaller.php:532
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 "Ustawienia"
186
+
187
+ #: classes/SlideshowPluginInstaller.php:530
188
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:532
189
+ msgid "Return to the beginning of the slideshow after last slide"
190
+ msgstr "Powróć do początku po ostatnim slajdzie"
191
+
192
+ #: classes/SlideshowPluginInstaller.php:531
193
+ msgid "Activate buttons (so the user can scroll through the slides)"
194
+ msgstr "Aktywuj przyciski (użytkownik może przewijać slajdy)"
195
+
196
+ #: classes/SlideshowPluginInstaller.php:532
197
+ msgid "Show control panel (play and pause button)"
198
+ msgstr "Pokaż panel sterowania (przyciski Play i Pause)"
199
+
200
+ #: classes/SlideshowPluginPostType.php:38
201
+ msgid "Slideshows"
202
+ msgstr "Pokazy slajdów"
203
+
204
+ #: classes/SlideshowPluginPostType.php:39
205
+ #: views/SlideshowPluginWidget/form.php:7
206
+ msgid "Slideshow"
207
+ msgstr "Pokaz slajdów"
208
+
209
+ #: classes/SlideshowPluginPostType.php:40
210
+ msgid "Add New Slideshow"
211
+ msgstr "Dodaj nowy pokaz slajdów"
212
+
213
+ #: classes/SlideshowPluginPostType.php:41
214
+ msgid "Edit slideshow"
215
+ msgstr "Edytuj pokaz slajdów"
216
+
217
+ #: classes/SlideshowPluginPostType.php:42
218
+ msgid "New slideshow"
219
+ msgstr "Nowy pokaz slajdów"
220
+
221
+ #: classes/SlideshowPluginPostType.php:43
222
+ msgid "View slideshow"
223
+ msgstr "Zobacz pokaz slajdów"
224
+
225
+ #: classes/SlideshowPluginPostType.php:44
226
+ msgid "Search slideshows"
227
+ msgstr "Szukaj pokazu slajdów"
228
+
229
+ #: classes/SlideshowPluginPostType.php:45
230
+ #: classes/SlideshowPluginPostType.php:46
231
+ msgid "No slideshows found"
232
+ msgstr "Nie znaleziono pokazu slajdów"
233
+
234
+ #: classes/SlideshowPluginPostType.php:91
235
+ msgid "Information"
236
+ msgstr "Informacja"
237
+
238
+ #: classes/SlideshowPluginPostType.php:100
239
+ msgid "Slides List"
240
+ msgstr "Lista slajdów"
241
+
242
+ #: classes/SlideshowPluginPostType.php:109
243
+ msgid "Slideshow Style"
244
+ msgstr "Styl pokazu slajdów"
245
+
246
+ #: classes/SlideshowPluginPostType.php:118
247
+ msgid "Slideshow Settings"
248
+ msgstr "Ustawienia pokazu slajdów"
249
+
250
+ #: classes/SlideshowPluginPostType.php:174
251
+ #: classes/SlideshowPluginSlideInserter.php:222
252
+ #: views/SlideshowPluginPostType/slides.php:2
253
+ msgid "Insert"
254
+ msgstr "Wstaw"
255
+
256
+ #: classes/SlideshowPluginPostType.php:183
257
+ #: views/SlideshowPluginPostType/slides.php:9
258
+ msgid "Add slides to this slideshow by using one of the buttons above."
259
+ msgstr "Dodaj slajdy do tego pokazu używając przycisków powyżej."
260
+
261
+ #: classes/SlideshowPluginShortcode.php:148
262
+ msgid "No slideshow selected."
263
+ msgstr "Nie wybrano pokazu slajdów."
264
+
265
+ #: classes/SlideshowPluginSlideInserter.php:178
266
+ msgid "More results loaded"
267
+ msgstr "Załadowano więcej wyników"
268
+
269
+ #: classes/SlideshowPluginSlideInserter.php:233
270
+ msgid "Load more results"
271
+ msgstr "Załaduj więcej wyników"
272
+
273
+ #: classes/SlideshowPluginSlideInserter.php:244
274
+ msgid "No images were found, click here to upload some."
275
+ msgstr "Nie znaleziono obrazów, kliknij aby dodać."
276
+
277
+ #: classes/SlideshowPluginSlideInserter.php:316
278
+ msgid "Are you sure you want to delete this slide?"
279
+ msgstr "Na pewno chcesz skasować slajd?"
280
+
281
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:523
282
+ msgid "Maximum width. When maximum width is 0, maximum width is ignored"
283
+ msgstr ""
284
+ "Maksymalna szerokość. Jeśli maks. szerokość = 0, maks. wysokość jest "
285
+ "ignorowana"
286
+
287
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
288
+ msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
289
+ msgstr "http://pl.wikipedia.org/wiki/Format_obrazu"
290
+
291
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
292
+ msgid "More info"
293
+ msgstr "Więcej informacji"
294
+
295
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
296
+ #, php-format
297
+ msgid ""
298
+ "Proportional relationship%s between slideshow's width and height (width:"
299
+ "height)"
300
+ msgstr ""
301
+ "Relacja proporcjonalna pomiędzy%s szer. i wys. pokazu (szerokość:wysokość)"
302
+
303
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:525
304
+ msgid "Slideshow's height"
305
+ msgstr "Wysokość pokazu slajdów"
306
+
307
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:526
308
+ msgid "Fit image into slide (Stretch image)"
309
+ msgstr "Dopasuj obraz do slajdu (Rozciągnij)"
310
+
311
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:527
312
+ msgid "Shrink slideshow's height when width shrinks"
313
+ msgstr "Zmniejsz wysokość pokazu jeśli szerokość się zmniejszy"
314
+
315
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:528
316
+ msgid ""
317
+ "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
318
+ msgstr ""
319
+ "Ustaw responsywność (Zmniejsza szer. pokazu jeśli zmniejszy się szer. strony)"
320
+
321
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:530
322
+ msgid "Hide description box, pop up when mouse hovers over"
323
+ msgstr "Ukryj pole opisu, pokaż po najechaniu myszą"
324
+
325
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:533
326
+ msgid "Pause slideshow when mouse hovers over"
327
+ msgstr "Zatrzymaj pokaz po najechaniu myszą"
328
+
329
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:534
330
+ msgid "Activate navigation buttons"
331
+ msgstr "Włącz przyciski nawigacji"
332
+
333
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:535
334
+ msgid "Hide navigation buttons, show when mouse hovers over"
335
+ msgstr "Ukryj przyciski nawigacji, pokaż po najechaniu myszą"
336
+
337
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:536
338
+ msgid "Activate pagination"
339
+ msgstr "Włącz paginację"
340
+
341
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:537
342
+ msgid "Hide pagination, show when mouse hovers over"
343
+ msgstr "Ukryj paginację, pokaż po najechaniu myszą"
344
+
345
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:538
346
+ msgid "Activate control panel (play and pause button)"
347
+ msgstr "Aktywuj panel kontrolny (przyciski Play i Pause)"
348
+
349
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:539
350
+ msgid "Hide control panel, show when mouse hovers over"
351
+ msgstr "Ukryj panel kontrolny, pokaż po najechaniu myszą"
352
+
353
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:540
354
+ msgid "Wait until the next slide has loaded before showing it"
355
+ msgstr ""
356
+
357
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:541
358
+ msgid "Show a loading icon until the first slide appears"
359
+ msgstr ""
360
+
361
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:542
362
+ msgid "Randomize slides"
363
+ msgstr "Dowolna kolejność slajdów"
364
+
365
+ # Polish translation by VHR
366
+ # Tłumaczenie VHR
367
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:543
368
+ #, php-format
369
+ msgid "Avoid content filter (disable if '%s' is shown)"
370
+ msgstr "Pomiń filtr zawartości (wyłącz jeśli pokaże '%s')"
371
+
372
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
373
+ msgid "Slide Left"
374
+ msgstr "Slajd w lewo"
375
+
376
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
377
+ msgid "Slide Right"
378
+ msgstr "Slajd w prawo"
379
+
380
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
381
+ msgid "Slide Up"
382
+ msgstr "Slajd do góry"
383
+
384
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
385
+ msgid "Slide Down"
386
+ msgstr "Slajd w dół"
387
+
388
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
389
+ msgid "Direct Fade"
390
+ msgstr "Bezpośrednie zanikanie"
391
+
392
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
393
+ msgid "Random Animation"
394
+ msgstr "Losowa animacja"
395
+
396
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:569
397
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:570
398
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:571
399
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:572
400
+ msgid "Miscellaneous"
401
+ msgstr "Różne"
402
+
403
+ #: classes/SlideshowPluginWidget.php:23
404
+ msgid "Enables you to show your slideshows in the widget area of your website."
405
+ msgstr "Włącza Twój pokaz w polu widżetów"
406
+
407
+ #: classes/SlideshowPluginWidget.php:29
408
+ msgid "Slideshow Widget"
409
+ msgstr "Widżet pokaz slajdów"
410
+
411
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:46
412
+ msgid "Default stylesheets"
413
+ msgstr "Standardowe arkusze style"
414
+
415
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:60
416
+ msgid "Create a new custom style from this style"
417
+ msgstr "Utwórz nowy styl z tego stylu"
418
+
419
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:62
420
+ msgid "Customize"
421
+ msgstr "Ustaw dowolnie"
422
+
423
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:76
424
+ msgid "Custom stylesheets"
425
+ msgstr "Własne arkusze stylów"
426
+
427
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:89
428
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:168
429
+ msgid "Edit this style"
430
+ msgstr "Edytuj ten styl"
431
+
432
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:91
433
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:170
434
+ #: views/SlideshowPluginPostType/slides.php:137
435
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:72
436
+ msgid "Edit"
437
+ msgstr "Edytuj"
438
+
439
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:98
440
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:177
441
+ msgid "Delete this style"
442
+ msgstr "Skasuj ten styl"
443
+
444
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:100
445
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:179
446
+ msgid "Delete"
447
+ msgstr "Skasuj"
448
+
449
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:110
450
+ msgid "Click 'Customize' to create a new custom stylesheet."
451
+ msgstr "Kliknij 'Ustaw dowolnie' by utwożyć nowy własny arkusz stylów"
452
+
453
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:126
454
+ msgid "Select a stylesheet from the left to start customizing it."
455
+ msgstr "Wybierz arkusz stylów z lewej do własnych ustawień"
456
+
457
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:135
458
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:188
459
+ #: views/SlideshowPluginPostType/slides.php:58
460
+ #: views/SlideshowPluginPostType/slides.php:143
461
+ #: views/SlideshowPluginPostType/slides.php:195
462
+ #: views/SlideshowPluginPostType/slides.php:263
463
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:80
464
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:12
465
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:98
466
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:47
467
+ #: views/SlideshowPluginWidget/form.php:2
468
+ msgid "Title"
469
+ msgstr "Tytuł"
470
+
471
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:144
472
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:196
473
+ msgid "Style"
474
+ msgstr "Styl"
475
+
476
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:11
477
+ msgid "Note"
478
+ msgstr "Notka"
479
+
480
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:18
481
+ #, php-format
482
+ msgid ""
483
+ "The settings set on this page apply only to newly created slideshows and "
484
+ "therefore do not alter any existing ones. To adapt a slideshow's settings, "
485
+ "%sclick here.%s"
486
+ msgstr ""
487
+ "Ustawienia z tej strony dodadzą się tylko do nowych pokazów, nie zmieniając "
488
+ "istniejących. Aby zmienić ustawienia %skliknij%s"
489
+
490
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:29
491
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:15
492
+ msgid "Default Slideshow Settings"
493
+ msgstr "Standardowe ustawienia pokazu"
494
+
495
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:41
496
+ #: views/SlideshowPluginPostType/settings.php:12
497
+ msgid "settings"
498
+ msgstr "ustawienia"
499
+
500
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:77
501
+ msgid "Default Slideshow Stylesheet"
502
+ msgstr "Standardowy arkusz stylów pokazu"
503
+
504
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:11
505
+ msgid "Add slideshows"
506
+ msgstr "Dodaj pokazy slajdów"
507
+
508
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:12
509
+ msgid "Edit slideshows"
510
+ msgstr "Edytuj pokazy slajdów"
511
+
512
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:13
513
+ msgid "Delete slideshows"
514
+ msgstr "Skasuj pokazy slajdów"
515
+
516
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:20
517
+ msgid "User Capabilities"
518
+ msgstr "Możliwości edycji przez użytkownika"
519
+
520
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:22
521
+ msgid "Select the user roles that will able to perform certain actions."
522
+ msgstr "Ustaw rolę użytkownika w zmienianiu ustawień"
523
+
524
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:38
525
+ msgid "Untitled role"
526
+ msgstr "Rola użytkownika bez nazwy"
527
+
528
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:65
529
+ msgid "Settings"
530
+ msgstr "ustawienia"
531
+
532
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:69
533
+ msgid "Stylesheet location"
534
+ msgstr ""
535
+
536
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:72
537
+ msgid "top"
538
+ msgstr ""
539
+
540
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:73
541
+ msgid "bottom"
542
+ msgstr ""
543
+
544
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:16
545
+ msgid "Custom Styles"
546
+ msgstr "Własne style"
547
+
548
+ #: views/SlideshowPluginPostType/information.php:1
549
+ msgid ""
550
+ "To use this slideshow in your website either add this piece of shortcode to "
551
+ "your posts or pages"
552
+ msgstr ""
553
+ "Dodaj ten shortcode do postu lub strony aby użyć pokazu na Twojej stronie"
554
+
555
+ #: views/SlideshowPluginPostType/information.php:5
556
+ msgid ""
557
+ "Or add this piece of code to where ever in your website you want to place "
558
+ "the slideshow"
559
+ msgstr "Albo dodaj ten kod w odpowiednim miejscu na swojej stronie"
560
+
561
+ #: views/SlideshowPluginPostType/information.php:9
562
+ #, php-format
563
+ msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
564
+ msgstr "Lub idź do %swidgets page%s i zobacz pokazj jako widżet"
565
+
566
+ #: views/SlideshowPluginPostType/settings.php:26
567
+ #: views/SlideshowPluginPostType/style-settings.php:11
568
+ msgid "Default"
569
+ msgstr "Standardowy"
570
+
571
+ #: views/SlideshowPluginPostType/slides.php:53
572
+ #: views/SlideshowPluginPostType/slides.php:190
573
+ #: views/SlideshowPluginSlideInserter/insert-text-button.php:1
574
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:6
575
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:41
576
+ msgid "Text slide"
577
+ msgstr "Ruch tekstu"
578
+
579
+ #: views/SlideshowPluginPostType/slides.php:60
580
+ #: views/SlideshowPluginPostType/slides.php:149
581
+ #: views/SlideshowPluginPostType/slides.php:197
582
+ #: views/SlideshowPluginPostType/slides.php:269
583
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:87
584
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:15
585
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:105
586
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:50
587
+ msgid "Description"
588
+ msgstr "Opis"
589
+
590
+ #: views/SlideshowPluginPostType/slides.php:62
591
+ #: views/SlideshowPluginPostType/slides.php:199
592
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:21
593
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:56
594
+ msgid "Background color"
595
+ msgstr "Kolor tła"
596
+
597
+ #: views/SlideshowPluginPostType/slides.php:67
598
+ #: views/SlideshowPluginPostType/slides.php:154
599
+ #: views/SlideshowPluginPostType/slides.php:204
600
+ #: views/SlideshowPluginPostType/slides.php:274
601
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:94
602
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:28
603
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:112
604
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:64
605
+ msgid "URL"
606
+ msgstr "URL"
607
+
608
+ #: views/SlideshowPluginPostType/slides.php:69
609
+ #: views/SlideshowPluginPostType/slides.php:156
610
+ #: views/SlideshowPluginPostType/slides.php:206
611
+ #: views/SlideshowPluginPostType/slides.php:276
612
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:97
613
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:31
614
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:115
615
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:67
616
+ msgid "Open URL in"
617
+ msgstr "Otwórz URL w"
618
+
619
+ #: views/SlideshowPluginPostType/slides.php:71
620
+ #: views/SlideshowPluginPostType/slides.php:158
621
+ #: views/SlideshowPluginPostType/slides.php:208
622
+ #: views/SlideshowPluginPostType/slides.php:278
623
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:99
624
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:33
625
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:117
626
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:69
627
+ msgid "Same window"
628
+ msgstr "Tym samym oknie"
629
+
630
+ #: views/SlideshowPluginPostType/slides.php:72
631
+ #: views/SlideshowPluginPostType/slides.php:159
632
+ #: views/SlideshowPluginPostType/slides.php:209
633
+ #: views/SlideshowPluginPostType/slides.php:279
634
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:100
635
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:34
636
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:118
637
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:70
638
+ msgid "New window"
639
+ msgstr "Nowym oknie"
640
+
641
+ #: views/SlideshowPluginPostType/slides.php:89
642
+ #: views/SlideshowPluginPostType/slides.php:229
643
+ #: views/SlideshowPluginSlideInserter/insert-video-button.php:1
644
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:53
645
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:23
646
+ msgid "Video slide"
647
+ msgstr "Slajd wideo"
648
+
649
+ #: views/SlideshowPluginPostType/slides.php:94
650
+ #: views/SlideshowPluginPostType/slides.php:234
651
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:59
652
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:29
653
+ msgid "Youtube Video ID"
654
+ msgstr "Youtube Video ID"
655
+
656
+ #: views/SlideshowPluginPostType/slides.php:132
657
+ #: views/SlideshowPluginPostType/slides.php:254
658
+ #: views/SlideshowPluginSlideInserter/insert-image-button.php:1
659
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:66
660
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:86
661
+ msgid "Image slide"
662
+ msgstr "Slajd obrazu"
663
+
664
+ #: views/SlideshowPluginPostType/slides.php:170
665
+ msgid ""
666
+ "An error occurred while loading this slide, and it will not be present in "
667
+ "the slideshow"
668
+ msgstr "Wystąpił błąd przy ładowaniu slajdu i nie będzie on obecny w pokazie"
669
+
670
+ #: views/SlideshowPluginPostType/slides.php:176
671
+ #: views/SlideshowPluginPostType/slides.php:217
672
+ #: views/SlideshowPluginPostType/slides.php:242
673
+ #: views/SlideshowPluginPostType/slides.php:288
674
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:109
675
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:42
676
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:75
677
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:127
678
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:78
679
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:45
680
+ msgid "Delete slide"
681
+ msgstr "Skasuj slajd"
682
+
683
+ #: views/SlideshowPluginPostType/style-settings.php:22
684
+ #, php-format
685
+ msgid "Custom styles can be created and customized %shere%s."
686
+ msgstr "Własne style możesz tworzyć i edytować %sTu%s"
687
+
688
+ #: views/SlideshowPluginPostType/support-plugin.php:3
689
+ msgid "Help to keep this plugin free!"
690
+ msgstr "Pomóż aby ta wtyczka była wciąż darmowa!"
691
+
692
+ #: views/SlideshowPluginPostType/support-plugin.php:6
693
+ msgid ""
694
+ "In order to keep you provided with the newest features, updates and bug "
695
+ "fixes, a lot of motivation is required. Therefore I'm kindly asking you to "
696
+ "consider making a small donation to the plugin or rating it as 5-stars on "
697
+ "Wordpress.org. Thank you in advance!"
698
+ msgstr ""
699
+ "Abu móc rozwijać program i utrzymać forum potrzeba wiele motywacji. "
700
+ "Niniejszym bardzo proszę o rozpatrzenie niewielkiego datku lub ocenę 5 "
701
+ "gwiazdek na Wordpress.org. Z góry dziękuję!"
702
+
703
+ #: views/SlideshowPluginPostType/support-plugin.php:15
704
+ msgid "Rate on Wordpress.org"
705
+ msgstr "Oceń na Wordpress.org"
706
+
707
+ #: views/SlideshowPluginPostType/support-plugin.php:24
708
+ msgid "Frequently Asked Questions (FAQ)"
709
+ msgstr "Pytania i odpowiedzi (FAQ)"
710
+
711
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
712
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
713
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
714
+ msgid "Insert a Slideshow"
715
+ msgstr "Wstaw pokaz slajdów"
716
+
717
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
718
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
719
+ msgid "Insert Slideshow"
720
+ msgstr "Wstaw pokaz"
721
+
722
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
723
+ msgid "Select a slideshow"
724
+ msgstr "Wybierz pokaz slajdów"
725
+
726
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
727
+ #: views/SlideshowPluginWidget/form.php:12
728
+ msgid "Untitled slideshow"
729
+ msgstr "Pokaz bez nazwy"
730
+
731
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
732
+ msgid "Cancel"
733
+ msgstr "Odrzuć"
734
+
735
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
736
+ #, php-format
737
+ msgid ""
738
+ "It seems you haven't created any slideshows yet. %sYou can create a "
739
+ "slideshow here!%s"
740
+ msgstr ""
741
+ "Wygląda na to, że nie stworzyłeś jeszcze pokazu slajdów. Możesz to zrobić "
742
+ "%sTutaj%s"
743
+
744
+ #: views/SlideshowPluginSlideInserter/search-popup.php:6
745
+ msgid "Search"
746
+ msgstr "Szukaj"
747
+
748
+ #: views/SlideshowPluginSlideInserter/search-popup.php:7
749
+ msgid "Search images by title or ID"
750
+ msgstr "Szukaj obrazów po tytule lub ID"
751
+
752
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:18
753
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:53
754
+ msgid "Text color"
755
+ msgstr "Kolor tekstu"
756
+
757
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:66
758
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:36
759
+ msgid "Show related videos"
760
+ msgstr ""
761
+
762
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:58
763
+ msgid "(Leave empty for a transparent background)"
764
+ msgstr "(pozostaw puste dla przezroczystego tła)"
765
+
766
+ #: views/SlideshowPluginUpload/upload-button.php:1
767
+ msgid "Upload/Manage Images"
768
+ msgstr "Załaduj/Zarządzaj obrazami "
769
+
770
+ #: views/SlideshowPluginWidget/form.php:9
771
+ msgid "Random Slideshow"
772
+ msgstr "Losowy pokaz slajdów"
773
+
774
+ #~ msgid "Leave any field open to use default value."
775
+ #~ msgstr "Een veld dat open wordt gelaten neemt de standaardwaarde aan."
languages/slideshow-plugin-pt_PT.mo ADDED
Binary file
languages/slideshow-plugin-pt_PT.po ADDED
@@ -0,0 +1,791 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Slideshow Plugin\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-08-21 10:49+0100\n"
6
+ "PO-Revision-Date: 2013-08-21 10:49+0100\n"
7
+ "Last-Translator: Filipe Catraia <fcatraia@sapo.pt>\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.5.7\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 "Preferências Gerais"
22
+
23
+ #: classes/SlideshowPluginGeneralSettings.php:150
24
+ msgid "New"
25
+ msgstr "Novo"
26
+
27
+ #: classes/SlideshowPluginGeneralSettings.php:151
28
+ msgid "Are you sure you want to delete this custom style?"
29
+ msgstr "Tem a certeza de que quer apagar este estilo customizado?"
30
+
31
+ #: classes/SlideshowPluginGeneralSettings.php:196
32
+ #: classes/SlideshowPluginInstaller.php:516
33
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:6
34
+ msgid "Light"
35
+ msgstr "Claro"
36
+
37
+ #: classes/SlideshowPluginGeneralSettings.php:197
38
+ #: classes/SlideshowPluginInstaller.php:516
39
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:7
40
+ msgid "Dark"
41
+ msgstr "Escuro"
42
+
43
+ #: classes/SlideshowPluginGeneralSettings.php:353
44
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:57
45
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:139
46
+ msgid "Untitled"
47
+ msgstr "Sem título"
48
+
49
+ #: classes/SlideshowPluginInstaller.php:513
50
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:472
51
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:67
52
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:37
53
+ msgid "Yes"
54
+ msgstr "Sim"
55
+
56
+ #: classes/SlideshowPluginInstaller.php:514
57
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:473
58
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:68
59
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:38
60
+ msgid "No"
61
+ msgstr "Não"
62
+
63
+ #: classes/SlideshowPluginInstaller.php:516
64
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:610
65
+ msgid "The style used for this slideshow"
66
+ msgstr "O estilo usado para este slideshow"
67
+
68
+ #: classes/SlideshowPluginInstaller.php:516
69
+ msgid "Custom"
70
+ msgstr "Personalizado"
71
+
72
+ #: classes/SlideshowPluginInstaller.php:517
73
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:122
74
+ msgid "Custom style editor"
75
+ msgstr "Editor de estilos personalizados"
76
+
77
+ #: classes/SlideshowPluginInstaller.php:518
78
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:518
79
+ msgid "Animation used for transition between slides"
80
+ msgstr "Animação usada para transição entre slides"
81
+
82
+ #: classes/SlideshowPluginInstaller.php:518
83
+ msgid "Slide"
84
+ msgstr "Slide"
85
+
86
+ #: classes/SlideshowPluginInstaller.php:518
87
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
88
+ msgid "Fade"
89
+ msgstr "Desvanecer"
90
+
91
+ #: classes/SlideshowPluginInstaller.php:518
92
+ #: classes/SlideshowPluginInstaller.php:519
93
+ #: classes/SlideshowPluginInstaller.php:520
94
+ #: classes/SlideshowPluginInstaller.php:521
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 "Animação"
101
+
102
+ #: classes/SlideshowPluginInstaller.php:519
103
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:519
104
+ msgid "Number of seconds the slide takes to slide in"
105
+ msgstr "Número de segundos que o slide demora a entrar"
106
+
107
+ #: classes/SlideshowPluginInstaller.php:520
108
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:520
109
+ msgid "Number of seconds the description takes to slide in"
110
+ msgstr "Número de segundos que a descrição demora a entrar"
111
+
112
+ #: classes/SlideshowPluginInstaller.php:521
113
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:521
114
+ msgid "Seconds between changing slides"
115
+ msgstr "Segundos entre cada troca de slide"
116
+
117
+ #: classes/SlideshowPluginInstaller.php:522
118
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:522
119
+ msgid "Number of slides to fit into one slide"
120
+ msgstr "Número de slides a encaixar num deslize"
121
+
122
+ #: classes/SlideshowPluginInstaller.php:522
123
+ #: classes/SlideshowPluginInstaller.php:523
124
+ #: classes/SlideshowPluginInstaller.php:524
125
+ #: classes/SlideshowPluginInstaller.php:525
126
+ #: classes/SlideshowPluginInstaller.php:526
127
+ #: classes/SlideshowPluginInstaller.php:527
128
+ #: classes/SlideshowPluginInstaller.php:528
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 "Mostrar"
140
+
141
+ #: classes/SlideshowPluginInstaller.php:523
142
+ msgid "Width of the slideshow, set to parent&#39;s width on 0"
143
+ msgstr ""
144
+ "Largura do slideshow, definida para a largura do seu parente caso o valor "
145
+ "seja 0"
146
+
147
+ #: classes/SlideshowPluginInstaller.php:524
148
+ msgid "Height of the slideshow"
149
+ msgstr "Altura do slideshow"
150
+
151
+ #: classes/SlideshowPluginInstaller.php:525
152
+ msgid "Height of the description boxes"
153
+ msgstr "Altura das caixas de descrição"
154
+
155
+ #: classes/SlideshowPluginInstaller.php:526
156
+ msgid "Fit image into slide (stretching it)"
157
+ msgstr "Ajustar a imagem ao slide (esticando-a)"
158
+
159
+ #: classes/SlideshowPluginInstaller.php:527
160
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:529
161
+ msgid "Show title and description"
162
+ msgstr "Mostrar título e descrição"
163
+
164
+ #: classes/SlideshowPluginInstaller.php:528
165
+ msgid "Hide description box, it will pop up when a mouse hovers over the slide"
166
+ msgstr ""
167
+ "Esconder a caixa de descrição, que aparecerá quando o rato paira sobre o "
168
+ "slideshow"
169
+
170
+ #: classes/SlideshowPluginInstaller.php:529
171
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:531
172
+ msgid "Automatically slide to the next slide"
173
+ msgstr "Deslizar automaticamente para o próximo slide"
174
+
175
+ #: classes/SlideshowPluginInstaller.php:529
176
+ #: classes/SlideshowPluginInstaller.php:530
177
+ #: classes/SlideshowPluginInstaller.php:531
178
+ #: classes/SlideshowPluginInstaller.php:532
179
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:560
180
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:561
181
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:562
182
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:563
183
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:564
184
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:565
185
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:566
186
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:567
187
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:568
188
+ msgid "Control"
189
+ msgstr "Controlo"
190
+
191
+ #: classes/SlideshowPluginInstaller.php:530
192
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:532
193
+ msgid "Return to the beginning of the slideshow after last slide"
194
+ msgstr "Voltar ao início do slideshow após o último slide"
195
+
196
+ #: classes/SlideshowPluginInstaller.php:531
197
+ msgid "Activate buttons (so the user can scroll through the slides)"
198
+ msgstr "Activar butões (para que o utilizador possa saltar entre slides)"
199
+
200
+ #: classes/SlideshowPluginInstaller.php:532
201
+ msgid "Show control panel (play and pause button)"
202
+ msgstr "Mostrar o painel de controlo (botões de reprodução e pausa)"
203
+
204
+ #: classes/SlideshowPluginPostType.php:38
205
+ msgid "Slideshows"
206
+ msgstr "Slideshows"
207
+
208
+ #: classes/SlideshowPluginPostType.php:39
209
+ #: views/SlideshowPluginWidget/form.php:7
210
+ msgid "Slideshow"
211
+ msgstr "Slideshow"
212
+
213
+ #: classes/SlideshowPluginPostType.php:40
214
+ msgid "Add New Slideshow"
215
+ msgstr "Adicionar um novo slideshow"
216
+
217
+ #: classes/SlideshowPluginPostType.php:41
218
+ msgid "Edit slideshow"
219
+ msgstr "Editar slideshow"
220
+
221
+ #: classes/SlideshowPluginPostType.php:42
222
+ msgid "New slideshow"
223
+ msgstr "Novo slideshow"
224
+
225
+ #: classes/SlideshowPluginPostType.php:43
226
+ msgid "View slideshow"
227
+ msgstr "Ver slideshow"
228
+
229
+ #: classes/SlideshowPluginPostType.php:44
230
+ msgid "Search slideshows"
231
+ msgstr "Procurar slideshows"
232
+
233
+ #: classes/SlideshowPluginPostType.php:45
234
+ #: classes/SlideshowPluginPostType.php:46
235
+ msgid "No slideshows found"
236
+ msgstr "Nenhum slideshow encontrado"
237
+
238
+ #: classes/SlideshowPluginPostType.php:91
239
+ msgid "Information"
240
+ msgstr "Informação"
241
+
242
+ #: classes/SlideshowPluginPostType.php:100
243
+ msgid "Slides List"
244
+ msgstr "Lista de slides"
245
+
246
+ #: classes/SlideshowPluginPostType.php:109
247
+ msgid "Slideshow Style"
248
+ msgstr "Estilo do slideshow"
249
+
250
+ #: classes/SlideshowPluginPostType.php:118
251
+ msgid "Slideshow Settings"
252
+ msgstr "Definições do slideshow"
253
+
254
+ #: classes/SlideshowPluginPostType.php:174
255
+ #: classes/SlideshowPluginSlideInserter.php:222
256
+ #: views/SlideshowPluginPostType/slides.php:2
257
+ msgid "Insert"
258
+ msgstr "Inserir"
259
+
260
+ #: classes/SlideshowPluginPostType.php:183
261
+ #: views/SlideshowPluginPostType/slides.php:9
262
+ msgid "Add slides to this slideshow by using one of the buttons above."
263
+ msgstr "Adicione slides a este slideshow usando um dos botões abaixo."
264
+
265
+ #: classes/SlideshowPluginShortcode.php:148
266
+ msgid "No slideshow selected."
267
+ msgstr "Nenhum slideshow seleccionado."
268
+
269
+ #: classes/SlideshowPluginSlideInserter.php:178
270
+ msgid "More results loaded"
271
+ msgstr "Mais resultados carregados"
272
+
273
+ #: classes/SlideshowPluginSlideInserter.php:233
274
+ msgid "Load more results"
275
+ msgstr "Carregar mais resultados"
276
+
277
+ #: classes/SlideshowPluginSlideInserter.php:244
278
+ msgid "No images were found, click here to upload some."
279
+ msgstr "Nenhuma imagem encontrada, clique aqui para fazer upload de imagens."
280
+
281
+ #: classes/SlideshowPluginSlideInserter.php:316
282
+ msgid "Are you sure you want to delete this slide?"
283
+ msgstr "Tem a certeza de que quer apagar este slide?"
284
+
285
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:523
286
+ msgid "Maximum width. When maximum width is 0, maximum width is ignored"
287
+ msgstr "Largura máxima. Quando 0, a largura máxima é ignorada"
288
+
289
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
290
+ msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
291
+ msgstr "http://pt.wikipedia.org/wiki/Propor%C3%A7%C3%A3o_de_tela"
292
+
293
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
294
+ msgid "More info"
295
+ msgstr "Mais informação"
296
+
297
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
298
+ #, php-format
299
+ msgid ""
300
+ "Proportional relationship%s between slideshow's width and height (width:"
301
+ "height)"
302
+ msgstr ""
303
+ "Relação proporcional%s entre a altura e largura do slideshow (largura:altura)"
304
+
305
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:525
306
+ msgid "Slideshow's height"
307
+ msgstr "Altura do slideshow"
308
+
309
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:526
310
+ msgid "Fit image into slide (Stretch image)"
311
+ msgstr "Ajustar a imagem ao slide (esticar a imagem)"
312
+
313
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:527
314
+ msgid "Shrink slideshow's height when width shrinks"
315
+ msgstr "Reduzir a altura do slideshow quando a largura diminui"
316
+
317
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:528
318
+ msgid ""
319
+ "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
320
+ msgstr ""
321
+ "Permitir responsividade (diminuir a largura do slideshow quando a largura da "
322
+ "página diminui)"
323
+
324
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:530
325
+ msgid "Hide description box, pop up when mouse hovers over"
326
+ msgstr ""
327
+ "Esconder a caixa de descrição, mostrá-la quando o rato paira sobre o "
328
+ "slideshow"
329
+
330
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:533
331
+ msgid "Pause slideshow when mouse hovers over"
332
+ msgstr "Pausar o slideshow quando o rato está sobre o mesmo"
333
+
334
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:534
335
+ msgid "Activate navigation buttons"
336
+ msgstr "Activar botões de navegação"
337
+
338
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:535
339
+ msgid "Hide navigation buttons, show when mouse hovers over"
340
+ msgstr ""
341
+ "Esconder os botões de navegação, mostrar quando o rato está sobre os mesmos"
342
+
343
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:536
344
+ msgid "Activate pagination"
345
+ msgstr "Activar paginação"
346
+
347
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:537
348
+ msgid "Hide pagination, show when mouse hovers over"
349
+ msgstr "Esconder paginação, mostrar quando o rato paira sobre o slideshow"
350
+
351
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:538
352
+ msgid "Activate control panel (play and pause button)"
353
+ msgstr "Activar painel de controlo (botão de reprodução e pausa)"
354
+
355
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:539
356
+ msgid "Hide control panel, show when mouse hovers over"
357
+ msgstr ""
358
+ "Esconder o painel de controlo, mostrar quando o rato paira sobre o slideshow"
359
+
360
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:540
361
+ msgid "Wait until the next slide has loaded before showing it"
362
+ msgstr ""
363
+
364
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:541
365
+ msgid "Show a loading icon until the first slide appears"
366
+ msgstr ""
367
+
368
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:542
369
+ msgid "Randomize slides"
370
+ msgstr "Randomizar estilos"
371
+
372
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:543
373
+ #, php-format
374
+ msgid "Avoid content filter (disable if '%s' is shown)"
375
+ msgstr "Evitar filtro de conteúdo (desactivar se '%s' for mostrado)"
376
+
377
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
378
+ msgid "Slide Left"
379
+ msgstr "Deslizar para a esquerda"
380
+
381
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
382
+ msgid "Slide Right"
383
+ msgstr "Deslizar para a direita"
384
+
385
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
386
+ msgid "Slide Up"
387
+ msgstr "Deslizar para cima"
388
+
389
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
390
+ msgid "Slide Down"
391
+ msgstr "Deslizar para baixo"
392
+
393
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
394
+ msgid "Direct Fade"
395
+ msgstr "Desvanecimento directo"
396
+
397
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
398
+ msgid "Random Animation"
399
+ msgstr "Animação aleatória"
400
+
401
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:569
402
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:570
403
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:571
404
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:572
405
+ msgid "Miscellaneous"
406
+ msgstr "Diversas"
407
+
408
+ #: classes/SlideshowPluginWidget.php:23
409
+ msgid "Enables you to show your slideshows in the widget area of your website."
410
+ msgstr "Permite-lhe mostrar os seus slideshows na área de widgets do seu site."
411
+
412
+ #: classes/SlideshowPluginWidget.php:29
413
+ msgid "Slideshow Widget"
414
+ msgstr "Slideshow Widget"
415
+
416
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:46
417
+ msgid "Default stylesheets"
418
+ msgstr "Folhas de estilo padrão"
419
+
420
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:60
421
+ msgid "Create a new custom style from this style"
422
+ msgstr "Criar um estilo personalizado novo a partir deste estilo"
423
+
424
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:62
425
+ msgid "Customize"
426
+ msgstr "Personalizar"
427
+
428
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:76
429
+ msgid "Custom stylesheets"
430
+ msgstr "Folhas de estilo personalizadas"
431
+
432
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:89
433
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:168
434
+ msgid "Edit this style"
435
+ msgstr "Editar este estilo"
436
+
437
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:91
438
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:170
439
+ #: views/SlideshowPluginPostType/slides.php:137
440
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:72
441
+ msgid "Edit"
442
+ msgstr "Editar"
443
+
444
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:98
445
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:177
446
+ msgid "Delete this style"
447
+ msgstr "Apagar este estilo"
448
+
449
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:100
450
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:179
451
+ msgid "Delete"
452
+ msgstr "Apagar"
453
+
454
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:110
455
+ msgid "Click 'Customize' to create a new custom stylesheet."
456
+ msgstr ""
457
+ "Clique em 'Personalizar' para criar uma nova folha de estilos personalizada."
458
+
459
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:126
460
+ msgid "Select a stylesheet from the left to start customizing it."
461
+ msgstr ""
462
+ "Seleccione uma das folhas de estilos à esquerda para começar a personalizá-"
463
+ "la."
464
+
465
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:135
466
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:188
467
+ #: views/SlideshowPluginPostType/slides.php:58
468
+ #: views/SlideshowPluginPostType/slides.php:143
469
+ #: views/SlideshowPluginPostType/slides.php:195
470
+ #: views/SlideshowPluginPostType/slides.php:263
471
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:80
472
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:12
473
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:98
474
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:47
475
+ #: views/SlideshowPluginWidget/form.php:2
476
+ msgid "Title"
477
+ msgstr "Título"
478
+
479
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:144
480
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:196
481
+ msgid "Style"
482
+ msgstr "Estilo"
483
+
484
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:11
485
+ msgid "Note"
486
+ msgstr "Nota"
487
+
488
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:18
489
+ #, php-format
490
+ msgid ""
491
+ "The settings set on this page apply only to newly created slideshows and "
492
+ "therefore do not alter any existing ones. To adapt a slideshow's settings, "
493
+ "%sclick here.%s"
494
+ msgstr ""
495
+ "As definições especificadas nesta página aplicam-se apenas a slideshows "
496
+ "criados posteriormente, e por isso não alteram os slideshows existentes. "
497
+ "Para ajustar as definições de um slideshow, %sclique aqui.%s"
498
+
499
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:29
500
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:15
501
+ msgid "Default Slideshow Settings"
502
+ msgstr "Definições padrão do(s) slideshow(s)"
503
+
504
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:41
505
+ #: views/SlideshowPluginPostType/settings.php:12
506
+ msgid "settings"
507
+ msgstr "definições"
508
+
509
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:77
510
+ msgid "Default Slideshow Stylesheet"
511
+ msgstr "Estilo padrão do(s) slideshow(s)"
512
+
513
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:11
514
+ msgid "Add slideshows"
515
+ msgstr "Adicionar slideshows"
516
+
517
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:12
518
+ msgid "Edit slideshows"
519
+ msgstr "Editar slideshows"
520
+
521
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:13
522
+ msgid "Delete slideshows"
523
+ msgstr "Apagar slideshows"
524
+
525
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:20
526
+ msgid "User Capabilities"
527
+ msgstr "Capacidades de utilizador"
528
+
529
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:22
530
+ msgid "Select the user roles that will able to perform certain actions."
531
+ msgstr ""
532
+ "Seleccione o tipo de utilizador que será capaz de executar certas acções."
533
+
534
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:38
535
+ msgid "Untitled role"
536
+ msgstr "Tipo de utilizador sem título"
537
+
538
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:65
539
+ msgid "Settings"
540
+ msgstr "Definições"
541
+
542
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:69
543
+ msgid "Stylesheet location"
544
+ msgstr ""
545
+
546
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:72
547
+ msgid "top"
548
+ msgstr ""
549
+
550
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:73
551
+ msgid "bottom"
552
+ msgstr ""
553
+
554
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:16
555
+ msgid "Custom Styles"
556
+ msgstr "Estilos personalizados"
557
+
558
+ #: views/SlideshowPluginPostType/information.php:1
559
+ msgid ""
560
+ "To use this slideshow in your website either add this piece of shortcode to "
561
+ "your posts or pages"
562
+ msgstr ""
563
+ "Para usar este slideshow, adicione este código aos seus posts ou páginas"
564
+
565
+ #: views/SlideshowPluginPostType/information.php:5
566
+ msgid ""
567
+ "Or add this piece of code to where ever in your website you want to place "
568
+ "the slideshow"
569
+ msgstr ""
570
+ "Ou adicione este código a qualquer sítio no site em que queira colocar o "
571
+ "slideshow"
572
+
573
+ #: views/SlideshowPluginPostType/information.php:9
574
+ #, php-format
575
+ msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
576
+ msgstr ""
577
+ "Ou vá para a %spágina de widgets%s e mostre o slideshow como um widget."
578
+
579
+ #: views/SlideshowPluginPostType/settings.php:26
580
+ #: views/SlideshowPluginPostType/style-settings.php:11
581
+ msgid "Default"
582
+ msgstr "Predefinição"
583
+
584
+ #: views/SlideshowPluginPostType/slides.php:53
585
+ #: views/SlideshowPluginPostType/slides.php:190
586
+ #: views/SlideshowPluginSlideInserter/insert-text-button.php:1
587
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:6
588
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:41
589
+ msgid "Text slide"
590
+ msgstr "Slide de texto"
591
+
592
+ #: views/SlideshowPluginPostType/slides.php:60
593
+ #: views/SlideshowPluginPostType/slides.php:149
594
+ #: views/SlideshowPluginPostType/slides.php:197
595
+ #: views/SlideshowPluginPostType/slides.php:269
596
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:87
597
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:15
598
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:105
599
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:50
600
+ msgid "Description"
601
+ msgstr "Descrição"
602
+
603
+ #: views/SlideshowPluginPostType/slides.php:62
604
+ #: views/SlideshowPluginPostType/slides.php:199
605
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:21
606
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:56
607
+ msgid "Background color"
608
+ msgstr "Cor de fundo"
609
+
610
+ #: views/SlideshowPluginPostType/slides.php:67
611
+ #: views/SlideshowPluginPostType/slides.php:154
612
+ #: views/SlideshowPluginPostType/slides.php:204
613
+ #: views/SlideshowPluginPostType/slides.php:274
614
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:94
615
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:28
616
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:112
617
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:64
618
+ msgid "URL"
619
+ msgstr "Endereço (URL)"
620
+
621
+ #: views/SlideshowPluginPostType/slides.php:69
622
+ #: views/SlideshowPluginPostType/slides.php:156
623
+ #: views/SlideshowPluginPostType/slides.php:206
624
+ #: views/SlideshowPluginPostType/slides.php:276
625
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:97
626
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:31
627
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:115
628
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:67
629
+ msgid "Open URL in"
630
+ msgstr "Abrir endereço (URL) em"
631
+
632
+ #: views/SlideshowPluginPostType/slides.php:71
633
+ #: views/SlideshowPluginPostType/slides.php:158
634
+ #: views/SlideshowPluginPostType/slides.php:208
635
+ #: views/SlideshowPluginPostType/slides.php:278
636
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:99
637
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:33
638
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:117
639
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:69
640
+ msgid "Same window"
641
+ msgstr "A mesma janela"
642
+
643
+ #: views/SlideshowPluginPostType/slides.php:72
644
+ #: views/SlideshowPluginPostType/slides.php:159
645
+ #: views/SlideshowPluginPostType/slides.php:209
646
+ #: views/SlideshowPluginPostType/slides.php:279
647
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:100
648
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:34
649
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:118
650
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:70
651
+ msgid "New window"
652
+ msgstr "Nova janela"
653
+
654
+ #: views/SlideshowPluginPostType/slides.php:89
655
+ #: views/SlideshowPluginPostType/slides.php:229
656
+ #: views/SlideshowPluginSlideInserter/insert-video-button.php:1
657
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:53
658
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:23
659
+ msgid "Video slide"
660
+ msgstr "Slide de vídeos"
661
+
662
+ #: views/SlideshowPluginPostType/slides.php:94
663
+ #: views/SlideshowPluginPostType/slides.php:234
664
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:59
665
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:29
666
+ msgid "Youtube Video ID"
667
+ msgstr "Youtube Video ID"
668
+
669
+ #: views/SlideshowPluginPostType/slides.php:132
670
+ #: views/SlideshowPluginPostType/slides.php:254
671
+ #: views/SlideshowPluginSlideInserter/insert-image-button.php:1
672
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:66
673
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:86
674
+ msgid "Image slide"
675
+ msgstr "Slide de imagens"
676
+
677
+ #: views/SlideshowPluginPostType/slides.php:170
678
+ msgid ""
679
+ "An error occurred while loading this slide, and it will not be present in "
680
+ "the slideshow"
681
+ msgstr ""
682
+ "Ocorreu um erro a carregar este slide, e por isso não será mostrado no "
683
+ "slideshow"
684
+
685
+ #: views/SlideshowPluginPostType/slides.php:176
686
+ #: views/SlideshowPluginPostType/slides.php:217
687
+ #: views/SlideshowPluginPostType/slides.php:242
688
+ #: views/SlideshowPluginPostType/slides.php:288
689
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:109
690
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:42
691
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:75
692
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:127
693
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:78
694
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:45
695
+ msgid "Delete slide"
696
+ msgstr "Apagar slide"
697
+
698
+ #: views/SlideshowPluginPostType/style-settings.php:22
699
+ #, php-format
700
+ msgid "Custom styles can be created and customized %shere%s."
701
+ msgstr "Estilos personalizados podem ser criados e customizados %saqui%s."
702
+
703
+ #: views/SlideshowPluginPostType/support-plugin.php:3
704
+ msgid "Help to keep this plugin free!"
705
+ msgstr "Ajude a manter este plugin grátis!"
706
+
707
+ #: views/SlideshowPluginPostType/support-plugin.php:6
708
+ msgid ""
709
+ "In order to keep you provided with the newest features, updates and bug "
710
+ "fixes, a lot of motivation is required. Therefore I'm kindly asking you to "
711
+ "consider making a small donation to the plugin or rating it as 5-stars on "
712
+ "Wordpress.org. Thank you in advance!"
713
+ msgstr ""
714
+ "De forma a continuar a oferecer funcionalidades novas, apoio através do "
715
+ "fórum e resolução de bugs, é precisa imensa motivação. Por isso, peço-lhe "
716
+ "gentilmente que considere um pequeno donativo para o plugin, ou que o avalie "
717
+ "com 5 estrelas em Wordpress.org. Agradeço-lhe desde já!"
718
+
719
+ #: views/SlideshowPluginPostType/support-plugin.php:15
720
+ msgid "Rate on Wordpress.org"
721
+ msgstr "Avaliar em Wordpress.org"
722
+
723
+ #: views/SlideshowPluginPostType/support-plugin.php:24
724
+ msgid "Frequently Asked Questions (FAQ)"
725
+ msgstr "Perguntas Mais Frequentes (FAQ)"
726
+
727
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
728
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
729
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
730
+ msgid "Insert a Slideshow"
731
+ msgstr "Inserir um slideshow"
732
+
733
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
734
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
735
+ msgid "Insert Slideshow"
736
+ msgstr "Inserir slideshow"
737
+
738
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
739
+ msgid "Select a slideshow"
740
+ msgstr "Seleccionar um slideshow"
741
+
742
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
743
+ #: views/SlideshowPluginWidget/form.php:12
744
+ msgid "Untitled slideshow"
745
+ msgstr "Slideshow sem título"
746
+
747
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
748
+ msgid "Cancel"
749
+ msgstr "Cancelar"
750
+
751
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
752
+ #, php-format
753
+ msgid ""
754
+ "It seems you haven't created any slideshows yet. %sYou can create a "
755
+ "slideshow here!%s"
756
+ msgstr ""
757
+ "Parece que ainda não criou nenhum slideshow. %sPode criar um slideshow aqui!"
758
+ "%s"
759
+
760
+ #: views/SlideshowPluginSlideInserter/search-popup.php:6
761
+ msgid "Search"
762
+ msgstr "Pesquisar"
763
+
764
+ #: views/SlideshowPluginSlideInserter/search-popup.php:7
765
+ msgid "Search images by title or ID"
766
+ msgstr "Pesquisar imagens por título ou ID"
767
+
768
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:18
769
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:53
770
+ msgid "Text color"
771
+ msgstr "Cor do texto"
772
+
773
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:66
774
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:36
775
+ msgid "Show related videos"
776
+ msgstr ""
777
+
778
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:58
779
+ msgid "(Leave empty for a transparent background)"
780
+ msgstr "(Deixar em branco para um fundo transparente)"
781
+
782
+ #: views/SlideshowPluginUpload/upload-button.php:1
783
+ msgid "Upload/Manage Images"
784
+ msgstr "Upload/Gerir Imagens"
785
+
786
+ #: views/SlideshowPluginWidget/form.php:9
787
+ msgid "Random Slideshow"
788
+ msgstr "Slideshow aleatório"
789
+
790
+ #~ msgid "Leave any field open to use default value."
791
+ #~ msgstr "Een veld dat open wordt gelaten neemt de standaardwaarde aan."
languages/slideshow-plugin-ru_RU.mo CHANGED
Binary file
languages/slideshow-plugin-ru_RU.po CHANGED
@@ -1,782 +1,818 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Slideshow Plugin\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-03-25 19:57+0100\n"
6
- "PO-Revision-Date: 2013-03-25 19:58+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.5.5\n"
16
- "X-Poedit-SearchPath-0: .\n"
17
-
18
- #: classes/SlideshowPluginGeneralSettings.php:64
19
- #: classes/SlideshowPluginGeneralSettings.php:65
20
- msgid "General Settings"
21
- msgstr "Основные настройки"
22
-
23
- #: classes/SlideshowPluginGeneralSettings.php:146
24
- msgid "New"
25
- msgstr "Новый"
26
-
27
- #: classes/SlideshowPluginGeneralSettings.php:147
28
- msgid "Are you sure you want to delete this custom style?"
29
- msgstr "Удалить этот стиль?"
30
-
31
- #: classes/SlideshowPluginGeneralSettings.php:166
32
- #: classes/SlideshowPluginInstaller.php:441
33
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:6
34
- msgid "Light"
35
- msgstr "Светлый"
36
-
37
- #: classes/SlideshowPluginGeneralSettings.php:167
38
- #: classes/SlideshowPluginInstaller.php:441
39
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:7
40
- msgid "Dark"
41
- msgstr "Тёмный"
42
-
43
- #: classes/SlideshowPluginGeneralSettings.php:271
44
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:49
45
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:131
46
- msgid "Untitled"
47
- msgstr "Без заголовка"
48
-
49
- #: classes/SlideshowPluginInstaller.php:438
50
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:378
51
- msgid "Yes"
52
- msgstr "Да"
53
-
54
- #: classes/SlideshowPluginInstaller.php:439
55
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:379
56
- msgid "No"
57
- msgstr "Нет"
58
-
59
- #: classes/SlideshowPluginInstaller.php:441
60
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:477
61
- msgid "The style used for this slideshow"
62
- msgstr "Стиль, используемый в этом слайдшоу"
63
-
64
- #: classes/SlideshowPluginInstaller.php:441
65
- msgid "Custom"
66
- msgstr "Собственный"
67
-
68
- #: classes/SlideshowPluginInstaller.php:442
69
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:114
70
- msgid "Custom style editor"
71
- msgstr "Редактор собственного стиля"
72
-
73
- #: classes/SlideshowPluginInstaller.php:443
74
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
75
- msgid "Animation used for transition between slides"
76
- msgstr "Анимация, используемая для перехода между слайдами"
77
-
78
- #: classes/SlideshowPluginInstaller.php:443
79
- msgid "Slide"
80
- msgstr "Слайд"
81
-
82
- #: classes/SlideshowPluginInstaller.php:443
83
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
84
- msgid "Fade"
85
- msgstr "Затухание"
86
-
87
- #: classes/SlideshowPluginInstaller.php:443
88
- #: classes/SlideshowPluginInstaller.php:444
89
- #: classes/SlideshowPluginInstaller.php:445
90
- #: classes/SlideshowPluginInstaller.php:446
91
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
92
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:420
93
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
94
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:422
95
- msgid "Animation"
96
- msgstr "Анимационные"
97
-
98
- #: classes/SlideshowPluginInstaller.php:444
99
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:420
100
- msgid "Number of seconds the slide takes to slide in"
101
- msgstr "Число секунд, которое занимает появление слайда"
102
-
103
- #: classes/SlideshowPluginInstaller.php:445
104
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
105
- msgid "Number of seconds the description takes to slide in"
106
- msgstr "Число секунд, которое занимает появление текста"
107
-
108
- #: classes/SlideshowPluginInstaller.php:446
109
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:422
110
- msgid "Seconds between changing slides"
111
- msgstr "Секунд между сменой слайдов"
112
-
113
- #: classes/SlideshowPluginInstaller.php:447
114
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
115
- msgid "Number of slides to fit into one slide"
116
- msgstr "Число слайдов, размещённых в одном слайде"
117
-
118
- #: classes/SlideshowPluginInstaller.php:447
119
- #: classes/SlideshowPluginInstaller.php:448
120
- #: classes/SlideshowPluginInstaller.php:449
121
- #: classes/SlideshowPluginInstaller.php:450
122
- #: classes/SlideshowPluginInstaller.php:451
123
- #: classes/SlideshowPluginInstaller.php:452
124
- #: classes/SlideshowPluginInstaller.php:453
125
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
126
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:424
127
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
128
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:426
129
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:427
130
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
131
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:429
132
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:430
133
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:431
134
- msgid "Display"
135
- msgstr "Визуальные"
136
-
137
- #: classes/SlideshowPluginInstaller.php:448
138
- msgid "Width of the slideshow, set to parent&#39;s width on 0"
139
- msgstr ""
140
- "Ширина слайдшоу. Установите в 0 для определения ширины по родительскому "
141
- "элементу"
142
-
143
- #: classes/SlideshowPluginInstaller.php:449
144
- msgid "Height of the slideshow"
145
- msgstr "Высота слайдшоу"
146
-
147
- #: classes/SlideshowPluginInstaller.php:450
148
- msgid "Height of the description boxes"
149
- msgstr "Высота блока описания"
150
-
151
- #: classes/SlideshowPluginInstaller.php:451
152
- msgid "Fit image into slide (stretching it)"
153
- msgstr "Уместить изображение в слайд (растянуть его)"
154
-
155
- #: classes/SlideshowPluginInstaller.php:452
156
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:430
157
- msgid "Show title and description"
158
- msgstr "Показать заголовок и описание"
159
-
160
- #: classes/SlideshowPluginInstaller.php:453
161
- msgid "Hide description box, it will pop up when a mouse hovers over the slide"
162
- msgstr ""
163
- "Скрыть блок описания. Он будет появляться при наведении указателя мыши "
164
- "поверх слайда"
165
-
166
- #: classes/SlideshowPluginInstaller.php:454
167
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:432
168
- msgid "Automatically slide to the next slide"
169
- msgstr "Автоматический переход к следующему слайду"
170
-
171
- #: classes/SlideshowPluginInstaller.php:454
172
- #: classes/SlideshowPluginInstaller.php:455
173
- #: classes/SlideshowPluginInstaller.php:456
174
- #: classes/SlideshowPluginInstaller.php:457
175
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:432
176
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:433
177
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:434
178
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:435
179
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:436
180
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:437
181
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:438
182
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:439
183
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:440
184
- msgid "Control"
185
- msgstr "Управляющие"
186
-
187
- #: classes/SlideshowPluginInstaller.php:455
188
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:433
189
- msgid "Return to the beginning of the slideshow after last slide"
190
- msgstr "Вернуться в начало слайдшоу после последнего слайда"
191
-
192
- #: classes/SlideshowPluginInstaller.php:456
193
- msgid "Activate buttons (so the user can scroll through the slides)"
194
- msgstr "Активировать кнопки (пользователь сможет пролистывать слайды)"
195
-
196
- #: classes/SlideshowPluginInstaller.php:457
197
- msgid "Show control panel (play and pause button)"
198
- msgstr "Отображать панель управления (кнопка воспроизведения и останова)"
199
-
200
- #: classes/SlideshowPluginPostType.php:38
201
- msgid "Slideshows"
202
- msgstr "Слайдшоу"
203
-
204
- #: classes/SlideshowPluginPostType.php:39
205
- #: views/SlideshowPluginWidget/form.php:7
206
- msgid "Slideshow"
207
- msgstr "Слайдшоу"
208
-
209
- #: classes/SlideshowPluginPostType.php:40
210
- msgid "Add New Slideshow"
211
- msgstr "Добавить новое слайдшоу"
212
-
213
- #: classes/SlideshowPluginPostType.php:41
214
- msgid "Edit slideshow"
215
- msgstr "Редактировать слайдшоу"
216
-
217
- #: classes/SlideshowPluginPostType.php:42
218
- msgid "New slideshow"
219
- msgstr "Новое слайдшоу"
220
-
221
- #: classes/SlideshowPluginPostType.php:43
222
- msgid "View slideshow"
223
- msgstr "Просмотр слайдшоу"
224
-
225
- #: classes/SlideshowPluginPostType.php:44
226
- msgid "Search slideshows"
227
- msgstr "Поиск слайдшоу"
228
-
229
- #: classes/SlideshowPluginPostType.php:45
230
- #: classes/SlideshowPluginPostType.php:46
231
- msgid "No slideshows found"
232
- msgstr "Ни одного слайдшоу не найдено"
233
-
234
- #: classes/SlideshowPluginPostType.php:155
235
- msgid "Information"
236
- msgstr "Информация"
237
-
238
- #: classes/SlideshowPluginPostType.php:164
239
- msgid "Slides List"
240
- msgstr "Список слайдов"
241
-
242
- #: classes/SlideshowPluginPostType.php:173
243
- msgid "Slideshow Style"
244
- msgstr "Стиль слайдшоу"
245
-
246
- #: classes/SlideshowPluginPostType.php:182
247
- msgid "Slideshow Settings"
248
- msgstr "Настройки слайдшоу"
249
-
250
- #: classes/SlideshowPluginPostType.php:232
251
- #: classes/SlideshowPluginSlideInserter.php:178
252
- #: views/SlideshowPluginPostType/slides.php:2
253
- msgid "Insert"
254
- msgstr "Вставить"
255
-
256
- #: classes/SlideshowPluginPostType.php:240
257
- #: views/SlideshowPluginPostType/slides.php:9
258
- msgid "Add slides to this slideshow by using one of the buttons above."
259
- msgstr "Добавить слайды к слайдшоу с помощью одной из кнопок ниже"
260
-
261
- #: classes/SlideshowPluginShortcode.php:132
262
- msgid "No slideshow selected."
263
- msgstr "Не выбрано слайдшоу."
264
-
265
- #: classes/SlideshowPluginSlideInserter.php:151
266
- msgid "More results loaded"
267
- msgstr "Другие результаты загружаются"
268
-
269
- #: classes/SlideshowPluginSlideInserter.php:187
270
- msgid "Load more results"
271
- msgstr "Загрузить больше результатов"
272
-
273
- #: classes/SlideshowPluginSlideInserter.php:196
274
- msgid "No images were found, click here to upload some."
275
- msgstr "Не найдено изображений, щёлкните здесь для загрузки"
276
-
277
- #: classes/SlideshowPluginSlideInserter.php:273
278
- msgid "Are you sure you want to delete this slide?"
279
- msgstr "Удалить этот слайд?"
280
-
281
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
282
- msgid "Slide Left"
283
- msgstr "Сдвиг влево"
284
-
285
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
286
- msgid "Slide Right"
287
- msgstr "Сдвиг вправо"
288
-
289
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
290
- msgid "Slide Up"
291
- msgstr "Сдвиг вверх"
292
-
293
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
294
- msgid "Slide Down"
295
- msgstr "Сдвиг вниз"
296
-
297
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
298
- msgid "Direct Fade"
299
- msgstr "Вспышка"
300
-
301
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
302
- msgid "Random Animation"
303
- msgstr "Произвольная анимация"
304
-
305
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:424
306
- msgid "Maximum width. When maximum width is 0, maximum width is ignored"
307
- msgstr "Максимальная ширина. Когда равно 0, параметр игнорируется"
308
-
309
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
310
- msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
311
- msgstr "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
312
-
313
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
314
- msgid "More info"
315
- msgstr "Далее"
316
-
317
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
318
- #, php-format
319
- msgid ""
320
- "Proportional relationship%s between slideshow's width and height (width:"
321
- "height)"
322
- msgstr ""
323
- "Пропорциональная зависимость %s между шириной и высотой слайдшоу (ширина:"
324
- "высота)"
325
-
326
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:426
327
- msgid "Slideshow's height"
328
- msgstr "Высота слайдшоу"
329
-
330
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:427
331
- msgid "Fit image into slide (Stretch image)"
332
- msgstr "Вписать изображение в слайд (Растянуть изображение)"
333
-
334
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
335
- msgid "Shrink slideshow's height when width shrinks"
336
- msgstr "Уменьшать высоту слайдшоу при уменьшении ширины слайдшоу"
337
-
338
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:429
339
- msgid ""
340
- "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
341
- msgstr ""
342
- "Включить отзывчивость (Уменьшать шарану слайдшоу при уменьшении ширины "
343
- "страницы)"
344
-
345
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:431
346
- msgid "Hide description box, pop up when mouse hovers over"
347
- msgstr "Спрятать описание, показать при наведении курсора"
348
-
349
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:434
350
- msgid "Pause slideshow when mouse hovers over"
351
- msgstr "Приостанавливать слайдшоу при наведении курсора"
352
-
353
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:435
354
- msgid "Activate navigation buttons"
355
- msgstr "Активировать кнопки навигации"
356
-
357
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:436
358
- msgid "Hide navigation buttons, show when mouse hovers over"
359
- msgstr "Спрятать кнопки навигации, показать при наведении курсора"
360
-
361
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:437
362
- msgid "Activate pagination"
363
- msgstr "Активировать постраничную навигацию"
364
-
365
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:438
366
- msgid "Hide pagination, show when mouse hovers over"
367
- msgstr "Спрятать постраничную навигацию, показать при наведении курсора"
368
-
369
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:439
370
- msgid "Activate control panel (play and pause button)"
371
- msgstr "Активировать панель управления (кнопки запуск и пауза)"
372
-
373
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:440
374
- msgid "Hide control panel, show when mouse hovers over"
375
- msgstr "Спрятать панель управления, показывать при наведении курсора"
376
-
377
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:441
378
- msgid "Randomize slides"
379
- msgstr "Слайды в случайном порядке"
380
-
381
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:441
382
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:442
383
- msgid "Miscellaneous"
384
- msgstr "Разные"
385
-
386
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:442
387
- #, php-format
388
- msgid "Avoid content filter (disable if '%s' is shown)"
389
- msgstr "Избегать фильтра содержимого (запрещено, если отображается '%s' )"
390
-
391
- #: classes/SlideshowPluginWidget.php:23
392
- msgid "Enables you to show your slideshows in the widget area of your website."
393
- msgstr "Позволяет отобразить ваше слайдшоу в области виджетов вашего сайта"
394
-
395
- #: classes/SlideshowPluginWidget.php:29
396
- msgid "Slideshow Widget"
397
- msgstr "Виджет слайдшоу"
398
-
399
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:38
400
- msgid "Default stylesheets"
401
- msgstr "Стили по-умолчанию"
402
-
403
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:52
404
- msgid "Create a new custom style from this style"
405
- msgstr "Создать новый стиль"
406
-
407
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:54
408
- msgid "Customize"
409
- msgstr "Изменить"
410
-
411
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:68
412
- msgid "Custom stylesheets"
413
- msgstr "Измененные стили"
414
-
415
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:81
416
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:160
417
- msgid "Edit this style"
418
- msgstr "Редактировать стиль"
419
-
420
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:83
421
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:162
422
- #: views/SlideshowPluginPostType/slides.php:137
423
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:46
424
- msgid "Edit"
425
- msgstr "Редактировать"
426
-
427
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:90
428
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:169
429
- msgid "Delete this style"
430
- msgstr "Удалить этот стиль"
431
-
432
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:92
433
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:171
434
- msgid "Delete"
435
- msgstr "Удалить"
436
-
437
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:102
438
- msgid "Click 'Customize' to create a new custom stylesheet."
439
- msgstr "Нажмите 'Изменить', чтобы создать новый стиль"
440
-
441
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:118
442
- msgid "Select a stylesheet from the left to start customizing it."
443
- msgstr "Выберите слева стиль, чтобы начать его изменение."
444
-
445
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:127
446
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:180
447
- #: views/SlideshowPluginPostType/slides.php:58
448
- #: views/SlideshowPluginPostType/slides.php:143
449
- #: views/SlideshowPluginPostType/slides.php:195
450
- #: views/SlideshowPluginPostType/slides.php:263
451
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:54
452
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:12
453
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:90
454
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:29
455
- #: views/SlideshowPluginWidget/form.php:2
456
- msgid "Title"
457
- msgstr "Заголовок"
458
-
459
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:136
460
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:188
461
- msgid "Style"
462
- msgstr "Style"
463
-
464
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:11
465
- msgid "Note"
466
- msgstr "Заметка"
467
-
468
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:18
469
- #, php-format
470
- msgid ""
471
- "The settings set on this page apply only to newly created slideshows and "
472
- "therefore do not alter any existing ones. To adapt a slideshow's settings, "
473
- "%sclick here.%s"
474
- msgstr ""
475
- "Заданные здесь настройки будут применены только к новым слайдшоу и не "
476
- "затронут уже существующие. Для изменения существующих, %sнажмите здесь.%s"
477
-
478
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:30
479
- #: views/SlideshowPluginGeneralSettings/general-settings.php:16
480
- msgid "Default Slideshow Settings"
481
- msgstr "Настройки слайдшоу по-умолчанию"
482
-
483
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:43
484
- #: views/SlideshowPluginPostType/settings.php:12
485
- msgid "settings"
486
- msgstr "настройки"
487
-
488
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:80
489
- msgid "Default Slideshow Stylesheet"
490
- msgstr "Стили слайдшоу по-умолчанию"
491
-
492
- #: views/SlideshowPluginGeneralSettings/general-settings.php:15
493
- msgid "User Capabilities"
494
- msgstr "Возможности пользователей"
495
-
496
- #: views/SlideshowPluginGeneralSettings/general-settings.php:17
497
- msgid "Custom Styles"
498
- msgstr "Измененные стили"
499
-
500
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:8
501
- msgid "Add slideshows"
502
- msgstr "Добавить слайдшоу"
503
-
504
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:9
505
- msgid "Edit slideshows"
506
- msgstr "Редактировать слайдшоу"
507
-
508
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:10
509
- msgid "Delete slideshows"
510
- msgstr "Удалить слайдшоу"
511
-
512
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:18
513
- msgid "Select the user roles that will able to perform certain actions."
514
- msgstr ""
515
- "Выберите роли пользователей, которым будет разрешены определенные действия."
516
-
517
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:35
518
- msgid "Untitled role"
519
- msgstr "Роль без заголовка"
520
-
521
- #: views/SlideshowPluginPostType/information.php:1
522
- msgid ""
523
- "To use this slideshow in your website either add this piece of shortcode to "
524
- "your posts or pages"
525
- msgstr ""
526
- "Для использования слайдшоу на вашем сайте добавьте этот шорткод в ваши "
527
- "записи или страницы"
528
-
529
- #: views/SlideshowPluginPostType/information.php:5
530
- msgid ""
531
- "Or add this piece of code to where ever in your website you want to place "
532
- "the slideshow"
533
- msgstr ""
534
- "Или добавьте этот фрагмент кода в том месте, где вы желаете разместить ваше "
535
- "слайдшоу"
536
-
537
- #: views/SlideshowPluginPostType/information.php:9
538
- #, php-format
539
- msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
540
- msgstr ""
541
- "Или отправьтесь на %sстраницу виджетов%s и отобразите слайдшоу как виджет"
542
-
543
- #: views/SlideshowPluginPostType/settings.php:26
544
- #: views/SlideshowPluginPostType/style-settings.php:11
545
- msgid "Default"
546
- msgstr "Исходное"
547
-
548
- #: views/SlideshowPluginPostType/slides.php:53
549
- #: views/SlideshowPluginPostType/slides.php:190
550
- #: views/SlideshowPluginSlideInserter/insert-text-button.php:1
551
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:6
552
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:23
553
- msgid "Text slide"
554
- msgstr "Текстовый слайд"
555
-
556
- #: views/SlideshowPluginPostType/slides.php:60
557
- #: views/SlideshowPluginPostType/slides.php:149
558
- #: views/SlideshowPluginPostType/slides.php:197
559
- #: views/SlideshowPluginPostType/slides.php:269
560
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:61
561
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:15
562
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:97
563
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:32
564
- msgid "Description"
565
- msgstr "Описание"
566
-
567
- #: views/SlideshowPluginPostType/slides.php:62
568
- #: views/SlideshowPluginPostType/slides.php:199
569
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:21
570
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:38
571
- msgid "Background color"
572
- msgstr "Фоновый цвет"
573
-
574
- #: views/SlideshowPluginPostType/slides.php:67
575
- #: views/SlideshowPluginPostType/slides.php:154
576
- #: views/SlideshowPluginPostType/slides.php:204
577
- #: views/SlideshowPluginPostType/slides.php:274
578
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:68
579
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:28
580
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:104
581
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:46
582
- msgid "URL"
583
- msgstr "URL"
584
-
585
- #: views/SlideshowPluginPostType/slides.php:69
586
- #: views/SlideshowPluginPostType/slides.php:156
587
- #: views/SlideshowPluginPostType/slides.php:206
588
- #: views/SlideshowPluginPostType/slides.php:276
589
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:71
590
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:31
591
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:107
592
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:49
593
- msgid "Open URL in"
594
- msgstr "Открыть URL в"
595
-
596
- #: views/SlideshowPluginPostType/slides.php:71
597
- #: views/SlideshowPluginPostType/slides.php:158
598
- #: views/SlideshowPluginPostType/slides.php:208
599
- #: views/SlideshowPluginPostType/slides.php:278
600
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:73
601
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:33
602
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:109
603
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:51
604
- msgid "Same window"
605
- msgstr "Текущее окно"
606
-
607
- #: views/SlideshowPluginPostType/slides.php:72
608
- #: views/SlideshowPluginPostType/slides.php:159
609
- #: views/SlideshowPluginPostType/slides.php:209
610
- #: views/SlideshowPluginPostType/slides.php:279
611
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:74
612
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:34
613
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:110
614
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:52
615
- msgid "New window"
616
- msgstr "Новое окно"
617
-
618
- #: views/SlideshowPluginPostType/slides.php:89
619
- #: views/SlideshowPluginPostType/slides.php:229
620
- #: views/SlideshowPluginSlideInserter/insert-video-button.php:1
621
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:53
622
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:13
623
- msgid "Video slide"
624
- msgstr "Видео слайд"
625
-
626
- #: views/SlideshowPluginPostType/slides.php:94
627
- #: views/SlideshowPluginPostType/slides.php:234
628
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:59
629
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:19
630
- msgid "Youtube Video ID"
631
- msgstr "ID видео на Youtube"
632
-
633
- #: views/SlideshowPluginPostType/slides.php:132
634
- #: views/SlideshowPluginPostType/slides.php:254
635
- #: views/SlideshowPluginSlideInserter/insert-image-button.php:1
636
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:40
637
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:78
638
- msgid "Image slide"
639
- msgstr "Слайд с изображением"
640
-
641
- #: views/SlideshowPluginPostType/slides.php:170
642
- msgid ""
643
- "An error occurred while loading this slide, and it will not be present in "
644
- "the slideshow"
645
- msgstr ""
646
- "При загрузке этого слайда произошла ошибка, он не будет отображен в слайдшоу"
647
-
648
- #: views/SlideshowPluginPostType/slides.php:176
649
- #: views/SlideshowPluginPostType/slides.php:217
650
- #: views/SlideshowPluginPostType/slides.php:242
651
- #: views/SlideshowPluginPostType/slides.php:288
652
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:83
653
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:42
654
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:67
655
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:119
656
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:60
657
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:27
658
- msgid "Delete slide"
659
- msgstr "Удалить слайд"
660
-
661
- #: views/SlideshowPluginPostType/style-settings.php:22
662
- #, php-format
663
- msgid "Custom styles can be created and customized %shere%s."
664
- msgstr "Стили могут быть созданы и изменены %sздесь%s."
665
-
666
- #: views/SlideshowPluginPostType/support-plugin.php:3
667
- msgid "Help to keep this plugin free!"
668
- msgstr "Помогите сохранить плагин свободным!"
669
-
670
- #: views/SlideshowPluginPostType/support-plugin.php:6
671
- msgid ""
672
- "In order to keep you provided with the newest features, forum support, and "
673
- "bug-fixes, a lot of motivation is required. Therefore I'm kindly asking you "
674
- "to consider making a small donation to the plugin or rating it as 5-stars on "
675
- "Wordpress.org. Thank you in advance!"
676
- msgstr ""
677
- "Для предоставления вам новейших возможностей, поддержки на форуме, "
678
- "исправлении ошибок необходима значительная мотивация. Поэтому просим вас "
679
- "сделать небольшое пожертвование плагину или оценить его в пять баллов на "
680
- "сайте Wordpress.org. Заранее спасибо!"
681
-
682
- #: views/SlideshowPluginPostType/support-plugin.php:15
683
- msgid "Rate on Wordpress.org"
684
- msgstr "Поставить оценку на Wordpress.org"
685
-
686
- #: views/SlideshowPluginPostType/support-plugin.php:24
687
- msgid "Frequently Asked Questions (FAQ)"
688
- msgstr "Часто Задаваемые Вопросы (ЧАВО)"
689
-
690
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
691
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
692
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
693
- msgid "Insert a Slideshow"
694
- msgstr "Вставить слайдшоу"
695
-
696
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
697
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
698
- msgid "Insert Slideshow"
699
- msgstr "Вставка слайдшоу"
700
-
701
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
702
- msgid "Select a slideshow"
703
- msgstr "Выберите слайдшоу"
704
-
705
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
706
- #: views/SlideshowPluginWidget/form.php:12
707
- msgid "Untitled slideshow"
708
- msgstr "Сладйшоу без заголовка"
709
-
710
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
711
- msgid "Cancel"
712
- msgstr "Отмена"
713
-
714
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
715
- #, php-format
716
- msgid ""
717
- "It seems you haven't created any slideshows yet. %sYou can create a "
718
- "slideshow here!%s"
719
- msgstr "Нет ни одного слайдшоу. %sВы можете создать слайдшоу здесь!%s"
720
-
721
- #: views/SlideshowPluginSlideInserter/search-popup.php:6
722
- msgid "Search"
723
- msgstr "Поиск"
724
-
725
- #: views/SlideshowPluginSlideInserter/search-popup.php:7
726
- msgid "Search images by title or ID"
727
- msgstr "Поиск изображения по заголовку или ID"
728
-
729
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:18
730
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:35
731
- msgid "Text color"
732
- msgstr "Цвет текста"
733
-
734
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:40
735
- msgid "(Leave empty for a transparent background)"
736
- msgstr "(Оставить пустым для прозрачного фона)"
737
-
738
- #: views/SlideshowPluginUpload/upload-button.php:1
739
- msgid "Upload/Manage Images"
740
- msgstr "Загрузка/Управление изображениями"
741
-
742
- #: views/SlideshowPluginWidget/form.php:9
743
- msgid "Random Slideshow"
744
- msgstr "Случайный порядок слайдшоу"
745
-
746
- #~ msgid "Questions / Suggestions"
747
- #~ msgstr "Вопросы / Предложения"
748
-
749
- #~ msgid "Custom style editor (Does not work with a Strict Doctype)"
750
- #~ msgstr "Aangepaste stijl bewerker (Werkt niet met een Strict Doctype)"
751
-
752
- #~ msgid "Has the Slideshow plugin helped you?"
753
- #~ msgstr "Heeft de Slideshow plugin je geholpen?"
754
-
755
- #~ msgid "Help it back!"
756
- #~ msgstr "Help hem terug!"
757
-
758
- #~ msgid ""
759
- #~ "If this plugin has filled you with happiness, please support the upkeep "
760
- #~ "of the plugin by rating it on Wordpress, posting a suggestion for "
761
- #~ "improvement on the support forum, or making a donation."
762
- #~ msgstr ""
763
- #~ "Als deze plugin je met blijdschap heeft vervuld, zou ik het enorm "
764
- #~ "waarderen als je de plugin wilt beoordelen op Wordpress, een suggestie "
765
- #~ "wilt maken voor verbetering, of een donatie doen wilt."
766
-
767
- #~ msgid "Click on an image to insert it as a slide"
768
- #~ msgstr "Klik op een plaatje om deze in te voegen als slide"
769
-
770
- #~ msgid "Width of the slideshow"
771
- #~ msgstr "Breedte van de slideshow"
772
-
773
- #~ msgid "Defaults to parent's width."
774
- #~ msgstr "Standaard ingesteld op de breedte van het bovenliggende element."
775
-
776
- #~ msgid "Send user to image URL on click"
777
- #~ msgstr ""
778
- #~ "Wanner de gebruiker op de afbeelding klikt, stuur hem naar de URL van het "
779
- #~ "plaatje"
780
-
781
- #~ msgid "Leave any field open to use default value."
782
- #~ msgstr "Een veld dat open wordt gelaten neemt de standaardwaarde aan."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Slideshow Plugin\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-08-21 10:50+0100\n"
6
+ "PO-Revision-Date: 2013-08-21 10:50+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.5.7\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 "Основные настройки"
23
+
24
+ #: classes/SlideshowPluginGeneralSettings.php:150
25
+ msgid "New"
26
+ msgstr "Новый"
27
+
28
+ #: classes/SlideshowPluginGeneralSettings.php:151
29
+ msgid "Are you sure you want to delete this custom style?"
30
+ msgstr "Удалить этот стиль?"
31
+
32
+ #: classes/SlideshowPluginGeneralSettings.php:196
33
+ #: classes/SlideshowPluginInstaller.php:516
34
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:6
35
+ msgid "Light"
36
+ msgstr "Светлый"
37
+
38
+ #: classes/SlideshowPluginGeneralSettings.php:197
39
+ #: classes/SlideshowPluginInstaller.php:516
40
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:7
41
+ msgid "Dark"
42
+ msgstr "Тёмный"
43
+
44
+ #: classes/SlideshowPluginGeneralSettings.php:353
45
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:57
46
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:139
47
+ msgid "Untitled"
48
+ msgstr "Без заголовка"
49
+
50
+ #: classes/SlideshowPluginInstaller.php:513
51
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:472
52
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:67
53
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:37
54
+ msgid "Yes"
55
+ msgstr "Да"
56
+
57
+ #: classes/SlideshowPluginInstaller.php:514
58
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:473
59
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:68
60
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:38
61
+ msgid "No"
62
+ msgstr "Нет"
63
+
64
+ #: classes/SlideshowPluginInstaller.php:516
65
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:610
66
+ msgid "The style used for this slideshow"
67
+ msgstr "Стиль, используемый в этом слайдшоу"
68
+
69
+ #: classes/SlideshowPluginInstaller.php:516
70
+ msgid "Custom"
71
+ msgstr "Собственный"
72
+
73
+ #: classes/SlideshowPluginInstaller.php:517
74
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:122
75
+ msgid "Custom style editor"
76
+ msgstr "Редактор собственного стиля"
77
+
78
+ #: classes/SlideshowPluginInstaller.php:518
79
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:518
80
+ msgid "Animation used for transition between slides"
81
+ msgstr "Анимация, используемая для перехода между слайдами"
82
+
83
+ #: classes/SlideshowPluginInstaller.php:518
84
+ msgid "Slide"
85
+ msgstr "Слайд"
86
+
87
+ #: classes/SlideshowPluginInstaller.php:518
88
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
89
+ msgid "Fade"
90
+ msgstr "Затухание"
91
+
92
+ #: classes/SlideshowPluginInstaller.php:518
93
+ #: classes/SlideshowPluginInstaller.php:519
94
+ #: classes/SlideshowPluginInstaller.php:520
95
+ #: classes/SlideshowPluginInstaller.php:521
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 "Анимационные"
102
+
103
+ #: classes/SlideshowPluginInstaller.php:519
104
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:519
105
+ msgid "Number of seconds the slide takes to slide in"
106
+ msgstr "Число секунд, которое занимает появление слайда"
107
+
108
+ #: classes/SlideshowPluginInstaller.php:520
109
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:520
110
+ msgid "Number of seconds the description takes to slide in"
111
+ msgstr "Число секунд, которое занимает появление текста"
112
+
113
+ #: classes/SlideshowPluginInstaller.php:521
114
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:521
115
+ msgid "Seconds between changing slides"
116
+ msgstr "Секунд между сменой слайдов"
117
+
118
+ #: classes/SlideshowPluginInstaller.php:522
119
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:522
120
+ msgid "Number of slides to fit into one slide"
121
+ msgstr "Число слайдов, размещённых в одном слайде"
122
+
123
+ #: classes/SlideshowPluginInstaller.php:522
124
+ #: classes/SlideshowPluginInstaller.php:523
125
+ #: classes/SlideshowPluginInstaller.php:524
126
+ #: classes/SlideshowPluginInstaller.php:525
127
+ #: classes/SlideshowPluginInstaller.php:526
128
+ #: classes/SlideshowPluginInstaller.php:527
129
+ #: classes/SlideshowPluginInstaller.php:528
130
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:551
131
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:552
132
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:553
133
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:554
134
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:555
135
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:556
136
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:557
137
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:558
138
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:559
139
+ msgid "Display"
140
+ msgstr "Визуальные"
141
+
142
+ #: classes/SlideshowPluginInstaller.php:523
143
+ msgid "Width of the slideshow, set to parent&#39;s width on 0"
144
+ msgstr ""
145
+ "Ширина слайдшоу. Установите в 0 для определения ширины по родительскому "
146
+ "элементу"
147
+
148
+ #: classes/SlideshowPluginInstaller.php:524
149
+ msgid "Height of the slideshow"
150
+ msgstr "Высота слайдшоу"
151
+
152
+ #: classes/SlideshowPluginInstaller.php:525
153
+ msgid "Height of the description boxes"
154
+ msgstr "Высота блока описания"
155
+
156
+ #: classes/SlideshowPluginInstaller.php:526
157
+ msgid "Fit image into slide (stretching it)"
158
+ msgstr "Уместить изображение в слайд (растянуть его)"
159
+
160
+ #: classes/SlideshowPluginInstaller.php:527
161
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:529
162
+ msgid "Show title and description"
163
+ msgstr "Показать заголовок и описание"
164
+
165
+ #: classes/SlideshowPluginInstaller.php:528
166
+ msgid "Hide description box, it will pop up when a mouse hovers over the slide"
167
+ msgstr ""
168
+ "Скрыть блок описания. Он будет появляться при наведении указателя мыши "
169
+ "поверх слайда"
170
+
171
+ #: classes/SlideshowPluginInstaller.php:529
172
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:531
173
+ msgid "Automatically slide to the next slide"
174
+ msgstr "Автоматический переход к следующему слайду"
175
+
176
+ #: classes/SlideshowPluginInstaller.php:529
177
+ #: classes/SlideshowPluginInstaller.php:530
178
+ #: classes/SlideshowPluginInstaller.php:531
179
+ #: classes/SlideshowPluginInstaller.php:532
180
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:560
181
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:561
182
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:562
183
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:563
184
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:564
185
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:565
186
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:566
187
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:567
188
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:568
189
+ msgid "Control"
190
+ msgstr "Управляющие"
191
+
192
+ #: classes/SlideshowPluginInstaller.php:530
193
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:532
194
+ msgid "Return to the beginning of the slideshow after last slide"
195
+ msgstr "Вернуться в начало слайдшоу после последнего слайда"
196
+
197
+ #: classes/SlideshowPluginInstaller.php:531
198
+ msgid "Activate buttons (so the user can scroll through the slides)"
199
+ msgstr "Активировать кнопки (пользователь сможет пролистывать слайды)"
200
+
201
+ #: classes/SlideshowPluginInstaller.php:532
202
+ msgid "Show control panel (play and pause button)"
203
+ msgstr "Отображать панель управления (кнопка воспроизведения и останова)"
204
+
205
+ #: classes/SlideshowPluginPostType.php:38
206
+ msgid "Slideshows"
207
+ msgstr "Слайдшоу"
208
+
209
+ #: classes/SlideshowPluginPostType.php:39
210
+ #: views/SlideshowPluginWidget/form.php:7
211
+ msgid "Slideshow"
212
+ msgstr "Слайдшоу"
213
+
214
+ #: classes/SlideshowPluginPostType.php:40
215
+ msgid "Add New Slideshow"
216
+ msgstr "Добавить новое слайдшоу"
217
+
218
+ #: classes/SlideshowPluginPostType.php:41
219
+ msgid "Edit slideshow"
220
+ msgstr "Редактировать слайдшоу"
221
+
222
+ #: classes/SlideshowPluginPostType.php:42
223
+ msgid "New slideshow"
224
+ msgstr "Новое слайдшоу"
225
+
226
+ #: classes/SlideshowPluginPostType.php:43
227
+ msgid "View slideshow"
228
+ msgstr "Просмотр слайдшоу"
229
+
230
+ #: classes/SlideshowPluginPostType.php:44
231
+ msgid "Search slideshows"
232
+ msgstr "Поиск слайдшоу"
233
+
234
+ #: classes/SlideshowPluginPostType.php:45
235
+ #: classes/SlideshowPluginPostType.php:46
236
+ msgid "No slideshows found"
237
+ msgstr "Ни одного слайдшоу не найдено"
238
+
239
+ #: classes/SlideshowPluginPostType.php:91
240
+ msgid "Information"
241
+ msgstr "Информация"
242
+
243
+ #: classes/SlideshowPluginPostType.php:100
244
+ msgid "Slides List"
245
+ msgstr "Список слайдов"
246
+
247
+ #: classes/SlideshowPluginPostType.php:109
248
+ msgid "Slideshow Style"
249
+ msgstr "Стиль слайдшоу"
250
+
251
+ #: classes/SlideshowPluginPostType.php:118
252
+ msgid "Slideshow Settings"
253
+ msgstr "Настройки слайдшоу"
254
+
255
+ #: classes/SlideshowPluginPostType.php:174
256
+ #: classes/SlideshowPluginSlideInserter.php:222
257
+ #: views/SlideshowPluginPostType/slides.php:2
258
+ msgid "Insert"
259
+ msgstr "Вставить"
260
+
261
+ #: classes/SlideshowPluginPostType.php:183
262
+ #: views/SlideshowPluginPostType/slides.php:9
263
+ msgid "Add slides to this slideshow by using one of the buttons above."
264
+ msgstr "Добавить слайды к слайдшоу с помощью одной из кнопок ниже"
265
+
266
+ #: classes/SlideshowPluginShortcode.php:148
267
+ msgid "No slideshow selected."
268
+ msgstr "Не выбрано слайдшоу."
269
+
270
+ #: classes/SlideshowPluginSlideInserter.php:178
271
+ msgid "More results loaded"
272
+ msgstr "Другие результаты загружаются"
273
+
274
+ #: classes/SlideshowPluginSlideInserter.php:233
275
+ msgid "Load more results"
276
+ msgstr "Загрузить больше результатов"
277
+
278
+ #: classes/SlideshowPluginSlideInserter.php:244
279
+ msgid "No images were found, click here to upload some."
280
+ msgstr "Не найдено изображений, щёлкните здесь для загрузки"
281
+
282
+ #: classes/SlideshowPluginSlideInserter.php:316
283
+ msgid "Are you sure you want to delete this slide?"
284
+ msgstr "Удалить этот слайд?"
285
+
286
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:523
287
+ msgid "Maximum width. When maximum width is 0, maximum width is ignored"
288
+ msgstr "Максимальная ширина. Когда равно 0, параметр игнорируется"
289
+
290
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
291
+ msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
292
+ msgstr "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
293
+
294
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
295
+ msgid "More info"
296
+ msgstr "Далее"
297
+
298
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
299
+ #, php-format
300
+ msgid ""
301
+ "Proportional relationship%s between slideshow's width and height (width:"
302
+ "height)"
303
+ msgstr ""
304
+ "Пропорциональная зависимость %s между шириной и высотой слайдшоу (ширина:"
305
+ "высота)"
306
+
307
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:525
308
+ msgid "Slideshow's height"
309
+ msgstr "Высота слайдшоу"
310
+
311
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:526
312
+ msgid "Fit image into slide (Stretch image)"
313
+ msgstr "Вписать изображение в слайд (Растянуть изображение)"
314
+
315
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:527
316
+ msgid "Shrink slideshow's height when width shrinks"
317
+ msgstr "Уменьшать высоту слайдшоу при уменьшении ширины слайдшоу"
318
+
319
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:528
320
+ msgid ""
321
+ "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
322
+ msgstr ""
323
+ "Включить отзывчивость (Уменьшать шарану слайдшоу при уменьшении ширины "
324
+ "страницы)"
325
+
326
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:530
327
+ msgid "Hide description box, pop up when mouse hovers over"
328
+ msgstr "Спрятать описание, показать при наведении курсора"
329
+
330
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:533
331
+ msgid "Pause slideshow when mouse hovers over"
332
+ msgstr "Приостанавливать слайдшоу при наведении курсора"
333
+
334
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:534
335
+ msgid "Activate navigation buttons"
336
+ msgstr "Активировать кнопки навигации"
337
+
338
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:535
339
+ msgid "Hide navigation buttons, show when mouse hovers over"
340
+ msgstr "Спрятать кнопки навигации, показать при наведении курсора"
341
+
342
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:536
343
+ msgid "Activate pagination"
344
+ msgstr "Активировать постраничную навигацию"
345
+
346
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:537
347
+ msgid "Hide pagination, show when mouse hovers over"
348
+ msgstr "Спрятать постраничную навигацию, показать при наведении курсора"
349
+
350
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:538
351
+ msgid "Activate control panel (play and pause button)"
352
+ msgstr "Активировать панель управления (кнопки запуск и пауза)"
353
+
354
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:539
355
+ msgid "Hide control panel, show when mouse hovers over"
356
+ msgstr "Спрятать панель управления, показывать при наведении курсора"
357
+
358
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:540
359
+ msgid "Wait until the next slide has loaded before showing it"
360
+ msgstr ""
361
+
362
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:541
363
+ msgid "Show a loading icon until the first slide appears"
364
+ msgstr ""
365
+
366
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:542
367
+ msgid "Randomize slides"
368
+ msgstr "Слайды в случайном порядке"
369
+
370
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:543
371
+ #, php-format
372
+ msgid "Avoid content filter (disable if '%s' is shown)"
373
+ msgstr "Избегать фильтра содержимого (запрещено, если отображается '%s' )"
374
+
375
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
376
+ msgid "Slide Left"
377
+ msgstr "Сдвиг влево"
378
+
379
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
380
+ msgid "Slide Right"
381
+ msgstr "Сдвиг вправо"
382
+
383
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
384
+ msgid "Slide Up"
385
+ msgstr "Сдвиг вверх"
386
+
387
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
388
+ msgid "Slide Down"
389
+ msgstr "Сдвиг вниз"
390
+
391
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
392
+ msgid "Direct Fade"
393
+ msgstr "Вспышка"
394
+
395
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
396
+ msgid "Random Animation"
397
+ msgstr "Произвольная анимация"
398
+
399
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:569
400
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:570
401
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:571
402
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:572
403
+ msgid "Miscellaneous"
404
+ msgstr "Разные"
405
+
406
+ #: classes/SlideshowPluginWidget.php:23
407
+ msgid "Enables you to show your slideshows in the widget area of your website."
408
+ msgstr "Позволяет отобразить ваше слайдшоу в области виджетов вашего сайта"
409
+
410
+ #: classes/SlideshowPluginWidget.php:29
411
+ msgid "Slideshow Widget"
412
+ msgstr "Виджет слайдшоу"
413
+
414
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:46
415
+ msgid "Default stylesheets"
416
+ msgstr "Стили по-умолчанию"
417
+
418
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:60
419
+ msgid "Create a new custom style from this style"
420
+ msgstr "Создать новый стиль"
421
+
422
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:62
423
+ msgid "Customize"
424
+ msgstr "Изменить"
425
+
426
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:76
427
+ msgid "Custom stylesheets"
428
+ msgstr "Измененные стили"
429
+
430
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:89
431
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:168
432
+ msgid "Edit this style"
433
+ msgstr "Редактировать стиль"
434
+
435
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:91
436
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:170
437
+ #: views/SlideshowPluginPostType/slides.php:137
438
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:72
439
+ msgid "Edit"
440
+ msgstr "Редактировать"
441
+
442
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:98
443
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:177
444
+ msgid "Delete this style"
445
+ msgstr "Удалить этот стиль"
446
+
447
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:100
448
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:179
449
+ msgid "Delete"
450
+ msgstr "Удалить"
451
+
452
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:110
453
+ msgid "Click 'Customize' to create a new custom stylesheet."
454
+ msgstr "Нажмите 'Изменить', чтобы создать новый стиль"
455
+
456
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:126
457
+ msgid "Select a stylesheet from the left to start customizing it."
458
+ msgstr "Выберите слева стиль, чтобы начать его изменение."
459
+
460
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:135
461
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:188
462
+ #: views/SlideshowPluginPostType/slides.php:58
463
+ #: views/SlideshowPluginPostType/slides.php:143
464
+ #: views/SlideshowPluginPostType/slides.php:195
465
+ #: views/SlideshowPluginPostType/slides.php:263
466
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:80
467
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:12
468
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:98
469
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:47
470
+ #: views/SlideshowPluginWidget/form.php:2
471
+ msgid "Title"
472
+ msgstr "Заголовок"
473
+
474
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:144
475
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:196
476
+ msgid "Style"
477
+ msgstr "Style"
478
+
479
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:11
480
+ msgid "Note"
481
+ msgstr "Заметка"
482
+
483
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:18
484
+ #, php-format
485
+ msgid ""
486
+ "The settings set on this page apply only to newly created slideshows and "
487
+ "therefore do not alter any existing ones. To adapt a slideshow's settings, "
488
+ "%sclick here.%s"
489
+ msgstr ""
490
+ "Заданные здесь настройки будут применены только к новым слайдшоу и не "
491
+ "затронут уже существующие. Для изменения существующих, %sнажмите здесь.%s"
492
+
493
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:29
494
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:15
495
+ msgid "Default Slideshow Settings"
496
+ msgstr "Настройки слайдшоу по-умолчанию"
497
+
498
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:41
499
+ #: views/SlideshowPluginPostType/settings.php:12
500
+ msgid "settings"
501
+ msgstr "настройки"
502
+
503
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:77
504
+ msgid "Default Slideshow Stylesheet"
505
+ msgstr "Стили слайдшоу по-умолчанию"
506
+
507
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:11
508
+ msgid "Add slideshows"
509
+ msgstr "Добавить слайдшоу"
510
+
511
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:12
512
+ msgid "Edit slideshows"
513
+ msgstr "Редактировать слайдшоу"
514
+
515
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:13
516
+ msgid "Delete slideshows"
517
+ msgstr "Удалить слайдшоу"
518
+
519
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:20
520
+ msgid "User Capabilities"
521
+ msgstr "Возможности пользователей"
522
+
523
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:22
524
+ msgid "Select the user roles that will able to perform certain actions."
525
+ msgstr ""
526
+ "Выберите роли пользователей, которым будет разрешены определенные действия."
527
+
528
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:38
529
+ msgid "Untitled role"
530
+ msgstr "Роль без заголовка"
531
+
532
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:65
533
+ msgid "Settings"
534
+ msgstr "настройки"
535
+
536
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:69
537
+ msgid "Stylesheet location"
538
+ msgstr ""
539
+
540
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:72
541
+ msgid "top"
542
+ msgstr ""
543
+
544
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:73
545
+ msgid "bottom"
546
+ msgstr ""
547
+
548
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:16
549
+ msgid "Custom Styles"
550
+ msgstr "Измененные стили"
551
+
552
+ #: views/SlideshowPluginPostType/information.php:1
553
+ msgid ""
554
+ "To use this slideshow in your website either add this piece of shortcode to "
555
+ "your posts or pages"
556
+ msgstr ""
557
+ "Для использования слайдшоу на вашем сайте добавьте этот шорткод в ваши "
558
+ "записи или страницы"
559
+
560
+ #: views/SlideshowPluginPostType/information.php:5
561
+ msgid ""
562
+ "Or add this piece of code to where ever in your website you want to place "
563
+ "the slideshow"
564
+ msgstr ""
565
+ "Или добавьте этот фрагмент кода в том месте, где вы желаете разместить ваше "
566
+ "слайдшоу"
567
+
568
+ #: views/SlideshowPluginPostType/information.php:9
569
+ #, php-format
570
+ msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
571
+ msgstr ""
572
+ "Или отправьтесь на %sстраницу виджетов%s и отобразите слайдшоу как виджет"
573
+
574
+ #: views/SlideshowPluginPostType/settings.php:26
575
+ #: views/SlideshowPluginPostType/style-settings.php:11
576
+ msgid "Default"
577
+ msgstr "Исходное"
578
+
579
+ #: views/SlideshowPluginPostType/slides.php:53
580
+ #: views/SlideshowPluginPostType/slides.php:190
581
+ #: views/SlideshowPluginSlideInserter/insert-text-button.php:1
582
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:6
583
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:41
584
+ msgid "Text slide"
585
+ msgstr "Текстовый слайд"
586
+
587
+ #: views/SlideshowPluginPostType/slides.php:60
588
+ #: views/SlideshowPluginPostType/slides.php:149
589
+ #: views/SlideshowPluginPostType/slides.php:197
590
+ #: views/SlideshowPluginPostType/slides.php:269
591
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:87
592
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:15
593
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:105
594
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:50
595
+ msgid "Description"
596
+ msgstr "Описание"
597
+
598
+ #: views/SlideshowPluginPostType/slides.php:62
599
+ #: views/SlideshowPluginPostType/slides.php:199
600
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:21
601
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:56
602
+ msgid "Background color"
603
+ msgstr "Фоновый цвет"
604
+
605
+ #: views/SlideshowPluginPostType/slides.php:67
606
+ #: views/SlideshowPluginPostType/slides.php:154
607
+ #: views/SlideshowPluginPostType/slides.php:204
608
+ #: views/SlideshowPluginPostType/slides.php:274
609
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:94
610
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:28
611
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:112
612
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:64
613
+ msgid "URL"
614
+ msgstr "URL"
615
+
616
+ #: views/SlideshowPluginPostType/slides.php:69
617
+ #: views/SlideshowPluginPostType/slides.php:156
618
+ #: views/SlideshowPluginPostType/slides.php:206
619
+ #: views/SlideshowPluginPostType/slides.php:276
620
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:97
621
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:31
622
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:115
623
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:67
624
+ msgid "Open URL in"
625
+ msgstr "Открыть URL в"
626
+
627
+ #: views/SlideshowPluginPostType/slides.php:71
628
+ #: views/SlideshowPluginPostType/slides.php:158
629
+ #: views/SlideshowPluginPostType/slides.php:208
630
+ #: views/SlideshowPluginPostType/slides.php:278
631
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:99
632
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:33
633
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:117
634
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:69
635
+ msgid "Same window"
636
+ msgstr "Текущее окно"
637
+
638
+ #: views/SlideshowPluginPostType/slides.php:72
639
+ #: views/SlideshowPluginPostType/slides.php:159
640
+ #: views/SlideshowPluginPostType/slides.php:209
641
+ #: views/SlideshowPluginPostType/slides.php:279
642
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:100
643
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:34
644
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:118
645
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:70
646
+ msgid "New window"
647
+ msgstr "Новое окно"
648
+
649
+ #: views/SlideshowPluginPostType/slides.php:89
650
+ #: views/SlideshowPluginPostType/slides.php:229
651
+ #: views/SlideshowPluginSlideInserter/insert-video-button.php:1
652
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:53
653
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:23
654
+ msgid "Video slide"
655
+ msgstr "Видео слайд"
656
+
657
+ #: views/SlideshowPluginPostType/slides.php:94
658
+ #: views/SlideshowPluginPostType/slides.php:234
659
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:59
660
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:29
661
+ msgid "Youtube Video ID"
662
+ msgstr "ID видео на Youtube"
663
+
664
+ #: views/SlideshowPluginPostType/slides.php:132
665
+ #: views/SlideshowPluginPostType/slides.php:254
666
+ #: views/SlideshowPluginSlideInserter/insert-image-button.php:1
667
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:66
668
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:86
669
+ msgid "Image slide"
670
+ msgstr "Слайд с изображением"
671
+
672
+ #: views/SlideshowPluginPostType/slides.php:170
673
+ msgid ""
674
+ "An error occurred while loading this slide, and it will not be present in "
675
+ "the slideshow"
676
+ msgstr ""
677
+ "При загрузке этого слайда произошла ошибка, он не будет отображен в слайдшоу"
678
+
679
+ #: views/SlideshowPluginPostType/slides.php:176
680
+ #: views/SlideshowPluginPostType/slides.php:217
681
+ #: views/SlideshowPluginPostType/slides.php:242
682
+ #: views/SlideshowPluginPostType/slides.php:288
683
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:109
684
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:42
685
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:75
686
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:127
687
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:78
688
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:45
689
+ msgid "Delete slide"
690
+ msgstr "Удалить слайд"
691
+
692
+ #: views/SlideshowPluginPostType/style-settings.php:22
693
+ #, php-format
694
+ msgid "Custom styles can be created and customized %shere%s."
695
+ msgstr "Стили могут быть созданы и изменены %sздесь%s."
696
+
697
+ #: views/SlideshowPluginPostType/support-plugin.php:3
698
+ msgid "Help to keep this plugin free!"
699
+ msgstr "Помогите сохранить плагин свободным!"
700
+
701
+ #: views/SlideshowPluginPostType/support-plugin.php:6
702
+ msgid ""
703
+ "In order to keep you provided with the newest features, updates and bug "
704
+ "fixes, a lot of motivation is required. Therefore I'm kindly asking you to "
705
+ "consider making a small donation to the plugin or rating it as 5-stars on "
706
+ "Wordpress.org. Thank you in advance!"
707
+ msgstr ""
708
+ "Для предоставления вам новейших возможностей, поддержки на форуме, "
709
+ "исправлении ошибок необходима значительная мотивация. Поэтому просим вас "
710
+ "сделать небольшое пожертвование плагину или оценить его в пять баллов на "
711
+ "сайте Wordpress.org. Заранее спасибо!"
712
+
713
+ #: views/SlideshowPluginPostType/support-plugin.php:15
714
+ msgid "Rate on Wordpress.org"
715
+ msgstr "Поставить оценку на Wordpress.org"
716
+
717
+ #: views/SlideshowPluginPostType/support-plugin.php:24
718
+ msgid "Frequently Asked Questions (FAQ)"
719
+ msgstr "Часто Задаваемые Вопросы (ЧАВО)"
720
+
721
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
722
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
723
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
724
+ msgid "Insert a Slideshow"
725
+ msgstr "Вставить слайдшоу"
726
+
727
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
728
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
729
+ msgid "Insert Slideshow"
730
+ msgstr "Вставка слайдшоу"
731
+
732
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
733
+ msgid "Select a slideshow"
734
+ msgstr "Выберите слайдшоу"
735
+
736
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
737
+ #: views/SlideshowPluginWidget/form.php:12
738
+ msgid "Untitled slideshow"
739
+ msgstr "Сладйшоу без заголовка"
740
+
741
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
742
+ msgid "Cancel"
743
+ msgstr "Отмена"
744
+
745
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
746
+ #, php-format
747
+ msgid ""
748
+ "It seems you haven't created any slideshows yet. %sYou can create a "
749
+ "slideshow here!%s"
750
+ msgstr "Нет ни одного слайдшоу. %sВы можете создать слайдшоу здесь!%s"
751
+
752
+ #: views/SlideshowPluginSlideInserter/search-popup.php:6
753
+ msgid "Search"
754
+ msgstr "Поиск"
755
+
756
+ #: views/SlideshowPluginSlideInserter/search-popup.php:7
757
+ msgid "Search images by title or ID"
758
+ msgstr "Поиск изображения по заголовку или ID"
759
+
760
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:18
761
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:53
762
+ msgid "Text color"
763
+ msgstr "Цвет текста"
764
+
765
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:66
766
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:36
767
+ msgid "Show related videos"
768
+ msgstr ""
769
+
770
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:58
771
+ msgid "(Leave empty for a transparent background)"
772
+ msgstr "(Оставить пустым для прозрачного фона)"
773
+
774
+ #: views/SlideshowPluginUpload/upload-button.php:1
775
+ msgid "Upload/Manage Images"
776
+ msgstr "Загрузка/Управление изображениями"
777
+
778
+ #: views/SlideshowPluginWidget/form.php:9
779
+ msgid "Random Slideshow"
780
+ msgstr "Случайный порядок слайдшоу"
781
+
782
+ #~ msgid "Questions / Suggestions"
783
+ #~ msgstr "Вопросы / Предложения"
784
+
785
+ #~ msgid "Custom style editor (Does not work with a Strict Doctype)"
786
+ #~ msgstr "Aangepaste stijl bewerker (Werkt niet met een Strict Doctype)"
787
+
788
+ #~ msgid "Has the Slideshow plugin helped you?"
789
+ #~ msgstr "Heeft de Slideshow plugin je geholpen?"
790
+
791
+ #~ msgid "Help it back!"
792
+ #~ msgstr "Help hem terug!"
793
+
794
+ #~ msgid ""
795
+ #~ "If this plugin has filled you with happiness, please support the upkeep "
796
+ #~ "of the plugin by rating it on Wordpress, posting a suggestion for "
797
+ #~ "improvement on the support forum, or making a donation."
798
+ #~ msgstr ""
799
+ #~ "Als deze plugin je met blijdschap heeft vervuld, zou ik het enorm "
800
+ #~ "waarderen als je de plugin wilt beoordelen op Wordpress, een suggestie "
801
+ #~ "wilt maken voor verbetering, of een donatie doen wilt."
802
+
803
+ #~ msgid "Click on an image to insert it as a slide"
804
+ #~ msgstr "Klik op een plaatje om deze in te voegen als slide"
805
+
806
+ #~ msgid "Width of the slideshow"
807
+ #~ msgstr "Breedte van de slideshow"
808
+
809
+ #~ msgid "Defaults to parent's width."
810
+ #~ msgstr "Standaard ingesteld op de breedte van het bovenliggende element."
811
+
812
+ #~ msgid "Send user to image URL on click"
813
+ #~ msgstr ""
814
+ #~ "Wanner de gebruiker op de afbeelding klikt, stuur hem naar de URL van het "
815
+ #~ "plaatje"
816
+
817
+ #~ msgid "Leave any field open to use default value."
818
+ #~ msgstr "Een veld dat open wordt gelaten neemt de standaardwaarde aan."
languages/slideshow-plugin-sv_SE.mo CHANGED
Binary file
languages/slideshow-plugin-sv_SE.po CHANGED
@@ -1,742 +1,778 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Slideshow Plugin\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-03-25 19:58+0100\n"
6
- "PO-Revision-Date: 2013-03-25 19:58+0100\n"
7
- "Last-Translator: Åke Isacsson <ake@nojdkund.se>\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.5.5\n"
15
- "X-Poedit-SearchPath-0: .\n"
16
-
17
- #: classes/SlideshowPluginGeneralSettings.php:64
18
- #: classes/SlideshowPluginGeneralSettings.php:65
19
- msgid "General Settings"
20
- msgstr "Genrella Inställningar"
21
-
22
- #: classes/SlideshowPluginGeneralSettings.php:146
23
- msgid "New"
24
- msgstr "Ny"
25
-
26
- #: classes/SlideshowPluginGeneralSettings.php:147
27
- msgid "Are you sure you want to delete this custom style?"
28
- msgstr "Vill du verkligen radera denna anpassade stil?"
29
-
30
- #: classes/SlideshowPluginGeneralSettings.php:166
31
- #: classes/SlideshowPluginInstaller.php:441
32
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:6
33
- msgid "Light"
34
- msgstr "Ljus"
35
-
36
- #: classes/SlideshowPluginGeneralSettings.php:167
37
- #: classes/SlideshowPluginInstaller.php:441
38
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:7
39
- msgid "Dark"
40
- msgstr "Mörk"
41
-
42
- #: classes/SlideshowPluginGeneralSettings.php:271
43
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:49
44
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:131
45
- msgid "Untitled"
46
- msgstr "Namnlös"
47
-
48
- #: classes/SlideshowPluginInstaller.php:438
49
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:378
50
- msgid "Yes"
51
- msgstr "Ja"
52
-
53
- #: classes/SlideshowPluginInstaller.php:439
54
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:379
55
- msgid "No"
56
- msgstr "Nej"
57
-
58
- #: classes/SlideshowPluginInstaller.php:441
59
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:477
60
- msgid "The style used for this slideshow"
61
- msgstr "Vald stil för detta bildspel"
62
-
63
- #: classes/SlideshowPluginInstaller.php:441
64
- msgid "Custom"
65
- msgstr "Anpassa"
66
-
67
- #: classes/SlideshowPluginInstaller.php:442
68
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:114
69
- msgid "Custom style editor"
70
- msgstr "Redigerare för anpassade stilar"
71
-
72
- #: classes/SlideshowPluginInstaller.php:443
73
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
74
- msgid "Animation used for transition between slides"
75
- msgstr "Animering som används för växling mellan bilder"
76
-
77
- #: classes/SlideshowPluginInstaller.php:443
78
- msgid "Slide"
79
- msgstr "Bildspelsbild"
80
-
81
- #: classes/SlideshowPluginInstaller.php:443
82
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
83
- msgid "Fade"
84
- msgstr "Tona"
85
-
86
- #: classes/SlideshowPluginInstaller.php:443
87
- #: classes/SlideshowPluginInstaller.php:444
88
- #: classes/SlideshowPluginInstaller.php:445
89
- #: classes/SlideshowPluginInstaller.php:446
90
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
91
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:420
92
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
93
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:422
94
- msgid "Animation"
95
- msgstr "Animering"
96
-
97
- #: classes/SlideshowPluginInstaller.php:444
98
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:420
99
- msgid "Number of seconds the slide takes to slide in"
100
- msgstr "Antal sekunder för bilden att glida in"
101
-
102
- #: classes/SlideshowPluginInstaller.php:445
103
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
104
- msgid "Number of seconds the description takes to slide in"
105
- msgstr "Antal sekunder det tar innan beskrivningen visas"
106
-
107
- #: classes/SlideshowPluginInstaller.php:446
108
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:422
109
- msgid "Seconds between changing slides"
110
- msgstr "Antal sekunder mellan bilder"
111
-
112
- #: classes/SlideshowPluginInstaller.php:447
113
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
114
- msgid "Number of slides to fit into one slide"
115
- msgstr "Antal bildelsbilder som får plats i en bildserie"
116
-
117
- #: classes/SlideshowPluginInstaller.php:447
118
- #: classes/SlideshowPluginInstaller.php:448
119
- #: classes/SlideshowPluginInstaller.php:449
120
- #: classes/SlideshowPluginInstaller.php:450
121
- #: classes/SlideshowPluginInstaller.php:451
122
- #: classes/SlideshowPluginInstaller.php:452
123
- #: classes/SlideshowPluginInstaller.php:453
124
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
125
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:424
126
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
127
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:426
128
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:427
129
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
130
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:429
131
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:430
132
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:431
133
- msgid "Display"
134
- msgstr "Visa"
135
-
136
- #: classes/SlideshowPluginInstaller.php:448
137
- msgid "Width of the slideshow, set to parent&#39;s width on 0"
138
- msgstr "Bredd för bildspel, satt till parent&#39;s bredd på 0"
139
-
140
- #: classes/SlideshowPluginInstaller.php:449
141
- msgid "Height of the slideshow"
142
- msgstr "Höjd bildspelet"
143
-
144
- #: classes/SlideshowPluginInstaller.php:450
145
- msgid "Height of the description boxes"
146
- msgstr "Höjd beskrivningsyta"
147
-
148
- #: classes/SlideshowPluginInstaller.php:451
149
- msgid "Fit image into slide (stretching it)"
150
- msgstr "Anpassa bild till bildspelsbildsytan (skala om ej propotionellt))"
151
-
152
- #: classes/SlideshowPluginInstaller.php:452
153
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:430
154
- msgid "Show title and description"
155
- msgstr "Visa titel och beskrivning"
156
-
157
- #: classes/SlideshowPluginInstaller.php:453
158
- msgid "Hide description box, it will pop up when a mouse hovers over the slide"
159
- msgstr "Dölj beskrivning, visas vid mus-över"
160
-
161
- #: classes/SlideshowPluginInstaller.php:454
162
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:432
163
- msgid "Automatically slide to the next slide"
164
- msgstr "Byt automatiskt till nästa bildspelsbild"
165
-
166
- #: classes/SlideshowPluginInstaller.php:454
167
- #: classes/SlideshowPluginInstaller.php:455
168
- #: classes/SlideshowPluginInstaller.php:456
169
- #: classes/SlideshowPluginInstaller.php:457
170
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:432
171
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:433
172
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:434
173
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:435
174
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:436
175
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:437
176
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:438
177
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:439
178
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:440
179
- msgid "Control"
180
- msgstr "Kontroll"
181
-
182
- #: classes/SlideshowPluginInstaller.php:455
183
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:433
184
- msgid "Return to the beginning of the slideshow after last slide"
185
- msgstr "Återgå till början av bildspelet efter sista bilden"
186
-
187
- #: classes/SlideshowPluginInstaller.php:456
188
- msgid "Activate buttons (so the user can scroll through the slides)"
189
- msgstr "Aktivera knappar (så användaren kan växla mellan bildspelsbilder)"
190
-
191
- #: classes/SlideshowPluginInstaller.php:457
192
- msgid "Show control panel (play and pause button)"
193
- msgstr "Visa kontrollpanel (spela och pausa knappar)"
194
-
195
- #: classes/SlideshowPluginPostType.php:38
196
- msgid "Slideshows"
197
- msgstr "Bildspel"
198
-
199
- #: classes/SlideshowPluginPostType.php:39
200
- #: views/SlideshowPluginWidget/form.php:7
201
- msgid "Slideshow"
202
- msgstr "Bildspel"
203
-
204
- #: classes/SlideshowPluginPostType.php:40
205
- msgid "Add New Slideshow"
206
- msgstr "Lägg till nytt bildspel"
207
-
208
- #: classes/SlideshowPluginPostType.php:41
209
- msgid "Edit slideshow"
210
- msgstr "Redigera bildspel"
211
-
212
- #: classes/SlideshowPluginPostType.php:42
213
- msgid "New slideshow"
214
- msgstr "Nytt bildspel"
215
-
216
- #: classes/SlideshowPluginPostType.php:43
217
- msgid "View slideshow"
218
- msgstr "Visa bildspel"
219
-
220
- #: classes/SlideshowPluginPostType.php:44
221
- msgid "Search slideshows"
222
- msgstr "Sök bildspel"
223
-
224
- #: classes/SlideshowPluginPostType.php:45
225
- #: classes/SlideshowPluginPostType.php:46
226
- msgid "No slideshows found"
227
- msgstr "Hittade inga bildspel"
228
-
229
- #: classes/SlideshowPluginPostType.php:155
230
- msgid "Information"
231
- msgstr "Information"
232
-
233
- #: classes/SlideshowPluginPostType.php:164
234
- msgid "Slides List"
235
- msgstr "Bildspelslista"
236
-
237
- #: classes/SlideshowPluginPostType.php:173
238
- msgid "Slideshow Style"
239
- msgstr "Bildspels stil"
240
-
241
- #: classes/SlideshowPluginPostType.php:182
242
- msgid "Slideshow Settings"
243
- msgstr "Bildspel inställningar"
244
-
245
- #: classes/SlideshowPluginPostType.php:232
246
- #: classes/SlideshowPluginSlideInserter.php:178
247
- #: views/SlideshowPluginPostType/slides.php:2
248
- msgid "Insert"
249
- msgstr "Infoga"
250
-
251
- #: classes/SlideshowPluginPostType.php:240
252
- #: views/SlideshowPluginPostType/slides.php:9
253
- msgid "Add slides to this slideshow by using one of the buttons above."
254
- msgstr "Lägg till bildspelsbilder genom knapparna ovan."
255
-
256
- #: classes/SlideshowPluginShortcode.php:132
257
- msgid "No slideshow selected."
258
- msgstr "Inget bildspel valt."
259
-
260
- #: classes/SlideshowPluginSlideInserter.php:151
261
- msgid "More results loaded"
262
- msgstr "Fler sökresultat laddade"
263
-
264
- #: classes/SlideshowPluginSlideInserter.php:187
265
- msgid "Load more results"
266
- msgstr "Ladda fler resultat"
267
-
268
- #: classes/SlideshowPluginSlideInserter.php:196
269
- msgid "No images were found, click here to upload some."
270
- msgstr "Inga bilder hittades, klicka här för att ladda upp några."
271
-
272
- #: classes/SlideshowPluginSlideInserter.php:273
273
- msgid "Are you sure you want to delete this slide?"
274
- msgstr "Vill du verkligen radera denna bildspelsbild?"
275
-
276
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
277
- msgid "Slide Left"
278
- msgstr "Animera vänster"
279
-
280
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
281
- msgid "Slide Right"
282
- msgstr "Animera höger"
283
-
284
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
285
- msgid "Slide Up"
286
- msgstr "Animera uppåt"
287
-
288
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
289
- msgid "Slide Down"
290
- msgstr "Animera nedåt"
291
-
292
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
293
- msgid "Direct Fade"
294
- msgstr "Tona direkt"
295
-
296
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
297
- msgid "Random Animation"
298
- msgstr "Slumpvald animering"
299
-
300
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:424
301
- msgid "Maximum width. When maximum width is 0, maximum width is ignored"
302
- msgstr ""
303
- "Maximal bredd. När maximal bredd är satt till 0, är maximal bredd ignorerad"
304
-
305
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
306
- msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
307
- msgstr "http://sv.wikipedia.org/wiki/Bildformat_(film)"
308
-
309
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
310
- msgid "More info"
311
- msgstr "Mer info"
312
-
313
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
314
- #, php-format
315
- msgid ""
316
- "Proportional relationship%s between slideshow's width and height (width:"
317
- "height)"
318
- msgstr "Propotionell relation%s mellan bildspelets bredd och höjd (bredd:höjd)"
319
-
320
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:426
321
- msgid "Slideshow's height"
322
- msgstr "Bildspelets höjd"
323
-
324
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:427
325
- msgid "Fit image into slide (Stretch image)"
326
- msgstr "Anpassa bilden i bildspelet (utvidga)"
327
-
328
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
329
- msgid "Shrink slideshow's height when width shrinks"
330
- msgstr "Minska bildspelets höjd när bredden minskas"
331
-
332
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:429
333
- msgid ""
334
- "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
335
- msgstr ""
336
- "Aktivara anpassning (förminska bildspelets bredd när sidans bredd minskas)"
337
-
338
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:431
339
- msgid "Hide description box, pop up when mouse hovers over"
340
- msgstr "Dölj beskrivnng, visas när mus-över"
341
-
342
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:434
343
- msgid "Pause slideshow when mouse hovers over"
344
- msgstr "Pausa bildspelet när mus-över"
345
-
346
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:435
347
- msgid "Activate navigation buttons"
348
- msgstr "Aktivera navigeringsknappar"
349
-
350
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:436
351
- msgid "Hide navigation buttons, show when mouse hovers over"
352
- msgstr "Dölj navigeringsknappar, visa när mus-över"
353
-
354
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:437
355
- msgid "Activate pagination"
356
- msgstr "Aktivera sidnumrering"
357
-
358
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:438
359
- msgid "Hide pagination, show when mouse hovers over"
360
- msgstr "Dölj sidnumrering, visa när mus-över"
361
-
362
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:439
363
- msgid "Activate control panel (play and pause button)"
364
- msgstr "Aktivera kontrollpanel (spela och paus knapp)"
365
-
366
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:440
367
- msgid "Hide control panel, show when mouse hovers over"
368
- msgstr "Göm kontrollpanel, visa när mus-över"
369
-
370
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:441
371
- msgid "Randomize slides"
372
- msgstr "Slumpvisa bildspelsbilder"
373
-
374
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:441
375
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:442
376
- msgid "Miscellaneous"
377
- msgstr "Diverse"
378
-
379
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:442
380
- #, php-format
381
- msgid "Avoid content filter (disable if '%s' is shown)"
382
- msgstr "Undvik innehåll filter (inaktivera om '%s' visas)"
383
-
384
- #: classes/SlideshowPluginWidget.php:23
385
- msgid "Enables you to show your slideshows in the widget area of your website."
386
- msgstr "Gör att du kan visa dina bildspel i Widget ytan på din webbsida."
387
-
388
- #: classes/SlideshowPluginWidget.php:29
389
- msgid "Slideshow Widget"
390
- msgstr "Bildspel Widget"
391
-
392
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:38
393
- msgid "Default stylesheets"
394
- msgstr "Standard stilmallar"
395
-
396
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:52
397
- msgid "Create a new custom style from this style"
398
- msgstr "Skapa en ny anpassad stil baserat på denna stil"
399
-
400
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:54
401
- msgid "Customize"
402
- msgstr "Anpassa"
403
-
404
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:68
405
- msgid "Custom stylesheets"
406
- msgstr "Anpassa stilmallar"
407
-
408
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:81
409
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:160
410
- msgid "Edit this style"
411
- msgstr "Redigera stil"
412
-
413
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:83
414
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:162
415
- #: views/SlideshowPluginPostType/slides.php:137
416
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:46
417
- msgid "Edit"
418
- msgstr "Redigera"
419
-
420
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:90
421
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:169
422
- msgid "Delete this style"
423
- msgstr "Radera denna stil"
424
-
425
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:92
426
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:171
427
- msgid "Delete"
428
- msgstr "Radera"
429
-
430
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:102
431
- msgid "Click 'Customize' to create a new custom stylesheet."
432
- msgstr "Klicka 'Anpassa' för att skapa en ny anpassad stilmall"
433
-
434
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:118
435
- msgid "Select a stylesheet from the left to start customizing it."
436
- msgstr "Välj en stilmall till vänster för att börja anpassa den."
437
-
438
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:127
439
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:180
440
- #: views/SlideshowPluginPostType/slides.php:58
441
- #: views/SlideshowPluginPostType/slides.php:143
442
- #: views/SlideshowPluginPostType/slides.php:195
443
- #: views/SlideshowPluginPostType/slides.php:263
444
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:54
445
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:12
446
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:90
447
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:29
448
- #: views/SlideshowPluginWidget/form.php:2
449
- msgid "Title"
450
- msgstr "Titel"
451
-
452
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:136
453
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:188
454
- msgid "Style"
455
- msgstr "Stil"
456
-
457
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:11
458
- msgid "Note"
459
- msgstr "Anteckning"
460
-
461
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:18
462
- #, php-format
463
- msgid ""
464
- "The settings set on this page apply only to newly created slideshows and "
465
- "therefore do not alter any existing ones. To adapt a slideshow's settings, "
466
- "%sclick here.%s"
467
- msgstr ""
468
- "Inställningarna som görs på denna sida appliceras bara till nya bildspel som "
469
- "skapas och därför ej på redan befintliga bildspel. För att applicera "
470
- "bildspelsinställningar, %sklicka här.%s"
471
-
472
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:30
473
- #: views/SlideshowPluginGeneralSettings/general-settings.php:16
474
- msgid "Default Slideshow Settings"
475
- msgstr "Standard Bildspelsinställningar"
476
-
477
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:43
478
- #: views/SlideshowPluginPostType/settings.php:12
479
- msgid "settings"
480
- msgstr "inställningar"
481
-
482
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:80
483
- msgid "Default Slideshow Stylesheet"
484
- msgstr "Standar Bildspel stilmall"
485
-
486
- #: views/SlideshowPluginGeneralSettings/general-settings.php:15
487
- msgid "User Capabilities"
488
- msgstr "Användar möjligheter"
489
-
490
- #: views/SlideshowPluginGeneralSettings/general-settings.php:17
491
- msgid "Custom Styles"
492
- msgstr "Anpassade stilar"
493
-
494
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:8
495
- msgid "Add slideshows"
496
- msgstr "Lägg till bildspel"
497
-
498
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:9
499
- msgid "Edit slideshows"
500
- msgstr "REdigera bildspel"
501
-
502
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:10
503
- msgid "Delete slideshows"
504
- msgstr "Radera bildspel"
505
-
506
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:18
507
- msgid "Select the user roles that will able to perform certain actions."
508
- msgstr "Välj den användar roll som har möjlighet att utföra vissa åtgärder."
509
-
510
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:35
511
- msgid "Untitled role"
512
- msgstr "Namnlös roll"
513
-
514
- #: views/SlideshowPluginPostType/information.php:1
515
- msgid ""
516
- "To use this slideshow in your website either add this piece of shortcode to "
517
- "your posts or pages"
518
- msgstr ""
519
- "För att använda detta bildspel din webbsida lägger du till denna del av "
520
- "kortkoden på dina inlägg eller sidor"
521
-
522
- #: views/SlideshowPluginPostType/information.php:5
523
- msgid ""
524
- "Or add this piece of code to where ever in your website you want to place "
525
- "the slideshow"
526
- msgstr ""
527
- "Eller lägg till denna del av koden på valfri plats på din webbsida där du "
528
- "vill placera bildspelet"
529
-
530
- #: views/SlideshowPluginPostType/information.php:9
531
- #, php-format
532
- msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
533
- msgstr "Eller gå till %swidget sidan%s och visa bildspelet som en widget"
534
-
535
- #: views/SlideshowPluginPostType/settings.php:26
536
- #: views/SlideshowPluginPostType/style-settings.php:11
537
- msgid "Default"
538
- msgstr "Standard"
539
-
540
- #: views/SlideshowPluginPostType/slides.php:53
541
- #: views/SlideshowPluginPostType/slides.php:190
542
- #: views/SlideshowPluginSlideInserter/insert-text-button.php:1
543
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:6
544
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:23
545
- msgid "Text slide"
546
- msgstr "Text bildspelsbild"
547
-
548
- #: views/SlideshowPluginPostType/slides.php:60
549
- #: views/SlideshowPluginPostType/slides.php:149
550
- #: views/SlideshowPluginPostType/slides.php:197
551
- #: views/SlideshowPluginPostType/slides.php:269
552
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:61
553
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:15
554
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:97
555
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:32
556
- msgid "Description"
557
- msgstr "Beskrivning"
558
-
559
- #: views/SlideshowPluginPostType/slides.php:62
560
- #: views/SlideshowPluginPostType/slides.php:199
561
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:21
562
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:38
563
- msgid "Background color"
564
- msgstr "Bakgrundsfärg"
565
-
566
- #: views/SlideshowPluginPostType/slides.php:67
567
- #: views/SlideshowPluginPostType/slides.php:154
568
- #: views/SlideshowPluginPostType/slides.php:204
569
- #: views/SlideshowPluginPostType/slides.php:274
570
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:68
571
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:28
572
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:104
573
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:46
574
- msgid "URL"
575
- msgstr "URL"
576
-
577
- #: views/SlideshowPluginPostType/slides.php:69
578
- #: views/SlideshowPluginPostType/slides.php:156
579
- #: views/SlideshowPluginPostType/slides.php:206
580
- #: views/SlideshowPluginPostType/slides.php:276
581
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:71
582
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:31
583
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:107
584
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:49
585
- msgid "Open URL in"
586
- msgstr "Öppna URL i"
587
-
588
- #: views/SlideshowPluginPostType/slides.php:71
589
- #: views/SlideshowPluginPostType/slides.php:158
590
- #: views/SlideshowPluginPostType/slides.php:208
591
- #: views/SlideshowPluginPostType/slides.php:278
592
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:73
593
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:33
594
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:109
595
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:51
596
- msgid "Same window"
597
- msgstr "Samma fönster"
598
-
599
- #: views/SlideshowPluginPostType/slides.php:72
600
- #: views/SlideshowPluginPostType/slides.php:159
601
- #: views/SlideshowPluginPostType/slides.php:209
602
- #: views/SlideshowPluginPostType/slides.php:279
603
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:74
604
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:34
605
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:110
606
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:52
607
- msgid "New window"
608
- msgstr "Nytt fönster"
609
-
610
- #: views/SlideshowPluginPostType/slides.php:89
611
- #: views/SlideshowPluginPostType/slides.php:229
612
- #: views/SlideshowPluginSlideInserter/insert-video-button.php:1
613
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:53
614
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:13
615
- msgid "Video slide"
616
- msgstr "Video bildspel"
617
-
618
- #: views/SlideshowPluginPostType/slides.php:94
619
- #: views/SlideshowPluginPostType/slides.php:234
620
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:59
621
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:19
622
- msgid "Youtube Video ID"
623
- msgstr "Youtube Video ID"
624
-
625
- #: views/SlideshowPluginPostType/slides.php:132
626
- #: views/SlideshowPluginPostType/slides.php:254
627
- #: views/SlideshowPluginSlideInserter/insert-image-button.php:1
628
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:40
629
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:78
630
- msgid "Image slide"
631
- msgstr "Bildspels bild"
632
-
633
- #: views/SlideshowPluginPostType/slides.php:170
634
- msgid ""
635
- "An error occurred while loading this slide, and it will not be present in "
636
- "the slideshow"
637
- msgstr ""
638
- "Ett fel inträffade när bilden laddades. Den kommer inte att visas i "
639
- "bildspelet"
640
-
641
- #: views/SlideshowPluginPostType/slides.php:176
642
- #: views/SlideshowPluginPostType/slides.php:217
643
- #: views/SlideshowPluginPostType/slides.php:242
644
- #: views/SlideshowPluginPostType/slides.php:288
645
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:83
646
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:42
647
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:67
648
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:119
649
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:60
650
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:27
651
- msgid "Delete slide"
652
- msgstr "Radera bild"
653
-
654
- #: views/SlideshowPluginPostType/style-settings.php:22
655
- #, php-format
656
- msgid "Custom styles can be created and customized %shere%s."
657
- msgstr "Personliga anpassningar kan skapas och anpassas %shär%s."
658
-
659
- #: views/SlideshowPluginPostType/support-plugin.php:3
660
- msgid "Help to keep this plugin free!"
661
- msgstr "Hjälp till att hålla detta tillägg kostnadsfritt!"
662
-
663
- #: views/SlideshowPluginPostType/support-plugin.php:6
664
- msgid ""
665
- "In order to keep you provided with the newest features, forum support, and "
666
- "bug-fixes, a lot of motivation is required. Therefore I'm kindly asking you "
667
- "to consider making a small donation to the plugin or rating it as 5-stars on "
668
- "Wordpress.org. Thank you in advance!"
669
- msgstr ""
670
- "För att förse dig med dom nyaste funktionerna, supportforum, och bug-fixar "
671
- "krävs en stor del motivation. Därför ber jag dig vänligast att överväga att "
672
- "göra en liten donation till detta tillägg eller poängsätta det som en 5-"
673
- "stjärnigt tillägg på Wordpress.org. Tack på förhand!"
674
-
675
- #: views/SlideshowPluginPostType/support-plugin.php:15
676
- msgid "Rate on Wordpress.org"
677
- msgstr "Poängsätt på Wordpress.org"
678
-
679
- #: views/SlideshowPluginPostType/support-plugin.php:24
680
- msgid "Frequently Asked Questions (FAQ)"
681
- msgstr "Vanliga frågor (FAQ)"
682
-
683
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
684
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
685
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
686
- msgid "Insert a Slideshow"
687
- msgstr "Infoga ett bildspel"
688
-
689
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
690
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
691
- msgid "Insert Slideshow"
692
- msgstr "Infoga bildspel"
693
-
694
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
695
- msgid "Select a slideshow"
696
- msgstr "Välj bildspel"
697
-
698
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
699
- #: views/SlideshowPluginWidget/form.php:12
700
- msgid "Untitled slideshow"
701
- msgstr "Namnlöst bildspel"
702
-
703
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
704
- msgid "Cancel"
705
- msgstr "Avbryt"
706
-
707
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
708
- #, php-format
709
- msgid ""
710
- "It seems you haven't created any slideshows yet. %sYou can create a "
711
- "slideshow here!%s"
712
- msgstr ""
713
- "Det verkar som att du inte har skapat några bildspel ännu. %sDu kan skapa "
714
- "ett bildspel här!%s"
715
-
716
- #: views/SlideshowPluginSlideInserter/search-popup.php:6
717
- msgid "Search"
718
- msgstr "Sök"
719
-
720
- #: views/SlideshowPluginSlideInserter/search-popup.php:7
721
- msgid "Search images by title or ID"
722
- msgstr "Sök bilder per titel eller ID"
723
-
724
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:18
725
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:35
726
- msgid "Text color"
727
- msgstr "Text färg"
728
-
729
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:40
730
- msgid "(Leave empty for a transparent background)"
731
- msgstr "(Lämna tomt för genomskinlig bakgrund)"
732
-
733
- #: views/SlideshowPluginUpload/upload-button.php:1
734
- msgid "Upload/Manage Images"
735
- msgstr "Ladda upp/Hantera bilder"
736
-
737
- #: views/SlideshowPluginWidget/form.php:9
738
- msgid "Random Slideshow"
739
- msgstr "Slumpvalt Bildspel"
740
-
741
- #~ msgid "Leave any field open to use default value."
742
- #~ msgstr "Een veld dat open wordt gelaten neemt de standaardwaarde aan."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Slideshow Plugin\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-08-21 10:51+0100\n"
6
+ "PO-Revision-Date: 2013-08-21 10:51+0100\n"
7
+ "Last-Translator: Åke Isacsson <ake@nojdkund.se>\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.5.7\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 "Genrella Inställningar"
22
+
23
+ #: classes/SlideshowPluginGeneralSettings.php:150
24
+ msgid "New"
25
+ msgstr "Ny"
26
+
27
+ #: classes/SlideshowPluginGeneralSettings.php:151
28
+ msgid "Are you sure you want to delete this custom style?"
29
+ msgstr "Vill du verkligen radera denna anpassade stil?"
30
+
31
+ #: classes/SlideshowPluginGeneralSettings.php:196
32
+ #: classes/SlideshowPluginInstaller.php:516
33
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:6
34
+ msgid "Light"
35
+ msgstr "Ljus"
36
+
37
+ #: classes/SlideshowPluginGeneralSettings.php:197
38
+ #: classes/SlideshowPluginInstaller.php:516
39
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:7
40
+ msgid "Dark"
41
+ msgstr "Mörk"
42
+
43
+ #: classes/SlideshowPluginGeneralSettings.php:353
44
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:57
45
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:139
46
+ msgid "Untitled"
47
+ msgstr "Namnlös"
48
+
49
+ #: classes/SlideshowPluginInstaller.php:513
50
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:472
51
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:67
52
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:37
53
+ msgid "Yes"
54
+ msgstr "Ja"
55
+
56
+ #: classes/SlideshowPluginInstaller.php:514
57
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:473
58
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:68
59
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:38
60
+ msgid "No"
61
+ msgstr "Nej"
62
+
63
+ #: classes/SlideshowPluginInstaller.php:516
64
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:610
65
+ msgid "The style used for this slideshow"
66
+ msgstr "Vald stil för detta bildspel"
67
+
68
+ #: classes/SlideshowPluginInstaller.php:516
69
+ msgid "Custom"
70
+ msgstr "Anpassa"
71
+
72
+ #: classes/SlideshowPluginInstaller.php:517
73
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:122
74
+ msgid "Custom style editor"
75
+ msgstr "Redigerare för anpassade stilar"
76
+
77
+ #: classes/SlideshowPluginInstaller.php:518
78
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:518
79
+ msgid "Animation used for transition between slides"
80
+ msgstr "Animering som används för växling mellan bilder"
81
+
82
+ #: classes/SlideshowPluginInstaller.php:518
83
+ msgid "Slide"
84
+ msgstr "Bildspelsbild"
85
+
86
+ #: classes/SlideshowPluginInstaller.php:518
87
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
88
+ msgid "Fade"
89
+ msgstr "Tona"
90
+
91
+ #: classes/SlideshowPluginInstaller.php:518
92
+ #: classes/SlideshowPluginInstaller.php:519
93
+ #: classes/SlideshowPluginInstaller.php:520
94
+ #: classes/SlideshowPluginInstaller.php:521
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 "Animering"
101
+
102
+ #: classes/SlideshowPluginInstaller.php:519
103
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:519
104
+ msgid "Number of seconds the slide takes to slide in"
105
+ msgstr "Antal sekunder för bilden att glida in"
106
+
107
+ #: classes/SlideshowPluginInstaller.php:520
108
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:520
109
+ msgid "Number of seconds the description takes to slide in"
110
+ msgstr "Antal sekunder det tar innan beskrivningen visas"
111
+
112
+ #: classes/SlideshowPluginInstaller.php:521
113
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:521
114
+ msgid "Seconds between changing slides"
115
+ msgstr "Antal sekunder mellan bilder"
116
+
117
+ #: classes/SlideshowPluginInstaller.php:522
118
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:522
119
+ msgid "Number of slides to fit into one slide"
120
+ msgstr "Antal bildelsbilder som får plats i en bildserie"
121
+
122
+ #: classes/SlideshowPluginInstaller.php:522
123
+ #: classes/SlideshowPluginInstaller.php:523
124
+ #: classes/SlideshowPluginInstaller.php:524
125
+ #: classes/SlideshowPluginInstaller.php:525
126
+ #: classes/SlideshowPluginInstaller.php:526
127
+ #: classes/SlideshowPluginInstaller.php:527
128
+ #: classes/SlideshowPluginInstaller.php:528
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 "Visa"
140
+
141
+ #: classes/SlideshowPluginInstaller.php:523
142
+ msgid "Width of the slideshow, set to parent&#39;s width on 0"
143
+ msgstr "Bredd för bildspel, satt till parent&#39;s bredd på 0"
144
+
145
+ #: classes/SlideshowPluginInstaller.php:524
146
+ msgid "Height of the slideshow"
147
+ msgstr "Höjd på bildspelet"
148
+
149
+ #: classes/SlideshowPluginInstaller.php:525
150
+ msgid "Height of the description boxes"
151
+ msgstr "Höjd på beskrivningsyta"
152
+
153
+ #: classes/SlideshowPluginInstaller.php:526
154
+ msgid "Fit image into slide (stretching it)"
155
+ msgstr "Anpassa bild till bildspelsbildsytan (skala om ej propotionellt))"
156
+
157
+ #: classes/SlideshowPluginInstaller.php:527
158
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:529
159
+ msgid "Show title and description"
160
+ msgstr "Visa titel och beskrivning"
161
+
162
+ #: classes/SlideshowPluginInstaller.php:528
163
+ msgid "Hide description box, it will pop up when a mouse hovers over the slide"
164
+ msgstr "Dölj beskrivning, visas vid mus-över"
165
+
166
+ #: classes/SlideshowPluginInstaller.php:529
167
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:531
168
+ msgid "Automatically slide to the next slide"
169
+ msgstr "Byt automatiskt till nästa bildspelsbild"
170
+
171
+ #: classes/SlideshowPluginInstaller.php:529
172
+ #: classes/SlideshowPluginInstaller.php:530
173
+ #: classes/SlideshowPluginInstaller.php:531
174
+ #: classes/SlideshowPluginInstaller.php:532
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 "Kontroll"
186
+
187
+ #: classes/SlideshowPluginInstaller.php:530
188
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:532
189
+ msgid "Return to the beginning of the slideshow after last slide"
190
+ msgstr "Återgå till början av bildspelet efter sista bilden"
191
+
192
+ #: classes/SlideshowPluginInstaller.php:531
193
+ msgid "Activate buttons (so the user can scroll through the slides)"
194
+ msgstr "Aktivera knappar (så användaren kan växla mellan bildspelsbilder)"
195
+
196
+ #: classes/SlideshowPluginInstaller.php:532
197
+ msgid "Show control panel (play and pause button)"
198
+ msgstr "Visa kontrollpanel (spela och pausa knappar)"
199
+
200
+ #: classes/SlideshowPluginPostType.php:38
201
+ msgid "Slideshows"
202
+ msgstr "Bildspel"
203
+
204
+ #: classes/SlideshowPluginPostType.php:39
205
+ #: views/SlideshowPluginWidget/form.php:7
206
+ msgid "Slideshow"
207
+ msgstr "Bildspel"
208
+
209
+ #: classes/SlideshowPluginPostType.php:40
210
+ msgid "Add New Slideshow"
211
+ msgstr "Lägg till nytt bildspel"
212
+
213
+ #: classes/SlideshowPluginPostType.php:41
214
+ msgid "Edit slideshow"
215
+ msgstr "Redigera bildspel"
216
+
217
+ #: classes/SlideshowPluginPostType.php:42
218
+ msgid "New slideshow"
219
+ msgstr "Nytt bildspel"
220
+
221
+ #: classes/SlideshowPluginPostType.php:43
222
+ msgid "View slideshow"
223
+ msgstr "Visa bildspel"
224
+
225
+ #: classes/SlideshowPluginPostType.php:44
226
+ msgid "Search slideshows"
227
+ msgstr "Sök bildspel"
228
+
229
+ #: classes/SlideshowPluginPostType.php:45
230
+ #: classes/SlideshowPluginPostType.php:46
231
+ msgid "No slideshows found"
232
+ msgstr "Hittade inga bildspel"
233
+
234
+ #: classes/SlideshowPluginPostType.php:91
235
+ msgid "Information"
236
+ msgstr "Information"
237
+
238
+ #: classes/SlideshowPluginPostType.php:100
239
+ msgid "Slides List"
240
+ msgstr "Bildspelslista"
241
+
242
+ #: classes/SlideshowPluginPostType.php:109
243
+ msgid "Slideshow Style"
244
+ msgstr "Bildspels stil"
245
+
246
+ #: classes/SlideshowPluginPostType.php:118
247
+ msgid "Slideshow Settings"
248
+ msgstr "Bildspel inställningar"
249
+
250
+ #: classes/SlideshowPluginPostType.php:174
251
+ #: classes/SlideshowPluginSlideInserter.php:222
252
+ #: views/SlideshowPluginPostType/slides.php:2
253
+ msgid "Insert"
254
+ msgstr "Infoga"
255
+
256
+ #: classes/SlideshowPluginPostType.php:183
257
+ #: views/SlideshowPluginPostType/slides.php:9
258
+ msgid "Add slides to this slideshow by using one of the buttons above."
259
+ msgstr "Lägg till bildspelsbilder genom knapparna ovan."
260
+
261
+ #: classes/SlideshowPluginShortcode.php:148
262
+ msgid "No slideshow selected."
263
+ msgstr "Inget bildspel valt."
264
+
265
+ #: classes/SlideshowPluginSlideInserter.php:178
266
+ msgid "More results loaded"
267
+ msgstr "Fler sökresultat laddade"
268
+
269
+ #: classes/SlideshowPluginSlideInserter.php:233
270
+ msgid "Load more results"
271
+ msgstr "Ladda fler resultat"
272
+
273
+ #: classes/SlideshowPluginSlideInserter.php:244
274
+ msgid "No images were found, click here to upload some."
275
+ msgstr "Inga bilder hittades, klicka här för att ladda upp några."
276
+
277
+ #: classes/SlideshowPluginSlideInserter.php:316
278
+ msgid "Are you sure you want to delete this slide?"
279
+ msgstr "Vill du verkligen radera denna bildspelsbild?"
280
+
281
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:523
282
+ msgid "Maximum width. When maximum width is 0, maximum width is ignored"
283
+ msgstr ""
284
+ "Maximal bredd. När maximal bredd är satt till 0, är maximal bredd ignorerad"
285
+
286
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
287
+ msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
288
+ msgstr "http://sv.wikipedia.org/wiki/Bildformat_(film)"
289
+
290
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
291
+ msgid "More info"
292
+ msgstr "Mer info"
293
+
294
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
295
+ #, php-format
296
+ msgid ""
297
+ "Proportional relationship%s between slideshow's width and height (width:"
298
+ "height)"
299
+ msgstr "Propotionell relation%s mellan bildspelets bredd och höjd (bredd:höjd)"
300
+
301
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:525
302
+ msgid "Slideshow's height"
303
+ msgstr "Bildspelets höjd"
304
+
305
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:526
306
+ msgid "Fit image into slide (Stretch image)"
307
+ msgstr "Anpassa bilden i bildspelet (utvidga)"
308
+
309
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:527
310
+ msgid "Shrink slideshow's height when width shrinks"
311
+ msgstr "Minska bildspelets höjd när bredden minskas"
312
+
313
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:528
314
+ msgid ""
315
+ "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
316
+ msgstr ""
317
+ "Aktivara anpassning (förminska bildspelets bredd när sidans bredd minskas)"
318
+
319
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:530
320
+ msgid "Hide description box, pop up when mouse hovers over"
321
+ msgstr "Dölj beskrivnng, visas när mus-över"
322
+
323
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:533
324
+ msgid "Pause slideshow when mouse hovers over"
325
+ msgstr "Pausa bildspelet när mus-över"
326
+
327
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:534
328
+ msgid "Activate navigation buttons"
329
+ msgstr "Aktivera navigeringsknappar"
330
+
331
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:535
332
+ msgid "Hide navigation buttons, show when mouse hovers over"
333
+ msgstr "Dölj navigeringsknappar, visa när mus-över"
334
+
335
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:536
336
+ msgid "Activate pagination"
337
+ msgstr "Aktivera sidnumrering"
338
+
339
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:537
340
+ msgid "Hide pagination, show when mouse hovers over"
341
+ msgstr "Dölj sidnumrering, visa när mus-över"
342
+
343
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:538
344
+ msgid "Activate control panel (play and pause button)"
345
+ msgstr "Aktivera kontrollpanel (spela och paus knapp)"
346
+
347
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:539
348
+ msgid "Hide control panel, show when mouse hovers over"
349
+ msgstr "Göm kontrollpanel, visa när mus-över"
350
+
351
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:540
352
+ msgid "Wait until the next slide has loaded before showing it"
353
+ msgstr ""
354
+
355
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:541
356
+ msgid "Show a loading icon until the first slide appears"
357
+ msgstr ""
358
+
359
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:542
360
+ msgid "Randomize slides"
361
+ msgstr "Slumpvisa bildspelsbilder"
362
+
363
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:543
364
+ #, php-format
365
+ msgid "Avoid content filter (disable if '%s' is shown)"
366
+ msgstr "Undvik innehåll filter (inaktivera om '%s' visas)"
367
+
368
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
369
+ msgid "Slide Left"
370
+ msgstr "Animera vänster"
371
+
372
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
373
+ msgid "Slide Right"
374
+ msgstr "Animera höger"
375
+
376
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
377
+ msgid "Slide Up"
378
+ msgstr "Animera uppåt"
379
+
380
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
381
+ msgid "Slide Down"
382
+ msgstr "Animera nedåt"
383
+
384
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
385
+ msgid "Direct Fade"
386
+ msgstr "Tona direkt"
387
+
388
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
389
+ msgid "Random Animation"
390
+ msgstr "Slumpvald animering"
391
+
392
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:569
393
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:570
394
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:571
395
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:572
396
+ msgid "Miscellaneous"
397
+ msgstr "Diverse"
398
+
399
+ #: classes/SlideshowPluginWidget.php:23
400
+ msgid "Enables you to show your slideshows in the widget area of your website."
401
+ msgstr "Gör att du kan visa dina bildspel i Widget ytan på din webbsida."
402
+
403
+ #: classes/SlideshowPluginWidget.php:29
404
+ msgid "Slideshow Widget"
405
+ msgstr "Bildspel Widget"
406
+
407
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:46
408
+ msgid "Default stylesheets"
409
+ msgstr "Standard stilmallar"
410
+
411
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:60
412
+ msgid "Create a new custom style from this style"
413
+ msgstr "Skapa en ny anpassad stil baserat på denna stil"
414
+
415
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:62
416
+ msgid "Customize"
417
+ msgstr "Anpassa"
418
+
419
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:76
420
+ msgid "Custom stylesheets"
421
+ msgstr "Anpassa stilmallar"
422
+
423
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:89
424
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:168
425
+ msgid "Edit this style"
426
+ msgstr "Redigera stil"
427
+
428
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:91
429
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:170
430
+ #: views/SlideshowPluginPostType/slides.php:137
431
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:72
432
+ msgid "Edit"
433
+ msgstr "Redigera"
434
+
435
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:98
436
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:177
437
+ msgid "Delete this style"
438
+ msgstr "Radera denna stil"
439
+
440
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:100
441
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:179
442
+ msgid "Delete"
443
+ msgstr "Radera"
444
+
445
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:110
446
+ msgid "Click 'Customize' to create a new custom stylesheet."
447
+ msgstr "Klicka 'Anpassa' för att skapa en ny anpassad stilmall"
448
+
449
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:126
450
+ msgid "Select a stylesheet from the left to start customizing it."
451
+ msgstr "Välj en stilmall till vänster för att börja anpassa den."
452
+
453
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:135
454
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:188
455
+ #: views/SlideshowPluginPostType/slides.php:58
456
+ #: views/SlideshowPluginPostType/slides.php:143
457
+ #: views/SlideshowPluginPostType/slides.php:195
458
+ #: views/SlideshowPluginPostType/slides.php:263
459
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:80
460
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:12
461
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:98
462
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:47
463
+ #: views/SlideshowPluginWidget/form.php:2
464
+ msgid "Title"
465
+ msgstr "Titel"
466
+
467
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:144
468
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:196
469
+ msgid "Style"
470
+ msgstr "Stil"
471
+
472
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:11
473
+ msgid "Note"
474
+ msgstr "Anteckning"
475
+
476
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:18
477
+ #, php-format
478
+ msgid ""
479
+ "The settings set on this page apply only to newly created slideshows and "
480
+ "therefore do not alter any existing ones. To adapt a slideshow's settings, "
481
+ "%sclick here.%s"
482
+ msgstr ""
483
+ "Inställningarna som görs på denna sida appliceras bara till nya bildspel som "
484
+ "skapas och därför ej på redan befintliga bildspel. För att applicera "
485
+ "bildspelsinställningar, %sklicka här.%s"
486
+
487
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:29
488
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:15
489
+ msgid "Default Slideshow Settings"
490
+ msgstr "Standard Bildspelsinställningar"
491
+
492
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:41
493
+ #: views/SlideshowPluginPostType/settings.php:12
494
+ msgid "settings"
495
+ msgstr "inställningar"
496
+
497
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:77
498
+ msgid "Default Slideshow Stylesheet"
499
+ msgstr "Standar Bildspel stilmall"
500
+
501
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:11
502
+ msgid "Add slideshows"
503
+ msgstr "Lägg till bildspel"
504
+
505
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:12
506
+ msgid "Edit slideshows"
507
+ msgstr "REdigera bildspel"
508
+
509
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:13
510
+ msgid "Delete slideshows"
511
+ msgstr "Radera bildspel"
512
+
513
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:20
514
+ msgid "User Capabilities"
515
+ msgstr "Användar möjligheter"
516
+
517
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:22
518
+ msgid "Select the user roles that will able to perform certain actions."
519
+ msgstr "Välj den användar roll som har möjlighet att utföra vissa åtgärder."
520
+
521
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:38
522
+ msgid "Untitled role"
523
+ msgstr "Namnlös roll"
524
+
525
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:65
526
+ msgid "Settings"
527
+ msgstr "inställningar"
528
+
529
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:69
530
+ msgid "Stylesheet location"
531
+ msgstr ""
532
+
533
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:72
534
+ msgid "top"
535
+ msgstr ""
536
+
537
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:73
538
+ msgid "bottom"
539
+ msgstr ""
540
+
541
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:16
542
+ msgid "Custom Styles"
543
+ msgstr "Anpassade stilar"
544
+
545
+ #: views/SlideshowPluginPostType/information.php:1
546
+ msgid ""
547
+ "To use this slideshow in your website either add this piece of shortcode to "
548
+ "your posts or pages"
549
+ msgstr ""
550
+ "För att använda detta bildspel på din webbsida lägger du till denna del av "
551
+ "kortkoden på dina inlägg eller sidor"
552
+
553
+ #: views/SlideshowPluginPostType/information.php:5
554
+ msgid ""
555
+ "Or add this piece of code to where ever in your website you want to place "
556
+ "the slideshow"
557
+ msgstr ""
558
+ "Eller lägg till denna del av koden på valfri plats på din webbsida där du "
559
+ "vill placera bildspelet"
560
+
561
+ #: views/SlideshowPluginPostType/information.php:9
562
+ #, php-format
563
+ msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
564
+ msgstr "Eller gå till %swidget sidan%s och visa bildspelet som en widget"
565
+
566
+ #: views/SlideshowPluginPostType/settings.php:26
567
+ #: views/SlideshowPluginPostType/style-settings.php:11
568
+ msgid "Default"
569
+ msgstr "Standard"
570
+
571
+ #: views/SlideshowPluginPostType/slides.php:53
572
+ #: views/SlideshowPluginPostType/slides.php:190
573
+ #: views/SlideshowPluginSlideInserter/insert-text-button.php:1
574
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:6
575
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:41
576
+ msgid "Text slide"
577
+ msgstr "Text bildspelsbild"
578
+
579
+ #: views/SlideshowPluginPostType/slides.php:60
580
+ #: views/SlideshowPluginPostType/slides.php:149
581
+ #: views/SlideshowPluginPostType/slides.php:197
582
+ #: views/SlideshowPluginPostType/slides.php:269
583
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:87
584
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:15
585
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:105
586
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:50
587
+ msgid "Description"
588
+ msgstr "Beskrivning"
589
+
590
+ #: views/SlideshowPluginPostType/slides.php:62
591
+ #: views/SlideshowPluginPostType/slides.php:199
592
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:21
593
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:56
594
+ msgid "Background color"
595
+ msgstr "Bakgrundsfärg"
596
+
597
+ #: views/SlideshowPluginPostType/slides.php:67
598
+ #: views/SlideshowPluginPostType/slides.php:154
599
+ #: views/SlideshowPluginPostType/slides.php:204
600
+ #: views/SlideshowPluginPostType/slides.php:274
601
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:94
602
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:28
603
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:112
604
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:64
605
+ msgid "URL"
606
+ msgstr "URL"
607
+
608
+ #: views/SlideshowPluginPostType/slides.php:69
609
+ #: views/SlideshowPluginPostType/slides.php:156
610
+ #: views/SlideshowPluginPostType/slides.php:206
611
+ #: views/SlideshowPluginPostType/slides.php:276
612
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:97
613
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:31
614
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:115
615
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:67
616
+ msgid "Open URL in"
617
+ msgstr "Öppna URL i"
618
+
619
+ #: views/SlideshowPluginPostType/slides.php:71
620
+ #: views/SlideshowPluginPostType/slides.php:158
621
+ #: views/SlideshowPluginPostType/slides.php:208
622
+ #: views/SlideshowPluginPostType/slides.php:278
623
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:99
624
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:33
625
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:117
626
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:69
627
+ msgid "Same window"
628
+ msgstr "Samma fönster"
629
+
630
+ #: views/SlideshowPluginPostType/slides.php:72
631
+ #: views/SlideshowPluginPostType/slides.php:159
632
+ #: views/SlideshowPluginPostType/slides.php:209
633
+ #: views/SlideshowPluginPostType/slides.php:279
634
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:100
635
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:34
636
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:118
637
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:70
638
+ msgid "New window"
639
+ msgstr "Nytt fönster"
640
+
641
+ #: views/SlideshowPluginPostType/slides.php:89
642
+ #: views/SlideshowPluginPostType/slides.php:229
643
+ #: views/SlideshowPluginSlideInserter/insert-video-button.php:1
644
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:53
645
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:23
646
+ msgid "Video slide"
647
+ msgstr "Video bildspel"
648
+
649
+ #: views/SlideshowPluginPostType/slides.php:94
650
+ #: views/SlideshowPluginPostType/slides.php:234
651
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:59
652
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:29
653
+ msgid "Youtube Video ID"
654
+ msgstr "Youtube Video ID"
655
+
656
+ #: views/SlideshowPluginPostType/slides.php:132
657
+ #: views/SlideshowPluginPostType/slides.php:254
658
+ #: views/SlideshowPluginSlideInserter/insert-image-button.php:1
659
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:66
660
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:86
661
+ msgid "Image slide"
662
+ msgstr "Bildspels bild"
663
+
664
+ #: views/SlideshowPluginPostType/slides.php:170
665
+ msgid ""
666
+ "An error occurred while loading this slide, and it will not be present in "
667
+ "the slideshow"
668
+ msgstr ""
669
+ "Ett fel inträffade när bilden laddades. Den kommer inte att visas i "
670
+ "bildspelet"
671
+
672
+ #: views/SlideshowPluginPostType/slides.php:176
673
+ #: views/SlideshowPluginPostType/slides.php:217
674
+ #: views/SlideshowPluginPostType/slides.php:242
675
+ #: views/SlideshowPluginPostType/slides.php:288
676
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:109
677
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:42
678
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:75
679
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:127
680
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:78
681
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:45
682
+ msgid "Delete slide"
683
+ msgstr "Radera bild"
684
+
685
+ #: views/SlideshowPluginPostType/style-settings.php:22
686
+ #, php-format
687
+ msgid "Custom styles can be created and customized %shere%s."
688
+ msgstr "Personliga anpassningar kan skapas och anpassas %shär%s."
689
+
690
+ #: views/SlideshowPluginPostType/support-plugin.php:3
691
+ msgid "Help to keep this plugin free!"
692
+ msgstr "Hjälp till att hålla detta tillägg kostnadsfritt!"
693
+
694
+ #: views/SlideshowPluginPostType/support-plugin.php:6
695
+ msgid ""
696
+ "In order to keep you provided with the newest features, updates and bug "
697
+ "fixes, a lot of motivation is required. Therefore I'm kindly asking you to "
698
+ "consider making a small donation to the plugin or rating it as 5-stars on "
699
+ "Wordpress.org. Thank you in advance!"
700
+ msgstr ""
701
+ "För att förse dig med dom nyaste funktionerna, supportforum, och bug-fixar "
702
+ "krävs en stor del motivation. Därför ber jag dig vänligast att överväga att "
703
+ "göra en liten donation till detta tillägg eller poängsätta det som en 5-"
704
+ "stjärnigt tillägg på Wordpress.org. Tack på förhand!"
705
+
706
+ #: views/SlideshowPluginPostType/support-plugin.php:15
707
+ msgid "Rate on Wordpress.org"
708
+ msgstr "Poängsätt på Wordpress.org"
709
+
710
+ #: views/SlideshowPluginPostType/support-plugin.php:24
711
+ msgid "Frequently Asked Questions (FAQ)"
712
+ msgstr "Vanliga frågor (FAQ)"
713
+
714
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
715
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
716
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
717
+ msgid "Insert a Slideshow"
718
+ msgstr "Infoga ett bildspel"
719
+
720
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
721
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
722
+ msgid "Insert Slideshow"
723
+ msgstr "Infoga bildspel"
724
+
725
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
726
+ msgid "Select a slideshow"
727
+ msgstr "Välj bildspel"
728
+
729
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
730
+ #: views/SlideshowPluginWidget/form.php:12
731
+ msgid "Untitled slideshow"
732
+ msgstr "Namnlöst bildspel"
733
+
734
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
735
+ msgid "Cancel"
736
+ msgstr "Avbryt"
737
+
738
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
739
+ #, php-format
740
+ msgid ""
741
+ "It seems you haven't created any slideshows yet. %sYou can create a "
742
+ "slideshow here!%s"
743
+ msgstr ""
744
+ "Det verkar som att du inte har skapat några bildspel ännu. %sDu kan skapa "
745
+ "ett bildspel här!%s"
746
+
747
+ #: views/SlideshowPluginSlideInserter/search-popup.php:6
748
+ msgid "Search"
749
+ msgstr "Sök"
750
+
751
+ #: views/SlideshowPluginSlideInserter/search-popup.php:7
752
+ msgid "Search images by title or ID"
753
+ msgstr "Sök bilder per titel eller ID"
754
+
755
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:18
756
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:53
757
+ msgid "Text color"
758
+ msgstr "Text färg"
759
+
760
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:66
761
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:36
762
+ msgid "Show related videos"
763
+ msgstr ""
764
+
765
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:58
766
+ msgid "(Leave empty for a transparent background)"
767
+ msgstr "(Lämna tomt för genomskinlig bakgrund)"
768
+
769
+ #: views/SlideshowPluginUpload/upload-button.php:1
770
+ msgid "Upload/Manage Images"
771
+ msgstr "Ladda upp/Hantera bilder"
772
+
773
+ #: views/SlideshowPluginWidget/form.php:9
774
+ msgid "Random Slideshow"
775
+ msgstr "Slumpvalt Bildspel"
776
+
777
+ #~ msgid "Leave any field open to use default value."
778
+ #~ msgstr "Een veld dat open wordt gelaten neemt de standaardwaarde aan."
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: 2013-03-25 19:59+0100\n"
6
- "PO-Revision-Date: 2013-03-26 20:59+0100\n"
7
  "Last-Translator: Kelkirpi <admin@kelkirpi.net>\n"
8
  "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -11,184 +11,189 @@ msgstr ""
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "X-Poedit-KeywordsList: _e;__\n"
13
  "X-Poedit-Basepath: ../\n"
14
- "X-Generator: Poedit 1.5.5\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
- #: classes/SlideshowPluginGeneralSettings.php:64
18
- #: classes/SlideshowPluginGeneralSettings.php:65
 
19
  msgid "General Settings"
20
  msgstr "Genel Ayarlar"
21
 
22
- #: classes/SlideshowPluginGeneralSettings.php:146
23
  msgid "New"
24
  msgstr "Yeni"
25
 
26
- #: classes/SlideshowPluginGeneralSettings.php:147
27
  msgid "Are you sure you want to delete this custom style?"
28
  msgstr "Bu özel stili silmek istediğinizden emin misiniz?"
29
 
30
- #: classes/SlideshowPluginGeneralSettings.php:166
31
- #: classes/SlideshowPluginInstaller.php:441
32
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:6
33
  msgid "Light"
34
  msgstr "Açık Renk"
35
 
36
- #: classes/SlideshowPluginGeneralSettings.php:167
37
- #: classes/SlideshowPluginInstaller.php:441
38
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:7
39
  msgid "Dark"
40
  msgstr "Koyu Renk"
41
 
42
- #: classes/SlideshowPluginGeneralSettings.php:271
43
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:49
44
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:131
45
  msgid "Untitled"
46
  msgstr "İsimsiz"
47
 
48
- #: classes/SlideshowPluginInstaller.php:438
49
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:378
 
 
50
  msgid "Yes"
51
  msgstr "Evet"
52
 
53
- #: classes/SlideshowPluginInstaller.php:439
54
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:379
 
 
55
  msgid "No"
56
  msgstr "Hayır"
57
 
58
- #: classes/SlideshowPluginInstaller.php:441
59
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:477
60
  msgid "The style used for this slideshow"
61
  msgstr "Bu slayt gösterisi için kullanılan stil"
62
 
63
- #: classes/SlideshowPluginInstaller.php:441
64
  msgid "Custom"
65
  msgstr "Özel"
66
 
67
- #: classes/SlideshowPluginInstaller.php:442
68
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:114
69
  msgid "Custom style editor"
70
  msgstr "Özel stil editörü"
71
 
72
- #: classes/SlideshowPluginInstaller.php:443
73
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
74
  msgid "Animation used for transition between slides"
75
  msgstr "Slaytlar arasında geçiş için kullanılan animasyon"
76
 
77
- #: classes/SlideshowPluginInstaller.php:443
78
  msgid "Slide"
79
  msgstr "Slayt"
80
 
81
- #: classes/SlideshowPluginInstaller.php:443
82
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
83
  msgid "Fade"
84
  msgstr "Solma"
85
 
86
- #: classes/SlideshowPluginInstaller.php:443
87
- #: classes/SlideshowPluginInstaller.php:444
88
- #: classes/SlideshowPluginInstaller.php:445
89
- #: classes/SlideshowPluginInstaller.php:446
90
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
91
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:420
92
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
93
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:422
94
  msgid "Animation"
95
  msgstr "Animasyon"
96
 
97
- #: classes/SlideshowPluginInstaller.php:444
98
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:420
99
  msgid "Number of seconds the slide takes to slide in"
100
  msgstr "İkinci slayta geçiş için geçecek saniye"
101
 
102
- #: classes/SlideshowPluginInstaller.php:445
103
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
104
  msgid "Number of seconds the description takes to slide in"
105
  msgstr "Açıklamanın görüntülenmesi için geçecek süre"
106
 
107
- #: classes/SlideshowPluginInstaller.php:446
108
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:422
109
  msgid "Seconds between changing slides"
110
  msgstr "Değişen slaytlar arasındaki saniye"
111
 
112
- #: classes/SlideshowPluginInstaller.php:447
113
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
114
  msgid "Number of slides to fit into one slide"
115
  msgstr "Bir defada gösterilecek slayt sayısı"
116
 
117
- #: classes/SlideshowPluginInstaller.php:447
118
- #: classes/SlideshowPluginInstaller.php:448
119
- #: classes/SlideshowPluginInstaller.php:449
120
- #: classes/SlideshowPluginInstaller.php:450
121
- #: classes/SlideshowPluginInstaller.php:451
122
- #: classes/SlideshowPluginInstaller.php:452
123
- #: classes/SlideshowPluginInstaller.php:453
124
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
125
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:424
126
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
127
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:426
128
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:427
129
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
130
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:429
131
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:430
132
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:431
133
  msgid "Display"
134
  msgstr "Görünüm"
135
 
136
- #: classes/SlideshowPluginInstaller.php:448
137
  msgid "Width of the slideshow, set to parent&#39;s width on 0"
138
  msgstr "Slayt gösterisinin genişliği, ana olarak&#39;s genişlik sıfırdır"
139
 
140
- #: classes/SlideshowPluginInstaller.php:449
141
  msgid "Height of the slideshow"
142
  msgstr "Slayt gösterisinin yüksekliği"
143
 
144
- #: classes/SlideshowPluginInstaller.php:450
145
  msgid "Height of the description boxes"
146
  msgstr "Açıklama kutularının yüksekliği"
147
 
148
- #: classes/SlideshowPluginInstaller.php:451
149
  msgid "Fit image into slide (stretching it)"
150
  msgstr "Resmi slayta sığdır (gererek)"
151
 
152
- #: classes/SlideshowPluginInstaller.php:452
153
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:430
154
  msgid "Show title and description"
155
  msgstr "Başlığı ve açıklamayı göster"
156
 
157
- #: classes/SlideshowPluginInstaller.php:453
158
  msgid "Hide description box, it will pop up when a mouse hovers over the slide"
159
  msgstr "Açıklama kutusunu sakla, fare ile üzerine gelince açılır"
160
 
161
- #: classes/SlideshowPluginInstaller.php:454
162
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:432
163
  msgid "Automatically slide to the next slide"
164
  msgstr "Otomatik olarak sonraki slayta geç"
165
 
166
- #: classes/SlideshowPluginInstaller.php:454
167
- #: classes/SlideshowPluginInstaller.php:455
168
- #: classes/SlideshowPluginInstaller.php:456
169
- #: classes/SlideshowPluginInstaller.php:457
170
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:432
171
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:433
172
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:434
173
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:435
174
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:436
175
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:437
176
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:438
177
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:439
178
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:440
179
  msgid "Control"
180
  msgstr "Kontrol"
181
 
182
- #: classes/SlideshowPluginInstaller.php:455
183
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:433
184
  msgid "Return to the beginning of the slideshow after last slide"
185
  msgstr "Son slayttan sonra tekrar başlat"
186
 
187
- #: classes/SlideshowPluginInstaller.php:456
188
  msgid "Activate buttons (so the user can scroll through the slides)"
189
  msgstr "Butonları etkinleştir (böylece kullanıcı slaytlar arasında gezebilir)"
190
 
191
- #: classes/SlideshowPluginInstaller.php:457
192
  msgid "Show control panel (play and pause button)"
193
  msgstr "Kontrol panelini göster (Oynat ve Duraklat butonları)"
194
 
@@ -226,94 +231,70 @@ msgstr "Slayt Gösterisi Ara"
226
  msgid "No slideshows found"
227
  msgstr "Slayt gösterisi bulunamadı"
228
 
229
- #: classes/SlideshowPluginPostType.php:155
230
  msgid "Information"
231
  msgstr "Bilgi"
232
 
233
- #: classes/SlideshowPluginPostType.php:164
234
  msgid "Slides List"
235
  msgstr "Slayt Listesi"
236
 
237
- #: classes/SlideshowPluginPostType.php:173
238
  msgid "Slideshow Style"
239
  msgstr "Slayt Gösterisi Stili"
240
 
241
- #: classes/SlideshowPluginPostType.php:182
242
  msgid "Slideshow Settings"
243
  msgstr "Slayt Gösterisi Ayarları"
244
 
245
- #: classes/SlideshowPluginPostType.php:232
246
- #: classes/SlideshowPluginSlideInserter.php:178
247
  #: views/SlideshowPluginPostType/slides.php:2
248
  msgid "Insert"
249
  msgstr "Ekle"
250
 
251
- #: classes/SlideshowPluginPostType.php:240
252
  #: views/SlideshowPluginPostType/slides.php:9
253
  msgid "Add slides to this slideshow by using one of the buttons above."
254
  msgstr ""
255
  "Yukarıdaki düğmelerden birini kullanarak bu slayt gösterisi için slayt "
256
  "ekleyin."
257
 
258
- #: classes/SlideshowPluginShortcode.php:132
259
  msgid "No slideshow selected."
260
  msgstr "Slayt gösterisi seçilmedi."
261
 
262
- #: classes/SlideshowPluginSlideInserter.php:151
263
  msgid "More results loaded"
264
  msgstr "Daha fazla sonuç yüklendi"
265
 
266
- #: classes/SlideshowPluginSlideInserter.php:187
267
  msgid "Load more results"
268
  msgstr "Daha fazla sonuç yükle"
269
 
270
- #: classes/SlideshowPluginSlideInserter.php:196
271
  msgid "No images were found, click here to upload some."
272
  msgstr "Resim bulunamadı, yüklemek için buraya tıklayınız."
273
 
274
- #: classes/SlideshowPluginSlideInserter.php:273
275
  msgid "Are you sure you want to delete this slide?"
276
  msgstr "Bu slaytı silmek istediğinizden emin misiniz?"
277
 
278
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
279
- msgid "Slide Left"
280
- msgstr "Sola Doğru"
281
-
282
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
283
- msgid "Slide Right"
284
- msgstr "Sağa Doğru"
285
-
286
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
287
- msgid "Slide Up"
288
- msgstr "Yukarı Doğru"
289
-
290
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
291
- msgid "Slide Down"
292
- msgstr "Aşağı Doğru"
293
-
294
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
295
- msgid "Direct Fade"
296
- msgstr "Direkt Solma"
297
-
298
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
299
- msgid "Random Animation"
300
- msgstr "Rastgele Animasyon"
301
-
302
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:424
303
  msgid "Maximum width. When maximum width is 0, maximum width is ignored"
304
  msgstr ""
305
  "Maksimum genişlik. Eğer buraya sıfır girerseniz, maksimum genişlik göz ardı "
306
  "edilir"
307
 
308
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
309
  msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
310
  msgstr "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
311
 
312
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
313
  msgid "More info"
314
  msgstr "Detaylı bilgi"
315
 
316
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
317
  #, php-format
318
  msgid ""
319
  "Proportional relationship%s between slideshow's width and height (width:"
@@ -322,71 +303,105 @@ msgstr ""
322
  "(genişlik:yükseklik)%s Slayt genişliği ve yüksekliği arasındaki oransal "
323
  "ilişki "
324
 
325
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:426
326
  msgid "Slideshow's height"
327
  msgstr "Slayt gösterisinin yüksekliği"
328
 
329
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:427
330
  msgid "Fit image into slide (Stretch image)"
331
  msgstr "Resmi slayta sığdır (Resmi ger)"
332
 
333
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
334
  msgid "Shrink slideshow's height when width shrinks"
335
  msgstr "Genişlik küçülürse slayt gösterisinin yüksekliğini küçült"
336
 
337
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:429
338
  msgid ""
339
  "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
340
  msgstr ""
341
  "Esnekliği Ekinleştir (Sayfa küçülünce slayt gösterisi de aynı oranda küçülür)"
342
 
343
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:431
344
  msgid "Hide description box, pop up when mouse hovers over"
345
  msgstr "Açıklamayı sakla, fare ile üzerine gelince gösterilir"
346
 
347
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:434
348
  msgid "Pause slideshow when mouse hovers over"
349
  msgstr "Fare imleci geldiğinde slayt gösterisi duraklasın"
350
 
351
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:435
352
  msgid "Activate navigation buttons"
353
  msgstr "Yönlendirme butonlarını etkinleştir"
354
 
355
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:436
356
  msgid "Hide navigation buttons, show when mouse hovers over"
357
  msgstr "Yönlendirme butonlarını gizle, fare imleciyle göster"
358
 
359
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:437
360
  msgid "Activate pagination"
361
  msgstr "Sayfalandırmayı etkinleştir"
362
 
363
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:438
364
  msgid "Hide pagination, show when mouse hovers over"
365
  msgstr "Sayfalandırmayı sakla, fare ile üzerine gelince gösterilir"
366
 
367
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:439
368
  msgid "Activate control panel (play and pause button)"
369
  msgstr "Kontrol panelini etkinleştir ( Oynat ve Duraklat butonları)"
370
 
371
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:440
372
  msgid "Hide control panel, show when mouse hovers over"
373
  msgstr "Kontrol panelini sakla, fare ile üzerine gelince gösterilir"
374
 
375
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:441
 
 
 
 
 
 
 
 
376
  msgid "Randomize slides"
377
  msgstr "Rastgele slaytlar"
378
 
379
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:441
380
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:442
381
- msgid "Miscellaneous"
382
- msgstr "Çeşitli"
383
-
384
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:442
385
  #, php-format
386
  msgid "Avoid content filter (disable if '%s' is shown)"
387
  msgstr ""
388
  "İçerik filtresinden sakın (Eğer '%s' görünsün isterseniz hayırı seçin)"
389
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
390
  #: classes/SlideshowPluginWidget.php:23
391
  msgid "Enables you to show your slideshows in the widget area of your website."
392
  msgstr "Kullanıcı düzeylerinin hangi yetkilere sahip olacağını belirleyin."
@@ -395,77 +410,77 @@ msgstr "Kullanıcı düzeylerinin hangi yetkilere sahip olacağını belirleyin.
395
  msgid "Slideshow Widget"
396
  msgstr "Slayt gösterisi bileşeni"
397
 
398
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:38
399
  msgid "Default stylesheets"
400
  msgstr "Varsayılan Stil Sayfaları"
401
 
402
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:52
403
  msgid "Create a new custom style from this style"
404
  msgstr "Yeni stil oluşturmak için bu stili özelleştir"
405
 
406
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:54
407
  msgid "Customize"
408
  msgstr "Özelleştir"
409
 
410
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:68
411
  msgid "Custom stylesheets"
412
  msgstr "Özel Stil Sayfaları"
413
 
414
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:81
415
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:160
416
  msgid "Edit this style"
417
  msgstr "Bu stili düzenle"
418
 
419
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:83
420
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:162
421
  #: views/SlideshowPluginPostType/slides.php:137
422
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:46
423
  msgid "Edit"
424
  msgstr "Düzenle"
425
 
426
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:90
427
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:169
428
  msgid "Delete this style"
429
  msgstr "Bu stili sil"
430
 
431
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:92
432
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:171
433
  msgid "Delete"
434
  msgstr "Sil"
435
 
436
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:102
437
  msgid "Click 'Customize' to create a new custom stylesheet."
438
  msgstr ""
439
  "Yeni bir stil sayfası oluşturmak yada düzenlemek için Özelleştir'e tıklayın."
440
 
441
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:118
442
  msgid "Select a stylesheet from the left to start customizing it."
443
  msgstr "Özelleştirmeye başlamak için soldan bir stil seçin."
444
 
445
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:127
446
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:180
447
  #: views/SlideshowPluginPostType/slides.php:58
448
  #: views/SlideshowPluginPostType/slides.php:143
449
  #: views/SlideshowPluginPostType/slides.php:195
450
  #: views/SlideshowPluginPostType/slides.php:263
451
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:54
452
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:12
453
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:90
454
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:29
455
  #: views/SlideshowPluginWidget/form.php:2
456
  msgid "Title"
457
  msgstr "Başlık"
458
 
459
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:136
460
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:188
461
  msgid "Style"
462
  msgstr "Stil"
463
 
464
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:11
465
  msgid "Note"
466
  msgstr "Not"
467
 
468
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:18
469
  #, php-format
470
  msgid ""
471
  "The settings set on this page apply only to newly created slideshows and "
@@ -476,49 +491,65 @@ msgstr ""
476
  "geçerlidir. Dolayısıyla mevcut olan slayt gösterilerinin ayarlarını "
477
  "değiştirmez. Mevcut slayt gösterisi ayarlarını uyarlamak için %stıklayınız.%s"
478
 
479
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:30
480
- #: views/SlideshowPluginGeneralSettings/general-settings.php:16
481
  msgid "Default Slideshow Settings"
482
  msgstr "Varsayılan Slayt Gösterisi Ayarları"
483
 
484
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:43
485
  #: views/SlideshowPluginPostType/settings.php:12
486
  msgid "settings"
487
  msgstr "Ayarları"
488
 
489
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:80
490
  msgid "Default Slideshow Stylesheet"
491
  msgstr "Varsayılan Slayt Gösterisi Stil Sayfası"
492
 
493
- #: views/SlideshowPluginGeneralSettings/general-settings.php:15
494
- msgid "User Capabilities"
495
- msgstr "Kullanıcı Yetkileri"
496
-
497
- #: views/SlideshowPluginGeneralSettings/general-settings.php:17
498
- msgid "Custom Styles"
499
- msgstr "Özel Stiller"
500
-
501
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:8
502
  msgid "Add slideshows"
503
  msgstr "Slayt gösterisi Ekle"
504
 
505
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:9
506
  msgid "Edit slideshows"
507
  msgstr "Slayt gösterilerini Düzenle"
508
 
509
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:10
510
  msgid "Delete slideshows"
511
  msgstr "Slayt gösterilerini Sil"
512
 
513
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:18
 
 
 
 
514
  msgid "Select the user roles that will able to perform certain actions."
515
  msgstr ""
516
  "Aşağıdaki eylemleri gerçekleştirmek için kullanıcı yetkilerini belirleyin."
517
 
518
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:35
519
  msgid "Untitled role"
520
  msgstr "Başlıksız rol"
521
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
522
  #: views/SlideshowPluginPostType/information.php:1
523
  msgid ""
524
  "To use this slideshow in your website either add this piece of shortcode to "
@@ -550,7 +581,7 @@ msgstr "Varsayılan"
550
  #: views/SlideshowPluginPostType/slides.php:190
551
  #: views/SlideshowPluginSlideInserter/insert-text-button.php:1
552
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:6
553
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:23
554
  msgid "Text slide"
555
  msgstr "Metin slaytı"
556
 
@@ -558,17 +589,17 @@ msgstr "Metin slaytı"
558
  #: views/SlideshowPluginPostType/slides.php:149
559
  #: views/SlideshowPluginPostType/slides.php:197
560
  #: views/SlideshowPluginPostType/slides.php:269
561
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:61
562
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:15
563
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:97
564
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:32
565
  msgid "Description"
566
  msgstr "Açıklama"
567
 
568
  #: views/SlideshowPluginPostType/slides.php:62
569
  #: views/SlideshowPluginPostType/slides.php:199
570
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:21
571
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:38
572
  msgid "Background color"
573
  msgstr "Arkaplan rengi"
574
 
@@ -576,10 +607,10 @@ msgstr "Arkaplan rengi"
576
  #: views/SlideshowPluginPostType/slides.php:154
577
  #: views/SlideshowPluginPostType/slides.php:204
578
  #: views/SlideshowPluginPostType/slides.php:274
579
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:68
580
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:28
581
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:104
582
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:46
583
  msgid "URL"
584
  msgstr "URL"
585
 
@@ -587,10 +618,10 @@ msgstr "URL"
587
  #: views/SlideshowPluginPostType/slides.php:156
588
  #: views/SlideshowPluginPostType/slides.php:206
589
  #: views/SlideshowPluginPostType/slides.php:276
590
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:71
591
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:31
592
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:107
593
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:49
594
  msgid "Open URL in"
595
  msgstr "URL hedefi"
596
 
@@ -598,10 +629,10 @@ msgstr "URL hedefi"
598
  #: views/SlideshowPluginPostType/slides.php:158
599
  #: views/SlideshowPluginPostType/slides.php:208
600
  #: views/SlideshowPluginPostType/slides.php:278
601
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:73
602
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:33
603
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:109
604
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:51
605
  msgid "Same window"
606
  msgstr "Aynı sayfa"
607
 
@@ -609,10 +640,10 @@ msgstr "Aynı sayfa"
609
  #: views/SlideshowPluginPostType/slides.php:159
610
  #: views/SlideshowPluginPostType/slides.php:209
611
  #: views/SlideshowPluginPostType/slides.php:279
612
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:74
613
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:34
614
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:110
615
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:52
616
  msgid "New window"
617
  msgstr "Yeni sayfa"
618
 
@@ -620,22 +651,22 @@ msgstr "Yeni sayfa"
620
  #: views/SlideshowPluginPostType/slides.php:229
621
  #: views/SlideshowPluginSlideInserter/insert-video-button.php:1
622
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:53
623
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:13
624
  msgid "Video slide"
625
  msgstr "Video Slayt"
626
 
627
  #: views/SlideshowPluginPostType/slides.php:94
628
  #: views/SlideshowPluginPostType/slides.php:234
629
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:59
630
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:19
631
  msgid "Youtube Video ID"
632
  msgstr "Youtube Video ID"
633
 
634
  #: views/SlideshowPluginPostType/slides.php:132
635
  #: views/SlideshowPluginPostType/slides.php:254
636
  #: views/SlideshowPluginSlideInserter/insert-image-button.php:1
637
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:40
638
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:78
639
  msgid "Image slide"
640
  msgstr "Resim Slaytı"
641
 
@@ -651,12 +682,12 @@ msgstr ""
651
  #: views/SlideshowPluginPostType/slides.php:217
652
  #: views/SlideshowPluginPostType/slides.php:242
653
  #: views/SlideshowPluginPostType/slides.php:288
654
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:83
655
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:42
656
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:67
657
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:119
658
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:60
659
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:27
660
  msgid "Delete slide"
661
  msgstr "Bu Slaytı Sil"
662
 
@@ -671,9 +702,9 @@ msgstr "Bu eklentinin ücretsiz kalması için yardımcı olun!"
671
 
672
  #: views/SlideshowPluginPostType/support-plugin.php:6
673
  msgid ""
674
- "In order to keep you provided with the newest features, forum support, and "
675
- "bug-fixes, a lot of motivation is required. Therefore I'm kindly asking you "
676
- "to consider making a small donation to the plugin or rating it as 5-stars on "
677
  "Wordpress.org. Thank you in advance!"
678
  msgstr ""
679
  "Yeni özellikler eklemek, hataları belirleyip düzeltmek için motivasyonumuzu "
@@ -731,11 +762,16 @@ msgid "Search images by title or ID"
731
  msgstr "Resimleri ID veya isme göre ara"
732
 
733
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:18
734
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:35
735
  msgid "Text color"
736
  msgstr "Yazı rengi"
737
 
738
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:40
 
 
 
 
 
739
  msgid "(Leave empty for a transparent background)"
740
  msgstr "(Şeffaf bir arkaplan için boş bırakın)"
741
 
2
  msgstr ""
3
  "Project-Id-Version: Slideshow Plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-08-21 10:55+0100\n"
6
+ "PO-Revision-Date: 2013-08-21 10:55+0100\n"
7
  "Last-Translator: Kelkirpi <admin@kelkirpi.net>\n"
8
  "Language-Team: Stefan Boonstra <wordpress@stefanboonstra.com>\n"
9
  "MIME-Version: 1.0\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "X-Poedit-KeywordsList: _e;__\n"
13
  "X-Poedit-Basepath: ../\n"
14
+ "X-Generator: Poedit 1.5.7\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 "Genel Ayarlar"
22
 
23
+ #: classes/SlideshowPluginGeneralSettings.php:150
24
  msgid "New"
25
  msgstr "Yeni"
26
 
27
+ #: classes/SlideshowPluginGeneralSettings.php:151
28
  msgid "Are you sure you want to delete this custom style?"
29
  msgstr "Bu özel stili silmek istediğinizden emin misiniz?"
30
 
31
+ #: classes/SlideshowPluginGeneralSettings.php:196
32
+ #: classes/SlideshowPluginInstaller.php:516
33
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:6
34
  msgid "Light"
35
  msgstr "Açık Renk"
36
 
37
+ #: classes/SlideshowPluginGeneralSettings.php:197
38
+ #: classes/SlideshowPluginInstaller.php:516
39
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:7
40
  msgid "Dark"
41
  msgstr "Koyu Renk"
42
 
43
+ #: classes/SlideshowPluginGeneralSettings.php:353
44
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:57
45
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:139
46
  msgid "Untitled"
47
  msgstr "İsimsiz"
48
 
49
+ #: classes/SlideshowPluginInstaller.php:513
50
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:472
51
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:67
52
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:37
53
  msgid "Yes"
54
  msgstr "Evet"
55
 
56
+ #: classes/SlideshowPluginInstaller.php:514
57
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:473
58
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:68
59
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:38
60
  msgid "No"
61
  msgstr "Hayır"
62
 
63
+ #: classes/SlideshowPluginInstaller.php:516
64
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:610
65
  msgid "The style used for this slideshow"
66
  msgstr "Bu slayt gösterisi için kullanılan stil"
67
 
68
+ #: classes/SlideshowPluginInstaller.php:516
69
  msgid "Custom"
70
  msgstr "Özel"
71
 
72
+ #: classes/SlideshowPluginInstaller.php:517
73
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:122
74
  msgid "Custom style editor"
75
  msgstr "Özel stil editörü"
76
 
77
+ #: classes/SlideshowPluginInstaller.php:518
78
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:518
79
  msgid "Animation used for transition between slides"
80
  msgstr "Slaytlar arasında geçiş için kullanılan animasyon"
81
 
82
+ #: classes/SlideshowPluginInstaller.php:518
83
  msgid "Slide"
84
  msgstr "Slayt"
85
 
86
+ #: classes/SlideshowPluginInstaller.php:518
87
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
88
  msgid "Fade"
89
  msgstr "Solma"
90
 
91
+ #: classes/SlideshowPluginInstaller.php:518
92
+ #: classes/SlideshowPluginInstaller.php:519
93
+ #: classes/SlideshowPluginInstaller.php:520
94
+ #: classes/SlideshowPluginInstaller.php:521
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 "Animasyon"
101
 
102
+ #: classes/SlideshowPluginInstaller.php:519
103
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:519
104
  msgid "Number of seconds the slide takes to slide in"
105
  msgstr "İkinci slayta geçiş için geçecek saniye"
106
 
107
+ #: classes/SlideshowPluginInstaller.php:520
108
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:520
109
  msgid "Number of seconds the description takes to slide in"
110
  msgstr "Açıklamanın görüntülenmesi için geçecek süre"
111
 
112
+ #: classes/SlideshowPluginInstaller.php:521
113
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:521
114
  msgid "Seconds between changing slides"
115
  msgstr "Değişen slaytlar arasındaki saniye"
116
 
117
+ #: classes/SlideshowPluginInstaller.php:522
118
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:522
119
  msgid "Number of slides to fit into one slide"
120
  msgstr "Bir defada gösterilecek slayt sayısı"
121
 
122
+ #: classes/SlideshowPluginInstaller.php:522
123
+ #: classes/SlideshowPluginInstaller.php:523
124
+ #: classes/SlideshowPluginInstaller.php:524
125
+ #: classes/SlideshowPluginInstaller.php:525
126
+ #: classes/SlideshowPluginInstaller.php:526
127
+ #: classes/SlideshowPluginInstaller.php:527
128
+ #: classes/SlideshowPluginInstaller.php:528
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 "Görünüm"
140
 
141
+ #: classes/SlideshowPluginInstaller.php:523
142
  msgid "Width of the slideshow, set to parent&#39;s width on 0"
143
  msgstr "Slayt gösterisinin genişliği, ana olarak&#39;s genişlik sıfırdır"
144
 
145
+ #: classes/SlideshowPluginInstaller.php:524
146
  msgid "Height of the slideshow"
147
  msgstr "Slayt gösterisinin yüksekliği"
148
 
149
+ #: classes/SlideshowPluginInstaller.php:525
150
  msgid "Height of the description boxes"
151
  msgstr "Açıklama kutularının yüksekliği"
152
 
153
+ #: classes/SlideshowPluginInstaller.php:526
154
  msgid "Fit image into slide (stretching it)"
155
  msgstr "Resmi slayta sığdır (gererek)"
156
 
157
+ #: classes/SlideshowPluginInstaller.php:527
158
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:529
159
  msgid "Show title and description"
160
  msgstr "Başlığı ve açıklamayı göster"
161
 
162
+ #: classes/SlideshowPluginInstaller.php:528
163
  msgid "Hide description box, it will pop up when a mouse hovers over the slide"
164
  msgstr "Açıklama kutusunu sakla, fare ile üzerine gelince açılır"
165
 
166
+ #: classes/SlideshowPluginInstaller.php:529
167
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:531
168
  msgid "Automatically slide to the next slide"
169
  msgstr "Otomatik olarak sonraki slayta geç"
170
 
171
+ #: classes/SlideshowPluginInstaller.php:529
172
+ #: classes/SlideshowPluginInstaller.php:530
173
+ #: classes/SlideshowPluginInstaller.php:531
174
+ #: classes/SlideshowPluginInstaller.php:532
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 "Kontrol"
186
 
187
+ #: classes/SlideshowPluginInstaller.php:530
188
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:532
189
  msgid "Return to the beginning of the slideshow after last slide"
190
  msgstr "Son slayttan sonra tekrar başlat"
191
 
192
+ #: classes/SlideshowPluginInstaller.php:531
193
  msgid "Activate buttons (so the user can scroll through the slides)"
194
  msgstr "Butonları etkinleştir (böylece kullanıcı slaytlar arasında gezebilir)"
195
 
196
+ #: classes/SlideshowPluginInstaller.php:532
197
  msgid "Show control panel (play and pause button)"
198
  msgstr "Kontrol panelini göster (Oynat ve Duraklat butonları)"
199
 
231
  msgid "No slideshows found"
232
  msgstr "Slayt gösterisi bulunamadı"
233
 
234
+ #: classes/SlideshowPluginPostType.php:91
235
  msgid "Information"
236
  msgstr "Bilgi"
237
 
238
+ #: classes/SlideshowPluginPostType.php:100
239
  msgid "Slides List"
240
  msgstr "Slayt Listesi"
241
 
242
+ #: classes/SlideshowPluginPostType.php:109
243
  msgid "Slideshow Style"
244
  msgstr "Slayt Gösterisi Stili"
245
 
246
+ #: classes/SlideshowPluginPostType.php:118
247
  msgid "Slideshow Settings"
248
  msgstr "Slayt Gösterisi Ayarları"
249
 
250
+ #: classes/SlideshowPluginPostType.php:174
251
+ #: classes/SlideshowPluginSlideInserter.php:222
252
  #: views/SlideshowPluginPostType/slides.php:2
253
  msgid "Insert"
254
  msgstr "Ekle"
255
 
256
+ #: classes/SlideshowPluginPostType.php:183
257
  #: views/SlideshowPluginPostType/slides.php:9
258
  msgid "Add slides to this slideshow by using one of the buttons above."
259
  msgstr ""
260
  "Yukarıdaki düğmelerden birini kullanarak bu slayt gösterisi için slayt "
261
  "ekleyin."
262
 
263
+ #: classes/SlideshowPluginShortcode.php:148
264
  msgid "No slideshow selected."
265
  msgstr "Slayt gösterisi seçilmedi."
266
 
267
+ #: classes/SlideshowPluginSlideInserter.php:178
268
  msgid "More results loaded"
269
  msgstr "Daha fazla sonuç yüklendi"
270
 
271
+ #: classes/SlideshowPluginSlideInserter.php:233
272
  msgid "Load more results"
273
  msgstr "Daha fazla sonuç yükle"
274
 
275
+ #: classes/SlideshowPluginSlideInserter.php:244
276
  msgid "No images were found, click here to upload some."
277
  msgstr "Resim bulunamadı, yüklemek için buraya tıklayınız."
278
 
279
+ #: classes/SlideshowPluginSlideInserter.php:316
280
  msgid "Are you sure you want to delete this slide?"
281
  msgstr "Bu slaytı silmek istediğinizden emin misiniz?"
282
 
283
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:523
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
284
  msgid "Maximum width. When maximum width is 0, maximum width is ignored"
285
  msgstr ""
286
  "Maksimum genişlik. Eğer buraya sıfır girerseniz, maksimum genişlik göz ardı "
287
  "edilir"
288
 
289
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
290
  msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
291
  msgstr "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
292
 
293
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
294
  msgid "More info"
295
  msgstr "Detaylı bilgi"
296
 
297
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
298
  #, php-format
299
  msgid ""
300
  "Proportional relationship%s between slideshow's width and height (width:"
303
  "(genişlik:yükseklik)%s Slayt genişliği ve yüksekliği arasındaki oransal "
304
  "ilişki "
305
 
306
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:525
307
  msgid "Slideshow's height"
308
  msgstr "Slayt gösterisinin yüksekliği"
309
 
310
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:526
311
  msgid "Fit image into slide (Stretch image)"
312
  msgstr "Resmi slayta sığdır (Resmi ger)"
313
 
314
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:527
315
  msgid "Shrink slideshow's height when width shrinks"
316
  msgstr "Genişlik küçülürse slayt gösterisinin yüksekliğini küçült"
317
 
318
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:528
319
  msgid ""
320
  "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
321
  msgstr ""
322
  "Esnekliği Ekinleştir (Sayfa küçülünce slayt gösterisi de aynı oranda küçülür)"
323
 
324
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:530
325
  msgid "Hide description box, pop up when mouse hovers over"
326
  msgstr "Açıklamayı sakla, fare ile üzerine gelince gösterilir"
327
 
328
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:533
329
  msgid "Pause slideshow when mouse hovers over"
330
  msgstr "Fare imleci geldiğinde slayt gösterisi duraklasın"
331
 
332
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:534
333
  msgid "Activate navigation buttons"
334
  msgstr "Yönlendirme butonlarını etkinleştir"
335
 
336
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:535
337
  msgid "Hide navigation buttons, show when mouse hovers over"
338
  msgstr "Yönlendirme butonlarını gizle, fare imleciyle göster"
339
 
340
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:536
341
  msgid "Activate pagination"
342
  msgstr "Sayfalandırmayı etkinleştir"
343
 
344
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:537
345
  msgid "Hide pagination, show when mouse hovers over"
346
  msgstr "Sayfalandırmayı sakla, fare ile üzerine gelince gösterilir"
347
 
348
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:538
349
  msgid "Activate control panel (play and pause button)"
350
  msgstr "Kontrol panelini etkinleştir ( Oynat ve Duraklat butonları)"
351
 
352
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:539
353
  msgid "Hide control panel, show when mouse hovers over"
354
  msgstr "Kontrol panelini sakla, fare ile üzerine gelince gösterilir"
355
 
356
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:540
357
+ msgid "Wait until the next slide has loaded before showing it"
358
+ msgstr ""
359
+
360
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:541
361
+ msgid "Show a loading icon until the first slide appears"
362
+ msgstr ""
363
+
364
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:542
365
  msgid "Randomize slides"
366
  msgstr "Rastgele slaytlar"
367
 
368
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:543
 
 
 
 
 
369
  #, php-format
370
  msgid "Avoid content filter (disable if '%s' is shown)"
371
  msgstr ""
372
  "İçerik filtresinden sakın (Eğer '%s' görünsün isterseniz hayırı seçin)"
373
 
374
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
375
+ msgid "Slide Left"
376
+ msgstr "Sola Doğru"
377
+
378
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
379
+ msgid "Slide Right"
380
+ msgstr "Sağa Doğru"
381
+
382
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
383
+ msgid "Slide Up"
384
+ msgstr "Yukarı Doğru"
385
+
386
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
387
+ msgid "Slide Down"
388
+ msgstr "Aşağı Doğru"
389
+
390
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
391
+ msgid "Direct Fade"
392
+ msgstr "Direkt Solma"
393
+
394
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
395
+ msgid "Random Animation"
396
+ msgstr "Rastgele Animasyon"
397
+
398
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:569
399
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:570
400
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:571
401
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:572
402
+ msgid "Miscellaneous"
403
+ msgstr "Çeşitli"
404
+
405
  #: classes/SlideshowPluginWidget.php:23
406
  msgid "Enables you to show your slideshows in the widget area of your website."
407
  msgstr "Kullanıcı düzeylerinin hangi yetkilere sahip olacağını belirleyin."
410
  msgid "Slideshow Widget"
411
  msgstr "Slayt gösterisi bileşeni"
412
 
413
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:46
414
  msgid "Default stylesheets"
415
  msgstr "Varsayılan Stil Sayfaları"
416
 
417
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:60
418
  msgid "Create a new custom style from this style"
419
  msgstr "Yeni stil oluşturmak için bu stili özelleştir"
420
 
421
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:62
422
  msgid "Customize"
423
  msgstr "Özelleştir"
424
 
425
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:76
426
  msgid "Custom stylesheets"
427
  msgstr "Özel Stil Sayfaları"
428
 
429
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:89
430
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:168
431
  msgid "Edit this style"
432
  msgstr "Bu stili düzenle"
433
 
434
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:91
435
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:170
436
  #: views/SlideshowPluginPostType/slides.php:137
437
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:72
438
  msgid "Edit"
439
  msgstr "Düzenle"
440
 
441
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:98
442
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:177
443
  msgid "Delete this style"
444
  msgstr "Bu stili sil"
445
 
446
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:100
447
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:179
448
  msgid "Delete"
449
  msgstr "Sil"
450
 
451
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:110
452
  msgid "Click 'Customize' to create a new custom stylesheet."
453
  msgstr ""
454
  "Yeni bir stil sayfası oluşturmak yada düzenlemek için Özelleştir'e tıklayın."
455
 
456
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:126
457
  msgid "Select a stylesheet from the left to start customizing it."
458
  msgstr "Özelleştirmeye başlamak için soldan bir stil seçin."
459
 
460
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:135
461
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:188
462
  #: views/SlideshowPluginPostType/slides.php:58
463
  #: views/SlideshowPluginPostType/slides.php:143
464
  #: views/SlideshowPluginPostType/slides.php:195
465
  #: views/SlideshowPluginPostType/slides.php:263
466
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:80
467
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:12
468
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:98
469
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:47
470
  #: views/SlideshowPluginWidget/form.php:2
471
  msgid "Title"
472
  msgstr "Başlık"
473
 
474
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:144
475
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:196
476
  msgid "Style"
477
  msgstr "Stil"
478
 
479
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:11
480
  msgid "Note"
481
  msgstr "Not"
482
 
483
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:18
484
  #, php-format
485
  msgid ""
486
  "The settings set on this page apply only to newly created slideshows and "
491
  "geçerlidir. Dolayısıyla mevcut olan slayt gösterilerinin ayarlarını "
492
  "değiştirmez. Mevcut slayt gösterisi ayarlarını uyarlamak için %stıklayınız.%s"
493
 
494
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:29
495
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:15
496
  msgid "Default Slideshow Settings"
497
  msgstr "Varsayılan Slayt Gösterisi Ayarları"
498
 
499
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:41
500
  #: views/SlideshowPluginPostType/settings.php:12
501
  msgid "settings"
502
  msgstr "Ayarları"
503
 
504
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:77
505
  msgid "Default Slideshow Stylesheet"
506
  msgstr "Varsayılan Slayt Gösterisi Stil Sayfası"
507
 
508
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:11
 
 
 
 
 
 
 
 
509
  msgid "Add slideshows"
510
  msgstr "Slayt gösterisi Ekle"
511
 
512
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:12
513
  msgid "Edit slideshows"
514
  msgstr "Slayt gösterilerini Düzenle"
515
 
516
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:13
517
  msgid "Delete slideshows"
518
  msgstr "Slayt gösterilerini Sil"
519
 
520
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:20
521
+ msgid "User Capabilities"
522
+ msgstr "Kullanıcı Yetkileri"
523
+
524
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:22
525
  msgid "Select the user roles that will able to perform certain actions."
526
  msgstr ""
527
  "Aşağıdaki eylemleri gerçekleştirmek için kullanıcı yetkilerini belirleyin."
528
 
529
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:38
530
  msgid "Untitled role"
531
  msgstr "Başlıksız rol"
532
 
533
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:65
534
+ msgid "Settings"
535
+ msgstr "Ayarları"
536
+
537
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:69
538
+ msgid "Stylesheet location"
539
+ msgstr ""
540
+
541
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:72
542
+ msgid "top"
543
+ msgstr ""
544
+
545
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:73
546
+ msgid "bottom"
547
+ msgstr ""
548
+
549
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:16
550
+ msgid "Custom Styles"
551
+ msgstr "Özel Stiller"
552
+
553
  #: views/SlideshowPluginPostType/information.php:1
554
  msgid ""
555
  "To use this slideshow in your website either add this piece of shortcode to "
581
  #: views/SlideshowPluginPostType/slides.php:190
582
  #: views/SlideshowPluginSlideInserter/insert-text-button.php:1
583
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:6
584
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:41
585
  msgid "Text slide"
586
  msgstr "Metin slaytı"
587
 
589
  #: views/SlideshowPluginPostType/slides.php:149
590
  #: views/SlideshowPluginPostType/slides.php:197
591
  #: views/SlideshowPluginPostType/slides.php:269
592
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:87
593
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:15
594
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:105
595
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:50
596
  msgid "Description"
597
  msgstr "Açıklama"
598
 
599
  #: views/SlideshowPluginPostType/slides.php:62
600
  #: views/SlideshowPluginPostType/slides.php:199
601
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:21
602
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:56
603
  msgid "Background color"
604
  msgstr "Arkaplan rengi"
605
 
607
  #: views/SlideshowPluginPostType/slides.php:154
608
  #: views/SlideshowPluginPostType/slides.php:204
609
  #: views/SlideshowPluginPostType/slides.php:274
610
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:94
611
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:28
612
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:112
613
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:64
614
  msgid "URL"
615
  msgstr "URL"
616
 
618
  #: views/SlideshowPluginPostType/slides.php:156
619
  #: views/SlideshowPluginPostType/slides.php:206
620
  #: views/SlideshowPluginPostType/slides.php:276
621
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:97
622
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:31
623
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:115
624
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:67
625
  msgid "Open URL in"
626
  msgstr "URL hedefi"
627
 
629
  #: views/SlideshowPluginPostType/slides.php:158
630
  #: views/SlideshowPluginPostType/slides.php:208
631
  #: views/SlideshowPluginPostType/slides.php:278
632
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:99
633
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:33
634
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:117
635
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:69
636
  msgid "Same window"
637
  msgstr "Aynı sayfa"
638
 
640
  #: views/SlideshowPluginPostType/slides.php:159
641
  #: views/SlideshowPluginPostType/slides.php:209
642
  #: views/SlideshowPluginPostType/slides.php:279
643
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:100
644
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:34
645
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:118
646
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:70
647
  msgid "New window"
648
  msgstr "Yeni sayfa"
649
 
651
  #: views/SlideshowPluginPostType/slides.php:229
652
  #: views/SlideshowPluginSlideInserter/insert-video-button.php:1
653
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:53
654
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:23
655
  msgid "Video slide"
656
  msgstr "Video Slayt"
657
 
658
  #: views/SlideshowPluginPostType/slides.php:94
659
  #: views/SlideshowPluginPostType/slides.php:234
660
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:59
661
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:29
662
  msgid "Youtube Video ID"
663
  msgstr "Youtube Video ID"
664
 
665
  #: views/SlideshowPluginPostType/slides.php:132
666
  #: views/SlideshowPluginPostType/slides.php:254
667
  #: views/SlideshowPluginSlideInserter/insert-image-button.php:1
668
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:66
669
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:86
670
  msgid "Image slide"
671
  msgstr "Resim Slaytı"
672
 
682
  #: views/SlideshowPluginPostType/slides.php:217
683
  #: views/SlideshowPluginPostType/slides.php:242
684
  #: views/SlideshowPluginPostType/slides.php:288
685
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:109
686
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:42
687
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:75
688
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:127
689
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:78
690
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:45
691
  msgid "Delete slide"
692
  msgstr "Bu Slaytı Sil"
693
 
702
 
703
  #: views/SlideshowPluginPostType/support-plugin.php:6
704
  msgid ""
705
+ "In order to keep you provided with the newest features, updates and bug "
706
+ "fixes, a lot of motivation is required. Therefore I'm kindly asking you to "
707
+ "consider making a small donation to the plugin or rating it as 5-stars on "
708
  "Wordpress.org. Thank you in advance!"
709
  msgstr ""
710
  "Yeni özellikler eklemek, hataları belirleyip düzeltmek için motivasyonumuzu "
762
  msgstr "Resimleri ID veya isme göre ara"
763
 
764
  #: views/SlideshowPluginSlideshowSlide/backend_templates.php:18
765
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:53
766
  msgid "Text color"
767
  msgstr "Yazı rengi"
768
 
769
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:66
770
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:36
771
+ msgid "Show related videos"
772
+ msgstr ""
773
+
774
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:58
775
  msgid "(Leave empty for a transparent background)"
776
  msgstr "(Şeffaf bir arkaplan için boş bırakın)"
777
 
languages/slideshow-plugin-zh_CN.mo CHANGED
Binary file
languages/slideshow-plugin-zh_CN.po CHANGED
@@ -1,733 +1,769 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Slideshow Plugin\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-03-25 19:58+0100\n"
6
- "PO-Revision-Date: 2013-03-25 19:58+0100\n"
7
- "Last-Translator: Stefan Boonstra <stefanboonstra@hotmail.com>\n"
8
- "Language-Team: Kevin Tell\n"
9
- "Language: zh_CN\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: _e;__\n"
14
- "X-Poedit-Basepath: ../\n"
15
- "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Generator: Poedit 1.5.5\n"
17
- "X-Poedit-SearchPath-0: .\n"
18
-
19
- #: classes/SlideshowPluginGeneralSettings.php:64
20
- #: classes/SlideshowPluginGeneralSettings.php:65
21
- msgid "General Settings"
22
- msgstr ""
23
-
24
- #: classes/SlideshowPluginGeneralSettings.php:146
25
- msgid "New"
26
- msgstr ""
27
-
28
- #: classes/SlideshowPluginGeneralSettings.php:147
29
- msgid "Are you sure you want to delete this custom style?"
30
- msgstr ""
31
-
32
- #: classes/SlideshowPluginGeneralSettings.php:166
33
- #: classes/SlideshowPluginInstaller.php:441
34
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:6
35
- msgid "Light"
36
- msgstr ""
37
-
38
- #: classes/SlideshowPluginGeneralSettings.php:167
39
- #: classes/SlideshowPluginInstaller.php:441
40
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:7
41
- msgid "Dark"
42
- msgstr ""
43
-
44
- #: classes/SlideshowPluginGeneralSettings.php:271
45
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:49
46
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:131
47
- msgid "Untitled"
48
- msgstr ""
49
-
50
- #: classes/SlideshowPluginInstaller.php:438
51
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:378
52
- msgid "Yes"
53
- msgstr ""
54
-
55
- #: classes/SlideshowPluginInstaller.php:439
56
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:379
57
- msgid "No"
58
- msgstr ""
59
-
60
- #: classes/SlideshowPluginInstaller.php:441
61
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:477
62
- msgid "The style used for this slideshow"
63
- msgstr ""
64
-
65
- #: classes/SlideshowPluginInstaller.php:441
66
- msgid "Custom"
67
- msgstr ""
68
-
69
- #: classes/SlideshowPluginInstaller.php:442
70
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:114
71
- msgid "Custom style editor"
72
- msgstr ""
73
-
74
- #: classes/SlideshowPluginInstaller.php:443
75
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
76
- msgid "Animation used for transition between slides"
77
- msgstr "幻灯片滑动的动画效果设置"
78
-
79
- #: classes/SlideshowPluginInstaller.php:443
80
- msgid "Slide"
81
- msgstr ""
82
-
83
- #: classes/SlideshowPluginInstaller.php:443
84
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
85
- msgid "Fade"
86
- msgstr ""
87
-
88
- #: classes/SlideshowPluginInstaller.php:443
89
- #: classes/SlideshowPluginInstaller.php:444
90
- #: classes/SlideshowPluginInstaller.php:445
91
- #: classes/SlideshowPluginInstaller.php:446
92
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
93
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:420
94
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
95
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:422
96
- msgid "Animation"
97
- msgstr "动态"
98
-
99
- #: classes/SlideshowPluginInstaller.php:444
100
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:420
101
- msgid "Number of seconds the slide takes to slide in"
102
- msgstr "幻灯片滑动速度"
103
-
104
- #: classes/SlideshowPluginInstaller.php:445
105
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:421
106
- msgid "Number of seconds the description takes to slide in"
107
- msgstr "“描述”滑动速度"
108
-
109
- #: classes/SlideshowPluginInstaller.php:446
110
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:422
111
- msgid "Seconds between changing slides"
112
- msgstr "幻灯片间置换的时间间隔"
113
-
114
- #: classes/SlideshowPluginInstaller.php:447
115
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
116
- msgid "Number of slides to fit into one slide"
117
- msgstr "同一幅幻灯片中显示多少图片"
118
-
119
- #: classes/SlideshowPluginInstaller.php:447
120
- #: classes/SlideshowPluginInstaller.php:448
121
- #: classes/SlideshowPluginInstaller.php:449
122
- #: classes/SlideshowPluginInstaller.php:450
123
- #: classes/SlideshowPluginInstaller.php:451
124
- #: classes/SlideshowPluginInstaller.php:452
125
- #: classes/SlideshowPluginInstaller.php:453
126
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:423
127
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:424
128
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
129
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:426
130
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:427
131
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
132
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:429
133
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:430
134
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:431
135
- msgid "Display"
136
- msgstr "显示"
137
-
138
- #: classes/SlideshowPluginInstaller.php:448
139
- msgid "Width of the slideshow, set to parent&#39;s width on 0"
140
- msgstr "幻灯片宽度,0为继承父元素宽度"
141
-
142
- #: classes/SlideshowPluginInstaller.php:449
143
- msgid "Height of the slideshow"
144
- msgstr "幻灯片高度"
145
-
146
- #: classes/SlideshowPluginInstaller.php:450
147
- msgid "Height of the description boxes"
148
- msgstr "幻灯片中描述窗口的高度"
149
-
150
- #: classes/SlideshowPluginInstaller.php:451
151
- msgid "Fit image into slide (stretching it)"
152
- msgstr "图片适应显示 (即拉伸图片"
153
-
154
- #: classes/SlideshowPluginInstaller.php:452
155
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:430
156
- msgid "Show title and description"
157
- msgstr "显示标题和描述"
158
-
159
- #: classes/SlideshowPluginInstaller.php:453
160
- msgid "Hide description box, it will pop up when a mouse hovers over the slide"
161
- msgstr "隐藏描述窗口,只有鼠标移至幻灯片才弹出"
162
-
163
- #: classes/SlideshowPluginInstaller.php:454
164
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:432
165
- msgid "Automatically slide to the next slide"
166
- msgstr "幻灯片自动滚动显示"
167
-
168
- #: classes/SlideshowPluginInstaller.php:454
169
- #: classes/SlideshowPluginInstaller.php:455
170
- #: classes/SlideshowPluginInstaller.php:456
171
- #: classes/SlideshowPluginInstaller.php:457
172
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:432
173
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:433
174
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:434
175
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:435
176
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:436
177
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:437
178
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:438
179
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:439
180
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:440
181
- msgid "Control"
182
- msgstr "控制"
183
-
184
- #: classes/SlideshowPluginInstaller.php:455
185
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:433
186
- msgid "Return to the beginning of the slideshow after last slide"
187
- msgstr "循环展示幻灯片"
188
-
189
- #: classes/SlideshowPluginInstaller.php:456
190
- msgid "Activate buttons (so the user can scroll through the slides)"
191
- msgstr "激活按钮 (用户可通过按钮左右滚动显示幻灯片)"
192
-
193
- #: classes/SlideshowPluginInstaller.php:457
194
- msgid "Show control panel (play and pause button)"
195
- msgstr "显示控制面板 (播放和停止按钮)"
196
-
197
- #: classes/SlideshowPluginPostType.php:38
198
- msgid "Slideshows"
199
- msgstr "幻灯片"
200
-
201
- #: classes/SlideshowPluginPostType.php:39
202
- #: views/SlideshowPluginWidget/form.php:7
203
- msgid "Slideshow"
204
- msgstr "幻灯片"
205
-
206
- #: classes/SlideshowPluginPostType.php:40
207
- msgid "Add New Slideshow"
208
- msgstr ""
209
-
210
- #: classes/SlideshowPluginPostType.php:41
211
- msgid "Edit slideshow"
212
- msgstr ""
213
-
214
- #: classes/SlideshowPluginPostType.php:42
215
- msgid "New slideshow"
216
- msgstr ""
217
-
218
- #: classes/SlideshowPluginPostType.php:43
219
- msgid "View slideshow"
220
- msgstr ""
221
-
222
- #: classes/SlideshowPluginPostType.php:44
223
- msgid "Search slideshows"
224
- msgstr ""
225
-
226
- #: classes/SlideshowPluginPostType.php:45
227
- #: classes/SlideshowPluginPostType.php:46
228
- msgid "No slideshows found"
229
- msgstr ""
230
-
231
- #: classes/SlideshowPluginPostType.php:155
232
- msgid "Information"
233
- msgstr "信息"
234
-
235
- #: classes/SlideshowPluginPostType.php:164
236
- msgid "Slides List"
237
- msgstr ""
238
-
239
- #: classes/SlideshowPluginPostType.php:173
240
- msgid "Slideshow Style"
241
- msgstr "幻灯片展示样式"
242
-
243
- #: classes/SlideshowPluginPostType.php:182
244
- msgid "Slideshow Settings"
245
- msgstr "幻灯片设置"
246
-
247
- #: classes/SlideshowPluginPostType.php:232
248
- #: classes/SlideshowPluginSlideInserter.php:178
249
- #: views/SlideshowPluginPostType/slides.php:2
250
- msgid "Insert"
251
- msgstr "插入"
252
-
253
- #: classes/SlideshowPluginPostType.php:240
254
- #: views/SlideshowPluginPostType/slides.php:9
255
- msgid "Add slides to this slideshow by using one of the buttons above."
256
- msgstr ""
257
-
258
- #: classes/SlideshowPluginShortcode.php:132
259
- msgid "No slideshow selected."
260
- msgstr ""
261
-
262
- #: classes/SlideshowPluginSlideInserter.php:151
263
- msgid "More results loaded"
264
- msgstr ""
265
-
266
- #: classes/SlideshowPluginSlideInserter.php:187
267
- msgid "Load more results"
268
- msgstr ""
269
-
270
- #: classes/SlideshowPluginSlideInserter.php:196
271
- msgid "No images were found, click here to upload some."
272
- msgstr ""
273
-
274
- #: classes/SlideshowPluginSlideInserter.php:273
275
- msgid "Are you sure you want to delete this slide?"
276
- msgstr ""
277
-
278
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
279
- msgid "Slide Left"
280
- msgstr ""
281
-
282
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
283
- msgid "Slide Right"
284
- msgstr ""
285
-
286
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
287
- msgid "Slide Up"
288
- msgstr ""
289
-
290
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
291
- msgid "Slide Down"
292
- msgstr ""
293
-
294
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
295
- msgid "Direct Fade"
296
- msgstr ""
297
-
298
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:419
299
- msgid "Random Animation"
300
- msgstr ""
301
-
302
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:424
303
- msgid "Maximum width. When maximum width is 0, maximum width is ignored"
304
- msgstr ""
305
-
306
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
307
- msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
308
- msgstr ""
309
-
310
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
311
- msgid "More info"
312
- msgstr ""
313
-
314
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:425
315
- #, php-format
316
- msgid ""
317
- "Proportional relationship%s between slideshow's width and height (width:"
318
- "height)"
319
- msgstr ""
320
-
321
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:426
322
- msgid "Slideshow's height"
323
- msgstr ""
324
-
325
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:427
326
- msgid "Fit image into slide (Stretch image)"
327
- msgstr ""
328
-
329
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:428
330
- msgid "Shrink slideshow's height when width shrinks"
331
- msgstr ""
332
-
333
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:429
334
- msgid ""
335
- "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
336
- msgstr ""
337
-
338
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:431
339
- msgid "Hide description box, pop up when mouse hovers over"
340
- msgstr ""
341
-
342
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:434
343
- msgid "Pause slideshow when mouse hovers over"
344
- msgstr ""
345
-
346
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:435
347
- msgid "Activate navigation buttons"
348
- msgstr ""
349
-
350
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:436
351
- msgid "Hide navigation buttons, show when mouse hovers over"
352
- msgstr ""
353
-
354
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:437
355
- msgid "Activate pagination"
356
- msgstr ""
357
-
358
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:438
359
- msgid "Hide pagination, show when mouse hovers over"
360
- msgstr ""
361
-
362
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:439
363
- msgid "Activate control panel (play and pause button)"
364
- msgstr ""
365
-
366
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:440
367
- msgid "Hide control panel, show when mouse hovers over"
368
- msgstr ""
369
-
370
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:441
371
- msgid "Randomize slides"
372
- msgstr "随机幻灯片"
373
-
374
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:441
375
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:442
376
- msgid "Miscellaneous"
377
- msgstr "其他"
378
-
379
- #: classes/SlideshowPluginSlideshowSettingsHandler.php:442
380
- #, php-format
381
- msgid "Avoid content filter (disable if '%s' is shown)"
382
- msgstr ""
383
-
384
- #: classes/SlideshowPluginWidget.php:23
385
- msgid "Enables you to show your slideshows in the widget area of your website."
386
- msgstr ""
387
-
388
- #: classes/SlideshowPluginWidget.php:29
389
- msgid "Slideshow Widget"
390
- msgstr ""
391
-
392
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:38
393
- msgid "Default stylesheets"
394
- msgstr ""
395
-
396
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:52
397
- msgid "Create a new custom style from this style"
398
- msgstr ""
399
-
400
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:54
401
- msgid "Customize"
402
- msgstr ""
403
-
404
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:68
405
- msgid "Custom stylesheets"
406
- msgstr ""
407
-
408
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:81
409
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:160
410
- msgid "Edit this style"
411
- msgstr ""
412
-
413
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:83
414
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:162
415
- #: views/SlideshowPluginPostType/slides.php:137
416
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:46
417
- msgid "Edit"
418
- msgstr ""
419
-
420
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:90
421
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:169
422
- msgid "Delete this style"
423
- msgstr ""
424
-
425
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:92
426
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:171
427
- msgid "Delete"
428
- msgstr ""
429
-
430
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:102
431
- msgid "Click 'Customize' to create a new custom stylesheet."
432
- msgstr ""
433
-
434
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:118
435
- msgid "Select a stylesheet from the left to start customizing it."
436
- msgstr ""
437
-
438
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:127
439
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:180
440
- #: views/SlideshowPluginPostType/slides.php:58
441
- #: views/SlideshowPluginPostType/slides.php:143
442
- #: views/SlideshowPluginPostType/slides.php:195
443
- #: views/SlideshowPluginPostType/slides.php:263
444
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:54
445
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:12
446
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:90
447
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:29
448
- #: views/SlideshowPluginWidget/form.php:2
449
- msgid "Title"
450
- msgstr ""
451
-
452
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:136
453
- #: views/SlideshowPluginGeneralSettings/custom-styles.php:188
454
- msgid "Style"
455
- msgstr ""
456
-
457
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:11
458
- msgid "Note"
459
- msgstr ""
460
-
461
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:18
462
- #, php-format
463
- msgid ""
464
- "The settings set on this page apply only to newly created slideshows and "
465
- "therefore do not alter any existing ones. To adapt a slideshow's settings, "
466
- "%sclick here.%s"
467
- msgstr ""
468
-
469
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:30
470
- #: views/SlideshowPluginGeneralSettings/general-settings.php:16
471
- msgid "Default Slideshow Settings"
472
- msgstr ""
473
-
474
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:43
475
- #: views/SlideshowPluginPostType/settings.php:12
476
- msgid "settings"
477
- msgstr "设置"
478
-
479
- #: views/SlideshowPluginGeneralSettings/default-slideshow-settings.php:80
480
- msgid "Default Slideshow Stylesheet"
481
- msgstr ""
482
-
483
- #: views/SlideshowPluginGeneralSettings/general-settings.php:15
484
- msgid "User Capabilities"
485
- msgstr ""
486
-
487
- #: views/SlideshowPluginGeneralSettings/general-settings.php:17
488
- msgid "Custom Styles"
489
- msgstr ""
490
-
491
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:8
492
- msgid "Add slideshows"
493
- msgstr ""
494
-
495
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:9
496
- msgid "Edit slideshows"
497
- msgstr ""
498
-
499
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:10
500
- msgid "Delete slideshows"
501
- msgstr ""
502
-
503
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:18
504
- msgid "Select the user roles that will able to perform certain actions."
505
- msgstr ""
506
-
507
- #: views/SlideshowPluginGeneralSettings/user-capabilities.php:35
508
- msgid "Untitled role"
509
- msgstr ""
510
-
511
- #: views/SlideshowPluginPostType/information.php:1
512
- msgid ""
513
- "To use this slideshow in your website either add this piece of shortcode to "
514
- "your posts or pages"
515
- msgstr "要在你的网站使用幻灯片功能,请把下面代码加入到文章或者页面内:"
516
-
517
- #: views/SlideshowPluginPostType/information.php:5
518
- msgid ""
519
- "Or add this piece of code to where ever in your website you want to place "
520
- "the slideshow"
521
- msgstr "或者加入这串代码到你网站想展示的地方:"
522
-
523
- #: views/SlideshowPluginPostType/information.php:9
524
- #, php-format
525
- msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
526
- msgstr "%s或者到小工具页面把幻灯片加入小工具内。%s"
527
-
528
- #: views/SlideshowPluginPostType/settings.php:26
529
- #: views/SlideshowPluginPostType/style-settings.php:11
530
- msgid "Default"
531
- msgstr ""
532
-
533
- #: views/SlideshowPluginPostType/slides.php:53
534
- #: views/SlideshowPluginPostType/slides.php:190
535
- #: views/SlideshowPluginSlideInserter/insert-text-button.php:1
536
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:6
537
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:23
538
- msgid "Text slide"
539
- msgstr "文本幻灯片"
540
-
541
- #: views/SlideshowPluginPostType/slides.php:60
542
- #: views/SlideshowPluginPostType/slides.php:149
543
- #: views/SlideshowPluginPostType/slides.php:197
544
- #: views/SlideshowPluginPostType/slides.php:269
545
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:61
546
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:15
547
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:97
548
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:32
549
- msgid "Description"
550
- msgstr ""
551
-
552
- #: views/SlideshowPluginPostType/slides.php:62
553
- #: views/SlideshowPluginPostType/slides.php:199
554
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:21
555
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:38
556
- msgid "Background color"
557
- msgstr ""
558
-
559
- #: views/SlideshowPluginPostType/slides.php:67
560
- #: views/SlideshowPluginPostType/slides.php:154
561
- #: views/SlideshowPluginPostType/slides.php:204
562
- #: views/SlideshowPluginPostType/slides.php:274
563
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:68
564
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:28
565
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:104
566
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:46
567
- msgid "URL"
568
- msgstr ""
569
-
570
- #: views/SlideshowPluginPostType/slides.php:69
571
- #: views/SlideshowPluginPostType/slides.php:156
572
- #: views/SlideshowPluginPostType/slides.php:206
573
- #: views/SlideshowPluginPostType/slides.php:276
574
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:71
575
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:31
576
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:107
577
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:49
578
- msgid "Open URL in"
579
- msgstr ""
580
-
581
- #: views/SlideshowPluginPostType/slides.php:71
582
- #: views/SlideshowPluginPostType/slides.php:158
583
- #: views/SlideshowPluginPostType/slides.php:208
584
- #: views/SlideshowPluginPostType/slides.php:278
585
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:73
586
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:33
587
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:109
588
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:51
589
- msgid "Same window"
590
- msgstr ""
591
-
592
- #: views/SlideshowPluginPostType/slides.php:72
593
- #: views/SlideshowPluginPostType/slides.php:159
594
- #: views/SlideshowPluginPostType/slides.php:209
595
- #: views/SlideshowPluginPostType/slides.php:279
596
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:74
597
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:34
598
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:110
599
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:52
600
- msgid "New window"
601
- msgstr ""
602
-
603
- #: views/SlideshowPluginPostType/slides.php:89
604
- #: views/SlideshowPluginPostType/slides.php:229
605
- #: views/SlideshowPluginSlideInserter/insert-video-button.php:1
606
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:53
607
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:13
608
- msgid "Video slide"
609
- msgstr "视频幻灯片"
610
-
611
- #: views/SlideshowPluginPostType/slides.php:94
612
- #: views/SlideshowPluginPostType/slides.php:234
613
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:59
614
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:19
615
- msgid "Youtube Video ID"
616
- msgstr ""
617
-
618
- #: views/SlideshowPluginPostType/slides.php:132
619
- #: views/SlideshowPluginPostType/slides.php:254
620
- #: views/SlideshowPluginSlideInserter/insert-image-button.php:1
621
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:40
622
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:78
623
- msgid "Image slide"
624
- msgstr "图示幻灯片"
625
-
626
- #: views/SlideshowPluginPostType/slides.php:170
627
- msgid ""
628
- "An error occurred while loading this slide, and it will not be present in "
629
- "the slideshow"
630
- msgstr ""
631
-
632
- #: views/SlideshowPluginPostType/slides.php:176
633
- #: views/SlideshowPluginPostType/slides.php:217
634
- #: views/SlideshowPluginPostType/slides.php:242
635
- #: views/SlideshowPluginPostType/slides.php:288
636
- #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:83
637
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:42
638
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:67
639
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:119
640
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:60
641
- #: views/SlideshowPluginSlideshowSlide/backend_video.php:27
642
- msgid "Delete slide"
643
- msgstr ""
644
-
645
- #: views/SlideshowPluginPostType/style-settings.php:22
646
- #, php-format
647
- msgid "Custom styles can be created and customized %shere%s."
648
- msgstr ""
649
-
650
- #: views/SlideshowPluginPostType/support-plugin.php:3
651
- msgid "Help to keep this plugin free!"
652
- msgstr "协助保持本插件免费"
653
-
654
- #: views/SlideshowPluginPostType/support-plugin.php:6
655
- msgid ""
656
- "In order to keep you provided with the newest features, forum support, and "
657
- "bug-fixes, a lot of motivation is required. Therefore I'm kindly asking you "
658
- "to consider making a small donation to the plugin or rating it as 5-stars on "
659
- "Wordpress.org. Thank you in advance!"
660
- msgstr ""
661
- "我很爽快地希望你们能考虑对本插件作出一些小捐赠,或者能在wordpress.org给予5星"
662
- "好评,这样能让我保持积极性,在未来提供给你们插件的持续更新、论坛支持和bug的修"
663
- "复,先跟你们提前谢谢!"
664
-
665
- #: views/SlideshowPluginPostType/support-plugin.php:15
666
- msgid "Rate on Wordpress.org"
667
- msgstr "为本插件打分"
668
-
669
- #: views/SlideshowPluginPostType/support-plugin.php:24
670
- msgid "Frequently Asked Questions (FAQ)"
671
- msgstr ""
672
-
673
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
674
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
675
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
676
- msgid "Insert a Slideshow"
677
- msgstr ""
678
-
679
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
680
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
681
- msgid "Insert Slideshow"
682
- msgstr ""
683
-
684
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
685
- msgid "Select a slideshow"
686
- msgstr ""
687
-
688
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
689
- #: views/SlideshowPluginWidget/form.php:12
690
- msgid "Untitled slideshow"
691
- msgstr ""
692
-
693
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
694
- msgid "Cancel"
695
- msgstr ""
696
-
697
- #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
698
- #, php-format
699
- msgid ""
700
- "It seems you haven't created any slideshows yet. %sYou can create a "
701
- "slideshow here!%s"
702
- msgstr ""
703
-
704
- #: views/SlideshowPluginSlideInserter/search-popup.php:6
705
- msgid "Search"
706
- msgstr ""
707
-
708
- #: views/SlideshowPluginSlideInserter/search-popup.php:7
709
- msgid "Search images by title or ID"
710
- msgstr ""
711
-
712
- #: views/SlideshowPluginSlideshowSlide/backend_templates.php:18
713
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:35
714
- msgid "Text color"
715
- msgstr ""
716
-
717
- #: views/SlideshowPluginSlideshowSlide/backend_text.php:40
718
- msgid "(Leave empty for a transparent background)"
719
- msgstr ""
720
-
721
- #: views/SlideshowPluginUpload/upload-button.php:1
722
- msgid "Upload/Manage Images"
723
- msgstr ""
724
-
725
- #: views/SlideshowPluginWidget/form.php:9
726
- msgid "Random Slideshow"
727
- msgstr ""
728
-
729
- #~ msgid "Questions / Suggestions"
730
- #~ msgstr "问题/建议"
731
-
732
- #~ msgid "Leave any field open to use default value."
733
- #~ msgstr "Een veld dat open wordt gelaten neemt de standaardwaarde aan."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Slideshow Plugin\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-08-21 10:41+0100\n"
6
+ "PO-Revision-Date: 2013-08-21 10:41+0100\n"
7
+ "Last-Translator: Stefan Boonstra <stefanboonstra@hotmail.com>\n"
8
+ "Language-Team: Kevin Tell\n"
9
+ "Language: zh_CN\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-KeywordsList: _e;__\n"
14
+ "X-Poedit-Basepath: ../\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Poedit 1.5.7\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:516
35
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:6
36
+ msgid "Light"
37
+ msgstr ""
38
+
39
+ #: classes/SlideshowPluginGeneralSettings.php:197
40
+ #: classes/SlideshowPluginInstaller.php:516
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:139
48
+ msgid "Untitled"
49
+ msgstr ""
50
+
51
+ #: classes/SlideshowPluginInstaller.php:513
52
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:472
53
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:67
54
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:37
55
+ msgid "Yes"
56
+ msgstr ""
57
+
58
+ #: classes/SlideshowPluginInstaller.php:514
59
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:473
60
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:68
61
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:38
62
+ msgid "No"
63
+ msgstr ""
64
+
65
+ #: classes/SlideshowPluginInstaller.php:516
66
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:610
67
+ msgid "The style used for this slideshow"
68
+ msgstr ""
69
+
70
+ #: classes/SlideshowPluginInstaller.php:516
71
+ msgid "Custom"
72
+ msgstr ""
73
+
74
+ #: classes/SlideshowPluginInstaller.php:517
75
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:122
76
+ msgid "Custom style editor"
77
+ msgstr ""
78
+
79
+ #: classes/SlideshowPluginInstaller.php:518
80
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:518
81
+ msgid "Animation used for transition between slides"
82
+ msgstr "幻灯片滑动的动画效果设置"
83
+
84
+ #: classes/SlideshowPluginInstaller.php:518
85
+ msgid "Slide"
86
+ msgstr ""
87
+
88
+ #: classes/SlideshowPluginInstaller.php:518
89
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
90
+ msgid "Fade"
91
+ msgstr ""
92
+
93
+ #: classes/SlideshowPluginInstaller.php:518
94
+ #: classes/SlideshowPluginInstaller.php:519
95
+ #: classes/SlideshowPluginInstaller.php:520
96
+ #: classes/SlideshowPluginInstaller.php:521
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:519
105
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:519
106
+ msgid "Number of seconds the slide takes to slide in"
107
+ msgstr "幻灯片滑动速度"
108
+
109
+ #: classes/SlideshowPluginInstaller.php:520
110
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:520
111
+ msgid "Number of seconds the description takes to slide in"
112
+ msgstr "“描述”滑动速度"
113
+
114
+ #: classes/SlideshowPluginInstaller.php:521
115
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:521
116
+ msgid "Seconds between changing slides"
117
+ msgstr "幻灯片间置换的时间间隔"
118
+
119
+ #: classes/SlideshowPluginInstaller.php:522
120
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:522
121
+ msgid "Number of slides to fit into one slide"
122
+ msgstr "同一幅幻灯片中显示多少图片"
123
+
124
+ #: classes/SlideshowPluginInstaller.php:522
125
+ #: classes/SlideshowPluginInstaller.php:523
126
+ #: classes/SlideshowPluginInstaller.php:524
127
+ #: classes/SlideshowPluginInstaller.php:525
128
+ #: classes/SlideshowPluginInstaller.php:526
129
+ #: classes/SlideshowPluginInstaller.php:527
130
+ #: classes/SlideshowPluginInstaller.php:528
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:523
144
+ msgid "Width of the slideshow, set to parent&#39;s width on 0"
145
+ msgstr "幻灯片宽度,0为继承父元素宽度"
146
+
147
+ #: classes/SlideshowPluginInstaller.php:524
148
+ msgid "Height of the slideshow"
149
+ msgstr "幻灯片高度"
150
+
151
+ #: classes/SlideshowPluginInstaller.php:525
152
+ msgid "Height of the description boxes"
153
+ msgstr "幻灯片中描述窗口的高度"
154
+
155
+ #: classes/SlideshowPluginInstaller.php:526
156
+ msgid "Fit image into slide (stretching it)"
157
+ msgstr "图片适应显示 (即拉伸图片"
158
+
159
+ #: classes/SlideshowPluginInstaller.php:527
160
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:529
161
+ msgid "Show title and description"
162
+ msgstr "显示标题和描述"
163
+
164
+ #: classes/SlideshowPluginInstaller.php:528
165
+ msgid "Hide description box, it will pop up when a mouse hovers over the slide"
166
+ msgstr "隐藏描述窗口,只有鼠标移至幻灯片才弹出"
167
+
168
+ #: classes/SlideshowPluginInstaller.php:529
169
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:531
170
+ msgid "Automatically slide to the next slide"
171
+ msgstr "幻灯片自动滚动显示"
172
+
173
+ #: classes/SlideshowPluginInstaller.php:529
174
+ #: classes/SlideshowPluginInstaller.php:530
175
+ #: classes/SlideshowPluginInstaller.php:531
176
+ #: classes/SlideshowPluginInstaller.php:532
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:530
190
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:532
191
+ msgid "Return to the beginning of the slideshow after last slide"
192
+ msgstr "循环展示幻灯片"
193
+
194
+ #: classes/SlideshowPluginInstaller.php:531
195
+ msgid "Activate buttons (so the user can scroll through the slides)"
196
+ msgstr "激活按钮 (用户可通过按钮左右滚动显示幻灯片)"
197
+
198
+ #: classes/SlideshowPluginInstaller.php:532
199
+ msgid "Show control panel (play and pause button)"
200
+ msgstr "显示控制面板 (播放和停止按钮)"
201
+
202
+ #: classes/SlideshowPluginPostType.php:38
203
+ msgid "Slideshows"
204
+ msgstr "幻灯片"
205
+
206
+ #: classes/SlideshowPluginPostType.php:39
207
+ #: views/SlideshowPluginWidget/form.php:7
208
+ msgid "Slideshow"
209
+ msgstr "幻灯片"
210
+
211
+ #: classes/SlideshowPluginPostType.php:40
212
+ msgid "Add New Slideshow"
213
+ msgstr ""
214
+
215
+ #: classes/SlideshowPluginPostType.php:41
216
+ msgid "Edit slideshow"
217
+ msgstr ""
218
+
219
+ #: classes/SlideshowPluginPostType.php:42
220
+ msgid "New slideshow"
221
+ msgstr ""
222
+
223
+ #: classes/SlideshowPluginPostType.php:43
224
+ msgid "View slideshow"
225
+ msgstr ""
226
+
227
+ #: classes/SlideshowPluginPostType.php:44
228
+ msgid "Search slideshows"
229
+ msgstr ""
230
+
231
+ #: classes/SlideshowPluginPostType.php:45
232
+ #: classes/SlideshowPluginPostType.php:46
233
+ msgid "No slideshows found"
234
+ msgstr ""
235
+
236
+ #: classes/SlideshowPluginPostType.php:91
237
+ msgid "Information"
238
+ msgstr "信息"
239
+
240
+ #: classes/SlideshowPluginPostType.php:100
241
+ msgid "Slides List"
242
+ msgstr ""
243
+
244
+ #: classes/SlideshowPluginPostType.php:109
245
+ msgid "Slideshow Style"
246
+ msgstr "幻灯片展示样式"
247
+
248
+ #: classes/SlideshowPluginPostType.php:118
249
+ msgid "Slideshow Settings"
250
+ msgstr "幻灯片设置"
251
+
252
+ #: classes/SlideshowPluginPostType.php:174
253
+ #: classes/SlideshowPluginSlideInserter.php:222
254
+ #: views/SlideshowPluginPostType/slides.php:2
255
+ msgid "Insert"
256
+ msgstr "插入"
257
+
258
+ #: classes/SlideshowPluginPostType.php:183
259
+ #: views/SlideshowPluginPostType/slides.php:9
260
+ msgid "Add slides to this slideshow by using one of the buttons above."
261
+ msgstr ""
262
+
263
+ #: classes/SlideshowPluginShortcode.php:148
264
+ msgid "No slideshow selected."
265
+ msgstr ""
266
+
267
+ #: classes/SlideshowPluginSlideInserter.php:178
268
+ msgid "More results loaded"
269
+ msgstr ""
270
+
271
+ #: classes/SlideshowPluginSlideInserter.php:233
272
+ msgid "Load more results"
273
+ msgstr ""
274
+
275
+ #: classes/SlideshowPluginSlideInserter.php:244
276
+ msgid "No images were found, click here to upload some."
277
+ msgstr ""
278
+
279
+ #: classes/SlideshowPluginSlideInserter.php:316
280
+ msgid "Are you sure you want to delete this slide?"
281
+ msgstr ""
282
+
283
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:523
284
+ msgid "Maximum width. When maximum width is 0, maximum width is ignored"
285
+ msgstr ""
286
+
287
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
288
+ msgid "http://en.wikipedia.org/wiki/Aspect_ratio_(image)"
289
+ msgstr ""
290
+
291
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
292
+ msgid "More info"
293
+ msgstr ""
294
+
295
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:524
296
+ #, php-format
297
+ msgid ""
298
+ "Proportional relationship%s between slideshow's width and height (width:"
299
+ "height)"
300
+ msgstr ""
301
+
302
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:525
303
+ msgid "Slideshow's height"
304
+ msgstr ""
305
+
306
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:526
307
+ msgid "Fit image into slide (Stretch image)"
308
+ msgstr ""
309
+
310
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:527
311
+ msgid "Shrink slideshow's height when width shrinks"
312
+ msgstr ""
313
+
314
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:528
315
+ msgid ""
316
+ "Enable responsiveness (Shrink slideshow's width when page's width shrinks)"
317
+ msgstr ""
318
+
319
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:530
320
+ msgid "Hide description box, pop up when mouse hovers over"
321
+ msgstr ""
322
+
323
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:533
324
+ msgid "Pause slideshow when mouse hovers over"
325
+ msgstr ""
326
+
327
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:534
328
+ msgid "Activate navigation buttons"
329
+ msgstr ""
330
+
331
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:535
332
+ msgid "Hide navigation buttons, show when mouse hovers over"
333
+ msgstr ""
334
+
335
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:536
336
+ msgid "Activate pagination"
337
+ msgstr ""
338
+
339
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:537
340
+ msgid "Hide pagination, show when mouse hovers over"
341
+ msgstr ""
342
+
343
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:538
344
+ msgid "Activate control panel (play and pause button)"
345
+ msgstr ""
346
+
347
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:539
348
+ msgid "Hide control panel, show when mouse hovers over"
349
+ msgstr ""
350
+
351
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:540
352
+ msgid "Wait until the next slide has loaded before showing it"
353
+ msgstr ""
354
+
355
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:541
356
+ msgid "Show a loading icon until the first slide appears"
357
+ msgstr ""
358
+
359
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:542
360
+ msgid "Randomize slides"
361
+ msgstr "随机幻灯片"
362
+
363
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:543
364
+ #, php-format
365
+ msgid "Avoid content filter (disable if '%s' is shown)"
366
+ msgstr ""
367
+
368
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
369
+ msgid "Slide Left"
370
+ msgstr ""
371
+
372
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
373
+ msgid "Slide Right"
374
+ msgstr ""
375
+
376
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
377
+ msgid "Slide Up"
378
+ msgstr ""
379
+
380
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
381
+ msgid "Slide Down"
382
+ msgstr ""
383
+
384
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
385
+ msgid "Direct Fade"
386
+ msgstr ""
387
+
388
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:547
389
+ msgid "Random Animation"
390
+ msgstr ""
391
+
392
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:569
393
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:570
394
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:571
395
+ #: classes/SlideshowPluginSlideshowSettingsHandler.php:572
396
+ msgid "Miscellaneous"
397
+ msgstr "其他"
398
+
399
+ #: classes/SlideshowPluginWidget.php:23
400
+ msgid "Enables you to show your slideshows in the widget area of your website."
401
+ msgstr ""
402
+
403
+ #: classes/SlideshowPluginWidget.php:29
404
+ msgid "Slideshow Widget"
405
+ msgstr ""
406
+
407
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:46
408
+ msgid "Default stylesheets"
409
+ msgstr ""
410
+
411
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:60
412
+ msgid "Create a new custom style from this style"
413
+ msgstr ""
414
+
415
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:62
416
+ msgid "Customize"
417
+ msgstr ""
418
+
419
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:76
420
+ msgid "Custom stylesheets"
421
+ msgstr ""
422
+
423
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:89
424
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:168
425
+ msgid "Edit this style"
426
+ msgstr ""
427
+
428
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:91
429
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:170
430
+ #: views/SlideshowPluginPostType/slides.php:137
431
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:72
432
+ msgid "Edit"
433
+ msgstr ""
434
+
435
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:98
436
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:177
437
+ msgid "Delete this style"
438
+ msgstr ""
439
+
440
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:100
441
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:179
442
+ msgid "Delete"
443
+ msgstr ""
444
+
445
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:110
446
+ msgid "Click 'Customize' to create a new custom stylesheet."
447
+ msgstr ""
448
+
449
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:126
450
+ msgid "Select a stylesheet from the left to start customizing it."
451
+ msgstr ""
452
+
453
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:135
454
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:188
455
+ #: views/SlideshowPluginPostType/slides.php:58
456
+ #: views/SlideshowPluginPostType/slides.php:143
457
+ #: views/SlideshowPluginPostType/slides.php:195
458
+ #: views/SlideshowPluginPostType/slides.php:263
459
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:80
460
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:12
461
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:98
462
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:47
463
+ #: views/SlideshowPluginWidget/form.php:2
464
+ msgid "Title"
465
+ msgstr ""
466
+
467
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:144
468
+ #: views/SlideshowPluginGeneralSettings/custom-styles-tab.php:196
469
+ msgid "Style"
470
+ msgstr ""
471
+
472
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:11
473
+ msgid "Note"
474
+ msgstr ""
475
+
476
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:18
477
+ #, php-format
478
+ msgid ""
479
+ "The settings set on this page apply only to newly created slideshows and "
480
+ "therefore do not alter any existing ones. To adapt a slideshow's settings, "
481
+ "%sclick here.%s"
482
+ msgstr ""
483
+
484
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:29
485
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:15
486
+ msgid "Default Slideshow Settings"
487
+ msgstr ""
488
+
489
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:41
490
+ #: views/SlideshowPluginPostType/settings.php:12
491
+ msgid "settings"
492
+ msgstr "设置"
493
+
494
+ #: views/SlideshowPluginGeneralSettings/default-slideshow-settings-tab.php:77
495
+ msgid "Default Slideshow Stylesheet"
496
+ msgstr ""
497
+
498
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:11
499
+ msgid "Add slideshows"
500
+ msgstr ""
501
+
502
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:12
503
+ msgid "Edit slideshows"
504
+ msgstr ""
505
+
506
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:13
507
+ msgid "Delete slideshows"
508
+ msgstr ""
509
+
510
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:20
511
+ msgid "User Capabilities"
512
+ msgstr ""
513
+
514
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:22
515
+ msgid "Select the user roles that will able to perform certain actions."
516
+ msgstr ""
517
+
518
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:38
519
+ msgid "Untitled role"
520
+ msgstr ""
521
+
522
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:65
523
+ msgid "Settings"
524
+ msgstr "设置"
525
+
526
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:69
527
+ msgid "Stylesheet location"
528
+ msgstr ""
529
+
530
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:72
531
+ msgid "top"
532
+ msgstr ""
533
+
534
+ #: views/SlideshowPluginGeneralSettings/general-settings-tab.php:73
535
+ msgid "bottom"
536
+ msgstr ""
537
+
538
+ #: views/SlideshowPluginGeneralSettings/general-settings.php:16
539
+ msgid "Custom Styles"
540
+ msgstr ""
541
+
542
+ #: views/SlideshowPluginPostType/information.php:1
543
+ msgid ""
544
+ "To use this slideshow in your website either add this piece of shortcode to "
545
+ "your posts or pages"
546
+ msgstr "要在你的网站使用幻灯片功能,请把下面代码加入到文章或者页面内:"
547
+
548
+ #: views/SlideshowPluginPostType/information.php:5
549
+ msgid ""
550
+ "Or add this piece of code to where ever in your website you want to place "
551
+ "the slideshow"
552
+ msgstr "或者加入这串代码到你网站想展示的地方:"
553
+
554
+ #: views/SlideshowPluginPostType/information.php:9
555
+ #, php-format
556
+ msgid "Or go to the %swidgets page%s and show the slideshow as a widget."
557
+ msgstr "%s或者到小工具页面把幻灯片加入小工具内。%s"
558
+
559
+ #: views/SlideshowPluginPostType/settings.php:26
560
+ #: views/SlideshowPluginPostType/style-settings.php:11
561
+ msgid "Default"
562
+ msgstr ""
563
+
564
+ #: views/SlideshowPluginPostType/slides.php:53
565
+ #: views/SlideshowPluginPostType/slides.php:190
566
+ #: views/SlideshowPluginSlideInserter/insert-text-button.php:1
567
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:6
568
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:41
569
+ msgid "Text slide"
570
+ msgstr "文本幻灯片"
571
+
572
+ #: views/SlideshowPluginPostType/slides.php:60
573
+ #: views/SlideshowPluginPostType/slides.php:149
574
+ #: views/SlideshowPluginPostType/slides.php:197
575
+ #: views/SlideshowPluginPostType/slides.php:269
576
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:87
577
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:15
578
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:105
579
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:50
580
+ msgid "Description"
581
+ msgstr ""
582
+
583
+ #: views/SlideshowPluginPostType/slides.php:62
584
+ #: views/SlideshowPluginPostType/slides.php:199
585
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:21
586
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:56
587
+ msgid "Background color"
588
+ msgstr ""
589
+
590
+ #: views/SlideshowPluginPostType/slides.php:67
591
+ #: views/SlideshowPluginPostType/slides.php:154
592
+ #: views/SlideshowPluginPostType/slides.php:204
593
+ #: views/SlideshowPluginPostType/slides.php:274
594
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:94
595
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:28
596
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:112
597
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:64
598
+ msgid "URL"
599
+ msgstr ""
600
+
601
+ #: views/SlideshowPluginPostType/slides.php:69
602
+ #: views/SlideshowPluginPostType/slides.php:156
603
+ #: views/SlideshowPluginPostType/slides.php:206
604
+ #: views/SlideshowPluginPostType/slides.php:276
605
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:97
606
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:31
607
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:115
608
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:67
609
+ msgid "Open URL in"
610
+ msgstr ""
611
+
612
+ #: views/SlideshowPluginPostType/slides.php:71
613
+ #: views/SlideshowPluginPostType/slides.php:158
614
+ #: views/SlideshowPluginPostType/slides.php:208
615
+ #: views/SlideshowPluginPostType/slides.php:278
616
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:99
617
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:33
618
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:117
619
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:69
620
+ msgid "Same window"
621
+ msgstr ""
622
+
623
+ #: views/SlideshowPluginPostType/slides.php:72
624
+ #: views/SlideshowPluginPostType/slides.php:159
625
+ #: views/SlideshowPluginPostType/slides.php:209
626
+ #: views/SlideshowPluginPostType/slides.php:279
627
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:100
628
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:34
629
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:118
630
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:70
631
+ msgid "New window"
632
+ msgstr ""
633
+
634
+ #: views/SlideshowPluginPostType/slides.php:89
635
+ #: views/SlideshowPluginPostType/slides.php:229
636
+ #: views/SlideshowPluginSlideInserter/insert-video-button.php:1
637
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:53
638
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:23
639
+ msgid "Video slide"
640
+ msgstr "视频幻灯片"
641
+
642
+ #: views/SlideshowPluginPostType/slides.php:94
643
+ #: views/SlideshowPluginPostType/slides.php:234
644
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:59
645
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:29
646
+ msgid "Youtube Video ID"
647
+ msgstr ""
648
+
649
+ #: views/SlideshowPluginPostType/slides.php:132
650
+ #: views/SlideshowPluginPostType/slides.php:254
651
+ #: views/SlideshowPluginSlideInserter/insert-image-button.php:1
652
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:66
653
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:86
654
+ msgid "Image slide"
655
+ msgstr "图示幻灯片"
656
+
657
+ #: views/SlideshowPluginPostType/slides.php:170
658
+ msgid ""
659
+ "An error occurred while loading this slide, and it will not be present in "
660
+ "the slideshow"
661
+ msgstr ""
662
+
663
+ #: views/SlideshowPluginPostType/slides.php:176
664
+ #: views/SlideshowPluginPostType/slides.php:217
665
+ #: views/SlideshowPluginPostType/slides.php:242
666
+ #: views/SlideshowPluginPostType/slides.php:288
667
+ #: views/SlideshowPluginSlideshowSlide/backend_attachment.php:109
668
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:42
669
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:75
670
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:127
671
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:78
672
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:45
673
+ msgid "Delete slide"
674
+ msgstr ""
675
+
676
+ #: views/SlideshowPluginPostType/style-settings.php:22
677
+ #, php-format
678
+ msgid "Custom styles can be created and customized %shere%s."
679
+ msgstr ""
680
+
681
+ #: views/SlideshowPluginPostType/support-plugin.php:3
682
+ msgid "Help to keep this plugin free!"
683
+ msgstr "协助保持本插件免费"
684
+
685
+ #: views/SlideshowPluginPostType/support-plugin.php:6
686
+ msgid ""
687
+ "In order to keep you provided with the newest features, updates and bug "
688
+ "fixes, a lot of motivation is required. Therefore I'm kindly asking you to "
689
+ "consider making a small donation to the plugin or rating it as 5-stars on "
690
+ "Wordpress.org. Thank you in advance!"
691
+ msgstr ""
692
+ "我很爽快地希望你们能考虑对本插件作出一些小捐赠,或者能在wordpress.org给予5星"
693
+ "好评,这样能让我保持积极性,在未来提供给你们插件的持续更新、论坛支持和bug的修"
694
+ "复,先跟你们提前谢谢!"
695
+
696
+ #: views/SlideshowPluginPostType/support-plugin.php:15
697
+ msgid "Rate on Wordpress.org"
698
+ msgstr "为本插件打分"
699
+
700
+ #: views/SlideshowPluginPostType/support-plugin.php:24
701
+ msgid "Frequently Asked Questions (FAQ)"
702
+ msgstr ""
703
+
704
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:4
705
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:9
706
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:18
707
+ msgid "Insert a Slideshow"
708
+ msgstr ""
709
+
710
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:12
711
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:51
712
+ msgid "Insert Slideshow"
713
+ msgstr ""
714
+
715
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:27
716
+ msgid "Select a slideshow"
717
+ msgstr ""
718
+
719
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:36
720
+ #: views/SlideshowPluginWidget/form.php:12
721
+ msgid "Untitled slideshow"
722
+ msgstr ""
723
+
724
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:56
725
+ msgid "Cancel"
726
+ msgstr ""
727
+
728
+ #: views/SlideshowPluginShortcode/shortcode-inserter.php:67
729
+ #, php-format
730
+ msgid ""
731
+ "It seems you haven't created any slideshows yet. %sYou can create a "
732
+ "slideshow here!%s"
733
+ msgstr ""
734
+
735
+ #: views/SlideshowPluginSlideInserter/search-popup.php:6
736
+ msgid "Search"
737
+ msgstr ""
738
+
739
+ #: views/SlideshowPluginSlideInserter/search-popup.php:7
740
+ msgid "Search images by title or ID"
741
+ msgstr ""
742
+
743
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:18
744
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:53
745
+ msgid "Text color"
746
+ msgstr ""
747
+
748
+ #: views/SlideshowPluginSlideshowSlide/backend_templates.php:66
749
+ #: views/SlideshowPluginSlideshowSlide/backend_video.php:36
750
+ msgid "Show related videos"
751
+ msgstr ""
752
+
753
+ #: views/SlideshowPluginSlideshowSlide/backend_text.php:58
754
+ msgid "(Leave empty for a transparent background)"
755
+ msgstr ""
756
+
757
+ #: views/SlideshowPluginUpload/upload-button.php:1
758
+ msgid "Upload/Manage Images"
759
+ msgstr ""
760
+
761
+ #: views/SlideshowPluginWidget/form.php:9
762
+ msgid "Random Slideshow"
763
+ msgstr ""
764
+
765
+ #~ msgid "Questions / Suggestions"
766
+ #~ msgstr "问题/建议"
767
+
768
+ #~ msgid "Leave any field open to use default value."
769
+ #~ msgstr "Een veld dat open wordt gelaten neemt de standaardwaarde aan."
readme.txt CHANGED
@@ -3,9 +3,9 @@
3
  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.3
7
- Tested up to: 3.5.1
8
- Stable tag: 2.2.11
9
  License: GPLv2
10
 
11
  Integrate a fancy slideshow in just five steps. - Rainbows. Rainbows everywhere.
@@ -26,8 +26,8 @@ different images, settings and styles for each one of them.
26
  - Create as many slideshows with as many slides as you like
27
  - Image slides
28
  - Text slides
29
- - Video slides
30
- - Completely responsive
31
  - Place it anywhere on your website
32
  - Run multiple slideshows on the same page
33
  - Change animations and handling
@@ -37,15 +37,22 @@ different images, settings and styles for each one of them.
37
  = Languages =
38
 
39
  - Chinese (26% Translated by [Kevin Tell](http://www.ivygg.com/))
40
- - Czech (98% Translated by Edhel)
41
  - Dutch (100%)
42
  - English (100%)
43
- - French (59% Translated by [Wptheme](http://wptheme.fr/))
44
- - Hebrew (62% Translated by Eli Segev)
45
- - Russian (100% Translated by Dmitry Fatakov and [Oleg Fritz](http://www.facebook.com/profile.php?id=100001331241069))
46
- - Spanish (61% Translated by [Violeta Rosales](https://twitter.com/violetisha))
47
- - Swedish (100% Translated by [Åke Isacsson](http://www.nojdkund.se/))
48
- - Turkish (100% Translated by [İlker Akdoğan](http://www.kelkirpi.net/))
 
 
 
 
 
 
 
49
 
50
  Feel free to send me your own translation of the plugin to my e-mail address: wordpress@stefanboonstra.com. The original
51
  translation file can be downloaded
@@ -58,6 +65,11 @@ translation tool. Many thanks in advance!
58
  Check upcoming features, bug-fixes and development progress that are currently on the Slideshow project board at:
59
  [Slideshow project board - Trello.com](https://trello.com/board/slideshow-plugin-wordpress/506311260cc04591010463c2)
60
 
 
 
 
 
 
61
 
62
  == Installation ==
63
 
@@ -165,6 +177,28 @@ personal taste.
165
 
166
  == Changelog ==
167
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
168
  = 2.2.11 =
169
  * Fixed: The slideshow script loaded the YouTube API twice.
170
  * Fixed: Floating the slideshow resulted in it having no width, therefore being invisible.
@@ -420,4 +454,5 @@ personal taste.
420
  == Links ==
421
 
422
  * [Stefan Boonstra](http://stefanboonstra.com/)
423
- * [Slideshow project board](https://trello.com/board/slideshow-plugin-wordpress/506311260cc04591010463c2)
 
3
  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.6
8
+ Stable tag: 2.2.12
9
  License: GPLv2
10
 
11
  Integrate a fancy slideshow in just five steps. - Rainbows. Rainbows everywhere.
26
  - Create as many slideshows with as many slides as you like
27
  - Image slides
28
  - Text slides
29
+ - YouTube Video slides
30
+ - Responsive
31
  - Place it anywhere on your website
32
  - Run multiple slideshows on the same page
33
  - Change animations and handling
37
  = Languages =
38
 
39
  - Chinese (26% Translated by [Kevin Tell](http://www.ivygg.com/))
40
+ - Czech (94% Translated by Edhel)
41
  - Dutch (100%)
42
  - English (100%)
43
+ - Finnish (95% Translated by A. Nonymous)
44
+ - French (93% Translated by [Romain Sandri](http://www.onidesign.fr/))
45
+ - German (95% Translated by [Markus Amann](http://www.dema-itsupport.com/))
46
+ - Hebrew (60% Translated by Eli Segev)
47
+ - Italian (95% Translated by [Tecnikgeek](http://tecnikgeek.com/))
48
+ - Japanese (95% Translated by [Michihide Hotta](http://net-newbie.com/))
49
+ - Persian (95% Translated by [W3Design](http://w3design.ir/))
50
+ - Polish (95% Translated by Wicher Wiater)
51
+ - Portuguese (95% Translated by [Filipe Catraia](http://www.filipecatraia.com/))
52
+ - Russian (95% Translated by Dmitry Fatakov)
53
+ - Spanish (58% Translated by [Violeta Rosales](https://twitter.com/violetisha))
54
+ - Swedish (95% Translated by [Åke Isacsson](http://www.nojdkund.se/))
55
+ - Turkish (95% Translated by [İlker Akdoğan](http://www.kelkirpi.net/))
56
 
57
  Feel free to send me your own translation of the plugin to my e-mail address: wordpress@stefanboonstra.com. The original
58
  translation file can be downloaded
65
  Check upcoming features, bug-fixes and development progress that are currently on the Slideshow project board at:
66
  [Slideshow project board - Trello.com](https://trello.com/board/slideshow-plugin-wordpress/506311260cc04591010463c2)
67
 
68
+ = Need the (uncompressed) source code? =
69
+
70
+ Find the Slideshow project's source code in my [GitHub](https://github.com/Boonstra/Slideshow) repository. The
71
+ uncompressed files can be compiled using [Prepros](http://alphapixels.com/prepros/), or [CodeKit](http://incident57.com/codekit/).
72
+
73
 
74
  == Installation ==
75
 
177
 
178
  == Changelog ==
179
 
180
+ = 2.2.13 =
181
+ * The SlideshowPluginAjax.php has been re-added to SVN.
182
+
183
+ = 2.2.12 =
184
+ * Compatible with WordPress 3.6.
185
+ * Complete javascript revision to be better manageable with the help of the Prepros tool.
186
+ * Related videos can now be enabled or disabled on YouTube videos.
187
+ * YouTube API now is only loaded when a video slide needs to be shown.
188
+ * Re-arranged the 'General Settings' page to have a 'General Settings' tab that contains overall system settings.
189
+ * Added option to choose the loading location of the stylesheets, as IE8 and older don't always allow in-body styling.
190
+ * Implemented a new algorithm for randomizing slides.
191
+ * Slideshow can now wait for a slide to load before showing it.
192
+ * Fixed: The 'Enable responsiveness' setting disappeared when disabling the 'Show title and description' option.
193
+ * Added Turkish translation by İlker Akdoğan.
194
+ * Added Polish translation by Wicher Wiater.
195
+ * Added Finnish translation by an anonymous supporter.
196
+ * Updated French translation by Romain Sandri.
197
+ * Added Portuguese translation by Filipe Catraia.
198
+ * Added Persian translation by W3Design.
199
+ * Added Italian translation by Tecnikgeek.
200
+ * Added Japanese translation by Michihide Hotta.
201
+
202
  = 2.2.11 =
203
  * Fixed: The slideshow script loaded the YouTube API twice.
204
  * Fixed: Floating the slideshow resulted in it having no width, therefore being invisible.
454
  == Links ==
455
 
456
  * [Stefan Boonstra](http://stefanboonstra.com/)
457
+ * [Slideshow project board](https://trello.com/board/slideshow-plugin-wordpress/506311260cc04591010463c2)
458
+ * [Prepros](http://alphapixels.com/prepros/)
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.11
7
  Requires at least: 3.3
8
  Author: StefanBoonstra
9
  Author URI: http://stefanboonstra.com/
@@ -17,12 +17,11 @@
17
  *
18
  * @since 1.0.0
19
  * @author Stefan Boonstra
20
- * @version 03-03-2013
21
  */
22
- class SlideshowPluginMain {
23
-
24
- /** Variables */
25
- static $version = '2.2.11';
26
 
27
  /**
28
  * Bootstraps the application by assigning the right functions to
@@ -30,15 +29,15 @@ class SlideshowPluginMain {
30
  *
31
  * @since 1.0.0
32
  */
33
- static function bootStrap(){
34
-
35
  self::autoInclude();
36
 
37
  // Initialize localization on init
38
  add_action('init', array(__CLASS__, 'localize'));
39
 
40
- // For ajax requests
41
- SlideshowPluginAjax::init();
42
 
43
  // Register slideshow post type
44
  SlideshowPluginPostType::init();
@@ -46,6 +45,9 @@ class SlideshowPluginMain {
46
  // Add general settings page
47
  SlideshowPluginGeneralSettings::init();
48
 
 
 
 
49
  // Deploy slideshow on do_action('slideshow_deploy'); hook.
50
  add_action('slideshow_deploy', array('SlideshowPlugin', 'deploy'));
51
 
@@ -57,6 +59,39 @@ class SlideshowPluginMain {
57
 
58
  // Initialize plugin updater
59
  SlideshowPluginInstaller::init();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
60
  }
61
 
62
  /**
@@ -64,7 +99,8 @@ class SlideshowPluginMain {
64
  *
65
  * @since 1.0.0
66
  */
67
- static function localize(){
 
68
  load_plugin_textdomain(
69
  'slideshow-plugin',
70
  false,
@@ -78,7 +114,8 @@ class SlideshowPluginMain {
78
  * @since 1.0.0
79
  * @return string pluginUrl
80
  */
81
- static function getPluginUrl(){
 
82
  return plugins_url('', __FILE__);
83
  }
84
 
@@ -88,7 +125,8 @@ class SlideshowPluginMain {
88
  * @since 1.0.0
89
  * @return string pluginPath
90
  */
91
- static function getPluginPath(){
 
92
  return dirname(__FILE__);
93
  }
94
 
@@ -97,16 +135,22 @@ class SlideshowPluginMain {
97
  *
98
  * @since 1.0.0
99
  */
100
- function autoInclude(){
101
- if(!function_exists('spl_autoload_register'))
 
 
102
  return;
 
103
 
104
- function slideshowPluginAutoLoader($name) {
 
105
  $name = str_replace('\\', DIRECTORY_SEPARATOR, $name);
106
  $file = dirname(__FILE__) . DIRECTORY_SEPARATOR . 'classes' . DIRECTORY_SEPARATOR . $name . '.php';
107
 
108
- if(is_file($file))
 
109
  require_once $file;
 
110
  }
111
 
112
  spl_autoload_register('slideshowPluginAutoLoader');
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.12
7
  Requires at least: 3.3
8
  Author: StefanBoonstra
9
  Author URI: http://stefanboonstra.com/
17
  *
18
  * @since 1.0.0
19
  * @author Stefan Boonstra
 
20
  */
21
+ class SlideshowPluginMain
22
+ {
23
+ /** @var string $version */
24
+ static $version = '2.2.12';
25
 
26
  /**
27
  * Bootstraps the application by assigning the right functions to
29
  *
30
  * @since 1.0.0
31
  */
32
+ static function bootStrap()
33
+ {
34
  self::autoInclude();
35
 
36
  // Initialize localization on init
37
  add_action('init', array(__CLASS__, 'localize'));
38
 
39
+ // Ajax requests
40
+ SlideshowPluginAJAX::init();
41
 
42
  // Register slideshow post type
43
  SlideshowPluginPostType::init();
45
  // Add general settings page
46
  SlideshowPluginGeneralSettings::init();
47
 
48
+ // Initialize stylesheet builder
49
+ SlideshowPluginSlideshowStylesheet::init();
50
+
51
  // Deploy slideshow on do_action('slideshow_deploy'); hook.
52
  add_action('slideshow_deploy', array('SlideshowPlugin', 'deploy'));
53
 
59
 
60
  // Initialize plugin updater
61
  SlideshowPluginInstaller::init();
62
+
63
+ // Include backend script TODO Move temporary statement
64
+ add_action('admin_enqueue_scripts', array(__CLASS__, 'enqueueBackendScripts'), 1);
65
+ }
66
+
67
+ /**
68
+ * TODO Move temporary function
69
+ *
70
+ * Includes backend script
71
+ *
72
+ * @since 2.2.12
73
+ */
74
+ static function enqueueBackendScripts()
75
+ {
76
+ wp_enqueue_script(
77
+ 'slideshow-jquery-image-gallery-backend-script',
78
+ self::getPluginUrl() . '/js/min/all.backend.min.js',
79
+ array(
80
+ 'jquery',
81
+ 'jquery-ui-sortable',
82
+ 'wp-color-picker'
83
+ ),
84
+ SlideshowPluginMain::$version
85
+ );
86
+
87
+ wp_enqueue_style(
88
+ 'slideshow-jquery-image-gallery-backend-style',
89
+ self::getPluginUrl() . '/css/all.backend.css',
90
+ array(
91
+ 'wp-color-picker'
92
+ ),
93
+ SlideshowPluginMain::$version
94
+ );
95
  }
96
 
97
  /**
99
  *
100
  * @since 1.0.0
101
  */
102
+ static function localize()
103
+ {
104
  load_plugin_textdomain(
105
  'slideshow-plugin',
106
  false,
114
  * @since 1.0.0
115
  * @return string pluginUrl
116
  */
117
+ static function getPluginUrl()
118
+ {
119
  return plugins_url('', __FILE__);
120
  }
121
 
125
  * @since 1.0.0
126
  * @return string pluginPath
127
  */
128
+ static function getPluginPath()
129
+ {
130
  return dirname(__FILE__);
131
  }
132
 
135
  *
136
  * @since 1.0.0
137
  */
138
+ static function autoInclude()
139
+ {
140
+ if (!function_exists('spl_autoload_register'))
141
+ {
142
  return;
143
+ }
144
 
145
+ function slideshowPluginAutoLoader($name)
146
+ {
147
  $name = str_replace('\\', DIRECTORY_SEPARATOR, $name);
148
  $file = dirname(__FILE__) . DIRECTORY_SEPARATOR . 'classes' . DIRECTORY_SEPARATOR . $name . '.php';
149
 
150
+ if (is_file($file))
151
+ {
152
  require_once $file;
153
+ }
154
  }
155
 
156
  spl_autoload_register('slideshowPluginAutoLoader');
style/SlideshowPlugin/functional.css CHANGED
@@ -1 +1,118 @@
1
- .slideshow_container{margin:0;position:relative;width:100%}.slideshow_container div{clear:none!important;max-width:none;padding:0}.slideshow_container img{border:0;margin:0;padding:0;max-width:none}.slideshow_container p{margin:0;padding:10px}.slideshow_container a{margin:0;display:block!important}.slideshow_container ul{margin:0;padding:0}.slideshow_container ul li{margin:0;padding:0}.slideshow_container h1,.slideshow_container h2,.slideshow_container h3,.slideshow_container h4,.slideshow_container h5,.slideshow_container h6{margin:0;padding:10px}.slideshow_container .slideshow_content{position:relative;overflow:hidden}.slideshow_container .slideshow_view{position:absolute;width:0;height:0;overflow:hidden}.slideshow_container .slideshow_slide{position:relative;float:left!important;overflow:hidden}.slideshow_container .slideshow_slide_text .slideshow_background_anchor{position:absolute;top:0}.slideshow_container .slideshow_description{display:none;position:absolute}.slideshow_container .transparent{zoom:1}.slideshow_container .transparent:hover{zoom:1}.slideshow_container .slideshow_controlPanel{position:absolute;top:5px;left:50%;display:none;z-index:2}.slideshow_container .slideshow_controlPanel ul{list-style:none;margin:0;padding:0}.slideshow_container .slideshow_controlPanel ul li{float:left}.slideshow_container .slideshow_controlPanel ul li:hover{cursor:pointer}.slideshow_container .slideshow_button{padding:0;position:absolute;top:50%;cursor:pointer;display:none;z-index:2}.slideshow_container .slideshow_previous{left:5px}.slideshow_container .slideshow_next{right:5px}.slideshow_container .slideshow_pagination{height:0;position:absolute;width:100%;display:none;z-index:2}.slideshow_container .slideshow_pagination_center{display:table;margin:0 auto}.slideshow_container .slideshow_pagination ul{list-style:none;margin:0;padding:0}.slideshow_container .slideshow_pagination ul li{display:inline;float:left}.slideshow_container .slideshow_pagination ul li:hover{cursor:pointer}.slideshow_plugin_manufacturer{position:absolute!important;height:1px;width:1px;overflow:hidden;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px)}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .slideshow_container {
2
+ position: relative;
3
+ width: 100%;
4
+ margin: 0;
5
+ }
6
+
7
+ .slideshow_container div { clear: none !important; max-width: none; padding: 0; }
8
+ .slideshow_container img { border: 0; max-width: none; margin: 0; padding: 0; }
9
+ .slideshow_container a { display: block !important; margin: 0; }
10
+
11
+ .slideshow_container .slideshow_content {
12
+ position: relative;
13
+ overflow: hidden;
14
+ }
15
+
16
+ .slideshow_container .slideshow_view {
17
+ position: absolute;
18
+ width: 0;
19
+ height: 0;
20
+ overflow: hidden;
21
+ }
22
+
23
+ .slideshow_container .slideshow_slide {
24
+ position: relative;
25
+ float: left !important;
26
+ overflow: hidden;
27
+ }
28
+
29
+ .slideshow_container .slideshow_slide_text .slideshow_background_anchor {
30
+ position: absolute;
31
+ top: 0;
32
+ }
33
+
34
+ .slideshow_container .slideshow_description {
35
+ display: none;
36
+ position: absolute;
37
+ }
38
+
39
+ .slideshow_container .slideshow_controlPanel {
40
+ position: absolute;
41
+ top: 5px;
42
+ left: 50%;
43
+ display: none;
44
+ z-index: 2;
45
+ }
46
+
47
+ .slideshow_container .slideshow_controlPanel ul li {
48
+ float: left;
49
+ }
50
+
51
+ .slideshow_container .slideshow_button {
52
+ position: absolute;
53
+ top: 50%;
54
+ cursor: pointer;
55
+ display: none;
56
+ z-index: 2;
57
+ padding: 0;
58
+ }
59
+
60
+ .slideshow_container .slideshow_previous {
61
+ left: 5px;
62
+ }
63
+
64
+ .slideshow_container .slideshow_next {
65
+ right: 5px;
66
+ }
67
+
68
+ .slideshow_container .slideshow_pagination {
69
+ height: 0;
70
+ position: absolute;
71
+ width: 100%;
72
+ display: none;
73
+ z-index: 2;
74
+ }
75
+
76
+ .slideshow_container .slideshow_pagination_center {
77
+ display: table;
78
+ margin: 0 auto;
79
+ }
80
+
81
+ .slideshow_container .slideshow_pagination ul li {
82
+ display: inline;
83
+ float: left;
84
+ }
85
+
86
+ .slideshow_plugin_manufacturer {
87
+ position: absolute !important;
88
+ height: 1px;
89
+ width: 1px;
90
+ overflow: hidden;
91
+ clip: rect(1px,1px,1px,1px);
92
+ }
93
+
94
+ .slideshow_container p,.slideshow_container h1,.slideshow_container h2,.slideshow_container h3,.slideshow_container h4,.slideshow_container h5,.slideshow_container h6 {
95
+ margin: 0;
96
+ padding: 10px;
97
+ }
98
+
99
+ .slideshow_container ul,.slideshow_container ul li {
100
+ margin: 0;
101
+ padding: 0;
102
+ }
103
+
104
+ .slideshow_container .transparent,.slideshow_container .transparent:hover {
105
+ zoom: 1;
106
+ }
107
+
108
+ .slideshow_container .slideshow_controlPanel ul,.slideshow_container .slideshow_pagination ul {
109
+ list-style: none;
110
+ margin: 0;
111
+ padding: 0;
112
+ }
113
+
114
+ .slideshow_container .slideshow_controlPanel ul li:hover,.slideshow_container .slideshow_pagination ul li:hover {
115
+ cursor: pointer;
116
+ }
117
+
118
+ /*.slideshow_container{margin:0;position:relative;width:100%}.slideshow_container div{clear:none!important;max-width:none;padding:0}.slideshow_container img{border:0;margin:0;padding:0;max-width:none}.slideshow_container p{margin:0;padding:10px}.slideshow_container a{margin:0;display:block!important}.slideshow_container ul{margin:0;padding:0}.slideshow_container ul li{margin:0;padding:0}.slideshow_container h1,.slideshow_container h2,.slideshow_container h3,.slideshow_container h4,.slideshow_container h5,.slideshow_container h6{margin:0;padding:10px}.slideshow_container .slideshow_content{position:relative;overflow:hidden}.slideshow_container .slideshow_view{position:absolute;width:0;height:0;overflow:hidden}.slideshow_container .slideshow_slide{position:relative;float:left!important;overflow:hidden}.slideshow_container .slideshow_slide_text .slideshow_background_anchor{position:absolute;top:0}.slideshow_container .slideshow_description{display:none;position:absolute}.slideshow_container .transparent{zoom:1}.slideshow_container .transparent:hover{zoom:1}.slideshow_container .slideshow_controlPanel{position:absolute;top:5px;left:50%;display:none;z-index:2}.slideshow_container .slideshow_controlPanel ul{list-style:none;margin:0;padding:0}.slideshow_container .slideshow_controlPanel ul li{float:left}.slideshow_container .slideshow_controlPanel ul li:hover{cursor:pointer}.slideshow_container .slideshow_button{padding:0;position:absolute;top:50%;cursor:pointer;display:none;z-index:2}.slideshow_container .slideshow_previous{left:5px}.slideshow_container .slideshow_next{right:5px}.slideshow_container .slideshow_pagination{height:0;position:absolute;width:100%;display:none;z-index:2}.slideshow_container .slideshow_pagination_center{display:table;margin:0 auto}.slideshow_container .slideshow_pagination ul{list-style:none;margin:0;padding:0}.slideshow_container .slideshow_pagination ul li{display:inline;float:left}.slideshow_container .slideshow_pagination ul li:hover{cursor:pointer}.slideshow_plugin_manufacturer{position:absolute!important;height:1px;width:1px;overflow:hidden;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px)}*/
style/SlideshowPlugin/style-dark.css CHANGED
@@ -9,13 +9,25 @@
9
  .slideshow_container .slideshow_slide_video { }
10
 
11
  .slideshow_container .slideshow_description { background: #000; width: 100%; }
12
- .slideshow_container .slideshow_description h2 { font-size: 1.3em; text-align: center; }
13
- .slideshow_container .slideshow_description p { text-align: center; }
14
- .slideshow_container .slideshow_description a { color: #fff; }
 
15
 
16
  .slideshow_container .slideshow_transparent { filter: alpha(opacity = 50); opacity: 0.5; }
17
  .slideshow_container .slideshow_transparent:hover { filter: alpha(opacity = 80); opacity: 0.8; }
18
 
 
 
 
 
 
 
 
 
 
 
 
19
  .slideshow_container .slideshow_controlPanel {
20
  width: 20px;
21
  height: 20px;
9
  .slideshow_container .slideshow_slide_video { }
10
 
11
  .slideshow_container .slideshow_description { background: #000; width: 100%; }
12
+ .slideshow_container .slideshow_description h2 { font-size: 1.3em; text-align: center; }
13
+ .slideshow_container .slideshow_description p { text-align: center; }
14
+ .slideshow_container .slideshow_description h2 a,
15
+ .slideshow_container .slideshow_description p a { color: #fff; }
16
 
17
  .slideshow_container .slideshow_transparent { filter: alpha(opacity = 50); opacity: 0.5; }
18
  .slideshow_container .slideshow_transparent:hover { filter: alpha(opacity = 80); opacity: 0.8; }
19
 
20
+ .slideshow_container .slideshow_loading_icon {
21
+ position: absolute;
22
+ top: 50%;
23
+ left: 50%;
24
+ width: 32px;
25
+ height: 32px;
26
+ margin: -16px 0 0 -16px;
27
+ background: url('%plugin-url%/images/SlideshowPlugin/loading-icon-128x128.gif') no-repeat;
28
+ background-size: 32px 32px;
29
+ }
30
+
31
  .slideshow_container .slideshow_controlPanel {
32
  width: 20px;
33
  height: 20px;
style/SlideshowPlugin/style-light.css CHANGED
@@ -9,13 +9,25 @@
9
  .slideshow_container .slideshow_slide_video { }
10
 
11
  .slideshow_container .slideshow_description { background: #000; width: 100%; }
12
- .slideshow_container .slideshow_description h2 { font-size: 1.3em; text-align: center; }
13
- .slideshow_container .slideshow_description p { text-align: center; }
14
- .slideshow_container .slideshow_description a { color: #fff; }
 
15
 
16
  .slideshow_container .slideshow_transparent { filter: alpha(opacity = 50); opacity: 0.5; }
17
  .slideshow_container .slideshow_transparent:hover { filter: alpha(opacity = 80); opacity: 0.8; }
18
 
 
 
 
 
 
 
 
 
 
 
 
19
  .slideshow_container .slideshow_controlPanel {
20
  width: 21px;
21
  height: 21px;
9
  .slideshow_container .slideshow_slide_video { }
10
 
11
  .slideshow_container .slideshow_description { background: #000; width: 100%; }
12
+ .slideshow_container .slideshow_description h2 { font-size: 1.3em; text-align: center; }
13
+ .slideshow_container .slideshow_description p { text-align: center; }
14
+ .slideshow_container .slideshow_description h2 a,
15
+ .slideshow_container .slideshow_description p a { color: #fff; }
16
 
17
  .slideshow_container .slideshow_transparent { filter: alpha(opacity = 50); opacity: 0.5; }
18
  .slideshow_container .slideshow_transparent:hover { filter: alpha(opacity = 80); opacity: 0.8; }
19
 
20
+ .slideshow_container .slideshow_loading_icon {
21
+ position: absolute;
22
+ top: 50%;
23
+ left: 50%;
24
+ width: 32px;
25
+ height: 32px;
26
+ margin: -16px 0 0 -16px;
27
+ background: url('%plugin-url%/images/SlideshowPlugin/loading-icon-128x128.gif') no-repeat;
28
+ background-size: 32px 32px;
29
+ }
30
+
31
  .slideshow_container .slideshow_controlPanel {
32
  width: 21px;
33
  height: 21px;
style/SlideshowPluginGeneralSettings/general-settings.css DELETED
@@ -1,101 +0,0 @@
1
- .feature-filter {
2
- padding: 0 10px;
3
- margin: 10px;
4
- }
5
-
6
- /* ==== ==== ==== User capabilities ==== ==== ==== */
7
-
8
- .user-capabilities td {
9
- line-height: 1.5em;
10
- padding: 0 10px;
11
- }
12
-
13
- /* ==== ==== ==== Default slideshow settings ==== ==== ==== */
14
-
15
- .default-slideshow-settings {
16
- width: auto !important;
17
-
18
- float: left;
19
- }
20
-
21
- .default-slideshow-settings table {
22
- padding-bottom: 10px;
23
- }
24
-
25
- .default-slideshow-settings td {
26
- padding: 0 10px !important;
27
- }
28
-
29
- /* ==== ==== ==== Custom styles ==== ==== ==== */
30
-
31
- .custom-styles {
32
- min-width: 650px;
33
- }
34
-
35
- .custom-styles .styles-list {
36
- float: left;
37
-
38
- min-width: 150px;
39
- max-width: 250px;
40
-
41
- padding-right: 10px;
42
-
43
- border-right: 1px solid #dfdfdf;
44
- }
45
-
46
- .custom-styles .styles-list ul {
47
- margin-left: 10px;
48
- }
49
-
50
- .custom-styles .styles-list li {
51
- float: none;
52
- }
53
-
54
- .custom-styles .styles-list span {
55
- padding: 0 2px;
56
- }
57
-
58
- .custom-styles .styles-list li .style-title {
59
- float: left;
60
-
61
- padding-right: 10px;
62
- }
63
-
64
- .custom-styles .styles-list li .style-action {
65
- float: right;
66
-
67
- color: #21759B;
68
- }
69
-
70
- .custom-styles .styles-list li .style-delete {
71
- float: right;
72
-
73
- color: #BC0B0B;
74
- }
75
-
76
- .custom-styles .styles-list li .style-action:hover {
77
- cursor: pointer;
78
-
79
- color: #D54E21;
80
- }
81
-
82
- .custom-styles .styles-list li .style-delete:hover {
83
- cursor: pointer;
84
-
85
- color: red;
86
- }
87
-
88
- .custom-styles .style-editors {
89
- float: left;
90
-
91
- min-width: 500px;
92
-
93
- padding-left: 10px;
94
- margin: 0 -21px 0 -1px;
95
-
96
- border-left: 1px solid #dfdfdf;
97
- }
98
-
99
- .custom-styles .style-editors .style-editor textarea {
100
- width: 100%;
101
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
style/SlideshowPluginPostType/style.css DELETED
@@ -1,20 +0,0 @@
1
- /* ==== ==== */
2
- .sortable-slides-list li {
3
- margin: 10px 0;
4
- width: auto;
5
- background-color: #fafafa;
6
- }
7
-
8
- .sortable-slides-list li .hndle span {
9
- font-size: 0.8em;
10
- }
11
-
12
- .sortable-slides-list li p {
13
- margin: 5px 15px 5px 5px;
14
- }
15
-
16
- .sortable-slides-list li .slideshow-delete-slide,
17
- .sortable-slides-list li .slideshow-delete-new-slide {
18
- color: red;
19
- cursor: pointer;
20
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
style/SlideshowPluginSlideInserter/slide-inserter.css DELETED
@@ -1,49 +0,0 @@
1
- #slideshow-slide-inserter-popup-background {
2
- background: #000;
3
- display: none;
4
- position: absolute;
5
- top: 0;
6
- left: 0;
7
- width: 100%;
8
- z-index: 10000;
9
-
10
- zoom: 1;
11
- filter: alpha(opacity = 50);
12
- opacity: 0.5;
13
- }
14
-
15
- #slideshow-slide-inserter-popup {
16
- background: #fff;
17
- display: none;
18
- position: absolute;
19
- padding: 20px;
20
- line-height: 23px;
21
- z-index: 10001;
22
-
23
- width: 600px;
24
- }
25
-
26
- #slideshow-slide-inserter-popup #search {
27
- float: left;
28
- width: 200px;
29
- }
30
-
31
- #slideshow-slide-inserter-popup #close {
32
- float: right;
33
- width: 32px;
34
- height: 32px;
35
- background: url('../../images/SlideshowPluginSlideInserter/close.png') no-repeat;
36
- }
37
-
38
- #slideshow-slide-inserter-popup #close:hover {
39
- cursor: pointer;
40
- }
41
-
42
- #slideshow-slide-inserter-popup #search-results {
43
- height: 400px;
44
- overflow-y: scroll;
45
- }
46
-
47
- .sortable-slides-list-item {
48
- background: #fff url('../../images/SlideshowPluginPostType/draggable.png') no-repeat right center;
49
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
views/SlideshowPlugin/slideshow.php CHANGED
@@ -1,11 +1,15 @@
1
  <div class="slideshow_container slideshow_container_<?php echo $styleName; ?>" style="<?php echo (isset($settings['preserveSlideshowDimensions']) && $settings['preserveSlideshowDimensions'] == 'false' && isset($settings['height']) && $settings['height'] > 0) ? 'height: ' . $settings['height'] . 'px;' : ''; ?> <?php echo (isset($settings['maxWidth']) && $settings['maxWidth'] > 0) ? 'max-width: ' . $settings['maxWidth'] . 'px;' : ''; ?>" data-session-id="<?php echo $sessionID; ?>">
2
 
3
- <div class="slideshow_controlPanel slideshow_transparent"><ul><li class="slideshow_togglePlay"></li></ul></div>
4
 
5
- <div class="slideshow_button slideshow_previous slideshow_transparent"></div>
6
- <div class="slideshow_button slideshow_next slideshow_transparent"></div>
7
 
8
- <div class="slideshow_pagination"><div class="slideshow_pagination_center"></div></div>
 
 
 
 
9
 
10
  <div class="slideshow_content" style="display: none;">
11
 
1
  <div class="slideshow_container slideshow_container_<?php echo $styleName; ?>" style="<?php echo (isset($settings['preserveSlideshowDimensions']) && $settings['preserveSlideshowDimensions'] == 'false' && isset($settings['height']) && $settings['height'] > 0) ? 'height: ' . $settings['height'] . 'px;' : ''; ?> <?php echo (isset($settings['maxWidth']) && $settings['maxWidth'] > 0) ? 'max-width: ' . $settings['maxWidth'] . 'px;' : ''; ?>" data-session-id="<?php echo $sessionID; ?>">
2
 
3
+ <div class="slideshow_controlPanel slideshow_transparent" style="display: none;"><ul><li class="slideshow_togglePlay"></li></ul></div>
4
 
5
+ <div class="slideshow_button slideshow_previous slideshow_transparent" style="display: none;"></div>
6
+ <div class="slideshow_button slideshow_next slideshow_transparent" style="display: none;"></div>
7
 
8
+ <div class="slideshow_pagination" style="display: none;"><div class="slideshow_pagination_center"></div></div>
9
+
10
+ <?php if(isset($settings['showLoadingIcon']) && $settings['showLoadingIcon'] === 'true'): ?>
11
+ <div class="slideshow_loading_icon"></div>
12
+ <?php endif; ?>
13
 
14
  <div class="slideshow_content" style="display: none;">
15
 
views/SlideshowPluginGeneralSettings/{custom-styles.php → custom-styles-tab.php} RENAMED
@@ -1,16 +1,22 @@
1
  <?php
2
 
3
  // Get default stylesheets
4
- $defaultStyles = array();
1
  <?php
2
 
3
  // Get default stylesheets
4
+ $defaultStyles = array(