Crop-Thumbnails - Version 0.10.0

Version Description

  • refactoring some parts of the code to make it more modular
  • adding a cache breaker to the backend, so in post-view and mediathek the image should be refreshed after the modal-dialog closes
  • provide a javascript-event ('cropThumbnailModalClosed') after the modal is closed (see F.A.Q. for details)
  • provide the human-readable Name of the Crop-Size (if available), using the "image_size_names_choose" filter
  • provide some size settings for the modal-dialog - via filter "crop_thumbnails_modal_window_settings"
  • mini language update
Download this release

Release Info

Developer Volkmar Kantor
Plugin Icon Crop-Thumbnails
Version 0.10.0
Comparing to
See all releases

Code changes from version 0.9.0 to 0.10.0

crop-thumbnails.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin URI: http://wordpress.org/extend/plugins/crop-thumbnails/
5
  * Author: Volkmar Kantor
6
  * Author URI: http://www.totalmedial.de
7
- * Version: 0.9.0
8
  * Description: Crop your thumbnails, the easy way.
9
  *
10
  * License: GPL v3
@@ -26,7 +26,7 @@
26
 
27
  //cpt - stands for crop-post-thumbnail
28
  define('CROP_THUMBS_LANG','cpt_lang');
29
- define('CROP_THUMBS_VERSION','0.9.0');
30
 
