Crop-Thumbnails - Version 0.8.3

Version Description

  • fix a bug for systems with comma as dezimal seperator (http://wordpress.org/support/topic/doesnt-save-the-cropped-image-anywhere?replies=12#post-4563377)
  • reduce capabilities from "edit_pages" AND "upload_files" to only "upload_files"
  • more informations logged in the console if an error occurs while saving
Download this release

Release Info

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

Code changes from version 0.8.2 to 0.8.3

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.8.2
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.8.2');
30
 
31
  function cpt_plugin_init() {
32
  load_plugin_textdomain( CROP_THUMBS_LANG, false, dirname( plugin_basename( __FILE__ ) ) . '/lang/' );
4
  * Plugin URI: http://wordpress.org/extend/plugins/crop-thumbnails/
5
  * Author: Volkmar Kantor
6
  * Author URI: http://www.totalmedial.de
7
+ * Version: 0.8.3
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.8.3');
30
 
31
  function cpt_plugin_init() {
32
  load_plugin_textdomain( CROP_THUMBS_LANG, false, dirname( plugin_basename( __FILE__ ) ) . '/lang/' );
functions/editor.php CHANGED
@@ -22,7 +22,7 @@ class CropPostThumbnailsEditor {
22
  $this->cleanWPHead();
23
  $failure_msg = '';
24
  if(!$this->isUserPermitted()) {
25
- $failure_msg = __('An error happend!',CROP_THUMBS_LANG);
26
  } else {
27
  switch(true) {
28
  case isset($_REQUEST['post_id'])://full programm
@@ -291,7 +291,7 @@ jQuery(document).ready(function($) {
291
  <strong><?php echo $img_size_name.$_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 $ratio ?>,"crop":<?php echo $crop ?>}' />
295
  </li>
296
  <?php endif; ?>
297
  <?php endforeach; ?>
@@ -407,7 +407,7 @@ jQuery(document).ready(function($) {
407
 
408
  function isUserPermitted() {
409
  $return = false;
410
- if(current_user_can('upload_files') && current_user_can('edit_pages')) {
411
  $return = true;
412
  }
413
  //TODO maybe add noence (is it needed? there are no file- or db-operations)
22
  $this->cleanWPHead();
23
  $failure_msg = '';
24
  if(!$this->isUserPermitted()) {
25
+ $failure_msg = __('You are not allowed to do this.',CROP_THUMBS_LANG);
26
  } else {
27
  switch(true) {
28
  case isset($_REQUEST['post_id'])://full programm
291
  <strong><?php echo $img_size_name.$_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; ?>
407
 
408
  function isUserPermitted() {
409
  $return = false;
410
+ if(current_user_can('upload_files')) {
411
  $return = true;
412
  }
413
  //TODO maybe add noence (is it needed? there are no file- or db-operations)
functions/save.php CHANGED
@@ -130,6 +130,7 @@ class CptSaveThumbnail {
130
  $post_metadata['sizes'][$_imageSize->name] = $_new_meta;
131
  } else {
132
  $this->addDebug('error on '.$_filepath_info['basename']);
 
133
  }
134
  }
135
 
130
  $post_metadata['sizes'][$_imageSize->name] = $_new_meta;
131
  } else {
132
  $this->addDebug('error on '.$_filepath_info['basename']);
133
+ $this->addDebug(implode(' | ',$_processing_error));
134
  }
135
  }
136
 
functions/settings.php CHANGED
@@ -136,6 +136,9 @@ class CropThumbnailsSettings {
136
  echo '</ul>';
137
  }
138
 
 
 
 
139
  function callback_allow_non_cropped() {
140
  $options = get_option($this->optionsKey);
141
  $_id = 'allow_non_cropped';
136
  echo '</ul>';
137
  }
138
 
139
+ /**
140
+ * currently not used
141
+ */
142
  function callback_allow_non_cropped() {
143
  $options = get_option($this->optionsKey);
144
  $_id = 'allow_non_cropped';
lang/cpt_lang-de_DE.mo CHANGED
Binary file
lang/cpt_lang-de_DE.po CHANGED
@@ -1,235 +1,315 @@
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:55+0100\n"
6
- "PO-Revision-Date: 2012-12-03 14:55+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-Poedit-SearchPath-0: ..\n"
15
-
16
- #: ../crop-thumbnails.php:34
17
- msgid "Crop your thumbnails, the easy way."
18
- msgstr "Zuschnitt ihrer Artikelbilder - einfach gemacht."
19
-
20
- #: ../functions/editor.php:23
21
- #: ../functions/editor.php:43
22
- msgid "An error happend!"
23
- msgstr "Es ist ein Fehler aufgetretten!"
24
-
25
- #: ../functions/editor.php:39
26
- msgid "No featured Image set for this post until now."
27
- msgstr "Bisher ist kein Artikelbild gesetzt worden."
28
-
29
- #: ../functions/editor.php:75
30
- #: ../functions/editor.php:187
31
- msgid "Cropping is disabled for this post-type."
32
- msgstr "Das Zuschneiden ist für diesen Eintragstyp deaktiviert."
33
-
34
- #: ../functions/editor.php:77
35
- msgid "No images in this post yet. You have to upload some via upload dialog."
36
- msgstr "Zu diesem Eintrag wurden bisher keine Bilder hinzugefügt."
37
-
38
- #: ../functions/editor.php:98
39
- msgid "Choose the image you want to crop."
40
- msgstr "Wählen Sie das Bild aus, das Sie zuschneiden wollen."
41
-
42
- #: ../functions/editor.php:104
43
- msgid "Post Thumbnail"
44
- msgstr "Artikel-Vorschaubild"
45
-
46
- #: ../functions/editor.php:104
47
- #, php-format
48
- msgid "Image %d"
49
- msgstr "Bild %d"
50
-
51
- #: ../functions/editor.php:164
52
- msgid "bug - this case shouldnt be happend"
53
- msgstr "BUG - dieser Fall hätte nie eintretten drüfen - Plugin-Autor benachrichtigen."
54
-
55
- #: ../functions/editor.php:165
56
- msgid "Warning: the original image is to small to be cropped in good quality with this thumbnail-size."
57
- msgstr "Warung: das Original-Bild ist zu klein um für diese Thumbnail-Größe es in guter Qualität zuzuschneiden."
58
-
59
- #: ../functions/editor.php:166
60
- msgid "First, select one image. Then, click once again."
61
- msgstr "Erst ein Bild auswählen, danach erneut probieren."
62
-
63
- #: ../functions/editor.php:192
64
- msgid "back to image-list"
65
- msgstr "Zurück zur Bild-Übersicht"
66
-
67
- #: ../functions/editor.php:193
68
- msgid "Please wait until the Images are cropped."
69
- msgstr "Bitte warten Sie bis die Bilder zugeschnitten wurden."
70
-
71
- #: ../functions/editor.php:196
72
- msgid "Raw"
73
- msgstr "Original-Bild"
74
-
75
- #: ../functions/editor.php:196
76
- #: ../functions/editor.php:237
77
- msgid "pixel"
78
- msgstr "Pixel"
79
-
80
- #: ../functions/editor.php:198
81
- msgid "save crop"
82
- msgstr "Zuschnitt übernehmen"
83
-
84
- #: ../functions/editor.php:199
85
- msgid "Quick-Instructions"
86
- msgstr "Schnell-Anleitung"
87
-
88
- #: ../functions/editor.php:201
89
- msgid "Step 1: Choose an image from the right."
90
- msgstr "Schritt 1: Wählen Sie ein Bild von der rechten Seite."
91
-
92
- #: ../functions/editor.php:202
93
- msgid "Step 2: Use the mouse change the size of the rectangle on the image above."
94
- msgstr "Schritt 2: Benutzen Sie die Maus um die Größe des Rechtecks im oberen Bild zu ändern."
95
-
96
- #: ../functions/editor.php:203
97
- msgid "Step 3: Click on \"save crop\"."
98
- msgstr "Schritt 3: Klicken Sie auf \"Zuschnitt übernehmen\"."
99
-
100
- #: ../functions/editor.php:208
101
- msgid "select images with same ratio at once"
102
- msgstr "bei gleichem Seitenverhältnis gemeinsam auswählen"
103
-
104
- #: ../functions/editor.php:209
105
- msgid "deselect all"
106
- msgstr "nichts auswählen"
107
-
108
- #: ../functions/editor.php:221
109
- msgid "cropped"
110
- msgstr "zugeschnitten"
111
-
112
- #: ../functions/editor.php:231
113
- msgid "Original image to small for good crop-quality!"
114
- msgstr "Original-Bild ist zu klein für guten Bildzuschnitt!"
115
-
116
- #: ../functions/editor.php:237
117
- msgid "Dimensions:"
118
- msgstr "Größe:"
119
-
120
- #: ../functions/editor.php:238
121
- msgid "Ratio:"
122
- msgstr "Seitenverhältnis:"
123
-
124
- #: ../functions/editor.php:421
125
- msgid "Crop Thumbnails"
126
- msgstr "Bilder Zuschneiden"
127
-
128
- #: ../functions/editor.php:425
129
- msgid "Crop Featured Image"
130
- msgstr "Artikelbild zuschneiden"
131
-
132
- #: ../functions/editor.php:439
133
- msgid "Crop Thumbnail"
134
- msgstr "Bild zuschneiden"
135
-
136
- #: ../functions/save.php:95
137
- #, php-format
138
- msgid "Cant generate filesize \"%s\"."
139
- msgstr "Cant generate filesize \"%s\"."
140
-
141
- #: ../functions/save.php:102
142
- msgid "Cant copy temporary file to media-library."
143
- msgstr "Kopieren vom temporären Verzeichnis in die Mediathek fehlgeschlagen."
144
-
145
- #: ../functions/save.php:106
146
- msgid "Cant delete temporary file."
147
- msgstr "Löschen der temporären Datei fehlgeschlagen."
148
-
149
- #: ../functions/save.php:172
150
- msgid "ERROR: Security Check failed (maybe a timeout - please try again)."
151
- msgstr "Fehler: Sicherheitsüberprüfung fehlgeschlagen (vielleicht eine Zeitüberschreitung - bitte versuchen Sie es noch einmal)."
152
-
153
- #: ../functions/save.php:176
154
- msgid "ERROR: Submitted data are not complete."
155
- msgstr "Fehler: Übermittelte Daten sind nicht vollständig."
156
-
157
- #: ../functions/save.php:184
158
- msgid "A cropping with this dimensions on these Image ist not possible."
159
- msgstr "Das Zuschneiden mit diesen Einstellungen ist bei diesem Bild nicht möglich."
160
-
161
- #: ../functions/save.php:195
162
- msgid "ERROR: Can`t find original Image in Database!"
163
- msgstr "Fehler: Konnte die Original Bild nicht in der Datenbank finden!"
164
-
165
- #: ../functions/save.php:198
166
- msgid "ERROR: Can`t find original Imagefile!"
167
- msgstr "Fehler: Konnte die Original-Bilddatei nicht finden!"
168
-
169
- #: ../functions/save.php:201
170
- msgid "ERROR: Can`t find original Image-Metadata!"
171
- msgstr "Fehler: Konnte Original-Bild-Metadaten nicht finden!"
172
-
173
- #: ../functions/settings.php:16
174
- #: ../functions/settings.php:30
175
- msgid "Settings"
176
- msgstr "Einstellungen"
177
-
178
- #: ../functions/settings.php:23
179
- msgid "Crop Post Thumbnail Page"
180
- msgstr "Crop-Post-Thumbnail Seite"
181
-
182
- #: ../functions/settings.php:35
183
- msgid "Save Changes"
184
- msgstr "Einstellungen speichern"
185
-
186
- #: ../functions/settings.php:39
187
- msgid "Support the plugin-author"
188
- msgstr "Unterstützen Sie den Plugin Entwickler"
189
-
190
- #: ../functions/settings.php:40
191
- msgid "You can support the plugin-author <br />(and let him know you love this plugin) <br />by donating via Paypal. Thanks a lot!"
192
- msgstr "Sie können den Entwickler unterstützen <br />(und ihn so wissen lassen, dass sie dieses Plugin lieben) <br />indem sie ihm eine Paypal-Spende zukommen lassen. <br />Vielen Dank!"
193
-
194
- #: ../functions/settings.php:60
195
- msgid "Sizes and Posttypes"
196
- msgstr "Größen und Eintragstypen"
197
-
198
- #: ../functions/settings.php:61
199
- msgid "Choose the image-sizes you want to hide. Choose a post-type to prevent any use of the plugin for these entries."
200
- msgstr "Wählen sie die Bildgrößen die ausgeblendet werden sollen. Wählen Sie einen Eintragstyp um das Zuschneiden in diesen Einträge komplett zu verhindern."
201
-
202
- #: ../functions/settings.php:66
203
- msgid "Crop-Thumbnails is created to make cropping easy for the user. Often times the user only need to crop one, in dependence of the post-type. But the system will create also all other sizes. So, here you can select for what post-type what sizes should be visible in the plugin interface."
204
- msgstr "Crop Thumbnails wurde erstellt um das Zuschneiden von Bildern für den Benutzer zu erleichtern. Oft muss der Nutzer nur eine Bildgröße zuschneiden, abhängig vom Typ des Eintrags. Das System (Wordpress) wird aber immer alle größen erstellen. Hier können Sie auswählen für welche Eintragstypen welche Bildgrößen in der Plugin-Oberfläche angezeigt werden sollen."
205
-
206
- #: ../functions/settings.php:67
207
- msgid "Crop-Thumbnails will only show croped images - sizes with no crop will always be hidden."
208
- msgstr "Crop Thumbnails wird nur Bilder anzeigen die einen Zuschnitt besitzen. Bildgrößen ohne Zuschnitt werden immer ausgeblendet."
209
-
210
- #~ msgid "Crop Thumbnails - Settings"
211
- #~ msgstr "Crop Thumbnails - Einstellungen"
212
- #~ msgid ""
213
- #~ "Wrong ratio!<br \\>OK - release images selected so far.<br \\>Cancel - "
214
- #~ "keep selected images so far."
215
- #~ msgstr ""
216
- #~ "Falsches Seitenverhältnis!<br \\>OK - bisher gewählte Bilder abwählen<br "
217
- #~ "\\>Abbrechen - bisher gewählte Bilder belassen."
218
- #~ msgid ""
219
- #~ "Hint: If you have one image selected, you can click on \"select images "
220
- #~ "with same ratio\", to select all with the ratio of these image."
221
- #~ msgstr ""
222
- #~ "Tipp: Wenn Sie ein Bild ausgewählt haben, und auf \"alle Bilder mit "
223
- #~ "diesem Seitenverhältnis auswählen\" klicken, werden automatisch alle "
224
- #~ "Einträgen mit diesem Seitenverhältnis ausgewählt."
225
- #~ msgid ""
226
- #~ "Choose the post-types you want to show the crop-editor and define what "
227
- #~ "sizes the editor should be working on. <strong>Only cropped image sizes "
228
- #~ "will be showing.</strong>"
229
- #~ msgstr ""
230
- #~ "Wählen Sie die Eintragstypen die sie im Zuschnitt-Editor verwenden "
231
- #~ "wollen, und wählen sie die Größen mit denen der Editor arbeiten soll. "
232
- #~ "<strong>Nur zugeschnittene Bildgrößen sind sichtbar.</strong>"
233
- #~ msgid "Wrong ratio!"
234
- #~ msgstr "Falsches Seitenverhältnis"
235
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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"
lang/cpt_lang-default.mo CHANGED
Binary file
lang/cpt_lang-default.po CHANGED
@@ -1,209 +1,264 @@
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: 2012-12-03 14:54+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-Poedit-SearchPath-0: ..\n"
15
-
16
- #: ../crop-thumbnails.php:35
17
- msgid "Crop your thumbnails, the easy way."
18
- msgstr ""
19
-
20
- #: ../functions/editor.php:23
21
- #: ../functions/editor.php:43
22
- msgid "An error happend!"
23
- msgstr ""
24
-
25
- #: ../functions/editor.php:39
26
- msgid "No featured Image set for this post until now."
27
- msgstr ""
28
-
29
- #: ../functions/editor.php:75
30
- #: ../functions/editor.php:187
31
- msgid "Cropping is disabled for this post-type."
32
- msgstr ""
33
-
34
- #: ../functions/editor.php:77
35
- msgid "No images in this post yet. You have to upload some via upload dialog."
36
- msgstr ""
37
-
38
- #: ../functions/editor.php:98
39
- msgid "Choose the image you want to crop."
40
- msgstr ""
41
-
42
- #: ../functions/editor.php:104
43
- msgid "Post Thumbnail"
44
- msgstr ""
45
-
46
- #: ../functions/editor.php:104
47
- #, php-format
48
- msgid "Image %d"
49
- msgstr ""
50
-
51
- #: ../functions/editor.php:164
52
- msgid "bug - this case shouldnt be happend"
53
- msgstr ""
54
-
55
- #: ../functions/editor.php:165
56
- msgid "Warning: the original image is to small to be cropped in good quality with this thumbnail-size."
57
- msgstr ""
58
-
59
- #: ../functions/editor.php:166
60
- msgid "First, select one image. Then, click once again."
61
- msgstr ""
62
-
63
- #: ../functions/editor.php:192
64
- msgid "back to image-list"
65
- msgstr ""
66
-
67
- #: ../functions/editor.php:193
68
- msgid "Please wait until the Images are cropped."
69
- msgstr ""
70
-
71
- #: ../functions/editor.php:196
72
- msgid "Raw"
73
- msgstr ""
74
-
75
- #: ../functions/editor.php:196
76
- #: ../functions/editor.php:237
77
- msgid "pixel"
78
- msgstr ""
79
-
80
- #: ../functions/editor.php:198
81
- msgid "save crop"
82
- msgstr ""
83
-
84
- #: ../functions/editor.php:199
85
- msgid "Quick-Instructions"
86
- msgstr ""
87
-
88
- #: ../functions/editor.php:201
89
- msgid "Step 1: Choose an image from the right."
90
- msgstr ""
91
-
92
- #: ../functions/editor.php:202
93
- msgid "Step 2: Use the mouse change the size of the rectangle on the image above."
94
- msgstr ""
95
-
96
- #: ../functions/editor.php:203
97
- msgid "Step 3: Click on \"save crop\"."
98
- msgstr ""
99
-
100
- #: ../functions/editor.php:208
101
- msgid "select images with same ratio at once"
102
- msgstr ""
103
-
104
- #: ../functions/editor.php:209
105
- msgid "deselect all"
106
- msgstr ""
107
-
108
- #: ../functions/editor.php:221
109
- msgid "cropped"
110
- msgstr ""
111
-
112
- #: ../functions/editor.php:231
113
- msgid "Original image to small for good crop-quality!"
114
- msgstr ""
115
-
116
- #: ../functions/editor.php:237
117
- msgid "Dimensions:"
118
- msgstr ""
119
-
120
- #: ../functions/editor.php:238
121
- msgid "Ratio:"
122
- msgstr ""
123
-
124
- #: ../functions/editor.php:421
125
- msgid "Crop Thumbnails"
126
- msgstr ""
127
-
128
- #: ../functions/editor.php:425
129
- msgid "Crop Featured Image"
130
- msgstr ""
131
-
132
- #: ../functions/editor.php:439
133
- msgid "Crop Thumbnail"
134
- msgstr ""
135
-
136
- #: ../functions/save.php:95
137
- #, php-format
138
- msgid "Cant generate filesize \"%s\"."
139
- msgstr ""
140
-
141
- #: ../functions/save.php:102
142
- msgid "Cant copy temporary file to media-library."
143
- msgstr ""
144
-
145
- #: ../functions/save.php:106
146
- msgid "Cant delete temporary file."
147
- msgstr ""
148
-
149
- #: ../functions/save.php:172
150
- msgid "ERROR: Security Check failed (maybe a timeout - please try again)."
151
- msgstr ""
152
-
153
- #: ../functions/save.php:176
154
- msgid "ERROR: Submitted data are not complete."
155
- msgstr ""
156
-
157
- #: ../functions/save.php:184
158
- msgid "A cropping with this dimensions on these Image ist not possible."
159
- msgstr ""
160
-
161
- #: ../functions/save.php:195
162
- msgid "ERROR: Can`t find original Image in Database!"
163
- msgstr ""
164
-
165
- #: ../functions/save.php:198
166
- msgid "ERROR: Can`t find original Imagefile!"
167
- msgstr ""
168
-
169
- #: ../functions/save.php:201
170
- msgid "ERROR: Can`t find original Image-Metadata!"
171
- msgstr ""
172
-
173
- #: ../functions/settings.php:16
174
- #: ../functions/settings.php:30
175
- msgid "Settings"
176
- msgstr ""
177
-
178
- #: ../functions/settings.php:23
179
- msgid "Crop Post Thumbnail Page"
180
- msgstr ""
181
-
182
- #: ../functions/settings.php:35
183
- msgid "Save Changes"
184
- msgstr ""
185
-
186
- #: ../functions/settings.php:39
187
- msgid "Support the plugin-author"
188
- msgstr ""
189
-
190
- #: ../functions/settings.php:40
191
- msgid "You can support the plugin-author <br />(and let him know you love this plugin) <br />by donating via Paypal. Thanks a lot!"
192
- msgstr ""
193
-
194
- #: ../functions/settings.php:60
195
- msgid "Sizes and Posttypes"
196
- msgstr ""
197
-
198
- #: ../functions/settings.php:61
199
- msgid "Choose the image-sizes you want to hide. Choose a post-type to prevent any use of the plugin for these entries."
200
- msgstr ""
201
-
202
- #: ../functions/settings.php:66
203
- msgid "Crop-Thumbnails is created to make cropping easy for the user. Often times the user only need to crop one, in dependence of the post-type. But the system will create also all other sizes. So, here you can select for what post-type what sizes should be visible in the plugin interface."
204
- msgstr ""
205
-
206
- #: ../functions/settings.php:67
207
- msgid "Crop-Thumbnails will only show croped images - sizes with no crop will always be hidden."
208
- msgstr ""
209
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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.mo ADDED
Binary file
lang/cpt_lang-hu_HU.po ADDED
@@ -0,0 +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."
lang/cpt_lang-uk.mo ADDED
Binary file
lang/cpt_lang-uk.po ADDED
@@ -0,0 +1,227 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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-06-07 01:03+0200\n"
7
+ "Last-Translator: Jurko Chervony <info@skinik.name>\n"
8
+ "Language-Team: Skinik <info@skinik.name>\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
+ "Language: Ukrainian\n"
16
+ "X-Poedit-SourceCharset: UTF-8\n"
17
+ "X-Poedit-SearchPath-0: ..\n"
18
+
19
+ #: ../crop-thumbnails.php:35
20
+ msgid "Crop your thumbnails, the easy way."
21
+ msgstr "Обрізайте мініатюри простим методом."
22
+
23
+ #: ../functions/editor.php:23 ../functions/editor.php:43
24
+ msgid "An error happend!"
25
+ msgstr "Виникла помилка!"
26
+
27
+ #: ../functions/editor.php:39
28
+ msgid "No featured Image set for this post until now."
29
+ msgstr ""
30
+
31
+ #: ../functions/editor.php:75 ../functions/editor.php:187
32
+ msgid "Cropping is disabled for this post-type."
33
+ msgstr "Обрізання картинок вимкнене для цього типу матеріалу."
34
+
35
+ #: ../functions/editor.php:77
36
+ msgid "No images in this post yet. You have to upload some via upload dialog."
37
+ msgstr ""
38
+
39
+ #: ../functions/editor.php:98
40
+ msgid "Choose the image you want to crop."
41
+ msgstr "Оберіть зображення, яке потрібно обрізати."
42
+
43
+ #: ../functions/editor.php:104
44
+ msgid "Post Thumbnail"
45
+ msgstr "Головне зображення"
46
+
47
+ #: ../functions/editor.php:104
48
+ #, php-format
49
+ msgid "Image %d"
50
+ msgstr ""
51
+
52
+ #: ../functions/editor.php:164
53
+ msgid "bug - this case shouldnt be happend"
54
+ msgstr ""
55
+
56
+ #: ../functions/editor.php:165
57
+ msgid ""
58
+ "Warning: the original image is to small to be cropped in good quality with "
59
+ "this thumbnail-size."
60
+ msgstr ""
61
+
62
+ #: ../functions/editor.php:166
63
+ msgid "First, select one image. Then, click once again."
64
+ msgstr "Спочатку виберіть справа зображення. Потім натисніть кнопку ще раз."
65
+
66
+ #: ../functions/editor.php:192
67
+ msgid "back to image-list"
68
+ msgstr ""
69
+
70
+ #: ../functions/editor.php:193
71
+ msgid "Please wait until the Images are cropped."
72
+ msgstr "Будь ласка, зачекайте. Триває обробка зображення."
73
+
74
+ #: ../functions/editor.php:196
75
+ msgid "Raw"
76
+ msgstr "Оригінал"
77
+
78
+ #: ../functions/editor.php:196 ../functions/editor.php:237
79
+ msgid "pixel"
80
+ msgstr "пікселів"
81
+
82
+ #: ../functions/editor.php:198
83
+ msgid "save crop"
84
+ msgstr "Обрізати"
85
+
86
+ #: ../functions/editor.php:199
87
+ msgid "Quick-Instructions"
88
+ msgstr "Коротка інструкція"
89
+
90
+ #: ../functions/editor.php:201
91
+ msgid "Step 1: Choose an image from the right."
92
+ msgstr "1) Оберіть розмір зображення справа."
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 "2) Переміщуйте виділену область, яку слід залишити на картинці."
98
+
99
+ #: ../functions/editor.php:203
100
+ msgid "Step 3: Click on \"save crop\"."
101
+ msgstr "3) Натисніть кнопку «Обрізати»."
102
+
103
+ #: ../functions/editor.php:208
104
+ msgid "select images with same ratio at once"
105
+ msgstr "Одразу виділити область з потрібними пропорціями"
106
+
107
+ #: ../functions/editor.php:209
108
+ msgid "deselect all"
109
+ msgstr "скасувати виділення"
110
+
111
+ #: ../functions/editor.php:221
112
+ msgid "cropped"
113
+ msgstr "обрізано"
114
+
115
+ #: ../functions/editor.php:231
116
+ msgid "Original image to small for good crop-quality!"
117
+ msgstr ""
118
+
119
+ #: ../functions/editor.php:237
120
+ msgid "Dimensions:"
121
+ msgstr "Розмір:"
122
+
123
+ #: ../functions/editor.php:238
124
+ msgid "Ratio:"
125
+ msgstr "Пропорції:"
126
+
127
+ #: ../functions/editor.php:421
128
+ msgid "Crop Thumbnails"
129
+ msgstr "Обрізати мініатюри"
130
+
131
+ #: ../functions/editor.php:425
132
+ msgid "Crop Featured Image"
133
+ msgstr "Обрізати головне зображення"
134
+
135
+ #: ../functions/editor.php:439
136
+ msgid "Crop Thumbnail"
137
+ msgstr "Обрізати мініатюру"
138
+
139
+ #: ../functions/save.php:95
140
+ #, php-format
141
+ msgid "Cant generate filesize \"%s\"."
142
+ msgstr ""
143
+
144
+ #: ../functions/save.php:102
145
+ msgid "Cant copy temporary file to media-library."
146
+ msgstr "Неможливо скопіювати тимчасовий файл до медіа-бібліотеки."
147
+
148
+ #: ../functions/save.php:106
149
+ msgid "Cant delete temporary file."
150
+ msgstr "Неможливо видалити тимчасовий файл."
151
+
152
+ #: ../functions/save.php:172
153
+ msgid "ERROR: Security Check failed (maybe a timeout - please try again)."
154
+ msgstr ""
155
+
156
+ #: ../functions/save.php:176
157
+ msgid "ERROR: Submitted data are not complete."
158
+ msgstr ""
159
+
160
+ #: ../functions/save.php:184
161
+ msgid "A cropping with this dimensions on these Image ist not possible."
162
+ msgstr "Неможливо обрізати це зображення з такими розмірами."
163
+
164
+ #: ../functions/save.php:195
165
+ msgid "ERROR: Can`t find original Image in Database!"
166
+ msgstr ""
167
+
168
+ #: ../functions/save.php:198
169
+ msgid "ERROR: Can`t find original Imagefile!"
170
+ msgstr ""
171
+
172
+ #: ../functions/save.php:201
173
+ msgid "ERROR: Can`t find original Image-Metadata!"
174
+ msgstr ""
175
+
176
+ #: ../functions/settings.php:16 ../functions/settings.php:30
177
+ msgid "Settings"
178
+ msgstr "Налаштування"
179
+
180
+ #: ../functions/settings.php:23
181
+ msgid "Crop Post Thumbnail Page"
182
+ msgstr ""
183
+
184
+ #: ../functions/settings.php:35
185
+ msgid "Save Changes"
186
+ msgstr "Зберегти зміни"
187
+
188
+ #: ../functions/settings.php:39
189
+ msgid "Support the plugin-author"
190
+ msgstr "Підтримайте розробника плаґіну"
191
+
192
+ #: ../functions/settings.php:40
193
+ msgid ""
194
+ "You can support the plugin-author <br />(and let him know you love this "
195
+ "plugin) <br />by donating via Paypal. Thanks a lot!"
196
+ msgstr ""
197
+ "Ви можете підтримати розвиток плаґіну<br /> переказавши кошти автору через "
198
+ "Paypal."
199
+
200
+ #: ../functions/settings.php:60
201
+ msgid "Sizes and Posttypes"
202
+ msgstr "Розміри і типи матеріалів"
203
+
204
+ #: ../functions/settings.php:61
205
+ msgid ""
206
+ "Choose the image-sizes you want to hide. Choose a post-type to prevent any "
207
+ "use of the plugin for these entries."
208
+ msgstr ""
209
+ "Виберіть розміри картинок, які Ви хочете приховати. Також можете вказати "
210
+ "типи матеріалів, де слід заборонити обрізання картинок."
211
+
212
+ #: ../functions/settings.php:66
213
+ msgid ""
214
+ "Crop-Thumbnails is created to make cropping easy for the user. Often times "
215
+ "the user only need to crop one, in dependence of the post-type. But the "
216
+ "system will create also all other sizes. So, here you can select for what "
217
+ "post-type what sizes should be visible in the plugin interface."
218
+ msgstr ""
219
+ "Цей плаґін створенно, щоб Ви могли легко і зручно обрізати зображення. Можна "
220
+ "вказати для яких типів матеріалів дозволити обрізання картинок, а також які "
221
+ "розміри зображень можна обрізати."
222
+
223
+ #: ../functions/settings.php:67
224
+ msgid ""
225
+ "Crop-Thumbnails will only show croped images - sizes with no crop will "
226
+ "always be hidden."
227
+ msgstr "Ті розміри зображень, які Ви не дозволили обрізати — буде приховано."
readme.txt CHANGED
@@ -68,6 +68,11 @@ function myCustomStyle($content) {
68
  5. Choose what image-sizes should be hidden (for what post-types), for better usability.
69
 
70
  == Changelog ==
 
 
 
 
 
71
  = 0.8.2 =
72
  * add filter for customize the style of the crop-thumbnail content ('crop_post_thumbnail_window_css')
73
  * add a fix for dynamic height/width images (http://wordpress.org/support/topic/dynamic-widthheight)
68
  5. Choose what image-sizes should be hidden (for what post-types), for better usability.
69
 
70
  == Changelog ==
71
+ = 0.8.3 =
72
+ * fix a bug for systems with comma as dezimal seperator (http://wordpress.org/support/topic/doesnt-save-the-cropped-image-anywhere?replies=12#post-4563377)
73
+ * reduce capabilities from "edit_pages" AND "upload_files" to only "upload_files"
74
+ * more informations logged in the console if an error occurs while saving
75
+
76
  = 0.8.2 =
77
  * add filter for customize the style of the crop-thumbnail content ('crop_post_thumbnail_window_css')
78
  * add a fix for dynamic height/width images (http://wordpress.org/support/topic/dynamic-widthheight)