jQuery Colorbox - Version 3.2

Version Description

(2010-04-20) = * NEW: Added theme#10, thx to Serhat Yolaan for all the hard work! (CSS3 rounded edges, IE does not support that) * CHANGE: jQuery Colorbox plugin now adds necessary CSS class to all embedded images. * CHANGE: jQuery Colorbox plugin is now compatible to NextGEN Gallery * CHANGE: Vedran Jurincic updated the bosnian translation * NEW: Arabic translation by Modar Soos

Download this release

Release Info

Developer techotronic
Plugin Icon 128x128 jQuery Colorbox
Version 3.2
Comparing to
See all releases

Code changes from version 3.1 to 3.2

Files changed (38) hide show
  1. includes/colorbox-javascript.php +66 -0
  2. includes/iefix-theme1.php +1 -0
  3. includes/iefix-theme4.php +1 -0
  4. includes/settings-page.php +3 -2
  5. jquery-colorbox.php +33 -63
  6. js/jquery-colorbox-auto.js +4 -2
  7. js/jquery-colorbox-hideFlash.js +4 -2
  8. localization/jquery-colorbox-ar.mo +0 -0
  9. localization/{jquery-colorbox-ar_AR.po → jquery-colorbox-ar.po} +173 -140
  10. localization/jquery-colorbox-ar_AR.mo +0 -0
  11. localization/jquery-colorbox-bs_BA.mo +0 -0
  12. localization/jquery-colorbox-bs_BA.po +135 -102
  13. localization/jquery-colorbox-de_DE.mo +0 -0
  14. localization/jquery-colorbox-de_DE.po +134 -101
  15. localization/jquery-colorbox-en_EN.mo +0 -0
  16. localization/jquery-colorbox-en_EN.po +133 -100
  17. localization/jquery-colorbox-fr_FR.mo +0 -0
  18. localization/jquery-colorbox-fr_FR.po +135 -106
  19. localization/jquery-colorbox-pt_BR.mo +0 -0
  20. localization/jquery-colorbox-pt_BR.po +137 -102
  21. localization/jquery-colorbox-tr_TR.mo +0 -0
  22. localization/jquery-colorbox-tr_TR.po +129 -100
  23. readme.txt +29 -31
  24. screenshot-10.jpg +0 -0
  25. themes/theme1/colorbox.css +1 -1
  26. themes/theme10/colorbox.css +36 -0
  27. themes/theme10/images/close.png +0 -0
  28. themes/theme10/images/loading.gif +0 -0
  29. themes/theme10/images/next.png +0 -0
  30. themes/theme10/images/prev.png +0 -0
  31. themes/theme2/colorbox.css +1 -1
  32. themes/theme3/colorbox.css +1 -1
  33. themes/theme4/colorbox.css +1 -1
  34. themes/theme5/colorbox.css +1 -1
  35. themes/theme6/colorbox.css +1 -1
  36. themes/theme7/colorbox.css +1 -1
  37. themes/theme8/colorbox.css +1 -1
  38. themes/theme9/colorbox.css +1 -1