31
  function cpt_plugin_init() {
32
  load_plugin_textdomain( CROP_THUMBS_LANG, false, dirname( plugin_basename( __FILE__ ) ) . '/lang/' );
@@ -46,5 +46,6 @@ function cptGetWpVersion() {
46
 
47
  include_once(dirname(__FILE__).'/functions/settings.php');
48
  include_once(dirname(__FILE__).'/functions/editor.php');
 
49
  include_once(dirname(__FILE__).'/functions/save.php');
50
  ?>
4
  * Plugin URI: http://wordpress.org/extend/plugins/crop-thumbnails/
5
  * Author: Volkmar Kantor
6
  * Author URI: http://www.totalmedial.de
7
+ * Version: 0.10.0
8
  * Description: Crop your thumbnails, the easy way.
9
  *
10
  * License: GPL v3
26
 
27
  //cpt - stands for crop-post-thumbnail
28
  define('CROP_THUMBS_LANG','cpt_lang');
29
+ define('CROP_THUMBS_VERSION','0.10.0');
30
 
31
  function cpt_plugin_init() {
32
  load_plugin_textdomain( CROP_THUMBS_LANG, false, dirname( plugin_basename( __FILE__ ) ) . '/lang/' );
46
 
47
  include_once(dirname(__FILE__).'/functions/settings.php');
48
  include_once(dirname(__FILE__).'/functions/editor.php');
49
+ include_once(dirname(__FILE__).'/functions/backendpreparer.php');
50
  include_once(dirname(__FILE__).'/functions/save.php');
51
  ?>
css/cpt-window.css CHANGED
@@ -16,6 +16,7 @@
16
  .thumbnail-list li.active { background-color:#aad6f4; border:1px solid #aad6f4; }
17
  .thumbnail-list li span { display:block; font-size:0.8em; }
18
  .thumbnail-list li img { max-width:100%; height: auto; max-height:250px;}
 
19
  .thumbnail-list li .lowResWarning,
20
  .thumbnail-list li .badParameterWarning { font-style: italic; color:#990000;}
21
 
16
  .thumbnail-list li.active { background-color:#aad6f4; border:1px solid #aad6f4; }
17
  .thumbnail-list li span { display:block; font-size:0.8em; }
18
  .thumbnail-list li img { max-width:100%; height: auto; max-height:250px;}
19
+ .thumbnail-list li h3 { font-size:1em; }
20
  .thumbnail-list li .lowResWarning,
21
  .thumbnail-list li .badParameterWarning { font-style: italic; color:#990000;}
22
 
functions/backendpreparer.php ADDED
@@ -0,0 +1,268 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class CropPostThumbnailsBackendPreparer {
3
+
4
+ private $allowedMime = array('image/jpeg','image/png');
5
+
6
+ function __construct() {
7
+ if ( is_admin() ) {
8
+ //add style and javascript
9
+ add_action( 'admin_print_styles', array(&$this, 'adminHeaderCSS') );
10
+ add_action( 'admin_print_scripts', array(&$this, 'adminHeaderJS') );
11
+
12
+ add_filter( 'attachment_fields_to_edit', array($this,'add_button_to_attachment_edit_view'), 10, 2 );
13
+ }
14
+ }
15
+ /**
16
+ * For adding the "thickbox"-style in the mediathek
17
+ */
18
+ function adminHeaderCSS() {
19
+ global $pagenow;
20
+ if ( $pagenow == 'post.php'
21
+ || $pagenow == 'post-new.php'
22
+ || $pagenow == 'page.php'
23
+ || $pagenow == 'page-new.php'
24
+ || $pagenow == 'upload.php') {
25
+ wp_enqueue_style("wp-jquery-ui-dialog");
26
+ wp_enqueue_style('crop-thumbnails-options-style',plugins_url('css/options.css',dirname(__FILE__)));
27
+ }
28
+ }
29
+
30
+ /**
31
+ * For adding the "crop-thumbnail"-link on posts, pages and the mediathek
32
+ */
33
+ function adminHeaderJS() {
34
+ global $pagenow;
35
+ if ( $pagenow == 'post.php'
36
+ || $pagenow == 'post-new.php'
37
+ || $pagenow == 'page.php'
38
+ || $pagenow == 'page-new.php'
39
+ || $pagenow == 'upload.php') {
40
+
41
+ wp_enqueue_script('jquery-ui-dialog');
42
+ add_action('admin_footer',array($this,'addLinksToAdmin'));
43
+ }
44
+ }
45
+
46
+ /**
47
+ * adds the links into post-types and the media-library
48
+ */
49
+ function addLinksToAdmin() {
50
+
51
+ ?>
52
+ <script type="text/javascript">
53
+ jQuery(document).ready(function($) {
54
+ /**
55
+ * Provide a global accessable cache-break-function (only available on backend-pages where crop-thumbnail is active --> post-editor, mediathek)
56
+ * Calling this function will add a timestamp on the provided Image-Element.
57
+ * ATTENTION: using this will also delete all other parameters on the images src-attribute.
58
+ * @param {dom-element / jquery-selection} elem
59
+ */
60
+ CROP_THUMBNAILS_DO_CACHE_BREAK = function(elem) {
61
+ var images = $(elem);
62
+ for(var i = 0; i<images.length; i++) {
63
+ var img = $(images[i]);//select image
64
+ var imageUrl = img.attr('src');
65
+ var imageUrlArray = imageUrl.split("?");
66
+
67
+ img.attr('src',imageUrlArray[0]+'?&cacheBreak='+(new Date()).getTime());
68
+ }
69
+ };
70
+
71
+ /** add link on posts and pages **/
72
+ if ($('body.post-php, body.page-php, body.page-new.php, body.post-new-php').length > 0) {
73
+ var post_id_hidden = $('form#post #post_ID');
74
+ if (post_id_hidden) {
75
+
76
+ post_id_hidden = parseInt(post_id_hidden.val());
77
+
78
+ /**
79
+ * add link on top of editor *
80
+ */
81
+ var buttonContent = '';
82
+ buttonContent+= '<a ';
83
+ buttonContent+= 'class="button cropThumbnailBox" href="#" data-cropthumbnail=\'{"post_id":'+ post_id_hidden +'}\' ';
84
+ buttonContent+= 'title="<?php esc_attr_e('Crop Thumbnails',CROP_THUMBS_LANG) ?>"';
85
+ buttonContent+= '>';
86
+ buttonContent+= '<span class="dashicons dashicons-image-crop" style="color:#82878C;font-size: 14px;vertical-align: middle;"></span>';
87
+ buttonContent+= '<?php esc_html_e('Crop Thumbnails',CROP_THUMBS_LANG); ?>';
88
+ buttonContent+= '</a>';
89
+ $('#wp-content-media-buttons').append(buttonContent);
90
+
91
+
92
+ /**
93
+ * add link to featured image box *
94
+ */
95
+ buttonContent = '';
96
+ buttonContent+= '<a ';
97
+ buttonContent+= 'class="button cropThumbnailBox" href="#" data-cropthumbnail=\'{"image_by_post_id":'+ post_id_hidden +',"viewmode":"single"}\' ';
98
+ buttonContent+= 'title="<?php esc_attr_e('Crop Featured Image',CROP_THUMBS_LANG) ?>"';
99
+ buttonContent+= '>';
100
+ buttonContent+= '<span class="dashicons dashicons-image-crop" style="color:#82878C;font-size: 14px;vertical-align: middle;"></span>';
101
+ buttonContent+= '<?php esc_html_e('Crop Featured Image',CROP_THUMBS_LANG); ?>';
102
+ buttonContent+= '</a>';
103
+
104
+
105
+ var featuredImageLink = $(buttonContent).css({'margin':'5px', 'padding':'5px','display':'inline-block','line-height':'1.2'});
106
+ $('#postimagediv .inside').after(featuredImageLink);
107
+
108
+
109
+ $('body').on('cropThumbnailModalClosed',function() {
110
+ //lets cache-break the crop-thumbnail-preview-box
111
+ CROP_THUMBNAILS_DO_CACHE_BREAK($('#postimagediv img'));
112
+ });
113
+ }
114
+ }
115
+
116
+ /** add link on mediathek **/
117
+ if ($('body.upload-php').length > 0) {
118
+ $('#the-list tr').each(function() {
119
+ if ($(this).find('td span.media-icon').hasClass('image-icon')) {
120
+ var post_id = parseInt($(this).attr('id').substr(5));
121
+ var last_span = $(this).find('.column-title .row-actions span:last-child');
122
+ last_span.append(' | ');
123
+
124
+ var buttonContent = '';
125
+ buttonContent+= '<a ';
126
+ buttonContent+= 'class="cropThumbnailBox" href="#" data-cropthumbnail=\'{"image_id":'+ post_id +',"viewmode":"single"}\' ';
127
+ buttonContent+= 'title="<?php esc_attr_e('Crop Thumbnail',CROP_THUMBS_LANG) ?>"';
128
+ buttonContent+= '>';
129
+ buttonContent+= '<span class="dashicons dashicons-image-crop" style="color:#82878C;font-size: 14px;vertical-align: middle;"></span>';
130
+ buttonContent+= '<?php esc_html_e('Crop Thumbnail',CROP_THUMBS_LANG); ?>';
131
+ buttonContent+= '</a>';
132
+
133
+
134
+ last_span.parent().append( buttonContent);
135
+ }
136
+ });
137
+ $('body').on('cropThumbnailModalClosed',function() {
138
+ //lets cache-break the crop-thumbnail-preview-box
139
+ CROP_THUMBNAILS_DO_CACHE_BREAK($('#the-list tr .media-icon img'));
140
+ });
141
+ }
142
+
143
+ /**
144
+ * Create Listener for click-events with element-class ".cropThumbnailBox".
145
+ * Open the modal box.
146
+ */
147
+ $(document).on('click', '.cropThumbnailBox', function(e) {
148
+ e.preventDefault();
149
+
150
+ <?php
151
+ /*****************************************************************************/
152
+ /**
153
+ * Theme-Developers can adjust the size of the modal-dialog via filter.
154
+ */
155
+ $modal_window_settings = array(
156
+ 'limitToWidth' => 800, //thats the maximum width the modal can be. On small screens it will be smaller (see offsets), set to FALSE if you want no limit
157
+ 'maxWidthOffset' => 50, //window-width minus "width_offset" equals modal-width
158
+ 'maxHeightOffset' => 100, //window-width minus "height_offset" equals modal-height
159
+ );
160
+ $modal_window_settings = apply_filters('crop_thumbnails_modal_window_settings',$modal_window_settings);
161
+
162
+ $jsLimitOutput = '';
163
+ if($modal_window_settings['limitToWidth']!==false) {
164
+ $value = abs(intval($modal_window_settings['limitToWidth']));
165
+
166
+ $jsLimitOutput.= 'if(boxViewportWidth>'.$value.') { boxViewportWidth = '.$value.'; }';
167
+ }
168
+ /*****************************************************************************/
169
+ ?>
170
+
171
+ //modal-box dimensions (will not adjust on viewport change)
172
+ var boxViewportHeight = $(window).height() - <?php echo abs(intval($modal_window_settings['maxHeightOffset'])); ?>;
173
+ var boxViewportWidth = window.outerWidth - <?php echo abs(intval($modal_window_settings['maxWidthOffset'])); ?>;
174
+
175
+ <?php echo $jsLimitOutput; ?>
176
+
177
+
178
+
179
+ //get the data from the link
180
+ var data = $(this).data('cropthumbnail');
181
+
182
+ //construct the thickbox-parameter
183
+ var url = ajaxurl+'?action=croppostthumb_ajax';
184
+ for(var v in data) {
185
+ url+='&amp;'+v+'='+data[v];
186
+ }
187
+
188
+ var content = $('<div><iframe src="'+url+'"></iframe></div>');
189
+ var overlay;
190
+ var isModalClassInitialSet = $('body').hasClass('modal-open');
191
+ content.dialog({
192
+ dialogClass : 'cropThumbnailModal',
193
+ modal : true,
194
+ title : $(this).attr('title'),
195
+ resizable : false,
196
+ draggable : false,
197
+ autoOpen : false,
198
+ closeOnEscape : true,
199
+ height : boxViewportHeight,
200
+ width : boxViewportWidth,
201
+ close : function(event, ui ) {
202
+ if(overlay!==undefined) {
203
+ overlay.unbind('click');
204
+ }
205
+
206
+ //remove modal-open class (disable the scrollbars)
207
+ if(!isModalClassInitialSet) {
208
+ $('body').removeClass('modal-open');
209
+ }
210
+ $(this).dialog('destroy');
211
+
212
+ /**
213
+ * We will trigger that the modal of the crop thumbnail is closed.
214
+ * So everyone that is up to, could build a cache-breaker on their images.
215
+ * HOW-TO cache-break:
216
+ * $('body').on('cropThumbnailModalClosed',function() {
217
+ * CROP_THUMBNAILS_DO_CACHE_BREAK( $('.your-image-selector') );
218
+ * });
219
+ */
220
+ $('body').trigger('cropThumbnailModalClosed');
221
+ },
222
+ open : function(event, ui) {
223
+ overlay = $('.ui-widget-overlay.ui-front');
224
+ overlay.click(function() {
225
+ content.dialog('close');
226
+ });
227
+
228
+ //add body class (disable the scrollbars)
229
+ $('body').addClass('modal-open');
230
+
231
+ //correct the z-index
232
+ $('.cropThumbnailModal').css('z-index','999999');
233
+ overlay.css('z-index','999998');
234
+ }
235
+ })
236
+ .dialog('open');
237
+ });
238
+ });
239
+ </script>
240
+ <?php
241
+ }
242
+
243
+ /**
244
+ * Add an field to the attachment edit dialog
245
+ * @see http://code.tutsplus.com/tutorials/creating-custom-fields-for-attachments-in-wordpress--net-13076
246
+ * @see https://make.wordpress.org/core/2012/12/12/attachment-editing-now-with-full-post-edit-ui/
247
+ * @param array $form_fields
248
+ * @param object $post
249
+ */
250
+ public function add_button_to_attachment_edit_view( $form_fields, $post ) {
251
+
252
+ if(in_array($post->post_mime_type,$this->allowedMime)) {
253
+ $html = '';
254
+ $html.= '<a class="button cropThumbnailBox" href="#" data-cropthumbnail=\'{"image_id":'.$post->ID.',"viewmode":"single"}\' ';
255
+ $html.= 'title="'.esc_attr__('Crop Thumbnail',CROP_THUMBS_LANG).'">';
256
+ $html.= '<span class="dashicons dashicons-image-crop" style="color:#82878C;font-size: 14px;vertical-align: middle;"></span>'.esc_html__('Crop Thumbnail',CROP_THUMBS_LANG);
257
+ $html.= '</a>';
258
+
259
+ $form_fields['cropthumbnails'] = array(
260
+ 'label' => '<small>Crop Thumbnails</small>',//no i18n cause it should be obvious what plugin is used here
261
+ 'input' => 'html',
262
+ 'html' => $html
263
+ );
264
+ }
265
+ return $form_fields;
266
+ }
267
+ }
268
+ $cpt_postView = new CropPostThumbnailsBackendPreparer();
functions/editor.php CHANGED
@@ -1,4 +1,8 @@
1
  <?php
 
 
 
 
2
  class CropPostThumbnailsEditor {
3
 
4
  private $debugOutput = '';
@@ -6,14 +10,6 @@ class CropPostThumbnailsEditor {
6
  private $allowedMime = array('image/jpeg','image/png');
7
 
8
  function __construct() {
9
- if ( is_admin() ) {
10
- //add style and javascript
11
- add_action( 'admin_print_styles', array(&$this, 'adminHeaderCSS') );
12
- add_action( 'admin_print_scripts', array(&$this, 'adminHeaderJS') );
13
-
14
- add_filter( 'attachment_fields_to_edit', array($this,'add_button_to_attachment_edit_view'), 10, 2 );
15
- }
16
-
17
  /* for the html inside the thickbox */
18
  add_action('wp_ajax_croppostthumb_ajax', array($this,'ajaxWindow'));
19
  }
@@ -290,13 +286,13 @@ jQuery(document).ready(function($) {
290
  $_lowResWarning = ' <span class="lowResWarning">'.__('Original image to small for good crop-quality!',CROP_THUMBS_LANG).'</span>';
291
  }
292
 
293
- ?>
294
- <li rel="<?php echo $print_ratio; ?>">
295
- <strong><?php echo $img_size_name.$_lowResWarning; ?></strong><?php echo $special_warning; ?>
296
- <span class="dimensions"><?php _e('Dimensions:',CROP_THUMBS_LANG) ?> <?php echo $print_dimensions; ?></span>
297
- <span class="ratio"><?php _e('Ratio:',CROP_THUMBS_LANG) ?> <?php echo $print_ratio; ?></span>
298
- <img src="<?php echo $img_data[0]?>?<?php echo $cache_breaker ?>" data-values='{"name":"<?php echo $img_size_name; ?>","width":<?php echo $value['width']; ?>,"height":<?php echo $value['height']; ?>,"ratio":<?php echo number_format($ratio, 13, '.', ''); ?>,"crop":<?php echo $crop ?>}' />
299
- </li>
300
  <?php endif; ?>
301
  <?php endforeach; ?>
302
  </ul>
@@ -418,38 +414,6 @@ jQuery(document).ready(function($) {
418
  return $return;
419
  }
420
 
421
- /**
422
- * For adding the "thickbox"-style in the mediathek
423
- */
424
- function adminHeaderCSS() {
425
- global $pagenow;
426
- if ( $pagenow == 'post.php'
427
- || $pagenow == 'post-new.php'
428
- || $pagenow == 'page.php'
429
- || $pagenow == 'page-new.php'
430
- || $pagenow == 'upload.php') {
431
- wp_enqueue_style("wp-jquery-ui-dialog");
432
- wp_enqueue_style('crop-thumbnails-options-style',plugins_url('css/options.css',dirname(__FILE__)));
433
- }
434
- }
435
-
436
-
437
- /**
438
- * For adding the "crop-thumbnail"-link on posts, pages and the mediathek
439
- */
440
- function adminHeaderJS() {
441
- global $pagenow;
442
- if ( $pagenow == 'post.php'
443
- || $pagenow == 'post-new.php'
444
- || $pagenow == 'page.php'
445
- || $pagenow == 'page-new.php'
446
- || $pagenow == 'upload.php') {
447
-
448
- wp_enqueue_script('jquery-ui-dialog');
449
- add_action('admin_footer',array($this,'addLinksToAdmin'));
450
- }
451
- }
452
-
453
 
454
  /**
455
  * This is for use inside the plugin only.
@@ -495,173 +459,8 @@ jQuery(document).ready(function($) {
495
  }
496
  return '';
497
  }
498
-
499
-
500
- /**
501
- * adds the links into post-types and the media-library
502
- */
503
- function addLinksToAdmin() {
504
-
505
- ?>
506
- <script type="text/javascript">
507
- jQuery(document).ready(function($) {
508
- //add link on posts and pages
509
- if ($('body.post-php, body.page-php, body.page-new.php, body.post-new-php').length > 0) {
510
- var post_id_hidden = $('form#post #post_ID');
511
- if (post_id_hidden) {
512
-
513
- post_id_hidden = parseInt(post_id_hidden.val());
514
-
515
- /**
516
- * add link on top of editor *
517
- */
518
- var buttonContent = '';
519
- buttonContent+= '<a ';
520
- buttonContent+= 'class="button cropThumbnailBox" href="#" data-cropthumbnail=\'{"post_id":'+ post_id_hidden +'}\' ';
521
- buttonContent+= 'title="<?php esc_attr_e('Crop Thumbnails',CROP_THUMBS_LANG) ?>"';
522
- buttonContent+= '>';
523
- buttonContent+= '<span class="dashicons dashicons-image-crop" style="color:#82878C;font-size: 14px;vertical-align: middle;"></span>';
524
- buttonContent+= '<?php esc_html_e('Crop Thumbnails',CROP_THUMBS_LANG); ?>';
525
- buttonContent+= '</a>';
526
- $('#wp-content-media-buttons').append(buttonContent);
527
-
528
-
529
- /**
530
- * add link to featured image box *
531
- */
532
- buttonContent = '';
533
- buttonContent+= '<a ';
534
- buttonContent+= 'class="button cropThumbnailBox" href="#" data-cropthumbnail=\'{"image_by_post_id":'+ post_id_hidden +',"viewmode":"single"}\' ';
535
- buttonContent+= 'title="<?php esc_attr_e('Crop Featured Image',CROP_THUMBS_LANG) ?>"';
536
- buttonContent+= '>';
537
- buttonContent+= '<span class="dashicons dashicons-image-crop" style="color:#82878C;font-size: 14px;vertical-align: middle;"></span>';
538
- buttonContent+= '<?php esc_html_e('Crop Featured Image',CROP_THUMBS_LANG); ?>';
539
- buttonContent+= '</a>';
540
-
541
-
542
- var featuredImageLink = $(buttonContent).css({'margin':'5px', 'padding':'5px','display':'inline-block','line-height':'1.2'});
543
- $('#postimagediv .inside').after(featuredImageLink);
544
- }
545
- }
546
-
547
- /** add link on mediathek **/
548
- if ($('body.upload-php').length > 0) {
549
- $('#the-list tr').each(function() {
550
- if ($(this).find('td span.media-icon').hasClass('image-icon')) {
551
- var post_id = parseInt($(this).attr('id').substr(5));
552
- var last_span = $(this).find('.column-title .row-actions span:last-child');
553
- last_span.append(' | ');
554
-
555
- var buttonContent = '';
556
- buttonContent+= '<a ';
557
- buttonContent+= 'class="cropThumbnailBox" href="#" data-cropthumbnail=\'{"image_id":'+ post_id +',"viewmode":"single"}\' ';
558
- buttonContent+= 'title="<?php esc_attr_e('Crop Thumbnail',CROP_THUMBS_LANG) ?>"';
559
- buttonContent+= '>';
560
- buttonContent+= '<span class="dashicons dashicons-image-crop" style="color:#82878C;font-size: 14px;vertical-align: middle;"></span>';
561
- buttonContent+= '<?php esc_html_e('Crop Thumbnail',CROP_THUMBS_LANG); ?>';
562
- buttonContent+= '</a>';
563
-
564
-
565
- last_span.parent().append( buttonContent);
566
- }
567
- });
568
- }
569
-
570
- /**
571
- * Create Listener for click-events with element-class ".cropThumbnailBox".
572
- * Open the modal box.
573
- */
574
- $(document).on('click', '.cropThumbnailBox', function(e) {
575
- e.preventDefault();
576
-
577
- //modal-box dimensions (will not adjust on viewport change)
578
- var boxViewportHeight = $(window).height() - 100;
579
- var boxViewportWidth = $(window).width() - 50;
580
- if(boxViewportWidth>800) {//do not want to have width bigger than 800 - maybe later, if i have refined the reponsive design
581
- boxViewportWidth = 800;
582
- }
583
-
584
- //get the data from the link
585
- var data = $(this).data('cropthumbnail');
586
-
587
- //construct the thickbox-parameter
588
- var url = ajaxurl+'?action=croppostthumb_ajax';
589
- for(var v in data) {
590
- url+='&amp;'+v+'='+data[v];
591
- }
592
-
593
- var content = $('<div><iframe src="'+url+'"></iframe></div>');
594
- var overlay;
595
- var isModalClassInitialSet = $('body').hasClass('modal-open');
596
- content.dialog({
597
- 'dialogClass' : 'cropThumbnailModal',
598
- 'modal' : true,
599
- 'title' : $(this).attr('title'),
600
- 'resizable' : false,
601
- 'draggable' : false,
602
- 'autoOpen' : false,
603
- 'closeOnEscape' : true,
604
- 'height' : boxViewportHeight,
605
- 'width' : boxViewportWidth,
606
- close : function(event, ui ) {
607
- if(overlay!==undefined) {
608
- overlay.unbind('click');
609
- }
610
-
611
- //remove modal-open class (disable the scrollbars)
612
- if(!isModalClassInitialSet) {
613
- $('body').removeClass('modal-open');
614
- }
615
- $(this).dialog('destroy');
616
- },
617
- open : function(event, ui) {
618
- overlay = $('.ui-widget-overlay.ui-front');
619
- overlay.click(function() {
620
- content.dialog('close');
621
- });
622
-
623
- //add body class (disable the scrollbars)
624
- $('body').addClass('modal-open');
625
-
626
- //correct the z-index
627
- $('.cropThumbnailModal').css('z-index','999999');
628
- overlay.css('z-index','999998');
629
- }
630
- })
631
- .dialog('open');
632
- });
633
- });
634
- </script>
635
- <?php
636
- }
637
-
638
- /**
639
- * Add an field to the attachment edit dialog
640
- * @see http://code.tutsplus.com/tutorials/creating-custom-fields-for-attachments-in-wordpress--net-13076
641
- * @see https://make.wordpress.org/core/2012/12/12/attachment-editing-now-with-full-post-edit-ui/
642
- * @param array $form_fields
643
- * @param object $post
644
- */
645
- public function add_button_to_attachment_edit_view( $form_fields, $post ) {
646
-
647
- if(in_array($post->post_mime_type,$this->allowedMime)) {
648
- $html = '';
649
- $html.= '<a class="button cropThumbnailBox" href="#" data-cropthumbnail=\'{"image_id":'.$post->ID.',"viewmode":"single"}\' ';
650
- $html.= 'title="'.esc_attr__('Crop Thumbnail',CROP_THUMBS_LANG).'">';
651
- $html.= '<span class="dashicons dashicons-image-crop" style="color:#82878C;font-size: 14px;vertical-align: middle;"></span>'.esc_html__('Crop Thumbnail',CROP_THUMBS_LANG);
652
- $html.= '</a>';
653
-
654
- $form_fields['cropthumbnails'] = array(
655
- 'label' => '<small>Crop Thumbnails</small>',//no i18n cause it should be obvious what plugin is used here
656
- 'input' => 'html',
657
- 'html' => $html
658
- );
659
- }
660
- return $form_fields;
661
- }
662
  }
663
 
664
 
665
 
666
  $cpte = new CropPostThumbnailsEditor();
667
- ?>
1
  <?php
2
+
3
+ /**
4
+ * Contains all code inside the croping-window
5
+ */
6
  class CropPostThumbnailsEditor {
7
 
8
  private $debugOutput = '';
10
  private $allowedMime = array('image/jpeg','image/png');
11
 
12
  function __construct() {
 
 
 
 
 
 
 
 
13
  /* for the html inside the thickbox */
14
  add_action('wp_ajax_croppostthumb_ajax', array($this,'ajaxWindow'));
15
  }
286
  $_lowResWarning = ' <span class="lowResWarning">'.__('Original image to small for good crop-quality!',CROP_THUMBS_LANG).'</span>';
287
  }
288
 
289
+ ?>
290
+ <li rel="<?php echo $print_ratio; ?>">
291
+ <strong title="<?php esc_attr_e($img_size_name) ?>"><?php echo $value['name'] ?><?php echo $_lowResWarning; ?></strong><?php echo $special_warning; ?>
292
+ <span class="dimensions"><?php _e('Dimensions:',CROP_THUMBS_LANG) ?> <?php echo $print_dimensions; ?></span>
293
+ <span class="ratio"><?php _e('Ratio:',CROP_THUMBS_LANG) ?> <?php echo $print_ratio; ?></span>
294
+ <img src="<?php echo $img_data[0]?>?<?php echo $cache_breaker ?>" data-values='{"name":"<?php echo $img_size_name; ?>","width":<?php echo $value['width']; ?>,"height":<?php echo $value['height']; ?>,"ratio":<?php echo number_format($ratio, 13, '.', ''); ?>,"crop":<?php echo $crop ?>}' />
295
+ </li>
296
  <?php endif; ?>
297
  <?php endforeach; ?>
298
  </ul>
414
  return $return;
415
  }
416
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
417
 
418
  /**
419
  * This is for use inside the plugin only.
459
  }
460
  return '';
461
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
462
  }
463
 
464
 
465
 
466
  $cpte = new CropPostThumbnailsEditor();
 
functions/settings.php CHANGED
@@ -241,13 +241,19 @@ class CropThumbnailsSettings {
241
  * array[<sizename>]['height'] = int
242
  * array[<sizename>]['width'] = int
243
  * array[<sizename>]['crop'] = boolean
 
244
  * </pre>
245
  */
246
  function getImageSizes() {
247
  global $_wp_additional_image_sizes;//array with the available image sizes
248
- $tmp_sizes = get_intermediate_image_sizes();
 
 
 
 
 
249
  $sizes = array();
250
- foreach( $tmp_sizes as $_size ) {
251
 
252
  if ( in_array( $_size, array( 'thumbnail', 'medium', 'large' ) ) ) {
253
  $sizes[ $_size ]['width'] = intval(get_option( $_size . '_size_w' ));
@@ -260,6 +266,7 @@ class CropThumbnailsSettings {
260
  'crop' => (bool) $_wp_additional_image_sizes[ $_size ]['crop']
261
  );
262
  }
 
263
  }
264
  return $sizes;
265
  }
241
  * array[<sizename>]['height'] = int
242
  * array[<sizename>]['width'] = int
243
  * array[<sizename>]['crop'] = boolean
244
+ * array[<sizename>]['name'] = string --> readable name if provided in "image_size_names_choose", else sizename
245
  * </pre>
246
  */
247
  function getImageSizes() {
248
  global $_wp_additional_image_sizes;//array with the available image sizes
249
+ $tmp_sizes = array_flip(get_intermediate_image_sizes());
250
+ foreach($tmp_sizes as $key=>$value) {
251
+ $tmp_sizes[$key] = $key;
252
+ }
253
+ $tmp_sizes = apply_filters( 'image_size_names_choose', $tmp_sizes );
254
+
255
  $sizes = array();
256
+ foreach( $tmp_sizes as $_size=>$theName ) {
257
 
258
  if ( in_array( $_size, array( 'thumbnail', 'medium', 'large' ) ) ) {
259
  $sizes[ $_size ]['width'] = intval(get_option( $_size . '_size_w' ));
266
  'crop' => (bool) $_wp_additional_image_sizes[ $_size ]['crop']
267
  );
268
  }
269
+ $sizes[ $_size ]['name'] = $theName;
270
  }
271
  return $sizes;
272
  }
lang/cpt_lang-de_DE.mo CHANGED
Binary file
lang/cpt_lang-de_DE.po CHANGED
@@ -1,315 +1,316 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Crop-Post-Thumbnails\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-10-08 00:31+0100\n"
6
- "PO-Revision-Date: 2013-10-08 00:33+0100\n"
7
- "Last-Translator: Volkmar Kantor <volkmar.kantor@gmx.de>\n"
8
- "Language-Team: \n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-KeywordsList: __;_e;esc_attr_e;esc_html_e;esc_html__\n"
13
- "X-Poedit-Basepath: .\n"
14
- "X-Generator: Poedit 1.5.4\n"
15
- "X-Poedit-SearchPath-0: ..\n"
16
-
17
- #: ../crop-thumbnails.php:34
18
- msgid "Crop your thumbnails, the easy way."
19
- msgstr "Zuschnitt ihrer Artikelbilder - einfach gemacht."
20
-
21
- #: ../functions/editor.php:25
22
- msgid "You are not allowed to do this."
23
- msgstr "Sie haben keine Rechte diese Aktion auszuführen."
24
-
25
- #: ../functions/editor.php:41
26
- msgid "No featured Image set for this post until now."
27
- msgstr "Bisher ist kein Artikelbild gesetzt worden."
28
-
29
- #: ../functions/editor.php:45
30
- msgid "An error happend!"
31
- msgstr "Es ist ein Fehler aufgetretten!"
32
-
33
- #: ../functions/editor.php:78 ../functions/editor.php:204
34
- msgid "Cropping is disabled for this post-type."
35
- msgstr "Das Zuschneiden ist für diesen Eintragstyp deaktiviert."
36
-
37
- #: ../functions/editor.php:80
38
- msgid "No images in this post yet. You have to upload some via upload dialog."
39
- msgstr "Zu diesem Eintrag wurden bisher keine Bilder hinzugefügt."
40
-
41
- #: ../functions/editor.php:101
42
- msgid "Choose the image you want to crop."
43
- msgstr "Wählen Sie das Bild aus, das Sie zuschneiden wollen."
44
-
45
- #: ../functions/editor.php:107
46
- msgid "Post Thumbnail"
47
- msgstr "Artikel-Vorschaubild"
48
-
49
- #: ../functions/editor.php:107
50
- #, php-format
51
- msgid "Image %d"
52
- msgstr "Bild %d"
53
-
54
- #: ../functions/editor.php:180
55
- msgid "bug - this case shouldnt be happend"
56
- msgstr ""
57
- "BUG - dieser Fall hätte nie eintretten drüfen - Plugin-Autor benachrichtigen."
58
-
59
- #: ../functions/editor.php:181
60
- msgid ""
61
- "Warning: the original image is to small to be cropped in good quality with "
62
- "this thumbnail-size."
63
- msgstr ""
64
- "Warung: das Original-Bild ist zu klein um für diese Thumbnail-Größe es in "
65
- "guter Qualität zuzuschneiden."
66
-
67
- #: ../functions/editor.php:182
68
- msgid "First, select one image. Then, click once again."
69
- msgstr "Erst ein Bild auswählen, danach erneut probieren."
70
-
71
- #: ../functions/editor.php:209
72
- msgid "back to image-list"
73
- msgstr "Zurück zur Bild-Übersicht"
74
-
75
- #: ../functions/editor.php:210
76
- msgid "Please wait until the Images are cropped."
77
- msgstr "Bitte warten Sie bis die Bilder zugeschnitten wurden."
78
-
79
- #: ../functions/editor.php:213
80
- msgid "Raw"
81
- msgstr "Original-Bild"
82
-
83
- #: ../functions/editor.php:213 ../functions/editor.php:279
84
- msgid "pixel"
85
- msgstr "Pixel"
86
-
87
- #: ../functions/editor.php:215
88
- msgid "save crop"
89
- msgstr "Zuschnitt übernehmen"
90
-
91
- #: ../functions/editor.php:216
92
- msgid "Quick-Instructions"
93
- msgstr "Schnell-Anleitung"
94
-
95
- #: ../functions/editor.php:218
96
- msgid "Step 1: Choose an image from the right."
97
- msgstr "Schritt 1: Wählen Sie ein Bild von der rechten Seite."
98
-
99
- #: ../functions/editor.php:219
100
- msgid ""
101
- "Step 2: Use the mouse change the size of the rectangle on the image above."
102
- msgstr ""
103
- "Schritt 2: Benutzen Sie die Maus um die Größe des Rechtecks im oberen Bild "
104
- "zu ändern."
105
-
106
- #: ../functions/editor.php:220
107
- msgid "Step 3: Click on \"save crop\"."
108
- msgstr "Schritt 3: Klicken Sie auf \"Zuschnitt übernehmen\"."
109
-
110
- #: ../functions/editor.php:225
111
- msgid "select images with same ratio at once"
112
- msgstr "bei gleichem Seitenverhältnis gemeinsam auswählen"
113
-
114
- #: ../functions/editor.php:226
115
- msgid "deselect all"
116
- msgstr "nichts auswählen"
117
-
118
- #: ../functions/editor.php:262
119
- msgid "cropped"
120
- msgstr "zugeschnitten"
121
-
122
- #: ../functions/editor.php:271
123
- msgid "maximum"
124
- msgstr "Maximum"
125
-
126
- #: ../functions/editor.php:286
127
- msgid "Original image to small for good crop-quality!"
128
- msgstr "Original-Bild ist zu klein für guten Bildzuschnitt!"
129
-
130
- #: ../functions/editor.php:292
131
- msgid "Dimensions:"
132
- msgstr "Größe:"
133
-
134
- #: ../functions/editor.php:293
135
- msgid "Ratio:"
136
- msgstr "Seitenverhältnis:"
137
-
138
- #: ../functions/editor.php:499
139
- msgid "Crop Thumbnails"
140
- msgstr "Bilder Zuschneiden"
141
-
142
- #: ../functions/editor.php:503
143
- msgid "Crop Featured Image"
144
- msgstr "Artikelbild zuschneiden"
145
-
146
- #: ../functions/editor.php:517
147
- msgid "Crop Thumbnail"
148
- msgstr "Bild zuschneiden"
149
-
150
- #: ../functions/save.php:105
151
- #, php-format
152
- msgid "Cant generate filesize \"%s\"."
153
- msgstr "Cant generate filesize \"%s\"."
154
-
155
- #: ../functions/save.php:112
156
- msgid "Cant copy temporary file to media-library."
157
- msgstr "Kopieren vom temporären Verzeichnis in die Mediathek fehlgeschlagen."
158
-
159
- #: ../functions/save.php:116
160
- msgid "Cant delete temporary file."
161
- msgstr "Löschen der temporären Datei fehlgeschlagen."
162
-
163
- #: ../functions/save.php:204
164
- msgid "ERROR: Security Check failed (maybe a timeout - please try again)."
165
- msgstr ""
166
- "Fehler: Sicherheitsüberprüfung fehlgeschlagen (vielleicht eine "
167
- "Zeitüberschreitung - bitte versuchen Sie es noch einmal)."
168
-
169
- #: ../functions/save.php:208
170
- msgid "ERROR: Submitted data are not complete."
171
- msgstr "Fehler: Übermittelte Daten sind nicht vollständig."
172
-
173
- #: ../functions/save.php:216
174
- msgid "A cropping with this dimensions on these Image ist not possible."
175
- msgstr ""
176
- "Das Zuschneiden mit diesen Einstellungen ist bei diesem Bild nicht möglich."
177
-
178
- #: ../functions/save.php:227
179
- msgid "ERROR: Can`t find original Image in Database!"
180
- msgstr "Fehler: Konnte die Original Bild nicht in der Datenbank finden!"
181
-
182
- #: ../functions/save.php:230
183
- msgid "ERROR: Can`t find original Imagefile!"
184
- msgstr "Fehler: Konnte die Original-Bilddatei nicht finden!"
185
-
186
- #: ../functions/save.php:233
187
- msgid "ERROR: Can`t find original Image-Metadata!"
188
- msgstr "Fehler: Konnte Original-Bild-Metadaten nicht finden!"
189
-
190
- #: ../functions/settings.php:24 ../functions/settings.php:38
191
- msgid "Settings"
192
- msgstr "Einstellungen"
193
-
194
- #: ../functions/settings.php:31
195
- msgid "Crop Post Thumbnail Page"
196
- msgstr "Crop-Post-Thumbnail Seite"
197
-
198
- #: ../functions/settings.php:44
199
- msgid "Save Changes"
200
- msgstr "Einstellungen speichern"
201
-
202
- #: ../functions/settings.php:49
203
- msgid "Support the plugin-author"
204
- msgstr "Unterstützen Sie den Plugin Entwickler"
205
-
206
- #: ../functions/settings.php:50
207
- msgid ""
208
- "You can support the plugin-author <br />(and let him know you love this "
209
- "plugin) <br />by donating via Paypal. Thanks a lot!"
210
- msgstr ""
211
- "Sie können den Entwickler unterstützen <br />(und ihn so wissen lassen, dass "
212
- "sie dieses Plugin lieben) <br />indem sie ihm eine Paypal-Spende zukommen "
213
- "lassen. <br />Vielen Dank!"
214
-
215
- #: ../functions/settings.php:72
216
- msgid "Sizes and Posttypes"
217
- msgstr "Größen und Eintragstypen"
218
-
219
- #: ../functions/settings.php:73
220
- msgid ""
221
- "Choose the image-sizes you want to hide. Choose a post-type to prevent any "
222
- "use of the plugin for these entries."
223
- msgstr ""
224
- "Wählen sie die Bildgrößen die ausgeblendet werden sollen. Wählen Sie einen "
225
- "Eintragstyp um das Zuschneiden in diesen Einträge komplett zu verhindern."
226
-
227
- #: ../functions/settings.php:81
228
- #, fuzzy
229
- msgid "Developer Settings"
230
- msgstr "Einstellungen"
231
-
232
- #: ../functions/settings.php:83
233
- msgid "Enable JS-Debug."
234
- msgstr "JS-Debug einschalten"
235
-
236
- #: ../functions/settings.php:85
237
- msgid "Enable Data-Debug."
238
- msgstr "Daten-Debug einschalten"
239
-
240
- #: ../functions/settings.php:90
241
- msgid ""
242
- "Crop-Thumbnails is created to make cropping easy for the user. Often times "
243
- "the user only need to crop one, in dependence of the post-type. But the "
244
- "system will create also all other sizes. So, here you can select for what "
245
- "post-type what sizes should be visible in the plugin interface."
246
- msgstr ""
247
- "Crop Thumbnails wurde erstellt um das Zuschneiden von Bildern für den "
248
- "Benutzer zu erleichtern. Oft muss der Nutzer nur eine Bildgröße zuschneiden, "
249
- "abhängig vom Typ des Eintrags. Das System (Wordpress) wird aber immer alle "
250
- "größen erstellen. Hier können Sie auswählen für welche Eintragstypen welche "
251
- "Bildgrößen in der Plugin-Oberfläche angezeigt werden sollen."
252
-
253
- #: ../functions/settings.php:91
254
- msgid ""
255
- "Crop-Thumbnails will only show croped images - sizes with no crop will "
256
- "always be hidden."
257
- msgstr ""
258
- "Crop Thumbnails wird nur Bilder anzeigen die einen Zuschnitt besitzen. "
259
- "Bildgrößen ohne Zuschnitt werden immer ausgeblendet."
260
-
261
- #: ../functions/settings.php:146
262
- msgid ""
263
- "ATTENTION: be aware that you can break things, when you activate this. When "
264
- "activated your are able to cut those images to a spezific dimension that are "
265
- "not cropped. The name of the image will not change. You should be extra "
266
- "carefull when:"
267
- msgstr ""
268
-
269
- #: ../functions/settings.php:148
270
- msgid ""
271
- "you had inserted the image before on any page or post. (There may be height "
272
- "and width stored directly in the page-content.)"
273
- msgstr ""
274
-
275
- #: ../functions/settings.php:149
276
- msgid ""
277
- "you use a plugin that expect the original image size. (The original image-"
278
- "size is also \"stored\" in the filename.)"
279
- msgstr ""
280
-
281
- #: ../functions/settings.php:151
282
- msgid ""
283
- "The \"full\" image-size will never be cropped, otherwise you are not able to "
284
- "restore any image-size."
285
- msgstr ""
286
-
287
- #~ msgid "Crop Thumbnails - Settings"
288
- #~ msgstr "Crop Thumbnails - Einstellungen"
289
-
290
- #~ msgid ""
291
- #~ "Wrong ratio!<br \\>OK - release images selected so far.<br \\>Cancel - "
292
- #~ "keep selected images so far."
293
- #~ msgstr ""
294
- #~ "Falsches Seitenverhältnis!<br \\>OK - bisher gewählte Bilder abwählen<br "
295
- #~ "\\>Abbrechen - bisher gewählte Bilder belassen."
296
-
297
- #~ msgid ""
298
- #~ "Hint: If you have one image selected, you can click on \"select images "
299
- #~ "with same ratio\", to select all with the ratio of these image."
300
- #~ msgstr ""
301
- #~ "Tipp: Wenn Sie ein Bild ausgewählt haben, und auf \"alle Bilder mit "
302
- #~ "diesem Seitenverhältnis auswählen\" klicken, werden automatisch alle "
303
- #~ "Einträgen mit diesem Seitenverhältnis ausgewählt."
304
-
305
- #~ msgid ""
306
- #~ "Choose the post-types you want to show the crop-editor and define what "
307
- #~ "sizes the editor should be working on. <strong>Only cropped image sizes "
308
- #~ "will be showing.</strong>"
309
- #~ msgstr ""
310
- #~ "Wählen Sie die Eintragstypen die sie im Zuschnitt-Editor verwenden "
311
- #~ "wollen, und wählen sie die Größen mit denen der Editor arbeiten soll. "
312
- #~ "<strong>Nur zugeschnittene Bildgrößen sind sichtbar.</strong>"
313
-
314
- #~ msgid "Wrong ratio!"
315
- #~ msgstr "Falsches Seitenverhältnis"
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Crop-Post-Thumbnails\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-10-08 00:31+0100\n"
6
+ "PO-Revision-Date: 2015-09-19 17:32+0100\n"
7
+ "Last-Translator: Volkmar Kantor <volkmar.kantor@gmx.de>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: __;_e;esc_attr_e;esc_html_e;esc_html__\n"
13
+ "X-Poedit-Basepath: .\n"
14
+ "X-Generator: Poedit 1.7.6\n"
15
+ "Language: de_DE\n"
16
+ "X-Poedit-SearchPath-0: ..\n"
17
+
18
+ #: ../crop-thumbnails.php:34
19
+ msgid "Crop your thumbnails, the easy way."
20
+ msgstr "Zuschnitt ihrer Artikelbilder - einfach gemacht."
21
+
22
+ #: ../functions/editor.php:25
23
+ msgid "You are not allowed to do this."
24
+ msgstr "Sie haben keine Rechte diese Aktion auszuführen."
25
+
26
+ #: ../functions/editor.php:41
27
+ msgid "No featured Image set for this post until now."
28
+ msgstr "Bisher ist kein Artikelbild gesetzt worden."
29
+
30
+ #: ../functions/editor.php:45
31
+ msgid "An error happend!"
32
+ msgstr "Es ist ein Fehler aufgetretten!"
33
+
34
+ #: ../functions/editor.php:78 ../functions/editor.php:204
35
+ msgid "Cropping is disabled for this post-type."
36
+ msgstr "Das Zuschneiden ist für diesen Eintragstyp deaktiviert."
37
+
38
+ #: ../functions/editor.php:80
39
+ msgid "No images in this post yet. You have to upload some via upload dialog."
40
+ msgstr "Zu diesem Eintrag wurden bisher keine Bilder hinzugefügt."
41
+
42
+ #: ../functions/editor.php:101
43
+ msgid "Choose the image you want to crop."
44
+ msgstr "Wählen Sie das Bild aus, das Sie zuschneiden wollen."
45
+
46
+ #: ../functions/editor.php:107
47
+ msgid "Post Thumbnail"
48
+ msgstr "Artikel-Vorschaubild"
49
+
50
+ #: ../functions/editor.php:107
51
+ #, php-format
52
+ msgid "Image %d"
53
+ msgstr "Bild %d"
54
+
55
+ #: ../functions/editor.php:180
56
+ msgid "bug - this case shouldnt be happend"
57
+ msgstr ""
58
+ "BUG - dieser Fall hätte nie eintretten drüfen - Plugin-Autor benachrichtigen."
59
+
60
+ #: ../functions/editor.php:181
61
+ msgid ""
62
+ "Warning: the original image is to small to be cropped in good quality with "
63
+ "this thumbnail-size."
64
+ msgstr ""
65
+ "Warung: das Original-Bild ist zu klein um es für diese Thumbnail-Größe in "
66
+ "guter Qualität zuzuschneiden."
67
+
68
+ #: ../functions/editor.php:182
69
+ msgid "First, select one image. Then, click once again."
70
+ msgstr "Erst ein Bild auswählen, danach erneut probieren."
71
+
72
+ #: ../functions/editor.php:209
73
+ msgid "back to image-list"
74
+ msgstr "Zurück zur Bild-Übersicht"
75
+
76
+ #: ../functions/editor.php:210
77
+ msgid "Please wait until the Images are cropped."
78
+ msgstr "Bitte warten Sie bis die Bilder zugeschnitten wurden."
79
+
80
+ #: ../functions/editor.php:213
81
+ msgid "Raw"
82
+ msgstr "Original-Bild"
83
+
84
+ #: ../functions/editor.php:213 ../functions/editor.php:279
85
+ msgid "pixel"
86
+ msgstr "Pixel"
87
+
88
+ #: ../functions/editor.php:215
89
+ msgid "save crop"
90
+ msgstr "Zuschnitt übernehmen"
91
+
92
+ #: ../functions/editor.php:216
93
+ msgid "Quick-Instructions"
94
+ msgstr "Schnell-Anleitung"
95
+
96
+ #: ../functions/editor.php:218
97
+ msgid "Step 1: Choose an image from the right."
98
+ msgstr "Schritt 1: Wählen Sie ein Bild von der rechten Seite."
99
+
100
+ #: ../functions/editor.php:219
101
+ msgid ""
102
+ "Step 2: Use the mouse change the size of the rectangle on the image above."
103
+ msgstr ""
104
+ "Schritt 2: Benutzen Sie die Maus um die Größe des Rechtecks im oberen Bild "
105
+ "zu ändern."
106
+
107
+ #: ../functions/editor.php:220
108
+ msgid "Step 3: Click on \"save crop\"."
109
+ msgstr "Schritt 3: Klicken Sie auf \"Zuschnitt übernehmen\"."
110
+
111
+ #: ../functions/editor.php:225
112
+ msgid "select images with same ratio at once"
113
+ msgstr "bei gleichem Seitenverhältnis gemeinsam auswählen"
114
+
115
+ #: ../functions/editor.php:226
116
+ msgid "deselect all"
117
+ msgstr "nichts auswählen"
118
+
119
+ #: ../functions/editor.php:262
120
+ msgid "cropped"
121
+ msgstr "zugeschnitten"
122
+
123
+ #: ../functions/editor.php:271
124
+ msgid "maximum"
125
+ msgstr "Maximum"
126
+
127
+ #: ../functions/editor.php:286
128
+ msgid "Original image to small for good crop-quality!"
129
+ msgstr "Original-Bild ist zu klein für guten Bildzuschnitt!"
130
+
131
+ #: ../functions/editor.php:292
132
+ msgid "Dimensions:"
133
+ msgstr "Größe:"
134
+
135
+ #: ../functions/editor.php:293
136
+ msgid "Ratio:"
137
+ msgstr "Seitenverhältnis:"
138
+
139
+ #: ../functions/editor.php:499
140
+ msgid "Crop Thumbnails"
141
+ msgstr "Bilder Zuschneiden"
142
+
143
+ #: ../functions/editor.php:503
144
+ msgid "Crop Featured Image"
145
+ msgstr "Artikelbild zuschneiden"
146
+
147
+ #: ../functions/editor.php:517
148
+ msgid "Crop Thumbnail"
149
+ msgstr "Bild zuschneiden"
150
+
151
+ #: ../functions/save.php:105
152
+ #, php-format
153
+ msgid "Cant generate filesize \"%s\"."
154
+ msgstr "Cant generate filesize \"%s\"."
155
+
156
+ #: ../functions/save.php:112
157
+ msgid "Cant copy temporary file to media-library."
158
+ msgstr "Kopieren vom temporären Verzeichnis in die Mediathek fehlgeschlagen."
159
+
160
+ #: ../functions/save.php:116
161
+ msgid "Cant delete temporary file."
162
+ msgstr "Löschen der temporären Datei fehlgeschlagen."
163
+
164
+ #: ../functions/save.php:204
165
+ msgid "ERROR: Security Check failed (maybe a timeout - please try again)."
166
+ msgstr ""
167
+ "Fehler: Sicherheitsüberprüfung fehlgeschlagen (vielleicht eine "
168
+ "Zeitüberschreitung - bitte versuchen Sie es noch einmal)."
169
+
170
+ #: ../functions/save.php:208
171
+ msgid "ERROR: Submitted data are not complete."
172
+ msgstr "Fehler: Übermittelte Daten sind nicht vollständig."
173
+
174
+ #: ../functions/save.php:216
175
+ msgid "A cropping with this dimensions on these Image ist not possible."
176
+ msgstr ""
177
+ "Das Zuschneiden mit diesen Einstellungen ist bei diesem Bild nicht möglich."
178
+
179
+ #: ../functions/save.php:227
180
+ msgid "ERROR: Can`t find original Image in Database!"
181
+ msgstr "Fehler: Konnte die Original Bild nicht in der Datenbank finden!"
182
+
183
+ #: ../functions/save.php:230
184
+ msgid "ERROR: Can`t find original Imagefile!"
185
+ msgstr "Fehler: Konnte die Original-Bilddatei nicht finden!"
186
+
187
+ #: ../functions/save.php:233
188
+ msgid "ERROR: Can`t find original Image-Metadata!"
189
+ msgstr "Fehler: Konnte Original-Bild-Metadaten nicht finden!"
190
+
191
+ #: ../functions/settings.php:24 ../functions/settings.php:38
192
+ msgid "Settings"
193
+ msgstr "Einstellungen"
194
+
195
+ #: ../functions/settings.php:31
196
+ msgid "Crop Post Thumbnail Page"
197
+ msgstr "Crop-Post-Thumbnail Seite"
198
+
199
+ #: ../functions/settings.php:44
200
+ msgid "Save Changes"
201
+ msgstr "Einstellungen speichern"
202
+
203
+ #: ../functions/settings.php:49
204
+ msgid "Support the plugin-author"
205
+ msgstr "Unterstützen Sie den Plugin Entwickler"
206
+
207
+ #: ../functions/settings.php:50
208
+ msgid ""
209
+ "You can support the plugin-author <br />(and let him know you love this "
210
+ "plugin) <br />by donating via Paypal. Thanks a lot!"
211
+ msgstr ""
212
+ "Sie können den Entwickler unterstützen <br />(und ihn so wissen lassen, dass "
213
+ "sie dieses Plugin lieben) <br />indem sie ihm eine Paypal-Spende zukommen "
214
+ "lassen. <br />Vielen Dank!"
215
+
216
+ #: ../functions/settings.php:72
217
+ msgid "Sizes and Posttypes"
218
+ msgstr "Größen und Eintragstypen"
219
+
220
+ #: ../functions/settings.php:73
221
+ msgid ""
222
+ "Choose the image-sizes you want to hide. Choose a post-type to prevent any "
223
+ "use of the plugin for these entries."
224
+ msgstr ""
225
+ "Wählen sie die Bildgrößen die ausgeblendet werden sollen. Wählen Sie einen "
226
+ "Eintragstyp um das Zuschneiden in diesen Einträge komplett zu verhindern."
227
+
228
+ #: ../functions/settings.php:81
229
+ #, fuzzy
230
+ msgid "Developer Settings"
231
+ msgstr "Einstellungen"
232
+
233
+ #: ../functions/settings.php:83
234
+ msgid "Enable JS-Debug."
235
+ msgstr "JS-Debug einschalten"
236
+
237
+ #: ../functions/settings.php:85
238
+ msgid "Enable Data-Debug."
239
+ msgstr "Daten-Debug einschalten"
240
+
241
+ #: ../functions/settings.php:90
242
+ msgid ""
243
+ "Crop-Thumbnails is created to make cropping easy for the user. Often times "
244
+ "the user only need to crop one, in dependence of the post-type. But the "
245
+ "system will create also all other sizes. So, here you can select for what "
246
+ "post-type what sizes should be visible in the plugin interface."
247
+ msgstr ""
248
+ "Crop Thumbnails wurde erstellt um das Zuschneiden von Bildern für den "
249
+ "Benutzer zu erleichtern. Oft muss der Nutzer nur eine Bildgröße zuschneiden, "
250
+ "abhängig vom Typ des Eintrags. Das System (Wordpress) wird aber immer alle "
251
+ "größen erstellen. Hier können Sie auswählen für welche Eintragstypen welche "
252
+ "Bildgrößen in der Plugin-Oberfläche angezeigt werden sollen."
253
+
254
+ #: ../functions/settings.php:91
255
+ msgid ""
256
+ "Crop-Thumbnails will only show croped images - sizes with no crop will "
257
+ "always be hidden."
258
+ msgstr ""
259
+ "Crop Thumbnails wird nur Bilder anzeigen die einen Zuschnitt besitzen. "
260
+ "Bildgrößen ohne Zuschnitt werden immer ausgeblendet."
261
+
262
+ #: ../functions/settings.php:146
263
+ msgid ""
264
+ "ATTENTION: be aware that you can break things, when you activate this. When "
265
+ "activated your are able to cut those images to a spezific dimension that are "
266
+ "not cropped. The name of the image will not change. You should be extra "
267
+ "carefull when:"
268
+ msgstr ""
269
+
270
+ #: ../functions/settings.php:148
271
+ msgid ""
272
+ "you had inserted the image before on any page or post. (There may be height "
273
+ "and width stored directly in the page-content.)"
274
+ msgstr ""
275
+
276
+ #: ../functions/settings.php:149
277
+ msgid ""
278
+ "you use a plugin that expect the original image size. (The original image-"
279
+ "size is also \"stored\" in the filename.)"
280
+ msgstr ""
281
+
282
+ #: ../functions/settings.php:151
283
+ msgid ""
284
+ "The \"full\" image-size will never be cropped, otherwise you are not able to "
285
+ "restore any image-size."
286
+ msgstr ""
287
+
288
+ #~ msgid "Crop Thumbnails - Settings"
289
+ #~ msgstr "Crop Thumbnails - Einstellungen"
290
+
291
+ #~ msgid ""
292
+ #~ "Wrong ratio!<br \\>OK - release images selected so far.<br \\>Cancel - "
293
+ #~ "keep selected images so far."
294
+ #~ msgstr ""
295
+ #~ "Falsches Seitenverhältnis!<br \\>OK - bisher gewählte Bilder abwählen<br "
296
+ #~ "\\>Abbrechen - bisher gewählte Bilder belassen."
297
+
298
+ #~ msgid ""
299
+ #~ "Hint: If you have one image selected, you can click on \"select images "
300
+ #~ "with same ratio\", to select all with the ratio of these image."
301
+ #~ msgstr ""
302
+ #~ "Tipp: Wenn Sie ein Bild ausgewählt haben, und auf \"alle Bilder mit "
303
+ #~ "diesem Seitenverhältnis auswählen\" klicken, werden automatisch alle "
304
+ #~ "Einträgen mit diesem Seitenverhältnis ausgewählt."
305
+
306
+ #~ msgid ""
307
+ #~ "Choose the post-types you want to show the crop-editor and define what "
308
+ #~ "sizes the editor should be working on. <strong>Only cropped image sizes "
309
+ #~ "will be showing.</strong>"
310
+ #~ msgstr ""
311
+ #~ "Wählen Sie die Eintragstypen die sie im Zuschnitt-Editor verwenden "
312
+ #~ "wollen, und wählen sie die Größen mit denen der Editor arbeiten soll. "
313
+ #~ "<strong>Nur zugeschnittene Bildgrößen sind sichtbar.</strong>"
314
+
315
+ #~ msgid "Wrong ratio!"
316
+ #~ msgstr "Falsches Seitenverhältnis"
lang/cpt_lang-default.po CHANGED
@@ -1,264 +1,264 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Crop-Post-Thumbnails\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-10-08 00:33+0100\n"
6
- "PO-Revision-Date: 2013-10-08 00:33+0100\n"
7
- "Last-Translator: Volkmar Kantor <volkmar.kantor@gmx.de>\n"
8
- "Language-Team: \n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-KeywordsList: __;_e;esc_attr_e;esc_attr__;esc_html_e\n"
13
- "X-Poedit-Basepath: .\n"
14
- "X-Generator: Poedit 1.5.4\n"
15
- "X-Poedit-SearchPath-0: ..\n"
16
-
17
- #: ../crop-thumbnails.php:34
18
- msgid "Crop your thumbnails, the easy way."
19
- msgstr ""
20
-
21
- #: ../functions/editor.php:25
22
- msgid "You are not allowed to do this."
23
- msgstr ""
24
-
25
- #: ../functions/editor.php:41
26
- msgid "No featured Image set for this post until now."
27
- msgstr ""
28
-
29
- #: ../functions/editor.php:45
30
- msgid "An error happend!"
31
- msgstr ""
32
-
33
- #: ../functions/editor.php:78 ../functions/editor.php:204
34
- msgid "Cropping is disabled for this post-type."
35
- msgstr ""
36
-
37
- #: ../functions/editor.php:80
38
- msgid "No images in this post yet. You have to upload some via upload dialog."
39
- msgstr ""
40
-
41
- #: ../functions/editor.php:101
42
- msgid "Choose the image you want to crop."
43
- msgstr ""
44
-
45
- #: ../functions/editor.php:107
46
- msgid "Post Thumbnail"
47
- msgstr ""
48
-
49
- #: ../functions/editor.php:107
50
- #, php-format
51
- msgid "Image %d"
52
- msgstr ""
53
-
54
- #: ../functions/editor.php:180
55
- msgid "bug - this case shouldnt be happend"
56
- msgstr ""
57
-
58
- #: ../functions/editor.php:181
59
- msgid ""
60
- "Warning: the original image is to small to be cropped in good quality with "
61
- "this thumbnail-size."
62
- msgstr ""
63
-
64
- #: ../functions/editor.php:182
65
- msgid "First, select one image. Then, click once again."
66
- msgstr ""
67
-
68
- #: ../functions/editor.php:209
69
- msgid "back to image-list"
70
- msgstr ""
71
-
72
- #: ../functions/editor.php:210
73
- msgid "Please wait until the Images are cropped."
74
- msgstr ""
75
-
76
- #: ../functions/editor.php:213
77
- msgid "Raw"
78
- msgstr ""
79
-
80
- #: ../functions/editor.php:213 ../functions/editor.php:279
81
- msgid "pixel"
82
- msgstr ""
83
-
84
- #: ../functions/editor.php:215
85
- msgid "save crop"
86
- msgstr ""
87
-
88
- #: ../functions/editor.php:216
89
- msgid "Quick-Instructions"
90
- msgstr ""
91
-
92
- #: ../functions/editor.php:218
93
- msgid "Step 1: Choose an image from the right."
94
- msgstr ""
95
-
96
- #: ../functions/editor.php:219
97
- msgid ""
98
- "Step 2: Use the mouse change the size of the rectangle on the image above."
99
- msgstr ""
100
-
101
- #: ../functions/editor.php:220
102
- msgid "Step 3: Click on \"save crop\"."
103
- msgstr ""
104
-
105
- #: ../functions/editor.php:225
106
- msgid "select images with same ratio at once"
107
- msgstr ""
108
-
109
- #: ../functions/editor.php:226
110
- msgid "deselect all"
111
- msgstr ""
112
-
113
- #: ../functions/editor.php:262
114
- msgid "cropped"
115
- msgstr ""
116
-
117
- #: ../functions/editor.php:271
118
- msgid "maximum"
119
- msgstr ""
120
-
121
- #: ../functions/editor.php:286
122
- msgid "Original image to small for good crop-quality!"
123
- msgstr ""
124
-
125
- #: ../functions/editor.php:292
126
- msgid "Dimensions:"
127
- msgstr ""
128
-
129
- #: ../functions/editor.php:293
130
- msgid "Ratio:"
131
- msgstr ""
132
-
133
- #: ../functions/editor.php:499
134
- msgid "Crop Thumbnails"
135
- msgstr ""
136
-
137
- #: ../functions/editor.php:503
138
- msgid "Crop Featured Image"
139
- msgstr ""
140
-
141
- #: ../functions/editor.php:517
142
- msgid "Crop Thumbnail"
143
- msgstr ""
144
-
145
- #: ../functions/save.php:105
146
- #, php-format
147
- msgid "Cant generate filesize \"%s\"."
148
- msgstr ""
149
-
150
- #: ../functions/save.php:112
151
- msgid "Cant copy temporary file to media-library."
152
- msgstr ""
153
-
154
- #: ../functions/save.php:116
155
- msgid "Cant delete temporary file."
156
- msgstr ""
157
-
158
- #: ../functions/save.php:204
159
- msgid "ERROR: Security Check failed (maybe a timeout - please try again)."
160
- msgstr ""
161
-
162
- #: ../functions/save.php:208
163
- msgid "ERROR: Submitted data are not complete."
164
- msgstr ""
165
-
166
- #: ../functions/save.php:216
167
- msgid "A cropping with this dimensions on these Image ist not possible."
168
- msgstr ""
169
-
170
- #: ../functions/save.php:227
171
- msgid "ERROR: Can`t find original Image in Database!"
172
- msgstr ""
173
-
174
- #: ../functions/save.php:230
175
- msgid "ERROR: Can`t find original Imagefile!"
176
- msgstr ""
177
-
178
- #: ../functions/save.php:233
179
- msgid "ERROR: Can`t find original Image-Metadata!"
180
- msgstr ""
181
-
182
- #: ../functions/settings.php:24 ../functions/settings.php:38
183
- msgid "Settings"
184
- msgstr ""
185
-
186
- #: ../functions/settings.php:31
187
- msgid "Crop Post Thumbnail Page"
188
- msgstr ""
189
-
190
- #: ../functions/settings.php:44
191
- msgid "Save Changes"
192
- msgstr ""
193
-
194
- #: ../functions/settings.php:49
195
- msgid "Support the plugin-author"
196
- msgstr ""
197
-
198
- #: ../functions/settings.php:50
199
- msgid ""
200
- "You can support the plugin-author <br />(and let him know you love this "
201
- "plugin) <br />by donating via Paypal. Thanks a lot!"
202
- msgstr ""
203
-
204
- #: ../functions/settings.php:72
205
- msgid "Sizes and Posttypes"
206
- msgstr ""
207
-
208
- #: ../functions/settings.php:73
209
- msgid ""
210
- "Choose the image-sizes you want to hide. Choose a post-type to prevent any "
211
- "use of the plugin for these entries."
212
- msgstr ""
213
-
214
- #: ../functions/settings.php:81
215
- msgid "Developer Settings"
216
- msgstr ""
217
-
218
- #: ../functions/settings.php:83
219
- msgid "Enable JS-Debug."
220
- msgstr ""
221
-
222
- #: ../functions/settings.php:85
223
- msgid "Enable Data-Debug."
224
- msgstr ""
225
-
226
- #: ../functions/settings.php:90
227
- msgid ""
228
- "Crop-Thumbnails is created to make cropping easy for the user. Often times "
229
- "the user only need to crop one, in dependence of the post-type. But the "
230
- "system will create also all other sizes. So, here you can select for what "
231
- "post-type what sizes should be visible in the plugin interface."
232
- msgstr ""
233
-
234
- #: ../functions/settings.php:91
235
- msgid ""
236
- "Crop-Thumbnails will only show croped images - sizes with no crop will "
237
- "always be hidden."
238
- msgstr ""
239
-
240
- #: ../functions/settings.php:146
241
- msgid ""
242
- "ATTENTION: be aware that you can break things, when you activate this. When "
243
- "activated your are able to cut those images to a spezific dimension that are "
244
- "not cropped. The name of the image will not change. You should be extra "
245
- "carefull when:"
246
- msgstr ""
247
-
248
- #: ../functions/settings.php:148
249
- msgid ""
250
- "you had inserted the image before on any page or post. (There may be height "
251
- "and width stored directly in the page-content.)"
252
- msgstr ""
253
-
254
- #: ../functions/settings.php:149
255
- msgid ""
256
- "you use a plugin that expect the original image size. (The original image-"
257
- "size is also \"stored\" in the filename.)"
258
- msgstr ""
259
-
260
- #: ../functions/settings.php:151
261
- msgid ""
262
- "The \"full\" image-size will never be cropped, otherwise you are not able to "
263
- "restore any image-size."
264
- msgstr ""
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Crop-Post-Thumbnails\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-10-08 00:33+0100\n"
6
+ "PO-Revision-Date: 2013-10-08 00:33+0100\n"
7
+ "Last-Translator: Volkmar Kantor <volkmar.kantor@gmx.de>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: __;_e;esc_attr_e;esc_attr__;esc_html_e\n"
13
+ "X-Poedit-Basepath: .\n"
14
+ "X-Generator: Poedit 1.5.4\n"
15
+ "X-Poedit-SearchPath-0: ..\n"
16
+
17
+ #: ../crop-thumbnails.php:34
18
+ msgid "Crop your thumbnails, the easy way."
19
+ msgstr ""
20
+
21
+ #: ../functions/editor.php:25
22
+ msgid "You are not allowed to do this."
23
+ msgstr ""
24
+
25
+ #: ../functions/editor.php:41
26
+ msgid "No featured Image set for this post until now."
27
+ msgstr ""
28
+
29
+ #: ../functions/editor.php:45
30
+ msgid "An error happend!"
31
+ msgstr ""
32
+
33
+ #: ../functions/editor.php:78 ../functions/editor.php:204
34
+ msgid "Cropping is disabled for this post-type."
35
+ msgstr ""
36
+
37
+ #: ../functions/editor.php:80
38
+ msgid "No images in this post yet. You have to upload some via upload dialog."
39
+ msgstr ""
40
+
41
+ #: ../functions/editor.php:101
42
+ msgid "Choose the image you want to crop."
43
+ msgstr ""
44
+
45
+ #: ../functions/editor.php:107
46
+ msgid "Post Thumbnail"
47
+ msgstr ""
48
+
49
+ #: ../functions/editor.php:107
50
+ #, php-format
51
+ msgid "Image %d"
52
+ msgstr ""
53
+
54
+ #: ../functions/editor.php:180
55
+ msgid "bug - this case shouldnt be happend"
56
+ msgstr ""
57
+
58
+ #: ../functions/editor.php:181
59
+ msgid ""
60
+ "Warning: the original image is to small to be cropped in good quality with "
61
+ "this thumbnail-size."
62
+ msgstr ""
63
+
64
+ #: ../functions/editor.php:182
65
+ msgid "First, select one image. Then, click once again."
66
+ msgstr ""
67
+
68
+ #: ../functions/editor.php:209
69
+ msgid "back to image-list"
70
+ msgstr ""
71
+
72
+ #: ../functions/editor.php:210
73
+ msgid "Please wait until the Images are cropped."
74
+ msgstr ""
75
+
76
+ #: ../functions/editor.php:213
77
+ msgid "Raw"
78
+ msgstr ""
79
+
80
+ #: ../functions/editor.php:213 ../functions/editor.php:279
81
+ msgid "pixel"
82
+ msgstr ""
83
+
84
+ #: ../functions/editor.php:215
85
+ msgid "save crop"
86
+ msgstr ""
87
+
88
+ #: ../functions/editor.php:216
89
+ msgid "Quick-Instructions"
90
+ msgstr ""
91
+
92
+ #: ../functions/editor.php:218
93
+ msgid "Step 1: Choose an image from the right."
94
+ msgstr ""
95
+
96
+ #: ../functions/editor.php:219
97
+ msgid ""
98
+ "Step 2: Use the mouse change the size of the rectangle on the image above."
99
+ msgstr ""
100
+
101
+ #: ../functions/editor.php:220
102
+ msgid "Step 3: Click on \"save crop\"."
103
+ msgstr ""
104
+
105
+ #: ../functions/editor.php:225
106
+ msgid "select images with same ratio at once"
107
+ msgstr ""
108
+
109
+ #: ../functions/editor.php:226
110
+ msgid "deselect all"
111
+ msgstr ""
112
+
113
+ #: ../functions/editor.php:262
114
+ msgid "cropped"
115
+ msgstr ""
116
+
117
+ #: ../functions/editor.php:271
118
+ msgid "maximum"
119
+ msgstr ""
120
+
121
+ #: ../functions/editor.php:286
122
+ msgid "Original image to small for good crop-quality!"
123
+ msgstr ""
124
+
125
+ #: ../functions/editor.php:292
126
+ msgid "Dimensions:"
127
+ msgstr ""
128
+
129
+ #: ../functions/editor.php:293
130
+ msgid "Ratio:"
131
+ msgstr ""
132
+
133
+ #: ../functions/editor.php:499
134
+ msgid "Crop Thumbnails"
135
+ msgstr ""
136
+
137
+ #: ../functions/editor.php:503
138
+ msgid "Crop Featured Image"
139
+ msgstr ""
140
+
141
+ #: ../functions/editor.php:517
142
+ msgid "Crop Thumbnail"
143
+ msgstr ""
144
+
145
+ #: ../functions/save.php:105
146
+ #, php-format
147
+ msgid "Cant generate filesize \"%s\"."
148
+ msgstr ""
149
+
150
+ #: ../functions/save.php:112
151
+ msgid "Cant copy temporary file to media-library."
152
+ msgstr ""
153
+
154
+ #: ../functions/save.php:116
155
+ msgid "Cant delete temporary file."
156
+ msgstr ""
157
+
158
+ #: ../functions/save.php:204
159
+ msgid "ERROR: Security Check failed (maybe a timeout - please try again)."
160
+ msgstr ""
161
+
162
+ #: ../functions/save.php:208
163
+ msgid "ERROR: Submitted data are not complete."
164
+ msgstr ""
165
+
166
+ #: ../functions/save.php:216
167
+ msgid "A cropping with this dimensions on these Image ist not possible."
168
+ msgstr ""
169
+
170
+ #: ../functions/save.php:227
171
+ msgid "ERROR: Can`t find original Image in Database!"
172
+ msgstr ""
173
+
174
+ #: ../functions/save.php:230
175
+ msgid "ERROR: Can`t find original Imagefile!"
176
+ msgstr ""
177
+
178
+ #: ../functions/save.php:233
179
+ msgid "ERROR: Can`t find original Image-Metadata!"
180
+ msgstr ""
181
+
182
+ #: ../functions/settings.php:24 ../functions/settings.php:38
183
+ msgid "Settings"
184
+ msgstr ""
185
+
186
+ #: ../functions/settings.php:31
187
+ msgid "Crop Post Thumbnail Page"
188
+ msgstr ""
189
+
190
+ #: ../functions/settings.php:44
191
+ msgid "Save Changes"
192
+ msgstr ""
193
+
194
+ #: ../functions/settings.php:49
195
+ msgid "Support the plugin-author"
196
+ msgstr ""
197
+
198
+ #: ../functions/settings.php:50
199
+ msgid ""
200
+ "You can support the plugin-author <br />(and let him know you love this "
201
+ "plugin) <br />by donating via Paypal. Thanks a lot!"
202
+ msgstr ""
203
+
204
+ #: ../functions/settings.php:72
205
+ msgid "Sizes and Posttypes"
206
+ msgstr ""
207
+
208
+ #: ../functions/settings.php:73
209
+ msgid ""
210
+ "Choose the image-sizes you want to hide. Choose a post-type to prevent any "
211
+ "use of the plugin for these entries."
212
+ msgstr ""
213
+
214
+ #: ../functions/settings.php:81
215
+ msgid "Developer Settings"
216
+ msgstr ""
217
+
218
+ #: ../functions/settings.php:83
219
+ msgid "Enable JS-Debug."
220
+ msgstr ""
221
+
222
+ #: ../functions/settings.php:85
223
+ msgid "Enable Data-Debug."
224
+ msgstr ""
225
+
226
+ #: ../functions/settings.php:90
227
+ msgid ""
228
+ "Crop-Thumbnails is created to make cropping easy for the user. Often times "
229
+ "the user only need to crop one, in dependence of the post-type. But the "
230
+ "system will create also all other sizes. So, here you can select for what "
231
+ "post-type what sizes should be visible in the plugin interface."
232
+ msgstr ""
233
+
234
+ #: ../functions/settings.php:91
235
+ msgid ""
236
+ "Crop-Thumbnails will only show croped images - sizes with no crop will "
237
+ "always be hidden."
238
+ msgstr ""
239
+
240
+ #: ../functions/settings.php:146
241
+ msgid ""
242
+ "ATTENTION: be aware that you can break things, when you activate this. When "
243
+ "activated your are able to cut those images to a spezific dimension that are "
244
+ "not cropped. The name of the image will not change. You should be extra "
245
+ "carefull when:"
246
+ msgstr ""
247
+
248
+ #: ../functions/settings.php:148
249
+ msgid ""
250
+ "you had inserted the image before on any page or post. (There may be height "
251
+ "and width stored directly in the page-content.)"
252
+ msgstr ""
253
+
254
+ #: ../functions/settings.php:149
255
+ msgid ""
256
+ "you use a plugin that expect the original image size. (The original image-"
257
+ "size is also \"stored\" in the filename.)"
258
+ msgstr ""
259
+
260
+ #: ../functions/settings.php:151
261
+ msgid ""
262
+ "The \"full\" image-size will never be cropped, otherwise you are not able to "
263
+ "restore any image-size."
264
+ msgstr ""
lang/cpt_lang-hu_HU.po CHANGED
@@ -1,236 +1,236 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Crop-Post-Thumbnails\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-12-03 14:35+0100\n"
6
- "PO-Revision-Date: 2013-07-09 08:40+0100\n"
7
- "Last-Translator: Volkmar Kantor <volkmar.kantor@gmx.de>\n"
8
- "Language-Team: \n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-KeywordsList: __;_e;esc_attr_e;esc_attr__;esc_html_e\n"
13
- "X-Poedit-Basepath: .\n"
14
- "X-Generator: Poedit 1.5.4\n"
15
- "X-Poedit-SearchPath-0: ..\n"
16
-
17
- #: ../crop-thumbnails.php:35
18
- msgid "Crop your thumbnails, the easy way."
19
- msgstr "Tökéletes kisképek, egyszerűen!"
20
-
21
- #: ../functions/editor.php:23 ../functions/editor.php:43
22
- msgid "An error happend!"
23
- msgstr "Ajaj! Hiba történt."
24
-
25
- #: ../functions/editor.php:39
26
- msgid "No featured Image set for this post until now."
27
- msgstr "Ehhez a bejegyzéshez még nincs kiemelt kép beállítva"
28
-
29
- #: ../functions/editor.php:75 ../functions/editor.php:187
30
- msgid "Cropping is disabled for this post-type."
31
- msgstr "Ajaj! Képvágáshoz nincs jogosultságod ebben a bejegyzéstípusban."
32
-
33
- #: ../functions/editor.php:77
34
- msgid "No images in this post yet. You have to upload some via upload dialog."
35
- msgstr ""
36
- "Ehhez a bejegyzéshez nincs még feltöltött kép. Fel kellene tölteni párat."
37
-
38
- #: ../functions/editor.php:98
39
- msgid "Choose the image you want to crop."
40
- msgstr "Válasz egy képet a vágáshoz."
41
-
42
- #: ../functions/editor.php:104
43
- msgid "Post Thumbnail"
44
- msgstr "Kiemelt kép"
45
-
46
- #: ../functions/editor.php:104
47
- #, php-format
48
- msgid "Image %d"
49
- msgstr "(?)Kép %d"
50
-
51
- #: ../functions/editor.php:164
52
- msgid "bug - this case shouldnt be happend"
53
- msgstr "Program hiba! Ennek elvileg nem kellett volna megtörténnie."
54
-
55
- #: ../functions/editor.php:165
56
- msgid ""
57
- "Warning: the original image is to small to be cropped in good quality with "
58
- "this thumbnail-size."
59
- msgstr ""
60
- "Hiba! Az eredeti kép túl kicsi a minőségvesztés nélküli átméretezéshez."
61
-
62
- #: ../functions/editor.php:166
63
- msgid "First, select one image. Then, click once again."
64
- msgstr "Válaszd ki a vágandó képet és kattints rá kétszer."
65
-
66
- #: ../functions/editor.php:192
67
- msgid "back to image-list"
68
- msgstr "Vissza a képlistához"
69
-
70
- #: ../functions/editor.php:193
71
- msgid "Please wait until the Images are cropped."
72
- msgstr "Átméretezés... pár pillanat és kész."
73
-
74
- #: ../functions/editor.php:196
75
- msgid "Raw"
76
- msgstr "(nemtudni)Nyers/Eredeti"
77
-
78
- #: ../functions/editor.php:196 ../functions/editor.php:237
79
- msgid "pixel"
80
- msgstr "pixel"
81
-
82
- #: ../functions/editor.php:198
83
- msgid "save crop"
84
- msgstr "Vágás kész!"
85
-
86
- #: ../functions/editor.php:199
87
- msgid "Quick-Instructions"
88
- msgstr "Gyorstalpaló"
89
-
90
- #: ../functions/editor.php:201
91
- msgid "Step 1: Choose an image from the right."
92
- msgstr "1. Lépés: Válaszd ki a képet a jobboldalon."
93
-
94
- #: ../functions/editor.php:202
95
- msgid ""
96
- "Step 2: Use the mouse change the size of the rectangle on the image above."
97
- msgstr ""
98
- "2. Lépés: Az egérrel állítsd be a kijelölés méretét és pozícióját a fennti "
99
- "képen."
100
-
101
- #: ../functions/editor.php:203
102
- msgid "Step 3: Click on \"save crop\"."
103
- msgstr "3. Lépés: Kattints a \"Vágás kész!\" gombra."
104
-
105
- #: ../functions/editor.php:208
106
- msgid "select images with same ratio at once"
107
- msgstr "Azonos méretarányú képek kiválasztása"
108
-
109
- #: ../functions/editor.php:209
110
- msgid "deselect all"
111
- msgstr "Kijelölés törlése"
112
-
113
- #: ../functions/editor.php:221
114
- msgid "cropped"
115
- msgstr "vágott"
116
-
117
- #: ../functions/editor.php:231
118
- msgid "Original image to small for good crop-quality!"
119
- msgstr "Az eredeti kép túl kicsi a jó minőségű átméretezéshez!"
120
-
121
- #: ../functions/editor.php:237
122
- msgid "Dimensions:"
123
- msgstr "Méretek:"
124
-
125
- #: ../functions/editor.php:238
126
- msgid "Ratio:"
127
- msgstr "Méretarány:"
128
-
129
- #: ../functions/editor.php:421
130
- msgid "Crop Thumbnails"
131
- msgstr "Kiskép szerkesztő"
132
-
133
- #: ../functions/editor.php:425
134
- msgid "Crop Featured Image"
135
- msgstr "Kiemeltkép vágása"
136
-
137
- #: ../functions/editor.php:439
138
- msgid "Crop Thumbnail"
139
- msgstr "Kiskép vágása"
140
-
141
- #: ../functions/save.php:95
142
- #, php-format
143
- msgid "Cant generate filesize \"%s\"."
144
- msgstr "Nemtudom legenerálni a fájlméretet: \"%s\"."
145
-
146
- #: ../functions/save.php:102
147
- msgid "Cant copy temporary file to media-library."
148
- msgstr "Nem tudom átmásolni az ideiglenes fájlt a médiatárba."
149
-
150
- #: ../functions/save.php:106
151
- msgid "Cant delete temporary file."
152
- msgstr "Nem tudom törölni az ideiglenes fájlt."
153
-
154
- #: ../functions/save.php:172
155
- msgid "ERROR: Security Check failed (maybe a timeout - please try again)."
156
- msgstr ""
157
- "Hiba! A biztonsági ellenőrzés meghiúsult (talán időtúllépés miatt - próbáld "
158
- "újra)"
159
-
160
- #: ../functions/save.php:176
161
- msgid "ERROR: Submitted data are not complete."
162
- msgstr "Hiba! Az elküldött adatok hiányosak."
163
-
164
- #: ../functions/save.php:184
165
- msgid "A cropping with this dimensions on these Image ist not possible."
166
- msgstr "Ajaj! Ezt a képet nem lehet a megadott méretre vágni."
167
-
168
- #: ../functions/save.php:195
169
- msgid "ERROR: Can`t find original Image in Database!"
170
- msgstr "Hiba! Nem találom az eredeti képet az adatbázisban!"
171
-
172
- #: ../functions/save.php:198
173
- msgid "ERROR: Can`t find original Imagefile!"
174
- msgstr "Hiba! Nem találom az eredeti képet a tárhelyen!"
175
-
176
- #: ../functions/save.php:201
177
- msgid "ERROR: Can`t find original Image-Metadata!"
178
- msgstr "Hiba! Nem találom az eredeti képinformációkat."
179
-
180
- #: ../functions/settings.php:16 ../functions/settings.php:30
181
- msgid "Settings"
182
- msgstr "Beállítások"
183
-
184
- #: ../functions/settings.php:23
185
- msgid "Crop Post Thumbnail Page"
186
- msgstr "Kisképvágó oldal"
187
-
188
- #: ../functions/settings.php:35
189
- msgid "Save Changes"
190
- msgstr "Módosítások mentése"
191
-
192
- #: ../functions/settings.php:39
193
- msgid "Support the plugin-author"
194
- msgstr "Támogasd a bővitmény készítőjét"
195
-
196
- #: ../functions/settings.php:40
197
- msgid ""
198
- "You can support the plugin-author <br />(and let him know you love this "
199
- "plugin) <br />by donating via Paypal. Thanks a lot!"
200
- msgstr ""
201
- "Támogathatod a bővitmény készítőjét <br /> (Így tudatva vele, hogy tetszik "
202
- "ez a bővítmény) <br /> azzal, ha adományozol Paypalon. Köszönjük!"
203
-
204
- #: ../functions/settings.php:60
205
- msgid "Sizes and Posttypes"
206
- msgstr "Méretek és bejegyzés típusok"
207
-
208
- #: ../functions/settings.php:61
209
- msgid ""
210
- "Choose the image-sizes you want to hide. Choose a post-type to prevent any "
211
- "use of the plugin for these entries."
212
- msgstr ""
213
- "Válaszd ki a képméreteket amiket nem szerkeszthetnek, vagy letilthatod az "
214
- "egész bejegyzés típusra is a képvágást."
215
-
216
- #: ../functions/settings.php:66
217
- msgid ""
218
- "Crop-Thumbnails is created to make cropping easy for the user. Often times "
219
- "the user only need to crop one, in dependence of the post-type. But the "
220
- "system will create also all other sizes. So, here you can select for what "
221
- "post-type what sizes should be visible in the plugin interface."
222
- msgstr ""
223
- "A Crop-Thumbnails Plugin azzal a céllal készült, hogy kicsit kibővítse a "
224
- "WordPress amúgy remek képkezelőjét. Bár a rendszer a feltöltött képeket "
225
- "átméretezi és méretre vágja amiket a magfunkciók és a sablonkészítők "
226
- "biztosítottak ám időnként előfordul, hogy nem sikerült túl szerencsésre az "
227
- "automatikus vágás. Ezzel a bővítménnyel beállíthatjuk, hogy a felhasználók "
228
- "mely méreteken és/ vagy bejegyzési típusoknál használhatják."
229
-
230
- #: ../functions/settings.php:67
231
- msgid ""
232
- "Crop-Thumbnails will only show croped images - sizes with no crop will "
233
- "always be hidden."
234
- msgstr ""
235
- "A Képvágó mindíg a vágott méreteket mutatja. Az eredeti \"nyers\" nyers "
236
- "képeket nem."
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Crop-Post-Thumbnails\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-03 14:35+0100\n"
6
+ "PO-Revision-Date: 2013-07-09 08:40+0100\n"
7
+ "Last-Translator: Volkmar Kantor <volkmar.kantor@gmx.de>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: __;_e;esc_attr_e;esc_attr__;esc_html_e\n"
13
+ "X-Poedit-Basepath: .\n"
14
+ "X-Generator: Poedit 1.5.4\n"
15
+ "X-Poedit-SearchPath-0: ..\n"
16
+
17
+ #: ../crop-thumbnails.php:35
18
+ msgid "Crop your thumbnails, the easy way."
19
+ msgstr "Tökéletes kisképek, egyszerűen!"
20
+
21
+ #: ../functions/editor.php:23 ../functions/editor.php:43
22
+ msgid "An error happend!"
23
+ msgstr "Ajaj! Hiba történt."
24
+
25
+ #: ../functions/editor.php:39
26
+ msgid "No featured Image set for this post until now."
27
+ msgstr "Ehhez a bejegyzéshez még nincs kiemelt kép beállítva"
28
+
29
+ #: ../functions/editor.php:75 ../functions/editor.php:187
30
+ msgid "Cropping is disabled for this post-type."
31
+ msgstr "Ajaj! Képvágáshoz nincs jogosultságod ebben a bejegyzéstípusban."
32
+
33
+ #: ../functions/editor.php:77
34
+ msgid "No images in this post yet. You have to upload some via upload dialog."
35
+ msgstr ""
36
+ "Ehhez a bejegyzéshez nincs még feltöltött kép. Fel kellene tölteni párat."
37
+
38
+ #: ../functions/editor.php:98
39
+ msgid "Choose the image you want to crop."
40
+ msgstr "Válasz egy képet a vágáshoz."
41
+
42
+ #: ../functions/editor.php:104
43
+ msgid "Post Thumbnail"
44
+ msgstr "Kiemelt kép"
45
+
46
+ #: ../functions/editor.php:104
47
+ #, php-format
48
+ msgid "Image %d"
49
+ msgstr "(?)Kép %d"
50
+
51
+ #: ../functions/editor.php:164
52
+ msgid "bug - this case shouldnt be happend"
53
+ msgstr "Program hiba! Ennek elvileg nem kellett volna megtörténnie."
54
+
55
+ #: ../functions/editor.php:165
56
+ msgid ""
57
+ "Warning: the original image is to small to be cropped in good quality with "
58
+ "this thumbnail-size."
59
+ msgstr ""
60
+ "Hiba! Az eredeti kép túl kicsi a minőségvesztés nélküli átméretezéshez."
61
+
62
+ #: ../functions/editor.php:166
63
+ msgid "First, select one image. Then, click once again."
64
+ msgstr "Válaszd ki a vágandó képet és kattints rá kétszer."
65
+
66
+ #: ../functions/editor.php:192
67
+ msgid "back to image-list"
68
+ msgstr "Vissza a képlistához"
69
+
70
+ #: ../functions/editor.php:193
71
+ msgid "Please wait until the Images are cropped."
72
+ msgstr "Átméretezés... pár pillanat és kész."
73
+
74
+ #: ../functions/editor.php:196
75
+ msgid "Raw"
76
+ msgstr "(nemtudni)Nyers/Eredeti"
77
+
78
+ #: ../functions/editor.php:196 ../functions/editor.php:237
79
+ msgid "pixel"
80
+ msgstr "pixel"
81
+
82
+ #: ../functions/editor.php:198
83
+ msgid "save crop"
84
+ msgstr "Vágás kész!"
85
+
86
+ #: ../functions/editor.php:199
87
+ msgid "Quick-Instructions"
88
+ msgstr "Gyorstalpaló"
89
+
90
+ #: ../functions/editor.php:201
91
+ msgid "Step 1: Choose an image from the right."
92
+ msgstr "1. Lépés: Válaszd ki a képet a jobboldalon."
93
+
94
+ #: ../functions/editor.php:202
95
+ msgid ""
96
+ "Step 2: Use the mouse change the size of the rectangle on the image above."
97
+ msgstr ""
98
+ "2. Lépés: Az egérrel állítsd be a kijelölés méretét és pozícióját a fennti "
99
+ "képen."
100
+
101
+ #: ../functions/editor.php:203
102
+ msgid "Step 3: Click on \"save crop\"."
103
+ msgstr "3. Lépés: Kattints a \"Vágás kész!\" gombra."
104
+
105
+ #: ../functions/editor.php:208
106
+ msgid "select images with same ratio at once"
107
+ msgstr "Azonos méretarányú képek kiválasztása"
108
+
109
+ #: ../functions/editor.php:209
110
+ msgid "deselect all"
111
+ msgstr "Kijelölés törlése"
112
+
113
+ #: ../functions/editor.php:221
114
+ msgid "cropped"
115
+ msgstr "vágott"
116
+
117
+ #: ../functions/editor.php:231
118
+ msgid "Original image to small for good crop-quality!"
119
+ msgstr "Az eredeti kép túl kicsi a jó minőségű átméretezéshez!"
120
+
121
+ #: ../functions/editor.php:237
122
+ msgid "Dimensions:"
123
+ msgstr "Méretek:"
124
+
125
+ #: ../functions/editor.php:238
126
+ msgid "Ratio:"
127
+ msgstr "Méretarány:"
128
+
129
+ #: ../functions/editor.php:421
130
+ msgid "Crop Thumbnails"
131
+ msgstr "Kiskép szerkesztő"
132
+
133
+ #: ../functions/editor.php:425
134
+ msgid "Crop Featured Image"
135
+ msgstr "Kiemeltkép vágása"
136
+
137
+ #: ../functions/editor.php:439
138
+ msgid "Crop Thumbnail"
139
+ msgstr "Kiskép vágása"
140
+
141
+ #: ../functions/save.php:95
142
+ #, php-format
143
+ msgid "Cant generate filesize \"%s\"."
144
+ msgstr "Nemtudom legenerálni a fájlméretet: \"%s\"."
145
+
146
+ #: ../functions/save.php:102
147
+ msgid "Cant copy temporary file to media-library."
148
+ msgstr "Nem tudom átmásolni az ideiglenes fájlt a médiatárba."
149
+
150
+ #: ../functions/save.php:106
151
+ msgid "Cant delete temporary file."
152
+ msgstr "Nem tudom törölni az ideiglenes fájlt."
153
+
154
+ #: ../functions/save.php:172
155
+ msgid "ERROR: Security Check failed (maybe a timeout - please try again)."
156
+ msgstr ""
157
+ "Hiba! A biztonsági ellenőrzés meghiúsult (talán időtúllépés miatt - próbáld "
158
+ "újra)"
159
+
160
+ #: ../functions/save.php:176
161
+ msgid "ERROR: Submitted data are not complete."
162
+ msgstr "Hiba! Az elküldött adatok hiányosak."
163
+
164
+ #: ../functions/save.php:184
165
+ msgid "A cropping with this dimensions on these Image ist not possible."
166
+ msgstr "Ajaj! Ezt a képet nem lehet a megadott méretre vágni."
167
+
168
+ #: ../functions/save.php:195
169
+ msgid "ERROR: Can`t find original Image in Database!"
170
+ msgstr "Hiba! Nem találom az eredeti képet az adatbázisban!"
171
+
172
+ #: ../functions/save.php:198
173
+ msgid "ERROR: Can`t find original Imagefile!"
174
+ msgstr "Hiba! Nem találom az eredeti képet a tárhelyen!"
175
+
176
+ #: ../functions/save.php:201
177
+ msgid "ERROR: Can`t find original Image-Metadata!"
178
+ msgstr "Hiba! Nem találom az eredeti képinformációkat."
179
+
180
+ #: ../functions/settings.php:16 ../functions/settings.php:30
181
+ msgid "Settings"
182
+ msgstr "Beállítások"
183
+
184
+ #: ../functions/settings.php:23
185
+ msgid "Crop Post Thumbnail Page"
186
+ msgstr "Kisképvágó oldal"
187
+
188
+ #: ../functions/settings.php:35
189
+ msgid "Save Changes"
190
+ msgstr "Módosítások mentése"
191
+
192
+ #: ../functions/settings.php:39
193
+ msgid "Support the plugin-author"
194
+ msgstr "Támogasd a bővitmény készítőjét"
195
+
196
+ #: ../functions/settings.php:40
197
+ msgid ""
198
+ "You can support the plugin-author <br />(and let him know you love this "
199
+ "plugin) <br />by donating via Paypal. Thanks a lot!"
200
+ msgstr ""
201
+ "Támogathatod a bővitmény készítőjét <br /> (Így tudatva vele, hogy tetszik "
202
+ "ez a bővítmény) <br /> azzal, ha adományozol Paypalon. Köszönjük!"
203
+
204
+ #: ../functions/settings.php:60
205
+ msgid "Sizes and Posttypes"
206
+ msgstr "Méretek és bejegyzés típusok"
207
+
208
+ #: ../functions/settings.php:61
209
+ msgid ""
210
+ "Choose the image-sizes you want to hide. Choose a post-type to prevent any "
211
+ "use of the plugin for these entries."
212
+ msgstr ""
213
+ "Válaszd ki a képméreteket amiket nem szerkeszthetnek, vagy letilthatod az "
214
+ "egész bejegyzés típusra is a képvágást."
215
+
216
+ #: ../functions/settings.php:66
217
+ msgid ""
218
+ "Crop-Thumbnails is created to make cropping easy for the user. Often times "
219
+ "the user only need to crop one, in dependence of the post-type. But the "
220
+ "system will create also all other sizes. So, here you can select for what "
221
+ "post-type what sizes should be visible in the plugin interface."
222
+ msgstr ""
223
+ "A Crop-Thumbnails Plugin azzal a céllal készült, hogy kicsit kibővítse a "
224
+ "WordPress amúgy remek képkezelőjét. Bár a rendszer a feltöltött képeket "
225
+ "átméretezi és méretre vágja amiket a magfunkciók és a sablonkészítők "
226
+ "biztosítottak ám időnként előfordul, hogy nem sikerült túl szerencsésre az "
227
+ "automatikus vágás. Ezzel a bővítménnyel beállíthatjuk, hogy a felhasználók "
228
+ "mely méreteken és/ vagy bejegyzési típusoknál használhatják."
229
+
230
+ #: ../functions/settings.php:67
231
+ msgid ""
232
+ "Crop-Thumbnails will only show croped images - sizes with no crop will "
233
+ "always be hidden."
234
+ msgstr ""
235
+ "A Képvágó mindíg a vágott méreteket mutatja. Az eredeti \"nyers\" nyers "
236
+ "képeket nem."
lang/cpt_lang-nl_NL.po CHANGED
@@ -1,300 +1,300 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Crop-Post-Thumbnails\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-10-08 00:33+0100\n"
6
- "PO-Revision-Date: 2013-11-11 16:50+0100\n"
7
- "Last-Translator: Max Gruson <mgruson@live.nl>\n"
8
- "Language-Team: \n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-KeywordsList: __;_e;esc_attr_e;esc_attr__;esc_html_e\n"
13
- "X-Poedit-Basepath: .\n"
14
- "X-Generator: Poedit 1.5.7\n"
15
- "X-Poedit-SearchPath-0: ..\n"
16
-
17
- #: ../crop-thumbnails.php:34
18
- msgid "Crop your thumbnails, the easy way."
19
- msgstr "Snijd de thumbnails bij op een makkelijke manier."
20
-
21
- #: ../functions/editor.php:25
22
- msgid "You are not allowed to do this."
23
- msgstr "Je hebt geen toestemming dit te doen."
24
-
25
- #: ../functions/editor.php:41
26
- msgid "No featured Image set for this post until now."
27
- msgstr "Er is nog geen Uitgelichte afbeelding ingesteld tot nu toe."
28
-
29
- #: ../functions/editor.php:45
30
- msgid "An error happend!"
31
- msgstr "Er heeft een error plaatsgevonden!"
32
-
33
- #: ../functions/editor.php:78 ../functions/editor.php:204
34
- msgid "Cropping is disabled for this post-type."
35
- msgstr "Bijsnijden is uitgeschakeld voor dit berichttype."
36
-
37
- #: ../functions/editor.php:80
38
- msgid "No images in this post yet. You have to upload some via upload dialog."
39
- msgstr ""
40
- "Er zijn nog geen afbeeldingen in dit bericht. Je kunt afbeeldingen uploaden "
41
- "via het upload scherm."
42
-
43
- #: ../functions/editor.php:101
44
- msgid "Choose the image you want to crop."
45
- msgstr "Kies de afbeelding die je bij wilt snijden."
46
-
47
- #: ../functions/editor.php:107
48
- msgid "Post Thumbnail"
49
- msgstr "Bericht afbeelding."
50
-
51
- #: ../functions/editor.php:107
52
- #, php-format
53
- msgid "Image %d"
54
- msgstr "Afbeelding %d"
55
-
56
- #: ../functions/editor.php:180
57
- msgid "bug - this case shouldnt be happend"
58
- msgstr "Bug - Dit zou niet plaatsgevonden moeten hebben."
59
-
60
- #: ../functions/editor.php:181
61
- msgid ""
62
- "Warning: the original image is to small to be cropped in good quality with "
63
- "this thumbnail-size."
64
- msgstr ""
65
- "Waarschuwing: de originele afbeelding is te klein om met behoud van "
66
- "kwaliteit bijgesneden te kunnen worden tot deze grootte."
67
-
68
- #: ../functions/editor.php:182
69
- msgid "First, select one image. Then, click once again."
70
- msgstr "Selecteer eerst een afbeelding. Klik vervolgens opnieuw."
71
-
72
- #: ../functions/editor.php:209
73
- msgid "back to image-list"
74
- msgstr "Keer terug naar de lijst met afbeeldingen"
75
-
76
- #: ../functions/editor.php:210
77
- msgid "Please wait until the Images are cropped."
78
- msgstr "Wacht a.u.b. tot de afbeeldingen zijn bijgesneden."
79
-
80
- #: ../functions/editor.php:213
81
- msgid "Raw"
82
- msgstr "Volledig"
83
-
84
- #: ../functions/editor.php:213 ../functions/editor.php:279
85
- msgid "pixel"
86
- msgstr "pixels"
87
-
88
- #: ../functions/editor.php:215
89
- msgid "save crop"
90
- msgstr "Bijgesneden afbeelding opslaan"
91
-
92
- #: ../functions/editor.php:216
93
- msgid "Quick-Instructions"
94
- msgstr "Korte instructie"
95
-
96
- #: ../functions/editor.php:218
97
- msgid "Step 1: Choose an image from the right."
98
- msgstr "Stap 1: Kies een afbeelding aan de rechterkant van dit scherm."
99
-
100
- #: ../functions/editor.php:219
101
- msgid ""
102
- "Step 2: Use the mouse change the size of the rectangle on the image above."
103
- msgstr ""
104
- "Stap 2: Gebruik de muis om de grootte van de rechthoek in de afbeelding "
105
- "hierboven aan te passen."
106
-
107
- #: ../functions/editor.php:220
108
- msgid "Step 3: Click on \"save crop\"."
109
- msgstr "Stap 3: Klik op \"bijgesneden afbeelding opslaan\"."
110
-
111
- #: ../functions/editor.php:225
112
- msgid "select images with same ratio at once"
113
- msgstr "Selecteer afbeeldingen met eenzelfde aspect-ratio tegelijkertijd"
114
-
115
- #: ../functions/editor.php:226
116
- msgid "deselect all"
117
- msgstr "Deselecteer alles"
118
-
119
- #: ../functions/editor.php:262
120
- msgid "cropped"
121
- msgstr "Bijgesneden"
122
-
123
- #: ../functions/editor.php:271
124
- msgid "maximum"
125
- msgstr "Maximum"
126
-
127
- #: ../functions/editor.php:286
128
- msgid "Original image to small for good crop-quality!"
129
- msgstr ""
130
- "De originele afbeelding is te klein om met goede kwaliteit bij te snijden!"
131
-
132
- #: ../functions/editor.php:292
133
- msgid "Dimensions:"
134
- msgstr "Grootte:"
135
-
136
- #: ../functions/editor.php:293
137
- msgid "Ratio:"
138
- msgstr "Aspect-ratio:"
139
-
140
- #: ../functions/editor.php:499
141
- msgid "Crop Thumbnails"
142
- msgstr "Snijd thumbnails bij"
143
-
144
- #: ../functions/editor.php:503
145
- msgid "Crop Featured Image"
146
- msgstr "Snijd uitgelichte afbeelding bij"
147
-
148
- #: ../functions/editor.php:517
149
- msgid "Crop Thumbnail"
150
- msgstr "Snijd thumbnail bij"
151
-
152
- #: ../functions/save.php:105
153
- #, php-format
154
- msgid "Cant generate filesize \"%s\"."
155
- msgstr "Kan de bestandsgrootte \"%s\" niet aanmaken."
156
-
157
- #: ../functions/save.php:112
158
- msgid "Cant copy temporary file to media-library."
159
- msgstr ""
160
- "Het tijdelijke bestand kan niet gekopieerd worden naar de mediabibliotheek."
161
-
162
- #: ../functions/save.php:116
163
- msgid "Cant delete temporary file."
164
- msgstr "Het tijdelijke bestand kan niet verwijderd worden."
165
-
166
- #: ../functions/save.php:204
167
- msgid "ERROR: Security Check failed (maybe a timeout - please try again)."
168
- msgstr ""
169
- "ERROR: Beveiligingscheck is mislukt (dit is mogelijk een timeout - probeer "
170
- "het opnieuw)."
171
-
172
- #: ../functions/save.php:208
173
- msgid "ERROR: Submitted data are not complete."
174
- msgstr "ERROR: Toegevoegde data is niet volledig!"
175
-
176
- #: ../functions/save.php:216
177
- msgid "A cropping with this dimensions on these Image ist not possible."
178
- msgstr ""
179
- "Het bijsnijden met deze afmetingen is niet mogelijk bij deze afbeelding."
180
-
181
- #: ../functions/save.php:227
182
- msgid "ERROR: Can`t find original Image in Database!"
183
- msgstr ""
184
- "ERROR: De originele afbeelding kan niet in de database gevonden worden!"
185
-
186
- #: ../functions/save.php:230
187
- msgid "ERROR: Can`t find original Imagefile!"
188
- msgstr "ERROR: De originele afbeelding kan niet gevonden worden!"
189
-
190
- #: ../functions/save.php:233
191
- msgid "ERROR: Can`t find original Image-Metadata!"
192
- msgstr ""
193
- "ERROR: De originele metadata van de de afbeelding kunnen niet gevonden "
194
- "worden!"
195
-
196
- #: ../functions/settings.php:24 ../functions/settings.php:38
197
- msgid "Settings"
198
- msgstr "Instellingen"
199
-
200
- #: ../functions/settings.php:31
201
- msgid "Crop Post Thumbnail Page"
202
- msgstr "Bericht thumbnail bijsnijd pagina"
203
-
204
- #: ../functions/settings.php:44
205
- msgid "Save Changes"
206
- msgstr "Sla veranderingen op"
207
-
208
- #: ../functions/settings.php:49
209
- msgid "Support the plugin-author"
210
- msgstr "Ondersteun de pluginontwikkelaar"
211
-
212
- #: ../functions/settings.php:50
213
- msgid ""
214
- "You can support the plugin-author <br />(and let him know you love this "
215
- "plugin) <br />by donating via Paypal. Thanks a lot!"
216
- msgstr ""
217
- "Je kunt de pluginontwikkelaar ondersteunen <br /> (en hem laten weten dat je "
218
- "deze plugin gaaf vindt) <br /> door te doneren via Paypal. Alvast bedankt!"
219
-
220
- #: ../functions/settings.php:72
221
- msgid "Sizes and Posttypes"
222
- msgstr "Afbeeldingsgroottes en berichttypes"
223
-
224
- #: ../functions/settings.php:73
225
- msgid ""
226
- "Choose the image-sizes you want to hide. Choose a post-type to prevent any "
227
- "use of the plugin for these entries."
228
- msgstr ""
229
- "Kies de afbeeldingsgroottes die je wilt verbergen. Kies een berichttype om "
230
- "elk gebruik van de plugin daarbij te voorkomen."
231
-
232
- #: ../functions/settings.php:81
233
- msgid "Developer Settings"
234
- msgstr "Opties voor ontwikkelaars"
235
-
236
- #: ../functions/settings.php:83
237
- msgid "Enable JS-Debug."
238
- msgstr "Zet JS-Debug aan."
239
-
240
- #: ../functions/settings.php:85
241
- msgid "Enable Data-Debug."
242
- msgstr "Zet Data-Debug aan."
243
-
244
- #: ../functions/settings.php:90
245
- msgid ""
246
- "Crop-Thumbnails is created to make cropping easy for the user. Often times "
247
- "the user only need to crop one, in dependence of the post-type. But the "
248
- "system will create also all other sizes. So, here you can select for what "
249
- "post-type what sizes should be visible in the plugin interface."
250
- msgstr ""
251
- "Crop-Thumbnails is gemaakt om het bijsnijden van afbeeldingen makkelijker te "
252
- "maken voor de gebruiker. Het komt vaak voor dat de gebruiker slechts naar "
253
- "één enkele grootte moet bijsnijden, afhankelijk van het berichttype. Ondanks "
254
- "dat maakt WordPress ook andere groottes aan. Daarom kun je hier selecteren "
255
- "welke afbeeldingsgrootte bij welk berichttype zichtbaar moet zijn in het "
256
- "menu van de plugin."
257
-
258
- #: ../functions/settings.php:91
259
- msgid ""
260
- "Crop-Thumbnails will only show croped images - sizes with no crop will "
261
- "always be hidden."
262
- msgstr ""
263
- "Crop-Thumbnails laat alleen bijgesneden afbeeldingen zien. Afbeeldingen die "
264
- "niet bijgesneden zijn zullen altijd verborgen blijven."
265
-
266
- #: ../functions/settings.php:146
267
- msgid ""
268
- "ATTENTION: be aware that you can break things, when you activate this. When "
269
- "activated your are able to cut those images to a spezific dimension that are "
270
- "not cropped. The name of the image will not change. You should be extra "
271
- "carefull when:"
272
- msgstr ""
273
- "LET OP: Het is mogelijk dat er dingen misgaan als je deze optie activeert. "
274
- "Op het moment dat je dit activeert kun je afbeeldingen bijsnijden tot een "
275
- "specifieke grootte die niet oorspronkelijk bijgesneden zijn. De naam van de "
276
- "afbeelding zal niet veranderen. Je moet extra voorzichtig zijn als:"
277
-
278
- #: ../functions/settings.php:148
279
- msgid ""
280
- "you had inserted the image before on any page or post. (There may be height "
281
- "and width stored directly in the page-content.)"
282
- msgstr ""
283
- "Je hebt de afbeelding al eerder toegevoegd in een pagina of bericht. (Er kan "
284
- "een hoogte en breedte direct aangegeven zijn in de inhoud.)"
285
-
286
- #: ../functions/settings.php:149
287
- msgid ""
288
- "you use a plugin that expect the original image size. (The original image-"
289
- "size is also \"stored\" in the filename.)"
290
- msgstr ""
291
- "Je gebruikt een plugin die de originele afbeeldingsgroottes verwacht. (De "
292
- "oorspronkelijke afbeeldingsgrootte is ook \"opgeslagen\" in de bestandsnaam.)"
293
-
294
- #: ../functions/settings.php:151
295
- msgid ""
296
- "The \"full\" image-size will never be cropped, otherwise you are not able to "
297
- "restore any image-size."
298
- msgstr ""
299
- "De \"ful'\" afbeeldingsgrootte zal nooit bijgesneden worden, anders kunnen "
300
- "afbeeldingsgroottes niet hersteld worden."
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Crop-Post-Thumbnails\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-10-08 00:33+0100\n"
6
+ "PO-Revision-Date: 2013-11-11 16:50+0100\n"
7
+ "Last-Translator: Max Gruson <mgruson@live.nl>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: __;_e;esc_attr_e;esc_attr__;esc_html_e\n"
13
+ "X-Poedit-Basepath: .\n"
14
+ "X-Generator: Poedit 1.5.7\n"
15
+ "X-Poedit-SearchPath-0: ..\n"
16
+
17
+ #: ../crop-thumbnails.php:34
18
+ msgid "Crop your thumbnails, the easy way."
19
+ msgstr "Snijd de thumbnails bij op een makkelijke manier."
20
+
21
+ #: ../functions/editor.php:25
22
+ msgid "You are not allowed to do this."
23
+ msgstr "Je hebt geen toestemming dit te doen."
24
+
25
+ #: ../functions/editor.php:41
26
+ msgid "No featured Image set for this post until now."
27
+ msgstr "Er is nog geen Uitgelichte afbeelding ingesteld tot nu toe."
28
+
29
+ #: ../functions/editor.php:45
30
+ msgid "An error happend!"
31
+ msgstr "Er heeft een error plaatsgevonden!"
32
+
33
+ #: ../functions/editor.php:78 ../functions/editor.php:204
34
+ msgid "Cropping is disabled for this post-type."
35
+ msgstr "Bijsnijden is uitgeschakeld voor dit berichttype."
36
+
37
+ #: ../functions/editor.php:80
38
+ msgid "No images in this post yet. You have to upload some via upload dialog."
39
+ msgstr ""
40
+ "Er zijn nog geen afbeeldingen in dit bericht. Je kunt afbeeldingen uploaden "
41
+ "via het upload scherm."
42
+
43
+ #: ../functions/editor.php:101
44
+ msgid "Choose the image you want to crop."
45
+ msgstr "Kies de afbeelding die je bij wilt snijden."
46
+
47
+ #: ../functions/editor.php:107
48
+ msgid "Post Thumbnail"
49
+ msgstr "Bericht afbeelding."
50
+
51
+ #: ../functions/editor.php:107
52
+ #, php-format
53
+ msgid "Image %d"
54
+ msgstr "Afbeelding %d"
55
+
56
+ #: ../functions/editor.php:180
57
+ msgid "bug - this case shouldnt be happend"
58
+ msgstr "Bug - Dit zou niet plaatsgevonden moeten hebben."
59
+
60
+ #: ../functions/editor.php:181
61
+ msgid ""
62
+ "Warning: the original image is to small to be cropped in good quality with "
63
+ "this thumbnail-size."
64
+ msgstr ""
65
+ "Waarschuwing: de originele afbeelding is te klein om met behoud van "
66
+ "kwaliteit bijgesneden te kunnen worden tot deze grootte."
67
+
68
+ #: ../functions/editor.php:182
69
+ msgid "First, select one image. Then, click once again."
70
+ msgstr "Selecteer eerst een afbeelding. Klik vervolgens opnieuw."
71
+
72
+ #: ../functions/editor.php:209
73
+ msgid "back to image-list"
74
+ msgstr "Keer terug naar de lijst met afbeeldingen"
75
+
76
+ #: ../functions/editor.php:210
77
+ msgid "Please wait until the Images are cropped."
78
+ msgstr "Wacht a.u.b. tot de afbeeldingen zijn bijgesneden."
79
+
80
+ #: ../functions/editor.php:213
81
+ msgid "Raw"
82
+ msgstr "Volledig"
83
+
84
+ #: ../functions/editor.php:213 ../functions/editor.php:279
85
+ msgid "pixel"
86
+ msgstr "pixels"
87
+
88
+ #: ../functions/editor.php:215
89
+ msgid "save crop"
90
+ msgstr "Bijgesneden afbeelding opslaan"
91
+
92
+ #: ../functions/editor.php:216
93
+ msgid "Quick-Instructions"
94
+ msgstr "Korte instructie"
95
+
96
+ #: ../functions/editor.php:218
97
+ msgid "Step 1: Choose an image from the right."
98
+ msgstr "Stap 1: Kies een afbeelding aan de rechterkant van dit scherm."
99
+
100
+ #: ../functions/editor.php:219
101
+ msgid ""
102
+ "Step 2: Use the mouse change the size of the rectangle on the image above."
103
+ msgstr ""
104
+ "Stap 2: Gebruik de muis om de grootte van de rechthoek in de afbeelding "
105
+ "hierboven aan te passen."
106
+
107
+ #: ../functions/editor.php:220
108
+ msgid "Step 3: Click on \"save crop\"."
109
+ msgstr "Stap 3: Klik op \"bijgesneden afbeelding opslaan\"."
110
+
111
+ #: ../functions/editor.php:225
112
+ msgid "select images with same ratio at once"
113
+ msgstr "Selecteer afbeeldingen met eenzelfde aspect-ratio tegelijkertijd"
114
+
115
+ #: ../functions/editor.php:226
116
+ msgid "deselect all"
117
+ msgstr "Deselecteer alles"
118
+
119
+ #: ../functions/editor.php:262
120
+ msgid "cropped"
121
+ msgstr "Bijgesneden"
122
+
123
+ #: ../functions/editor.php:271
124
+ msgid "maximum"
125
+ msgstr "Maximum"
126
+
127
+ #: ../functions/editor.php:286
128
+ msgid "Original image to small for good crop-quality!"
129
+ msgstr ""
130
+ "De originele afbeelding is te klein om met goede kwaliteit bij te snijden!"
131
+
132
+ #: ../functions/editor.php:292
133
+ msgid "Dimensions:"
134
+ msgstr "Grootte:"
135
+
136
+ #: ../functions/editor.php:293
137
+ msgid "Ratio:"
138
+ msgstr "Aspect-ratio:"
139
+
140
+ #: ../functions/editor.php:499
141
+ msgid "Crop Thumbnails"
142
+ msgstr "Snijd thumbnails bij"
143
+
144
+ #: ../functions/editor.php:503
145
+ msgid "Crop Featured Image"
146
+ msgstr "Snijd uitgelichte afbeelding bij"
147
+
148
+ #: ../functions/editor.php:517
149
+ msgid "Crop Thumbnail"
150
+ msgstr "Snijd thumbnail bij"
151
+
152
+ #: ../functions/save.php:105
153
+ #, php-format
154
+ msgid "Cant generate filesize \"%s\"."
155
+ msgstr "Kan de bestandsgrootte \"%s\" niet aanmaken."
156
+
157
+ #: ../functions/save.php:112
158
+ msgid "Cant copy temporary file to media-library."
159
+ msgstr ""
160
+ "Het tijdelijke bestand kan niet gekopieerd worden naar de mediabibliotheek."
161
+
162
+ #: ../functions/save.php:116
163
+ msgid "Cant delete temporary file."
164
+ msgstr "Het tijdelijke bestand kan niet verwijderd worden."
165
+
166
+ #: ../functions/save.php:204
167
+ msgid "ERROR: Security Check failed (maybe a timeout - please try again)."
168
+ msgstr ""
169
+ "ERROR: Beveiligingscheck is mislukt (dit is mogelijk een timeout - probeer "
170
+ "het opnieuw)."
171
+
172
+ #: ../functions/save.php:208
173
+ msgid "ERROR: Submitted data are not complete."
174
+ msgstr "ERROR: Toegevoegde data is niet volledig!"
175
+
176
+ #: ../functions/save.php:216
177
+ msgid "A cropping with this dimensions on these Image ist not possible."
178
+ msgstr ""
179
+ "Het bijsnijden met deze afmetingen is niet mogelijk bij deze afbeelding."
180
+
181
+ #: ../functions/save.php:227
182
+ msgid "ERROR: Can`t find original Image in Database!"
183
+ msgstr ""
184
+ "ERROR: De originele afbeelding kan niet in de database gevonden worden!"
185
+
186
+ #: ../functions/save.php:230
187
+ msgid "ERROR: Can`t find original Imagefile!"
188
+ msgstr "ERROR: De originele afbeelding kan niet gevonden worden!"
189
+
190
+ #: ../functions/save.php:233
191
+ msgid "ERROR: Can`t find original Image-Metadata!"
192
+ msgstr ""
193
+ "ERROR: De originele metadata van de de afbeelding kunnen niet gevonden "
194
+ "worden!"
195
+
196
+ #: ../functions/settings.php:24 ../functions/settings.php:38
197
+ msgid "Settings"
198
+ msgstr "Instellingen"
199
+
200
+ #: ../functions/settings.php:31
201
+ msgid "Crop Post Thumbnail Page"
202
+ msgstr "Bericht thumbnail bijsnijd pagina"
203
+
204
+ #: ../functions/settings.php:44
205
+ msgid "Save Changes"
206
+ msgstr "Sla veranderingen op"
207
+
208
+ #: ../functions/settings.php:49
209
+ msgid "Support the plugin-author"
210
+ msgstr "Ondersteun de pluginontwikkelaar"
211
+
212
+ #: ../functions/settings.php:50
213
+ msgid ""
214
+ "You can support the plugin-author <br />(and let him know you love this "
215
+ "plugin) <br />by donating via Paypal. Thanks a lot!"
216
+ msgstr ""
217
+ "Je kunt de pluginontwikkelaar ondersteunen <br /> (en hem laten weten dat je "
218
+ "deze plugin gaaf vindt) <br /> door te doneren via Paypal. Alvast bedankt!"
219
+
220
+ #: ../functions/settings.php:72
221
+ msgid "Sizes and Posttypes"
222
+ msgstr "Afbeeldingsgroottes en berichttypes"
223
+
224
+ #: ../functions/settings.php:73
225
+ msgid ""
226
+ "Choose the image-sizes you want to hide. Choose a post-type to prevent any "
227
+ "use of the plugin for these entries."
228
+ msgstr ""
229
+ "Kies de afbeeldingsgroottes die je wilt verbergen. Kies een berichttype om "
230
+ "elk gebruik van de plugin daarbij te voorkomen."
231
+
232
+ #: ../functions/settings.php:81
233
+ msgid "Developer Settings"
234
+ msgstr "Opties voor ontwikkelaars"
235
+
236
+ #: ../functions/settings.php:83
237
+ msgid "Enable JS-Debug."
238
+ msgstr "Zet JS-Debug aan."
239
+
240
+ #: ../functions/settings.php:85
241
+ msgid "Enable Data-Debug."
242
+ msgstr "Zet Data-Debug aan."
243
+
244
+ #: ../functions/settings.php:90
245
+ msgid ""
246
+ "Crop-Thumbnails is created to make cropping easy for the user. Often times "
247
+ "the user only need to crop one, in dependence of the post-type. But the "
248
+ "system will create also all other sizes. So, here you can select for what "
249
+ "post-type what sizes should be visible in the plugin interface."
250
+ msgstr ""
251
+ "Crop-Thumbnails is gemaakt om het bijsnijden van afbeeldingen makkelijker te "
252
+ "maken voor de gebruiker. Het komt vaak voor dat de gebruiker slechts naar "
253
+ "één enkele grootte moet bijsnijden, afhankelijk van het berichttype. Ondanks "
254
+ "dat maakt WordPress ook andere groottes aan. Daarom kun je hier selecteren "
255
+ "welke afbeeldingsgrootte bij welk berichttype zichtbaar moet zijn in het "
256
+ "menu van de plugin."
257
+
258
+ #: ../functions/settings.php:91
259
+ msgid ""
260
+ "Crop-Thumbnails will only show croped images - sizes with no crop will "
261
+ "always be hidden."
262
+ msgstr ""
263
+ "Crop-Thumbnails laat alleen bijgesneden afbeeldingen zien. Afbeeldingen die "
264
+ "niet bijgesneden zijn zullen altijd verborgen blijven."
265
+
266
+ #: ../functions/settings.php:146
267
+ msgid ""
268
+ "ATTENTION: be aware that you can break things, when you activate this. When "
269
+ "activated your are able to cut those images to a spezific dimension that are "
270
+ "not cropped. The name of the image will not change. You should be extra "
271
+ "carefull when:"
272
+ msgstr ""
273
+ "LET OP: Het is mogelijk dat er dingen misgaan als je deze optie activeert. "
274
+ "Op het moment dat je dit activeert kun je afbeeldingen bijsnijden tot een "
275
+ "specifieke grootte die niet oorspronkelijk bijgesneden zijn. De naam van de "
276
+ "afbeelding zal niet veranderen. Je moet extra voorzichtig zijn als:"
277
+
278
+ #: ../functions/settings.php:148
279
+ msgid ""
280
+ "you had inserted the image before on any page or post. (There may be height "
281
+ "and width stored directly in the page-content.)"
282
+ msgstr ""
283
+ "Je hebt de afbeelding al eerder toegevoegd in een pagina of bericht. (Er kan "
284
+ "een hoogte en breedte direct aangegeven zijn in de inhoud.)"
285
+
286
+ #: ../functions/settings.php:149
287
+ msgid ""
288
+ "you use a plugin that expect the original image size. (The original image-"
289
+ "size is also \"stored\" in the filename.)"
290
+ msgstr ""
291
+ "Je gebruikt een plugin die de originele afbeeldingsgroottes verwacht. (De "
292
+ "oorspronkelijke afbeeldingsgrootte is ook \"opgeslagen\" in de bestandsnaam.)"
293
+
294
+ #: ../functions/settings.php:151
295
+ msgid ""
296
+ "The \"full\" image-size will never be cropped, otherwise you are not able to "
297
+ "restore any image-size."
298
+ msgstr ""
299
+ "De \"ful'\" afbeeldingsgrootte zal nooit bijgesneden worden, anders kunnen "
300
+ "afbeeldingsgroottes niet hersteld worden."
license.txt CHANGED
@@ -1,674 +1,674 @@
1
- GNU GENERAL PUBLIC LICENSE
2
- Version 3, 29 June 2007
3
-
4
- Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
5
- Everyone is permitted to copy and distribute verbatim copies
6
- of this license document, but changing it is not allowed.
7
-
8
- Preamble
9
-
10
- The GNU General Public License is a free, copyleft license for
11
- software and other kinds of works.
12
-
13
- The licenses for most software and other practical works are designed
14
- to take away your freedom to share and change the works. By contrast,
15
- the GNU General Public License is intended to guarantee your freedom to
16
- share and change all versions of a program--to make sure it remains free
17
- software for all its users. We, the Free Software Foundation, use the
18
- GNU General Public License for most of our software; it applies also to
19
- any other work released this way by its authors. You can apply it to
20
- your programs, too.
21
-
22
- When we speak of free software, we are referring to freedom, not
23
- price. Our General Public Licenses are designed to make sure that you
24
- have the freedom to distribute copies of free software (and charge for
25
- them if you wish), that you receive source code or can get it if you
26
- want it, that you can change the software or use pieces of it in new
27
- free programs, and that you know you can do these things.
28
-
29
- To protect your rights, we need to prevent others from denying you
30
- these rights or asking you to surrender the rights. Therefore, you have
31
- certain responsibilities if you distribute copies of the software, or if
32
- you modify it: responsibilities to respect the freedom of others.
33
-
34
- For example, if you distribute copies of such a program, whether
35
- gratis or for a fee, you must pass on to the recipients the same
36
- freedoms that you received. You must make sure that they, too, receive
37
- or can get the source code. And you must show them these terms so they
38
- know their rights.
39
-
40
- Developers that use the GNU GPL protect your rights with two steps:
41
- (1) assert copyright on the software, and (2) offer you this License
42
- giving you legal permission to copy, distribute and/or modify it.
43
-
44
- For the developers' and authors' protection, the GPL clearly explains
45
- that there is no warranty for this free software. For both users' and
46
- authors' sake, the GPL requires that modified versions be marked as
47
- changed, so that their problems will not be attributed erroneously to
48
- authors of previous versions.
49
-
50
- Some devices are designed to deny users access to install or run
51
- modified versions of the software inside them, although the manufacturer
52
- can do so. This is fundamentally incompatible with the aim of
53
- protecting users' freedom to change the software. The systematic
54
- pattern of such abuse occurs in the area of products for individuals to
55
- use, which is precisely where it is most unacceptable. Therefore, we
56
- have designed this version of the GPL to prohibit the practice for those
57
- products. If such problems arise substantially in other domains, we
58
- stand ready to extend this provision to those domains in future versions
59
- of the GPL, as needed to protect the freedom of users.
60
-
61
- Finally, every program is threatened constantly by software patents.
62
- States should not allow patents to restrict development and use of
63
- software on general-purpose computers, but in those that do, we wish to
64
- avoid the special danger that patents applied to a free program could
65
- make it effectively proprietary. To prevent this, the GPL assures that
66
- patents cannot be used to render the program non-free.
67
-
68
- The precise terms and conditions for copying, distribution and
69
- modification follow.
70
-
71
- TERMS AND CONDITIONS
72
-
73
- 0. Definitions.
74
-
75
- "This License" refers to version 3 of the GNU General Public License.
76
-
77
- "Copyright" also means copyright-like laws that apply to other kinds of
78
- works, such as semiconductor masks.
79
-
80
- "The Program" refers to any copyrightable work licensed under this
81
- License. Each licensee is addressed as "you". "Licensees" and
82
- "recipients" may be individuals or organizations.
83
-
84
- To "modify" a work means to copy from or adapt all or part of the work
85
- in a fashion requiring copyright permission, other than the making of an
86
- exact copy. The resulting work is called a "modified version" of the
87
- earlier work or a work "based on" the earlier work.
88
-
89
- A "covered work" means either the unmodified Program or a work based
90
- on the Program.
91
-
92
- To "propagate" a work means to do anything with it that, without
93
- permission, would make you directly or secondarily liable for
94
- infringement under applicable copyright law, except executing it on a
95
- computer or modifying a private copy. Propagation includes copying,
96
- distribution (with or without modification), making available to the
97
- public, and in some countries other activities as well.
98
-
99
- To "convey" a work means any kind of propagation that enables other
100
- parties to make or receive copies. Mere interaction with a user through
101
- a computer network, with no transfer of a copy, is not conveying.
102
-
103
- An interactive user interface displays "Appropriate Legal Notices"
104
- to the extent that it includes a convenient and prominently visible
105
- feature that (1) displays an appropriate copyright notice, and (2)
106
- tells the user that there is no warranty for the work (except to the
107
- extent that warranties are provided), that licensees may convey the
108
- work under this License, and how to view a copy of this License. If
109
- the interface presents a list of user commands or options, such as a
110
- menu, a prominent item in the list meets this criterion.
111
-
112
- 1. Source Code.
113
-
114
- The "source code" for a work means the preferred form of the work
115
- for making modifications to it. "Object code" means any non-source
116
- form of a work.
117
-
118
- A "Standard Interface" means an interface that either is an official
119
- standard defined by a recognized standards body, or, in the case of
120
- interfaces specified for a particular programming language, one that
121
- is widely used among developers working in that language.
122
-
123
- The "System Libraries" of an executable work include anything, other
124
- than the work as a whole, that (a) is included in the normal form of
125
- packaging a Major Component, but which is not part of that Major
126
- Component, and (b) serves only to enable use of the work with that
127
- Major Component, or to implement a Standard Interface for which an
128
- implementation is available to the public in source code form. A
129
- "Major Component", in this context, means a major essential component
130
- (kernel, window system, and so on) of the specific operating system
131
- (if any) on which the executable work runs, or a compiler used to
132
- produce the work, or an object code interpreter used to run it.
133
-
134
- The "Corresponding Source" for a work in object code form means all
135
- the source code needed to generate, install, and (for an executable
136
- work) run the object code and to modify the work, including scripts to
137
- control those activities. However, it does not include the work's
138
- System Libraries, or general-purpose tools or generally available free
139
- programs which are used unmodified in performing those activities but
140
- which are not part of the work. For example, Corresponding Source
141
- includes interface definition files associated with source files for
142
- the work, and the source code for shared libraries and dynamically
143
- linked subprograms that the work is specifically designed to require,
144
- such as by intimate data communication or control flow between those
145
- subprograms and other parts of the work.
146
-
147
- The Corresponding Source need not include anything that users
148
- can regenerate automatically from other parts of the Corresponding
149
- Source.
150
-
151
- The Corresponding Source for a work in source code form is that
152
- same work.
153
-
154
- 2. Basic Permissions.
155
-
156
- All rights granted under this License are granted for the term of
157
- copyright on the Program, and are irrevocable provided the stated
158
- conditions are met. This License explicitly affirms your unlimited
159
- permission to run the unmodified Program. The output from running a
160
- covered work is covered by this License only if the output, given its
161
- content, constitutes a covered work. This License acknowledges your
162
- rights of fair use or other equivalent, as provided by copyright law.
163
-
164
- You may make, run and propagate covered works that you do not
165
- convey, without conditions so long as your license otherwise remains
166
- in force. You may convey covered works to others for the sole purpose
167
- of having them make modifications exclusively for you, or provide you
168
- with facilities for running those works, provided that you comply with
169
- the terms of this License in conveying all material for which you do
170
- not control copyright. Those thus making or running the covered works
171
- for you must do so exclusively on your behalf, under your direction
172
- and control, on terms that prohibit them from making any copies of
173
- your copyrighted material outside their relationship with you.
174
-
175
- Conveying under any other circumstances is permitted solely under
176
- the conditions stated below. Sublicensing is not allowed; section 10
177
- makes it unnecessary.
178
-
179
- 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180
-
181
- No covered work shall be deemed part of an effective technological
182
- measure under any applicable law fulfilling obligations under article
183
- 11 of the WIPO copyright treaty adopted on 20 December 1996, or
184
- similar laws prohibiting or restricting circumvention of such
185
- measures.
186
-
187
- When you convey a covered work, you waive any legal power to forbid
188
- circumvention of technological measures to the extent such circumvention
189
- is effected by exercising rights under this License with respect to
190
- the covered work, and you disclaim any intention to limit operation or
191
- modification of the work as a means of enforcing, against the work's
192
- users, your or third parties' legal rights to forbid circumvention of
193
- technological measures.
194
-
195
- 4. Conveying Verbatim Copies.
196
-
197
- You may convey verbatim copies of the Program's source code as you
198
- receive it, in any medium, provided that you conspicuously and
199
- appropriately publish on each copy an appropriate copyright notice;
200
- keep intact all notices stating that this License and any
201
- non-permissive terms added in accord with section 7 apply to the code;
202
- keep intact all notices of the absence of any warranty; and give all
203
- recipients a copy of this License along with the Program.
204
-
205
- You may charge any price or no price for each copy that you convey,
206
- and you may offer support or warranty protection for a fee.
207
-
208
- 5. Conveying Modified Source Versions.
209
-
210
- You may convey a work based on the Program, or the modifications to
211
- produce it from the Program, in the form of source code under the
212
- terms of section 4, provided that you also meet all of these conditions:
213
-
214
- a) The work must carry prominent notices stating that you modified
215
- it, and giving a relevant date.
216
-
217
- b) The work must carry prominent notices stating that it is
218
- released under this License and any conditions added under section
219
- 7. This requirement modifies the requirement in section 4 to
220
- "keep intact all notices".
221
-
222
- c) You must license the entire work, as a whole, under this
223
- License to anyone who comes into possession of a copy. This
224
- License will therefore apply, along with any applicable section 7
225
- additional terms, to the whole of the work, and all its parts,
226
- regardless of how they are packaged. This License gives no
227
- permission to license the work in any other way, but it does not
228
- invalidate such permission if you have separately received it.
229
-
230
- d) If the work has interactive user interfaces, each must display
231
- Appropriate Legal Notices; however, if the Program has interactive
232
- interfaces that do not display Appropriate Legal Notices, your
233
- work need not make them do so.
234
-
235
- A compilation of a covered work with other separate and independent
236
- works, which are not by their nature extensions of the covered work,
237
- and which are not combined with it such as to form a larger program,
238
- in or on a volume of a storage or distribution medium, is called an
239
- "aggregate" if the compilation and its resulting copyright are not
240
- used to limit the access or legal rights of the compilation's users
241
- beyond what the individual works permit. Inclusion of a covered work
242
- in an aggregate does not cause this License to apply to the other
243
- parts of the aggregate.
244
-
245
- 6. Conveying Non-Source Forms.
246
-
247
- You may convey a covered work in object code form under the terms
248
- of sections 4 and 5, provided that you also convey the
249
- machine-readable Corresponding Source under the terms of this License,
250
- in one of these ways:
251
-
252
- a) Convey the object code in, or embodied in, a physical product
253
- (including a physical distribution medium), accompanied by the
254
- Corresponding Source fixed on a durable physical medium
255
- customarily used for software interchange.
256
-
257
- b) Convey the object code in, or embodied in, a physical product
258
- (including a physical distribution medium), accompanied by a
259
- written offer, valid for at least three years and valid for as
260
- long as you offer spare parts or customer support for that product
261
- model, to give anyone who possesses the object code either (1) a
262
- copy of the Corresponding Source for all the software in the
263
- product that is covered by this License, on a durable physical
264
- medium customarily used for software interchange, for a price no
265
- more than your reasonable cost of physically performing this
266
- conveying of source, or (2) access to copy the
267
- Corresponding Source from a network server at no charge.
268
-
269
- c) Convey individual copies of the object code with a copy of the
270
- written offer to provide the Corresponding Source. This
271
- alternative is allowed only occasionally and noncommercially, and
272
- only if you received the object code with such an offer, in accord
273
- with subsection 6b.
274
-
275
- d) Convey the object code by offering access from a designated
276
- place (gratis or for a charge), and offer equivalent access to the
277
- Corresponding Source in the same way through the same place at no
278
- further charge. You need not require recipients to copy the
279
- Corresponding Source along with the object code. If the place to
280
- copy the object code is a network server, the Corresponding Source
281
- may be on a different server (operated by you or a third party)
282
- that supports equivalent copying facilities, provided you maintain
283
- clear directions next to the object code saying where to find the
284
- Corresponding Source. Regardless of what server hosts the
285
- Corresponding Source, you remain obligated to ensure that it is
286
- available for as long as needed to satisfy these requirements.
287
-
288
- e) Convey the object code using peer-to-peer transmission, provided
289
- you inform other peers where the object code and Corresponding
290
- Source of the work are being offered to the general public at no
291
- charge under subsection 6d.
292
-
293
- A separable portion of the object code, whose source code is excluded
294
- from the Corresponding Source as a System Library, need not be
295
- included in conveying the object code work.
296
-
297
- A "User Product" is either (1) a "consumer product", which means any
298
- tangible personal property which is normally used for personal, family,
299
- or household purposes, or (2) anything designed or sold for incorporation
300
- into a dwelling. In determining whether a product is a consumer product,
301
- doubtful cases shall be resolved in favor of coverage. For a particular
302
- product received by a particular user, "normally used" refers to a
303
- typical or common use of that class of product, regardless of the status
304
- of the particular user or of the way in which the particular user
305
- actually uses, or expects or is expected to use, the product. A product
306
- is a consumer product regardless of whether the product has substantial
307
- commercial, industrial or non-consumer uses, unless such uses represent
308
- the only significant mode of use of the product.
309
-
310
- "Installation Information" for a User Product means any methods,
311
- procedures, authorization keys, or other information required to install
312
- and execute modified versions of a covered work in that User Product from
313
- a modified version of its Corresponding Source. The information must
314
- suffice to ensure that the continued functioning of the modified object
315
- code is in no case prevented or interfered with solely because
316
- modification has been made.
317
-
318
- If you convey an object code work under this section in, or with, or
319
- specifically for use in, a User Product, and the conveying occurs as
320
- part of a transaction in which the right of possession and use of the
321
- User Product is transferred to the recipient in perpetuity or for a
322
- fixed term (regardless of how the transaction is characterized), the
323
- Corresponding Source conveyed under this section must be accompanied
324
- by the Installation Information. But this requirement does not apply
325
- if neither you nor any third party retains the ability to install
326
- modified object code on the User Product (for example, the work has
327
- been installed in ROM).
328
-
329
- The requirement to provide Installation Information does not include a
330
- requirement to continue to provide support service, warranty, or updates
331
- for a work that has been modified or installed by the recipient, or for
332
- the User Product in which it has been modified or installed. Access to a
333
- network may be denied when the modification itself materially and
334
- adversely affects the operation of the network or violates the rules and
335
- protocols for communication across the network.
336
-
337
- Corresponding Source conveyed, and Installation Information provided,
338
- in accord with this section must be in a format that is publicly
339
- documented (and with an implementation available to the public in
340
- source code form), and must require no special password or key for
341
- unpacking, reading or copying.
342
-
343
- 7. Additional Terms.
344
-
345
- "Additional permissions" are terms that supplement the terms of this
346
- License by making exceptions from one or more of its conditions.
347
- Additional permissions that are applicable to the entire Program shall
348
- be treated as though they were included in this License, to the extent
349
- that they are valid under applicable law. If additional permissions
350
- apply only to part of the Program, that part may be used separately
351
- under those permissions, but the entire Program remains governed by
352
- this License without regard to the additional permissions.
353
-
354
- When you convey a copy of a covered work, you may at your option
355
- remove any additional permissions from that copy, or from any part of
356
- it. (Additional permissions may be written to require their own
357
- removal in certain cases when you modify the work.) You may place
358
- additional permissions on material, added by you to a covered work,
359
- for which you have or can give appropriate copyright permission.
360
-
361
- Notwithstanding any other provision of this License, for material you
362
- add to a covered work, you may (if authorized by the copyright holders of
363
- that material) supplement the terms of this License with terms:
364
-
365
- a) Disclaiming warranty or limiting liability differently from the
366
- terms of sections 15 and 16 of this License; or
367
-
368
- b) Requiring preservation of specified reasonable legal notices or
369
- author attributions in that material or in the Appropriate Legal
370
- Notices displayed by works containing it; or
371
-
372
- c) Prohibiting misrepresentation of the origin of that material, or
373
- requiring that modified versions of such material be marked in
374
- reasonable ways as different from the original version; or
375
-
376
- d) Limiting the use for publicity purposes of names of licensors or
377
- authors of the material; or
378
-
379
- e) Declining to grant rights under trademark law for use of some
380
- trade names, trademarks, or service marks; or
381
-
382
- f) Requiring indemnification of licensors and authors of that
383
- material by anyone who conveys the material (or modified versions of
384
- it) with contractual assumptions of liability to the recipient, for
385
- any liability that these contractual assumptions directly impose on
386
- those licensors and authors.
387
-
388
- All other non-permissive additional terms are considered "further
389
- restrictions" within the meaning of section 10. If the Program as you
390
- received it, or any part of it, contains a notice stating that it is
391
- governed by this License along with a term that is a further
392
- restriction, you may remove that term. If a license document contains
393
- a further restriction but permits relicensing or conveying under this
394
- License, you may add to a covered work material governed by the terms
395
- of that license document, provided that the further restriction does
396
- not survive such relicensing or conveying.
397
-
398
- If you add terms to a covered work in accord with this section, you
399
- must place, in the relevant source files, a statement of the
400
- additional terms that apply to those files, or a notice indicating
401
- where to find the applicable terms.
402
-
403
- Additional terms, permissive or non-permissive, may be stated in the
404
- form of a separately written license, or stated as exceptions;
405
- the above requirements apply either way.
406
-
407
- 8. Termination.
408
-
409
- You may not propagate or modify a covered work except as expressly
410
- provided under this License. Any attempt otherwise to propagate or
411
- modify it is void, and will automatically terminate your rights under
412
- this License (including any patent licenses granted under the third
413
- paragraph of section 11).
414
-
415
- However, if you cease all violation of this License, then your
416
- license from a particular copyright holder is reinstated (a)
417
- provisionally, unless and until the copyright holder explicitly and
418
- finally terminates your license, and (b) permanently, if the copyright
419
- holder fails to notify you of the violation by some reasonable means
420
- prior to 60 days after the cessation.
421
-
422
- Moreover, your license from a particular copyright holder is
423
- reinstated permanently if the copyright holder notifies you of the
424
- violation by some reasonable means, this is the first time you have
425
- received notice of violation of this License (for any work) from that
426
- copyright holder, and you cure the violation prior to 30 days after
427
- your receipt of the notice.
428
-
429
- Termination of your rights under this section does not terminate the
430
- licenses of parties who have received copies or rights from you under
431
- this License. If your rights have been terminated and not permanently
432
- reinstated, you do not qualify to receive new licenses for the same
433
- material under section 10.
434
-
435
- 9. Acceptance Not Required for Having Copies.
436
-
437
- You are not required to accept this License in order to receive or
438
- run a copy of the Program. Ancillary propagation of a covered work
439
- occurring solely as a consequence of using peer-to-peer transmission
440
- to receive a copy likewise does not require acceptance. However,
441
- nothing other than this License grants you permission to propagate or
442
- modify any covered work. These actions infringe copyright if you do
443
- not accept this License. Therefore, by modifying or propagating a
444
- covered work, you indicate your acceptance of this License to do so.
445
-
446
- 10. Automatic Licensing of Downstream Recipients.
447
-
448
- Each time you convey a covered work, the recipient automatically
449
- receives a license from the original licensors, to run, modify and
450
- propagate that work, subject to this License. You are not responsible
451
- for enforcing compliance by third parties with this License.
452
-
453
- An "entity transaction" is a transaction transferring control of an
454
- organization, or substantially all assets of one, or subdividing an
455
- organization, or merging organizations. If propagation of a covered
456
- work results from an entity transaction, each party to that
457
- transaction who receives a copy of the work also receives whatever
458
- licenses to the work the party's predecessor in interest had or could
459
- give under the previous paragraph, plus a right to possession of the
460
- Corresponding Source of the work from the predecessor in interest, if
461
- the predecessor has it or can get it with reasonable efforts.
462
-
463
- You may not impose any further restrictions on the exercise of the
464
- rights granted or affirmed under this License. For example, you may
465
- not impose a license fee, royalty, or other charge for exercise of
466
- rights granted under this License, and you may not initiate litigation
467
- (including a cross-claim or counterclaim in a lawsuit) alleging that
468
- any patent claim is infringed by making, using, selling, offering for
469
- sale, or importing the Program or any portion of it.
470
-
471
- 11. Patents.
472
-
473
- A "contributor" is a copyright holder who authorizes use under this
474
- License of the Program or a work on which the Program is based. The
475
- work thus licensed is called the contributor's "contributor version".
476
-
477
- A contributor's "essential patent claims" are all patent claims
478
- owned or controlled by the contributor, whether already acquired or
479
- hereafter acquired, that would be infringed by some manner, permitted
480
- by this License, of making, using, or selling its contributor version,
481
- but do not include claims that would be infringed only as a
482
- consequence of further modification of the contributor version. For
483
- purposes of this definition, "control" includes the right to grant
484
- patent sublicenses in a manner consistent with the requirements of
485
- this License.
486
-
487
- Each contributor grants you a non-exclusive, worldwide, royalty-free
488
- patent license under the contributor's essential patent claims, to
489
- make, use, sell, offer for sale, import and otherwise run, modify and
490
- propagate the contents of its contributor version.
491
-
492
- In the following three paragraphs, a "patent license" is any express
493
- agreement or commitment, however denominated, not to enforce a patent
494
- (such as an express permission to practice a patent or covenant not to
495
- sue for patent infringement). To "grant" such a patent license to a
496
- party means to make such an agreement or commitment not to enforce a
497
- patent against the party.
498
-
499
- If you convey a covered work, knowingly relying on a patent license,
500
- and the Corresponding Source of the work is not available for anyone
501
- to copy, free of charge and under the terms of this License, through a
502
- publicly available network server or other readily accessible means,
503
- then you must either (1) cause the Corresponding Source to be so
504
- available, or (2) arrange to deprive yourself of the benefit of the
505
- patent license for this particular work, or (3) arrange, in a manner
506
- consistent with the requirements of this License, to extend the patent
507
- license to downstream recipients. "Knowingly relying" means you have
508
- actual knowledge that, but for the patent license, your conveying the
509
- covered work in a country, or your recipient's use of the covered work
510
- in a country, would infringe one or more identifiable patents in that
511
- country that you have reason to believe are valid.
512
-
513
- If, pursuant to or in connection with a single transaction or
514
- arrangement, you convey, or propagate by procuring conveyance of, a
515
- covered work, and grant a patent license to some of the parties
516
- receiving the covered work authorizing them to use, propagate, modify
517
- or convey a specific copy of the covered work, then the patent license
518
- you grant is automatically extended to all recipients of the covered
519
- work and works based on it.
520
-
521
- A patent license is "discriminatory" if it does not include within
522
- the scope of its coverage, prohibits the exercise of, or is
523
- conditioned on the non-exercise of one or more of the rights that are
524
- specifically granted under this License. You may not convey a covered
525
- work if you are a party to an arrangement with a third party that is
526
- in the business of distributing software, under which you make payment
527
- to the third party based on the extent of your activity of conveying
528
- the work, and under which the third party grants, to any of the
529
- parties who would receive the covered work from you, a discriminatory
530
- patent license (a) in connection with copies of the covered work
531
- conveyed by you (or copies made from those copies), or (b) primarily
532
- for and in connection with specific products or compilations that
533
- contain the covered work, unless you entered into that arrangement,
534
- or that patent license was granted, prior to 28 March 2007.
535
-
536
- Nothing in this License shall be construed as excluding or limiting
537
- any implied license or other defenses to infringement that may
538
- otherwise be available to you under applicable patent law.
539
-
540
- 12. No Surrender of Others' Freedom.
541
-
542
- If conditions are imposed on you (whether by court order, agreement or
543
- otherwise) that contradict the conditions of this License, they do not
544
- excuse you from the conditions of this License. If you cannot convey a
545
- covered work so as to satisfy simultaneously your obligations under this
546
- License and any other pertinent obligations, then as a consequence you may
547
- not convey it at all. For example, if you agree to terms that obligate you
548
- to collect a royalty for further conveying from those to whom you convey
549
- the Program, the only way you could satisfy both those terms and this
550
- License would be to refrain entirely from conveying the Program.
551
-
552
- 13. Use with the GNU Affero General Public License.
553
-
554
- Notwithstanding any other provision of this License, you have
555
- permission to link or combine any covered work with a work licensed
556
- under version 3 of the GNU Affero General Public License into a single
557
- combined work, and to convey the resulting work. The terms of this
558
- License will continue to apply to the part which is the covered work,
559
- but the special requirements of the GNU Affero General Public License,
560
- section 13, concerning interaction through a network will apply to the
561
- combination as such.
562
-
563
- 14. Revised Versions of this License.
564
-
565
- The Free Software Foundation may publish revised and/or new versions of
566
- the GNU General Public License from time to time. Such new versions will
567
- be similar in spirit to the present version, but may differ in detail to
568
- address new problems or concerns.
569
-
570
- Each version is given a distinguishing version number. If the
571
- Program specifies that a certain numbered version of the GNU General
572
- Public License "or any later version" applies to it, you have the
573
- option of following the terms and conditions either of that numbered
574
- version or of any later version published by the Free Software
575
- Foundation. If the Program does not specify a version number of the
576
- GNU General Public License, you may choose any version ever published
577
- by the Free Software Foundation.
578
-
579
- If the Program specifies that a proxy can decide which future
580
- versions of the GNU General Public License can be used, that proxy's
581
- public statement of acceptance of a version permanently authorizes you
582
- to choose that version for the Program.
583
-
584
- Later license versions may give you additional or different
585
- permissions. However, no additional obligations are imposed on any
586
- author or copyright holder as a result of your choosing to follow a
587
- later version.
588
-
589
- 15. Disclaimer of Warranty.
590
-
591
- THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592
- APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593
- HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594
- OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595
- THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596
- PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597
- IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598
- ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599
-
600
- 16. Limitation of Liability.
601
-
602
- IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603
- WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604
- THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605
- GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606
- USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607
- DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608
- PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609
- EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610
- SUCH DAMAGES.
611
-
612
- 17. Interpretation of Sections 15 and 16.
613
-
614
- If the disclaimer of warranty and limitation of liability provided
615
- above cannot be given local legal effect according to their terms,
616
- reviewing courts shall apply local law that most closely approximates
617
- an absolute waiver of all civil liability in connection with the
618
- Program, unless a warranty or assumption of liability accompanies a
619
- copy of the Program in return for a fee.
620
-
621
- END OF TERMS AND CONDITIONS
622
-
623
- How to Apply These Terms to Your New Programs
624
-
625
- If you develop a new program, and you want it to be of the greatest
626
- possible use to the public, the best way to achieve this is to make it
627
- free software which everyone can redistribute and change under these terms.
628
-
629
- To do so, attach the following notices to the program. It is safest
630
- to attach them to the start of each source file to most effectively
631
- state the exclusion of warranty; and each file should have at least
632
- the "copyright" line and a pointer to where the full notice is found.
633
-
634
- <one line to give the program's name and a brief idea of what it does.>
635
- Copyright (C) <year> <name of author>
636
-
637
- This program is free software: you can redistribute it and/or modify
638
- it under the terms of the GNU General Public License as published by
639
- the Free Software Foundation, either version 3 of the License, or
640
- (at your option) any later version.
641
-
642
- This program is distributed in the hope that it will be useful,
643
- but WITHOUT ANY WARRANTY; without even the implied warranty of
644
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
645
- GNU General Public License for more details.
646
-
647
- You should have received a copy of the GNU General Public License
648
- along with this program. If not, see <http://www.gnu.org/licenses/>.
649
-
650
- Also add information on how to contact you by electronic and paper mail.
651
-
652
- If the program does terminal interaction, make it output a short
653
- notice like this when it starts in an interactive mode:
654
-
655
- <program> Copyright (C) <year> <name of author>
656
- This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657
- This is free software, and you are welcome to redistribute it
658
- under certain conditions; type `show c' for details.
659
-
660
- The hypothetical commands `show w' and `show c' should show the appropriate
661
- parts of the General Public License. Of course, your program's commands
662
- might be different; for a GUI interface, you would use an "about box".
663
-
664
- You should also get your employer (if you work as a programmer) or school,
665
- if any, to sign a "copyright disclaimer" for the program, if necessary.
666
- For more information on this, and how to apply and follow the GNU GPL, see
667
- <http://www.gnu.org/licenses/>.
668
-
669
- The GNU General Public License does not permit incorporating your program
670
- into proprietary programs. If your program is a subroutine library, you
671
- may consider it more useful to permit linking proprietary applications with
672
- the library. If this is what you want to do, use the GNU Lesser General
673
- Public License instead of this License. But first, please read
674
  <http://www.gnu.org/philosophy/why-not-lgpl.html>.
