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 | ![]() |
Version | 3.2 |
Comparing to | |
See all releases |
Code changes from version 3.1 to 3.2
- includes/colorbox-javascript.php +66 -0
- includes/iefix-theme1.php +1 -0
- includes/iefix-theme4.php +1 -0
- includes/settings-page.php +3 -2
- jquery-colorbox.php +33 -63
- js/jquery-colorbox-auto.js +4 -2
- js/jquery-colorbox-hideFlash.js +4 -2
- localization/jquery-colorbox-ar.mo +0 -0
- localization/{jquery-colorbox-ar_AR.po → jquery-colorbox-ar.po} +173 -140
- localization/jquery-colorbox-ar_AR.mo +0 -0
- localization/jquery-colorbox-bs_BA.mo +0 -0
- localization/jquery-colorbox-bs_BA.po +135 -102
- localization/jquery-colorbox-de_DE.mo +0 -0
- localization/jquery-colorbox-de_DE.po +134 -101
- localization/jquery-colorbox-en_EN.mo +0 -0
- localization/jquery-colorbox-en_EN.po +133 -100
- localization/jquery-colorbox-fr_FR.mo +0 -0
- localization/jquery-colorbox-fr_FR.po +135 -106
- localization/jquery-colorbox-pt_BR.mo +0 -0
- localization/jquery-colorbox-pt_BR.po +137 -102
- localization/jquery-colorbox-tr_TR.mo +0 -0
- localization/jquery-colorbox-tr_TR.po +129 -100
- readme.txt +29 -31
- screenshot-10.jpg +0 -0
- themes/theme1/colorbox.css +1 -1
- themes/theme10/colorbox.css +36 -0
- themes/theme10/images/close.png +0 -0
- themes/theme10/images/loading.gif +0 -0
- themes/theme10/images/next.png +0 -0
- themes/theme10/images/prev.png +0 -0
- themes/theme2/colorbox.css +1 -1
- themes/theme3/colorbox.css +1 -1
- themes/theme4/colorbox.css +1 -1
- themes/theme5/colorbox.css +1 -1
- themes/theme6/colorbox.css +1 -1
- themes/theme7/colorbox.css +1 -1
- themes/theme8/colorbox.css +1 -1
- 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
|
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
|
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/
|
8 |
* Description: Used to overlay images on the current page. Images in one post are grouped automatically.
|
9 |
-
* Version: 3.
|
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.
|
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 |
-
|
212 |
-
$
|
213 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
-
|
303 |
-
|
304 |
-
|
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 |
-
*
|
|
|
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 |
-
*
|
|
|
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
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2010-
|
6 |
-
"PO-Revision-Date: 2010-
|
7 |
-
"Last-Translator:
|
8 |
-
"Language-Team: Mickey Mouse
|
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:
|
19 |
msgid "Theme #1"
|
20 |
msgstr "القالب الأول"
|
21 |
|
22 |
-
#: jquery-colorbox.php:
|
23 |
msgid "Theme #2"
|
24 |
msgstr "القالب الثاني"
|
25 |
|
26 |
-
#: jquery-colorbox.php:
|
27 |
msgid "Theme #3"
|
28 |
msgstr "القالب الثالث"
|
29 |
|
30 |
-
#: jquery-colorbox.php:
|
31 |
msgid "Theme #4"
|
32 |
msgstr "القالب الرابع"
|
33 |
|
34 |
-
#: jquery-colorbox.php:
|
35 |
msgid "Theme #5"
|
36 |
msgstr "القالب الخامس"
|
37 |
|
38 |
-
#: jquery-colorbox.php:
|
39 |
msgid "Theme #6"
|
40 |
-
msgstr
|
41 |
|
42 |
-
#: jquery-colorbox.php:
|
43 |
msgid "Theme #7"
|
44 |
-
msgstr
|
45 |
|
46 |
-
#: jquery-colorbox.php:
|
47 |
msgid "Theme #8"
|
48 |
-
msgstr
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
|
50 |
-
#: jquery-colorbox.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
51 |
msgid "percent"
|
52 |
msgstr "بالمئة"
|
53 |
|
54 |
-
#: jquery-colorbox.php:
|
55 |
msgid "pixels"
|
56 |
-
msgstr
|
57 |
|
58 |
-
#: jquery-colorbox.php:
|
59 |
msgid "elastic"
|
60 |
-
msgstr
|
61 |
|
62 |
-
#: jquery-colorbox.php:
|
63 |
msgid "fade"
|
64 |
-
msgstr
|
65 |
|
66 |
-
#: jquery-colorbox.php:
|
67 |
msgid "none"
|
68 |
-
msgstr
|
69 |
|
70 |
-
#: jquery-colorbox.php:
|
71 |
-
#:
|
72 |
msgid "Settings"
|
73 |
msgstr "إعدادات"
|
74 |
|
75 |
-
#: jquery-colorbox.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
76 |
msgid "close"
|
77 |
msgstr "إغلاق"
|
78 |
|
79 |
-
#:
|
80 |
msgid "next"
|
81 |
msgstr "التالي"
|
82 |
|
83 |
-
#:
|
84 |
msgid "previous"
|
85 |
msgstr "السابق"
|
86 |
|
87 |
-
#:
|
88 |
msgid "start slideshow"
|
89 |
msgstr "بدء عرض الشرائح"
|
90 |
|
91 |
-
#:
|
92 |
msgid "stop slideshow"
|
93 |
msgstr "إيقاف عرض الشرائح"
|
94 |
|
95 |
-
#:
|
96 |
msgid "{current} of {total} images"
|
97 |
msgstr "{current} من {total} إجمالي الصور"
|
98 |
|
99 |
-
#:
|
100 |
#, php-format
|
101 |
msgid "%1$s Settings"
|
102 |
msgstr "%1$s إعدادات"
|
103 |
|
104 |
-
#:
|
105 |
msgid "Theme"
|
106 |
-
msgstr
|
107 |
|
108 |
-
#:
|
109 |
msgid "Select the theme you want to use on your blog."
|
110 |
msgstr "حدد القالب الذي تريد استخدامه في موقعك من القائمة المنسدلة."
|
111 |
|
112 |
-
#:
|
113 |
msgid "Theme screenshot"
|
114 |
-
msgstr
|
115 |
|
116 |
-
#:
|
117 |
#, php-format
|
118 |
msgid "Automate %1$s for all images"
|
119 |
-
msgstr "شغل
|
120 |
|
121 |
-
#:
|
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 |
-
#:
|
126 |
#, php-format
|
127 |
msgid "Automate %1$s for images in WordPress galleries"
|
128 |
-
msgstr
|
129 |
|
130 |
-
#:
|
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 |
-
#:
|
135 |
msgid "Add Slideshow to groups"
|
136 |
msgstr "إضافة عرض الشرائح للمجموعات"
|
137 |
|
138 |
-
#:
|
139 |
#, php-format
|
140 |
msgid "Add Slideshow functionality for %1$s Groups"
|
141 |
-
msgstr "إضافة عرض الشرائح
|
142 |
|
143 |
-
#:
|
144 |
msgid "Start Slideshow automatically"
|
145 |
msgstr "ابدأ عرض الشرائح تلقائياً"
|
146 |
|
147 |
-
#:
|
148 |
#, php-format
|
149 |
msgid "Start Slideshow automatically if slideshow functionality is added to %1$s Groups"
|
150 |
-
msgstr "ابدأ عرض الشرائح تلقائياً إذا كانت خصائص عرض الشرائح قد أضيفت
|
151 |
|
152 |
-
#:
|
153 |
msgid "Speed of the slideshow"
|
154 |
msgstr "سرعة عرض الشرائح"
|
155 |
|
156 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
157 |
msgid "Sets the speed of the slideshow, in milliseconds"
|
158 |
-
msgstr "حدد سرعة عرض الشرائح
|
159 |
|
160 |
-
#:
|
161 |
msgid "Maximum width of an image"
|
162 |
-
msgstr
|
163 |
|
164 |
-
#:
|
165 |
-
#:
|
166 |
msgid "Do not set width"
|
167 |
msgstr "عدم تعيين عرض"
|
168 |
|
169 |
-
#:
|
170 |
msgid "Set maximum width of an image"
|
171 |
msgstr "تعيين أقصى عرض للصورة"
|
172 |
|
173 |
-
#:
|
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 |
-
#:
|
178 |
msgid "Maximum height of an image"
|
179 |
msgstr "أقصى ارتفاع للصورة"
|
180 |
|
181 |
-
#:
|
182 |
-
#:
|
183 |
msgid "Do not set height"
|
184 |
msgstr "عدم تعيين الارتفاع"
|
185 |
|
186 |
-
#:
|
187 |
msgid "Set maximum height of an image"
|
188 |
msgstr "تعيين الارتفاع الأقصى للصورة"
|
189 |
|
190 |
-
#:
|
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 |
-
#:
|
195 |
msgid "Maximum width of the Colorbox"
|
196 |
msgstr "الحد الأقصى لعرض صندوق عرض الشرائح"
|
197 |
|
198 |
-
#:
|
199 |
msgid "Set width of the Colorbox"
|
200 |
msgstr "تعيين عرض صندوق عرض الشرائح"
|
201 |
|
202 |
-
#:
|
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 |
-
#:
|
207 |
msgid "Maximum height of the Colorbox"
|
208 |
msgstr "الحد الأقصى لارتفاع صندوق عرض الشرائح"
|
209 |
|
210 |
-
#:
|
211 |
msgid "Set height of the Colorbox"
|
212 |
msgstr "تعيين ارتفاع صندوق عرض الشرائح"
|
213 |
|
214 |
-
#:
|
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 |
-
#:
|
219 |
msgid "Resize images"
|
220 |
msgstr "تعديل حجم الصورة"
|
221 |
|
222 |
-
#:
|
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 |
-
#:
|
227 |
msgid "Close Colorbox on overlay click"
|
228 |
-
msgstr
|
229 |
|
230 |
-
#:
|
231 |
msgid "If checked, enables closing ColorBox by clicking on the background overlay"
|
232 |
-
msgstr
|
233 |
|
234 |
-
#:
|
235 |
msgid "Preload images"
|
236 |
-
msgstr
|
237 |
|
238 |
-
#:
|
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 |
-
#:
|
243 |
msgid "Transition type"
|
244 |
-
msgstr
|
245 |
|
246 |
-
#:
|
247 |
msgid "The transition type of the Colorbox. Can be set to \"elastic\", \"fade\", or \"none\""
|
248 |
-
msgstr
|
249 |
|
250 |
-
#:
|
251 |
msgid "Transition speed"
|
252 |
-
msgstr
|
253 |
|
254 |
-
#:
|
255 |
msgid "Sets the speed of the \"fade\" and \"elastic\" transitions, in milliseconds"
|
256 |
-
msgstr
|
257 |
|
258 |
-
#:
|
259 |
msgid "Opacity"
|
260 |
-
msgstr
|
261 |
|
262 |
-
#:
|
263 |
msgid "The overlay opacity level. Range: 0 to 1"
|
264 |
-
msgstr
|
265 |
|
266 |
-
#:
|
267 |
msgid "Automate hiding of flash objects"
|
268 |
-
msgstr
|
269 |
|
270 |
-
#:
|
271 |
msgid "Automatically hide embeded flash objects behind the Colorbox layer. Done by setting the wmode to transparent."
|
272 |
-
msgstr
|
273 |
|
274 |
-
#:
|
275 |
msgid "Disable warning"
|
276 |
-
msgstr
|
277 |
|
278 |
-
#:
|
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 |
-
#:
|
283 |
msgid "Save Changes"
|
284 |
msgstr "حفظ التغييرات"
|
285 |
|
286 |
-
#:
|
287 |
-
#:
|
288 |
msgid "Delete Settings"
|
289 |
msgstr "حذف الإعدادات"
|
290 |
|
291 |
-
#:
|
292 |
msgid "Check the box and click this button to delete settings of this plugin."
|
293 |
-
msgstr "ضع علامة في المربع واضغط على
|
294 |
|
295 |
-
#:
|
296 |
msgid "Donate"
|
297 |
msgstr "تبرع"
|
298 |
|
299 |
-
#:
|
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 |
-
#:
|
304 |
msgid "Translation"
|
305 |
-
msgstr
|
306 |
|
307 |
-
#:
|
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-
|
6 |
-
"PO-Revision-Date: 2010-
|
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:
|
18 |
msgid "Theme #1"
|
19 |
msgstr "Tema #1"
|
20 |
|
21 |
-
#: jquery-colorbox.php:
|
22 |
msgid "Theme #2"
|
23 |
msgstr "Tema #2"
|
24 |
|
25 |
-
#: jquery-colorbox.php:
|
26 |
msgid "Theme #3"
|
27 |
msgstr "Tema #3"
|
28 |
|
29 |
-
#: jquery-colorbox.php:
|
30 |
msgid "Theme #4"
|
31 |
msgstr "Tema #4"
|
32 |
|
33 |
-
#: jquery-colorbox.php:
|
34 |
msgid "Theme #5"
|
35 |
msgstr "Tema #5"
|
36 |
|
37 |
-
#: jquery-colorbox.php:
|
38 |
msgid "Theme #6"
|
39 |
msgstr "Tema #6"
|
40 |
|
41 |
-
#: jquery-colorbox.php:
|
42 |
msgid "Theme #7"
|
43 |
msgstr "Tema #7"
|
44 |
|
45 |
-
#: jquery-colorbox.php:
|
46 |
msgid "Theme #8"
|
47 |
msgstr "Tema #8"
|
48 |
|
49 |
-
#: jquery-colorbox.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
msgid "percent"
|
51 |
msgstr "procenat"
|
52 |
|
53 |
-
#: jquery-colorbox.php:
|
54 |
msgid "pixels"
|
55 |
msgstr "piksel"
|
56 |
|
57 |
-
#: jquery-colorbox.php:
|
58 |
msgid "elastic"
|
59 |
msgstr "elastično"
|
60 |
|
61 |
-
#: jquery-colorbox.php:
|
62 |
msgid "fade"
|
63 |
msgstr "izblijediti"
|
64 |
|
65 |
-
#: jquery-colorbox.php:
|
66 |
msgid "none"
|
67 |
msgstr "bez efekta"
|
68 |
|
69 |
-
#: jquery-colorbox.php:
|
70 |
-
#:
|
71 |
msgid "Settings"
|
72 |
msgstr "Opcije"
|
73 |
|
74 |
-
#: jquery-colorbox.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
75 |
msgid "close"
|
76 |
msgstr "Zatvoriti"
|
77 |
|
78 |
-
#:
|
79 |
msgid "next"
|
80 |
msgstr "Naprijed"
|
81 |
|
82 |
-
#:
|
83 |
msgid "previous"
|
84 |
msgstr "Nazad"
|
85 |
|
86 |
-
#:
|
87 |
msgid "start slideshow"
|
88 |
msgstr "Pokreni slideshow"
|
89 |
|
90 |
-
#:
|
91 |
msgid "stop slideshow"
|
92 |
msgstr "Zaustavi slideshow"
|
93 |
|
94 |
-
#:
|
95 |
msgid "{current} of {total} images"
|
96 |
msgstr "{current} od {total} slika"
|
97 |
|
98 |
-
#:
|
99 |
#, php-format
|
100 |
msgid "%1$s Settings"
|
101 |
msgstr "%1$s opcija"
|
102 |
|
103 |
-
#:
|
104 |
msgid "Theme"
|
105 |
msgstr "Tema"
|
106 |
|
107 |
-
#:
|
108 |
msgid "Select the theme you want to use on your blog."
|
109 |
msgstr "Izaberi temu za svoj blog"
|
110 |
|
111 |
-
#:
|
112 |
msgid "Theme screenshot"
|
113 |
msgstr "Screenshot teme"
|
114 |
|
115 |
-
#:
|
116 |
#, php-format
|
117 |
msgid "Automate %1$s for all images"
|
118 |
msgstr "Automatiziraj %1$s za sve slike"
|
119 |
|
120 |
-
#:
|
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 |
-
#:
|
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 |
-
#:
|
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 |
-
#:
|
134 |
msgid "Add Slideshow to groups"
|
135 |
msgstr "Dodaj slideshow grupama"
|
136 |
|
137 |
-
#:
|
138 |
#, php-format
|
139 |
msgid "Add Slideshow functionality for %1$s Groups"
|
140 |
msgstr "Dodaj slideshow funkcionalnost za %1$s grupe"
|
141 |
|
142 |
-
#:
|
143 |
msgid "Start Slideshow automatically"
|
144 |
msgstr "Pokreni slideshow automatski"
|
145 |
|
146 |
-
#:
|
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 |
-
#:
|
152 |
msgid "Speed of the slideshow"
|
153 |
msgstr "Brzina slideshowa"
|
154 |
|
155 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
156 |
msgid "Sets the speed of the slideshow, in milliseconds"
|
157 |
msgstr "Postavi brzinu slideshowa u milisekundama"
|
158 |
|
159 |
-
#:
|
160 |
msgid "Maximum width of an image"
|
161 |
msgstr "Maksimalna širina slike"
|
162 |
|
163 |
-
#:
|
164 |
-
#:
|
165 |
msgid "Do not set width"
|
166 |
msgstr "Ne postavljaj širinu"
|
167 |
|
168 |
-
#:
|
169 |
msgid "Set maximum width of an image"
|
170 |
msgstr "Postavi maksimalnu širinu slike"
|
171 |
|
172 |
-
#:
|
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 |
-
#:
|
177 |
msgid "Maximum height of an image"
|
178 |
msgstr "Maksimalma visina slike"
|
179 |
|
180 |
-
#:
|
181 |
-
#:
|
182 |
msgid "Do not set height"
|
183 |
msgstr "Ne postavljaj visinu"
|
184 |
|
185 |
-
#:
|
186 |
msgid "Set maximum height of an image"
|
187 |
msgstr "Postavi visinu slike"
|
188 |
|
189 |
-
#:
|
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 |
-
#:
|
194 |
msgid "Maximum width of the Colorbox"
|
195 |
msgstr "Maksimalna širina Colorboxa"
|
196 |
|
197 |
-
#:
|
198 |
msgid "Set width of the Colorbox"
|
199 |
msgstr "Postavi širinu Colorboxa"
|
200 |
|
201 |
-
#:
|
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 |
-
#:
|
206 |
msgid "Maximum height of the Colorbox"
|
207 |
msgstr "Maksimalna visina Colorboxa"
|
208 |
|
209 |
-
#:
|
210 |
msgid "Set height of the Colorbox"
|
211 |
msgstr "Postavi visinu Colorboxa"
|
212 |
|
213 |
-
#:
|
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 |
-
#:
|
218 |
msgid "Resize images"
|
219 |
msgstr "Promijeni veličinu slike"
|
220 |
|
221 |
-
#:
|
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 |
-
#:
|
226 |
msgid "Close Colorbox on overlay click"
|
227 |
msgstr "Zatvori Colorbox ako se klikne na overlay."
|
228 |
|
229 |
-
#:
|
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 |
-
#:
|
234 |
msgid "Preload images"
|
235 |
msgstr "Preučitaj slike"
|
236 |
|
237 |
-
#:
|
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 |
-
#:
|
242 |
msgid "Transition type"
|
243 |
msgstr "Tip izmjene"
|
244 |
|
245 |
-
#:
|
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 |
-
#:
|
250 |
msgid "Transition speed"
|
251 |
msgstr "Brzina izjmene"
|
252 |
|
253 |
-
#:
|
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 |
-
#:
|
258 |
msgid "Opacity"
|
259 |
msgstr "Prozirnost"
|
260 |
|
261 |
-
#:
|
262 |
msgid "The overlay opacity level. Range: 0 to 1"
|
263 |
msgstr "Nivo Neprozirnosti overlaya. Raspon od 0 do 1"
|
264 |
|
265 |
-
#:
|
266 |
msgid "Automate hiding of flash objects"
|
267 |
msgstr "Automatsko sakrivanje flash objekata"
|
268 |
|
269 |
-
#:
|
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 |
-
#:
|
274 |
msgid "Disable warning"
|
275 |
msgstr "Deaktiviraj upozorenje"
|
276 |
|
277 |
-
#:
|
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 |
-
#:
|
282 |
msgid "Save Changes"
|
283 |
msgstr "Sačuvaj promjene"
|
284 |
|
285 |
-
#:
|
286 |
-
#:
|
287 |
msgid "Delete Settings"
|
288 |
msgstr "Izbriši postavke"
|
289 |
|
290 |
-
#:
|
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 |
-
#:
|
295 |
msgid "Donate"
|
296 |
msgstr "Doniraj"
|
297 |
|
298 |
-
#:
|
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 |
-
#:
|
303 |
msgid "Translation"
|
304 |
-
msgstr
|
305 |
|
306 |
-
#:
|
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-
|
6 |
-
"PO-Revision-Date: 2010-
|
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:
|
19 |
msgid "Theme #1"
|
20 |
msgstr "Thema #1"
|
21 |
|
22 |
-
#: jquery-colorbox.php:
|
23 |
msgid "Theme #2"
|
24 |
msgstr "Thema #2"
|
25 |
|
26 |
-
#: jquery-colorbox.php:
|
27 |
msgid "Theme #3"
|
28 |
msgstr "Thema #3"
|
29 |
|
30 |
-
#: jquery-colorbox.php:
|
31 |
msgid "Theme #4"
|
32 |
msgstr "Thema #4"
|
33 |
|
34 |
-
#: jquery-colorbox.php:
|
35 |
msgid "Theme #5"
|
36 |
msgstr "Thema #5"
|
37 |
|
38 |
-
#: jquery-colorbox.php:
|
39 |
msgid "Theme #6"
|
40 |
msgstr "Thema #6"
|
41 |
|
42 |
-
#: jquery-colorbox.php:
|
43 |
msgid "Theme #7"
|
44 |
msgstr "Thema #7"
|
45 |
|
46 |
-
#: jquery-colorbox.php:
|
47 |
msgid "Theme #8"
|
48 |
msgstr "Thema #8"
|
49 |
|
50 |
-
#: jquery-colorbox.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
51 |
msgid "percent"
|
52 |
msgstr "Prozent"
|
53 |
|
54 |
-
#: jquery-colorbox.php:
|
55 |
msgid "pixels"
|
56 |
msgstr "Pixel"
|
57 |
|
58 |
-
#: jquery-colorbox.php:
|
59 |
msgid "elastic"
|
60 |
msgstr "Elastisch"
|
61 |
|
62 |
-
#: jquery-colorbox.php:
|
63 |
msgid "fade"
|
64 |
msgstr "Verblassen"
|
65 |
|
66 |
-
#: jquery-colorbox.php:
|
67 |
msgid "none"
|
68 |
msgstr "Kein Effekt"
|
69 |
|
70 |
-
#: jquery-colorbox.php:
|
71 |
-
#:
|
72 |
msgid "Settings"
|
73 |
msgstr "Einstellungen"
|
74 |
|
75 |
-
#: jquery-colorbox.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
76 |
msgid "close"
|
77 |
msgstr "Schließen"
|
78 |
|
79 |
-
#:
|
80 |
msgid "next"
|
81 |
msgstr "Vor"
|
82 |
|
83 |
-
#:
|
84 |
msgid "previous"
|
85 |
msgstr "Zurück"
|
86 |
|
87 |
-
#:
|
88 |
msgid "start slideshow"
|
89 |
msgstr "Slideshow starten"
|
90 |
|
91 |
-
#:
|
92 |
msgid "stop slideshow"
|
93 |
msgstr "Slideshow beenden"
|
94 |
|
95 |
-
#:
|
96 |
msgid "{current} of {total} images"
|
97 |
msgstr "{current} von {total} Bildern"
|
98 |
|
99 |
-
#:
|
100 |
#, php-format
|
101 |
msgid "%1$s Settings"
|
102 |
msgstr "%1$s Einstellungen"
|
103 |
|
104 |
-
#:
|
105 |
msgid "Theme"
|
106 |
msgstr "Thema"
|
107 |
|
108 |
-
#:
|
109 |
msgid "Select the theme you want to use on your blog."
|
110 |
msgstr "Wähle das Theme aus, das Du auf Deinem Blog benutzen möchtest."
|
111 |
|
112 |
-
#:
|
113 |
msgid "Theme screenshot"
|
114 |
msgstr "Screenshot des Themas"
|
115 |
|
116 |
-
#:
|
117 |
#, php-format
|
118 |
msgid "Automate %1$s for all images"
|
119 |
msgstr "%1$s für alle Bilder automatisieren"
|
120 |
|
121 |
-
#:
|
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ür Bilder in Beiträgen und Seite einfügen. Fügt die Klasse auch für Gallerien ein. Alle Bilder innerhalb eines Beitrags oder einer Seite werden automatisch gruppiert."
|
124 |
|
125 |
-
#:
|
126 |
#, php-format
|
127 |
msgid "Automate %1$s for images in WordPress galleries"
|
128 |
msgstr "%1$s für Bilder in WordPress Gallerien automatisieren"
|
129 |
|
130 |
-
#:
|
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ür Bilder in Gallerien einfügen, sonst nirgends. Alle Bilder innerhalb eines Beitrags oder einer Seite werden automatisch gruppiert."
|
133 |
|
134 |
-
#:
|
135 |
msgid "Add Slideshow to groups"
|
136 |
msgstr "Slideshow für Gruppen"
|
137 |
|
138 |
-
#:
|
139 |
#, php-format
|
140 |
msgid "Add Slideshow functionality for %1$s Groups"
|
141 |
msgstr "Slideshow Funktionalität zu %1$s Gruppen hinzufügen"
|
142 |
|
143 |
-
#:
|
144 |
msgid "Start Slideshow automatically"
|
145 |
msgstr "Slideshow automatisch starten"
|
146 |
|
147 |
-
#:
|
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ät zu %1$s Gruppen hinzugefügt wird"
|
151 |
|
152 |
-
#:
|
153 |
msgid "Speed of the slideshow"
|
154 |
msgstr "Geschwindigkeit der Slideshow"
|
155 |
|
156 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
157 |
msgid "Sets the speed of the slideshow, in milliseconds"
|
158 |
msgstr "Die Geschwindigkeit der Slideshow in Millisekunden einstellen"
|
159 |
|
160 |
-
#:
|
161 |
msgid "Maximum width of an image"
|
162 |
msgstr "Maximale Breite eines Bildes"
|
163 |
|
164 |
-
#:
|
165 |
-
#:
|
166 |
msgid "Do not set width"
|
167 |
msgstr "Breite nicht setzen"
|
168 |
|
169 |
-
#:
|
170 |
msgid "Set maximum width of an image"
|
171 |
msgstr "Maximale Breite eines Bildes setzen"
|
172 |
|
173 |
-
#:
|
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ä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ötig. Wenn die maximale Breite des Bildes nicht gesetzt ist, ist das Bild ist so breit wie die Colorbox"
|
176 |
|
177 |
-
#:
|
178 |
msgid "Maximum height of an image"
|
179 |
msgstr "Maximale Höhe eines Bildes"
|
180 |
|
181 |
-
#:
|
182 |
-
#:
|
183 |
msgid "Do not set height"
|
184 |
msgstr "Die Höhe nicht setzen"
|
185 |
|
186 |
-
#:
|
187 |
msgid "Set maximum height of an image"
|
188 |
msgstr "Maximale Höhe eines Bildes setzen"
|
189 |
|
190 |
-
#:
|
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ässt sich die maximale Höhe des Bildes in der colorbox in Relation zum Browserfenster als Prozentwert oder in Pixeln festlegen. Das Bild wird verkleinert falls nötig. Wenn die maximale H&
|
193 |
|
194 |
-
#:
|
195 |
msgid "Maximum width of the Colorbox"
|
196 |
msgstr "Maximale Breite der Colorbox"
|
197 |
|
198 |
-
#:
|
199 |
msgid "Set width of the Colorbox"
|
200 |
msgstr "Breite der Colorbox"
|
201 |
|
202 |
-
#:
|
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ässt sich die maximale Breite der Colorbox in Relation zum Browserfenster als Prozentwert oder in Pixeln festlegen. Wenn das Bild grösser als die Colorbox ist, werden Scrollbalken dargestellt. Wenn keine maximale Breite für die Colorbox gesetzt ist, wird die Colorbox so breit wie das Bild"
|
205 |
|
206 |
-
#:
|
207 |
msgid "Maximum height of the Colorbox"
|
208 |
msgstr "Maximale Höhe der Colorbox"
|
209 |
|
210 |
-
#:
|
211 |
msgid "Set height of the Colorbox"
|
212 |
msgstr "Höhe der Colorbox"
|
213 |
|
214 |
-
#:
|
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ässt sich die maximale Höhe der Colorbox inRrelation zum Browserfenster als Prozentwert oder in Pixeln festlegen. Wenn das Bild grösser als die Colorbox ist, werden Scrollbalken dargestellt. Wenn keine maximale Höhe für die Colorbox gesetzt ist, wird die Colorbox so hoch wie das Bild"
|
217 |
|
218 |
-
#:
|
219 |
msgid "Resize images"
|
220 |
msgstr "Bilder skalieren"
|
221 |
|
222 |
-
#:
|
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öhe von Bildern, die Breite der Colorbox oder die Höhe der Colorbox gesetzt ist, wird Colorbox Bilder skalieren"
|
225 |
|
226 |
-
#:
|
227 |
msgid "Close Colorbox on overlay click"
|
228 |
msgstr "Colorbox schliessen wenn auf das Overlay geklickt wird"
|
229 |
|
230 |
-
#:
|
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 |
-
#:
|
235 |
msgid "Preload images"
|
236 |
msgstr "Bilder vorladen"
|
237 |
|
238 |
-
#:
|
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ück\" Bilder innerhalb einer Gruppe nachdem der aktuell angezeigte Inhalt geladen wurde. Haken aus der Box entfernen um dieses Feature zu deaktivieren."
|
241 |
|
242 |
-
#:
|
243 |
msgid "Transition type"
|
244 |
msgstr "Übergangstyp"
|
245 |
|
246 |
-
#:
|
247 |
msgid "The transition type of the Colorbox. Can be set to \"elastic\", \"fade\", or \"none\""
|
248 |
msgstr "Der Übergangstyp der Colorbox. Kann auf \"Elastisch\", \"Verblassen\" oder \"kein Effekt\" gesetzt werden"
|
249 |
|
250 |
-
#:
|
251 |
msgid "Transition speed"
|
252 |
msgstr "Geschwindigkeit des Übergangs"
|
253 |
|
254 |
-
#:
|
255 |
msgid "Sets the speed of the \"fade\" and \"elastic\" transitions, in milliseconds"
|
256 |
msgstr "Die Geschwindigkeit der Übergänge \"Elastisch\" und \"Verblassen\", in Millisekunden"
|
257 |
|
258 |
-
#:
|
259 |
msgid "Opacity"
|
260 |
msgstr "Deckkraft"
|
261 |
|
262 |
-
#:
|
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 |
-
#:
|
267 |
msgid "Automate hiding of flash objects"
|
268 |
msgstr "Verstecken von Flash Objekten"
|
269 |
|
270 |
-
#:
|
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ür wird der \"wmode\" auf \"transparent\" gesetzt."
|
273 |
|
274 |
-
#:
|
275 |
msgid "Disable warning"
|
276 |
msgstr "Warnung deaktivieren"
|
277 |
|
278 |
-
#:
|
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ür alle Bilder nicht."
|
281 |
|
282 |
-
#:
|
283 |
msgid "Save Changes"
|
284 |
msgstr "Änderungen speichern"
|
285 |
|
286 |
-
#:
|
287 |
-
#:
|
288 |
msgid "Delete Settings"
|
289 |
msgstr "Einstellungen löschen"
|
290 |
|
291 |
-
#:
|
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 |
-
#:
|
296 |
msgid "Donate"
|
297 |
msgstr "Spenden"
|
298 |
|
299 |
-
#:
|
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ür die Weiterentwicklung abgeben möchtest, kannst Du das per PayPal tun."
|
302 |
|
303 |
-
#:
|
304 |
msgid "Translation"
|
305 |
msgstr "Übersetzung"
|
306 |
|
307 |
-
#:
|
308 |
msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
|
309 |
msgstr "Die Übersetzung ins Deutsche wurde von <a href=\"http://www.techotronic.de\">Arne Franken</a> durchgeführt."
|
310 |
|
311 |
-
#: jquery-colorbox.php:845
|
312 |
-
#, php-format
|
313 |
-
msgid "Successfully updated %1$s settings."
|
314 |
-
msgstr "Ä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ötigt Aufmerksamkeit: das Plugin ist nicht fü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 "Ä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ötigt Aufmerksamkeit: das Plugin ist nicht fü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ähle das Theme aus, das Du auf Deinem Blog benutzen mö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ü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ür Bilder in Beiträgen und Seite einfügen. Fügt die Klasse auch fü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ü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ür Bilder in Gallerien einfü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ü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ät zu %1$s Gruppen hinzufü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ät zu %1$s Gruppen hinzugefü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ä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ö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ö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öhe nicht setzen"
|
241 |
|
242 |
+
#: includes/settings-page.php:212
|
243 |
msgid "Set maximum height of an image"
|
244 |
msgstr "Maximale Hö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ässt sich die maximale Höhe des Bildes in der colorbox in Relation zum Browserfenster als Prozentwert oder in Pixeln festlegen. Das Bild wird verkleinert falls nötig. Wenn die maximale Hö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ässt sich die maximale Breite der Colorbox in Relation zum Browserfenster als Prozentwert oder in Pixeln festlegen. Wenn das Bild grösser als die Colorbox ist, werden Scrollbalken dargestellt. Wenn keine maximale Breite fü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öhe der Colorbox"
|
265 |
|
266 |
+
#: includes/settings-page.php:258
|
267 |
msgid "Set height of the Colorbox"
|
268 |
msgstr "Hö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ässt sich die maximale Höhe der Colorbox inRrelation zum Browserfenster als Prozentwert oder in Pixeln festlegen. Wenn das Bild grösser als die Colorbox ist, werden Scrollbalken dargestellt. Wenn keine maximale Höhe fü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öhe von Bildern, die Breite der Colorbox oder die Hö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ü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 "Ü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 Ü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 Ü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 Übergä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ü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ür alle Bilder nicht."
|
337 |
|
338 |
+
#: includes/settings-page.php:355
|
339 |
msgid "Save Changes"
|
340 |
msgstr "Ä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ür die Weiterentwicklung abgeben möchtest, kannst Du das per PayPal tun."
|
358 |
|
359 |
+
#: includes/settings-page.php:406
|
360 |
msgid "Translation"
|
361 |
msgstr "Ü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 Übersetzung ins Deutsche wurde von <a href=\"http://www.techotronic.de\">Arne Franken</a> durchgefü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-
|
6 |
-
"PO-Revision-Date: 2010-
|
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:
|
19 |
msgid "Theme #1"
|
20 |
msgstr ""
|
21 |
|
22 |
-
#: jquery-colorbox.php:
|
23 |
msgid "Theme #2"
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: jquery-colorbox.php:
|
27 |
msgid "Theme #3"
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: jquery-colorbox.php:
|
31 |
msgid "Theme #4"
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: jquery-colorbox.php:
|
35 |
msgid "Theme #5"
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: jquery-colorbox.php:
|
39 |
msgid "Theme #6"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: jquery-colorbox.php:
|
43 |
msgid "Theme #7"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: jquery-colorbox.php:
|
47 |
msgid "Theme #8"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: jquery-colorbox.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
51 |
msgid "percent"
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: jquery-colorbox.php:
|
55 |
msgid "pixels"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: jquery-colorbox.php:
|
59 |
msgid "elastic"
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: jquery-colorbox.php:
|
63 |
msgid "fade"
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: jquery-colorbox.php:
|
67 |
msgid "none"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: jquery-colorbox.php:
|
71 |
-
#:
|
72 |
msgid "Settings"
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: jquery-colorbox.php:
|
76 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
msgstr ""
|
78 |
|
79 |
#: jquery-colorbox.php:387
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
msgid "next"
|
81 |
msgstr ""
|
82 |
|
83 |
-
#:
|
84 |
msgid "previous"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#:
|
88 |
msgid "start slideshow"
|
89 |
msgstr ""
|
90 |
|
91 |
-
#:
|
92 |
msgid "stop slideshow"
|
93 |
msgstr ""
|
94 |
|
95 |
-
#:
|
96 |
msgid "{current} of {total} images"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#:
|
100 |
#, php-format
|
101 |
msgid "%1$s Settings"
|
102 |
msgstr ""
|
103 |
|
104 |
-
#:
|
105 |
msgid "Theme"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#:
|
109 |
msgid "Select the theme you want to use on your blog."
|
110 |
msgstr ""
|
111 |
|
112 |
-
#:
|
113 |
msgid "Theme screenshot"
|
114 |
msgstr ""
|
115 |
|
116 |
-
#:
|
117 |
#, php-format
|
118 |
msgid "Automate %1$s for all images"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#:
|
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 |
-
#:
|
126 |
#, php-format
|
127 |
msgid "Automate %1$s for images in WordPress galleries"
|
128 |
msgstr ""
|
129 |
|
130 |
-
#:
|
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 |
-
#:
|
135 |
msgid "Add Slideshow to groups"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#:
|
139 |
#, php-format
|
140 |
msgid "Add Slideshow functionality for %1$s Groups"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#:
|
144 |
msgid "Start Slideshow automatically"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#:
|
148 |
#, php-format
|
149 |
msgid "Start Slideshow automatically if slideshow functionality is added to %1$s Groups"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#:
|
153 |
msgid "Speed of the slideshow"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
157 |
msgid "Sets the speed of the slideshow, in milliseconds"
|
158 |
msgstr ""
|
159 |
|
160 |
-
#:
|
161 |
msgid "Maximum width of an image"
|
162 |
msgstr ""
|
163 |
|
164 |
-
#:
|
165 |
-
#:
|
166 |
msgid "Do not set width"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#:
|
170 |
msgid "Set maximum width of an image"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#:
|
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 |
-
#:
|
178 |
msgid "Maximum height of an image"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#:
|
182 |
-
#:
|
183 |
msgid "Do not set height"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#:
|
187 |
msgid "Set maximum height of an image"
|
188 |
msgstr ""
|
189 |
|
190 |
-
#:
|
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 |
-
#:
|
195 |
msgid "Maximum width of the Colorbox"
|
196 |
msgstr ""
|
197 |
|
198 |
-
#:
|
199 |
msgid "Set width of the Colorbox"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#:
|
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 |
-
#:
|
207 |
msgid "Maximum height of the Colorbox"
|
208 |
msgstr ""
|
209 |
|
210 |
-
#:
|
211 |
msgid "Set height of the Colorbox"
|
212 |
msgstr ""
|
213 |
|
214 |
-
#:
|
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 |
-
#:
|
219 |
msgid "Resize images"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#:
|
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 |
-
#:
|
227 |
msgid "Close Colorbox on overlay click"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#:
|
231 |
msgid "If checked, enables closing ColorBox by clicking on the background overlay"
|
232 |
msgstr ""
|
233 |
|
234 |
-
#:
|
235 |
msgid "Preload images"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#:
|
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 |
-
#:
|
243 |
msgid "Transition type"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#:
|
247 |
msgid "The transition type of the Colorbox. Can be set to \"elastic\", \"fade\", or \"none\""
|
248 |
msgstr ""
|
249 |
|
250 |
-
#:
|
251 |
msgid "Transition speed"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#:
|
255 |
msgid "Sets the speed of the \"fade\" and \"elastic\" transitions, in milliseconds"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#:
|
259 |
msgid "Opacity"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#:
|
263 |
msgid "The overlay opacity level. Range: 0 to 1"
|
264 |
msgstr ""
|
265 |
|
266 |
-
#:
|
267 |
msgid "Automate hiding of flash objects"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#:
|
271 |
msgid "Automatically hide embeded flash objects behind the Colorbox layer. Done by setting the wmode to transparent."
|
272 |
msgstr ""
|
273 |
|
274 |
-
#:
|
275 |
msgid "Disable warning"
|
276 |
msgstr ""
|
277 |
|
278 |