includes/colorbox-javascript.php ADDED
@@ -0,0 +1,66 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * @package Techotronic
4
+ * @subpackage jQuery Colorbox
5
+ *
6
+ * @since 3.2
7
+ * @author Arne Franken
8
+ * @author Fabian Wolf (http://usability-idealist.de/)
9
+ * @author Jason Stapels (jstapels@realmprojects.com)
10
+ *
11
+ * Colorbox Javascript
12
+ */
13
+ ?>
14
+ <script type="text/javascript">
15
+ // <![CDATA[
16
+ jQuery(document).ready(function($) {
17
+ <?php //gets all "a" elements that have a nested "img" ?>
18
+ $("a:has(img)").each(function(index, obj) {
19
+ <?php //only go on if link points to an image ?>
20
+ if ($(obj).attr("href").match(/\.(?:jpe?g|gif|png|bmp)/i)) {
21
+ <?php //in this context, the first child is always an image if fundamental Wordpress functions are used ?>
22
+ var $nestedElement = $(obj).children(0);
23
+ if ($nestedElement.is("img")) {
24
+ var $nestedElementClassAttribute = $nestedElement.attr("class");
25
+ <?php //either the groupId has to be the automatically created colorbox-123 or the manually added colorbox-manual ?>
26
+ var $groupId = $nestedElementClassAttribute.match('colorbox-[0-9]+') || $nestedElementClassAttribute.match('colorbox-manual');
27
+ <?php //only call Colorbox if there is a groupId for the image and the image is not excluded ?>
28
+ if ($groupId && !$nestedElementClassAttribute.match('colorbox-off')) {
29
+ <?php //convert groupId to string for easier use ?>
30
+ $groupId = $groupId.toString();
31
+ <?php //if groudId is colorbox-manual, set groupId to "nofollow" so that images with that class are not grouped ?>
32
+ if ($groupId == "colorbox-manual") {
33
+ $groupId = "nofollow";
34
+ }
35
+ <?php //call Colorbox function on each img. elements with the same groupId in the class attribute are grouped
36
+ //the title of the img is used as the title for the Colorbox. ?>
37
+ $(obj).colorbox({
38
+ rel:$groupId,
39
+ title:$nestedElement.attr("title"),
40
+ <?php echo $this->colorboxSettings['maxWidth'] == "false" ? '' : 'maxWidth:"' . $this->colorboxSettings['maxWidthValue'] . $this->colorboxSettings['maxWidthUnit'] . '",';
41
+ echo $this->colorboxSettings['maxHeight'] == "false" ? '' : 'maxHeight:"' . $this->colorboxSettings['maxHeightValue'] . $this->colorboxSettings['maxHeightUnit'] . '",';
42
+ echo $this->colorboxSettings['height'] == "false" ? '' : 'height:"' . $this->colorboxSettings['heightValue'] . $this->colorboxSettings['heightUnit'] . '",';
43
+ echo $this->colorboxSettings['width'] == "false" ? '' : 'width:"' . $this->colorboxSettings['widthValue'] . $this->colorboxSettings['widthUnit'] . '",';
44
+ echo !$this->colorboxSettings['slideshow'] ? '' : 'slideshow:true,';
45
+ echo $this->colorboxSettings['slideshowAuto'] ? '' : 'slideshowAuto:false,';
46
+ echo $this->colorboxSettings['scalePhotos'] ? '' : 'scalePhotos:false,';
47
+ echo $this->colorboxSettings['preloading'] ? '' : 'preloading:false,';
48
+ echo $this->colorboxSettings['overlayClose'] ? '' : 'overlayClose:false,';?>
49
+ opacity:"<?php echo $this->colorboxSettings['opacity']; ?>",
50
+ transition:"<?php echo $this->colorboxSettings['transition']; ?>",
51
+ speed:<?php echo $this->colorboxSettings['speed']; ?>,
52
+ slideshowSpeed:<?php echo $this->colorboxSettings['slideshowSpeed']; ?>,
53
+ close:"<?php _e('close', JQUERYCOLORBOX_TEXTDOMAIN); ?>",
54
+ next:"<?php _e('next', JQUERYCOLORBOX_TEXTDOMAIN); ?>",
55
+ previous:"<?php _e('previous', JQUERYCOLORBOX_TEXTDOMAIN); ?>",
56
+ slideshowStart:"<?php _e('start slideshow', JQUERYCOLORBOX_TEXTDOMAIN); ?>",
57
+ slideshowStop:"<?php _e('stop slideshow', JQUERYCOLORBOX_TEXTDOMAIN); ?>",
58
+ current:"<?php _e('{current} of {total} images', JQUERYCOLORBOX_TEXTDOMAIN); ?>"
59
+ });
60
+ }
61
+ }
62
+ }
63
+ });
64
+ });
65
+ // ]]>
66
+ </script>
includes/iefix-theme1.php CHANGED
@@ -4,6 +4,7 @@
4
  * @subpackage jQuery Colorbox
5
  *
6
  * @since 3.1
 
7
  *
8
  * CSS fixes for IE
9
  */
4
  * @subpackage jQuery Colorbox
5
  *
6
  * @since 3.1
7
+ * @author Arne Franken
8
  *
9
  * CSS fixes for IE
10
  */
includes/iefix-theme4.php CHANGED
@@ -4,6 +4,7 @@
4
  * @subpackage jQuery Colorbox
5
  *
6
  * @since 3.1
 
7
  *
8
  * CSS fixes for IE
9
  */
4
  * @subpackage jQuery Colorbox
5
  *
6
  * @since 3.1
7
+ * @author Arne Franken
8
  *
9
  * CSS fixes for IE
10
  */
includes/settings-page.php CHANGED
@@ -4,6 +4,7 @@
4
  * @subpackage jQuery Colorbox
5
  *
6
  * @since 3.1
 
7
  *
8
  * HTML for settings page
9
  */
@@ -172,7 +173,7 @@
172
  <label for="jquery-colorbox-slideshowSpeed"><?php _e('Speed of the slideshow', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
173
  </th>
174
  <td>
175
- <input type="text" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[slideshowSpeed]" id="jquery-colorbox-slideshowSpeed" value="<?php echo $this->colorboxSettings['slideshowSpeed'] ?>" size="5" maxlength="5"/>ms
176
  <br/><?php _e('Sets the speed of the slideshow, in milliseconds', JQUERYCOLORBOX_TEXTDOMAIN); ?>.
177
  </td>
178
  </tr>
@@ -317,7 +318,7 @@
317
  <label for="jquery-colorbox-speed"><?php _e('Transition speed', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
318
  </th>
319
  <td>
320
- <input type="text" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[speed]" id="jquery-colorbox-speed" value="<?php echo $this->colorboxSettings['speed'] ?>" size="5" maxlength="5"/>ms
321
  <br/><?php _e('Sets the speed of the "fade" and "elastic" transitions, in milliseconds', JQUERYCOLORBOX_TEXTDOMAIN); ?>.
322
  </td>
323
  </tr>
4
  * @subpackage jQuery Colorbox
5
  *
6
  * @since 3.1
7
+ * @author Arne Franken
8
  *
9
  * HTML for settings page
10
  */
173
  <label for="jquery-colorbox-slideshowSpeed"><?php _e('Speed of the slideshow', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
174
  </th>
175
  <td>
176
+ <input type="text" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[slideshowSpeed]" id="jquery-colorbox-slideshowSpeed" value="<?php echo $this->colorboxSettings['slideshowSpeed'] ?>" size="5" maxlength="5"/><?php _e('milliseconds',JQUERYCOLORBOX_TEXTDOMAIN) ?>
177
  <br/><?php _e('Sets the speed of the slideshow, in milliseconds', JQUERYCOLORBOX_TEXTDOMAIN); ?>.
178
  </td>
179
  </tr>
318
  <label for="jquery-colorbox-speed"><?php _e('Transition speed', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
319
  </th>
320
  <td>
321
+ <input type="text" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[speed]" id="jquery-colorbox-speed" value="<?php echo $this->colorboxSettings['speed'] ?>" size="5" maxlength="5"/><?php _e('milliseconds',JQUERYCOLORBOX_TEXTDOMAIN) ?>
322
  <br/><?php _e('Sets the speed of the "fade" and "elastic" transitions, in milliseconds', JQUERYCOLORBOX_TEXTDOMAIN); ?>.
323
  </td>
324
  </tr>
jquery-colorbox.php CHANGED
@@ -4,9 +4,9 @@
4
  * @subpackage jQuery Colorbox
5
  *
6
  * Plugin Name: jQuery Colorbox
7
- * Plugin URI: http://www.techotronic.de/index.php/plugins/jquery-colorbox/
8
  * Description: Used to overlay images on the current page. Images in one post are grouped automatically.
9
- * Version: 3.1
10
  * Author: Arne Franken
11
  * Author URI: http://www.techotronic.de/
12
  * License: GPL
@@ -19,7 +19,7 @@
19
  ?>
20
  <?php
21
  //define constants
22
- define('JQUERYCOLORBOX_VERSION', '3.1');
23
 
24
  if (! defined('JQUERYCOLORBOX_PLUGIN_BASENAME')) {
25
  define('JQUERYCOLORBOX_PLUGIN_BASENAME', plugin_basename(__FILE__));
@@ -64,6 +64,7 @@ if (! defined('JQUERYCOLORBOX_SETTINGSNAME')) {
64
  }
65
 
66
  class jQueryColorbox {
 
67
  var $colorboxThemes = array();
68
 
69
  var $colorboxUnits = array();
@@ -113,7 +114,16 @@ class jQueryColorbox {
113
  'theme6' => __('Theme #6', JQUERYCOLORBOX_TEXTDOMAIN),
114
  'theme7' => __('Theme #7', JQUERYCOLORBOX_TEXTDOMAIN),
115
  'theme8' => __('Theme #8', JQUERYCOLORBOX_TEXTDOMAIN),
116
- 'theme9' => __('Theme #9', JQUERYCOLORBOX_TEXTDOMAIN)
 
 
 
 
 
 
 
 
 
117
  );
118
 
119
  // create list of units
@@ -208,9 +218,22 @@ class jQueryColorbox {
208
  if (isset($colorboxSettings['autoColorbox']) && $colorboxSettings['autoColorbox']) {
209
  global
210
  $post;
211
- $pattern = "/<img(.*?)class=('|\")([A-Za-z0-9 \/_\.\~\:-]*?)('|\")([^\>]*?)>/i";
212
- $replacement = '<img$1class=$2$3 colorbox-' . $post->ID . '$4$5>';
213
- $content = preg_replace($pattern, $replacement, $content);
 
 
 
 
 
 
 
 
 
 
 
 
 
214
  }
215
  return $content;
216
  }
@@ -282,8 +305,6 @@ class jQueryColorbox {
282
  * @since 1.0
283
  * @access private
284
  * @author Arne Franken
285
- * @author Fabian Wolf (http://usability-idealist.de/)
286
- * @author Jason Stapels (jstapels@realmprojects.com)
287
  *
288
  * @return wordpress header insert
289
  */
@@ -297,61 +318,10 @@ class jQueryColorbox {
297
  } elseif ($this->colorboxSettings['colorboxTheme'] == 'theme4') {
298
  include_once 'includes/iefix-theme4.php';
299
  }
300
- ?>
301
 
302
- <script type="text/javascript">
303
- // <![CDATA[
304
- jQuery(document).ready(function($) {
305
- <?php //gets all "a" elements that have a nested "img" ?>
306
- $("a:has(img)").each(function(index, obj) {
307
- <?php //only go on if link points to an image ?>
308
- if ($(obj).attr("href").match(/\.(?:jpe?g|gif|png|bmp)/i)) {
309
- <?php //in this context, the first child is always an image if fundamental Wordpress functions are used ?>
310
- var $nestedElement = $(obj).children(0);
311
- if ($nestedElement.is("img")) {
312
- var $nestedElementClassAttribute = $nestedElement.attr("class");
313
- <?php //either the groupId has to be the automatically created colorbox-123 or the manually added colorbox-manual ?>
314
- var $groupId = $nestedElementClassAttribute.match('colorbox-[0-9]+') || $nestedElementClassAttribute.match('colorbox-manual');
315
- <?php //only call Colorbox if there is a groupId for the image and the image is not excluded ?>
316
- if ($groupId && !$nestedElementClassAttribute.match('colorbox-off')) {
317
- <?php //convert groupId to string for easier use ?>
318
- $groupId = $groupId.toString();
319
- <?php //if groudId is colorbox-manual, set groupId to "nofollow" so that images with that class are not grouped ?>
320
- if ($groupId == "colorbox-manual") {
321
- $groupId = "nofollow";
322
- }
323
- <?php //call Colorbox function on each img. elements with the same groupId in the class attribute are grouped
324
- //the title of the img is used as the title for the Colorbox. ?>
325
- $(obj).colorbox({
326
- rel:$groupId,
327
- title:$nestedElement.attr("title"),
328
- <?php echo $this->colorboxSettings['maxWidth'] == "false" ? '' : 'maxWidth:"' . $this->colorboxSettings['maxWidthValue'] . $this->colorboxSettings['maxWidthUnit'] . '",';
329
- echo $this->colorboxSettings['maxHeight'] == "false" ? '' : 'maxHeight:"' . $this->colorboxSettings['maxHeightValue'] . $this->colorboxSettings['maxHeightUnit'] . '",';
330
- echo $this->colorboxSettings['height'] == "false" ? '' : 'height:"' . $this->colorboxSettings['heightValue'] . $this->colorboxSettings['heightUnit'] . '",';
331
- echo $this->colorboxSettings['width'] == "false" ? '' : 'width:"' . $this->colorboxSettings['widthValue'] . $this->colorboxSettings['widthUnit'] . '",';
332
- echo !$this->colorboxSettings['slideshow'] ? '' : 'slideshow:true,';
333
- echo $this->colorboxSettings['slideshowAuto'] ? '' : 'slideshowAuto:false,';
334
- echo $this->colorboxSettings['scalePhotos'] ? '' : 'scalePhotos:false,';
335
- echo $this->colorboxSettings['preloading'] ? '' : 'preloading:false,';
336
- echo $this->colorboxSettings['overlayClose'] ? '' : 'overlayClose:false,';?>
337
- opacity:"<?php echo $this->colorboxSettings['opacity']; ?>",
338
- transition:"<?php echo $this->colorboxSettings['transition']; ?>",
339
- speed:<?php echo $this->colorboxSettings['speed']; ?>,
340
- slideshowSpeed:<?php echo $this->colorboxSettings['slideshowSpeed']; ?>,
341
- close:"<?php _e('close', JQUERYCOLORBOX_TEXTDOMAIN); ?>",
342
- next:"<?php _e('next', JQUERYCOLORBOX_TEXTDOMAIN); ?>",
343
- previous:"<?php _e('previous', JQUERYCOLORBOX_TEXTDOMAIN); ?>",
344
- slideshowStart:"<?php _e('start slideshow', JQUERYCOLORBOX_TEXTDOMAIN); ?>",
345
- slideshowStop:"<?php _e('stop slideshow', JQUERYCOLORBOX_TEXTDOMAIN); ?>",
346
- current:"<?php _e('{current} of {total} images', JQUERYCOLORBOX_TEXTDOMAIN); ?>"
347
- });
348
- }
349
- }
350
- }
351
- });
352
- });
353
- // ]]>
354
- </script>
355
  <!-- <?php echo JQUERYCOLORBOX_NAME ?> <?php echo JQUERYCOLORBOX_VERSION ?> | by Arne Franken, http://www.techotronic.de/ -->
356
  <?php
357
 
4
  * @subpackage jQuery Colorbox
5
  *
6
  * Plugin Name: jQuery Colorbox
7
+ * Plugin URI: http://www.techotronic.de/plugins/jquery-colorbox/
8
  * Description: Used to overlay images on the current page. Images in one post are grouped automatically.
9
+ * Version: 3.2
10
  * Author: Arne Franken
11
  * Author URI: http://www.techotronic.de/
12
  * License: GPL
19
  ?>
20
  <?php
21
  //define constants
22
+ define('JQUERYCOLORBOX_VERSION', '3.2');
23
 
24
  if (! defined('JQUERYCOLORBOX_PLUGIN_BASENAME')) {
25
  define('JQUERYCOLORBOX_PLUGIN_BASENAME', plugin_basename(__FILE__));
64
  }
65
 
66
  class jQueryColorbox {
67
+
68
  var $colorboxThemes = array();
69
 
70
  var $colorboxUnits = array();
114
  'theme6' => __('Theme #6', JQUERYCOLORBOX_TEXTDOMAIN),
115
  'theme7' => __('Theme #7', JQUERYCOLORBOX_TEXTDOMAIN),
116
  'theme8' => __('Theme #8', JQUERYCOLORBOX_TEXTDOMAIN),
117
+ 'theme9' => __('Theme #9', JQUERYCOLORBOX_TEXTDOMAIN),
118
+ 'theme10' => __('Theme #10', JQUERYCOLORBOX_TEXTDOMAIN)
119
+ );
120
+
121
+ $dummyThemeNumberArray = array (
122
+ __('Theme #11', JQUERYCOLORBOX_TEXTDOMAIN),
123
+ __('Theme #12', JQUERYCOLORBOX_TEXTDOMAIN),
124
+ __('Theme #13', JQUERYCOLORBOX_TEXTDOMAIN),
125
+ __('Theme #14', JQUERYCOLORBOX_TEXTDOMAIN),
126
+ __('Theme #15', JQUERYCOLORBOX_TEXTDOMAIN)
127
  );
128
 
129
  // create list of units
218
  if (isset($colorboxSettings['autoColorbox']) && $colorboxSettings['autoColorbox']) {
219
  global
220
  $post;
221
+ // match all img tags with this pattern
222
+ $imgPattern = "/<img([^\>]*?)>/i";
223
+ if ( preg_match_all ( $imgPattern , $content , $imgTags ) ) {
224
+ foreach ( $imgTags[0] as $imgTag ) {
225
+ if(!preg_match('/class/i',$imgTag)){
226
+ $pattern = $imgPattern;
227
+ $replacement = '<img class="colorbox-' . $post->ID . '" $1>';
228
+ }
229
+ else{
230
+ $pattern = "/<img(.*?)class=('|\")([A-Za-z0-9 \/_\.\~\:-]*?)('|\")([^\>]*?)>/i";
231
+ $replacement = '<img$1class=$2$3 colorbox-' . $post->ID . '$4$5>';
232
+ }
233
+ $replacedImgTag = preg_replace($pattern, $replacement, $imgTag);
234
+ $content = str_replace($imgTag, $replacedImgTag, $content);
235
+ }
236
+ }
237
  }
238
  return $content;
239
  }
305
  * @since 1.0
306
  * @access private
307
  * @author Arne Franken
 
 
308
  *
309
  * @return wordpress header insert
310
  */
318
  } elseif ($this->colorboxSettings['colorboxTheme'] == 'theme4') {
319
  include_once 'includes/iefix-theme4.php';
320
  }
 
321
 
322
+ // include Colorbox Javascript
323
+ include_once 'includes/colorbox-javascript.php';
324
+ ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
325
  <!-- <?php echo JQUERYCOLORBOX_NAME ?> <?php echo JQUERYCOLORBOX_VERSION ?> | by Arne Franken, http://www.techotronic.de/ -->
326
  <?php
327
 
js/jquery-colorbox-auto.js CHANGED
@@ -1,9 +1,11 @@
1
  /*
2
- * jQuery Colorbox Wordpress Plugin.
 
3
  *
 
4
  * @author Arne Franken
5
  *
6
- * adds colorbox-manual to ALL img tags that are found in the output
7
  */
8
  jQuery(document).ready(function($) {
9
  $("img").each( function(index,obj){
1
  /*
2
+ * @package Techotronic
3
+ * @subpackage jQuery Colorbox
4
  *
5
+ * @since 3.1
6
  * @author Arne Franken
7
  *
8
+ * adds colorbox-manual to ALL img tags that are found in the HTML output
9
  */
10
  jQuery(document).ready(function($) {
11
  $("img").each( function(index,obj){
js/jquery-colorbox-hideFlash.js CHANGED
@@ -1,9 +1,11 @@
1
  /*
2
- * jQuery Colorbox Wordpress Plugin.
 
3
  *
 
4
  * @author Arne Franken
5
  *
6
- * handles automatic hiding of flash object and embed tags
7
  */
8
  jQuery(document).ready(function($) {
9
  $(document).bind('cbox_open', function(){
1
  /*
2
+ * @package Techotronic
3
+ * @subpackage jQuery Colorbox
4
  *
5
+ * @since 3.1
6
  * @author Arne Franken
7
  *
8
+ * handles automatic hiding of flash object and embed tags
9
  */
10
  jQuery(document).ready(function($) {
11
  $(document).bind('cbox_open', function(){
localization/jquery-colorbox-ar.mo ADDED
Binary file
localization/{jquery-colorbox-ar_AR.po → jquery-colorbox-ar.po} RENAMED
@@ -1,11 +1,11 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: jQuery-Colorbox 2.0.1 Arabic\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-03-29 13:12+0100\n"
6
- "PO-Revision-Date: 2010-03-29 13:13+0100\n"
7
- "Last-Translator: \n"
8
- "Language-Team: Mickey Mouse® <modarsoos@yahoo.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
@@ -15,321 +15,354 @@ msgstr ""
15
  "X-Poedit-Country: SYRIAN ARAB REPUBLIC\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: jquery-colorbox.php:116
19
  msgid "Theme #1"
20
  msgstr "القالب الأول"
21
 
22
- #: jquery-colorbox.php:117
23
  msgid "Theme #2"
24
  msgstr "القالب الثاني"
25
 
26
- #: jquery-colorbox.php:118
27
  msgid "Theme #3"
28
  msgstr "القالب الثالث"
29
 
30
- #: jquery-colorbox.php:119
31
  msgid "Theme #4"
32
  msgstr "القالب الرابع"
33
 
34
- #: jquery-colorbox.php:120
35
  msgid "Theme #5"
36
  msgstr "القالب الخامس"
37
 
38
- #: jquery-colorbox.php:121
39
  msgid "Theme #6"
40
- msgstr ""
41
 
42
- #: jquery-colorbox.php:122
43
  msgid "Theme #7"
44
- msgstr ""
45
 
46
- #: jquery-colorbox.php:123
47
  msgid "Theme #8"
48
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
49
 
50
- #: jquery-colorbox.php:128
 
 
 
 
 
 
 
 
51
  msgid "percent"
52
  msgstr "بالمئة"
53
 
54
- #: jquery-colorbox.php:129
55
  msgid "pixels"
56
- msgstr "بالبيكسل"
57
 
58
- #: jquery-colorbox.php:134
59
  msgid "elastic"
60
- msgstr ""
61
 
62
- #: jquery-colorbox.php:135
63
  msgid "fade"
64
- msgstr ""
65
 
66
- #: jquery-colorbox.php:136
67
  msgid "none"
68
- msgstr ""
69
 
70
- #: jquery-colorbox.php:267
71
- #: jquery-colorbox.php:514
72
  msgid "Settings"
73
  msgstr "إعدادات"
74
 
75
- #: jquery-colorbox.php:386
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
76
  msgid "close"
77
  msgstr "إغلاق"
78
 
79
- #: jquery-colorbox.php:387
80
  msgid "next"
81
  msgstr "التالي"
82
 
83
- #: jquery-colorbox.php:388
84
  msgid "previous"
85
  msgstr "السابق"
86
 
87
- #: jquery-colorbox.php:389
88
  msgid "start slideshow"
89
  msgstr "بدء عرض الشرائح"
90
 
91
- #: jquery-colorbox.php:390
92
  msgid "stop slideshow"
93
  msgstr "إيقاف عرض الشرائح"
94
 
95
- #: jquery-colorbox.php:391
96
  msgid "{current} of {total} images"
97
  msgstr "{current} من {total} إجمالي الصور"
98
 
99
- #: jquery-colorbox.php:507
100
  #, php-format
101
  msgid "%1$s Settings"
102
  msgstr "%1$s إعدادات"
103
 
104
- #: jquery-colorbox.php:523
105
  msgid "Theme"
106
- msgstr "قالب"
107
 
108
- #: jquery-colorbox.php:535
109
  msgid "Select the theme you want to use on your blog."
110
  msgstr "حدد القالب الذي تريد استخدامه في موقعك من القائمة المنسدلة."
111
 
112
- #: jquery-colorbox.php:540
113
  msgid "Theme screenshot"
114
- msgstr ""
115
 
116
- #: jquery-colorbox.php:550
117
  #, php-format
118
  msgid "Automate %1$s for all images"
119
- msgstr "شغل تلقائياً %1$s لجميع الصور"
120
 
121
- #: jquery-colorbox.php:554
122
  msgid "Automatically add colorbox-class to images in posts and pages. Also adds colorbox-class to galleries. Images in one page or post are grouped automatically."
123
- msgstr "أضف بشكل تلقائي صندوق عرض الشرائح في جميع المواضيع والصفحات. أيضاً أضف صندوق عرض الشرائح لمعرض الصور. الصور في صفحة واحدة أو موضوع واحد ستندمج بشكل تلقائي."
124
 
125
- #: jquery-colorbox.php:559
126
  #, php-format
127
  msgid "Automate %1$s for images in WordPress galleries"
128
- msgstr "شغل تلقائياً %1$s لجميع الصور في معرض صور الموقع"
129
 
130
- #: jquery-colorbox.php:563
131
  msgid "Automatically add colorbox-class to images in WordPress galleries, but nowhere else. Images in one page or post are grouped automatically."
132
- msgstr "أضف بشكل تلقائي صندوق عرض الشرائح للصور في معرض ووردبريس، ولكن في أي مكان آخر. الصور في الصفحة أو الموضوع ستندمج تلقائياً."
133
 
134
- #: jquery-colorbox.php:568
135
  msgid "Add Slideshow to groups"
136
  msgstr "إضافة عرض الشرائح للمجموعات"
137
 
138
- #: jquery-colorbox.php:572
139
  #, php-format
140
  msgid "Add Slideshow functionality for %1$s Groups"
141
- msgstr "إضافة عرض الشرائح ل %1$s مجموعات"
142
 
143
- #: jquery-colorbox.php:577
144
  msgid "Start Slideshow automatically"
145
  msgstr "ابدأ عرض الشرائح تلقائياً"
146
 
147
- #: jquery-colorbox.php:581
148
  #, php-format
149
  msgid "Start Slideshow automatically if slideshow functionality is added to %1$s Groups"
150
- msgstr "ابدأ عرض الشرائح تلقائياً إذا كانت خصائص عرض الشرائح قد أضيفت ل %1$s المجموعات"
151
 
152
- #: jquery-colorbox.php:586
153
  msgid "Speed of the slideshow"
154
  msgstr "سرعة عرض الشرائح"
155
 
156
- #: jquery-colorbox.php:590
 
 
 
 
 
157
  msgid "Sets the speed of the slideshow, in milliseconds"
158
- msgstr "حدد سرعة عرض الشرائح بالميلي"
159
 
160
- #: jquery-colorbox.php:595
161
  msgid "Maximum width of an image"
162
- msgstr "الحد الأقصى لعرض صورة"
163
 
164
- #: jquery-colorbox.php:599
165
- #: jquery-colorbox.php:645
166
  msgid "Do not set width"
167
  msgstr "عدم تعيين عرض"
168
 
169
- #: jquery-colorbox.php:602
170
  msgid "Set maximum width of an image"
171
  msgstr "تعيين أقصى عرض للصورة"
172
 
173
- #: jquery-colorbox.php:613
174
  msgid "Set the maximum width of the image in the Colorbox in relation to the browser window in percent or pixels. If maximum width is not set, image is as wide as the Colorbox"
175
- msgstr "حدد العرض الأقصى لصندوق عرض الشرائح بالنسبة المئوية أو بالبيكسل ليتناسب مع متصفحك. إذا لم يتم تعيين العرض، سيكون عرض الصورة مثل عرض صندوق عرض الشرائح."
176
 
177
- #: jquery-colorbox.php:618
178
  msgid "Maximum height of an image"
179
  msgstr "أقصى ارتفاع للصورة"
180
 
181
- #: jquery-colorbox.php:622
182
- #: jquery-colorbox.php:668
183
  msgid "Do not set height"
184
  msgstr "عدم تعيين الارتفاع"
185
 
186
- #: jquery-colorbox.php:625
187
  msgid "Set maximum height of an image"
188
  msgstr "تعيين الارتفاع الأقصى للصورة"
189
 
190
- #: jquery-colorbox.php:636
191
  msgid "Set the maximum height of the image in the Colorbox in relation to the browser window to a value in percent or pixels. If maximum height is not set, the image is as high as the Colorbox"
192
  msgstr "حدد الارتفاع الأقصى لصندوق عرض الشرائح بالنسبة المئوية أو بالبيكسل ليتناسب مع متصفحك. إذا لم يتم تعيين الارتفاع، سيكون ارتفاع الصورة مثل ارتفاع صندوق عرض الشرائح."
193
 
194
- #: jquery-colorbox.php:641
195
  msgid "Maximum width of the Colorbox"
196
  msgstr "الحد الأقصى لعرض صندوق عرض الشرائح"
197
 
198
- #: jquery-colorbox.php:648
199
  msgid "Set width of the Colorbox"
200
  msgstr "تعيين عرض صندوق عرض الشرائح"
201
 
202
- #: jquery-colorbox.php:659
203
  msgid "Set the maximum width of the Colorbox itself in relation to the browser window to a value between in percent or pixels. If the image is bigger than the colorbox, scrollbars are displayed. If width is not set, the Colorbox will be as wide as the picture in it"
204
  msgstr "حدد العرض الأقصى لصندوق عرض الشرائح بالنسبة المئوية أو بالبيكسل ليتناسب مع متصفحك. إذا كانت الصورة أكبر من صندوق عرض الشرائح، سيتم عرض أشرطة التمرير، وإذا لم يتم تعيين العرض، سيكون صندوق عرض الشرائح عريضاً كعرض الصورة التي بداخله."
205
 
206
- #: jquery-colorbox.php:664
207
  msgid "Maximum height of the Colorbox"
208
  msgstr "الحد الأقصى لارتفاع صندوق عرض الشرائح"
209
 
210
- #: jquery-colorbox.php:671
211
  msgid "Set height of the Colorbox"
212
  msgstr "تعيين ارتفاع صندوق عرض الشرائح"
213
 
214
- #: jquery-colorbox.php:682
215
  msgid "Set the maximum height of the Colorbox itself in relation to the browser window to a value between in percent or pixels. If the image is bigger than the colorbox, scrollbars are displayed. If height is not set, the Colorbox will be as high as the picture in it"
216
  msgstr "حدد الارتفاع الأقصى لصندوق عرض الشرائح بالنسبة المئوية أو بالبيكسل ليتناسب مع متصفحك. إذا كانت الصورة أكبر من صندوق عرض الشرائح، سيتم عرض أشرطة التمرير، وإذا لم يتم تعيين الارتفاع، سيكون صندوق عرض الشرائح طويلاً كطول الصورة التي بداخله."
217
 
218
- #: jquery-colorbox.php:687
219
  msgid "Resize images"
220
  msgstr "تعديل حجم الصورة"
221
 
222
- #: jquery-colorbox.php:691
223
  msgid "If enabled and if maximum width of images, maximum height of images, width of the Colorbox, or height of the Colorbox have been defined, ColorBox will scale photos to fit within the those values"
224
- msgstr "إذا تم التفعيل وإذا تم تعديل الحد الأقصى لارتفاع وعرض \"الصور وصندوق عرض الشرائح\" سيقوم البرنامج بتصحيح عرض الصور داخل الصندوق ليلائم هذه القيم."
225
 
226
- #: jquery-colorbox.php:696
227
  msgid "Close Colorbox on overlay click"
228
- msgstr ""
229
 
230
- #: jquery-colorbox.php:700
231
  msgid "If checked, enables closing ColorBox by clicking on the background overlay"
232
- msgstr ""
233
 
234
- #: jquery-colorbox.php:705
235
  msgid "Preload images"
236
- msgstr ""
237
 
238
- #: jquery-colorbox.php:709
239
  msgid "Allows for preloading of \"next\" and \"previous\" content in a group, after the current content has finished loading. Uncheck box to disable."
240
- msgstr ""
241
 
242
- #: jquery-colorbox.php:714
243
  msgid "Transition type"
244
- msgstr ""
245
 
246
- #: jquery-colorbox.php:726
247
  msgid "The transition type of the Colorbox. Can be set to \"elastic\", \"fade\", or \"none\""
248
- msgstr ""
249
 
250
- #: jquery-colorbox.php:731
251
  msgid "Transition speed"
252
- msgstr ""
253
 
254
- #: jquery-colorbox.php:735
255
  msgid "Sets the speed of the \"fade\" and \"elastic\" transitions, in milliseconds"
256
- msgstr ""
257
 
258
- #: jquery-colorbox.php:740
259
  msgid "Opacity"
260
- msgstr ""
261
 
262
- #: jquery-colorbox.php:744
263
  msgid "The overlay opacity level. Range: 0 to 1"
264
- msgstr ""
265
 
266
- #: jquery-colorbox.php:749
267
  msgid "Automate hiding of flash objects"
268
- msgstr ""
269
 
270
- #: jquery-colorbox.php:753
271
  msgid "Automatically hide embeded flash objects behind the Colorbox layer. Done by setting the wmode to transparent."
272
- msgstr ""
273
 
274
- #: jquery-colorbox.php:758
275
  msgid "Disable warning"
276
- msgstr ""
277
 
278
- #: jquery-colorbox.php:762
279
  msgid "Disables the warning that is displayed if the plugin is activated but the auto-colorbox feature for all images is turned off."
280
- msgstr ""
281
 
282
- #: jquery-colorbox.php:768
283
  msgid "Save Changes"
284
  msgstr "حفظ التغييرات"
285
 
286
- #: jquery-colorbox.php:777
287
- #: jquery-colorbox.php:786
288
  msgid "Delete Settings"
289
  msgstr "حذف الإعدادات"
290
 
291
- #: jquery-colorbox.php:780
292
  msgid "Check the box and click this button to delete settings of this plugin."
293
- msgstr "ضع علامة في المربع واضغط على هذا الزر لحذف إعدادات البرنامج."
294
 
295
- #: jquery-colorbox.php:796
296
  msgid "Donate"
297
  msgstr "تبرع"
298
 
299
- #: jquery-colorbox.php:810
300
  msgid "If you would like to make a small (or large) contribution towards future development please consider making a donation."
301
- msgstr "إذا كنت ترغب بالمساهمة في تنمية تطوير هذا البرنامج فنرجو منك التبرع لنا."
302
 
303
- #: jquery-colorbox.php:819
304
  msgid "Translation"
305
- msgstr ""
306
 
307
- #: jquery-colorbox.php:822
308
  msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
309
- msgstr ""
310
-
311
- #: jquery-colorbox.php:845
312
- #, php-format
313
- msgid "Successfully updated %1$s settings."
314
- msgstr "تم تحديث الإعدادات %1$s بنجاح."
315
-
316
- #: jquery-colorbox.php:847
317
- #, php-format
318
- msgid "%1$s settings were successfully deleted."
319
- msgstr "%1$s تم حذف الإعدادات بنجاح."
320
-
321
- #: jquery-colorbox.php:888
322
- msgid "needs attention: the plugin is not activated to work for all images."
323
- msgstr ""
324
-
325
- #: jquery-colorbox.php:948
326
- msgid "Did not update settings, you do not have the necessary rights."
327
- msgstr "لم يتم تحديث الإعدادات، ليس لديك صلاحيات."
328
-
329
- #: jquery-colorbox.php:995
330
- #, php-format
331
- msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
332
- msgstr "لا تقم بحذف %1$s الإعدادات. إلا إذا كنت تملك التصريح اللازم بذلك أو بأنك لم تقم بتحديد العلامة داخل المربع الصغير."
333
 
334
  #~ msgid "maxWidth"
335
  #~ msgstr "Maximum width of an image"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: jQuery-Colorbox 3.2 Arabic\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2010-04-12 23:34+0100\n"
6
+ "PO-Revision-Date: 2010-04-13 10:46+0200\n"
7
+ "Last-Translator: Modar <modarsoos@yahoo.com>\n"
8
+ "Language-Team: Mickey Mouse <modarsoos@yahoo.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
15
  "X-Poedit-Country: SYRIAN ARAB REPUBLIC\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: jquery-colorbox.php:109
19
  msgid "Theme #1"
20
  msgstr "القالب الأول"
21
 
22
+ #: jquery-colorbox.php:110
23
  msgid "Theme #2"
24
  msgstr "القالب الثاني"
25
 
26
+ #: jquery-colorbox.php:111
27
  msgid "Theme #3"
28
  msgstr "القالب الثالث"
29
 
30
+ #: jquery-colorbox.php:112
31
  msgid "Theme #4"
32
  msgstr "القالب الرابع"
33
 
34
+ #: jquery-colorbox.php:113
35
  msgid "Theme #5"
36
  msgstr "القالب الخامس"
37
 
38
+ #: jquery-colorbox.php:114
39
  msgid "Theme #6"
40
+ msgstr "القالب السادس"
41
 
42
+ #: jquery-colorbox.php:115
43
  msgid "Theme #7"
44
+ msgstr "القالب السابع"
45
 
46
+ #: jquery-colorbox.php:116
47
  msgid "Theme #8"
48
+ msgstr "القالب الثامن"
49
+
50
+ #: jquery-colorbox.php:117
51
+ msgid "Theme #9"
52
+ msgstr "القالب التاسع"
53
+
54
+ #: jquery-colorbox.php:121
55
+ msgid "Theme #10"
56
+ msgstr "القالب العاشر"
57
+
58
+ #: jquery-colorbox.php:122
59
+ msgid "Theme #11"
60
+ msgstr "القالب الحادي عشر"
61
+
62
+ #: jquery-colorbox.php:123
63
+ msgid "Theme #12"
64
+ msgstr "القالب الثاني عشر"
65
+
66
+ #: jquery-colorbox.php:124
67
+ msgid "Theme #13"
68
+ msgstr "القالب الثالث عشر"
69
 
70
+ #: jquery-colorbox.php:125
71
+ msgid "Theme #14"
72
+ msgstr "القالب الرابع عشر"
73
+
74
+ #: jquery-colorbox.php:126
75
+ msgid "Theme #15"
76
+ msgstr "القالب الخامس عشر"
77
+
78
+ #: jquery-colorbox.php:131
79
  msgid "percent"
80
  msgstr "بالمئة"
81
 
82
+ #: jquery-colorbox.php:132
83
  msgid "pixels"
84
+ msgstr "بيكسل"
85
 
86
+ #: jquery-colorbox.php:137
87
  msgid "elastic"
88
+ msgstr "تمدد"
89
 
90
+ #: jquery-colorbox.php:138
91
  msgid "fade"
92
+ msgstr "تضاءل"
93
 
94
+ #: jquery-colorbox.php:139
95
  msgid "none"
96
+ msgstr "بدون تأثير"
97
 
98
+ #: jquery-colorbox.php:294
99
+ #: includes/settings-page.php:101
100
  msgid "Settings"
101
  msgstr "إعدادات"
102
 
103
+ #: jquery-colorbox.php:357
104
+ #, php-format
105
+ msgid "Successfully updated %1$s settings."
106
+ msgstr "تم تحديث إعدادات برنامج %1$s بنجاح."
107
+
108
+ #: jquery-colorbox.php:359
109
+ #, php-format
110
+ msgid "%1$s settings were successfully deleted."
111
+ msgstr "%1$s تم حذف الإعدادات بنجاح."
112
+
113
+ #: jquery-colorbox.php:400
114
+ msgid "needs attention: the plugin is not activated to work for all images."
115
+ msgstr "تنبيه: لم يتم تنشيط برنامج صندوق عرض الشرائح ليعمل على جميع الصور."
116
+
117
+ #: jquery-colorbox.php:460
118
+ msgid "Did not update settings, you do not have the necessary rights."
119
+ msgstr "لم يتم تحديث الإعدادات، ليس لديك الصلاحيات الكافية."
120
+
121
+ #: jquery-colorbox.php:507
122
+ #, php-format
123
+ msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
124
+ msgstr "لم يتم حذف إعدادات %1$s أو ليس لديك الصلاحيات الكافية أو بأنك لم تقم بتحديد العلامة داخل المربع الصغير قبل الضغط على زر حذف الإعدادات."
125
+
126
+ #: includes/colorbox-javascript.php:53
127
  msgid "close"
128
  msgstr "إغلاق"
129
 
130
+ #: includes/colorbox-javascript.php:54
131
  msgid "next"
132
  msgstr "التالي"
133
 
134
+ #: includes/colorbox-javascript.php:55
135
  msgid "previous"
136
  msgstr "السابق"
137
 
138
+ #: includes/colorbox-javascript.php:56
139
  msgid "start slideshow"
140
  msgstr "بدء عرض الشرائح"
141
 
142
+ #: includes/colorbox-javascript.php:57
143
  msgid "stop slideshow"
144
  msgstr "إيقاف عرض الشرائح"
145
 
146
+ #: includes/colorbox-javascript.php:58
147
  msgid "{current} of {total} images"
148
  msgstr "{current} من {total} إجمالي الصور"
149
 
150
+ #: includes/settings-page.php:94
151
  #, php-format
152
  msgid "%1$s Settings"
153
  msgstr "%1$s إعدادات"
154
 
155
+ #: includes/settings-page.php:110
156
  msgid "Theme"
157
+ msgstr "حدد القالب"
158
 
159
+ #: includes/settings-page.php:122
160
  msgid "Select the theme you want to use on your blog."
161
  msgstr "حدد القالب الذي تريد استخدامه في موقعك من القائمة المنسدلة."
162
 
163
+ #: includes/settings-page.php:127
164
  msgid "Theme screenshot"
165
+ msgstr "صورة القالب"
166
 
167
+ #: includes/settings-page.php:137
168
  #, php-format
169
  msgid "Automate %1$s for all images"
170
+ msgstr "شغل برنامج %1$s لجميع الصور تلقائياً"
171
 
172
+ #: includes/settings-page.php:141
173
  msgid "Automatically add colorbox-class to images in posts and pages. Also adds colorbox-class to galleries. Images in one page or post are grouped automatically."
174
+ msgstr "أضف صندوق عرض الشرائح بشكل تلقائي لعرض الصور في المواضيع والصفحات. سيقوم البرنامج بدمج جميع الصور في الموضوع تلقائياً."
175
 
176
+ #: includes/settings-page.php:146
177
  #, php-format
178
  msgid "Automate %1$s for images in WordPress galleries"
179
+ msgstr "أتمتة %1$s للصور في معرض صور الموقع"
180
 
181
+ #: includes/settings-page.php:150
182
  msgid "Automatically add colorbox-class to images in WordPress galleries, but nowhere else. Images in one page or post are grouped automatically."
183
+ msgstr "أضف صندوق عرض الشرائح بشكل تلقائي للصور في معرض صور الموقع، سيقوم البرنامج بدمج جميع الصور في الموضوع تلقائياً."
184
 
185
+ #: includes/settings-page.php:155
186
  msgid "Add Slideshow to groups"
187
  msgstr "إضافة عرض الشرائح للمجموعات"
188
 
189
+ #: includes/settings-page.php:159
190
  #, php-format
191
  msgid "Add Slideshow functionality for %1$s Groups"
192
+ msgstr "إضافة عرض الشرائح لمجموعات %1$s"
193
 
194
+ #: includes/settings-page.php:164
195
  msgid "Start Slideshow automatically"
196
  msgstr "ابدأ عرض الشرائح تلقائياً"
197
 
198
+ #: includes/settings-page.php:168
199
  #, php-format
200
  msgid "Start Slideshow automatically if slideshow functionality is added to %1$s Groups"
201
+ msgstr "ابدأ عرض الشرائح تلقائياً إذا كانت خصائص عرض الشرائح قد أضيفت لمجموعات %1$s"
202
 
203
+ #: includes/settings-page.php:173
204
  msgid "Speed of the slideshow"
205
  msgstr "سرعة عرض الشرائح"
206
 
207
+ #: includes/settings-page.php:176
208
+ #: includes/settings-page.php:321
209
+ msgid "milliseconds"
210
+ msgstr "ميلي ثانية"
211
+
212
+ #: includes/settings-page.php:177
213
  msgid "Sets the speed of the slideshow, in milliseconds"
214
+ msgstr "حدد سرعة عرض الشرائح بالميلي ثانية"
215
 
216
+ #: includes/settings-page.php:182
217
  msgid "Maximum width of an image"
218
+ msgstr "أقصى عرض للصورة"
219
 
220
+ #: includes/settings-page.php:186
221
+ #: includes/settings-page.php:232
222
  msgid "Do not set width"
223
  msgstr "عدم تعيين عرض"
224
 
225
+ #: includes/settings-page.php:189
226
  msgid "Set maximum width of an image"
227
  msgstr "تعيين أقصى عرض للصورة"
228
 
229
+ #: includes/settings-page.php:200
230
  msgid "Set the maximum width of the image in the Colorbox in relation to the browser window in percent or pixels. If maximum width is not set, image is as wide as the Colorbox"
231
+ msgstr "حدد العرض الأقصى لصندوق عرض الشرائح بالنسبة المئوية أو بالبيكسل ليتناسب مع متصفحك. إذا لم يتم تعيين العرض، سيكون عرض الصورة مثل عرض صندوق عرض الشرائح"
232
 
233
+ #: includes/settings-page.php:205
234
  msgid "Maximum height of an image"
235
  msgstr "أقصى ارتفاع للصورة"
236
 
237
+ #: includes/settings-page.php:209
238
+ #: includes/settings-page.php:255
239
  msgid "Do not set height"
240
  msgstr "عدم تعيين الارتفاع"
241
 
242
+ #: includes/settings-page.php:212
243
  msgid "Set maximum height of an image"
244
  msgstr "تعيين الارتفاع الأقصى للصورة"
245
 
246
+ #: includes/settings-page.php:223
247
  msgid "Set the maximum height of the image in the Colorbox in relation to the browser window to a value in percent or pixels. If maximum height is not set, the image is as high as the Colorbox"
248
  msgstr "حدد الارتفاع الأقصى لصندوق عرض الشرائح بالنسبة المئوية أو بالبيكسل ليتناسب مع متصفحك. إذا لم يتم تعيين الارتفاع، سيكون ارتفاع الصورة مثل ارتفاع صندوق عرض الشرائح."
249
 
250
+ #: includes/settings-page.php:228
251
  msgid "Maximum width of the Colorbox"
252
  msgstr "الحد الأقصى لعرض صندوق عرض الشرائح"
253
 
254
+ #: includes/settings-page.php:235
255
  msgid "Set width of the Colorbox"
256
  msgstr "تعيين عرض صندوق عرض الشرائح"
257
 
258
+ #: includes/settings-page.php:246
259
  msgid "Set the maximum width of the Colorbox itself in relation to the browser window to a value between in percent or pixels. If the image is bigger than the colorbox, scrollbars are displayed. If width is not set, the Colorbox will be as wide as the picture in it"
260
  msgstr "حدد العرض الأقصى لصندوق عرض الشرائح بالنسبة المئوية أو بالبيكسل ليتناسب مع متصفحك. إذا كانت الصورة أكبر من صندوق عرض الشرائح، سيتم عرض أشرطة التمرير، وإذا لم يتم تعيين العرض، سيكون صندوق عرض الشرائح عريضاً كعرض الصورة التي بداخله."
261
 
262
+ #: includes/settings-page.php:251
263
  msgid "Maximum height of the Colorbox"
264
  msgstr "الحد الأقصى لارتفاع صندوق عرض الشرائح"
265
 
266
+ #: includes/settings-page.php:258
267
  msgid "Set height of the Colorbox"
268
  msgstr "تعيين ارتفاع صندوق عرض الشرائح"
269
 
270
+ #: includes/settings-page.php:269
271
  msgid "Set the maximum height of the Colorbox itself in relation to the browser window to a value between in percent or pixels. If the image is bigger than the colorbox, scrollbars are displayed. If height is not set, the Colorbox will be as high as the picture in it"
272
  msgstr "حدد الارتفاع الأقصى لصندوق عرض الشرائح بالنسبة المئوية أو بالبيكسل ليتناسب مع متصفحك. إذا كانت الصورة أكبر من صندوق عرض الشرائح، سيتم عرض أشرطة التمرير، وإذا لم يتم تعيين الارتفاع، سيكون صندوق عرض الشرائح طويلاً كطول الصورة التي بداخله."
273
 
274
+ #: includes/settings-page.php:274
275
  msgid "Resize images"
276
  msgstr "تعديل حجم الصورة"
277
 
278
+ #: includes/settings-page.php:278
279
  msgid "If enabled and if maximum width of images, maximum height of images, width of the Colorbox, or height of the Colorbox have been defined, ColorBox will scale photos to fit within the those values"
280
+ msgstr "إذا كنت قد فعلت هذا الخيار وكنت قد عدلت في \"عرض وارتفاع الصور\" و\"عرض وارتفاع صندوق عرض الشرائح\" سيقوم صندوق عرض الشرائح بعرض الصور لتتلائم مع هذه القيم"
281
 
282
+ #: includes/settings-page.php:283
283
  msgid "Close Colorbox on overlay click"
284
+ msgstr "إغلاق صندوق عرض الشرائح"
285
 
286
+ #: includes/settings-page.php:287
287
  msgid "If checked, enables closing ColorBox by clicking on the background overlay"
288
+ msgstr "إذا حددت هذا الخيار، يمكنك إغلاق صندوق عرض الشرائح عند الضغط في أي مكان على الخلفية الشفافة"
289
 
290
+ #: includes/settings-page.php:292
291
  msgid "Preload images"
292
+ msgstr "تحميل مسبق للصور"
293
 
294
+ #: includes/settings-page.php:296
295
  msgid "Allows for preloading of \"next\" and \"previous\" content in a group, after the current content has finished loading. Uncheck box to disable."
296
+ msgstr "السماح للتحميل المسبق لأزرار \"التالي\" و\"السابق\" في المجموعات، بعد تحميل المحتوى الحالي. أزل المربع للتعطيل."
297
 
298
+ #: includes/settings-page.php:301
299
  msgid "Transition type"
300
+ msgstr "نوع الانتقال بين الصور"
301
 
302
+ #: includes/settings-page.php:313
303
  msgid "The transition type of the Colorbox. Can be set to \"elastic\", \"fade\", or \"none\""
304
+ msgstr "يمكنك ضبط إعدادات الانتقال بين الصور لصندوق عرض الشرائح إلى: تمدد، تضاءل، أو بدون تأثير"
305
 
306
+ #: includes/settings-page.php:318
307
  msgid "Transition speed"
308
+ msgstr "سرعة الانتقال بين الصور"
309
 
310
+ #: includes/settings-page.php:322
311
  msgid "Sets the speed of the \"fade\" and \"elastic\" transitions, in milliseconds"
312
+ msgstr "حدد سرعة نوع الانتقال \"تمدد، تضاءل، بدون تأثير\" بالميلي ثانية"
313
 
314
+ #: includes/settings-page.php:327
315
  msgid "Opacity"
316
+ msgstr "شفافية الخلفية"
317
 
318
+ #: includes/settings-page.php:331
319
  msgid "The overlay opacity level. Range: 0 to 1"
320
+ msgstr "مستوى شفافية الخلفية. المدى: من 0 إلى 1"
321
 
322
+ #: includes/settings-page.php:336
323
  msgid "Automate hiding of flash objects"
324
+ msgstr "أتمتة إخفاء عناصر الفلاش"
325
 
326
+ #: includes/settings-page.php:340
327
  msgid "Automatically hide embeded flash objects behind the Colorbox layer. Done by setting the wmode to transparent."
328
+ msgstr "قم بإخفاء عناصر الفلاش المدمجة خلف طبقة صندوق عرض الشرائح. يتم ذلك عن طريق جعل إعدادات wmode شفافة."
329
 
330
+ #: includes/settings-page.php:345
331
  msgid "Disable warning"
332
+ msgstr "تعطيل التحذير"
333
 
334
+ #: includes/settings-page.php:349
335
  msgid "Disables the warning that is displayed if the plugin is activated but the auto-colorbox feature for all images is turned off."
336
+ msgstr "تعطيل التحذير الذي يعرض في الصفحة الرئيسية للوحة تحكم الموقع عند تفعيل الإضافة و عدم تفعيل البرنامج ليعمل على جميع الصور تلقائياً."
337
 
338
+ #: includes/settings-page.php:355
339
  msgid "Save Changes"
340
  msgstr "حفظ التغييرات"
341
 
342
+ #: includes/settings-page.php:364
343
+ #: includes/settings-page.php:373
344
  msgid "Delete Settings"
345
  msgstr "حذف الإعدادات"
346
 
347
+ #: includes/settings-page.php:367
348
  msgid "Check the box and click this button to delete settings of this plugin."
349
+ msgstr "ضع علامة في المربع واضغط على زر حذف الإعدادات ليتم حذف إعدادات البرنامج."
350
 
351
+ #: includes/settings-page.php:383
352
  msgid "Donate"
353
  msgstr "تبرع"
354
 
355
+ #: includes/settings-page.php:397
356
  msgid "If you would like to make a small (or large) contribution towards future development please consider making a donation."
357
+ msgstr "إذا كنت ترغب بالمساهمة في تطوير البرنامج سواءً كانت مساهمتك (صغيرة أو كبيرة)، فنرجو منك أن تقوم بالتبرع."
358
 
359
+ #: includes/settings-page.php:406
360
  msgid "Translation"
361
+ msgstr "معلومات عن الترجمة"
362
 
363
+ #: includes/settings-page.php:409
364
  msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
365
+ msgstr "تمت الترجمة للغة العربية بواسطة: <a href=\"http://www.photokeens.com\">مضر صوص</a>."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
366
 
367
  #~ msgid "maxWidth"
368
  #~ msgstr "Maximum width of an image"
localization/jquery-colorbox-ar_AR.mo DELETED
Binary file
localization/jquery-colorbox-bs_BA.mo CHANGED
Binary file
localization/jquery-colorbox-bs_BA.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: jQuery-Colorbox\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-03-31 23:16+0100\n"
6
- "PO-Revision-Date: 2010-03-31 23:16+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -14,321 +14,354 @@ msgstr ""
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
- #: jquery-colorbox.php:116
18
  msgid "Theme #1"
19
  msgstr "Tema #1"
20
 
21
- #: jquery-colorbox.php:117
22
  msgid "Theme #2"
23
  msgstr "Tema #2"
24
 
25
- #: jquery-colorbox.php:118
26
  msgid "Theme #3"
27
  msgstr "Tema #3"
28
 
29
- #: jquery-colorbox.php:119
30
  msgid "Theme #4"
31
  msgstr "Tema #4"
32
 
33
- #: jquery-colorbox.php:120
34
  msgid "Theme #5"
35
  msgstr "Tema #5"
36
 
37
- #: jquery-colorbox.php:121
38
  msgid "Theme #6"
39
  msgstr "Tema #6"
40
 
41
- #: jquery-colorbox.php:122
42
  msgid "Theme #7"
43
  msgstr "Tema #7"
44
 
45
- #: jquery-colorbox.php:123
46
  msgid "Theme #8"
47
  msgstr "Tema #8"
48
 
49
- #: jquery-colorbox.php:128
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
50
  msgid "percent"
51
  msgstr "procenat"
52
 
53
- #: jquery-colorbox.php:129
54
  msgid "pixels"
55
  msgstr "piksel"
56
 
57
- #: jquery-colorbox.php:134
58
  msgid "elastic"
59
  msgstr "elastično"
60
 
61
- #: jquery-colorbox.php:135
62
  msgid "fade"
63
  msgstr "izblijediti"
64
 
65
- #: jquery-colorbox.php:136
66
  msgid "none"
67
  msgstr "bez efekta"
68
 
69
- #: jquery-colorbox.php:267
70
- #: jquery-colorbox.php:514
71
  msgid "Settings"
72
  msgstr "Opcije"
73
 
74
- #: jquery-colorbox.php:386
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
75
  msgid "close"
76
  msgstr "Zatvoriti"
77
 
78
- #: jquery-colorbox.php:387
79
  msgid "next"
80
  msgstr "Naprijed"
81
 
82
- #: jquery-colorbox.php:388
83
  msgid "previous"
84
  msgstr "Nazad"
85
 
86
- #: jquery-colorbox.php:389
87
  msgid "start slideshow"
88
  msgstr "Pokreni slideshow"
89
 
90
- #: jquery-colorbox.php:390
91
  msgid "stop slideshow"
92
  msgstr "Zaustavi slideshow"
93
 
94
- #: jquery-colorbox.php:391
95
  msgid "{current} of {total} images"
96
  msgstr "{current} od {total} slika"
97
 
98
- #: jquery-colorbox.php:507
99
  #, php-format
100
  msgid "%1$s Settings"
101
  msgstr "%1$s opcija"
102
 
103
- #: jquery-colorbox.php:523
104
  msgid "Theme"
105
  msgstr "Tema"
106
 
107
- #: jquery-colorbox.php:535
108
  msgid "Select the theme you want to use on your blog."
109
  msgstr "Izaberi temu za svoj blog"
110
 
111
- #: jquery-colorbox.php:540
112
  msgid "Theme screenshot"
113
  msgstr "Screenshot teme"
114
 
115
- #: jquery-colorbox.php:550
116
  #, php-format
117
  msgid "Automate %1$s for all images"
118
  msgstr "Automatiziraj %1$s za sve slike"
119
 
120
- #: jquery-colorbox.php:554
121
  msgid "Automatically add colorbox-class to images in posts and pages. Also adds colorbox-class to galleries. Images in one page or post are grouped automatically."
122
  msgstr "Dodaj automatski colorbox-klasu slikama u člancima i na stranicama. Takođe dodaje colobox-klasu galerijama. Sve slike unutar jednog članka ili jedne stranice če automatski biti grupirane. "
123
 
124
- #: jquery-colorbox.php:559
125
  #, php-format
126
  msgid "Automate %1$s for images in WordPress galleries"
127
  msgstr "Automatiziraj %1$s za slike u WordPress galeriji."
128
 
129
- #: jquery-colorbox.php:563
130
  msgid "Automatically add colorbox-class to images in WordPress galleries, but nowhere else. Images in one page or post are grouped automatically."
131
  msgstr "Dodaj automatksi colorbox-klasu za slike samo u galerijama, nigdje drugdje. SSe slike unutar jednog članka ili jedne stranice če automatski biti grupirane. "
132
 
133
- #: jquery-colorbox.php:568
134
  msgid "Add Slideshow to groups"
135
  msgstr "Dodaj slideshow grupama"
136
 
137
- #: jquery-colorbox.php:572
138
  #, php-format
139
  msgid "Add Slideshow functionality for %1$s Groups"
140
  msgstr "Dodaj slideshow funkcionalnost za %1$s grupe"
141
 
142
- #: jquery-colorbox.php:577
143
  msgid "Start Slideshow automatically"
144
  msgstr "Pokreni slideshow automatski"
145
 
146
- #: jquery-colorbox.php:581
147
  #, php-format
148
  msgid "Start Slideshow automatically if slideshow functionality is added to %1$s Groups"
149
  msgstr "Pokreni slideshow automatski ako je slideshow funkcionalnost dodana %1$s grupama"
150
 
151
- #: jquery-colorbox.php:586
152
  msgid "Speed of the slideshow"
153
  msgstr "Brzina slideshowa"
154
 
155
- #: jquery-colorbox.php:590
 
 
 
 
 
156
  msgid "Sets the speed of the slideshow, in milliseconds"
157
  msgstr "Postavi brzinu slideshowa u milisekundama"
158
 
159
- #: jquery-colorbox.php:595
160
  msgid "Maximum width of an image"
161
  msgstr "Maksimalna širina slike"
162
 
163
- #: jquery-colorbox.php:599
164
- #: jquery-colorbox.php:645
165
  msgid "Do not set width"
166
  msgstr "Ne postavljaj širinu"
167
 
168
- #: jquery-colorbox.php:602
169
  msgid "Set maximum width of an image"
170
  msgstr "Postavi maksimalnu širinu slike"
171
 
172
- #: jquery-colorbox.php:613
173
  msgid "Set the maximum width of the image in the Colorbox in relation to the browser window in percent or pixels. If maximum width is not set, image is as wide as the Colorbox"
174
  msgstr "Postavi maksimalnu širinu slike u Colorboxu u relaciji prema web pretraživaču u postotcima ili pikselima. Ako maksimalna širina nije postavljenja, slika je iste širine kao Colorbox"
175
 
176
- #: jquery-colorbox.php:618
177
  msgid "Maximum height of an image"
178
  msgstr "Maksimalma visina slike"
179
 
180
- #: jquery-colorbox.php:622
181
- #: jquery-colorbox.php:668
182
  msgid "Do not set height"
183
  msgstr "Ne postavljaj visinu"
184
 
185
- #: jquery-colorbox.php:625
186
  msgid "Set maximum height of an image"
187
  msgstr "Postavi visinu slike"
188
 
189
- #: jquery-colorbox.php:636
190
  msgid "Set the maximum height of the image in the Colorbox in relation to the browser window to a value in percent or pixels. If maximum height is not set, the image is as high as the Colorbox"
191
  msgstr "Postavi maksimalnu visinu slike u Colorboxu u relaciji prema web pretraživaču u postotcima ili pikselima. Ako maksimalna visina nije postavljenja, slika je iste visine kao Colorbox"
192
 
193
- #: jquery-colorbox.php:641
194
  msgid "Maximum width of the Colorbox"
195
  msgstr "Maksimalna širina Colorboxa"
196
 
197
- #: jquery-colorbox.php:648
198
  msgid "Set width of the Colorbox"
199
  msgstr "Postavi širinu Colorboxa"
200
 
201
- #: jquery-colorbox.php:659
202
  msgid "Set the maximum width of the Colorbox itself in relation to the browser window to a value between in percent or pixels. If the image is bigger than the colorbox, scrollbars are displayed. If width is not set, the Colorbox will be as wide as the picture in it"
203
  msgstr "Postavi maksimalnu širinu Colorboxa u relaciji prema web pretraživaču u postotcima ili pikselima. Ako je slika veća od Colorboxa bit će prikazan scrollbar. Ako širina nije postavljena, Colorbox će biti iste širine kao i sama slika"
204
 
205
- #: jquery-colorbox.php:664
206
  msgid "Maximum height of the Colorbox"
207
  msgstr "Maksimalna visina Colorboxa"
208
 
209
- #: jquery-colorbox.php:671
210
  msgid "Set height of the Colorbox"
211
  msgstr "Postavi visinu Colorboxa"
212
 
213
- #: jquery-colorbox.php:682
214
  msgid "Set the maximum height of the Colorbox itself in relation to the browser window to a value between in percent or pixels. If the image is bigger than the colorbox, scrollbars are displayed. If height is not set, the Colorbox will be as high as the picture in it"
215
  msgstr "Postavi maksimalnu visinu Colorboxa u relaciji prema web pretraživaču u postotcima ili pikselima. Ako je slika veća od Colorboxa bit će prikazan scrollbar. Ako visina nije postavljena, Colorbox će biti iste visine kao i sama slika"
216
 
217
- #: jquery-colorbox.php:687
218
  msgid "Resize images"
219
  msgstr "Promijeni veličinu slike"
220
 
221
- #: jquery-colorbox.php:691
222
  msgid "If enabled and if maximum width of images, maximum height of images, width of the Colorbox, or height of the Colorbox have been defined, ColorBox will scale photos to fit within the those values"
223
  msgstr "Ako su omogučeni i definirani maksimalna širina slike, maksimalna visina slike, širina Colorboxa ili visina Colorboxa, Clorobox će prilagoditi veličinu slike ovim vrijednostima"
224
 
225
- #: jquery-colorbox.php:696
226
  msgid "Close Colorbox on overlay click"
227
  msgstr "Zatvori Colorbox ako se klikne na overlay."
228
 
229
- #: jquery-colorbox.php:700
230
  msgid "If checked, enables closing ColorBox by clicking on the background overlay"
231
  msgstr "Ako označeno, omogućava zatvaranje Colorboxa klikom na overlay u pozadini"
232
 
233
- #: jquery-colorbox.php:705
234
  msgid "Preload images"
235
  msgstr "Preučitaj slike"
236
 
237
- #: jquery-colorbox.php:709
238
  msgid "Allows for preloading of \"next\" and \"previous\" content in a group, after the current content has finished loading. Uncheck box to disable."
239
  msgstr "Dozvoljava preučitavanje \"next\" i \"previous\" slika unutar jedne grupe nakon učitavanja aktuelnog sadržaja. Da bi deaktivirao ovaj elemenat ukloni kvačicu iz odjeljka. "
240
 
241
- #: jquery-colorbox.php:714
242
  msgid "Transition type"
243
  msgstr "Tip izmjene"
244
 
245
- #: jquery-colorbox.php:726
246
  msgid "The transition type of the Colorbox. Can be set to \"elastic\", \"fade\", or \"none\""
247
  msgstr "Vrsta prijelaza.Može biti postavljena na \"elastic\", \"fade\", ili \"none\""
248
 
249
- #: jquery-colorbox.php:731
250
  msgid "Transition speed"
251
  msgstr "Brzina izjmene"
252
 
253
- #: jquery-colorbox.php:735
254
  msgid "Sets the speed of the \"fade\" and \"elastic\" transitions, in milliseconds"
255
  msgstr "Određuje brzinu \"fade\" i \"elastic\" prijelaza, u milisekundama"
256
 
257
- #: jquery-colorbox.php:740
258
  msgid "Opacity"
259
  msgstr "Prozirnost"
260
 
261
- #: jquery-colorbox.php:744
262
  msgid "The overlay opacity level. Range: 0 to 1"
263
  msgstr "Nivo Neprozirnosti overlaya. Raspon od 0 do 1"
264
 
265
- #: jquery-colorbox.php:749
266
  msgid "Automate hiding of flash objects"
267
  msgstr "Automatsko sakrivanje flash objekata"
268
 
269
- #: jquery-colorbox.php:753
270
  msgid "Automatically hide embeded flash objects behind the Colorbox layer. Done by setting the wmode to transparent."
271
  msgstr "Sakrij automatski flash objekte iza Colorbox layera. Za to će \"wmode\" biti podešen na \"transparent\"."
272
 
273
- #: jquery-colorbox.php:758
274
  msgid "Disable warning"
275
  msgstr "Deaktiviraj upozorenje"
276
 
277
- #: jquery-colorbox.php:762
278
  msgid "Disables the warning that is displayed if the plugin is activated but the auto-colorbox feature for all images is turned off."
279
  msgstr "Onemogućuje opomenu, prikazanu ako je plugin aktiviran ali element \"auto-colorbox\" za sve slike nije."
280
 
281
- #: jquery-colorbox.php:768
282
  msgid "Save Changes"
283
  msgstr "Sačuvaj promjene"
284
 
285
- #: jquery-colorbox.php:777
286
- #: jquery-colorbox.php:786
287
  msgid "Delete Settings"
288
  msgstr "Izbriši postavke"
289
 
290
- #: jquery-colorbox.php:780
291
  msgid "Check the box and click this button to delete settings of this plugin."
292
  msgstr "Aktiviraj Checkbox i klikni na odgovarajuće dugme da bi izbrisao opcije ovog plugin-a."
293
 
294
- #: jquery-colorbox.php:796
295
  msgid "Donate"
296
  msgstr "Doniraj"
297
 
298
- #: jquery-colorbox.php:810
299
  msgid "If you would like to make a small (or large) contribution towards future development please consider making a donation."
300
  msgstr "Ako bi želio da daš doprinos daljnjem usavršavanju, molim te razmisli o davanju donacije. "
301
 
302
- #: jquery-colorbox.php:819
303
  msgid "Translation"
304
- msgstr ""
305
 
306
- #: jquery-colorbox.php:822
307
  msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
308
- msgstr ""
309
-
310
- #: jquery-colorbox.php:845
311
- #, php-format
312
- msgid "Successfully updated %1$s settings."
313
- msgstr "Uspješno ažurirano %1$s promjena."
314
-
315
- #: jquery-colorbox.php:847
316
- #, php-format
317
- msgid "%1$s settings were successfully deleted."
318
- msgstr "%1$s opcije su uspiješno izbrisane."
319
-
320
- #: jquery-colorbox.php:888
321
- msgid "needs attention: the plugin is not activated to work for all images."
322
- msgstr "Pažnja "
323
-
324
- #: jquery-colorbox.php:948
325
- msgid "Did not update settings, you do not have the necessary rights."
326
- msgstr "Opcije nisu ažurirane, nemaš potrebna ovlaštenja."
327
-
328
- #: jquery-colorbox.php:995
329
- #, php-format
330
- msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
331
- msgstr " %1$s opcije nisu mogle biti izbrisane. Ili nemaš potrebna ovlaštenja ili si zaboravio da aktiviraš Checkbox."
332
 
333
  #~ msgid "maxWidth"
334
  #~ msgstr "Maximum width of an image"
2
  msgstr ""
3
  "Project-Id-Version: jQuery-Colorbox\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2010-04-12 19:54+0100\n"
6
+ "PO-Revision-Date: 2010-04-20 22:21+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
+ #: jquery-colorbox.php:109
18
  msgid "Theme #1"
19
  msgstr "Tema #1"
20
 
21
+ #: jquery-colorbox.php:110
22
  msgid "Theme #2"
23
  msgstr "Tema #2"
24
 
25
+ #: jquery-colorbox.php:111
26
  msgid "Theme #3"
27
  msgstr "Tema #3"
28
 
29
+ #: jquery-colorbox.php:112
30
  msgid "Theme #4"
31
  msgstr "Tema #4"
32
 
33
+ #: jquery-colorbox.php:113
34
  msgid "Theme #5"
35
  msgstr "Tema #5"
36
 
37
+ #: jquery-colorbox.php:114
38
  msgid "Theme #6"
39
  msgstr "Tema #6"
40
 
41
+ #: jquery-colorbox.php:115
42
  msgid "Theme #7"
43
  msgstr "Tema #7"
44
 
45
+ #: jquery-colorbox.php:116
46
  msgid "Theme #8"
47
  msgstr "Tema #8"
48
 
49
+ #: jquery-colorbox.php:117
50
+ msgid "Theme #9"
51
+ msgstr "Tema #9"
52
+
53
+ #: jquery-colorbox.php:118
54
+ msgid "Theme #10"
55
+ msgstr "Tema #10"
56
+
57
+ #: jquery-colorbox.php:122
58
+ msgid "Theme #11"
59
+ msgstr "Tema #11"
60
+
61
+ #: jquery-colorbox.php:123
62
+ msgid "Theme #12"
63
+ msgstr "Tema #12"
64
+
65
+ #: jquery-colorbox.php:124
66
+ msgid "Theme #13"
67
+ msgstr "Tema #13"
68
+
69
+ #: jquery-colorbox.php:125
70
+ msgid "Theme #14"
71
+ msgstr "Tema #14"
72
+
73
+ #: jquery-colorbox.php:126
74
+ msgid "Theme #15"
75
+ msgstr "Tema #15"
76
+
77
+ #: jquery-colorbox.php:131
78
  msgid "percent"
79
  msgstr "procenat"
80
 
81
+ #: jquery-colorbox.php:132
82
  msgid "pixels"
83
  msgstr "piksel"
84
 
85
+ #: jquery-colorbox.php:137
86
  msgid "elastic"
87
  msgstr "elastično"
88
 
89
+ #: jquery-colorbox.php:138
90
  msgid "fade"
91
  msgstr "izblijediti"
92
 
93
+ #: jquery-colorbox.php:139
94
  msgid "none"
95
  msgstr "bez efekta"
96
 
97
+ #: jquery-colorbox.php:281
98
+ #: includes/settings-page.php:101
99
  msgid "Settings"
100
  msgstr "Opcije"
101
 
102
+ #: jquery-colorbox.php:344
103
+ #, php-format
104
+ msgid "Successfully updated %1$s settings."
105
+ msgstr "Uspješno ažurirano %1$s promjena."
106
+
107
+ #: jquery-colorbox.php:346
108
+ #, php-format
109
+ msgid "%1$s settings were successfully deleted."
110
+ msgstr "%1$s opcije su uspiješno izbrisane."
111
+
112
+ #: jquery-colorbox.php:387
113
+ msgid "needs attention: the plugin is not activated to work for all images."
114
+ msgstr "Pažnja "
115
+
116
+ #: jquery-colorbox.php:447
117
+ msgid "Did not update settings, you do not have the necessary rights."
118
+ msgstr "Opcije nisu ažurirane, nemaš potrebna ovlaštenja."
119
+
120
+ #: jquery-colorbox.php:494
121
+ #, php-format
122
+ msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
123
+ msgstr " %1$s opcije nisu mogle biti izbrisane. Ili nemaš potrebna ovlaštenja ili si zaboravio da aktiviraš Checkbox."
124
+
125
+ #: includes/colorbox-javascript.php:53
126
  msgid "close"
127
  msgstr "Zatvoriti"
128
 
129
+ #: includes/colorbox-javascript.php:54
130
  msgid "next"
131
  msgstr "Naprijed"
132
 
133
+ #: includes/colorbox-javascript.php:55
134
  msgid "previous"
135
  msgstr "Nazad"
136
 
137
+ #: includes/colorbox-javascript.php:56
138
  msgid "start slideshow"
139
  msgstr "Pokreni slideshow"
140
 
141
+ #: includes/colorbox-javascript.php:57
142
  msgid "stop slideshow"
143
  msgstr "Zaustavi slideshow"
144
 
145
+ #: includes/colorbox-javascript.php:58
146
  msgid "{current} of {total} images"
147
  msgstr "{current} od {total} slika"
148
 
149
+ #: includes/settings-page.php:94
150
  #, php-format
151
  msgid "%1$s Settings"
152
  msgstr "%1$s opcija"
153
 
154
+ #: includes/settings-page.php:110
155
  msgid "Theme"
156
  msgstr "Tema"
157
 
158
+ #: includes/settings-page.php:122
159
  msgid "Select the theme you want to use on your blog."
160
  msgstr "Izaberi temu za svoj blog"
161
 
162
+ #: includes/settings-page.php:127
163
  msgid "Theme screenshot"
164
  msgstr "Screenshot teme"
165
 
166
+ #: includes/settings-page.php:137
167
  #, php-format
168
  msgid "Automate %1$s for all images"
169
  msgstr "Automatiziraj %1$s za sve slike"
170
 
171
+ #: includes/settings-page.php:141
172
  msgid "Automatically add colorbox-class to images in posts and pages. Also adds colorbox-class to galleries. Images in one page or post are grouped automatically."
173
  msgstr "Dodaj automatski colorbox-klasu slikama u člancima i na stranicama. Takođe dodaje colobox-klasu galerijama. Sve slike unutar jednog članka ili jedne stranice če automatski biti grupirane. "
174
 
175
+ #: includes/settings-page.php:146
176
  #, php-format
177
  msgid "Automate %1$s for images in WordPress galleries"
178
  msgstr "Automatiziraj %1$s za slike u WordPress galeriji."
179
 
180
+ #: includes/settings-page.php:150
181
  msgid "Automatically add colorbox-class to images in WordPress galleries, but nowhere else. Images in one page or post are grouped automatically."
182
  msgstr "Dodaj automatksi colorbox-klasu za slike samo u galerijama, nigdje drugdje. SSe slike unutar jednog članka ili jedne stranice če automatski biti grupirane. "
183
 
184
+ #: includes/settings-page.php:155
185
  msgid "Add Slideshow to groups"
186
  msgstr "Dodaj slideshow grupama"
187
 
188
+ #: includes/settings-page.php:159
189
  #, php-format
190
  msgid "Add Slideshow functionality for %1$s Groups"
191
  msgstr "Dodaj slideshow funkcionalnost za %1$s grupe"
192
 
193
+ #: includes/settings-page.php:164
194
  msgid "Start Slideshow automatically"
195
  msgstr "Pokreni slideshow automatski"
196
 
197
+ #: includes/settings-page.php:168
198
  #, php-format
199
  msgid "Start Slideshow automatically if slideshow functionality is added to %1$s Groups"
200
  msgstr "Pokreni slideshow automatski ako je slideshow funkcionalnost dodana %1$s grupama"
201
 
202
+ #: includes/settings-page.php:173
203
  msgid "Speed of the slideshow"
204
  msgstr "Brzina slideshowa"
205
 
206
+ #: includes/settings-page.php:176
207
+ #: includes/settings-page.php:321
208
+ msgid "milliseconds"
209
+ msgstr "milisekundama"
210
+
211
+ #: includes/settings-page.php:177
212
  msgid "Sets the speed of the slideshow, in milliseconds"
213
  msgstr "Postavi brzinu slideshowa u milisekundama"
214
 
215
+ #: includes/settings-page.php:182
216
  msgid "Maximum width of an image"
217
  msgstr "Maksimalna širina slike"
218
 
219
+ #: includes/settings-page.php:186
220
+ #: includes/settings-page.php:232
221
  msgid "Do not set width"
222
  msgstr "Ne postavljaj širinu"
223
 
224
+ #: includes/settings-page.php:189
225
  msgid "Set maximum width of an image"
226
  msgstr "Postavi maksimalnu širinu slike"
227
 
228
+ #: includes/settings-page.php:200
229
  msgid "Set the maximum width of the image in the Colorbox in relation to the browser window in percent or pixels. If maximum width is not set, image is as wide as the Colorbox"
230
  msgstr "Postavi maksimalnu širinu slike u Colorboxu u relaciji prema web pretraživaču u postotcima ili pikselima. Ako maksimalna širina nije postavljenja, slika je iste širine kao Colorbox"
231
 
232
+ #: includes/settings-page.php:205
233
  msgid "Maximum height of an image"
234
  msgstr "Maksimalma visina slike"
235
 
236
+ #: includes/settings-page.php:209
237
+ #: includes/settings-page.php:255
238
  msgid "Do not set height"
239
  msgstr "Ne postavljaj visinu"
240
 
241
+ #: includes/settings-page.php:212
242
  msgid "Set maximum height of an image"
243
  msgstr "Postavi visinu slike"
244
 
245
+ #: includes/settings-page.php:223
246
  msgid "Set the maximum height of the image in the Colorbox in relation to the browser window to a value in percent or pixels. If maximum height is not set, the image is as high as the Colorbox"
247
  msgstr "Postavi maksimalnu visinu slike u Colorboxu u relaciji prema web pretraživaču u postotcima ili pikselima. Ako maksimalna visina nije postavljenja, slika je iste visine kao Colorbox"
248
 
249
+ #: includes/settings-page.php:228
250
  msgid "Maximum width of the Colorbox"
251
  msgstr "Maksimalna širina Colorboxa"
252
 
253
+ #: includes/settings-page.php:235
254
  msgid "Set width of the Colorbox"
255
  msgstr "Postavi širinu Colorboxa"
256
 
257
+ #: includes/settings-page.php:246
258
  msgid "Set the maximum width of the Colorbox itself in relation to the browser window to a value between in percent or pixels. If the image is bigger than the colorbox, scrollbars are displayed. If width is not set, the Colorbox will be as wide as the picture in it"
259
  msgstr "Postavi maksimalnu širinu Colorboxa u relaciji prema web pretraživaču u postotcima ili pikselima. Ako je slika veća od Colorboxa bit će prikazan scrollbar. Ako širina nije postavljena, Colorbox će biti iste širine kao i sama slika"
260
 
261
+ #: includes/settings-page.php:251
262
  msgid "Maximum height of the Colorbox"
263
  msgstr "Maksimalna visina Colorboxa"
264
 
265
+ #: includes/settings-page.php:258
266
  msgid "Set height of the Colorbox"
267
  msgstr "Postavi visinu Colorboxa"
268
 
269
+ #: includes/settings-page.php:269
270
  msgid "Set the maximum height of the Colorbox itself in relation to the browser window to a value between in percent or pixels. If the image is bigger than the colorbox, scrollbars are displayed. If height is not set, the Colorbox will be as high as the picture in it"
271
  msgstr "Postavi maksimalnu visinu Colorboxa u relaciji prema web pretraživaču u postotcima ili pikselima. Ako je slika veća od Colorboxa bit će prikazan scrollbar. Ako visina nije postavljena, Colorbox će biti iste visine kao i sama slika"
272
 
273
+ #: includes/settings-page.php:274
274
  msgid "Resize images"
275
  msgstr "Promijeni veličinu slike"
276
 
277
+ #: includes/settings-page.php:278
278
  msgid "If enabled and if maximum width of images, maximum height of images, width of the Colorbox, or height of the Colorbox have been defined, ColorBox will scale photos to fit within the those values"
279
  msgstr "Ako su omogučeni i definirani maksimalna širina slike, maksimalna visina slike, širina Colorboxa ili visina Colorboxa, Clorobox će prilagoditi veličinu slike ovim vrijednostima"
280
 
281
+ #: includes/settings-page.php:283
282
  msgid "Close Colorbox on overlay click"
283
  msgstr "Zatvori Colorbox ako se klikne na overlay."
284
 
285
+ #: includes/settings-page.php:287
286
  msgid "If checked, enables closing ColorBox by clicking on the background overlay"
287
  msgstr "Ako označeno, omogućava zatvaranje Colorboxa klikom na overlay u pozadini"
288
 
289
+ #: includes/settings-page.php:292
290
  msgid "Preload images"
291
  msgstr "Preučitaj slike"
292
 
293
+ #: includes/settings-page.php:296
294
  msgid "Allows for preloading of \"next\" and \"previous\" content in a group, after the current content has finished loading. Uncheck box to disable."
295
  msgstr "Dozvoljava preučitavanje \"next\" i \"previous\" slika unutar jedne grupe nakon učitavanja aktuelnog sadržaja. Da bi deaktivirao ovaj elemenat ukloni kvačicu iz odjeljka. "
296
 
297
+ #: includes/settings-page.php:301
298
  msgid "Transition type"
299
  msgstr "Tip izmjene"
300
 
301
+ #: includes/settings-page.php:313
302
  msgid "The transition type of the Colorbox. Can be set to \"elastic\", \"fade\", or \"none\""
303
  msgstr "Vrsta prijelaza.Može biti postavljena na \"elastic\", \"fade\", ili \"none\""
304
 
305
+ #: includes/settings-page.php:318
306
  msgid "Transition speed"
307
  msgstr "Brzina izjmene"
308
 
309
+ #: includes/settings-page.php:322
310
  msgid "Sets the speed of the \"fade\" and \"elastic\" transitions, in milliseconds"
311
  msgstr "Određuje brzinu \"fade\" i \"elastic\" prijelaza, u milisekundama"
312
 
313
+ #: includes/settings-page.php:327
314
  msgid "Opacity"
315
  msgstr "Prozirnost"
316
 
317
+ #: includes/settings-page.php:331
318
  msgid "The overlay opacity level. Range: 0 to 1"
319
  msgstr "Nivo Neprozirnosti overlaya. Raspon od 0 do 1"
320
 
321
+ #: includes/settings-page.php:336
322
  msgid "Automate hiding of flash objects"
323
  msgstr "Automatsko sakrivanje flash objekata"
324
 
325
+ #: includes/settings-page.php:340
326
  msgid "Automatically hide embeded flash objects behind the Colorbox layer. Done by setting the wmode to transparent."
327
  msgstr "Sakrij automatski flash objekte iza Colorbox layera. Za to će \"wmode\" biti podešen na \"transparent\"."
328
 
329
+ #: includes/settings-page.php:345
330
  msgid "Disable warning"
331
  msgstr "Deaktiviraj upozorenje"
332
 
333
+ #: includes/settings-page.php:349
334
  msgid "Disables the warning that is displayed if the plugin is activated but the auto-colorbox feature for all images is turned off."
335
  msgstr "Onemogućuje opomenu, prikazanu ako je plugin aktiviran ali element \"auto-colorbox\" za sve slike nije."
336
 
337
+ #: includes/settings-page.php:355
338
  msgid "Save Changes"
339
  msgstr "Sačuvaj promjene"
340
 
341
+ #: includes/settings-page.php:364
342
+ #: includes/settings-page.php:373
343
  msgid "Delete Settings"
344
  msgstr "Izbriši postavke"
345
 
346
+ #: includes/settings-page.php:367
347
  msgid "Check the box and click this button to delete settings of this plugin."
348
  msgstr "Aktiviraj Checkbox i klikni na odgovarajuće dugme da bi izbrisao opcije ovog plugin-a."
349
 
350
+ #: includes/settings-page.php:383
351
  msgid "Donate"
352
  msgstr "Doniraj"
353
 
354
+ #: includes/settings-page.php:397
355
  msgid "If you would like to make a small (or large) contribution towards future development please consider making a donation."
356
  msgstr "Ako bi želio da daš doprinos daljnjem usavršavanju, molim te razmisli o davanju donacije. "
357
 
358
+ #: includes/settings-page.php:406
359
  msgid "Translation"
360
+ msgstr "Prijevod"
361
 
362
+ #: includes/settings-page.php:409
363
  msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
364
+ msgstr "Na bosanski je preveo <a href=\"http://www.vjucon.com\">Vedran Jurinčić</a>."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
365
 
366
  #~ msgid "maxWidth"
367
  #~ msgstr "Maximum width of an image"
localization/jquery-colorbox-de_DE.mo CHANGED
Binary file
localization/jquery-colorbox-de_DE.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: jQuery-Colorbox\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-03-28 21:48+0100\n"
6
- "PO-Revision-Date: 2010-03-28 22:58+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Techotronic <blog@techotronic.de>\n"
9
  "MIME-Version: 1.0\n"
@@ -15,322 +15,355 @@ msgstr ""
15
  "X-Poedit-Country: GERMANY\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: jquery-colorbox.php:116
19
  msgid "Theme #1"
20
  msgstr "Thema #1"
21
 
22
- #: jquery-colorbox.php:117
23
  msgid "Theme #2"
24
  msgstr "Thema #2"
25
 
26
- #: jquery-colorbox.php:118
27
  msgid "Theme #3"
28
  msgstr "Thema #3"
29
 
30
- #: jquery-colorbox.php:119
31
  msgid "Theme #4"
32
  msgstr "Thema #4"
33
 
34
- #: jquery-colorbox.php:120
35
  msgid "Theme #5"
36
  msgstr "Thema #5"
37
 
38
- #: jquery-colorbox.php:121
39
  msgid "Theme #6"
40
  msgstr "Thema #6"
41
 
42
- #: jquery-colorbox.php:122
43
  msgid "Theme #7"
44
  msgstr "Thema #7"
45
 
46
- #: jquery-colorbox.php:123
47
  msgid "Theme #8"
48
  msgstr "Thema #8"
49
 
50
- #: jquery-colorbox.php:128
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
51
  msgid "percent"
52
  msgstr "Prozent"
53
 
54
- #: jquery-colorbox.php:129
55
  msgid "pixels"
56
  msgstr "Pixel"
57
 
58
- #: jquery-colorbox.php:134
59
  msgid "elastic"
60
  msgstr "Elastisch"
61
 
62
- #: jquery-colorbox.php:135
63
  msgid "fade"
64
  msgstr "Verblassen"
65
 
66
- #: jquery-colorbox.php:136
67
  msgid "none"
68
  msgstr "Kein Effekt"
69
 
70
- #: jquery-colorbox.php:267
71
- #: jquery-colorbox.php:514
72
  msgid "Settings"
73
  msgstr "Einstellungen"
74
 
75
- #: jquery-colorbox.php:386
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
76
  msgid "close"
77
  msgstr "Schließen"
78
 
79
- #: jquery-colorbox.php:387
80
  msgid "next"
81
  msgstr "Vor"
82
 
83
- #: jquery-colorbox.php:388
84
  msgid "previous"
85
  msgstr "Zurück"
86
 
87
- #: jquery-colorbox.php:389
88
  msgid "start slideshow"
89
  msgstr "Slideshow starten"
90
 
91
- #: jquery-colorbox.php:390
92
  msgid "stop slideshow"
93
  msgstr "Slideshow beenden"
94
 
95
- #: jquery-colorbox.php:391
96
  msgid "{current} of {total} images"
97
  msgstr "{current} von {total} Bildern"
98
 
99
- #: jquery-colorbox.php:507
100
  #, php-format
101
  msgid "%1$s Settings"
102
  msgstr "%1$s Einstellungen"
103
 
104
- #: jquery-colorbox.php:523
105
  msgid "Theme"
106
  msgstr "Thema"
107
 
108
- #: jquery-colorbox.php:535
109
  msgid "Select the theme you want to use on your blog."
110
  msgstr "W&auml;hle das Theme aus, das Du auf Deinem Blog benutzen m&ouml;chtest."
111
 
112
- #: jquery-colorbox.php:540
113
  msgid "Theme screenshot"
114
  msgstr "Screenshot des Themas"
115
 
116
- #: jquery-colorbox.php:550
117
  #, php-format
118
  msgid "Automate %1$s for all images"
119
  msgstr "%1$s f&uuml;r alle Bilder automatisieren"
120
 
121
- #: jquery-colorbox.php:554
122
  msgid "Automatically add colorbox-class to images in posts and pages. Also adds colorbox-class to galleries. Images in one page or post are grouped automatically."
123
  msgstr "Automatisch die Colorbox-CSS-Klasse f&uuml;r Bilder in Beitr&auml;gen und Seite einf&uuml;gen. F&uuml;gt die Klasse auch f&uuml;r Gallerien ein. Alle Bilder innerhalb eines Beitrags oder einer Seite werden automatisch gruppiert."
124
 
125
- #: jquery-colorbox.php:559
126
  #, php-format
127
  msgid "Automate %1$s for images in WordPress galleries"
128
  msgstr "%1$s f&uuml;r Bilder in WordPress Gallerien automatisieren"
129
 
130
- #: jquery-colorbox.php:563
131
  msgid "Automatically add colorbox-class to images in WordPress galleries, but nowhere else. Images in one page or post are grouped automatically."
132
  msgstr "Automatisch die Colorbox-CSS-Klasse f&uuml;r Bilder in Gallerien einf&uuml;gen, sonst nirgends. Alle Bilder innerhalb eines Beitrags oder einer Seite werden automatisch gruppiert."
133
 
134
- #: jquery-colorbox.php:568
135
  msgid "Add Slideshow to groups"
136
  msgstr "Slideshow f&uuml;r Gruppen"
137
 
138
- #: jquery-colorbox.php:572
139
  #, php-format
140
  msgid "Add Slideshow functionality for %1$s Groups"
141
  msgstr "Slideshow Funktionalit&auml;t zu %1$s Gruppen hinzuf&uuml;gen"
142
 
143
- #: jquery-colorbox.php:577
144
  msgid "Start Slideshow automatically"
145
  msgstr "Slideshow automatisch starten"
146
 
147
- #: jquery-colorbox.php:581
148
  #, php-format
149
  msgid "Start Slideshow automatically if slideshow functionality is added to %1$s Groups"
150
  msgstr "Slideshow automatisch starten, wenn die Slideshow Funktionalit&auml;t zu %1$s Gruppen hinzugef&uuml;gt wird"
151
 
152
- #: jquery-colorbox.php:586
153
  msgid "Speed of the slideshow"
154
  msgstr "Geschwindigkeit der Slideshow"
155
 
156
- #: jquery-colorbox.php:590
 
 
 
 
 
157
  msgid "Sets the speed of the slideshow, in milliseconds"
158
  msgstr "Die Geschwindigkeit der Slideshow in Millisekunden einstellen"
159
 
160
- #: jquery-colorbox.php:595
161
  msgid "Maximum width of an image"
162
  msgstr "Maximale Breite eines Bildes"
163
 
164
- #: jquery-colorbox.php:599
165
- #: jquery-colorbox.php:645
166
  msgid "Do not set width"
167
  msgstr "Breite nicht setzen"
168
 
169
- #: jquery-colorbox.php:602
170
  msgid "Set maximum width of an image"
171
  msgstr "Maximale Breite eines Bildes setzen"
172
 
173
- #: jquery-colorbox.php:613
174
  msgid "Set the maximum width of the image in the Colorbox in relation to the browser window in percent or pixels. If maximum width is not set, image is as wide as the Colorbox"
175
  msgstr "Hier l&auml;sst sich die maximale Breite des Bildes in der Colorbox in Relation zum Browserfenster als Prozentwert oder in Pixeln festlegen. Das Bild wird verkleinert falls n&ouml;tig. Wenn die maximale Breite des Bildes nicht gesetzt ist, ist das Bild ist so breit wie die Colorbox"
176
 
177
- #: jquery-colorbox.php:618
178
  msgid "Maximum height of an image"
179
  msgstr "Maximale H&ouml;he eines Bildes"
180
 
181
- #: jquery-colorbox.php:622
182
- #: jquery-colorbox.php:668
183
  msgid "Do not set height"
184
  msgstr "Die H&ouml;he nicht setzen"
185
 
186
- #: jquery-colorbox.php:625
187
  msgid "Set maximum height of an image"
188
  msgstr "Maximale H&ouml;he eines Bildes setzen"
189
 
190
- #: jquery-colorbox.php:636
191
  msgid "Set the maximum height of the image in the Colorbox in relation to the browser window to a value in percent or pixels. If maximum height is not set, the image is as high as the Colorbox"
192
- msgstr "Hier l&auml;sst sich die maximale H&ouml;he des Bildes in der colorbox in Relation zum Browserfenster als Prozentwert oder in Pixeln festlegen. Das Bild wird verkleinert falls n&ouml;tig. Wenn die maximale H&oumlhe des Bildes nicht gesetzt ist, ist das Bild so hoch wie die Colorbox"
193
 
194
- #: jquery-colorbox.php:641
195
  msgid "Maximum width of the Colorbox"
196
  msgstr "Maximale Breite der Colorbox"
197
 
198
- #: jquery-colorbox.php:648
199
  msgid "Set width of the Colorbox"
200
  msgstr "Breite der Colorbox"
201
 
202
- #: jquery-colorbox.php:659
203
  msgid "Set the maximum width of the Colorbox itself in relation to the browser window to a value between in percent or pixels. If the image is bigger than the colorbox, scrollbars are displayed. If width is not set, the Colorbox will be as wide as the picture in it"
204
  msgstr "Hier l&auml;sst sich die maximale Breite der Colorbox in Relation zum Browserfenster als Prozentwert oder in Pixeln festlegen. Wenn das Bild gr&ouml;sser als die Colorbox ist, werden Scrollbalken dargestellt. Wenn keine maximale Breite f&uuml;r die Colorbox gesetzt ist, wird die Colorbox so breit wie das Bild"
205
 
206
- #: jquery-colorbox.php:664
207
  msgid "Maximum height of the Colorbox"
208
  msgstr "Maximale H&ouml;he der Colorbox"
209
 
210
- #: jquery-colorbox.php:671
211
  msgid "Set height of the Colorbox"
212
  msgstr "H&ouml;he der Colorbox"
213
 
214
- #: jquery-colorbox.php:682
215
  msgid "Set the maximum height of the Colorbox itself in relation to the browser window to a value between in percent or pixels. If the image is bigger than the colorbox, scrollbars are displayed. If height is not set, the Colorbox will be as high as the picture in it"
216
  msgstr "Hier l&auml;sst sich die maximale H&ouml;he der Colorbox inRrelation zum Browserfenster als Prozentwert oder in Pixeln festlegen. Wenn das Bild gr&ouml;sser als die Colorbox ist, werden Scrollbalken dargestellt. Wenn keine maximale H&ouml;he f&uuml;r die Colorbox gesetzt ist, wird die Colorbox so hoch wie das Bild"
217
 
218
- #: jquery-colorbox.php:687
219
  msgid "Resize images"
220
  msgstr "Bilder skalieren"
221
 
222
- #: jquery-colorbox.php:691
223
  msgid "If enabled and if maximum width of images, maximum height of images, width of the Colorbox, or height of the Colorbox have been defined, ColorBox will scale photos to fit within the those values"
224
  msgstr "Wenn diese Option aktiviert ist und die maximale Breite von Bildern, die maximale H&ouml;he von Bildern, die Breite der Colorbox oder die H&ouml;he der Colorbox gesetzt ist, wird Colorbox Bilder skalieren"
225
 
226
- #: jquery-colorbox.php:696
227
  msgid "Close Colorbox on overlay click"
228
  msgstr "Colorbox schliessen wenn auf das Overlay geklickt wird"
229
 
230
- #: jquery-colorbox.php:700
231
  msgid "If checked, enables closing ColorBox by clicking on the background overlay"
232
  msgstr "Erlaubt das Schliessen der Colorbox wenn man auf das Overlay klickt"
233
 
234
- #: jquery-colorbox.php:705
235
  msgid "Preload images"
236
  msgstr "Bilder vorladen"
237
 
238
- #: jquery-colorbox.php:709
239
  msgid "Allows for preloading of \"next\" and \"previous\" content in a group, after the current content has finished loading. Uncheck box to disable."
240
  msgstr "Erlaubt das vorladen der \"Vor\" und \"Zur&uuml;ck\" Bilder innerhalb einer Gruppe nachdem der aktuell angezeigte Inhalt geladen wurde. Haken aus der Box entfernen um dieses Feature zu deaktivieren."
241
 
242
- #: jquery-colorbox.php:714
243
  msgid "Transition type"
244
  msgstr "&Uuml;bergangstyp"
245
 
246
- #: jquery-colorbox.php:726
247
  msgid "The transition type of the Colorbox. Can be set to \"elastic\", \"fade\", or \"none\""
248
  msgstr "Der &Uuml;bergangstyp der Colorbox. Kann auf \"Elastisch\", \"Verblassen\" oder \"kein Effekt\" gesetzt werden"
249
 
250
- #: jquery-colorbox.php:731
251
  msgid "Transition speed"
252
  msgstr "Geschwindigkeit des &Uuml;bergangs"
253
 
254
- #: jquery-colorbox.php:735
255
  msgid "Sets the speed of the \"fade\" and \"elastic\" transitions, in milliseconds"
256
  msgstr "Die Geschwindigkeit der &Uuml;berg&auml;nge \"Elastisch\" und \"Verblassen\", in Millisekunden"
257
 
258
- #: jquery-colorbox.php:740
259
  msgid "Opacity"
260
  msgstr "Deckkraft"
261
 
262
- #: jquery-colorbox.php:744
263
  msgid "The overlay opacity level. Range: 0 to 1"
264
  msgstr "Die Deckkraft des Overlays. Werte von 0 bis 1 sind zugelassen"
265
 
266
- #: jquery-colorbox.php:749
267
  msgid "Automate hiding of flash objects"
268
  msgstr "Verstecken von Flash Objekten"
269
 
270
- #: jquery-colorbox.php:753
271
  msgid "Automatically hide embeded flash objects behind the Colorbox layer. Done by setting the wmode to transparent."
272
  msgstr "Flash Objekte automatisch unter dem Colorbox Overlay verstecken. Daf&uuml;r wird der \"wmode\" auf \"transparent\" gesetzt."
273
 
274
- #: jquery-colorbox.php:758
275
  msgid "Disable warning"
276
  msgstr "Warnung deaktivieren"
277
 
278
- #: jquery-colorbox.php:762
279
  msgid "Disables the warning that is displayed if the plugin is activated but the auto-colorbox feature for all images is turned off."
280
  msgstr "Deaktiviert die Warnung, die angezeigt wird, wenn das Plugin aktiviert ist, aber das auto-colorbox Feature f&uuml;r alle Bilder nicht."
281
 
282
- #: jquery-colorbox.php:768
283
  msgid "Save Changes"
284
  msgstr "&Auml;nderungen speichern"
285
 
286
- #: jquery-colorbox.php:777
287
- #: jquery-colorbox.php:786
288
  msgid "Delete Settings"
289
  msgstr "Einstellungen löschen"
290
 
291
- #: jquery-colorbox.php:780
292
  msgid "Check the box and click this button to delete settings of this plugin."
293
  msgstr "Aktivieren Sie die Checkbox und klicken Sie anschließend die folgende Schaltfläche, um die Einstellungen dieses Plugins zu entfernen."
294
 
295
- #: jquery-colorbox.php:796
296
  msgid "Donate"
297
  msgstr "Spenden"
298
 
299
- #: jquery-colorbox.php:810
300
  msgid "If you would like to make a small (or large) contribution towards future development please consider making a donation."
301
  msgstr "Wenn Du eine kleine (oder grosse) Spende f&uuml;r die Weiterentwicklung abgeben m&ouml;chtest, kannst Du das per PayPal tun."
302
 
303
- #: jquery-colorbox.php:819
304
  msgid "Translation"
305
  msgstr "&Uuml;bersetzung"
306
 
307
- #: jquery-colorbox.php:822
308
  msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
309
  msgstr "Die &Uuml;bersetzung ins Deutsche wurde von <a href=\"http://www.techotronic.de\">Arne Franken</a> durchgef&uuml;hrt."
310
 
311
- #: jquery-colorbox.php:845
312
- #, php-format
313
- msgid "Successfully updated %1$s settings."
314
- msgstr "&Auml;nderungen der %1$s Einstellungen wurden erfolgreich gespeichert."
315
-
316
- #: jquery-colorbox.php:847
317
- #, php-format
318
- msgid "%1$s settings were successfully deleted."
319
- msgstr "Die Einstellungen von %1$s wurden erfolgreich entfernt."
320
-
321
- #: jquery-colorbox.php:888
322
- msgid "needs attention: the plugin is not activated to work for all images."
323
- msgstr "ben&ouml;tigt Aufmerksamkeit: das Plugin ist nicht f&uuml;r alle Bilder aktiviert."
324
-
325
- #: jquery-colorbox.php:948
326
- msgid "Did not update settings, you do not have the necessary rights."
327
- msgstr "Einstellungen nicht aktualisiert, da Sie nicht die hierfür erforderlichen Rechte besitzen."
328
-
329
- #: jquery-colorbox.php:995
330
- #, php-format
331
- msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
332
- msgstr "Konnte die Einstellungen von %1$s nicht entfernen. Entweder besitzen Sie nicht die notwendigen Rechte, oder Sie haben vergessen, die Checkbox [x] zu aktivieren."
333
-
334
  #~ msgid "jQuery Colorbox"
335
  #~ msgstr "jQuery ColorBox"
336
 
2
  msgstr ""
3
  "Project-Id-Version: jQuery-Colorbox\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2010-04-12 19:54+0100\n"
6
+ "PO-Revision-Date: 2010-04-12 19:54+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Techotronic <blog@techotronic.de>\n"
9
  "MIME-Version: 1.0\n"
15
  "X-Poedit-Country: GERMANY\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: jquery-colorbox.php:109
19
  msgid "Theme #1"
20
  msgstr "Thema #1"
21
 
22
+ #: jquery-colorbox.php:110
23
  msgid "Theme #2"
24
  msgstr "Thema #2"
25
 
26
+ #: jquery-colorbox.php:111
27
  msgid "Theme #3"
28
  msgstr "Thema #3"
29
 
30
+ #: jquery-colorbox.php:112
31
  msgid "Theme #4"
32
  msgstr "Thema #4"
33
 
34
+ #: jquery-colorbox.php:113
35
  msgid "Theme #5"
36
  msgstr "Thema #5"
37
 
38
+ #: jquery-colorbox.php:114
39
  msgid "Theme #6"
40
  msgstr "Thema #6"
41
 
42
+ #: jquery-colorbox.php:115
43
  msgid "Theme #7"
44
  msgstr "Thema #7"
45
 
46
+ #: jquery-colorbox.php:116
47
  msgid "Theme #8"
48
  msgstr "Thema #8"
49
 
50
+ #: jquery-colorbox.php:117
51
+ msgid "Theme #9"
52
+ msgstr "Thema #9"
53
+
54
+ #: jquery-colorbox.php:118
55
+ msgid "Theme #10"
56
+ msgstr "Thema #10"
57
+
58
+ #: jquery-colorbox.php:122
59
+ msgid "Theme #11"
60
+ msgstr "Thema #11"
61
+
62
+ #: jquery-colorbox.php:123
63
+ msgid "Theme #12"
64
+ msgstr "Thema #12"
65
+
66
+ #: jquery-colorbox.php:124
67
+ msgid "Theme #13"
68
+ msgstr "Thema #13"
69
+
70
+ #: jquery-colorbox.php:125
71
+ msgid "Theme #14"
72
+ msgstr "Thema #14"
73
+
74
+ #: jquery-colorbox.php:126
75
+ msgid "Theme #15"
76
+ msgstr "Thema #15"
77
+
78
+ #: jquery-colorbox.php:131
79
  msgid "percent"
80
  msgstr "Prozent"
81
 
82
+ #: jquery-colorbox.php:132
83
  msgid "pixels"
84
  msgstr "Pixel"
85
 
86
+ #: jquery-colorbox.php:137
87
  msgid "elastic"
88
  msgstr "Elastisch"
89
 
90
+ #: jquery-colorbox.php:138
91
  msgid "fade"
92
  msgstr "Verblassen"
93
 
94
+ #: jquery-colorbox.php:139
95
  msgid "none"
96
  msgstr "Kein Effekt"
97
 
98
+ #: jquery-colorbox.php:281
99
+ #: includes/settings-page.php:101
100
  msgid "Settings"
101
  msgstr "Einstellungen"
102
 
103
+ #: jquery-colorbox.php:344
104
+ #, php-format
105
+ msgid "Successfully updated %1$s settings."
106
+ msgstr "&Auml;nderungen der %1$s Einstellungen wurden erfolgreich gespeichert."
107
+
108
+ #: jquery-colorbox.php:346
109
+ #, php-format
110
+ msgid "%1$s settings were successfully deleted."
111
+ msgstr "Die Einstellungen von %1$s wurden erfolgreich entfernt."
112
+
113
+ #: jquery-colorbox.php:387
114
+ msgid "needs attention: the plugin is not activated to work for all images."
115
+ msgstr "ben&ouml;tigt Aufmerksamkeit: das Plugin ist nicht f&uuml;r alle Bilder aktiviert."
116
+
117
+ #: jquery-colorbox.php:447
118
+ msgid "Did not update settings, you do not have the necessary rights."
119
+ msgstr "Einstellungen nicht aktualisiert, da Sie nicht die hierfür erforderlichen Rechte besitzen."
120
+
121
+ #: jquery-colorbox.php:494
122
+ #, php-format
123
+ msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
124
+ msgstr "Konnte die Einstellungen von %1$s nicht entfernen. Entweder besitzen Sie nicht die notwendigen Rechte, oder Sie haben vergessen, die Checkbox [x] zu aktivieren."
125
+
126
+ #: includes/colorbox-javascript.php:53
127
  msgid "close"
128
  msgstr "Schließen"
129
 
130
+ #: includes/colorbox-javascript.php:54
131
  msgid "next"
132
  msgstr "Vor"
133
 
134
+ #: includes/colorbox-javascript.php:55
135
  msgid "previous"
136
  msgstr "Zurück"
137
 
138
+ #: includes/colorbox-javascript.php:56
139
  msgid "start slideshow"
140
  msgstr "Slideshow starten"
141
 
142
+ #: includes/colorbox-javascript.php:57
143
  msgid "stop slideshow"
144
  msgstr "Slideshow beenden"
145
 
146
+ #: includes/colorbox-javascript.php:58
147
  msgid "{current} of {total} images"
148
  msgstr "{current} von {total} Bildern"
149
 
150
+ #: includes/settings-page.php:94
151
  #, php-format
152
  msgid "%1$s Settings"
153
  msgstr "%1$s Einstellungen"
154
 
155
+ #: includes/settings-page.php:110
156
  msgid "Theme"
157
  msgstr "Thema"
158
 
159
+ #: includes/settings-page.php:122
160
  msgid "Select the theme you want to use on your blog."
161
  msgstr "W&auml;hle das Theme aus, das Du auf Deinem Blog benutzen m&ouml;chtest."
162
 
163
+ #: includes/settings-page.php:127
164
  msgid "Theme screenshot"
165
  msgstr "Screenshot des Themas"
166
 
167
+ #: includes/settings-page.php:137
168
  #, php-format
169
  msgid "Automate %1$s for all images"
170
  msgstr "%1$s f&uuml;r alle Bilder automatisieren"
171
 
172
+ #: includes/settings-page.php:141
173
  msgid "Automatically add colorbox-class to images in posts and pages. Also adds colorbox-class to galleries. Images in one page or post are grouped automatically."
174
  msgstr "Automatisch die Colorbox-CSS-Klasse f&uuml;r Bilder in Beitr&auml;gen und Seite einf&uuml;gen. F&uuml;gt die Klasse auch f&uuml;r Gallerien ein. Alle Bilder innerhalb eines Beitrags oder einer Seite werden automatisch gruppiert."
175
 
176
+ #: includes/settings-page.php:146
177
  #, php-format
178
  msgid "Automate %1$s for images in WordPress galleries"
179
  msgstr "%1$s f&uuml;r Bilder in WordPress Gallerien automatisieren"
180
 
181
+ #: includes/settings-page.php:150
182
  msgid "Automatically add colorbox-class to images in WordPress galleries, but nowhere else. Images in one page or post are grouped automatically."
183
  msgstr "Automatisch die Colorbox-CSS-Klasse f&uuml;r Bilder in Gallerien einf&uuml;gen, sonst nirgends. Alle Bilder innerhalb eines Beitrags oder einer Seite werden automatisch gruppiert."
184
 
185
+ #: includes/settings-page.php:155
186
  msgid "Add Slideshow to groups"
187
  msgstr "Slideshow f&uuml;r Gruppen"
188
 
189
+ #: includes/settings-page.php:159
190
  #, php-format
191
  msgid "Add Slideshow functionality for %1$s Groups"
192
  msgstr "Slideshow Funktionalit&auml;t zu %1$s Gruppen hinzuf&uuml;gen"
193
 
194
+ #: includes/settings-page.php:164
195
  msgid "Start Slideshow automatically"
196
  msgstr "Slideshow automatisch starten"
197
 
198
+ #: includes/settings-page.php:168
199
  #, php-format
200
  msgid "Start Slideshow automatically if slideshow functionality is added to %1$s Groups"
201
  msgstr "Slideshow automatisch starten, wenn die Slideshow Funktionalit&auml;t zu %1$s Gruppen hinzugef&uuml;gt wird"
202
 
203
+ #: includes/settings-page.php:173
204
  msgid "Speed of the slideshow"
205
  msgstr "Geschwindigkeit der Slideshow"
206
 
207
+ #: includes/settings-page.php:176
208
+ #: includes/settings-page.php:321
209
+ msgid "milliseconds"
210
+ msgstr "Millisekunden"
211
+
212
+ #: includes/settings-page.php:177
213
  msgid "Sets the speed of the slideshow, in milliseconds"
214
  msgstr "Die Geschwindigkeit der Slideshow in Millisekunden einstellen"
215
 
216
+ #: includes/settings-page.php:182
217
  msgid "Maximum width of an image"
218
  msgstr "Maximale Breite eines Bildes"
219
 
220
+ #: includes/settings-page.php:186
221
+ #: includes/settings-page.php:232
222
  msgid "Do not set width"
223
  msgstr "Breite nicht setzen"
224
 
225
+ #: includes/settings-page.php:189
226
  msgid "Set maximum width of an image"
227
  msgstr "Maximale Breite eines Bildes setzen"
228
 
229
+ #: includes/settings-page.php:200
230
  msgid "Set the maximum width of the image in the Colorbox in relation to the browser window in percent or pixels. If maximum width is not set, image is as wide as the Colorbox"
231
  msgstr "Hier l&auml;sst sich die maximale Breite des Bildes in der Colorbox in Relation zum Browserfenster als Prozentwert oder in Pixeln festlegen. Das Bild wird verkleinert falls n&ouml;tig. Wenn die maximale Breite des Bildes nicht gesetzt ist, ist das Bild ist so breit wie die Colorbox"
232
 
233
+ #: includes/settings-page.php:205
234
  msgid "Maximum height of an image"
235
  msgstr "Maximale H&ouml;he eines Bildes"
236
 
237
+ #: includes/settings-page.php:209
238
+ #: includes/settings-page.php:255
239
  msgid "Do not set height"
240
  msgstr "Die H&ouml;he nicht setzen"
241
 
242
+ #: includes/settings-page.php:212
243
  msgid "Set maximum height of an image"
244
  msgstr "Maximale H&ouml;he eines Bildes setzen"
245
 
246
+ #: includes/settings-page.php:223
247
  msgid "Set the maximum height of the image in the Colorbox in relation to the browser window to a value in percent or pixels. If maximum height is not set, the image is as high as the Colorbox"
248
+ msgstr "Hier l&auml;sst sich die maximale H&ouml;he des Bildes in der colorbox in Relation zum Browserfenster als Prozentwert oder in Pixeln festlegen. Das Bild wird verkleinert falls n&ouml;tig. Wenn die maximale H&ouml;he des Bildes nicht gesetzt ist, ist das Bild so hoch wie die Colorbox"
249
 
250
+ #: includes/settings-page.php:228
251
  msgid "Maximum width of the Colorbox"
252
  msgstr "Maximale Breite der Colorbox"
253
 
254
+ #: includes/settings-page.php:235
255
  msgid "Set width of the Colorbox"
256
  msgstr "Breite der Colorbox"
257
 
258
+ #: includes/settings-page.php:246
259
  msgid "Set the maximum width of the Colorbox itself in relation to the browser window to a value between in percent or pixels. If the image is bigger than the colorbox, scrollbars are displayed. If width is not set, the Colorbox will be as wide as the picture in it"
260
  msgstr "Hier l&auml;sst sich die maximale Breite der Colorbox in Relation zum Browserfenster als Prozentwert oder in Pixeln festlegen. Wenn das Bild gr&ouml;sser als die Colorbox ist, werden Scrollbalken dargestellt. Wenn keine maximale Breite f&uuml;r die Colorbox gesetzt ist, wird die Colorbox so breit wie das Bild"
261
 
262
+ #: includes/settings-page.php:251
263
  msgid "Maximum height of the Colorbox"
264
  msgstr "Maximale H&ouml;he der Colorbox"
265
 
266
+ #: includes/settings-page.php:258
267
  msgid "Set height of the Colorbox"
268
  msgstr "H&ouml;he der Colorbox"
269
 
270
+ #: includes/settings-page.php:269
271
  msgid "Set the maximum height of the Colorbox itself in relation to the browser window to a value between in percent or pixels. If the image is bigger than the colorbox, scrollbars are displayed. If height is not set, the Colorbox will be as high as the picture in it"
272
  msgstr "Hier l&auml;sst sich die maximale H&ouml;he der Colorbox inRrelation zum Browserfenster als Prozentwert oder in Pixeln festlegen. Wenn das Bild gr&ouml;sser als die Colorbox ist, werden Scrollbalken dargestellt. Wenn keine maximale H&ouml;he f&uuml;r die Colorbox gesetzt ist, wird die Colorbox so hoch wie das Bild"
273
 
274
+ #: includes/settings-page.php:274
275
  msgid "Resize images"
276
  msgstr "Bilder skalieren"
277
 
278
+ #: includes/settings-page.php:278
279
  msgid "If enabled and if maximum width of images, maximum height of images, width of the Colorbox, or height of the Colorbox have been defined, ColorBox will scale photos to fit within the those values"
280
  msgstr "Wenn diese Option aktiviert ist und die maximale Breite von Bildern, die maximale H&ouml;he von Bildern, die Breite der Colorbox oder die H&ouml;he der Colorbox gesetzt ist, wird Colorbox Bilder skalieren"
281
 
282
+ #: includes/settings-page.php:283
283
  msgid "Close Colorbox on overlay click"
284
  msgstr "Colorbox schliessen wenn auf das Overlay geklickt wird"
285
 
286
+ #: includes/settings-page.php:287
287
  msgid "If checked, enables closing ColorBox by clicking on the background overlay"
288
  msgstr "Erlaubt das Schliessen der Colorbox wenn man auf das Overlay klickt"
289
 
290
+ #: includes/settings-page.php:292
291
  msgid "Preload images"
292
  msgstr "Bilder vorladen"
293
 
294
+ #: includes/settings-page.php:296
295
  msgid "Allows for preloading of \"next\" and \"previous\" content in a group, after the current content has finished loading. Uncheck box to disable."
296
  msgstr "Erlaubt das vorladen der \"Vor\" und \"Zur&uuml;ck\" Bilder innerhalb einer Gruppe nachdem der aktuell angezeigte Inhalt geladen wurde. Haken aus der Box entfernen um dieses Feature zu deaktivieren."
297
 
298
+ #: includes/settings-page.php:301
299
  msgid "Transition type"
300
  msgstr "&Uuml;bergangstyp"
301
 
302
+ #: includes/settings-page.php:313
303
  msgid "The transition type of the Colorbox. Can be set to \"elastic\", \"fade\", or \"none\""
304
  msgstr "Der &Uuml;bergangstyp der Colorbox. Kann auf \"Elastisch\", \"Verblassen\" oder \"kein Effekt\" gesetzt werden"
305
 
306
+ #: includes/settings-page.php:318
307
  msgid "Transition speed"
308
  msgstr "Geschwindigkeit des &Uuml;bergangs"
309
 
310
+ #: includes/settings-page.php:322
311
  msgid "Sets the speed of the \"fade\" and \"elastic\" transitions, in milliseconds"
312
  msgstr "Die Geschwindigkeit der &Uuml;berg&auml;nge \"Elastisch\" und \"Verblassen\", in Millisekunden"
313
 
314
+ #: includes/settings-page.php:327
315
  msgid "Opacity"
316
  msgstr "Deckkraft"
317
 
318
+ #: includes/settings-page.php:331
319
  msgid "The overlay opacity level. Range: 0 to 1"
320
  msgstr "Die Deckkraft des Overlays. Werte von 0 bis 1 sind zugelassen"
321
 
322
+ #: includes/settings-page.php:336
323
  msgid "Automate hiding of flash objects"
324
  msgstr "Verstecken von Flash Objekten"
325
 
326
+ #: includes/settings-page.php:340
327
  msgid "Automatically hide embeded flash objects behind the Colorbox layer. Done by setting the wmode to transparent."
328
  msgstr "Flash Objekte automatisch unter dem Colorbox Overlay verstecken. Daf&uuml;r wird der \"wmode\" auf \"transparent\" gesetzt."
329
 
330
+ #: includes/settings-page.php:345
331
  msgid "Disable warning"
332
  msgstr "Warnung deaktivieren"
333
 
334
+ #: includes/settings-page.php:349
335
  msgid "Disables the warning that is displayed if the plugin is activated but the auto-colorbox feature for all images is turned off."
336
  msgstr "Deaktiviert die Warnung, die angezeigt wird, wenn das Plugin aktiviert ist, aber das auto-colorbox Feature f&uuml;r alle Bilder nicht."
337
 
338
+ #: includes/settings-page.php:355
339
  msgid "Save Changes"
340
  msgstr "&Auml;nderungen speichern"
341
 
342
+ #: includes/settings-page.php:364
343
+ #: includes/settings-page.php:373
344
  msgid "Delete Settings"
345
  msgstr "Einstellungen löschen"
346
 
347
+ #: includes/settings-page.php:367
348
  msgid "Check the box and click this button to delete settings of this plugin."
349
  msgstr "Aktivieren Sie die Checkbox und klicken Sie anschließend die folgende Schaltfläche, um die Einstellungen dieses Plugins zu entfernen."
350
 
351
+ #: includes/settings-page.php:383
352
  msgid "Donate"
353
  msgstr "Spenden"
354
 
355
+ #: includes/settings-page.php:397
356
  msgid "If you would like to make a small (or large) contribution towards future development please consider making a donation."
357
  msgstr "Wenn Du eine kleine (oder grosse) Spende f&uuml;r die Weiterentwicklung abgeben m&ouml;chtest, kannst Du das per PayPal tun."
358
 
359
+ #: includes/settings-page.php:406
360
  msgid "Translation"
361
  msgstr "&Uuml;bersetzung"
362
 
363
+ #: includes/settings-page.php:409
364
  msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
365
  msgstr "Die &Uuml;bersetzung ins Deutsche wurde von <a href=\"http://www.techotronic.de\">Arne Franken</a> durchgef&uuml;hrt."
366
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
367
  #~ msgid "jQuery Colorbox"
368
  #~ msgstr "jQuery ColorBox"
369
 
localization/jquery-colorbox-en_EN.mo CHANGED
Binary file
localization/jquery-colorbox-en_EN.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: jQuery-Colorbox\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-03-28 21:47+0100\n"
6
- "PO-Revision-Date: 2010-03-28 22:58+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Techotronic <blog@techotronic.de>\n"
9
  "MIME-Version: 1.0\n"
@@ -15,322 +15,355 @@ msgstr ""
15
  "X-Poedit-Country: GERMANY\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: jquery-colorbox.php:116
19
  msgid "Theme #1"
20
  msgstr ""
21
 
22
- #: jquery-colorbox.php:117
23
  msgid "Theme #2"
24
  msgstr ""
25
 
26
- #: jquery-colorbox.php:118
27
  msgid "Theme #3"
28
  msgstr ""
29
 
30
- #: jquery-colorbox.php:119
31
  msgid "Theme #4"
32
  msgstr ""
33
 
34
- #: jquery-colorbox.php:120
35
  msgid "Theme #5"
36
  msgstr ""
37
 
38
- #: jquery-colorbox.php:121
39
  msgid "Theme #6"
40
  msgstr ""
41
 
42
- #: jquery-colorbox.php:122
43
  msgid "Theme #7"
44
  msgstr ""
45
 
46
- #: jquery-colorbox.php:123
47
  msgid "Theme #8"
48
  msgstr ""
49
 
50
- #: jquery-colorbox.php:128
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
51
  msgid "percent"
52
  msgstr ""
53
 
54
- #: jquery-colorbox.php:129
55
  msgid "pixels"
56
  msgstr ""
57
 
58
- #: jquery-colorbox.php:134
59
  msgid "elastic"
60
  msgstr ""
61
 
62
- #: jquery-colorbox.php:135
63
  msgid "fade"
64
  msgstr ""
65
 
66
- #: jquery-colorbox.php:136
67
  msgid "none"
68
  msgstr ""
69
 
70
- #: jquery-colorbox.php:267
71
- #: jquery-colorbox.php:514
72
  msgid "Settings"
73
  msgstr ""
74
 
75
- #: jquery-colorbox.php:386
76
- msgid "close"
 
 
 
 
 
 
77
  msgstr ""
78
 
79
  #: jquery-colorbox.php:387
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
80
  msgid "next"
81
  msgstr ""
82
 
83
- #: jquery-colorbox.php:388
84
  msgid "previous"
85
  msgstr ""
86
 
87
- #: jquery-colorbox.php:389
88
  msgid "start slideshow"
89
  msgstr ""
90
 
91
- #: jquery-colorbox.php:390
92
  msgid "stop slideshow"
93
  msgstr ""
94
 
95
- #: jquery-colorbox.php:391
96
  msgid "{current} of {total} images"
97
  msgstr ""
98
 
99
- #: jquery-colorbox.php:507
100
  #, php-format
101
  msgid "%1$s Settings"
102
  msgstr ""
103
 
104
- #: jquery-colorbox.php:523
105
  msgid "Theme"
106
  msgstr ""
107
 
108
- #: jquery-colorbox.php:535
109
  msgid "Select the theme you want to use on your blog."
110
  msgstr ""
111
 
112
- #: jquery-colorbox.php:540
113
  msgid "Theme screenshot"
114
  msgstr ""
115
 
116
- #: jquery-colorbox.php:550
117
  #, php-format
118
  msgid "Automate %1$s for all images"
119
  msgstr ""
120
 
121
- #: jquery-colorbox.php:554
122
  msgid "Automatically add colorbox-class to images in posts and pages. Also adds colorbox-class to galleries. Images in one page or post are grouped automatically."
123
  msgstr ""
124
 
125
- #: jquery-colorbox.php:559
126
  #, php-format
127
  msgid "Automate %1$s for images in WordPress galleries"
128
  msgstr ""
129
 
130
- #: jquery-colorbox.php:563
131
  msgid "Automatically add colorbox-class to images in WordPress galleries, but nowhere else. Images in one page or post are grouped automatically."
132
  msgstr ""
133
 
134
- #: jquery-colorbox.php:568
135
  msgid "Add Slideshow to groups"
136
  msgstr ""
137
 
138
- #: jquery-colorbox.php:572
139
  #, php-format
140
  msgid "Add Slideshow functionality for %1$s Groups"
141
  msgstr ""
142
 
143
- #: jquery-colorbox.php:577
144
  msgid "Start Slideshow automatically"
145
  msgstr ""
146
 
147
- #: jquery-colorbox.php:581
148
  #, php-format
149
  msgid "Start Slideshow automatically if slideshow functionality is added to %1$s Groups"
150
  msgstr ""
151
 
152
- #: jquery-colorbox.php:586
153
  msgid "Speed of the slideshow"
154
  msgstr ""
155
 
156
- #: jquery-colorbox.php:590
 
 
 
 
 
157
  msgid "Sets the speed of the slideshow, in milliseconds"
158
  msgstr ""
159
 
160
- #: jquery-colorbox.php:595
161
  msgid "Maximum width of an image"
162
  msgstr ""
163
 
164
- #: jquery-colorbox.php:599
165
- #: jquery-colorbox.php:645
166
  msgid "Do not set width"
167
  msgstr ""
168
 
169
- #: jquery-colorbox.php:602
170
  msgid "Set maximum width of an image"
171
  msgstr ""
172
 
173
- #: jquery-colorbox.php:613
174
  msgid "Set the maximum width of the image in the Colorbox in relation to the browser window in percent or pixels. If maximum width is not set, image is as wide as the Colorbox"
175
  msgstr ""
176
 
177
- #: jquery-colorbox.php:618
178
  msgid "Maximum height of an image"
179
  msgstr ""
180
 
181
- #: jquery-colorbox.php:622
182
- #: jquery-colorbox.php:668
183
  msgid "Do not set height"
184
  msgstr ""
185
 
186
- #: jquery-colorbox.php:625
187
  msgid "Set maximum height of an image"
188
  msgstr ""
189
 
190
- #: jquery-colorbox.php:636
191
  msgid "Set the maximum height of the image in the Colorbox in relation to the browser window to a value in percent or pixels. If maximum height is not set, the image is as high as the Colorbox"
192
  msgstr ""
193
 
194
- #: jquery-colorbox.php:641
195
  msgid "Maximum width of the Colorbox"
196
  msgstr ""
197
 
198
- #: jquery-colorbox.php:648
199
  msgid "Set width of the Colorbox"
200
  msgstr ""
201
 
202
- #: jquery-colorbox.php:659
203
  msgid "Set the maximum width of the Colorbox itself in relation to the browser window to a value between in percent or pixels. If the image is bigger than the colorbox, scrollbars are displayed. If width is not set, the Colorbox will be as wide as the picture in it"
204
  msgstr ""
205
 
206
- #: jquery-colorbox.php:664
207
  msgid "Maximum height of the Colorbox"
208
  msgstr ""
209
 
210
- #: jquery-colorbox.php:671
211
  msgid "Set height of the Colorbox"
212
  msgstr ""
213
 
214
- #: jquery-colorbox.php:682
215
  msgid "Set the maximum height of the Colorbox itself in relation to the browser window to a value between in percent or pixels. If the image is bigger than the colorbox, scrollbars are displayed. If height is not set, the Colorbox will be as high as the picture in it"
216
  msgstr ""
217
 
218
- #: jquery-colorbox.php:687
219
  msgid "Resize images"
220
  msgstr ""
221
 
222
- #: jquery-colorbox.php:691
223
  msgid "If enabled and if maximum width of images, maximum height of images, width of the Colorbox, or height of the Colorbox have been defined, ColorBox will scale photos to fit within the those values"
224
  msgstr ""
225
 
226
- #: jquery-colorbox.php:696
227
  msgid "Close Colorbox on overlay click"
228
  msgstr ""
229
 
230
- #: jquery-colorbox.php:700
231
  msgid "If checked, enables closing ColorBox by clicking on the background overlay"
232
  msgstr ""
233
 
234
- #: jquery-colorbox.php:705
235
  msgid "Preload images"
236
  msgstr ""
237
 
238
- #: jquery-colorbox.php:709
239
  msgid "Allows for preloading of \"next\" and \"previous\" content in a group, after the current content has finished loading. Uncheck box to disable."
240
  msgstr ""
241
 
242
- #: jquery-colorbox.php:714
243
  msgid "Transition type"
244
  msgstr ""
245
 
246
- #: jquery-colorbox.php:726
247
  msgid "The transition type of the Colorbox. Can be set to \"elastic\", \"fade\", or \"none\""
248
  msgstr ""
249
 
250
- #: jquery-colorbox.php:731
251
  msgid "Transition speed"
252
  msgstr ""
253
 
254
- #: jquery-colorbox.php:735
255
  msgid "Sets the speed of the \"fade\" and \"elastic\" transitions, in milliseconds"
256
  msgstr ""
257
 
258
- #: jquery-colorbox.php:740
259
  msgid "Opacity"
260
  msgstr ""
261
 
262
- #: jquery-colorbox.php:744
263
  msgid "The overlay opacity level. Range: 0 to 1"
264
  msgstr ""
265
 
266
- #: jquery-colorbox.php:749
267
  msgid "Automate hiding of flash objects"
268
  msgstr ""
269
 
270
- #: jquery-colorbox.php:753
271
  msgid "Automatically hide embeded flash objects behind the Colorbox layer. Done by setting the wmode to transparent."
272
  msgstr ""
273
 
274
- #: jquery-colorbox.php:758
275
  msgid "Disable warning"
276
  msgstr ""
277
 
278
- #: jquery-colorbox.php:762
279
  msgid "Disables the warning that is displayed if the plugin is activated but the auto-colorbox feature for all images is turned off."
280
  msgstr ""
281
 
282
- #: jquery-colorbox.php:768
283
  msgid "Save Changes"
284
  msgstr ""
285
 
286
- #: jquery-colorbox.php:777
287
- #: jquery-colorbox.php:786
288
  msgid "Delete Settings"
289
  msgstr ""
290
 
291
- #: jquery-colorbox.php:780
292
  msgid "Check the box and click this button to delete settings of this plugin."
293
  msgstr ""
294
 
295
- #: jquery-colorbox.php:796
296
  msgid "Donate"
297
  msgstr ""
298
 
299
- #: jquery-colorbox.php:810
300
  msgid "If you would like to make a small (or large) contribution towards future development please consider making a donation."
301
  msgstr ""
302
 
303
- #: jquery-colorbox.php:819
304
  msgid "Translation"
305
  msgstr ""
306
 
307
- #: jquery-colorbox.php:822
308
  msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
309
  msgstr ""
310
 
311
- #: jquery-colorbox.php:845
312
- #, php-format
313
- msgid "Successfully updated %1$s settings."
314
- msgstr ""
315
-
316
- #: jquery-colorbox.php:847
317
- #, php-format
318
- msgid "%1$s settings were successfully deleted."
319
- msgstr ""
320
-
321
- #: jquery-colorbox.php:888
322
- msgid "needs attention: the plugin is not activated to work for all images."
323
- msgstr ""
324
-
325
- #: jquery-colorbox.php:948
326
- msgid "Did not update settings, you do not have the necessary rights."
327
- msgstr ""
328
-
329
- #: jquery-colorbox.php:995
330
- #, php-format
331
- msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
332
- msgstr ""
333
-
334
  #~ msgid "maxWidth"
335
  #~ msgstr "Maximum width of an image"
336
 
2
  msgstr ""
3
  "Project-Id-Version: jQuery-Colorbox\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2010-04-12 19:54+0100\n"
6
+ "PO-Revision-Date: 2010-04-12 19:54+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Techotronic <blog@techotronic.de>\n"
9
  "MIME-Version: 1.0\n"
15
  "X-Poedit-Country: GERMANY\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: jquery-colorbox.php:109
19
  msgid "Theme #1"
20
  msgstr ""
21
 
22
+ #: jquery-colorbox.php:110
23
  msgid "Theme #2"
24
  msgstr ""
25
 
26
+ #: jquery-colorbox.php:111
27
  msgid "Theme #3"
28
  msgstr ""
29
 
30
+ #: jquery-colorbox.php:112
31
  msgid "Theme #4"
32
  msgstr ""
33
 
34
+ #: jquery-colorbox.php:113
35
  msgid "Theme #5"
36
  msgstr ""
37
 
38
+ #: jquery-colorbox.php:114
39
  msgid "Theme #6"
40
  msgstr ""
41
 
42
+ #: jquery-colorbox.php:115
43
  msgid "Theme #7"
44
  msgstr ""
45
 
46
+ #: jquery-colorbox.php:116
47
  msgid "Theme #8"
48
  msgstr ""
49
 
50
+ #: jquery-colorbox.php:117
51
+ msgid "Theme #9"
52
+ msgstr ""
53
+
54
+ #: jquery-colorbox.php:118
55
+ msgid "Theme #10"
56
+ msgstr ""
57
+
58
+ #: jquery-colorbox.php:122
59
+ msgid "Theme #11"
60
+ msgstr ""
61
+
62
+ #: jquery-colorbox.php:123
63
+ msgid "Theme #12"
64
+ msgstr ""
65
+
66
+ #: jquery-colorbox.php:124
67
+ msgid "Theme #13"
68
+ msgstr ""
69
+
70
+ #: jquery-colorbox.php:125
71
+ msgid "Theme #14"
72
+ msgstr ""
73
+
74
+ #: jquery-colorbox.php:126
75
+ msgid "Theme #15"
76
+ msgstr ""
77
+
78
+ #: jquery-colorbox.php:131
79
  msgid "percent"
80
  msgstr ""
81
 
82
+ #: jquery-colorbox.php:132
83
  msgid "pixels"
84
  msgstr ""
85
 
86
+ #: jquery-colorbox.php:137
87
  msgid "elastic"
88
  msgstr ""
89
 
90
+ #: jquery-colorbox.php:138
91
  msgid "fade"
92
  msgstr ""
93
 
94
+ #: jquery-colorbox.php:139
95
  msgid "none"
96
  msgstr ""
97
 
98
+ #: jquery-colorbox.php:281
99
+ #: includes/settings-page.php:101
100
  msgid "Settings"
101
  msgstr ""
102
 
103
+ #: jquery-colorbox.php:344
104
+ #, php-format
105
+ msgid "Successfully updated %1$s settings."
106
+ msgstr ""
107
+
108
+ #: jquery-colorbox.php:346
109
+ #, php-format
110
+ msgid "%1$s settings were successfully deleted."
111
  msgstr ""
112
 
113
  #: jquery-colorbox.php:387
114
+ msgid "needs attention: the plugin is not activated to work for all images."
115
+ msgstr ""
116
+
117
+ #: jquery-colorbox.php:447
118
+ msgid "Did not update settings, you do not have the necessary rights."
119
+ msgstr ""
120
+
121
+ #: jquery-colorbox.php:494
122
+ #, php-format
123
+ msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
124
+ msgstr ""
125
+
126
+ #: includes/colorbox-javascript.php:53
127
+ msgid "close"
128
+ msgstr ""
129
+
130
+ #: includes/colorbox-javascript.php:54
131
  msgid "next"
132
  msgstr ""
133
 
134
+ #: includes/colorbox-javascript.php:55
135
  msgid "previous"
136
  msgstr ""
137
 
138
+ #: includes/colorbox-javascript.php:56
139
  msgid "start slideshow"
140
  msgstr ""
141
 
142
+ #: includes/colorbox-javascript.php:57
143
  msgid "stop slideshow"
144
  msgstr ""
145
 
146
+ #: includes/colorbox-javascript.php:58
147
  msgid "{current} of {total} images"
148
  msgstr ""
149
 
150
+ #: includes/settings-page.php:94
151
  #, php-format
152
  msgid "%1$s Settings"
153
  msgstr ""
154
 
155
+ #: includes/settings-page.php:110
156
  msgid "Theme"
157
  msgstr ""
158
 
159
+ #: includes/settings-page.php:122
160
  msgid "Select the theme you want to use on your blog."
161
  msgstr ""
162
 
163
+ #: includes/settings-page.php:127
164
  msgid "Theme screenshot"
165
  msgstr ""
166
 
167
+ #: includes/settings-page.php:137
168
  #, php-format
169
  msgid "Automate %1$s for all images"
170
  msgstr ""
171
 
172
+ #: includes/settings-page.php:141
173
  msgid "Automatically add colorbox-class to images in posts and pages. Also adds colorbox-class to galleries. Images in one page or post are grouped automatically."
174
  msgstr ""
175
 
176
+ #: includes/settings-page.php:146
177
  #, php-format
178
  msgid "Automate %1$s for images in WordPress galleries"
179
  msgstr ""
180
 
181
+ #: includes/settings-page.php:150
182
  msgid "Automatically add colorbox-class to images in WordPress galleries, but nowhere else. Images in one page or post are grouped automatically."
183
  msgstr ""
184
 
185
+ #: includes/settings-page.php:155
186
  msgid "Add Slideshow to groups"
187
  msgstr ""
188
 
189
+ #: includes/settings-page.php:159
190
  #, php-format
191
  msgid "Add Slideshow functionality for %1$s Groups"
192
  msgstr ""
193
 
194
+ #: includes/settings-page.php:164
195
  msgid "Start Slideshow automatically"
196
  msgstr ""
197
 
198
+ #: includes/settings-page.php:168
199
  #, php-format
200
  msgid "Start Slideshow automatically if slideshow functionality is added to %1$s Groups"
201
  msgstr ""
202
 
203
+ #: includes/settings-page.php:173
204
  msgid "Speed of the slideshow"
205
  msgstr ""
206
 
207
+ #: includes/settings-page.php:176
208
+ #: includes/settings-page.php:321
209
+ msgid "milliseconds"
210
+ msgstr ""
211
+
212
+ #: includes/settings-page.php:177
213
  msgid "Sets the speed of the slideshow, in milliseconds"
214
  msgstr ""
215
 
216
+ #: includes/settings-page.php:182
217
  msgid "Maximum width of an image"
218
  msgstr ""
219
 
220
+ #: includes/settings-page.php:186
221
+ #: includes/settings-page.php:232
222
  msgid "Do not set width"
223
  msgstr ""
224
 
225
+ #: includes/settings-page.php:189
226
  msgid "Set maximum width of an image"
227
  msgstr ""
228
 
229
+ #: includes/settings-page.php:200
230
  msgid "Set the maximum width of the image in the Colorbox in relation to the browser window in percent or pixels. If maximum width is not set, image is as wide as the Colorbox"
231
  msgstr ""
232
 
233
+ #: includes/settings-page.php:205
234
  msgid "Maximum height of an image"
235
  msgstr ""
236
 
237
+ #: includes/settings-page.php:209
238
+ #: includes/settings-page.php:255
239
  msgid "Do not set height"
240
  msgstr ""
241
 
242
+ #: includes/settings-page.php:212
243
  msgid "Set maximum height of an image"
244
  msgstr ""
245
 
246
+ #: includes/settings-page.php:223
247
  msgid "Set the maximum height of the image in the Colorbox in relation to the browser window to a value in percent or pixels. If maximum height is not set, the image is as high as the Colorbox"
248
  msgstr ""
249
 
250
+ #: includes/settings-page.php:228
251
  msgid "Maximum width of the Colorbox"
252
  msgstr ""
253
 
254
+ #: includes/settings-page.php:235
255
  msgid "Set width of the Colorbox"
256
  msgstr ""
257
 
258
+ #: includes/settings-page.php:246
259
  msgid "Set the maximum width of the Colorbox itself in relation to the browser window to a value between in percent or pixels. If the image is bigger than the colorbox, scrollbars are displayed. If width is not set, the Colorbox will be as wide as the picture in it"
260
  msgstr ""
261
 
262
+ #: includes/settings-page.php:251
263
  msgid "Maximum height of the Colorbox"
264
  msgstr ""
265
 
266
+ #: includes/settings-page.php:258
267
  msgid "Set height of the Colorbox"
268
  msgstr ""
269
 
270
+ #: includes/settings-page.php:269
271
  msgid "Set the maximum height of the Colorbox itself in relation to the browser window to a value between in percent or pixels. If the image is bigger than the colorbox, scrollbars are displayed. If height is not set, the Colorbox will be as high as the picture in it"
272
  msgstr ""
273
 
274
+ #: includes/settings-page.php:274
275
  msgid "Resize images"
276
  msgstr ""
277
 
278
+ #: includes/settings-page.php:278
279
  msgid "If enabled and if maximum width of images, maximum height of images, width of the Colorbox, or height of the Colorbox have been defined, ColorBox will scale photos to fit within the those values"
280
  msgstr ""
281
 
282
+ #: includes/settings-page.php:283
283
  msgid "Close Colorbox on overlay click"
284
  msgstr ""
285
 
286
+ #: includes/settings-page.php:287
287
  msgid "If checked, enables closing ColorBox by clicking on the background overlay"
288
  msgstr ""
289
 
290
+ #: includes/settings-page.php:292
291
  msgid "Preload images"
292
  msgstr ""
293
 
294
+ #: includes/settings-page.php:296
295
  msgid "Allows for preloading of \"next\" and \"previous\" content in a group, after the current content has finished loading. Uncheck box to disable."
296
  msgstr ""
297
 
298
+ #: includes/settings-page.php:301
299
  msgid "Transition type"
300
  msgstr ""
301
 
302
+ #: includes/settings-page.php:313
303
  msgid "The transition type of the Colorbox. Can be set to \"elastic\", \"fade\", or \"none\""
304
  msgstr ""
305
 
306
+ #: includes/settings-page.php:318
307
  msgid "Transition speed"
308
  msgstr ""
309
 
310
+ #: includes/settings-page.php:322
311
  msgid "Sets the speed of the \"fade\" and \"elastic\" transitions, in milliseconds"
312
  msgstr ""
313
 
314
+ #: includes/settings-page.php:327
315
  msgid "Opacity"
316
  msgstr ""
317
 
318
+ #: includes/settings-page.php:331
319
  msgid "The overlay opacity level. Range: 0 to 1"
320
  msgstr ""
321
 
322
+ #: includes/settings-page.php:336
323
  msgid "Automate hiding of flash objects"
324
  msgstr ""
325
 
326
+ #: includes/settings-page.php:340
327
  msgid "Automatically hide embeded flash objects behind the Colorbox layer. Done by setting the wmode to transparent."
328
  msgstr ""
329
 
330
+ #: includes/settings-page.php:345
331
  msgid "Disable warning"
332
  msgstr ""
333
 
334
+ #: includes/settings-page.php:349
335
  msgid "Disables the warning that is displayed if the plugin is activated but the auto-colorbox feature for all images is turned off."
336
  msgstr ""
337
 
338
+ #: includes/settings-page.php:355
339
  msgid "Save Changes"
340
  msgstr ""
341
 
342
+ #: includes/settings-page.php:364
343
+ #: includes/settings-page.php:373
344
  msgid "Delete Settings"
345
  msgstr ""
346
 
347
+ #: includes/settings-page.php:367
348
  msgid "Check the box and click this button to delete settings of this plugin."
349
  msgstr ""
350
 
351
+ #: includes/settings-page.php:383
352
  msgid "Donate"
353
  msgstr ""
354
 
355
+ #: includes/settings-page.php:397
356
  msgid "If you would like to make a small (or large) contribution towards future development please consider making a donation."
357
  msgstr ""
358
 
359
+ #: includes/settings-page.php:406
360
  msgid "Translation"
361
  msgstr ""
362
 
363
+ #: includes/settings-page.php:409
364
  msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
365
  msgstr ""
366
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
367
  #~ msgid "maxWidth"
368
  #~ msgstr "Maximum width of an image"
369
 
localization/jquery-colorbox-fr_FR.mo CHANGED
Binary file
localization/jquery-colorbox-fr_FR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: jQuery-Colorbox\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-04-09 18:05+0100\n"
6
- "PO-Revision-Date: 2010-04-09 18:05+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: tolingo translations <info@tolingo.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -15,325 +15,354 @@ msgstr ""
15
  "X-Poedit-Country: FRANCE\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: jquery-colorbox.php:116
19
  msgid "Theme #1"
20
  msgstr "Thème n°1"
21
 
22
- #: jquery-colorbox.php:117
23
  msgid "Theme #2"
24
  msgstr "Thème n°2"
25
 
26
- #: jquery-colorbox.php:118
27
  msgid "Theme #3"
28
  msgstr "Thème n°3"
29
 
30
- #: jquery-colorbox.php:119
31
  msgid "Theme #4"
32
  msgstr "Thème n°4"
33
 
34
- #: jquery-colorbox.php:120
35
  msgid "Theme #5"
36
  msgstr "Thème n°5"
37
 
38
- #: jquery-colorbox.php:121
39
  msgid "Theme #6"
40
  msgstr "Thème n°6"
41
 
42
- #: jquery-colorbox.php:122
43
  msgid "Theme #7"
44
  msgstr "Thème n°7"
45
 
46
- #: jquery-colorbox.php:123
47
  msgid "Theme #8"
48
  msgstr "Thème n°8"
49
 
50
- #: jquery-colorbox.php:124
51
  msgid "Theme #9"
52
  msgstr "Thème n°9"
53
 
54
- #: jquery-colorbox.php:129
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
55
  msgid "percent"
56
  msgstr "pourcent"
57
 
58
- #: jquery-colorbox.php:130
59
  msgid "pixels"
60
  msgstr "pixels"
61
 
62
- #: jquery-colorbox.php:135
63
  msgid "elastic"
64
  msgstr "élastique"
65
 
66
- #: jquery-colorbox.php:136
67
  msgid "fade"
68
  msgstr "s'effacer"
69
 
70
- #: jquery-colorbox.php:137
71
  msgid "none"
72
  msgstr "aucun"
73
 
74
- #: jquery-colorbox.php:268
75
- #: jquery-colorbox.php:555
76
  msgid "Settings"
77
  msgstr "Paramètres"
78
 
79
- #: jquery-colorbox.php:406
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
80
  msgid "close"
81
  msgstr "fermer"
82
 
83
- #: jquery-colorbox.php:407
84
  msgid "next"
85
  msgstr "suivant"
86
 
87
- #: jquery-colorbox.php:408
88
  msgid "previous"
89
  msgstr "précédent"
90
 
91
- #: jquery-colorbox.php:409
92
  msgid "start slideshow"
93
  msgstr "commencer le diaporama"
94
 
95
- #: jquery-colorbox.php:410
96
  msgid "stop slideshow"
97
  msgstr "arrêter le diaporama"
98
 
99
- #: jquery-colorbox.php:411
100
  msgid "{current} of {total} images"
101
- msgstr "{en cours} du {total} d'images"
102
 
103
- #: jquery-colorbox.php:548
104
  #, php-format
105
  msgid "%1$s Settings"
106
- msgstr "Paramètres %1$s"
107
 
108
- #: jquery-colorbox.php:564
109
  msgid "Theme"
110
  msgstr "Thème"
111
 
112
- #: jquery-colorbox.php:576
113
  msgid "Select the theme you want to use on your blog."
114
  msgstr "Sélectionner le thème que vous voulez utiliser sur votre blog."
115
 
116
- #: jquery-colorbox.php:581
117
  msgid "Theme screenshot"
118
  msgstr "Capture d'écran du thème"
119
 
120
- #: jquery-colorbox.php:591
121
  #, php-format
122
  msgid "Automate %1$s for all images"
123
  msgstr "Automatiser %1$s pour toutes les images"
124
 
125
- #: jquery-colorbox.php:595
126
  msgid "Automatically add colorbox-class to images in posts and pages. Also adds colorbox-class to galleries. Images in one page or post are grouped automatically."
127
  msgstr "Ajouter automatiquement une classe colorbox aux images dans les billets et les pages. Ajouter aussi une classe colorbox aux galeries. Les images sur une page ou un billet sont automatiquement groupées."
128
 
129
- #: jquery-colorbox.php:600
130
  #, php-format
131
  msgid "Automate %1$s for images in WordPress galleries"
132
  msgstr "Automatiser %1$s pour les images des galeries WordPress"
133
 
134
- #: jquery-colorbox.php:604
135
  msgid "Automatically add colorbox-class to images in WordPress galleries, but nowhere else. Images in one page or post are grouped automatically."
136
  msgstr "Ajouter automatiquement une classe colorbox aux images dans les galeries WordPress, mais nulle part ailleurs. Les images sur une page ou un billet sont automatiquement groupées."
137
 
138
- #: jquery-colorbox.php:609
139
  msgid "Add Slideshow to groups"
140
  msgstr "Ajouter un diaporama aux groupes"
141
 
142
- #: jquery-colorbox.php:613
143
  #, php-format
144
  msgid "Add Slideshow functionality for %1$s Groups"
145
- msgstr "Ajouter la fonction Diaporama aux groupes %1$s"
146
 
147
- #: jquery-colorbox.php:618
148
  msgid "Start Slideshow automatically"
149
  msgstr "Démarrer automatiquement le diaporama"
150
 
151
- #: jquery-colorbox.php:622
152
  #, php-format
153
  msgid "Start Slideshow automatically if slideshow functionality is added to %1$s Groups"
154
- msgstr "Démarrer automatiquement le diaporama si la fonction Diaporama a été ajoutée aux groupes %1$s"
155
 
156
- #: jquery-colorbox.php:627
157
  msgid "Speed of the slideshow"
158
  msgstr "Vitesse du diaporama"
159
 
160
- #: jquery-colorbox.php:631
 
 
 
 
 
161
  msgid "Sets the speed of the slideshow, in milliseconds"
162
  msgstr "Fixe la vitesse du diaporama en millisecondes"
163
 
164
- #: jquery-colorbox.php:636
165
  msgid "Maximum width of an image"
166
  msgstr "Largeur maximum d'une image"
167
 
168
- #: jquery-colorbox.php:640
169
- #: jquery-colorbox.php:686
170
  msgid "Do not set width"
171
  msgstr "Ne pas fixer la largeur"
172
 
173
- #: jquery-colorbox.php:643
174
  msgid "Set maximum width of an image"
175
  msgstr "Fixer la largeur maximum d'une image"
176
 
177
- #: jquery-colorbox.php:654
178
  msgid "Set the maximum width of the image in the Colorbox in relation to the browser window in percent or pixels. If maximum width is not set, image is as wide as the Colorbox"
179
  msgstr "Fixer la largeur maximum d'une image dans la Colorbox en fonction de la fenêtre du navigateur en pourcent ou en pixels. Si la largeur maximum n'est pas fixée, l'image est aussi large que la Colorbox"
180
 
181
- #: jquery-colorbox.php:659
182
  msgid "Maximum height of an image"
183
  msgstr "Hauteur maximum d'une image"
184
 
185
- #: jquery-colorbox.php:663
186
- #: jquery-colorbox.php:709
187
  msgid "Do not set height"
188
  msgstr "Ne pas fixer la hauteur"
189
 
190
- #: jquery-colorbox.php:666
191
  msgid "Set maximum height of an image"
192
  msgstr "Fixer la hauteur maximum d'une image"
193
 
194
- #: jquery-colorbox.php:677
195
  msgid "Set the maximum height of the image in the Colorbox in relation to the browser window to a value in percent or pixels. If maximum height is not set, the image is as high as the Colorbox"
196
  msgstr "Fixer la hauteur maximum d'une image dans la Colorbox en fonction de la fenêtre du navigateur sur une valeur en pourcent ou en pixels. Si la hauteur maximum n'est pas fixée, l'image est aussi haute que la Colorbox."
197
 
198
- #: jquery-colorbox.php:682
199
  msgid "Maximum width of the Colorbox"
200
  msgstr "Largeur maximum de la Colorbox"
201
 
202
- #: jquery-colorbox.php:689
203
  msgid "Set width of the Colorbox"
204
  msgstr "Fixer la largeur de la Colorbox"
205
 
206
- #: jquery-colorbox.php:700
207
  msgid "Set the maximum width of the Colorbox itself in relation to the browser window to a value between in percent or pixels. If the image is bigger than the colorbox, scrollbars are displayed. If width is not set, the Colorbox will be as wide as the picture in it"
208
  msgstr "Fixer la largeur maximum de la Colorbox elle-même en fonction de la fenêtre du navigateur sur une valeur comprise entre en pourcent ou en pixels. Si l'image est plus grande que la Colorbox, des barres de défilement sont affichées. Si la largeur n'est pas fixée, la Colorbox sera aussi large que l'image qu'elle contient"
209
 
210
- #: jquery-colorbox.php:705
211
  msgid "Maximum height of the Colorbox"
212
  msgstr "Hauteur maximum de la Colorbox"
213
 
214
- #: jquery-colorbox.php:712
215
  msgid "Set height of the Colorbox"
216
  msgstr "Fixer la hauteur de la Colorbox"
217
 
218
- #: jquery-colorbox.php:723
219
  msgid "Set the maximum height of the Colorbox itself in relation to the browser window to a value between in percent or pixels. If the image is bigger than the colorbox, scrollbars are displayed. If height is not set, the Colorbox will be as high as the picture in it"
220
  msgstr "Fixer la hauteur maximum de la Colorbox elle-même en fonction de la fenêtre du navigateur sur une valeur comprise entre en pourcent ou en pixels. Si l'image est plus grande que la Colorbox, des barres de défilement sont affichées. Si la hauteur n'est pas fixée, la Colorbox sera aussi haute que l'image qu'elle contient"
221
 
222
- #: jquery-colorbox.php:728
223
  msgid "Resize images"
224
  msgstr "Redimensionner les images"
225
 
226
- #: jquery-colorbox.php:732
227
  msgid "If enabled and if maximum width of images, maximum height of images, width of the Colorbox, or height of the Colorbox have been defined, ColorBox will scale photos to fit within the those values"
228
  msgstr "Si cette fonction est activée et si la largeur maximum des images, la hauteur maximum des images, la largeur de la Colorbox ou la hauteur de la Colorbox ont été définies, la ColorBox mettra les photos à l'échelle de façon qu'elles s'adaptent à ces valeurs"
229
 
230
- #: jquery-colorbox.php:737
231
  msgid "Close Colorbox on overlay click"
232
  msgstr "Fermer la Colorbox en cliquant sur le recouvrement"
233
 
234
- #: jquery-colorbox.php:741
235
  msgid "If checked, enables closing ColorBox by clicking on the background overlay"
236
  msgstr "Si elle est cochée, cette case active la fermeture de la ColorBox en cliquant sur le recouvrement de l'arrière-plan"
237
 
238
- #: jquery-colorbox.php:746
239
  msgid "Preload images"
240
  msgstr "Précharger les images"
241
 
242
- #: jquery-colorbox.php:750
243
  msgid "Allows for preloading of \"next\" and \"previous\" content in a group, after the current content has finished loading. Uncheck box to disable."
244
  msgstr "Permet le préchargement des contenus \"suivant\" et \"précédent\" d'un groupe, après que le contenu en cours a terminé son chargement. Décochez la case pour désactiver la fonction."
245
 
246
- #: jquery-colorbox.php:755
247
  msgid "Transition type"
248
  msgstr "Type de transition"
249
 
250
- #: jquery-colorbox.php:767
251
  msgid "The transition type of the Colorbox. Can be set to \"elastic\", \"fade\", or \"none\""
252
  msgstr "Le type de transition de la Colorbox. Il peut être fixé sur \"élastique\", \"effacé\" ou \"aucun\""
253
 
254
- #: jquery-colorbox.php:772
255
  msgid "Transition speed"
256
  msgstr "Vitesse de transition"
257
 
258
- #: jquery-colorbox.php:776
259
  msgid "Sets the speed of the \"fade\" and \"elastic\" transitions, in milliseconds"
260
  msgstr "Fixe la vitesse des transitions \"effacé\" et \"élastique\", en millisecondes"
261
 
262
- #: jquery-colorbox.php:781
263
  msgid "Opacity"
264
  msgstr "Opacité"
265
 
266
- #: jquery-colorbox.php:785
267
  msgid "The overlay opacity level. Range: 0 to 1"
268
  msgstr "Le niveau d'opacité du recouvrement. Plage : 0 à 1"
269
 
270
- #: jquery-colorbox.php:790
271
  msgid "Automate hiding of flash objects"
272
  msgstr "Masquage automatique des objets flash"
273
 
274
- #: jquery-colorbox.php:794
275
  msgid "Automatically hide embeded flash objects behind the Colorbox layer. Done by setting the wmode to transparent."
276
  msgstr "Masquer automatiquement les objets flash intégrés derrière la couche de la Colorbox. Obtenu en réglant le wmode sur transparent."
277
 
278
- #: jquery-colorbox.php:799
279
  msgid "Disable warning"
280
  msgstr "Désactiver l'avertissement"
281
 
282
- #: jquery-colorbox.php:803
283
  msgid "Disables the warning that is displayed if the plugin is activated but the auto-colorbox feature for all images is turned off."
284
  msgstr "Désactive l'avertissement qui est affiché si le plugin est activé mais que la fonction auto-colorbox est hors fonction pour toutes les images."
285
 
286
- #: jquery-colorbox.php:809
287
  msgid "Save Changes"
288
  msgstr "Enregistrer les modifications"
289
 
290
- #: jquery-colorbox.php:818
291
- #: jquery-colorbox.php:827
292
  msgid "Delete Settings"
293
  msgstr "Supprimer les paramètres"
294
 
295
- #: jquery-colorbox.php:821
296
  msgid "Check the box and click this button to delete settings of this plugin."
297
  msgstr "Cocher la case et cliquer sur ce bouton pour supprimer les paramètres de ce plugin."
298
 
299
- #: jquery-colorbox.php:837
300
  msgid "Donate"
301
  msgstr "Faire un don"
302
 
303
- #: jquery-colorbox.php:851
304
  msgid "If you would like to make a small (or large) contribution towards future development please consider making a donation."
305
  msgstr "Si vous voulez apporter une contribution, petite ou importante, en vue de développements futurs, vous pouvez faire un don."
306
 
307
- #: jquery-colorbox.php:860
308
  msgid "Translation"
309
  msgstr "Traduction"
310
 
311
- #: jquery-colorbox.php:863
312
  msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
313
- msgstr "La traduction en français a été faite par<a href=\"http://www.tolingo.com\">tolingo translations</a>."
314
-
315
- #: jquery-colorbox.php:886
316
- #, php-format
317
- msgid "Successfully updated %1$s settings."
318
- msgstr "Mise à jour réussie des paramètres %1$s."
319
-
320
- #: jquery-colorbox.php:888
321
- #, php-format
322
- msgid "%1$s settings were successfully deleted."
323
- msgstr "Suppression réussie des paramètres %1$s."
324
-
325
- #: jquery-colorbox.php:929
326
- msgid "needs attention: the plugin is not activated to work for all images."
327
- msgstr "attention : le plugin n'est pas activé pour fonctionner avec toutes les images."
328
-
329
- #: jquery-colorbox.php:989
330
- msgid "Did not update settings, you do not have the necessary rights."
331
- msgstr "Les paramètres n'ont pas été mis à jour, vous ne disposez pas des droits nécessaires."
332
-
333
- #: jquery-colorbox.php:1036
334
- #, php-format
335
- msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
336
- msgstr "Les paramètres %1$s n'ont pas été supprimés. Soit vous ne disposez pas des droits nécessaires, soit vous n'avez pas coché la case."
337
 
338
  #~ msgid "maxWidth"
339
  #~ msgstr "Maximum width of an image"
2
  msgstr ""
3
  "Project-Id-Version: jQuery-Colorbox\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2010-04-12 19:55+0100\n"
6
+ "PO-Revision-Date: 2010-04-12 19:55+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: tolingo translations <info@tolingo.com>\n"
9
  "MIME-Version: 1.0\n"
15
  "X-Poedit-Country: FRANCE\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: jquery-colorbox.php:109
19
  msgid "Theme #1"
20
  msgstr "Thème n°1"
21
 
22
+ #: jquery-colorbox.php:110
23
  msgid "Theme #2"
24
  msgstr "Thème n°2"
25
 
26
+ #: jquery-colorbox.php:111
27
  msgid "Theme #3"
28
  msgstr "Thème n°3"
29
 
30
+ #: jquery-colorbox.php:112
31
  msgid "Theme #4"
32
  msgstr "Thème n°4"
33
 
34
+ #: jquery-colorbox.php:113
35
  msgid "Theme #5"
36
  msgstr "Thème n°5"
37
 
38
+ #: jquery-colorbox.php:114
39
  msgid "Theme #6"
40
  msgstr "Thème n°6"
41
 
42
+ #: jquery-colorbox.php:115
43
  msgid "Theme #7"
44
  msgstr "Thème n°7"
45
 
46
+ #: jquery-colorbox.php:116
47
  msgid "Theme #8"
48
  msgstr "Thème n°8"
49
 
50
+ #: jquery-colorbox.php:117
51
  msgid "Theme #9"
52
  msgstr "Thème n°9"
53
 
54
+ #: jquery-colorbox.php:118
55
+ msgid "Theme #10"
56
+ msgstr "Thème n°10"
57
+
58
+ #: jquery-colorbox.php:122
59
+ msgid "Theme #11"
60
+ msgstr "Thème n°11"
61
+
62
+ #: jquery-colorbox.php:123
63
+ msgid "Theme #12"
64
+ msgstr "Thème n°12"
65
+
66
+ #: jquery-colorbox.php:124
67
+ msgid "Theme #13"
68
+ msgstr "Thème n°13"
69
+
70
+ #: jquery-colorbox.php:125
71
+ msgid "Theme #14"
72
+ msgstr "Thème n°14"
73
+
74
+ #: jquery-colorbox.php:126
75
+ msgid "Theme #15"
76
+ msgstr "Thème n°15"
77
+
78
+ #: jquery-colorbox.php:131
79
  msgid "percent"
80
  msgstr "pourcent"
81
 
82
+ #: jquery-colorbox.php:132
83
  msgid "pixels"
84
  msgstr "pixels"
85
 
86
+ #: jquery-colorbox.php:137
87
  msgid "elastic"
88
  msgstr "élastique"
89
 
90
+ #: jquery-colorbox.php:138
91
  msgid "fade"
92
  msgstr "s'effacer"
93
 
94
+ #: jquery-colorbox.php:139
95
  msgid "none"
96
  msgstr "aucun"
97
 
98
+ #: jquery-colorbox.php:281
99
+ #: includes/settings-page.php:101
100
  msgid "Settings"
101
  msgstr "Paramètres"
102
 
103
+ #: jquery-colorbox.php:344
104
+ #, php-format
105
+ msgid "Successfully updated %1$s settings."
106
+ msgstr "Mise à jour réussie des paramètres de la %1$s."
107
+
108
+ #: jquery-colorbox.php:346
109
+ #, php-format
110
+ msgid "%1$s settings were successfully deleted."
111
+ msgstr "Suppression réussie des paramètres de la %1$s."
112
+
113
+ #: jquery-colorbox.php:387
114
+ msgid "needs attention: the plugin is not activated to work for all images."
115
+ msgstr "attention : le plugin n'est pas activé pour fonctionner avec toutes les images."
116
+
117
+ #: jquery-colorbox.php:447
118
+ msgid "Did not update settings, you do not have the necessary rights."
119
+ msgstr "Les paramètres n'ont pas été mis à jour, vous ne disposez pas des droits nécessaires."
120
+
121
+ #: jquery-colorbox.php:494
122
+ #, php-format
123
+ msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
124
+ msgstr "Les paramètres de la %1$s n'ont pas été supprimés. Soit vous ne disposez pas des droits nécessaires, soit vous n'avez pas coché la case."
125
+
126
+ #: includes/colorbox-javascript.php:53
127
  msgid "close"
128
  msgstr "fermer"
129
 
130
+ #: includes/colorbox-javascript.php:54
131
  msgid "next"
132
  msgstr "suivant"
133
 
134
+ #: includes/colorbox-javascript.php:55
135
  msgid "previous"
136
  msgstr "précédent"
137
 
138
+ #: includes/colorbox-javascript.php:56
139
  msgid "start slideshow"
140
  msgstr "commencer le diaporama"
141
 
142
+ #: includes/colorbox-javascript.php:57
143
  msgid "stop slideshow"
144
  msgstr "arrêter le diaporama"
145
 
146
+ #: includes/colorbox-javascript.php:58
147
  msgid "{current} of {total} images"
148
+ msgstr "{current} du {total} d'images"
149
 
150
+ #: includes/settings-page.php:94
151
  #, php-format
152
  msgid "%1$s Settings"
153
+ msgstr "Paramètres de la %1$s"
154
 
155
+ #: includes/settings-page.php:110
156
  msgid "Theme"
157
  msgstr "Thème"
158
 
159
+ #: includes/settings-page.php:122
160
  msgid "Select the theme you want to use on your blog."
161
  msgstr "Sélectionner le thème que vous voulez utiliser sur votre blog."
162
 
163
+ #: includes/settings-page.php:127
164
  msgid "Theme screenshot"
165
  msgstr "Capture d'écran du thème"
166
 
167
+ #: includes/settings-page.php:137
168
  #, php-format
169
  msgid "Automate %1$s for all images"
170
  msgstr "Automatiser %1$s pour toutes les images"
171
 
172
+ #: includes/settings-page.php:141
173
  msgid "Automatically add colorbox-class to images in posts and pages. Also adds colorbox-class to galleries. Images in one page or post are grouped automatically."
174
  msgstr "Ajouter automatiquement une classe colorbox aux images dans les billets et les pages. Ajouter aussi une classe colorbox aux galeries. Les images sur une page ou un billet sont automatiquement groupées."
175
 
176
+ #: includes/settings-page.php:146
177
  #, php-format
178
  msgid "Automate %1$s for images in WordPress galleries"
179
  msgstr "Automatiser %1$s pour les images des galeries WordPress"
180
 
181
+ #: includes/settings-page.php:150
182
  msgid "Automatically add colorbox-class to images in WordPress galleries, but nowhere else. Images in one page or post are grouped automatically."
183
  msgstr "Ajouter automatiquement une classe colorbox aux images dans les galeries WordPress, mais nulle part ailleurs. Les images sur une page ou un billet sont automatiquement groupées."
184
 
185
+ #: includes/settings-page.php:155
186
  msgid "Add Slideshow to groups"
187
  msgstr "Ajouter un diaporama aux groupes"
188
 
189
+ #: includes/settings-page.php:159
190
  #, php-format
191
  msgid "Add Slideshow functionality for %1$s Groups"
192
+ msgstr "Ajouter la fonction Diaporama aux groupes de la %1$s"
193
 
194
+ #: includes/settings-page.php:164
195
  msgid "Start Slideshow automatically"
196
  msgstr "Démarrer automatiquement le diaporama"
197
 
198
+ #: includes/settings-page.php:168
199
  #, php-format
200
  msgid "Start Slideshow automatically if slideshow functionality is added to %1$s Groups"
201
+ msgstr "Démarrer automatiquement le diaporama si la fonction Diaporama a été ajoutée aux groupes de la %1$s"
202
 
203
+ #: includes/settings-page.php:173
204
  msgid "Speed of the slideshow"
205
  msgstr "Vitesse du diaporama"
206
 
207
+ #: includes/settings-page.php:176
208
+ #: includes/settings-page.php:321
209
+ msgid "milliseconds"
210
+ msgstr "millisecondes"
211
+
212
+ #: includes/settings-page.php:177
213
  msgid "Sets the speed of the slideshow, in milliseconds"
214
  msgstr "Fixe la vitesse du diaporama en millisecondes"
215
 
216
+ #: includes/settings-page.php:182
217
  msgid "Maximum width of an image"
218
  msgstr "Largeur maximum d'une image"
219
 
220
+ #: includes/settings-page.php:186
221
+ #: includes/settings-page.php:232
222
  msgid "Do not set width"
223
  msgstr "Ne pas fixer la largeur"
224
 
225
+ #: includes/settings-page.php:189
226
  msgid "Set maximum width of an image"
227
  msgstr "Fixer la largeur maximum d'une image"
228
 
229
+ #: includes/settings-page.php:200
230
  msgid "Set the maximum width of the image in the Colorbox in relation to the browser window in percent or pixels. If maximum width is not set, image is as wide as the Colorbox"
231
  msgstr "Fixer la largeur maximum d'une image dans la Colorbox en fonction de la fenêtre du navigateur en pourcent ou en pixels. Si la largeur maximum n'est pas fixée, l'image est aussi large que la Colorbox"
232
 
233
+ #: includes/settings-page.php:205
234
  msgid "Maximum height of an image"
235
  msgstr "Hauteur maximum d'une image"
236
 
237
+ #: includes/settings-page.php:209
238
+ #: includes/settings-page.php:255
239
  msgid "Do not set height"
240
  msgstr "Ne pas fixer la hauteur"
241
 
242
+ #: includes/settings-page.php:212
243
  msgid "Set maximum height of an image"
244
  msgstr "Fixer la hauteur maximum d'une image"
245
 
246
+ #: includes/settings-page.php:223
247
  msgid "Set the maximum height of the image in the Colorbox in relation to the browser window to a value in percent or pixels. If maximum height is not set, the image is as high as the Colorbox"
248
  msgstr "Fixer la hauteur maximum d'une image dans la Colorbox en fonction de la fenêtre du navigateur sur une valeur en pourcent ou en pixels. Si la hauteur maximum n'est pas fixée, l'image est aussi haute que la Colorbox."
249
 
250
+ #: includes/settings-page.php:228
251
  msgid "Maximum width of the Colorbox"
252
  msgstr "Largeur maximum de la Colorbox"
253
 
254
+ #: includes/settings-page.php:235
255
  msgid "Set width of the Colorbox"
256
  msgstr "Fixer la largeur de la Colorbox"
257
 
258
+ #: includes/settings-page.php:246
259
  msgid "Set the maximum width of the Colorbox itself in relation to the browser window to a value between in percent or pixels. If the image is bigger than the colorbox, scrollbars are displayed. If width is not set, the Colorbox will be as wide as the picture in it"
260
  msgstr "Fixer la largeur maximum de la Colorbox elle-même en fonction de la fenêtre du navigateur sur une valeur comprise entre en pourcent ou en pixels. Si l'image est plus grande que la Colorbox, des barres de défilement sont affichées. Si la largeur n'est pas fixée, la Colorbox sera aussi large que l'image qu'elle contient"
261
 
262
+ #: includes/settings-page.php:251
263
  msgid "Maximum height of the Colorbox"
264
  msgstr "Hauteur maximum de la Colorbox"
265
 
266
+ #: includes/settings-page.php:258
267
  msgid "Set height of the Colorbox"
268
  msgstr "Fixer la hauteur de la Colorbox"
269
 
270
+ #: includes/settings-page.php:269
271
  msgid "Set the maximum height of the Colorbox itself in relation to the browser window to a value between in percent or pixels. If the image is bigger than the colorbox, scrollbars are displayed. If height is not set, the Colorbox will be as high as the picture in it"
272
  msgstr "Fixer la hauteur maximum de la Colorbox elle-même en fonction de la fenêtre du navigateur sur une valeur comprise entre en pourcent ou en pixels. Si l'image est plus grande que la Colorbox, des barres de défilement sont affichées. Si la hauteur n'est pas fixée, la Colorbox sera aussi haute que l'image qu'elle contient"
273
 
274
+ #: includes/settings-page.php:274
275
  msgid "Resize images"
276
  msgstr "Redimensionner les images"
277
 
278
+ #: includes/settings-page.php:278
279
  msgid "If enabled and if maximum width of images, maximum height of images, width of the Colorbox, or height of the Colorbox have been defined, ColorBox will scale photos to fit within the those values"
280
  msgstr "Si cette fonction est activée et si la largeur maximum des images, la hauteur maximum des images, la largeur de la Colorbox ou la hauteur de la Colorbox ont été définies, la ColorBox mettra les photos à l'échelle de façon qu'elles s'adaptent à ces valeurs"
281
 
282
+ #: includes/settings-page.php:283
283
  msgid "Close Colorbox on overlay click"
284
  msgstr "Fermer la Colorbox en cliquant sur le recouvrement"
285
 
286
+ #: includes/settings-page.php:287
287
  msgid "If checked, enables closing ColorBox by clicking on the background overlay"
288
  msgstr "Si elle est cochée, cette case active la fermeture de la ColorBox en cliquant sur le recouvrement de l'arrière-plan"
289
 
290
+ #: includes/settings-page.php:292
291
  msgid "Preload images"
292
  msgstr "Précharger les images"
293
 
294
+ #: includes/settings-page.php:296
295
  msgid "Allows for preloading of \"next\" and \"previous\" content in a group, after the current content has finished loading. Uncheck box to disable."
296
  msgstr "Permet le préchargement des contenus \"suivant\" et \"précédent\" d'un groupe, après que le contenu en cours a terminé son chargement. Décochez la case pour désactiver la fonction."
297
 
298
+ #: includes/settings-page.php:301
299
  msgid "Transition type"
300
  msgstr "Type de transition"
301
 
302
+ #: includes/settings-page.php:313
303
  msgid "The transition type of the Colorbox. Can be set to \"elastic\", \"fade\", or \"none\""
304
  msgstr "Le type de transition de la Colorbox. Il peut être fixé sur \"élastique\", \"effacé\" ou \"aucun\""
305
 
306
+ #: includes/settings-page.php:318
307
  msgid "Transition speed"
308
  msgstr "Vitesse de transition"
309
 
310
+ #: includes/settings-page.php:322
311
  msgid "Sets the speed of the \"fade\" and \"elastic\" transitions, in milliseconds"
312
  msgstr "Fixe la vitesse des transitions \"effacé\" et \"élastique\", en millisecondes"
313
 
314
+ #: includes/settings-page.php:327
315
  msgid "Opacity"
316
  msgstr "Opacité"
317
 
318
+ #: includes/settings-page.php:331
319
  msgid "The overlay opacity level. Range: 0 to 1"
320
  msgstr "Le niveau d'opacité du recouvrement. Plage : 0 à 1"
321
 
322
+ #: includes/settings-page.php:336
323
  msgid "Automate hiding of flash objects"
324
  msgstr "Masquage automatique des objets flash"
325
 
326
+ #: includes/settings-page.php:340
327
  msgid "Automatically hide embeded flash objects behind the Colorbox layer. Done by setting the wmode to transparent."
328
  msgstr "Masquer automatiquement les objets flash intégrés derrière la couche de la Colorbox. Obtenu en réglant le wmode sur transparent."
329
 
330
+ #: includes/settings-page.php:345
331
  msgid "Disable warning"
332
  msgstr "Désactiver l'avertissement"
333
 
334
+ #: includes/settings-page.php:349
335
  msgid "Disables the warning that is displayed if the plugin is activated but the auto-colorbox feature for all images is turned off."
336
  msgstr "Désactive l'avertissement qui est affiché si le plugin est activé mais que la fonction auto-colorbox est hors fonction pour toutes les images."
337
 
338
+ #: includes/settings-page.php:355
339
  msgid "Save Changes"
340
  msgstr "Enregistrer les modifications"
341
 
342
+ #: includes/settings-page.php:364
343
+ #: includes/settings-page.php:373
344
  msgid "Delete Settings"
345
  msgstr "Supprimer les paramètres"
346
 
347
+ #: includes/settings-page.php:367
348
  msgid "Check the box and click this button to delete settings of this plugin."
349
  msgstr "Cocher la case et cliquer sur ce bouton pour supprimer les paramètres de ce plugin."
350
 
351
+ #: includes/settings-page.php:383
352
  msgid "Donate"
353
  msgstr "Faire un don"
354
 
355
+ #: includes/settings-page.php:397
356
  msgid "If you would like to make a small (or large) contribution towards future development please consider making a donation."
357
  msgstr "Si vous voulez apporter une contribution, petite ou importante, en vue de développements futurs, vous pouvez faire un don."
358
 
359
+ #: includes/settings-page.php:406
360
  msgid "Translation"
361
  msgstr "Traduction"
362
 
363
+ #: includes/settings-page.php:409
364
  msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
365
+ msgstr "La traduction en français a été faite par <a href=\"http://www.tolingo.com\">tolingo translations</a>."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
366
 
367
  #~ msgid "maxWidth"
368
  #~ msgstr "Maximum width of an image"
localization/jquery-colorbox-pt_BR.mo CHANGED
Binary file
localization/jquery-colorbox-pt_BR.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: jQuery-Colorbox\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-03-28 21:50+0100\n"
6
- "PO-Revision-Date: 2010-03-28 22:50-0300\n"
7
- "Last-Translator: Gervásio Antônio <gdsa32-translation@yahoo.com.br>\n"
8
  "Language-Team: Gervásio Antônio\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -15,328 +15,363 @@ msgstr ""
15
  "X-Poedit-Country: BRAZIL\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: jquery-colorbox.php:116
19
  msgid "Theme #1"
20
  msgstr "Tema #1"
21
 
22
- #: jquery-colorbox.php:117
23
  msgid "Theme #2"
24
  msgstr "Tema #2"
25
 
26
- #: jquery-colorbox.php:118
27
  msgid "Theme #3"
28
  msgstr "Tema #3"
29
 
30
- #: jquery-colorbox.php:119
31
  msgid "Theme #4"
32
  msgstr "Tema #4"
33
 
34
- #: jquery-colorbox.php:120
35
  msgid "Theme #5"
36
  msgstr "Tema #5"
37
 
38
- #: jquery-colorbox.php:121
39
  msgid "Theme #6"
40
  msgstr "Tema #6"
41
 
42
- #: jquery-colorbox.php:122
43
  msgid "Theme #7"
44
  msgstr "Tema #7"
45
 
46
- #: jquery-colorbox.php:123
47
  msgid "Theme #8"
48
  msgstr "Tema #8"
49
 
50
- #: jquery-colorbox.php:128
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
51
  msgid "percent"
52
  msgstr "%"
53
 
54
- #: jquery-colorbox.php:129
55
  msgid "pixels"
56
  msgstr "pixels"
57
 
58
- #: jquery-colorbox.php:134
59
  msgid "elastic"
60
  msgstr "elástico"
61
 
62
- #: jquery-colorbox.php:135
63
  msgid "fade"
64
  msgstr "esmaecer"
65
 
66
- #: jquery-colorbox.php:136
67
  msgid "none"
68
  msgstr "nenhuma"
69
 
70
- #: jquery-colorbox.php:267
71
- #: jquery-colorbox.php:514
72
  msgid "Settings"
73
  msgstr "Configurações"
74
 
75
- #: jquery-colorbox.php:386
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
76
  msgid "close"
77
  msgstr "fechar"
78
 
79
- #: jquery-colorbox.php:387
80
  msgid "next"
81
  msgstr "próxima"
82
 
83
- #: jquery-colorbox.php:388
84
  msgid "previous"
85
  msgstr "anterior"
86
 
87
- #: jquery-colorbox.php:389
88
  msgid "start slideshow"
89
  msgstr "iniciar apresentação"
90
 
91
- #: jquery-colorbox.php:390
92
  msgid "stop slideshow"
93
  msgstr "parar apresentação"
94
 
95
- #: jquery-colorbox.php:391
96
  msgid "{current} of {total} images"
97
  msgstr "Imagem {current} de {total}"
98
 
99
- #: jquery-colorbox.php:507
100
  #, php-format
101
  msgid "%1$s Settings"
102
  msgstr "Configurações do %1$s"
103
 
104
- #: jquery-colorbox.php:523
105
  msgid "Theme"
106
  msgstr "Tema"
107
 
108
- #: jquery-colorbox.php:535
109
  msgid "Select the theme you want to use on your blog."
110
  msgstr "Selecione o tema que você deseja usar em seu site."
111
 
112
- #: jquery-colorbox.php:540
113
  msgid "Theme screenshot"
114
  msgstr "Amostra do tema"
115
 
116
- #: jquery-colorbox.php:550
117
  #, php-format
118
  msgid "Automate %1$s for all images"
119
  msgstr "Tornar o %1$s automático para todas as imagens"
120
 
121
- #: jquery-colorbox.php:554
122
  msgid "Automatically add colorbox-class to images in posts and pages. Also adds colorbox-class to galleries. Images in one page or post are grouped automatically."
123
  msgstr "Adicionar automaticamente a classe colorbox às imagens existentes em artigos, páginas e galerias. Múltiplas imagens em uma página são agrupadas automaticamente."
124
 
125
- #: jquery-colorbox.php:559
126
  #, php-format
127
  msgid "Automate %1$s for images in WordPress galleries"
128
  msgstr "Tornar o %1$s automático somente para imagens em galerias"
129
 
130
- #: jquery-colorbox.php:563
131
  msgid "Automatically add colorbox-class to images in WordPress galleries, but nowhere else. Images in one page or post are grouped automatically."
132
  msgstr "Adicionar automaticamente a classe colorbox somente às imagens existentes em galerias do Wordpress, e em mais nenhum outro lugar. Múltiplas imagens em uma página são agrupadas automaticamente."
133
 
134
- #: jquery-colorbox.php:568
135
  msgid "Add Slideshow to groups"
136
  msgstr "Adicionar Apresentação de Slides aos grupos"
137
 
138
- #: jquery-colorbox.php:572
139
  #, php-format
140
  msgid "Add Slideshow functionality for %1$s Groups"
141
  msgstr "Adicionar a funcionalidade de Apresentação de Slides aos grupos de imagens do %1$s"
142
 
143
- #: jquery-colorbox.php:577
144
  msgid "Start Slideshow automatically"
145
  msgstr "Iniciar Apresentação de Slides automaticamente"
146
 
147
- #: jquery-colorbox.php:581
148
  #, php-format
149
  msgid "Start Slideshow automatically if slideshow functionality is added to %1$s Groups"
150
  msgstr "Iniciar Apresentação de Slides automaticamente, caso essa funcionalidade seja adicionada aos grupos de imagens do %1$s"
151
 
152
- #: jquery-colorbox.php:586
153
  msgid "Speed of the slideshow"
154
  msgstr "Velocidade da Apresentação de Slides"
155
 
156
- #: jquery-colorbox.php:590
 
 
 
 
 
157
  msgid "Sets the speed of the slideshow, in milliseconds"
158
  msgstr "Define a velocidade da Apresentação de Slides, em milissegundos"
159
 
160
- #: jquery-colorbox.php:595
161
  msgid "Maximum width of an image"
162
  msgstr "Largura máxima de uma imagem"
163
 
164
- #: jquery-colorbox.php:599
165
- #: jquery-colorbox.php:645
166
  msgid "Do not set width"
167
  msgstr "Não definir a largura"
168
 
169
- #: jquery-colorbox.php:602
170
  msgid "Set maximum width of an image"
171
  msgstr "Definir a largura máxima de uma imagem"
172
 
173
- #: jquery-colorbox.php:613
174
  msgid "Set the maximum width of the image in the Colorbox in relation to the browser window in percent or pixels. If maximum width is not set, image is as wide as the Colorbox"
175
  msgstr "Defina, em porcentagem ou pixels, a largura máxima da imagem exibida pelo Colorbox em relação à janela do navegador. Se o valor máximo não for definido, a imagem terá a mesma largura do Colorbox"
176
 
177
- #: jquery-colorbox.php:618
178
  msgid "Maximum height of an image"
179
  msgstr "Altura máxima de uma imagem"
180
 
181
- #: jquery-colorbox.php:622
182
- #: jquery-colorbox.php:668
183
  msgid "Do not set height"
184
  msgstr "Não definir a altura"
185
 
186
- #: jquery-colorbox.php:625
187
  msgid "Set maximum height of an image"
188
  msgstr "Definir a altura máxima de uma imagem"
189
 
190
- #: jquery-colorbox.php:636
191
  msgid "Set the maximum height of the image in the Colorbox in relation to the browser window to a value in percent or pixels. If maximum height is not set, the image is as high as the Colorbox"
192
  msgstr "Defina, em porcentagem ou pixels, a altura máxima da imagem exibida pelo Colorbox em relação à janela do navegador. Se o valor máximo não for definido, a imagem terá a mesma altura do Colorbox"
193
 
194
- #: jquery-colorbox.php:641
195
  msgid "Maximum width of the Colorbox"
196
  msgstr "Largura máxima do Colorbox"
197
 
198
- #: jquery-colorbox.php:648
199
  msgid "Set width of the Colorbox"
200
  msgstr "Definir a largura máxima do Colorbox"
201
 
202
- #: jquery-colorbox.php:659
203
  msgid "Set the maximum width of the Colorbox itself in relation to the browser window to a value between in percent or pixels. If the image is bigger than the colorbox, scrollbars are displayed. If width is not set, the Colorbox will be as wide as the picture in it"
204
  msgstr "Defina, em porcentagem ou pixels, a largura máxima da própria janela do Colorbox em relação à janela do navegador. Se a imagem for maior que o Colorbox, barras de rolagem serão exibidas. Se o valor máximo não for definido, a janela do Colorbox terá a largura necessária para exibir a imagem"
205
 
206
- #: jquery-colorbox.php:664
207
  msgid "Maximum height of the Colorbox"
208
  msgstr "Altura máxima do Colorbox"
209
 
210
- #: jquery-colorbox.php:671
211
  msgid "Set height of the Colorbox"
212
  msgstr "Definir a altura máxima do Colorbox"
213
 
214
- #: jquery-colorbox.php:682
215
  msgid "Set the maximum height of the Colorbox itself in relation to the browser window to a value between in percent or pixels. If the image is bigger than the colorbox, scrollbars are displayed. If height is not set, the Colorbox will be as high as the picture in it"
216
  msgstr "Defina, em porcentagem ou pixels, a altura máxima da própria janela do Colorbox em relação à janela do navegador. Se a imagem for maior que o Colorbox, barras de rolagem serão exibidas. Se o valor máximo não for definido, a janela do Colorbox terá a altura necessária para exibir a imagem"
217
 
218
- #: jquery-colorbox.php:687
219
  msgid "Resize images"
220
  msgstr "Redimensionar imagens"
221
 
222
- #: jquery-colorbox.php:691
223
  msgid "If enabled and if maximum width of images, maximum height of images, width of the Colorbox, or height of the Colorbox have been defined, ColorBox will scale photos to fit within the those values"
224
  msgstr "Se esta opção for habilitada e se tiverem sido definidas altura e largura máximas das imagens, bem como altura e largura do Colorbox, as imagens serão redimensionadas para que caibam nas dimensões definidas"
225
 
226
- #: jquery-colorbox.php:696
227
  msgid "Close Colorbox on overlay click"
228
  msgstr "Fechar o Colorbox ao clicar sobre a camada de fundo"
229
 
230
- #: jquery-colorbox.php:700
231
  msgid "If checked, enables closing ColorBox by clicking on the background overlay"
232
  msgstr "Se esta opção for habilitada, o Colorbox será fechado ao se clicar sobre o plano de fundo"
233
 
234
- #: jquery-colorbox.php:705
235
  msgid "Preload images"
236
  msgstr "Pré-carregar imagens"
237
 
238
- #: jquery-colorbox.php:709
239
  msgid "Allows for preloading of \"next\" and \"previous\" content in a group, after the current content has finished loading. Uncheck box to disable."
240
  msgstr "Permite carregar em segundo plano o conteúdo \"próximo\" e \"anterior\", depois que o conteúdo atual já tiver sido carregado. Com isso, aproveita-se a conexão ociosa e o conteúdo já terá sido baixado quando iniciar a próxima transição."
241
 
242
- #: jquery-colorbox.php:714
243
  msgid "Transition type"
244
  msgstr "Tipo de transição"
245
 
246
- #: jquery-colorbox.php:726
247
  msgid "The transition type of the Colorbox. Can be set to \"elastic\", \"fade\", or \"none\""
248
  msgstr "O tipo de efeito usado nas transições do Colorbox. Pode ser definido como \"elástico\", \"esmaecer\", ou \"nenhuma\""
249
 
250
- #: jquery-colorbox.php:731
251
  msgid "Transition speed"
252
  msgstr "Velocidade da transição"
253
 
254
- #: jquery-colorbox.php:735
255
  msgid "Sets the speed of the \"fade\" and \"elastic\" transitions, in milliseconds"
256
  msgstr "Define a velocidade\tdas transições \"elástico\" e \"esmaecer\", em milissegundos"
257
 
258
- #: jquery-colorbox.php:740
259
  msgid "Opacity"
260
  msgstr "Opacidade"
261
 
262
- #: jquery-colorbox.php:744
263
  msgid "The overlay opacity level. Range: 0 to 1"
264
  msgstr "Define o nível de opacidade da camada de fundo. Variação: 0 até 1"
265
 
266
- #: jquery-colorbox.php:749
267
  msgid "Automate hiding of flash objects"
268
  msgstr "Ocultar objetos flash automaticamente"
269
 
270
- #: jquery-colorbox.php:753
271
  msgid "Automatically hide embeded flash objects behind the Colorbox layer. Done by setting the wmode to transparent."
272
  msgstr "Ocultar automaticamente objetos flash atrás da camada do Colorbox. É feito definindo wmode para transparente."
273
 
274
- #: jquery-colorbox.php:758
275
  msgid "Disable warning"
276
  msgstr "Desativar aviso"
277
 
278
- #: jquery-colorbox.php:762
279
  msgid "Disables the warning that is displayed if the plugin is activated but the auto-colorbox feature for all images is turned off."
280
  msgstr "Desativa o aviso que é exibido se o plugin estiver ativado mas a função Colorbox Automático para todas as imagens estiver desligada."
281
 
282
- #: jquery-colorbox.php:768
283
  msgid "Save Changes"
284
  msgstr "Salvar alterações"
285
 
286
- #: jquery-colorbox.php:777
287
- #: jquery-colorbox.php:786
288
  msgid "Delete Settings"
289
  msgstr "Excluir configurações"
290
 
291
- #: jquery-colorbox.php:780
292
  msgid "Check the box and click this button to delete settings of this plugin."
293
  msgstr "Marque a caixa de opção e depois clique no botão abaixo para excluir todas as configurações deste plug-in."
294
 
295
- #: jquery-colorbox.php:796
296
  msgid "Donate"
297
  msgstr "Doar"
298
 
299
- #: jquery-colorbox.php:810
300
  msgid "If you would like to make a small (or large) contribution towards future development please consider making a donation."
301
  msgstr "Se desejar contribuir (pouco ou muito) com o desenvolvimento futuro desse plug-in, você pode fazer uma doação."
302
 
303
- #: jquery-colorbox.php:819
304
  msgid "Translation"
305
  msgstr "Tradução"
306
 
307
- #: jquery-colorbox.php:822
308
  msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
309
  msgstr "A tradução para o Português do Brasil foi feita por <a href=\"http://www.twitter.com/gervasioantonio\">Gervásio Antônio</a>."
310
 
311
- #: jquery-colorbox.php:845
312
- #, php-format
313
- msgid "Successfully updated %1$s settings."
314
- msgstr "As configurações do %1$s foram atualizadas com sucesso."
315
-
316
- #: jquery-colorbox.php:847
317
- #, php-format
318
- msgid "%1$s settings were successfully deleted."
319
- msgstr "As configurações do %1$s foram excluídas com sucesso."
320
-
321
- #: jquery-colorbox.php:888
322
- msgid "needs attention: the plugin is not activated to work for all images."
323
- msgstr "requer atenção: o plugin não está configurado para trabalhar com todas as imagens."
324
-
325
- #: jquery-colorbox.php:948
326
- msgid "Did not update settings, you do not have the necessary rights."
327
- msgstr "As configurações não foram atualizadas. Você não possui as permissões necessárias."
328
-
329
- #: jquery-colorbox.php:995
330
- #, php-format
331
- msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
332
- msgstr "As configurações do %1$s não foram excluídas. Você não possui as permissões necessárias ou não marcou a opção 'Excluir configurações'."
333
-
334
  #~ msgid "maxWidth"
335
  #~ msgstr "Maximum width of an image"
 
336
  #~ msgid "maxHeight"
337
  #~ msgstr "Maximum height of an image"
 
338
  #~ msgid "width"
339
  #~ msgstr "Maxinmum width of the Colorbox"
 
340
  #~ msgid "height"
341
  #~ msgstr "Maximum height of the Colorbox"
342
-
2
  msgstr ""
3
  "Project-Id-Version: jQuery-Colorbox\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2010-04-12 19:55+0100\n"
6
+ "PO-Revision-Date: 2010-04-12 19:55+0100\n"
7
+ "Last-Translator: \n"
8
  "Language-Team: Gervásio Antônio\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "X-Poedit-Country: BRAZIL\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: jquery-colorbox.php:109
19
  msgid "Theme #1"
20
  msgstr "Tema #1"
21
 
22
+ #: jquery-colorbox.php:110
23
  msgid "Theme #2"
24
  msgstr "Tema #2"
25
 
26
+ #: jquery-colorbox.php:111
27
  msgid "Theme #3"
28
  msgstr "Tema #3"
29
 
30
+ #: jquery-colorbox.php:112
31
  msgid "Theme #4"
32
  msgstr "Tema #4"
33
 
34
+ #: jquery-colorbox.php:113
35
  msgid "Theme #5"
36
  msgstr "Tema #5"
37
 
38
+ #: jquery-colorbox.php:114
39
  msgid "Theme #6"
40
  msgstr "Tema #6"
41
 
42
+ #: jquery-colorbox.php:115
43
  msgid "Theme #7"
44
  msgstr "Tema #7"
45
 
46
+ #: jquery-colorbox.php:116
47
  msgid "Theme #8"
48
  msgstr "Tema #8"
49
 
50
+ #: jquery-colorbox.php:117
51
+ msgid "Theme #9"
52
+ msgstr "Tema #9"
53
+
54
+ #: jquery-colorbox.php:118
55
+ msgid "Theme #10"
56
+ msgstr "Tema #10"
57
+
58
+ #: jquery-colorbox.php:122
59
+ msgid "Theme #11"
60
+ msgstr "Tema #11"
61
+
62
+ #: jquery-colorbox.php:123
63
+ msgid "Theme #12"
64
+ msgstr "Tema #12"
65
+
66
+ #: jquery-colorbox.php:124
67
+ msgid "Theme #13"
68
+ msgstr "Tema #13"
69
+
70
+ #: jquery-colorbox.php:125
71
+ msgid "Theme #14"
72
+ msgstr "Tema #14"
73
+
74
+ #: jquery-colorbox.php:126
75
+ msgid "Theme #15"
76
+ msgstr "Tema #15"
77
+
78
+ #: jquery-colorbox.php:131
79
  msgid "percent"
80
  msgstr "%"
81
 
82
+ #: jquery-colorbox.php:132
83
  msgid "pixels"
84
  msgstr "pixels"
85
 
86
+ #: jquery-colorbox.php:137
87
  msgid "elastic"
88
  msgstr "elástico"
89
 
90
+ #: jquery-colorbox.php:138
91
  msgid "fade"
92
  msgstr "esmaecer"
93
 
94
+ #: jquery-colorbox.php:139
95
  msgid "none"
96
  msgstr "nenhuma"
97
 
98
+ #: jquery-colorbox.php:281
99
+ #: includes/settings-page.php:101
100
  msgid "Settings"
101
  msgstr "Configurações"
102
 
103
+ #: jquery-colorbox.php:344
104
+ #, php-format
105
+ msgid "Successfully updated %1$s settings."
106
+ msgstr "As configurações do %1$s foram atualizadas com sucesso."
107
+
108
+ #: jquery-colorbox.php:346
109
+ #, php-format
110
+ msgid "%1$s settings were successfully deleted."
111
+ msgstr "As configurações do %1$s foram excluídas com sucesso."
112
+
113
+ #: jquery-colorbox.php:387
114
+ msgid "needs attention: the plugin is not activated to work for all images."
115
+ msgstr "requer atenção: o plugin não está configurado para trabalhar com todas as imagens."
116
+
117
+ #: jquery-colorbox.php:447
118
+ msgid "Did not update settings, you do not have the necessary rights."
119
+ msgstr "As configurações não foram atualizadas. Você não possui as permissões necessárias."
120
+
121
+ #: jquery-colorbox.php:494
122
+ #, php-format
123
+ msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
124
+ msgstr "As configurações do %1$s não foram excluídas. Você não possui as permissões necessárias ou não marcou a opção 'Excluir configurações'."
125
+
126
+ #: includes/colorbox-javascript.php:53
127
  msgid "close"
128
  msgstr "fechar"
129
 
130
+ #: includes/colorbox-javascript.php:54
131
  msgid "next"
132
  msgstr "próxima"
133
 
134
+ #: includes/colorbox-javascript.php:55
135
  msgid "previous"
136
  msgstr "anterior"
137
 
138
+ #: includes/colorbox-javascript.php:56
139
  msgid "start slideshow"
140
  msgstr "iniciar apresentação"
141
 
142
+ #: includes/colorbox-javascript.php:57
143
  msgid "stop slideshow"
144
  msgstr "parar apresentação"
145
 
146
+ #: includes/colorbox-javascript.php:58
147
  msgid "{current} of {total} images"
148
  msgstr "Imagem {current} de {total}"
149
 
150
+ #: includes/settings-page.php:94
151
  #, php-format
152
  msgid "%1$s Settings"
153
  msgstr "Configurações do %1$s"
154
 
155
+ #: includes/settings-page.php:110
156
  msgid "Theme"
157
  msgstr "Tema"
158
 
159
+ #: includes/settings-page.php:122
160
  msgid "Select the theme you want to use on your blog."
161
  msgstr "Selecione o tema que você deseja usar em seu site."
162
 
163
+ #: includes/settings-page.php:127
164
  msgid "Theme screenshot"
165
  msgstr "Amostra do tema"
166
 
167
+ #: includes/settings-page.php:137
168
  #, php-format
169
  msgid "Automate %1$s for all images"
170
  msgstr "Tornar o %1$s automático para todas as imagens"
171
 
172
+ #: includes/settings-page.php:141
173
  msgid "Automatically add colorbox-class to images in posts and pages. Also adds colorbox-class to galleries. Images in one page or post are grouped automatically."
174
  msgstr "Adicionar automaticamente a classe colorbox às imagens existentes em artigos, páginas e galerias. Múltiplas imagens em uma página são agrupadas automaticamente."
175
 
176
+ #: includes/settings-page.php:146
177
  #, php-format
178
  msgid "Automate %1$s for images in WordPress galleries"
179
  msgstr "Tornar o %1$s automático somente para imagens em galerias"
180
 
181
+ #: includes/settings-page.php:150
182
  msgid "Automatically add colorbox-class to images in WordPress galleries, but nowhere else. Images in one page or post are grouped automatically."
183
  msgstr "Adicionar automaticamente a classe colorbox somente às imagens existentes em galerias do Wordpress, e em mais nenhum outro lugar. Múltiplas imagens em uma página são agrupadas automaticamente."
184
 
185
+ #: includes/settings-page.php:155
186
  msgid "Add Slideshow to groups"
187
  msgstr "Adicionar Apresentação de Slides aos grupos"
188
 
189
+ #: includes/settings-page.php:159
190
  #, php-format
191
  msgid "Add Slideshow functionality for %1$s Groups"
192
  msgstr "Adicionar a funcionalidade de Apresentação de Slides aos grupos de imagens do %1$s"
193
 
194
+ #: includes/settings-page.php:164
195
  msgid "Start Slideshow automatically"
196
  msgstr "Iniciar Apresentação de Slides automaticamente"
197
 
198
+ #: includes/settings-page.php:168
199
  #, php-format
200
  msgid "Start Slideshow automatically if slideshow functionality is added to %1$s Groups"
201
  msgstr "Iniciar Apresentação de Slides automaticamente, caso essa funcionalidade seja adicionada aos grupos de imagens do %1$s"
202
 
203
+ #: includes/settings-page.php:173
204
  msgid "Speed of the slideshow"
205
  msgstr "Velocidade da Apresentação de Slides"
206
 
207
+ #: includes/settings-page.php:176
208
+ #: includes/settings-page.php:321
209
+ msgid "milliseconds"
210
+ msgstr "milissegundos"
211
+
212
+ #: includes/settings-page.php:177
213
  msgid "Sets the speed of the slideshow, in milliseconds"
214
  msgstr "Define a velocidade da Apresentação de Slides, em milissegundos"
215
 
216
+ #: includes/settings-page.php:182
217
  msgid "Maximum width of an image"
218
  msgstr "Largura máxima de uma imagem"
219
 
220
+ #: includes/settings-page.php:186
221
+ #: includes/settings-page.php:232
222
  msgid "Do not set width"
223
  msgstr "Não definir a largura"
224
 
225
+ #: includes/settings-page.php:189
226
  msgid "Set maximum width of an image"
227
  msgstr "Definir a largura máxima de uma imagem"
228
 
229
+ #: includes/settings-page.php:200
230
  msgid "Set the maximum width of the image in the Colorbox in relation to the browser window in percent or pixels. If maximum width is not set, image is as wide as the Colorbox"
231
  msgstr "Defina, em porcentagem ou pixels, a largura máxima da imagem exibida pelo Colorbox em relação à janela do navegador. Se o valor máximo não for definido, a imagem terá a mesma largura do Colorbox"
232
 
233
+ #: includes/settings-page.php:205
234
  msgid "Maximum height of an image"
235
  msgstr "Altura máxima de uma imagem"
236
 
237
+ #: includes/settings-page.php:209
238
+ #: includes/settings-page.php:255
239
  msgid "Do not set height"
240
  msgstr "Não definir a altura"
241
 
242
+ #: includes/settings-page.php:212
243
  msgid "Set maximum height of an image"
244
  msgstr "Definir a altura máxima de uma imagem"
245
 
246
+ #: includes/settings-page.php:223
247
  msgid "Set the maximum height of the image in the Colorbox in relation to the browser window to a value in percent or pixels. If maximum height is not set, the image is as high as the Colorbox"
248
  msgstr "Defina, em porcentagem ou pixels, a altura máxima da imagem exibida pelo Colorbox em relação à janela do navegador. Se o valor máximo não for definido, a imagem terá a mesma altura do Colorbox"
249
 
250
+ #: includes/settings-page.php:228
251
  msgid "Maximum width of the Colorbox"
252
  msgstr "Largura máxima do Colorbox"
253
 
254
+ #: includes/settings-page.php:235
255
  msgid "Set width of the Colorbox"
256
  msgstr "Definir a largura máxima do Colorbox"
257
 
258
+ #: includes/settings-page.php:246
259
  msgid "Set the maximum width of the Colorbox itself in relation to the browser window to a value between in percent or pixels. If the image is bigger than the colorbox, scrollbars are displayed. If width is not set, the Colorbox will be as wide as the picture in it"
260
  msgstr "Defina, em porcentagem ou pixels, a largura máxima da própria janela do Colorbox em relação à janela do navegador. Se a imagem for maior que o Colorbox, barras de rolagem serão exibidas. Se o valor máximo não for definido, a janela do Colorbox terá a largura necessária para exibir a imagem"
261
 
262
+ #: includes/settings-page.php:251
263
  msgid "Maximum height of the Colorbox"
264
  msgstr "Altura máxima do Colorbox"
265
 
266
+ #: includes/settings-page.php:258
267
  msgid "Set height of the Colorbox"
268
  msgstr "Definir a altura máxima do Colorbox"
269
 
270
+ #: includes/settings-page.php:269
271
  msgid "Set the maximum height of the Colorbox itself in relation to the browser window to a value between in percent or pixels. If the image is bigger than the colorbox, scrollbars are displayed. If height is not set, the Colorbox will be as high as the picture in it"
272
  msgstr "Defina, em porcentagem ou pixels, a altura máxima da própria janela do Colorbox em relação à janela do navegador. Se a imagem for maior que o Colorbox, barras de rolagem serão exibidas. Se o valor máximo não for definido, a janela do Colorbox terá a altura necessária para exibir a imagem"
273
 
274
+ #: includes/settings-page.php:274
275
  msgid "Resize images"
276
  msgstr "Redimensionar imagens"
277
 
278
+ #: includes/settings-page.php:278
279
  msgid "If enabled and if maximum width of images, maximum height of images, width of the Colorbox, or height of the Colorbox have been defined, ColorBox will scale photos to fit within the those values"
280
  msgstr "Se esta opção for habilitada e se tiverem sido definidas altura e largura máximas das imagens, bem como altura e largura do Colorbox, as imagens serão redimensionadas para que caibam nas dimensões definidas"
281
 
282
+ #: includes/settings-page.php:283
283
  msgid "Close Colorbox on overlay click"
284
  msgstr "Fechar o Colorbox ao clicar sobre a camada de fundo"
285
 
286
+ #: includes/settings-page.php:287
287
  msgid "If checked, enables closing ColorBox by clicking on the background overlay"
288
  msgstr "Se esta opção for habilitada, o Colorbox será fechado ao se clicar sobre o plano de fundo"
289
 
290
+ #: includes/settings-page.php:292
291
  msgid "Preload images"
292
  msgstr "Pré-carregar imagens"
293
 
294
+ #: includes/settings-page.php:296
295
  msgid "Allows for preloading of \"next\" and \"previous\" content in a group, after the current content has finished loading. Uncheck box to disable."
296
  msgstr "Permite carregar em segundo plano o conteúdo \"próximo\" e \"anterior\", depois que o conteúdo atual já tiver sido carregado. Com isso, aproveita-se a conexão ociosa e o conteúdo já terá sido baixado quando iniciar a próxima transição."
297
 
298
+ #: includes/settings-page.php:301
299
  msgid "Transition type"
300
  msgstr "Tipo de transição"
301
 
302
+ #: includes/settings-page.php:313
303
  msgid "The transition type of the Colorbox. Can be set to \"elastic\", \"fade\", or \"none\""
304
  msgstr "O tipo de efeito usado nas transições do Colorbox. Pode ser definido como \"elástico\", \"esmaecer\", ou \"nenhuma\""
305
 
306
+ #: includes/settings-page.php:318
307
  msgid "Transition speed"
308
  msgstr "Velocidade da transição"
309
 
310
+ #: includes/settings-page.php:322
311
  msgid "Sets the speed of the \"fade\" and \"elastic\" transitions, in milliseconds"
312
  msgstr "Define a velocidade\tdas transições \"elástico\" e \"esmaecer\", em milissegundos"
313
 
314
+ #: includes/settings-page.php:327
315
  msgid "Opacity"
316
  msgstr "Opacidade"
317
 
318
+ #: includes/settings-page.php:331
319
  msgid "The overlay opacity level. Range: 0 to 1"
320
  msgstr "Define o nível de opacidade da camada de fundo. Variação: 0 até 1"
321
 
322
+ #: includes/settings-page.php:336
323
  msgid "Automate hiding of flash objects"
324
  msgstr "Ocultar objetos flash automaticamente"
325
 
326
+ #: includes/settings-page.php:340
327
  msgid "Automatically hide embeded flash objects behind the Colorbox layer. Done by setting the wmode to transparent."
328
  msgstr "Ocultar automaticamente objetos flash atrás da camada do Colorbox. É feito definindo wmode para transparente."
329
 
330
+ #: includes/settings-page.php:345
331
  msgid "Disable warning"
332
  msgstr "Desativar aviso"
333
 
334
+ #: includes/settings-page.php:349
335
  msgid "Disables the warning that is displayed if the plugin is activated but the auto-colorbox feature for all images is turned off."
336
  msgstr "Desativa o aviso que é exibido se o plugin estiver ativado mas a função Colorbox Automático para todas as imagens estiver desligada."
337
 
338
+ #: includes/settings-page.php:355
339
  msgid "Save Changes"
340
  msgstr "Salvar alterações"
341
 
342
+ #: includes/settings-page.php:364
343
+ #: includes/settings-page.php:373
344
  msgid "Delete Settings"
345
  msgstr "Excluir configurações"
346
 
347
+ #: includes/settings-page.php:367
348
  msgid "Check the box and click this button to delete settings of this plugin."
349
  msgstr "Marque a caixa de opção e depois clique no botão abaixo para excluir todas as configurações deste plug-in."
350
 
351
+ #: includes/settings-page.php:383
352
  msgid "Donate"
353
  msgstr "Doar"
354
 
355
+ #: includes/settings-page.php:397
356
  msgid "If you would like to make a small (or large) contribution towards future development please consider making a donation."
357
  msgstr "Se desejar contribuir (pouco ou muito) com o desenvolvimento futuro desse plug-in, você pode fazer uma doação."
358
 
359
+ #: includes/settings-page.php:406
360
  msgid "Translation"
361
  msgstr "Tradução"
362
 
363
+ #: includes/settings-page.php:409
364
  msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
365
  msgstr "A tradução para o Português do Brasil foi feita por <a href=\"http://www.twitter.com/gervasioantonio\">Gervásio Antônio</a>."
366
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
367
  #~ msgid "maxWidth"
368
  #~ msgstr "Maximum width of an image"
369
+
370
  #~ msgid "maxHeight"
371
  #~ msgstr "Maximum height of an image"
372
+
373
  #~ msgid "width"
374
  #~ msgstr "Maxinmum width of the Colorbox"
375
+
376
  #~ msgid "height"
377
  #~ msgstr "Maximum height of the Colorbox"
 
localization/jquery-colorbox-tr_TR.mo CHANGED
Binary file
localization/jquery-colorbox-tr_TR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: jQuery-Colorbox\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-04-04 14:21+0100\n"
6
- "PO-Revision-Date: 2010-04-04 14:21+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Serhat Yolaçan\n"
9
  "MIME-Version: 1.0\n"
@@ -15,326 +15,355 @@ msgstr ""
15
  "X-Poedit-Country: TURKEY\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: jquery-colorbox.php:116
19
  msgid "Theme #1"
20
  msgstr "Tema #1"
21
 
22
- #: jquery-colorbox.php:117
23
  msgid "Theme #2"
24
  msgstr "Tema #2"
25
 
26
- #: jquery-colorbox.php:118
27
  msgid "Theme #3"
28
  msgstr "Tema #3"
29
 
30
- #: jquery-colorbox.php:119
31
  msgid "Theme #4"
32
  msgstr "Tema #4"
33
 
34
- #: jquery-colorbox.php:120
35
  msgid "Theme #5"
36
  msgstr "Tema #5"
37
 
38
- #: jquery-colorbox.php:121
39
  msgid "Theme #6"
40
  msgstr "Tema #6"
41
 
42
- #: jquery-colorbox.php:122
43
  msgid "Theme #7"
44
  msgstr "Tema #7"
45
 
46
- #: jquery-colorbox.php:123
47
  msgid "Theme #8"
48
  msgstr "Tema #8"
49
 
50
- #: jquery-colorbox.php:124
51
  msgid "Theme #9"
52
  msgstr "Tema #9"
53
 
54
- #: jquery-colorbox.php:129
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
55
  msgid "percent"
56
  msgstr "yüzde"
57
 
58
- #: jquery-colorbox.php:130
59
  msgid "pixels"
60
  msgstr "piksel"
61
 
62
- #: jquery-colorbox.php:135
63
  msgid "elastic"
64
  msgstr "elastik"
65
 
66
- #: jquery-colorbox.php:136
67
  msgid "fade"
68
  msgstr "solma"
69
 
70
- #: jquery-colorbox.php:137
71
  msgid "none"
72
  msgstr "hiçbiri"
73
 
74
- #: jquery-colorbox.php:268
75
- #: jquery-colorbox.php:515
76
  msgid "Settings"
77
  msgstr "Ayarlar"
78
 
 
 
 
 
 
 
 
 
 
 
79
  #: jquery-colorbox.php:387
 
 
 
 
 
 
 
 
 
 
 
 
 
80
  msgid "close"
81
  msgstr "kapat"
82
 
83
- #: jquery-colorbox.php:388
84
  msgid "next"
85
  msgstr "ileri"
86
 
87
- #: jquery-colorbox.php:389
88
  msgid "previous"
89
  msgstr "geri"
90
 
91
- #: jquery-colorbox.php:390
92
  msgid "start slideshow"
93
  msgstr "slayt gösterisi başlat"
94
 
95
- #: jquery-colorbox.php:391
96
  msgid "stop slideshow"
97
  msgstr "slayt gösterisini durdur"
98
 
99
- #: jquery-colorbox.php:392
100
  msgid "{current} of {total} images"
101
  msgstr "{current} / {total}"
102
 
103
- #: jquery-colorbox.php:508
104
  #, php-format
105
  msgid "%1$s Settings"
106
  msgstr "%1$s Ayarları"
107
 
108
- #: jquery-colorbox.php:524
109
  msgid "Theme"
110
  msgstr "Tema"
111
 
112
- #: jquery-colorbox.php:536
113
  msgid "Select the theme you want to use on your blog."
114
  msgstr "Blogunuzda kullanmak istediğiniz temayı seçiniz."
115
 
116
- #: jquery-colorbox.php:541
117
  msgid "Theme screenshot"
118
  msgstr "Tema önizleme"
119
 
120
- #: jquery-colorbox.php:551
121
  #, php-format
122
  msgid "Automate %1$s for all images"
123
  msgstr "Tüm resimlerde %1$s kullan"
124
 
125
- #: jquery-colorbox.php:555
126
  msgid "Automatically add colorbox-class to images in posts and pages. Also adds colorbox-class to galleries. Images in one page or post are grouped automatically."
127
  msgstr "Yazılardaki ve sayfalardaki resimlere otomatik olarak colorbox-sınıfı ekler. Galerilere de colorbox-sınıfı ekler. Yazı yada sayfadaki resimleri otomatik olarak gruplandırır."
128
 
129
- #: jquery-colorbox.php:560
130
  #, php-format
131
  msgid "Automate %1$s for images in WordPress galleries"
132
  msgstr "Wordpress galerilerine otomatik olarak %1$s ekleyin"
133
 
134
- #: jquery-colorbox.php:564
135
  msgid "Automatically add colorbox-class to images in WordPress galleries, but nowhere else. Images in one page or post are grouped automatically."
136
  msgstr "Wordpress galerilerindeki resimlere otomatik olarak colorbox-sınıfı ekler fakat başka yere eklemez. Yazı yada sayfadaki resimler otomatik olarak gruplandırılır."
137
 
138
- #: jquery-colorbox.php:569
139
  msgid "Add Slideshow to groups"
140
  msgstr "Gruplara slayt gösterisi ekle"
141
 
142
- #: jquery-colorbox.php:573
143
  #, php-format
144
  msgid "Add Slideshow functionality for %1$s Groups"
145
  msgstr "Slayt gösterisi fonksiyonunu %1$s gruplarına ekler."
146
 
147
- #: jquery-colorbox.php:578
148
  msgid "Start Slideshow automatically"
149
  msgstr "Slayt gösterisini otomatik olarak başlat"
150
 
151
- #: jquery-colorbox.php:582
152
  #, php-format
153
  msgid "Start Slideshow automatically if slideshow functionality is added to %1$s Groups"
154
  msgstr "Eğer slayt gösterisi fonksiyonu %1$s gruplarına eklenmişse, slayt gösterisini otomatik olarak başlatır."
155
 
156
- #: jquery-colorbox.php:587
157
  msgid "Speed of the slideshow"
158
  msgstr "Slayt gösterisi hızı"
159
 
160
- #: jquery-colorbox.php:591
 
 
 
 
 
161
  msgid "Sets the speed of the slideshow, in milliseconds"
162
  msgstr "Slayt gösterisinin hızını milisaniye cinsinden belirleyin"
163
 
164
- #: jquery-colorbox.php:596
165
  msgid "Maximum width of an image"
166
  msgstr "Maksimum resim genişliği"
167
 
168
- #: jquery-colorbox.php:600
169
- #: jquery-colorbox.php:646
170
  msgid "Do not set width"
171
  msgstr "Genişlik ayarlarma"
172
 
173
- #: jquery-colorbox.php:603
174
  msgid "Set maximum width of an image"
175
  msgstr "Resimler için maksimum genişlik değeri belirleyin"
176
 
177
- #: jquery-colorbox.php:614
178
  msgid "Set the maximum width of the image in the Colorbox in relation to the browser window in percent or pixels. If maximum width is not set, image is as wide as the Colorbox"
179
  msgstr "Tarayıcı penceresinde çıkan Colorbox içindeki resimler için yüzde yada piksel değeri belirtin. Eğer maksimum genişlik belirtilmezse resim Colorbox genişliği kadar görünür. Eğer maksimum genişlik belirtilmezse resim Colorbox genişliği kadar görünür"
180
 
181
- #: jquery-colorbox.php:619
182
  msgid "Maximum height of an image"
183
  msgstr "Maksimum resim yüksekliği"
184
 
185
- #: jquery-colorbox.php:623
186
- #: jquery-colorbox.php:669
187
  msgid "Do not set height"
188
  msgstr "Yükseklik ayarlarma"
189
 
190
- #: jquery-colorbox.php:626
191
  msgid "Set maximum height of an image"
192
  msgstr "Resimler için maksimum yükseklik değeri belirleyin"
193
 
194
- #: jquery-colorbox.php:637
195
  msgid "Set the maximum height of the image in the Colorbox in relation to the browser window to a value in percent or pixels. If maximum height is not set, the image is as high as the Colorbox"
196
  msgstr "Tarayıcı penceresinde çıkan Colorbox içindeki resimler için yüzde yada piksel değeri belirtin. Eğer maksimum yükseklik belirtilmezse resim Colorbox yüksekliği kadar görünür. Eğer yükseklik belirtilmezse Colorbox resim kadar yüksek olur"
197
 
198
- #: jquery-colorbox.php:642
199
  msgid "Maximum width of the Colorbox"
200
  msgstr "Colorbox maksimum genişliği"
201
 
202
- #: jquery-colorbox.php:649
203
  msgid "Set width of the Colorbox"
204
  msgstr "Colorbox için genişlik belirleyin"
205
 
206
- #: jquery-colorbox.php:660
207
  msgid "Set the maximum width of the Colorbox itself in relation to the browser window to a value between in percent or pixels. If the image is bigger than the colorbox, scrollbars are displayed. If width is not set, the Colorbox will be as wide as the picture in it"
208
  msgstr "Tarayıcı penceresinde çıkan Colorbox'ın maksimum genişliği için yüzde ve piksel değeri belirtin. Eğer resim Colorbox'tan büyükse, kaydırma çubukları çıkar. Eğer genişlik belirtilmezse Colorbox resim kadar geniş olur"
209
 
210
- #: jquery-colorbox.php:665
211
  msgid "Maximum height of the Colorbox"
212
  msgstr "Colorbox maksimum yüksekliği"
213
 
214
- #: jquery-colorbox.php:672
215
  msgid "Set height of the Colorbox"
216
  msgstr "Colorbox için yükseklik belirleyin"
217
 
218
- #: jquery-colorbox.php:683
219
  msgid "Set the maximum height of the Colorbox itself in relation to the browser window to a value between in percent or pixels. If the image is bigger than the colorbox, scrollbars are displayed. If height is not set, the Colorbox will be as high as the picture in it"
220
  msgstr "Tarayıcı penceresinde çıkan Colorbox'ın maksimum yüksekliği için yüzde ve piksel değeri belirtin. Eğer resim Colorbox'tan büyükse, kaydırma çubukları çıkar. Eğer yükseklik belirtilmezse Colorbox resim kadar yüksek olur"
221
 
222
- #: jquery-colorbox.php:688
223
  msgid "Resize images"
224
  msgstr "Resimleri tekrar boyutlandır"
225
 
226
- #: jquery-colorbox.php:692
227
  msgid "If enabled and if maximum width of images, maximum height of images, width of the Colorbox, or height of the Colorbox have been defined, ColorBox will scale photos to fit within the those values"
228
  msgstr "Eğer aktifse, resimlerin maksimum genişliği ile yüksekliği ve Colorbox maksimum yüksekliği ile genişliği belirliyse, Colorbox resimleri bu değerlere ölçekler"
229
 
230
- #: jquery-colorbox.php:697
231
  msgid "Close Colorbox on overlay click"
232
  msgstr "Katmana tıklandığında Colorbox kapat"
233
 
234
- #: jquery-colorbox.php:701
235
  msgid "If checked, enables closing ColorBox by clicking on the background overlay"
236
  msgstr "Eğer aktifse, arka plandaki katmana tıklandığında Colorbox'ın kapanmasını sağlar"
237
 
238
- #: jquery-colorbox.php:706
239
  msgid "Preload images"
240
  msgstr "Resimleri önceden yükle"
241
 
242
- #: jquery-colorbox.php:710
243
  msgid "Allows for preloading of \"next\" and \"previous\" content in a group, after the current content has finished loading. Uncheck box to disable."
244
  msgstr "Görüntülenen içeriğin yüklenmesi bittikten sonra, gruptaki \"ileri\" ve \"geri\" içeriğini önceden yükler. Bu sayede galerideki resimler arasında hızlıca geçiş yapılabilir ancak galeride büyük resimler varsa yada çok resim bulunuyorsa yüklenmesi uzun sürecektir. Aktif olmaması için kutucuğu boş bırakın"
245
 
246
- #: jquery-colorbox.php:715
247
  msgid "Transition type"
248
  msgstr "Geçiş tipi"
249
 
250
- #: jquery-colorbox.php:727
251
  msgid "The transition type of the Colorbox. Can be set to \"elastic\", \"fade\", or \"none\""
252
  msgstr "Colorbox geçiş tipidir. \"elastik\", \"solma\" ya da \"hiçbiri\" seçilebilir"
253
 
254
- #: jquery-colorbox.php:732
255
  msgid "Transition speed"
256
  msgstr "Geçiş hızı"
257
 
258
- #: jquery-colorbox.php:736
259
  msgid "Sets the speed of the \"fade\" and \"elastic\" transitions, in milliseconds"
260
  msgstr "\"solma\" ve \"elastik\" geçiş hızını milisaniye cinsinden ayarlar"
261
 
262
- #: jquery-colorbox.php:741
263
  msgid "Opacity"
264
  msgstr "Şeffaflık"
265
 
266
- #: jquery-colorbox.php:745
267
  msgid "The overlay opacity level. Range: 0 to 1"
268
  msgstr "Katmanın şeffaflık seviyesi. Aralık: 0 ile 1 arasındadır"
269
 
270
- #: jquery-colorbox.php:750
271
  msgid "Automate hiding of flash objects"
272
  msgstr "Flash objelerini otomatik gizle"
273
 
274
- #: jquery-colorbox.php:754
275
  msgid "Automatically hide embeded flash objects behind the Colorbox layer. Done by setting the wmode to transparent."
276
  msgstr "Colorbox katmanının arkasındaki flash objelerini otomatik olarak gizler. wmode parametresine transparent değeri atar."
277
 
278
- #: jquery-colorbox.php:759
279
  msgid "Disable warning"
280
  msgstr "Uyarıyı kapat"
281
 
282
- #: jquery-colorbox.php:763
283
  msgid "Disables the warning that is displayed if the plugin is activated but the auto-colorbox feature for all images is turned off."
284
  msgstr "Bu seçenek ile eklenti aktifleştirildikten sonra tüm resimlere otomatik olarak colorbox ekleme seçeneği kapalıysa yönetici panelinde çıkan uyarıyı gizleyebilirsiniz."
285
 
286
- #: jquery-colorbox.php:769
287
  msgid "Save Changes"
288
  msgstr "Değişiklikleri kaydet"
289
 
290
- #: jquery-colorbox.php:778
291
- #: jquery-colorbox.php:787
292
  msgid "Delete Settings"
293
  msgstr "Ayarları sıfırlayın"
294
 
295
- #: jquery-colorbox.php:781
296
  msgid "Check the box and click this button to delete settings of this plugin."
297
  msgstr "Bu eklentinin ayarlarını sıfırlamak için kutucuğu doldurup yanındaki butona tıklayın."
298
 
299
- #: jquery-colorbox.php:797
300
  msgid "Donate"
301
  msgstr "Bağış yapın"
302
 
303
- #: jquery-colorbox.php:811
304
  msgid "If you would like to make a small (or large) contribution towards future development please consider making a donation."
305
  msgstr "Gelecek sürümler için az (yada fazla) farketmez, bağış yapmaktan çekinmeyin."
306
 
307
- #: jquery-colorbox.php:820
308
  msgid "Translation"
309
  msgstr "Çeviri"
310
 
311
- #: jquery-colorbox.php:823
312
  msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
313
  msgstr "Türkçe çeviri <a href=\"http://www.serhatyolacan.com\">Serhat Yolaçan</a> tarafından yapılmıştır."
314
 
315
- #: jquery-colorbox.php:846
316
- #, php-format
317
- msgid "Successfully updated %1$s settings."
318
- msgstr "%1$s ayarları başarılıyla güncellendi."
319
-
320
- #: jquery-colorbox.php:848
321
- #, php-format
322
- msgid "%1$s settings were successfully deleted."
323
- msgstr "%1$s ayarları başarıyla silindi."
324
-
325
- #: jquery-colorbox.php:889
326
- msgid "needs attention: the plugin is not activated to work for all images."
327
- msgstr "uyarısı: Eklenti tüm resimlerde çalışmak için ayarlanmamış."
328
-
329
- #: jquery-colorbox.php:949
330
- msgid "Did not update settings, you do not have the necessary rights."
331
- msgstr "Ayarları güncelleyemedim, gerekli yetkilere sahip değilsin."
332
-
333
- #: jquery-colorbox.php:996
334
- #, php-format
335
- msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
336
- msgstr "%1$s ayarlarını sıfırlayamadım. Ya gerekli yetkilere sahip değilsin yada kutucuğu doldurmadın."
337
-
338
  #~ msgid "maxWidth"
339
  #~ msgstr "Maximum width of an image"
340
 
2
  msgstr ""
3
  "Project-Id-Version: jQuery-Colorbox\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2010-04-12 19:56+0100\n"
6
+ "PO-Revision-Date: 2010-04-12 19:56+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Serhat Yolaçan\n"
9
  "MIME-Version: 1.0\n"
15
  "X-Poedit-Country: TURKEY\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: jquery-colorbox.php:109
19
  msgid "Theme #1"
20
  msgstr "Tema #1"
21
 
22
+ #: jquery-colorbox.php:110
23
  msgid "Theme #2"
24
  msgstr "Tema #2"
25
 
26
+ #: jquery-colorbox.php:111
27
  msgid "Theme #3"
28
  msgstr "Tema #3"
29
 
30
+ #: jquery-colorbox.php:112
31
  msgid "Theme #4"
32
  msgstr "Tema #4"
33
 
34
+ #: jquery-colorbox.php:113
35
  msgid "Theme #5"
36
  msgstr "Tema #5"
37
 
38
+ #: jquery-colorbox.php:114
39
  msgid "Theme #6"
40
  msgstr "Tema #6"
41
 
42
+ #: jquery-colorbox.php:115
43
  msgid "Theme #7"
44
  msgstr "Tema #7"
45
 
46
+ #: jquery-colorbox.php:116
47
  msgid "Theme #8"
48
  msgstr "Tema #8"
49
 
50
+ #: jquery-colorbox.php:117
51
  msgid "Theme #9"
52
  msgstr "Tema #9"
53
 
54
+ #: jquery-colorbox.php:118
55
+ msgid "Theme #10"
56
+ msgstr "Tema #10"
57
+
58
+ #: jquery-colorbox.php:122
59
+ msgid "Theme #11"
60
+ msgstr "Tema #11"
61
+
62
+ #: jquery-colorbox.php:123
63
+ msgid "Theme #12"
64
+ msgstr "Tema #12"
65
+
66
+ #: jquery-colorbox.php:124
67
+ msgid "Theme #13"
68
+ msgstr "Tema #13"
69
+
70
+ #: jquery-colorbox.php:125
71
+ msgid "Theme #14"
72
+ msgstr "Tema #14"
73
+
74
+ #: jquery-colorbox.php:126
75
+ msgid "Theme #15"
76
+ msgstr "Tema #15"
77
+
78
+ #: jquery-colorbox.php:131
79
  msgid "percent"
80
  msgstr "yüzde"
81
 
82
+ #: jquery-colorbox.php:132
83
  msgid "pixels"
84
  msgstr "piksel"
85
 
86
+ #: jquery-colorbox.php:137
87
  msgid "elastic"
88
  msgstr "elastik"
89
 
90
+ #: jquery-colorbox.php:138
91
  msgid "fade"
92
  msgstr "solma"
93
 
94
+ #: jquery-colorbox.php:139
95
  msgid "none"
96
  msgstr "hiçbiri"
97
 
98
+ #: jquery-colorbox.php:281
99
+ #: includes/settings-page.php:101
100
  msgid "Settings"
101
  msgstr "Ayarlar"
102
 
103
+ #: jquery-colorbox.php:344
104
+ #, php-format
105
+ msgid "Successfully updated %1$s settings."
106
+ msgstr "%1$s ayarları başarılıyla güncellendi."
107
+
108
+ #: jquery-colorbox.php:346
109
+ #, php-format
110
+ msgid "%1$s settings were successfully deleted."
111
+ msgstr "%1$s ayarları başarıyla silindi."
112
+
113
  #: jquery-colorbox.php:387
114
+ msgid "needs attention: the plugin is not activated to work for all images."
115
+ msgstr "uyarısı: Eklenti tüm resimlerde çalışmak için ayarlanmamış."
116
+
117
+ #: jquery-colorbox.php:447
118
+ msgid "Did not update settings, you do not have the necessary rights."
119
+ msgstr "Ayarları güncelleyemedim, gerekli yetkilere sahip değilsin."
120
+
121
+ #: jquery-colorbox.php:494
122
+ #, php-format
123
+ msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
124
+ msgstr "%1$s ayarlarını sıfırlayamadım. Ya gerekli yetkilere sahip değilsin yada kutucuğu doldurmadın."
125
+
126
+ #: includes/colorbox-javascript.php:53
127
  msgid "close"
128
  msgstr "kapat"
129
 
130
+ #: includes/colorbox-javascript.php:54
131
  msgid "next"
132
  msgstr "ileri"
133
 
134
+ #: includes/colorbox-javascript.php:55
135
  msgid "previous"
136
  msgstr "geri"
137
 
138
+ #: includes/colorbox-javascript.php:56
139
  msgid "start slideshow"
140
  msgstr "slayt gösterisi başlat"
141
 
142
+ #: includes/colorbox-javascript.php:57
143
  msgid "stop slideshow"
144
  msgstr "slayt gösterisini durdur"
145
 
146
+ #: includes/colorbox-javascript.php:58
147
  msgid "{current} of {total} images"
148
  msgstr "{current} / {total}"
149
 
150
+ #: includes/settings-page.php:94
151
  #, php-format
152
  msgid "%1$s Settings"
153
  msgstr "%1$s Ayarları"
154
 
155
+ #: includes/settings-page.php:110
156
  msgid "Theme"
157
  msgstr "Tema"
158
 
159
+ #: includes/settings-page.php:122
160
  msgid "Select the theme you want to use on your blog."
161
  msgstr "Blogunuzda kullanmak istediğiniz temayı seçiniz."
162
 
163
+ #: includes/settings-page.php:127
164
  msgid "Theme screenshot"
165
  msgstr "Tema önizleme"
166
 
167
+ #: includes/settings-page.php:137
168
  #, php-format
169
  msgid "Automate %1$s for all images"
170
  msgstr "Tüm resimlerde %1$s kullan"
171
 
172
+ #: includes/settings-page.php:141
173
  msgid "Automatically add colorbox-class to images in posts and pages. Also adds colorbox-class to galleries. Images in one page or post are grouped automatically."
174
  msgstr "Yazılardaki ve sayfalardaki resimlere otomatik olarak colorbox-sınıfı ekler. Galerilere de colorbox-sınıfı ekler. Yazı yada sayfadaki resimleri otomatik olarak gruplandırır."
175
 
176
+ #: includes/settings-page.php:146
177
  #, php-format
178
  msgid "Automate %1$s for images in WordPress galleries"
179
  msgstr "Wordpress galerilerine otomatik olarak %1$s ekleyin"
180
 
181
+ #: includes/settings-page.php:150
182
  msgid "Automatically add colorbox-class to images in WordPress galleries, but nowhere else. Images in one page or post are grouped automatically."
183
  msgstr "Wordpress galerilerindeki resimlere otomatik olarak colorbox-sınıfı ekler fakat başka yere eklemez. Yazı yada sayfadaki resimler otomatik olarak gruplandırılır."
184
 
185
+ #: includes/settings-page.php:155
186
  msgid "Add Slideshow to groups"
187
  msgstr "Gruplara slayt gösterisi ekle"
188
 
189
+ #: includes/settings-page.php:159
190
  #, php-format
191
  msgid "Add Slideshow functionality for %1$s Groups"
192
  msgstr "Slayt gösterisi fonksiyonunu %1$s gruplarına ekler."
193
 
194
+ #: includes/settings-page.php:164
195
  msgid "Start Slideshow automatically"
196
  msgstr "Slayt gösterisini otomatik olarak başlat"
197
 
198
+ #: includes/settings-page.php:168
199
  #, php-format
200
  msgid "Start Slideshow automatically if slideshow functionality is added to %1$s Groups"
201
  msgstr "Eğer slayt gösterisi fonksiyonu %1$s gruplarına eklenmişse, slayt gösterisini otomatik olarak başlatır."
202
 
203
+ #: includes/settings-page.php:173
204
  msgid "Speed of the slideshow"
205
  msgstr "Slayt gösterisi hızı"
206
 
207
+ #: includes/settings-page.php:176
208
+ #: includes/settings-page.php:321
209
+ msgid "milliseconds"
210
+ msgstr "milisaniye"
211
+
212
+ #: includes/settings-page.php:177
213
  msgid "Sets the speed of the slideshow, in milliseconds"
214
  msgstr "Slayt gösterisinin hızını milisaniye cinsinden belirleyin"
215
 
216
+ #: includes/settings-page.php:182
217
  msgid "Maximum width of an image"
218
  msgstr "Maksimum resim genişliği"
219
 
220
+ #: includes/settings-page.php:186
221
+ #: includes/settings-page.php:232
222
  msgid "Do not set width"
223
  msgstr "Genişlik ayarlarma"
224
 
225
+ #: includes/settings-page.php:189
226
  msgid "Set maximum width of an image"
227
  msgstr "Resimler için maksimum genişlik değeri belirleyin"
228
 
229
+ #: includes/settings-page.php:200
230
  msgid "Set the maximum width of the image in the Colorbox in relation to the browser window in percent or pixels. If maximum width is not set, image is as wide as the Colorbox"
231
  msgstr "Tarayıcı penceresinde çıkan Colorbox içindeki resimler için yüzde yada piksel değeri belirtin. Eğer maksimum genişlik belirtilmezse resim Colorbox genişliği kadar görünür. Eğer maksimum genişlik belirtilmezse resim Colorbox genişliği kadar görünür"
232
 
233
+ #: includes/settings-page.php:205
234
  msgid "Maximum height of an image"
235
  msgstr "Maksimum resim yüksekliği"
236
 
237
+ #: includes/settings-page.php:209
238
+ #: includes/settings-page.php:255
239
  msgid "Do not set height"
240
  msgstr "Yükseklik ayarlarma"
241
 
242
+ #: includes/settings-page.php:212
243
  msgid "Set maximum height of an image"
244
  msgstr "Resimler için maksimum yükseklik değeri belirleyin"
245
 
246
+ #: includes/settings-page.php:223
247
  msgid "Set the maximum height of the image in the Colorbox in relation to the browser window to a value in percent or pixels. If maximum height is not set, the image is as high as the Colorbox"
248
  msgstr "Tarayıcı penceresinde çıkan Colorbox içindeki resimler için yüzde yada piksel değeri belirtin. Eğer maksimum yükseklik belirtilmezse resim Colorbox yüksekliği kadar görünür. Eğer yükseklik belirtilmezse Colorbox resim kadar yüksek olur"
249
 
250
+ #: includes/settings-page.php:228
251
  msgid "Maximum width of the Colorbox"
252
  msgstr "Colorbox maksimum genişliği"
253
 
254
+ #: includes/settings-page.php:235
255
  msgid "Set width of the Colorbox"
256
  msgstr "Colorbox için genişlik belirleyin"
257
 
258
+ #: includes/settings-page.php:246
259
  msgid "Set the maximum width of the Colorbox itself in relation to the browser window to a value between in percent or pixels. If the image is bigger than the colorbox, scrollbars are displayed. If width is not set, the Colorbox will be as wide as the picture in it"
260
  msgstr "Tarayıcı penceresinde çıkan Colorbox'ın maksimum genişliği için yüzde ve piksel değeri belirtin. Eğer resim Colorbox'tan büyükse, kaydırma çubukları çıkar. Eğer genişlik belirtilmezse Colorbox resim kadar geniş olur"
261
 
262
+ #: includes/settings-page.php:251
263
  msgid "Maximum height of the Colorbox"
264
  msgstr "Colorbox maksimum yüksekliği"
265
 
266
+ #: includes/settings-page.php:258
267
  msgid "Set height of the Colorbox"
268
  msgstr "Colorbox için yükseklik belirleyin"
269
 
270
+ #: includes/settings-page.php:269
271
  msgid "Set the maximum height of the Colorbox itself in relation to the browser window to a value between in percent or pixels. If the image is bigger than the colorbox, scrollbars are displayed. If height is not set, the Colorbox will be as high as the picture in it"
272
  msgstr "Tarayıcı penceresinde çıkan Colorbox'ın maksimum yüksekliği için yüzde ve piksel değeri belirtin. Eğer resim Colorbox'tan büyükse, kaydırma çubukları çıkar. Eğer yükseklik belirtilmezse Colorbox resim kadar yüksek olur"
273
 
274
+ #: includes/settings-page.php:274
275
  msgid "Resize images"
276
  msgstr "Resimleri tekrar boyutlandır"
277
 
278
+ #: includes/settings-page.php:278
279
  msgid "If enabled and if maximum width of images, maximum height of images, width of the Colorbox, or height of the Colorbox have been defined, ColorBox will scale photos to fit within the those values"
280
  msgstr "Eğer aktifse, resimlerin maksimum genişliği ile yüksekliği ve Colorbox maksimum yüksekliği ile genişliği belirliyse, Colorbox resimleri bu değerlere ölçekler"
281
 
282
+ #: includes/settings-page.php:283
283
  msgid "Close Colorbox on overlay click"
284
  msgstr "Katmana tıklandığında Colorbox kapat"
285
 
286
+ #: includes/settings-page.php:287
287
  msgid "If checked, enables closing ColorBox by clicking on the background overlay"
288
  msgstr "Eğer aktifse, arka plandaki katmana tıklandığında Colorbox'ın kapanmasını sağlar"
289
 
290
+ #: includes/settings-page.php:292
291
  msgid "Preload images"
292
  msgstr "Resimleri önceden yükle"
293
 
294
+ #: includes/settings-page.php:296
295
  msgid "Allows for preloading of \"next\" and \"previous\" content in a group, after the current content has finished loading. Uncheck box to disable."
296
  msgstr "Görüntülenen içeriğin yüklenmesi bittikten sonra, gruptaki \"ileri\" ve \"geri\" içeriğini önceden yükler. Bu sayede galerideki resimler arasında hızlıca geçiş yapılabilir ancak galeride büyük resimler varsa yada çok resim bulunuyorsa yüklenmesi uzun sürecektir. Aktif olmaması için kutucuğu boş bırakın"
297
 
298
+ #: includes/settings-page.php:301
299
  msgid "Transition type"
300
  msgstr "Geçiş tipi"
301
 
302
+ #: includes/settings-page.php:313
303
  msgid "The transition type of the Colorbox. Can be set to \"elastic\", \"fade\", or \"none\""
304
  msgstr "Colorbox geçiş tipidir. \"elastik\", \"solma\" ya da \"hiçbiri\" seçilebilir"
305
 
306
+ #: includes/settings-page.php:318
307
  msgid "Transition speed"
308
  msgstr "Geçiş hızı"
309
 
310
+ #: includes/settings-page.php:322
311
  msgid "Sets the speed of the \"fade\" and \"elastic\" transitions, in milliseconds"
312
  msgstr "\"solma\" ve \"elastik\" geçiş hızını milisaniye cinsinden ayarlar"
313
 
314
+ #: includes/settings-page.php:327
315
  msgid "Opacity"
316
  msgstr "Şeffaflık"
317
 
318
+ #: includes/settings-page.php:331
319
  msgid "The overlay opacity level. Range: 0 to 1"
320
  msgstr "Katmanın şeffaflık seviyesi. Aralık: 0 ile 1 arasındadır"
321
 
322
+ #: includes/settings-page.php:336
323
  msgid "Automate hiding of flash objects"
324
  msgstr "Flash objelerini otomatik gizle"
325
 
326
+ #: includes/settings-page.php:340
327
  msgid "Automatically hide embeded flash objects behind the Colorbox layer. Done by setting the wmode to transparent."
328
  msgstr "Colorbox katmanının arkasındaki flash objelerini otomatik olarak gizler. wmode parametresine transparent değeri atar."
329
 
330
+ #: includes/settings-page.php:345
331
  msgid "Disable warning"
332
  msgstr "Uyarıyı kapat"
333
 
334
+ #: includes/settings-page.php:349
335
  msgid "Disables the warning that is displayed if the plugin is activated but the auto-colorbox feature for all images is turned off."
336
  msgstr "Bu seçenek ile eklenti aktifleştirildikten sonra tüm resimlere otomatik olarak colorbox ekleme seçeneği kapalıysa yönetici panelinde çıkan uyarıyı gizleyebilirsiniz."
337
 
338
+ #: includes/settings-page.php:355
339
  msgid "Save Changes"
340
  msgstr "Değişiklikleri kaydet"
341
 
342
+ #: includes/settings-page.php:364
343
+ #: includes/settings-page.php:373
344
  msgid "Delete Settings"
345
  msgstr "Ayarları sıfırlayın"
346
 
347
+ #: includes/settings-page.php:367
348
  msgid "Check the box and click this button to delete settings of this plugin."
349
  msgstr "Bu eklentinin ayarlarını sıfırlamak için kutucuğu doldurup yanındaki butona tıklayın."
350
 
351
+ #: includes/settings-page.php:383
352
  msgid "Donate"
353
  msgstr "Bağış yapın"
354
 
355
+ #: includes/settings-page.php:397
356
  msgid "If you would like to make a small (or large) contribution towards future development please consider making a donation."
357
  msgstr "Gelecek sürümler için az (yada fazla) farketmez, bağış yapmaktan çekinmeyin."
358
 
359
+ #: includes/settings-page.php:406
360
  msgid "Translation"
361
  msgstr "Çeviri"
362
 
363
+ #: includes/settings-page.php:409
364
  msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
365
  msgstr "Türkçe çeviri <a href=\"http://www.serhatyolacan.com\">Serhat Yolaçan</a> tarafından yapılmıştır."
366
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
367
  #~ msgid "maxWidth"
368
  #~ msgstr "Maximum width of an image"
369
 
readme.txt CHANGED
@@ -1,18 +1,18 @@
1
  === Plugin Name ===
2
  Contributors: techotronic
3
- Donate link: http://www.techotronic.de/index.php/donate/
4
- Tags: jquery, colorbox, lightbox, images, pictures, photos, gallery, javascript, overlay
5
  Requires at least: 2.8.5
6
  Tested up to: 2.9.1
7
- Stable tag: 3.1
8
 
9
- Adds Colorbox/Lightbox functionality to images. They are grouped by post or page. Also works for WordPress galleries. Comes with different themes.
10
 
11
  == Description ==
12
 
13
  Yet another Colorbox/Lightbox plugin for Wordpress.
14
-
15
- jQuery Colorbox features 9 themes from which you can choose. See screenshots tab.
16
 
17
  When adding an image to a post or page, usually a thumbnail is inserted and linked to the image in original size.
18
  All images in posts and pages can be displayed in a layer when the thumbnail is clicked.
@@ -20,7 +20,7 @@ Images are grouped as galleries when linked in the same post or page. Groups can
20
 
21
  Individual images can be excluded by adding a special CSS class.
22
 
23
- See the <a href="http://www.techotronic.de/index.php/plugins/jquery-colorbox/">plugin page</a> for demo pages.
24
 
25
  For more information visit the <a href="http://wordpress.org/extend/plugins/jquery-colorbox/faq/">FAQ</a>.
26
  If you have questions or problems, feel free to write an email to blog [at] techotronic.de or write a entry at <a href="http://wordpress.org/tags/jquery-colorbox?forum_id=10">the jQuery Colorbox WordPress.org forum</a>
@@ -33,6 +33,7 @@ Localization
33
  * Portuguese (pt_BR) by <a href="http://twitter.com/gervasioantonio">Gervásio Antônio</a>
34
  * Bosnian (bs_BA) by <a href="http://www.vjucon.com/">Vedran Jurincic</a>
35
  * French (fr_FR) by <a href="http://www.tolingo.com/">Tolingo Translations</a>
 
36
 
37
  Is your native language missing? Translating the plugin is easy if you understand english and are fluent in another language. Just send me an email.
38
 
@@ -44,7 +45,7 @@ The picture I used for the screenshots was designed by <a href="http://wallpaper
44
 
45
  ###Updgrading From A Previous Version###
46
 
47
- To upgrade from a previous version of this plugin, delete the entire folder and files from the previous version of the plugin and then follow the installation instructions below.
48
 
49
  ###Installing The Plugin###
50
 
@@ -58,18 +59,19 @@ Do not forget to activate auto Colorbox if you want Colorbox to work for all ima
58
  **See Also:** <a href="http://codex.wordpress.org/Managing_Plugins#Installing_Plugins">"Installing Plugins" article on the WP Codex</a>
59
 
60
  == Screenshots ==
61
-
62
- 1. Theme #1
63
- 2. Theme #2
64
- 3. Theme #3
65
- 4. Theme #4
66
- 5. Theme #5
67
- 6. Theme #6 (not compatible with IE6)
68
- 7. Theme #7
69
- 8. Theme #8 (not compatible with IE6)
70
- 9. Theme #9
71
 
72
  == Frequently Asked Questions ==
 
 
 
 
 
 
 
 
 
73
  * I have installed and activated (or updated) jQuery Colorbox, but it doesn't show up when I click on a thumbnail in my blog. Is the plugin broken?
74
 
75
  Since version 2.0, jQuery Colorbox' automatic behaviour can be switched on and off in the settings. That way, you can apply the Colorbox functionality manually to single images.
@@ -101,17 +103,6 @@ Adobe described on these sites what the problem is and how to fix it manually:
101
  <a href="http://kb2.adobe.com/cps/155/tn_15523.html">Adobe Knowledgebase 1</a>
102
  <a href="http://kb2.adobe.com/cps/142/tn_14201.html">Adobe Knowledgebase 2</a>
103
 
104
- * I installed your plugin, but when I click on a thumbnail, the original picture is loaded directly instead of in the Colorbox. What could be the problem?
105
-
106
- Make sure that your theme uses the `wp_head();` function in the HTML head-tag.
107
-
108
- I have seen problems where other plugins include their own versions of the jQuery library my plugin uses.
109
- Chances are that the other jQuery libary is loaded after the one that I load. If that happens, the colorbox features are overwritten.
110
-
111
- Maybe the images you want jQuery Colorbox to work on are added by a plugin and the images are added after jQuery Colorbox manipulates the HTML when rendering your blog.
112
-
113
- Sometimes I have seen Images without the "class" attribute. If there is no "class" attribute present in the IMG-Tag, jQuery Colorbox can't add the necessary CSS class and won't work on that image.
114
-
115
  * Why is jQuery Colorbox not available in my language?
116
 
117
  I speak German and English fluently, but unfortunately no other language well enough to do a translation.
@@ -120,11 +111,18 @@ Would you like to help? Translating the plugin is easy if you understand English
120
 
121
  * My question isn't answered here. What do I do now?
122
 
123
- Feel free to write an email to blog [at] techotronic.de or write a entry at <a href="http://wordpress.org/tags/jquery-colorbox?forum_id=10">the jQuery Colorbox WordPress.org forum</a>.
124
 
125
  I'll include new FAQs in every new version. Promise.
126
 
127
  == Changelog ==
 
 
 
 
 
 
 
128
  = 3.1 (2010-04-10) =
129
  * BUGFIX: Automatic hiding of embedded flash objects under Colorbox layer now works in Internet Explorer.
130
  * NEW: Added theme#9, a modified version of theme#4.
@@ -172,7 +170,7 @@ I'll include new FAQs in every new version. Promise.
172
  * NEW: Added switch that adds automatic start to slideshows (no way to add slideshows individually yet)
173
  * NEW: Added configuration of slideshow speed
174
  * NEW: Added switch that allows the user to decide whether Colorbox scales images
175
- * NEW: Added demos of the plugin on the <a href="http://www.techotronic.de/index.php/plugins/jquery-colorbox/">plugin page</a>
176
  * NEW: Added configuration for adding colorbox class only to WordPress galleries
177
  * NEW: Automatically resets settings if settings of a version prior to 1.4 are found upon activation
178
  * NEW: width and height can now be configured as percent relative to browser window size or in pixels (default is percent)
1
  === Plugin Name ===
2
  Contributors: techotronic
3
+ Donate link: http://www.techotronic.de/donate/
4
+ Tags: jquery, colorbox, lightbox, images, pictures, photos, gallery, javascript, overlay, nextgen gallery, nextgen-gallery, image, picture, photo, media, slideshow, ngg
5
  Requires at least: 2.8.5
6
  Tested up to: 2.9.1
7
+ Stable tag: 3.2
8
 
9
+ Adds Colorbox/Lightbox functionality to images, grouped by post or page. Works for WordPress and NextGEN galleries. Comes with different themes.
10
 
11
  == Description ==
12
 
13
  Yet another Colorbox/Lightbox plugin for Wordpress.
14
+ jQuery Colorbox features 10 themes from which you can choose. See screenshots tab or <a href="http://www.techotronic.de/plugins/jquery-colorbox/theme-screenshots/">my website</a>.
15
+ Works out-of-the-box with WordPress Galleries and <a href="http://wordpress.org/extend/plugins/nextgen-gallery/">NextGEN Gallery</a>! (choose no effect in NextGEN settings)
16
 
17
  When adding an image to a post or page, usually a thumbnail is inserted and linked to the image in original size.
18
  All images in posts and pages can be displayed in a layer when the thumbnail is clicked.
20
 
21
  Individual images can be excluded by adding a special CSS class.
22
 
23
+ See the <a href="http://www.techotronic.de/plugins/jquery-colorbox/">plugin page</a> for demo pages.
24
 
25
  For more information visit the <a href="http://wordpress.org/extend/plugins/jquery-colorbox/faq/">FAQ</a>.
26
  If you have questions or problems, feel free to write an email to blog [at] techotronic.de or write a entry at <a href="http://wordpress.org/tags/jquery-colorbox?forum_id=10">the jQuery Colorbox WordPress.org forum</a>
33
  * Portuguese (pt_BR) by <a href="http://twitter.com/gervasioantonio">Gervásio Antônio</a>
34
  * Bosnian (bs_BA) by <a href="http://www.vjucon.com/">Vedran Jurincic</a>
35
  * French (fr_FR) by <a href="http://www.tolingo.com/">Tolingo Translations</a>
36
+ * Arabic (ar) by <a href="http://www.photokeens.com">Modar Soos</a>
37
 
38
  Is your native language missing? Translating the plugin is easy if you understand english and are fluent in another language. Just send me an email.
39
 
45
 
46
  ###Updgrading From A Previous Version###
47
 
48
+ To upgrade from a previous version of this plugin, use the built in update feature of WordPress or copy the files on top of the current installation.
49
 
50
  ###Installing The Plugin###
51
 
59
  **See Also:** <a href="http://codex.wordpress.org/Managing_Plugins#Installing_Plugins">"Installing Plugins" article on the WP Codex</a>
60
 
61
  == Screenshots ==
62
+
63
+ <a href="http://www.techotronic.de/plugins/jquery-colorbox/theme-screenshots/">Please visit my site for screenshots</a>.
 
 
 
 
 
 
 
 
64
 
65
  == Frequently Asked Questions ==
66
+ * I installed your plugin, but when I click on a thumbnail, the original picture is loaded directly instead of in the Colorbox. What could be the problem?
67
+
68
+ Make sure that your theme uses the `wp_head();` function in the HTML head-tag.
69
+
70
+ I have seen problems where other plugins include their own versions of the jQuery library my plugin uses.
71
+ Chances are that the other jQuery library is loaded after the one that I load. If that happens, the colorbox features are overwritten.
72
+
73
+ Maybe the images you want jQuery Colorbox to work on are added by a plugin and the images are added after jQuery Colorbox manipulates the HTML when rendering your blog.
74
+
75
  * I have installed and activated (or updated) jQuery Colorbox, but it doesn't show up when I click on a thumbnail in my blog. Is the plugin broken?
76
 
77
  Since version 2.0, jQuery Colorbox' automatic behaviour can be switched on and off in the settings. That way, you can apply the Colorbox functionality manually to single images.
103
  <a href="http://kb2.adobe.com/cps/155/tn_15523.html">Adobe Knowledgebase 1</a>
104
  <a href="http://kb2.adobe.com/cps/142/tn_14201.html">Adobe Knowledgebase 2</a>
105
 
 
 
 
 
 
 
 
 
 
 
 
106
  * Why is jQuery Colorbox not available in my language?
107
 
108
  I speak German and English fluently, but unfortunately no other language well enough to do a translation.
111
 
112
  * My question isn't answered here. What do I do now?
113
 
114
+ Feel free to write an email to blog [at] techotronic.de or open a thread at <a href="http://wordpress.org/tags/jquery-colorbox?forum_id=10">the jQuery Colorbox WordPress.org forum</a>.
115
 
116
  I'll include new FAQs in every new version. Promise.
117
 
118
  == Changelog ==
119
+ = 3.2 (2010-04-20) =
120
+ * NEW: Added theme#10, thx to <a href="http://www.serhatyolacan.com/">Serhat Yolaçan</a> for all the hard work! (CSS3 rounded edges, IE does not support that)
121
+ * CHANGE: jQuery Colorbox plugin now adds necessary CSS class to all embedded images.
122
+ * CHANGE: jQuery Colorbox plugin is now compatible to <a href="http://wordpress.org/extend/plugins/nextgen-gallery/">NextGEN Gallery</a>
123
+ * CHANGE: <a href="http://www.vjucon.com/">Vedran Jurincic</a> updated the bosnian translation
124
+ * NEW: Arabic translation by <a href="http://www.photokeens.com">Modar Soos</a>
125
+
126
  = 3.1 (2010-04-10) =
127
  * BUGFIX: Automatic hiding of embedded flash objects under Colorbox layer now works in Internet Explorer.
128
  * NEW: Added theme#9, a modified version of theme#4.
170
  * NEW: Added switch that adds automatic start to slideshows (no way to add slideshows individually yet)
171
  * NEW: Added configuration of slideshow speed
172
  * NEW: Added switch that allows the user to decide whether Colorbox scales images
173
+ * NEW: Added demos of the plugin on the <a href="http://www.techotronic.de/plugins/jquery-colorbox/">plugin page</a>
174
  * NEW: Added configuration for adding colorbox class only to WordPress galleries
175
  * NEW: Automatically resets settings if settings of a version prior to 1.4 are found upon activation
176
  * NEW: width and height can now be configured as percent relative to browser window size or in pixels (default is percent)
screenshot-10.jpg ADDED
Binary file
themes/theme1/colorbox.css CHANGED
@@ -19,7 +19,7 @@
19
  order/nesting of the generated HTML, so that the structure easier to understand.
20
  */
21
  #cboxOverlay{background:url(images/overlay.png) 0 0 repeat;}
22
- #colorbox{font: 12px Arial,sans-serif;}
23
  #cboxTopLeft{width:21px; height:21px; background:url(images/controls.png) -100px 0 no-repeat;}
24
  #cboxTopRight{width:21px; height:21px; background:url(images/controls.png) -129px 0 no-repeat;}
25
  #cboxBottomLeft{width:21px; height:21px; background:url(images/controls.png) -100px -29px no-repeat;}
19
  order/nesting of the generated HTML, so that the structure easier to understand.
20
  */
21
  #cboxOverlay{background:url(images/overlay.png) 0 0 repeat;}
22
+ #colorbox{font: 12px Tahoma, Arial,sans-serif;}
23
  #cboxTopLeft{width:21px; height:21px; background:url(images/controls.png) -100px 0 no-repeat;}
24
  #cboxTopRight{width:21px; height:21px; background:url(images/controls.png) -129px 0 no-repeat;}
25
  #cboxBottomLeft{width:21px; height:21px; background:url(images/controls.png) -100px -29px no-repeat;}
themes/theme10/colorbox.css ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ ColorBox Core Style
3
+ The following rules are the styles that are consistant between themes.
4
+ Avoid changing this area to maintain compatability with future versions of ColorBox.
5
+ */
6
+ #colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:hidden;}
7
+ #cboxOverlay{position:fixed; width:100%; height:100%;}
8
+ #cboxMiddleLeft, #cboxBottomLeft{clear:left;}
9
+ #cboxContent{position:relative; overflow:hidden;}
10
+ #cboxLoadedContent{overflow:auto;}
11
+ #cboxLoadedContent iframe{display:block; width:100%; height:100%; border:0;}
12
+ #cboxTitle{margin:0;}
13
+ #cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%;}
14
+ #cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}
15
+
16
+ /*
17
+ ColorBox example user style
18
+ The following rules are ordered and tabbed in a way that represents the
19
+ order/nesting of the generated HTML, so that the structure easier to understand.
20
+ */
21
+ #cboxOverlay{background:#000;}
22
+
23
+ #colorbox{font: 12px Tahoma, Arial,sans-serif;}
24
+ #cboxContent{margin-top:20px;}
25
+ #cboxLoadedContent{background:#fff; padding:10px 10px 34px; border-radius:10px; -moz-border-radius:10px; -webkit-border-radius:10px;}
26
+ #cboxTitle{overflow:auto; position:absolute; bottom:12px; left:10px; text-align:center; color:#555; word-wrap: break-word; font-size:0.9em; border: 1px solid #ccc; max-width:40%; background:#fff; padding:1px 7px; border-radius:10px; -moz-border-radius:10px; -webkit-border-radius:10px; box-shadow: 1px 1px 3px #888; -moz-box-shadow: 1px 1px 3px #888; -webkit-box-shadow: 1px 1px 3px #888;}
27
+ #cboxCurrent{position:absolute; bottom:11px; right:36px; color:#333; font-weight:bold; padding:1px 7px; border: 1px solid #ccc; border-radius:10px; -moz-border-radius:10px; -webkit-border-radius:10px; box-shadow: 1px 1px 3px #888; -moz-box-shadow: 1px 1px 3px #888; -webkit-box-shadow: 1px 1px 3px #888;}
28
+ #cboxSlideshow{position:absolute; bottom:11px; right:150px; color:#eee; overflow:visible; border: 1px solid #555; background:#666; padding:1px 7px; border-radius:10px; -moz-border-radius:10px; -webkit-border-radius:10px; box-shadow: 1px 1px 3px #888; -moz-box-shadow: 1px 1px 3px #888; -webkit-box-shadow: 1px 1px 3px #888;}
29
+ #cboxPrevious{opacity:0.5;filter:alpha(opacity=50);position:absolute; top:36%; left:10px; margin-top:-32px; background:url(images/prev.png) no-repeat; width:64px; height:32px; text-indent:-9999px;}
30
+ #cboxPrevious.hover{opacity:1;filter:alpha(opacity=100);background-position:bottom left;}
31
+ #cboxNext{opacity:0.5;filter:alpha(opacity=50);position:absolute; top:36%; right:10px; margin-top:-32px; background:url(images/next.png) top right no-repeat; width:64px; height:32px; text-indent:-9999px;}
32
+ #cboxNext.hover{opacity:1;filter:alpha(opacity=100);}
33
+ #cboxLoadingOverlay{background:#fff; border-radius:10px; -moz-border-radius:10px; -webkit-border-radius:10px;}
34
+ #cboxLoadingGraphic{background:url(images/loading.gif) center center no-repeat;}
35
+ #cboxClose{opacity:0.5;filter:alpha(opacity=50);position:absolute; bottom:10px; right:10px; display:block; background:url(images/close.png) no-repeat; width:22px; height:22px; text-indent:-9999px;}
36
+ #cboxClose.hover{opacity:1;filter:alpha(opacity=100);}
themes/theme10/images/close.png ADDED
Binary file
themes/theme10/images/loading.gif ADDED
Binary file
themes/theme10/images/next.png ADDED
Binary file
themes/theme10/images/prev.png ADDED
Binary file
themes/theme2/colorbox.css CHANGED
@@ -20,7 +20,7 @@
20
  */
21
  #cboxOverlay{background:#fff;}
22
 
23
- #colorbox{font: 12px Arial,sans-serif;}
24
  #cboxContent{margin-top:32px;}
25
  #cboxLoadedContent{background:#000; padding:1px;}
26
  #cboxLoadingGraphic{background:url(images/loading.gif) center center no-repeat;}
20
  */
21
  #cboxOverlay{background:#fff;}
22
 
23
+ #colorbox{font: 12px Tahoma, Arial,sans-serif;}
24
  #cboxContent{margin-top:32px;}
25
  #cboxLoadedContent{background:#000; padding:1px;}
26
  #cboxLoadingGraphic{background:url(images/loading.gif) center center no-repeat;}
themes/theme3/colorbox.css CHANGED
@@ -20,7 +20,7 @@
20
  */
21
  #cboxOverlay{background:#000;}
22
 
23
- #colorbox{font: 12px Arial,sans-serif;}
24
  #cboxContent{margin-top:20px;}
25
  #cboxLoadedContent{background:#000; padding:5px;}
26
  #cboxTitle{position:absolute; top:-20px; left:0; color:#ccc;}
20
  */
21
  #cboxOverlay{background:#000;}
22
 
23
+ #colorbox{font: 12px Tahoma, Arial,sans-serif;}
24
  #cboxContent{margin-top:20px;}
25
  #cboxLoadedContent{background:#000; padding:5px;}
26
  #cboxTitle{position:absolute; top:-20px; left:0; color:#ccc;}
themes/theme4/colorbox.css CHANGED
@@ -20,7 +20,7 @@
20
  */
21
  #cboxOverlay{background:#fff;}
22
 
23
- #colorBox{font: 12px Arial,sans-serif;}
24
  #cboxTopLeft{width:25px; height:25px; background:url(images/border1.png) 0 0 no-repeat;}
25
  #cboxTopCenter{height:25px; background:url(images/border1.png) 0 -50px repeat-x;}
26
  #cboxTopRight{width:25px; height:25px; background:url(images/border1.png) -25px 0 no-repeat;}
20
  */
21
  #cboxOverlay{background:#fff;}
22
 
23
+ #colorBox{font: 12px Tahoma, Arial,sans-serif;}
24
  #cboxTopLeft{width:25px; height:25px; background:url(images/border1.png) 0 0 no-repeat;}
25
  #cboxTopCenter{height:25px; background:url(images/border1.png) 0 -50px repeat-x;}
26
  #cboxTopRight{width:25px; height:25px; background:url(images/border1.png) -25px 0 no-repeat;}
themes/theme5/colorbox.css CHANGED
@@ -20,7 +20,7 @@
20
  */
21
  #cboxOverlay{background:#000;}
22
 
23
- #colorbox{font: 12px Arial,sans-serif;}
24
  #cboxTopLeft{width:14px; height:14px; background:url(images/controls.png) 0 0 no-repeat;}
25
  #cboxTopCenter{height:14px; background:url(images/border.png) top left repeat-x;}
26
  #cboxTopRight{width:14px; height:14px; background:url(images/controls.png) -36px 0 no-repeat;}
20
  */
21
  #cboxOverlay{background:#000;}
22
 
23
+ #colorbox{font: 12px Tahoma, Arial,sans-serif;}
24
  #cboxTopLeft{width:14px; height:14px; background:url(images/controls.png) 0 0 no-repeat;}
25
  #cboxTopCenter{height:14px; background:url(images/border.png) top left repeat-x;}
26
  #cboxTopRight{width:14px; height:14px; background:url(images/controls.png) -36px 0 no-repeat;}
themes/theme6/colorbox.css CHANGED
@@ -19,7 +19,7 @@
19
  order/nesting of the generated HTML, so that the structure easier to understand.
20
  */
21
  #cboxOverlay{background:url(images/overlay.png) 0 0 repeat;}
22
- #colorbox{font: 12px Arial,sans-serif;}
23
  #cboxTopLeft{width:21px; height:21px; background:url(images/controls.png) -100px 0 no-repeat;}
24
  #cboxTopRight{width:21px; height:21px; background:url(images/controls.png) -129px 0 no-repeat;}
25
  #cboxBottomLeft{width:21px; height:21px; background:url(images/controls.png) -100px -29px no-repeat;}
19
  order/nesting of the generated HTML, so that the structure easier to understand.
20
  */
21
  #cboxOverlay{background:url(images/overlay.png) 0 0 repeat;}
22
+ #colorbox{font: 12px Tahoma, Arial,sans-serif;}
23
  #cboxTopLeft{width:21px; height:21px; background:url(images/controls.png) -100px 0 no-repeat;}
24
  #cboxTopRight{width:21px; height:21px; background:url(images/controls.png) -129px 0 no-repeat;}
25
  #cboxBottomLeft{width:21px; height:21px; background:url(images/controls.png) -100px -29px no-repeat;}
themes/theme7/colorbox.css CHANGED
@@ -19,7 +19,7 @@
19
  order/nesting of the generated HTML, so that the structure easier to understand.
20
  */
21
  #cboxOverlay{background:#000;}
22
- #colorbox{font: 12px Arial,sans-serif;}
23
  #cboxTopLeft{width:21px; height:21px; background:url(images/controls.png) -100px 0 no-repeat;}
24
  #cboxTopRight{width:21px; height:21px; background:url(images/controls.png) -129px 0 no-repeat;}
25
  #cboxBottomLeft{width:21px; height:21px; background:url(images/controls.png) -100px -29px no-repeat;}
19
  order/nesting of the generated HTML, so that the structure easier to understand.
20
  */
21
  #cboxOverlay{background:#000;}
22
+ #colorbox{font: 12px Tahoma, Arial,sans-serif;}
23
  #cboxTopLeft{width:21px; height:21px; background:url(images/controls.png) -100px 0 no-repeat;}
24
  #cboxTopRight{width:21px; height:21px; background:url(images/controls.png) -129px 0 no-repeat;}
25
  #cboxBottomLeft{width:21px; height:21px; background:url(images/controls.png) -100px -29px no-repeat;}
themes/theme8/colorbox.css CHANGED
@@ -19,7 +19,7 @@
19
  order/nesting of the generated HTML, so that the structure easier to understand.
20
  */
21
  #cboxOverlay{background:#000;}
22
- #colorbox{font: 12px Arial,sans-serif;}
23
  #cboxTopLeft{width:21px; height:21px; background:url(images/controls.png) -100px 0 no-repeat;}
24
  #cboxTopRight{width:21px; height:21px; background:url(images/controls.png) -129px 0 no-repeat;}
25
  #cboxBottomLeft{width:21px; height:21px; background:url(images/controls.png) -100px -29px no-repeat;}
19
  order/nesting of the generated HTML, so that the structure easier to understand.
20
  */
21
  #cboxOverlay{background:#000;}
22
+ #colorbox{font: 12px Tahoma, Arial,sans-serif;}
23
  #cboxTopLeft{width:21px; height:21px; background:url(images/controls.png) -100px 0 no-repeat;}
24
  #cboxTopRight{width:21px; height:21px; background:url(images/controls.png) -129px 0 no-repeat;}
25
  #cboxBottomLeft{width:21px; height:21px; background:url(images/controls.png) -100px -29px no-repeat;}
themes/theme9/colorbox.css CHANGED
@@ -20,7 +20,7 @@
20
  */
21
  #cboxOverlay{background:#fff;}
22
 
23
- #colorBox{font: 12px Arial,sans-serif;}
24
  #cboxTopLeft{width:25px; height:25px; background:url(images/border1.png) 0 0 no-repeat;}
25
  #cboxTopCenter{height:25px; background:url(images/border1.png) 0 -50px repeat-x;}
26
  #cboxTopRight{width:25px; height:25px; background:url(images/border1.png) -25px 0 no-repeat;}
20
  */
21
  #cboxOverlay{background:#fff;}
22
 
23
+ #colorBox{font: 12px Tahoma, Arial,sans-serif;}
24
  #cboxTopLeft{width:25px; height:25px; background:url(images/border1.png) 0 0 no-repeat;}
25
  #cboxTopCenter{height:25px; background:url(images/border1.png) 0 -50px repeat-x;}
26
  #cboxTopRight{width:25px; height:25px; background:url(images/border1.png) -25px 0 no-repeat;}