1
+ GNU GENERAL PUBLIC LICENSE
2
+ Version 3, 29 June 2007
3
+
4
+ Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
5
+ Everyone is permitted to copy and distribute verbatim copies
6
+ of this license document, but changing it is not allowed.
7
+
8
+ Preamble
9
+
10
+ The GNU General Public License is a free, copyleft license for
11
+ software and other kinds of works.
12
+
13
+ The licenses for most software and other practical works are designed
14
+ to take away your freedom to share and change the works. By contrast,
15
+ the GNU General Public License is intended to guarantee your freedom to
16
+ share and change all versions of a program--to make sure it remains free
17
+ software for all its users. We, the Free Software Foundation, use the
18
+ GNU General Public License for most of our software; it applies also to
19
+ any other work released this way by its authors. You can apply it to
20
+ your programs, too.
21
+
22
+ When we speak of free software, we are referring to freedom, not
23
+ price. Our General Public Licenses are designed to make sure that you
24
+ have the freedom to distribute copies of free software (and charge for
25
+ them if you wish), that you receive source code or can get it if you
26
+ want it, that you can change the software or use pieces of it in new
27
+ free programs, and that you know you can do these things.
28
+
29
+ To protect your rights, we need to prevent others from denying you
30
+ these rights or asking you to surrender the rights. Therefore, you have
31
+ certain responsibilities if you distribute copies of the software, or if
32
+ you modify it: responsibilities to respect the freedom of others.
33
+
34
+ For example, if you distribute copies of such a program, whether
35
+ gratis or for a fee, you must pass on to the recipients the same
36
+ freedoms that you received. You must make sure that they, too, receive
37
+ or can get the source code. And you must show them these terms so they
38
+ know their rights.
39
+
40
+ Developers that use the GNU GPL protect your rights with two steps:
41
+ (1) assert copyright on the software, and (2) offer you this License
42
+ giving you legal permission to copy, distribute and/or modify it.
43
+
44
+ For the developers' and authors' protection, the GPL clearly explains
45
+ that there is no warranty for this free software. For both users' and
46
+ authors' sake, the GPL requires that modified versions be marked as
47
+ changed, so that their problems will not be attributed erroneously to
48
+ authors of previous versions.
49
+
50
+ Some devices are designed to deny users access to install or run
51
+ modified versions of the software inside them, although the manufacturer
52
+ can do so. This is fundamentally incompatible with the aim of
53
+ protecting users' freedom to change the software. The systematic
54
+ pattern of such abuse occurs in the area of products for individuals to
55
+ use, which is precisely where it is most unacceptable. Therefore, we
56
+ have designed this version of the GPL to prohibit the practice for those
57
+ products. If such problems arise substantially in other domains, we
58
+ stand ready to extend this provision to those domains in future versions
59
+ of the GPL, as needed to protect the freedom of users.
60
+
61
+ Finally, every program is threatened constantly by software patents.
62
+ States should not allow patents to restrict development and use of
63
+ software on general-purpose computers, but in those that do, we wish to
64
+ avoid the special danger that patents applied to a free program could
65
+ make it effectively proprietary. To prevent this, the GPL assures that
66
+ patents cannot be used to render the program non-free.
67
+
68
+ The precise terms and conditions for copying, distribution and
69
+ modification follow.
70
+
71
+ TERMS AND CONDITIONS
72
+
73
+ 0. Definitions.
74
+
75
+ "This License" refers to version 3 of the GNU General Public License.
76
+
77
+ "Copyright" also means copyright-like laws that apply to other kinds of
78
+ works, such as semiconductor masks.
79
+
80
+ "The Program" refers to any copyrightable work licensed under this
81
+ License. Each licensee is addressed as "you". "Licensees" and
82
+ "recipients" may be individuals or organizations.
83
+
84
+ To "modify" a work means to copy from or adapt all or part of the work
85
+ in a fashion requiring copyright permission, other than the making of an
86
+ exact copy. The resulting work is called a "modified version" of the
87
+ earlier work or a work "based on" the earlier work.
88
+
89
+ A "covered work" means either the unmodified Program or a work based
90
+ on the Program.
91
+
92
+ To "propagate" a work means to do anything with it that, without
93
+ permission, would make you directly or secondarily liable for
94
+ infringement under applicable copyright law, except executing it on a
95
+ computer or modifying a private copy. Propagation includes copying,
96
+ distribution (with or without modification), making available to the
97
+ public, and in some countries other activities as well.
98
+
99
+ To "convey" a work means any kind of propagation that enables other
100
+ parties to make or receive copies. Mere interaction with a user through
101
+ a computer network, with no transfer of a copy, is not conveying.
102
+
103
+ An interactive user interface displays "Appropriate Legal Notices"
104
+ to the extent that it includes a convenient and prominently visible
105
+ feature that (1) displays an appropriate copyright notice, and (2)
106
+ tells the user that there is no warranty for the work (except to the
107
+ extent that warranties are provided), that licensees may convey the
108
+ work under this License, and how to view a copy of this License. If
109
+ the interface presents a list of user commands or options, such as a
110
+ menu, a prominent item in the list meets this criterion.
111
+
112
+ 1. Source Code.
113
+
114
+ The "source code" for a work means the preferred form of the work
115
+ for making modifications to it. "Object code" means any non-source
116
+ form of a work.
117
+
118
+ A "Standard Interface" means an interface that either is an official
119
+ standard defined by a recognized standards body, or, in the case of
120
+ interfaces specified for a particular programming language, one that
121
+ is widely used among developers working in that language.
122
+
123
+ The "System Libraries" of an executable work include anything, other
124
+ than the work as a whole, that (a) is included in the normal form of
125
+ packaging a Major Component, but which is not part of that Major
126
+ Component, and (b) serves only to enable use of the work with that
127
+ Major Component, or to implement a Standard Interface for which an
128
+ implementation is available to the public in source code form. A
129
+ "Major Component", in this context, means a major essential component
130
+ (kernel, window system, and so on) of the specific operating system
131
+ (if any) on which the executable work runs, or a compiler used to
132
+ produce the work, or an object code interpreter used to run it.
133
+
134
+ The "Corresponding Source" for a work in object code form means all
135
+ the source code needed to generate, install, and (for an executable
136
+ work) run the object code and to modify the work, including scripts to
137
+ control those activities. However, it does not include the work's
138
+ System Libraries, or general-purpose tools or generally available free
139
+ programs which are used unmodified in performing those activities but
140
+ which are not part of the work. For example, Corresponding Source
141
+ includes interface definition files associated with source files for
142
+ the work, and the source code for shared libraries and dynamically
143
+ linked subprograms that the work is specifically designed to require,
144
+ such as by intimate data communication or control flow between those
145
+ subprograms and other parts of the work.
146
+
147
+ The Corresponding Source need not include anything that users
148
+ can regenerate automatically from other parts of the Corresponding
149
+ Source.
150
+
151
+ The Corresponding Source for a work in source code form is that
152
+ same work.
153
+
154
+ 2. Basic Permissions.
155
+
156
+ All rights granted under this License are granted for the term of
157
+ copyright on the Program, and are irrevocable provided the stated
158
+ conditions are met. This License explicitly affirms your unlimited
159
+ permission to run the unmodified Program. The output from running a
160
+ covered work is covered by this License only if the output, given its
161
+ content, constitutes a covered work. This License acknowledges your
162
+ rights of fair use or other equivalent, as provided by copyright law.
163
+
164
+ You may make, run and propagate covered works that you do not
165
+ convey, without conditions so long as your license otherwise remains
166
+ in force. You may convey covered works to others for the sole purpose
167
+ of having them make modifications exclusively for you, or provide you
168
+ with facilities for running those works, provided that you comply with
169
+ the terms of this License in conveying all material for which you do
170
+ not control copyright. Those thus making or running the covered works
171
+ for you must do so exclusively on your behalf, under your direction
172
+ and control, on terms that prohibit them from making any copies of
173
+ your copyrighted material outside their relationship with you.
174
+
175
+ Conveying under any other circumstances is permitted solely under
176
+ the conditions stated below. Sublicensing is not allowed; section 10
177
+ makes it unnecessary.
178
+
179
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180
+
181
+ No covered work shall be deemed part of an effective technological
182
+ measure under any applicable law fulfilling obligations under article
183
+ 11 of the WIPO copyright treaty adopted on 20 December 1996, or
184
+ similar laws prohibiting or restricting circumvention of such
185
+ measures.
186
+
187
+ When you convey a covered work, you waive any legal power to forbid
188
+ circumvention of technological measures to the extent such circumvention
189
+ is effected by exercising rights under this License with respect to
190
+ the covered work, and you disclaim any intention to limit operation or
191
+ modification of the work as a means of enforcing, against the work's
192
+ users, your or third parties' legal rights to forbid circumvention of
193
+ technological measures.
194
+
195
+ 4. Conveying Verbatim Copies.
196
+
197
+ You may convey verbatim copies of the Program's source code as you
198
+ receive it, in any medium, provided that you conspicuously and
199
+ appropriately publish on each copy an appropriate copyright notice;
200
+ keep intact all notices stating that this License and any
201
+ non-permissive terms added in accord with section 7 apply to the code;
202
+ keep intact all notices of the absence of any warranty; and give all
203
+ recipients a copy of this License along with the Program.
204
+
205
+ You may charge any price or no price for each copy that you convey,
206
+ and you may offer support or warranty protection for a fee.
207
+
208
+ 5. Conveying Modified Source Versions.
209
+
210
+ You may convey a work based on the Program, or the modifications to
211
+ produce it from the Program, in the form of source code under the
212
+ terms of section 4, provided that you also meet all of these conditions:
213
+
214
+ a) The work must carry prominent notices stating that you modified
215
+ it, and giving a relevant date.
216
+
217
+ b) The work must carry prominent notices stating that it is
218
+ released under this License and any conditions added under section
219
+ 7. This requirement modifies the requirement in section 4 to
220
+ "keep intact all notices".
221
+
222
+ c) You must license the entire work, as a whole, under this
223
+ License to anyone who comes into possession of a copy. This
224
+ License will therefore apply, along with any applicable section 7
225
+ additional terms, to the whole of the work, and all its parts,
226
+ regardless of how they are packaged. This License gives no
227
+ permission to license the work in any other way, but it does not
228
+ invalidate such permission if you have separately received it.
229
+
230
+ d) If the work has interactive user interfaces, each must display
231
+ Appropriate Legal Notices; however, if the Program has interactive
232
+ interfaces that do not display Appropriate Legal Notices, your
233
+ work need not make them do so.
234
+
235
+ A compilation of a covered work with other separate and independent
236
+ works, which are not by their nature extensions of the covered work,
237
+ and which are not combined with it such as to form a larger program,
238
+ in or on a volume of a storage or distribution medium, is called an
239
+ "aggregate" if the compilation and its resulting copyright are not
240
+ used to limit the access or legal rights of the compilation's users
241
+ beyond what the individual works permit. Inclusion of a covered work
242
+ in an aggregate does not cause this License to apply to the other
243
+ parts of the aggregate.
244
+
245
+ 6. Conveying Non-Source Forms.
246
+
247
+ You may convey a covered work in object code form under the terms
248
+ of sections 4 and 5, provided that you also convey the
249
+ machine-readable Corresponding Source under the terms of this License,
250
+ in one of these ways:
251
+
252
+ a) Convey the object code in, or embodied in, a physical product
253
+ (including a physical distribution medium), accompanied by the
254
+ Corresponding Source fixed on a durable physical medium
255
+ customarily used for software interchange.
256
+
257
+ b) Convey the object code in, or embodied in, a physical product
258
+ (including a physical distribution medium), accompanied by a
259
+ written offer, valid for at least three years and valid for as
260
+ long as you offer spare parts or customer support for that product
261
+ model, to give anyone who possesses the object code either (1) a
262
+ copy of the Corresponding Source for all the software in the
263
+ product that is covered by this License, on a durable physical
264
+ medium customarily used for software interchange, for a price no
265
+ more than your reasonable cost of physically performing this
266
+ conveying of source, or (2) access to copy the
267
+ Corresponding Source from a network server at no charge.
268
+
269
+ c) Convey individual copies of the object code with a copy of the
270
+ written offer to provide the Corresponding Source. This
271
+ alternative is allowed only occasionally and noncommercially, and
272
+ only if you received the object code with such an offer, in accord
273
+ with subsection 6b.
274
+
275
+ d) Convey the object code by offering access from a designated
276
+ place (gratis or for a charge), and offer equivalent access to the
277
+ Corresponding Source in the same way through the same place at no
278
+ further charge. You need not require recipients to copy the
279
+ Corresponding Source along with the object code. If the place to
280
+ copy the object code is a network server, the Corresponding Source
281
+ may be on a different server (operated by you or a third party)
282
+ that supports equivalent copying facilities, provided you maintain
283
+ clear directions next to the object code saying where to find the
284
+ Corresponding Source. Regardless of what server hosts the
285
+ Corresponding Source, you remain obligated to ensure that it is
286
+ available for as long as needed to satisfy these requirements.
287
+
288
+ e) Convey the object code using peer-to-peer transmission, provided
289
+ you inform other peers where the object code and Corresponding
290
+ Source of the work are being offered to the general public at no
291
+ charge under subsection 6d.
292
+
293
+ A separable portion of the object code, whose source code is excluded
294
+ from the Corresponding Source as a System Library, need not be
295
+ included in conveying the object code work.
296
+
297
+ A "User Product" is either (1) a "consumer product", which means any
298
+ tangible personal property which is normally used for personal, family,
299
+ or household purposes, or (2) anything designed or sold for incorporation
300
+ into a dwelling. In determining whether a product is a consumer product,
301
+ doubtful cases shall be resolved in favor of coverage. For a particular
302
+ product received by a particular user, "normally used" refers to a
303
+ typical or common use of that class of product, regardless of the status
304
+ of the particular user or of the way in which the particular user
305
+ actually uses, or expects or is expected to use, the product. A product
306
+ is a consumer product regardless of whether the product has substantial
307
+ commercial, industrial or non-consumer uses, unless such uses represent
308
+ the only significant mode of use of the product.
309
+
310
+ "Installation Information" for a User Product means any methods,
311
+ procedures, authorization keys, or other information required to install
312
+ and execute modified versions of a covered work in that User Product from
313
+ a modified version of its Corresponding Source. The information must
314
+ suffice to ensure that the continued functioning of the modified object
315
+ code is in no case prevented or interfered with solely because
316
+ modification has been made.
317
+
318
+ If you convey an object code work under this section in, or with, or
319
+ specifically for use in, a User Product, and the conveying occurs as
320
+ part of a transaction in which the right of possession and use of the
321
+ User Product is transferred to the recipient in perpetuity or for a
322
+ fixed term (regardless of how the transaction is characterized), the
323
+ Corresponding Source conveyed under this section must be accompanied
324
+ by the Installation Information. But this requirement does not apply
325
+ if neither you nor any third party retains the ability to install
326
+ modified object code on the User Product (for example, the work has
327
+ been installed in ROM).
328
+
329
+ The requirement to provide Installation Information does not include a
330
+ requirement to continue to provide support service, warranty, or updates
331
+ for a work that has been modified or installed by the recipient, or for
332
+ the User Product in which it has been modified or installed. Access to a
333
+ network may be denied when the modification itself materially and
334
+ adversely affects the operation of the network or violates the rules and
335
+ protocols for communication across the network.
336
+
337
+ Corresponding Source conveyed, and Installation Information provided,
338
+ in accord with this section must be in a format that is publicly
339
+ documented (and with an implementation available to the public in
340
+ source code form), and must require no special password or key for
341
+ unpacking, reading or copying.
342
+
343
+ 7. Additional Terms.
344
+
345
+ "Additional permissions" are terms that supplement the terms of this
346
+ License by making exceptions from one or more of its conditions.
347
+ Additional permissions that are applicable to the entire Program shall
348
+ be treated as though they were included in this License, to the extent
349
+ that they are valid under applicable law. If additional permissions
350
+ apply only to part of the Program, that part may be used separately
351
+ under those permissions, but the entire Program remains governed by
352
+ this License without regard to the additional permissions.
353
+
354
+ When you convey a copy of a covered work, you may at your option
355
+ remove any additional permissions from that copy, or from any part of
356
+ it. (Additional permissions may be written to require their own
357
+ removal in certain cases when you modify the work.) You may place
358
+ additional permissions on material, added by you to a covered work,
359
+ for which you have or can give appropriate copyright permission.
360
+
361
+ Notwithstanding any other provision of this License, for material you
362
+ add to a covered work, you may (if authorized by the copyright holders of
363
+ that material) supplement the terms of this License with terms:
364
+
365
+ a) Disclaiming warranty or limiting liability differently from the
366
+ terms of sections 15 and 16 of this License; or
367
+
368
+ b) Requiring preservation of specified reasonable legal notices or
369
+ author attributions in that material or in the Appropriate Legal
370
+ Notices displayed by works containing it; or
371
+
372
+ c) Prohibiting misrepresentation of the origin of that material, or
373
+ requiring that modified versions of such material be marked in
374
+ reasonable ways as different from the original version; or
375
+
376
+ d) Limiting the use for publicity purposes of names of licensors or
377
+ authors of the material; or
378
+
379
+ e) Declining to grant rights under trademark law for use of some
380
+ trade names, trademarks, or service marks; or
381
+
382
+ f) Requiring indemnification of licensors and authors of that
383
+ material by anyone who conveys the material (or modified versions of
384
+ it) with contractual assumptions of liability to the recipient, for
385
+ any liability that these contractual assumptions directly impose on
386
+ those licensors and authors.
387
+
388
+ All other non-permissive additional terms are considered "further
389
+ restrictions" within the meaning of section 10. If the Program as you
390
+ received it, or any part of it, contains a notice stating that it is
391
+ governed by this License along with a term that is a further
392
+ restriction, you may remove that term. If a license document contains
393
+ a further restriction but permits relicensing or conveying under this
394
+ License, you may add to a covered work material governed by the terms
395
+ of that license document, provided that the further restriction does
396
+ not survive such relicensing or conveying.
397
+
398
+ If you add terms to a covered work in accord with this section, you
399
+ must place, in the relevant source files, a statement of the
400
+ additional terms that apply to those files, or a notice indicating
401
+ where to find the applicable terms.
402
+
403
+ Additional terms, permissive or non-permissive, may be stated in the
404
+ form of a separately written license, or stated as exceptions;
405
+ the above requirements apply either way.
406
+
407
+ 8. Termination.
408
+
409
+ You may not propagate or modify a covered work except as expressly
410
+ provided under this License. Any attempt otherwise to propagate or
411
+ modify it is void, and will automatically terminate your rights under
412
+ this License (including any patent licenses granted under the third
413
+ paragraph of section 11).
414
+
415
+ However, if you cease all violation of this License, then your
416
+ license from a particular copyright holder is reinstated (a)
417
+ provisionally, unless and until the copyright holder explicitly and
418
+ finally terminates your license, and (b) permanently, if the copyright
419
+ holder fails to notify you of the violation by some reasonable means
420
+ prior to 60 days after the cessation.
421
+
422
+ Moreover, your license from a particular copyright holder is
423
+ reinstated permanently if the copyright holder notifies you of the
424
+ violation by some reasonable means, this is the first time you have
425
+ received notice of violation of this License (for any work) from that
426
+ copyright holder, and you cure the violation prior to 30 days after
427
+ your receipt of the notice.
428
+
429
+ Termination of your rights under this section does not terminate the
430
+ licenses of parties who have received copies or rights from you under
431
+ this License. If your rights have been terminated and not permanently
432
+ reinstated, you do not qualify to receive new licenses for the same
433
+ material under section 10.
434
+
435
+ 9. Acceptance Not Required for Having Copies.
436
+
437
+ You are not required to accept this License in order to receive or
438
+ run a copy of the Program. Ancillary propagation of a covered work
439
+ occurring solely as a consequence of using peer-to-peer transmission
440
+ to receive a copy likewise does not require acceptance. However,
441
+ nothing other than this License grants you permission to propagate or
442
+ modify any covered work. These actions infringe copyright if you do
443
+ not accept this License. Therefore, by modifying or propagating a
444
+ covered work, you indicate your acceptance of this License to do so.
445
+
446
+ 10. Automatic Licensing of Downstream Recipients.
447
+
448
+ Each time you convey a covered work, the recipient automatically
449
+ receives a license from the original licensors, to run, modify and
450
+ propagate that work, subject to this License. You are not responsible
451
+ for enforcing compliance by third parties with this License.
452
+
453
+ An "entity transaction" is a transaction transferring control of an
454
+ organization, or substantially all assets of one, or subdividing an
455
+ organization, or merging organizations. If propagation of a covered
456
+ work results from an entity transaction, each party to that
457
+ transaction who receives a copy of the work also receives whatever
458
+ licenses to the work the party's predecessor in interest had or could
459
+ give under the previous paragraph, plus a right to possession of the
460
+ Corresponding Source of the work from the predecessor in interest, if
461
+ the predecessor has it or can get it with reasonable efforts.
462
+
463
+ You may not impose any further restrictions on the exercise of the
464
+ rights granted or affirmed under this License. For example, you may
465
+ not impose a license fee, royalty, or other charge for exercise of
466
+ rights granted under this License, and you may not initiate litigation
467
+ (including a cross-claim or counterclaim in a lawsuit) alleging that
468
+ any patent claim is infringed by making, using, selling, offering for
469
+ sale, or importing the Program or any portion of it.
470
+
471
+ 11. Patents.
472
+
473
+ A "contributor" is a copyright holder who authorizes use under this
474
+ License of the Program or a work on which the Program is based. The
475
+ work thus licensed is called the contributor's "contributor version".
476
+
477
+ A contributor's "essential patent claims" are all patent claims
478
+ owned or controlled by the contributor, whether already acquired or
479
+ hereafter acquired, that would be infringed by some manner, permitted
480
+ by this License, of making, using, or selling its contributor version,
481
+ but do not include claims that would be infringed only as a
482
+ consequence of further modification of the contributor version. For
483
+ purposes of this definition, "control" includes the right to grant
484
+ patent sublicenses in a manner consistent with the requirements of
485
+ this License.
486
+
487
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
488
+ patent license under the contributor's essential patent claims, to
489
+ make, use, sell, offer for sale, import and otherwise run, modify and
490
+ propagate the contents of its contributor version.
491
+
492
+ In the following three paragraphs, a "patent license" is any express
493
+ agreement or commitment, however denominated, not to enforce a patent
494
+ (such as an express permission to practice a patent or covenant not to
495
+ sue for patent infringement). To "grant" such a patent license to a
496
+ party means to make such an agreement or commitment not to enforce a
497
+ patent against the party.
498
+
499
+ If you convey a covered work, knowingly relying on a patent license,
500
+ and the Corresponding Source of the work is not available for anyone
501
+ to copy, free of charge and under the terms of this License, through a
502
+ publicly available network server or other readily accessible means,
503
+ then you must either (1) cause the Corresponding Source to be so
504
+ available, or (2) arrange to deprive yourself of the benefit of the
505
+ patent license for this particular work, or (3) arrange, in a manner
506
+ consistent with the requirements of this License, to extend the patent
507
+ license to downstream recipients. "Knowingly relying" means you have
508
+ actual knowledge that, but for the patent license, your conveying the
509
+ covered work in a country, or your recipient's use of the covered work
510
+ in a country, would infringe one or more identifiable patents in that
511
+ country that you have reason to believe are valid.
512
+
513
+ If, pursuant to or in connection with a single transaction or
514
+ arrangement, you convey, or propagate by procuring conveyance of, a
515
+ covered work, and grant a patent license to some of the parties
516
+ receiving the covered work authorizing them to use, propagate, modify
517
+ or convey a specific copy of the covered work, then the patent license
518
+ you grant is automatically extended to all recipients of the covered
519
+ work and works based on it.
520
+
521
+ A patent license is "discriminatory" if it does not include within
522
+ the scope of its coverage, prohibits the exercise of, or is
523
+ conditioned on the non-exercise of one or more of the rights that are
524
+ specifically granted under this License. You may not convey a covered
525
+ work if you are a party to an arrangement with a third party that is
526
+ in the business of distributing software, under which you make payment
527
+ to the third party based on the extent of your activity of conveying
528
+ the work, and under which the third party grants, to any of the
529
+ parties who would receive the covered work from you, a discriminatory
530
+ patent license (a) in connection with copies of the covered work
531
+ conveyed by you (or copies made from those copies), or (b) primarily
532
+ for and in connection with specific products or compilations that
533
+ contain the covered work, unless you entered into that arrangement,
534
+ or that patent license was granted, prior to 28 March 2007.
535
+
536
+ Nothing in this License shall be construed as excluding or limiting
537
+ any implied license or other defenses to infringement that may
538
+ otherwise be available to you under applicable patent law.
539
+
540
+ 12. No Surrender of Others' Freedom.
541
+
542
+ If conditions are imposed on you (whether by court order, agreement or
543
+ otherwise) that contradict the conditions of this License, they do not
544
+ excuse you from the conditions of this License. If you cannot convey a
545
+ covered work so as to satisfy simultaneously your obligations under this
546
+ License and any other pertinent obligations, then as a consequence you may
547
+ not convey it at all. For example, if you agree to terms that obligate you
548
+ to collect a royalty for further conveying from those to whom you convey
549
+ the Program, the only way you could satisfy both those terms and this
550
+ License would be to refrain entirely from conveying the Program.
551
+
552
+ 13. Use with the GNU Affero General Public License.
553
+
554
+ Notwithstanding any other provision of this License, you have
555
+ permission to link or combine any covered work with a work licensed
556
+ under version 3 of the GNU Affero General Public License into a single
557
+ combined work, and to convey the resulting work. The terms of this
558
+ License will continue to apply to the part which is the covered work,
559
+ but the special requirements of the GNU Affero General Public License,
560
+ section 13, concerning interaction through a network will apply to the
561
+ combination as such.
562
+
563
+ 14. Revised Versions of this License.
564
+
565
+ The Free Software Foundation may publish revised and/or new versions of
566
+ the GNU General Public License from time to time. Such new versions will
567
+ be similar in spirit to the present version, but may differ in detail to
568
+ address new problems or concerns.
569
+
570
+ Each version is given a distinguishing version number. If the
571
+ Program specifies that a certain numbered version of the GNU General
572
+ Public License "or any later version" applies to it, you have the
573
+ option of following the terms and conditions either of that numbered
574
+ version or of any later version published by the Free Software
575
+ Foundation. If the Program does not specify a version number of the
576
+ GNU General Public License, you may choose any version ever published
577
+ by the Free Software Foundation.
578
+
579
+ If the Program specifies that a proxy can decide which future
580
+ versions of the GNU General Public License can be used, that proxy's
581
+ public statement of acceptance of a version permanently authorizes you
582
+ to choose that version for the Program.
583
+
584
+ Later license versions may give you additional or different
585
+ permissions. However, no additional obligations are imposed on any
586
+ author or copyright holder as a result of your choosing to follow a
587
+ later version.
588
+
589
+ 15. Disclaimer of Warranty.
590
+
591
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592
+ APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593
+ HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594
+ OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595
+ THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596
+ PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597
+ IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598
+ ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599
+
600
+ 16. Limitation of Liability.
601
+
602
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603
+ WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604
+ THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605
+ GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606
+ USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607
+ DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608
+ PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609
+ EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610
+ SUCH DAMAGES.
611
+
612
+ 17. Interpretation of Sections 15 and 16.
613
+
614
+ If the disclaimer of warranty and limitation of liability provided
615
+ above cannot be given local legal effect according to their terms,
616
+ reviewing courts shall apply local law that most closely approximates
617
+ an absolute waiver of all civil liability in connection with the
618
+ Program, unless a warranty or assumption of liability accompanies a
619
+ copy of the Program in return for a fee.
620
+
621
+ END OF TERMS AND CONDITIONS
622
+
623
+ How to Apply These Terms to Your New Programs
624
+
625
+ If you develop a new program, and you want it to be of the greatest
626
+ possible use to the public, the best way to achieve this is to make it
627
+ free software which everyone can redistribute and change under these terms.
628
+
629
+ To do so, attach the following notices to the program. It is safest
630
+ to attach them to the start of each source file to most effectively
631
+ state the exclusion of warranty; and each file should have at least
632
+ the "copyright" line and a pointer to where the full notice is found.
633
+
634
+ <one line to give the program's name and a brief idea of what it does.>
635
+ Copyright (C) <year> <name of author>
636
+
637
+ This program is free software: you can redistribute it and/or modify
638
+ it under the terms of the GNU General Public License as published by
639
+ the Free Software Foundation, either version 3 of the License, or
640
+ (at your option) any later version.
641
+
642
+ This program is distributed in the hope that it will be useful,
643
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
644
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
645
+ GNU General Public License for more details.
646
+
647
+ You should have received a copy of the GNU General Public License
648
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
649
+
650
+ Also add information on how to contact you by electronic and paper mail.
651
+
652
+ If the program does terminal interaction, make it output a short
653
+ notice like this when it starts in an interactive mode:
654
+
655
+ <program> Copyright (C) <year> <name of author>
656
+ This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657
+ This is free software, and you are welcome to redistribute it
658
+ under certain conditions; type `show c' for details.
659
+
660
+ The hypothetical commands `show w' and `show c' should show the appropriate
661
+ parts of the General Public License. Of course, your program's commands
662
+ might be different; for a GUI interface, you would use an "about box".
663
+
664
+ You should also get your employer (if you work as a programmer) or school,
665
+ if any, to sign a "copyright disclaimer" for the program, if necessary.
666
+ For more information on this, and how to apply and follow the GNU GPL, see
667
+ <http://www.gnu.org/licenses/>.
668
+
669
+ The GNU General Public License does not permit incorporating your program
670
+ into proprietary programs. If your program is a subroutine library, you
671
+ may consider it more useful to permit linking proprietary applications with
672
+ the library. If this is what you want to do, use the GNU Lesser General
673
+ Public License instead of this License. But first, please read
674
  <http://www.gnu.org/philosophy/why-not-lgpl.html>.
