jQuery Colorbox - Version 4.1

Version Description

(2011-06-25) = * NEW: Plugin is compatible to WordPress 3.2 * NEW: Polish translation by Kornel ysikowski * NEW: Finnish translation by Lauri Merisaari * NEW: Simplified Chinese translation by Lucas Ho * BUGFIX: Plugin will only select links with class "colorbox-link", no other HTML tags. * BUGFIX: JavaScript will work with jQuery 1.6 now * BUGFIX: loading inline content does not trigger loading an iframe any more. * BUGFIX: regex for IMG tag works correctly now. * CHANGE: Update of Colorbox library to version 1.3.17.1 * CHANGE: JavaScript now ignores links that do not have the optional "href" attribute. * CHANGE: Links from images to non-images are now opened in a Colorbox. * CHANGE: Moved bulk of JavaScript from inline to file, consolidated files * CHANGE: Additional option for adding colorbox class to images outside of posts and pages. * CHANGE: Major refactoring, hopefully speeds up frontend and backend rendering * CHANGE: Render Meta-Tag with plugin version into blog header instead of comments * CHANGE: French translation updated by Pierre Sudarovich

Download this release

Release Info

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

Code changes from version 4.0 to 4.1

Files changed (80) hide show
  1. TODO.txt +2 -0
  2. images/ajax-loader.gif +0 -0
  3. includes/colorbox-javascript-loader.php +0 -75
  4. includes/colorbox-javascript.php +0 -165
  5. includes/debugger.php +163 -0
  6. includes/donationloader.php +195 -0
  7. includes/iefix-theme1.php +0 -23
  8. includes/iefix-theme11.php +0 -23
  9. includes/iefix-theme4.php +0 -23
  10. includes/iefix-theme6.php +0 -23
  11. includes/iefix-theme7.php +0 -23
  12. includes/iefix-theme9.php +0 -23
  13. includes/jquery-colorbox-backend.php +372 -0
  14. includes/jquery-colorbox-frontend.php +268 -0
  15. includes/settings-page.php +12 -605
  16. includes/settings-page/sp-colorbox-settings.php +333 -0
  17. includes/settings-page/sp-delete-settings.php +29 -0
  18. includes/settings-page/sp-donate-box.php +52 -0
  19. includes/settings-page/sp-donations.php +37 -0
  20. includes/settings-page/sp-footer.php +16 -0
  21. includes/settings-page/sp-javascript-header.php +113 -0
  22. includes/settings-page/sp-left-column.php +25 -0
  23. includes/settings-page/sp-plugin-settings.php +110 -0
  24. includes/settings-page/sp-right-column.php +18 -0
  25. includes/settings-page/sp-translation.php +20 -0
  26. jquery-colorbox.php +254 -668
  27. js/donation-min.js +1 -0
  28. js/donation.js +78 -0
  29. js/jquery-colorbox-auto-min.js +0 -1
  30. js/jquery-colorbox-auto.js +0 -17
  31. js/jquery-colorbox-draggable.js +0 -15
  32. js/jquery-colorbox-hideFlash-min.js +0 -1
  33. js/jquery-colorbox-hideFlash.js +0 -31
  34. js/jquery-colorbox-wrapper-min.js +1 -0
  35. js/jquery-colorbox-wrapper.js +303 -0
  36. js/jquery.colorbox-min.js +2 -2
  37. js/jquery.colorbox.js +107 -49
  38. localization/jquery-colorbox-ar.mo +0 -0
  39. localization/jquery-colorbox-ar.po +48 -52
  40. localization/jquery-colorbox-be_BY.mo +0 -0
  41. localization/jquery-colorbox-be_BY.po +48 -52
  42. localization/jquery-colorbox-bs_BA.mo +0 -0
  43. localization/jquery-colorbox-bs_BA.po +48 -52
  44. localization/jquery-colorbox-de_DE.mo +0 -0
  45. localization/jquery-colorbox-de_DE.po +48 -52
  46. localization/jquery-colorbox-en_EN.mo +0 -0
  47. localization/jquery-colorbox-en_EN.po +42 -52
  48. localization/jquery-colorbox-es_ES.mo +0 -0
  49. localization/jquery-colorbox-es_ES.po +48 -52
  50. localization/jquery-colorbox-fi.mo +0 -0
  51. localization/jquery-colorbox-fi.po +535 -0
  52. localization/jquery-colorbox-fr_FR.mo +0 -0
  53. localization/jquery-colorbox-fr_FR.po +192 -203
  54. localization/jquery-colorbox-he_IL.mo +0 -0
  55. localization/jquery-colorbox-he_IL.po +48 -52
  56. localization/jquery-colorbox-it_IT.mo +0 -0
  57. localization/jquery-colorbox-it_IT.po +49 -52
  58. localization/jquery-colorbox-lv.mo +0 -0
  59. localization/jquery-colorbox-lv.po +48 -52
  60. localization/jquery-colorbox-ms_MY.mo +0 -0
  61. localization/jquery-colorbox-ms_MY.po +48 -52
  62. localization/jquery-colorbox-nl_NL.mo +0 -0
  63. localization/jquery-colorbox-nl_NL.po +48 -52
  64. localization/jquery-colorbox-pl_PL.mo +0 -0
  65. localization/jquery-colorbox-pl_PL.po +537 -0
  66. localization/jquery-colorbox-pt_BR.mo +0 -0
  67. localization/jquery-colorbox-pt_BR.po +48 -52
  68. localization/jquery-colorbox-ru_RU.mo +0 -0
  69. localization/jquery-colorbox-ru_RU.po +49 -52
  70. localization/jquery-colorbox-sk_SK.mo +0 -0
  71. localization/jquery-colorbox-sk_SK.po +48 -52
  72. localization/jquery-colorbox-sv_SE.mo +0 -0
  73. localization/jquery-colorbox-sv_SE.po +48 -52
  74. localization/jquery-colorbox-tr_TR.mo +0 -0
  75. localization/jquery-colorbox-tr_TR.po +1 -1
  76. localization/jquery-colorbox-uk.mo +0 -0
  77. localization/jquery-colorbox-uk.po +49 -52
  78. localization/jquery-colorbox-zh_CN.mo +0 -0
  79. localization/jquery-colorbox-zh_CN.po +534 -0
  80. readme.txt +36 -16
TODO.txt CHANGED
@@ -66,6 +66,8 @@ Feature 11
66
  Feature 12
67
  - add option to switch colorbox off for whole posts and pages
68
 
 
 
69
 
70
  Need to think about these features
71
  - add link to Fullscreen to Colorbox
66
  Feature 12
67
  - add option to switch colorbox off for whole posts and pages
68
 
69
+ Feature 13
70
+ - add colorbox 1.3.17.1 property "fixed"
71
 
72
  Need to think about these features
73
  - add link to Fullscreen to Colorbox
images/ajax-loader.gif ADDED
Binary file
includes/colorbox-javascript-loader.php DELETED
@@ -1,75 +0,0 @@
1
- <?php
2
- /**
3
- * @package Techotronic
4
- * @subpackage jQuery Colorbox
5
- *
6
- * @since 3.7
7
- * @author Arne Franken
8
- *
9
- * loads the main function of the Colorbox Javascript
10
- */
11
- ?>
12
- <script type="text/javascript">
13
- // <![CDATA[
14
- <?php
15
- /**
16
- * declare variables that are used in more than one function
17
- */
18
- ?>
19
- var COLORBOX_INTERNAL_LINK_PATTERN = /^#.*/;
20
- var COLORBOX_IMG_PATTERN = /\.(?:jpe?g|gif|png|bmp)/i;
21
- var COLORBOX_MANUAL = "colorbox-manual";
22
- var COLORBOX_OFF_CLASS = ".colorbox-off";
23
- var COLORBOX_LINK_CLASS = ".colorbox-link";
24
- var COLORBOX_OFF = "colorbox-off";
25
- var COLORBOX_CLASS_MATCH = "colorbox-[0-9]+";
26
-
27
- var colorboxInline = false;
28
- var colorboxIframe = false;
29
- var colorboxGroupId;
30
- var colorboxTitle;
31
- var colorboxWidth = false;
32
- var colorboxHeight = false;
33
- var colorboxMaxWidth = false;
34
- var colorboxMaxHeight = false;
35
- var colorboxSlideshow = <?php echo !$this->colorboxSettings['slideshow'] ? 'false' : 'true'; ?>;
36
- var colorboxSlideshowAuto = <?php echo $this->colorboxSettings['slideshowAuto'] ? 'true' : 'false';?>;
37
- var colorboxScalePhotos = <?php echo $this->colorboxSettings['scalePhotos'] ? 'true' : 'false';?>;
38
- var colorboxPreloading = <?php echo $this->colorboxSettings['preloading'] ? 'true' : 'false';?>;
39
- var colorboxOverlayClose = <?php echo $this->colorboxSettings['overlayClose'] ? 'true' : 'false';?>;
40
- var colorboxLoop = <?php echo !$this->colorboxSettings['disableLoop'] ? 'true' : 'false';?>;
41
- var colorboxEscKey = <?php echo !$this->colorboxSettings['disableKeys'] ? 'true' : 'false';?>;
42
- var colorboxArrowKey = <?php echo !$this->colorboxSettings['disableKeys'] ? 'true' : 'false';?>;
43
- var colorboxScrolling = <?php echo !$this->colorboxSettings['displayScrollbar'] || $this->colorboxSettings['draggable'] ? 'true' : 'false';?>;
44
- var colorboxOpacity = "<?php echo $this->colorboxSettings['opacity']; ?>";
45
- var colorboxTransition = "<?php echo $this->colorboxSettings['transition']; ?>";
46
- var colorboxSpeed = <?php echo $this->colorboxSettings['speed']; ?>;
47
- var colorboxSlideshowSpeed = <?php echo $this->colorboxSettings['slideshowSpeed']; ?>;
48
- var colorboxClose = "<?php _e('close', JQUERYCOLORBOX_TEXTDOMAIN); ?>";
49
- var colorboxNext = "<?php _e('next', JQUERYCOLORBOX_TEXTDOMAIN); ?>";
50
- var colorboxPrevious = "<?php _e('previous', JQUERYCOLORBOX_TEXTDOMAIN); ?>";
51
- var colorboxSlideshowStart = "<?php _e('start slideshow', JQUERYCOLORBOX_TEXTDOMAIN); ?>";
52
- var colorboxSlideshowStop = "<?php _e('stop slideshow', JQUERYCOLORBOX_TEXTDOMAIN); ?>";
53
- var colorboxCurrent = "<?php _e('{current} of {total} images', JQUERYCOLORBOX_TEXTDOMAIN); ?>";
54
-
55
- var colorboxImageMaxWidth = <?php echo $this->colorboxSettings['maxWidth'] == "false" ? 'false' : '"' . $this->colorboxSettings['maxWidthValue'] . $this->colorboxSettings['maxWidthUnit'] . '"'; ?>;
56
- var colorboxImageMaxHeight = <?php echo $this->colorboxSettings['maxHeight'] == "false" ? 'false' : '"' . $this->colorboxSettings['maxHeightValue'] . $this->colorboxSettings['maxHeightUnit'] . '"'; ?>;
57
- var colorboxImageHeight = <?php echo $this->colorboxSettings['height'] == "false" ? 'false' : '"' . $this->colorboxSettings['heightValue'] . $this->colorboxSettings['heightUnit'] . '"'; ?>;
58
- var colorboxImageWidth = <?php echo $this->colorboxSettings['width'] == "false" ? 'false' : '"' . $this->colorboxSettings['widthValue'] . $this->colorboxSettings['widthUnit'] . '"'; ?>;
59
-
60
- var colorboxLinkHeight = <?php echo $this->colorboxSettings['linkHeight'] == "false" ? 'false' : '"' . $this->colorboxSettings['linkHeightValue'] . $this->colorboxSettings['linkHeightUnit'] . '"'; ?>;
61
- var colorboxLinkWidth = <?php echo $this->colorboxSettings['linkWidth'] == "false" ? 'false' : '"' . $this->colorboxSettings['linkWidthValue'] . $this->colorboxSettings['linkWidthUnit'] . '"'; ?>;
62
-
63
- var colorboxInitialHeight = <?php echo $this->colorboxSettings['initialHeight']; ?>;
64
- var colorboxInitialWidth = <?php echo $this->colorboxSettings['initialWidth']; ?>;
65
-
66
- <?php
67
- /**
68
- * call colorbox selector function.
69
- */
70
- ?>
71
- jQuery(document).ready(function() {
72
- colorboxSelector();
73
- });
74
- // ]]>
75
- </script>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/colorbox-javascript.php DELETED
@@ -1,165 +0,0 @@
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
-
15
- <script type="text/javascript">
16
- // <![CDATA[
17
- <?php
18
- /**
19
- * jQuery selector
20
- *
21
- * call colorboxImage on all "a" elements that have a nested "img"
22
- */
23
- ?>
24
- (function($) {
25
- colorboxSelector = function() {
26
-
27
- <?php
28
- //set variables for images ?>
29
- colorboxMaxWidth = colorboxImageMaxWidth;
30
- colorboxMaxHeight = colorboxImageMaxHeight;
31
- colorboxHeight = colorboxImageHeight;
32
- colorboxWidth = colorboxImageWidth;
33
- $("a:has(img):not(.colorbox-off)").each(function(index, obj) {
34
- <?php
35
- //only go on if link points to an image ?>
36
- if ($(obj).attr("href").match(COLORBOX_IMG_PATTERN)) {
37
- colorboxImage(index, obj)
38
- }
39
- });
40
- <?php
41
- //call colorboxLink on all elements that have CSS class called "colorbox-link" ?>
42
- $(COLORBOX_LINK_CLASS).each(function(index, obj) {
43
- colorboxLink(index, obj)
44
- });
45
- }
46
- })(jQuery);
47
- <?php
48
- /**
49
- * colorboxImage
50
- *
51
- * selects only links that point to images and sets necessary variables
52
- */
53
- ?>
54
- (function($) {
55
- colorboxImage = function(index, obj) {
56
- var $image = $(obj).find("img:first");
57
- <?php
58
- //check if the link has a colorbox class ?>
59
- var $linkClasses = $(obj).attr("class");
60
- colorboxGroupId = $linkClasses.match(COLORBOX_CLASS_MATCH) || $linkClasses.match(COLORBOX_MANUAL);
61
- if (!colorboxGroupId) {
62
- <?php
63
- // link does not have colorbox class. Check if image has colorbox class. ?>
64
- var $imageClasses = $image.attr("class");
65
- if (!$imageClasses.match(COLORBOX_OFF)) {
66
- <?php
67
- //groupId is either the automatically created colorbox-123 or the manually added colorbox-manual ?>
68
- colorboxGroupId = $imageClasses.match(COLORBOX_CLASS_MATCH) || $imageClasses.match(COLORBOX_MANUAL);
69
- }
70
- <?php
71
- //only call Colorbox if there is a groupId for the image?>
72
- if (colorboxGroupId) {
73
- <?php
74
- //convert groupId to string and lose "colorbox-" for easier use ?>
75
- colorboxGroupId = colorboxGroupId.toString().split('-')[1];
76
- <?php
77
- //if groudId is colorbox-manual, set groupId to "nofollow" so that images are not grouped ?>
78
- if (colorboxGroupId == "manual") {
79
- colorboxGroupId = "nofollow";
80
- }
81
- <?php
82
- //the title of the img is used as the title for the Colorbox. ?>
83
- colorboxTitle = $image.attr("title");
84
-
85
- colorboxWrapper(obj);
86
- }
87
- }
88
- }
89
- })(jQuery);
90
- <?php
91
- /**
92
- * colorboxLink
93
- *
94
- * sets necessary variables
95
- */
96
- ?>
97
- (function($) {
98
- colorboxLink = function(index, obj) {
99
- colorboxTitle = $(obj).attr("title");
100
- if ($(obj).attr("href").match(COLORBOX_INTERNAL_LINK_PATTERN)) {
101
- colorboxInline = true;
102
- } else {
103
- colorboxIframe = true;
104
- }
105
- colorboxGroupId = "nofollow";
106
- colorboxMaxWidth = false;
107
- colorboxMaxHeight = false;
108
- colorboxHeight = colorboxLinkHeight;
109
- colorboxWidth = colorboxLinkWidth;
110
- if ($(obj).attr("href").match(COLORBOX_IMG_PATTERN)) {
111
- colorboxIframe = false;
112
- colorboxMaxWidth = colorboxImageMaxWidth;
113
- colorboxMaxHeight = colorboxImageMaxHeight;
114
- colorboxHeight = colorboxImageHeight;
115
- colorboxWidth = colorboxImageWidth;
116
- }
117
- colorboxWrapper(obj);
118
- }
119
- })(jQuery);
120
-
121
- <?php
122
- /**
123
- * colorboxWrapper
124
- *
125
- * actually calls the colorbox function on the links
126
- * elements with the same groupId in the class attribute are grouped
127
- */
128
- ?>
129
- (function($) {
130
- colorboxWrapper = function(obj) {
131
- $(obj).colorbox({
132
- rel:colorboxGroupId,
133
- title:colorboxTitle,
134
- maxHeight:colorboxMaxHeight,
135
- maxWidth:colorboxMaxWidth,
136
- initialHeight:colorboxInitialHeight,
137
- initialWidth:colorboxInitialWidth,
138
- height:colorboxHeight,
139
- width:colorboxWidth,
140
- slideshow:colorboxSlideshow,
141
- slideshowAuto:colorboxSlideshowAuto,
142
- scalePhotos:colorboxScalePhotos,
143
- preloading:colorboxPreloading,
144
- overlayClose:colorboxOverlayClose,
145
- loop:colorboxLoop,
146
- escKey:colorboxEscKey,
147
- arrowKey:colorboxArrowKey,
148
- scrolling:colorboxScrolling,
149
- opacity:colorboxOpacity,
150
- transition:colorboxTransition,
151
- speed:colorboxSpeed,
152
- slideshowSpeed:colorboxSlideshowSpeed,
153
- close:colorboxClose,
154
- next:colorboxNext,
155
- previous:colorboxPrevious,
156
- slideshowStart:colorboxSlideshowStart,
157
- slideshowStop:colorboxSlideshowStop,
158
- current:colorboxCurrent,
159
- inline:colorboxInline,
160
- iframe:colorboxIframe
161
- });
162
- }
163
- })(jQuery);
164
- // ]]>
165
- </script>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/debugger.php ADDED
@@ -0,0 +1,163 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * @package Techotronic
4
+ * @subpackage All in one Favicon
5
+ *
6
+ * @since 4.0
7
+ * @author Arne Franken
8
+ *
9
+ * Helper class for debugging variables in PHP.
10
+ * see http://www.php.net/manual/en/function.var-dump.php
11
+ *
12
+ * In class:
13
+ * var $debugger;
14
+ *
15
+ * In constructor:
16
+ * global $debugger;
17
+ * require_once('debugger.php');
18
+ * $debugger = new Debugger();
19
+ *
20
+ * In method:
21
+ * global $debugger;
22
+ * $debugger->dieWithVariable($variable);
23
+ */
24
+ class Debugger {
25
+
26
+ /**
27
+ * Calls wp_die with the given variable.
28
+ *
29
+ * @author Arne Franken
30
+ * @access public
31
+ *
32
+ * @return void
33
+ */
34
+ //public function dieWithAllVariables() {
35
+ function dieWithAllVariables() {
36
+ wp_die(var_dump(get_defined_vars()));
37
+ }
38
+
39
+ // dieWithAllVariables()
40
+
41
+ /**
42
+ * Calls wp_die with the given variable.
43
+ *
44
+ * @author Arne Franken
45
+ * @access public
46
+ *
47
+ * @param $variable the variable
48
+ * @param $title
49
+ *
50
+ * @return void
51
+ */
52
+ //public function dieWithVariable($variable, $title = null) {
53
+ function dieWithVariable($variable, $title = null) {
54
+ wp_die($this->dumpVariable($variable), $title);
55
+ }
56
+
57
+ // dieWithVariable()
58
+
59
+ /**
60
+ * Dumps the given variable into an HTML container
61
+ *
62
+ * @access private
63
+ *
64
+ * @param $var the variable
65
+ * @param String $info display as a title
66
+ *
67
+ * @return void
68
+ */
69
+ //private function dumpVariable(&$var, $info = FALSE) {
70
+ function dumpVariable(&$var, $info = FALSE) {
71
+ $scope = false;
72
+ $prefix = 'unique';
73
+ $suffix = 'value';
74
+
75
+ if ($scope) $vals = $scope;
76
+ else $vals = $GLOBALS;
77
+
78
+ $old = $var;
79
+ $var = $new = $prefix . rand() . $suffix;
80
+ $vname = FALSE;
81
+ foreach ($vals as $key => $val) if ($val === $new) $vname = $key;
82
+ $var = $old;
83
+
84
+ echo "<pre style='margin: 0 0 10px 0; display: block; background: white; color: black; font-family: Verdana; border: 1px solid #cccccc; padding: 5px; font-size: 10px; line-height: 13px;'>";
85
+ if ($info != FALSE) echo "<b style='color: red;'>$info:</b><br>";
86
+ $this->doDumpVariable($var, '$' . $vname);
87
+ echo "</pre>";
88
+ }
89
+
90
+ // dumpVariable()
91
+
92
+ /**
93
+ * Dumps and formats variables
94
+ *
95
+ * @access private
96
+ *
97
+ * @param $var
98
+ * @param null $var_name
99
+ * @param null $indent
100
+ * @param null $reference
101
+ *
102
+ * @return void
103
+ */
104
+ //private function doDumpVariable(&$var, $var_name = NULL, $indent = NULL, $reference = NULL) {
105
+ function doDumpVariable(&$var, $var_name = NULL, $indent = NULL, $reference = NULL) {
106
+ $do_dump_indent = "<span style='color:#eeeeee;'>|</span> &nbsp;&nbsp; ";
107
+ $reference = $reference . $var_name;
108
+ $keyvar = 'the_do_dump_recursion_protection_scheme';
109
+ $keyname = 'referenced_object_name';
110
+
111
+ if (is_array($var) && isset($var[$keyvar])) {
112
+ $real_var = &$var[$keyvar];
113
+ $real_name = &$var[$keyname];
114
+ $type = ucfirst(gettype($real_var));
115
+ echo "$indent$var_name <span style='color:#a2a2a2'>$type</span> = <span style='color:#e87800;'>&amp;$real_name</span><br>";
116
+ }
117
+ else {
118
+ $var = array($keyvar => $var, $keyname => $reference);
119
+ $avar = &$var[$keyvar];
120
+
121
+ $type = ucfirst(gettype($avar));
122
+ if ($type == "String") $type_color = "<span style='color:green'>";
123
+ elseif ($type == "Integer") $type_color = "<span style='color:red'>";
124
+ elseif ($type == "Double") {
125
+ $type_color = "<span style='color:#0099c5'>";
126
+ $type = "Float";
127
+ }
128
+ elseif ($type == "Boolean") $type_color = "<span style='color:#92008d'>";
129
+ elseif ($type == "NULL") $type_color = "<span style='color:black'>";
130
+
131
+ if (is_array($avar)) {
132
+ $count = count($avar);
133
+ echo "$indent" . ($var_name ? "$var_name => " : "") . "<span style='color:#a2a2a2'>$type ($count)</span><br>$indent(<br>";
134
+ $keys = array_keys($avar);
135
+ foreach ($keys as $name) {
136
+ $value = &$avar[$name];
137
+ $this->doDumpVariable($value, "['$name']", $indent . $do_dump_indent, $reference);
138
+ }
139
+ echo "$indent)<br>";
140
+ }
141
+ elseif (is_object($avar)) {
142
+ echo "$indent$var_name <span style='color:#a2a2a2'>$type</span><br>$indent(<br>";
143
+ foreach ($avar as $name => $value) $this->doDumpVariable($value, "$name", $indent . $do_dump_indent, $reference);
144
+ echo "$indent)<br>";
145
+ }
146
+ elseif (is_int($avar)) echo "$indent$var_name = <span style='color:#a2a2a2'>$type(" . strlen($avar) . ")</span> $type_color$avar</span><br>";
147
+ elseif (is_string($avar)) echo "$indent$var_name = <span style='color:#a2a2a2'>$type(" . strlen($avar) . ")</span> $type_color\"$avar\"</span><br>";
148
+ elseif (is_float($avar)) echo "$indent$var_name = <span style='color:#a2a2a2'>$type(" . strlen($avar) . ")</span> $type_color$avar</span><br>";
149
+ elseif (is_bool($avar)) echo "$indent$var_name = <span style='color:#a2a2a2'>$type(" . strlen($avar) . ")</span> $type_color" . ($avar == 1
150
+ ? "TRUE" : "FALSE") . "</span><br>";
151
+ elseif (is_null($avar)) echo "$indent$var_name = <span style='color:#a2a2a2'>$type(" . strlen($avar) . ")</span> {$type_color}NULL</span><br>";
152
+ else echo "$indent$var_name = <span style='color:#a2a2a2'>$type(" . strlen($avar) . ")</span> $avar<br>";
153
+
154
+ $var = $var[$keyvar];
155
+ }
156
+ }
157
+
158
+ // doDumpVariable()
159
+
160
+ }
161
+
162
+ // Debugger()
163
+ ?>
includes/donationloader.php ADDED
@@ -0,0 +1,195 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * @package Techotronic
4
+ * @subpackage Donation Loader
5
+ *
6
+ * @version 1.0
7
+ * @author Arne Franken
8
+ *
9
+ * Object that handles Ajax to Xml RPC calls
10
+ */
11
+ if (!defined('DONATIONLOADER_XMLRPC_URL')) {
12
+ //define('DONATIONLOADER_XMLRPC_URL', 'http://xmlrpc.techotronic.de/');
13
+ define('DONATIONLOADER_XMLRPC_URL', 'http://www.wpthemetest.de/wordpress/xmlrpc.php');
14
+ }
15
+ if (!defined('DONATIONLOADER_CACHETIME')) {
16
+ //cachetime in seconds
17
+ define('DONATIONLOADER_CACHETIME', 600);
18
+ }
19
+ //has to have pluginname-prefix because Class names can't be used twice...
20
+ class JQueryColorboxDonationLoader {
21
+ var $donationLoaderUserAgent = JQUERYCOLORBOX_USERAGENT;
22
+ var $donationLoaderPluginName = JQUERYCOLORBOX_PLUGIN_NAME;
23
+ var $donationLoaderPluginUrl = JQUERYCOLORBOX_PLUGIN_URL;
24
+
25
+ /**
26
+ * Constructor
27
+ *
28
+ * @since 1.0
29
+ * @access public
30
+ * @access static
31
+ * @author Arne Franken
32
+ *
33
+ * @return void
34
+ */
35
+ function JQueryColorboxDonationLoader() {
36
+ //not logged in users can trigger the action
37
+ //add_action( 'wp_ajax_nopriv_action', 'methodName' );
38
+ //only logged in users can trigger the action
39
+ //add_action( 'wp_ajax_action', array($this, 'methodName') );
40
+ add_action( 'wp_ajax_load-topDonations', array($this, 'getTopDonations') );
41
+ add_action( 'wp_ajax_load-latestDonations', array($this, 'getLatestDonations') );
42
+ }
43
+
44
+ // DonationLoader()
45
+
46
+ /**
47
+ * XML RPC Test, not used
48
+ *
49
+ * @since 1.0
50
+ * @access private
51
+ * @author Arne Franken
52
+ *
53
+ * @return void
54
+ */
55
+ // function getTest() {
56
+ // $this->doGetDonations(xmlrpc_encode_request('demo.sayHello','doesntMatter'));
57
+ // }
58
+
59
+ // getTest()
60
+
61
+ /**
62
+ * Get top donations
63
+ *
64
+ * @since 1.0
65
+ * @access private
66
+ * @author Arne Franken
67
+ *
68
+ * @return void
69
+ */
70
+ //private function getTopDonations() {
71
+ function getTopDonations() {
72
+ $this->getAndReturnDonations('manageDonations.getTopDonations','top');
73
+ }
74
+
75
+ // getTopDonations()
76
+
77
+ /**
78
+ * Get latest donations
79
+ *
80
+ * @since 1.0
81
+ * @access private
82
+ * @author Arne Franken
83
+ *
84
+ * @return void
85
+ */
86
+ //private function getLatestDonations() {
87
+ function getLatestDonations() {
88
+ $this->getAndReturnDonations('manageDonations.getLatestDonations','latest');
89
+ }
90
+
91
+ // getLatestDonations()
92
+
93
+ /**
94
+ * Generic donation getter.
95
+ * Wrap the XML RPC call and return the value to the Ajax call
96
+ * Caches the serialized response for $cacheTime seconds.
97
+ *
98
+ * @since 1.0
99
+ * @access private
100
+ * @author Arne Franken
101
+ *
102
+ * @param String $remoteProcedureCall RPC method name
103
+ * @param String $identifier cache-identifier for the request
104
+ *
105
+ * @return void
106
+ */
107
+ function getAndReturnDonations($remoteProcedureCall,$identifier) {
108
+ // get the submitted parameters
109
+ $pluginName = $_POST['pluginName'];
110
+
111
+ $key = $identifier . '-' . $pluginName;
112
+
113
+ //try to get response from DB cache
114
+ $response = get_transient($key);
115
+ if ( false == $response ) {
116
+ // response not found in DB cache, generate response
117
+ $xmlRpcRequest = xmlrpc_encode_request($remoteProcedureCall,$pluginName);
118
+
119
+ $response = $this->getRemoteXmlRpcContent(DONATIONLOADER_XMLRPC_URL,$this->donationLoaderUserAgent,$xmlRpcRequest);
120
+
121
+ set_transient($key, serialize($response), DONATIONLOADER_CACHETIME);
122
+ } else {
123
+ $response = unserialize($response);
124
+ }
125
+
126
+ // header content-type must match the one used in the jQuery.post call.
127
+ //header( "content-type: application/json" );
128
+ header( "content-type: text/html" );
129
+
130
+ // echo instead of return, $response is given back to the Ajax call.
131
+ echo $response;
132
+ // IMPORTANT: don't forget to "exit"
133
+ exit;
134
+ }
135
+
136
+ // getDonations()
137
+
138
+ /**
139
+ * Build JavaScript array for loading donations.
140
+ * Also registers JavaScript file.
141
+ *
142
+ * @since 1.0
143
+ * @access public
144
+ * @author Arne Franken
145
+ *
146
+ * @return void
147
+ */
148
+ //public function registerDonationJavaScript() {
149
+ function registerDonationJavaScript() {
150
+ $javaScriptArray = array('ajaxurl' => admin_url( 'admin-ajax.php' ),
151
+ 'pluginName' => $this->donationLoaderPluginName);
152
+
153
+ wp_register_script('donation', $this->donationLoaderPluginUrl . '/js/donation-min.js', array('jquery'));
154
+ wp_enqueue_script('donation');
155
+ wp_localize_script('donation', 'Donation', $javaScriptArray);
156
+ }
157
+
158
+ // registerDonationJavaScript()
159
+
160
+ /**
161
+ * Read XML from a remote url
162
+ *
163
+ * @since 1.0
164
+ * @access private
165
+ * @author Arne Franken
166
+ *
167
+ * @param string $url
168
+ * @param string $userAgent
169
+ * @param string $xmlRpcRequest
170
+ *
171
+ * @return the response or FALSE if there was an error
172
+ */
173
+ //private function getRemoteXmlRpcContent($url) {
174
+ function getRemoteXmlRpcContent($url,$userAgent,$xmlRpcRequest) {
175
+ $returnValue = false;
176
+ if (function_exists('wp_remote_post')) {
177
+ $options = array('user-agent' => $userAgent,
178
+ 'body' => $xmlRpcRequest);
179
+
180
+ $response = wp_remote_post($url, $options);
181
+ if (!is_wp_error($response) && 200 == wp_remote_retrieve_response_code($response)) {
182
+ $decodedResponse = xmlrpc_decode($response['body'],'utf-8');
183
+ if(!xmlrpc_is_fault($decodedResponse)) {
184
+ $returnValue = $decodedResponse;
185
+ }
186
+ }
187
+ }
188
+ return $returnValue;
189
+ }
190
+
191
+ // getRemoteXmlRpcContent()
192
+ }
193
+
194
+ // DonationLoader()
195
+ ?>
includes/iefix-theme1.php DELETED
@@ -1,23 +0,0 @@
1
- <?php
2
- /**
3
- * @package Techotronic
4
- * @subpackage jQuery Colorbox
5
- *
6
- * @since 3.1
7
- * @author Arne Franken
8
- *
9
- * CSS fixes for IE
10
- */
11
- ?>
12
- <!--[if IE]>
13
- <style type="text/css">
14
- .cboxIE #cboxTopLeft{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=<?php echo JQUERYCOLORBOX_PLUGIN_URL ?>/themes/theme1/images/internet_explorer/borderTopLeft.png, sizingMethod='scale');}
15
- .cboxIE #cboxTopCenter{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=<?php echo JQUERYCOLORBOX_PLUGIN_URL ?>/themes/theme1/images/internet_explorer/borderTopCenter.png, sizingMethod='scale');}
16
- .cboxIE #cboxTopRight{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=<?php echo JQUERYCOLORBOX_PLUGIN_URL ?>/themes/theme1/images/internet_explorer/borderTopRight.png, sizingMethod='scale');}
17
- .cboxIE #cboxBottomLeft{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=<?php echo JQUERYCOLORBOX_PLUGIN_URL ?>/themes/theme1/images/internet_explorer/borderBottomLeft.png, sizingMethod='scale');}
18
- .cboxIE #cboxBottomCenter{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=<?php echo JQUERYCOLORBOX_PLUGIN_URL ?>/themes/theme1/images/internet_explorer/borderBottomCenter.png, sizingMethod='scale');}
19
- .cboxIE #cboxBottomRight{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=<?php echo JQUERYCOLORBOX_PLUGIN_URL ?>/themes/theme1/images/internet_explorer/borderBottomRight.png, sizingMethod='scale');}
20
- .cboxIE #cboxMiddleLeft{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=<?php echo JQUERYCOLORBOX_PLUGIN_URL ?>/themes/theme1/images/internet_explorer/borderMiddleLeft.png, sizingMethod='scale');}
21
- .cboxIE #cboxMiddleRight{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=<?php echo JQUERYCOLORBOX_PLUGIN_URL ?>/themes/theme1/images/internet_explorer/borderMiddleRight.png, sizingMethod='scale');}
22
- </style>
23
- <![endif]-->
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/iefix-theme11.php DELETED
@@ -1,23 +0,0 @@
1
- <?php
2
- /**
3
- * @package Techotronic
4
- * @subpackage jQuery Colorbox
5
- *
6
- * @since 3.1
7
- * @author Arne Franken
8
- *
9
- * CSS fixes for IE
10
- */
11
- ?>
12
- <!--[if IE]>
13
- <style type="text/css">
14
- .cboxIE #cboxTopLeft{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=<?php echo JQUERYCOLORBOX_PLUGIN_URL ?>/themes/theme11/images/internet_explorer/borderTopLeft.png, sizingMethod='scale');}
15
- .cboxIE #cboxTopCenter{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=<?php echo JQUERYCOLORBOX_PLUGIN_URL ?>/themes/theme11/images/internet_explorer/borderTopCenter.png, sizingMethod='scale');}
16
- .cboxIE #cboxTopRight{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=<?php echo JQUERYCOLORBOX_PLUGIN_URL ?>/themes/theme11/images/internet_explorer/borderTopRight.png, sizingMethod='scale');}
17
- .cboxIE #cboxBottomLeft{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=<?php echo JQUERYCOLORBOX_PLUGIN_URL ?>/themes/theme11/images/internet_explorer/borderBottomLeft.png, sizingMethod='scale');}
18
- .cboxIE #cboxBottomCenter{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=<?php echo JQUERYCOLORBOX_PLUGIN_URL ?>/themes/theme11/images/internet_explorer/borderBottomCenter.png, sizingMethod='scale');}
19
- .cboxIE #cboxBottomRight{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=<?php echo JQUERYCOLORBOX_PLUGIN_URL ?>/themes/theme11/images/internet_explorer/borderBottomRight.png, sizingMethod='scale');}
20
- .cboxIE #cboxMiddleLeft{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=<?php echo JQUERYCOLORBOX_PLUGIN_URL ?>/themes/theme11/images/internet_explorer/borderMiddleLeft.png, sizingMethod='scale');}
21
- .cboxIE #cboxMiddleRight{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=<?php echo JQUERYCOLORBOX_PLUGIN_URL ?>/themes/theme11/images/internet_explorer/borderMiddleRight.png, sizingMethod='scale');}
22
- </style>
23
- <![endif]-->
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/iefix-theme4.php DELETED
@@ -1,23 +0,0 @@
1
- <?php
2
- /**
3
- * @package Techotronic
4
- * @subpackage jQuery Colorbox
5
- *
6
- * @since 3.1
7
- * @author Arne Franken
8
- *
9
- * CSS fixes for IE
10
- */
11
- ?>
12
- <!--[if IE]>
13
- <style type="text/css">
14
- .cboxIE #cboxTopLeft{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=<?php echo JQUERYCOLORBOX_PLUGIN_URL ?>/themes/theme4/images/internet_explorer/borderTopLeft.png, sizingMethod='scale');}
15
- .cboxIE #cboxTopCenter{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=<?php echo JQUERYCOLORBOX_PLUGIN_URL ?>/themes/theme4/images/internet_explorer/borderTopCenter.png, sizingMethod='scale');}
16
- .cboxIE #cboxTopRight{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=<?php echo JQUERYCOLORBOX_PLUGIN_URL ?>/themes/theme4/images/internet_explorer/borderTopRight.png, sizingMethod='scale');}
17
- .cboxIE #cboxBottomLeft{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=<?php echo JQUERYCOLORBOX_PLUGIN_URL ?>/themes/theme4/images/internet_explorer/borderBottomLeft.png, sizingMethod='scale');}
18
- .cboxIE #cboxBottomCenter{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=<?php echo JQUERYCOLORBOX_PLUGIN_URL ?>/themes/theme4/images/internet_explorer/borderBottomCenter.png, sizingMethod='scale');}
19
- .cboxIE #cboxBottomRight{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=<?php echo JQUERYCOLORBOX_PLUGIN_URL ?>/themes/theme4/images/internet_explorer/borderBottomRight.png, sizingMethod='scale');}
20
- .cboxIE #cboxMiddleLeft{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=<?php echo JQUERYCOLORBOX_PLUGIN_URL ?>/themes/theme4/images/internet_explorer/borderMiddleLeft.png, sizingMethod='scale');}
21
- .cboxIE #cboxMiddleRight{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=<?php echo JQUERYCOLORBOX_PLUGIN_URL ?>/themes/theme4/images/internet_explorer/borderMiddleRight.png, sizingMethod='scale');}
22
- </style>
23
- <![endif]-->
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/iefix-theme6.php DELETED
@@ -1,23 +0,0 @@
1
- <?php
2
- /**
3
- * @package Techotronic
4
- * @subpackage jQuery Colorbox
5
- *
6
- * @since 3.1
7
- * @author Arne Franken
8
- *
9
- * CSS fixes for IE
10
- */
11
- ?>
12
- <!--[if IE]>
13
- <style type="text/css">
14
- .cboxIE #cboxTopLeft{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=<?php echo JQUERYCOLORBOX_PLUGIN_URL ?>/themes/theme6/images/internet_explorer/borderTopLeft.png, sizingMethod='scale');}
15
- .cboxIE #cboxTopCenter{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=<?php echo JQUERYCOLORBOX_PLUGIN_URL ?>/themes/theme6/images/internet_explorer/borderTopCenter.png, sizingMethod='scale');}
16
- .cboxIE #cboxTopRight{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=<?php echo JQUERYCOLORBOX_PLUGIN_URL ?>/themes/theme6/images/internet_explorer/borderTopRight.png, sizingMethod='scale');}
17
- .cboxIE #cboxBottomLeft{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=<?php echo JQUERYCOLORBOX_PLUGIN_URL ?>/themes/theme6/images/internet_explorer/borderBottomLeft.png, sizingMethod='scale');}
18
- .cboxIE #cboxBottomCenter{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=<?php echo JQUERYCOLORBOX_PLUGIN_URL ?>/themes/theme6/images/internet_explorer/borderBottomCenter.png, sizingMethod='scale');}
19
- .cboxIE #cboxBottomRight{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=<?php echo JQUERYCOLORBOX_PLUGIN_URL ?>/themes/theme6/images/internet_explorer/borderBottomRight.png, sizingMethod='scale');}
20
- .cboxIE #cboxMiddleLeft{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=<?php echo JQUERYCOLORBOX_PLUGIN_URL ?>/themes/theme6/images/internet_explorer/borderMiddleLeft.png, sizingMethod='scale');}
21
- .cboxIE #cboxMiddleRight{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=<?php echo JQUERYCOLORBOX_PLUGIN_URL ?>/themes/theme6/images/internet_explorer/borderMiddleRight.png, sizingMethod='scale');}
22
- </style>
23
- <![endif]-->
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/iefix-theme7.php DELETED
@@ -1,23 +0,0 @@
1
- <?php
2
- /**
3
- * @package Techotronic
4
- * @subpackage jQuery Colorbox
5
- *
6
- * @since 3.1
7
- * @author Arne Franken
8
- *
9
- * CSS fixes for IE
10
- */
11
- ?>
12
- <!--[if IE]>
13
- <style type="text/css">
14
- .cboxIE #cboxTopLeft{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=<?php echo JQUERYCOLORBOX_PLUGIN_URL ?>/themes/theme7/images/internet_explorer/borderTopLeft.png, sizingMethod='scale');}
15
- .cboxIE #cboxTopCenter{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=<?php echo JQUERYCOLORBOX_PLUGIN_URL ?>/themes/theme7/images/internet_explorer/borderTopCenter.png, sizingMethod='scale');}
16
- .cboxIE #cboxTopRight{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=<?php echo JQUERYCOLORBOX_PLUGIN_URL ?>/themes/theme7/images/internet_explorer/borderTopRight.png, sizingMethod='scale');}
17
- .cboxIE #cboxBottomLeft{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=<?php echo JQUERYCOLORBOX_PLUGIN_URL ?>/themes/theme7/images/internet_explorer/borderBottomLeft.png, sizingMethod='scale');}
18
- .cboxIE #cboxBottomCenter{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=<?php echo JQUERYCOLORBOX_PLUGIN_URL ?>/themes/theme7/images/internet_explorer/borderBottomCenter.png, sizingMethod='scale');}
19
- .cboxIE #cboxBottomRight{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=<?php echo JQUERYCOLORBOX_PLUGIN_URL ?>/themes/theme7/images/internet_explorer/borderBottomRight.png, sizingMethod='scale');}
20
- .cboxIE #cboxMiddleLeft{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=<?php echo JQUERYCOLORBOX_PLUGIN_URL ?>/themes/theme7/images/internet_explorer/borderMiddleLeft.png, sizingMethod='scale');}
21
- .cboxIE #cboxMiddleRight{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=<?php echo JQUERYCOLORBOX_PLUGIN_URL ?>/themes/theme7/images/internet_explorer/borderMiddleRight.png, sizingMethod='scale');}
22
- </style>
23
- <![endif]-->
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/iefix-theme9.php DELETED
@@ -1,23 +0,0 @@
1
- <?php
2
- /**
3
- * @package Techotronic
4
- * @subpackage jQuery Colorbox
5
- *
6
- * @since 3.1
7
- * @author Arne Franken
8
- *
9
- * CSS fixes for IE
10
- */
11
- ?>
12
- <!--[if IE]>
13
- <style type="text/css">
14
- .cboxIE #cboxTopLeft{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=<?php echo JQUERYCOLORBOX_PLUGIN_URL ?>/themes/theme9/images/internet_explorer/borderTopLeft.png, sizingMethod='scale');}
15
- .cboxIE #cboxTopCenter{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=<?php echo JQUERYCOLORBOX_PLUGIN_URL ?>/themes/theme9/images/internet_explorer/borderTopCenter.png, sizingMethod='scale');}
16
- .cboxIE #cboxTopRight{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=<?php echo JQUERYCOLORBOX_PLUGIN_URL ?>/themes/theme9/images/internet_explorer/borderTopRight.png, sizingMethod='scale');}
17
- .cboxIE #cboxBottomLeft{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=<?php echo JQUERYCOLORBOX_PLUGIN_URL ?>/themes/theme9/images/internet_explorer/borderBottomLeft.png, sizingMethod='scale');}
18
- .cboxIE #cboxBottomCenter{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=<?php echo JQUERYCOLORBOX_PLUGIN_URL ?>/themes/theme9/images/internet_explorer/borderBottomCenter.png, sizingMethod='scale');}
19
- .cboxIE #cboxBottomRight{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=<?php echo JQUERYCOLORBOX_PLUGIN_URL ?>/themes/theme9/images/internet_explorer/borderBottomRight.png, sizingMethod='scale');}
20
- .cboxIE #cboxMiddleLeft{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=<?php echo JQUERYCOLORBOX_PLUGIN_URL ?>/themes/theme9/images/internet_explorer/borderMiddleLeft.png, sizingMethod='scale');}
21
- .cboxIE #cboxMiddleRight{background:transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=<?php echo JQUERYCOLORBOX_PLUGIN_URL ?>/themes/theme9/images/internet_explorer/borderMiddleRight.png, sizingMethod='scale');}
22
- </style>
23
- <![endif]-->
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/jquery-colorbox-backend.php ADDED
@@ -0,0 +1,372 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * @package Techotronic
4
+ * @subpackage jQuery Colorbox
5
+ *
6
+ * @since 4.1
7
+ * @author Arne Franken
8
+ *
9
+ * Object that handles all actions in the WordPress backend
10
+ */
11
+ class JQueryColorboxBackend {
12
+
13
+ /**
14
+ * Constructor
15
+ *
16
+ * @since 4.1
17
+ * @access public
18
+ * @access static
19
+ * @author Arne Franken
20
+ *
21
+ * @param array $colorboxSettings user settings
22
+ * @param array $colorboxThemes plugin themes
23
+ * @param array $colorboxUnits plugin units
24
+ * @param array $colorboxTransitions plugin transitions
25
+ * @param array $colorboxDefaultSettings default settings
26
+ */
27
+ //public static function JQueryColorboxBackend( $colorboxSettings, $colorboxThemes, $colorboxUnits, $colorboxTransitions, $colorboxDefaultSettings ) {
28
+ function JQueryColorboxBackend($colorboxSettings, $colorboxThemes, $colorboxUnits, $colorboxTransitions, $colorboxDefaultSettings) {
29
+
30
+ $this->colorboxSettings = $colorboxSettings;
31
+ $this->colorboxThemes = $colorboxThemes;
32
+ $this->colorboxUnits = $colorboxUnits;
33
+ $this->colorboxTransitions = $colorboxTransitions;
34
+ $this->colorboxDefaultSettings = $colorboxDefaultSettings;
35
+
36
+ add_action('admin_post_jQueryColorboxDeleteSettings', array(& $this, 'jQueryColorboxDeleteSettings'));
37
+ add_action('admin_post_jQueryColorboxUpdateSettings', array(& $this, 'jQueryColorboxUpdateSettings'));
38
+ // add options page
39
+ add_action('admin_menu', array(& $this, 'registerAdminMenu'));
40
+ add_action('admin_notices', array(& $this, 'registerAdminWarning'));
41
+
42
+ //add style selector dropdown to TinyMCE
43
+ add_filter('mce_buttons_2', array(& $this, 'addStyleSelectorBox'), 100);
44
+ //add Colorbox CSS class to TinyMCE dropdown box
45
+ add_filter('tiny_mce_before_init', array(& $this, 'addColorboxLinkClass'), 100);
46
+
47
+ require_once 'donationloader.php';
48
+ $donationLoader = new JQueryColorboxDonationLoader();
49
+
50
+ //only load JavaScript if we are on this plugin's settingspage
51
+ if (isset($_GET['page']) && $_GET['page'] == JQUERYCOLORBOX_PLUGIN_BASENAME) {
52
+ add_action('admin_print_scripts', array(& $donationLoader, 'registerDonationJavaScript'));
53
+ }
54
+ }
55
+
56
+
57
+ /**
58
+ * Render plugin Settings page
59
+ *
60
+ * @since 1.0
61
+ * @access public
62
+ * @author Arne Franken
63
+ */
64
+ //public function renderSettingsPage() {
65
+ function renderSettingsPage() {
66
+ require_once 'settings-page.php';
67
+ }
68
+
69
+ //renderSettingsPage()
70
+
71
+ /**
72
+ * Registers the plugin Settings Page in the Admin Menu
73
+ *
74
+ * @since 1.3.3
75
+ * @access public
76
+ * @author Arne Franken
77
+ */
78
+ //public function registerAdminMenu() {
79
+ function registerAdminMenu() {
80
+ $return_message = '';
81
+
82
+ if (function_exists('add_management_page') && current_user_can('manage_options')) {
83
+ // update, uninstall message
84
+ if (strpos($_SERVER['REQUEST_URI'], 'jquery-colorbox.php') && isset($_GET['jQueryColorboxUpdateSettings'])) {
85
+ $return_message = sprintf(__('Successfully updated %1$s settings.', JQUERYCOLORBOX_TEXTDOMAIN), JQUERYCOLORBOX_NAME);
86
+ } elseif (strpos($_SERVER['REQUEST_URI'], 'jquery-colorbox.php') && isset($_GET['jQueryColorboxDeleteSettings'])) {
87
+ $return_message = sprintf(__('%1$s settings were successfully deleted.', JQUERYCOLORBOX_TEXTDOMAIN), JQUERYCOLORBOX_NAME);
88
+ }
89
+ }
90
+ $this->registerAdminNotice($return_message);
91
+
92
+ $this->registerSettingsPage();
93
+ }
94
+
95
+ // registerAdminMenu()
96
+
97
+ /**
98
+ * Registers Admin Notices
99
+ *
100
+ * @since 2.0
101
+ * @access private
102
+ * @author Arne Franken
103
+ *
104
+ * @param string $notice to register notice with.
105
+ */
106
+ //private function registerAdminNotice($notice) {
107
+ function registerAdminNotice($notice) {
108
+ if ($notice != '') {
109
+ $message = '<div class="updated fade"><p>' . $notice . '</p></div>';
110
+ add_action('admin_notices', create_function('', "echo '$message';"));
111
+ }
112
+ }
113
+
114
+ // registerAdminNotice()
115
+
116
+ /**
117
+ * Registers the warning for admins
118
+ *
119
+ * @since 2.5
120
+ * @access public
121
+ * @author Arne Franken
122
+ */
123
+ //public function registerAdminWarning() {
124
+ function registerAdminWarning() {
125
+ if ($this->colorboxSettings['colorboxWarningOff'] || $this->colorboxSettings['autoColorbox']) {
126
+ return;
127
+ }
128
+ ?>
129
+ <div class="updated" style="background-color:#f66;">
130
+ <p>
131
+ <a href="options-general.php?page=<?php echo JQUERYCOLORBOX_PLUGIN_BASENAME ?>"><?php echo JQUERYCOLORBOX_NAME ?></a> <?php _e('needs attention: the plugin is not activated to work for all images.', JQUERYCOLORBOX_TEXTDOMAIN)?>
132
+ </p>
133
+ </div>
134
+ <?php
135
+
136
+ }
137
+
138
+ // registerAdminWarning()
139
+
140
+ /**
141
+ * Register the settings page in WordPress
142
+ *
143
+ * @since 1.0
144
+ * @access private
145
+ * @author Arne Franken
146
+ */
147
+ //private function registerSettingsPage() {
148
+ function registerSettingsPage() {
149
+ if (current_user_can('manage_options')) {
150
+ add_filter('plugin_action_links_' . JQUERYCOLORBOX_PLUGIN_BASENAME, array(& $this, 'addPluginActionLinks'));
151
+ add_options_page(JQUERYCOLORBOX_NAME, JQUERYCOLORBOX_NAME, 'manage_options', JQUERYCOLORBOX_PLUGIN_BASENAME, array(& $this, 'renderSettingsPage'));
152
+ }
153
+ }
154
+
155
+ //registerSettingsPage()
156
+
157
+ /**
158
+ * Add settings link to plugin management page
159
+ *
160
+ * @since 1.0
161
+ * @access public
162
+ * @author Arne Franken
163
+ *
164
+ * @param array $action_links original links
165
+ * @return array $action_links with link to settings page
166
+ */
167
+ //public function addPluginActionLinks($action_links) {
168
+ function addPluginActionLinks($action_links) {
169
+ $settings_link = '<a href="options-general.php?page=' . JQUERYCOLORBOX_PLUGIN_BASENAME . '">' . __('Settings', JQUERYCOLORBOX_TEXTDOMAIN) . '</a>';
170
+ array_unshift($action_links, $settings_link);
171
+
172
+ return $action_links;
173
+ }
174
+
175
+ //addPluginActionLinks()
176
+
177
+
178
+ /**
179
+ * Update plugin settings wrapper
180
+ *
181
+ * handles checks and redirect
182
+ *
183
+ * @since 1.3.3
184
+ * @access public
185
+ * @author Arne Franken
186
+ */
187
+ //public function jQueryColorboxUpdateSettings() {
188
+ function jQueryColorboxUpdateSettings() {
189
+
190
+ if (!current_user_can('manage_options'))
191
+ wp_die(__('Did not update settings, you do not have the necessary rights.', JQUERYCOLORBOX_TEXTDOMAIN));
192
+
193
+ //cross check the given referer for nonce set in settings form
194
+ check_admin_referer('jquery-colorbox-settings-form');
195
+ //get settings from plugins admin page
196
+ $this->colorboxSettings = $_POST[JQUERYCOLORBOX_SETTINGSNAME];
197
+ //have to add jQueryColorboxVersion here because it is not included in the HTML form
198
+ $this->colorboxSettings['jQueryColorboxVersion'] = JQUERYCOLORBOX_VERSION;
199
+ $this->updateSettingsInDatabase();
200
+ $referrer = str_replace(array('&jQueryColorboxUpdateSettings', '&jQueryColorboxDeleteSettings'), '', $_POST['_wp_http_referer']);
201
+ wp_redirect($referrer . '&jQueryColorboxUpdateSettings');
202
+ }
203
+
204
+ // jQueryColorboxUpdateSettings()
205
+
206
+ /**
207
+ * Update plugin settings
208
+ *
209
+ * handles updating settings in the WordPress database
210
+ *
211
+ * @since 1.3.3
212
+ * @access private
213
+ * @author Arne Franken
214
+ */
215
+ //private function updateSettingsInDatabase() {
216
+ function updateSettingsInDatabase() {
217
+ update_option(JQUERYCOLORBOX_SETTINGSNAME, $this->colorboxSettings);
218
+ }
219
+
220
+ //updateSettings()
221
+
222
+ /**
223
+ * Delete plugin settings wrapper
224
+ *
225
+ * handles checks and redirect
226
+ *
227
+ * @since 1.3.3
228
+ * @access public
229
+ * @author Arne Franken
230
+ */
231
+ //public function jQueryColorboxDeleteSettings() {
232
+ function jQueryColorboxDeleteSettings() {
233
+
234
+ if (current_user_can('manage_options') && isset($_POST['delete_settings-true'])) {
235
+ //cross check the given referer for nonce set in delete settings form
236
+ check_admin_referer('jquery-delete_settings-form');
237
+ $this->deleteSettingsFromDatabase();
238
+ //$this->colorboxSettings = $this->jQueryColorboxDefaultSettings();
239
+ } else {
240
+ wp_die(sprintf(__('Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox.', JQUERYCOLORBOX_TEXTDOMAIN), JQUERYCOLORBOX_NAME));
241
+ }
242
+ //clean up referrer
243
+ $referrer = str_replace(array('&jQueryColorboxUpdateSettings', '&jQueryColorboxDeleteSettings'), '', $_POST['_wp_http_referer']);
244
+ wp_redirect($referrer . '&jQueryColorboxDeleteSettings');
245
+ }
246
+
247
+ // jQueryColorboxDeleteSettings()
248
+
249
+ /**
250
+ * Delete plugin settings
251
+ *
252
+ * handles deletion from WordPress database
253
+ *
254
+ * @since 1.3.3
255
+ * @access private
256
+ * @author Arne Franken
257
+ */
258
+ //private function deleteSettingsFromDatabase() {
259
+ function deleteSettingsFromDatabase() {
260
+ delete_option(JQUERYCOLORBOX_SETTINGSNAME);
261
+ }
262
+
263
+ // deleteSettings()
264
+
265
+ /**
266
+ * Read HTML from a remote url
267
+ *
268
+ * @since 3.5
269
+ * @access private
270
+ * @author Arne Franken
271
+ *
272
+ * @param String $url
273
+ * @return String|boolean the response
274
+ */
275
+ //private function getRemoteContent($url) {
276
+ function getRemoteContent($url) {
277
+ if (function_exists('wp_remote_request')) {
278
+
279
+ $options = array();
280
+ $options['headers'] = array(
281
+ 'User-Agent' => JQUERYCOLORBOX_USERAGENT
282
+ );
283
+
284
+ $response = wp_remote_request($url, $options);
285
+
286
+ if (is_wp_error($response))
287
+ return false;
288
+
289
+ if (200 != wp_remote_retrieve_response_code($response))
290
+ return false;
291
+
292
+ return wp_remote_retrieve_body($response);
293
+ }
294
+
295
+ return false;
296
+ }
297
+
298
+ // getRemoteContent()
299
+
300
+ /**
301
+ * gets current URL to return to after donating
302
+ *
303
+ * @since 3.5
304
+ * @access private
305
+ * @author Arne Franken
306
+ */
307
+ //private function getReturnLocation(){
308
+ function getReturnLocation() {
309
+ $currentLocation = "http";
310
+ $currentLocation .= ((isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') ? "s" : "") . "://";
311
+ $currentLocation .= $_SERVER['SERVER_NAME'];
312
+ if (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') {
313
+ if ($_SERVER['SERVER_PORT'] != '443') {
314
+ $currentLocation .= ":" . $_SERVER['SERVER_PORT'];
315
+ }
316
+ }
317
+ else {
318
+ if ($_SERVER['SERVER_PORT'] != '80') {
319
+ $currentLocation .= ":" . $_SERVER['SERVER_PORT'];
320
+ }
321
+ }
322
+ $currentLocation .= $_SERVER['REQUEST_URI'];
323
+ echo $currentLocation;
324
+ }
325
+
326
+ // getReturnLocation()
327
+
328
+ /**
329
+ * adds Colorbox CSS class to TinyMCE style selector dropdown box
330
+ *
331
+ * @since 3.7
332
+ * @access public
333
+ * @author Arne Franken
334
+ *
335
+ * @param array $initialArray
336
+ * @return array $modifiedArray
337
+ */
338
+ //public function addColorboxLinkClass($defaultCss) {
339
+ function addColorboxLinkClass($initialArray) {
340
+ $modifiedArray = $initialArray;
341
+
342
+ $modifiedArray['theme_advanced_styles'] .= ';colorbox-link=colorbox-link;';
343
+ //strip first and last character if it matches ";"
344
+ $modifiedArray['theme_advanced_styles'] = trim($modifiedArray['theme_advanced_styles'], ';');
345
+ return $modifiedArray;
346
+ }
347
+
348
+ // addColorboxLinkClasses()
349
+
350
+ /**
351
+ * Adds style selector option to TinyMCE
352
+ *
353
+ * @since 4.0
354
+ * @access public
355
+ * @author Arne Franken
356
+ *
357
+ * @param array $array
358
+ * @return array modified array
359
+ */
360
+ function addStyleSelectorBox($array) {
361
+ if (!in_array('styleselect', $array)) {
362
+ array_push($array, 'styleselect');
363
+ }
364
+ return $array;
365
+ }
366
+
367
+ // addStyleSelectorBox()
368
+
369
+ }
370
+
371
+ // class JQueryColorboxBackend()
372
+ ?>
includes/jquery-colorbox-frontend.php ADDED
@@ -0,0 +1,268 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * @package Techotronic
4
+ * @subpackage jQuery Colorbox
5
+ *
6
+ * @since 4.1
7
+ * @author Arne Franken
8
+ *
9
+ * Object that handles all actions in the WordPress frontend
10
+ */
11
+ class JQueryColorboxFrontend {
12
+
13
+ /**
14
+ * Constructor
15
+ *
16
+ * @since 4.1
17
+ * @access public
18
+ * @access static
19
+ * @author Arne Franken
20
+ *
21
+ * @param array $colorboxSettings user settings
22
+ */
23
+ //public static function JQueryColorboxFrontend($colorboxSettings) {
24
+ function JQueryColorboxFrontend($colorboxSettings) {
25
+
26
+ $this->colorboxSettings = $colorboxSettings;
27
+
28
+ // Add meta tag with version number to the header
29
+ add_action('wp_head', array(& $this, 'renderMetaTag'));
30
+
31
+ //only add link to meta box if
32
+ if (isset($this->colorboxSettings['removeLinkFromMetaBox']) && !$this->colorboxSettings['removeLinkFromMetaBox']) {
33
+ add_action('wp_meta', array(& $this, 'renderMetaLink'));
34
+ }
35
+
36
+ if (isset($this->colorboxSettings['autoColorbox']) && $this->colorboxSettings['autoColorbox']) {
37
+ //write "colorbox-postID" to "img"-tags class attribute.
38
+ //Priority = 100, hopefully the preg_replace is then executed after other plugins messed with the_content
39
+ add_filter('the_content', array(& $this, 'addColorboxGroupIdToImages'), 100);
40
+ add_filter('the_excerpt', array(& $this, 'addColorboxGroupIdToImages'), 100);
41
+ }
42
+ if (isset($this->colorboxSettings['autoColorboxGalleries']) && $this->colorboxSettings['autoColorboxGalleries']) {
43
+ add_filter('wp_get_attachment_image_attributes', array(& $this, 'wpPostThumbnailClassFilter'));
44
+ }
45
+
46
+ // enqueue JavaScript and CSS files in WordPress
47
+ wp_enqueue_script('jquery');
48
+ wp_register_style('colorbox-' . $this->colorboxSettings['colorboxTheme'], JQUERYCOLORBOX_PLUGIN_URL . '/' . 'themes/' . $this->colorboxSettings['colorboxTheme'] . '/colorbox.css', array(), JQUERYCOLORBOX_VERSION, 'screen');
49
+ wp_enqueue_style('colorbox-' . $this->colorboxSettings['colorboxTheme']);
50
+
51
+ $this->addColorboxJS();
52
+ $this->addColorboxWrapperJS();
53
+ $this->addColorboxProperties();
54
+ }
55
+
56
+ // JQueryColorboxFrontend()
57
+
58
+ /**
59
+ * Renders plugin Meta tag
60
+ *
61
+ * @since 4.1
62
+ * @access public
63
+ * @author Arne Franken
64
+ */
65
+ //public function renderMetaTag() {
66
+ function renderMetaTag() {
67
+ ?>
68
+ <meta name="<?php echo JQUERYCOLORBOX_NAME ?>" content="<?php echo JQUERYCOLORBOX_VERSION ?>"/>
69
+ <?php
70
+ }
71
+
72
+ // renderMetaTag()
73
+
74
+
75
+ /**
76
+ * Renders plugin link in Meta widget
77
+ *
78
+ * @since 3.3
79
+ * @access public
80
+ * @author Arne Franken
81
+ */
82
+ //public function renderMetaLink() {
83
+ function renderMetaLink() {
84
+ ?>
85
+ <li id="colorboxLink"><?php _e('Using', JQUERYCOLORBOX_TEXTDOMAIN);?>
86
+ <a href="http://www.techotronic.de/plugins/jquery-colorbox/" target="_blank" title="<?php echo JQUERYCOLORBOX_NAME ?>"><?php echo JQUERYCOLORBOX_NAME ?></a>
87
+ </li>
88
+ <?php
89
+ }
90
+
91
+ // renderMetaLink()
92
+
93
+ /**
94
+ * Add Colorbox group Id to images.
95
+ * function is called for every page or post rendering.
96
+ *
97
+ * ugly way to make the images Colorbox-ready by adding the necessary CSS class.
98
+ * unfortunately, Wordpress does not offer a convenient way to get certain elements from the_content,
99
+ * so I had to do this by regexp replacement...
100
+ *
101
+ * @since 1.0
102
+ * @access public
103
+ * @author Arne Franken
104
+ *
105
+ * @param XML $content post or page content
106
+ * @return XML replaced content or excerpt
107
+ */
108
+ //public function addColorboxGroupIdToImages($content) {
109
+ function addColorboxGroupIdToImages($content) {
110
+ global $post;
111
+ // universal IMG-Tag pattern matches everything between "<img" and the closing "(/)>"
112
+ // will be used to match all IMG-Tags in Content.
113
+ $imgPattern = "/<img([^\>]*?)>/i";
114
+ if (preg_match_all($imgPattern, $content, $imgTags)) {
115
+ foreach ($imgTags[0] as $imgTag) {
116
+ // only work on imgTags that do not already contain the String "colorbox-"
117
+ if (!preg_match('/colorbox-/i', $imgTag)) {
118
+ if (!preg_match('/class=/i', $imgTag)) {
119
+ // imgTag does not contain class-attribute
120
+ $pattern = $imgPattern;
121
+ $replacement = '<img class="colorbox-' . $post->ID . '" $1>';
122
+ }
123
+ else {
124
+ // imgTag already contains class-attribute
125
+ $pattern = "/<img(.*?)class=('|\")([A-Za-z0-9 \/_\.\~\:-]*?)('|\")([^\>]*?)>/i";
126
+ $replacement = '<img$1class=$2$3 colorbox-' . $post->ID . '$4$5>';
127
+ }
128
+ $replacedImgTag = preg_replace($pattern, $replacement, $imgTag);
129
+ $content = str_replace($imgTag, $replacedImgTag, $content);
130
+ }
131
+ }
132
+ }
133
+ return $content;
134
+ }
135
+
136
+ // addColorboxGroupIdToImages()
137
+
138
+ /**
139
+ * Add colorbox-CSS-Class to WP Galleries
140
+ *
141
+ * If wp_get_attachment_image() is called, filters registered for the_content are not applied on the img-tag.
142
+ * So we'll need to manipulate the class attribute separately.
143
+ *
144
+ * @since 2.0
145
+ * @access public
146
+ * @author Arne Franken
147
+ *
148
+ * @param $attribute class attribute of the attachment link
149
+ * @return replaced attributes
150
+ */
151
+ //public function wpPostThumbnailClassFilter($attribute) {
152
+ function wpPostThumbnailClassFilter($attribute) {
153
+ global $post;
154
+ $attribute['class'] .= ' colorbox-' . $post->ID . ' ';
155
+ return $attribute;
156
+ }
157
+
158
+ // wpPostThumbnailClassFilter()
159
+
160
+ /**
161
+ * Insert JavaScript with properties for Colorbox into WP Header
162
+ *
163
+ * @since 1.0
164
+ * @access public
165
+ * @author Arne Franken
166
+ */
167
+ //public function addColorboxProperties() {
168
+ function addColorboxProperties() {
169
+ /**
170
+ * declare variables that are used in more than one function
171
+ */
172
+ $colorboxPropertyArray = array(
173
+ 'colorboxInline' => 'false',
174
+ 'colorboxIframe' => 'false',
175
+ 'colorboxGroupId' => '',
176
+ 'colorboxTitle' => '',
177
+ 'colorboxWidth' => 'false',
178
+ 'colorboxHeight' => 'false',
179
+ 'colorboxMaxWidth' => 'false',
180
+ 'colorboxMaxHeight' => 'false',
181
+ 'colorboxSlideshow' => !$this->colorboxSettings['slideshow'] ? 'false' : 'true',
182
+ 'colorboxSlideshowAuto' => $this->colorboxSettings['slideshowAuto'] ? 'true' : 'false',
183
+ 'colorboxScalePhotos' => $this->colorboxSettings['scalePhotos'] ? 'true' : 'false',
184
+ 'colorboxPreloading' => $this->colorboxSettings['preloading'] ? 'true' : 'false',
185
+ 'colorboxOverlayClose' => $this->colorboxSettings['overlayClose'] ? 'true' : 'false',
186
+ 'colorboxLoop' => !$this->colorboxSettings['disableLoop'] ? 'true' : 'false',
187
+ 'colorboxEscKey' => !$this->colorboxSettings['disableKeys'] ? 'true' : 'false',
188
+ 'colorboxArrowKey' => !$this->colorboxSettings['disableKeys'] ? 'true' : 'false',
189
+ 'colorboxScrolling' => !$this->colorboxSettings['displayScrollbar'] ? 'true' : 'false',
190
+ 'colorboxOpacity' => $this->colorboxSettings['opacity'],
191
+ 'colorboxTransition' => $this->colorboxSettings['transition'],
192
+ 'colorboxSpeed' => $this->colorboxSettings['speed'],
193
+ 'colorboxSlideshowSpeed' => $this->colorboxSettings['slideshowSpeed'],
194
+ 'colorboxClose' => __('close', JQUERYCOLORBOX_TEXTDOMAIN),
195
+ 'colorboxNext' => __('next', JQUERYCOLORBOX_TEXTDOMAIN),
196
+ 'colorboxPrevious' => __('previous', JQUERYCOLORBOX_TEXTDOMAIN),
197
+ 'colorboxSlideshowStart' => __('start slideshow', JQUERYCOLORBOX_TEXTDOMAIN),
198
+ 'colorboxSlideshowStop' => __('stop slideshow', JQUERYCOLORBOX_TEXTDOMAIN),
199
+ 'colorboxCurrent' => __('{current} of {total} images', JQUERYCOLORBOX_TEXTDOMAIN),
200
+
201
+ 'colorboxImageMaxWidth' => $this->colorboxSettings['maxWidth'] == "false" ? 'false'
202
+ : $this->colorboxSettings['maxWidthValue'] . $this->colorboxSettings['maxWidthUnit'],
203
+ 'colorboxImageMaxHeight' => $this->colorboxSettings['maxHeight'] == "false" ? 'false'
204
+ : $this->colorboxSettings['maxHeightValue'] . $this->colorboxSettings['maxHeightUnit'],
205
+ 'colorboxImageHeight' => $this->colorboxSettings['height'] == "false" ? 'false'
206
+ : $this->colorboxSettings['heightValue'] . $this->colorboxSettings['heightUnit'],
207
+ 'colorboxImageWidth' => $this->colorboxSettings['width'] == "false" ? 'false'
208
+ : $this->colorboxSettings['widthValue'] . $this->colorboxSettings['widthUnit'],
209
+
210
+ 'colorboxLinkHeight' => $this->colorboxSettings['linkHeight'] == "false" ? 'false'
211
+ : $this->colorboxSettings['linkHeightValue'] . $this->colorboxSettings['linkHeightUnit'],
212
+ 'colorboxLinkWidth' => $this->colorboxSettings['linkWidth'] == "false" ? 'false'
213
+ : $this->colorboxSettings['linkWidthValue'] . $this->colorboxSettings['linkWidthUnit'],
214
+
215
+ 'colorboxInitialHeight' => $this->colorboxSettings['initialHeight'],
216
+ 'colorboxInitialWidth' => $this->colorboxSettings['initialWidth'],
217
+ 'autoColorboxJavaScript' => $this->colorboxSettings['autoColorboxJavaScript'],
218
+ 'autoHideFlash' => $this->colorboxSettings['autoHideFlash'],
219
+ 'colorboxAddClassToLinks' => $this->colorboxSettings['colorboxAddClassToLinks']
220
+ );
221
+ wp_localize_script('colorbox', 'Colorbox', $colorboxPropertyArray);
222
+ }
223
+
224
+ // addColorboxProperties()
225
+
226
+ /**
227
+ * Insert JavaScript into WP Header
228
+ *
229
+ * @since 4.1
230
+ * @access public
231
+ * @author Arne Franken
232
+ */
233
+ //public function addColorboxWrapperJS() {
234
+ function addColorboxWrapperJS() {
235
+ if ($this->colorboxSettings['debugMode']) {
236
+ $jqueryColorboxWrapperJavaScriptPath = "js/jquery-colorbox-wrapper.js";
237
+ }
238
+ else {
239
+ $jqueryColorboxWrapperJavaScriptPath = "js/jquery-colorbox-wrapper-min.js";
240
+ }
241
+ wp_enqueue_script('colorbox-wrapper', JQUERYCOLORBOX_PLUGIN_URL . '/' . $jqueryColorboxWrapperJavaScriptPath, array('colorbox'), JQUERYCOLORBOX_VERSION, $this->colorboxSettings['javascriptInFooter']);
242
+ }
243
+
244
+ // addColorboxWrapperJS()
245
+
246
+ /**
247
+ * Insert JavaScript into WP Header
248
+ *
249
+ * @since 4.1
250
+ * @access public
251
+ * @author Arne Franken
252
+ */
253
+ //public function addColorboxJS() {
254
+ function addColorboxJS() {
255
+ if ($this->colorboxSettings['debugMode']) {
256
+ $jqueryColorboxJavaScriptPath = "js/jquery.colorbox.js";
257
+ }
258
+ else {
259
+ $jqueryColorboxJavaScriptPath = "js/jquery.colorbox-min.js";
260
+ }
261
+ wp_enqueue_script('colorbox', JQUERYCOLORBOX_PLUGIN_URL . '/' . $jqueryColorboxJavaScriptPath, array('jquery'), COLORBOXLIBRARY_VERSION, $this->colorboxSettings['javascriptInFooter']);
262
+ }
263
+
264
+ // addColorboxJS()
265
+ }
266
+
267
+ // class JQueryColorboxFrontend()
268
+ ?>
includes/settings-page.php CHANGED
@@ -9,616 +9,23 @@
9
  * HTML for settings page
10
  */
11
  ?>
12
- <script type="text/javascript">
13
- //<![CDATA[
14
- jQuery(document).ready(function($) {
15
-
16
- //delete value from maxWidthValue if maxWidth radio button is selected
17
- $("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[maxWidth]']").click(function() {
18
- if ("jquery-colorbox-maxWidth-custom-radio" != $(this).attr("id"))
19
- $("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[maxWidthValue]']").val("");
20
- });
21
-
22
- //set maxWidth radio button if cursor is set into maxWidthValue
23
- $("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[maxWidthValue]']").focus(function() {
24
- $("#jquery-colorbox-maxWidth-custom-radio").attr("checked", "checked");
25
- });
26
-
27
- //delete value from maxHeightValue if maxHeight radio button is selected
28
- $("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[maxHeight]']").click(function() {
29
- if ("jquery-colorbox-maxHeight-custom-radio" != $(this).attr("id"))
30
- $("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[maxHeightValue]']").val("");
31
- });
32
- //set maxHeight radio button if cursor is set into maxHeightValue
33
- $("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[maxHeightValue]']").focus(function() {
34
- $("#jquery-colorbox-maxHeight-custom-radio").attr("checked", "checked");
35
- });
36
-
37
- //delete value from widthValue if width radio button is selected
38
- $("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[width]']").click(function() {
39
- if ("jquery-colorbox-width-custom-radio" != $(this).attr("id"))
40
- $("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[widthValue]']").val("");
41
- });
42
- //set width radio button if cursor is set into widthValue
43
- $("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[widthValue]']").focus(function() {
44
- $("#jquery-colorbox-width-custom-radio").attr("checked", "checked");
45
- });
46
-
47
- //delete value from heightValue if height radio button is selected
48
- $("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[height]']").click(function() {
49
- if ("jquery-colorbox-height-custom-radio" != $(this).attr("id"))
50
- $("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[heightValue]']").val("");
51
- });
52
- //set height radio button if cursor is set into heightValue
53
- $("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[heightValue]']").focus(function() {
54
- $("#jquery-colorbox-height-custom-radio").attr("checked", "checked");
55
- });
56
-
57
- //delete value from widthValue if width radio button is selected
58
- $("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[linkWidth]']").click(function() {
59
- if ("jquery-colorbox-link-width-custom-radio" != $(this).attr("id"))
60
- $("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[linkWidthValue]']").val("");
61
- });
62
- //set width radio button if cursor is set into widthValue
63
- $("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[linkWidthValue]']").focus(function() {
64
- $("#jquery-colorbox-link-width-custom-radio").attr("checked", "checked");
65
- });
66
-
67
- //delete value from heightValue if height radio button is selected
68
- $("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[linkHeight]']").click(function() {
69
- if ("jquery-colorbox-link-height-custom-radio" != $(this).attr("id"))
70
- $("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[linkHeightValue]']").val("");
71
- });
72
- //set height radio button if cursor is set into heightValue
73
- $("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[linkHeightValue]']").focus(function() {
74
- $("#jquery-colorbox-link-height-custom-radio").attr("checked", "checked");
75
- });
76
-
77
- //only one of the checkboxes is allowed to be selected.
78
- $("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[autoColorbox]']").click(function() {
79
- if ($("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[autoColorbox]']").is(':checked')) {
80
- $("#jquery-colorbox-autoColorboxGalleries").attr("checked", false);
81
- }
82
- });
83
- $("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[autoColorboxGalleries]']").click(function() {
84
- if ($("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[autoColorboxGalleries]']").is(':checked')) {
85
- $("#jquery-colorbox-autoColorbox").attr("checked", false);
86
- }
87
- });
88
-
89
- //deactivate warning if auto Colorbox is activated
90
- $("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[autoColorbox]']").click(function() {
91
- if ($("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[autoColorbox]']").is(':checked')) {
92
- $("#jquery-colorbox-colorboxWarningOff").attr("checked", true);
93
- }
94
- });
95
-
96
- //activate warning if auto Colorbox is deactivated
97
- $("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[autoColorbox]']").click(function() {
98
- if (!$("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[autoColorbox]']").is(':checked')) {
99
- $("#jquery-colorbox-colorboxWarningOff").attr("checked", false);
100
- }
101
- });
102
-
103
- //change screenshot if new theme is selected
104
- $("#jquery-colorbox-theme").change(function() {
105
- var src = $("option:selected", this).val().match(/\d+$/i);
106
- if ( src != "" ){
107
- var $imgTag = "<img src=\"" + "<?php echo JQUERYCOLORBOX_PLUGIN_URL; echo '/screenshot-' ; ?>" + src + ".jpg\" />";
108
- $("#jquery-colorbox-theme_screenshot_image").empty().html($imgTag).fadeIn();
109
- }
110
- });
111
- });
112
- //]]>
113
- </script>
114
  <div class="wrap">
115
- <div>
116
  <?php screen_icon(); ?>
117
  <h2><?php printf(__('%1$s Settings', JQUERYCOLORBOX_TEXTDOMAIN), JQUERYCOLORBOX_NAME); ?></h2>
118
  <br class="clear"/>
119
 
120
  <?php settings_fields(JQUERYCOLORBOX_SETTINGSNAME); ?>
121
 
122
- <div class="postbox-container" style="width: 69%;">
123
- <form name="jquery-colorbox-settings-update" method="post" action="admin-post.php">
124
- <?php if (function_exists('wp_nonce_field') === true) wp_nonce_field('jquery-colorbox-settings-form'); ?>
125
- <div id="poststuff">
126
- <div id="jquery-colorbox-settings" class="postbox">
127
- <!--h3 id="colorbox-settings"><?php __('Settings', JQUERYCOLORBOX_TEXTDOMAIN); ?></h3-->
128
- <h3 id="colorbox-settings"><?php _e('Plugin settings', JQUERYCOLORBOX_TEXTDOMAIN); ?></h3>
129
-
130
- <div class="inside">
131
-
132
- <table class="form-table">
133
- <tr>
134
- <th scope="row">
135
- <label for="jquery-colorbox-autoColorbox"><?php printf(__('Automate %1$s for all images', JQUERYCOLORBOX_TEXTDOMAIN), JQUERYCOLORBOX_NAME); __('Automate %1$s for all images in pages, posts and galleries', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
136
- </th>
137
- <td>
138
- <input type="checkbox" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[autoColorbox]" id="jquery-colorbox-autoColorbox" value="true" <?php echo ($this->colorboxSettings['autoColorbox']) ? 'checked="checked"' : '';?>/>
139
- <br/><?php _e('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.', JQUERYCOLORBOX_TEXTDOMAIN); ?>
140
- </td>
141
- </tr>
142
- <tr>
143
- <th scope="row">
144
- <label for="jquery-colorbox-autoColorboxGalleries"><?php printf(__('Automate %1$s for images in WordPress galleries', JQUERYCOLORBOX_TEXTDOMAIN), JQUERYCOLORBOX_NAME); __('Automate %1$s for images in WordPress galleries only', JQUERYCOLORBOX_TEXTDOMAIN) ?>:</label>
145
- </th>
146
- <td>
147
- <input type="checkbox" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[autoColorboxGalleries]" id="jquery-colorbox-autoColorboxGalleries" value="true" <?php echo ($this->colorboxSettings['autoColorboxGalleries']) ? 'checked="checked"' : '';?>/>
148
- <br/><?php _e('Automatically add colorbox-class to images in WordPress galleries, but nowhere else. Images in one page or post are grouped automatically.', JQUERYCOLORBOX_TEXTDOMAIN); ?>
149
- </td>
150
- </tr>
151
- <!--tr>
152
- <th scope="row">
153
- <label for="jquery-colorbox-autoColorboxJavaScript"><?php __('Automate %1$s for all other images', JQUERYCOLORBOX_TEXTDOMAIN); //printf(__('Automate %1$s for all other images', JQUERYCOLORBOX_TEXTDOMAIN), JQUERYCOLORBOX_NAME); ?>:</label>
154
- </th>
155
- <td>
156
- <input type="checkbox" name="<?php //echo JQUERYCOLORBOX_SETTINGSNAME ?>[autoColorboxJavaScript]" id="jquery-colorbox-autoColorboxJavaScript" value="true" <?php //echo ($this->colorboxSettings['autoColorboxJavaScript']) ? 'checked="checked"' : '';?>/>
157
- <br/><?php __('Automatically add colorbox-class to all images that are not in posts and pages (e.g. the sidebar).', JQUERYCOLORBOX_TEXTDOMAIN); ?>
158
- </td>
159
- </tr-->
160
- <tr>
161
- <th scope="row">
162
- <label for="jquery-colorbox-autoHideFlash"><?php _e('Automate hiding of flash objects', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
163
- </th>
164
- <td>
165
- <input type="checkbox" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[autoHideFlash]" id="jquery-colorbox-autoHideFlash" value="true" <?php echo ($this->colorboxSettings['autoHideFlash']) ? 'checked="checked"' : '';?>/>
166
- <br/><?php _e('Automatically hide embeded flash objects behind the Colorbox layer.', JQUERYCOLORBOX_TEXTDOMAIN); ?>
167
- </td>
168
- </tr>
169
- <!--tr>
170
- <th scope="row">
171
- <label for="jquery-colorbox-javascriptInFooter"><?php __('Add JavaScript to footer', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
172
- </th>
173
- <td>
174
- <input type="checkbox" name="<?php //echo JQUERYCOLORBOX_SETTINGSNAME ?>[javascriptInFooter]" id="jquery-colorbox-javascriptInFooter" value="true" <?php //echo ($this->colorboxSettings['javascriptInFooter']) ? 'checked="checked"' : '';?>/>
175
- <br/><?php __('Add JavaScript to footer instead of the header.', JQUERYCOLORBOX_TEXTDOMAIN); ?>
176
- </td>
177
- </tr-->
178
- <!--tr>
179
- <th scope="row">
180
- <label for="jquery-colorbox-removeLinkFromMetaBox"><?php __('Remove link from Meta-box', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
181
- </th>
182
- <td>
183
- <input type="checkbox" name="<?php //echo JQUERYCOLORBOX_SETTINGSNAME ?>[removeLinkFromMetaBox]" id="jquery-colorbox-removeLinkFromMetaBox" value="true" <?php //echo ($this->colorboxSettings['removeLinkFromMetaBox']) ? 'checked="checked"' : '';?>/>
184
- <br/><?php __('Remove the link to the developers site from the WordPress meta-box.', JQUERYCOLORBOX_TEXTDOMAIN); ?>
185
- </td>
186
- </tr-->
187
- <!--tr>
188
- <th scope="row">
189
- <label for="jquery-colorbox-debugMode"><?php __('Activate debug mode', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
190
- </th>
191
- <td>
192
- <input type="checkbox" name="<?php //echo JQUERYCOLORBOX_SETTINGSNAME ?>[debugMode]" id="jquery-colorbox-debugMode" value="true" <?php //echo ($this->colorboxSettings['debugMode']) ? 'checked="checked"' : '';?>/>
193
- <br/><?php __('Adds debug information and non-minified JavaScript to the page. Useful for troubleshooting.', JQUERYCOLORBOX_TEXTDOMAIN); ?>
194
- </td>
195
- </tr-->
196
- <tr>
197
- <th scope="row">
198
- <label for="jquery-colorbox-colorboxWarningOff"><?php printf(__('Disable warning', JQUERYCOLORBOX_TEXTDOMAIN), JQUERYCOLORBOX_NAME); ?>:</label>
199
- </th>
200
- <td>
201
- <input type="checkbox" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[colorboxWarningOff]" id="jquery-colorbox-colorboxWarningOff" value="true" <?php echo ($this->colorboxSettings['colorboxWarningOff']) ? 'checked="checked"' : '';?>/>
202
- <br/><?php _e('Disables the warning that is displayed if the plugin is activated but the auto-colorbox feature for all images is turned off.', JQUERYCOLORBOX_TEXTDOMAIN); ?>
203
- </td>
204
- </tr>
205
- </table>
206
- <p class="submit">
207
- <input type="hidden" name="action" value="jQueryColorboxUpdateSettings"/>
208
- <input type="submit" name="jQueryColorboxUpdateSettings" class="button-primary" value="<?php _e('Save Changes') ?>"/>
209
- </p>
210
- </div>
211
- </div>
212
- <div id="jquery-colorbox-plugin-settings" class="postbox">
213
- <h3 id="plugin-settings"><?php _e('Colorbox settings', JQUERYCOLORBOX_TEXTDOMAIN); ?></h3>
214
-
215
- <div class="inside">
216
-
217
- <table class="form-table">
218
- <tr valign="top">
219
- <th scope="row">
220
- <label for="jquery-colorbox-theme"><?php _e('Theme', JQUERYCOLORBOX_TEXTDOMAIN); ?></label>
221
- </th>
222
- <td>
223
- <select name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[colorboxTheme]" id="jquery-colorbox-theme" class="postform" style="margin:0">
224
- <?php
225
- foreach ($this->colorboxThemes as $theme => $name) {
226
- echo '<option value="' . esc_attr($theme) . '"';
227
- selected($this->colorboxSettings['colorboxTheme'], $theme);
228
- echo '>' . htmlspecialchars($name) . "</option>\n";
229
- }
230
- ?>
231
- </select>
232
- <br/><?php _e('Select the theme you want to use on your blog.', JQUERYCOLORBOX_TEXTDOMAIN); ?>
233
- </td>
234
- </tr>
235
- <tr>
236
- <th scope="row">
237
- <label for="jquery-colorbox-theme_screenshot_image"><?php _e('Theme screenshot', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
238
- </th>
239
- <td height="310px">
240
- <div id="jquery-colorbox-theme_screenshot_image">
241
- <img src="<?php echo JQUERYCOLORBOX_PLUGIN_URL; echo '/screenshot-' ; preg_match('/\d+$/i',$this->colorboxSettings['colorboxTheme'],$matches); echo $matches[0] ?>.jpg"/>
242
- </div>
243
- </td>
244
- </tr>
245
-
246
- <tr>
247
- <th scope="row">
248
- <label for="jquery-colorbox-slideshow"><?php _e('Add Slideshow to groups', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
249
- </th>
250
- <td>
251
- <input type="checkbox" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[slideshow]" id="jquery-colorbox-slideshow" value="true" <?php echo ($this->colorboxSettings['slideshow']) ? 'checked="checked"' : '';?>/>
252
- <br/><?php printf(__('Add Slideshow functionality for %1$s Groups', JQUERYCOLORBOX_TEXTDOMAIN), JQUERYCOLORBOX_NAME); ?>
253
- </td>
254
- </tr>
255
- <tr>
256
- <th scope="row">
257
- <label for="jquery-colorbox-slideshowAuto"><?php _e('Start Slideshow automatically', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
258
- </th>
259
- <td>
260
- <input type="checkbox" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[slideshowAuto]" id="jquery-colorbox-slideshowAuto" value="true" <?php echo ($this->colorboxSettings['slideshowAuto']) ? 'checked="checked"' : '';?>/>
261
- <br/><?php printf(__('Start Slideshow automatically if slideshow functionality is added to %1$s Groups', JQUERYCOLORBOX_TEXTDOMAIN), JQUERYCOLORBOX_NAME); ?>
262
- </td>
263
- </tr>
264
- <tr>
265
- <th scope="row">
266
- <label for="jquery-colorbox-slideshowSpeed"><?php _e('Speed of the slideshow', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
267
- </th>
268
- <td>
269
- <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) ?>
270
- <br/><?php _e('Sets the speed of the slideshow, in milliseconds', JQUERYCOLORBOX_TEXTDOMAIN); ?>.
271
- </td>
272
- </tr>
273
- <!--tr>
274
- <th scope="row">
275
- <label for="jquery-colorbox-disableLoop"><?php __('Disable loop', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
276
- </th>
277
- <td>
278
- <input type="checkbox" name="<?php //echo JQUERYCOLORBOX_SETTINGSNAME ?>[disableLoop]" id="jquery-colorbox-disableLoop" value="true" <?php //echo ($this->colorboxSettings['disableLoop']) ? 'checked="checked"' : '';?>/>
279
- <br/><?php __('Disable looping through image groups', JQUERYCOLORBOX_TEXTDOMAIN); ?>.
280
- </td>
281
- </tr-->
282
- <!--tr>
283
- <th scope="row">
284
- <label for="jquery-colorbox-disableKeys"><?php __('Disable keys', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
285
- </th>
286
- <td>
287
- <input type="checkbox" name="<?php //echo JQUERYCOLORBOX_SETTINGSNAME ?>[disableKeys]" id="jquery-colorbox-disableKeys" value="true" <?php //echo ($this->colorboxSettings['disableKeys']) ? 'checked="checked"' : '';?>/>
288
- <br/><?php __('Disable ESC to close Colorbox and arrow keys to go to next and previous images', JQUERYCOLORBOX_TEXTDOMAIN); ?>.
289
- </td>
290
- </tr-->
291
- <tr>
292
- <th scope="row">
293
- <label for="jquery-colorbox-maxWidthValue"><?php _e('Maximum width of an image', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
294
- </th>
295
- <td>
296
- <input type="radio" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[maxWidth]" id="jquery-colorbox-maxWidth-false-radio" value="false" <?php echo ($this->colorboxSettings['maxWidth']) == 'false' ? 'checked="checked"' : ''; ?>"/>
297
- <label for="jquery-colorbox-maxWidth-false-radio"><?php _e('Do not set width', JQUERYCOLORBOX_TEXTDOMAIN); ?>.</label>
298
- <br/>
299
- <input type="radio" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[maxWidth]" id="jquery-colorbox-maxWidth-custom-radio" value="custom" <?php echo ($this->colorboxSettings['maxWidth']) == 'custom' ? 'checked="checked"' : ''; ?>"/>
300
- <label for="jquery-colorbox-maxWidth-custom-radio"><?php _e('Set maximum width of an image', JQUERYCOLORBOX_TEXTDOMAIN); ?>.</label>
301
- <input type="text" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[maxWidthValue]" id="jquery-colorbox-maxWidthValue" value="<?php echo $this->colorboxSettings['maxWidthValue'] ?>" size="3" maxlength="3"/>
302
- <select name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[maxWidthUnit]" id="jquery-colorbox-maxWidth-unit" class="postform" style="margin:0">
303
- <?php
304
- foreach ($this->colorboxUnits as $unit => $name) {
305
- echo '<option value="' . esc_attr($unit) . '"';
306
- selected($this->colorboxSettings['maxWidthUnit'], $unit);
307
- echo '>' . htmlspecialchars($name) . "</option>\n";
308
- }
309
- ?>
310
- </select>
311
- <br/><?php _e('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', JQUERYCOLORBOX_TEXTDOMAIN); ?>.
312
- </td>
313
- </tr>
314
- <tr>
315
- <th scope="row">
316
- <label for="jquery-colorbox-maxHeightValue"><?php _e('Maximum height of an image', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
317
- </th>
318
- <td>
319
- <input type="radio" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[maxHeight]" id="jquery-colorbox-maxHeight-false-radio" value="false" <?php echo ($this->colorboxSettings['maxHeight']) == 'false' ? 'checked="checked"' : ''; ?>"/>
320
- <label for="jquery-colorbox-maxHeight-false-radio"><?php _e('Do not set height', JQUERYCOLORBOX_TEXTDOMAIN); ?>.</label>
321
- <br/>
322
- <input type="radio" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[maxHeight]" id="jquery-colorbox-maxHeight-custom-radio" value="custom" <?php echo ($this->colorboxSettings['maxHeight']) == 'custom' ? 'checked="checked"' : ''; ?>"/>
323
- <label for="jquery-colorbox-maxHeight-custom-radio"><?php _e('Set maximum height of an image', JQUERYCOLORBOX_TEXTDOMAIN); ?>.</label>
324
- <input type="text" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[maxHeightValue]" id="jquery-colorbox-maxHeightValue" value="<?php echo $this->colorboxSettings['maxHeightValue'] ?>" size="3" maxlength="3"/>
325
- <select name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[maxHeightUnit]" id="jquery-colorbox-maxHeight-unit" class="postform" style="margin:0">
326
- <?php
327
- foreach ($this->colorboxUnits as $unit => $name) {
328
- echo '<option value="' . esc_attr($unit) . '"';
329
- selected($this->colorboxSettings['maxHeightUnit'], $unit);
330
- echo '>' . htmlspecialchars($name) . "</option>\n";
331
- }
332
- ?>
333
- </select>
334
- <br/><?php _e('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', JQUERYCOLORBOX_TEXTDOMAIN); ?>.
335
- </td>
336
- </tr>
337
- <tr>
338
- <th scope="row">
339
- <label for="jquery-colorbox-widthValue"><?php _e('Maximum width of the Colorbox', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
340
- </th>
341
- <td>
342
- <input type="radio" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[width]" id="jquery-colorbox-width-false-radio" value="false" <?php echo ($this->colorboxSettings['width']) == 'false' ? 'checked="checked"' : ''; ?>"/>
343
- <label for="jquery-colorbox-width-false-radio"><?php _e('Do not set width', JQUERYCOLORBOX_TEXTDOMAIN); ?>.</label>
344
- <br/>
345
- <input type="radio" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[width]" id="jquery-colorbox-width-custom-radio" value="custom" <?php echo ($this->colorboxSettings['width']) == 'custom' ? 'checked="checked"' : ''; ?>"/>
346
- <label for="jquery-colorbox-width-custom-radio"><?php _e('Set width of the Colorbox', JQUERYCOLORBOX_TEXTDOMAIN); ?>.</label>
347
- <input type="text" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[widthValue]" id="jquery-colorbox-widthValue" value="<?php echo $this->colorboxSettings['widthValue'] ?>" size="3" maxlength="3"/>
348
- <select name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[widthUnit]" id="jquery-colorbox-width-unit" class="postform" style="margin:0">
349
- <?php
350
- foreach ($this->colorboxUnits as $unit => $name) {
351
- echo '<option value="' . esc_attr($unit) . '"';
352
- selected($this->colorboxSettings['widthUnit'], $unit);
353
- echo '>' . htmlspecialchars($name) . "</option>\n";
354
- }
355
- ?>
356
- </select>
357
- <br/><?php _e('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', JQUERYCOLORBOX_TEXTDOMAIN); ?>.
358
- </td>
359
- </tr>
360
- <tr>
361
- <th scope="row">
362
- <label for="jquery-colorbox-heightValue"><?php _e('Maximum height of the Colorbox', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
363
- </th>
364
- <td>
365
- <input type="radio" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[height]" id="jquery-colorbox-height-false-radio" value="false" <?php echo ($this->colorboxSettings['height']) == 'false' ? 'checked="checked"' : ''; ?>"/>
366
- <label for="jquery-colorbox-height-false-radio"><?php _e('Do not set height', JQUERYCOLORBOX_TEXTDOMAIN); ?>.</label>
367
- <br/>
368
- <input type="radio" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[height]" id="jquery-colorbox-height-custom-radio" value="custom" <?php echo ($this->colorboxSettings['height']) == 'custom' ? 'checked="checked"' : ''; ?>"/>
369
- <label for="jquery-colorbox-height-custom-radio"><?php _e('Set height of the Colorbox', JQUERYCOLORBOX_TEXTDOMAIN); ?>.</label>
370
- <input type="text" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[heightValue]" id="jquery-colorbox-heightValue" value="<?php echo $this->colorboxSettings['heightValue'] ?>" size="3" maxlength="3"/>
371
- <select name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[heightUnit]" id="jquery-colorbox-height-unit" class="postform" style="margin:0">
372
- <?php
373
- foreach ($this->colorboxUnits as $unit => $name) {
374
- echo '<option value="' . esc_attr($unit) . '"';
375
- selected($this->colorboxSettings['heightUnit'], $unit);
376
- echo '>' . htmlspecialchars($name) . "</option>\n";
377
- }
378
- ?>
379
- </select>
380
- <br/><?php _e('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', JQUERYCOLORBOX_TEXTDOMAIN); ?>.
381
- </td>
382
- </tr>
383
- <tr>
384
- <th scope="row">
385
- <label for="jquery-colorbox-linkWidthValue"><?php _e('Maximum width of the Colorbox used for links', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
386
- </th>
387
- <td>
388
- <input type="radio" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[linkWidth]" id="jquery-colorbox-link-width-false-radio" value="false" <?php echo ($this->colorboxSettings['linkWidth']) == 'false' ? 'checked="checked"' : ''; ?>"/>
389
- <label for="jquery-colorbox-link-width-false-radio"><?php _e('Do not set width', JQUERYCOLORBOX_TEXTDOMAIN); ?>.</label>
390
- <br/>
391
- <input type="radio" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[linkWidth]" id="jquery-colorbox-link-width-custom-radio" value="custom" <?php echo ($this->colorboxSettings['linkWidth']) == 'custom' ? 'checked="checked"' : ''; ?>"/>
392
- <label for="jquery-colorbox-link-width-custom-radio"><?php _e('Set width of the Colorbox', JQUERYCOLORBOX_TEXTDOMAIN); ?>.</label>
393
- <input type="text" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[linkWidthValue]" id="jquery-colorbox-linkWidthValue" value="<?php echo $this->colorboxSettings['linkWidthValue'] ?>" size="3" maxlength="3"/>
394
- <select name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[linkWidthUnit]" id="jquery-colorbox-width-unit" class="postform" style="margin:0">
395
- <?php
396
- foreach ($this->colorboxUnits as $unit => $name) {
397
- echo '<option value="' . esc_attr($unit) . '"';
398
- selected($this->colorboxSettings['linkWidthUnit'], $unit);
399
- echo '>' . htmlspecialchars($name) . "</option>\n";
400
- }
401
- ?>
402
- </select>
403
- <br/><?php _e('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', JQUERYCOLORBOX_TEXTDOMAIN); ?>.
404
- </td>
405
- </tr>
406
- <tr>
407
- <th scope="row">
408
- <label for="jquery-colorbox-linkHeightValue"><?php _e('Maximum height of the Colorbox used for links', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
409
- </th>
410
- <td>
411
- <input type="radio" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[linkHeight]" id="jquery-colorbox-link-height-false-radio" value="false" <?php echo ($this->colorboxSettings['linkHeight']) == 'false' ? 'checked="checked"' : ''; ?>"/>
412
- <label for="jquery-colorbox-link-height-false-radio"><?php _e('Do not set height', JQUERYCOLORBOX_TEXTDOMAIN); ?>.</label>
413
- <br/>
414
- <input type="radio" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[linkHeight]" id="jquery-colorbox-link-height-custom-radio" value="custom" <?php echo ($this->colorboxSettings['linkHeight']) == 'custom' ? 'checked="checked"' : ''; ?>"/>
415
- <label for="jquery-colorbox-link-height-custom-radio"><?php _e('Set height of the Colorbox', JQUERYCOLORBOX_TEXTDOMAIN); ?>.</label>
416
- <input type="text" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[linkHeightValue]" id="jquery-colorbox-linkHeightValue" value="<?php echo $this->colorboxSettings['linkHeightValue'] ?>" size="3" maxlength="3"/>
417
- <select name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[linkHeightUnit]" id="jquery-colorbox-link-height-unit" class="postform" style="margin:0">
418
- <?php
419
- foreach ($this->colorboxUnits as $unit => $name) {
420
- echo '<option value="' . esc_attr($unit) . '"';
421
- selected($this->colorboxSettings['linkHeightUnit'], $unit);
422
- echo '>' . htmlspecialchars($name) . "</option>\n";
423
- }
424
- ?>
425
- </select>
426
- <br/><?php _e('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', JQUERYCOLORBOX_TEXTDOMAIN); ?>.
427
- </td>
428
- </tr>
429
- <!-- <tr>-->
430
- <!-- <th scope="row">-->
431
- <!-- <label for="jquery-colorbox-initialWidth">--><?php __('Initial width of the Colorbox', JQUERYCOLORBOX_TEXTDOMAIN); ?><!--:</label>-->
432
- <!-- </th>-->
433
- <!-- <td>-->
434
- <!-- <input type="text" name="--><?php //echo JQUERYCOLORBOX_SETTINGSNAME ?><!--[initialWidth]" id="jquery-colorbox-initialWidth" value="--><?php //echo $this->colorboxSettings['initialWidth'] ?><!--" size="5" maxlength="5"/>--><?php __('pixels',JQUERYCOLORBOX_TEXTDOMAIN) ?>
435
- <!-- <br/>--><?php __('Set the maximum width of the Colorbox before the content is loaded', JQUERYCOLORBOX_TEXTDOMAIN); ?><!--.-->
436
- <!-- </td>-->
437
- <!-- </tr>-->
438
- <!-- <tr>-->
439
- <!-- <th scope="row">-->
440
- <!-- <label for="jquery-colorbox-initialHeight">--><?php __('Initial height of the Colorbox', JQUERYCOLORBOX_TEXTDOMAIN); ?><!--:</label>-->
441
- <!-- </th>-->
442
- <!-- <td>-->
443
- <!-- <input type="text" name="--><?php //echo JQUERYCOLORBOX_SETTINGSNAME ?><!--[initialHeight]" id="jquery-colorbox-initialHeight" value="--><?php //echo $this->colorboxSettings['initialHeight'] ?><!--" size="5" maxlength="5"/>--><?php __('pixels',JQUERYCOLORBOX_TEXTDOMAIN) ?>
444
- <!-- <br/>--><?php __('Set the maximum height of the Colorbox before the content is loaded', JQUERYCOLORBOX_TEXTDOMAIN); ?><!--.-->
445
- <!-- </td>-->
446
- <!-- </tr>-->
447
- <tr>
448
- <th scope="row">
449
- <label for="jquery-colorbox-scalePhotos"><?php _e('Resize images', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
450
- </th>
451
- <td>
452
- <input type="checkbox" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[scalePhotos]" id="jquery-colorbox-scalePhotos" value="true" <?php echo ($this->colorboxSettings['scalePhotos']) ? 'checked="checked"' : '';?>/>
453
- <br/><?php _e('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', JQUERYCOLORBOX_TEXTDOMAIN); ?>.
454
- </td>
455
- </tr>
456
- <tr>
457
- <th scope="row">
458
- <label for="jquery-colorbox-overlayClose"><?php _e('Close Colorbox on overlay click', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
459
- </th>
460
- <td>
461
- <input type="checkbox" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[overlayClose]" id="jquery-colorbox-overlayClose" value="true" <?php echo ($this->colorboxSettings['overlayClose']) ? 'checked="checked"' : '';?>/>
462
- <br/><?php _e('If checked, enables closing ColorBox by clicking on the background overlay', JQUERYCOLORBOX_TEXTDOMAIN); ?>.
463
- </td>
464
- </tr>
465
- <tr>
466
- <th scope="row">
467
- <label for="jquery-colorbox-preloading"><?php _e('Preload images', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
468
- </th>
469
- <td>
470
- <input type="checkbox" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[preloading]" id="jquery-colorbox-preloading" value="true" <?php echo ($this->colorboxSettings['preloading']) ? 'checked="checked"' : '';?>/>
471
- <br/><?php _e('Allows for preloading of "next" and "previous" content in a group, after the current content has finished loading. Uncheck box to disable.', JQUERYCOLORBOX_TEXTDOMAIN); ?>.
472
- </td>
473
- </tr>
474
- <tr>
475
- <th scope="row">
476
- <label for="jquery-colorbox-transition"><?php _e('Transition type', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
477
- </th>
478
- <td>
479
- <select name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[transition]" id="jquery-colorbox-transition" class="postform" style="margin:0">
480
- <?php
481
- foreach ($this->colorboxTransitions as $unit => $name) {
482
- echo '<option value="' . esc_attr($unit) . '"';
483
- selected($this->colorboxSettings['transition'], $unit);
484
- echo '>' . htmlspecialchars($name) . "</option>\n";
485
- }
486
- ?>
487
- </select>
488
- <br/><?php _e('The transition type of the Colorbox. Can be set to "elastic", "fade", or "none"', JQUERYCOLORBOX_TEXTDOMAIN); ?>.
489
- </td>
490
- </tr>
491
- <tr>
492
- <th scope="row">
493
- <label for="jquery-colorbox-speed"><?php _e('Transition speed', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
494
- </th>
495
- <td>
496
- <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) ?>
497
- <br/><?php _e('Sets the speed of the "fade" and "elastic" transitions, in milliseconds', JQUERYCOLORBOX_TEXTDOMAIN); ?>.
498
- </td>
499
- </tr>
500
- <tr>
501
- <th scope="row">
502
- <label for="jquery-colorbox-opacity"><?php _e('Opacity', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
503
- </th>
504
- <td>
505
- <input type="text" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[opacity]" id="jquery-colorbox-opacity" value="<?php echo $this->colorboxSettings['opacity'] ?>" size="4" maxlength="4"/>
506
- <br/><?php _e('The overlay opacity level. Range: 0 to 1', JQUERYCOLORBOX_TEXTDOMAIN); ?>.
507
- </td>
508
- </tr>
509
- <!--tr>
510
- <th scope="row">
511
- <label for="jquery-colorbox-draggable"><?php __('Make images draggable', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
512
- </th>
513
- <td>
514
- <input type="checkbox" name="<?php //echo JQUERYCOLORBOX_SETTINGSNAME ?>[draggable]" id="jquery-colorbox-draggable" value="true" <?php //echo ($this->colorboxSettings['draggable']) ? 'checked="checked"' : '';?>/>
515
- <br/><?php __('Make images draggable instead of scrollable', JQUERYCOLORBOX_TEXTDOMAIN); ?>.
516
- </td>
517
- </tr-->
518
- </table>
519
- <p class="submit">
520
- <input type="hidden" name="action" value="jQueryColorboxUpdateSettings"/>
521
- <input type="submit" name="jQueryColorboxUpdateSettings" class="button-primary" value="<?php _e('Save Changes') ?>"/>
522
- </p>
523
-
524
- </div>
525
- </div>
526
- </div>
527
- </form>
528
-
529
- <div id="poststuff">
530
- <div id="jquery-colorbox-delete_settings" class="postbox">
531
- <h3 id="delete_options"><?php _e('Delete Settings', JQUERYCOLORBOX_TEXTDOMAIN) ?></h3>
532
-
533
- <div class="inside">
534
- <p><?php _e('Check the box and click this button to delete settings of this plugin.', JQUERYCOLORBOX_TEXTDOMAIN); ?></p>
535
-
536
- <form name="delete_settings" method="post" action="admin-post.php">
537
- <?php if (function_exists('wp_nonce_field') === true) wp_nonce_field('jquery-delete_settings-form'); ?>
538
- <p id="submitbutton">
539
- <input type="hidden" name="action" value="jQueryColorboxDeleteSettings"/>
540
- <input type="submit" name="jQueryColorboxDeleteSettings" value="<?php _e('Delete Settings', JQUERYCOLORBOX_TEXTDOMAIN); ?> &raquo;" class="button-secondary"/>
541
- <input type="checkbox" name="delete_settings-true"/>
542
- </p>
543
- </form>
544
- </div>
545
- </div>
546
- </div>
547
- </div>
548
- <div class="postbox-container" style="width: 29%;">
549
- <div id="poststuff">
550
- <div id="jquery-colorbox-topdonations" class="postbox">
551
- <h3 id="topdonations"><?php _e('Top donations', JQUERYCOLORBOX_TEXTDOMAIN) ?></h3>
552
-
553
- <div class="inside">
554
- <?php echo $this->getRemoteContent(JQUERYCOLORBOX_TOPDONATEURL); ?>
555
- </div>
556
- </div>
557
- </div>
558
- <div id="poststuff">
559
- <div id="jquery-colorbox-latestdonations" class="postbox">
560
- <h3 id="latestdonations"><?php _e('Latest donations', JQUERYCOLORBOX_TEXTDOMAIN) ?></h3>
561
-
562
- <div class="inside">
563
- <?php echo $this->getRemoteContent(JQUERYCOLORBOX_LATESTDONATEURL); ?>
564
- </div>
565
- </div>
566
- </div>
567
- <div id="poststuff">
568
- <div id="jquery-colorbox-donate" class="postbox">
569
- <h3 id="donate"><?php _e('Donate', JQUERYCOLORBOX_TEXTDOMAIN) ?></h3>
570
-
571
- <div class="inside">
572
- <p>
573
- <?php _e('If you would like to make a small (or large) contribution towards future development please consider making a donation.', JQUERYCOLORBOX_TEXTDOMAIN) ?>
574
- </p>
575
- <!-- <h5 id="donatePaypal">--><?php __('Donate using Paypal', JQUERYCOLORBOX_TEXTDOMAIN) ?><!--</h5>-->
576
- <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
577
- <input type="hidden" name="cmd" value="_xclick" />
578
- <input type="hidden" name="business" value="G75G3Z6PQWXXQ" />
579
- <input type="hidden" name="item_name" value="<?php _e('Techotronic Development Support' , JQUERYCOLORBOX_TEXTDOMAIN); ?>" />
580
- <input type="hidden" name="item_number" value="jQuery Colorbox"/>
581
- <input type="hidden" name="no_shipping" value="0"/>
582
- <input type="hidden" name="no_note" value="0"/>
583
- <input type="hidden" name="cn" value="<?php _e("Please enter the URL you'd like me to link to in the donors lists", JQUERYCOLORBOX_TEXTDOMAIN); ?>." />
584
- <input type="hidden" name="return" value="<?php $this->getReturnLocation(); ?>" />
585
- <input type="hidden" name="cbt" value="<?php _e('Return to Your Dashboard' , JQUERYCOLORBOX_TEXTDOMAIN); ?>" />
586
- <input type="hidden" name="currency_code" value="USD"/>
587
- <input type="hidden" name="lc" value="US"/>
588
- <input type="hidden" name="bn" value="PP-DonationsBF"/>
589
- <label for="preset-amounts"><?php _e('Select Preset Amount', JQUERYCOLORBOX_TEXTDOMAIN); echo ": "; ?></label>
590
- <select name="amount" id="preset-amounts">
591
- <option value="10">10</option>
592
- <option value="20" selected>20</option>
593
- <option value="30">30</option>
594
- <option value="40">40</option>
595
- <option value="50">50</option>
596
- <option value="100">100</option>
597
- </select><span><?php _e('USD',JQUERYCOLORBOX_TEXTDOMAIN) ?></span>
598
- <br /><br /><?php _e('Or', JQUERYCOLORBOX_TEXTDOMAIN); ?><br /><br />
599
- <label for="custom-amounts"><?php _e('Enter Custom Amount', JQUERYCOLORBOX_TEXTDOMAIN); echo ": "; ?></label>
600
- <input type="text" name="amount" size="4" id="custom-amounts"/>
601
- <span><?php _e('USD',JQUERYCOLORBOX_TEXTDOMAIN) ?></span>
602
- <br /><br />
603
- <input type="submit" value="<?php _e('Submit',JQUERYCOLORBOX_TEXTDOMAIN) ?>" class="button-secondary"/>
604
- </form>
605
- </div>
606
- </div>
607
- </div>
608
- <div id="poststuff">
609
- <div id="jquery-colorbox-translation" class="postbox">
610
- <h3 id="translation"><?php _e('Translation', JQUERYCOLORBOX_TEXTDOMAIN) ?></h3>
611
-
612
- <div class="inside">
613
- <p><?php _e('The english translation was done by <a href="http://www.techotronic.de">Arne Franken</a>.', JQUERYCOLORBOX_TEXTDOMAIN); ?></p>
614
- </div>
615
- </div>
616
- </div>
617
- </div>
618
- </div>
619
- <div class="clear">
620
- <p>
621
- <br/>&copy; Copyright 2009 - <?php echo date("Y"); ?> <a href="http://www.techotronic.de">Arne Franken</a>
622
- </p>
623
- </div>
624
  </div>
9
  * HTML for settings page
10
  */
11
  ?>
12
+ <?php
13
+ require_once 'settings-page/sp-javascript-header.php';
14
+ ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  <div class="wrap">
16
+ <div>
17
  <?php screen_icon(); ?>
18
  <h2><?php printf(__('%1$s Settings', JQUERYCOLORBOX_TEXTDOMAIN), JQUERYCOLORBOX_NAME); ?></h2>
19
  <br class="clear"/>
20
 
21
  <?php settings_fields(JQUERYCOLORBOX_SETTINGSNAME); ?>
22
 
23
+ <?php
24
+ require_once 'settings-page/sp-left-column.php';
25
+ require_once 'settings-page/sp-right-column.php';
26
+ ?>
27
+ </div>
28
+ <?php
29
+ require_once 'settings-page/sp-footer.php';
30
+ ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
  </div>
includes/settings-page/sp-colorbox-settings.php ADDED
@@ -0,0 +1,333 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * @package Techotronic
4
+ * @subpackage jQuery Colorbox
5
+ *
6
+ * @since 4.1
7
+ * @author Arne Franken
8
+ *
9
+ * Colorbox Settings for settings page
10
+ */
11
+ ?>
12
+ <div id="jquery-colorbox-plugin-settings" class="postbox">
13
+ <h3 id="colorbox-settings"><?php _e('Colorbox settings', JQUERYCOLORBOX_TEXTDOMAIN); ?></h3>
14
+
15
+ <div class="inside">
16
+
17
+ <table class="form-table">
18
+ <tr valign="top">
19
+ <th scope="row">
20
+ <label for="jquery-colorbox-theme"><?php _e('Theme', JQUERYCOLORBOX_TEXTDOMAIN); ?></label>
21
+ </th>
22
+ <td>
23
+ <select name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[colorboxTheme]" id="jquery-colorbox-theme" class="postform" style="margin:0">
24
+ <?php
25
+ foreach ($this->colorboxThemes as $theme => $name) {
26
+ echo '<option value="' . esc_attr($theme) . '"';
27
+ selected($this->colorboxSettings['colorboxTheme'], $theme);
28
+ echo '>' . htmlspecialchars($name) . "</option>\n";
29
+ }
30
+ ?>
31
+ </select>
32
+ <br/><?php _e('Select the theme you want to use on your blog.', JQUERYCOLORBOX_TEXTDOMAIN); ?>
33
+ </td>
34
+ </tr>
35
+ <tr>
36
+ <th scope="row">
37
+ <label for="jquery-colorbox-theme_screenshot_image"><?php _e('Theme screenshot', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
38
+ </th>
39
+ <td height="310px">
40
+ <div id="jquery-colorbox-theme_screenshot_image">
41
+ <img src="<?php echo JQUERYCOLORBOX_PLUGIN_URL; echo '/screenshot-'; preg_match('/\d+$/i', $this->colorboxSettings['colorboxTheme'], $matches); echo $matches[0] ?>.jpg"/>
42
+ </div>
43
+ </td>
44
+ </tr>
45
+
46
+ <tr>
47
+ <th scope="row">
48
+ <label for="jquery-colorbox-slideshow"><?php _e('Add Slideshow to groups', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
49
+ </th>
50
+ <td>
51
+ <input type="checkbox" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[slideshow]" id="jquery-colorbox-slideshow" value="true" <?php echo ($this->colorboxSettings['slideshow'])
52
+ ? 'checked="checked"' : '';?>/>
53
+ <br/><?php printf(__('Add Slideshow functionality for %1$s Groups', JQUERYCOLORBOX_TEXTDOMAIN), JQUERYCOLORBOX_NAME); ?>
54
+ </td>
55
+ </tr>
56
+ <tr>
57
+ <th scope="row">
58
+ <label for="jquery-colorbox-slideshowAuto"><?php _e('Start Slideshow automatically', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
59
+ </th>
60
+ <td>
61
+ <input type="checkbox" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[slideshowAuto]" id="jquery-colorbox-slideshowAuto" value="true" <?php echo ($this->colorboxSettings['slideshowAuto'])
62
+ ? 'checked="checked"' : '';?>/>
63
+ <br/><?php printf(__('Start Slideshow automatically if slideshow functionality is added to %1$s Groups', JQUERYCOLORBOX_TEXTDOMAIN), JQUERYCOLORBOX_NAME); ?>
64
+ </td>
65
+ </tr>
66
+ <tr>
67
+ <th scope="row">
68
+ <label for="jquery-colorbox-slideshowSpeed"><?php _e('Speed of the slideshow', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
69
+ </th>
70
+ <td>
71
+ <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) ?>
72
+ <br/><?php _e('Sets the speed of the slideshow, in milliseconds', JQUERYCOLORBOX_TEXTDOMAIN); ?>.
73
+ </td>
74
+ </tr>
75
+ <!--tr>
76
+ <th scope="row">
77
+ <label for="jquery-colorbox-disableLoop"><?php __('Disable loop', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
78
+ </th>
79
+ <td>
80
+ <input type="checkbox" name="<?php //echo JQUERYCOLORBOX_SETTINGSNAME ?>[disableLoop]" id="jquery-colorbox-disableLoop" value="true" <?php //echo ($this->colorboxSettings['disableLoop']) ? 'checked="checked"' : '';?>/>
81
+ <br/><?php __('Disable looping through image groups', JQUERYCOLORBOX_TEXTDOMAIN); ?>.
82
+ </td>
83
+ </tr-->
84
+ <!--tr>
85
+ <th scope="row">
86
+ <label for="jquery-colorbox-disableKeys"><?php __('Disable keys', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
87
+ </th>
88
+ <td>
89
+ <input type="checkbox" name="<?php //echo JQUERYCOLORBOX_SETTINGSNAME ?>[disableKeys]" id="jquery-colorbox-disableKeys" value="true" <?php //echo ($this->colorboxSettings['disableKeys']) ? 'checked="checked"' : '';?>/>
90
+ <br/><?php __('Disable ESC to close Colorbox and arrow keys to go to next and previous images', JQUERYCOLORBOX_TEXTDOMAIN); ?>.
91
+ </td>
92
+ </tr-->
93
+ <tr>
94
+ <th scope="row">
95
+ <label for="jquery-colorbox-maxWidthValue"><?php _e('Maximum width of an image', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
96
+ </th>
97
+ <td>
98
+ <input type="radio" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[maxWidth]" id="jquery-colorbox-maxWidth-false-radio" value="false" <?php echo ($this->colorboxSettings['maxWidth']) == 'false'
99
+ ? 'checked="checked"' : ''; ?>"/>
100
+ <label for="jquery-colorbox-maxWidth-false-radio"><?php _e('Do not set width', JQUERYCOLORBOX_TEXTDOMAIN); ?>.</label>
101
+ <br/>
102
+ <input type="radio" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[maxWidth]" id="jquery-colorbox-maxWidth-custom-radio" value="custom" <?php echo ($this->colorboxSettings['maxWidth']) == 'custom'
103
+ ? 'checked="checked"' : ''; ?>"/>
104
+ <label for="jquery-colorbox-maxWidth-custom-radio"><?php _e('Set maximum width of an image', JQUERYCOLORBOX_TEXTDOMAIN); ?>.</label>
105
+ <input type="text" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[maxWidthValue]" id="jquery-colorbox-maxWidthValue" value="<?php echo $this->colorboxSettings['maxWidthValue'] ?>" size="3" maxlength="3"/>
106
+ <select name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[maxWidthUnit]" id="jquery-colorbox-maxWidth-unit" class="postform" style="margin:0">
107
+ <?php
108
+ foreach ($this->colorboxUnits as $unit => $name) {
109
+ echo '<option value="' . esc_attr($unit) . '"';
110
+ selected($this->colorboxSettings['maxWidthUnit'], $unit);
111
+ echo '>' . htmlspecialchars($name) . "</option>\n";
112
+ }
113
+ ?>
114
+ </select>
115
+ <br/><?php _e('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', JQUERYCOLORBOX_TEXTDOMAIN); ?>.
116
+ </td>
117
+ </tr>
118
+ <tr>
119
+ <th scope="row">
120
+ <label for="jquery-colorbox-maxHeightValue"><?php _e('Maximum height of an image', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
121
+ </th>
122
+ <td>
123
+ <input type="radio" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[maxHeight]" id="jquery-colorbox-maxHeight-false-radio" value="false" <?php echo ($this->colorboxSettings['maxHeight']) == 'false'
124
+ ? 'checked="checked"' : ''; ?>"/>
125
+ <label for="jquery-colorbox-maxHeight-false-radio"><?php _e('Do not set height', JQUERYCOLORBOX_TEXTDOMAIN); ?>.</label>
126
+ <br/>
127
+ <input type="radio" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[maxHeight]" id="jquery-colorbox-maxHeight-custom-radio" value="custom" <?php echo ($this->colorboxSettings['maxHeight']) == 'custom'
128
+ ? 'checked="checked"' : ''; ?>"/>
129
+ <label for="jquery-colorbox-maxHeight-custom-radio"><?php _e('Set maximum height of an image', JQUERYCOLORBOX_TEXTDOMAIN); ?>.</label>
130
+ <input type="text" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[maxHeightValue]" id="jquery-colorbox-maxHeightValue" value="<?php echo $this->colorboxSettings['maxHeightValue'] ?>" size="3" maxlength="3"/>
131
+ <select name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[maxHeightUnit]" id="jquery-colorbox-maxHeight-unit" class="postform" style="margin:0">
132
+ <?php
133
+ foreach ($this->colorboxUnits as $unit => $name) {
134
+ echo '<option value="' . esc_attr($unit) . '"';
135
+ selected($this->colorboxSettings['maxHeightUnit'], $unit);
136
+ echo '>' . htmlspecialchars($name) . "</option>\n";
137
+ }
138
+ ?>
139
+ </select>
140
+ <br/><?php _e('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', JQUERYCOLORBOX_TEXTDOMAIN); ?>.
141
+ </td>
142
+ </tr>
143
+ <tr>
144
+ <th scope="row">
145
+ <label for="jquery-colorbox-widthValue"><?php _e('Maximum width of the Colorbox', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
146
+ </th>
147
+ <td>
148
+ <input type="radio" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[width]" id="jquery-colorbox-width-false-radio" value="false" <?php echo ($this->colorboxSettings['width']) == 'false'
149
+ ? 'checked="checked"' : ''; ?>"/>
150
+ <label for="jquery-colorbox-width-false-radio"><?php _e('Do not set width', JQUERYCOLORBOX_TEXTDOMAIN); ?>.</label>
151
+ <br/>
152
+ <input type="radio" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[width]" id="jquery-colorbox-width-custom-radio" value="custom" <?php echo ($this->colorboxSettings['width']) == 'custom'
153
+ ? 'checked="checked"' : ''; ?>"/>
154
+ <label for="jquery-colorbox-width-custom-radio"><?php _e('Set width of the Colorbox', JQUERYCOLORBOX_TEXTDOMAIN); ?>.</label>
155
+ <input type="text" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[widthValue]" id="jquery-colorbox-widthValue" value="<?php echo $this->colorboxSettings['widthValue'] ?>" size="3" maxlength="3"/>
156
+ <select name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[widthUnit]" id="jquery-colorbox-width-unit" class="postform" style="margin:0">
157
+ <?php
158
+ foreach ($this->colorboxUnits as $unit => $name) {
159
+ echo '<option value="' . esc_attr($unit) . '"';
160
+ selected($this->colorboxSettings['widthUnit'], $unit);
161
+ echo '>' . htmlspecialchars($name) . "</option>\n";
162
+ }
163
+ ?>
164
+ </select>
165
+ <br/><?php _e('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', JQUERYCOLORBOX_TEXTDOMAIN); ?>.
166
+ </td>
167
+ </tr>
168
+ <tr>
169
+ <th scope="row">
170
+ <label for="jquery-colorbox-heightValue"><?php _e('Maximum height of the Colorbox', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
171
+ </th>
172
+ <td>
173
+ <input type="radio" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[height]" id="jquery-colorbox-height-false-radio" value="false" <?php echo ($this->colorboxSettings['height']) == 'false'
174
+ ? 'checked="checked"' : ''; ?>"/>
175
+ <label for="jquery-colorbox-height-false-radio"><?php _e('Do not set height', JQUERYCOLORBOX_TEXTDOMAIN); ?>.</label>
176
+ <br/>
177
+ <input type="radio" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[height]" id="jquery-colorbox-height-custom-radio" value="custom" <?php echo ($this->colorboxSettings['height']) == 'custom'
178
+ ? 'checked="checked"' : ''; ?>"/>
179
+ <label for="jquery-colorbox-height-custom-radio"><?php _e('Set height of the Colorbox', JQUERYCOLORBOX_TEXTDOMAIN); ?>.</label>
180
+ <input type="text" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[heightValue]" id="jquery-colorbox-heightValue" value="<?php echo $this->colorboxSettings['heightValue'] ?>" size="3" maxlength="3"/>
181
+ <select name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[heightUnit]" id="jquery-colorbox-height-unit" class="postform" style="margin:0">
182
+ <?php
183
+ foreach ($this->colorboxUnits as $unit => $name) {
184
+ echo '<option value="' . esc_attr($unit) . '"';
185
+ selected($this->colorboxSettings['heightUnit'], $unit);
186
+ echo '>' . htmlspecialchars($name) . "</option>\n";
187
+ }
188
+ ?>
189
+ </select>
190
+ <br/><?php _e('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', JQUERYCOLORBOX_TEXTDOMAIN); ?>.
191
+ </td>
192
+ </tr>
193
+ <tr>
194
+ <th scope="row">
195
+ <label for="jquery-colorbox-linkWidthValue"><?php _e('Maximum width of the Colorbox used for links', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
196
+ </th>
197
+ <td>
198
+ <input type="radio" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[linkWidth]" id="jquery-colorbox-link-width-false-radio" value="false" <?php echo ($this->colorboxSettings['linkWidth']) == 'false'
199
+ ? 'checked="checked"' : ''; ?>"/>
200
+ <label for="jquery-colorbox-link-width-false-radio"><?php _e('Do not set width', JQUERYCOLORBOX_TEXTDOMAIN); ?>.</label>
201
+ <br/>
202
+ <input type="radio" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[linkWidth]" id="jquery-colorbox-link-width-custom-radio" value="custom" <?php echo ($this->colorboxSettings['linkWidth']) == 'custom'
203
+ ? 'checked="checked"' : ''; ?>"/>
204
+ <label for="jquery-colorbox-link-width-custom-radio"><?php _e('Set width of the Colorbox', JQUERYCOLORBOX_TEXTDOMAIN); ?>.</label>
205
+ <input type="text" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[linkWidthValue]" id="jquery-colorbox-linkWidthValue" value="<?php echo $this->colorboxSettings['linkWidthValue'] ?>" size="3" maxlength="3"/>
206
+ <select name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[linkWidthUnit]" id="jquery-colorbox-width-unit" class="postform" style="margin:0">
207
+ <?php
208
+ foreach ($this->colorboxUnits as $unit => $name) {
209
+ echo '<option value="' . esc_attr($unit) . '"';
210
+ selected($this->colorboxSettings['linkWidthUnit'], $unit);
211
+ echo '>' . htmlspecialchars($name) . "</option>\n";
212
+ }
213
+ ?>
214
+ </select>
215
+ <br/><?php _e('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', JQUERYCOLORBOX_TEXTDOMAIN); ?>.
216
+ </td>
217
+ </tr>
218
+ <tr>
219
+ <th scope="row">
220
+ <label for="jquery-colorbox-linkHeightValue"><?php _e('Maximum height of the Colorbox used for links', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
221
+ </th>
222
+ <td>
223
+ <input type="radio" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[linkHeight]" id="jquery-colorbox-link-height-false-radio" value="false" <?php echo ($this->colorboxSettings['linkHeight']) == 'false'
224
+ ? 'checked="checked"' : ''; ?>"/>
225
+ <label for="jquery-colorbox-link-height-false-radio"><?php _e('Do not set height', JQUERYCOLORBOX_TEXTDOMAIN); ?>.</label>
226
+ <br/>
227
+ <input type="radio" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[linkHeight]" id="jquery-colorbox-link-height-custom-radio" value="custom" <?php echo ($this->colorboxSettings['linkHeight']) == 'custom'
228
+ ? 'checked="checked"' : ''; ?>"/>
229
+ <label for="jquery-colorbox-link-height-custom-radio"><?php _e('Set height of the Colorbox', JQUERYCOLORBOX_TEXTDOMAIN); ?>.</label>
230
+ <input type="text" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[linkHeightValue]" id="jquery-colorbox-linkHeightValue" value="<?php echo $this->colorboxSettings['linkHeightValue'] ?>" size="3" maxlength="3"/>
231
+ <select name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[linkHeightUnit]" id="jquery-colorbox-link-height-unit" class="postform" style="margin:0">
232
+ <?php
233
+ foreach ($this->colorboxUnits as $unit => $name) {
234
+ echo '<option value="' . esc_attr($unit) . '"';
235
+ selected($this->colorboxSettings['linkHeightUnit'], $unit);
236
+ echo '>' . htmlspecialchars($name) . "</option>\n";
237
+ }
238
+ ?>
239
+ </select>
240
+ <br/><?php _e('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', JQUERYCOLORBOX_TEXTDOMAIN); ?>.
241
+ </td>
242
+ </tr>
243
+ <!-- <tr>-->
244
+ <!-- <th scope="row">-->
245
+ <!-- <label for="jquery-colorbox-initialWidth">--><?php __('Initial width of the Colorbox', JQUERYCOLORBOX_TEXTDOMAIN); ?><!--:</label>-->
246
+ <!-- </th>-->
247
+ <!-- <td>-->
248
+ <!-- <input type="text" name="--><?php //echo JQUERYCOLORBOX_SETTINGSNAME ?><!--[initialWidth]" id="jquery-colorbox-initialWidth" value="--><?php //echo $this->colorboxSettings['initialWidth'] ?><!--" size="5" maxlength="5"/>--><?php __('pixels', JQUERYCOLORBOX_TEXTDOMAIN) ?>
249
+ <!-- <br/>--><?php __('Set the maximum width of the Colorbox before the content is loaded', JQUERYCOLORBOX_TEXTDOMAIN); ?><!--.-->
250
+ <!-- </td>-->
251
+ <!-- </tr>-->
252
+ <!-- <tr>-->
253
+ <!-- <th scope="row">-->
254
+ <!-- <label for="jquery-colorbox-initialHeight">--><?php __('Initial height of the Colorbox', JQUERYCOLORBOX_TEXTDOMAIN); ?><!--:</label>-->
255
+ <!-- </th>-->
256
+ <!-- <td>-->
257
+ <!-- <input type="text" name="--><?php //echo JQUERYCOLORBOX_SETTINGSNAME ?><!--[initialHeight]" id="jquery-colorbox-initialHeight" value="--><?php //echo $this->colorboxSettings['initialHeight'] ?><!--" size="5" maxlength="5"/>--><?php __('pixels', JQUERYCOLORBOX_TEXTDOMAIN) ?>
258
+ <!-- <br/>--><?php __('Set the maximum height of the Colorbox before the content is loaded', JQUERYCOLORBOX_TEXTDOMAIN); ?><!--.-->
259
+ <!-- </td>-->
260
+ <!-- </tr>-->
261
+ <tr>
262
+ <th scope="row">
263
+ <label for="jquery-colorbox-scalePhotos"><?php _e('Resize images', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
264
+ </th>
265
+ <td>
266
+ <input type="checkbox" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[scalePhotos]" id="jquery-colorbox-scalePhotos" value="true" <?php echo ($this->colorboxSettings['scalePhotos'])
267
+ ? 'checked="checked"' : '';?>/>
268
+ <br/><?php _e('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', JQUERYCOLORBOX_TEXTDOMAIN); ?>.
269
+ </td>
270
+ </tr>
271
+ <tr>
272
+ <th scope="row">
273
+ <label for="jquery-colorbox-overlayClose"><?php _e('Close Colorbox on overlay click', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
274
+ </th>
275
+ <td>
276
+ <input type="checkbox" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[overlayClose]" id="jquery-colorbox-overlayClose" value="true" <?php echo ($this->colorboxSettings['overlayClose'])
277
+ ? 'checked="checked"' : '';?>/>
278
+ <br/><?php _e('If checked, enables closing ColorBox by clicking on the background overlay', JQUERYCOLORBOX_TEXTDOMAIN); ?>.
279
+ </td>
280
+ </tr>
281
+ <tr>
282
+ <th scope="row">
283
+ <label for="jquery-colorbox-preloading"><?php _e('Preload images', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
284
+ </th>
285
+ <td>
286
+ <input type="checkbox" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[preloading]" id="jquery-colorbox-preloading" value="true" <?php echo ($this->colorboxSettings['preloading'])
287
+ ? 'checked="checked"' : '';?>/>
288
+ <br/><?php _e('Allows for preloading of "next" and "previous" content in a group, after the current content has finished loading. Uncheck box to disable.', JQUERYCOLORBOX_TEXTDOMAIN); ?>.
289
+ </td>
290
+ </tr>
291
+ <tr>
292
+ <th scope="row">
293
+ <label for="jquery-colorbox-transition"><?php _e('Transition type', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
294
+ </th>
295
+ <td>
296
+ <select name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[transition]" id="jquery-colorbox-transition" class="postform" style="margin:0">
297
+ <?php
298
+ foreach ($this->colorboxTransitions as $unit => $name) {
299
+ echo '<option value="' . esc_attr($unit) . '"';
300
+ selected($this->colorboxSettings['transition'], $unit);
301
+ echo '>' . htmlspecialchars($name) . "</option>\n";
302
+ }
303
+ ?>
304
+ </select>
305
+ <br/><?php _e('The transition type of the Colorbox. Can be set to "elastic", "fade", or "none"', JQUERYCOLORBOX_TEXTDOMAIN); ?>.
306
+ </td>
307
+ </tr>
308
+ <tr>
309
+ <th scope="row">
310
+ <label for="jquery-colorbox-speed"><?php _e('Transition speed', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
311
+ </th>
312
+ <td>
313
+ <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) ?>
314
+ <br/><?php _e('Sets the speed of the "fade" and "elastic" transitions, in milliseconds', JQUERYCOLORBOX_TEXTDOMAIN); ?>.
315
+ </td>
316
+ </tr>
317
+ <tr>
318
+ <th scope="row">
319
+ <label for="jquery-colorbox-opacity"><?php _e('Opacity', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
320
+ </th>
321
+ <td>
322
+ <input type="text" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[opacity]" id="jquery-colorbox-opacity" value="<?php echo $this->colorboxSettings['opacity'] ?>" size="4" maxlength="4"/>
323
+ <br/><?php _e('The overlay opacity level. Range: 0 to 1', JQUERYCOLORBOX_TEXTDOMAIN); ?>.
324
+ </td>
325
+ </tr>
326
+ </table>
327
+ <p class="submit">
328
+ <input type="hidden" name="action" value="jQueryColorboxUpdateSettings"/>
329
+ <input type="submit" name="jQueryColorboxUpdateSettings" class="button-primary" value="<?php _e('Save Changes') ?>"/>
330
+ </p>
331
+
332
+ </div>
333
+ </div>
includes/settings-page/sp-delete-settings.php ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * @package Techotronic
4
+ * @subpackage jQuery Colorbox
5
+ *
6
+ * @since 4.1
7
+ * @author Arne Franken
8
+ *
9
+ * Delete Settings for settings page
10
+ */
11
+ ?>
12
+ <div id="poststuff">
13
+ <div id="jquery-colorbox-delete_settings" class="postbox">
14
+ <h3 id="delete_options"><?php _e('Delete Settings', JQUERYCOLORBOX_TEXTDOMAIN) ?></h3>
15
+
16
+ <div class="inside">
17
+ <p><?php _e('Check the box and click this button to delete settings of this plugin.', JQUERYCOLORBOX_TEXTDOMAIN); ?></p>
18
+
19
+ <form name="delete_settings" method="post" action="admin-post.php">
20
+ <?php if (function_exists('wp_nonce_field') === true) wp_nonce_field('jquery-delete_settings-form'); ?>
21
+ <p id="submitbutton">
22
+ <input type="hidden" name="action" value="jQueryColorboxDeleteSettings"/>
23
+ <input type="submit" name="jQueryColorboxDeleteSettings" value="<?php _e('Delete Settings', JQUERYCOLORBOX_TEXTDOMAIN); ?> &raquo;" class="button-secondary"/>
24
+ <input type="checkbox" name="delete_settings-true"/>
25
+ </p>
26
+ </form>
27
+ </div>
28
+ </div>
29
+ </div>
includes/settings-page/sp-donate-box.php ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * @package Techotronic
4
+ * @subpackage jQuery Colorbox
5
+ *
6
+ * @since 4.1
7
+ * @author Arne Franken
8
+ *
9
+ * Donate-Box for settings page
10
+ */
11
+ ?>
12
+ <div id="poststuff">
13
+ <div id="jquery-colorbox-donate" class="postbox">
14
+ <h3 id="donate"><?php _e('Donate', JQUERYCOLORBOX_TEXTDOMAIN) ?></h3>
15
+
16
+ <div class="inside">
17
+ <p>
18
+ <?php _e('If you would like to make a small (or large) contribution towards future development please consider making a donation.', JQUERYCOLORBOX_TEXTDOMAIN) ?>
19
+ </p>
20
+ <!-- <h5 id="donatePaypal">--><?php __('Donate using Paypal', JQUERYCOLORBOX_TEXTDOMAIN) ?><!--</h5>-->
21
+ <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
22
+ <input type="hidden" name="cmd" value="_xclick"/>
23
+ <input type="hidden" name="business" value="G75G3Z6PQWXXQ"/>
24
+ <input type="hidden" name="item_name" value="<?php _e('Techotronic Development Support', JQUERYCOLORBOX_TEXTDOMAIN); ?>"/>
25
+ <input type="hidden" name="item_number" value="<?php echo JQUERYCOLORBOX_NAME ?>"/>
26
+ <input type="hidden" name="no_shipping" value="0"/>
27
+ <input type="hidden" name="no_note" value="0"/>
28
+ <input type="hidden" name="cn" value="<?php _e("Please enter the URL you'd like me to link to in the donors lists", JQUERYCOLORBOX_TEXTDOMAIN); ?>."/>
29
+ <input type="hidden" name="return" value="<?php $this->getReturnLocation(); ?>"/>
30
+ <input type="hidden" name="cbt" value="<?php _e('Return to Your Dashboard', JQUERYCOLORBOX_TEXTDOMAIN); ?>"/>
31
+ <input type="hidden" name="currency_code" value="USD"/>
32
+ <input type="hidden" name="lc" value="US"/>
33
+ <input type="hidden" name="bn" value="PP-DonationsBF"/>
34
+ <label for="preset-amounts"><?php _e('Select Preset Amount', JQUERYCOLORBOX_TEXTDOMAIN); echo ": "; ?></label>
35
+ <select name="amount" id="preset-amounts">
36
+ <option value="10">10</option>
37
+ <option value="20" selected>20</option>
38
+ <option value="30">30</option>
39
+ <option value="40">40</option>
40
+ <option value="50">50</option>
41
+ <option value="100">100</option>
42
+ </select><span><?php _e('USD', JQUERYCOLORBOX_TEXTDOMAIN) ?></span>
43
+ <br/><br/><?php _e('Or', JQUERYCOLORBOX_TEXTDOMAIN); ?><br/><br/>
44
+ <label for="custom-amounts"><?php _e('Enter Custom Amount', JQUERYCOLORBOX_TEXTDOMAIN); echo ": "; ?></label>
45
+ <input type="text" name="amount" size="4" id="custom-amounts"/>
46
+ <span><?php _e('USD', JQUERYCOLORBOX_TEXTDOMAIN) ?></span>
47
+ <br/><br/>
48
+ <input type="submit" value="<?php _e('Submit', JQUERYCOLORBOX_TEXTDOMAIN) ?>" class="button-secondary"/>
49
+ </form>
50
+ </div>
51
+ </div>
52
+ </div>
includes/settings-page/sp-donations.php ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * @package Techotronic
4
+ * @subpackage jQuery Colorbox
5
+ *
6
+ * @since 4.1
7
+ * @author Arne Franken
8
+ *
9
+ * Donations for settings page
10
+ */
11
+ ?>
12
+ <div id="poststuff">
13
+ <div id="jquery-colorbox-topdonations" class="postbox">
14
+ <h3><?php _e('Top donations', JQUERYCOLORBOX_TEXTDOMAIN) ?></h3>
15
+
16
+ <div class="inside">
17
+ <div id="topdonations">
18
+ <div id="toploader" align="center"><img src="<?php echo JQUERYCOLORBOX_PLUGIN_URL ?>/images/ajax-loader.gif" alt="loading"/></div>
19
+ <div id="topdonationslist" style="display: none;"></div>
20
+ <div id="toperror" style="display: none;"><p><?php _e('Thank you for your donation.', JQUERYCOLORBOX_TEXTDOMAIN) ?></p></div>
21
+ </div>
22
+ </div>
23
+ </div>
24
+ </div>
25
+ <div id="poststuff">
26
+ <div id="jquery-colorbox-latestdonations" class="postbox">
27
+ <h3><?php _e('Latest donations', JQUERYCOLORBOX_TEXTDOMAIN) ?></h3>
28
+
29
+ <div class="inside">
30
+ <div id="latestdonations">
31
+ <div id="latestloader" align="center"><img src="<?php echo JQUERYCOLORBOX_PLUGIN_URL ?>/images/ajax-loader.gif" alt="loading"/></div>
32
+ <div id="latestdonationslist" style="display: none;"></div>
33
+ <div id="latesterror" style="display: none;"><p><?php _e('Thank you for your donation.', JQUERYCOLORBOX_TEXTDOMAIN) ?></p></div>
34
+ </div>
35
+ </div>
36
+ </div>
37
+ </div>
includes/settings-page/sp-footer.php ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * @package Techotronic
4
+ * @subpackage jQuery Colorbox
5
+ *
6
+ * @since 4.1
7
+ * @author Arne Franken
8
+ *
9
+ * Footer for settings page
10
+ */
11
+ ?>
12
+ <div class="clear">
13
+ <p>
14
+ <br/>&copy; Copyright 2009 - <?php echo date("Y"); ?> <a href="http://www.techotronic.de">Arne Franken</a>
15
+ </p>
16
+ </div>
includes/settings-page/sp-javascript-header.php ADDED
@@ -0,0 +1,113 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * @package Techotronic
4
+ * @subpackage jQuery Colorbox
5
+ *
6
+ * @since 4.1
7
+ * @author Arne Franken
8
+ *
9
+ * JavaScript for settings page
10
+ */
11
+ ?>
12
+ <script type="text/javascript">
13
+ //<![CDATA[
14
+ jQuery(document).ready(function($) {
15
+
16
+ //delete value from maxWidthValue if maxWidth radio button is selected
17
+ $("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[maxWidth]']").click(function() {
18
+ if ("jquery-colorbox-maxWidth-custom-radio" != $(this).attr("id"))
19
+ $("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[maxWidthValue]']").val("");
20
+ });
21
+
22
+ //set maxWidth radio button if cursor is set into maxWidthValue
23
+ $("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[maxWidthValue]']").focus(function() {
24
+ $("#jquery-colorbox-maxWidth-custom-radio").attr("checked", "checked");
25
+ });
26
+
27
+ //delete value from maxHeightValue if maxHeight radio button is selected
28
+ $("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[maxHeight]']").click(function() {
29
+ if ("jquery-colorbox-maxHeight-custom-radio" != $(this).attr("id"))
30
+ $("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[maxHeightValue]']").val("");
31
+ });
32
+ //set maxHeight radio button if cursor is set into maxHeightValue
33
+ $("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[maxHeightValue]']").focus(function() {
34
+ $("#jquery-colorbox-maxHeight-custom-radio").attr("checked", "checked");
35
+ });
36
+
37
+ //delete value from widthValue if width radio button is selected
38
+ $("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[width]']").click(function() {
39
+ if ("jquery-colorbox-width-custom-radio" != $(this).attr("id"))
40
+ $("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[widthValue]']").val("");
41
+ });
42
+ //set width radio button if cursor is set into widthValue
43
+ $("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[widthValue]']").focus(function() {
44
+ $("#jquery-colorbox-width-custom-radio").attr("checked", "checked");
45
+ });
46
+
47
+ //delete value from heightValue if height radio button is selected
48
+ $("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[height]']").click(function() {
49
+ if ("jquery-colorbox-height-custom-radio" != $(this).attr("id"))
50
+ $("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[heightValue]']").val("");
51
+ });
52
+ //set height radio button if cursor is set into heightValue
53
+ $("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[heightValue]']").focus(function() {
54
+ $("#jquery-colorbox-height-custom-radio").attr("checked", "checked");
55
+ });
56
+
57
+ //delete value from widthValue if width radio button is selected
58
+ $("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[linkWidth]']").click(function() {
59
+ if ("jquery-colorbox-link-width-custom-radio" != $(this).attr("id"))
60
+ $("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[linkWidthValue]']").val("");
61
+ });
62
+ //set width radio button if cursor is set into widthValue
63
+ $("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[linkWidthValue]']").focus(function() {
64
+ $("#jquery-colorbox-link-width-custom-radio").attr("checked", "checked");
65
+ });
66
+
67
+ //delete value from heightValue if height radio button is selected
68
+ $("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[linkHeight]']").click(function() {
69
+ if ("jquery-colorbox-link-height-custom-radio" != $(this).attr("id"))
70
+ $("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[linkHeightValue]']").val("");
71
+ });
72
+ //set height radio button if cursor is set into heightValue
73
+ $("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[linkHeightValue]']").focus(function() {
74
+ $("#jquery-colorbox-link-height-custom-radio").attr("checked", "checked");
75
+ });
76
+
77
+ //only one of the checkboxes is allowed to be selected.
78
+ $("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[autoColorbox]']").click(function() {
79
+ if ($("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[autoColorbox]']").is(':checked')) {
80
+ $("#jquery-colorbox-autoColorboxGalleries").attr("checked", false);
81
+ }
82
+ });
83
+ $("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[autoColorboxGalleries]']").click(function() {
84
+ if ($("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[autoColorboxGalleries]']").is(':checked')) {
85
+ $("#jquery-colorbox-autoColorbox").attr("checked", false);
86
+ }
87
+ });
88
+
89
+ //deactivate warning if auto Colorbox is activated
90
+ $("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[autoColorbox]']").click(function() {
91
+ if ($("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[autoColorbox]']").is(':checked')) {
92
+ $("#jquery-colorbox-colorboxWarningOff").attr("checked", true);
93
+ }
94
+ });
95
+
96
+ //activate warning if auto Colorbox is deactivated
97
+ $("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[autoColorbox]']").click(function() {
98
+ if (!$("input[name='<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[autoColorbox]']").is(':checked')) {
99
+ $("#jquery-colorbox-colorboxWarningOff").attr("checked", false);
100
+ }
101
+ });
102
+
103
+ //change screenshot if new theme is selected
104
+ $("#jquery-colorbox-theme").change(function() {
105
+ var src = $("option:selected", this).val().match(/\d+$/i);
106
+ if (src != "") {
107
+ var $imgTag = "<img src=\"" + "<?php echo JQUERYCOLORBOX_PLUGIN_URL; echo '/screenshot-'; ?>" + src + ".jpg\" />";
108
+ $("#jquery-colorbox-theme_screenshot_image").empty().html($imgTag).fadeIn();
109
+ }
110
+ });
111
+ });
112
+ //]]>
113
+ </script>
includes/settings-page/sp-left-column.php ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * @package Techotronic
4
+ * @subpackage jQuery Colorbox
5
+ *
6
+ * @since 4.1
7
+ * @author Arne Franken
8
+ *
9
+ * Left column for settings page
10
+ */
11
+ ?>
12
+ <div class="postbox-container" style="width: 69%;">
13
+ <form name="jquery-colorbox-settings-update" method="post" action="admin-post.php">
14
+ <?php if (function_exists('wp_nonce_field') === true) wp_nonce_field('jquery-colorbox-settings-form'); ?>
15
+ <div id="poststuff">
16
+ <?php
17
+ require_once 'sp-plugin-settings.php';
18
+ require_once 'sp-colorbox-settings.php';
19
+ ?>
20
+ </div>
21
+ </form>
22
+ <?php
23
+ require_once 'sp-delete-settings.php';
24
+ ?>
25
+ </div>
includes/settings-page/sp-plugin-settings.php ADDED
@@ -0,0 +1,110 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * @package Techotronic
4
+ * @subpackage jQuery Colorbox
5
+ *
6
+ * @since 4.1
7
+ * @author Arne Franken
8
+ *
9
+ * Plugin Settings for settings page
10
+ */
11
+ ?>
12
+ <div id="jquery-colorbox-settings" class="postbox">
13
+ <h3 id="plugin-settings"><?php _e('Plugin settings', JQUERYCOLORBOX_TEXTDOMAIN); ?></h3>
14
+
15
+ <div class="inside">
16
+
17
+ <table class="form-table">
18
+ <tr>
19
+ <th scope="row">
20
+ <label for="jquery-colorbox-autoColorbox"><?php printf(__('Automate %1$s for all images in pages, posts and galleries', JQUERYCOLORBOX_TEXTDOMAIN), JQUERYCOLORBOX_NAME); ?>:</label>
21
+ </th>
22
+ <td>
23
+ <input type="checkbox" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[autoColorbox]" id="jquery-colorbox-autoColorbox" value="true" <?php echo ($this->colorboxSettings['autoColorbox'])
24
+ ? 'checked="checked"' : '';?>/>
25
+ <br/><?php _e('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.', JQUERYCOLORBOX_TEXTDOMAIN); ?>
26
+ </td>
27
+ </tr>
28
+ <tr>
29
+ <th scope="row">
30
+ <label for="jquery-colorbox-autoColorboxGalleries"><?php printf(__('Automate %1$s for images in WordPress galleries only', JQUERYCOLORBOX_TEXTDOMAIN), JQUERYCOLORBOX_NAME); ?>:</label>
31
+ </th>
32
+ <td>
33
+ <input type="checkbox" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[autoColorboxGalleries]" id="jquery-colorbox-autoColorboxGalleries" value="true" <?php echo ($this->colorboxSettings['autoColorboxGalleries'])
34
+ ? 'checked="checked"' : '';?>/>
35
+ <br/><?php _e('Automatically add colorbox-class to images in WordPress galleries, but nowhere else. Images in one page or post are grouped automatically.', JQUERYCOLORBOX_TEXTDOMAIN); ?>
36
+ </td>
37
+ </tr>
38
+ <tr>
39
+ <th scope="row">
40
+ <label for="jquery-colorbox-autoColorboxJavaScript"><?php printf(__('Automate %1$s for all other images', JQUERYCOLORBOX_TEXTDOMAIN), JQUERYCOLORBOX_NAME); ?>:</label>
41
+ </th>
42
+ <td>
43
+ <input type="checkbox" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[autoColorboxJavaScript]" id="jquery-colorbox-autoColorboxJavaScript" value="true" <?php echo ($this->colorboxSettings['autoColorboxJavaScript'])
44
+ ? 'checked="checked"' : '';?>/>
45
+ <br/><?php _e('Automatically add colorbox-class to all images that are not in posts and pages (e.g. the sidebar).', JQUERYCOLORBOX_TEXTDOMAIN); ?>
46
+ </td>
47
+ </tr>
48
+ <!-- <tr>-->
49
+ <!-- <th scope="row">-->
50
+ <!-- <label for="jquery-colorbox-colorboxAddClassToLinks">--><?php __('Automate %1$s for all text links to images', JQUERYCOLORBOX_TEXTDOMAIN) //printf(__('Automate %1$s for all text links to images', JQUERYCOLORBOX_TEXTDOMAIN), JQUERYCOLORBOX_NAME); ?><!--:</label>-->
51
+ <!-- </th>-->
52
+ <!-- <td>-->
53
+ <!-- <input type="checkbox" name="--><?php //echo JQUERYCOLORBOX_SETTINGSNAME ?><!--[colorboxAddClassToLinks]" id="jquery-colorbox-colorboxAddClassToLinks" value="true" --><?php //echo ($this->colorboxSettings['colorboxAddClassToLinks']) ? 'checked="checked"' : '';?><!--/>-->
54
+ <!-- <br/>--><?php __('Automatically add colorbox-link-class to all links that point to images.', JQUERYCOLORBOX_TEXTDOMAIN); //_e('Automatically add colorbox-link-class to all links that point to images.', JQUERYCOLORBOX_TEXTDOMAIN); ?>
55
+ <!-- </td>-->
56
+ <!-- </tr>-->
57
+ <tr>
58
+ <th scope="row">
59
+ <label for="jquery-colorbox-autoHideFlash"><?php _e('Automate hiding of flash objects', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
60
+ </th>
61
+ <td>
62
+ <input type="checkbox" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[autoHideFlash]" id="jquery-colorbox-autoHideFlash" value="true" <?php echo ($this->colorboxSettings['autoHideFlash'])
63
+ ? 'checked="checked"' : '';?>/>
64
+ <br/><?php _e('Automatically hide embeded flash objects behind the Colorbox layer.', JQUERYCOLORBOX_TEXTDOMAIN); ?>
65
+ </td>
66
+ </tr>
67
+ <!--tr>
68
+ <th scope="row">
69
+ <label for="jquery-colorbox-javascriptInFooter"><?php __('Add JavaScript to footer', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
70
+ </th>
71
+ <td>
72
+ <input type="checkbox" name="<?php //echo JQUERYCOLORBOX_SETTINGSNAME ?>[javascriptInFooter]" id="jquery-colorbox-javascriptInFooter" value="true" <?php //echo ($this->colorboxSettings['javascriptInFooter']) ? 'checked="checked"' : '';?>/>
73
+ <br/><?php __('Add JavaScript to footer instead of the header.', JQUERYCOLORBOX_TEXTDOMAIN); ?>
74
+ </td>
75
+ </tr-->
76
+ <!--tr>
77
+ <th scope="row">
78
+ <label for="jquery-colorbox-removeLinkFromMetaBox"><?php __('Remove link from Meta-box', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
79
+ </th>
80
+ <td>
81
+ <input type="checkbox" name="<?php //echo JQUERYCOLORBOX_SETTINGSNAME ?>[removeLinkFromMetaBox]" id="jquery-colorbox-removeLinkFromMetaBox" value="true" <?php //echo ($this->colorboxSettings['removeLinkFromMetaBox']) ? 'checked="checked"' : '';?>/>
82
+ <br/><?php __('Remove the link to the developers site from the WordPress meta-box.', JQUERYCOLORBOX_TEXTDOMAIN); ?>
83
+ </td>
84
+ </tr-->
85
+ <!--tr>
86
+ <th scope="row">
87
+ <label for="jquery-colorbox-debugMode"><?php __('Activate debug mode', JQUERYCOLORBOX_TEXTDOMAIN); ?>:</label>
88
+ </th>
89
+ <td>
90
+ <input type="checkbox" name="<?php //echo JQUERYCOLORBOX_SETTINGSNAME ?>[debugMode]" id="jquery-colorbox-debugMode" value="true" <?php //echo ($this->colorboxSettings['debugMode']) ? 'checked="checked"' : '';?>/>
91
+ <br/><?php __('Adds debug information and non-minified JavaScript to the page. Useful for troubleshooting.', JQUERYCOLORBOX_TEXTDOMAIN); ?>
92
+ </td>
93
+ </tr-->
94
+ <tr>
95
+ <th scope="row">
96
+ <label for="jquery-colorbox-colorboxWarningOff"><?php printf(__('Disable warning', JQUERYCOLORBOX_TEXTDOMAIN), JQUERYCOLORBOX_NAME); ?>:</label>
97
+ </th>
98
+ <td>
99
+ <input type="checkbox" name="<?php echo JQUERYCOLORBOX_SETTINGSNAME ?>[colorboxWarningOff]" id="jquery-colorbox-colorboxWarningOff" value="true" <?php echo ($this->colorboxSettings['colorboxWarningOff'])
100
+ ? 'checked="checked"' : '';?>/>
101
+ <br/><?php _e('Disables the warning that is displayed if the plugin is activated but the auto-colorbox feature for all images is turned off.', JQUERYCOLORBOX_TEXTDOMAIN); ?>
102
+ </td>
103
+ </tr>
104
+ </table>
105
+ <p class="submit">
106
+ <input type="hidden" name="action" value="jQueryColorboxUpdateSettings"/>
107
+ <input type="submit" name="jQueryColorboxUpdateSettings" class="button-primary" value="<?php _e('Save Changes') ?>"/>
108
+ </p>
109
+ </div>
110
+ </div>
includes/settings-page/sp-right-column.php ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * @package Techotronic
4
+ * @subpackage jQuery Colorbox
5
+ *
6
+ * @since 4.1
7
+ * @author Arne Franken
8
+ *
9
+ * Right column for settings page
10
+ */
11
+ ?>
12
+ <div class="postbox-container" style="width: 29%;">
13
+ <?php
14
+ require_once 'sp-donations.php';
15
+ require_once 'sp-donate-box.php';
16
+ require_once 'sp-translation.php';
17
+ ?>
18
+ </div>
includes/settings-page/sp-translation.php ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * @package Techotronic
4
+ * @subpackage jQuery Colorbox
5
+ *
6
+ * @since 4.1
7
+ * @author Arne Franken
8
+ *
9
+ * Translation for settings page
10
+ */
11
+ ?>
12
+ <div id="poststuff">
13
+ <div id="jquery-colorbox-translation" class="postbox">
14
+ <h3 id="translation"><?php _e('Translation', JQUERYCOLORBOX_TEXTDOMAIN) ?></h3>
15
+
16
+ <div class="inside">
17
+ <p><?php _e('The english translation was done by <a href="http://www.techotronic.de">Arne Franken</a>.', JQUERYCOLORBOX_TEXTDOMAIN); ?></p>
18
+ </div>
19
+ </div>
20
+ </div>
jquery-colorbox.php CHANGED
@@ -6,7 +6,7 @@
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: 4.0
10
  * Author: Arne Franken
11
  * Author URI: http://www.techotronic.de/
12
  * License: GPL
@@ -19,691 +19,277 @@
19
  ?>
20
  <?php
21
  //define constants
22
- define('JQUERYCOLORBOX_VERSION', '4.0');
23
- define('COLORBOXLIBRARY_VERSION', '1.3.16');
24
 
25
  if (!defined('JQUERYCOLORBOX_PLUGIN_BASENAME')) {
26
- define('JQUERYCOLORBOX_PLUGIN_BASENAME', plugin_basename(__FILE__));
 
27
  }
28
  if (!defined('JQUERYCOLORBOX_PLUGIN_NAME')) {
29
- define('JQUERYCOLORBOX_PLUGIN_NAME', trim(dirname(JQUERYCOLORBOX_PLUGIN_BASENAME), '/'));
 
30
  }
31
  if (!defined('JQUERYCOLORBOX_NAME')) {
32
- define('JQUERYCOLORBOX_NAME', 'jQuery Colorbox');
33
  }
34
  if (!defined('JQUERYCOLORBOX_TEXTDOMAIN')) {
35
- define('JQUERYCOLORBOX_TEXTDOMAIN', 'jquery-colorbox');
36
  }
37
  if (!defined('JQUERYCOLORBOX_PLUGIN_DIR')) {
38
- define('JQUERYCOLORBOX_PLUGIN_DIR', dirname(__FILE__));
 
39
  }
40
  if (!defined('JQUERYCOLORBOX_PLUGIN_URL')) {
41
- define('JQUERYCOLORBOX_PLUGIN_URL', WP_PLUGIN_URL . '/' . JQUERYCOLORBOX_PLUGIN_NAME);
42
- }
43
- if (!defined('JQUERYCOLORBOX_PLUGIN_URL')) {
44
- define('JQUERYCOLORBOX_PLUGIN_URL', WP_PLUGIN_URL . '/' . JQUERYCOLORBOX_PLUGIN_NAME);
45
- }
46
- if (!defined('JQUERYCOLORBOX_PLUGIN_LOCALIZATION_DIR')) {
47
- define('JQUERYCOLORBOX_PLUGIN_LOCALIZATION_DIR', JQUERYCOLORBOX_PLUGIN_DIR . '/localization');
48
  }
49
  if (!defined('JQUERYCOLORBOX_SETTINGSNAME')) {
50
- define('JQUERYCOLORBOX_SETTINGSNAME', 'jquery-colorbox_settings');
51
- }
52
- if (!defined('JQUERYCOLORBOX_LATESTDONATEURL')) {
53
- define('JQUERYCOLORBOX_LATESTDONATEURL', 'http://colorbox.techotronic.de/latest-donations.php');
54
  }
55
- if (!defined('JQUERYCOLORBOX_TOPDONATEURL')) {
56
- define('JQUERYCOLORBOX_TOPDONATEURL', 'http://colorbox.techotronic.de/top-donations.php');
57
  }
58
 
59
- class jQueryColorbox {
60
-
61
- var $colorboxThemes = array();
62
-
63
- var $colorboxUnits = array();
64
-
65
- var $colorboxSettings = array();
66
-
67
- var $colorboxDefaultSettings = array();
68
-
69
- /**
70
- * Plugin initialization
71
- *
72
- * @since 1.0
73
- * @access public
74
- * @author Arne Franken
75
- */
76
- //public function jQueryColorbox() {
77
- function jQueryColorbox() {
78
- if (!function_exists('plugins_url')) {
79
- return;
80
- }
81
-
82
- load_plugin_textdomain(JQUERYCOLORBOX_TEXTDOMAIN, false, '/jquery-colorbox/localization/');
83
-
84
- add_action('wp_head', array(& $this, 'buildWordpressHeader'));
85
- add_action('admin_post_jQueryColorboxDeleteSettings', array(& $this, 'jQueryColorboxDeleteSettings'));
86
- add_action('admin_post_jQueryColorboxUpdateSettings', array(& $this, 'jQueryColorboxUpdateSettings'));
87
- // add options page
88
- add_action('admin_menu', array(& $this, 'registerAdminMenu'));
89
- add_action('admin_notices', array(& $this, 'registerAdminWarning'));
90
- //register method for uninstall
91
- if (function_exists('register_uninstall_hook')) {
92
- register_uninstall_hook(__FILE__, array('jQueryColorbox', 'deleteSettingsFromDatabase'));
93
- }
94
-
95
- // Create the settings array by merging the user's settings and the defaults
96
- $usersettings = (array) get_option(JQUERYCOLORBOX_SETTINGSNAME);
97
- $defaultArray = $this->jQueryColorboxDefaultSettings();
98
- $this->colorboxSettings = wp_parse_args($usersettings, $defaultArray);
99
-
100
- //only add link to meta box
101
- if(isset($this->colorboxSettings['removeLinkFromMetaBox']) && !$this->colorboxSettings['removeLinkFromMetaBox']){
102
- add_action('wp_meta',array(& $this, 'renderMetaLink'));
103
- }
104
-
105
- if(isset($this->colorboxSettings['autoColorbox']) && $this->colorboxSettings['autoColorbox']){
106
- //write "colorbox-postID" to "img"-tags class attribute.
107
- //Priority = 100, hopefully the preg_replace is then executed after other plugins messed with the_content
108
- add_filter('the_content', array(& $this, 'addColorboxGroupIdToImages'), 100);
109
- add_filter('the_excerpt', array(& $this, 'addColorboxGroupIdToImages'), 100);
110
- }
111
- if(isset($this->colorboxSettings['autoColorboxGalleries']) && $this->colorboxSettings['autoColorboxGalleries']) {
112
- add_filter('wp_get_attachment_image_attributes', array(& $this, 'wpPostThumbnailClassFilter'));
113
- }
114
-
115
- //add style selector dropdown to TinyMCE
116
- add_filter('mce_buttons_2', array(& $this, 'addStyleSelectorBox'), 100);
117
- //add Colorbox CSS class to TinyMCE dropdown box
118
- add_filter('tiny_mce_before_init', array(& $this, 'addColorboxLinkClass'), 100);
119
-
120
- // Create list of themes and their human readable names
121
- $this->colorboxThemes = array(
122
- 'theme1' => __('Theme #1', JQUERYCOLORBOX_TEXTDOMAIN),
123
- 'theme2' => __('Theme #2', JQUERYCOLORBOX_TEXTDOMAIN),
124
- 'theme3' => __('Theme #3', JQUERYCOLORBOX_TEXTDOMAIN),
125
- 'theme4' => __('Theme #4', JQUERYCOLORBOX_TEXTDOMAIN),
126
- 'theme5' => __('Theme #5', JQUERYCOLORBOX_TEXTDOMAIN),
127
- 'theme6' => __('Theme #6', JQUERYCOLORBOX_TEXTDOMAIN),
128
- 'theme7' => __('Theme #7', JQUERYCOLORBOX_TEXTDOMAIN),
129
- 'theme8' => __('Theme #8', JQUERYCOLORBOX_TEXTDOMAIN),
130
- 'theme9' => __('Theme #9', JQUERYCOLORBOX_TEXTDOMAIN),
131
- 'theme10' => __('Theme #10', JQUERYCOLORBOX_TEXTDOMAIN),
132
- 'theme11' => __('Theme #11', JQUERYCOLORBOX_TEXTDOMAIN)
133
- );
134
-
135
- // $this->colorboxThemes = array_merge($this->getThemeDirs(),$this->colorboxThemes);
136
-
137
- $dummyThemeNumberArray = array(
138
- __('Theme #12', JQUERYCOLORBOX_TEXTDOMAIN),
139
- __('Theme #13', JQUERYCOLORBOX_TEXTDOMAIN),
140
- __('Theme #14', JQUERYCOLORBOX_TEXTDOMAIN),
141
- __('Theme #15', JQUERYCOLORBOX_TEXTDOMAIN)
142
- );
143
-
144
- // create list of units
145
- $this->colorboxUnits = array(
146
- '%' => __('percent', JQUERYCOLORBOX_TEXTDOMAIN),
147
- 'px' => __('pixels', JQUERYCOLORBOX_TEXTDOMAIN)
148
- );
149
-
150
- // create list of units
151
- $this->colorboxTransitions = array(
152
- 'elastic' => __('elastic', JQUERYCOLORBOX_TEXTDOMAIN),
153
- 'fade' => __('fade', JQUERYCOLORBOX_TEXTDOMAIN),
154
- 'none' => __('none', JQUERYCOLORBOX_TEXTDOMAIN)
155
- );
156
-
157
- if (!is_admin()) {
158
- // enqueue JavaScript and CSS files in wordpress
159
- wp_enqueue_script('jquery');
160
- wp_register_style('colorbox-' . $this->colorboxSettings['colorboxTheme'], plugins_url('themes/' . $this->colorboxSettings['colorboxTheme'] . '/colorbox.css', __FILE__), array(), JQUERYCOLORBOX_VERSION, 'screen');
161
- wp_enqueue_style('colorbox-' . $this->colorboxSettings['colorboxTheme']);
162
- if($this->colorboxSettings['debugMode']) {
163
- $jqueryColorboxJavaScriptName = "js/jquery.colorbox.js";
164
- }
165
- else {
166
- $jqueryColorboxJavaScriptName = "js/jquery.colorbox-min.js";
167
- }
168
- wp_enqueue_script('colorbox', plugins_url($jqueryColorboxJavaScriptName, __FILE__), array('jquery'), COLORBOXLIBRARY_VERSION, $this->colorboxSettings['javascriptInFooter']);
169
- // if($this->colorboxSettings['draggable']) {
170
- // ?!?wp_enqueue_script('jquery-ui-draggable');
171
- // wp_enqueue_script('colorbox-draggable', plugins_url('js/jquery-colorbox-draggable.js', __FILE__), array('jquery-ui-draggable'), JQUERYCOLORBOX_VERSION, $this->colorboxSettings['javascriptInFooter']);
172
- // }
173
- if ($this->colorboxSettings['autoColorbox']) {
174
- // if ($this->colorboxSettings['autoColorboxJavaScript']) {
175
- if($this->colorboxSettings['debugMode']) {
176
- $jqueryColorboxAutoJavaScriptName = "js/jquery-colorbox-auto.js";
177
- }
178
- else {
179
- $jqueryColorboxAutoJavaScriptName = "js/jquery-colorbox-auto-min.js";
180
- }
181
- wp_enqueue_script('colorbox-auto', plugins_url($jqueryColorboxAutoJavaScriptName, __FILE__), array('colorbox'), JQUERYCOLORBOX_VERSION, $this->colorboxSettings['javascriptInFooter']);
182
- }
183
- if ($this->colorboxSettings['autoHideFlash']) {
184
- if($this->colorboxSettings['debugMode']) {
185
- $jqueryColorboxFlashJavaScriptName = "js/jquery-colorbox-hideFlash.js";
186
- }
187
- else {
188
- $jqueryColorboxFlashJavaScriptName = "js/jquery-colorbox-hideFlash-min.js";
189
- }
190
- wp_enqueue_script('colorbox-hideflash', plugins_url($jqueryColorboxFlashJavaScriptName, __FILE__), array('colorbox'), JQUERYCOLORBOX_VERSION, $this->colorboxSettings['javascriptInFooter']);
191
- }
192
- }
193
- }
194
-
195
- // jQueryColorbox()
196
-
197
- /**
198
- * Renders plugin link in Meta widget
199
- *
200
- * @since 3.3
201
- * @access public
202
- * @author Arne Franken
203
- */
204
- //public function renderMetaLink() {
205
- function renderMetaLink() { ?>
206
- <li id="colorboxLink"><?php _e('Using',JQUERYCOLORBOX_TEXTDOMAIN);?> <a href="http://www.techotronic.de/plugins/jquery-colorbox/" target="_blank" title="<?php echo JQUERYCOLORBOX_NAME ?>"><?php echo JQUERYCOLORBOX_NAME ?></a></li>
207
- <?php }
208
-
209
- // renderMetaLink()
210
-
211
- /**
212
- * Add Colorbox group Id to images.
213
- * function is called for every page or post rendering.
214
- *
215
- * ugly way to make the images Colorbox-ready by adding the necessary CSS class.
216
- * unfortunately, Wordpress does not offer a convenient way to get certain elements from the_content,
217
- * so I had to do this by regexp replacement...
218
- *
219
- * @since 1.0
220
- * @access public
221
- * @author Arne Franken
222
- *
223
- * @param $content
224
- * @return replaced content or excerpt
225
- */
226
- //public function addColorboxGroupIdToImages($content) {
227
- function addColorboxGroupIdToImages($content) {
228
- global
229
- $post;
230
- // match all img tags with this pattern
231
- $imgPattern = "/<img([^\>]*?)>/i";
232
- if (preg_match_all($imgPattern, $content, $imgTags)) {
233
- foreach ($imgTags[0] as $imgTag) {
234
- // only work on imgTags that do not already contain the String "colorbox-"
235
- if(!preg_match('/colorbox-/i', $imgTag)){
236
- if (!preg_match('/class/i', $imgTag)) {
237
- // imgTag does not contain class-attribute
238
- $pattern = $imgPattern;
239
- $replacement = '<img class="colorbox-' . $post->ID . '" $1>';
240
- }
241
- else {
242
- // imgTag already contains class-attribute
243
- $pattern = "/<img(.*?)class=('|\")([A-Za-z0-9 \/_\.\~\:-]*?)('|\")([^\>]*?)>/i";
244
- $replacement = '<img$1class=$2$3 colorbox-' . $post->ID . '$4$5>';
245
- }
246
- $replacedImgTag = preg_replace($pattern, $replacement, $imgTag);
247
- $content = str_replace($imgTag, $replacedImgTag, $content);
248
- }
249
- }
250
- }
251
- return $content;
252
- }
253
-
254
- // addColorboxGroupIdToImages()
255
-
256
- /**
257
- * Add colorbox-CSS-Class to WP Galleries
258
- *
259
- * If wp_get_attachment_image() is called, filters registered for the_content are not applied on the img-tag.
260
- * So we'll need to manipulate the class attribute separately.
261
- *
262
- * @since 2.0
263
- * @access public
264
- * @author Arne Franken
265
- *
266
- * @param $attribute class attribute of the attachment link
267
- * @return repaced attributes
268
- */
269
- //public function wpPostThumbnailClassFilter($attribute) {
270
- function wpPostThumbnailClassFilter($attribute) {
271
- global $post;
272
- $attribute['class'] .= ' colorbox-' . $post->ID . ' ';
273
- return $attribute;
274
- }
275
-
276
- // wpPostThumbnailClassFilter()
277
-
278
- /**
279
- * Register the settings page in wordpress
280
- *
281
- * @since 1.0
282
- * @access private
283
- * @author Arne Franken
284
- */
285
- //private function registerSettingsPage() {
286
- function registerSettingsPage() {
287
- if (current_user_can('manage_options')) {
288
- add_filter('plugin_action_links_' . JQUERYCOLORBOX_PLUGIN_BASENAME, array(& $this, 'addPluginActionLinks'));
289
- add_options_page(JQUERYCOLORBOX_NAME, JQUERYCOLORBOX_NAME, 'manage_options', JQUERYCOLORBOX_PLUGIN_BASENAME, array(& $this, 'renderSettingsPage'));
290
- }
291
- }
292
-
293
- //registerSettingsPage()
294
-
295
- /**
296
- * Add settings link to plugin management page
297
- *
298
- * @since 1.0
299
- * @access public
300
- * @author Arne Franken
301
- *
302
- * @param original action_links
303
- * @return action_links with link to settings page
304
- */
305
- //public function addPluginActionLinks($action_links) {
306
- function addPluginActionLinks($action_links) {
307
- $settings_link = '<a href="options-general.php?page=' . JQUERYCOLORBOX_PLUGIN_BASENAME . '">' . __('Settings', JQUERYCOLORBOX_TEXTDOMAIN) . '</a>';
308
- array_unshift($action_links, $settings_link);
309
-
310
- return $action_links;
311
- }
312
-
313
- //addPluginActionLinks()
314
-
315
- /**
316
- * Insert JavaScript and CSS for Colorbox into WP Header
317
- *
318
- * @since 1.0
319
- * @access public
320
- * @author Arne Franken
321
- *
322
- * @return wordpress header insert
323
- */
324
- //public function buildWordpressHeader() {
325
- function buildWordpressHeader() {
326
- ?>
327
- <!-- <?php echo JQUERYCOLORBOX_NAME ?> <?php echo JQUERYCOLORBOX_VERSION ?> | by Arne Franken, http://www.techotronic.de/ -->
328
- <?php
329
- // include CSS fixes for IE for certain themes
330
- // preg_match('/\d+$/i',$this->colorboxSettings['colorboxTheme'],$themeNumbers);
331
- // if(in_array($themeNumbers[0],array(1,4,6,7,9,11))){
332
- // require_once 'includes/iefix-theme'.$themeNumbers[0].'.php';
333
- // }
334
- // include Colorbox Javascript
335
- require_once 'includes/colorbox-javascript.php';
336
- require_once 'includes/colorbox-javascript-loader.php';
337
- ?>
338
- <!-- <?php echo JQUERYCOLORBOX_NAME ?> <?php echo JQUERYCOLORBOX_VERSION ?> | by Arne Franken, http://www.techotronic.de/ -->
339
- <?php
340
-
341
- }
342
-
343
- //buildWordpressHeader()
344
-
345
- /**
346
- * Render Settings page
347
- *
348
- * @since 1.0
349
- * @access public
350
- * @author Arne Franken
351
- */
352
- //public function renderSettingsPage() {
353
- function renderSettingsPage() {
354
- require_once 'includes/settings-page.php';
355
- }
356
-
357
- //renderSettingsPage()
358
-
359
- /**
360
- * Registers the Settings Page in the Admin Menu
361
- *
362
- * @since 1.3.3
363
- * @access public
364
- * @author Arne Franken
365
- */
366
- //public function registerAdminMenu() {
367
- function registerAdminMenu() {
368
- if (function_exists('add_management_page') && current_user_can('manage_options')) {
369
-
370
- // update, uninstall message
371
- if (strpos($_SERVER['REQUEST_URI'], 'jquery-colorbox.php') && isset($_GET['jQueryColorboxUpdateSettings'])) {
372
- $return_message = sprintf(__('Successfully updated %1$s settings.', JQUERYCOLORBOX_TEXTDOMAIN), JQUERYCOLORBOX_NAME);
373
- } elseif (strpos($_SERVER['REQUEST_URI'], 'jquery-colorbox.php') && isset($_GET['jQueryColorboxDeleteSettings'])) {
374
- $return_message = sprintf(__('%1$s settings were successfully deleted.', JQUERYCOLORBOX_TEXTDOMAIN), JQUERYCOLORBOX_NAME);
375
- } else {
376
- $return_message = '';
377
- }
378
- }
379
- $this->registerAdminNotice($return_message);
380
-
381
- $this->registerSettingsPage();
382
- }
383
-
384
- // registerAdminMenu()
385
-
386
- /**
387
- * Registers Admin Notices
388
- *
389
- * @since 2.0
390
- * @access private
391
- * @author Arne Franken
392
- */
393
- //private function registerAdminNotice($notice) {
394
- function registerAdminNotice($notice) {
395
- if ($notice != '') {
396
- $message = '<div class="updated fade"><p>' . $notice . '</p></div>';
397
- add_action('admin_notices', create_function('', "echo '$message';"));
398
- }
399
- }
400
-
401
- // registerAdminNotice()
402
-
403
- /**
404
- * Registers the warning for admins
405
- *
406
- * @since 2.5
407
- * @access public
408
- * @author Arne Franken
409
- */
410
- //public function registerAdminWarning() {
411
- function registerAdminWarning() {
412
- if ($this->colorboxSettings['colorboxWarningOff'] || $this->colorboxSettings['autoColorbox']) {
413
- return;
414
- }
415
- ?>
416
-
417
- <div class="updated" style="background-color:#f66;">
418
- <p>
419
- <a href="options-general.php?page=<?php echo JQUERYCOLORBOX_PLUGIN_BASENAME ?>"><?php echo JQUERYCOLORBOX_NAME ?></a> <?php _e('needs attention: the plugin is not activated to work for all images.', JQUERYCOLORBOX_TEXTDOMAIN)?>
420
- </p>
421
- </div>
422
- <?php
423
- }
424
-
425
- // registerAdminWarning()
426
-
427
- /**
428
- * Default array of jQuery Colorbox settings
429
- *
430
- * @since 2.0
431
- * @access private
432
- * @author Arne Franken
433
- */
434
- //private function jQueryColorboxDefaultSettings() {
435
- function jQueryColorboxDefaultSettings() {
436
-
437
- // Create and return array of default settings
438
- return array(
439
- 'jQueryColorboxVersion' => JQUERYCOLORBOX_VERSION,
440
- 'colorboxTheme' => 'theme1',
441
- 'maxWidth' => 'false',
442
- 'maxWidthValue' => '',
443
- 'maxWidthUnit' => '%',
444
- 'maxHeight' => 'false',
445
- 'maxHeightValue' => '',
446
- 'maxHeightUnit' => '%',
447
- 'height' => 'false',
448
- 'heightValue' => '',
449
- 'heightUnit' => '%',
450
- 'width' => 'false',
451
- 'widthValue' => '',
452
- 'widthUnit' => '%',
453
- 'linkHeight' => 'false',
454
- 'linkHeightValue' => '',
455
- 'linkHeightUnit' => '%',
456
- 'linkWidth' => 'false',
457
- 'linkWidthValue' => '',
458
- 'linkWidthUnit' => '%',
459
- 'initialWidth' => '300',
460
- 'initialHeight' => '100',
461
- 'autoColorbox' => false,
462
- 'autoColorboxGalleries' => false,
463
- 'slideshow' => false,
464
- 'slideshowAuto' => false,
465
- 'scalePhotos' => false,
466
- 'displayScrollbar' => false,
467
- 'draggable' => false,
468
- 'slideshowSpeed' => '2500',
469
- 'opacity' => '0.85',
470
- 'preloading' => false,
471
- 'transition' => 'elastic',
472
- 'speed' => '350',
473
- 'overlayClose' => false,
474
- 'disableLoop' => false,
475
- 'disableKeys' => false,
476
- 'autoHideFlash' => false,
477
- 'colorboxWarningOff' => false,
478
- 'colorboxMetaLinkOff' => false,
479
- 'javascriptInFooter' => false,
480
- 'debugMode' => false,
481
- 'autoColorboxJavaScript' => false,
482
- 'removeLinkFromMetaBox' => false
483
- );
484
  }
485
 
486
- // jQueryColorboxDefaultSettings()
487
-
488
- /**
489
- * Update jQuery Colorbox settings wrapper
490
- *
491
- * handles checks and redirect
492
- *
493
- * @since 1.3.3
494
- * @access public
495
- * @author Arne Franken
496
- */
497
- //public function jQueryColorboxUpdateSettings() {
498
- function jQueryColorboxUpdateSettings() {
499
-
500
- if (!current_user_can('manage_options'))
501
- wp_die(__('Did not update settings, you do not have the necessary rights.', JQUERYCOLORBOX_TEXTDOMAIN));
502
 
503
- //cross check the given referer for nonce set in settings form
504
- check_admin_referer('jquery-colorbox-settings-form');
505
- //get settings from plugins admin page
506
- $this->colorboxSettings = $_POST[JQUERYCOLORBOX_SETTINGSNAME];
507
- //have to add jQueryColorboxVersion here because it is not included in the HTML form
508
- $this->colorboxSettings['jQueryColorboxVersion'] = JQUERYCOLORBOX_VERSION;
509
- $this->updateSettingsInDatabase();
510
- $referrer = str_replace(array('&jQueryColorboxUpdateSettings', '&jQueryColorboxDeleteSettings'), '', $_POST['_wp_http_referer']);
511
- wp_redirect($referrer . '&jQueryColorboxUpdateSettings');
512
- }
513
-
514
- // jQueryColorboxUpdateSettings()
515
 
516
- /**
517
- * Update jQuery Colorbox settings
518
- *
519
- * handles updating settings in the WordPress database
520
- *
521
- * @since 1.3.3
522
- * @access private
523
- * @author Arne Franken
524
- */
525
- //private function updateSettingsInDatabase() {
526
- function updateSettingsInDatabase() {
527
- update_option(JQUERYCOLORBOX_SETTINGSNAME, $this->colorboxSettings);
528
  }
529
 
530
- //updateSettings()
531
-
532
- /**
533
- * Delete jQuery Colorbox settings wrapper
534
- *
535
- * handles checks and redirect
536
- *
537
- * @since 1.3.3
538
- * @access public
539
- * @author Arne Franken
540
- */
541
- //public function jQueryColorboxDeleteSettings() {
542
- function jQueryColorboxDeleteSettings() {
543
-
544
- if (current_user_can('manage_options') && isset($_POST['delete_settings-true'])) {
545
- //cross check the given referer for nonce set in delete settings form
546
- check_admin_referer('jquery-delete_settings-form');
547
- $this->deleteSettingsFromDatabase();
548
- $this->colorboxSettings = $this->jQueryColorboxDefaultSettings();
549
- } else {
550
- wp_die(sprintf(__('Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox.', JQUERYCOLORBOX_TEXTDOMAIN), JQUERYCOLORBOX_NAME));
551
- }
552
- //clean up referrer
553
- $referrer = str_replace(array('&jQueryColorboxUpdateSettings', '&jQueryColorboxDeleteSettings'), '', $_POST['_wp_http_referer']);
554
- wp_redirect($referrer . '&jQueryColorboxDeleteSettings');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
555
  }
556
 
557
- // jQueryColorboxDeleteSettings()
558
-
559
- /**
560
- * Delete jQuery Colorbox settings
561
- *
562
- * handles deletion from WordPress database
563
- *
564
- * @since 1.3.3
565
- * @access private
566
- * @author Arne Franken
567
- */
568
- //private function deleteSettingsFromDatabase() {
569
- function deleteSettingsFromDatabase() {
570
- delete_option(JQUERYCOLORBOX_SETTINGSNAME);
571
  }
572
-
573
- // deleteSettings()
574
-
575
- /**
576
- * executed during activation.
577
- *
578
- * @since 2.0
579
- * @access public
580
- * @author Arne Franken
581
- */
582
- //public function activateJqueryColorbox() {
583
- function activateJqueryColorbox() {
584
- $jquery_colorbox_settings = get_option(JQUERYCOLORBOX_SETTINGSNAME);
585
- if ($jquery_colorbox_settings) {
586
- //if jQueryColorboxVersion does not exist, the plugin is a version prior to 2.0
587
- //settings are incompatible with 2.0, restore default settings.
588
- if (!array_key_exists('jQueryColorboxVersion', $jquery_colorbox_settings)) {
589
- if (!array_key_exists('scalePhotos', $jquery_colorbox_settings)) {
590
- //in case future versions require resetting the settings
591
- //if($jquery_colorbox_settings['jQueryColorboxVersion'] < JQUERYCOLORBOX_VERSION)
592
- update_option(JQUERYCOLORBOX_SETTINGSNAME, $this->jQueryColorboxDefaultSettings());
593
- }
594
- }
595
- }
596
- }
597
-
598
- // activateJqueryColorbox()
599
-
600
- /**
601
- * Read HTML from a remote url
602
- *
603
- * @since 3.5
604
- * @access private
605
- * @author Arne Franken
606
- *
607
- * @param string $url
608
- * @return the response
609
- */
610
- //private function getRemoteContent($url) {
611
- function getRemoteContent($url) {
612
- if ( function_exists('wp_remote_request') ) {
613
-
614
- $options = array();
615
- $options['headers'] = array(
616
- 'User-Agent' => 'jQuery Colorbox V' . JQUERYCOLORBOX_VERSION . '; (' . get_bloginfo('url') .')'
617
- );
618
-
619
- $response = wp_remote_request($url, $options);
620
-
621
- if ( is_wp_error( $response ) )
622
- return false;
623
-
624
- if ( 200 != wp_remote_retrieve_response_code($response) )
625
- return false;
626
-
627
- return wp_remote_retrieve_body($response);
628
- }
629
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
630
  return false;
 
631
  }
632
-
633
- // getRemoteContent()
634
-
635
- /**
636
- * gets current URL to return to after donating
637
- *
638
- * @since 3.5
639
- * @access private
640
- * @author Arne Franken
641
- */
642
- //private function getReturnLocation(){
643
- function getReturnLocation(){
644
- $currentLocation = "http";
645
- $currentLocation .= ((isset($_SERVER['HTTPS']) && $_SERVER['HTTPS']=='on') ? "s" : "")."://";
646
- $currentLocation .= $_SERVER['SERVER_NAME'];
647
- if(isset($_SERVER['HTTPS']) && $_SERVER['HTTPS']=='on') {
648
- if($_SERVER['SERVER_PORT']!='443') {
649
- $currentLocation .= ":".$_SERVER['SERVER_PORT'];
650
- }
651
- }
652
- else {
653
- if($_SERVER['SERVER_PORT']!='80') {
654
- $currentLocation .= ":".$_SERVER['SERVER_PORT'];
655
- }
656
- }
657
- $currentLocation .= $_SERVER['REQUEST_URI'];
658
- echo $currentLocation;
659
- }
660
-
661
- // getReturnLocation()
662
-
663
- /**
664
- * adds Colorbox CSS class to TinyMCE style selector dropdown box
665
- *
666
- * @since 3.7
667
- * @access public
668
- * @author Arne Franken
669
- *
670
- * @param $init_array
671
- * @return modified array
672
- */
673
- //public function addColorboxLinkClass($defaultCss) {
674
- function addColorboxLinkClass($init_array) {
675
-
676
- $init_array['theme_advanced_styles'] .= ';colorbox-link=colorbox-link;';
677
- //strip first and last character if it matches ";"
678
- $init_array['theme_advanced_styles'] = trim($init_array['theme_advanced_styles'], ';');
679
- return $init_array;
680
- }
681
-
682
- // addColorboxLinkClasses()
683
-
684
- /**
685
- * Adds style selector option to TinyMCE
686
- *
687
- * @since 4.0
688
- * @access public
689
- * @author Arne Franken
690
- *
691
- * @param $array
692
- * @return modified array
693
- */
694
- function addStyleSelectorBox($array) {
695
- if(!in_array('styleselect',$array)){
696
- array_push($array,'styleselect');
697
- }
698
- return $array;
699
- }
700
-
701
- // addStyleSelectorBox()
702
-
703
- /**
704
- *
705
- *
706
- */
707
  // function getThemeDirs() {
708
  // $themesDirPath = JQUERYCOLORBOX_PLUGIN_DIR.'/themes/';
709
  // if ($themesDir = opendir($themesDirPath)) {
@@ -720,25 +306,25 @@ class jQueryColorbox {
720
 
721
  }
722
 
723
- // class jQueryColorbox()
724
  ?><?php
725
  /**
 
726
  * initialize plugin, call constructor
727
  *
728
  * @since 1.0
729
  * @access public
730
  * @author Arne Franken
731
  */
732
- function jQueryColorbox() {
733
- global $jQueryColorbox;
734
- $jQueryColorbox = new jQueryColorbox();
735
- }
736
 
737
- // jQueryColorbox()
738
 
739
- // add jQueryColorbox() to WordPress initialization
740
- add_action('init', 'jQueryColorbox', 7);
741
 
742
- // register method for activation
743
- register_activation_hook(__FILE__, array('jQueryColorbox', 'activateJqueryColorbox'));
744
  ?>
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: 4.1
10
  * Author: Arne Franken
11
  * Author URI: http://www.techotronic.de/
12
  * License: GPL
19
  ?>
20
  <?php
21
  //define constants
22
+ define('JQUERYCOLORBOX_VERSION', '4.1');
23
+ define('COLORBOXLIBRARY_VERSION', '1.3.17');
24
 
25
  if (!defined('JQUERYCOLORBOX_PLUGIN_BASENAME')) {
26
+ //jquery-colorbox/jquery-colorbox.php
27
+ define('JQUERYCOLORBOX_PLUGIN_BASENAME', plugin_basename(__FILE__));
28
  }
29
  if (!defined('JQUERYCOLORBOX_PLUGIN_NAME')) {
30
+ //jquery-colorbox
31
+ define('JQUERYCOLORBOX_PLUGIN_NAME', trim(dirname(JQUERYCOLORBOX_PLUGIN_BASENAME), '/'));
32
  }
33
  if (!defined('JQUERYCOLORBOX_NAME')) {
34
+ define('JQUERYCOLORBOX_NAME', 'jQuery Colorbox');
35
  }
36
  if (!defined('JQUERYCOLORBOX_TEXTDOMAIN')) {
37
+ define('JQUERYCOLORBOX_TEXTDOMAIN', 'jquery-colorbox');
38
  }
39
  if (!defined('JQUERYCOLORBOX_PLUGIN_DIR')) {
40
+ // /path/to/wordpress/wp-content/plugins/jquery-colorbox
41
+ define('JQUERYCOLORBOX_PLUGIN_DIR', dirname(__FILE__));
42
  }
43
  if (!defined('JQUERYCOLORBOX_PLUGIN_URL')) {
44
+ // http://www.domain.com/wordpress/wp-content/plugins/jquery-colorbox
45
+ define('JQUERYCOLORBOX_PLUGIN_URL', WP_PLUGIN_URL . '/' . JQUERYCOLORBOX_PLUGIN_NAME);
 
 
 
 
 
46
  }
47
  if (!defined('JQUERYCOLORBOX_SETTINGSNAME')) {
48
+ define('JQUERYCOLORBOX_SETTINGSNAME', 'jquery-colorbox_settings');
 
 
 
49
  }
50
+ if (!defined('JQUERYCOLORBOX_USERAGENT')) {
51
+ define('JQUERYCOLORBOX_USERAGENT', 'jQuery Colorbox V' . JQUERYCOLORBOX_VERSION . '; (' . get_bloginfo('url') . ')');
52
  }
53
 
54
+ /**
55
+ * Main plugin class
56
+ *
57
+ * @since 1.0
58
+ * @author Arne Franken
59
+ */
60
+ class JQueryColorbox {
61
+
62
+ /**
63
+ * Constructor
64
+ * Plugin initialization
65
+ *
66
+ * @since 1.0
67
+ * @access public
68
+ * @access static
69
+ * @author Arne Franken
70
+ */
71
+ //public static function JQueryColorbox() {
72
+ function JQueryColorbox() {
73
+ if (!function_exists('plugins_url')) {
74
+ return;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
75
  }
76
 
77
+ load_plugin_textdomain(JQUERYCOLORBOX_TEXTDOMAIN, false, '/jquery-colorbox/localization/');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
78
 
79
+ // Create the settings array by merging the user's settings and the defaults
80
+ $usersettings = (array)get_option(JQUERYCOLORBOX_SETTINGSNAME);
81
+ $defaultArray = $this->jQueryColorboxDefaultSettings();
 
 
 
 
 
 
 
 
 
82
 
83
+ //check whether stored settings are compatible with current plugin version.
84
+ //if not: overwrite stored settings
85
+ $validSettings = $this->validateSettingsInDatabase($usersettings);
86
+ if(!$validSettings) {
87
+ $this->colorboxSettings = $defaultArray;
88
+ update_option(JQUERYCOLORBOX_SETTINGSNAME, $defaultArray);
89
+ } else {
90
+ $this->colorboxSettings = wp_parse_args($usersettings, $defaultArray);
 
 
 
 
91
  }
92
 
93
+ // Create list of themes and their human readable names
94
+ $this->colorboxThemes = array(
95
+ 'theme1' => __('Theme #1', JQUERYCOLORBOX_TEXTDOMAIN),
96
+ 'theme2' => __('Theme #2', JQUERYCOLORBOX_TEXTDOMAIN),
97
+ 'theme3' => __('Theme #3', JQUERYCOLORBOX_TEXTDOMAIN),
98
+ 'theme4' => __('Theme #4', JQUERYCOLORBOX_TEXTDOMAIN),
99
+ 'theme5' => __('Theme #5', JQUERYCOLORBOX_TEXTDOMAIN),
100
+ 'theme6' => __('Theme #6', JQUERYCOLORBOX_TEXTDOMAIN),
101
+ 'theme7' => __('Theme #7', JQUERYCOLORBOX_TEXTDOMAIN),
102
+ 'theme8' => __('Theme #8', JQUERYCOLORBOX_TEXTDOMAIN),
103
+ 'theme9' => __('Theme #9', JQUERYCOLORBOX_TEXTDOMAIN),
104
+ 'theme10' => __('Theme #10', JQUERYCOLORBOX_TEXTDOMAIN),
105
+ 'theme11' => __('Theme #11', JQUERYCOLORBOX_TEXTDOMAIN)
106
+ );
107
+
108
+ // $this->colorboxThemes = array_merge($this->getThemeDirs(),$this->colorboxThemes);
109
+
110
+ $dummyThemeNumberArray = array(
111
+ __('Theme #12', JQUERYCOLORBOX_TEXTDOMAIN),
112
+ __('Theme #13', JQUERYCOLORBOX_TEXTDOMAIN),
113
+ __('Theme #14', JQUERYCOLORBOX_TEXTDOMAIN),
114
+ __('Theme #15', JQUERYCOLORBOX_TEXTDOMAIN)
115
+ );
116
+
117
+ // create list of units
118
+ $this->colorboxUnits = array(
119
+ '%' => __('percent', JQUERYCOLORBOX_TEXTDOMAIN),
120
+ 'px' => __('pixels', JQUERYCOLORBOX_TEXTDOMAIN)
121
+ );
122
+
123
+ // create list of units
124
+ $this->colorboxTransitions = array(
125
+ 'elastic' => __('elastic', JQUERYCOLORBOX_TEXTDOMAIN),
126
+ 'fade' => __('fade', JQUERYCOLORBOX_TEXTDOMAIN),
127
+ 'none' => __('none', JQUERYCOLORBOX_TEXTDOMAIN)
128
+ );
129
+
130
+ if (is_admin()) {
131
+ require_once 'includes/jquery-colorbox-backend.php';
132
+ new JQueryColorboxBackend($this->colorboxSettings, $this->colorboxThemes, $this->colorboxUnits, $this->colorboxTransitions, $this->jQueryColorboxDefaultSettings());
133
+ } else {
134
+ require_once 'includes/jquery-colorbox-frontend.php';
135
+ new JQueryColorboxFrontend($this->colorboxSettings);
136
  }
137
 
138
+ //register method for uninstall
139
+ if (function_exists('register_uninstall_hook')) {
140
+ register_uninstall_hook(__FILE__, array('JQueryColorbox', 'uninstallJqueryColorbox'));
 
 
 
 
 
 
 
 
 
 
 
141
  }
142
+ }
143
+
144
+ // JQueryColorbox()
145
+
146
+ /**
147
+ * This is what an example jQuery Colorbox configuration looks like in the wp_options-table of the database:
148
+ *
149
+ * Database-entry name: "jquery-colorbox_settings"
150
+ *
151
+ * a:29:{
152
+ * s:12:"autoColorbox";s:4:"true";
153
+ * s:22:"autoColorboxJavaScript";s:4:"true";
154
+ * s:13:"autoHideFlash";s:4:"true";
155
+ * s:18:"colorboxWarningOff";s:4:"true";
156
+ * s:13:"colorboxTheme";s:7:"theme11";
157
+ * s:14:"slideshowSpeed";s:4:"2500";
158
+ * s:8:"maxWidth";s:5:"false";s
159
+ * :13:"maxWidthValue";s:0:"";
160
+ * s:12:"maxWidthUnit";s:1:"%";
161
+ * s:9:"maxHeight";s:5:"false";
162
+ * s:14:"maxHeightValue";s:0:"";
163
+ * s:13:"maxHeightUnit";s:1:"%";
164
+ * s:5:"width";s:5:"false";
165
+ * s:10:"widthValue";s:0:"";
166
+ * s:9:"widthUnit";s:1:"%";
167
+ * s:6:"height";s:5:"false";
168
+ * s:11:"heightValue";s:0:"";
169
+ * s:10:"heightUnit";s:1:"%";
170
+ * s:9:"linkWidth";s:6:"custom";
171
+ * s:14:"linkWidthValue";s:2:"80";
172
+ * s:13:"linkWidthUnit";s:1:"%";
173
+ * s:10:"linkHeight";s:6:"custom";
174
+ * s:15:"linkHeightValue";s:2:"80";
175
+ * s:14:"linkHeightUnit";s:1:"%";
176
+ * s:12:"overlayClose";s:4:"true";
177
+ * s:10:"transition";s:7:"elastic";
178
+ * s:5:"speed";s:3:"350";
179
+ * s:7:"opacity";s:4:"0.85";
180
+ * s:21:"jQueryColorboxVersion";s:5:"4.1";
181
+ * }
182
+ */
183
+
184
+
185
+ /**
186
+ * Default array of plugin settings
187
+ *
188
+ * @since 2.0
189
+ * @access private
190
+ * @author Arne Franken
191
+ *
192
+ * @return array of default settings
193
+ */
194
+ //private function jQueryColorboxDefaultSettings() {
195
+ function jQueryColorboxDefaultSettings() {
196
+
197
+ // Create and return array of default settings
198
+ return array(
199
+ 'jQueryColorboxVersion' => JQUERYCOLORBOX_VERSION,
200
+ 'colorboxTheme' => 'theme1',
201
+ 'maxWidth' => 'false',
202
+ 'maxWidthValue' => '',
203
+ 'maxWidthUnit' => '%',
204
+ 'maxHeight' => 'false',
205
+ 'maxHeightValue' => '',
206
+ 'maxHeightUnit' => '%',
207
+ 'height' => 'false',
208
+ 'heightValue' => '',
209
+ 'heightUnit' => '%',
210
+ 'width' => 'false',
211
+ 'widthValue' => '',
212
+ 'widthUnit' => '%',
213
+ 'linkHeight' => 'false',
214
+ 'linkHeightValue' => '',
215
+ 'linkHeightUnit' => '%',
216
+ 'linkWidth' => 'false',
217
+ 'linkWidthValue' => '',
218
+ 'linkWidthUnit' => '%',
219
+ 'initialWidth' => '300',
220
+ 'initialHeight' => '100',
221
+ 'autoColorbox' => false,
222
+ 'autoColorboxGalleries' => false,
223
+ 'slideshow' => false,
224
+ 'slideshowAuto' => false,
225
+ 'scalePhotos' => false,
226
+ 'displayScrollbar' => false,
227
+ 'draggable' => false,
228
+ 'slideshowSpeed' => '2500',
229
+ 'opacity' => '0.85',
230
+ 'preloading' => false,
231
+ 'transition' => 'elastic',
232
+ 'speed' => '350',
233
+ 'overlayClose' => false,
234
+ 'disableLoop' => false,
235
+ 'disableKeys' => false,
236
+ 'autoHideFlash' => false,
237
+ 'colorboxWarningOff' => false,
238
+ 'colorboxMetaLinkOff' => false,
239
+ 'javascriptInFooter' => false,
240
+ 'debugMode' => false,
241
+ 'autoColorboxJavaScript' => false,
242
+ 'removeLinkFromMetaBox' => false
243
+ );
244
+ }
245
+
246
+ // jQueryColorboxDefaultSettings()
247
+
248
+ /**
249
+ * Checks wheter the settings stored in the database are compatible with current version.
250
+ *
251
+ * @since 2.0
252
+ * @access public
253
+ * @author Arne Franken
254
+ * @param $colorboxSettings current colorboxSettings.
255
+ *
256
+ * @return bool true if settings work with this plugin version
257
+ */
258
+ //public function validateSettingsInDatabase() {
259
+ function validateSettingsInDatabase($colorboxSettings) {
260
+ if ($colorboxSettings) {
261
+ //if jQueryColorboxVersion does not exist, the plugin is a version prior to 2.0
262
+ //settings are incompatible with 2.0, restore default settings.
263
+ if (!array_key_exists('jQueryColorboxVersion', $colorboxSettings)) {
264
+ //in case future versions require resetting the settings
265
+ //if($jquery_colorbox_settings['jQueryColorboxVersion'] < JQUERYCOLORBOX_VERSION)
266
  return false;
267
+ }
268
  }
269
+ return true;
270
+ }
271
+
272
+ // validateSettingsInDatabase()
273
+
274
+ /**
275
+ * Delete plugin settings
276
+ *
277
+ * handles deletion from WordPress database
278
+ *
279
+ * @since 4.1
280
+ * @access private
281
+ * @author Arne Franken
282
+ */
283
+ //private function uninstallJqueryColorbox() {
284
+ function uninstallJqueryColorbox() {
285
+ delete_option(JQUERYCOLORBOX_SETTINGSNAME);
286
+ }
287
+
288
+ /**
289
+ * currently unused.
290
+ * it was requested a few times that people want to add their own version of a Colorbox skin and the plugin
291
+ * should dynamically load theme directories.
292
+ */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
293
  // function getThemeDirs() {
294
  // $themesDirPath = JQUERYCOLORBOX_PLUGIN_DIR.'/themes/';
295
  // if ($themesDir = opendir($themesDirPath)) {
306
 
307
  }
308
 
309
+ // class JQueryColorbox()
310
  ?><?php
311
  /**
312
+ * Workaround for PHP4
313
  * initialize plugin, call constructor
314
  *
315
  * @since 1.0
316
  * @access public
317
  * @author Arne Franken
318
  */
319
+ function initJQueryColorbox() {
320
+ new JQueryColorbox();
321
+ }
 
322
 
323
+ // initJQueryColorbox()
324
 
325
+ // add jQueryColorbox to WordPress initialization
326
+ add_action('init', 'initJQueryColorbox', 7);
327
 
328
+ //static call to constructor is only possible if constructor is 'public static', therefore not PHP4 compatible:
329
+ //add_action('init', array('JQueryColorbox','JQueryColorbox'), 7);
330
  ?>
js/donation-min.js ADDED
@@ -0,0 +1 @@
 
1
+ jQuery(document).ready(function(){loadTopDonations();loadLatestDonations()});(function(a){loadTopDonations=function(){loadDonations("top")}})(jQuery);(function(a){loadLatestDonations=function(){loadDonations("latest")}})(jQuery);(function(a){loadDonations=function(b){var d="#"+b+"donationslist";var f="#"+b+"loader";var c="#"+b+"error";var e="load-"+b+"Donations";a.post(Donation.ajaxurl,{action:e,pluginName:Donation.pluginName,type:b},function(g){if(g!==""){a(f).hide("slow");a(d).empty().html(g).show("slow")}else{a(f).hide("slow");a(c).show("slow")}},"html")}})(jQuery);
js/donation.js ADDED
@@ -0,0 +1,78 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * @package Techotronic
3
+ * @subpackage Donationloader
4
+ *
5
+ * @since 1.0
6
+ * @author Arne Franken
7
+ *
8
+ * DonationLoader Javascript
9
+ */
10
+
11
+ /**
12
+ * call donation loader on page load.
13
+ */
14
+ jQuery(document).ready(function() {
15
+ loadTopDonations();
16
+ loadLatestDonations();
17
+ });
18
+
19
+ /**
20
+ * loadTopDonations
21
+ */
22
+ (function(jQuery) {
23
+ loadTopDonations = function() {
24
+ loadDonations('top');
25
+ }
26
+ })(jQuery);
27
+
28
+ // loadTopDonations()
29
+
30
+ /**
31
+ * loadLatestDonations
32
+ */
33
+ (function(jQuery) {
34
+ loadLatestDonations = function() {
35
+ loadDonations('latest');
36
+ }
37
+ })(jQuery);
38
+
39
+ // loadLatestDonations()
40
+
41
+ /**
42
+ * loadDonations
43
+ *
44
+ * actually load donations
45
+ */
46
+ (function(jQuery) {
47
+ loadDonations = function($type) {
48
+ var listDivId = '#' + $type + 'donationslist';
49
+ var loaderDivId = '#' + $type +'loader';
50
+ var errorDivId = '#' + $type + 'error';
51
+ var action = 'load-' + $type + 'Donations';
52
+ jQuery.post(
53
+ Donation.ajaxurl,
54
+ {
55
+ // here we declare the parameters to send along with the request
56
+ // this means the following action hooks will be fired:
57
+ // wp_ajax_nopriv_action and wp_ajax_action
58
+ action : action,
59
+
60
+ // other parameters can be added along with "action"
61
+ pluginName : Donation.pluginName,
62
+ type: $type
63
+ },
64
+ function( response ) {
65
+
66
+ if(response!=='') {
67
+ jQuery(loaderDivId).hide('slow');
68
+ jQuery(listDivId).empty().html(response).show('slow');
69
+ } else {
70
+ jQuery(loaderDivId).hide('slow');
71
+ jQuery(errorDivId).show('slow');
72
+ }
73
+ },"html"
74
+ );
75
+ }
76
+ })(jQuery);
77
+
78
+ // loadDonations()
js/jquery-colorbox-auto-min.js DELETED
@@ -1 +0,0 @@
1
- jQuery(document).ready(function(a){a("img").each(function(b,c){if(!a(c).attr("class").match("colorbox")){a(c).addClass("colorbox-manual")}})});
 
js/jquery-colorbox-auto.js DELETED
@@ -1,17 +0,0 @@
1
- /*
2
- * @package Techotronic
3
- * @subpackage jQuery Colorbox
4
- *
5
- * @since 3.1
6
- * @author Arne Franken
7
- * @author jrevillini
8
- *
9
- * adds colorbox-manual to ALL img tags that are found in the HTML output
10
- */
11
- jQuery(document).ready( function(jQuery) {
12
- jQuery("img").each( function(index,obj){
13
- if(!jQuery(obj).attr("class").match('colorbox')) {
14
- jQuery(obj).addClass('colorbox-manual');
15
- }
16
- });
17
- });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
js/jquery-colorbox-draggable.js DELETED
@@ -1,15 +0,0 @@
1
- /*
2
- * @package Techotronic
3
- * @subpackage jQuery Colorbox
4
- *
5
- * @since 4.1
6
- * @author Arne Franken
7
- *
8
- * makes photos draggable
9
- */
10
- jQuery(document).ready(function($) {
11
- $(document).bind('cbox_complete', function(){
12
- $('#cboxPhoto').unbind().css({cursor:'inherit'});
13
- $("#cboxLoadedContent").draggable();
14
- });
15
- });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
js/jquery-colorbox-hideFlash-min.js DELETED
@@ -1 +0,0 @@
1
- jQuery(document).ready(function(a){a(document).bind("cbox_open",function(){var c=document.getElementsByTagName("object");for(i=0;i<c.length;i++){c[i].style.visibility="hidden"}var b=document.getElementsByTagName("embed");for(i=0;i<b.length;i++){b[i].style.visibility="hidden"}});a(document).bind("cbox_closed",function(){var c=document.getElementsByTagName("object");for(i=0;i<c.length;i++){c[i].style.visibility="visible"}var b=document.getElementsByTagName("embed");for(i=0;i<b.length;i++){b[i].style.visibility="visible"}})});
 
js/jquery-colorbox-hideFlash.js DELETED
@@ -1,31 +0,0 @@
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(jQuery) {
11
- jQuery(document).bind('cbox_open', function(){
12
- var flashObjects = document.getElementsByTagName("object");
13
- for (i = 0; i < flashObjects.length; i++) {
14
- flashObjects[i].style.visibility = "hidden";
15
- }
16
- var flashEmbeds = document.getElementsByTagName("embed");
17
- for (i = 0; i < flashEmbeds.length; i++) {
18
- flashEmbeds[i].style.visibility = "hidden";
19
- }
20
- });
21
- jQuery(document).bind('cbox_closed', function(){
22
- var flashObjects = document.getElementsByTagName("object");
23
- for (i = 0; i < flashObjects.length; i++) {
24
- flashObjects[i].style.visibility = "visible";
25
- }
26
- var flashEmbeds = document.getElementsByTagName("embed");
27
- for (i = 0; i < flashEmbeds.length; i++) {
28
- flashEmbeds[i].style.visibility = "visible";
29
- }
30
- });
31
- });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
js/jquery-colorbox-wrapper-min.js ADDED
@@ -0,0 +1 @@
 
1
+ var COLORBOX_INTERNAL_LINK_PATTERN=/^#.*/;var COLORBOX_SUFFIX_PATTERN=/\.(?:jpe?g|gif|png|bmp)/i;var COLORBOX_MANUAL="colorbox-manual";var COLORBOX_OFF_CLASS=".colorbox-off";var COLORBOX_LINK_CLASS=".colorbox-link";var COLORBOX_OFF="colorbox-off";var COLORBOX_CLASS_MATCH="colorbox-[0-9]+";jQuery(document).ready(function(){if(Colorbox.autoColorboxJavaScript=="true"){colorboxAddManualClass()}if(Colorbox.colorboxAddClassToLinks=="true"){colorboxAddClassToLinks()}if(Colorbox.autoHideFlash=="true"){colorboxHideFlash();colorboxShowFlash()}colorboxSelector()});(function(a){colorboxShowFlash=function(){a(document).bind("cbox_closed",function(){var c=document.getElementsByTagName("object");for(i=0;i<c.length;i++){c[i].style.visibility="visible"}var b=document.getElementsByTagName("embed");for(i=0;i<b.length;i++){b[i].style.visibility="visible"}})}})(jQuery);(function(a){colorboxHideFlash=function(){a(document).bind("cbox_open",function(){var c=document.getElementsByTagName("object");for(i=0;i<c.length;i++){c[i].style.visibility="hidden"}var b=document.getElementsByTagName("embed");for(i=0;i<b.length;i++){b[i].style.visibility="hidden"}})}})(jQuery);(function(a){colorboxAddClassToLinks=function(){a("a:not(:contains(img))").each(function(d,f){var c=a(f);var b=c.attr("class");if(b!==undefined&&!b.match("colorbox")){var e=c.attr("href");if(e!==undefined&&a(f).attr("href").match(COLORBOX_SUFFIX_PATTERN)){c.addClass("colorbox-link")}}})}})(jQuery);(function(a){colorboxAddManualClass=function(){a("img").each(function(c,e){var d=a(e);var b=d.attr("class");if(b!==undefined&&!b.match("colorbox")){d.addClass("colorbox-manual")}})}})(jQuery);(function(a){colorboxSelector=function(){a("a:has(img[class*=colorbox-]):not(.colorbox-off)").each(function(b,d){ColorboxLocal=a.extend(true,{},Colorbox);ColorboxLocal.colorboxMaxWidth=ColorboxLocal.colorboxImageMaxWidth;ColorboxLocal.colorboxMaxHeight=ColorboxLocal.colorboxImageMaxHeight;ColorboxLocal.colorboxHeight=ColorboxLocal.colorboxImageHeight;ColorboxLocal.colorboxWidth=ColorboxLocal.colorboxImageWidth;var c=a(d).attr("href");if(c!==undefined&&c.match(COLORBOX_SUFFIX_PATTERN)){colorboxImage(b,d)}else{}});a("a[class*=colorbox-link]").each(function(b,d){ColorboxLocal=a.extend(true,{},Colorbox);var c=a(d).attr("href");if(c!==undefined){colorboxLink(b,d,c)}})}})(jQuery);(function(a){colorboxImage=function(b,g){var d=a(g).find("img:first");var e=a(g).attr("class");if(e!==undefined){ColorboxLocal.colorboxGroupId=e.match(COLORBOX_CLASS_MATCH)||e.match(COLORBOX_MANUAL)}if(!ColorboxLocal.colorboxGroupId){var f=d.attr("class");if(f!==undefined&&!f.match(COLORBOX_OFF)){ColorboxLocal.colorboxGroupId=f.match(COLORBOX_CLASS_MATCH)||f.match(COLORBOX_MANUAL)}if(ColorboxLocal.colorboxGroupId){ColorboxLocal.colorboxGroupId=ColorboxLocal.colorboxGroupId.toString().split("-")[1];if(ColorboxLocal.colorboxGroupId==="manual"){ColorboxLocal.colorboxGroupId="nofollow"}var c=d.attr("title");if(c!==undefined){ColorboxLocal.colorboxTitle=c}colorboxWrapper(g)}}}})(jQuery);(function(a){colorboxLink=function(c,f,e){ColorboxLocal.colorboxGroupId="nofollow";var b=a(f);var d=b.attr("title");if(d!==undefined){ColorboxLocal.colorboxTitle=d}else{ColorboxLocal.colorboxTitle=""}if(e.match(COLORBOX_SUFFIX_PATTERN)){ColorboxLocal.colorboxMaxWidth=ColorboxLocal.colorboxImageMaxWidth;ColorboxLocal.colorboxMaxHeight=ColorboxLocal.colorboxImageMaxHeight;ColorboxLocal.colorboxHeight=ColorboxLocal.colorboxImageHeight;ColorboxLocal.colorboxWidth=ColorboxLocal.colorboxImageWidth}else{ColorboxLocal.colorboxMaxWidth=false;ColorboxLocal.colorboxMaxHeight=false;ColorboxLocal.colorboxHeight=ColorboxLocal.colorboxLinkHeight;ColorboxLocal.colorboxWidth=ColorboxLocal.colorboxLinkWidth;if(e.match(COLORBOX_INTERNAL_LINK_PATTERN)){ColorboxLocal.colorboxInline=true}else{ColorboxLocal.colorboxIframe=true}}colorboxWrapper(f)}})(jQuery);(function(a){colorboxWrapper=function(b){a.each(ColorboxLocal,function(c,d){if(d==="false"){ColorboxLocal[c]=false}else{if(d==="true"){ColorboxLocal[c]=true}}});a(b).colorbox({rel:ColorboxLocal.colorboxGroupId,title:ColorboxLocal.colorboxTitle,maxHeight:ColorboxLocal.colorboxMaxHeight,maxWidth:ColorboxLocal.colorboxMaxWidth,initialHeight:ColorboxLocal.colorboxInitialHeight,initialWidth:ColorboxLocal.colorboxInitialWidth,height:ColorboxLocal.colorboxHeight,width:ColorboxLocal.colorboxWidth,slideshow:ColorboxLocal.colorboxSlideshow,slideshowAuto:ColorboxLocal.colorboxSlideshowAuto,scalePhotos:ColorboxLocal.colorboxScalePhotos,preloading:ColorboxLocal.colorboxPreloading,overlayClose:ColorboxLocal.colorboxOverlayClose,loop:ColorboxLocal.colorboxLoop,escKey:ColorboxLocal.colorboxEscKey,arrowKey:ColorboxLocal.colorboxArrowKey,scrolling:ColorboxLocal.colorboxScrolling,opacity:ColorboxLocal.colorboxOpacity,transition:ColorboxLocal.colorboxTransition,speed:parseInt(ColorboxLocal.colorboxSpeed),slideshowSpeed:parseInt(ColorboxLocal.colorboxSlideshowSpeed),close:ColorboxLocal.colorboxClose,next:ColorboxLocal.colorboxNext,previous:ColorboxLocal.colorboxPrevious,slideshowStart:ColorboxLocal.colorboxSlideshowStart,slideshowStop:ColorboxLocal.colorboxSlideshowStop,current:ColorboxLocal.colorboxCurrent,inline:ColorboxLocal.colorboxInline,iframe:ColorboxLocal.colorboxIframe})}})(jQuery);
js/jquery-colorbox-wrapper.js ADDED
@@ -0,0 +1,303 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * @package Techotronic
3
+ * @subpackage jQuery Colorbox
4
+ *
5
+ * @since 3.2
6
+ * @author Arne Franken
7
+ * @author Fabian Wolf (http://usability-idealist.de/)
8
+ * @author Jason Stapels (jstapels@realmprojects.com)
9
+ *
10
+ * Colorbox Javascript
11
+ */
12
+ var COLORBOX_INTERNAL_LINK_PATTERN = /^#.*/;
13
+ var COLORBOX_SUFFIX_PATTERN = /\.(?:jpe?g|gif|png|bmp)/i;
14
+ var COLORBOX_MANUAL = "colorbox-manual";
15
+ var COLORBOX_OFF_CLASS = ".colorbox-off";
16
+ var COLORBOX_LINK_CLASS = ".colorbox-link";
17
+ var COLORBOX_OFF = "colorbox-off";
18
+ var COLORBOX_CLASS_MATCH = "colorbox-[0-9]+";
19
+
20
+ /**
21
+ * This block calls all functions on page load.
22
+ */
23
+ jQuery(document).ready(function() {
24
+ if (Colorbox.autoColorboxJavaScript == "true") {
25
+ colorboxAddManualClass();
26
+ }
27
+ if (Colorbox.colorboxAddClassToLinks == "true") {
28
+ colorboxAddClassToLinks();
29
+ }
30
+ if (Colorbox.autoHideFlash == "true") {
31
+ colorboxHideFlash();
32
+ colorboxShowFlash();
33
+ }
34
+ colorboxSelector();
35
+ });
36
+
37
+ /**
38
+ * colorboxShowFlash
39
+ *
40
+ * show embedded flash objects when Colorbox closes
41
+ */
42
+ (function(jQuery) {
43
+ colorboxShowFlash = function() {
44
+ jQuery(document).bind('cbox_closed', function() {
45
+ var flashObjects = document.getElementsByTagName("object");
46
+ for (i = 0; i < flashObjects.length; i++) {
47
+ flashObjects[i].style.visibility = "visible";
48
+ }
49
+ var flashEmbeds = document.getElementsByTagName("embed");
50
+ for (i = 0; i < flashEmbeds.length; i++) {
51
+ flashEmbeds[i].style.visibility = "visible";
52
+ }
53
+ });
54
+ }
55
+ })(jQuery);
56
+
57
+ // colorboxShowFlash()
58
+
59
+ /**
60
+ * colorboxHideFlash
61
+ *
62
+ * hide embedded flash objects when Colorbox opens
63
+ */
64
+ (function(jQuery) {
65
+ colorboxHideFlash = function() {
66
+ jQuery(document).bind('cbox_open', function() {
67
+ var flashObjects = document.getElementsByTagName("object");
68
+ for (i = 0; i < flashObjects.length; i++) {
69
+ flashObjects[i].style.visibility = "hidden";
70
+ }
71
+ var flashEmbeds = document.getElementsByTagName("embed");
72
+ for (i = 0; i < flashEmbeds.length; i++) {
73
+ flashEmbeds[i].style.visibility = "hidden";
74
+ }
75
+ });
76
+ }
77
+ })(jQuery);
78
+
79
+ // colorboxHideFlash()
80
+
81
+ /**
82
+ * colorboxAddClassToLinks
83
+ *
84
+ * add colorbox-link to anchor tags
85
+ */
86
+ (function(jQuery) {
87
+ colorboxAddClassToLinks = function() {
88
+ jQuery("a:not(:contains(img))").each(function(index, obj) {
89
+ var $link = jQuery(obj);
90
+ var $linkClass = $link.attr("class");
91
+ if ($linkClass !== undefined && !$linkClass.match('colorbox')) {
92
+ var $linkHref = $link.attr("href");
93
+ if ($linkHref !== undefined && jQuery(obj).attr("href").match(COLORBOX_SUFFIX_PATTERN)) {
94
+ $link.addClass('colorbox-link');
95
+ }
96
+ }
97
+
98
+ });
99
+ }
100
+ })(jQuery);
101
+
102
+ // colorboxAddClassToLinks()
103
+
104
+ /**
105
+ * colorboxAddManualClass
106
+ *
107
+ * add colorbox-manual to ALL img tags
108
+ */
109
+ (function(jQuery) {
110
+ colorboxAddManualClass = function() {
111
+ jQuery("img").each(function(index, obj) {
112
+ var $img = jQuery(obj);
113
+ var $imgClass = $img.attr("class");
114
+ if ($imgClass !== undefined && !$imgClass.match('colorbox')) {
115
+ $img.addClass('colorbox-manual');
116
+ }
117
+ });
118
+ }
119
+ })(jQuery);
120
+
121
+ // colorboxAddManualClass()
122
+
123
+ /**
124
+ * colorboxSelector
125
+ *
126
+ * call colorboxImage on all "a" elements that have a nested "img"
127
+ */
128
+ (function(jQuery) {
129
+ colorboxSelector = function() {
130
+ jQuery("a:has(img[class*=colorbox-]):not(.colorbox-off)").each(function(index, obj) {
131
+ //create local copy of Colorbox array so that modifications can be made for every link
132
+ ColorboxLocal = jQuery.extend(true,{},Colorbox);
133
+ //set variables for images
134
+ ColorboxLocal.colorboxMaxWidth = ColorboxLocal.colorboxImageMaxWidth;
135
+ ColorboxLocal.colorboxMaxHeight = ColorboxLocal.colorboxImageMaxHeight;
136
+ ColorboxLocal.colorboxHeight = ColorboxLocal.colorboxImageHeight;
137
+ ColorboxLocal.colorboxWidth = ColorboxLocal.colorboxImageWidth;
138
+ var $linkHref = jQuery(obj).attr("href");
139
+ if ($linkHref !== undefined && $linkHref.match(COLORBOX_SUFFIX_PATTERN)) {
140
+ colorboxImage(index, obj)
141
+ } else {
142
+ //TODO: does not work, every link from an image will be opened in a colorbox...
143
+ //colorboxLink(index, obj,$linkHref)
144
+ }
145
+ });
146
+
147
+ jQuery("a[class*=colorbox-link]").each(function(index, obj) {
148
+ //create local copy of Colorbox array so that modifications can be made for every link
149
+ ColorboxLocal = jQuery.extend(true,{},Colorbox);
150
+ var $linkHref = jQuery(obj).attr("href");
151
+ if ($linkHref !== undefined) {
152
+ colorboxLink(index, obj,$linkHref)
153
+ }
154
+ });
155
+ }
156
+ })(jQuery);
157
+
158
+ // colorboxSelector()
159
+
160
+ /**
161
+ * colorboxImage
162
+ *
163
+ * selects only links that point to images and sets necessary variables
164
+ */
165
+ (function(jQuery) {
166
+ colorboxImage = function(index, obj) {
167
+ var $image = jQuery(obj).find("img:first");
168
+ //check if the link has a colorbox class
169
+ var $linkClasses = jQuery(obj).attr("class");
170
+ if ($linkClasses !== undefined) {
171
+ ColorboxLocal.colorboxGroupId = $linkClasses.match(COLORBOX_CLASS_MATCH) || $linkClasses.match(COLORBOX_MANUAL);
172
+ }
173
+ if (!ColorboxLocal.colorboxGroupId) {
174
+ // link does not have colorbox class. Check if image has colorbox class.
175
+ var $imageClasses = $image.attr("class");
176
+ if ($imageClasses !== undefined && !$imageClasses.match(COLORBOX_OFF)) {
177
+ //groupId is either the automatically created colorbox-123 or the manually added colorbox-manual
178
+ ColorboxLocal.colorboxGroupId = $imageClasses.match(COLORBOX_CLASS_MATCH) || $imageClasses.match(COLORBOX_MANUAL);
179
+ }
180
+ //only call ColorboxLocal if there is a groupId for the image
181
+ if (ColorboxLocal.colorboxGroupId) {
182
+ //convert groupId to string and lose "colorbox-" for easier use
183
+ ColorboxLocal.colorboxGroupId = ColorboxLocal.colorboxGroupId.toString().split('-')[1];
184
+
185
+ //if groudId is colorbox-manual, set groupId to "nofollow" so that images are not grouped
186
+ if (ColorboxLocal.colorboxGroupId === "manual") {
187
+ ColorboxLocal.colorboxGroupId = "nofollow";
188
+ }
189
+ //the title of the img is used as the title for the Colorbox.
190
+ var $imageTitle = $image.attr("title");
191
+ if ($imageTitle !== undefined) {
192
+ ColorboxLocal.colorboxTitle = $imageTitle;
193
+ }
194
+ colorboxWrapper(obj);
195
+ }
196
+ }
197
+ }
198
+ })(jQuery);
199
+
200
+ // colorboxImage()
201
+
202
+ /**
203
+ * colorboxLink
204
+ *
205
+ * sets necessary variables
206
+ */
207
+ (function(jQuery) {
208
+ colorboxLink = function(index, obj,$linkHref) {
209
+ //Colorbox links should not be grouped
210
+ ColorboxLocal.colorboxGroupId = "nofollow";
211
+
212
+ var $link = jQuery(obj);
213
+ //the title of the link is used as the title for the Colorbox
214
+ var $linkTitle = $link.attr("title");
215
+ if ($linkTitle !== undefined) {
216
+ ColorboxLocal.colorboxTitle = $linkTitle;
217
+ } else {
218
+ ColorboxLocal.colorboxTitle = '';
219
+ }
220
+
221
+ // already checked for ($linkHref !== undefined) before calling this method
222
+ if ($linkHref.match(COLORBOX_SUFFIX_PATTERN)) {
223
+ //set variables for images
224
+ ColorboxLocal.colorboxMaxWidth = ColorboxLocal.colorboxImageMaxWidth;
225
+ ColorboxLocal.colorboxMaxHeight = ColorboxLocal.colorboxImageMaxHeight;
226
+ ColorboxLocal.colorboxHeight = ColorboxLocal.colorboxImageHeight;
227
+ ColorboxLocal.colorboxWidth = ColorboxLocal.colorboxImageWidth;
228
+ } else {
229
+ //set variables for non-images
230
+ ColorboxLocal.colorboxMaxWidth = false;
231
+ ColorboxLocal.colorboxMaxHeight = false;
232
+ ColorboxLocal.colorboxHeight = ColorboxLocal.colorboxLinkHeight;
233
+ ColorboxLocal.colorboxWidth = ColorboxLocal.colorboxLinkWidth;
234
+
235
+ if ($linkHref.match(COLORBOX_INTERNAL_LINK_PATTERN)) {
236
+ //link points to inline content
237
+ ColorboxLocal.colorboxInline = true;
238
+ } else {
239
+ //link points to something else, load in iframe
240
+ ColorboxLocal.colorboxIframe = true;
241
+ }
242
+ }
243
+
244
+ colorboxWrapper(obj);
245
+ }
246
+ })(jQuery);
247
+
248
+ // colorboxLink()
249
+
250
+ /**
251
+ * colorboxWrapper
252
+ *
253
+ * actually calls the colorbox function on the links
254
+ * elements with the same groupId in the class attribute are grouped
255
+ */
256
+ (function(jQuery) {
257
+ colorboxWrapper = function(obj) {
258
+ //workaround for wp_localize_script behavior:
259
+ //the function puts booleans as strings into the "ColorboxLocal" array...
260
+ jQuery.each(ColorboxLocal, function(key, value) {
261
+ if (value === "false") {
262
+ ColorboxLocal[key] = false;
263
+ } else if (value === "true") {
264
+ ColorboxLocal[key] = true;
265
+ }
266
+ });
267
+
268
+ //finally call Colorbox library
269
+ jQuery(obj).colorbox({
270
+ rel:ColorboxLocal.colorboxGroupId,
271
+ title:ColorboxLocal.colorboxTitle,
272
+ maxHeight:ColorboxLocal.colorboxMaxHeight,
273
+ maxWidth:ColorboxLocal.colorboxMaxWidth,
274
+ initialHeight:ColorboxLocal.colorboxInitialHeight,
275
+ initialWidth:ColorboxLocal.colorboxInitialWidth,
276
+ height:ColorboxLocal.colorboxHeight,
277
+ width:ColorboxLocal.colorboxWidth,
278
+ slideshow:ColorboxLocal.colorboxSlideshow,
279
+ slideshowAuto:ColorboxLocal.colorboxSlideshowAuto,
280
+ scalePhotos:ColorboxLocal.colorboxScalePhotos,
281
+ preloading:ColorboxLocal.colorboxPreloading,
282
+ overlayClose:ColorboxLocal.colorboxOverlayClose,
283
+ loop:ColorboxLocal.colorboxLoop,
284
+ escKey:ColorboxLocal.colorboxEscKey,
285
+ arrowKey:ColorboxLocal.colorboxArrowKey,
286
+ scrolling:ColorboxLocal.colorboxScrolling,
287
+ opacity:ColorboxLocal.colorboxOpacity,
288
+ transition:ColorboxLocal.colorboxTransition,
289
+ speed:parseInt(ColorboxLocal.colorboxSpeed),
290
+ slideshowSpeed:parseInt(ColorboxLocal.colorboxSlideshowSpeed),
291
+ close:ColorboxLocal.colorboxClose,
292
+ next:ColorboxLocal.colorboxNext,
293
+ previous:ColorboxLocal.colorboxPrevious,
294
+ slideshowStart:ColorboxLocal.colorboxSlideshowStart,
295
+ slideshowStop:ColorboxLocal.colorboxSlideshowStop,
296
+ current:ColorboxLocal.colorboxCurrent,
297
+ inline:ColorboxLocal.colorboxInline,
298
+ iframe:ColorboxLocal.colorboxIframe
299
+ });
300
+ }
301
+ })(jQuery);
302
+
303
+ // colorboxWrapper()
js/jquery.colorbox-min.js CHANGED
@@ -1,4 +1,4 @@
1
- // ColorBox v1.3.16 - a full featured, light-weight, customizable lightbox based on jQuery 1.3+
2
  // Copyright (c) 2011 Jack Moore - jack@colorpowered.com
3
  // Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
4
- (function(a,b,c){function ba(b){if(!T){O=b,Z(a.extend(J,a.data(O,e))),x=a(O),P=0,J.rel!=="nofollow"&&(x=a("."+V).filter(function(){var b=a.data(this,e).rel||this.rel;return b===J.rel}),P=x.index(O),P===-1&&(x=x.add(O),P=x.length-1));if(!R){R=S=!0,q.show();if(J.returnFocus)try{O.blur(),a(O).one(k,function(){try{this.focus()}catch(a){}})}catch(c){}p.css({opacity:+J.opacity,cursor:J.overlayClose?"pointer":"auto"}).show(),J.w=X(J.initialWidth,"x"),J.h=X(J.initialHeight,"y"),U.position(0),n&&y.bind("resize."+o+" scroll."+o,function(){p.css({width:y.width(),height:y.height(),top:y.scrollTop(),left:y.scrollLeft()})}).trigger("resize."+o),$(g,J.onOpen),I.add(C).hide(),H.html(J.close).show()}U.load(!0)}}function _(){var a,b=f+"Slideshow_",c="click."+f,d,e,g;J.slideshow&&x[1]&&(d=function(){E.text(J.slideshowStop).unbind(c).bind(i,function(){if(P<x.length-1||J.loop)a=setTimeout(U.next,J.slideshowSpeed)}).bind(h,function(){clearTimeout(a)}).one(c+" "+j,e),q.removeClass(b+"off").addClass(b+"on"),a=setTimeout(U.next,J.slideshowSpeed)},e=function(){clearTimeout(a),E.text(J.slideshowStart).unbind([i,h,j,c].join(" ")).one(c,d),q.removeClass(b+"on").addClass(b+"off")},J.slideshowAuto?d():e())}function $(b,c){c&&c.call(O),a.event.trigger(b)}function Z(b){for(var c in b)a.isFunction(b[c])&&c.substring(0,2)!=="on"&&(b[c]=b[c].call(O));b.rel=b.rel||O.rel||"nofollow",b.href=a.trim(b.href||a(O).attr("href")),b.title=b.title||O.title}function Y(a){return J.photo||/\.(gif|png|jpg|jpeg|bmp)(?:\?([^#]*))?(?:#(\.*))?$/i.test(a)}function X(a,b){b=b==="x"?y.width():y.height();return typeof a=="string"?Math.round(/%/.test(a)?b/100*parseInt(a,10):parseInt(a,10)):a}function W(c,d){var e=b.createElement("div");c&&(e.id=f+c),e.style.cssText=d||!1;return a(e)}var d={transition:"elastic",speed:300,width:!1,initialWidth:"600",innerWidth:!1,maxWidth:!1,height:!1,initialHeight:"450",innerHeight:!1,maxHeight:!1,scalePhotos:!0,scrolling:!0,inline:!1,html:!1,iframe:!1,fastIframe:!0,photo:!1,href:!1,title:!1,rel:!1,opacity:.9,preloading:!0,current:"image {current} of {total}",previous:"previous",next:"next",close:"close",open:!1,returnFocus:!0,loop:!0,slideshow:!1,slideshowAuto:!0,slideshowSpeed:2500,slideshowStart:"start slideshow",slideshowStop:"stop slideshow",onOpen:!1,onLoad:!1,onComplete:!1,onCleanup:!1,onClosed:!1,overlayClose:!0,escKey:!0,arrowKey:!0},e="colorbox",f="cbox",g=f+"_open",h=f+"_load",i=f+"_complete",j=f+"_cleanup",k=f+"_closed",l=f+"_purge",m=a.browser.msie&&!a.support.opacity,n=m&&a.browser.version<7,o=f+"_IE6",p,q,r,s,t,u,v,w,x,y,z,A,B,C,D,E,F,G,H,I,J={},K,L,M,N,O,P,Q,R,S,T=!1,U,V=f+"Element";U=a.fn[e]=a[e]=function(b,c){var f=this,g;if(!f[0]&&f.selector)return f;b=b||{},c&&(b.onComplete=c);if(!f[0]||f.selector===undefined)f=a("<a/>"),b.open=!0;f.each(function(){a.data(this,e,a.extend({},a.data(this,e)||d,b)),a(this).addClass(V)}),g=b.open,a.isFunction(g)&&(g=g.call(f)),g&&ba(f[0]);return f},U.init=function(){y=a(c),q=W().attr({id:e,"class":m?f+(n?"IE6":"IE"):""}),p=W("Overlay",n?"position:absolute":"").hide(),r=W("Wrapper"),s=W("Content").append(z=W("LoadedContent","width:0; height:0; overflow:hidden"),B=W("LoadingOverlay").add(W("LoadingGraphic")),C=W("Title"),D=W("Current"),F=W("Next"),G=W("Previous"),E=W("Slideshow").bind(g,_),H=W("Close")),r.append(W().append(W("TopLeft"),t=W("TopCenter"),W("TopRight")),W(!1,"clear:left").append(u=W("MiddleLeft"),s,v=W("MiddleRight")),W(!1,"clear:left").append(W("BottomLeft"),w=W("BottomCenter"),W("BottomRight"))).children().children().css({"float":"left"}),A=W(!1,"position:absolute; width:9999px; visibility:hidden; display:none"),a("body").prepend(p,q.append(r,A)),s.children().hover(function(){a(this).addClass("hover")},function(){a(this).removeClass("hover")}).addClass("hover"),K=t.height()+w.height()+s.outerHeight(!0)-s.height(),L=u.width()+v.width()+s.outerWidth(!0)-s.width(),M=z.outerHeight(!0),N=z.outerWidth(!0),q.css({"padding-bottom":K,"padding-right":L}).hide(),F.click(function(){U.next()}),G.click(function(){U.prev()}),H.click(function(){U.close()}),I=F.add(G).add(D).add(E),s.children().removeClass("hover"),a("."+V).live("click",function(a){a.button!==0&&typeof a.button!="undefined"||a.ctrlKey||a.shiftKey||a.altKey||(a.preventDefault(),ba(this))}),p.click(function(){J.overlayClose&&U.close()}),a(b).bind("keydown."+f,function(a){var b=a.keyCode;R&&J.escKey&&b===27&&(a.preventDefault(),U.close()),R&&J.arrowKey&&x[1]&&(b===37?(a.preventDefault(),G.click()):b===39&&(a.preventDefault(),F.click()))})},U.remove=function(){q.add(p).remove(),a("."+V).die("click").removeData(e).removeClass(V)},U.position=function(a,c){function g(a){t[0].style.width=w[0].style.width=s[0].style.width=a.style.width,B[0].style.height=B[1].style.height=s[0].style.height=u[0].style.height=v[0].style.height=a.style.height}var d,e=Math.max(b.documentElement.clientHeight-J.h-M-K,0)/2+y.scrollTop(),f=Math.max(y.width()-J.w-N-L,0)/2+y.scrollLeft();d=q.width()===J.w+N&&q.height()===J.h+M?0:a,r[0].style.width=r[0].style.height="9999px",q.dequeue().animate({width:J.w+N,height:J.h+M,top:e,left:f},{duration:d,complete:function(){g(this),S=!1,r[0].style.width=J.w+N+L+"px",r[0].style.height=J.h+M+K+"px",c&&c()},step:function(){g(this)}})},U.resize=function(a){if(R){a=a||{},a.width&&(J.w=X(a.width,"x")-N-L),a.innerWidth&&(J.w=X(a.innerWidth,"x")),z.css({width:J.w}),a.height&&(J.h=X(a.height,"y")-M-K),a.innerHeight&&(J.h=X(a.innerHeight,"y"));if(!a.innerHeight&&!a.height){var b=z.wrapInner("<div style='overflow:auto'></div>").children();J.h=b.height(),b.replaceWith(b.children())}z.css({height:J.h}),U.position(J.transition==="none"?0:J.speed)}},U.prep=function(b){function h(b){U.position(b,function(){var b,d,g,h,j=x.length,k,n;!R||(n=function(){B.hide(),$(i,J.onComplete)},m&&Q&&z.fadeIn(100),C.html(J.title).add(z).show(),j>1?(typeof J.current=="string"&&D.html(J.current.replace(/\{current\}/,P+1).replace(/\{total\}/,j)).show(),F[J.loop||P<j-1?"show":"hide"]().html(J.next),G[J.loop||P?"show":"hide"]().html(J.previous),b=P?x[P-1]:x[j-1],g=P<j-1?x[P+1]:x[0],J.slideshow&&E.show(),J.preloading&&(h=a.data(g,e).href||g.href,d=a.data(b,e).href||b.href,h=a.isFunction(h)?h.call(g):h,d=a.isFunction(d)?d.call(b):d,Y(h)&&(a("<img/>")[0].src=h),Y(d)&&(a("<img/>")[0].src=d))):I.hide(),J.iframe?(k=a("<iframe/>").addClass(f+"Iframe")[0],J.fastIframe?n():a(k).load(n),k.name=f+ +(new Date),k.src=J.href,J.scrolling||(k.scrolling="no"),m&&(k.frameBorder=0,k.allowTransparency="true"),a(k).appendTo(z).one(l,function(){k.src="//about:blank"})):n(),J.transition==="fade"?q.fadeTo(c,1,function(){q[0].style.filter=""}):q[0].style.filter="",y.bind("resize."+f,function(){U.position(0)}))})}function g(){J.h=J.h||z.height(),J.h=J.mh&&J.mh<J.h?J.mh:J.h;return J.h}function d(){J.w=J.w||z.width(),J.w=J.mw&&J.mw<J.w?J.mw:J.w;return J.w}if(!!R){var c=J.transition==="none"?0:J.speed;y.unbind("resize."+f),z.remove(),z=W("LoadedContent").html(b),z.hide().appendTo(A.show()).css({width:d(),overflow:J.scrolling?"auto":"hidden"}).css({height:g()}).prependTo(s),A.hide(),a(Q).css({"float":"none"}),n&&a("select").not(q.find("select")).filter(function(){return this.style.visibility!=="hidden"}).css({visibility:"hidden"}).one(j,function(){this.style.visibility="inherit"}),J.transition==="fade"?q.fadeTo(c,0,function(){h(0)}):h(c)}},U.load=function(b){var c,d,g=U.prep;S=!0,Q=!1,O=x[P],b||Z(a.extend(J,a.data(O,e))),$(l),$(h,J.onLoad),J.h=J.height?X(J.height,"y")-M-K:J.innerHeight&&X(J.innerHeight,"y"),J.w=J.width?X(J.width,"x")-N-L:J.innerWidth&&X(J.innerWidth,"x"),J.mw=J.w,J.mh=J.h,J.maxWidth&&(J.mw=X(J.maxWidth,"x")-N-L,J.mw=J.w&&J.w<J.mw?J.w:J.mw),J.maxHeight&&(J.mh=X(J.maxHeight,"y")-M-K,J.mh=J.h&&J.h<J.mh?J.h:J.mh),c=J.href,B.show(),J.inline?(W().hide().insertBefore(a(c)[0]).one(l,function(){a(this).replaceWith(z.children())}),g(a(c))):J.iframe?g(" "):J.html?g(J.html):Y(c)?(a(Q=new Image).addClass(f+"Photo").error(function(){J.title=!1,g(W("Error").text("This image could not be loaded"))}).load(function(){var a;Q.onload=null,J.scalePhotos&&(d=function(){Q.height-=Q.height*a,Q.width-=Q.width*a},J.mw&&Q.width>J.mw&&(a=(Q.width-J.mw)/Q.width,d()),J.mh&&Q.height>J.mh&&(a=(Q.height-J.mh)/Q.height,d())),J.h&&(Q.style.marginTop=Math.max(J.h-Q.height,0)/2+"px"),x[1]&&(P<x.length-1||J.loop)&&(Q.style.cursor="pointer",Q.onclick=function(){U.next()}),m&&(Q.style.msInterpolationMode="bicubic"),setTimeout(function(){g(Q)},1)}),setTimeout(function(){Q.src=c},1)):c&&A.load(c,function(b,c,d){g(c==="error"?W("Error").text("Request unsuccessful: "+d.statusText):a(this).contents())})},U.next=function(){!S&&x[1]&&(P<x.length-1||J.loop)&&(P=P<x.length-1?P+1:0,U.load())},U.prev=function(){!S&&x[1]&&(P||J.loop)&&(P=P?P-1:x.length-1,U.load())},U.close=function(){R&&!T&&(T=!0,R=!1,$(j,J.onCleanup),y.unbind("."+f+" ."+o),p.fadeTo(200,0),q.stop().fadeTo(300,0,function(){q.add(p).css({opacity:1,cursor:"auto"}).hide(),$(l),z.remove(),setTimeout(function(){T=!1,$(k,J.onClosed)},1)}))},U.element=function(){return a(O)},U.settings=d,a(U.init)})(jQuery,document,this);
1
+ // ColorBox v1.3.17.1 - a full featured, light-weight, customizable lightbox based on jQuery 1.3+
2
  // Copyright (c) 2011 Jack Moore - jack@colorpowered.com
3
  // Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
4
+ (function(a,b,c){function bc(b){if(!T){O=b,_(a.extend(J,a.data(O,e))),x=a(O),P=0,J.rel!=="nofollow"&&(x=a("."+X).filter(function(){var b=a.data(this,e).rel||this.rel;return b===J.rel}),P=x.index(O),P===-1&&(x=x.add(O),P=x.length-1));if(!R){R=S=!0,q.show();if(J.returnFocus)try{O.blur(),a(O).one(k,function(){try{this.focus()}catch(a){}})}catch(c){}p.css({opacity:+J.opacity,cursor:J.overlayClose?"pointer":"auto"}).show(),J.w=Z(J.initialWidth,"x"),J.h=Z(J.initialHeight,"y"),W.position(0),n&&y.bind("resize."+o+" scroll."+o,function(){p.css({width:y.width(),height:y.height(),top:y.scrollTop(),left:y.scrollLeft()})}).trigger("resize."+o),ba(g,J.onOpen),I.add(C).hide(),H.html(J.close).show()}W.load(!0)}}function bb(){var a,b=f+"Slideshow_",c="click."+f,d,e,g;J.slideshow&&x[1]?(d=function(){E.text(J.slideshowStop).unbind(c).bind(i,function(){if(P<x.length-1||J.loop)a=setTimeout(W.next,J.slideshowSpeed)}).bind(h,function(){clearTimeout(a)}).one(c+" "+j,e),q.removeClass(b+"off").addClass(b+"on"),a=setTimeout(W.next,J.slideshowSpeed)},e=function(){clearTimeout(a),E.text(J.slideshowStart).unbind([i,h,j,c].join(" ")).one(c,d),q.removeClass(b+"on").addClass(b+"off")},J.slideshowAuto?d():e()):q.removeClass(b+"off "+b+"on")}function ba(b,c){c&&c.call(O),a.event.trigger(b)}function _(b){for(var c in b)a.isFunction(b[c])&&c.substring(0,2)!=="on"&&(b[c]=b[c].call(O));b.rel=b.rel||O.rel||"nofollow",b.href=b.href||a(O).attr("href"),b.title=b.title||O.title,typeof b.href=="string"&&(b.href=a.trim(b.href))}function $(a){return J.photo||/\.(gif|png|jpg|jpeg|bmp)(?:\?([^#]*))?(?:#(\.*))?$/i.test(a)}function Z(a,b){b=b==="x"?y.width():y.height();return typeof a=="string"?Math.round(/%/.test(a)?b/100*parseInt(a,10):parseInt(a,10)):a}function Y(c,d){var e=b.createElement("div");c&&(e.id=f+c),e.style.cssText=d||"";return a(e)}var d={transition:"elastic",speed:300,width:!1,initialWidth:"600",innerWidth:!1,maxWidth:!1,height:!1,initialHeight:"450",innerHeight:!1,maxHeight:!1,scalePhotos:!0,scrolling:!0,inline:!1,html:!1,iframe:!1,fastIframe:!0,photo:!1,href:!1,title:!1,rel:!1,opacity:.9,preloading:!0,current:"image {current} of {total}",previous:"previous",next:"next",close:"close",open:!1,returnFocus:!0,loop:!0,slideshow:!1,slideshowAuto:!0,slideshowSpeed:2500,slideshowStart:"start slideshow",slideshowStop:"stop slideshow",onOpen:!1,onLoad:!1,onComplete:!1,onCleanup:!1,onClosed:!1,overlayClose:!0,escKey:!0,arrowKey:!0,top:!1,bottom:!1,left:!1,right:!1,fixed:!1,data:!1},e="colorbox",f="cbox",g=f+"_open",h=f+"_load",i=f+"_complete",j=f+"_cleanup",k=f+"_closed",l=f+"_purge",m=a.browser.msie&&!a.support.opacity,n=m&&a.browser.version<7,o=f+"_IE6",p,q,r,s,t,u,v,w,x,y,z,A,B,C,D,E,F,G,H,I,J={},K,L,M,N,O,P,Q,R,S,T,U,V,W,X=f+"Element";W=a.fn[e]=a[e]=function(b,c){var f=this,g;if(!f[0]&&f.selector)return f;b=b||{},c&&(b.onComplete=c);if(!f[0]||f.selector===undefined)f=a("<a/>"),b.open=!0;f.each(function(){a.data(this,e,a.extend({},a.data(this,e)||d,b)),a(this).addClass(X)}),g=b.open,a.isFunction(g)&&(g=g.call(f)),g&&bc(f[0]);return f},W.init=function(){y=a(c),q=Y().attr({id:e,"class":m?f+(n?"IE6":"IE"):""}),p=Y("Overlay",n?"position:absolute":"").hide(),r=Y("Wrapper"),s=Y("Content").append(z=Y("LoadedContent","width:0; height:0; overflow:hidden"),B=Y("LoadingOverlay").add(Y("LoadingGraphic")),C=Y("Title"),D=Y("Current"),F=Y("Next"),G=Y("Previous"),E=Y("Slideshow").bind(g,bb),H=Y("Close")),r.append(Y().append(Y("TopLeft"),t=Y("TopCenter"),Y("TopRight")),Y(!1,"clear:left").append(u=Y("MiddleLeft"),s,v=Y("MiddleRight")),Y(!1,"clear:left").append(Y("BottomLeft"),w=Y("BottomCenter"),Y("BottomRight"))).children().children().css({"float":"left"}),A=Y(!1,"position:absolute; width:9999px; visibility:hidden; display:none"),a("body").prepend(p,q.append(r,A)),s.children().hover(function(){a(this).addClass("hover")},function(){a(this).removeClass("hover")}).addClass("hover"),K=t.height()+w.height()+s.outerHeight(!0)-s.height(),L=u.width()+v.width()+s.outerWidth(!0)-s.width(),M=z.outerHeight(!0),N=z.outerWidth(!0),q.css({"padding-bottom":K,"padding-right":L}).hide(),F.click(function(){W.next()}),G.click(function(){W.prev()}),H.click(function(){W.close()}),I=F.add(G).add(D).add(E),s.children().removeClass("hover"),p.click(function(){J.overlayClose&&W.close()}),a(b).bind("keydown."+f,function(a){var b=a.keyCode;R&&J.escKey&&b===27&&(a.preventDefault(),W.close()),R&&J.arrowKey&&x[1]&&(b===37?(a.preventDefault(),G.click()):b===39&&(a.preventDefault(),F.click()))})},W.remove=function(){q.add(p).remove(),a("."+X).removeData(e).removeClass(X)},W.position=function(a,c){function g(a){t[0].style.width=w[0].style.width=s[0].style.width=a.style.width,B[0].style.height=B[1].style.height=s[0].style.height=u[0].style.height=v[0].style.height=a.style.height}var d,e=0,f=0;q.hide(),J.fixed&&!n?q.css({position:"fixed"}):(e=y.scrollTop(),f=y.scrollLeft(),q.css({position:"absolute"})),J.right!==!1?f+=Math.max(y.width()-J.w-N-L-Z(J.right,"x"),0):J.left!==!1?f+=Z(J.left,"x"):f+=Math.max(y.width()-J.w-N-L,0)/2,J.bottom!==!1?e+=Math.max(b.documentElement.clientHeight-J.h-M-K-Z(J.bottom,"y"),0):J.top!==!1?e+=Z(J.top,"y"):e+=Math.max(b.documentElement.clientHeight-J.h-M-K,0)/2,q.show(),d=q.width()===J.w+N&&q.height()===J.h+M?0:a,r[0].style.width=r[0].style.height="9999px",q.dequeue().animate({width:J.w+N,height:J.h+M,top:e,left:f},{duration:d,complete:function(){g(this),S=!1,r[0].style.width=J.w+N+L+"px",r[0].style.height=J.h+M+K+"px",c&&c()},step:function(){g(this)}})},W.resize=function(a){if(R){a=a||{},a.width&&(J.w=Z(a.width,"x")-N-L),a.innerWidth&&(J.w=Z(a.innerWidth,"x")),z.css({width:J.w}),a.height&&(J.h=Z(a.height,"y")-M-K),a.innerHeight&&(J.h=Z(a.innerHeight,"y"));if(!a.innerHeight&&!a.height){var b=z.wrapInner("<div style='overflow:auto'></div>").children();J.h=b.height(),b.replaceWith(b.children())}z.css({height:J.h}),W.position(J.transition==="none"?0:J.speed)}},W.prep=function(b){function h(b){W.position(b,function(){function o(){m&&q[0].style.removeAttribute("filter")}var b,d,g,h,j=x.length,k,n;!R||(n=function(){clearTimeout(V),B.hide(),ba(i,J.onComplete)},m&&Q&&z.fadeIn(100),C.html(J.title).add(z).show(),j>1?(typeof J.current=="string"&&D.html(J.current.replace(/\{current\}/,P+1).replace(/\{total\}/,j)).show(),F[J.loop||P<j-1?"show":"hide"]().html(J.next),G[J.loop||P?"show":"hide"]().html(J.previous),b=P?x[P-1]:x[j-1],g=P<j-1?x[P+1]:x[0],J.slideshow&&E.show(),J.preloading&&(h=a.data(g,e).href||g.href,d=a.data(b,e).href||b.href,h=a.isFunction(h)?h.call(g):h,d=a.isFunction(d)?d.call(b):d,$(h)&&(a("<img/>")[0].src=h),$(d)&&(a("<img/>")[0].src=d))):I.hide(),J.iframe?(k=a("<iframe/>").addClass(f+"Iframe")[0],J.fastIframe?n():a(k).one("load",n),k.name=f+ +(new Date),k.src=J.href,J.scrolling||(k.scrolling="no"),m&&(k.frameBorder=0,k.allowTransparency="true"),a(k).appendTo(z).one(l,function(){k.src="//about:blank"})):n(),J.transition==="fade"?q.fadeTo(c,1,o):o(),y.bind("resize."+f,function(){W.position(0)}))})}function g(){J.h=J.h||z.height(),J.h=J.mh&&J.mh<J.h?J.mh:J.h;return J.h}function d(){J.w=J.w||z.width(),J.w=J.mw&&J.mw<J.w?J.mw:J.w;return J.w}if(!!R){var c=J.transition==="none"?0:J.speed;y.unbind("resize."+f),z.remove(),z=Y("LoadedContent").html(b),z.hide().appendTo(A.show()).css({width:d(),overflow:J.scrolling?"auto":"hidden"}).css({height:g()}).prependTo(s),A.hide(),a(Q).css({"float":"none"}),n&&a("select").not(q.find("select")).filter(function(){return this.style.visibility!=="hidden"}).css({visibility:"hidden"}).one(j,function(){this.style.visibility="inherit"}),J.transition==="fade"?q.fadeTo(c,0,function(){h(0)}):h(c)}},W.load=function(b){var c,d,g=W.prep;S=!0,Q=!1,O=x[P],b||_(a.extend(J,a.data(O,e))),ba(l),ba(h,J.onLoad),J.h=J.height?Z(J.height,"y")-M-K:J.innerHeight&&Z(J.innerHeight,"y"),J.w=J.width?Z(J.width,"x")-N-L:J.innerWidth&&Z(J.innerWidth,"x"),J.mw=J.w,J.mh=J.h,J.maxWidth&&(J.mw=Z(J.maxWidth,"x")-N-L,J.mw=J.w&&J.w<J.mw?J.w:J.mw),J.maxHeight&&(J.mh=Z(J.maxHeight,"y")-M-K,J.mh=J.h&&J.h<J.mh?J.h:J.mh),c=J.href,V=setTimeout(function(){B.show()},100),J.inline?(Y().hide().insertBefore(a(c)[0]).one(l,function(){a(this).replaceWith(z.children())}),g(a(c))):J.iframe?g(" "):J.html?g(J.html):$(c)?(a(Q=new Image).addClass(f+"Photo").error(function(){J.title=!1,g(Y("Error").text("This image could not be loaded"))}).load(function(){var a;Q.onload=null,J.scalePhotos&&(d=function(){Q.height-=Q.height*a,Q.width-=Q.width*a},J.mw&&Q.width>J.mw&&(a=(Q.width-J.mw)/Q.width,d()),J.mh&&Q.height>J.mh&&(a=(Q.height-J.mh)/Q.height,d())),J.h&&(Q.style.marginTop=Math.max(J.h-Q.height,0)/2+"px"),x[1]&&(P<x.length-1||J.loop)&&(Q.style.cursor="pointer",Q.onclick=function(){W.next()}),m&&(Q.style.msInterpolationMode="bicubic"),setTimeout(function(){g(Q)},1)}),setTimeout(function(){Q.src=c},1)):c&&A.load(c,J.data,function(b,c,d){g(c==="error"?Y("Error").text("Request unsuccessful: "+d.statusText):a(this).contents())})},W.next=function(){!S&&x[1]&&(P<x.length-1||J.loop)&&(P=P<x.length-1?P+1:0,W.load())},W.prev=function(){!S&&x[1]&&(P||J.loop)&&(P=P?P-1:x.length-1,W.load())},W.close=function(){R&&!T&&(T=!0,R=!1,ba(j,J.onCleanup),y.unbind("."+f+" ."+o),p.fadeTo(200,0),q.stop().fadeTo(300,0,function(){q.add(p).css({opacity:1,cursor:"auto"}).hide(),ba(l),z.remove(),setTimeout(function(){T=!1,ba(k,J.onClosed)},1)}))},W.element=function(){return a(O)},W.settings=d,U=function(a){a.button!==0&&typeof a.button!="undefined"||a.ctrlKey||a.shiftKey||a.altKey||(a.preventDefault(),bc(this))},a.fn.delegate?a(b).delegate("."+X,"click",U):a("."+X).live("click",U),a(W.init)})(jQuery,document,this)
js/jquery.colorbox.js CHANGED
@@ -1,4 +1,4 @@
1
- // ColorBox v1.3.16 - a full featured, light-weight, customizable lightbox based on jQuery 1.3+
2
  // Copyright (c) 2011 Jack Moore - jack@colorpowered.com
3
  // Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
4
  (function ($, document, window) {
@@ -47,7 +47,13 @@
47
  onClosed: false,
48
  overlayClose: true,
49
  escKey: true,
50
- arrowKey: true
 
 
 
 
 
 
51
  },
52
 
53
  // Abstracting the HTML and event identifiers for easy rebranding
@@ -63,7 +69,7 @@
63
  event_purge = prefix + '_purge',
64
 
65
  // Special Handling for IE
66
- isIE = $.browser.msie && !$.support.opacity, // feature detection alone gave a false positive on at least one phone browser and on some development versions of Chrome.
67
  isIE6 = isIE && $.browser.version < 7,
68
  event_ie6 = prefix + '_IE6',
69
 
@@ -100,7 +106,9 @@
100
  photo,
101
  open,
102
  active,
103
- closing = false,
 
 
104
 
105
  publicMethod,
106
  boxElement = prefix + 'Element';
@@ -115,7 +123,7 @@
115
  if (id) {
116
  div.id = prefix + id;
117
  }
118
- div.style.cssText = cssText || false;
119
  return $(div);
120
  }
121
 
@@ -138,9 +146,14 @@
138
  settings[i] = settings[i].call(element);
139
  }
140
  }
 
141
  settings.rel = settings.rel || element.rel || 'nofollow';
142
- settings.href = $.trim(settings.href || $(element).attr('href'));
143
  settings.title = settings.title || element.title;
 
 
 
 
144
  }
145
 
146
  function trigger(event, callback) {
@@ -192,7 +205,9 @@
192
  } else {
193
  stop();
194
  }
195
- }
 
 
196
  }
197
 
198
  function launch(elem) {
@@ -365,16 +380,16 @@
365
  // Setting padding to remove the need to do size conversions during the animation step.
366
  $box.css({"padding-bottom": interfaceHeight, "padding-right": interfaceWidth}).hide();
367
 
368
- // Setup button events.
369
- $next.click(function () {
370
- publicMethod.next();
371
- });
372
- $prev.click(function () {
373
- publicMethod.prev();
374
- });
375
- $close.click(function () {
376
- publicMethod.close();
377
- });
378
 
379
  $groupControls = $next.add($prev).add($current).add($slideshow);
380
 
@@ -382,14 +397,9 @@
382
  // background graphics. The class can now can be removed.
383
  $content.children().removeClass('hover');
384
 
385
- $('.' + boxElement).live('click', function (e) {
386
- // checks to see if it was a non-left mouse-click and for clicks modified with ctrl, shift, or alt.
387
- if (!((e.button !== 0 && typeof e.button !== 'undefined') || e.ctrlKey || e.shiftKey || e.altKey)) {
388
- e.preventDefault();
389
- launch(this);
390
- }
391
- });
392
-
393
  $overlay.click(function () {
394
  if (settings.overlayClose) {
395
  publicMethod.close();
@@ -398,7 +408,7 @@
398
 
399
  // Set Navigation Key Bindings
400
  $(document).bind('keydown.' + prefix, function (e) {
401
- var key = e.keyCode;
402
  if (open && settings.escKey && key === 27) {
403
  e.preventDefault();
404
  publicMethod.close();
@@ -417,19 +427,45 @@
417
 
418
  publicMethod.remove = function () {
419
  $box.add($overlay).remove();
420
- $('.' + boxElement).die('click').removeData(colorbox).removeClass(boxElement);
421
  };
422
 
423
  publicMethod.position = function (speed, loadedCallback) {
424
- var
425
- animate_speed,
 
 
 
 
 
 
 
 
 
 
 
426
  // keeps the top and left positions within the browser's viewport.
427
- posTop = Math.max(document.documentElement.clientHeight - settings.h - loadedHeight - interfaceHeight, 0) / 2 + $window.scrollTop(),
428
- posLeft = Math.max($window.width() - settings.w - loadedWidth - interfaceWidth, 0) / 2 + $window.scrollLeft();
429
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
430
  // setting the speed to 0 to reduce the delay between same-sized content.
431
  animate_speed = ($box.width() === settings.w + loadedWidth && $box.height() === settings.h + loadedHeight) ? 0 : speed;
432
-
433
  // this gives the wrapper plenty of breathing room so it's floated contents can move around smoothly,
434
  // but it has to be shrank down around the size of div#colorbox when it's done. If not,
435
  // it can invoke an obscure IE bug when using iframes.
@@ -441,7 +477,7 @@
441
  $loadingOverlay[0].style.height = $loadingOverlay[1].style.height = $content[0].style.height = $leftBorder[0].style.height = $rightBorder[0].style.height = that.style.height;
442
  }
443
 
444
- $box.dequeue().animate({width: settings.w + loadedWidth, height: settings.h + loadedHeight, top: posTop, left: posLeft}, {
445
  duration: animate_speed,
446
  complete: function () {
447
  modalDimensions(this);
@@ -524,8 +560,8 @@
524
  // floating the IMG removes the bottom line-height and fixed a problem where IE miscalculates the width of the parent element as 100% of the document width.
525
  //$(photo).css({'float': 'none', marginLeft: 'auto', marginRight: 'auto'});
526
 
527
- $(photo).css({'float': 'none'});
528
-
529
  // Hides SELECT elements in IE6 because they would otherwise sit on top of the overlay.
530
  if (isIE6) {
531
  $('select').not($box.find('select')).filter(function () {
@@ -543,7 +579,14 @@
543
  return;
544
  }
545
 
 
 
 
 
 
 
546
  complete = function () {
 
547
  $loadingOverlay.hide();
548
  trigger(event_complete, settings.onComplete);
549
  };
@@ -598,7 +641,7 @@
598
  if (settings.fastIframe) {
599
  complete();
600
  } else {
601
- $(iframe).load(complete);
602
  }
603
  iframe.name = prefix + (+new Date());
604
  iframe.src = settings.href;
@@ -608,7 +651,7 @@
608
  }
609
 
610
  if (isIE) {
611
- iframe.frameBorder=0;
612
  iframe.allowTransparency = "true";
613
  }
614
 
@@ -620,11 +663,9 @@
620
  }
621
 
622
  if (settings.transition === 'fade') {
623
- $box.fadeTo(speed, 1, function () {
624
- $box[0].style.filter = "";
625
- });
626
  } else {
627
- $box[0].style.filter = "";
628
  }
629
 
630
  $window.bind('resize.' + prefix, function () {
@@ -684,8 +725,10 @@
684
 
685
  href = settings.href;
686
 
687
- $loadingOverlay.show();
688
-
 
 
689
  if (settings.inline) {
690
  // Inserts an empty placeholder where inline content is being pulled from.
691
  // An event is bound to put inline content back when ColorBox closes or loads new content.
@@ -732,8 +775,8 @@
732
  if ($related[1] && (index < $related.length - 1 || settings.loop)) {
733
  photo.style.cursor = 'pointer';
734
  photo.onclick = function () {
735
- publicMethod.next();
736
- };
737
  }
738
 
739
  if (isIE) {
@@ -749,7 +792,7 @@
749
  photo.src = href;
750
  }, 1);
751
  } else if (href) {
752
- $loadingBay.load(href, function (data, status, xhr) {
753
  prep(status === 'error' ? $div('Error').text('Request unsuccessful: ' + xhr.statusText) : $(this).contents());
754
  });
755
  }
@@ -785,7 +828,7 @@
785
  $overlay.fadeTo(200, 0);
786
 
787
  $box.stop().fadeTo(300, 0, function () {
788
-
789
  $box.add($overlay).css({'opacity': 1, cursor: 'auto'}).hide();
790
 
791
  trigger(event_purge);
@@ -807,7 +850,22 @@
807
  };
808
 
809
  publicMethod.settings = defaults;
810
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
811
  // Initializes ColorBox when the DOM has loaded
812
  $(publicMethod.init);
813
 
1
+ // ColorBox v1.3.17.1 - a full featured, light-weight, customizable lightbox based on jQuery 1.3+
2
  // Copyright (c) 2011 Jack Moore - jack@colorpowered.com
3
  // Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
4
  (function ($, document, window) {
47
  onClosed: false,
48
  overlayClose: true,
49
  escKey: true,
50
+ arrowKey: true,
51
+ top: false,
52
+ bottom: false,
53
+ left: false,
54
+ right: false,
55
+ fixed: false,
56
+ data: false
57
  },
58
 
59
  // Abstracting the HTML and event identifiers for easy rebranding
69
  event_purge = prefix + '_purge',
70
 
71
  // Special Handling for IE
72
+ isIE = $.browser.msie && !$.support.opacity, // Detects IE6,7,8. IE9 supports opacity. Feature detection alone gave a false positive on at least one phone browser and on some development versions of Chrome, hence the user-agent test.
73
  isIE6 = isIE && $.browser.version < 7,
74
  event_ie6 = prefix + '_IE6',
75
 
106
  photo,
107
  open,
108
  active,
109
+ closing,
110
+ handler,
111
+ loadingTimer,
112
 
113
  publicMethod,
114
  boxElement = prefix + 'Element';
123
  if (id) {
124
  div.id = prefix + id;
125
  }
126
+ div.style.cssText = cssText || '';
127
  return $(div);
128
  }
129
 
146
  settings[i] = settings[i].call(element);
147
  }
148
  }
149
+
150
  settings.rel = settings.rel || element.rel || 'nofollow';
151
+ settings.href = settings.href || $(element).attr('href');
152
  settings.title = settings.title || element.title;
153
+
154
+ if (typeof settings.href === "string") {
155
+ settings.href = $.trim(settings.href);
156
+ }
157
  }
158
 
159
  function trigger(event, callback) {
205
  } else {
206
  stop();
207
  }
208
+ } else {
209
+ $box.removeClass(className + "off " + className + "on");
210
+ }
211
  }
212
 
213
  function launch(elem) {
380
  // Setting padding to remove the need to do size conversions during the animation step.
381
  $box.css({"padding-bottom": interfaceHeight, "padding-right": interfaceWidth}).hide();
382
 
383
+ // Setup button events.
384
+ $next.click(function () {
385
+ publicMethod.next();
386
+ });
387
+ $prev.click(function () {
388
+ publicMethod.prev();
389
+ });
390
+ $close.click(function () {
391
+ publicMethod.close();
392
+ });
393
 
394
  $groupControls = $next.add($prev).add($current).add($slideshow);
395
 
397
  // background graphics. The class can now can be removed.
398
  $content.children().removeClass('hover');
399
 
400
+
401
+
402
+
 
 
 
 
 
403
  $overlay.click(function () {
404
  if (settings.overlayClose) {
405
  publicMethod.close();
408
 
409
  // Set Navigation Key Bindings
410
  $(document).bind('keydown.' + prefix, function (e) {
411
+ var key = e.keyCode;
412
  if (open && settings.escKey && key === 27) {
413
  e.preventDefault();
414
  publicMethod.close();
427
 
428
  publicMethod.remove = function () {
429
  $box.add($overlay).remove();
430
+ $('.' + boxElement).removeData(colorbox).removeClass(boxElement);
431
  };
432
 
433
  publicMethod.position = function (speed, loadedCallback) {
434
+ var animate_speed, top = 0, left = 0;
435
+
436
+ // remove the modal so that it doesn't influence the document width/height
437
+ $box.hide();
438
+
439
+ if (settings.fixed && !isIE6) {
440
+ $box.css({position: 'fixed'});
441
+ } else {
442
+ top = $window.scrollTop();
443
+ left = $window.scrollLeft();
444
+ $box.css({position: 'absolute'});
445
+ }
446
+
447
  // keeps the top and left positions within the browser's viewport.
448
+ if (settings.right !== false) {
449
+ left += Math.max($window.width() - settings.w - loadedWidth - interfaceWidth - setSize(settings.right, 'x'), 0);
450
+ } else if (settings.left !== false) {
451
+ left += setSize(settings.left, 'x');
452
+ } else {
453
+ left += Math.max($window.width() - settings.w - loadedWidth - interfaceWidth, 0) / 2;
454
+ }
455
+
456
+ if (settings.bottom !== false) {
457
+ top += Math.max(document.documentElement.clientHeight - settings.h - loadedHeight - interfaceHeight - setSize(settings.bottom, 'y'), 0);
458
+ } else if (settings.top !== false) {
459
+ top += setSize(settings.top, 'y');
460
+ } else {
461
+ top += Math.max(document.documentElement.clientHeight - settings.h - loadedHeight - interfaceHeight, 0) / 2;
462
+ }
463
+
464
+ $box.show();
465
+
466
  // setting the speed to 0 to reduce the delay between same-sized content.
467
  animate_speed = ($box.width() === settings.w + loadedWidth && $box.height() === settings.h + loadedHeight) ? 0 : speed;
468
+
469
  // this gives the wrapper plenty of breathing room so it's floated contents can move around smoothly,
470
  // but it has to be shrank down around the size of div#colorbox when it's done. If not,
471
  // it can invoke an obscure IE bug when using iframes.
477
  $loadingOverlay[0].style.height = $loadingOverlay[1].style.height = $content[0].style.height = $leftBorder[0].style.height = $rightBorder[0].style.height = that.style.height;
478
  }
479
 
480
+ $box.dequeue().animate({width: settings.w + loadedWidth, height: settings.h + loadedHeight, top: top, left: left}, {
481
  duration: animate_speed,
482
  complete: function () {
483
  modalDimensions(this);
560
  // floating the IMG removes the bottom line-height and fixed a problem where IE miscalculates the width of the parent element as 100% of the document width.
561
  //$(photo).css({'float': 'none', marginLeft: 'auto', marginRight: 'auto'});
562
 
563
+ $(photo).css({'float': 'none'});
564
+
565
  // Hides SELECT elements in IE6 because they would otherwise sit on top of the overlay.
566
  if (isIE6) {
567
  $('select').not($box.find('select')).filter(function () {
579
  return;
580
  }
581
 
582
+ function removeFilter() {
583
+ if (isIE) {
584
+ $box[0].style.removeAttribute('filter');
585
+ }
586
+ }
587
+
588
  complete = function () {
589
+ clearTimeout(loadingTimer);
590
  $loadingOverlay.hide();
591
  trigger(event_complete, settings.onComplete);
592
  };
641
  if (settings.fastIframe) {
642
  complete();
643
  } else {
644
+ $(iframe).one('load', complete);
645
  }
646
  iframe.name = prefix + (+new Date());
647
  iframe.src = settings.href;
651
  }
652
 
653
  if (isIE) {
654
+ iframe.frameBorder = 0;
655
  iframe.allowTransparency = "true";
656
  }
657
 
663
  }
664
 
665
  if (settings.transition === 'fade') {
666
+ $box.fadeTo(speed, 1, removeFilter);
 
 
667
  } else {
668
+ removeFilter();
669
  }
670
 
671
  $window.bind('resize.' + prefix, function () {
725
 
726
  href = settings.href;
727
 
728
+ loadingTimer = setTimeout(function () {
729
+ $loadingOverlay.show();
730
+ }, 100);
731
+
732
  if (settings.inline) {
733
  // Inserts an empty placeholder where inline content is being pulled from.
734
  // An event is bound to put inline content back when ColorBox closes or loads new content.
775
  if ($related[1] && (index < $related.length - 1 || settings.loop)) {
776
  photo.style.cursor = 'pointer';
777
  photo.onclick = function () {
778
+ publicMethod.next();
779
+ };
780
  }
781
 
782
  if (isIE) {
792
  photo.src = href;
793
  }, 1);
794
  } else if (href) {
795
+ $loadingBay.load(href, settings.data, function (data, status, xhr) {
796
  prep(status === 'error' ? $div('Error').text('Request unsuccessful: ' + xhr.statusText) : $(this).contents());
797
  });
798
  }
828
  $overlay.fadeTo(200, 0);
829
 
830
  $box.stop().fadeTo(300, 0, function () {
831
+
832
  $box.add($overlay).css({'opacity': 1, cursor: 'auto'}).hide();
833
 
834
  trigger(event_purge);
850
  };
851
 
852
  publicMethod.settings = defaults;
853
+
854
+ // Bind the live event before DOM-ready for maximum performance in IE6 & 7.
855
+ handler = function (e) {
856
+ // checks to see if it was a non-left mouse-click and for clicks modified with ctrl, shift, or alt.
857
+ if (!((e.button !== 0 && typeof e.button !== 'undefined') || e.ctrlKey || e.shiftKey || e.altKey)) {
858
+ e.preventDefault();
859
+ launch(this);
860
+ }
861
+ };
862
+
863
+ if ($.fn.delegate) {
864
+ $(document).delegate('.' + boxElement, 'click', handler);
865
+ } else {
866
+ $('.' + boxElement).live('click', handler);
867
+ }
868
+
869
  // Initializes ColorBox when the DOM has loaded
870
  $(publicMethod.init);
871
 
localization/jquery-colorbox-ar.mo CHANGED
Binary file
localization/jquery-colorbox-ar.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: jQuery-Colorbox 3.8.3 Arabic\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2011-04-16 21:46+0100\n"
6
- "PO-Revision-Date: 2011-04-16 21:46+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Mickey Mouse <modarsoos@yahoo.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -15,141 +15,141 @@ msgstr ""
15
  "X-Poedit-Country: SYRIAN ARAB REPUBLIC\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: jquery-colorbox.php:122
19
  msgid "Theme #1"
20
  msgstr "القالب الأول"
21
 
22
- #: jquery-colorbox.php:123
23
  msgid "Theme #2"
24
  msgstr "القالب الثاني"
25
 
26
- #: jquery-colorbox.php:124
27
  msgid "Theme #3"
28
  msgstr "القالب الثالث"
29
 
30
- #: jquery-colorbox.php:125
31
  msgid "Theme #4"
32
  msgstr "القالب الرابع"
33
 
34
- #: jquery-colorbox.php:126
35
  msgid "Theme #5"
36
  msgstr "القالب الخامس"
37
 
38
- #: jquery-colorbox.php:127
39
  msgid "Theme #6"
40
  msgstr "القالب السادس"
41
 
42
- #: jquery-colorbox.php:128
43
  msgid "Theme #7"
44
  msgstr "القالب السابع"
45
 
46
- #: jquery-colorbox.php:129
47
  msgid "Theme #8"
48
  msgstr "القالب الثامن"
49
 
50
- #: jquery-colorbox.php:130
51
  msgid "Theme #9"
52
  msgstr "القالب التاسع"
53
 
54
- #: jquery-colorbox.php:131
55
  msgid "Theme #10"
56
  msgstr "القالب العاشر"
57
 
58
- #: jquery-colorbox.php:132
59
  msgid "Theme #11"
60
  msgstr "القالب الحادي عشر"
61
 
62
- #: jquery-colorbox.php:138
63
  msgid "Theme #12"
64
  msgstr "القالب الثاني عشر"
65
 
66
- #: jquery-colorbox.php:139
67
  msgid "Theme #13"
68
  msgstr "القالب الثالث عشر"
69
 
70
- #: jquery-colorbox.php:140
71
  msgid "Theme #14"
72
  msgstr "القالب الرابع عشر"
73
 
74
- #: jquery-colorbox.php:141
75
  msgid "Theme #15"
76
  msgstr "القالب الخامس عشر"
77
 
78
- #: jquery-colorbox.php:146
79
  msgid "percent"
80
  msgstr "بالمئة"
81
 
82
- #: jquery-colorbox.php:147
83
  #: includes/settings-page.php:434
84
  #: includes/settings-page.php:443
85
  msgid "pixels"
86
  msgstr "بيكسل"
87
 
88
- #: jquery-colorbox.php:152
89
  msgid "elastic"
90
  msgstr "تمدد"
91
 
92
- #: jquery-colorbox.php:153
93
  msgid "fade"
94
  msgstr "تضاءل"
95
 
96
- #: jquery-colorbox.php:154
97
  msgid "none"
98
  msgstr "بدون تأثير"
99
 
100
- #: jquery-colorbox.php:206
101
- msgid "Using"
102
- msgstr "أستخدم معرض صور"
103
-
104
- #: jquery-colorbox.php:307
105
- #: includes/settings-page.php:127
106
- msgid "Settings"
107
- msgstr "إعدادات"
108
-
109
- #: jquery-colorbox.php:372
110
  #, php-format
111
  msgid "Successfully updated %1$s settings."
112
  msgstr "تم تحديث إعدادات برنامج %1$s بنجاح."
113
 
114
- #: jquery-colorbox.php:374
115
  #, php-format
116
  msgid "%1$s settings were successfully deleted."
117
  msgstr "%1$s تم حذف الإعدادات بنجاح."
118
 
119
- #: jquery-colorbox.php:419
120
  msgid "needs attention: the plugin is not activated to work for all images."
121
  msgstr "تنبيه: لم يتم تنشيط برنامج صندوق عرض الشرائح ليعمل على جميع الصور."
122
 
123
- #: jquery-colorbox.php:501
 
 
 
 
 
124
  msgid "Did not update settings, you do not have the necessary rights."
125
  msgstr "لم يتم تحديث الإعدادات، ليس لديك الصلاحيات الكافية."
126
 
127
- #: jquery-colorbox.php:550
128
  #, php-format
129
  msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
130
  msgstr "لم يتم حذف إعدادات %1$s أو ليس لديك الصلاحيات الكافية أو بأنك لم تقم بتحديد العلامة داخل المربع الصغير قبل الضغط على زر حذف الإعدادات."
131
 
132
- #: includes/colorbox-javascript-loader.php:48
 
 
 
 
133
  msgid "close"
134
  msgstr "إغلاق"
135
 
136
- #: includes/colorbox-javascript-loader.php:49
137
  msgid "next"
138
  msgstr "التالي"
139
 
140
- #: includes/colorbox-javascript-loader.php:50
141
  msgid "previous"
142
  msgstr "السابق"
143
 
144
- #: includes/colorbox-javascript-loader.php:51
145
  msgid "start slideshow"
146
  msgstr "بدء عرض الشرائح"
147
 
148
- #: includes/colorbox-javascript-loader.php:52
149
  msgid "stop slideshow"
150
  msgstr "إيقاف عرض الشرائح"
151
 
152
- #: includes/colorbox-javascript-loader.php:53
153
  msgid "{current} of {total} images"
154
  msgstr "{current} من {total} إجمالي الصور"
155
 
@@ -162,11 +162,6 @@ msgstr "إعدادات %1$s"
162
  msgid "Plugin settings"
163
  msgstr "إعدادات الإضافة"
164
 
165
- #: includes/settings-page.php:135
166
- #, php-format
167
- msgid "Automate %1$s for all images"
168
- msgstr "شغل برنامج %1$s لجميع الصور تلقائياً"
169
-
170
  #: includes/settings-page.php:135
171
  #, php-format
172
  msgid "Automate %1$s for all images in pages, posts and galleries"
@@ -176,11 +171,6 @@ msgstr "أتمتة %1$s لجميع الصور في الصفحات، المواض
176
  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."
177
  msgstr "أضف صندوق عرض الشرائح بشكل تلقائي لعرض الصور في المواضيع والصفحات. سيقوم البرنامج بدمج جميع الصور في الموضوع تلقائياً."
178
 
179
- #: includes/settings-page.php:144
180
- #, php-format
181
- msgid "Automate %1$s for images in WordPress galleries"
182
- msgstr "أتمتة %1$s للصور في معرض صور الموقع"
183
-
184
  #: includes/settings-page.php:144
185
  #, php-format
186
  msgid "Automate %1$s for images in WordPress galleries only"
@@ -525,6 +515,12 @@ msgstr "معلومات عن الترجمة"
525
  msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
526
  msgstr "تمت الترجمة للغة العربية بواسطة: <a href=\"http://www.photokeens.com\">مضر صوص</a>."
527
 
 
 
 
 
 
 
528
  #~ msgid "does not work with PHP 4. Please update or uninstall the plugin."
529
  #~ msgstr "لا يعمل مع PHP 4. يرجى تحديث الإضافة أو حذفها."
530
 
2
  msgstr ""
3
  "Project-Id-Version: jQuery-Colorbox 3.8.3 Arabic\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-05-02 20:18+0100\n"
6
+ "PO-Revision-Date: 2011-05-02 20:18+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Mickey Mouse <modarsoos@yahoo.com>\n"
9
  "MIME-Version: 1.0\n"
15
  "X-Poedit-Country: SYRIAN ARAB REPUBLIC\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: jquery-colorbox.php:88
19
  msgid "Theme #1"
20
  msgstr "القالب الأول"
21
 
22
+ #: jquery-colorbox.php:89
23
  msgid "Theme #2"
24
  msgstr "القالب الثاني"
25
 
26
+ #: jquery-colorbox.php:90
27
  msgid "Theme #3"
28
  msgstr "القالب الثالث"
29
 
30
+ #: jquery-colorbox.php:91
31
  msgid "Theme #4"
32
  msgstr "القالب الرابع"
33
 
34
+ #: jquery-colorbox.php:92
35
  msgid "Theme #5"
36
  msgstr "القالب الخامس"
37
 
38
+ #: jquery-colorbox.php:93
39
  msgid "Theme #6"
40
  msgstr "القالب السادس"
41
 
42
+ #: jquery-colorbox.php:94
43
  msgid "Theme #7"
44
  msgstr "القالب السابع"
45
 
46
+ #: jquery-colorbox.php:95
47
  msgid "Theme #8"
48
  msgstr "القالب الثامن"
49
 
50
+ #: jquery-colorbox.php:96
51
  msgid "Theme #9"
52
  msgstr "القالب التاسع"
53
 
54
+ #: jquery-colorbox.php:97
55
  msgid "Theme #10"
56
  msgstr "القالب العاشر"
57
 
58
+ #: jquery-colorbox.php:98
59
  msgid "Theme #11"
60
  msgstr "القالب الحادي عشر"
61
 
62
+ #: jquery-colorbox.php:104
63
  msgid "Theme #12"
64
  msgstr "القالب الثاني عشر"
65
 
66
+ #: jquery-colorbox.php:105
67
  msgid "Theme #13"
68
  msgstr "القالب الثالث عشر"
69
 
70
+ #: jquery-colorbox.php:106
71
  msgid "Theme #14"
72
  msgstr "القالب الرابع عشر"
73
 
74
+ #: jquery-colorbox.php:107
75
  msgid "Theme #15"
76
  msgstr "القالب الخامس عشر"
77
 
78
+ #: jquery-colorbox.php:112
79
  msgid "percent"
80
  msgstr "بالمئة"
81
 
82
+ #: jquery-colorbox.php:113
83
  #: includes/settings-page.php:434
84
  #: includes/settings-page.php:443
85
  msgid "pixels"
86
  msgstr "بيكسل"
87
 
88
+ #: jquery-colorbox.php:118
89
  msgid "elastic"
90
  msgstr "تمدد"
91
 
92
+ #: jquery-colorbox.php:119
93
  msgid "fade"
94
  msgstr "تضاءل"
95
 
96
+ #: jquery-colorbox.php:120
97
  msgid "none"
98
  msgstr "بدون تأثير"
99
 
100
+ #: includes/jquery-colorbox-backend.php:79
 
 
 
 
 
 
 
 
 
101
  #, php-format
102
  msgid "Successfully updated %1$s settings."
103
  msgstr "تم تحديث إعدادات برنامج %1$s بنجاح."
104
 
105
+ #: includes/jquery-colorbox-backend.php:81
106
  #, php-format
107
  msgid "%1$s settings were successfully deleted."
108
  msgstr "%1$s تم حذف الإعدادات بنجاح."
109
 
110
+ #: includes/jquery-colorbox-backend.php:124
111
  msgid "needs attention: the plugin is not activated to work for all images."
112
  msgstr "تنبيه: لم يتم تنشيط برنامج صندوق عرض الشرائح ليعمل على جميع الصور."
113
 
114
+ #: includes/jquery-colorbox-backend.php:161
115
+ #: includes/settings-page.php:127
116
+ msgid "Settings"
117
+ msgstr "إعدادات"
118
+
119
+ #: includes/jquery-colorbox-backend.php:183
120
  msgid "Did not update settings, you do not have the necessary rights."
121
  msgstr "لم يتم تحديث الإعدادات، ليس لديك الصلاحيات الكافية."
122
 
123
+ #: includes/jquery-colorbox-backend.php:232
124
  #, php-format
125
  msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
126
  msgstr "لم يتم حذف إعدادات %1$s أو ليس لديك الصلاحيات الكافية أو بأنك لم تقم بتحديد العلامة داخل المربع الصغير قبل الضغط على زر حذف الإعدادات."
127
 
128
+ #: includes/jquery-colorbox-frontend.php:86
129
+ msgid "Using"
130
+ msgstr "أستخدم معرض صور"
131
+
132
+ #: includes/jquery-colorbox-frontend.php:191
133
  msgid "close"
134
  msgstr "إغلاق"
135
 
136
+ #: includes/jquery-colorbox-frontend.php:192
137
  msgid "next"
138
  msgstr "التالي"
139
 
140
+ #: includes/jquery-colorbox-frontend.php:193
141
  msgid "previous"
142
  msgstr "السابق"
143
 
144
+ #: includes/jquery-colorbox-frontend.php:194
145
  msgid "start slideshow"
146
  msgstr "بدء عرض الشرائح"
147
 
148
+ #: includes/jquery-colorbox-frontend.php:195
149
  msgid "stop slideshow"
150
  msgstr "إيقاف عرض الشرائح"
151
 
152
+ #: includes/jquery-colorbox-frontend.php:196
153
  msgid "{current} of {total} images"
154
  msgstr "{current} من {total} إجمالي الصور"
155
 
162
  msgid "Plugin settings"
163
  msgstr "إعدادات الإضافة"
164
 
 
 
 
 
 
165
  #: includes/settings-page.php:135
166
  #, php-format
167
  msgid "Automate %1$s for all images in pages, posts and galleries"
171
  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."
172
  msgstr "أضف صندوق عرض الشرائح بشكل تلقائي لعرض الصور في المواضيع والصفحات. سيقوم البرنامج بدمج جميع الصور في الموضوع تلقائياً."
173
 
 
 
 
 
 
174
  #: includes/settings-page.php:144
175
  #, php-format
176
  msgid "Automate %1$s for images in WordPress galleries only"
515
  msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
516
  msgstr "تمت الترجمة للغة العربية بواسطة: <a href=\"http://www.photokeens.com\">مضر صوص</a>."
517
 
518
+ #~ msgid "Automate %1$s for all images"
519
+ #~ msgstr "شغل برنامج %1$s لجميع الصور تلقائياً"
520
+
521
+ #~ msgid "Automate %1$s for images in WordPress galleries"
522
+ #~ msgstr "أتمتة %1$s للصور في معرض صور الموقع"
523
+
524
  #~ msgid "does not work with PHP 4. Please update or uninstall the plugin."
525
  #~ msgstr "لا يعمل مع PHP 4. يرجى تحديث الإضافة أو حذفها."
526
 
localization/jquery-colorbox-be_BY.mo CHANGED
Binary file
localization/jquery-colorbox-be_BY.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: 2011-04-16 21:46+0100\n"
6
- "PO-Revision-Date: 2011-04-16 21:47+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Marcis G <by.marcis@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -16,141 +16,141 @@ msgstr ""
16
  "X-Poedit-SourceCharset: utf8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: jquery-colorbox.php:122
20
  msgid "Theme #1"
21
  msgstr "Тэма #1"
22
 
23
- #: jquery-colorbox.php:123
24
  msgid "Theme #2"
25
  msgstr "Тэма #2"
26
 
27
- #: jquery-colorbox.php:124
28
  msgid "Theme #3"
29
  msgstr "Тэма #3"
30
 
31
- #: jquery-colorbox.php:125
32
  msgid "Theme #4"
33
  msgstr "Тэма #4"
34
 
35
- #: jquery-colorbox.php:126
36
  msgid "Theme #5"
37
  msgstr "Тэма #5"
38
 
39
- #: jquery-colorbox.php:127
40
  msgid "Theme #6"
41
  msgstr "Тэма #6"
42
 
43
- #: jquery-colorbox.php:128
44
  msgid "Theme #7"
45
  msgstr "Тэма #7"
46
 
47
- #: jquery-colorbox.php:129
48
  msgid "Theme #8"
49
  msgstr "Тэма #8"
50
 
51
- #: jquery-colorbox.php:130
52
  msgid "Theme #9"
53
  msgstr "Тэма #9"
54
 
55
- #: jquery-colorbox.php:131
56
  msgid "Theme #10"
57
  msgstr "Тэма #10"
58
 
59
- #: jquery-colorbox.php:132
60
  msgid "Theme #11"
61
  msgstr "Тэма #11"
62
 
63
- #: jquery-colorbox.php:138
64
  msgid "Theme #12"
65
  msgstr "Тэма #12"
66
 
67
- #: jquery-colorbox.php:139
68
  msgid "Theme #13"
69
  msgstr "Тэма #13"
70
 
71
- #: jquery-colorbox.php:140
72
  msgid "Theme #14"
73
  msgstr "Тэма #14"
74
 
75
- #: jquery-colorbox.php:141
76
  msgid "Theme #15"
77
  msgstr "Тэма #15"
78
 
79
- #: jquery-colorbox.php:146
80
  msgid "percent"
81
  msgstr "адсотак"
82
 
83
- #: jquery-colorbox.php:147
84
  #: includes/settings-page.php:434
85
  #: includes/settings-page.php:443
86
  msgid "pixels"
87
  msgstr "пікселяў"
88
 
89
- #: jquery-colorbox.php:152
90
  msgid "elastic"
91
  msgstr "эластычн."
92
 
93
- #: jquery-colorbox.php:153
94
  msgid "fade"
95
  msgstr "знікненне"
96
 
97
- #: jquery-colorbox.php:154
98
  msgid "none"
99
  msgstr "не"
100
 
101
- #: jquery-colorbox.php:206
102
- msgid "Using"
103
- msgstr ""
104
-
105
- #: jquery-colorbox.php:307
106
- #: includes/settings-page.php:127
107
- msgid "Settings"
108
- msgstr "Налады"
109
-
110
- #: jquery-colorbox.php:372
111
  #, php-format
112
  msgid "Successfully updated %1$s settings."
113
  msgstr "Налады%1$s паспяхова абноўлены."
114
 
115
- #: jquery-colorbox.php:374
116
  #, php-format
117
  msgid "%1$s settings were successfully deleted."
118
  msgstr "%1$s налады цалкам выдалены."
119
 
120
- #: jquery-colorbox.php:419
121
  msgid "needs attention: the plugin is not activated to work for all images."
122
  msgstr "патрабуе ўвагі: убудова не актываваны для працы для ўсіх малюнкаў."
123
 
124
- #: jquery-colorbox.php:501
 
 
 
 
 
125
  msgid "Did not update settings, you do not have the necessary rights."
126
  msgstr "Немагчыма абнавіць налады, вы не валодаеце неабходнымі правамі."
127
 
128
- #: jquery-colorbox.php:550
129
  #, php-format
130
  msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
131
  msgstr "Немагчыма абнавіць%1$s налады. Магчыма, вам бракуе мае рацыю, праверце, ці адзначаны адпаведны чекбокс."
132
 
133
- #: includes/colorbox-javascript-loader.php:48
 
 
 
 
134
  msgid "close"
135
  msgstr "зачыніць"
136
 
137
- #: includes/colorbox-javascript-loader.php:49
138
  msgid "next"
139
  msgstr "след."
140
 
141
- #: includes/colorbox-javascript-loader.php:50
142
  msgid "previous"
143
  msgstr "прад."
144
 
145
- #: includes/colorbox-javascript-loader.php:51
146
  msgid "start slideshow"
147
  msgstr "пачаць паказ слайдшоў"
148
 
149
- #: includes/colorbox-javascript-loader.php:52
150
  msgid "stop slideshow"
151
  msgstr "спыніць слайдшоў"
152
 
153
- #: includes/colorbox-javascript-loader.php:53
154
  msgid "{current} of {total} images"
155
  msgstr "{current} / {total}"
156
 
@@ -164,11 +164,6 @@ msgstr "%1$s Налады"
164
  msgid "Plugin settings"
165
  msgstr "Налады"
166
 
167
- #: includes/settings-page.php:135
168
- #, php-format
169
- msgid "Automate %1$s for all images"
170
- msgstr "Аўтаматызацыя %1$s для ўсіх малюнкаў"
171
-
172
  #: includes/settings-page.php:135
173
  #, fuzzy, php-format
174
  msgid "Automate %1$s for all images in pages, posts and galleries"
@@ -178,11 +173,6 @@ msgstr "Аўтаматызацыя %1$s для малюнкаў WordPress гал
178
  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."
179
  msgstr "Аўтаматычна дадаваць colorbox-клас малюнкаў у паведамленні і старонкі. Акрамя таго, colorbox-клас дадаецца да галерэй. Малюнкі на адной старонцы ці ў адным пасту групуюцца аўтаматычна."
180
 
181
- #: includes/settings-page.php:144
182
- #, php-format
183
- msgid "Automate %1$s for images in WordPress galleries"
184
- msgstr "Аўтаматызацыя %1$s для малюнкаў WordPress галерэй"
185
-
186
  #: includes/settings-page.php:144
187
  #, fuzzy, php-format
188
  msgid "Automate %1$s for images in WordPress galleries only"
@@ -530,6 +520,12 @@ msgstr "Пераклад"
530
  msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
531
  msgstr "Беларускі пераклад быў зроблены <a href=\"http://www.pc.de\">Marcis G</a>."
532
 
 
 
 
 
 
 
533
  #~ msgid "maxWidth"
534
  #~ msgstr "Maximum width of an image"
535
 
2
  msgstr ""
3
  "Project-Id-Version: jQuery-Colorbox\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-05-02 20:18+0100\n"
6
+ "PO-Revision-Date: 2011-05-02 20:18+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Marcis G <by.marcis@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
16
  "X-Poedit-SourceCharset: utf8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: jquery-colorbox.php:88
20
  msgid "Theme #1"
21
  msgstr "Тэма #1"
22
 
23
+ #: jquery-colorbox.php:89
24
  msgid "Theme #2"
25
  msgstr "Тэма #2"
26
 
27
+ #: jquery-colorbox.php:90
28
  msgid "Theme #3"
29
  msgstr "Тэма #3"
30
 
31
+ #: jquery-colorbox.php:91
32
  msgid "Theme #4"
33
  msgstr "Тэма #4"
34
 
35
+ #: jquery-colorbox.php:92
36
  msgid "Theme #5"
37
  msgstr "Тэма #5"
38
 
39
+ #: jquery-colorbox.php:93
40
  msgid "Theme #6"
41
  msgstr "Тэма #6"
42
 
43
+ #: jquery-colorbox.php:94
44
  msgid "Theme #7"
45
  msgstr "Тэма #7"
46
 
47
+ #: jquery-colorbox.php:95
48
  msgid "Theme #8"
49
  msgstr "Тэма #8"
50
 
51
+ #: jquery-colorbox.php:96
52
  msgid "Theme #9"
53
  msgstr "Тэма #9"
54
 
55
+ #: jquery-colorbox.php:97
56
  msgid "Theme #10"
57
  msgstr "Тэма #10"
58
 
59
+ #: jquery-colorbox.php:98
60
  msgid "Theme #11"
61
  msgstr "Тэма #11"
62
 
63
+ #: jquery-colorbox.php:104
64
  msgid "Theme #12"
65
  msgstr "Тэма #12"
66
 
67
+ #: jquery-colorbox.php:105
68
  msgid "Theme #13"
69
  msgstr "Тэма #13"
70
 
71
+ #: jquery-colorbox.php:106
72
  msgid "Theme #14"
73
  msgstr "Тэма #14"
74
 
75
+ #: jquery-colorbox.php:107
76
  msgid "Theme #15"
77
  msgstr "Тэма #15"
78
 
79
+ #: jquery-colorbox.php:112
80
  msgid "percent"
81
  msgstr "адсотак"
82
 
83
+ #: jquery-colorbox.php:113
84
  #: includes/settings-page.php:434
85
  #: includes/settings-page.php:443
86
  msgid "pixels"
87
  msgstr "пікселяў"
88
 
89
+ #: jquery-colorbox.php:118
90
  msgid "elastic"
91
  msgstr "эластычн."
92
 
93
+ #: jquery-colorbox.php:119
94
  msgid "fade"
95
  msgstr "знікненне"
96
 
97
+ #: jquery-colorbox.php:120
98
  msgid "none"
99
  msgstr "не"
100
 
101
+ #: includes/jquery-colorbox-backend.php:79
 
 
 
 
 
 
 
 
 
102
  #, php-format
103
  msgid "Successfully updated %1$s settings."
104
  msgstr "Налады%1$s паспяхова абноўлены."
105
 
106
+ #: includes/jquery-colorbox-backend.php:81
107
  #, php-format
108
  msgid "%1$s settings were successfully deleted."
109
  msgstr "%1$s налады цалкам выдалены."
110
 
111
+ #: includes/jquery-colorbox-backend.php:124
112
  msgid "needs attention: the plugin is not activated to work for all images."
113
  msgstr "патрабуе ўвагі: убудова не актываваны для працы для ўсіх малюнкаў."
114
 
115
+ #: includes/jquery-colorbox-backend.php:161
116
+ #: includes/settings-page.php:127
117
+ msgid "Settings"
118
+ msgstr "Налады"
119
+
120
+ #: includes/jquery-colorbox-backend.php:183
121
  msgid "Did not update settings, you do not have the necessary rights."
122
  msgstr "Немагчыма абнавіць налады, вы не валодаеце неабходнымі правамі."
123
 
124
+ #: includes/jquery-colorbox-backend.php:232
125
  #, php-format
126
  msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
127
  msgstr "Немагчыма абнавіць%1$s налады. Магчыма, вам бракуе мае рацыю, праверце, ці адзначаны адпаведны чекбокс."
128
 
129
+ #: includes/jquery-colorbox-frontend.php:86
130
+ msgid "Using"
131
+ msgstr ""
132
+
133
+ #: includes/jquery-colorbox-frontend.php:191
134
  msgid "close"
135
  msgstr "зачыніць"
136
 
137
+ #: includes/jquery-colorbox-frontend.php:192
138
  msgid "next"
139
  msgstr "след."
140
 
141
+ #: includes/jquery-colorbox-frontend.php:193
142
  msgid "previous"
143
  msgstr "прад."
144
 
145
+ #: includes/jquery-colorbox-frontend.php:194
146
  msgid "start slideshow"
147
  msgstr "пачаць паказ слайдшоў"
148
 
149
+ #: includes/jquery-colorbox-frontend.php:195
150
  msgid "stop slideshow"
151
  msgstr "спыніць слайдшоў"
152
 
153
+ #: includes/jquery-colorbox-frontend.php:196
154
  msgid "{current} of {total} images"
155
  msgstr "{current} / {total}"
156
 
164
  msgid "Plugin settings"
165
  msgstr "Налады"
166
 
 
 
 
 
 
167
  #: includes/settings-page.php:135
168
  #, fuzzy, php-format
169
  msgid "Automate %1$s for all images in pages, posts and galleries"
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 "Аўтаматычна дадаваць colorbox-клас малюнкаў у паведамленні і старонкі. Акрамя таго, colorbox-клас дадаецца да галерэй. Малюнкі на адной старонцы ці ў адным пасту групуюцца аўтаматычна."
175
 
 
 
 
 
 
176
  #: includes/settings-page.php:144
177
  #, fuzzy, php-format
178
  msgid "Automate %1$s for images in WordPress galleries only"
520
  msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
521
  msgstr "Беларускі пераклад быў зроблены <a href=\"http://www.pc.de\">Marcis G</a>."
522
 
523
+ #~ msgid "Automate %1$s for all images"
524
+ #~ msgstr "Аўтаматызацыя %1$s для ўсіх малюнкаў"
525
+
526
+ #~ msgid "Automate %1$s for images in WordPress galleries"
527
+ #~ msgstr "Аўтаматызацыя %1$s для малюнкаў WordPress галерэй"
528
+
529
  #~ msgid "maxWidth"
530
  #~ msgstr "Maximum width of an image"
531
 
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: 2011-04-16 21:47+0100\n"
6
- "PO-Revision-Date: 2011-04-16 21:47+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -14,141 +14,141 @@ msgstr ""
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
- #: jquery-colorbox.php:122
18
  msgid "Theme #1"
19
  msgstr "Tema #1"
20
 
21
- #: jquery-colorbox.php:123
22
  msgid "Theme #2"
23
  msgstr "Tema #2"
24
 
25
- #: jquery-colorbox.php:124
26
  msgid "Theme #3"
27
  msgstr "Tema #3"
28
 
29
- #: jquery-colorbox.php:125
30
  msgid "Theme #4"
31
  msgstr "Tema #4"
32
 
33
- #: jquery-colorbox.php:126
34
  msgid "Theme #5"
35
  msgstr "Tema #5"
36
 
37
- #: jquery-colorbox.php:127
38
  msgid "Theme #6"
39
  msgstr "Tema #6"
40
 
41
- #: jquery-colorbox.php:128
42
  msgid "Theme #7"
43
  msgstr "Tema #7"
44
 
45
- #: jquery-colorbox.php:129
46
  msgid "Theme #8"
47
  msgstr "Tema #8"
48
 
49
- #: jquery-colorbox.php:130
50
  msgid "Theme #9"
51
  msgstr "Tema #9"
52
 
53
- #: jquery-colorbox.php:131
54
  msgid "Theme #10"
55
  msgstr "Tema #10"
56
 
57
- #: jquery-colorbox.php:132
58
  msgid "Theme #11"
59
  msgstr "Tema #11"
60
 
61
- #: jquery-colorbox.php:138
62
  msgid "Theme #12"
63
  msgstr "Tema #12"
64
 
65
- #: jquery-colorbox.php:139
66
  msgid "Theme #13"
67
  msgstr "Tema #13"
68
 
69
- #: jquery-colorbox.php:140
70
  msgid "Theme #14"
71
  msgstr "Tema #14"
72
 
73
- #: jquery-colorbox.php:141
74
  msgid "Theme #15"
75
  msgstr "Tema #15"
76
 
77
- #: jquery-colorbox.php:146
78
  msgid "percent"
79
  msgstr "procenat"
80
 
81
- #: jquery-colorbox.php:147
82
  #: includes/settings-page.php:434
83
  #: includes/settings-page.php:443
84
  msgid "pixels"
85
  msgstr "piksel"
86
 
87
- #: jquery-colorbox.php:152
88
  msgid "elastic"
89
  msgstr "elastično"
90
 
91
- #: jquery-colorbox.php:153
92
  msgid "fade"
93
  msgstr "izblijediti"
94
 
95
- #: jquery-colorbox.php:154
96
  msgid "none"
97
  msgstr "bez efekta"
98
 
99
- #: jquery-colorbox.php:206
100
- msgid "Using"
101
- msgstr ""
102
-
103
- #: jquery-colorbox.php:307
104
- #: includes/settings-page.php:127
105
- msgid "Settings"
106
- msgstr "Opcije"
107
-
108
- #: jquery-colorbox.php:372
109
  #, php-format
110
  msgid "Successfully updated %1$s settings."
111
  msgstr "Uspješno ažurirano %1$s promjena."
112
 
113
- #: jquery-colorbox.php:374
114
  #, php-format
115
  msgid "%1$s settings were successfully deleted."
116
  msgstr "%1$s opcije su uspiješno izbrisane."
117
 
118
- #: jquery-colorbox.php:419
119
  msgid "needs attention: the plugin is not activated to work for all images."
120
  msgstr "Pažnja "
121
 
122
- #: jquery-colorbox.php:501
 
 
 
 
 
123
  msgid "Did not update settings, you do not have the necessary rights."
124
  msgstr "Opcije nisu ažurirane, nemaš potrebna ovlaštenja."
125
 
126
- #: jquery-colorbox.php:550
127
  #, php-format
128
  msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
129
  msgstr " %1$s opcije nisu mogle biti izbrisane. Ili nemaš potrebna ovlaštenja ili si zaboravio da aktiviraš Checkbox."
130
 
131
- #: includes/colorbox-javascript-loader.php:48
 
 
 
 
132
  msgid "close"
133
  msgstr "Zatvoriti"
134
 
135
- #: includes/colorbox-javascript-loader.php:49
136
  msgid "next"
137
  msgstr "Naprijed"
138
 
139
- #: includes/colorbox-javascript-loader.php:50
140
  msgid "previous"
141
  msgstr "Nazad"
142
 
143
- #: includes/colorbox-javascript-loader.php:51
144
  msgid "start slideshow"
145
  msgstr "Pokreni slideshow"
146
 
147
- #: includes/colorbox-javascript-loader.php:52
148
  msgid "stop slideshow"
149
  msgstr "Zaustavi slideshow"
150
 
151
- #: includes/colorbox-javascript-loader.php:53
152
  msgid "{current} of {total} images"
153
  msgstr "{current} od {total} slika"
154
 
@@ -162,11 +162,6 @@ msgstr "%1$s opcija"
162
  msgid "Plugin settings"
163
  msgstr "Opcije"
164
 
165
- #: includes/settings-page.php:135
166
- #, php-format
167
- msgid "Automate %1$s for all images"
168
- msgstr "Automatiziraj %1$s za sve slike"
169
-
170
  #: includes/settings-page.php:135
171
  #, fuzzy, php-format
172
  msgid "Automate %1$s for all images in pages, posts and galleries"
@@ -176,11 +171,6 @@ msgstr "Automatiziraj %1$s za slike u WordPress galeriji."
176
  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."
177
  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. "
178
 
179
- #: includes/settings-page.php:144
180
- #, php-format
181
- msgid "Automate %1$s for images in WordPress galleries"
182
- msgstr "Automatiziraj %1$s za slike u WordPress galeriji."
183
-
184
  #: includes/settings-page.php:144
185
  #, fuzzy, php-format
186
  msgid "Automate %1$s for images in WordPress galleries only"
@@ -528,6 +518,12 @@ msgstr "Prijevod"
528
  msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
529
  msgstr "Na bosanski je preveo <a href=\"http://www.vjucon.com\">Vedran Jurinčić</a>."
530
 
 
 
 
 
 
 
531
  #~ msgid "maxWidth"
532
  #~ msgstr "Maximum width of an image"
533
 
2
  msgstr ""
3
  "Project-Id-Version: jQuery-Colorbox\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-05-02 20:18+0100\n"
6
+ "PO-Revision-Date: 2011-05-02 20:18+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:88
18
  msgid "Theme #1"
19
  msgstr "Tema #1"
20
 
21
+ #: jquery-colorbox.php:89
22
  msgid "Theme #2"
23
  msgstr "Tema #2"
24
 
25
+ #: jquery-colorbox.php:90
26
  msgid "Theme #3"
27
  msgstr "Tema #3"
28
 
29
+ #: jquery-colorbox.php:91
30
  msgid "Theme #4"
31
  msgstr "Tema #4"
32
 
33
+ #: jquery-colorbox.php:92
34
  msgid "Theme #5"
35
  msgstr "Tema #5"
36
 
37
+ #: jquery-colorbox.php:93
38
  msgid "Theme #6"
39
  msgstr "Tema #6"
40
 
41
+ #: jquery-colorbox.php:94
42
  msgid "Theme #7"
43
  msgstr "Tema #7"
44
 
45
+ #: jquery-colorbox.php:95
46
  msgid "Theme #8"
47
  msgstr "Tema #8"
48
 
49
+ #: jquery-colorbox.php:96
50
  msgid "Theme #9"
51
  msgstr "Tema #9"
52
 
53
+ #: jquery-colorbox.php:97
54
  msgid "Theme #10"
55
  msgstr "Tema #10"
56
 
57
+ #: jquery-colorbox.php:98
58
  msgid "Theme #11"
59
  msgstr "Tema #11"
60
 
61
+ #: jquery-colorbox.php:104
62
  msgid "Theme #12"
63
  msgstr "Tema #12"
64
 
65
+ #: jquery-colorbox.php:105
66
  msgid "Theme #13"
67
  msgstr "Tema #13"
68
 
69
+ #: jquery-colorbox.php:106
70
  msgid "Theme #14"
71
  msgstr "Tema #14"
72
 
73
+ #: jquery-colorbox.php:107
74
  msgid "Theme #15"
75
  msgstr "Tema #15"
76
 
77
+ #: jquery-colorbox.php:112
78
  msgid "percent"
79
  msgstr "procenat"
80
 
81
+ #: jquery-colorbox.php:113
82
  #: includes/settings-page.php:434
83
  #: includes/settings-page.php:443
84
  msgid "pixels"
85
  msgstr "piksel"
86
 
87
+ #: jquery-colorbox.php:118
88
  msgid "elastic"
89
  msgstr "elastično"
90
 
91
+ #: jquery-colorbox.php:119
92
  msgid "fade"
93
  msgstr "izblijediti"
94
 
95
+ #: jquery-colorbox.php:120
96
  msgid "none"
97
  msgstr "bez efekta"
98
 
99
+ #: includes/jquery-colorbox-backend.php:79
 
 
 
 
 
 
 
 
 
100
  #, php-format
101
  msgid "Successfully updated %1$s settings."
102
  msgstr "Uspješno ažurirano %1$s promjena."
103
 
104
+ #: includes/jquery-colorbox-backend.php:81
105
  #, php-format
106
  msgid "%1$s settings were successfully deleted."
107
  msgstr "%1$s opcije su uspiješno izbrisane."
108
 
109
+ #: includes/jquery-colorbox-backend.php:124
110
  msgid "needs attention: the plugin is not activated to work for all images."
111
  msgstr "Pažnja "
112
 
113
+ #: includes/jquery-colorbox-backend.php:161
114
+ #: includes/settings-page.php:127
115
+ msgid "Settings"
116
+ msgstr "Opcije"
117
+
118
+ #: includes/jquery-colorbox-backend.php:183
119
  msgid "Did not update settings, you do not have the necessary rights."
120
  msgstr "Opcije nisu ažurirane, nemaš potrebna ovlaštenja."
121
 
122
+ #: includes/jquery-colorbox-backend.php:232
123
  #, php-format
124
  msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
125
  msgstr " %1$s opcije nisu mogle biti izbrisane. Ili nemaš potrebna ovlaštenja ili si zaboravio da aktiviraš Checkbox."
126
 
127
+ #: includes/jquery-colorbox-frontend.php:86
128
+ msgid "Using"
129
+ msgstr ""
130
+
131
+ #: includes/jquery-colorbox-frontend.php:191
132
  msgid "close"
133
  msgstr "Zatvoriti"
134
 
135
+ #: includes/jquery-colorbox-frontend.php:192
136
  msgid "next"
137
  msgstr "Naprijed"
138
 
139
+ #: includes/jquery-colorbox-frontend.php:193
140
  msgid "previous"
141
  msgstr "Nazad"
142
 
143
+ #: includes/jquery-colorbox-frontend.php:194
144
  msgid "start slideshow"
145
  msgstr "Pokreni slideshow"
146
 
147
+ #: includes/jquery-colorbox-frontend.php:195
148
  msgid "stop slideshow"
149
  msgstr "Zaustavi slideshow"
150
 
151
+ #: includes/jquery-colorbox-frontend.php:196
152
  msgid "{current} of {total} images"
153
  msgstr "{current} od {total} slika"
154
 
162
  msgid "Plugin settings"
163
  msgstr "Opcije"
164
 
 
 
 
 
 
165
  #: includes/settings-page.php:135
166
  #, fuzzy, php-format
167
  msgid "Automate %1$s for all images in pages, posts and galleries"
171
  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."
172
  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. "
173
 
 
 
 
 
 
174
  #: includes/settings-page.php:144
175
  #, fuzzy, php-format
176
  msgid "Automate %1$s for images in WordPress galleries only"
518
  msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
519
  msgstr "Na bosanski je preveo <a href=\"http://www.vjucon.com\">Vedran Jurinčić</a>."
520
 
521
+ #~ msgid "Automate %1$s for all images"
522
+ #~ msgstr "Automatiziraj %1$s za sve slike"
523
+
524
+ #~ msgid "Automate %1$s for images in WordPress galleries"
525
+ #~ msgstr "Automatiziraj %1$s za slike u WordPress galeriji."
526
+
527
  #~ msgid "maxWidth"
528
  #~ msgstr "Maximum width of an image"
529
 
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: 2011-04-16 21:47+0100\n"
6
- "PO-Revision-Date: 2011-04-16 21:50+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Techotronic <blog@techotronic.de>\n"
9
  "MIME-Version: 1.0\n"
@@ -15,141 +15,141 @@ msgstr ""
15
  "X-Poedit-Country: GERMANY\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: jquery-colorbox.php:122
19
  msgid "Theme #1"
20
  msgstr "Thema #1"
21
 
22
- #: jquery-colorbox.php:123
23
  msgid "Theme #2"
24
  msgstr "Thema #2"
25
 
26
- #: jquery-colorbox.php:124
27
  msgid "Theme #3"
28
  msgstr "Thema #3"
29
 
30
- #: jquery-colorbox.php:125
31
  msgid "Theme #4"
32
  msgstr "Thema #4"
33
 
34
- #: jquery-colorbox.php:126
35
  msgid "Theme #5"
36
  msgstr "Thema #5"
37
 
38
- #: jquery-colorbox.php:127
39
  msgid "Theme #6"
40
  msgstr "Thema #6"
41
 
42
- #: jquery-colorbox.php:128
43
  msgid "Theme #7"
44
  msgstr "Thema #7"
45
 
46
- #: jquery-colorbox.php:129
47
  msgid "Theme #8"
48
  msgstr "Thema #8"
49
 
50
- #: jquery-colorbox.php:130
51
  msgid "Theme #9"
52
  msgstr "Thema #9"
53
 
54
- #: jquery-colorbox.php:131
55
  msgid "Theme #10"
56
  msgstr "Thema #10"
57
 
58
- #: jquery-colorbox.php:132
59
  msgid "Theme #11"
60
  msgstr "Thema #11"
61
 
62
- #: jquery-colorbox.php:138
63
  msgid "Theme #12"
64
  msgstr "Thema #12"
65
 
66
- #: jquery-colorbox.php:139
67
  msgid "Theme #13"
68
  msgstr "Thema #13"
69
 
70
- #: jquery-colorbox.php:140
71
  msgid "Theme #14"
72
  msgstr "Thema #14"
73
 
74
- #: jquery-colorbox.php:141
75
  msgid "Theme #15"
76
  msgstr "Thema #15"
77
 
78
- #: jquery-colorbox.php:146
79
  msgid "percent"
80
  msgstr "Prozent"
81
 
82
- #: jquery-colorbox.php:147
83
  #: includes/settings-page.php:434
84
  #: includes/settings-page.php:443
85
  msgid "pixels"
86
  msgstr "Pixel"
87
 
88
- #: jquery-colorbox.php:152
89
  msgid "elastic"
90
  msgstr "Elastisch"
91
 
92
- #: jquery-colorbox.php:153
93
  msgid "fade"
94
  msgstr "Verblassen"
95
 
96
- #: jquery-colorbox.php:154
97
  msgid "none"
98
  msgstr "Kein Effekt"
99
 
100
- #: jquery-colorbox.php:206
101
- msgid "Using"
102
- msgstr "Verwendet"
103
-
104
- #: jquery-colorbox.php:307
105
- #: includes/settings-page.php:127
106
- msgid "Settings"
107
- msgstr "Einstellungen"
108
-
109
- #: jquery-colorbox.php:372
110
  #, php-format
111
  msgid "Successfully updated %1$s settings."
112
  msgstr "&Auml;nderungen der %1$s Einstellungen wurden erfolgreich gespeichert."
113
 
114
- #: jquery-colorbox.php:374
115
  #, php-format
116
  msgid "%1$s settings were successfully deleted."
117
  msgstr "Die Einstellungen von %1$s wurden erfolgreich entfernt."
118
 
119
- #: jquery-colorbox.php:419
120
  msgid "needs attention: the plugin is not activated to work for all images."
121
  msgstr "ben&ouml;tigt Aufmerksamkeit: das Plugin ist nicht f&uuml;r alle Bilder aktiviert."
122
 
123
- #: jquery-colorbox.php:501
 
 
 
 
 
124
  msgid "Did not update settings, you do not have the necessary rights."
125
  msgstr "Einstellungen nicht aktualisiert, da Sie nicht die hierfür erforderlichen Rechte besitzen."
126
 
127
- #: jquery-colorbox.php:550
128
  #, php-format
129
  msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
130
  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."
131
 
132
- #: includes/colorbox-javascript-loader.php:48
 
 
 
 
133
  msgid "close"
134
  msgstr "Schließen"
135
 
136
- #: includes/colorbox-javascript-loader.php:49
137
  msgid "next"
138
  msgstr "Vor"
139
 
140
- #: includes/colorbox-javascript-loader.php:50
141
  msgid "previous"
142
  msgstr "Zurück"
143
 
144
- #: includes/colorbox-javascript-loader.php:51
145
  msgid "start slideshow"
146
  msgstr "Slideshow starten"
147
 
148
- #: includes/colorbox-javascript-loader.php:52
149
  msgid "stop slideshow"
150
  msgstr "Slideshow beenden"
151
 
152
- #: includes/colorbox-javascript-loader.php:53
153
  msgid "{current} of {total} images"
154
  msgstr "{current} von {total} Bildern"
155
 
@@ -162,11 +162,6 @@ msgstr "%1$s Einstellungen"
162
  msgid "Plugin settings"
163
  msgstr "Plugin Einstellungen"
164
 
165
- #: includes/settings-page.php:135
166
- #, php-format
167
- msgid "Automate %1$s for all images"
168
- msgstr "%1$s f&uuml;r alle Bilder automatisieren"
169
-
170
  #: includes/settings-page.php:135
171
  #, php-format
172
  msgid "Automate %1$s for all images in pages, posts and galleries"
@@ -176,11 +171,6 @@ msgstr "%1$s f&uuml;r Bilder in WordPress Eintr&auml;gen, Seiten und Gallerien a
176
  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."
177
  msgstr "Automatisch die Colorbox-CSS-Klasse f&uuml;r Bilder in Beitr&auml;gen und Seite einf&uuml;gen. F&uuml;gt die Klasse auch f&uuml;r Gallerien ein. Alle Bilder innerhalb eines Beitrags oder einer Seite werden automatisch gruppiert."
178
 
179
- #: includes/settings-page.php:144
180
- #, php-format
181
- msgid "Automate %1$s for images in WordPress galleries"
182
- msgstr "%1$s f&uuml;r Bilder in WordPress Gallerien automatisieren"
183
-
184
  #: includes/settings-page.php:144
185
  #, php-format
186
  msgid "Automate %1$s for images in WordPress galleries only"
@@ -521,6 +511,12 @@ msgstr "&Uuml;bersetzung"
521
  msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
522
  msgstr "Die &Uuml;bersetzung ins Deutsche wurde von <a href=\"http://www.techotronic.de\">Arne Franken</a> durchgef&uuml;hrt."
523
 
 
 
 
 
 
 
524
  #~ msgid "does not work with PHP 4. Please update or uninstall the plugin."
525
  #~ msgstr ""
526
  #~ "funktioniert nicht mit PHP 4. Bitte f&uuml;hre ein Update durch oder "
2
  msgstr ""
3
  "Project-Id-Version: jQuery-Colorbox\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-05-02 20:17+0100\n"
6
+ "PO-Revision-Date: 2011-05-02 20:18+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:88
19
  msgid "Theme #1"
20
  msgstr "Thema #1"
21
 
22
+ #: jquery-colorbox.php:89
23
  msgid "Theme #2"
24
  msgstr "Thema #2"
25
 
26
+ #: jquery-colorbox.php:90
27
  msgid "Theme #3"
28
  msgstr "Thema #3"
29
 
30
+ #: jquery-colorbox.php:91
31
  msgid "Theme #4"
32
  msgstr "Thema #4"
33
 
34
+ #: jquery-colorbox.php:92
35
  msgid "Theme #5"
36
  msgstr "Thema #5"
37
 
38
+ #: jquery-colorbox.php:93
39
  msgid "Theme #6"
40
  msgstr "Thema #6"
41
 
42
+ #: jquery-colorbox.php:94
43
  msgid "Theme #7"
44
  msgstr "Thema #7"
45
 
46
+ #: jquery-colorbox.php:95
47
  msgid "Theme #8"
48
  msgstr "Thema #8"
49
 
50
+ #: jquery-colorbox.php:96
51
  msgid "Theme #9"
52
  msgstr "Thema #9"
53
 
54
+ #: jquery-colorbox.php:97
55
  msgid "Theme #10"
56
  msgstr "Thema #10"
57
 
58
+ #: jquery-colorbox.php:98
59
  msgid "Theme #11"
60
  msgstr "Thema #11"
61
 
62
+ #: jquery-colorbox.php:104
63
  msgid "Theme #12"
64
  msgstr "Thema #12"
65
 
66
+ #: jquery-colorbox.php:105
67
  msgid "Theme #13"
68
  msgstr "Thema #13"
69
 
70
+ #: jquery-colorbox.php:106
71
  msgid "Theme #14"
72
  msgstr "Thema #14"
73
 
74
+ #: jquery-colorbox.php:107
75
  msgid "Theme #15"
76
  msgstr "Thema #15"
77
 
78
+ #: jquery-colorbox.php:112
79
  msgid "percent"
80
  msgstr "Prozent"
81
 
82
+ #: jquery-colorbox.php:113
83
  #: includes/settings-page.php:434
84
  #: includes/settings-page.php:443
85
  msgid "pixels"
86
  msgstr "Pixel"
87
 
88
+ #: jquery-colorbox.php:118
89
  msgid "elastic"
90
  msgstr "Elastisch"
91
 
92
+ #: jquery-colorbox.php:119
93
  msgid "fade"
94
  msgstr "Verblassen"
95
 
96
+ #: jquery-colorbox.php:120
97
  msgid "none"
98
  msgstr "Kein Effekt"
99
 
100
+ #: includes/jquery-colorbox-backend.php:79
 
 
 
 
 
 
 
 
 
101
  #, php-format
102
  msgid "Successfully updated %1$s settings."
103
  msgstr "&Auml;nderungen der %1$s Einstellungen wurden erfolgreich gespeichert."
104
 
105
+ #: includes/jquery-colorbox-backend.php:81
106
  #, php-format
107
  msgid "%1$s settings were successfully deleted."
108
  msgstr "Die Einstellungen von %1$s wurden erfolgreich entfernt."
109
 
110
+ #: includes/jquery-colorbox-backend.php:124
111
  msgid "needs attention: the plugin is not activated to work for all images."
112
  msgstr "ben&ouml;tigt Aufmerksamkeit: das Plugin ist nicht f&uuml;r alle Bilder aktiviert."
113
 
114
+ #: includes/jquery-colorbox-backend.php:161
115
+ #: includes/settings-page.php:127
116
+ msgid "Settings"
117
+ msgstr "Einstellungen"
118
+
119
+ #: includes/jquery-colorbox-backend.php:183
120
  msgid "Did not update settings, you do not have the necessary rights."
121
  msgstr "Einstellungen nicht aktualisiert, da Sie nicht die hierfür erforderlichen Rechte besitzen."
122
 
123
+ #: includes/jquery-colorbox-backend.php:232
124
  #, php-format
125
  msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
126
  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."
127
 
128
+ #: includes/jquery-colorbox-frontend.php:86
129
+ msgid "Using"
130
+ msgstr "Verwendet"
131
+
132
+ #: includes/jquery-colorbox-frontend.php:191
133
  msgid "close"
134
  msgstr "Schließen"
135
 
136
+ #: includes/jquery-colorbox-frontend.php:192
137
  msgid "next"
138
  msgstr "Vor"
139
 
140
+ #: includes/jquery-colorbox-frontend.php:193
141
  msgid "previous"
142
  msgstr "Zurück"
143
 
144
+ #: includes/jquery-colorbox-frontend.php:194
145
  msgid "start slideshow"
146
  msgstr "Slideshow starten"
147
 
148
+ #: includes/jquery-colorbox-frontend.php:195
149
  msgid "stop slideshow"
150
  msgstr "Slideshow beenden"
151
 
152
+ #: includes/jquery-colorbox-frontend.php:196
153
  msgid "{current} of {total} images"
154
  msgstr "{current} von {total} Bildern"
155
 
162
  msgid "Plugin settings"
163
  msgstr "Plugin Einstellungen"
164
 
 
 
 
 
 
165
  #: includes/settings-page.php:135
166
  #, php-format
167
  msgid "Automate %1$s for all images in pages, posts and galleries"
171
  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."
172
  msgstr "Automatisch die Colorbox-CSS-Klasse f&uuml;r Bilder in Beitr&auml;gen und Seite einf&uuml;gen. F&uuml;gt die Klasse auch f&uuml;r Gallerien ein. Alle Bilder innerhalb eines Beitrags oder einer Seite werden automatisch gruppiert."
173
 
 
 
 
 
 
174
  #: includes/settings-page.php:144
175
  #, php-format
176
  msgid "Automate %1$s for images in WordPress galleries only"
511
  msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
512
  msgstr "Die &Uuml;bersetzung ins Deutsche wurde von <a href=\"http://www.techotronic.de\">Arne Franken</a> durchgef&uuml;hrt."
513
 
514
+ #~ msgid "Automate %1$s for all images"
515
+ #~ msgstr "%1$s f&uuml;r alle Bilder automatisieren"
516
+
517
+ #~ msgid "Automate %1$s for images in WordPress galleries"
518
+ #~ msgstr "%1$s f&uuml;r Bilder in WordPress Gallerien automatisieren"
519
+
520
  #~ msgid "does not work with PHP 4. Please update or uninstall the plugin."
521
  #~ msgstr ""
522
  #~ "funktioniert nicht mit PHP 4. Bitte f&uuml;hre ein Update durch oder "
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: 2011-04-16 21:50+0100\n"
6
- "PO-Revision-Date: 2011-04-16 21:50+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Techotronic <blog@techotronic.de>\n"
9
  "MIME-Version: 1.0\n"
@@ -15,141 +15,141 @@ msgstr ""
15
  "X-Poedit-Country: GERMANY\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: jquery-colorbox.php:122
19
  msgid "Theme #1"
20
  msgstr ""
21
 
22
- #: jquery-colorbox.php:123
23
  msgid "Theme #2"
24
  msgstr ""
25
 
26
- #: jquery-colorbox.php:124
27
  msgid "Theme #3"
28
  msgstr ""
29
 
30
- #: jquery-colorbox.php:125
31
  msgid "Theme #4"
32
  msgstr ""
33
 
34
- #: jquery-colorbox.php:126
35
  msgid "Theme #5"
36
  msgstr ""
37
 
38
- #: jquery-colorbox.php:127
39
  msgid "Theme #6"
40
  msgstr ""
41
 
42
- #: jquery-colorbox.php:128
43
  msgid "Theme #7"
44
  msgstr ""
45
 
46
- #: jquery-colorbox.php:129
47
  msgid "Theme #8"
48
  msgstr ""
49
 
50
- #: jquery-colorbox.php:130
51
  msgid "Theme #9"
52
  msgstr ""
53
 
54
- #: jquery-colorbox.php:131
55
  msgid "Theme #10"
56
  msgstr ""
57
 
58
- #: jquery-colorbox.php:132
59
  msgid "Theme #11"
60
  msgstr ""
61
 
62
- #: jquery-colorbox.php:138
63
  msgid "Theme #12"
64
  msgstr ""
65
 
66
- #: jquery-colorbox.php:139
67
  msgid "Theme #13"
68
  msgstr ""
69
 
70
- #: jquery-colorbox.php:140
71
  msgid "Theme #14"
72
  msgstr ""
73
 
74
- #: jquery-colorbox.php:141
75
  msgid "Theme #15"
76
  msgstr ""
77
 
78
- #: jquery-colorbox.php:146
79
  msgid "percent"
80
  msgstr ""
81
 
82
- #: jquery-colorbox.php:147
83
  #: includes/settings-page.php:434
84
  #: includes/settings-page.php:443
85
  msgid "pixels"
86
  msgstr ""
87
 
88
- #: jquery-colorbox.php:152
89
  msgid "elastic"
90
  msgstr ""
91
 
92
- #: jquery-colorbox.php:153
93
  msgid "fade"
94
  msgstr ""
95
 
96
- #: jquery-colorbox.php:154
97
  msgid "none"
98
  msgstr ""
99
 
100
- #: jquery-colorbox.php:206
101
- msgid "Using"
102
- msgstr ""
103
-
104
- #: jquery-colorbox.php:307
105
- #: includes/settings-page.php:127
106
- msgid "Settings"
107
- msgstr ""
108
-
109
- #: jquery-colorbox.php:372
110
  #, php-format
111
  msgid "Successfully updated %1$s settings."
112
  msgstr ""
113
 
114
- #: jquery-colorbox.php:374
115
  #, php-format
116
  msgid "%1$s settings were successfully deleted."
117
  msgstr ""
118
 
119
- #: jquery-colorbox.php:419
120
  msgid "needs attention: the plugin is not activated to work for all images."
121
  msgstr ""
122
 
123
- #: jquery-colorbox.php:501
 
 
 
 
 
124
  msgid "Did not update settings, you do not have the necessary rights."
125
  msgstr ""
126
 
127
- #: jquery-colorbox.php:550
128
  #, php-format
129
  msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
130
  msgstr ""
131
 
132
- #: includes/colorbox-javascript-loader.php:48
 
 
 
 
133
  msgid "close"
134
  msgstr ""
135
 
136
- #: includes/colorbox-javascript-loader.php:49
137
  msgid "next"
138
  msgstr ""
139
 
140
- #: includes/colorbox-javascript-loader.php:50
141
  msgid "previous"
142
  msgstr ""
143
 
144
- #: includes/colorbox-javascript-loader.php:51
145
  msgid "start slideshow"
146
  msgstr ""
147
 
148
- #: includes/colorbox-javascript-loader.php:52
149
  msgid "stop slideshow"
150
  msgstr ""
151
 
152
- #: includes/colorbox-javascript-loader.php:53
153
  msgid "{current} of {total} images"
154
  msgstr ""
155
 
@@ -162,11 +162,6 @@ msgstr ""
162
  msgid "Plugin settings"
163
  msgstr ""
164
 
165
- #: includes/settings-page.php:135
166
- #, php-format
167
- msgid "Automate %1$s for all images"
168
- msgstr ""
169
-
170
  #: includes/settings-page.php:135
171
  #, php-format
172
  msgid "Automate %1$s for all images in pages, posts and galleries"
@@ -176,11 +171,6 @@ msgstr ""
176
  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."
177
  msgstr ""
178
 
179
- #: includes/settings-page.php:144
180
- #, php-format
181
- msgid "Automate %1$s for images in WordPress galleries"
182
- msgstr ""
183
-
184
  #: includes/settings-page.php:144
185
  #, php-format
186
  msgid "Automate %1$s for images in WordPress galleries only"
2
  msgstr ""
3
  "Project-Id-Version: jQuery-Colorbox\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-05-02 20:18+0100\n"
6
+ "PO-Revision-Date: 2011-05-02 20:18+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:88
19
  msgid "Theme #1"
20
  msgstr ""
21
 
22
+ #: jquery-colorbox.php:89
23
  msgid "Theme #2"
24
  msgstr ""
25
 
26
+ #: jquery-colorbox.php:90
27
  msgid "Theme #3"
28
  msgstr ""
29
 
30
+ #: jquery-colorbox.php:91
31
  msgid "Theme #4"
32
  msgstr ""
33
 
34
+ #: jquery-colorbox.php:92
35
  msgid "Theme #5"
36
  msgstr ""
37
 
38
+ #: jquery-colorbox.php:93
39
  msgid "Theme #6"
40
  msgstr ""
41
 
42
+ #: jquery-colorbox.php:94
43
  msgid "Theme #7"
44
  msgstr ""
45
 
46
+ #: jquery-colorbox.php:95
47
  msgid "Theme #8"
48
  msgstr ""
49
 
50
+ #: jquery-colorbox.php:96
51
  msgid "Theme #9"
52
  msgstr ""
53
 
54
+ #: jquery-colorbox.php:97
55
  msgid "Theme #10"
56
  msgstr ""
57
 
58
+ #: jquery-colorbox.php:98
59
  msgid "Theme #11"
60
  msgstr ""
61
 
62
+ #: jquery-colorbox.php:104
63
  msgid "Theme #12"
64
  msgstr ""
65
 
66
+ #: jquery-colorbox.php:105
67
  msgid "Theme #13"
68
  msgstr ""
69
 
70
+ #: jquery-colorbox.php:106
71
  msgid "Theme #14"
72
  msgstr ""
73
 
74
+ #: jquery-colorbox.php:107
75
  msgid "Theme #15"
76
  msgstr ""
77
 
78
+ #: jquery-colorbox.php:112
79
  msgid "percent"
80
  msgstr ""
81
 
82
+ #: jquery-colorbox.php:113
83
  #: includes/settings-page.php:434
84
  #: includes/settings-page.php:443
85
  msgid "pixels"
86
  msgstr ""
87
 
88
+ #: jquery-colorbox.php:118
89
  msgid "elastic"
90
  msgstr ""
91
 
92
+ #: jquery-colorbox.php:119
93
  msgid "fade"
94
  msgstr ""
95
 
96
+ #: jquery-colorbox.php:120
97
  msgid "none"
98
  msgstr ""
99
 
100
+ #: includes/jquery-colorbox-backend.php:79
 
 
 
 
 
 
 
 
 
101
  #, php-format
102
  msgid "Successfully updated %1$s settings."
103
  msgstr ""
104
 
105
+ #: includes/jquery-colorbox-backend.php:81
106
  #, php-format
107
  msgid "%1$s settings were successfully deleted."
108
  msgstr ""
109
 
110
+ #: includes/jquery-colorbox-backend.php:124
111
  msgid "needs attention: the plugin is not activated to work for all images."
112
  msgstr ""
113
 
114
+ #: includes/jquery-colorbox-backend.php:161
115
+ #: includes/settings-page.php:127
116
+ msgid "Settings"
117
+ msgstr ""
118
+
119
+ #: includes/jquery-colorbox-backend.php:183
120
  msgid "Did not update settings, you do not have the necessary rights."
121
  msgstr ""
122
 
123
+ #: includes/jquery-colorbox-backend.php:232
124
  #, php-format
125
  msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
126
  msgstr ""
127
 
128
+ #: includes/jquery-colorbox-frontend.php:86
129
+ msgid "Using"
130
+ msgstr ""
131
+
132
+ #: includes/jquery-colorbox-frontend.php:191
133
  msgid "close"
134
  msgstr ""
135
 
136
+ #: includes/jquery-colorbox-frontend.php:192
137
  msgid "next"
138
  msgstr ""
139
 
140
+ #: includes/jquery-colorbox-frontend.php:193
141
  msgid "previous"
142
  msgstr ""
143
 
144
+ #: includes/jquery-colorbox-frontend.php:194
145
  msgid "start slideshow"
146
  msgstr ""
147
 
148
+ #: includes/jquery-colorbox-frontend.php:195
149
  msgid "stop slideshow"
150
  msgstr ""
151
 
152
+ #: includes/jquery-colorbox-frontend.php:196
153
  msgid "{current} of {total} images"
154
  msgstr ""
155
 
162
  msgid "Plugin settings"
163
  msgstr ""
164
 
 
 
 
 
 
165
  #: includes/settings-page.php:135
166
  #, php-format
167
  msgid "Automate %1$s for all images in pages, posts and galleries"
171
  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."
172
  msgstr ""
173
 
 
 
 
 
 
174
  #: includes/settings-page.php:144
175
  #, php-format
176
  msgid "Automate %1$s for images in WordPress galleries only"
localization/jquery-colorbox-es_ES.mo CHANGED
Binary file
localization/jquery-colorbox-es_ES.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: 2011-04-16 21:51+0100\n"
6
- "PO-Revision-Date: 2011-04-16 21:51+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Techotronic <blog@techotronic.de>\n"
9
  "MIME-Version: 1.0\n"
@@ -15,141 +15,141 @@ msgstr ""
15
  "X-Poedit-Country: GERMANY\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: jquery-colorbox.php:122
19
  msgid "Theme #1"
20
  msgstr "Tema #1"
21
 
22
- #: jquery-colorbox.php:123
23
  msgid "Theme #2"
24
  msgstr "Tema #2"
25
 
26
- #: jquery-colorbox.php:124
27
  msgid "Theme #3"
28
  msgstr "Tema #3"
29
 
30
- #: jquery-colorbox.php:125
31
  msgid "Theme #4"
32
  msgstr "Tema #4"
33
 
34
- #: jquery-colorbox.php:126
35
  msgid "Theme #5"
36
  msgstr "Tema #5"
37
 
38
- #: jquery-colorbox.php:127
39
  msgid "Theme #6"
40
  msgstr "Tema #6"
41
 
42
- #: jquery-colorbox.php:128
43
  msgid "Theme #7"
44
  msgstr "Tema #7"
45
 
46
- #: jquery-colorbox.php:129
47
  msgid "Theme #8"
48
  msgstr "Tema #8"
49
 
50
- #: jquery-colorbox.php:130
51
  msgid "Theme #9"
52
  msgstr "Tema #9"
53
 
54
- #: jquery-colorbox.php:131
55
  msgid "Theme #10"
56
  msgstr "Tema #10"
57
 
58
- #: jquery-colorbox.php:132
59
  msgid "Theme #11"
60
  msgstr "Tema #11"
61
 
62
- #: jquery-colorbox.php:138
63
  msgid "Theme #12"
64
  msgstr "Tema #12"
65
 
66
- #: jquery-colorbox.php:139
67
  msgid "Theme #13"
68
  msgstr "Tema #13"
69
 
70
- #: jquery-colorbox.php:140
71
  msgid "Theme #14"
72
  msgstr "Tema #14"
73
 
74
- #: jquery-colorbox.php:141
75
  msgid "Theme #15"
76
  msgstr "Tema #15"
77
 
78
- #: jquery-colorbox.php:146
79
  msgid "percent"
80
  msgstr "porcentaje"
81
 
82
- #: jquery-colorbox.php:147
83
  #: includes/settings-page.php:434
84
  #: includes/settings-page.php:443
85
  msgid "pixels"
86
  msgstr "píxeles"
87
 
88
- #: jquery-colorbox.php:152
89
  msgid "elastic"
90
  msgstr "elastico"
91
 
92
- #: jquery-colorbox.php:153
93
  msgid "fade"
94
  msgstr "fundido"
95
 
96
- #: jquery-colorbox.php:154
97
  msgid "none"
98
  msgstr "ninguno"
99
 
100
- #: jquery-colorbox.php:206
101
- msgid "Using"
102
- msgstr "Utilizando"
103
-
104
- #: jquery-colorbox.php:307
105
- #: includes/settings-page.php:127
106
- msgid "Settings"
107
- msgstr "Opciones"
108
-
109
- #: jquery-colorbox.php:372
110
  #, php-format
111
  msgid "Successfully updated %1$s settings."
112
  msgstr "Actualizadas %1$s opciones."
113
 
114
- #: jquery-colorbox.php:374
115
  #, php-format
116
  msgid "%1$s settings were successfully deleted."
117
  msgstr "Han sido eliminadas %1$s opciones."
118
 
119
- #: jquery-colorbox.php:419
120
  msgid "needs attention: the plugin is not activated to work for all images."
121
  msgstr "atención: el plugin no se ha activado para funcionar con todas las imágenes."
122
 
123
- #: jquery-colorbox.php:501
 
 
 
 
 
124
  msgid "Did not update settings, you do not have the necessary rights."
125
  msgstr "No se han actualizado las opciones, no tienes los permisos necesarios."
126
 
127
- #: jquery-colorbox.php:550
128
  #, php-format
129
  msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
130
  msgstr "No se han eliminado %1$s opciones. O bien no tiene los permisos necesarios o aún no ha marcado la casilla."
131
 
132
- #: includes/colorbox-javascript-loader.php:48
 
 
 
 
133
  msgid "close"
134
  msgstr "cerrar"
135
 
136
- #: includes/colorbox-javascript-loader.php:49
137
  msgid "next"
138
  msgstr "siguiente"
139
 
140
- #: includes/colorbox-javascript-loader.php:50
141
  msgid "previous"
142
  msgstr "anterior"
143
 
144
- #: includes/colorbox-javascript-loader.php:51
145
  msgid "start slideshow"
146
  msgstr "comenzar slideshow"
147
 
148
- #: includes/colorbox-javascript-loader.php:52
149
  msgid "stop slideshow"
150
  msgstr "parar slideshow"
151
 
152
- #: includes/colorbox-javascript-loader.php:53
153
  msgid "{current} of {total} images"
154
  msgstr "{current} de {total} imágenes"
155
 
@@ -162,11 +162,6 @@ msgstr "%1$s Opciones"
162
  msgid "Plugin settings"
163
  msgstr "Opciones del plugin"
164
 
165
- #: includes/settings-page.php:135
166
- #, php-format
167
- msgid "Automate %1$s for all images"
168
- msgstr "Automatizar %1$s para todas las imágenes"
169
-
170
  #: includes/settings-page.php:135
171
  #, php-format
172
  msgid "Automate %1$s for all images in pages, posts and galleries"
@@ -176,11 +171,6 @@ msgstr "Automatizar %1$s para todas las imágenes en páginas, entradas y galer
176
  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."
177
  msgstr "Añadir automáticamente colorbox-class a todas las imágenes en entradas y páginas. Añade también colorbox-class a las galerías. Las imágenes de una página o entrada son agrupadas automáticamente."
178
 
179
- #: includes/settings-page.php:144
180
- #, php-format
181
- msgid "Automate %1$s for images in WordPress galleries"
182
- msgstr "Automatizar %1$s para las imágenes en las galerías WordPress"
183
-
184
  #: includes/settings-page.php:144
185
  #, php-format
186
  msgid "Automate %1$s for images in WordPress galleries only"
@@ -525,6 +515,12 @@ msgstr "Traducción"
525
  msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
526
  msgstr "La traducción al español ha sido realizada por <a href=\"http://www.redywebs.com\">Inma Zubizarreta</a>."
527
 
 
 
 
 
 
 
528
  #~ msgid "does not work with PHP 4. Please update or uninstall the plugin."
529
  #~ msgstr "no funciona con PHP4. Actualice por favor o desinstale el plugin."
530
 
2
  msgstr ""
3
  "Project-Id-Version: jQuery-Colorbox\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-05-02 20:19+0100\n"
6
+ "PO-Revision-Date: 2011-05-02 20:19+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:88
19
  msgid "Theme #1"
20
  msgstr "Tema #1"
21
 
22
+ #: jquery-colorbox.php:89
23
  msgid "Theme #2"
24
  msgstr "Tema #2"
25
 
26
+ #: jquery-colorbox.php:90
27
  msgid "Theme #3"
28
  msgstr "Tema #3"
29
 
30
+ #: jquery-colorbox.php:91
31
  msgid "Theme #4"
32
  msgstr "Tema #4"
33
 
34
+ #: jquery-colorbox.php:92
35
  msgid "Theme #5"
36
  msgstr "Tema #5"
37
 
38
+ #: jquery-colorbox.php:93
39
  msgid "Theme #6"
40
  msgstr "Tema #6"
41
 
42
+ #: jquery-colorbox.php:94
43
  msgid "Theme #7"
44
  msgstr "Tema #7"
45
 
46
+ #: jquery-colorbox.php:95
47
  msgid "Theme #8"
48
  msgstr "Tema #8"
49
 
50
+ #: jquery-colorbox.php:96
51
  msgid "Theme #9"
52
  msgstr "Tema #9"
53
 
54
+ #: jquery-colorbox.php:97
55
  msgid "Theme #10"
56
  msgstr "Tema #10"
57
 
58
+ #: jquery-colorbox.php:98
59
  msgid "Theme #11"
60
  msgstr "Tema #11"
61
 
62
+ #: jquery-colorbox.php:104
63
  msgid "Theme #12"
64
  msgstr "Tema #12"
65
 
66
+ #: jquery-colorbox.php:105
67
  msgid "Theme #13"
68
  msgstr "Tema #13"
69
 
70
+ #: jquery-colorbox.php:106
71
  msgid "Theme #14"
72
  msgstr "Tema #14"
73
 
74
+ #: jquery-colorbox.php:107
75
  msgid "Theme #15"
76
  msgstr "Tema #15"
77
 
78
+ #: jquery-colorbox.php:112
79
  msgid "percent"
80
  msgstr "porcentaje"
81
 
82
+ #: jquery-colorbox.php:113
83
  #: includes/settings-page.php:434
84
  #: includes/settings-page.php:443
85
  msgid "pixels"
86
  msgstr "píxeles"
87
 
88
+ #: jquery-colorbox.php:118
89
  msgid "elastic"
90
  msgstr "elastico"
91
 
92
+ #: jquery-colorbox.php:119
93
  msgid "fade"
94
  msgstr "fundido"
95
 
96
+ #: jquery-colorbox.php:120
97
  msgid "none"
98
  msgstr "ninguno"
99
 
100
+ #: includes/jquery-colorbox-backend.php:79
 
 
 
 
 
 
 
 
 
101
  #, php-format
102
  msgid "Successfully updated %1$s settings."
103
  msgstr "Actualizadas %1$s opciones."
104
 
105
+ #: includes/jquery-colorbox-backend.php:81
106
  #, php-format
107
  msgid "%1$s settings were successfully deleted."
108
  msgstr "Han sido eliminadas %1$s opciones."
109
 
110
+ #: includes/jquery-colorbox-backend.php:124
111
  msgid "needs attention: the plugin is not activated to work for all images."
112
  msgstr "atención: el plugin no se ha activado para funcionar con todas las imágenes."
113
 
114
+ #: includes/jquery-colorbox-backend.php:161
115
+ #: includes/settings-page.php:127
116
+ msgid "Settings"
117
+ msgstr "Opciones"
118
+
119
+ #: includes/jquery-colorbox-backend.php:183
120
  msgid "Did not update settings, you do not have the necessary rights."
121
  msgstr "No se han actualizado las opciones, no tienes los permisos necesarios."
122
 
123
+ #: includes/jquery-colorbox-backend.php:232
124
  #, php-format
125
  msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
126
  msgstr "No se han eliminado %1$s opciones. O bien no tiene los permisos necesarios o aún no ha marcado la casilla."
127
 
128
+ #: includes/jquery-colorbox-frontend.php:86
129
+ msgid "Using"
130
+ msgstr "Utilizando"
131
+
132
+ #: includes/jquery-colorbox-frontend.php:191
133
  msgid "close"
134
  msgstr "cerrar"
135
 
136
+ #: includes/jquery-colorbox-frontend.php:192
137
  msgid "next"
138
  msgstr "siguiente"
139
 
140
+ #: includes/jquery-colorbox-frontend.php:193
141
  msgid "previous"
142
  msgstr "anterior"
143
 
144
+ #: includes/jquery-colorbox-frontend.php:194
145
  msgid "start slideshow"
146
  msgstr "comenzar slideshow"
147
 
148
+ #: includes/jquery-colorbox-frontend.php:195
149
  msgid "stop slideshow"
150
  msgstr "parar slideshow"
151
 
152
+ #: includes/jquery-colorbox-frontend.php:196
153
  msgid "{current} of {total} images"
154
  msgstr "{current} de {total} imágenes"
155
 
162
  msgid "Plugin settings"
163
  msgstr "Opciones del plugin"
164
 
 
 
 
 
 
165
  #: includes/settings-page.php:135
166
  #, php-format
167
  msgid "Automate %1$s for all images in pages, posts and galleries"
171
  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."
172
  msgstr "Añadir automáticamente colorbox-class a todas las imágenes en entradas y páginas. Añade también colorbox-class a las galerías. Las imágenes de una página o entrada son agrupadas automáticamente."
173
 
 
 
 
 
 
174
  #: includes/settings-page.php:144
175
  #, php-format
176
  msgid "Automate %1$s for images in WordPress galleries only"
515
  msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
516
  msgstr "La traducción al español ha sido realizada por <a href=\"http://www.redywebs.com\">Inma Zubizarreta</a>."
517
 
518
+ #~ msgid "Automate %1$s for all images"
519
+ #~ msgstr "Automatizar %1$s para todas las imágenes"
520
+
521
+ #~ msgid "Automate %1$s for images in WordPress galleries"
522
+ #~ msgstr "Automatizar %1$s para las imágenes en las galerías WordPress"
523
+
524
  #~ msgid "does not work with PHP 4. Please update or uninstall the plugin."
525
  #~ msgstr "no funciona con PHP4. Actualice por favor o desinstale el plugin."
526
 
localization/jquery-colorbox-fi.mo ADDED
Binary file
localization/jquery-colorbox-fi.po ADDED
@@ -0,0 +1,535 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: jQuery-Colorbox\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-04-16 21:50+0100\n"
6
+ "PO-Revision-Date: 2011-06-19 16:37+0200\n"
7
+ "Last-Translator: Lauri Merisaari <lauri@merisaari.com>\n"
8
+ "Language-Team: Techotronic <blog@techotronic.de>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-Language: Finnish\n"
13
+ "X-Poedit-KeywordsList: _e;__\n"
14
+ "X-Poedit-Basepath: ..\n"
15
+ "X-Poedit-Country: FINLAND\n"
16
+ "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: jquery-colorbox.php:122
20
+ msgid "Theme #1"
21
+ msgstr "Teema #1"
22
+
23
+ #: jquery-colorbox.php:123
24
+ msgid "Theme #2"
25
+ msgstr "Teema #2"
26
+
27
+ #: jquery-colorbox.php:124
28
+ msgid "Theme #3"
29
+ msgstr "Teema #3"
30
+
31
+ #: jquery-colorbox.php:125
32
+ msgid "Theme #4"
33
+ msgstr "Teema #4"
34
+
35
+ #: jquery-colorbox.php:126
36
+ msgid "Theme #5"
37
+ msgstr "Teema #5"
38
+
39
+ #: jquery-colorbox.php:127
40
+ msgid "Theme #6"
41
+ msgstr "Teema #6"
42
+
43
+ #: jquery-colorbox.php:128
44
+ msgid "Theme #7"
45
+ msgstr "Teema #7"
46
+
47
+ #: jquery-colorbox.php:129
48
+ msgid "Theme #8"
49
+ msgstr "Teema #8"
50
+
51
+ #: jquery-colorbox.php:130
52
+ msgid "Theme #9"
53
+ msgstr "Teema #9"
54
+
55
+ #: jquery-colorbox.php:131
56
+ msgid "Theme #10"
57
+ msgstr "Teema #10"
58
+
59
+ #: jquery-colorbox.php:132
60
+ msgid "Theme #11"
61
+ msgstr "Teema #11"
62
+
63
+ #: jquery-colorbox.php:138
64
+ msgid "Theme #12"
65
+ msgstr "Teema #12"
66
+
67
+ #: jquery-colorbox.php:139
68
+ msgid "Theme #13"
69
+ msgstr "Teema #13"
70
+
71
+ #: jquery-colorbox.php:140
72
+ msgid "Theme #14"
73
+ msgstr "Teema #14"
74
+
75
+ #: jquery-colorbox.php:141
76
+ msgid "Theme #15"
77
+ msgstr "Teema #15"
78
+
79
+ #: jquery-colorbox.php:146
80
+ msgid "percent"
81
+ msgstr "prosenttia"
82
+
83
+ #: jquery-colorbox.php:147
84
+ #: includes/settings-page.php:434
85
+ #: includes/settings-page.php:443
86
+ msgid "pixels"
87
+ msgstr "pikseliä"
88
+
89
+ #: jquery-colorbox.php:152
90
+ msgid "elastic"
91
+ msgstr "elastinen"
92
+
93
+ #: jquery-colorbox.php:153
94
+ msgid "fade"
95
+ msgstr "häivytys"
96
+
97
+ #: jquery-colorbox.php:154
98
+ msgid "none"
99
+ msgstr "ei mitään"
100
+
101
+ #: jquery-colorbox.php:206
102
+ msgid "Using"
103
+ msgstr "Käyttäen"
104
+
105
+ #: jquery-colorbox.php:307
106
+ #: includes/settings-page.php:127
107
+ msgid "Settings"
108
+ msgstr "Asetukset"
109
+
110
+ #: jquery-colorbox.php:372
111
+ #, php-format
112
+ msgid "Successfully updated %1$s settings."
113
+ msgstr "%1$s asetukset päivitetty onnistuneesti."
114
+
115
+ #: jquery-colorbox.php:374
116
+ #, php-format
117
+ msgid "%1$s settings were successfully deleted."
118
+ msgstr "%1$s asetukset poistettu onnistuneesti."
119
+
120
+ #: jquery-colorbox.php:419
121
+ msgid "needs attention: the plugin is not activated to work for all images."
122
+ msgstr "huomioitavaa: Lisäosa ei ole aktivoitu toimimaan kaikkien kuvien kanssa."
123
+
124
+ #: jquery-colorbox.php:501
125
+ msgid "Did not update settings, you do not have the necessary rights."
126
+ msgstr "Asetuksia ei päivitetty, sinulla ei ole tarvittavia oikeuksia."
127
+
128
+ #: jquery-colorbox.php:550
129
+ #, php-format
130
+ msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
131
+ msgstr "%1$s asetuksia ei poistettu. Joko sinulla ei ole tarvittavia oikeuksia tai et valinnut valintaruutua."
132
+
133
+ #: includes/colorbox-javascript-loader.php:48
134
+ msgid "close"
135
+ msgstr "sulje"
136
+
137
+ #: includes/colorbox-javascript-loader.php:49
138
+ msgid "next"
139
+ msgstr "seuraava"
140
+
141
+ #: includes/colorbox-javascript-loader.php:50
142
+ msgid "previous"
143
+ msgstr "edellinen"
144
+
145
+ #: includes/colorbox-javascript-loader.php:51
146
+ msgid "start slideshow"
147
+ msgstr "aloita diaesitys"
148
+
149
+ #: includes/colorbox-javascript-loader.php:52
150
+ msgid "stop slideshow"
151
+ msgstr "lopeta diaesitys"
152
+
153
+ #: includes/colorbox-javascript-loader.php:53
154
+ msgid "{current} of {total} images"
155
+ msgstr "{current} / {total} kuvasta"
156
+
157
+ #: includes/settings-page.php:117
158
+ #, php-format
159
+ msgid "%1$s Settings"
160
+ msgstr "%1$s Asetukset"
161
+
162
+ #: includes/settings-page.php:128
163
+ msgid "Plugin settings"
164
+ msgstr "Lisäosan asetukset"
165
+
166
+ #: includes/settings-page.php:135
167
+ #, php-format
168
+ msgid "Automate %1$s for all images"
169
+ msgstr "Automatisoi %1$s kaikille kuville"
170
+
171
+ #: includes/settings-page.php:135
172
+ #, php-format
173
+ msgid "Automate %1$s for all images in pages, posts and galleries"
174
+ msgstr "Automatisoi %1$s kaikille kuville sivuilla, artikkeleissa ja gallerioissa"
175
+
176
+ #: includes/settings-page.php:139
177
+ 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."
178
+ msgstr "Lisää colorbox-css luokka automaattisesti kuviin artikkeleissa ja sivuilla. Lisää colorbox-css luokkan myös gallerioihin. Kuvat yhdellä sivulla tai artikkelissa liitetään samaan ryhmään automaattisesti."
179
+
180
+ #: includes/settings-page.php:144
181
+ #, php-format
182
+ msgid "Automate %1$s for images in WordPress galleries"
183
+ msgstr "Automatisoi %1$s kuville Wordpressin gallerioissa"
184
+
185
+ #: includes/settings-page.php:144
186
+ #, php-format
187
+ msgid "Automate %1$s for images in WordPress galleries only"
188
+ msgstr "Automatisoi %1$s vain kuville Wordpressin gallerioissa"
189
+
190
+ #: includes/settings-page.php:148
191
+ msgid "Automatically add colorbox-class to images in WordPress galleries, but nowhere else. Images in one page or post are grouped automatically."
192
+ msgstr "Lisää colorbox-css luokka automaattisesti kuviin Wordpress gallerioissa, mutta ei muualla. Artikkelien ja sivujen kuvat litetään automaattisesti samaksi ryhmäksi."
193
+
194
+ #: includes/settings-page.php:153
195
+ #, php-format
196
+ msgid "Automate %1$s for all other images"
197
+ msgstr "Automatisoi %1$s kaikille muille kuville"
198
+
199
+ #: includes/settings-page.php:157
200
+ msgid "Automatically add colorbox-class to all images that are not in posts and pages (e.g. the sidebar)."
201
+ msgstr "Lisää colorbox-css luokka automaattisesti kuville jotka eivät ole artikkeleissa tai sivuilla (esim. sivupalkki)."
202
+
203
+ #: includes/settings-page.php:162
204
+ msgid "Automate hiding of flash objects"
205
+ msgstr "Piilota Flash objektit automaattisesti"
206
+
207
+ #: includes/settings-page.php:166
208
+ msgid "Automatically hide embeded flash objects behind the Colorbox layer."
209
+ msgstr "Piilota automaattisesti Colorbox tason takana olevat upotetut flash objektit."
210
+
211
+ #: includes/settings-page.php:171
212
+ msgid "Add JavaScript to footer"
213
+ msgstr "Lisää JavaScript sivun loppuosaan"
214
+
215
+ #: includes/settings-page.php:175
216
+ msgid "Add JavaScript to footer instead of the header."
217
+ msgstr "Lisää JavaScript sivun loppuosaan alkuosan sijasta."
218
+
219
+ #: includes/settings-page.php:180
220
+ msgid "Remove link from Meta-box"
221
+ msgstr "Poista linkki kuvan lisäys asetuksista"
222
+
223
+ #: includes/settings-page.php:184
224
+ msgid "Remove the link to the developers site from the WordPress meta-box."
225
+ msgstr "Poista linkki kehittäjien sivustolle Wordpressistä"
226
+
227
+ #: includes/settings-page.php:189
228
+ msgid "Activate debug mode"
229
+ msgstr "Aseta virheenkorjaus (debug) moodi päälle"
230
+
231
+ #: includes/settings-page.php:193
232
+ msgid "Adds debug information and non-minified JavaScript to the page. Useful for troubleshooting."
233
+ msgstr "Lisää virheenkorjaustietoa ja ei minimoitua JavaScriptiä sivulle. Käytännällinen vian etsinnässä."
234
+
235
+ #: includes/settings-page.php:198
236
+ msgid "Disable warning"
237
+ msgstr "Piilota varoitus"
238
+
239
+ #: includes/settings-page.php:202
240
+ msgid "Disables the warning that is displayed if the plugin is activated but the auto-colorbox feature for all images is turned off."
241
+ msgstr "Piiloita varoitus joka näytetään kun lisäosa on aktivoitu, mutta ei ole kytketty päälle kaikille kuville."
242
+
243
+ #: includes/settings-page.php:208
244
+ #: includes/settings-page.php:521
245
+ msgid "Save Changes"
246
+ msgstr "Tallenna muutokset"
247
+
248
+ #: includes/settings-page.php:213
249
+ msgid "Colorbox settings"
250
+ msgstr "Colorbox asetukset"
251
+
252
+ #: includes/settings-page.php:220
253
+ msgid "Theme"
254
+ msgstr "Teema"
255
+
256
+ #: includes/settings-page.php:232
257
+ msgid "Select the theme you want to use on your blog."
258
+ msgstr "Valitse teema jota haluat käyttää blogissasi."
259
+
260
+ #: includes/settings-page.php:237
261
+ msgid "Theme screenshot"
262
+ msgstr "Teeman kuvankaappaus"
263
+
264
+ #: includes/settings-page.php:248
265
+ msgid "Add Slideshow to groups"
266
+ msgstr "Lisää diaesitys ryhmille"
267
+
268
+ #: includes/settings-page.php:252
269
+ #, php-format
270
+ msgid "Add Slideshow functionality for %1$s Groups"
271
+ msgstr "Lisää diaesitys toiminto %1$s ryhmille"
272
+
273
+ #: includes/settings-page.php:257
274
+ msgid "Start Slideshow automatically"
275
+ msgstr "Aloita diaesitys automaattisesti"
276
+
277
+ #: includes/settings-page.php:261
278
+ #, php-format
279
+ msgid "Start Slideshow automatically if slideshow functionality is added to %1$s Groups"
280
+ msgstr "Aloita diaesitys automaattisesti jos diaesitys toiminto on lisätty %1$s ryhmille"
281
+
282
+ #: includes/settings-page.php:266
283
+ msgid "Speed of the slideshow"
284
+ msgstr "Diaesityksen nopeus"
285
+
286
+ #: includes/settings-page.php:269
287
+ #: includes/settings-page.php:496
288
+ msgid "milliseconds"
289
+ msgstr "millisekuntia"
290
+
291
+ #: includes/settings-page.php:270
292
+ msgid "Sets the speed of the slideshow, in milliseconds"
293
+ msgstr "Asettaa diaesityksen nopeuden millisekunteina"
294
+
295
+ #: includes/settings-page.php:275
296
+ msgid "Disable loop"
297
+ msgstr "Estä uudelleen toisto"
298
+
299
+ #: includes/settings-page.php:279
300
+ msgid "Disable looping through image groups"
301
+ msgstr "Estä ryhmien toistaminen uudelleen"
302
+
303
+ #: includes/settings-page.php:284
304
+ msgid "Disable keys"
305
+ msgstr "Estä näppäimistö komennot"
306
+
307
+ #: includes/settings-page.php:288
308
+ msgid "Disable ESC to close Colorbox and arrow keys to go to next and previous images"
309
+ msgstr "Estä sulkeminen ESC näppäimellä ja siirtyminen edelliseen tai seuraavaan nuolinäppäimillä"
310
+
311
+ #: includes/settings-page.php:293
312
+ msgid "Maximum width of an image"
313
+ msgstr "Kuvan maksimi leveys"
314
+
315
+ #: includes/settings-page.php:297
316
+ #: includes/settings-page.php:343
317
+ #: includes/settings-page.php:389
318
+ msgid "Do not set width"
319
+ msgstr "Älä aseta leveyttä"
320
+
321
+ #: includes/settings-page.php:300
322
+ msgid "Set maximum width of an image"
323
+ msgstr "Aseta kuvan maksimi leveys"
324
+
325
+ #: includes/settings-page.php:311
326
+ 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"
327
+ msgstr "Aseta kuvan maksimi leveys Colorboxin sisällä suhteessa selaimen ikkunaan prosentteina tai pikseleinä. Jos maksimi leveyttä ei ole asetettu, kuva on yhtä leveä kuin Colorbox"
328
+
329
+ #: includes/settings-page.php:316
330
+ msgid "Maximum height of an image"
331
+ msgstr "Kuvan maksimi korkeus"
332
+
333
+ #: includes/settings-page.php:320
334
+ #: includes/settings-page.php:366
335
+ #: includes/settings-page.php:412
336
+ msgid "Do not set height"
337
+ msgstr "Älä aseta korkeutta"
338
+
339
+ #: includes/settings-page.php:323
340
+ msgid "Set maximum height of an image"
341
+ msgstr "Aseta kuvan maksimi korkeus"
342
+
343
+ #: includes/settings-page.php:334
344
+ 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"
345
+ msgstr "Aseta kuvan maksimi korkeus Colorboxin sisällä suhteessa selaimen ikkunaan prosentteina tai pikseleinä. Jos maksimi korkeutta ei ole asetettu, kuva on yhtä korkea kuin Colorbox"
346
+
347
+ #: includes/settings-page.php:339
348
+ msgid "Maximum width of the Colorbox"
349
+ msgstr "Colorboxin maksimi leveys"
350
+
351
+ #: includes/settings-page.php:346
352
+ #: includes/settings-page.php:392
353
+ msgid "Set width of the Colorbox"
354
+ msgstr "Aseta Colorboxin maksimi leveys"
355
+
356
+ #: includes/settings-page.php:357
357
+ #: includes/settings-page.php:403
358
+ 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"
359
+ msgstr "Aseta Colorboxin itsensä maksimi leveys suhteessa selaimen ikkunaan prosentteina tai pikseleinä. Jos kuva on isompi kuin Colorbox näytetään vierityspalkit. Jos leveyttä ei ole asetettu Colorboxin leveys on yhtä suuri kuin kuvan"
360
+
361
+ #: includes/settings-page.php:362
362
+ msgid "Maximum height of the Colorbox"
363
+ msgstr "Colorboxin maksimi korkeus"
364
+
365
+ #: includes/settings-page.php:369
366
+ #: includes/settings-page.php:415
367
+ msgid "Set height of the Colorbox"
368
+ msgstr "Aseta Colorboxin maksimi korkeus"
369
+
370
+ #: includes/settings-page.php:380
371
+ #: includes/settings-page.php:426
372
+ 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"
373
+ msgstr "Aseta Colorboxin itsensä maksimi korkeus suhteessa selaimen ikkunaan prosentteina tai pikseleinä. Jos kuva on isompi kuin Colorbox näytetään vierityspalkit. Jos korkeutta ei ole asetettu Colorboxin korkeus on yhtä suuri kuin kuvan"
374
+
375
+ #: includes/settings-page.php:385
376
+ msgid "Maximum width of the Colorbox used for links"
377
+ msgstr "Colorboxin maksimi leveys kun näytetään linkki"
378
+
379
+ #: includes/settings-page.php:408
380
+ msgid "Maximum height of the Colorbox used for links"
381
+ msgstr "Colorboxin maksimi korkeus kun näytetään linkki"
382
+
383
+ #: includes/settings-page.php:431
384
+ msgid "Initial width of the Colorbox"
385
+ msgstr "Colorboxin perus leveys"
386
+
387
+ #: includes/settings-page.php:435
388
+ msgid "Set the maximum width of the Colorbox before the content is loaded"
389
+ msgstr "Aseta Colorboxin maksimi leveys ennen kuin sisältö on ladattu"
390
+
391
+ #: includes/settings-page.php:440
392
+ msgid "Initial height of the Colorbox"
393
+ msgstr "Colorboxin perus korkeus"
394
+
395
+ #: includes/settings-page.php:444
396
+ msgid "Set the maximum height of the Colorbox before the content is loaded"
397
+ msgstr "Aseta Colorboxin maksimi korkeus ennen kuin sisältö on ladattu"
398
+
399
+ #: includes/settings-page.php:449
400
+ msgid "Resize images"
401
+ msgstr "Skaalaa kuvat"
402
+
403
+ #: includes/settings-page.php:453
404
+ 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"
405
+ msgstr "Jos tämä on valittu ja kuvien maksimi leveys, kuvien maksimi korkeus, Colorboxin leveys tai Colorboxin korkeus on asetettu, Colorbox skaalaa kuvat sopimaan noihin mittoihin"
406
+
407
+ #: includes/settings-page.php:458
408
+ msgid "Close Colorbox on overlay click"
409
+ msgstr "Ulkopuolelle klikkaus sulkee Colorboxin"
410
+
411
+ #: includes/settings-page.php:462
412
+ msgid "If checked, enables closing ColorBox by clicking on the background overlay"
413
+ msgstr "Jos valittuna, Colorboxin reunojen ulkopuolelle klikkaus sulkee Colorboxin"
414
+
415
+ #: includes/settings-page.php:467
416
+ msgid "Preload images"
417
+ msgstr "Esilataa kuvat"
418
+
419
+ #: includes/settings-page.php:471
420
+ msgid "Allows for preloading of \"next\" and \"previous\" content in a group, after the current content has finished loading. Uncheck box to disable."
421
+ msgstr "Sallii esilatauksen ryhmässä sisällölle \"seuraava\" ja \"edellinen\", sen jälkeen kun nykyinen sisältö on ladattu. Estä poistamalla valinta"
422
+
423
+ #: includes/settings-page.php:476
424
+ msgid "Transition type"
425
+ msgstr "Siirtymän efekti"
426
+
427
+ #: includes/settings-page.php:488
428
+ msgid "The transition type of the Colorbox. Can be set to \"elastic\", \"fade\", or \"none\""
429
+ msgstr "Colorboxin efektin tyyppi. Voidaan asettaa typpeihin \"elastinen\", \"häivytys\", tai \"ei mitään\""
430
+
431
+ #: includes/settings-page.php:493
432
+ msgid "Transition speed"
433
+ msgstr "Siirtymän nopeus"
434
+
435
+ #: includes/settings-page.php:497
436
+ msgid "Sets the speed of the \"fade\" and \"elastic\" transitions, in milliseconds"
437
+ msgstr "Asettaa \"elastinen\" ja \"häivytys\" siirtymien nopeuden millisekunteina"
438
+
439
+ #: includes/settings-page.php:502
440
+ msgid "Opacity"
441
+ msgstr "Läpinäkyvyys"
442
+
443
+ #: includes/settings-page.php:506
444
+ msgid "The overlay opacity level. Range: 0 to 1"
445
+ msgstr "Taustan läpinäkyvyyden aste. Väliltä: 0-1"
446
+
447
+ #: includes/settings-page.php:511
448
+ msgid "Make images draggable"
449
+ msgstr "Mahdollistaa kuvien raahaamisen"
450
+
451
+ #: includes/settings-page.php:515
452
+ msgid "Make images draggable instead of scrollable"
453
+ msgstr "Tekee kuvista raahattavia vieritettävien sijasta"
454
+
455
+ #: includes/settings-page.php:531
456
+ #: includes/settings-page.php:540
457
+ msgid "Delete Settings"
458
+ msgstr "Poista asetukset"
459
+
460
+ #: includes/settings-page.php:534
461
+ msgid "Check the box and click this button to delete settings of this plugin."
462
+ msgstr "Valitse valintaruutu ja klikkaa tätä nappia poistaaksesi tämän lisäosan asetukset."
463
+
464
+ #: includes/settings-page.php:551
465
+ msgid "Top donations"
466
+ msgstr "Suurimmat lahjoitukset"
467
+
468
+ #: includes/settings-page.php:560
469
+ msgid "Latest donations"
470
+ msgstr "Viimeisimmät lahjoitukset"
471
+
472
+ #: includes/settings-page.php:569
473
+ msgid "Donate"
474
+ msgstr "Lahjoita"
475
+
476
+ #: includes/settings-page.php:573
477
+ msgid "If you would like to make a small (or large) contribution towards future development please consider making a donation."
478
+ msgstr "Jos haluat hieman (tai enemmän) auttaa tämän lisäosan tulevaisuuden kehittämistä. Ole hyvä ja tee lahjoitus."
479
+
480
+ #: includes/settings-page.php:575
481
+ msgid "Donate using Paypal"
482
+ msgstr "Lahjoita Paypalin välityksellä"
483
+
484
+ #: includes/settings-page.php:579
485
+ msgid "Techotronic Development Support"
486
+ msgstr "Techotronic kehitystuki"
487
+
488
+ #: includes/settings-page.php:583
489
+ msgid "Please enter the URL you'd like me to link to in the donors lists"
490
+ msgstr "Ole hyvä ja täytä URL osoite, jos haluat minun linkittävän sinut lahjoittajien listaan"
491
+
492
+ #: includes/settings-page.php:585
493
+ msgid "Return to Your Dashboard"
494
+ msgstr "Palaa ohjausnäkymään"
495
+
496
+ #: includes/settings-page.php:589
497
+ msgid "Select Preset Amount"
498
+ msgstr "Valitse säännöllinen summa"
499
+
500
+ #: includes/settings-page.php:597
501
+ #: includes/settings-page.php:601
502
+ msgid "USD"
503
+ msgstr "USD"
504
+
505
+ #: includes/settings-page.php:598
506
+ msgid "Or"
507
+ msgstr "Tai"
508
+
509
+ #: includes/settings-page.php:599
510
+ msgid "Enter Custom Amount"
511
+ msgstr "Syötä oma summa"
512
+
513
+ #: includes/settings-page.php:603
514
+ msgid "Submit"
515
+ msgstr "Lähetä"
516
+
517
+ #: includes/settings-page.php:610
518
+ msgid "Translation"
519
+ msgstr "Käännös"
520
+
521
+ #: includes/settings-page.php:613
522
+ msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
523
+ msgstr "Suomenkielisen käännöksen on tehnyt <a href=\"http://www.merisaari.com\">Lauri Merisaari</a>."
524
+
525
+ #~ msgid "maxWidth"
526
+ #~ msgstr "Maximum width of an image"
527
+
528
+ #~ msgid "maxHeight"
529
+ #~ msgstr "Maximum height of an image"
530
+
531
+ #~ msgid "width"
532
+ #~ msgstr "Maxinmum width of the Colorbox"
533
+
534
+ #~ msgid "height"
535
+ #~ msgstr "Maximum height of the Colorbox"
localization/jquery-colorbox-fr_FR.mo CHANGED
Binary file
localization/jquery-colorbox-fr_FR.po CHANGED
@@ -2,532 +2,521 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: jQuery-Colorbox\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2011-04-16 21:51+0100\n"
6
- "PO-Revision-Date: 2011-04-16 21:51+0100\n"
7
  "Last-Translator: \n"
8
- "Language-Team: tolingo translations <info@tolingo.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "X-Poedit-Language: French\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
- "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-Country: FRANCE\n"
16
- "X-Poedit-SearchPath-0: .\n"
 
17
 
18
- #: jquery-colorbox.php:122
19
  msgid "Theme #1"
20
  msgstr "Thème n°1"
21
 
22
- #: jquery-colorbox.php:123
23
  msgid "Theme #2"
24
  msgstr "Thème n°2"
25
 
26
- #: jquery-colorbox.php:124
27
  msgid "Theme #3"
28
  msgstr "Thème n°3"
29
 
30
- #: jquery-colorbox.php:125
31
  msgid "Theme #4"
32
  msgstr "Thème n°4"
33
 
34
- #: jquery-colorbox.php:126
35
  msgid "Theme #5"
36
  msgstr "Thème n°5"
37
 
38
- #: jquery-colorbox.php:127
39
  msgid "Theme #6"
40
  msgstr "Thème n°6"
41
 
42
- #: jquery-colorbox.php:128
43
  msgid "Theme #7"
44
  msgstr "Thème n°7"
45
 
46
- #: jquery-colorbox.php:129
47
  msgid "Theme #8"
48
  msgstr "Thème n°8"
49
 
50
- #: jquery-colorbox.php:130
51
  msgid "Theme #9"
52
  msgstr "Thème n°9"
53
 
54
- #: jquery-colorbox.php:131
55
  msgid "Theme #10"
56
  msgstr "Thème n°10"
57
 
58
- #: jquery-colorbox.php:132
59
  msgid "Theme #11"
60
  msgstr "Thème n°11"
61
 
62
- #: jquery-colorbox.php:138
63
  msgid "Theme #12"
64
  msgstr "Thème n°12"
65
 
66
- #: jquery-colorbox.php:139
67
  msgid "Theme #13"
68
  msgstr "Thème n°13"
69
 
70
- #: jquery-colorbox.php:140
71
  msgid "Theme #14"
72
  msgstr "Thème n°14"
73
 
74
- #: jquery-colorbox.php:141
75
  msgid "Theme #15"
76
  msgstr "Thème n°15"
77
 
78
- #: jquery-colorbox.php:146
79
  msgid "percent"
80
  msgstr "pourcent"
81
 
82
- #: jquery-colorbox.php:147
83
- #: includes/settings-page.php:434
84
- #: includes/settings-page.php:443
85
  msgid "pixels"
86
  msgstr "pixels"
87
 
88
- #: jquery-colorbox.php:152
89
  msgid "elastic"
90
  msgstr "élastique"
91
 
92
- #: jquery-colorbox.php:153
93
  msgid "fade"
94
  msgstr "s'effacer"
95
 
96
- #: jquery-colorbox.php:154
97
  msgid "none"
98
  msgstr "aucun"
99
 
100
- #: jquery-colorbox.php:206
101
- msgid "Using"
102
- msgstr ""
103
-
104
- #: jquery-colorbox.php:307
105
- #: includes/settings-page.php:127
106
- msgid "Settings"
107
- msgstr "Paramètres"
108
-
109
- #: jquery-colorbox.php:372
110
  #, php-format
111
  msgid "Successfully updated %1$s settings."
112
  msgstr "Mise à jour réussie des paramètres de la %1$s."
113
 
114
- #: jquery-colorbox.php:374
115
  #, php-format
116
  msgid "%1$s settings were successfully deleted."
117
  msgstr "Suppression réussie des paramètres de la %1$s."
118
 
119
- #: jquery-colorbox.php:419
120
  msgid "needs attention: the plugin is not activated to work for all images."
121
  msgstr "attention : le plugin n'est pas activé pour fonctionner avec toutes les images."
122
 
123
- #: jquery-colorbox.php:501
 
 
 
 
 
124
  msgid "Did not update settings, you do not have the necessary rights."
125
  msgstr "Les paramètres n'ont pas été mis à jour, vous ne disposez pas des droits nécessaires."
126
 
127
- #: jquery-colorbox.php:550
128
  #, php-format
129
  msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
130
  msgstr "Les paramètres de la %1$s n'ont pas été supprimés. Soit vous ne disposez pas des droits nécessaires, soit vous n'avez pas coché la case."
131
 
132
- #: includes/colorbox-javascript-loader.php:48
 
 
 
 
133
  msgid "close"
134
  msgstr "fermer"
135
 
136
- #: includes/colorbox-javascript-loader.php:49
137
  msgid "next"
138
  msgstr "suivant"
139
 
140
- #: includes/colorbox-javascript-loader.php:50
141
  msgid "previous"
142
  msgstr "précédent"
143
 
144
- #: includes/colorbox-javascript-loader.php:51
145
  msgid "start slideshow"
146
  msgstr "commencer le diaporama"
147
 
148
- #: includes/colorbox-javascript-loader.php:52
149
  msgid "stop slideshow"
150
  msgstr "arrêter le diaporama"
151
 
152
- #: includes/colorbox-javascript-loader.php:53
153
  msgid "{current} of {total} images"
154
- msgstr "{current} du {total} d'images"
155
 
156
- #: includes/settings-page.php:117
157
  #, php-format
158
  msgid "%1$s Settings"
159
  msgstr "Paramètres de la %1$s"
160
 
161
- #: includes/settings-page.php:128
162
- #, fuzzy
163
  msgid "Plugin settings"
164
  msgstr "Paramètres"
165
 
166
- #: includes/settings-page.php:135
167
  #, php-format
168
- msgid "Automate %1$s for all images"
169
- msgstr "Automatiser %1$s pour toutes les images"
170
-
171
- #: includes/settings-page.php:135
172
- #, fuzzy, php-format
173
  msgid "Automate %1$s for all images in pages, posts and galleries"
174
- msgstr "Automatiser %1$s pour les images des galeries WordPress"
175
 
176
- #: includes/settings-page.php:139
177
  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."
178
- msgstr "Ajouter automatiquement une classe colorbox aux images dans les billets et les pages. Ajouter aussi une classe colorbox aux galeries. Les images sur une page ou un billet sont automatiquement groupées."
179
 
180
- #: includes/settings-page.php:144
181
  #, php-format
182
- msgid "Automate %1$s for images in WordPress galleries"
183
- msgstr "Automatiser %1$s pour les images des galeries WordPress"
184
-
185
- #: includes/settings-page.php:144
186
- #, fuzzy, php-format
187
  msgid "Automate %1$s for images in WordPress galleries only"
188
- msgstr "Automatiser %1$s pour les images des galeries WordPress"
189
 
190
- #: includes/settings-page.php:148
191
  msgid "Automatically add colorbox-class to images in WordPress galleries, but nowhere else. Images in one page or post are grouped automatically."
192
- msgstr "Ajouter automatiquement une classe colorbox aux images dans les galeries WordPress, mais nulle part ailleurs. Les images sur une page ou un billet sont automatiquement groupées."
193
 
194
- #: includes/settings-page.php:153
195
- #, fuzzy, php-format
196
  msgid "Automate %1$s for all other images"
197
- msgstr "Automatiser %1$s pour toutes les images"
198
 
199
- #: includes/settings-page.php:157
200
  msgid "Automatically add colorbox-class to all images that are not in posts and pages (e.g. the sidebar)."
201
- msgstr ""
202
 
203
- #: includes/settings-page.php:162
204
  msgid "Automate hiding of flash objects"
205
  msgstr "Masquage automatique des objets flash"
206
 
207
- #: includes/settings-page.php:166
208
- #, fuzzy
209
  msgid "Automatically hide embeded flash objects behind the Colorbox layer."
210
- msgstr "Masquer automatiquement les objets flash intégrés derrière la couche de la Colorbox. Obtenu en réglant le wmode sur transparent."
211
 
212
- #: includes/settings-page.php:171
213
  msgid "Add JavaScript to footer"
214
- msgstr ""
215
 
216
- #: includes/settings-page.php:175
217
  msgid "Add JavaScript to footer instead of the header."
218
- msgstr ""
219
 
220
- #: includes/settings-page.php:180
221
  msgid "Remove link from Meta-box"
222
- msgstr ""
223
 
224
- #: includes/settings-page.php:184
225
  msgid "Remove the link to the developers site from the WordPress meta-box."
226
- msgstr ""
227
 
228
- #: includes/settings-page.php:189
229
  msgid "Activate debug mode"
230
- msgstr ""
231
 
232
- #: includes/settings-page.php:193
233
  msgid "Adds debug information and non-minified JavaScript to the page. Useful for troubleshooting."
234
- msgstr ""
235
 
236
- #: includes/settings-page.php:198
237
  msgid "Disable warning"
238
  msgstr "Désactiver l'avertissement"
239
 
240
- #: includes/settings-page.php:202
241
  msgid "Disables the warning that is displayed if the plugin is activated but the auto-colorbox feature for all images is turned off."
242
- msgstr "Désactive l'avertissement qui est affiché si le plugin est activé mais que la fonction auto-colorbox est hors fonction pour toutes les images."
243
 
244
- #: includes/settings-page.php:208
245
- #: includes/settings-page.php:521
246
  msgid "Save Changes"
247
  msgstr "Enregistrer les modifications"
248
 
249
- #: includes/settings-page.php:213
250
  msgid "Colorbox settings"
251
- msgstr ""
252
 
253
- #: includes/settings-page.php:220
254
  msgid "Theme"
255
  msgstr "Thème"
256
 
257
- #: includes/settings-page.php:232
258
  msgid "Select the theme you want to use on your blog."
259
  msgstr "Sélectionner le thème que vous voulez utiliser sur votre blog."
260
 
261
- #: includes/settings-page.php:237
262
  msgid "Theme screenshot"
263
  msgstr "Capture d'écran du thème"
264
 
265
- #: includes/settings-page.php:248
266
  msgid "Add Slideshow to groups"
267
  msgstr "Ajouter un diaporama aux groupes"
268
 
269
- #: includes/settings-page.php:252
270
  #, php-format
271
  msgid "Add Slideshow functionality for %1$s Groups"
272
  msgstr "Ajouter la fonction Diaporama aux groupes de la %1$s"
273
 
274
- #: includes/settings-page.php:257
275
  msgid "Start Slideshow automatically"
276
  msgstr "Démarrer automatiquement le diaporama"
277
 
278
- #: includes/settings-page.php:261
279
  #, php-format
280
  msgid "Start Slideshow automatically if slideshow functionality is added to %1$s Groups"
281
  msgstr "Démarrer automatiquement le diaporama si la fonction Diaporama a été ajoutée aux groupes de la %1$s"
282
 
283
- #: includes/settings-page.php:266
284
  msgid "Speed of the slideshow"
285
  msgstr "Vitesse du diaporama"
286
 
287
- #: includes/settings-page.php:269
288
- #: includes/settings-page.php:496
289
  msgid "milliseconds"
290
  msgstr "millisecondes"
291
 
292
- #: includes/settings-page.php:270
293
  msgid "Sets the speed of the slideshow, in milliseconds"
294
  msgstr "Fixe la vitesse du diaporama en millisecondes"
295
 
296
- #: includes/settings-page.php:275
297
  msgid "Disable loop"
298
- msgstr ""
299
 
300
- #: includes/settings-page.php:279
301
  msgid "Disable looping through image groups"
302
- msgstr ""
303
 
304
- #: includes/settings-page.php:284
305
  msgid "Disable keys"
306
- msgstr ""
307
 
308
- #: includes/settings-page.php:288
309
  msgid "Disable ESC to close Colorbox and arrow keys to go to next and previous images"
310
- msgstr ""
311
 
312
- #: includes/settings-page.php:293
313
  msgid "Maximum width of an image"
314
  msgstr "Largeur maximum d'une image"
315
 
316
- #: includes/settings-page.php:297
317
- #: includes/settings-page.php:343
318
- #: includes/settings-page.php:389
319
  msgid "Do not set width"
320
  msgstr "Ne pas fixer la largeur"
321
 
322
- #: includes/settings-page.php:300
323
  msgid "Set maximum width of an image"
324
  msgstr "Fixer la largeur maximum d'une image"
325
 
326
- #: includes/settings-page.php:311
327
  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"
328
  msgstr "Fixer la largeur maximum d'une image dans la Colorbox en fonction de la fenêtre du navigateur en pourcent ou en pixels. Si la largeur maximum n'est pas fixée, l'image est aussi large que la Colorbox"
329
 
330
- #: includes/settings-page.php:316
331
  msgid "Maximum height of an image"
332
  msgstr "Hauteur maximum d'une image"
333
 
334
- #: includes/settings-page.php:320
335
- #: includes/settings-page.php:366
336
- #: includes/settings-page.php:412
337
  msgid "Do not set height"
338
  msgstr "Ne pas fixer la hauteur"
339
 
340
- #: includes/settings-page.php:323
341
  msgid "Set maximum height of an image"
342
  msgstr "Fixer la hauteur maximum d'une image"
343
 
344
- #: includes/settings-page.php:334
345
  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"
346
  msgstr "Fixer la hauteur maximum d'une image dans la Colorbox en fonction de la fenêtre du navigateur sur une valeur en pourcent ou en pixels. Si la hauteur maximum n'est pas fixée, l'image est aussi haute que la Colorbox."
347
 
348
- #: includes/settings-page.php:339
349
  msgid "Maximum width of the Colorbox"
350
  msgstr "Largeur maximum de la Colorbox"
351
 
352
- #: includes/settings-page.php:346
353
- #: includes/settings-page.php:392
354
  msgid "Set width of the Colorbox"
355
  msgstr "Fixer la largeur de la Colorbox"
356
 
357
- #: includes/settings-page.php:357
358
- #: includes/settings-page.php:403
359
  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"
360
- msgstr "Fixer la largeur maximum de la Colorbox elle-même en fonction de la fenêtre du navigateur sur une valeur comprise entre en pourcent ou en pixels. Si l'image est plus grande que la Colorbox, des barres de défilement sont affichées. Si la largeur n'est pas fixée, la Colorbox sera aussi large que l'image qu'elle contient"
361
 
362
- #: includes/settings-page.php:362
363
  msgid "Maximum height of the Colorbox"
364
  msgstr "Hauteur maximum de la Colorbox"
365
 
366
- #: includes/settings-page.php:369
367
- #: includes/settings-page.php:415
368
  msgid "Set height of the Colorbox"
369
  msgstr "Fixer la hauteur de la Colorbox"
370
 
371
- #: includes/settings-page.php:380
372
- #: includes/settings-page.php:426
373
  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"
374
- msgstr "Fixer la hauteur maximum de la Colorbox elle-même en fonction de la fenêtre du navigateur sur une valeur comprise entre en pourcent ou en pixels. Si l'image est plus grande que la Colorbox, des barres de défilement sont affichées. Si la hauteur n'est pas fixée, la Colorbox sera aussi haute que l'image qu'elle contient"
375
 
376
- #: includes/settings-page.php:385
377
- #, fuzzy
378
  msgid "Maximum width of the Colorbox used for links"
379
- msgstr "Largeur maximum de la Colorbox"
380
 
381
- #: includes/settings-page.php:408
382
- #, fuzzy
383
  msgid "Maximum height of the Colorbox used for links"
384
- msgstr "Hauteur maximum de la Colorbox"
385
 
386
- #: includes/settings-page.php:431
387
- #, fuzzy
388
  msgid "Initial width of the Colorbox"
389
- msgstr "Fixer la largeur de la Colorbox"
390
 
391
- #: includes/settings-page.php:435
392
- #, fuzzy
393
  msgid "Set the maximum width of the Colorbox before the content is loaded"
394
- msgstr "Largeur maximum de la Colorbox"
395
 
396
- #: includes/settings-page.php:440
397
- #, fuzzy
398
  msgid "Initial height of the Colorbox"
399
- msgstr "Fixer la hauteur de la Colorbox"
400
 
401
- #: includes/settings-page.php:444
402
- #, fuzzy
403
  msgid "Set the maximum height of the Colorbox before the content is loaded"
404
- msgstr "Hauteur maximum de la Colorbox"
405
 
406
- #: includes/settings-page.php:449
407
  msgid "Resize images"
408
  msgstr "Redimensionner les images"
409
 
410
- #: includes/settings-page.php:453
411
  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"
412
  msgstr "Si cette fonction est activée et si la largeur maximum des images, la hauteur maximum des images, la largeur de la Colorbox ou la hauteur de la Colorbox ont été définies, la ColorBox mettra les photos à l'échelle de façon qu'elles s'adaptent à ces valeurs"
413
 
414
- #: includes/settings-page.php:458
415
  msgid "Close Colorbox on overlay click"
416
  msgstr "Fermer la Colorbox en cliquant sur le recouvrement"
417
 
418
- #: includes/settings-page.php:462
419
  msgid "If checked, enables closing ColorBox by clicking on the background overlay"
420
  msgstr "Si elle est cochée, cette case active la fermeture de la ColorBox en cliquant sur le recouvrement de l'arrière-plan"
421
 
422
- #: includes/settings-page.php:467
423
  msgid "Preload images"
424
  msgstr "Précharger les images"
425
 
426
- #: includes/settings-page.php:471
427
  msgid "Allows for preloading of \"next\" and \"previous\" content in a group, after the current content has finished loading. Uncheck box to disable."
428
  msgstr "Permet le préchargement des contenus \"suivant\" et \"précédent\" d'un groupe, après que le contenu en cours a terminé son chargement. Décochez la case pour désactiver la fonction."
429
 
430
- #: includes/settings-page.php:476
431
  msgid "Transition type"
432
  msgstr "Type de transition"
433
 
434
- #: includes/settings-page.php:488
435
  msgid "The transition type of the Colorbox. Can be set to \"elastic\", \"fade\", or \"none\""
436
  msgstr "Le type de transition de la Colorbox. Il peut être fixé sur \"élastique\", \"effacé\" ou \"aucun\""
437
 
438
- #: includes/settings-page.php:493
439
  msgid "Transition speed"
440
  msgstr "Vitesse de transition"
441
 
442
- #: includes/settings-page.php:497
443
  msgid "Sets the speed of the \"fade\" and \"elastic\" transitions, in milliseconds"
444
  msgstr "Fixe la vitesse des transitions \"effacé\" et \"élastique\", en millisecondes"
445
 
446
- #: includes/settings-page.php:502
447
  msgid "Opacity"
448
  msgstr "Opacité"
449
 
450
- #: includes/settings-page.php:506
451
  msgid "The overlay opacity level. Range: 0 to 1"
452
  msgstr "Le niveau d'opacité du recouvrement. Plage : 0 à 1"
453
 
454
- #: includes/settings-page.php:511
455
  msgid "Make images draggable"
456
- msgstr ""
457
 
458
- #: includes/settings-page.php:515
459
  msgid "Make images draggable instead of scrollable"
460
- msgstr ""
461
 
462
- #: includes/settings-page.php:531
463
- #: includes/settings-page.php:540
464
  msgid "Delete Settings"
465
  msgstr "Supprimer les paramètres"
466
 
467
- #: includes/settings-page.php:534
468
  msgid "Check the box and click this button to delete settings of this plugin."
469
- msgstr "Cocher la case et cliquer sur ce bouton pour supprimer les paramètres de ce plugin."
470
 
471
- #: includes/settings-page.php:551
472
  msgid "Top donations"
473
  msgstr ""
474
 
475
- #: includes/settings-page.php:560
476
  msgid "Latest donations"
477
- msgstr ""
478
 
479
- #: includes/settings-page.php:569
480
  msgid "Donate"
481
  msgstr "Faire un don"
482
 
483
- #: includes/settings-page.php:573
484
  msgid "If you would like to make a small (or large) contribution towards future development please consider making a donation."
485
  msgstr "Si vous voulez apporter une contribution, petite ou importante, en vue de développements futurs, vous pouvez faire un don."
486
 
487
- #: includes/settings-page.php:575
488
  msgid "Donate using Paypal"
489
- msgstr ""
490
 
491
- #: includes/settings-page.php:579
492
  msgid "Techotronic Development Support"
493
  msgstr ""
494
 
495
- #: includes/settings-page.php:583
496
  msgid "Please enter the URL you'd like me to link to in the donors lists"
497
- msgstr ""
498
 
499
- #: includes/settings-page.php:585
500
  msgid "Return to Your Dashboard"
501
- msgstr ""
502
 
503
- #: includes/settings-page.php:589
504
  msgid "Select Preset Amount"
505
- msgstr ""
506
 
507
- #: includes/settings-page.php:597
508
- #: includes/settings-page.php:601
509
  msgid "USD"
510
  msgstr ""
511
 
512
- #: includes/settings-page.php:598
513
  msgid "Or"
514
- msgstr ""
515
 
516
- #: includes/settings-page.php:599
517
  msgid "Enter Custom Amount"
518
- msgstr ""
519
 
520
- #: includes/settings-page.php:603
521
  msgid "Submit"
522
- msgstr ""
523
 
524
- #: includes/settings-page.php:610
525
  msgid "Translation"
526
  msgstr "Traduction"
527
 
528
- #: includes/settings-page.php:613
529
  msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
530
- msgstr "La traduction en français a été faite par <a href=\"http://www.tolingo.com\">tolingo translations</a>."
 
 
 
 
 
 
531
 
532
  #~ msgid "maxWidth"
533
  #~ 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: 2011-05-02 20:11+0100\n"
6
+ "PO-Revision-Date: 2011-05-02 20:18+0100\n"
7
  "Last-Translator: \n"
8
+ "Language-Team: Pierre Sudarovich\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "X-Poedit-Language: French\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
+ "X-Poedit-Basepath: .\n"
15
  "X-Poedit-Country: FRANCE\n"
16
+ "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Poedit-SearchPath-0: ..\n"
18
 
19
+ #: ../jquery-colorbox.php:88
20
  msgid "Theme #1"
21
  msgstr "Thème n°1"
22
 
23
+ #: ../jquery-colorbox.php:89
24
  msgid "Theme #2"
25
  msgstr "Thème n°2"
26
 
27
+ #: ../jquery-colorbox.php:90
28
  msgid "Theme #3"
29
  msgstr "Thème n°3"
30
 
31
+ #: ../jquery-colorbox.php:91
32
  msgid "Theme #4"
33
  msgstr "Thème n°4"
34
 
35
+ #: ../jquery-colorbox.php:92
36
  msgid "Theme #5"
37
  msgstr "Thème n°5"
38
 
39
+ #: ../jquery-colorbox.php:93
40
  msgid "Theme #6"
41
  msgstr "Thème n°6"
42
 
43
+ #: ../jquery-colorbox.php:94
44
  msgid "Theme #7"
45
  msgstr "Thème n°7"
46
 
47
+ #: ../jquery-colorbox.php:95
48
  msgid "Theme #8"
49
  msgstr "Thème n°8"
50
 
51
+ #: ../jquery-colorbox.php:96
52
  msgid "Theme #9"
53
  msgstr "Thème n°9"
54
 
55
+ #: ../jquery-colorbox.php:97
56
  msgid "Theme #10"
57
  msgstr "Thème n°10"
58
 
59
+ #: ../jquery-colorbox.php:98
60
  msgid "Theme #11"
61
  msgstr "Thème n°11"
62
 
63
+ #: ../jquery-colorbox.php:104
64
  msgid "Theme #12"
65
  msgstr "Thème n°12"
66
 
67
+ #: ../jquery-colorbox.php:105
68
  msgid "Theme #13"
69
  msgstr "Thème n°13"
70
 
71
+ #: ../jquery-colorbox.php:106
72
  msgid "Theme #14"
73
  msgstr "Thème n°14"
74
 
75
+ #: ../jquery-colorbox.php:107
76
  msgid "Theme #15"
77
  msgstr "Thème n°15"
78
 
79
+ #: ../jquery-colorbox.php:112
80
  msgid "percent"
81
  msgstr "pourcent"
82
 
83
+ #: ../jquery-colorbox.php:113
84
+ #: ../includes/settings-page.php:434
85
+ #: ../includes/settings-page.php:443
86
  msgid "pixels"
87
  msgstr "pixels"
88
 
89
+ #: ../jquery-colorbox.php:118
90
  msgid "elastic"
91
  msgstr "élastique"
92
 
93
+ #: ../jquery-colorbox.php:119
94
  msgid "fade"
95
  msgstr "s'effacer"
96
 
97
+ #: ../jquery-colorbox.php:120
98
  msgid "none"
99
  msgstr "aucun"
100
 
101
+ #: ../includes/jquery-colorbox-backend.php:79
 
 
 
 
 
 
 
 
 
102
  #, php-format
103
  msgid "Successfully updated %1$s settings."
104
  msgstr "Mise à jour réussie des paramètres de la %1$s."
105
 
106
+ #: ../includes/jquery-colorbox-backend.php:81
107
  #, php-format
108
  msgid "%1$s settings were successfully deleted."
109
  msgstr "Suppression réussie des paramètres de la %1$s."
110
 
111
+ #: ../includes/jquery-colorbox-backend.php:124
112
  msgid "needs attention: the plugin is not activated to work for all images."
113
  msgstr "attention : le plugin n'est pas activé pour fonctionner avec toutes les images."
114
 
115
+ #: ../includes/jquery-colorbox-backend.php:161
116
+ #: ../includes/settings-page.php:127
117
+ msgid "Settings"
118
+ msgstr "Paramètres"
119
+
120
+ #: ../includes/jquery-colorbox-backend.php:183
121
  msgid "Did not update settings, you do not have the necessary rights."
122
  msgstr "Les paramètres n'ont pas été mis à jour, vous ne disposez pas des droits nécessaires."
123
 
124
+ #: ../includes/jquery-colorbox-backend.php:232
125
  #, php-format
126
  msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
127
  msgstr "Les paramètres de la %1$s n'ont pas été supprimés. Soit vous ne disposez pas des droits nécessaires, soit vous n'avez pas coché la case."
128
 
129
+ #: ../includes/jquery-colorbox-frontend.php:86
130
+ msgid "Using"
131
+ msgstr "Utilisant"
132
+
133
+ #: ../includes/jquery-colorbox-frontend.php:191
134
  msgid "close"
135
  msgstr "fermer"
136
 
137
+ #: ../includes/jquery-colorbox-frontend.php:192
138
  msgid "next"
139
  msgstr "suivant"
140
 
141
+ #: ../includes/jquery-colorbox-frontend.php:193
142
  msgid "previous"
143
  msgstr "précédent"
144
 
145
+ #: ../includes/jquery-colorbox-frontend.php:194
146
  msgid "start slideshow"
147
  msgstr "commencer le diaporama"
148
 
149
+ #: ../includes/jquery-colorbox-frontend.php:195
150
  msgid "stop slideshow"
151
  msgstr "arrêter le diaporama"
152
 
153
+ #: ../includes/jquery-colorbox-frontend.php:196
154
  msgid "{current} of {total} images"
155
+ msgstr "{current} sur {total} images"
156
 
157
+ #: ../includes/settings-page.php:117
158
  #, php-format
159
  msgid "%1$s Settings"
160
  msgstr "Paramètres de la %1$s"
161
 
162
+ #: ../includes/settings-page.php:128
 
163
  msgid "Plugin settings"
164
  msgstr "Paramètres"
165
 
166
+ #: ../includes/settings-page.php:135
167
  #, php-format
 
 
 
 
 
168
  msgid "Automate %1$s for all images in pages, posts and galleries"
169
+ msgstr "Automatiser %1$s pour toutes les images dans les pages, articles et galeries"
170
 
171
+ #: ../includes/settings-page.php:139
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 "Ajouter automatiquement une classe \"colorbox-class\" aux images dans les articles et pages. Ajouter aussi une classe \"colorbox-class\" aux galeries. Les images sur une page ou un article sont automatiquement groupées."
174
 
175
+ #: ../includes/settings-page.php:144
176
  #, php-format
 
 
 
 
 
177
  msgid "Automate %1$s for images in WordPress galleries only"
178
+ msgstr "Automatiser %1$s pour les images des galeries WordPress seulement"
179
 
180
+ #: ../includes/settings-page.php:148
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 "Ajouter automatiquement une classe \"colorbox-class\" aux images dans les galeries WordPress, mais nulle part ailleurs. Les images sur une page ou un article sont automatiquement groupées."
183
 
184
+ #: ../includes/settings-page.php:153
185
+ #, php-format
186
  msgid "Automate %1$s for all other images"
187
+ msgstr "Automatiser %1$s pour toutes les autres images"
188
 
189
+ #: ../includes/settings-page.php:157
190
  msgid "Automatically add colorbox-class to all images that are not in posts and pages (e.g. the sidebar)."
191
+ msgstr "Ajouter automatiquement la classe \"colorbox-class\" à toutes les images qui ne sont pas dans les articles et les pages (ex : dans la sidebar)."
192
 
193
+ #: ../includes/settings-page.php:162
194
  msgid "Automate hiding of flash objects"
195
  msgstr "Masquage automatique des objets flash"
196
 
197
+ #: ../includes/settings-page.php:166
 
198
  msgid "Automatically hide embeded flash objects behind the Colorbox layer."
199
+ msgstr "Masquer automatiquement les objets flash intégrés derrière la couche de la Colorbox."
200
 
201
+ #: ../includes/settings-page.php:171
202
  msgid "Add JavaScript to footer"
203
+ msgstr "Ajouter le JavaScript dans le pied de page"
204
 
205
+ #: ../includes/settings-page.php:175
206
  msgid "Add JavaScript to footer instead of the header."
207
+ msgstr "Ajouter le JavaScript dans le pied de page au lieu de dans l'en-tête."
208
 
209
+ #: ../includes/settings-page.php:180
210
  msgid "Remove link from Meta-box"
211
+ msgstr "Enlever le lien de la Meta-box"
212
 
213
+ #: ../includes/settings-page.php:184
214
  msgid "Remove the link to the developers site from the WordPress meta-box."
215
+ msgstr "Enlever le lien vers le site du développeur de la meta-box de Wordpress."
216
 
217
+ #: ../includes/settings-page.php:189
218
  msgid "Activate debug mode"
219
+ msgstr "Activer le mode debug"
220
 
221
+ #: ../includes/settings-page.php:193
222
  msgid "Adds debug information and non-minified JavaScript to the page. Useful for troubleshooting."
223
+ msgstr "Ajouter les informations de debug et le code Javascript non compressé à la page. Utile en cas de problème."
224
 
225
+ #: ../includes/settings-page.php:198
226
  msgid "Disable warning"
227
  msgstr "Désactiver l'avertissement"
228
 
229
+ #: ../includes/settings-page.php:202
230
  msgid "Disables the warning that is displayed if the plugin is activated but the auto-colorbox feature for all images is turned off."
231
+ msgstr "Désactive l'avertissement qui est affiché si le plugin est activé mais que la fonction auto-colorbox pour toutes les images est inactif."
232
 
233
+ #: ../includes/settings-page.php:208
234
+ #: ../includes/settings-page.php:521
235
  msgid "Save Changes"
236
  msgstr "Enregistrer les modifications"
237
 
238
+ #: ../includes/settings-page.php:213
239
  msgid "Colorbox settings"
240
+ msgstr "Paramètres de Colorbox"
241
 
242
+ #: ../includes/settings-page.php:220
243
  msgid "Theme"
244
  msgstr "Thème"
245
 
246
+ #: ../includes/settings-page.php:232
247
  msgid "Select the theme you want to use on your blog."
248
  msgstr "Sélectionner le thème que vous voulez utiliser sur votre blog."
249
 
250
+ #: ../includes/settings-page.php:237
251
  msgid "Theme screenshot"
252
  msgstr "Capture d'écran du thème"
253
 
254
+ #: ../includes/settings-page.php:248
255
  msgid "Add Slideshow to groups"
256
  msgstr "Ajouter un diaporama aux groupes"
257
 
258
+ #: ../includes/settings-page.php:252
259
  #, php-format
260
  msgid "Add Slideshow functionality for %1$s Groups"
261
  msgstr "Ajouter la fonction Diaporama aux groupes de la %1$s"
262
 
263
+ #: ../includes/settings-page.php:257
264
  msgid "Start Slideshow automatically"
265
  msgstr "Démarrer automatiquement le diaporama"
266
 
267
+ #: ../includes/settings-page.php:261
268
  #, php-format
269
  msgid "Start Slideshow automatically if slideshow functionality is added to %1$s Groups"
270
  msgstr "Démarrer automatiquement le diaporama si la fonction Diaporama a été ajoutée aux groupes de la %1$s"
271
 
272
+ #: ../includes/settings-page.php:266
273
  msgid "Speed of the slideshow"
274
  msgstr "Vitesse du diaporama"
275
 
276
+ #: ../includes/settings-page.php:269
277
+ #: ../includes/settings-page.php:496
278
  msgid "milliseconds"
279
  msgstr "millisecondes"
280
 
281
+ #: ../includes/settings-page.php:270
282
  msgid "Sets the speed of the slideshow, in milliseconds"
283
  msgstr "Fixe la vitesse du diaporama en millisecondes"
284
 
285
+ #: ../includes/settings-page.php:275
286
  msgid "Disable loop"
287
+ msgstr "Désactiver la boucle"
288
 
289
+ #: ../includes/settings-page.php:279
290
  msgid "Disable looping through image groups"
291
+ msgstr "Désactiver la boucle pour les groupes d'images"
292
 
293
+ #: ../includes/settings-page.php:284
294
  msgid "Disable keys"
295
+ msgstr "Désactiver les touches"
296
 
297
+ #: ../includes/settings-page.php:288
298
  msgid "Disable ESC to close Colorbox and arrow keys to go to next and previous images"
299
+ msgstr "Désactiver ESC pour fermer la fenêtre Colorbox et les flèches pour naviguer vers les images suivantes et précédentes"
300
 
301
+ #: ../includes/settings-page.php:293
302
  msgid "Maximum width of an image"
303
  msgstr "Largeur maximum d'une image"
304
 
305
+ #: ../includes/settings-page.php:297
306
+ #: ../includes/settings-page.php:343
307
+ #: ../includes/settings-page.php:389
308
  msgid "Do not set width"
309
  msgstr "Ne pas fixer la largeur"
310
 
311
+ #: ../includes/settings-page.php:300
312
  msgid "Set maximum width of an image"
313
  msgstr "Fixer la largeur maximum d'une image"
314
 
315
+ #: ../includes/settings-page.php:311
316
  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"
317
  msgstr "Fixer la largeur maximum d'une image dans la Colorbox en fonction de la fenêtre du navigateur en pourcent ou en pixels. Si la largeur maximum n'est pas fixée, l'image est aussi large que la Colorbox"
318
 
319
+ #: ../includes/settings-page.php:316
320
  msgid "Maximum height of an image"
321
  msgstr "Hauteur maximum d'une image"
322
 
323
+ #: ../includes/settings-page.php:320
324
+ #: ../includes/settings-page.php:366
325
+ #: ../includes/settings-page.php:412
326
  msgid "Do not set height"
327
  msgstr "Ne pas fixer la hauteur"
328
 
329
+ #: ../includes/settings-page.php:323
330
  msgid "Set maximum height of an image"
331
  msgstr "Fixer la hauteur maximum d'une image"
332
 
333
+ #: ../includes/settings-page.php:334
334
  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"
335
  msgstr "Fixer la hauteur maximum d'une image dans la Colorbox en fonction de la fenêtre du navigateur sur une valeur en pourcent ou en pixels. Si la hauteur maximum n'est pas fixée, l'image est aussi haute que la Colorbox."
336
 
337
+ #: ../includes/settings-page.php:339
338
  msgid "Maximum width of the Colorbox"
339
  msgstr "Largeur maximum de la Colorbox"
340
 
341
+ #: ../includes/settings-page.php:346
342
+ #: ../includes/settings-page.php:392
343
  msgid "Set width of the Colorbox"
344
  msgstr "Fixer la largeur de la Colorbox"
345
 
346
+ #: ../includes/settings-page.php:357
347
+ #: ../includes/settings-page.php:403
348
  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"
349
+ msgstr "Fixer la largeur maximum de la Colorbox elle-même en fonction de la fenêtre du navigateur sur une valeur comprise en pourcent ou en pixels. Si l'image est plus grande que la Colorbox, des barres de défilement sont affichées. Si la largeur n'est pas fixée, la Colorbox sera aussi large que l'image qu'elle contient"
350
 
351
+ #: ../includes/settings-page.php:362
352
  msgid "Maximum height of the Colorbox"
353
  msgstr "Hauteur maximum de la Colorbox"
354
 
355
+ #: ../includes/settings-page.php:369
356
+ #: ../includes/settings-page.php:415
357
  msgid "Set height of the Colorbox"
358
  msgstr "Fixer la hauteur de la Colorbox"
359
 
360
+ #: ../includes/settings-page.php:380
361
+ #: ../includes/settings-page.php:426
362
  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"
363
+ msgstr "Fixer la hauteur maximum de la Colorbox elle-même en fonction de la fenêtre du navigateur sur une valeur comprise en pourcent ou en pixels. Si l'image est plus grande que la Colorbox, des barres de défilement sont affichées. Si la hauteur n'est pas fixée, la Colorbox sera aussi haute que l'image qu'elle contient"
364
 
365
+ #: ../includes/settings-page.php:385
 
366
  msgid "Maximum width of the Colorbox used for links"
367
+ msgstr "Largeur maximum de la Colorbox utilisée pour les liens"
368
 
369
+ #: ../includes/settings-page.php:408
 
370
  msgid "Maximum height of the Colorbox used for links"
371
+ msgstr "Hauteur maximum de la Colorbox utilisée pour les liens"
372
 
373
+ #: ../includes/settings-page.php:431
 
374
  msgid "Initial width of the Colorbox"
375
+ msgstr "Largeur initiale de la Colorbox"
376
 
377
+ #: ../includes/settings-page.php:435
 
378
  msgid "Set the maximum width of the Colorbox before the content is loaded"
379
+ msgstr "Fixer la largeur maximum de la Colorbox avant que le contenu soit chargé"
380
 
381
+ #: ../includes/settings-page.php:440
 
382
  msgid "Initial height of the Colorbox"
383
+ msgstr "Hauteur initiale de la Colorbox"
384
 
385
+ #: ../includes/settings-page.php:444
 
386
  msgid "Set the maximum height of the Colorbox before the content is loaded"
387
+ msgstr "Fixer la hauteur maximum de la Colorbox avant que le contenu soit chargé"
388
 
389
+ #: ../includes/settings-page.php:449
390
  msgid "Resize images"
391
  msgstr "Redimensionner les images"
392
 
393
+ #: ../includes/settings-page.php:453
394
  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"
395
  msgstr "Si cette fonction est activée et si la largeur maximum des images, la hauteur maximum des images, la largeur de la Colorbox ou la hauteur de la Colorbox ont été définies, la ColorBox mettra les photos à l'échelle de façon qu'elles s'adaptent à ces valeurs"
396
 
397
+ #: ../includes/settings-page.php:458
398
  msgid "Close Colorbox on overlay click"
399
  msgstr "Fermer la Colorbox en cliquant sur le recouvrement"
400
 
401
+ #: ../includes/settings-page.php:462
402
  msgid "If checked, enables closing ColorBox by clicking on the background overlay"
403
  msgstr "Si elle est cochée, cette case active la fermeture de la ColorBox en cliquant sur le recouvrement de l'arrière-plan"
404
 
405
+ #: ../includes/settings-page.php:467
406
  msgid "Preload images"
407
  msgstr "Précharger les images"
408
 
409
+ #: ../includes/settings-page.php:471
410
  msgid "Allows for preloading of \"next\" and \"previous\" content in a group, after the current content has finished loading. Uncheck box to disable."
411
  msgstr "Permet le préchargement des contenus \"suivant\" et \"précédent\" d'un groupe, après que le contenu en cours a terminé son chargement. Décochez la case pour désactiver la fonction."
412
 
413
+ #: ../includes/settings-page.php:476
414
  msgid "Transition type"
415
  msgstr "Type de transition"
416
 
417
+ #: ../includes/settings-page.php:488
418
  msgid "The transition type of the Colorbox. Can be set to \"elastic\", \"fade\", or \"none\""
419
  msgstr "Le type de transition de la Colorbox. Il peut être fixé sur \"élastique\", \"effacé\" ou \"aucun\""
420
 
421
+ #: ../includes/settings-page.php:493
422
  msgid "Transition speed"
423
  msgstr "Vitesse de transition"
424
 
425
+ #: ../includes/settings-page.php:497
426
  msgid "Sets the speed of the \"fade\" and \"elastic\" transitions, in milliseconds"
427
  msgstr "Fixe la vitesse des transitions \"effacé\" et \"élastique\", en millisecondes"
428
 
429
+ #: ../includes/settings-page.php:502
430
  msgid "Opacity"
431
  msgstr "Opacité"
432
 
433
+ #: ../includes/settings-page.php:506
434
  msgid "The overlay opacity level. Range: 0 to 1"
435
  msgstr "Le niveau d'opacité du recouvrement. Plage : 0 à 1"
436
 
437
+ #: ../includes/settings-page.php:511
438
  msgid "Make images draggable"
439
+ msgstr "Rendre les images déplaçables"
440
 
441
+ #: ../includes/settings-page.php:515
442
  msgid "Make images draggable instead of scrollable"
443
+ msgstr "Rendre les images déplaçables au lieu de défilantes"
444
 
445
+ #: ../includes/settings-page.php:531
446
+ #: ../includes/settings-page.php:540
447
  msgid "Delete Settings"
448
  msgstr "Supprimer les paramètres"
449
 
450
+ #: ../includes/settings-page.php:534
451
  msgid "Check the box and click this button to delete settings of this plugin."
452
+ msgstr "Cochez la case et cliquez sur ce bouton pour supprimer les paramètres de ce plugin."
453
 
454
+ #: ../includes/settings-page.php:551
455
  msgid "Top donations"
456
  msgstr ""
457
 
458
+ #: ../includes/settings-page.php:560
459
  msgid "Latest donations"
460
+ msgstr "Dernières donations"
461
 
462
+ #: ../includes/settings-page.php:569
463
  msgid "Donate"
464
  msgstr "Faire un don"
465
 
466
+ #: ../includes/settings-page.php:573
467
  msgid "If you would like to make a small (or large) contribution towards future development please consider making a donation."
468
  msgstr "Si vous voulez apporter une contribution, petite ou importante, en vue de développements futurs, vous pouvez faire un don."
469
 
470
+ #: ../includes/settings-page.php:575
471
  msgid "Donate using Paypal"
472
+ msgstr "Donnez en utilisant Paypal"
473
 
474
+ #: ../includes/settings-page.php:579
475
  msgid "Techotronic Development Support"
476
  msgstr ""
477
 
478
+ #: ../includes/settings-page.php:583
479
  msgid "Please enter the URL you'd like me to link to in the donors lists"
480
+ msgstr "Entrez, svp, l'URL que vous aimeriez afficher dans la liste des donateurs"
481
 
482
+ #: ../includes/settings-page.php:585
483
  msgid "Return to Your Dashboard"
484
+ msgstr "Retourner au panneau de contrôle"
485
 
486
+ #: ../includes/settings-page.php:589
487
  msgid "Select Preset Amount"
488
+ msgstr "Sélectionnez le montant prédéterminé"
489
 
490
+ #: ../includes/settings-page.php:597
491
+ #: ../includes/settings-page.php:601
492
  msgid "USD"
493
  msgstr ""
494
 
495
+ #: ../includes/settings-page.php:598
496
  msgid "Or"
497
+ msgstr "Ou"
498
 
499
+ #: ../includes/settings-page.php:599
500
  msgid "Enter Custom Amount"
501
+ msgstr "Entrez un montant personnalisé"
502
 
503
+ #: ../includes/settings-page.php:603
504
  msgid "Submit"
505
+ msgstr "Envoyer"
506
 
507
+ #: ../includes/settings-page.php:610
508
  msgid "Translation"
509
  msgstr "Traduction"
510
 
511
+ #: ../includes/settings-page.php:613
512
  msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
513
+ msgstr "La traduction française a été faite par <a href=\"http://www.monblogamoua.fr/\">Pierre Sudarovich</a>."
514
+
515
+ #~ msgid "Automate %1$s for all images"
516
+ #~ msgstr "Automatiser %1$s pour toutes les images"
517
+
518
+ #~ msgid "Automate %1$s for images in WordPress galleries"
519
+ #~ msgstr "Automatiser %1$s pour les images des galeries WordPress"
520
 
521
  #~ msgid "maxWidth"
522
  #~ msgstr "Maximum width of an image"
localization/jquery-colorbox-he_IL.mo CHANGED
Binary file
localization/jquery-colorbox-he_IL.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: 2011-04-16 21:51+0100\n"
6
- "PO-Revision-Date: 2011-04-16 21:51+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Tommy Gordon\n"
9
  "MIME-Version: 1.0\n"
@@ -15,141 +15,141 @@ msgstr ""
15
  "X-Poedit-Country: ISRAEL\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: jquery-colorbox.php:122
19
  msgid "Theme #1"
20
  msgstr "תבנית 1"
21
 
22
- #: jquery-colorbox.php:123
23
  msgid "Theme #2"
24
  msgstr "תבנית 2"
25
 
26
- #: jquery-colorbox.php:124
27
  msgid "Theme #3"
28
  msgstr "תבנית 3"
29
 
30
- #: jquery-colorbox.php:125
31
  msgid "Theme #4"
32
  msgstr "תבנית 4"
33
 
34
- #: jquery-colorbox.php:126
35
  msgid "Theme #5"
36
  msgstr "תבנית 5"
37
 
38
- #: jquery-colorbox.php:127
39
  msgid "Theme #6"
40
  msgstr "תבנית 6"
41
 
42
- #: jquery-colorbox.php:128
43
  msgid "Theme #7"
44
  msgstr "תבנית 7"
45
 
46
- #: jquery-colorbox.php:129
47
  msgid "Theme #8"
48
  msgstr "תבנית 8"
49
 
50
- #: jquery-colorbox.php:130
51
  msgid "Theme #9"
52
  msgstr "תבנית 9"
53
 
54
- #: jquery-colorbox.php:131
55
  msgid "Theme #10"
56
  msgstr "תבנית 10"
57
 
58
- #: jquery-colorbox.php:132
59
  msgid "Theme #11"
60
  msgstr "תבנית 11"
61
 
62
- #: jquery-colorbox.php:138
63
  msgid "Theme #12"
64
  msgstr "תבנית 12"
65
 
66
- #: jquery-colorbox.php:139
67
  msgid "Theme #13"
68
  msgstr "תבנית 13"
69
 
70
- #: jquery-colorbox.php:140
71
  msgid "Theme #14"
72
  msgstr "תבנית 14"
73
 
74
- #: jquery-colorbox.php:141
75
  msgid "Theme #15"
76
  msgstr "תבנית 15"
77
 
78
- #: jquery-colorbox.php:146
79
  msgid "percent"
80
  msgstr "אחוזים"
81
 
82
- #: jquery-colorbox.php:147
83
  #: includes/settings-page.php:434
84
  #: includes/settings-page.php:443
85
  msgid "pixels"
86
  msgstr "פיקסלים"
87
 
88
- #: jquery-colorbox.php:152
89
  msgid "elastic"
90
  msgstr "אלסטי"
91
 
92
- #: jquery-colorbox.php:153
93
  msgid "fade"
94
  msgstr "עימעום"
95
 
96
- #: jquery-colorbox.php:154
97
  msgid "none"
98
  msgstr "ללא"
99
 
100
- #: jquery-colorbox.php:206
101
- msgid "Using"
102
- msgstr "שימוש"
103
-
104
- #: jquery-colorbox.php:307
105
- #: includes/settings-page.php:127
106
- msgid "Settings"
107
- msgstr "הגדרות"
108
-
109
- #: jquery-colorbox.php:372
110
  #, php-format
111
  msgid "Successfully updated %1$s settings."
112
  msgstr "עדכנתי בהצלחה את ההגדרות של %1$s."
113
 
114
- #: jquery-colorbox.php:374
115
  #, php-format
116
  msgid "%1$s settings were successfully deleted."
117
  msgstr "הגדרות %1$s נמחקו בהצלחה."
118
 
119
- #: jquery-colorbox.php:419
120
  msgid "needs attention: the plugin is not activated to work for all images."
121
  msgstr "שים לב: התוסף אינו מופעל עבור כל התמונות."
122
 
123
- #: jquery-colorbox.php:501
 
 
 
 
 
124
  msgid "Did not update settings, you do not have the necessary rights."
125
  msgstr "לא עדכנתי את ההגדרות, אין לך הרשאות מתאימות."
126
 
127
- #: jquery-colorbox.php:550
128
  #, php-format
129
  msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
130
  msgstr "לא מחקתי את ההגדרות של %1$s. ייתכן שאין לך הרשאות מתאימות, או שלא סימנת את תיבת הסימון."
131
 
132
- #: includes/colorbox-javascript-loader.php:48
 
 
 
 
133
  msgid "close"
134
  msgstr "סגור"
135
 
136
- #: includes/colorbox-javascript-loader.php:49
137
  msgid "next"
138
  msgstr "הבא"
139
 
140
- #: includes/colorbox-javascript-loader.php:50
141
  msgid "previous"
142
  msgstr "הקודם"
143
 
144
- #: includes/colorbox-javascript-loader.php:51
145
  msgid "start slideshow"
146
  msgstr "הפעל מצגת"
147
 
148
- #: includes/colorbox-javascript-loader.php:52
149
  msgid "stop slideshow"
150
  msgstr "הפסק מצגת"
151
 
152
- #: includes/colorbox-javascript-loader.php:53
153
  msgid "{current} of {total} images"
154
  msgstr "תמונה {current} מתוך {total}"
155
 
@@ -163,11 +163,6 @@ msgstr "הגדרות %1$s"
163
  msgid "Plugin settings"
164
  msgstr "הגדרות"
165
 
166
- #: includes/settings-page.php:135
167
- #, php-format
168
- msgid "Automate %1$s for all images"
169
- msgstr "הפעל %1$s אוטומטית לכל התמונות"
170
-
171
  #: includes/settings-page.php:135
172
  #, fuzzy, php-format
173
  msgid "Automate %1$s for all images in pages, posts and galleries"
@@ -177,11 +172,6 @@ msgstr "הוסף את %1$s אוטומטית לתמונות בגלריות וור
177
  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."
178
  msgstr "הוסף הגדרת סגנון (קלאס) קולור-בוקס אוטומטית לתמונות בפוסטים או בעמודים. בנוסף, מוסיף הגדרת סגנון (קלאס) קולור-בוקס לגלריות. תמונות המופיעות בפוסט או בעמוד כלשהו מאוחדות אוטומטית לקבוצה אחת."
179
 
180
- #: includes/settings-page.php:144
181
- #, php-format
182
- msgid "Automate %1$s for images in WordPress galleries"
183
- msgstr "הוסף את %1$s אוטומטית לתמונות בגלריות וורדפרס"
184
-
185
  #: includes/settings-page.php:144
186
  #, fuzzy, php-format
187
  msgid "Automate %1$s for images in WordPress galleries only"
@@ -529,6 +519,12 @@ msgstr "תרגום"
529
  msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
530
  msgstr "התרגום לעברית נעשה על ידי <a href=\"http://tommygordon.co.il\">תומי גורדון</a>"
531
 
 
 
 
 
 
 
532
  #~ msgid "maxWidth"
533
  #~ msgstr "Maximum width of an image"
534
 
2
  msgstr ""
3
  "Project-Id-Version: jQuery-Colorbox\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-05-02 20:19+0100\n"
6
+ "PO-Revision-Date: 2011-05-02 20:19+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Tommy Gordon\n"
9
  "MIME-Version: 1.0\n"
15
  "X-Poedit-Country: ISRAEL\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: jquery-colorbox.php:88
19
  msgid "Theme #1"
20
  msgstr "תבנית 1"
21
 
22
+ #: jquery-colorbox.php:89
23
  msgid "Theme #2"
24
  msgstr "תבנית 2"
25
 
26
+ #: jquery-colorbox.php:90
27
  msgid "Theme #3"
28
  msgstr "תבנית 3"
29
 
30
+ #: jquery-colorbox.php:91
31
  msgid "Theme #4"
32
  msgstr "תבנית 4"
33
 
34
+ #: jquery-colorbox.php:92
35
  msgid "Theme #5"
36
  msgstr "תבנית 5"
37
 
38
+ #: jquery-colorbox.php:93
39
  msgid "Theme #6"
40
  msgstr "תבנית 6"
41
 
42
+ #: jquery-colorbox.php:94
43
  msgid "Theme #7"
44
  msgstr "תבנית 7"
45
 
46
+ #: jquery-colorbox.php:95
47
  msgid "Theme #8"
48
  msgstr "תבנית 8"
49
 
50
+ #: jquery-colorbox.php:96
51
  msgid "Theme #9"
52
  msgstr "תבנית 9"
53
 
54
+ #: jquery-colorbox.php:97
55
  msgid "Theme #10"
56
  msgstr "תבנית 10"
57
 
58
+ #: jquery-colorbox.php:98
59
  msgid "Theme #11"
60
  msgstr "תבנית 11"
61
 
62
+ #: jquery-colorbox.php:104
63
  msgid "Theme #12"
64
  msgstr "תבנית 12"
65
 
66
+ #: jquery-colorbox.php:105
67
  msgid "Theme #13"
68
  msgstr "תבנית 13"
69
 
70
+ #: jquery-colorbox.php:106
71
  msgid "Theme #14"
72
  msgstr "תבנית 14"
73
 
74
+ #: jquery-colorbox.php:107
75
  msgid "Theme #15"
76
  msgstr "תבנית 15"
77
 
78
+ #: jquery-colorbox.php:112
79
  msgid "percent"
80
  msgstr "אחוזים"
81
 
82
+ #: jquery-colorbox.php:113
83
  #: includes/settings-page.php:434
84
  #: includes/settings-page.php:443
85
  msgid "pixels"
86
  msgstr "פיקסלים"
87
 
88
+ #: jquery-colorbox.php:118
89
  msgid "elastic"
90
  msgstr "אלסטי"
91
 
92
+ #: jquery-colorbox.php:119
93
  msgid "fade"
94
  msgstr "עימעום"
95
 
96
+ #: jquery-colorbox.php:120
97
  msgid "none"
98
  msgstr "ללא"
99
 
100
+ #: includes/jquery-colorbox-backend.php:79
 
 
 
 
 
 
 
 
 
101
  #, php-format
102
  msgid "Successfully updated %1$s settings."
103
  msgstr "עדכנתי בהצלחה את ההגדרות של %1$s."
104
 
105
+ #: includes/jquery-colorbox-backend.php:81
106
  #, php-format
107
  msgid "%1$s settings were successfully deleted."
108
  msgstr "הגדרות %1$s נמחקו בהצלחה."
109
 
110
+ #: includes/jquery-colorbox-backend.php:124
111
  msgid "needs attention: the plugin is not activated to work for all images."
112
  msgstr "שים לב: התוסף אינו מופעל עבור כל התמונות."
113
 
114
+ #: includes/jquery-colorbox-backend.php:161
115
+ #: includes/settings-page.php:127
116
+ msgid "Settings"
117
+ msgstr "הגדרות"
118
+
119
+ #: includes/jquery-colorbox-backend.php:183
120
  msgid "Did not update settings, you do not have the necessary rights."
121
  msgstr "לא עדכנתי את ההגדרות, אין לך הרשאות מתאימות."
122
 
123
+ #: includes/jquery-colorbox-backend.php:232
124
  #, php-format
125
  msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
126
  msgstr "לא מחקתי את ההגדרות של %1$s. ייתכן שאין לך הרשאות מתאימות, או שלא סימנת את תיבת הסימון."
127
 
128
+ #: includes/jquery-colorbox-frontend.php:86
129
+ msgid "Using"
130
+ msgstr "שימוש"
131
+
132
+ #: includes/jquery-colorbox-frontend.php:191
133
  msgid "close"
134
  msgstr "סגור"
135
 
136
+ #: includes/jquery-colorbox-frontend.php:192
137
  msgid "next"
138
  msgstr "הבא"
139
 
140
+ #: includes/jquery-colorbox-frontend.php:193
141
  msgid "previous"
142
  msgstr "הקודם"
143
 
144
+ #: includes/jquery-colorbox-frontend.php:194
145
  msgid "start slideshow"
146
  msgstr "הפעל מצגת"
147
 
148
+ #: includes/jquery-colorbox-frontend.php:195
149
  msgid "stop slideshow"
150
  msgstr "הפסק מצגת"
151
 
152
+ #: includes/jquery-colorbox-frontend.php:196
153
  msgid "{current} of {total} images"
154
  msgstr "תמונה {current} מתוך {total}"
155
 
163
  msgid "Plugin settings"
164
  msgstr "הגדרות"
165
 
 
 
 
 
 
166
  #: includes/settings-page.php:135
167
  #, fuzzy, php-format
168
  msgid "Automate %1$s for all images in pages, posts and galleries"
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 "הוסף הגדרת סגנון (קלאס) קולור-בוקס אוטומטית לתמונות בפוסטים או בעמודים. בנוסף, מוסיף הגדרת סגנון (קלאס) קולור-בוקס לגלריות. תמונות המופיעות בפוסט או בעמוד כלשהו מאוחדות אוטומטית לקבוצה אחת."
174
 
 
 
 
 
 
175
  #: includes/settings-page.php:144
176
  #, fuzzy, php-format
177
  msgid "Automate %1$s for images in WordPress galleries only"
519
  msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
520
  msgstr "התרגום לעברית נעשה על ידי <a href=\"http://tommygordon.co.il\">תומי גורדון</a>"
521
 
522
+ #~ msgid "Automate %1$s for all images"
523
+ #~ msgstr "הפעל %1$s אוטומטית לכל התמונות"
524
+
525
+ #~ msgid "Automate %1$s for images in WordPress galleries"
526
+ #~ msgstr "הוסף את %1$s אוטומטית לתמונות בגלריות וורדפרס"
527
+
528
  #~ msgid "maxWidth"
529
  #~ msgstr "Maximum width of an image"
530
 
localization/jquery-colorbox-it_IT.mo CHANGED
Binary file
localization/jquery-colorbox-it_IT.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: 2011-04-16 21:51+0100\n"
6
- "PO-Revision-Date: 2011-04-16 21:51+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Erkinson\n"
9
  "MIME-Version: 1.0\n"
@@ -15,141 +15,141 @@ msgstr ""
15
  "X-Poedit-Country: ITALY\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: jquery-colorbox.php:122
19
  msgid "Theme #1"
20
  msgstr "Tema #1"
21
 
22
- #: jquery-colorbox.php:123
23
  msgid "Theme #2"
24
  msgstr "Tema #2"
25
 
26
- #: jquery-colorbox.php:124
27
  msgid "Theme #3"
28
  msgstr "Tema #3"
29
 
30
- #: jquery-colorbox.php:125
31
  msgid "Theme #4"
32
  msgstr "Tema #4"
33
 
34
- #: jquery-colorbox.php:126
35
  msgid "Theme #5"
36
  msgstr "Tema #5"
37
 
38
- #: jquery-colorbox.php:127
39
  msgid "Theme #6"
40
  msgstr "Tema #6"
41
 
42
- #: jquery-colorbox.php:128
43
  msgid "Theme #7"
44
  msgstr "Tema #7"
45
 
46
- #: jquery-colorbox.php:129
47
  msgid "Theme #8"
48
  msgstr "Tema #8"
49
 
50
- #: jquery-colorbox.php:130
51
  msgid "Theme #9"
52
  msgstr "Tema #9"
53
 
54
- #: jquery-colorbox.php:131
55
  msgid "Theme #10"
56
  msgstr "Tema #10"
57
 
58
- #: jquery-colorbox.php:132
59
  msgid "Theme #11"
60
  msgstr "Tema #11"
61
 
62
- #: jquery-colorbox.php:138
63
  msgid "Theme #12"
64
  msgstr "Tema #12"
65
 
66
- #: jquery-colorbox.php:139
67
  msgid "Theme #13"
68
  msgstr "Tema #13"
69
 
70
- #: jquery-colorbox.php:140
71
  msgid "Theme #14"
72
  msgstr "Tema #14"
73
 
74
- #: jquery-colorbox.php:141
75
  msgid "Theme #15"
76
  msgstr "Tema #15"
77
 
78
- #: jquery-colorbox.php:146
79
  msgid "percent"
80
  msgstr "percento"
81
 
82
- #: jquery-colorbox.php:147
83
  #: includes/settings-page.php:434
84
  #: includes/settings-page.php:443
85
  msgid "pixels"
86
  msgstr "pixels"
87
 
88
- #: jquery-colorbox.php:152
89
  msgid "elastic"
90
  msgstr "elastica"
91
 
92
- #: jquery-colorbox.php:153
93
  msgid "fade"
94
  msgstr "dissolvenza"
95
 
96
- #: jquery-colorbox.php:154
97
  msgid "none"
98
  msgstr "nessuna"
99
 
100
- #: jquery-colorbox.php:206
101
- msgid "Using"
102
- msgstr ""
103
-
104
- #: jquery-colorbox.php:307
105
- #: includes/settings-page.php:127
106
- msgid "Settings"
107
- msgstr "Impostazioni"
108
-
109
- #: jquery-colorbox.php:372
110
  #, php-format
111
  msgid "Successfully updated %1$s settings."
112
  msgstr "Parametri di %1$s aggiornati correttamente."
113
 
114
- #: jquery-colorbox.php:374
115
  #, php-format
116
  msgid "%1$s settings were successfully deleted."
117
  msgstr "Eliminazione dei paramentri di %1$s riuscita."
118
 
119
- #: jquery-colorbox.php:419
120
  msgid "needs attention: the plugin is not activated to work for all images."
121
  msgstr "Attenzione: il plug-in non è configurato per lavorare con tutte le immagini"
122
 
123
- #: jquery-colorbox.php:501
 
 
 
 
 
124
  msgid "Did not update settings, you do not have the necessary rights."
125
  msgstr "Le impostazioni non sono state aggiornate, non hai i diritti necessari."
126
 
127
- #: jquery-colorbox.php:550
128
  #, php-format
129
  msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
130
  msgstr "Non sono stati cancellate le impostazioni di %1$s. O non disponi dei diritti necessari o non hai selezionato la casella."
131
 
132
- #: includes/colorbox-javascript-loader.php:48
 
 
 
 
133
  msgid "close"
134
  msgstr "chiudi"
135
 
136
- #: includes/colorbox-javascript-loader.php:49
137
  msgid "next"
138
  msgstr "successiva"
139
 
140
- #: includes/colorbox-javascript-loader.php:50
141
  msgid "previous"
142
  msgstr "precedente"
143
 
144
- #: includes/colorbox-javascript-loader.php:51
145
  msgid "start slideshow"
146
  msgstr "Comincia la presentazizone"
147
 
148
- #: includes/colorbox-javascript-loader.php:52
149
  msgid "stop slideshow"
150
  msgstr "Ferma la presentazione"
151
 
152
- #: includes/colorbox-javascript-loader.php:53
153
  msgid "{current} of {total} images"
154
  msgstr "{current} di {total} immagini"
155
 
@@ -163,11 +163,6 @@ msgstr "Impostazioni di %1$s"
163
  msgid "Plugin settings"
164
  msgstr "Impostazioni"
165
 
166
- #: includes/settings-page.php:135
167
- #, php-format
168
- msgid "Automate %1$s for all images"
169
- msgstr "Usa automaticamente %1$s per tutte le immagini"
170
-
171
  #: includes/settings-page.php:135
172
  #, fuzzy, php-format
173
  msgid "Automate %1$s for all images in pages, posts and galleries"
@@ -177,11 +172,6 @@ msgstr "Usa automaticamente %1$s solo per le gallerie di immagini di WordPress"
177
  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."
178
  msgstr "Aggiunge automaticamente una classe Colorbox alle immagini negli articoli e nelle pagine. Aggiunge anche una classe Colorbox alle gallerie. Le immagini in un articolo o in una pagina vengono raggruppate automaticamente."
179
 
180
- #: includes/settings-page.php:144
181
- #, php-format
182
- msgid "Automate %1$s for images in WordPress galleries"
183
- msgstr "Usa automaticamente %1$s solo per le gallerie di immagini di WordPress"
184
-
185
  #: includes/settings-page.php:144
186
  #, fuzzy, php-format
187
  msgid "Automate %1$s for images in WordPress galleries only"
@@ -529,6 +519,13 @@ msgstr "Traduzizone"
529
  msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
530
  msgstr "La traduzione in italiano è stata fatta da <a href=\"http://erkinson.altervista.org\">erkinson</a>."
531
 
 
 
 
 
 
 
 
532
  #~ msgid "maxWidth"
533
  #~ msgstr "Maximum width of an image"
534
 
2
  msgstr ""
3
  "Project-Id-Version: jQuery-Colorbox\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-05-02 20:19+0100\n"
6
+ "PO-Revision-Date: 2011-05-02 20:19+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Erkinson\n"
9
  "MIME-Version: 1.0\n"
15
  "X-Poedit-Country: ITALY\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: jquery-colorbox.php:88
19
  msgid "Theme #1"
20
  msgstr "Tema #1"
21
 
22
+ #: jquery-colorbox.php:89
23
  msgid "Theme #2"
24
  msgstr "Tema #2"
25
 
26
+ #: jquery-colorbox.php:90
27
  msgid "Theme #3"
28
  msgstr "Tema #3"
29
 
30
+ #: jquery-colorbox.php:91
31
  msgid "Theme #4"
32
  msgstr "Tema #4"
33
 
34
+ #: jquery-colorbox.php:92
35
  msgid "Theme #5"
36
  msgstr "Tema #5"
37
 
38
+ #: jquery-colorbox.php:93
39
  msgid "Theme #6"
40
  msgstr "Tema #6"
41
 
42
+ #: jquery-colorbox.php:94
43
  msgid "Theme #7"
44
  msgstr "Tema #7"
45
 
46
+ #: jquery-colorbox.php:95
47
  msgid "Theme #8"
48
  msgstr "Tema #8"
49
 
50
+ #: jquery-colorbox.php:96
51
  msgid "Theme #9"
52
  msgstr "Tema #9"
53
 
54
+ #: jquery-colorbox.php:97
55
  msgid "Theme #10"
56
  msgstr "Tema #10"
57
 
58
+ #: jquery-colorbox.php:98
59
  msgid "Theme #11"
60
  msgstr "Tema #11"
61
 
62
+ #: jquery-colorbox.php:104
63
  msgid "Theme #12"
64
  msgstr "Tema #12"
65
 
66
+ #: jquery-colorbox.php:105
67
  msgid "Theme #13"
68
  msgstr "Tema #13"
69
 
70
+ #: jquery-colorbox.php:106
71
  msgid "Theme #14"
72
  msgstr "Tema #14"
73
 
74
+ #: jquery-colorbox.php:107
75
  msgid "Theme #15"
76
  msgstr "Tema #15"
77
 
78
+ #: jquery-colorbox.php:112
79
  msgid "percent"
80
  msgstr "percento"
81
 
82
+ #: jquery-colorbox.php:113
83
  #: includes/settings-page.php:434
84
  #: includes/settings-page.php:443
85
  msgid "pixels"
86
  msgstr "pixels"
87
 
88
+ #: jquery-colorbox.php:118
89
  msgid "elastic"
90
  msgstr "elastica"
91
 
92
+ #: jquery-colorbox.php:119
93
  msgid "fade"
94
  msgstr "dissolvenza"
95
 
96
+ #: jquery-colorbox.php:120
97
  msgid "none"
98
  msgstr "nessuna"
99
 
100
+ #: includes/jquery-colorbox-backend.php:79
 
 
 
 
 
 
 
 
 
101
  #, php-format
102
  msgid "Successfully updated %1$s settings."
103
  msgstr "Parametri di %1$s aggiornati correttamente."
104
 
105
+ #: includes/jquery-colorbox-backend.php:81
106
  #, php-format
107
  msgid "%1$s settings were successfully deleted."
108
  msgstr "Eliminazione dei paramentri di %1$s riuscita."
109
 
110
+ #: includes/jquery-colorbox-backend.php:124
111
  msgid "needs attention: the plugin is not activated to work for all images."
112
  msgstr "Attenzione: il plug-in non è configurato per lavorare con tutte le immagini"
113
 
114
+ #: includes/jquery-colorbox-backend.php:161
115
+ #: includes/settings-page.php:127
116
+ msgid "Settings"
117
+ msgstr "Impostazioni"
118
+
119
+ #: includes/jquery-colorbox-backend.php:183
120
  msgid "Did not update settings, you do not have the necessary rights."
121
  msgstr "Le impostazioni non sono state aggiornate, non hai i diritti necessari."
122
 
123
+ #: includes/jquery-colorbox-backend.php:232
124
  #, php-format
125
  msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
126
  msgstr "Non sono stati cancellate le impostazioni di %1$s. O non disponi dei diritti necessari o non hai selezionato la casella."
127
 
128
+ #: includes/jquery-colorbox-frontend.php:86
129
+ msgid "Using"
130
+ msgstr ""
131
+
132
+ #: includes/jquery-colorbox-frontend.php:191
133
  msgid "close"
134
  msgstr "chiudi"
135
 
136
+ #: includes/jquery-colorbox-frontend.php:192
137
  msgid "next"
138
  msgstr "successiva"
139
 
140
+ #: includes/jquery-colorbox-frontend.php:193
141
  msgid "previous"
142
  msgstr "precedente"
143
 
144
+ #: includes/jquery-colorbox-frontend.php:194
145
  msgid "start slideshow"
146
  msgstr "Comincia la presentazizone"
147
 
148
+ #: includes/jquery-colorbox-frontend.php:195
149
  msgid "stop slideshow"
150
  msgstr "Ferma la presentazione"
151
 
152
+ #: includes/jquery-colorbox-frontend.php:196
153
  msgid "{current} of {total} images"
154
  msgstr "{current} di {total} immagini"
155
 
163
  msgid "Plugin settings"
164
  msgstr "Impostazioni"
165
 
 
 
 
 
 
166
  #: includes/settings-page.php:135
167
  #, fuzzy, php-format
168
  msgid "Automate %1$s for all images in pages, posts and galleries"
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 "Aggiunge automaticamente una classe Colorbox alle immagini negli articoli e nelle pagine. Aggiunge anche una classe Colorbox alle gallerie. Le immagini in un articolo o in una pagina vengono raggruppate automaticamente."
174
 
 
 
 
 
 
175
  #: includes/settings-page.php:144
176
  #, fuzzy, php-format
177
  msgid "Automate %1$s for images in WordPress galleries only"
519
  msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
520
  msgstr "La traduzione in italiano è stata fatta da <a href=\"http://erkinson.altervista.org\">erkinson</a>."
521
 
522
+ #~ msgid "Automate %1$s for all images"
523
+ #~ msgstr "Usa automaticamente %1$s per tutte le immagini"
524
+
525
+ #~ msgid "Automate %1$s for images in WordPress galleries"
526
+ #~ msgstr ""
527
+ #~ "Usa automaticamente %1$s solo per le gallerie di immagini di WordPress"
528
+
529
  #~ msgid "maxWidth"
530
  #~ msgstr "Maximum width of an image"
531
 
localization/jquery-colorbox-lv.mo CHANGED
Binary file
localization/jquery-colorbox-lv.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: 2011-04-16 21:51+0100\n"
6
- "PO-Revision-Date: 2011-04-16 21:51+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Lapuvieta.lv <info@lapuvieta.lv>\n"
9
  "MIME-Version: 1.0\n"
@@ -15,141 +15,141 @@ msgstr ""
15
  "X-Poedit-Country: LATVIA\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: jquery-colorbox.php:122
19
  msgid "Theme #1"
20
  msgstr "Ādiņa #1"
21
 
22
- #: jquery-colorbox.php:123
23
  msgid "Theme #2"
24
  msgstr "Ādiņa #2"
25
 
26
- #: jquery-colorbox.php:124
27
  msgid "Theme #3"
28
  msgstr "Ādiņa #3"
29
 
30
- #: jquery-colorbox.php:125
31
  msgid "Theme #4"
32
  msgstr "Ādiņa #4"
33
 
34
- #: jquery-colorbox.php:126
35
  msgid "Theme #5"
36
  msgstr "Ādiņa #5"
37
 
38
- #: jquery-colorbox.php:127
39
  msgid "Theme #6"
40
  msgstr "Ādiņa #6"
41
 
42
- #: jquery-colorbox.php:128
43
  msgid "Theme #7"
44
  msgstr "Ādiņa #7"
45
 
46
- #: jquery-colorbox.php:129
47
  msgid "Theme #8"
48
  msgstr "Ādiņa #8"
49
 
50
- #: jquery-colorbox.php:130
51
  msgid "Theme #9"
52
  msgstr "Ādiņa #9"
53
 
54
- #: jquery-colorbox.php:131
55
  msgid "Theme #10"
56
  msgstr "Ādiņa #10"
57
 
58
- #: jquery-colorbox.php:132
59
  msgid "Theme #11"
60
  msgstr "Ādiņa #11"
61
 
62
- #: jquery-colorbox.php:138
63
  msgid "Theme #12"
64
  msgstr "Ādiņa #12"
65
 
66
- #: jquery-colorbox.php:139
67
  msgid "Theme #13"
68
  msgstr "Ādiņa #13"
69
 
70
- #: jquery-colorbox.php:140
71
  msgid "Theme #14"
72
  msgstr "Ādiņa #14"
73
 
74
- #: jquery-colorbox.php:141
75
  msgid "Theme #15"
76
  msgstr "Ādiņa #15"
77
 
78
- #: jquery-colorbox.php:146
79
  msgid "percent"
80
  msgstr "procenti"
81
 
82
- #: jquery-colorbox.php:147
83
  #: includes/settings-page.php:434
84
  #: includes/settings-page.php:443
85
  msgid "pixels"
86
  msgstr "pikseļi"
87
 
88
- #: jquery-colorbox.php:152
89
  msgid "elastic"
90
  msgstr "elastīgi"
91
 
92
- #: jquery-colorbox.php:153
93
  msgid "fade"
94
  msgstr "izbalēt"
95
 
96
- #: jquery-colorbox.php:154
97
  msgid "none"
98
  msgstr "nekas"
99
 
100
- #: jquery-colorbox.php:206
101
- msgid "Using"
102
- msgstr "Lietojot"
103
-
104
- #: jquery-colorbox.php:307
105
- #: includes/settings-page.php:127
106
- msgid "Settings"
107
- msgstr "Iestatījumi"
108
-
109
- #: jquery-colorbox.php:372
110
  #, php-format
111
  msgid "Successfully updated %1$s settings."
112
  msgstr "Veiksmīgi saglabāti %1$s iestatījumi."
113
 
114
- #: jquery-colorbox.php:374
115
  #, php-format
116
  msgid "%1$s settings were successfully deleted."
117
  msgstr "%1$s iestatījumi veiksmīgi izdzēsti."
118
 
119
- #: jquery-colorbox.php:419
120
  msgid "needs attention: the plugin is not activated to work for all images."
121
  msgstr "jāpievērš uzmanība: spraudnis nav aktivizēts, lai darbotos ar visiem attēliem."
122
 
123
- #: jquery-colorbox.php:501
 
 
 
 
 
124
  msgid "Did not update settings, you do not have the necessary rights."
125
  msgstr "Iestatījumi nav izmainīti. Tev nav nepieciešamo tiesību."
126
 
127
- #: jquery-colorbox.php:550
128
  #, php-format
129
  msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
130
  msgstr "Iestatījumi %1$s netika izdzēsti. Vai nu Tev nav nepieciešamo tiesību vai arī aizmirsi ielikt ķeksīti rūtiņā."
131
 
132
- #: includes/colorbox-javascript-loader.php:48
 
 
 
 
133
  msgid "close"
134
  msgstr "aizvērt"
135
 
136
- #: includes/colorbox-javascript-loader.php:49
137
  msgid "next"
138
  msgstr "nākošais"
139
 
140
- #: includes/colorbox-javascript-loader.php:50
141
  msgid "previous"
142
  msgstr "iepriekšējais"
143
 
144
- #: includes/colorbox-javascript-loader.php:51
145
  msgid "start slideshow"
146
  msgstr "sākt slīdrādi"
147
 
148
- #: includes/colorbox-javascript-loader.php:52
149
  msgid "stop slideshow"
150
  msgstr "apturēt slīdrādi"
151
 
152
- #: includes/colorbox-javascript-loader.php:53
153
  msgid "{current} of {total} images"
154
  msgstr "{current} no {total} attēliem"
155
 
@@ -162,11 +162,6 @@ msgstr "%1$s Iestatījumi"
162
  msgid "Plugin settings"
163
  msgstr "Spraudņa iestatījumi"
164
 
165
- #: includes/settings-page.php:135
166
- #, php-format
167
- msgid "Automate %1$s for all images"
168
- msgstr "Automatizēt %1$s visiem attēliem"
169
-
170
  #: includes/settings-page.php:135
171
  #, php-format
172
  msgid "Automate %1$s for all images in pages, posts and galleries"
@@ -176,11 +171,6 @@ msgstr "Automatizēt %1$s visiem attēliem lapās, rakstos un galerijās"
176
  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."
177
  msgstr "Automātiski pievienot colorbox-class attēliem rakstos un lapās. Tāpat pievienot colorbox-class galerijām. Attēli vienā lapā vai rakstā tiks grupēti automātiski."
178
 
179
- #: includes/settings-page.php:144
180
- #, php-format
181
- msgid "Automate %1$s for images in WordPress galleries"
182
- msgstr "Automatizēt %1$s attēliem WordPress galerijās"
183
-
184
  #: includes/settings-page.php:144
185
  #, php-format
186
  msgid "Automate %1$s for images in WordPress galleries only"
@@ -525,6 +515,12 @@ msgstr "Tulkojums"
525
  msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
526
  msgstr "Tulkojumu latviešu valodā veica <a href=\"http://lapuvieta.lv\">Uldis Jansons</a>."
527
 
 
 
 
 
 
 
528
  #~ msgid "does not work with PHP 4. Please update or uninstall the plugin."
529
  #~ msgstr "ar PHP4 nestrādā. Modernizē PHP vai atsakies no spraudņa."
530
 
2
  msgstr ""
3
  "Project-Id-Version: jQuery-Colorbox\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-05-02 20:19+0100\n"
6
+ "PO-Revision-Date: 2011-05-02 20:19+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Lapuvieta.lv <info@lapuvieta.lv>\n"
9
  "MIME-Version: 1.0\n"
15
  "X-Poedit-Country: LATVIA\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: jquery-colorbox.php:88
19
  msgid "Theme #1"
20
  msgstr "Ādiņa #1"
21
 
22
+ #: jquery-colorbox.php:89
23
  msgid "Theme #2"
24
  msgstr "Ādiņa #2"
25
 
26
+ #: jquery-colorbox.php:90
27
  msgid "Theme #3"
28
  msgstr "Ādiņa #3"
29
 
30
+ #: jquery-colorbox.php:91
31
  msgid "Theme #4"
32
  msgstr "Ādiņa #4"
33
 
34
+ #: jquery-colorbox.php:92
35
  msgid "Theme #5"
36
  msgstr "Ādiņa #5"
37
 
38
+ #: jquery-colorbox.php:93
39
  msgid "Theme #6"
40
  msgstr "Ādiņa #6"
41
 
42
+ #: jquery-colorbox.php:94
43
  msgid "Theme #7"
44
  msgstr "Ādiņa #7"
45
 
46
+ #: jquery-colorbox.php:95
47
  msgid "Theme #8"
48
  msgstr "Ādiņa #8"
49
 
50
+ #: jquery-colorbox.php:96
51
  msgid "Theme #9"
52
  msgstr "Ādiņa #9"
53
 
54
+ #: jquery-colorbox.php:97
55
  msgid "Theme #10"
56
  msgstr "Ādiņa #10"
57
 
58
+ #: jquery-colorbox.php:98
59
  msgid "Theme #11"
60
  msgstr "Ādiņa #11"
61
 
62
+ #: jquery-colorbox.php:104
63
  msgid "Theme #12"
64
  msgstr "Ādiņa #12"
65
 
66
+ #: jquery-colorbox.php:105
67
  msgid "Theme #13"
68
  msgstr "Ādiņa #13"
69
 
70
+ #: jquery-colorbox.php:106
71
  msgid "Theme #14"
72
  msgstr "Ādiņa #14"
73
 
74
+ #: jquery-colorbox.php:107
75
  msgid "Theme #15"
76
  msgstr "Ādiņa #15"
77
 
78
+ #: jquery-colorbox.php:112
79
  msgid "percent"
80
  msgstr "procenti"
81
 
82
+ #: jquery-colorbox.php:113
83
  #: includes/settings-page.php:434
84
  #: includes/settings-page.php:443
85
  msgid "pixels"
86
  msgstr "pikseļi"
87
 
88
+ #: jquery-colorbox.php:118
89
  msgid "elastic"
90
  msgstr "elastīgi"
91
 
92
+ #: jquery-colorbox.php:119
93
  msgid "fade"
94
  msgstr "izbalēt"
95
 
96
+ #: jquery-colorbox.php:120
97
  msgid "none"
98
  msgstr "nekas"
99
 
100
+ #: includes/jquery-colorbox-backend.php:79
 
 
 
 
 
 
 
 
 
101
  #, php-format
102
  msgid "Successfully updated %1$s settings."
103
  msgstr "Veiksmīgi saglabāti %1$s iestatījumi."
104
 
105
+ #: includes/jquery-colorbox-backend.php:81
106
  #, php-format
107
  msgid "%1$s settings were successfully deleted."
108
  msgstr "%1$s iestatījumi veiksmīgi izdzēsti."
109
 
110
+ #: includes/jquery-colorbox-backend.php:124
111
  msgid "needs attention: the plugin is not activated to work for all images."
112
  msgstr "jāpievērš uzmanība: spraudnis nav aktivizēts, lai darbotos ar visiem attēliem."
113
 
114
+ #: includes/jquery-colorbox-backend.php:161
115
+ #: includes/settings-page.php:127
116
+ msgid "Settings"
117
+ msgstr "Iestatījumi"
118
+
119
+ #: includes/jquery-colorbox-backend.php:183
120
  msgid "Did not update settings, you do not have the necessary rights."
121
  msgstr "Iestatījumi nav izmainīti. Tev nav nepieciešamo tiesību."
122
 
123
+ #: includes/jquery-colorbox-backend.php:232
124
  #, php-format
125
  msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
126
  msgstr "Iestatījumi %1$s netika izdzēsti. Vai nu Tev nav nepieciešamo tiesību vai arī aizmirsi ielikt ķeksīti rūtiņā."
127
 
128
+ #: includes/jquery-colorbox-frontend.php:86
129
+ msgid "Using"
130
+ msgstr "Lietojot"
131
+
132
+ #: includes/jquery-colorbox-frontend.php:191
133
  msgid "close"
134
  msgstr "aizvērt"
135
 
136
+ #: includes/jquery-colorbox-frontend.php:192
137
  msgid "next"
138
  msgstr "nākošais"
139
 
140
+ #: includes/jquery-colorbox-frontend.php:193
141
  msgid "previous"
142
  msgstr "iepriekšējais"
143
 
144
+ #: includes/jquery-colorbox-frontend.php:194
145
  msgid "start slideshow"
146
  msgstr "sākt slīdrādi"
147
 
148
+ #: includes/jquery-colorbox-frontend.php:195
149
  msgid "stop slideshow"
150
  msgstr "apturēt slīdrādi"
151
 
152
+ #: includes/jquery-colorbox-frontend.php:196
153
  msgid "{current} of {total} images"
154
  msgstr "{current} no {total} attēliem"
155
 
162
  msgid "Plugin settings"
163
  msgstr "Spraudņa iestatījumi"
164
 
 
 
 
 
 
165
  #: includes/settings-page.php:135
166
  #, php-format
167
  msgid "Automate %1$s for all images in pages, posts and galleries"
171
  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."
172
  msgstr "Automātiski pievienot colorbox-class attēliem rakstos un lapās. Tāpat pievienot colorbox-class galerijām. Attēli vienā lapā vai rakstā tiks grupēti automātiski."
173
 
 
 
 
 
 
174
  #: includes/settings-page.php:144
175
  #, php-format
176
  msgid "Automate %1$s for images in WordPress galleries only"
515
  msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
516
  msgstr "Tulkojumu latviešu valodā veica <a href=\"http://lapuvieta.lv\">Uldis Jansons</a>."
517
 
518
+ #~ msgid "Automate %1$s for all images"
519
+ #~ msgstr "Automatizēt %1$s visiem attēliem"
520
+
521
+ #~ msgid "Automate %1$s for images in WordPress galleries"
522
+ #~ msgstr "Automatizēt %1$s attēliem WordPress galerijās"
523
+
524
  #~ msgid "does not work with PHP 4. Please update or uninstall the plugin."
525
  #~ msgstr "ar PHP4 nestrādā. Modernizē PHP vai atsakies no spraudņa."
526
 
localization/jquery-colorbox-ms_MY.mo CHANGED
Binary file
localization/jquery-colorbox-ms_MY.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: jQuery-Colorbox 3.3 Malay (Bahasa/Melayu)\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2011-04-16 21:52+0100\n"
6
- "PO-Revision-Date: 2011-04-16 21:52+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: ini;sahaini <sahaini@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -15,141 +15,141 @@ msgstr ""
15
  "X-Poedit-Country: MALAYSIA\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: jquery-colorbox.php:122
19
  msgid "Theme #1"
20
  msgstr "Tema #1"
21
 
22
- #: jquery-colorbox.php:123
23
  msgid "Theme #2"
24
  msgstr "Tema #2"
25
 
26
- #: jquery-colorbox.php:124
27
  msgid "Theme #3"
28
  msgstr "Tema #3"
29
 
30
- #: jquery-colorbox.php:125
31
  msgid "Theme #4"
32
  msgstr "Tema #4"
33
 
34
- #: jquery-colorbox.php:126
35
  msgid "Theme #5"
36
  msgstr "Tema #5"
37
 
38
- #: jquery-colorbox.php:127
39
  msgid "Theme #6"
40
  msgstr "Tema #6"
41
 
42
- #: jquery-colorbox.php:128
43
  msgid "Theme #7"
44
  msgstr "Tema #7"
45
 
46
- #: jquery-colorbox.php:129
47
  msgid "Theme #8"
48
  msgstr "Tema #8"
49
 
50
- #: jquery-colorbox.php:130
51
  msgid "Theme #9"
52
  msgstr "Tema #9"
53
 
54
- #: jquery-colorbox.php:131
55
  msgid "Theme #10"
56
  msgstr "Tema #10"
57
 
58
- #: jquery-colorbox.php:132
59
  msgid "Theme #11"
60
  msgstr "Tema #11"
61
 
62
- #: jquery-colorbox.php:138
63
  msgid "Theme #12"
64
  msgstr "Tema #12"
65
 
66
- #: jquery-colorbox.php:139
67
  msgid "Theme #13"
68
  msgstr "Tema #13"
69
 
70
- #: jquery-colorbox.php:140
71
  msgid "Theme #14"
72
  msgstr "Tema #14"
73
 
74
- #: jquery-colorbox.php:141
75
  msgid "Theme #15"
76
  msgstr "Tema #15"
77
 
78
- #: jquery-colorbox.php:146
79
  msgid "percent"
80
  msgstr "peratus"
81
 
82
- #: jquery-colorbox.php:147
83
  #: includes/settings-page.php:434
84
  #: includes/settings-page.php:443
85
  msgid "pixels"
86
  msgstr "piksel"
87
 
88
- #: jquery-colorbox.php:152
89
  msgid "elastic"
90
  msgstr "anjal"
91
 
92
- #: jquery-colorbox.php:153
93
  msgid "fade"
94
  msgstr "pudar"
95
 
96
- #: jquery-colorbox.php:154
97
  msgid "none"
98
  msgstr "tiada"
99
 
100
- #: jquery-colorbox.php:206
101
- msgid "Using"
102
- msgstr "Menggunakan"
103
-
104
- #: jquery-colorbox.php:307
105
- #: includes/settings-page.php:127
106
- msgid "Settings"
107
- msgstr "Tetapan"
108
-
109
- #: jquery-colorbox.php:372
110
  #, php-format
111
  msgid "Successfully updated %1$s settings."
112
  msgstr "Tetapan %1$s telah berjaya dikemaskinikan"
113
 
114
- #: jquery-colorbox.php:374
115
  #, php-format
116
  msgid "%1$s settings were successfully deleted."
117
  msgstr "Tetapan %1$s telah berjaya dibubarkan"
118
 
119
- #: jquery-colorbox.php:419
120
  msgid "needs attention: the plugin is not activated to work for all images."
121
  msgstr "perhatian diperlukan: palam (plugin) tidak diaktifkan untuk semua imej"
122
 
123
- #: jquery-colorbox.php:501
 
 
 
 
 
124
  msgid "Did not update settings, you do not have the necessary rights."
125
  msgstr "Tetapan tidak dikemaskini, anda tidak mempunyai kebenaran yang diperlukan"
126
 
127
- #: jquery-colorbox.php:550
128
  #, php-format
129
  msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
130
  msgstr "Tetapan %1$s tidak dibubarkan. Sama ada anda tidak mempunyai kebenaran yang diperlukan atau anda tidak menanda pada kotak pilihan"
131
 
132
- #: includes/colorbox-javascript-loader.php:48
 
 
 
 
133
  msgid "close"
134
  msgstr "tutup"
135
 
136
- #: includes/colorbox-javascript-loader.php:49
137
  msgid "next"
138
  msgstr "selepasnya"
139
 
140
- #: includes/colorbox-javascript-loader.php:50
141
  msgid "previous"
142
  msgstr "sebelumnya"
143
 
144
- #: includes/colorbox-javascript-loader.php:51
145
  msgid "start slideshow"
146
  msgstr "mula persembahan-slaid"
147
 
148
- #: includes/colorbox-javascript-loader.php:52
149
  msgid "stop slideshow"
150
  msgstr "henti persembahan-slaid"
151
 
152
- #: includes/colorbox-javascript-loader.php:53
153
  msgid "{current} of {total} images"
154
  msgstr "{current} daripada {total} imej"
155
 
@@ -163,11 +163,6 @@ msgstr "Tetapann %1$s"
163
  msgid "Plugin settings"
164
  msgstr "Tetapan"
165
 
166
- #: includes/settings-page.php:135
167
- #, php-format
168
- msgid "Automate %1$s for all images"
169
- msgstr "Auto-jana %1$s untuk semua imej"
170
-
171
  #: includes/settings-page.php:135
172
  #, fuzzy, php-format
173
  msgid "Automate %1$s for all images in pages, posts and galleries"
@@ -177,11 +172,6 @@ msgstr "Auto-jana %1$s untuk semua imej di dalam galeri Wordpress"
177
  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."
178
  msgstr "Menjana secara auto penambahan Colorbox-class untuk setiap imej-imej di dalam setiap kiriman (posts) dan laman (pages). Imej di dalam laman atau kiriman dikumpulkan secara auto."
179
 
180
- #: includes/settings-page.php:144
181
- #, php-format
182
- msgid "Automate %1$s for images in WordPress galleries"
183
- msgstr "Auto-jana %1$s untuk semua imej di dalam galeri Wordpress"
184
-
185
  #: includes/settings-page.php:144
186
  #, fuzzy, php-format
187
  msgid "Automate %1$s for images in WordPress galleries only"
@@ -529,6 +519,12 @@ msgstr "Alihbahasa"
529
  msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
530
  msgstr "Alihbahasa melayu telah disiapkan oleh <a href=\"http://www.inisahaini.com\">Saha-ini Ahmad Safian</a>."
531
 
 
 
 
 
 
 
532
  #~ msgid "maxWidth"
533
  #~ msgstr "Maximum width of an image"
534
 
2
  msgstr ""
3
  "Project-Id-Version: jQuery-Colorbox 3.3 Malay (Bahasa/Melayu)\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-05-02 20:19+0100\n"
6
+ "PO-Revision-Date: 2011-05-02 20:19+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: ini;sahaini <sahaini@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
15
  "X-Poedit-Country: MALAYSIA\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: jquery-colorbox.php:88
19
  msgid "Theme #1"
20
  msgstr "Tema #1"
21
 
22
+ #: jquery-colorbox.php:89
23
  msgid "Theme #2"
24
  msgstr "Tema #2"
25
 
26
+ #: jquery-colorbox.php:90
27
  msgid "Theme #3"
28
  msgstr "Tema #3"
29
 
30
+ #: jquery-colorbox.php:91
31
  msgid "Theme #4"
32
  msgstr "Tema #4"
33
 
34
+ #: jquery-colorbox.php:92
35
  msgid "Theme #5"
36
  msgstr "Tema #5"
37
 
38
+ #: jquery-colorbox.php:93
39
  msgid "Theme #6"
40
  msgstr "Tema #6"
41
 
42
+ #: jquery-colorbox.php:94
43
  msgid "Theme #7"
44
  msgstr "Tema #7"
45
 
46
+ #: jquery-colorbox.php:95
47
  msgid "Theme #8"
48
  msgstr "Tema #8"
49
 
50
+ #: jquery-colorbox.php:96
51
  msgid "Theme #9"
52
  msgstr "Tema #9"
53
 
54
+ #: jquery-colorbox.php:97
55
  msgid "Theme #10"
56
  msgstr "Tema #10"
57
 
58
+ #: jquery-colorbox.php:98
59
  msgid "Theme #11"
60
  msgstr "Tema #11"
61
 
62
+ #: jquery-colorbox.php:104
63
  msgid "Theme #12"
64
  msgstr "Tema #12"
65
 
66
+ #: jquery-colorbox.php:105
67
  msgid "Theme #13"
68
  msgstr "Tema #13"
69
 
70
+ #: jquery-colorbox.php:106
71
  msgid "Theme #14"
72
  msgstr "Tema #14"
73
 
74
+ #: jquery-colorbox.php:107
75
  msgid "Theme #15"
76
  msgstr "Tema #15"
77
 
78
+ #: jquery-colorbox.php:112
79
  msgid "percent"
80
  msgstr "peratus"
81
 
82
+ #: jquery-colorbox.php:113
83
  #: includes/settings-page.php:434
84
  #: includes/settings-page.php:443
85
  msgid "pixels"
86
  msgstr "piksel"
87
 
88
+ #: jquery-colorbox.php:118
89
  msgid "elastic"
90
  msgstr "anjal"
91
 
92
+ #: jquery-colorbox.php:119
93
  msgid "fade"
94
  msgstr "pudar"
95
 
96
+ #: jquery-colorbox.php:120
97
  msgid "none"
98
  msgstr "tiada"
99
 
100
+ #: includes/jquery-colorbox-backend.php:79
 
 
 
 
 
 
 
 
 
101
  #, php-format
102
  msgid "Successfully updated %1$s settings."
103
  msgstr "Tetapan %1$s telah berjaya dikemaskinikan"
104
 
105
+ #: includes/jquery-colorbox-backend.php:81
106
  #, php-format
107
  msgid "%1$s settings were successfully deleted."
108
  msgstr "Tetapan %1$s telah berjaya dibubarkan"
109
 
110
+ #: includes/jquery-colorbox-backend.php:124
111
  msgid "needs attention: the plugin is not activated to work for all images."
112
  msgstr "perhatian diperlukan: palam (plugin) tidak diaktifkan untuk semua imej"
113
 
114
+ #: includes/jquery-colorbox-backend.php:161
115
+ #: includes/settings-page.php:127
116
+ msgid "Settings"
117
+ msgstr "Tetapan"
118
+
119
+ #: includes/jquery-colorbox-backend.php:183
120
  msgid "Did not update settings, you do not have the necessary rights."
121
  msgstr "Tetapan tidak dikemaskini, anda tidak mempunyai kebenaran yang diperlukan"
122
 
123
+ #: includes/jquery-colorbox-backend.php:232
124
  #, php-format
125
  msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
126
  msgstr "Tetapan %1$s tidak dibubarkan. Sama ada anda tidak mempunyai kebenaran yang diperlukan atau anda tidak menanda pada kotak pilihan"
127
 
128
+ #: includes/jquery-colorbox-frontend.php:86
129
+ msgid "Using"
130
+ msgstr "Menggunakan"
131
+
132
+ #: includes/jquery-colorbox-frontend.php:191
133
  msgid "close"
134
  msgstr "tutup"
135
 
136
+ #: includes/jquery-colorbox-frontend.php:192
137
  msgid "next"
138
  msgstr "selepasnya"
139
 
140
+ #: includes/jquery-colorbox-frontend.php:193
141
  msgid "previous"
142
  msgstr "sebelumnya"
143
 
144
+ #: includes/jquery-colorbox-frontend.php:194
145
  msgid "start slideshow"
146
  msgstr "mula persembahan-slaid"
147
 
148
+ #: includes/jquery-colorbox-frontend.php:195
149
  msgid "stop slideshow"
150
  msgstr "henti persembahan-slaid"
151
 
152
+ #: includes/jquery-colorbox-frontend.php:196
153
  msgid "{current} of {total} images"
154
  msgstr "{current} daripada {total} imej"
155
 
163
  msgid "Plugin settings"
164
  msgstr "Tetapan"
165
 
 
 
 
 
 
166
  #: includes/settings-page.php:135
167
  #, fuzzy, php-format
168
  msgid "Automate %1$s for all images in pages, posts and galleries"
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 "Menjana secara auto penambahan Colorbox-class untuk setiap imej-imej di dalam setiap kiriman (posts) dan laman (pages). Imej di dalam laman atau kiriman dikumpulkan secara auto."
174
 
 
 
 
 
 
175
  #: includes/settings-page.php:144
176
  #, fuzzy, php-format
177
  msgid "Automate %1$s for images in WordPress galleries only"
519
  msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
520
  msgstr "Alihbahasa melayu telah disiapkan oleh <a href=\"http://www.inisahaini.com\">Saha-ini Ahmad Safian</a>."
521
 
522
+ #~ msgid "Automate %1$s for all images"
523
+ #~ msgstr "Auto-jana %1$s untuk semua imej"
524
+
525
+ #~ msgid "Automate %1$s for images in WordPress galleries"
526
+ #~ msgstr "Auto-jana %1$s untuk semua imej di dalam galeri Wordpress"
527
+
528
  #~ msgid "maxWidth"
529
  #~ msgstr "Maximum width of an image"
530
 
localization/jquery-colorbox-nl_NL.mo CHANGED
Binary file
localization/jquery-colorbox-nl_NL.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: 2011-04-16 21:52+0100\n"
6
- "PO-Revision-Date: 2011-04-16 21:52+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Techotronic <blog@techotronic.de>\n"
9
  "MIME-Version: 1.0\n"
@@ -15,141 +15,141 @@ msgstr ""
15
  "X-Poedit-Country: NETHERLANDS\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: jquery-colorbox.php:122
19
  msgid "Theme #1"
20
  msgstr "Thema #1"
21
 
22
- #: jquery-colorbox.php:123
23
  msgid "Theme #2"
24
  msgstr "Thema #2"
25
 
26
- #: jquery-colorbox.php:124
27
  msgid "Theme #3"
28
  msgstr "Thema #3"
29
 
30
- #: jquery-colorbox.php:125
31
  msgid "Theme #4"
32
  msgstr "Thema #4"
33
 
34
- #: jquery-colorbox.php:126
35
  msgid "Theme #5"
36
  msgstr "Thema #5"
37
 
38
- #: jquery-colorbox.php:127
39
  msgid "Theme #6"
40
  msgstr "Thema #6"
41
 
42
- #: jquery-colorbox.php:128
43
  msgid "Theme #7"
44
  msgstr "Thema #7"
45
 
46
- #: jquery-colorbox.php:129
47
  msgid "Theme #8"
48
  msgstr "Thema #8"
49
 
50
- #: jquery-colorbox.php:130
51
  msgid "Theme #9"
52
  msgstr "Thema #9"
53
 
54
- #: jquery-colorbox.php:131
55
  msgid "Theme #10"
56
  msgstr "Thema #10"
57
 
58
- #: jquery-colorbox.php:132
59
  msgid "Theme #11"
60
  msgstr "Thema #11"
61
 
62
- #: jquery-colorbox.php:138
63
  msgid "Theme #12"
64
  msgstr "Thema #12"
65
 
66
- #: jquery-colorbox.php:139
67
  msgid "Theme #13"
68
  msgstr "Thema #13"
69
 
70
- #: jquery-colorbox.php:140
71
  msgid "Theme #14"
72
  msgstr "Thema #14"
73
 
74
- #: jquery-colorbox.php:141
75
  msgid "Theme #15"
76
  msgstr "Thema #15"
77
 
78
- #: jquery-colorbox.php:146
79
  msgid "percent"
80
  msgstr "procent"
81
 
82
- #: jquery-colorbox.php:147
83
  #: includes/settings-page.php:434
84
  #: includes/settings-page.php:443
85
  msgid "pixels"
86
  msgstr "pixels"
87
 
88
- #: jquery-colorbox.php:152
89
  msgid "elastic"
90
  msgstr "elastisch"
91
 
92
- #: jquery-colorbox.php:153
93
  msgid "fade"
94
  msgstr "vervagen"
95
 
96
- #: jquery-colorbox.php:154
97
  msgid "none"
98
  msgstr "geen"
99
 
100
- #: jquery-colorbox.php:206
101
- msgid "Using"
102
- msgstr ""
103
-
104
- #: jquery-colorbox.php:307
105
- #: includes/settings-page.php:127
106
- msgid "Settings"
107
- msgstr "Instellingen"
108
-
109
- #: jquery-colorbox.php:372
110
  #, php-format
111
  msgid "Successfully updated %1$s settings."
112
  msgstr "Succesvol %1$s instellingen geupdate."
113
 
114
- #: jquery-colorbox.php:374
115
  #, php-format
116
  msgid "%1$s settings were successfully deleted."
117
  msgstr "%1$s instellingen zijn succesvol verwijderd."
118
 
119
- #: jquery-colorbox.php:419
120
  msgid "needs attention: the plugin is not activated to work for all images."
121
  msgstr "aandacht vereist: de plugin is niet geactiveerd om alle afbeeldingen te tonen."
122
 
123
- #: jquery-colorbox.php:501
 
 
 
 
 
124
  msgid "Did not update settings, you do not have the necessary rights."
125
  msgstr "Er zijn geen instellingen geupdate, u bezit de benodigde rechten niet."
126
 
127
- #: jquery-colorbox.php:550
128
  #, php-format
129
  msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
130
  msgstr "%1$s instellingen zijn niet verwijderd. U bezit de benodigde rechten niet of de checkbox was niet aangevinkt."
131
 
132
- #: includes/colorbox-javascript-loader.php:48
 
 
 
 
133
  msgid "close"
134
  msgstr "sluiten"
135
 
136
- #: includes/colorbox-javascript-loader.php:49
137
  msgid "next"
138
  msgstr "volgende"
139
 
140
- #: includes/colorbox-javascript-loader.php:50
141
  msgid "previous"
142
  msgstr "vorige"
143
 
144
- #: includes/colorbox-javascript-loader.php:51
145
  msgid "start slideshow"
146
  msgstr "start slideshow"
147
 
148
- #: includes/colorbox-javascript-loader.php:52
149
  msgid "stop slideshow"
150
  msgstr "stop slideshow"
151
 
152
- #: includes/colorbox-javascript-loader.php:53
153
  msgid "{current} of {total} images"
154
  msgstr "{current} / {total}"
155
 
@@ -163,11 +163,6 @@ msgstr "%1$s Instellingen"
163
  msgid "Plugin settings"
164
  msgstr "Instellingen"
165
 
166
- #: includes/settings-page.php:135
167
- #, php-format
168
- msgid "Automate %1$s for all images"
169
- msgstr "Automatiseer %1$s voor alle afbeeldingen"
170
-
171
  #: includes/settings-page.php:135
172
  #, fuzzy, php-format
173
  msgid "Automate %1$s for all images in pages, posts and galleries"
@@ -177,11 +172,6 @@ msgstr "Automatiseer %1$s voor afbeeldingen in Wordpress galerijen"
177
  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."
178
  msgstr "Voeg automatisch de colorbox-class toe aan afbeeldingen in posts en pagina's. Voeg de colorbox-class ook toe aan galerijen. Afbeeldingen op een pagina of post worden automatisch gegroepeerd."
179
 
180
- #: includes/settings-page.php:144
181
- #, php-format
182
- msgid "Automate %1$s for images in WordPress galleries"
183
- msgstr "Automatiseer %1$s voor afbeeldingen in Wordpress galerijen"
184
-
185
  #: includes/settings-page.php:144
186
  #, fuzzy, php-format
187
  msgid "Automate %1$s for images in WordPress galleries only"
@@ -529,6 +519,12 @@ msgstr "Vertaling"
529
  msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
530
  msgstr "De Nederlandse vertaling is gedaan door <a href=\"http://nl.linkedin.com/pub/richard-laak/b/b21/672\">Richard van Laak</a>."
531
 
 
 
 
 
 
 
532
  #~ msgid "maxWidth"
533
  #~ msgstr "Maximum width of an image"
534
 
2
  msgstr ""
3
  "Project-Id-Version: jQuery-Colorbox\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-05-02 20:19+0100\n"
6
+ "PO-Revision-Date: 2011-05-02 20:19+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Techotronic <blog@techotronic.de>\n"
9
  "MIME-Version: 1.0\n"
15
  "X-Poedit-Country: NETHERLANDS\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: jquery-colorbox.php:88
19
  msgid "Theme #1"
20
  msgstr "Thema #1"
21
 
22
+ #: jquery-colorbox.php:89
23
  msgid "Theme #2"
24
  msgstr "Thema #2"
25
 
26
+ #: jquery-colorbox.php:90
27
  msgid "Theme #3"
28
  msgstr "Thema #3"
29
 
30
+ #: jquery-colorbox.php:91
31
  msgid "Theme #4"
32
  msgstr "Thema #4"
33
 
34
+ #: jquery-colorbox.php:92
35
  msgid "Theme #5"
36
  msgstr "Thema #5"
37
 
38
+ #: jquery-colorbox.php:93
39
  msgid "Theme #6"
40
  msgstr "Thema #6"
41
 
42
+ #: jquery-colorbox.php:94
43
  msgid "Theme #7"
44
  msgstr "Thema #7"
45
 
46
+ #: jquery-colorbox.php:95
47
  msgid "Theme #8"
48
  msgstr "Thema #8"
49
 
50
+ #: jquery-colorbox.php:96
51
  msgid "Theme #9"
52
  msgstr "Thema #9"
53
 
54
+ #: jquery-colorbox.php:97
55
  msgid "Theme #10"
56
  msgstr "Thema #10"
57
 
58
+ #: jquery-colorbox.php:98
59
  msgid "Theme #11"
60
  msgstr "Thema #11"
61
 
62
+ #: jquery-colorbox.php:104
63
  msgid "Theme #12"
64
  msgstr "Thema #12"
65
 
66
+ #: jquery-colorbox.php:105
67
  msgid "Theme #13"
68
  msgstr "Thema #13"
69
 
70
+ #: jquery-colorbox.php:106
71
  msgid "Theme #14"
72
  msgstr "Thema #14"
73
 
74
+ #: jquery-colorbox.php:107
75
  msgid "Theme #15"
76
  msgstr "Thema #15"
77
 
78
+ #: jquery-colorbox.php:112
79
  msgid "percent"
80
  msgstr "procent"
81
 
82
+ #: jquery-colorbox.php:113
83
  #: includes/settings-page.php:434
84
  #: includes/settings-page.php:443
85
  msgid "pixels"
86
  msgstr "pixels"
87
 
88
+ #: jquery-colorbox.php:118
89
  msgid "elastic"
90
  msgstr "elastisch"
91
 
92
+ #: jquery-colorbox.php:119
93
  msgid "fade"
94
  msgstr "vervagen"
95
 
96
+ #: jquery-colorbox.php:120
97
  msgid "none"
98
  msgstr "geen"
99
 
100
+ #: includes/jquery-colorbox-backend.php:79
 
 
 
 
 
 
 
 
 
101
  #, php-format
102
  msgid "Successfully updated %1$s settings."
103
  msgstr "Succesvol %1$s instellingen geupdate."
104
 
105
+ #: includes/jquery-colorbox-backend.php:81
106
  #, php-format
107
  msgid "%1$s settings were successfully deleted."
108
  msgstr "%1$s instellingen zijn succesvol verwijderd."
109
 
110
+ #: includes/jquery-colorbox-backend.php:124
111
  msgid "needs attention: the plugin is not activated to work for all images."
112
  msgstr "aandacht vereist: de plugin is niet geactiveerd om alle afbeeldingen te tonen."
113
 
114
+ #: includes/jquery-colorbox-backend.php:161
115
+ #: includes/settings-page.php:127
116
+ msgid "Settings"
117
+ msgstr "Instellingen"
118
+
119
+ #: includes/jquery-colorbox-backend.php:183
120
  msgid "Did not update settings, you do not have the necessary rights."
121
  msgstr "Er zijn geen instellingen geupdate, u bezit de benodigde rechten niet."
122
 
123
+ #: includes/jquery-colorbox-backend.php:232
124
  #, php-format
125
  msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
126
  msgstr "%1$s instellingen zijn niet verwijderd. U bezit de benodigde rechten niet of de checkbox was niet aangevinkt."
127
 
128
+ #: includes/jquery-colorbox-frontend.php:86
129
+ msgid "Using"
130
+ msgstr ""
131
+
132
+ #: includes/jquery-colorbox-frontend.php:191
133
  msgid "close"
134
  msgstr "sluiten"
135
 
136
+ #: includes/jquery-colorbox-frontend.php:192
137
  msgid "next"
138
  msgstr "volgende"
139
 
140
+ #: includes/jquery-colorbox-frontend.php:193
141
  msgid "previous"
142
  msgstr "vorige"
143
 
144
+ #: includes/jquery-colorbox-frontend.php:194
145
  msgid "start slideshow"
146
  msgstr "start slideshow"
147
 
148
+ #: includes/jquery-colorbox-frontend.php:195
149
  msgid "stop slideshow"
150
  msgstr "stop slideshow"
151
 
152
+ #: includes/jquery-colorbox-frontend.php:196
153
  msgid "{current} of {total} images"
154
  msgstr "{current} / {total}"
155
 
163
  msgid "Plugin settings"
164
  msgstr "Instellingen"
165
 
 
 
 
 
 
166
  #: includes/settings-page.php:135
167
  #, fuzzy, php-format
168
  msgid "Automate %1$s for all images in pages, posts and galleries"
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 "Voeg automatisch de colorbox-class toe aan afbeeldingen in posts en pagina's. Voeg de colorbox-class ook toe aan galerijen. Afbeeldingen op een pagina of post worden automatisch gegroepeerd."
174
 
 
 
 
 
 
175
  #: includes/settings-page.php:144
176
  #, fuzzy, php-format
177
  msgid "Automate %1$s for images in WordPress galleries only"
519
  msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
520
  msgstr "De Nederlandse vertaling is gedaan door <a href=\"http://nl.linkedin.com/pub/richard-laak/b/b21/672\">Richard van Laak</a>."
521
 
522
+ #~ msgid "Automate %1$s for all images"
523
+ #~ msgstr "Automatiseer %1$s voor alle afbeeldingen"
524
+
525
+ #~ msgid "Automate %1$s for images in WordPress galleries"
526
+ #~ msgstr "Automatiseer %1$s voor afbeeldingen in Wordpress galerijen"
527
+
528
  #~ msgid "maxWidth"
529
  #~ msgstr "Maximum width of an image"
530
 
localization/jquery-colorbox-pl_PL.mo ADDED
Binary file
localization/jquery-colorbox-pl_PL.po ADDED
@@ -0,0 +1,537 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: jQuery-Colorbox\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-05-02 20:20+0100\n"
6
+ "PO-Revision-Date: 2011-05-02 20:20+0100\n"
7
+ "Last-Translator: \n"
8
+ "Language-Team: Techotronic <blog@techotronic.de>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-Language: Polish\n"
13
+ "X-Poedit-KeywordsList: _e;__\n"
14
+ "X-Poedit-Basepath: ..\n"
15
+ "X-Poedit-Country: POLAND\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: jquery-colorbox.php:88
19
+ msgid "Theme #1"
20
+ msgstr "Motyw #1"
21
+
22
+ #: jquery-colorbox.php:89
23
+ msgid "Theme #2"
24
+ msgstr "Motyw #2"
25
+
26
+ #: jquery-colorbox.php:90
27
+ msgid "Theme #3"
28
+ msgstr "Motyw #3"
29
+
30
+ #: jquery-colorbox.php:91
31
+ msgid "Theme #4"
32
+ msgstr "Motyw #4"
33
+
34
+ #: jquery-colorbox.php:92
35
+ msgid "Theme #5"
36
+ msgstr "Motyw #5"
37
+
38
+ #: jquery-colorbox.php:93
39
+ msgid "Theme #6"
40
+ msgstr "Motyw #6"
41
+
42
+ #: jquery-colorbox.php:94
43
+ msgid "Theme #7"
44
+ msgstr "Motyw #7"
45
+
46
+ #: jquery-colorbox.php:95
47
+ msgid "Theme #8"
48
+ msgstr "Motyw #8"
49
+
50
+ #: jquery-colorbox.php:96
51
+ msgid "Theme #9"
52
+ msgstr "Motyw #9"
53
+
54
+ #: jquery-colorbox.php:97
55
+ msgid "Theme #10"
56
+ msgstr "Motyw #10"
57
+
58
+ #: jquery-colorbox.php:98
59
+ msgid "Theme #11"
60
+ msgstr "Motyw #11"
61
+
62
+ #: jquery-colorbox.php:104
63
+ msgid "Theme #12"
64
+ msgstr "Motyw #12"
65
+
66
+ #: jquery-colorbox.php:105
67
+ msgid "Theme #13"
68
+ msgstr "Motyw #13"
69
+
70
+ #: jquery-colorbox.php:106
71
+ msgid "Theme #14"
72
+ msgstr "Motyw #14"
73
+
74
+ #: jquery-colorbox.php:107
75
+ msgid "Theme #15"
76
+ msgstr "Motyw #15"
77
+
78
+ #: jquery-colorbox.php:112
79
+ msgid "percent"
80
+ msgstr "procent"
81
+
82
+ #: jquery-colorbox.php:113
83
+ #: includes/settings-page.php:434
84
+ #: includes/settings-page.php:443
85
+ msgid "pixels"
86
+ msgstr "piksele"
87
+
88
+ #: jquery-colorbox.php:118
89
+ msgid "elastic"
90
+ msgstr "elastyczne"
91
+
92
+ #: jquery-colorbox.php:119
93
+ msgid "fade"
94
+ msgstr "wyciemniane"
95
+
96
+ #: jquery-colorbox.php:120
97
+ msgid "none"
98
+ msgstr "brak"
99
+
100
+ #: includes/jquery-colorbox-backend.php:79
101
+ #, php-format
102
+ msgid "Successfully updated %1$s settings."
103
+ msgstr "Pomyślnie zaktualizowano ustawienia %1$s"
104
+
105
+ #: includes/jquery-colorbox-backend.php:81
106
+ #, php-format
107
+ msgid "%1$s settings were successfully deleted."
108
+ msgstr "Ustawienia %1$s zostały usunięte."
109
+
110
+ #: includes/jquery-colorbox-backend.php:124
111
+ msgid "needs attention: the plugin is not activated to work for all images."
112
+ msgstr "wymaga uwagi: plugin nie jest ustawiony, by działał ze wszystkimi obrazami."
113
+
114
+ #: includes/jquery-colorbox-backend.php:161
115
+ #: includes/settings-page.php:127
116
+ msgid "Settings"
117
+ msgstr "Ustawienia"
118
+
119
+ #: includes/jquery-colorbox-backend.php:183
120
+ msgid "Did not update settings, you do not have the necessary rights."
121
+ msgstr "Nie zaktualizowano ustawienia, brak odpowiednich uprawnień."
122
+
123
+ #: includes/jquery-colorbox-backend.php:232
124
+ #, php-format
125
+ msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
126
+ msgstr "Nie usunięto ustawień %1$s. Albo nie masz odpowiednych praw albo nie zaznaczono checkboksa."
127
+
128
+ #: includes/jquery-colorbox-frontend.php:86
129
+ msgid "Using"
130
+ msgstr "Używa"
131
+
132
+ #: includes/jquery-colorbox-frontend.php:191
133
+ msgid "close"
134
+ msgstr "zamknij"
135
+
136
+ #: includes/jquery-colorbox-frontend.php:192
137
+ msgid "next"
138
+ msgstr "następne"
139
+
140
+ #: includes/jquery-colorbox-frontend.php:193
141
+ msgid "previous"
142
+ msgstr "poprzednie"
143
+
144
+ #: includes/jquery-colorbox-frontend.php:194
145
+ msgid "start slideshow"
146
+ msgstr "zacznij pokaz slajdów"
147
+
148
+ #: includes/jquery-colorbox-frontend.php:195
149
+ msgid "stop slideshow"
150
+ msgstr "zatrzymaj pokaz slajdów"
151
+
152
+ #: includes/jquery-colorbox-frontend.php:196
153
+ msgid "{current} of {total} images"
154
+ msgstr "{current} z {total} obrazów"
155
+
156
+ #: includes/settings-page.php:117
157
+ #, php-format
158
+ msgid "%1$s Settings"
159
+ msgstr "Ustawienia %1$s"
160
+
161
+ #: includes/settings-page.php:128
162
+ msgid "Plugin settings"
163
+ msgstr "Ustawienia wtyczki"
164
+
165
+ #: includes/settings-page.php:135
166
+ #, php-format
167
+ msgid "Automate %1$s for all images in pages, posts and galleries"
168
+ msgstr "Automatycznie uruchamia %1$s dla obrazów we wszystkich wpisach, stronach i galeriach"
169
+
170
+ #: includes/settings-page.php:139
171
+ 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."
172
+ msgstr "Automatycznie dodaje klasę colorbox-class do obrazów we wpisach i stronach. Dodaje również tę klasę do galerii. Obrazy z jednego wpisu lub strony są automatycznie grupowane."
173
+
174
+ #: includes/settings-page.php:144
175
+ #, php-format
176
+ msgid "Automate %1$s for images in WordPress galleries only"
177
+ msgstr "Automatycznie uruchamia %1$s tylko dla obrazów w galeriach WordPressa"
178
+
179
+ #: includes/settings-page.php:148
180
+ msgid "Automatically add colorbox-class to images in WordPress galleries, but nowhere else. Images in one page or post are grouped automatically."
181
+ msgstr "Automatycznie dodaje klasę colorbox-class do obrazów w galeriach WordPressa, ale nigdzie więcej. Obrazy w jednym wpisie lub stronie są automatycznie grupowane."
182
+
183
+ #: includes/settings-page.php:153
184
+ #, php-format
185
+ msgid "Automate %1$s for all other images"
186
+ msgstr "Automatyzuj %1$s dla wszystkich innych obrazów"
187
+
188
+ #: includes/settings-page.php:157
189
+ msgid "Automatically add colorbox-class to all images that are not in posts and pages (e.g. the sidebar)."
190
+ msgstr "Automatycznie dodaje klasę colorbox-class do wszystkich obrazów poza wpisem i stroną (np. w pasku bocznym)."
191
+
192
+ #: includes/settings-page.php:162
193
+ msgid "Automate hiding of flash objects"
194
+ msgstr "Automatycznie ukryj wszystkie obiekty Flash"
195
+
196
+ #: includes/settings-page.php:166
197
+ msgid "Automatically hide embeded flash objects behind the Colorbox layer."
198
+ msgstr "Automatycznie ukryj wstawione na stronę obiekty Flash za warstwą Colorboksa."
199
+
200
+ #: includes/settings-page.php:171
201
+ msgid "Add JavaScript to footer"
202
+ msgstr "Dodaj kod JavaScript do stopki"
203
+
204
+ #: includes/settings-page.php:175
205
+ msgid "Add JavaScript to footer instead of the header."
206
+ msgstr "Dodaje kod JavaScript do stopki zamiast do nagłówka strony."
207
+
208
+ #: includes/settings-page.php:180
209
+ msgid "Remove link from Meta-box"
210
+ msgstr "Usuń link z Meta-box"
211
+
212
+ #: includes/settings-page.php:184
213
+ msgid "Remove the link to the developers site from the WordPress meta-box."
214
+ msgstr "Usuń link do strony autorów z meta-box WordPressa."
215
+
216
+ #: includes/settings-page.php:189
217
+ msgid "Activate debug mode"
218
+ msgstr "Włącz tryb debugowania"
219
+
220
+ #: includes/settings-page.php:193
221
+ msgid "Adds debug information and non-minified JavaScript to the page. Useful for troubleshooting."
222
+ msgstr "Dodaje informacje do debugowania oraz nieskompresowany kod JaVascript na stronie. Użyteczne do wyłapywania błędów."
223
+
224
+ #: includes/settings-page.php:198
225
+ msgid "Disable warning"
226
+ msgstr "Wyłącz ostrzeżenie"
227
+
228
+ #: includes/settings-page.php:202
229
+ msgid "Disables the warning that is displayed if the plugin is activated but the auto-colorbox feature for all images is turned off."
230
+ msgstr "Wyłącza ostrzeżenie, które jest wyświetlane, kiedy wtyczka jest aktywna, ale funkcja automatycznego colorboksa dla wszystkich obrazów jest wyłączona."
231
+
232
+ #: includes/settings-page.php:208
233
+ #: includes/settings-page.php:521
234
+ msgid "Save Changes"
235
+ msgstr "Zapisz zmiany"
236
+
237
+ #: includes/settings-page.php:213
238
+ msgid "Colorbox settings"
239
+ msgstr "Ustawienia Colorbox"
240
+
241
+ #: includes/settings-page.php:220
242
+ msgid "Theme"
243
+ msgstr "Motyw"
244
+
245
+ #: includes/settings-page.php:232
246
+ msgid "Select the theme you want to use on your blog."
247
+ msgstr "Wybierz moty, który chcesz używać na swoim blogu."
248
+
249
+ #: includes/settings-page.php:237
250
+ msgid "Theme screenshot"
251
+ msgstr "Podgląd motywu"
252
+
253
+ #: includes/settings-page.php:248
254
+ msgid "Add Slideshow to groups"
255
+ msgstr "Dodaj pokaz slajdów do grup"
256
+
257
+ #: includes/settings-page.php:252
258
+ #, php-format
259
+ msgid "Add Slideshow functionality for %1$s Groups"
260
+ msgstr "Dodaj funkcjonalność pokazu slajdów dla grupy %1$s"
261
+
262
+ #: includes/settings-page.php:257
263
+ msgid "Start Slideshow automatically"
264
+ msgstr "Automatycznie rozpocznij pokaz slajdów"
265
+
266
+ #: includes/settings-page.php:261
267
+ #, php-format
268
+ msgid "Start Slideshow automatically if slideshow functionality is added to %1$s Groups"
269
+ msgstr "Automatycznie rozpocznij pokaz slajdów jeśli funkcjonalność slajdów jest dodana dla grupy %1$s"
270
+
271
+ #: includes/settings-page.php:266
272
+ msgid "Speed of the slideshow"
273
+ msgstr "Prędkość slajdów"
274
+
275
+ #: includes/settings-page.php:269
276
+ #: includes/settings-page.php:496
277
+ msgid "milliseconds"
278
+ msgstr "milisekundy"
279
+
280
+ #: includes/settings-page.php:270
281
+ msgid "Sets the speed of the slideshow, in milliseconds"
282
+ msgstr "Ustawia szybkość pokazu slajdów, w milisekundach"
283
+
284
+ #: includes/settings-page.php:275
285
+ msgid "Disable loop"
286
+ msgstr "Wyłącz pętlę"
287
+
288
+ #: includes/settings-page.php:279
289
+ msgid "Disable looping through image groups"
290
+ msgstr "Wyłącz pętle po grupach obrazów"
291
+
292
+ #: includes/settings-page.php:284
293
+ msgid "Disable keys"
294
+ msgstr "Wyłacz klawisze"
295
+
296
+ #: includes/settings-page.php:288
297
+ msgid "Disable ESC to close Colorbox and arrow keys to go to next and previous images"
298
+ msgstr "Wyłącza ESC do zamykania Coloboksa ora strzałki do przechodzenia na poprzedni i następny obraz"
299
+
300
+ #: includes/settings-page.php:293
301
+ msgid "Maximum width of an image"
302
+ msgstr "Maksymalna szerokość obrazu"
303
+
304
+ #: includes/settings-page.php:297
305
+ #: includes/settings-page.php:343
306
+ #: includes/settings-page.php:389
307
+ msgid "Do not set width"
308
+ msgstr "Nie ustawiaj szerokości"
309
+
310
+ #: includes/settings-page.php:300
311
+ msgid "Set maximum width of an image"
312
+ msgstr "Ustaw maksymalna szerokość obrazów"
313
+
314
+ #: includes/settings-page.php:311
315
+ 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"
316
+ msgstr "Ustawia maksymalną szerokość obrazu w Colorboksie w relacji do okna przeglądarki - wyrażone w procentach lub pikselach. Jeśli maksymalna szerokość nie jest ustalona, obraz jest tak szeroki jak Colorbox."
317
+
318
+ #: includes/settings-page.php:316
319
+ msgid "Maximum height of an image"
320
+ msgstr "Maksymalna wysokość obrazu"
321
+
322
+ #: includes/settings-page.php:320
323
+ #: includes/settings-page.php:366
324
+ #: includes/settings-page.php:412
325
+ msgid "Do not set height"
326
+ msgstr "Nie ustawiaj wysokości"
327
+
328
+ #: includes/settings-page.php:323
329
+ msgid "Set maximum height of an image"
330
+ msgstr "Ustaw maksymalną wysokość obrazów"
331
+
332
+ #: includes/settings-page.php:334
333
+ 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"
334
+ msgstr "Ustawia maksymalną wysokość obrazu w Colorboksie w relacji do okna przeglądarki - wyrażone w procentach lub pikselach. Jeśli maksymalna wysokość nie jest ustalona, obraz jest tak wysoki jak Colorbox."
335
+
336
+ #: includes/settings-page.php:339
337
+ msgid "Maximum width of the Colorbox"
338
+ msgstr "Maksymalna szerokość Colorboksa"
339
+
340
+ #: includes/settings-page.php:346
341
+ #: includes/settings-page.php:392
342
+ msgid "Set width of the Colorbox"
343
+ msgstr "Ustaw szerokość Colorboksa"
344
+
345
+ #: includes/settings-page.php:357
346
+ #: includes/settings-page.php:403
347
+ 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"
348
+ msgstr "Ustawia maksymalną szerokość Colorboksa w relacji do okna przeglądarki - wyrażone w procentach lub pikselach. Jeśli obraz jest większy niż Colorobox, wyświetlone zostają paski przeiwjania. Jeśli szerokość nie jest ustalona, Colorbox będzie tak szeroki jak obraz."
349
+
350
+ #: includes/settings-page.php:362
351
+ msgid "Maximum height of the Colorbox"
352
+ msgstr "Maksymalna wysokość Colorboksa"
353
+
354
+ #: includes/settings-page.php:369
355
+ #: includes/settings-page.php:415
356
+ msgid "Set height of the Colorbox"
357
+ msgstr "Ustaw wysokość Colorboksa"
358
+
359
+ #: includes/settings-page.php:380
360
+ #: includes/settings-page.php:426
361
+ 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"
362
+ msgstr "Ustawia maksymalną wysokość Colorboksa w relacji do okna przeglądarki - wyrażone w procentach lub pikselach. Jeśli obraz jest większy niż Colorobox, wyświetlone zostają paski przeiwjania. Jeśli wysokość nie jest ustalona, Colorbox będzie tak wysoki jak obraz."
363
+
364
+ #: includes/settings-page.php:385
365
+ msgid "Maximum width of the Colorbox used for links"
366
+ msgstr "Maksymalna szerokość Colorboksa używanego dla linków"
367
+
368
+ #: includes/settings-page.php:408
369
+ msgid "Maximum height of the Colorbox used for links"
370
+ msgstr "Maksymalna wysokość Colorboksa używanego dla linków"
371
+
372
+ #: includes/settings-page.php:431
373
+ #, fuzzy
374
+ msgid "Initial width of the Colorbox"
375
+ msgstr "Ustaw szerokość Colorboksa"
376
+
377
+ #: includes/settings-page.php:435
378
+ #, fuzzy
379
+ msgid "Set the maximum width of the Colorbox before the content is loaded"
380
+ msgstr "Maksymalna szerokość Colorboksa używanego dla linków"
381
+
382
+ #: includes/settings-page.php:440
383
+ #, fuzzy
384
+ msgid "Initial height of the Colorbox"
385
+ msgstr "Ustaw wysokość Colorboksa"
386
+
387
+ #: includes/settings-page.php:444
388
+ #, fuzzy
389
+ msgid "Set the maximum height of the Colorbox before the content is loaded"
390
+ msgstr "Maksymalna wysokość Colorboksa używanego dla linków"
391
+
392
+ #: includes/settings-page.php:449
393
+ msgid "Resize images"
394
+ msgstr "Zmień rozmiar obrazów"
395
+
396
+ #: includes/settings-page.php:453
397
+ 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"
398
+ msgstr "Jeśli włączone i jeśli ustawiono maksymalną wysokość i szerokość obrazów oraz maks. wysokość i szerokość Colorboksa, Colorbox będzie skalować obrazy, aby pasowały do tych wartości."
399
+
400
+ #: includes/settings-page.php:458
401
+ msgid "Close Colorbox on overlay click"
402
+ msgstr "Zamknij Colorboksa po kliknięciu w tło"
403
+
404
+ #: includes/settings-page.php:462
405
+ msgid "If checked, enables closing ColorBox by clicking on the background overlay"
406
+ msgstr "Jeśli zaznaczone, po kliknięciu przez użytkownika w tło zamyka Colorboksa"
407
+
408
+ #: includes/settings-page.php:467
409
+ msgid "Preload images"
410
+ msgstr "Załaduj obrazy wcześniej"
411
+
412
+ #: includes/settings-page.php:471
413
+ msgid "Allows for preloading of \"next\" and \"previous\" content in a group, after the current content has finished loading. Uncheck box to disable."
414
+ msgstr "Umożliwia wcześniejsze wczytanie przez przeglądarkę \"poprzedniego\" i \"następnego\" obrazu w grupie w momencie kiedy bieżąca treść została wczytana. Odznacz pole, aby wyłączyć."
415
+
416
+ #: includes/settings-page.php:476
417
+ msgid "Transition type"
418
+ msgstr "Typ przejścia"
419
+
420
+ #: includes/settings-page.php:488
421
+ msgid "The transition type of the Colorbox. Can be set to \"elastic\", \"fade\", or \"none\""
422
+ msgstr "Typ przejścia Colorboksa. Może być: \"elastyczne\", \"wyciemniane\", \"brak\""
423
+
424
+ #: includes/settings-page.php:493
425
+ msgid "Transition speed"
426
+ msgstr "Szybkość przejścia"
427
+
428
+ #: includes/settings-page.php:497
429
+ msgid "Sets the speed of the \"fade\" and \"elastic\" transitions, in milliseconds"
430
+ msgstr "Ustawia szybkość przejść typu \"elastyczne\" i \"wyciemniane\" w milisekundach"
431
+
432
+ #: includes/settings-page.php:502
433
+ msgid "Opacity"
434
+ msgstr "Nieprzeroczystość"
435
+
436
+ #: includes/settings-page.php:506
437
+ msgid "The overlay opacity level. Range: 0 to 1"
438
+ msgstr "Poziom nieprzezroczystości tła. Zakres 0 to 1"
439
+
440
+ #: includes/settings-page.php:511
441
+ msgid "Make images draggable"
442
+ msgstr "Obrazy można przesuwać"
443
+
444
+ #: includes/settings-page.php:515
445
+ msgid "Make images draggable instead of scrollable"
446
+ msgstr "Obrazy można przesuwać zamiast przewijać"
447
+
448
+ #: includes/settings-page.php:531
449
+ #: includes/settings-page.php:540
450
+ msgid "Delete Settings"
451
+ msgstr "Usuń ustawienia"
452
+
453
+ #: includes/settings-page.php:534
454
+ msgid "Check the box and click this button to delete settings of this plugin."
455
+ msgstr "Zaznacz pole i kliknij ten przycisk aby usunąć ustawienia tej wtyczki."
456
+
457
+ #: includes/settings-page.php:551
458
+ msgid "Top donations"
459
+ msgstr "Największe darowizny"
460
+
461
+ #: includes/settings-page.php:560
462
+ msgid "Latest donations"
463
+ msgstr "Ostatnie darowizny"
464
+
465
+ #: includes/settings-page.php:569
466
+ msgid "Donate"
467
+ msgstr "Darowizna"
468
+
469
+ #: includes/settings-page.php:573
470
+ msgid "If you would like to make a small (or large) contribution towards future development please consider making a donation."
471
+ msgstr "Jeśli chcesz mieć drobny (lub większy) wkład w rozwój tej wtyczki, rozważ przekazanie darowizny."
472
+
473
+ #: includes/settings-page.php:575
474
+ msgid "Donate using Paypal"
475
+ msgstr "Darowizna przez Paypal"
476
+
477
+ #: includes/settings-page.php:579
478
+ msgid "Techotronic Development Support"
479
+ msgstr "Techotronic Development Support"
480
+
481
+ #: includes/settings-page.php:583
482
+ msgid "Please enter the URL you'd like me to link to in the donors lists"
483
+ msgstr "Podaj URL, jaki chcesz by był podlinkowany na liścia darczyńców"
484
+
485
+ #: includes/settings-page.php:585
486
+ msgid "Return to Your Dashboard"
487
+ msgstr "Wróć do Kokpitu"
488
+
489
+ #: includes/settings-page.php:589
490
+ msgid "Select Preset Amount"
491
+ msgstr "Wybierz kwotę"
492
+
493
+ #: includes/settings-page.php:597
494
+ #: includes/settings-page.php:601
495
+ msgid "USD"
496
+ msgstr "USD"
497
+
498
+ #: includes/settings-page.php:598
499
+ msgid "Or"
500
+ msgstr "Lub"
501
+
502
+ #: includes/settings-page.php:599
503
+ msgid "Enter Custom Amount"
504
+ msgstr "Wpisz swoją kwotę"
505
+
506
+ #: includes/settings-page.php:603
507
+ msgid "Submit"
508
+ msgstr "Wyślij"
509
+
510
+ #: includes/settings-page.php:610
511
+ msgid "Translation"
512
+ msgstr "Tłumaczenie"
513
+
514
+ #: includes/settings-page.php:613
515
+ msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
516
+ msgstr "Polskie tłumaczenie zostało wykonane przez <a href=\"http://positionmaker.pl\">Positionmaker</a>."
517
+
518
+ #~ msgid "does not work with PHP 4. Please update or uninstall the plugin."
519
+ #~ msgstr "nie działa z PHP 4. Proszę uaktualnoć lub odinstalować plugin."
520
+
521
+ #~ msgid "Automate %1$s for all images"
522
+ #~ msgstr "Automatyzuj %1$s dla wszystkich obrazów"
523
+
524
+ #~ msgid "Automate %1$s for images in WordPress galleries"
525
+ #~ msgstr "Automatyzuj %1$s dla obrazów w galerii WordPressa"
526
+
527
+ #~ msgid "maxWidth"
528
+ #~ msgstr "Maximum width of an image"
529
+
530
+ #~ msgid "maxHeight"
531
+ #~ msgstr "Maximum height of an image"
532
+
533
+ #~ msgid "width"
534
+ #~ msgstr "Maxinmum width of the Colorbox"
535
+
536
+ #~ msgid "height"
537
+ #~ msgstr "Maximum height of the Colorbox"
localization/jquery-colorbox-pt_BR.mo CHANGED
Binary file
localization/jquery-colorbox-pt_BR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: jQuery-Colorbox 3.8.3\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2011-04-16 21:52+0100\n"
6
- "PO-Revision-Date: 2011-04-16 21:52+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Gervásio Antônio, Joao Netto <nettojp@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -15,141 +15,141 @@ msgstr ""
15
  "X-Poedit-Country: BRAZIL\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: jquery-colorbox.php:122
19
  msgid "Theme #1"
20
  msgstr "Tema #1"
21
 
22
- #: jquery-colorbox.php:123
23
  msgid "Theme #2"
24
  msgstr "Tema #2"
25
 
26
- #: jquery-colorbox.php:124
27
  msgid "Theme #3"
28
  msgstr "Tema #3"
29
 
30
- #: jquery-colorbox.php:125
31
  msgid "Theme #4"
32
  msgstr "Tema #4"
33
 
34
- #: jquery-colorbox.php:126
35
  msgid "Theme #5"
36
  msgstr "Tema #5"
37
 
38
- #: jquery-colorbox.php:127
39
  msgid "Theme #6"
40
  msgstr "Tema #6"
41
 
42
- #: jquery-colorbox.php:128
43
  msgid "Theme #7"
44
  msgstr "Tema #7"
45
 
46
- #: jquery-colorbox.php:129
47
  msgid "Theme #8"
48
  msgstr "Tema #8"
49
 
50
- #: jquery-colorbox.php:130
51
  msgid "Theme #9"
52
  msgstr "Tema #9"
53
 
54
- #: jquery-colorbox.php:131
55
  msgid "Theme #10"
56
  msgstr "Tema #10"
57
 
58
- #: jquery-colorbox.php:132
59
  msgid "Theme #11"
60
  msgstr "Tema #11"
61
 
62
- #: jquery-colorbox.php:138
63
  msgid "Theme #12"
64
  msgstr "Tema #12"
65
 
66
- #: jquery-colorbox.php:139
67
  msgid "Theme #13"
68
  msgstr "Tema #13"
69
 
70
- #: jquery-colorbox.php:140
71
  msgid "Theme #14"
72
  msgstr "Tema #14"
73
 
74
- #: jquery-colorbox.php:141
75
  msgid "Theme #15"
76
  msgstr "Tema #15"
77
 
78
- #: jquery-colorbox.php:146
79
  msgid "percent"
80
  msgstr "%"
81
 
82
- #: jquery-colorbox.php:147
83
  #: includes/settings-page.php:434
84
  #: includes/settings-page.php:443
85
  msgid "pixels"
86
  msgstr "pixels"
87
 
88
- #: jquery-colorbox.php:152
89
  msgid "elastic"
90
  msgstr "elástico"
91
 
92
- #: jquery-colorbox.php:153
93
  msgid "fade"
94
  msgstr "esmaecer"
95
 
96
- #: jquery-colorbox.php:154
97
  msgid "none"
98
  msgstr "nenhuma"
99
 
100
- #: jquery-colorbox.php:206
101
- msgid "Using"
102
- msgstr "Usando"
103
-
104
- #: jquery-colorbox.php:307
105
- #: includes/settings-page.php:127
106
- msgid "Settings"
107
- msgstr "Configurações"
108
-
109
- #: jquery-colorbox.php:372
110
  #, php-format
111
  msgid "Successfully updated %1$s settings."
112
  msgstr "As configurações do %1$s foram atualizadas com sucesso."
113
 
114
- #: jquery-colorbox.php:374
115
  #, php-format
116
  msgid "%1$s settings were successfully deleted."
117
  msgstr "As configurações do %1$s foram excluídas com sucesso."
118
 
119
- #: jquery-colorbox.php:419
120
  msgid "needs attention: the plugin is not activated to work for all images."
121
  msgstr "requer atenção: o plugin não está configurado para trabalhar com todas as imagens."
122
 
123
- #: jquery-colorbox.php:501
 
 
 
 
 
124
  msgid "Did not update settings, you do not have the necessary rights."
125
  msgstr "As configurações não foram atualizadas. Você não possui as permissões necessárias."
126
 
127
- #: jquery-colorbox.php:550
128
  #, php-format
129
  msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
130
  msgstr "As configurações do %1$s não foram excluídas. Você não possui as permissões necessárias ou não marcou a opção 'Excluir configurações'."
131
 
132
- #: includes/colorbox-javascript-loader.php:48
 
 
 
 
133
  msgid "close"
134
  msgstr "fechar"
135
 
136
- #: includes/colorbox-javascript-loader.php:49
137
  msgid "next"
138
  msgstr "próxima"
139
 
140
- #: includes/colorbox-javascript-loader.php:50
141
  msgid "previous"
142
  msgstr "anterior"
143
 
144
- #: includes/colorbox-javascript-loader.php:51
145
  msgid "start slideshow"
146
  msgstr "iniciar apresentação"
147
 
148
- #: includes/colorbox-javascript-loader.php:52
149
  msgid "stop slideshow"
150
  msgstr "parar apresentação"
151
 
152
- #: includes/colorbox-javascript-loader.php:53
153
  msgid "{current} of {total} images"
154
  msgstr "Imagem {current} de {total}"
155
 
@@ -162,11 +162,6 @@ msgstr "Configurações do %1$s"
162
  msgid "Plugin settings"
163
  msgstr "Plugin Configurações"
164
 
165
- #: includes/settings-page.php:135
166
- #, php-format
167
- msgid "Automate %1$s for all images"
168
- msgstr "Tornar o %1$s automático para todas as imagens"
169
-
170
  #: includes/settings-page.php:135
171
  #, php-format
172
  msgid "Automate %1$s for all images in pages, posts and galleries"
@@ -176,11 +171,6 @@ msgstr "Tornar o %1$s para todas as imagens nas páginas, artigos e galerias"
176
  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."
177
  msgstr "Adicionar automaticamente a classe colorbox às imagens existentes em artigos, páginas e galerias. Múltiplas imagens em uma página são agrupadas automaticamente."
178
 
179
- #: includes/settings-page.php:144
180
- #, php-format
181
- msgid "Automate %1$s for images in WordPress galleries"
182
- msgstr "Tornar o %1$s automático somente para imagens em galerias"
183
-
184
  #: includes/settings-page.php:144
185
  #, php-format
186
  msgid "Automate %1$s for images in WordPress galleries only"
@@ -525,6 +515,12 @@ msgstr "Tradução"
525
  msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
526
  msgstr "A tradução para o Português do Brasil foi feita por <a href=\"http://www.twitter.com/gervasioantonio\">Gervásio Antônio</a>."
527
 
 
 
 
 
 
 
528
  #~ msgid "does not work with PHP 4. Please update or uninstall the plugin."
529
  #~ msgstr ""
530
  #~ "não funciona com PHP 4. Por favor, atualizar ou desinstalar o plugin."
2
  msgstr ""
3
  "Project-Id-Version: jQuery-Colorbox 3.8.3\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-05-02 20:20+0100\n"
6
+ "PO-Revision-Date: 2011-05-02 20:20+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Gervásio Antônio, Joao Netto <nettojp@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
15
  "X-Poedit-Country: BRAZIL\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: jquery-colorbox.php:88
19
  msgid "Theme #1"
20
  msgstr "Tema #1"
21
 
22
+ #: jquery-colorbox.php:89
23
  msgid "Theme #2"
24
  msgstr "Tema #2"
25
 
26
+ #: jquery-colorbox.php:90
27
  msgid "Theme #3"
28
  msgstr "Tema #3"
29
 
30
+ #: jquery-colorbox.php:91
31
  msgid "Theme #4"
32
  msgstr "Tema #4"
33
 
34
+ #: jquery-colorbox.php:92
35
  msgid "Theme #5"
36
  msgstr "Tema #5"
37
 
38
+ #: jquery-colorbox.php:93
39
  msgid "Theme #6"
40
  msgstr "Tema #6"
41
 
42
+ #: jquery-colorbox.php:94
43
  msgid "Theme #7"
44
  msgstr "Tema #7"
45
 
46
+ #: jquery-colorbox.php:95
47
  msgid "Theme #8"
48
  msgstr "Tema #8"
49
 
50
+ #: jquery-colorbox.php:96
51
  msgid "Theme #9"
52
  msgstr "Tema #9"
53
 
54
+ #: jquery-colorbox.php:97
55
  msgid "Theme #10"
56
  msgstr "Tema #10"
57
 
58
+ #: jquery-colorbox.php:98
59
  msgid "Theme #11"
60
  msgstr "Tema #11"
61
 
62
+ #: jquery-colorbox.php:104
63
  msgid "Theme #12"
64
  msgstr "Tema #12"
65
 
66
+ #: jquery-colorbox.php:105
67
  msgid "Theme #13"
68
  msgstr "Tema #13"
69
 
70
+ #: jquery-colorbox.php:106
71
  msgid "Theme #14"
72
  msgstr "Tema #14"
73
 
74
+ #: jquery-colorbox.php:107
75
  msgid "Theme #15"
76
  msgstr "Tema #15"
77
 
78
+ #: jquery-colorbox.php:112
79
  msgid "percent"
80
  msgstr "%"
81
 
82
+ #: jquery-colorbox.php:113
83
  #: includes/settings-page.php:434
84
  #: includes/settings-page.php:443
85
  msgid "pixels"
86
  msgstr "pixels"
87
 
88
+ #: jquery-colorbox.php:118
89
  msgid "elastic"
90
  msgstr "elástico"
91
 
92
+ #: jquery-colorbox.php:119
93
  msgid "fade"
94
  msgstr "esmaecer"
95
 
96
+ #: jquery-colorbox.php:120
97
  msgid "none"
98
  msgstr "nenhuma"
99
 
100
+ #: includes/jquery-colorbox-backend.php:79
 
 
 
 
 
 
 
 
 
101
  #, php-format
102
  msgid "Successfully updated %1$s settings."
103
  msgstr "As configurações do %1$s foram atualizadas com sucesso."
104
 
105
+ #: includes/jquery-colorbox-backend.php:81
106
  #, php-format
107
  msgid "%1$s settings were successfully deleted."
108
  msgstr "As configurações do %1$s foram excluídas com sucesso."
109
 
110
+ #: includes/jquery-colorbox-backend.php:124
111
  msgid "needs attention: the plugin is not activated to work for all images."
112
  msgstr "requer atenção: o plugin não está configurado para trabalhar com todas as imagens."
113
 
114
+ #: includes/jquery-colorbox-backend.php:161
115
+ #: includes/settings-page.php:127
116
+ msgid "Settings"
117
+ msgstr "Configurações"
118
+
119
+ #: includes/jquery-colorbox-backend.php:183
120
  msgid "Did not update settings, you do not have the necessary rights."
121
  msgstr "As configurações não foram atualizadas. Você não possui as permissões necessárias."
122
 
123
+ #: includes/jquery-colorbox-backend.php:232
124
  #, php-format
125
  msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
126
  msgstr "As configurações do %1$s não foram excluídas. Você não possui as permissões necessárias ou não marcou a opção 'Excluir configurações'."
127
 
128
+ #: includes/jquery-colorbox-frontend.php:86
129
+ msgid "Using"
130
+ msgstr "Usando"
131
+
132
+ #: includes/jquery-colorbox-frontend.php:191
133
  msgid "close"
134
  msgstr "fechar"
135
 
136
+ #: includes/jquery-colorbox-frontend.php:192
137
  msgid "next"
138
  msgstr "próxima"
139
 
140
+ #: includes/jquery-colorbox-frontend.php:193
141
  msgid "previous"
142
  msgstr "anterior"
143
 
144
+ #: includes/jquery-colorbox-frontend.php:194
145
  msgid "start slideshow"
146
  msgstr "iniciar apresentação"
147
 
148
+ #: includes/jquery-colorbox-frontend.php:195
149
  msgid "stop slideshow"
150
  msgstr "parar apresentação"
151
 
152
+ #: includes/jquery-colorbox-frontend.php:196
153
  msgid "{current} of {total} images"
154
  msgstr "Imagem {current} de {total}"
155
 
162
  msgid "Plugin settings"
163
  msgstr "Plugin Configurações"
164
 
 
 
 
 
 
165
  #: includes/settings-page.php:135
166
  #, php-format
167
  msgid "Automate %1$s for all images in pages, posts and galleries"
171
  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."
172
  msgstr "Adicionar automaticamente a classe colorbox às imagens existentes em artigos, páginas e galerias. Múltiplas imagens em uma página são agrupadas automaticamente."
173
 
 
 
 
 
 
174
  #: includes/settings-page.php:144
175
  #, php-format
176
  msgid "Automate %1$s for images in WordPress galleries only"
515
  msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
516
  msgstr "A tradução para o Português do Brasil foi feita por <a href=\"http://www.twitter.com/gervasioantonio\">Gervásio Antônio</a>."
517
 
518
+ #~ msgid "Automate %1$s for all images"
519
+ #~ msgstr "Tornar o %1$s automático para todas as imagens"
520
+
521
+ #~ msgid "Automate %1$s for images in WordPress galleries"
522
+ #~ msgstr "Tornar o %1$s automático somente para imagens em galerias"
523
+
524
  #~ msgid "does not work with PHP 4. Please update or uninstall the plugin."
525
  #~ msgstr ""
526
  #~ "não funciona com PHP 4. Por favor, atualizar ou desinstalar o plugin."
localization/jquery-colorbox-ru_RU.mo CHANGED
Binary file
localization/jquery-colorbox-ru_RU.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: 2011-04-16 23:41+0100\n"
6
- "PO-Revision-Date: 2011-04-16 23:41+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Drive2Life <info@drive2life.ru>\n"
9
  "MIME-Version: 1.0\n"
@@ -15,141 +15,141 @@ msgstr ""
15
  "X-Poedit-Country: RUSSIAN FEDERATION\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: jquery-colorbox.php:122
19
  msgid "Theme #1"
20
  msgstr "Тема #1"
21
 
22
- #: jquery-colorbox.php:123
23
  msgid "Theme #2"
24
  msgstr "Тема #2"
25
 
26
- #: jquery-colorbox.php:124
27
  msgid "Theme #3"
28
  msgstr "Тема #3"
29
 
30
- #: jquery-colorbox.php:125
31
  msgid "Theme #4"
32
  msgstr "Тема #4"
33
 
34
- #: jquery-colorbox.php:126
35
  msgid "Theme #5"
36
  msgstr "Тема #5"
37
 
38
- #: jquery-colorbox.php:127
39
  msgid "Theme #6"
40
  msgstr "Тема #6"
41
 
42
- #: jquery-colorbox.php:128
43
  msgid "Theme #7"
44
  msgstr "Тема #7"
45
 
46
- #: jquery-colorbox.php:129
47
  msgid "Theme #8"
48
  msgstr "Тема #8"
49
 
50
- #: jquery-colorbox.php:130
51
  msgid "Theme #9"
52
  msgstr "Тема #9"
53
 
54
- #: jquery-colorbox.php:131
55
  msgid "Theme #10"
56
  msgstr "Тема #10"
57
 
58
- #: jquery-colorbox.php:132
59
  msgid "Theme #11"
60
  msgstr "Тема #11"
61
 
62
- #: jquery-colorbox.php:138
63
  msgid "Theme #12"
64
  msgstr "Тема #12"
65
 
66
- #: jquery-colorbox.php:139
67
  msgid "Theme #13"
68
  msgstr "Тема #13"
69
 
70
- #: jquery-colorbox.php:140
71
  msgid "Theme #14"
72
  msgstr "Тема #14"
73
 
74
- #: jquery-colorbox.php:141
75
  msgid "Theme #15"
76
  msgstr "Тема #15"
77
 
78
- #: jquery-colorbox.php:146
79
  msgid "percent"
80
  msgstr "процентов"
81
 
82
- #: jquery-colorbox.php:147
83
  #: includes/settings-page.php:434
84
  #: includes/settings-page.php:443
85
  msgid "pixels"
86
  msgstr "пикселей"
87
 
88
- #: jquery-colorbox.php:152
89
  msgid "elastic"
90
  msgstr "гибкий"
91
 
92
- #: jquery-colorbox.php:153
93
  msgid "fade"
94
  msgstr "затухание"
95
 
96
- #: jquery-colorbox.php:154
97
  msgid "none"
98
  msgstr "отсутствует"
99
 
100
- #: jquery-colorbox.php:206
101
- msgid "Using"
102
- msgstr "Использует"
103
-
104
- #: jquery-colorbox.php:307
105
- #: includes/settings-page.php:127
106
- msgid "Settings"
107
- msgstr "Настройки"
108
-
109
- #: jquery-colorbox.php:372
110
  #, php-format
111
  msgid "Successfully updated %1$s settings."
112
  msgstr "Удачно обновлены настройки %1$s"
113
 
114
- #: jquery-colorbox.php:374
115
  #, php-format
116
  msgid "%1$s settings were successfully deleted."
117
  msgstr "Настройки %1$s были удачно удалены"
118
 
119
- #: jquery-colorbox.php:419
120
  msgid "needs attention: the plugin is not activated to work for all images."
121
  msgstr "Внимание: плагин не настроен на работу со всеми изображениями блога (можно изменить в настройках плагина)."
122
 
123
- #: jquery-colorbox.php:501
 
 
 
 
 
124
  msgid "Did not update settings, you do not have the necessary rights."
125
  msgstr "Настройки не обновлены. У вас нет достаточных прав."
126
 
127
- #: jquery-colorbox.php:550
128
  #, php-format
129
  msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
130
  msgstr "%1$s не удален. У вас нет достаточных прав."
131
 
132
- #: includes/colorbox-javascript-loader.php:48
 
 
 
 
133
  msgid "close"
134
  msgstr "Закрыть"
135
 
136
- #: includes/colorbox-javascript-loader.php:49
137
  msgid "next"
138
  msgstr "След."
139
 
140
- #: includes/colorbox-javascript-loader.php:50
141
  msgid "previous"
142
  msgstr "Пред."
143
 
144
- #: includes/colorbox-javascript-loader.php:51
145
  msgid "start slideshow"
146
  msgstr "Запустить слайдшоу"
147
 
148
- #: includes/colorbox-javascript-loader.php:52
149
  msgid "stop slideshow"
150
  msgstr "Остановить слайдшоу"
151
 
152
- #: includes/colorbox-javascript-loader.php:53
153
  msgid "{current} of {total} images"
154
  msgstr "{current} из {total} изображений"
155
 
@@ -162,11 +162,6 @@ msgstr "Настройки %1$s"
162
  msgid "Plugin settings"
163
  msgstr "Настройки плагина"
164
 
165
- #: includes/settings-page.php:135
166
- #, php-format
167
- msgid "Automate %1$s for all images"
168
- msgstr "Автоматически применять %1$s для всех изображений"
169
-
170
  #: includes/settings-page.php:135
171
  #, php-format
172
  msgid "Automate %1$s for all images in pages, posts and galleries"
@@ -176,11 +171,6 @@ msgstr "Автоматически применять %1$s для изображ
176
  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."
177
  msgstr "Автоматически применять стиль ColorBox к изображением в постах и на страницах. Также применит ColorBox к галереям. Изображения на странице или в посте группируются автоматически."
178
 
179
- #: includes/settings-page.php:144
180
- #, php-format
181
- msgid "Automate %1$s for images in WordPress galleries"
182
- msgstr "Автоматически применять %1$s для изображений внутри галереи Wordpress"
183
-
184
  #: includes/settings-page.php:144
185
  #, php-format
186
  msgid "Automate %1$s for images in WordPress galleries only"
@@ -525,6 +515,13 @@ msgstr "Перевод"
525
  msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
526
  msgstr "Русский перевод сделан Osiriz'ом. Портал <a href=\"http://drive2life.ru\">Drive2Life.ru</a>."
527
 
 
 
 
 
 
 
 
528
  #~ msgid "does not work with PHP 4. Please update or uninstall the plugin."
529
  #~ msgstr "Не работает с PHP 4. Пожалуйста, обновите или удалите плагин"
530
 
2
  msgstr ""
3
  "Project-Id-Version: jQuery-Colorbox-Русская-версия\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-05-02 20:20+0100\n"
6
+ "PO-Revision-Date: 2011-05-02 20:20+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Drive2Life <info@drive2life.ru>\n"
9
  "MIME-Version: 1.0\n"
15
  "X-Poedit-Country: RUSSIAN FEDERATION\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: jquery-colorbox.php:88
19
  msgid "Theme #1"
20
  msgstr "Тема #1"
21
 
22
+ #: jquery-colorbox.php:89
23
  msgid "Theme #2"
24
  msgstr "Тема #2"
25
 
26
+ #: jquery-colorbox.php:90
27
  msgid "Theme #3"
28
  msgstr "Тема #3"
29
 
30
+ #: jquery-colorbox.php:91
31
  msgid "Theme #4"
32
  msgstr "Тема #4"
33
 
34
+ #: jquery-colorbox.php:92
35
  msgid "Theme #5"
36
  msgstr "Тема #5"
37
 
38
+ #: jquery-colorbox.php:93
39
  msgid "Theme #6"
40
  msgstr "Тема #6"
41
 
42
+ #: jquery-colorbox.php:94
43
  msgid "Theme #7"
44
  msgstr "Тема #7"
45
 
46
+ #: jquery-colorbox.php:95
47
  msgid "Theme #8"
48
  msgstr "Тема #8"
49
 
50
+ #: jquery-colorbox.php:96
51
  msgid "Theme #9"
52
  msgstr "Тема #9"
53
 
54
+ #: jquery-colorbox.php:97
55
  msgid "Theme #10"
56
  msgstr "Тема #10"
57
 
58
+ #: jquery-colorbox.php:98
59
  msgid "Theme #11"
60
  msgstr "Тема #11"
61
 
62
+ #: jquery-colorbox.php:104
63
  msgid "Theme #12"
64
  msgstr "Тема #12"
65
 
66
+ #: jquery-colorbox.php:105
67
  msgid "Theme #13"
68
  msgstr "Тема #13"
69
 
70
+ #: jquery-colorbox.php:106
71
  msgid "Theme #14"
72
  msgstr "Тема #14"
73
 
74
+ #: jquery-colorbox.php:107
75
  msgid "Theme #15"
76
  msgstr "Тема #15"
77
 
78
+ #: jquery-colorbox.php:112
79
  msgid "percent"
80
  msgstr "процентов"
81
 
82
+ #: jquery-colorbox.php:113
83
  #: includes/settings-page.php:434
84
  #: includes/settings-page.php:443
85
  msgid "pixels"
86
  msgstr "пикселей"
87
 
88
+ #: jquery-colorbox.php:118
89
  msgid "elastic"
90
  msgstr "гибкий"
91
 
92
+ #: jquery-colorbox.php:119
93
  msgid "fade"
94
  msgstr "затухание"
95
 
96
+ #: jquery-colorbox.php:120
97
  msgid "none"
98
  msgstr "отсутствует"
99
 
100
+ #: includes/jquery-colorbox-backend.php:79
 
 
 
 
 
 
 
 
 
101
  #, php-format
102
  msgid "Successfully updated %1$s settings."
103
  msgstr "Удачно обновлены настройки %1$s"
104
 
105
+ #: includes/jquery-colorbox-backend.php:81
106
  #, php-format
107
  msgid "%1$s settings were successfully deleted."
108
  msgstr "Настройки %1$s были удачно удалены"
109
 
110
+ #: includes/jquery-colorbox-backend.php:124
111
  msgid "needs attention: the plugin is not activated to work for all images."
112
  msgstr "Внимание: плагин не настроен на работу со всеми изображениями блога (можно изменить в настройках плагина)."
113
 
114
+ #: includes/jquery-colorbox-backend.php:161
115
+ #: includes/settings-page.php:127
116
+ msgid "Settings"
117
+ msgstr "Настройки"
118
+
119
+ #: includes/jquery-colorbox-backend.php:183
120
  msgid "Did not update settings, you do not have the necessary rights."
121
  msgstr "Настройки не обновлены. У вас нет достаточных прав."
122
 
123
+ #: includes/jquery-colorbox-backend.php:232
124
  #, php-format
125
  msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
126
  msgstr "%1$s не удален. У вас нет достаточных прав."
127
 
128
+ #: includes/jquery-colorbox-frontend.php:86
129
+ msgid "Using"
130
+ msgstr "Использует"
131
+
132
+ #: includes/jquery-colorbox-frontend.php:191
133
  msgid "close"
134
  msgstr "Закрыть"
135
 
136
+ #: includes/jquery-colorbox-frontend.php:192
137
  msgid "next"
138
  msgstr "След."
139
 
140
+ #: includes/jquery-colorbox-frontend.php:193
141
  msgid "previous"
142
  msgstr "Пред."
143
 
144
+ #: includes/jquery-colorbox-frontend.php:194
145
  msgid "start slideshow"
146
  msgstr "Запустить слайдшоу"
147
 
148
+ #: includes/jquery-colorbox-frontend.php:195
149
  msgid "stop slideshow"
150
  msgstr "Остановить слайдшоу"
151
 
152
+ #: includes/jquery-colorbox-frontend.php:196
153
  msgid "{current} of {total} images"
154
  msgstr "{current} из {total} изображений"
155
 
162
  msgid "Plugin settings"
163
  msgstr "Настройки плагина"
164
 
 
 
 
 
 
165
  #: includes/settings-page.php:135
166
  #, php-format
167
  msgid "Automate %1$s for all images in pages, posts and galleries"
171
  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."
172
  msgstr "Автоматически применять стиль ColorBox к изображением в постах и на страницах. Также применит ColorBox к галереям. Изображения на странице или в посте группируются автоматически."
173
 
 
 
 
 
 
174
  #: includes/settings-page.php:144
175
  #, php-format
176
  msgid "Automate %1$s for images in WordPress galleries only"
515
  msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
516
  msgstr "Русский перевод сделан Osiriz'ом. Портал <a href=\"http://drive2life.ru\">Drive2Life.ru</a>."
517
 
518
+ #~ msgid "Automate %1$s for all images"
519
+ #~ msgstr "Автоматически применять %1$s для всех изображений"
520
+
521
+ #~ msgid "Automate %1$s for images in WordPress galleries"
522
+ #~ msgstr ""
523
+ #~ "Автоматически применять %1$s для изображений внутри галереи Wordpress"
524
+
525
  #~ msgid "does not work with PHP 4. Please update or uninstall the plugin."
526
  #~ msgstr "Не работает с PHP 4. Пожалуйста, обновите или удалите плагин"
527
 
localization/jquery-colorbox-sk_SK.mo CHANGED
Binary file
localization/jquery-colorbox-sk_SK.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: 2011-04-16 21:52+0100\n"
6
- "PO-Revision-Date: 2011-04-16 21:52+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Techotronic, SK translate by itec.sk <obchod@itec.sk>\n"
9
  "MIME-Version: 1.0\n"
@@ -15,141 +15,141 @@ msgstr ""
15
  "X-Poedit-Country: SLOVAKIA\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: jquery-colorbox.php:122
19
  msgid "Theme #1"
20
  msgstr "Téma #1"
21
 
22
- #: jquery-colorbox.php:123
23
  msgid "Theme #2"
24
  msgstr "Téma #2"
25
 
26
- #: jquery-colorbox.php:124
27
  msgid "Theme #3"
28
  msgstr "Téma #3"
29
 
30
- #: jquery-colorbox.php:125
31
  msgid "Theme #4"
32
  msgstr "Téma #4"
33
 
34
- #: jquery-colorbox.php:126
35
  msgid "Theme #5"
36
  msgstr "Téma #5"
37
 
38
- #: jquery-colorbox.php:127
39
  msgid "Theme #6"
40
  msgstr "Téma #6"
41
 
42
- #: jquery-colorbox.php:128
43
  msgid "Theme #7"
44
  msgstr "Téma #7"
45
 
46
- #: jquery-colorbox.php:129
47
  msgid "Theme #8"
48
  msgstr "Téma #8"
49
 
50
- #: jquery-colorbox.php:130
51
  msgid "Theme #9"
52
  msgstr "Téma #9"
53
 
54
- #: jquery-colorbox.php:131
55
  msgid "Theme #10"
56
  msgstr "Téma #10"
57
 
58
- #: jquery-colorbox.php:132
59
  msgid "Theme #11"
60
  msgstr "Téma #11"
61
 
62
- #: jquery-colorbox.php:138
63
  msgid "Theme #12"
64
  msgstr "Téma #12"
65
 
66
- #: jquery-colorbox.php:139
67
  msgid "Theme #13"
68
  msgstr "Téma #13"
69
 
70
- #: jquery-colorbox.php:140
71
  msgid "Theme #14"
72
  msgstr "Téma #14"
73
 
74
- #: jquery-colorbox.php:141
75
  msgid "Theme #15"
76
  msgstr "Téma #15"
77
 
78
- #: jquery-colorbox.php:146
79
  msgid "percent"
80
  msgstr "percent"
81
 
82
- #: jquery-colorbox.php:147
83
  #: includes/settings-page.php:434
84
  #: includes/settings-page.php:443
85
  msgid "pixels"
86
  msgstr "pixlov"
87
 
88
- #: jquery-colorbox.php:152
89
  msgid "elastic"
90
  msgstr "elastický"
91
 
92
- #: jquery-colorbox.php:153
93
  msgid "fade"
94
  msgstr "strácanie"
95
 
96
- #: jquery-colorbox.php:154
97
  msgid "none"
98
  msgstr "žiadny"
99
 
100
- #: jquery-colorbox.php:206
101
- msgid "Using"
102
- msgstr "S použitím"
103
-
104
- #: jquery-colorbox.php:307
105
- #: includes/settings-page.php:127
106
- msgid "Settings"
107
- msgstr "Nastavenia"
108
-
109
- #: jquery-colorbox.php:372
110
  #, php-format
111
  msgid "Successfully updated %1$s settings."
112
  msgstr "Úspešne aktualizované %1$s nastavenia."
113
 
114
- #: jquery-colorbox.php:374
115
  #, php-format
116
  msgid "%1$s settings were successfully deleted."
117
  msgstr "%1$s nastavenia boli zrušené."
118
 
119
- #: jquery-colorbox.php:419
120
  msgid "needs attention: the plugin is not activated to work for all images."
121
  msgstr "Venujte pozornosť: plugin nie je aktivovaný na prácu pre všetky obrázky."
122
 
123
- #: jquery-colorbox.php:501
 
 
 
 
 
124
  msgid "Did not update settings, you do not have the necessary rights."
125
  msgstr "Nastavenie neboli aktualizované, nemáte dostatočné práva."
126
 
127
- #: jquery-colorbox.php:550
128
  #, php-format
129
  msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
130
  msgstr "Nastavenia %1$s neboli zrušené. Buď nemáte dostatočné oprávnenia, alebo ste nezaškrtli políčko."
131
 
132
- #: includes/colorbox-javascript-loader.php:48
 
 
 
 
133
  msgid "close"
134
  msgstr "zatvor"
135
 
136
- #: includes/colorbox-javascript-loader.php:49
137
  msgid "next"
138
  msgstr "ďalší"
139
 
140
- #: includes/colorbox-javascript-loader.php:50
141
  msgid "previous"
142
  msgstr "predchádzajúci"
143
 
144
- #: includes/colorbox-javascript-loader.php:51
145
  msgid "start slideshow"
146
  msgstr "štart prezentácie"
147
 
148
- #: includes/colorbox-javascript-loader.php:52
149
  msgid "stop slideshow"
150
  msgstr "stop prezentácie"
151
 
152
- #: includes/colorbox-javascript-loader.php:53
153
  msgid "{current} of {total} images"
154
  msgstr "{current} z {total} obrázkov"
155
 
@@ -163,11 +163,6 @@ msgstr "%1$s Nastavenia"
163
  msgid "Plugin settings"
164
  msgstr "Nastavenia"
165
 
166
- #: includes/settings-page.php:135
167
- #, php-format
168
- msgid "Automate %1$s for all images"
169
- msgstr "Automaticky %1$s pre všetky obrázky"
170
-
171
  #: includes/settings-page.php:135
172
  #, fuzzy, php-format
173
  msgid "Automate %1$s for all images in pages, posts and galleries"
@@ -177,11 +172,6 @@ msgstr "Automaticky %1$s pre obrázky vo WordPress galériách"
177
  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."
178
  msgstr "Automaticky pridá triedu colorbox na obrázky v príspevkoch a stránok. Tiež pridá triedu colorbox do galérií. Obrázky na jednej stránke, alebo príspevku sú zoskupené automaticky."
179
 
180
- #: includes/settings-page.php:144
181
- #, php-format
182
- msgid "Automate %1$s for images in WordPress galleries"
183
- msgstr "Automaticky %1$s pre obrázky vo WordPress galériách"
184
-
185
  #: includes/settings-page.php:144
186
  #, fuzzy, php-format
187
  msgid "Automate %1$s for images in WordPress galleries only"
@@ -528,6 +518,12 @@ msgstr "Preklad"
528
  msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
529
  msgstr "Slovenský preklad vytvoril <a href=\"http://www.itec.sk\">ITEC - Stefan Stieranka</a>."
530
 
 
 
 
 
 
 
531
  #~ msgid "maxWidth"
532
  #~ msgstr "Maximum width of an image"
533
 
2
  msgstr ""
3
  "Project-Id-Version: jQuery-Colorbox\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-05-02 20:20+0100\n"
6
+ "PO-Revision-Date: 2011-05-02 20:20+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Techotronic, SK translate by itec.sk <obchod@itec.sk>\n"
9
  "MIME-Version: 1.0\n"
15
  "X-Poedit-Country: SLOVAKIA\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: jquery-colorbox.php:88
19
  msgid "Theme #1"
20
  msgstr "Téma #1"
21
 
22
+ #: jquery-colorbox.php:89
23
  msgid "Theme #2"
24
  msgstr "Téma #2"
25
 
26
+ #: jquery-colorbox.php:90
27
  msgid "Theme #3"
28
  msgstr "Téma #3"
29
 
30
+ #: jquery-colorbox.php:91
31
  msgid "Theme #4"
32
  msgstr "Téma #4"
33
 
34
+ #: jquery-colorbox.php:92
35
  msgid "Theme #5"
36
  msgstr "Téma #5"
37
 
38
+ #: jquery-colorbox.php:93
39
  msgid "Theme #6"
40
  msgstr "Téma #6"
41
 
42
+ #: jquery-colorbox.php:94
43
  msgid "Theme #7"
44
  msgstr "Téma #7"
45
 
46
+ #: jquery-colorbox.php:95
47
  msgid "Theme #8"
48
  msgstr "Téma #8"
49
 
50
+ #: jquery-colorbox.php:96
51
  msgid "Theme #9"
52
  msgstr "Téma #9"
53
 
54
+ #: jquery-colorbox.php:97
55
  msgid "Theme #10"
56
  msgstr "Téma #10"
57
 
58
+ #: jquery-colorbox.php:98
59
  msgid "Theme #11"
60
  msgstr "Téma #11"
61
 
62
+ #: jquery-colorbox.php:104
63
  msgid "Theme #12"
64
  msgstr "Téma #12"
65
 
66
+ #: jquery-colorbox.php:105
67
  msgid "Theme #13"
68
  msgstr "Téma #13"
69
 
70
+ #: jquery-colorbox.php:106
71
  msgid "Theme #14"
72
  msgstr "Téma #14"
73
 
74
+ #: jquery-colorbox.php:107
75
  msgid "Theme #15"
76
  msgstr "Téma #15"
77
 
78
+ #: jquery-colorbox.php:112
79
  msgid "percent"
80
  msgstr "percent"
81
 
82
+ #: jquery-colorbox.php:113
83
  #: includes/settings-page.php:434
84
  #: includes/settings-page.php:443
85
  msgid "pixels"
86
  msgstr "pixlov"
87
 
88
+ #: jquery-colorbox.php:118
89
  msgid "elastic"
90
  msgstr "elastický"
91
 
92
+ #: jquery-colorbox.php:119
93
  msgid "fade"
94
  msgstr "strácanie"
95
 
96
+ #: jquery-colorbox.php:120
97
  msgid "none"
98
  msgstr "žiadny"
99
 
100
+ #: includes/jquery-colorbox-backend.php:79
 
 
 
 
 
 
 
 
 
101
  #, php-format
102
  msgid "Successfully updated %1$s settings."
103
  msgstr "Úspešne aktualizované %1$s nastavenia."
104
 
105
+ #: includes/jquery-colorbox-backend.php:81
106
  #, php-format
107
  msgid "%1$s settings were successfully deleted."
108
  msgstr "%1$s nastavenia boli zrušené."
109
 
110
+ #: includes/jquery-colorbox-backend.php:124
111
  msgid "needs attention: the plugin is not activated to work for all images."
112
  msgstr "Venujte pozornosť: plugin nie je aktivovaný na prácu pre všetky obrázky."
113
 
114
+ #: includes/jquery-colorbox-backend.php:161
115
+ #: includes/settings-page.php:127
116
+ msgid "Settings"
117
+ msgstr "Nastavenia"
118
+
119
+ #: includes/jquery-colorbox-backend.php:183
120
  msgid "Did not update settings, you do not have the necessary rights."
121
  msgstr "Nastavenie neboli aktualizované, nemáte dostatočné práva."
122
 
123
+ #: includes/jquery-colorbox-backend.php:232
124
  #, php-format
125
  msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
126
  msgstr "Nastavenia %1$s neboli zrušené. Buď nemáte dostatočné oprávnenia, alebo ste nezaškrtli políčko."
127
 
128
+ #: includes/jquery-colorbox-frontend.php:86
129
+ msgid "Using"
130
+ msgstr "S použitím"
131
+
132
+ #: includes/jquery-colorbox-frontend.php:191
133
  msgid "close"
134
  msgstr "zatvor"
135
 
136
+ #: includes/jquery-colorbox-frontend.php:192
137
  msgid "next"
138
  msgstr "ďalší"
139
 
140
+ #: includes/jquery-colorbox-frontend.php:193
141
  msgid "previous"
142
  msgstr "predchádzajúci"
143
 
144
+ #: includes/jquery-colorbox-frontend.php:194
145
  msgid "start slideshow"
146
  msgstr "štart prezentácie"
147
 
148
+ #: includes/jquery-colorbox-frontend.php:195
149
  msgid "stop slideshow"
150
  msgstr "stop prezentácie"
151
 
152
+ #: includes/jquery-colorbox-frontend.php:196
153
  msgid "{current} of {total} images"
154
  msgstr "{current} z {total} obrázkov"
155
 
163
  msgid "Plugin settings"
164
  msgstr "Nastavenia"
165
 
 
 
 
 
 
166
  #: includes/settings-page.php:135
167
  #, fuzzy, php-format
168
  msgid "Automate %1$s for all images in pages, posts and galleries"
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 "Automaticky pridá triedu colorbox na obrázky v príspevkoch a stránok. Tiež pridá triedu colorbox do galérií. Obrázky na jednej stránke, alebo príspevku sú zoskupené automaticky."
174
 
 
 
 
 
 
175
  #: includes/settings-page.php:144
176
  #, fuzzy, php-format
177
  msgid "Automate %1$s for images in WordPress galleries only"
518
  msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
519
  msgstr "Slovenský preklad vytvoril <a href=\"http://www.itec.sk\">ITEC - Stefan Stieranka</a>."
520
 
521
+ #~ msgid "Automate %1$s for all images"
522
+ #~ msgstr "Automaticky %1$s pre všetky obrázky"
523
+
524
+ #~ msgid "Automate %1$s for images in WordPress galleries"
525
+ #~ msgstr "Automaticky %1$s pre obrázky vo WordPress galériách"
526
+
527
  #~ msgid "maxWidth"
528
  #~ msgstr "Maximum width of an image"
529
 
localization/jquery-colorbox-sv_SE.mo CHANGED
Binary file
localization/jquery-colorbox-sv_SE.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: 2011-04-16 21:52+0100\n"
6
- "PO-Revision-Date: 2011-04-16 21:52+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Skez <contact@theindiaexperience.se>\n"
9
  "MIME-Version: 1.0\n"
@@ -15,141 +15,141 @@ msgstr ""
15
  "X-Poedit-Country: SWEDEN\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: jquery-colorbox.php:122
19
  msgid "Theme #1"
20
  msgstr "Tema #1"
21
 
22
- #: jquery-colorbox.php:123
23
  msgid "Theme #2"
24
  msgstr "Tema #2"
25
 
26
- #: jquery-colorbox.php:124
27
  msgid "Theme #3"
28
  msgstr "Tema #3"
29
 
30
- #: jquery-colorbox.php:125
31
  msgid "Theme #4"
32
  msgstr "Tema #4"
33
 
34
- #: jquery-colorbox.php:126
35
  msgid "Theme #5"
36
  msgstr "Tema #5"
37
 
38
- #: jquery-colorbox.php:127
39
  msgid "Theme #6"
40
  msgstr "Tema #6"
41
 
42
- #: jquery-colorbox.php:128
43
  msgid "Theme #7"
44
  msgstr "Tema #7"
45
 
46
- #: jquery-colorbox.php:129
47
  msgid "Theme #8"
48
  msgstr "Tema #8"
49
 
50
- #: jquery-colorbox.php:130
51
  msgid "Theme #9"
52
  msgstr "Tema #9"
53
 
54
- #: jquery-colorbox.php:131
55
  msgid "Theme #10"
56
  msgstr "Tema #10"
57
 
58
- #: jquery-colorbox.php:132
59
  msgid "Theme #11"
60
  msgstr "Tema #11"
61
 
62
- #: jquery-colorbox.php:138
63
  msgid "Theme #12"
64
  msgstr "Tema #12"
65
 
66
- #: jquery-colorbox.php:139
67
  msgid "Theme #13"
68
  msgstr "Tema #13"
69
 
70
- #: jquery-colorbox.php:140
71
  msgid "Theme #14"
72
  msgstr "Tema #14"
73
 
74
- #: jquery-colorbox.php:141
75
  msgid "Theme #15"
76
  msgstr "Tema #15"
77
 
78
- #: jquery-colorbox.php:146
79
  msgid "percent"
80
  msgstr "procent"
81
 
82
- #: jquery-colorbox.php:147
83
  #: includes/settings-page.php:434
84
  #: includes/settings-page.php:443
85
  msgid "pixels"
86
  msgstr "pixlar"
87
 
88
- #: jquery-colorbox.php:152
89
  msgid "elastic"
90
  msgstr "elastisk"
91
 
92
- #: jquery-colorbox.php:153
93
  msgid "fade"
94
  msgstr "tona"
95
 
96
- #: jquery-colorbox.php:154
97
  msgid "none"
98
  msgstr "inget"
99
 
100
- #: jquery-colorbox.php:206
101
- msgid "Using"
102
- msgstr "Använder"
103
-
104
- #: jquery-colorbox.php:307
105
- #: includes/settings-page.php:127
106
- msgid "Settings"
107
- msgstr "Inställningar"
108
-
109
- #: jquery-colorbox.php:372
110
  #, php-format
111
  msgid "Successfully updated %1$s settings."
112
  msgstr "Uppdaterade inställningarna för %1$s."
113
 
114
- #: jquery-colorbox.php:374
115
  #, php-format
116
  msgid "%1$s settings were successfully deleted."
117
  msgstr "Inställningarna för %1$s är borttagna."
118
 
119
- #: jquery-colorbox.php:419
120
  msgid "needs attention: the plugin is not activated to work for all images."
121
  msgstr "behöver uppmärksamhet: pluginet är inte inställt att fungera på alla bilder."
122
 
123
- #: jquery-colorbox.php:501
 
 
 
 
 
124
  msgid "Did not update settings, you do not have the necessary rights."
125
  msgstr "Kunde inte uppdaterade inställningarna, du har inte dem nödvändiga rättigheterna."
126
 
127
- #: jquery-colorbox.php:550
128
  #, php-format
129
  msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
130
  msgstr "Inställningarna för %1$s togs inte bort. Du har antingen inte nödvändiga rättigheter eller så markerade du inte boxen."
131
 
132
- #: includes/colorbox-javascript-loader.php:48
 
 
 
 
133
  msgid "close"
134
  msgstr "stäng"
135
 
136
- #: includes/colorbox-javascript-loader.php:49
137
  msgid "next"
138
  msgstr "nästa"
139
 
140
- #: includes/colorbox-javascript-loader.php:50
141
  msgid "previous"
142
  msgstr "föregående"
143
 
144
- #: includes/colorbox-javascript-loader.php:51
145
  msgid "start slideshow"
146
  msgstr "starta bildspel"
147
 
148
- #: includes/colorbox-javascript-loader.php:52
149
  msgid "stop slideshow"
150
  msgstr "stoppa bildspel"
151
 
152
- #: includes/colorbox-javascript-loader.php:53
153
  msgid "{current} of {total} images"
154
  msgstr "{current} av {total} bilder"
155
 
@@ -163,11 +163,6 @@ msgstr "%1$s Inställningar"
163
  msgid "Plugin settings"
164
  msgstr "Inställningar"
165
 
166
- #: includes/settings-page.php:135
167
- #, php-format
168
- msgid "Automate %1$s for all images"
169
- msgstr "Automatisera %1$s för alla bilder"
170
-
171
  #: includes/settings-page.php:135
172
  #, fuzzy, php-format
173
  msgid "Automate %1$s for all images in pages, posts and galleries"
@@ -177,11 +172,6 @@ msgstr "Automatisera %1$s för bilder i WordPress biblioteket"
177
  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."
178
  msgstr "Lägg automatiskt till colorbox-class för bilder i inlägg och sidor. Lägger även till colorbox-class till gallerier. Fler bilder i ett inlägg eller en sida läggs tillsammans automatiskt."
179
 
180
- #: includes/settings-page.php:144
181
- #, php-format
182
- msgid "Automate %1$s for images in WordPress galleries"
183
- msgstr "Automatisera %1$s för bilder i WordPress biblioteket"
184
-
185
  #: includes/settings-page.php:144
186
  #, fuzzy, php-format
187
  msgid "Automate %1$s for images in WordPress galleries only"
@@ -528,6 +518,12 @@ msgstr "Översättning"
528
  msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
529
  msgstr "Denna svenska översättning är gjord av <a href=\"http://www.theindiaexperience.se\">Christian Nilsson</a>."
530
 
 
 
 
 
 
 
531
  #~ msgid "maxWidth"
532
  #~ msgstr "Maximum width of an image"
533
 
2
  msgstr ""
3
  "Project-Id-Version: jQuery-Colorbox\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-05-02 20:20+0100\n"
6
+ "PO-Revision-Date: 2011-05-02 20:20+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Skez <contact@theindiaexperience.se>\n"
9
  "MIME-Version: 1.0\n"
15
  "X-Poedit-Country: SWEDEN\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: jquery-colorbox.php:88
19
  msgid "Theme #1"
20
  msgstr "Tema #1"
21
 
22
+ #: jquery-colorbox.php:89
23
  msgid "Theme #2"
24
  msgstr "Tema #2"
25
 
26
+ #: jquery-colorbox.php:90
27
  msgid "Theme #3"
28
  msgstr "Tema #3"
29
 
30
+ #: jquery-colorbox.php:91
31
  msgid "Theme #4"
32
  msgstr "Tema #4"
33
 
34
+ #: jquery-colorbox.php:92
35
  msgid "Theme #5"
36
  msgstr "Tema #5"
37
 
38
+ #: jquery-colorbox.php:93
39
  msgid "Theme #6"
40
  msgstr "Tema #6"
41
 
42
+ #: jquery-colorbox.php:94
43
  msgid "Theme #7"
44
  msgstr "Tema #7"
45
 
46
+ #: jquery-colorbox.php:95
47
  msgid "Theme #8"
48
  msgstr "Tema #8"
49
 
50
+ #: jquery-colorbox.php:96
51
  msgid "Theme #9"
52
  msgstr "Tema #9"
53
 
54
+ #: jquery-colorbox.php:97
55
  msgid "Theme #10"
56
  msgstr "Tema #10"
57
 
58
+ #: jquery-colorbox.php:98
59
  msgid "Theme #11"
60
  msgstr "Tema #11"
61
 
62
+ #: jquery-colorbox.php:104
63
  msgid "Theme #12"
64
  msgstr "Tema #12"
65
 
66
+ #: jquery-colorbox.php:105
67
  msgid "Theme #13"
68
  msgstr "Tema #13"
69
 
70
+ #: jquery-colorbox.php:106
71
  msgid "Theme #14"
72
  msgstr "Tema #14"
73
 
74
+ #: jquery-colorbox.php:107
75
  msgid "Theme #15"
76
  msgstr "Tema #15"
77
 
78
+ #: jquery-colorbox.php:112
79
  msgid "percent"
80
  msgstr "procent"
81
 
82
+ #: jquery-colorbox.php:113
83
  #: includes/settings-page.php:434
84
  #: includes/settings-page.php:443
85
  msgid "pixels"
86
  msgstr "pixlar"
87
 
88
+ #: jquery-colorbox.php:118
89
  msgid "elastic"
90
  msgstr "elastisk"
91
 
92
+ #: jquery-colorbox.php:119
93
  msgid "fade"
94
  msgstr "tona"
95
 
96
+ #: jquery-colorbox.php:120
97
  msgid "none"
98
  msgstr "inget"
99
 
100
+ #: includes/jquery-colorbox-backend.php:79
 
 
 
 
 
 
 
 
 
101
  #, php-format
102
  msgid "Successfully updated %1$s settings."
103
  msgstr "Uppdaterade inställningarna för %1$s."
104
 
105
+ #: includes/jquery-colorbox-backend.php:81
106
  #, php-format
107
  msgid "%1$s settings were successfully deleted."
108
  msgstr "Inställningarna för %1$s är borttagna."
109
 
110
+ #: includes/jquery-colorbox-backend.php:124
111
  msgid "needs attention: the plugin is not activated to work for all images."
112
  msgstr "behöver uppmärksamhet: pluginet är inte inställt att fungera på alla bilder."
113
 
114
+ #: includes/jquery-colorbox-backend.php:161
115
+ #: includes/settings-page.php:127
116
+ msgid "Settings"
117
+ msgstr "Inställningar"
118
+
119
+ #: includes/jquery-colorbox-backend.php:183
120
  msgid "Did not update settings, you do not have the necessary rights."
121
  msgstr "Kunde inte uppdaterade inställningarna, du har inte dem nödvändiga rättigheterna."
122
 
123
+ #: includes/jquery-colorbox-backend.php:232
124
  #, php-format
125
  msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
126
  msgstr "Inställningarna för %1$s togs inte bort. Du har antingen inte nödvändiga rättigheter eller så markerade du inte boxen."
127
 
128
+ #: includes/jquery-colorbox-frontend.php:86
129
+ msgid "Using"
130
+ msgstr "Använder"
131
+
132
+ #: includes/jquery-colorbox-frontend.php:191
133
  msgid "close"
134
  msgstr "stäng"
135
 
136
+ #: includes/jquery-colorbox-frontend.php:192
137
  msgid "next"
138
  msgstr "nästa"
139
 
140
+ #: includes/jquery-colorbox-frontend.php:193
141
  msgid "previous"
142
  msgstr "föregående"
143
 
144
+ #: includes/jquery-colorbox-frontend.php:194
145
  msgid "start slideshow"
146
  msgstr "starta bildspel"
147
 
148
+ #: includes/jquery-colorbox-frontend.php:195
149
  msgid "stop slideshow"
150
  msgstr "stoppa bildspel"
151
 
152
+ #: includes/jquery-colorbox-frontend.php:196
153
  msgid "{current} of {total} images"
154
  msgstr "{current} av {total} bilder"
155
 
163
  msgid "Plugin settings"
164
  msgstr "Inställningar"
165
 
 
 
 
 
 
166
  #: includes/settings-page.php:135
167
  #, fuzzy, php-format
168
  msgid "Automate %1$s for all images in pages, posts and galleries"
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 "Lägg automatiskt till colorbox-class för bilder i inlägg och sidor. Lägger även till colorbox-class till gallerier. Fler bilder i ett inlägg eller en sida läggs tillsammans automatiskt."
174
 
 
 
 
 
 
175
  #: includes/settings-page.php:144
176
  #, fuzzy, php-format
177
  msgid "Automate %1$s for images in WordPress galleries only"
518
  msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
519
  msgstr "Denna svenska översättning är gjord av <a href=\"http://www.theindiaexperience.se\">Christian Nilsson</a>."
520
 
521
+ #~ msgid "Automate %1$s for all images"
522
+ #~ msgstr "Automatisera %1$s för alla bilder"
523
+
524
+ #~ msgid "Automate %1$s for images in WordPress galleries"
525
+ #~ msgstr "Automatisera %1$s för bilder i WordPress biblioteket"
526
+
527
  #~ msgid "maxWidth"
528
  #~ msgstr "Maximum width of an image"
529
 
localization/jquery-colorbox-tr_TR.mo CHANGED
Binary file
localization/jquery-colorbox-tr_TR.po CHANGED
@@ -3,7 +3,7 @@ msgstr ""
3
  "Project-Id-Version: jQuery-Colorbox\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2011-04-16 21:52+0100\n"
6
- "PO-Revision-Date: 2011-04-16 21:53+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Serhat Yolaçan\n"
9
  "MIME-Version: 1.0\n"
3
  "Project-Id-Version: jQuery-Colorbox\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2011-04-16 21:52+0100\n"
6
+ "PO-Revision-Date: 2011-05-02 20:21+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Serhat Yolaçan\n"
9
  "MIME-Version: 1.0\n"
localization/jquery-colorbox-uk.mo CHANGED
Binary file
localization/jquery-colorbox-uk.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: 2011-04-16 21:53+0100\n"
6
- "PO-Revision-Date: 2011-04-16 21:53+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: ПіК - Політика і Культура <tekimorukiari@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -15,141 +15,141 @@ msgstr ""
15
  "X-Poedit-Country: UKRAINE\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: jquery-colorbox.php:122
19
  msgid "Theme #1"
20
  msgstr "Тема #1"
21
 
22
- #: jquery-colorbox.php:123
23
  msgid "Theme #2"
24
  msgstr "Тема #2"
25
 
26
- #: jquery-colorbox.php:124
27
  msgid "Theme #3"
28
  msgstr "Тема #3"
29
 
30
- #: jquery-colorbox.php:125
31
  msgid "Theme #4"
32
  msgstr "Тема #4"
33
 
34
- #: jquery-colorbox.php:126
35
  msgid "Theme #5"
36
  msgstr "Тема #5"
37
 
38
- #: jquery-colorbox.php:127
39
  msgid "Theme #6"
40
  msgstr "Тема #6"
41
 
42
- #: jquery-colorbox.php:128
43
  msgid "Theme #7"
44
  msgstr "Тема #7"
45
 
46
- #: jquery-colorbox.php:129
47
  msgid "Theme #8"
48
  msgstr "Тема #8"
49
 
50
- #: jquery-colorbox.php:130
51
  msgid "Theme #9"
52
  msgstr "Тема #9"
53
 
54
- #: jquery-colorbox.php:131
55
  msgid "Theme #10"
56
  msgstr "Тема #10"
57
 
58
- #: jquery-colorbox.php:132
59
  msgid "Theme #11"
60
  msgstr "Тема #11"
61
 
62
- #: jquery-colorbox.php:138
63
  msgid "Theme #12"
64
  msgstr "Тема #12"
65
 
66
- #: jquery-colorbox.php:139
67
  msgid "Theme #13"
68
  msgstr "Тема #13"
69
 
70
- #: jquery-colorbox.php:140
71
  msgid "Theme #14"
72
  msgstr "Тема #14"
73
 
74
- #: jquery-colorbox.php:141
75
  msgid "Theme #15"
76
  msgstr "Тема #15"
77
 
78
- #: jquery-colorbox.php:146
79
  msgid "percent"
80
  msgstr "процентів"
81
 
82
- #: jquery-colorbox.php:147
83
  #: includes/settings-page.php:434
84
  #: includes/settings-page.php:443
85
  msgid "pixels"
86
  msgstr "пікселів"
87
 
88
- #: jquery-colorbox.php:152
89
  msgid "elastic"
90
  msgstr "гнучкий"
91
 
92
- #: jquery-colorbox.php:153
93
  msgid "fade"
94
  msgstr "затухання"
95
 
96
- #: jquery-colorbox.php:154
97
  msgid "none"
98
  msgstr "відсутня"
99
 
100
- #: jquery-colorbox.php:206
101
- msgid "Using"
102
- msgstr ""
103
-
104
- #: jquery-colorbox.php:307
105
- #: includes/settings-page.php:127
106
- msgid "Settings"
107
- msgstr "Налаштування"
108
-
109
- #: jquery-colorbox.php:372
110
  #, php-format
111
  msgid "Successfully updated %1$s settings."
112
  msgstr "Вдачно поновлені налаштування %1$s"
113
 
114
- #: jquery-colorbox.php:374
115
  #, php-format
116
  msgid "%1$s settings were successfully deleted."
117
  msgstr "Налаштування %1$s були вдало видалені"
118
 
119
- #: jquery-colorbox.php:419
120
  msgid "needs attention: the plugin is not activated to work for all images."
121
  msgstr "Увага: плагін не налаштований на работу з усіми зображеннями блогу (можна змінити в налаштуваннях плагину)."
122
 
123
- #: jquery-colorbox.php:501
 
 
 
 
 
124
  msgid "Did not update settings, you do not have the necessary rights."
125
  msgstr "Налаштування не оновлені. У вас немає достатніх прав."
126
 
127
- #: jquery-colorbox.php:550
128
  #, php-format
129
  msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
130
  msgstr "%1$s не видалений. У вас немає достатніх прав."
131
 
132
- #: includes/colorbox-javascript-loader.php:48
 
 
 
 
133
  msgid "close"
134
  msgstr "Закрити"
135
 
136
- #: includes/colorbox-javascript-loader.php:49
137
  msgid "next"
138
  msgstr "Наст."
139
 
140
- #: includes/colorbox-javascript-loader.php:50
141
  msgid "previous"
142
  msgstr "Перед."
143
 
144
- #: includes/colorbox-javascript-loader.php:51
145
  msgid "start slideshow"
146
  msgstr "Запустити слайдшоу"
147
 
148
- #: includes/colorbox-javascript-loader.php:52
149
  msgid "stop slideshow"
150
  msgstr "Зупинити слайдшоу"
151
 
152
- #: includes/colorbox-javascript-loader.php:53
153
  msgid "{current} of {total} images"
154
  msgstr "{current} із {total} зображень"
155
 
@@ -163,11 +163,6 @@ msgstr "Налаштування %1$s"
163
  msgid "Plugin settings"
164
  msgstr "Налаштування"
165
 
166
- #: includes/settings-page.php:135
167
- #, php-format
168
- msgid "Automate %1$s for all images"
169
- msgstr "Автоматично застосовувати %1$s для всіх зображень"
170
-
171
  #: includes/settings-page.php:135
172
  #, fuzzy, php-format
173
  msgid "Automate %1$s for all images in pages, posts and galleries"
@@ -177,11 +172,6 @@ msgstr "Автоматично застосовувати %1$s для зобра
177
  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."
178
  msgstr "Автоматично застосовувати стиль ColorBox до зображень в постах й на сторінках. Також примінити ColorBox до галерей. Зображенн на сторінці або в пості групуються автоматично."
179
 
180
- #: includes/settings-page.php:144
181
- #, php-format
182
- msgid "Automate %1$s for images in WordPress galleries"
183
- msgstr "Автоматично застосовувати %1$s для зображень всередені галереї Wordpress"
184
-
185
  #: includes/settings-page.php:144
186
  #, fuzzy, php-format
187
  msgid "Automate %1$s for images in WordPress galleries only"
@@ -529,6 +519,13 @@ msgstr "Переклад"
529
  msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
530
  msgstr "На українську мову переклав Юрій Крижанівський. Портал <a href=\"http://politcult.com\">ПіК - Політика і Культура</a>."
531
 
 
 
 
 
 
 
 
532
  #~ msgid "maxWidth"
533
  #~ msgstr "Maximum width of an image"
534
 
2
  msgstr ""
3
  "Project-Id-Version: jQuery-Colorbox-Українська-версія\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-05-02 20:21+0100\n"
6
+ "PO-Revision-Date: 2011-05-02 20:21+0100\n"
7
  "Last-Translator: \n"
8
  "Language-Team: ПіК - Політика і Культура <tekimorukiari@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
15
  "X-Poedit-Country: UKRAINE\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: jquery-colorbox.php:88
19
  msgid "Theme #1"
20
  msgstr "Тема #1"
21
 
22
+ #: jquery-colorbox.php:89
23
  msgid "Theme #2"
24
  msgstr "Тема #2"
25
 
26
+ #: jquery-colorbox.php:90
27
  msgid "Theme #3"
28
  msgstr "Тема #3"
29
 
30
+ #: jquery-colorbox.php:91
31
  msgid "Theme #4"
32
  msgstr "Тема #4"
33
 
34
+ #: jquery-colorbox.php:92
35
  msgid "Theme #5"
36
  msgstr "Тема #5"
37
 
38
+ #: jquery-colorbox.php:93
39
  msgid "Theme #6"
40
  msgstr "Тема #6"
41
 
42
+ #: jquery-colorbox.php:94
43
  msgid "Theme #7"
44
  msgstr "Тема #7"
45
 
46
+ #: jquery-colorbox.php:95
47
  msgid "Theme #8"
48
  msgstr "Тема #8"
49
 
50
+ #: jquery-colorbox.php:96
51
  msgid "Theme #9"
52
  msgstr "Тема #9"
53
 
54
+ #: jquery-colorbox.php:97
55
  msgid "Theme #10"
56
  msgstr "Тема #10"
57
 
58
+ #: jquery-colorbox.php:98
59
  msgid "Theme #11"
60
  msgstr "Тема #11"
61
 
62
+ #: jquery-colorbox.php:104
63
  msgid "Theme #12"
64
  msgstr "Тема #12"
65
 
66
+ #: jquery-colorbox.php:105
67
  msgid "Theme #13"
68
  msgstr "Тема #13"
69
 
70
+ #: jquery-colorbox.php:106
71
  msgid "Theme #14"
72
  msgstr "Тема #14"
73
 
74
+ #: jquery-colorbox.php:107
75
  msgid "Theme #15"
76
  msgstr "Тема #15"
77
 
78
+ #: jquery-colorbox.php:112
79
  msgid "percent"
80
  msgstr "процентів"
81
 
82
+ #: jquery-colorbox.php:113
83
  #: includes/settings-page.php:434
84
  #: includes/settings-page.php:443
85
  msgid "pixels"
86
  msgstr "пікселів"
87
 
88
+ #: jquery-colorbox.php:118
89
  msgid "elastic"
90
  msgstr "гнучкий"
91
 
92
+ #: jquery-colorbox.php:119
93
  msgid "fade"
94
  msgstr "затухання"
95
 
96
+ #: jquery-colorbox.php:120
97
  msgid "none"
98
  msgstr "відсутня"
99
 
100
+ #: includes/jquery-colorbox-backend.php:79
 
 
 
 
 
 
 
 
 
101
  #, php-format
102
  msgid "Successfully updated %1$s settings."
103
  msgstr "Вдачно поновлені налаштування %1$s"
104
 
105
+ #: includes/jquery-colorbox-backend.php:81
106
  #, php-format
107
  msgid "%1$s settings were successfully deleted."
108
  msgstr "Налаштування %1$s були вдало видалені"
109
 
110
+ #: includes/jquery-colorbox-backend.php:124
111
  msgid "needs attention: the plugin is not activated to work for all images."
112
  msgstr "Увага: плагін не налаштований на работу з усіми зображеннями блогу (можна змінити в налаштуваннях плагину)."
113
 
114
+ #: includes/jquery-colorbox-backend.php:161
115
+ #: includes/settings-page.php:127
116
+ msgid "Settings"
117
+ msgstr "Налаштування"
118
+
119
+ #: includes/jquery-colorbox-backend.php:183
120
  msgid "Did not update settings, you do not have the necessary rights."
121
  msgstr "Налаштування не оновлені. У вас немає достатніх прав."
122
 
123
+ #: includes/jquery-colorbox-backend.php:232
124
  #, php-format
125
  msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
126
  msgstr "%1$s не видалений. У вас немає достатніх прав."
127
 
128
+ #: includes/jquery-colorbox-frontend.php:86
129
+ msgid "Using"
130
+ msgstr ""
131
+
132
+ #: includes/jquery-colorbox-frontend.php:191
133
  msgid "close"
134
  msgstr "Закрити"
135
 
136
+ #: includes/jquery-colorbox-frontend.php:192
137
  msgid "next"
138
  msgstr "Наст."
139
 
140
+ #: includes/jquery-colorbox-frontend.php:193
141
  msgid "previous"
142
  msgstr "Перед."
143
 
144
+ #: includes/jquery-colorbox-frontend.php:194
145
  msgid "start slideshow"
146
  msgstr "Запустити слайдшоу"
147
 
148
+ #: includes/jquery-colorbox-frontend.php:195
149
  msgid "stop slideshow"
150
  msgstr "Зупинити слайдшоу"
151
 
152
+ #: includes/jquery-colorbox-frontend.php:196
153
  msgid "{current} of {total} images"
154
  msgstr "{current} із {total} зображень"
155
 
163
  msgid "Plugin settings"
164
  msgstr "Налаштування"
165
 
 
 
 
 
 
166
  #: includes/settings-page.php:135
167
  #, fuzzy, php-format
168
  msgid "Automate %1$s for all images in pages, posts and galleries"
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 "Автоматично застосовувати стиль ColorBox до зображень в постах й на сторінках. Також примінити ColorBox до галерей. Зображенн на сторінці або в пості групуються автоматично."
174
 
 
 
 
 
 
175
  #: includes/settings-page.php:144
176
  #, fuzzy, php-format
177
  msgid "Automate %1$s for images in WordPress galleries only"
519
  msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
520
  msgstr "На українську мову переклав Юрій Крижанівський. Портал <a href=\"http://politcult.com\">ПіК - Політика і Культура</a>."
521
 
522
+ #~ msgid "Automate %1$s for all images"
523
+ #~ msgstr "Автоматично застосовувати %1$s для всіх зображень"
524
+
525
+ #~ msgid "Automate %1$s for images in WordPress galleries"
526
+ #~ msgstr ""
527
+ #~ "Автоматично застосовувати %1$s для зображень всередені галереї Wordpress"
528
+
529
  #~ msgid "maxWidth"
530
  #~ msgstr "Maximum width of an image"
531
 
localization/jquery-colorbox-zh_CN.mo ADDED
Binary file
localization/jquery-colorbox-zh_CN.po ADDED
@@ -0,0 +1,534 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: jQuery-Colorbox\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-04-16 21:50+0100\n"
6
+ "PO-Revision-Date: 2011-06-16 19:28+0800\n"
7
+ "Last-Translator: Lucas <lucas-ho@live.cn>\n"
8
+ "Language-Team: Techotronic <blog@techotronic.de>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-Language: English\n"
13
+ "X-Poedit-KeywordsList: _e;__\n"
14
+ "X-Poedit-Basepath: ..\n"
15
+ "X-Poedit-Country: GERMANY\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: jquery-colorbox.php:122
19
+ msgid "Theme #1"
20
+ msgstr "主题 #1"
21
+
22
+ #: jquery-colorbox.php:123
23
+ msgid "Theme #2"
24
+ msgstr "主题 #2"
25
+
26
+ #: jquery-colorbox.php:124
27
+ msgid "Theme #3"
28
+ msgstr "主题 #3"
29
+
30
+ #: jquery-colorbox.php:125
31
+ msgid "Theme #4"
32
+ msgstr "主题 #4"
33
+
34
+ #: jquery-colorbox.php:126
35
+ msgid "Theme #5"
36
+ msgstr "主题 #5"
37
+
38
+ #: jquery-colorbox.php:127
39
+ msgid "Theme #6"
40
+ msgstr "主题 #6"
41
+
42
+ #: jquery-colorbox.php:128
43
+ msgid "Theme #7"
44
+ msgstr "主题 #7"
45
+
46
+ #: jquery-colorbox.php:129
47
+ msgid "Theme #8"
48
+ msgstr "主题 #8"
49
+
50
+ #: jquery-colorbox.php:130
51
+ msgid "Theme #9"
52
+ msgstr "主题 #9"
53
+
54
+ #: jquery-colorbox.php:131
55
+ msgid "Theme #10"
56
+ msgstr "主题 #10"
57
+
58
+ #: jquery-colorbox.php:132
59
+ msgid "Theme #11"
60
+ msgstr "主题 #11"
61
+
62
+ #: jquery-colorbox.php:138
63
+ msgid "Theme #12"
64
+ msgstr "主题 #12"
65
+
66
+ #: jquery-colorbox.php:139
67
+ msgid "Theme #13"
68
+ msgstr "主题 #13"
69
+
70
+ #: jquery-colorbox.php:140
71
+ msgid "Theme #14"
72
+ msgstr "主题 #14"
73
+
74
+ #: jquery-colorbox.php:141
75
+ msgid "Theme #15"
76
+ msgstr "主题 #15"
77
+
78
+ #: jquery-colorbox.php:146
79
+ msgid "percent"
80
+ msgstr "百分比"
81
+
82
+ #: jquery-colorbox.php:147
83
+ #: includes/settings-page.php:434
84
+ #: includes/settings-page.php:443
85
+ msgid "pixels"
86
+ msgstr "像素"
87
+
88
+ #: jquery-colorbox.php:152
89
+ msgid "elastic"
90
+ msgstr "弹出效果"
91
+
92
+ #: jquery-colorbox.php:153
93
+ msgid "fade"
94
+ msgstr "渐变效果"
95
+
96
+ #: jquery-colorbox.php:154
97
+ msgid "none"
98
+ msgstr "无"
99
+
100
+ #: jquery-colorbox.php:206
101
+ msgid "Using"
102
+ msgstr "使用"
103
+
104
+ #: jquery-colorbox.php:307
105
+ #: includes/settings-page.php:127
106
+ msgid "Settings"
107
+ msgstr "设置"
108
+
109
+ #: jquery-colorbox.php:372
110
+ #, php-format
111
+ msgid "Successfully updated %1$s settings."
112
+ msgstr "成功更新%1$s项设置"
113
+
114
+ #: jquery-colorbox.php:374
115
+ #, php-format
116
+ msgid "%1$s settings were successfully deleted."
117
+ msgstr "%1$s项设置已成功删除"
118
+
119
+ #: jquery-colorbox.php:419
120
+ msgid "needs attention: the plugin is not activated to work for all images."
121
+ msgstr "注意:插件没有激活为“适用于所有图像”"
122
+
123
+ #: jquery-colorbox.php:501
124
+ msgid "Did not update settings, you do not have the necessary rights."
125
+ msgstr "未更新设置,您没有需要的权限。"
126
+
127
+ #: jquery-colorbox.php:550
128
+ #, php-format
129
+ msgid "Did not delete %1$s settings. Either you dont have the nececssary rights or you didnt check the checkbox."
130
+ msgstr "未删除%1$s项设置,您没有需要的权限或者您没有勾选复选框。"
131
+
132
+ #: includes/colorbox-javascript-loader.php:48
133
+ msgid "close"
134
+ msgstr "关闭"
135
+
136
+ #: includes/colorbox-javascript-loader.php:49
137
+ msgid "next"
138
+ msgstr "下一张"
139
+
140
+ #: includes/colorbox-javascript-loader.php:50
141
+ msgid "previous"
142
+ msgstr "上一张"
143
+
144
+ #: includes/colorbox-javascript-loader.php:51
145
+ msgid "start slideshow"
146
+ msgstr "开始幻灯片放映"
147
+
148
+ #: includes/colorbox-javascript-loader.php:52
149
+ msgid "stop slideshow"
150
+ msgstr "停止幻灯片放映"
151
+
152
+ #: includes/colorbox-javascript-loader.php:53
153
+ msgid "{current} of {total} images"
154
+ msgstr "{total}张图像中的第{current}张"
155
+
156
+ #: includes/settings-page.php:117
157
+ #, php-format
158
+ msgid "%1$s Settings"
159
+ msgstr "%1$s项设置"
160
+
161
+ #: includes/settings-page.php:128
162
+ msgid "Plugin settings"
163
+ msgstr "插件设置"
164
+
165
+ #: includes/settings-page.php:135
166
+ #, php-format
167
+ msgid "Automate %1$s for all images"
168
+ msgstr "自动为所有图像使用%1$s"
169
+
170
+ #: includes/settings-page.php:135
171
+ #, php-format
172
+ msgid "Automate %1$s for all images in pages, posts and galleries"
173
+ msgstr "自动为页面,日志和库中的所有图像使用%1$s"
174
+
175
+ #: includes/settings-page.php:139
176
+ 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."
177
+ msgstr "自动在日志和页面中添加Colorbox代码,同时在库中添加Colorbox效果。同一页面或者日志中的图像会自动排列。"
178
+
179
+ #: includes/settings-page.php:144
180
+ #, php-format
181
+ msgid "Automate %1$s for images in WordPress galleries"
182
+ msgstr "自动在WordPress库中使用%1$s"
183
+
184
+ #: includes/settings-page.php:144
185
+ #, php-format
186
+ msgid "Automate %1$s for images in WordPress galleries only"
187
+ msgstr "自动仅在WordPress库中使用%1$s"
188
+
189
+ #: includes/settings-page.php:148
190
+ msgid "Automatically add colorbox-class to images in WordPress galleries, but nowhere else. Images in one page or post are grouped automatically."
191
+ msgstr "自动仅在Wordpress库中添加Colorbox代码。同一页面或者日志中的图像会自动排列。"
192
+
193
+ #: includes/settings-page.php:153
194
+ #, php-format
195
+ msgid "Automate %1$s for all other images"
196
+ msgstr "自动为所有其它图像使用%1$s"
197
+
198
+ #: includes/settings-page.php:157
199
+ msgid "Automatically add colorbox-class to all images that are not in posts and pages (e.g. the sidebar)."
200
+ msgstr "自动在不在日志和页面中的图像(比如侧边栏)添加colorbox代码。"
201
+
202
+ #: includes/settings-page.php:162
203
+ msgid "Automate hiding of flash objects"
204
+ msgstr "自动隐藏Flash对象"
205
+
206
+ #: includes/settings-page.php:166
207
+ msgid "Automatically hide embeded flash objects behind the Colorbox layer."
208
+ msgstr "自动将flash对象隐藏到Colorbox层后面。"
209
+
210
+ #: includes/settings-page.php:171
211
+ msgid "Add JavaScript to footer"
212
+ msgstr "在页面底部添加JavaScript"
213
+
214
+ #: includes/settings-page.php:175
215
+ msgid "Add JavaScript to footer instead of the header."
216
+ msgstr "将JavaScript添加到页面底部而不是顶部"
217
+
218
+ #: includes/settings-page.php:180
219
+ msgid "Remove link from Meta-box"
220
+ msgstr "从元信息中移除链接"
221
+
222
+ #: includes/settings-page.php:184
223
+ msgid "Remove the link to the developers site from the WordPress meta-box."
224
+ msgstr "从Wordpress的元信息中移除开发者网站的链接"
225
+
226
+ #: includes/settings-page.php:189
227
+ msgid "Activate debug mode"
228
+ msgstr "激活调试模式"
229
+
230
+ #: includes/settings-page.php:193
231
+ msgid "Adds debug information and non-minified JavaScript to the page. Useful for troubleshooting."
232
+ msgstr "添加调试信息和完整的JavaScript到页面中。对排除故障有帮助。"
233
+
234
+ #: includes/settings-page.php:198
235
+ msgid "Disable warning"
236
+ msgstr "禁用警告"
237
+
238
+ #: includes/settings-page.php:202
239
+ msgid "Disables the warning that is displayed if the plugin is activated but the auto-colorbox feature for all images is turned off."
240
+ msgstr "不显示插件激活但是对于所有图片关闭Colorbox使用效果的警告信息。"
241
+
242
+ #: includes/settings-page.php:208
243
+ #: includes/settings-page.php:521
244
+ msgid "Save Changes"
245
+ msgstr "保存设置"
246
+
247
+ #: includes/settings-page.php:213
248
+ msgid "Colorbox settings"
249
+ msgstr "Colorbox设置"
250
+
251
+ #: includes/settings-page.php:220
252
+ msgid "Theme"
253
+ msgstr "主题"
254
+
255
+ #: includes/settings-page.php:232
256
+ msgid "Select the theme you want to use on your blog."
257
+ msgstr "选择想用于您的博客的主题"
258
+
259
+ #: includes/settings-page.php:237
260
+ msgid "Theme screenshot"
261
+ msgstr "主题预览"
262
+
263
+ #: includes/settings-page.php:248
264
+ msgid "Add Slideshow to groups"
265
+ msgstr "在组中使用幻灯片播放"
266
+
267
+ #: includes/settings-page.php:252
268
+ #, php-format
269
+ msgid "Add Slideshow functionality for %1$s Groups"
270
+ msgstr "为%1$s组中的图像启用幻灯片播放功能"
271
+
272
+ #: includes/settings-page.php:257
273
+ msgid "Start Slideshow automatically"
274
+ msgstr "自动开始幻灯片播放"
275
+
276
+ #: includes/settings-page.php:261
277
+ #, php-format
278
+ msgid "Start Slideshow automatically if slideshow functionality is added to %1$s Groups"
279
+ msgstr "如果启用幻灯片播放功能,%1$s组中的图像将自动以幻灯片方式播放"
280
+
281
+ #: includes/settings-page.php:266
282
+ msgid "Speed of the slideshow"
283
+ msgstr "幻灯片切换速度"
284
+
285
+ #: includes/settings-page.php:269
286
+ #: includes/settings-page.php:496
287
+ msgid "milliseconds"
288
+ msgstr "毫秒"
289
+
290
+ #: includes/settings-page.php:270
291
+ msgid "Sets the speed of the slideshow, in milliseconds"
292
+ msgstr "设置幻灯片切换速度,单位毫秒"
293
+
294
+ #: includes/settings-page.php:275
295
+ msgid "Disable loop"
296
+ msgstr "禁用循环"
297
+
298
+ #: includes/settings-page.php:279
299
+ msgid "Disable looping through image groups"
300
+ msgstr "勾选将禁用在组中循环播放图像"
301
+
302
+ #: includes/settings-page.php:284
303
+ msgid "Disable keys"
304
+ msgstr "禁用快捷键"
305
+
306
+ #: includes/settings-page.php:288
307
+ msgid "Disable ESC to close Colorbox and arrow keys to go to next and previous images"
308
+ msgstr "勾选将禁用使用ESC关闭Colorbox和使用左右方向键切换到下一张和上一张图像"
309
+
310
+ #: includes/settings-page.php:293
311
+ msgid "Maximum width of an image"
312
+ msgstr "图像最大宽度"
313
+
314
+ #: includes/settings-page.php:297
315
+ #: includes/settings-page.php:343
316
+ #: includes/settings-page.php:389
317
+ msgid "Do not set width"
318
+ msgstr "不设置最大宽度"
319
+
320
+ #: includes/settings-page.php:300
321
+ msgid "Set maximum width of an image"
322
+ msgstr "设置图像最大宽度"
323
+
324
+ #: includes/settings-page.php:311
325
+ 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"
326
+ msgstr "设置在Colorbox打开图像时的最大宽度(相对于浏览窗口的百分比或者点)。如果没有设置最大宽度,图像宽度等于Colorbox自身宽度。"
327
+
328
+ #: includes/settings-page.php:316
329
+ msgid "Maximum height of an image"
330
+ msgstr "图像最大高度"
331
+
332
+ #: includes/settings-page.php:320
333
+ #: includes/settings-page.php:366
334
+ #: includes/settings-page.php:412
335
+ msgid "Do not set height"
336
+ msgstr "不设置最大高度"
337
+
338
+ #: includes/settings-page.php:323
339
+ msgid "Set maximum height of an image"
340
+ msgstr "设置图像最大高度"
341
+
342
+ #: includes/settings-page.php:334
343
+ 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"
344
+ msgstr "设置在Colorbox打开图像时的最大高度(相对于浏览窗口的百分比或者点)。如果没有设置最大高度,图像宽度等于Colorbox自身高度。"
345
+
346
+ #: includes/settings-page.php:339
347
+ msgid "Maximum width of the Colorbox"
348
+ msgstr "Colorbox自身的最大宽度"
349
+
350
+ #: includes/settings-page.php:346
351
+ #: includes/settings-page.php:392
352
+ msgid "Set width of the Colorbox"
353
+ msgstr "设置Colorbox自身的宽度"
354
+
355
+ #: includes/settings-page.php:357
356
+ #: includes/settings-page.php:403
357
+ 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"
358
+ msgstr "设置在Colorbox自身的最大宽度(相对于浏览窗口的百分比或者点)。如果图像大于Colorbox自身的宽度,将显示滚动条。如果没有设置Colorbox自身的宽度,Colorbox自身的宽度等于图像的宽度。"
359
+
360
+ #: includes/settings-page.php:362
361
+ msgid "Maximum height of the Colorbox"
362
+ msgstr "Colorbox自身的高度"
363
+
364
+ #: includes/settings-page.php:369
365
+ #: includes/settings-page.php:415
366
+ msgid "Set height of the Colorbox"
367
+ msgstr "设置Colorbox自身的高度"
368
+
369
+ #: includes/settings-page.php:380
370
+ #: includes/settings-page.php:426
371
+ 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"
372
+ msgstr "设置在Colorbox自身的最大高度(相对于浏览窗口的百分比或者点)。如果图像大于Colorbox自身的高度,将显示滚动条。如果没有设置Colorbox自身的高度,Colorbox自身的宽度等于图像的高度。"
373
+
374
+ #: includes/settings-page.php:385
375
+ msgid "Maximum width of the Colorbox used for links"
376
+ msgstr "打开超链接时Colorbox自身的最大宽度"
377
+
378
+ #: includes/settings-page.php:408
379
+ msgid "Maximum height of the Colorbox used for links"
380
+ msgstr "打开超链接时Colorbox自身的最大高度"
381
+
382
+ #: includes/settings-page.php:431
383
+ msgid "Initial width of the Colorbox"
384
+ msgstr "初始化Colorbox自身的宽度"
385
+
386
+ #: includes/settings-page.php:435
387
+ msgid "Set the maximum width of the Colorbox before the content is loaded"
388
+ msgstr "设置在图像被加载完毕前Colorbox自身的最大宽度"
389
+
390
+ #: includes/settings-page.php:440
391
+ msgid "Initial height of the Colorbox"
392
+ msgstr "初始化Colorbox自身的高度"
393
+
394
+ #: includes/settings-page.php:444
395
+ msgid "Set the maximum height of the Colorbox before the content is loaded"
396
+ msgstr "设置在图像被加载完毕前Colorbox自身的最大高度"
397
+
398
+ #: includes/settings-page.php:449
399
+ msgid "Resize images"
400
+ msgstr "调整图像"
401
+
402
+ #: includes/settings-page.php:453
403
+ 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"
404
+ msgstr "如果启用并且已经定义图像的最大宽高、Colorbox自身的宽高,Colorbox将按比例调整图像以适应边框"
405
+
406
+ #: includes/settings-page.php:458
407
+ msgid "Close Colorbox on overlay click"
408
+ msgstr "点击背景关闭Colorbox"
409
+
410
+ #: includes/settings-page.php:462
411
+ msgid "If checked, enables closing ColorBox by clicking on the background overlay"
412
+ msgstr "如果选中复选框,将允许您点击背景关闭Colorbox"
413
+
414
+ #: includes/settings-page.php:467
415
+ msgid "Preload images"
416
+ msgstr "预加载图像"
417
+
418
+ #: includes/settings-page.php:471
419
+ msgid "Allows for preloading of \"next\" and \"previous\" content in a group, after the current content has finished loading. Uncheck box to disable."
420
+ msgstr "允许在当前图像完成加载之后预加载图集的\"下一张\"和\"上一张\" 图像。反选复选框禁用。"
421
+
422
+ #: includes/settings-page.php:476
423
+ msgid "Transition type"
424
+ msgstr "过渡效果"
425
+
426
+ #: includes/settings-page.php:488
427
+ msgid "The transition type of the Colorbox. Can be set to \"elastic\", \"fade\", or \"none\""
428
+ msgstr "Colorbox的过渡效果可以设置为\"弹出\", \"渐变\", or \"无\""
429
+
430
+ #: includes/settings-page.php:493
431
+ msgid "Transition speed"
432
+ msgstr "过渡速度"
433
+
434
+ #: includes/settings-page.php:497
435
+ msgid "Sets the speed of the \"fade\" and \"elastic\" transitions, in milliseconds"
436
+ msgstr "设置\"渐变\"和\"弹出\"过渡的速度,单位毫秒"
437
+
438
+ #: includes/settings-page.php:502
439
+ msgid "Opacity"
440
+ msgstr "不透明度"
441
+
442
+ #: includes/settings-page.php:506
443
+ msgid "The overlay opacity level. Range: 0 to 1"
444
+ msgstr "不透明度的级别。参数范围:0到1之间"
445
+
446
+ #: includes/settings-page.php:511
447
+ msgid "Make images draggable"
448
+ msgstr "使图像可拖动"
449
+
450
+ #: includes/settings-page.php:515
451
+ msgid "Make images draggable instead of scrollable"
452
+ msgstr "用图像拖动来代替图像滚动"
453
+
454
+ #: includes/settings-page.php:531
455
+ #: includes/settings-page.php:540
456
+ msgid "Delete Settings"
457
+ msgstr "删除设置"
458
+
459
+ #: includes/settings-page.php:534
460
+ msgid "Check the box and click this button to delete settings of this plugin."
461
+ msgstr "选中复选框并点击按钮,以删除插件的设置。"
462
+
463
+ #: includes/settings-page.php:551
464
+ msgid "Top donations"
465
+ msgstr "捐赠排行榜"
466
+
467
+ #: includes/settings-page.php:560
468
+ msgid "Latest donations"
469
+ msgstr "最新捐赠名单"
470
+
471
+ #: includes/settings-page.php:569
472
+ msgid "Donate"
473
+ msgstr "捐赠"
474
+
475
+ #: includes/settings-page.php:573
476
+ msgid "If you would like to make a small (or large) contribution towards future development please consider making a donation."
477
+ msgstr "如果您希望对我们未来的发展做或多或少的贡献,请考虑捐赠吧。"
478
+
479
+ #: includes/settings-page.php:575
480
+ msgid "Donate using Paypal"
481
+ msgstr "使用Paypay捐赠"
482
+
483
+ #: includes/settings-page.php:579
484
+ msgid "Techotronic Development Support"
485
+ msgstr "Techotronic 开发支持"
486
+
487
+ #: includes/settings-page.php:583
488
+ msgid "Please enter the URL you'd like me to link to in the donors lists"
489
+ msgstr "请输入您想链接到捐赠者名单的网址"
490
+
491
+ #: includes/settings-page.php:585
492
+ msgid "Return to Your Dashboard"
493
+ msgstr "回到Dashboard"
494
+
495
+ #: includes/settings-page.php:589
496
+ msgid "Select Preset Amount"
497
+ msgstr "选择金额"
498
+
499
+ #: includes/settings-page.php:597
500
+ #: includes/settings-page.php:601
501
+ msgid "USD"
502
+ msgstr "美金"
503
+
504
+ #: includes/settings-page.php:598
505
+ msgid "Or"
506
+ msgstr "或者"
507
+
508
+ #: includes/settings-page.php:599
509
+ msgid "Enter Custom Amount"
510
+ msgstr "输入自选金额"
511
+
512
+ #: includes/settings-page.php:603
513
+ msgid "Submit"
514
+ msgstr "提交"
515
+
516
+ #: includes/settings-page.php:610
517
+ msgid "Translation"
518
+ msgstr "翻译"
519
+
520
+ #: includes/settings-page.php:613
521
+ msgid "The english translation was done by <a href=\"http://www.techotronic.de\">Arne Franken</a>."
522
+ msgstr "The Simplified Chinese translation was done by <a href=\"http://www.yiandya.com\">Lucas</a>."
523
+
524
+ #~ msgid "maxWidth"
525
+ #~ msgstr "Maximum width of an image"
526
+
527
+ #~ msgid "maxHeight"
528
+ #~ msgstr "Maximum height of an image"
529
+
530
+ #~ msgid "width"
531
+ #~ msgstr "Maxinmum width of the Colorbox"
532
+
533
+ #~ msgid "height"
534
+ #~ msgstr "Maximum height of the Colorbox"
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: techotronic
3
  Donate link: http://www.techotronic.de/donate/
4
  Tags: jquery, colorbox, lightbox, images, pictures, photos, gallery, javascript, overlay, nextgen gallery, nextgen-gallery, image, picture, photo, media, slideshow, ngg, mu
5
  Requires at least: 2.8
6
- Tested up to: 3.1
7
- Stable tag: 4.0
8
 
9
  Adds Colorbox/Lightbox functionality to images, grouped by post or page. Works for WordPress and NextGEN galleries. Comes with different themes.
10
 
@@ -15,14 +15,14 @@ jQuery Colorbox features 11 themes from which you can choose. See <a href="http:
15
  Works out-of-the-box with WordPress Galleries and <a href="http://wordpress.org/extend/plugins/nextgen-gallery/">NextGEN Gallery</a>! (choose no effect in NextGEN settings)
16
 
17
  When adding an image to a post or page, usually a thumbnail is inserted and linked to the image in original size.
18
- All images in posts and pages can be displayed in a layer when the thumbnail is clicked.
19
- Images are grouped as galleries when linked in the same post or page. Groups can be displayed in an automatic slideshow.
20
 
21
  Individual images can be excluded by adding a special CSS class.
22
 
23
  jQuery Colorbox can also open linked content (external as well as inline) in a Colorbox.
24
 
25
- See the <a href="http://www.techotronic.de/plugins/jquery-colorbox/">plugin page</a> for demo pages.
26
 
27
  For more information visit the <a href="http://wordpress.org/extend/plugins/jquery-colorbox/faq/">FAQ</a>.
28
  If you have questions or problems, feel free to write an entry at <a href="http://wordpress.org/tags/jquery-colorbox?forum_id=10">the jQuery Colorbox WordPress.org forum</a>
@@ -32,14 +32,17 @@ Localization
32
  * Arabic (ar) by <a href="http://www.photokeens.com">Modar Soos</a>
33
  * Belorussian (be_BY) <a href="http://www.pc.de/">Marcis G.</a>
34
  * Bosnian (bs_BA) by <a href="http://www.vjucon.com/">Vedran Jurincic</a>
 
35
  * Dutch (nl_NL) by <a href="http://nl.linkedin.com/pub/richard-laak/b/b21/672">Richard van Laak</a>
36
  * English (en_EN) by <a href="http://www.techotronic.de/">Arne Franken</a>
37
- * French (fr_FR) by <a href="http://www.tolingo.com/">Tolingo Translations</a>
 
38
  * German (de_DE) by <a href="http://www.techotronic.de/">Arne Franken</a>
39
  * Hebrew (he_IL) by <a href="http://www.TommyGordon.co.il">Tommy Gordon</a>
40
  * Italian (it_IT) by <a href="http://erkinson.altervista.org/">Erkinson</a>
41
  * Latvian (lv) by <a href=\"http://lapuvieta.lv\">Uldis Jansons</a>
42
  * Malay (ms_MY) by <a href="http://www.inisahaini.com">Saha-ini Ahmad Safian</a>
 
43
  * Portuguese (pt_BR) by <a href="http://twitter.com/gervasioantonio">Gervásio Antônio</a>
44
  * Russian (ru_RU) by <a href="http://drive2life.ru">Arkadiy Florinskiy</a>
45
  * Slovak (sk_SK) by <a href="http://itec.sk/">Stefan Stieranka</a>
@@ -50,9 +53,8 @@ Localization
50
 
51
  Is your native language missing? Translating the plugin is easy if you understand english and are fluent in another language. Just send me an email.
52
 
53
- Includes <a href="http://colorpowered.com/colorbox/">ColorBox</a> 1.3.16 jQuery plugin from Jack Moore.
54
- Colorbox is licensed under the <a href="http://www.opensource.org/licenses/mit-license.php">MIT License</a>.
55
- jQuery Colorbox uses the jQuery library version 1.4 bundled with WordPress 3.x. Also works with jQuery 1.3.2 bundled with Wordpress 2.9.
56
  The picture I used for the screenshots was designed by <a href="http://wallpapers.vintage.it/">Davide Vicariotto</a>
57
 
58
  == Installation ==
@@ -161,24 +163,42 @@ Step 8) When you are sure that all translations are working correctly, send the
161
 
162
  * My question isn't answered here. What do I do now?
163
 
164
- Feel free to write an email to blog [at] techotronic.de or open a thread at <a href="http://wordpress.org/tags/jquery-colorbox?forum_id=10">the jQuery Colorbox WordPress.org forum</a>.
165
 
166
  I'll include new FAQs in newer versions.
167
 
168
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
169
  = 4.0 (2011-04-16) =
170
  * CHANGE: Restructured settings page
171
- * CHANGE: plugin again compatible to PHP4.
172
  * CHANGE: Update of Colorbox library to version 1.3.16
173
  * CHANGE: jQuery calls won't break other JavaScript libraries like Prototype or Scriptaculous any more
174
- * NEW: set width and height for Colorbox links once separate from the Colorbox setting for images
175
- * NEW: inline HTML content can now be loaded in the Colorbox.
176
- * NEW: Latvian translation by <a href=\"http://lapuvieta.lv\">Uldis Jansons</a>
177
  * CHANGE: <a href="http://www.photokeens.com">Modar Soos</a> updated the Arabic translation
178
  * CHANGE: <a href="mailto:nettojp@gmail.com">Joao Netto</a> updated the Portuguese translation
179
  * CHANGE: <a href="http://drive2life.ru">Arkadiy Florinskiy</a> updated the Russian translation
180
- * CHANGE: made plugin compatible to the "smugmug" plugin.
181
- * CHANGE: moved Colorbox CSS class add to style dropdown of TinyMCE
182
 
183
  = 3.8.3 (2010-12-24) =
184
  * NEW: Spanish translation by <a href="http://www.redywebs.com/">Inma P.-Zubizarreta</a>
3
  Donate link: http://www.techotronic.de/donate/
4
  Tags: jquery, colorbox, lightbox, images, pictures, photos, gallery, javascript, overlay, nextgen gallery, nextgen-gallery, image, picture, photo, media, slideshow, ngg, mu
5
  Requires at least: 2.8
6
+ Tested up to: 3.2
7
+ Stable tag: 4.1
8
 
9
  Adds Colorbox/Lightbox functionality to images, grouped by post or page. Works for WordPress and NextGEN galleries. Comes with different themes.
10
 
15
  Works out-of-the-box with WordPress Galleries and <a href="http://wordpress.org/extend/plugins/nextgen-gallery/">NextGEN Gallery</a>! (choose no effect in NextGEN settings)
16
 
17
  When adding an image to a post or page, usually a thumbnail is inserted and linked to the image in original size.
18
+ All images in posts and pages can be displayed in a colorbox when the thumbnail is clicked.
19
+ Images are grouped as galleries when linked in the same post or page. Groups can be displayed in a slideshow.
20
 
21
  Individual images can be excluded by adding a special CSS class.
22
 
23
  jQuery Colorbox can also open linked content (external as well as inline) in a Colorbox.
24
 
25
+ Go to the <a href="http://www.techotronic.de/plugins/jquery-colorbox/">plugin page</a> for demo pages.
26
 
27
  For more information visit the <a href="http://wordpress.org/extend/plugins/jquery-colorbox/faq/">FAQ</a>.
28
  If you have questions or problems, feel free to write an entry at <a href="http://wordpress.org/tags/jquery-colorbox?forum_id=10">the jQuery Colorbox WordPress.org forum</a>
32
  * Arabic (ar) by <a href="http://www.photokeens.com">Modar Soos</a>
33
  * Belorussian (be_BY) <a href="http://www.pc.de/">Marcis G.</a>
34
  * Bosnian (bs_BA) by <a href="http://www.vjucon.com/">Vedran Jurincic</a>
35
+ * Simplified Chinese (zh_CN) by <a href="http://tech.yiandya.com/">Lucas Ho</a>
36
  * Dutch (nl_NL) by <a href="http://nl.linkedin.com/pub/richard-laak/b/b21/672">Richard van Laak</a>
37
  * English (en_EN) by <a href="http://www.techotronic.de/">Arne Franken</a>
38
+ * Finnish (fi) by <a href="http://www.merisaari.com/">Lauri Merisaari</a>
39
+ * French (fr_FR) by <a href="http://www.monblogamoua.fr/">Pierre Sudarovich</a>
40
  * German (de_DE) by <a href="http://www.techotronic.de/">Arne Franken</a>
41
  * Hebrew (he_IL) by <a href="http://www.TommyGordon.co.il">Tommy Gordon</a>
42
  * Italian (it_IT) by <a href="http://erkinson.altervista.org/">Erkinson</a>
43
  * Latvian (lv) by <a href=\"http://lapuvieta.lv\">Uldis Jansons</a>
44
  * Malay (ms_MY) by <a href="http://www.inisahaini.com">Saha-ini Ahmad Safian</a>
45
+ * Polish (pl_PL) by <a href="http://positionmaker.pl">Kornel Łysikowski</a>
46
  * Portuguese (pt_BR) by <a href="http://twitter.com/gervasioantonio">Gervásio Antônio</a>
47
  * Russian (ru_RU) by <a href="http://drive2life.ru">Arkadiy Florinskiy</a>
48
  * Slovak (sk_SK) by <a href="http://itec.sk/">Stefan Stieranka</a>
53
 
54
  Is your native language missing? Translating the plugin is easy if you understand english and are fluent in another language. Just send me an email.
55
 
56
+ Credits:
57
+ Includes <a href="http://colorpowered.com/colorbox/">ColorBox</a> 1.3.17.1 jQuery plugin from Jack Moore.
 
58
  The picture I used for the screenshots was designed by <a href="http://wallpapers.vintage.it/">Davide Vicariotto</a>
59
 
60
  == Installation ==
163
 
164
  * My question isn't answered here. What do I do now?
165
 
166
+ Feel free to open a thread at <a href="http://wordpress.org/tags/jquery-colorbox?forum_id=10">the jQuery Colorbox WordPress.org forum</a>.
167
 
168
  I'll include new FAQs in newer versions.
169
 
170
  == Changelog ==
171
+ = 4.1 (2011-06-25) =
172
+ * NEW: Plugin is compatible to WordPress 3.2
173
+ * NEW: Polish translation by <a href="http://positionmaker.pl">Kornel Łysikowski</a>
174
+ * NEW: Finnish translation by <a href="http://www.merisaari.com/">Lauri Merisaari</a>
175
+ * NEW: Simplified Chinese translation by <a href="http://tech.yiandya.com/">Lucas Ho</a>
176
+ * BUGFIX: Plugin will only select links with class "colorbox-link", no other HTML tags.
177
+ * BUGFIX: JavaScript will work with jQuery 1.6 now
178
+ * BUGFIX: loading inline content does not trigger loading an iframe any more.
179
+ * BUGFIX: regex for IMG tag works correctly now.
180
+ * CHANGE: Update of Colorbox library to version 1.3.17.1
181
+ * CHANGE: JavaScript now ignores links that do not have the optional "href" attribute.
182
+ * CHANGE: Links from images to non-images are now opened in a Colorbox.
183
+ * CHANGE: Moved bulk of JavaScript from inline to file, consolidated files
184
+ * CHANGE: Additional option for adding colorbox class to images outside of posts and pages.
185
+ * CHANGE: Major refactoring, hopefully speeds up frontend and backend rendering
186
+ * CHANGE: Render Meta-Tag with plugin version into blog header instead of comments
187
+ * CHANGE: French translation updated by <a href="http://www.monblogamoua.fr/">Pierre Sudarovich</a>
188
+
189
  = 4.0 (2011-04-16) =
190
  * CHANGE: Restructured settings page
191
+ * CHANGE: Plugin again compatible to PHP4.
192
  * CHANGE: Update of Colorbox library to version 1.3.16
193
  * CHANGE: jQuery calls won't break other JavaScript libraries like Prototype or Scriptaculous any more
194
+ * NEW: Set width and height for Colorbox links once separate from the Colorbox setting for images
195
+ * NEW: Inline HTML content can now be loaded in the Colorbox.
196
+ * NEW: Latvian translation by <a href="http://lapuvieta.lv">Uldis Jansons</a>
197
  * CHANGE: <a href="http://www.photokeens.com">Modar Soos</a> updated the Arabic translation
198
  * CHANGE: <a href="mailto:nettojp@gmail.com">Joao Netto</a> updated the Portuguese translation
199
  * CHANGE: <a href="http://drive2life.ru">Arkadiy Florinskiy</a> updated the Russian translation
200
+ * CHANGE: Made plugin compatible to the "smugmug" plugin.
201
+ * CHANGE: Moved Colorbox CSS class add to style dropdown of TinyMCE
202
 
203
  = 3.8.3 (2010-12-24) =
204
  * NEW: Spanish translation by <a href="http://www.redywebs.com/">Inma P.-Zubizarreta</a>