readme.txt CHANGED
@@ -8,14 +8,16 @@ Stable tag: trunk
8
  License: GPL v3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
11
- "Crop Thumbnails" made it easy to get exacly that specific image-detail you want to show. Crop your images the simple way.
12
 
13
  == Description ==
14
 
15
- The plugin enhance functionality to crop your thumbnails individuell and simple. It add links on backend to enter all images you had attached to a post, page or custom-post.
16
  In the Crop-Editor you can choose one or more (if they have the same ratio) imagesizes and cut-off the part of the image you want.
17
 
18
- It is possible to filter the list of available image-sizes (in dependency to post-types) in the settings (Settings > Crop-Thumbnails).
 
 
19
 
20
  == Installation ==
21
 
@@ -42,12 +44,10 @@ You can use the built in installer and upgrader, or you can install the plugin m
42
  = I have cropped the image but the old one is used on the page. =
43
  If you had viewed your image on the site before, your browser has cached the image. Go tell them to reload the fresh image from the server by hitting "F5".
44
 
45
- = I have cropped the image but in the featured-image box in the editor the croped version dont show up =
46
- Refresh or Update the editor page.
47
- Note that the image in the featured-image box will only be a preview, to show what image is choosed. The theme defines what image-size is used on the front-end.
48
-
49
  = Is it possible to crop an non-cropped image-size? =
50
- Currently not.
 
 
51
 
52
  = Is it possible to adjust the css-style of the crop-thumbnail window? =
53
  Yes, for a simple test, copy the css/cpt-window.css file into your template_directory and make some change.
@@ -59,6 +59,24 @@ function myCustomStyle($content) {
59
  return $content;
60
  }`
61
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
62
  == Screenshots ==
63
 
64
  1. You have access to Crop-Thumbnails on post / page / custom-post-types.
@@ -68,6 +86,15 @@ function myCustomStyle($content) {
68
  5. Choose what image-sizes should be hidden (for what post-types), for better usability.
69
 
70
  == Changelog ==
 
 
 
 
 
 
 
 
 
71
  = 0.9.0 =
72
  * add crop-thumbnail-button to the default attachement-screens so i could accessed better
73
  * change modal-dialog from thickbox to ui-dialog
8
  License: GPL v3
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
11
+ "Crop Thumbnails" made it easy to get exacly that specific image-detail you want to show in the automatic cropped post-thumbnails.
12
 
13
  == Description ==
14
 
15
+ The plugin enhance functionality to crop your automatic cropped post-thumbnails individuell and simple. It add links in the backend to enter all images you had attached to a post, page or custom-post.
16
  In the Crop-Editor you can choose one or more (if they have the same ratio) imagesizes and cut-off the part of the image you want.
17
 
18
+ Further Features
19
+ * It is possible to filter the list of available image-sizes (in dependency to post-types) in the settings (Settings > Crop-Thumbnails).
20
+ * You could provide your users a custom style for the Editor-Window.
21
 
22
  == Installation ==
23
 
44
  = I have cropped the image but the old one is used on the page. =
45
  If you had viewed your image on the site before, your browser has cached the image. Go tell them to reload the fresh image from the server by hitting "F5".
46
 
 
 
 
 
47
  = Is it possible to crop an non-cropped image-size? =
48
+ No. The purpose of this plugin is to provide control for the wordpress automatic crop. If you want to crop let's say the full-size image you should
49
+ * a) upload it in a better format in the first place
50
+ * OR b) use the Standard Wordpress-Image editor to crop the image.
51
 
52
  = Is it possible to adjust the css-style of the crop-thumbnail window? =
53
  Yes, for a simple test, copy the css/cpt-window.css file into your template_directory and make some change.
59
  return $content;
60
  }`
61
 
62
+ = Can i make the modal-dialog fullscreen? =
63
+ Yes, i added a filter with some settings for the modal-dialog, so you can adjust the size:
64
+ `add_filter('crop_thumbnails_modal_window_settings','crop_thumbnails_modal_window_settings_override');
65
+ function crop_thumbnails_modal_window_settings_override($param) {
66
+ $param['limitToWidth'] = false; //You may set a number, then thats the maximum width the modal can be. On small screens it will be smaller (see offsets). Set to FALSE if you want no limit.
67
+ $param['maxWidthOffset'] = 0; //window-width minus "width_offset" equals modal-width
68
+ $param['maxHeightOffset'] = 0; //window-width minus "height_offset" equals modal-height
69
+ return $param;
70
+ }`
71
+
72
+ = I have show the cropped image in the backend in an custom meta-box. It does not update after the modal-dialog closed. Is there a way to fix this =
73
+ Yeah, there is a way. After the crop-thumbnails-modal closed it triggeres a javascript event on the body element. You could use jQuery to cache-break your cropped thumbnail (in backend-view).
74
+ The event called "cropThumbnailModalClosed". The plugin also provides a global function that could be called (only in post-edit-view and mediathek) to do the cache-break.
75
+ Example-Code:
76
+ `$('body').on('cropThumbnailModalClosed',function() {
77
+ CROP_THUMBNAILS_DO_CACHE_BREAK( $('.your-image-selector') );
78
+ });`
79
+
80
  == Screenshots ==
81
 
82
  1. You have access to Crop-Thumbnails on post / page / custom-post-types.
86
  5. Choose what image-sizes should be hidden (for what post-types), for better usability.
87
 
88
  == Changelog ==
89
+
90
+ = 0.10.0 =
91
+ * refactoring some parts of the code to make it more modular
92
+ * adding a cache breaker to the backend, so in post-view and mediathek the image should be refreshed after the modal-dialog closes
93
+ * provide a javascript-event ('cropThumbnailModalClosed') after the modal is closed (see F.A.Q. for details)
94
+ * provide the human-readable Name of the Crop-Size (if available), using the "image_size_names_choose" filter
95
+ * provide some size settings for the modal-dialog - via filter "crop_thumbnails_modal_window_settings"
96
+ * mini language update
97
+
98
  = 0.9.0 =
99
  * add crop-thumbnail-button to the default attachement-screens so i could accessed better
100
  * change modal-dialog from thickbox to ui-dialog