Crop-Thumbnails - Version 0.10.3

Version Description

  • small language adjustments
Download this release

Release Info

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

Code changes from version 0.10.2 to 0.10.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.10.2
8
  * Description: Crop your thumbnails, the easy way.
9
  * Text Domain: crop-thumbnails
10
  *
@@ -27,7 +27,7 @@
27
 
28
  //cpt - stands for crop-post-thumbnail
29
  define('CROP_THUMBS_LANG','cpt_lang');
30
- define('CROP_THUMBS_VERSION','0.10.2');
31
 
32
  function cpt_plugin_init() {
33
  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.10.3
8
  * Description: Crop your thumbnails, the easy way.
9
  * Text Domain: crop-thumbnails
10
  *
27
 
28
  //cpt - stands for crop-post-thumbnail
29
  define('CROP_THUMBS_LANG','cpt_lang');
30
+ define('CROP_THUMBS_VERSION','0.10.3');
31
 
32
  function cpt_plugin_init() {
33
  load_plugin_textdomain( CROP_THUMBS_LANG, false, dirname( plugin_basename( __FILE__ ) ) . '/lang/' );
functions/editor.php CHANGED
@@ -38,11 +38,11 @@ class CropPostThumbnailsEditor {
38
  $_REQUEST['parent_post_id'] = intval($_REQUEST['image_by_post_id']);
39
  $this->byImageId();
40
  } else {
41
- $failure_msg = '<div class="listEmptyMsg">'.__('No featured Image set for this post until now.',CROP_THUMBS_LANG).'</div>';
42
  }
43
  break;
44
  default:
45
- $failure_msg = __('An error happend!',CROP_THUMBS_LANG);
46
  break;
47
  }
48
  }
@@ -77,7 +77,7 @@ class CropPostThumbnailsEditor {
77
  if($this->shouldBeHiddenOnPostType($options,$parent_post_type)) {
78
  $cptContent = '<div class="postTypeDisabledMsg">'.__('Cropping is disabled for this post-type.',CROP_THUMBS_LANG).'</div>';
79
  } elseif($data==false) {
80
- $cptContent = '<div class="listEmptyMsg">'.__('No images in this post yet. You have to upload some via upload dialog.',CROP_THUMBS_LANG).'</div>';
81
  } else {
82
  //the dynamic javascript
83
  ob_start(); ?>
@@ -177,9 +177,9 @@ class CropPostThumbnailsEditor {
177
  <script>
178
  jQuery(document).ready(function($) {
179
  cpt_lang = new Object();
180
- cpt_lang['bug'] = "<?php _e('bug - this case shouldnt be happend',CROP_THUMBS_LANG);?>";
181
- cpt_lang['warningOriginalToSmall'] = "<?php _e('Warning: the original image is to small to be cropped in good quality with this thumbnail-size.',CROP_THUMBS_LANG);?>";
182
- cpt_lang['selectOne'] = "<?php _e('First, select one image. Then, click once again.',CROP_THUMBS_LANG);?>";
183
  cpt_ajax_nonce = "<?php echo wp_create_nonce($cptSettings->getNonceBase()); ?>";
184
  cpt_debug_js = <?php echo (!empty($options['debug_js'])) ? 'true;' : 'false;'; ?>
185
  });
@@ -206,23 +206,23 @@ jQuery(document).ready(function($) {
206
  <?php else : ?>
207
 
208
  <div class="cpt-crop-view">
209
- <?php if($headline) :?><div class="header"><a class="back" href="<?php echo admin_url( 'admin-ajax.php'); ?>?action=croppostthumb_ajax&post_id=<?php echo $current_parent_post_id; ?>"><?php _e('back to image-list',CROP_THUMBS_LANG); ?></a></div><?php endif; ?>
210
- <div class="waitingWindow hidden"><?php _e('Please wait until the Images are cropped.',CROP_THUMBS_LANG); ?></div>
211
  <div class="mainWindow">
212
  <div class="selectionArea cptLeftPane">
213
  <h3><?php _e('Raw',CROP_THUMBS_LANG); ?>: <?php echo $orig_img[1].' '.__('pixel',CROP_THUMBS_LANG)?> x <?php echo $orig_img[2].' '.__('pixel',CROP_THUMBS_LANG) ?> (<?php echo $orig_img['print_ratio']; ?>)</h3>
214
  <img src="<?php echo $orig_img[0]?>" data-values='{"id":<?php echo $image_obj->ID; ?>,"parentId":<?php echo $post_id_attached ?>,"width":<?php echo $orig_img[1]?>,"height":<?php echo $orig_img[2] ?>}' />
215
- <button id="cpt-generate" class="button"><?php _e('save crop',CROP_THUMBS_LANG);?></button>
216
- <h4><?php _e('Quick-Instructions',CROP_THUMBS_LANG);?></h4>
217
  <ul class="step-info">
218
  <li><?php _e('Step 1: Choose an image from the right.',CROP_THUMBS_LANG); ?></li>
219
- <li><?php _e('Step 2: Use the mouse change the size of the rectangle on the image above.',CROP_THUMBS_LANG); ?></li>
220
- <li><?php _e('Step 3: Click on "save crop".',CROP_THUMBS_LANG); ?></li>
221
  </ul>
222
  </div>
223
  <div class="cptRightPane">
224
  <input type="checkbox" name="cpt-same-ratio" value="1" id="cpt-same-ratio" checked="checked" />
225
- <label for="cpt-same-ratio" class="lbl-cpt-same-ratio"><?php _e('select images with same ratio at once',CROP_THUMBS_LANG); ?></label>
226
  <button id="cpt-deselect" class="button"><?php _e('deselect all',CROP_THUMBS_LANG); ?></button>
227
  <ul class="thumbnail-list">
228
  <?php
@@ -283,7 +283,7 @@ jQuery(document).ready(function($) {
283
 
284
  $_lowResWarning = '';
285
  if($this->isLowRes($value,$orig_img)) {
286
- $_lowResWarning = ' <span class="lowResWarning">'.__('Original image to small for good crop-quality!',CROP_THUMBS_LANG).'</span>';
287
  }
288
 
289
  ?>
38
  $_REQUEST['parent_post_id'] = intval($_REQUEST['image_by_post_id']);
39
  $this->byImageId();
40
  } else {
41
+ $failure_msg = '<div class="listEmptyMsg">'.__('No featured image set for this post until now.',CROP_THUMBS_LANG).'</div>';
42
  }
43
  break;
44
  default:
45
+ $failure_msg = __('An error occurred!',CROP_THUMBS_LANG);
46
  break;
47
  }
48
  }
77
  if($this->shouldBeHiddenOnPostType($options,$parent_post_type)) {
78
  $cptContent = '<div class="postTypeDisabledMsg">'.__('Cropping is disabled for this post-type.',CROP_THUMBS_LANG).'</div>';
79
  } elseif($data==false) {
80
+ $cptContent = '<div class="listEmptyMsg">'.__('No images attached to this post yet. Please upload some via the upload dialog.',CROP_THUMBS_LANG).'</div>';
81
  } else {
82
  //the dynamic javascript
83
  ob_start(); ?>
177
  <script>
178
  jQuery(document).ready(function($) {
179
  cpt_lang = new Object();
180
+ cpt_lang['bug'] = "<?php _e('Bug--this should not have occurred.',CROP_THUMBS_LANG);?>";
181
+ cpt_lang['warningOriginalToSmall'] = "<?php _e('Warning: the original image is too small to be cropped in good quality with this thumbnail size.',CROP_THUMBS_LANG);?>";
182
+ cpt_lang['selectOne'] = "<?php _e('First, select an image. Then, click once again.',CROP_THUMBS_LANG);?>";
183
  cpt_ajax_nonce = "<?php echo wp_create_nonce($cptSettings->getNonceBase()); ?>";
184
  cpt_debug_js = <?php echo (!empty($options['debug_js'])) ? 'true;' : 'false;'; ?>
185
  });
206
  <?php else : ?>
207
 
208
  <div class="cpt-crop-view">
209
+ <?php if($headline) :?><div class="header"><a class="back" href="<?php echo admin_url( 'admin-ajax.php'); ?>?action=croppostthumb_ajax&post_id=<?php echo $current_parent_post_id; ?>"><?php _e('back to image list',CROP_THUMBS_LANG); ?></a></div><?php endif; ?>
210
+ <div class="waitingWindow hidden"><?php _e('Please wait until the images are cropped.',CROP_THUMBS_LANG); ?></div>
211
  <div class="mainWindow">
212
  <div class="selectionArea cptLeftPane">
213
  <h3><?php _e('Raw',CROP_THUMBS_LANG); ?>: <?php echo $orig_img[1].' '.__('pixel',CROP_THUMBS_LANG)?> x <?php echo $orig_img[2].' '.__('pixel',CROP_THUMBS_LANG) ?> (<?php echo $orig_img['print_ratio']; ?>)</h3>
214
  <img src="<?php echo $orig_img[0]?>" data-values='{"id":<?php echo $image_obj->ID; ?>,"parentId":<?php echo $post_id_attached ?>,"width":<?php echo $orig_img[1]?>,"height":<?php echo $orig_img[2] ?>}' />
215
+ <button id="cpt-generate" class="button"><?php _e('Save Crop',CROP_THUMBS_LANG);?></button>
216
+ <h4><?php _e('Quick Instructions',CROP_THUMBS_LANG);?></h4>
217
  <ul class="step-info">
218
  <li><?php _e('Step 1: Choose an image from the right.',CROP_THUMBS_LANG); ?></li>
219
+ <li><?php _e('Step 2: Use your mouse to change the size of the rectangle on the image above.',CROP_THUMBS_LANG); ?></li>
220
+ <li><?php _e('Step 3: Click on "Save Crop".',CROP_THUMBS_LANG); ?></li>
221
  </ul>
222
  </div>
223
  <div class="cptRightPane">
224
  <input type="checkbox" name="cpt-same-ratio" value="1" id="cpt-same-ratio" checked="checked" />
225
+ <label for="cpt-same-ratio" class="lbl-cpt-same-ratio"><?php _e('Crop all images with same ratio at once',CROP_THUMBS_LANG); ?></label>
226
  <button id="cpt-deselect" class="button"><?php _e('deselect all',CROP_THUMBS_LANG); ?></button>
227
  <ul class="thumbnail-list">
228
  <?php
283
 
284
  $_lowResWarning = '';
285
  if($this->isLowRes($value,$orig_img)) {
286
+ $_lowResWarning = ' <span class="lowResWarning">'.__('Original image size too small for good crop quality!',CROP_THUMBS_LANG).'</span>';
287
  }
288
 
289
  ?>
functions/save.php CHANGED
@@ -8,7 +8,7 @@ class CptSaveThumbnail {
8
 
9
  /**
10
  * Handle-function called via ajax request.
11
- * Check and crop multiple Images. Update with wp_update_attachment_metadata if needed.
12
  * Input parameters:
13
  * * $_REQUEST['selection'] - json-object - data of the selection/crop
14
  * * $_REQUEST['raw_values'] - json-object - data of the original image
@@ -48,8 +48,8 @@ class CptSaveThumbnail {
48
  #$debug.= "\nsource:".$sourceImgPath."\n";
49
 
50
  /**
51
- * will be true if the image format issnt in the attachements metadata,
52
- * and wordpress dont know about the image-file
53
  */
54
  $_changed_image_format = false;
55
  $_processing_error = array();
@@ -58,7 +58,7 @@ class CptSaveThumbnail {
58
  $this->addDebug(print_r($_imageSize,true));
59
  $_delete_old_file = '';
60
  if(!$this->isImageSizeValid($_imageSize,$dbImageSizes)) {
61
- $this->addDebug("Image Size not valid.");
62
  continue;
63
  }
64
  if(empty($post_metadata['sizes'][$_imageSize->name])) {
@@ -103,18 +103,18 @@ class CptSaveThumbnail {
103
 
104
  $_error = false;
105
  if(empty($result)) {
106
- $_processing_error[] = sprintf(__('Cant generate filesize "%s".',CROP_THUMBS_LANG),$_imageSize->name);
107
  $_error = true;
108
  } else {
109
  if(!empty($_delete_old_file)) {
110
  @unlink($_filepath_info['dirname'].'/'.$_delete_old_file);
111
  }
112
  if(!@copy($result,$_filepath)) {
113
- $_processing_error[] = sprintf(__('Cant copy temporary file to media-library.',CROP_THUMBS_LANG));
114
  $_error = true;
115
  }
116
  if(!@unlink($result)) {
117
- $_processing_error[] = sprintf(__('Cant delete temporary file.',CROP_THUMBS_LANG));
118
  $_error = true;
119
  }
120
  }
@@ -206,7 +206,7 @@ class CptSaveThumbnail {
206
  }
207
 
208
  if(!isset($selection->x) || !isset($selection->y) || !isset($selection->x2) || !isset($selection->y2)) {
209
- throw new Exception(__('ERROR: Submitted data are not complete.',CROP_THUMBS_LANG), 1);
210
  }
211
  $selection->x = intval($selection->x);
212
  $selection->y = intval($selection->y);
@@ -214,7 +214,7 @@ class CptSaveThumbnail {
214
  $selection->y2 = intval($selection->y2);
215
 
216
  if($selection->x < 0 || $selection->y < 0) {
217
- throw new Exception(__('A cropping with this dimensions on these Image ist not possible.',CROP_THUMBS_LANG), 1);
218
  }
219
 
220
  /**
@@ -225,13 +225,13 @@ class CptSaveThumbnail {
225
  */
226
 
227
  if(empty($obj)) {
228
- throw new Exception(__('ERROR: Can`t find original Image in Database!',CROP_THUMBS_LANG), 1);
229
  }
230
  if(empty($sourceImgPath)) {
231
- throw new Exception(__('ERROR: Can`t find original Imagefile!',CROP_THUMBS_LANG), 1);
232
  }
233
  if(empty($post_metadata)) {
234
- throw new Exception(__('ERROR: Can`t find original Image-Metadata!',CROP_THUMBS_LANG), 1);
235
  }
236
  }
237
 
8
 
9
  /**
10
  * Handle-function called via ajax request.
11
+ * Check and crop multiple images. Update with wp_update_attachment_metadata if needed.
12
  * Input parameters:
13
  * * $_REQUEST['selection'] - json-object - data of the selection/crop
14
  * * $_REQUEST['raw_values'] - json-object - data of the original image
48
  #$debug.= "\nsource:".$sourceImgPath."\n";
49
 
50
  /**
51
+ * will be true if the image format isn't in the attachements metadata,
52
+ * and Wordpress doesn't know about the image file
53
  */
54
  $_changed_image_format = false;
55
  $_processing_error = array();
58
  $this->addDebug(print_r($_imageSize,true));
59
  $_delete_old_file = '';
60
  if(!$this->isImageSizeValid($_imageSize,$dbImageSizes)) {
61
+ $this->addDebug("Image size not valid.");
62
  continue;
63
  }
64
  if(empty($post_metadata['sizes'][$_imageSize->name])) {
103
 
104
  $_error = false;
105
  if(empty($result)) {
106
+ $_processing_error[] = sprintf(__("Can't generate filesize '%s'.",CROP_THUMBS_LANG),$_imageSize->name);
107
  $_error = true;
108
  } else {
109
  if(!empty($_delete_old_file)) {
110
  @unlink($_filepath_info['dirname'].'/'.$_delete_old_file);
111
  }
112
  if(!@copy($result,$_filepath)) {
113
+ $_processing_error[] = sprintf(__("Can't copy temporary file to media library.",CROP_THUMBS_LANG));
114
  $_error = true;
115
  }
116
  if(!@unlink($result)) {
117
+ $_processing_error[] = sprintf(__("Can't delete temporary file.",CROP_THUMBS_LANG));
118
  $_error = true;
119
  }
120
  }
206
  }
207
 
208
  if(!isset($selection->x) || !isset($selection->y) || !isset($selection->x2) || !isset($selection->y2)) {
209
+ throw new Exception(__('ERROR: Submitted data is incomplete.',CROP_THUMBS_LANG), 1);
210
  }
211
  $selection->x = intval($selection->x);
212
  $selection->y = intval($selection->y);
214
  $selection->y2 = intval($selection->y2);
215
 
216
  if($selection->x < 0 || $selection->y < 0) {
217
+ throw new Exception(__('Cropping to these dimensions on this image is not possible.',CROP_THUMBS_LANG), 1);
218
  }
219
 
220
  /**
225
  */
226
 
227
  if(empty($obj)) {
228
+ throw new Exception(__("ERROR: Can't find original image in database!",CROP_THUMBS_LANG), 1);
229
  }
230
  if(empty($sourceImgPath)) {
231
+ throw new Exception(__("ERROR: Can't find original image file!",CROP_THUMBS_LANG), 1);
232
  }
233
  if(empty($post_metadata)) {
234
+ throw new Exception(__("ERROR: Can't find original image metadata!",CROP_THUMBS_LANG), 1);
235
  }
236
  }
237
 
functions/settings.php CHANGED
@@ -46,8 +46,8 @@ class CropThumbnailsSettings {
46
  </form>
47
 
48
  <div class="<?php echo $this->cssPrefix; ?>paypal">
49
- <h3><?php _e('Support the plugin-author',CROP_THUMBS_LANG) ?></h3>
50
- <p><?php _e('You can support the plugin-author <br />(and let him know you love this plugin) <br />by donating via Paypal. Thanks a lot!',CROP_THUMBS_LANG); ?></p>
51
  <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
52
  <input type="hidden" name="cmd" value="_donations">
53
  <input type="hidden" name="business" value="volkmar.kantor@gmx.de">
@@ -69,8 +69,8 @@ class CropThumbnailsSettings {
69
  register_setting( $this->uniqeSettingsId, $this->optionsKey, array($this,'validateSettings') );
70
 
71
  $_sectionID = 'choose_sizes_section';
72
- add_settings_section($_sectionID, __('Sizes and Posttypes',CROP_THUMBS_LANG), array($this,'sectionDescriptionChooseSizes'), 'page1');
73
- add_settings_field('sizes', __('Choose the image-sizes you want to hide. Choose a post-type to prevent any use of the plugin for these entries.',CROP_THUMBS_LANG), array($this,'callback_choose_size'), 'page1', $_sectionID);
74
  /*
75
  $_sectionID = 'experimental';
76
  add_settings_section($_sectionID, __('Experimental Settings',CROP_THUMBS_LANG), array($this,'emptySectionDescription'), 'page1');
@@ -87,8 +87,8 @@ class CropThumbnailsSettings {
87
 
88
  function sectionDescriptionChooseSizes() {?>
89
  <p>
90
- <?php _e('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.',CROP_THUMBS_LANG) ?>
91
- <br /><strong><?php _e('Crop-Thumbnails will only show croped images - sizes with no crop will always be hidden.',CROP_THUMBS_LANG); ?></strong>
92
  </p>
93
  <?php
94
  }
46
  </form>
47
 
48
  <div class="<?php echo $this->cssPrefix; ?>paypal">
49
+ <h3><?php _e('Support the plugin author',CROP_THUMBS_LANG) ?></h3>
50
+ <p><?php _e('You can support the plugin author <br />(and let him know you love this plugin) <br />by donating via Paypal. Thanks a lot!',CROP_THUMBS_LANG); ?></p>
51
  <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
52
  <input type="hidden" name="cmd" value="_donations">
53
  <input type="hidden" name="business" value="volkmar.kantor@gmx.de">
69
  register_setting( $this->uniqeSettingsId, $this->optionsKey, array($this,'validateSettings') );
70
 
71
  $_sectionID = 'choose_sizes_section';
72
+ add_settings_section($_sectionID, __('Sizes and Post Types',CROP_THUMBS_LANG), array($this,'sectionDescriptionChooseSizes'), 'page1');
73
+ add_settings_field('sizes', __('Choose the image size options you want to hide for each post type.',CROP_THUMBS_LANG), array($this,'callback_choose_size'), 'page1', $_sectionID);
74
  /*
75
  $_sectionID = 'experimental';
76
  add_settings_section($_sectionID, __('Experimental Settings',CROP_THUMBS_LANG), array($this,'emptySectionDescription'), 'page1');
87
 
88
  function sectionDescriptionChooseSizes() {?>
89
  <p>
90
+ <?php _e('Crop-Thumbnails is designed to make cropping images easy. For some post types, not all crop sizes are needed, but the plugin will automatically create all the crop sizes. Here you can select which crop sizes are available in the cropping interface for each post type..',CROP_THUMBS_LANG) ?>
91
+ <br /><strong><?php _e('Crop-Thumbnails will only show cropped images. Sizes with no crop will always be hidden.',CROP_THUMBS_LANG); ?></strong>
92
  </p>
93
  <?php
94
  }
lang/cpt_lang-de_DE.mo CHANGED
Binary file
lang/cpt_lang-de_DE.po CHANGED
@@ -2,33 +2,46 @@ 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
@@ -36,7 +49,9 @@ 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
@@ -53,28 +68,28 @@ 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
@@ -86,11 +101,11 @@ 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
@@ -99,17 +114,18 @@ 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
@@ -125,7 +141,7 @@ 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
@@ -136,56 +152,44 @@ msgstr "Größe:"
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
@@ -201,12 +205,12 @@ 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 "
@@ -214,15 +218,13 @@ msgstr ""
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
@@ -240,10 +242,10 @@ 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, "
@@ -253,13 +255,13 @@ msgstr ""
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 "
@@ -267,24 +269,33 @@ msgid ""
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
 
2
  msgstr ""
3
  "Project-Id-Version: Crop-Post-Thumbnails\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-11-18 22:25+0100\n"
6
+ "PO-Revision-Date: 2015-11-18 22:25+0100\n"
7
  "Last-Translator: Volkmar Kantor <volkmar.kantor@gmx.de>\n"
8
  "Language-Team: \n"
9
+ "Language: de_DE\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e;esc_attr_e;esc_html_e;esc_html__\n"
14
  "X-Poedit-Basepath: .\n"
15
  "X-Generator: Poedit 1.7.6\n"
 
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
+ #: ../crop-thumbnails.php:35
19
  msgid "Crop your thumbnails, the easy way."
20
  msgstr "Zuschnitt ihrer Artikelbilder - einfach gemacht."
21
 
22
+ #: ../functions/backendpreparer.php:84 ../functions/backendpreparer.php:87
23
+ msgid "Crop Thumbnails"
24
+ msgstr "Bilder Zuschneiden"
25
+
26
+ #: ../functions/backendpreparer.php:98 ../functions/backendpreparer.php:101
27
+ msgid "Crop Featured Image"
28
+ msgstr "Artikelbild zuschneiden"
29
+
30
+ #: ../functions/backendpreparer.php:127 ../functions/backendpreparer.php:130
31
+ #: ../functions/backendpreparer.php:253
32
+ msgid "Crop Thumbnail"
33
+ msgstr "Bild zuschneiden"
34
+
35
  #: ../functions/editor.php:25
36
  msgid "You are not allowed to do this."
37
  msgstr "Sie haben keine Rechte diese Aktion auszuführen."
38
 
39
  #: ../functions/editor.php:41
40
+ msgid "No featured image set for this post until now."
41
  msgstr "Bisher ist kein Artikelbild gesetzt worden."
42
 
43
  #: ../functions/editor.php:45
44
+ msgid "An error occurred!"
45
  msgstr "Es ist ein Fehler aufgetretten!"
46
 
47
  #: ../functions/editor.php:78 ../functions/editor.php:204
49
  msgstr "Das Zuschneiden ist für diesen Eintragstyp deaktiviert."
50
 
51
  #: ../functions/editor.php:80
52
+ msgid ""
53
+ "No images attached to this post yet. Please upload some via the upload "
54
+ "dialog."
55
  msgstr "Zu diesem Eintrag wurden bisher keine Bilder hinzugefügt."
56
 
57
  #: ../functions/editor.php:101
68
  msgstr "Bild %d"
69
 
70
  #: ../functions/editor.php:180
71
+ msgid "Bug--this should not have occurred."
72
  msgstr ""
73
  "BUG - dieser Fall hätte nie eintretten drüfen - Plugin-Autor benachrichtigen."
74
 
75
  #: ../functions/editor.php:181
76
  msgid ""
77
+ "Warning: the original image is too small to be cropped in good quality with "
78
+ "this thumbnail size."
79
  msgstr ""
80
  "Warung: das Original-Bild ist zu klein um es für diese Thumbnail-Größe in "
81
  "guter Qualität zuzuschneiden."
82
 
83
  #: ../functions/editor.php:182
84
+ msgid "First, select an image. Then, click once again."
85
  msgstr "Erst ein Bild auswählen, danach erneut probieren."
86
 
87
  #: ../functions/editor.php:209
88
+ msgid "back to image list"
89
  msgstr "Zurück zur Bild-Übersicht"
90
 
91
  #: ../functions/editor.php:210
92
+ msgid "Please wait until the images are cropped."
93
  msgstr "Bitte warten Sie bis die Bilder zugeschnitten wurden."
94
 
95
  #: ../functions/editor.php:213
101
  msgstr "Pixel"
102
 
103
  #: ../functions/editor.php:215
104
+ msgid "Save Crop"
105
  msgstr "Zuschnitt übernehmen"
106
 
107
  #: ../functions/editor.php:216
108
+ msgid "Quick Instructions"
109
  msgstr "Schnell-Anleitung"
110
 
111
  #: ../functions/editor.php:218
114
 
115
  #: ../functions/editor.php:219
116
  msgid ""
117
+ "Step 2: Use your mouse to change the size of the rectangle on the image "
118
+ "above."
119
  msgstr ""
120
  "Schritt 2: Benutzen Sie die Maus um die Größe des Rechtecks im oberen Bild "
121
  "zu ändern."
122
 
123
  #: ../functions/editor.php:220
124
+ msgid "Step 3: Click on \"Save Crop\"."
125
  msgstr "Schritt 3: Klicken Sie auf \"Zuschnitt übernehmen\"."
126
 
127
  #: ../functions/editor.php:225
128
+ msgid "Crop all images with same ratio at once"
129
  msgstr "bei gleichem Seitenverhältnis gemeinsam auswählen"
130
 
131
  #: ../functions/editor.php:226
141
  msgstr "Maximum"
142
 
143
  #: ../functions/editor.php:286
144
+ msgid "Original image size too small for good crop quality!"
145
  msgstr "Original-Bild ist zu klein für guten Bildzuschnitt!"
146
 
147
  #: ../functions/editor.php:292
152
  msgid "Ratio:"
153
  msgstr "Seitenverhältnis:"
154
 
155
+ #: ../functions/save.php:106
 
 
 
 
 
 
 
 
 
 
 
 
156
  #, php-format
157
+ msgid "Can't generate filesize '%s'."
158
+ msgstr "Die Bildgröße '%s' konnte nicht generiert werden."
159
 
160
+ #: ../functions/save.php:113
161
+ msgid "Can't copy temporary file to media library."
162
  msgstr "Kopieren vom temporären Verzeichnis in die Mediathek fehlgeschlagen."
163
 
164
+ #: ../functions/save.php:117
165
+ msgid "Can't delete temporary file."
166
  msgstr "Löschen der temporären Datei fehlgeschlagen."
167
 
168
+ #: ../functions/save.php:205
169
  msgid "ERROR: Security Check failed (maybe a timeout - please try again)."
170
  msgstr ""
171
  "Fehler: Sicherheitsüberprüfung fehlgeschlagen (vielleicht eine "
172
  "Zeitüberschreitung - bitte versuchen Sie es noch einmal)."
173
 
174
+ #: ../functions/save.php:209
175
+ msgid "ERROR: Submitted data is incomplete."
176
  msgstr "Fehler: Übermittelte Daten sind nicht vollständig."
177
 
178
+ #: ../functions/save.php:217
179
+ msgid "Cropping to these dimensions on this image is not possible."
180
  msgstr ""
181
  "Das Zuschneiden mit diesen Einstellungen ist bei diesem Bild nicht möglich."
182
 
183
+ #: ../functions/save.php:228
184
+ msgid "ERROR: Can't find original image in database!"
185
  msgstr "Fehler: Konnte die Original Bild nicht in der Datenbank finden!"
186
 
187
+ #: ../functions/save.php:231
188
+ msgid "ERROR: Can't find original image file!"
189
  msgstr "Fehler: Konnte die Original-Bilddatei nicht finden!"
190
 
191
+ #: ../functions/save.php:234
192
+ msgid "ERROR: Can't find original image metadata!"
193
  msgstr "Fehler: Konnte Original-Bild-Metadaten nicht finden!"
194
 
195
  #: ../functions/settings.php:24 ../functions/settings.php:38
205
  msgstr "Einstellungen speichern"
206
 
207
  #: ../functions/settings.php:49
208
+ msgid "Support the plugin author"
209
  msgstr "Unterstützen Sie den Plugin Entwickler"
210
 
211
  #: ../functions/settings.php:50
212
  msgid ""
213
+ "You can support the plugin author <br />(and let him know you love this "
214
  "plugin) <br />by donating via Paypal. Thanks a lot!"
215
  msgstr ""
216
  "Sie können den Entwickler unterstützen <br />(und ihn so wissen lassen, dass "
218
  "lassen. <br />Vielen Dank!"
219
 
220
  #: ../functions/settings.php:72
221
+ msgid "Sizes and Post Types"
222
  msgstr "Größen und Eintragstypen"
223
 
224
  #: ../functions/settings.php:73
225
+ msgid "Choose the image size options you want to hide for each post type."
 
 
226
  msgstr ""
227
+ "Wählen sie die Bildgrößen die ausgeblendet werden sollen. Wählen Sie einen "
228
  "Eintragstyp um das Zuschneiden in diesen Einträge komplett zu verhindern."
229
 
230
  #: ../functions/settings.php:81
242
 
243
  #: ../functions/settings.php:90
244
  msgid ""
245
+ "Crop-Thumbnails is designed to make cropping images easy. For some post "
246
+ "types, not all crop sizes are needed, but the plugin will automatically "
247
+ "create all the crop sizes. Here you can select which crop sizes are "
248
+ "available in the cropping interface for each post type.."
249
  msgstr ""
250
  "Crop Thumbnails wurde erstellt um das Zuschneiden von Bildern für den "
251
  "Benutzer zu erleichtern. Oft muss der Nutzer nur eine Bildgröße zuschneiden, "
255
 
256
  #: ../functions/settings.php:91
257
  msgid ""
258
+ "Crop-Thumbnails will only show cropped images. Sizes with no crop will "
259
  "always be hidden."
260
  msgstr ""
261
  "Crop Thumbnails wird nur Bilder anzeigen die einen Zuschnitt besitzen. "
262
  "Bildgrößen ohne Zuschnitt werden immer ausgeblendet."
263
 
264
+ #: ../functions/settings.php:149
265
  msgid ""
266
  "ATTENTION: be aware that you can break things, when you activate this. When "
267
  "activated your are able to cut those images to a spezific dimension that are "
269
  "carefull when:"
270
  msgstr ""
271
 
272
+ #: ../functions/settings.php:151
273
  msgid ""
274
  "you had inserted the image before on any page or post. (There may be height "
275
  "and width stored directly in the page-content.)"
276
  msgstr ""
277
 
278
+ #: ../functions/settings.php:152
279
  msgid ""
280
  "you use a plugin that expect the original image size. (The original image-"
281
  "size is also \"stored\" in the filename.)"
282
  msgstr ""
283
 
284
+ #: ../functions/settings.php:154
285
  msgid ""
286
  "The \"full\" image-size will never be cropped, otherwise you are not able to "
287
  "restore any image-size."
288
  msgstr ""
289
 
290
+ #~ msgid "Cant generate filesize \"%s\"."
291
+ #~ msgstr "Cant generate filesize \"%s\"."
292
+
293
+ #~ msgid "Choose the image size options you want to hide for each post type. "
294
+ #~ msgstr ""
295
+ #~ "Wählen sie die Bildgrößen die ausgeblendet werden sollen. Wählen Sie "
296
+ #~ "einen Eintragstyp um das Zuschneiden in diesen Einträge komplett zu "
297
+ #~ "verhindern."
298
+
299
  #~ msgid "Crop Thumbnails - Settings"
300
  #~ msgstr "Crop Thumbnails - Einstellungen"
301
 
lang/cpt_lang-default.mo CHANGED
Binary file
lang/cpt_lang-default.po CHANGED
@@ -2,8 +2,8 @@ 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"
@@ -11,23 +11,36 @@ msgstr ""
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
@@ -35,7 +48,9 @@ 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
@@ -52,25 +67,25 @@ 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
@@ -82,11 +97,11 @@ 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
@@ -95,15 +110,16 @@ 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
@@ -119,7 +135,7 @@ 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
@@ -130,53 +146,41 @@ msgstr ""
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
@@ -192,23 +196,21 @@ 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
@@ -225,19 +227,19 @@ 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 "
@@ -245,19 +247,19 @@ msgid ""
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."
2
  msgstr ""
3
  "Project-Id-Version: Crop-Post-Thumbnails\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-11-18 21:58+0100\n"
6
+ "PO-Revision-Date: 2015-11-18 21:58+0100\n"
7
  "Last-Translator: Volkmar Kantor <volkmar.kantor@gmx.de>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\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.7.6\n"
15
  "X-Poedit-SearchPath-0: ..\n"
16
 
17
+ #: ../crop-thumbnails.php:35
18
  msgid "Crop your thumbnails, the easy way."
19
  msgstr ""
20
 
21
+ #: ../functions/backendpreparer.php:84 ../functions/backendpreparer.php:87
22
+ msgid "Crop Thumbnails"
23
+ msgstr ""
24
+
25
+ #: ../functions/backendpreparer.php:98 ../functions/backendpreparer.php:101
26
+ msgid "Crop Featured Image"
27
+ msgstr ""
28
+
29
+ #: ../functions/backendpreparer.php:127 ../functions/backendpreparer.php:130
30
+ #: ../functions/backendpreparer.php:252
31
+ msgid "Crop Thumbnail"
32
+ msgstr ""
33
+
34
  #: ../functions/editor.php:25
35
  msgid "You are not allowed to do this."
36
  msgstr ""
37
 
38
  #: ../functions/editor.php:41
39
+ msgid "No featured image set for this post until now."
40
  msgstr ""
41
 
42
  #: ../functions/editor.php:45
43
+ msgid "An error occurred!"
44
  msgstr ""
45
 
46
  #: ../functions/editor.php:78 ../functions/editor.php:204
48
  msgstr ""
49
 
50
  #: ../functions/editor.php:80
51
+ msgid ""
52
+ "No images attached to this post yet. Please upload some via the upload "
53
+ "dialog."
54
  msgstr ""
55
 
56
  #: ../functions/editor.php:101
67
  msgstr ""
68
 
69
  #: ../functions/editor.php:180
70
+ msgid "Bug--this should not have occurred."
71
  msgstr ""
72
 
73
  #: ../functions/editor.php:181
74
  msgid ""
75
+ "Warning: the original image is too small to be cropped in good quality with "
76
+ "this thumbnail size."
77
  msgstr ""
78
 
79
  #: ../functions/editor.php:182
80
+ msgid "First, select an image. Then, click once again."
81
  msgstr ""
82
 
83
  #: ../functions/editor.php:209
84
+ msgid "back to image list"
85
  msgstr ""
86
 
87
  #: ../functions/editor.php:210
88
+ msgid "Please wait until the images are cropped."
89
  msgstr ""
90
 
91
  #: ../functions/editor.php:213
97
  msgstr ""
98
 
99
  #: ../functions/editor.php:215
100
+ msgid "Save Crop"
101
  msgstr ""
102
 
103
  #: ../functions/editor.php:216
104
+ msgid "Quick Instructions"
105
  msgstr ""
106
 
107
  #: ../functions/editor.php:218
110
 
111
  #: ../functions/editor.php:219
112
  msgid ""
113
+ "Step 2: Use your mouse to change the size of the rectangle on the image "
114
+ "above."
115
  msgstr ""
116
 
117
  #: ../functions/editor.php:220
118
+ msgid "Step 3: Click on \"Save Crop\"."
119
  msgstr ""
120
 
121
  #: ../functions/editor.php:225
122
+ msgid "Crop all images with same ratio at once"
123
  msgstr ""
124
 
125
  #: ../functions/editor.php:226
135
  msgstr ""
136
 
137
  #: ../functions/editor.php:286
138
+ msgid "Original image size too small for good crop quality!"
139
  msgstr ""
140
 
141
  #: ../functions/editor.php:292
146
  msgid "Ratio:"
147
  msgstr ""
148
 
149
+ #: ../functions/save.php:106
 
 
 
 
 
 
 
 
 
 
 
 
150
  #, php-format
151
+ msgid "Can't generate filesize '%s'."
152
  msgstr ""
153
 
154
+ #: ../functions/save.php:113
155
+ msgid "Can't copy temporary file to media library."
156
  msgstr ""
157
 
158
+ #: ../functions/save.php:117
159
+ msgid "Can't delete temporary file."
160
  msgstr ""
161
 
162
+ #: ../functions/save.php:205
163
  msgid "ERROR: Security Check failed (maybe a timeout - please try again)."
164
  msgstr ""
165
 
166
+ #: ../functions/save.php:209
167
+ msgid "ERROR: Submitted data is incomplete."
168
  msgstr ""
169
 
170
+ #: ../functions/save.php:217
171
+ msgid "Cropping to these dimensions on this image is not possible."
172
  msgstr ""
173
 
174
+ #: ../functions/save.php:228
175
+ msgid "ERROR: Can't find original image in database!"
176
  msgstr ""
177
 
178
+ #: ../functions/save.php:231
179
+ msgid "ERROR: Can't find original image file!"
180
  msgstr ""
181
 
182
+ #: ../functions/save.php:234
183
+ msgid "ERROR: Can't find original image metadata!"
184
  msgstr ""
185
 
186
  #: ../functions/settings.php:24 ../functions/settings.php:38
196
  msgstr ""
197
 
198
  #: ../functions/settings.php:49
199
+ msgid "Support the plugin author"
200
  msgstr ""
201
 
202
  #: ../functions/settings.php:50
203
  msgid ""
204
+ "You can support the plugin author <br />(and let him know you love this "
205
  "plugin) <br />by donating via Paypal. Thanks a lot!"
206
  msgstr ""
207
 
208
  #: ../functions/settings.php:72
209
+ msgid "Sizes and Post Types"
210
  msgstr ""
211
 
212
  #: ../functions/settings.php:73
213
+ msgid "Choose the image size options you want to hide for each post type."
 
 
214
  msgstr ""
215
 
216
  #: ../functions/settings.php:81
227
 
228
  #: ../functions/settings.php:90
229
  msgid ""
230
+ "Crop-Thumbnails is designed to make cropping images easy. For some post "
231
+ "types, not all crop sizes are needed, but the plugin will automatically "
232
+ "create all the crop sizes. Here you can select which crop sizes are "
233
+ "available in the cropping interface for each post type.."
234
  msgstr ""
235
 
236
  #: ../functions/settings.php:91
237
  msgid ""
238
+ "Crop-Thumbnails will only show cropped images. Sizes with no crop will "
239
  "always be hidden."
240
  msgstr ""
241
 
242
+ #: ../functions/settings.php:149
243
  msgid ""
244
  "ATTENTION: be aware that you can break things, when you activate this. When "
245
  "activated your are able to cut those images to a spezific dimension that are "
247
  "carefull when:"
248
  msgstr ""
249
 
250
+ #: ../functions/settings.php:151
251
  msgid ""
252
  "you had inserted the image before on any page or post. (There may be height "
253
  "and width stored directly in the page-content.)"
254
  msgstr ""
255
 
256
+ #: ../functions/settings.php:152
257
  msgid ""
258
  "you use a plugin that expect the original image size. (The original image-"
259
  "size is also \"stored\" in the filename.)"
260
  msgstr ""
261
 
262
+ #: ../functions/settings.php:154
263
  msgid ""
264
  "The \"full\" image-size will never be cropped, otherwise you are not able to "
265
  "restore any image-size."
lang/cpt_lang-hu_HU.mo CHANGED
Binary file
lang/cpt_lang-hu_HU.po CHANGED
@@ -2,223 +2,246 @@ 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 "
@@ -227,10 +250,36 @@ msgstr ""
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."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: Crop-Post-Thumbnails\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-11-18 22:26+0100\n"
6
+ "PO-Revision-Date: 2015-11-18 22:26+0100\n"
7
  "Last-Translator: Volkmar Kantor <volkmar.kantor@gmx.de>\n"
8
  "Language-Team: \n"
9
+ "Language: hu_HU\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e;esc_attr_e;esc_attr__;esc_html_e\n"
14
  "X-Poedit-Basepath: .\n"
15
+ "X-Generator: Poedit 1.7.6\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
  #: ../crop-thumbnails.php:35
19
  msgid "Crop your thumbnails, the easy way."
20
  msgstr "Tökéletes kisképek, egyszerűen!"
21
 
22
+ #: ../functions/backendpreparer.php:84 ../functions/backendpreparer.php:87
23
+ msgid "Crop Thumbnails"
24
+ msgstr "Kiskép szerkesztő"
25
+
26
+ #: ../functions/backendpreparer.php:98 ../functions/backendpreparer.php:101
27
+ msgid "Crop Featured Image"
28
+ msgstr "Kiemeltkép vágása"
29
 
30
+ #: ../functions/backendpreparer.php:127 ../functions/backendpreparer.php:130
31
+ #: ../functions/backendpreparer.php:252
32
+ msgid "Crop Thumbnail"
33
+ msgstr "Kiskép vágása"
34
+
35
+ #: ../functions/editor.php:25
36
+ msgid "You are not allowed to do this."
37
+ msgstr ""
38
+
39
+ #: ../functions/editor.php:41
40
+ msgid "No featured image set for this post until now."
41
  msgstr "Ehhez a bejegyzéshez még nincs kiemelt kép beállítva"
42
 
43
+ #: ../functions/editor.php:45
44
+ msgid "An error occurred!"
45
+ msgstr "Ajaj! Hiba történt."
46
+
47
+ #: ../functions/editor.php:78 ../functions/editor.php:204
48
  msgid "Cropping is disabled for this post-type."
49
  msgstr "Ajaj! Képvágáshoz nincs jogosultságod ebben a bejegyzéstípusban."
50
 
51
+ #: ../functions/editor.php:80
52
+ msgid ""
53
+ "No images attached to this post yet. Please upload some via the upload "
54
+ "dialog."
55
  msgstr ""
56
  "Ehhez a bejegyzéshez nincs még feltöltött kép. Fel kellene tölteni párat."
57
 
58
+ #: ../functions/editor.php:101
59
  msgid "Choose the image you want to crop."
60
  msgstr "Válasz egy képet a vágáshoz."
61
 
62
+ #: ../functions/editor.php:107
63
  msgid "Post Thumbnail"
64
  msgstr "Kiemelt kép"
65
 
66
+ #: ../functions/editor.php:107
67
  #, php-format
68
  msgid "Image %d"
69
  msgstr "(?)Kép %d"
70
 
71
+ #: ../functions/editor.php:180
72
+ msgid "Bug--this should not have occurred."
73
  msgstr "Program hiba! Ennek elvileg nem kellett volna megtörténnie."
74
 
75
+ #: ../functions/editor.php:181
76
  msgid ""
77
+ "Warning: the original image is too small to be cropped in good quality with "
78
+ "this thumbnail size."
79
  msgstr ""
80
  "Hiba! Az eredeti kép túl kicsi a minőségvesztés nélküli átméretezéshez."
81
 
82
+ #: ../functions/editor.php:182
83
+ msgid "First, select an image. Then, click once again."
84
  msgstr "Válaszd ki a vágandó képet és kattints rá kétszer."
85
 
86
+ #: ../functions/editor.php:209
87
+ msgid "back to image list"
88
  msgstr "Vissza a képlistához"
89
 
90
+ #: ../functions/editor.php:210
91
+ msgid "Please wait until the images are cropped."
92
  msgstr "Átméretezés... pár pillanat és kész."
93
 
94
+ #: ../functions/editor.php:213
95
  msgid "Raw"
96
  msgstr "(nemtudni)Nyers/Eredeti"
97
 
98
+ #: ../functions/editor.php:213 ../functions/editor.php:279
99
  msgid "pixel"
100
  msgstr "pixel"
101
 
102
+ #: ../functions/editor.php:215
103
+ msgid "Save Crop"
104
  msgstr "Vágás kész!"
105
 
106
+ #: ../functions/editor.php:216
107
+ msgid "Quick Instructions"
108
  msgstr "Gyorstalpaló"
109
 
110
+ #: ../functions/editor.php:218
111
  msgid "Step 1: Choose an image from the right."
112
  msgstr "1. Lépés: Válaszd ki a képet a jobboldalon."
113
 
114
+ #: ../functions/editor.php:219
115
  msgid ""
116
+ "Step 2: Use your mouse to change the size of the rectangle on the image "
117
+ "above."
118
  msgstr ""
119
  "2. Lépés: Az egérrel állítsd be a kijelölés méretét és pozícióját a fennti "
120
  "képen."
121
 
122
+ #: ../functions/editor.php:220
123
+ msgid "Step 3: Click on \"Save Crop\"."
124
  msgstr "3. Lépés: Kattints a \"Vágás kész!\" gombra."
125
 
126
+ #: ../functions/editor.php:225
127
+ msgid "Crop all images with same ratio at once"
128
  msgstr "Azonos méretarányú képek kiválasztása"
129
 
130
+ #: ../functions/editor.php:226
131
  msgid "deselect all"
132
  msgstr "Kijelölés törlése"
133
 
134
+ #: ../functions/editor.php:262
135
  msgid "cropped"
136
  msgstr "vágott"
137
 
138
+ #: ../functions/editor.php:271
139
+ msgid "maximum"
140
+ msgstr ""
141
+
142
+ #: ../functions/editor.php:286
143
+ msgid "Original image size too small for good crop quality!"
144
  msgstr "Az eredeti kép túl kicsi a jó minőségű átméretezéshez!"
145
 
146
+ #: ../functions/editor.php:292
147
  msgid "Dimensions:"
148
  msgstr "Méretek:"
149
 
150
+ #: ../functions/editor.php:293
151
  msgid "Ratio:"
152
  msgstr "Méretarány:"
153
 
154
+ #: ../functions/save.php:106
 
 
 
 
 
 
 
 
 
 
 
 
155
  #, php-format
156
+ msgid "Can't generate filesize '%s'."
157
+ msgstr "Nemtudom legenerálni a fájlméretet: '%s'."
158
 
159
+ #: ../functions/save.php:113
160
+ msgid "Can't copy temporary file to media library."
161
  msgstr "Nem tudom átmásolni az ideiglenes fájlt a médiatárba."
162
 
163
+ #: ../functions/save.php:117
164
+ msgid "Can't delete temporary file."
165
  msgstr "Nem tudom törölni az ideiglenes fájlt."
166
 
167
+ #: ../functions/save.php:205
168
  msgid "ERROR: Security Check failed (maybe a timeout - please try again)."
169
  msgstr ""
170
  "Hiba! A biztonsági ellenőrzés meghiúsult (talán időtúllépés miatt - próbáld "
171
  "újra)"
172
 
173
+ #: ../functions/save.php:209
174
+ msgid "ERROR: Submitted data is incomplete."
175
  msgstr "Hiba! Az elküldött adatok hiányosak."
176
 
177
+ #: ../functions/save.php:217
178
+ msgid "Cropping to these dimensions on this image is not possible."
179
  msgstr "Ajaj! Ezt a képet nem lehet a megadott méretre vágni."
180
 
181
+ #: ../functions/save.php:228
182
+ msgid "ERROR: Can't find original image in database!"
183
  msgstr "Hiba! Nem találom az eredeti képet az adatbázisban!"
184
 
185
+ #: ../functions/save.php:231
186
+ msgid "ERROR: Can't find original image file!"
187
  msgstr "Hiba! Nem találom az eredeti képet a tárhelyen!"
188
 
189
+ #: ../functions/save.php:234
190
+ msgid "ERROR: Can't find original image metadata!"
191
  msgstr "Hiba! Nem találom az eredeti képinformációkat."
192
 
193
+ #: ../functions/settings.php:24 ../functions/settings.php:38
194
  msgid "Settings"
195
  msgstr "Beállítások"
196
 
197
+ #: ../functions/settings.php:31
198
  msgid "Crop Post Thumbnail Page"
199
  msgstr "Kisképvágó oldal"
200
 
201
+ #: ../functions/settings.php:44
202
  msgid "Save Changes"
203
  msgstr "Módosítások mentése"
204
 
205
+ #: ../functions/settings.php:49
206
+ msgid "Support the plugin author"
207
  msgstr "Támogasd a bővitmény készítőjét"
208
 
209
+ #: ../functions/settings.php:50
210
  msgid ""
211
+ "You can support the plugin author <br />(and let him know you love this "
212
  "plugin) <br />by donating via Paypal. Thanks a lot!"
213
  msgstr ""
214
  "Támogathatod a bővitmény készítőjét <br /> (Így tudatva vele, hogy tetszik "
215
  "ez a bővítmény) <br /> azzal, ha adományozol Paypalon. Köszönjük!"
216
 
217
+ #: ../functions/settings.php:72
218
+ msgid "Sizes and Post Types"
219
  msgstr "Méretek és bejegyzés típusok"
220
 
221
+ #: ../functions/settings.php:73
222
+ msgid "Choose the image size options you want to hide for each post type."
 
 
223
  msgstr ""
224
  "Válaszd ki a képméreteket amiket nem szerkeszthetnek, vagy letilthatod az "
225
  "egész bejegyzés típusra is a képvágást."
226
 
227
+ #: ../functions/settings.php:81
228
+ msgid "Developer Settings"
229
+ msgstr ""
230
+
231
+ #: ../functions/settings.php:83
232
+ msgid "Enable JS-Debug."
233
+ msgstr ""
234
+
235
+ #: ../functions/settings.php:85
236
+ msgid "Enable Data-Debug."
237
+ msgstr ""
238
+
239
+ #: ../functions/settings.php:90
240
  msgid ""
241
+ "Crop-Thumbnails is designed to make cropping images easy. For some post "
242
+ "types, not all crop sizes are needed, but the plugin will automatically "
243
+ "create all the crop sizes. Here you can select which crop sizes are "
244
+ "available in the cropping interface for each post type.."
245
  msgstr ""
246
  "A Crop-Thumbnails Plugin azzal a céllal készült, hogy kicsit kibővítse a "
247
  "WordPress amúgy remek képkezelőjét. Bár a rendszer a feltöltött képeket "
250
  "automatikus vágás. Ezzel a bővítménnyel beállíthatjuk, hogy a felhasználók "
251
  "mely méreteken és/ vagy bejegyzési típusoknál használhatják."
252
 
253
+ #: ../functions/settings.php:91
254
  msgid ""
255
+ "Crop-Thumbnails will only show cropped images. Sizes with no crop will "
256
  "always be hidden."
257
  msgstr ""
258
  "A Képvágó mindíg a vágott méreteket mutatja. Az eredeti \"nyers\" nyers "
259
  "képeket nem."
260
+
261
+ #: ../functions/settings.php:149
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:151
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:152
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:154
282
+ msgid ""
283
+ "The \"full\" image-size will never be cropped, otherwise you are not able to "
284
+ "restore any image-size."
285
+ msgstr ""
lang/cpt_lang-nl_NL.mo CHANGED
Binary file
lang/cpt_lang-nl_NL.po CHANGED
@@ -2,32 +2,46 @@ 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
@@ -35,7 +49,9 @@ 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."
@@ -54,27 +70,27 @@ 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
@@ -86,11 +102,11 @@ 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
@@ -99,17 +115,18 @@ 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
@@ -125,7 +142,7 @@ 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
 
@@ -137,58 +154,46 @@ msgstr "Grootte:"
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!"
@@ -206,25 +211,23 @@ 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."
@@ -243,10 +246,10 @@ 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 "
@@ -257,13 +260,13 @@ msgstr ""
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 "
@@ -275,7 +278,7 @@ msgstr ""
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.)"
@@ -283,7 +286,7 @@ 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.)"
@@ -291,7 +294,7 @@ 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."
2
  msgstr ""
3
  "Project-Id-Version: Crop-Post-Thumbnails\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-11-18 22:26+0100\n"
6
+ "PO-Revision-Date: 2015-11-18 22:26+0100\n"
7
  "Last-Translator: Max Gruson <mgruson@live.nl>\n"
8
  "Language-Team: \n"
9
+ "Language: nl_NL\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e;esc_attr_e;esc_attr__;esc_html_e\n"
14
  "X-Poedit-Basepath: .\n"
15
+ "X-Generator: Poedit 1.7.6\n"
16
  "X-Poedit-SearchPath-0: ..\n"
17
 
18
+ #: ../crop-thumbnails.php:35
19
  msgid "Crop your thumbnails, the easy way."
20
  msgstr "Snijd de thumbnails bij op een makkelijke manier."
21
 
22
+ #: ../functions/backendpreparer.php:84 ../functions/backendpreparer.php:87
23
+ msgid "Crop Thumbnails"
24
+ msgstr "Snijd thumbnails bij"
25
+
26
+ #: ../functions/backendpreparer.php:98 ../functions/backendpreparer.php:101
27
+ msgid "Crop Featured Image"
28
+ msgstr "Snijd uitgelichte afbeelding bij"
29
+
30
+ #: ../functions/backendpreparer.php:127 ../functions/backendpreparer.php:130
31
+ #: ../functions/backendpreparer.php:252
32
+ msgid "Crop Thumbnail"
33
+ msgstr "Snijd thumbnail bij"
34
+
35
  #: ../functions/editor.php:25
36
  msgid "You are not allowed to do this."
37
  msgstr "Je hebt geen toestemming dit te doen."
38
 
39
  #: ../functions/editor.php:41
40
+ msgid "No featured image set for this post until now."
41
  msgstr "Er is nog geen Uitgelichte afbeelding ingesteld tot nu toe."
42
 
43
  #: ../functions/editor.php:45
44
+ msgid "An error occurred!"
45
  msgstr "Er heeft een error plaatsgevonden!"
46
 
47
  #: ../functions/editor.php:78 ../functions/editor.php:204
49
  msgstr "Bijsnijden is uitgeschakeld voor dit berichttype."
50
 
51
  #: ../functions/editor.php:80
52
+ msgid ""
53
+ "No images attached to this post yet. Please upload some via the upload "
54
+ "dialog."
55
  msgstr ""
56
  "Er zijn nog geen afbeeldingen in dit bericht. Je kunt afbeeldingen uploaden "
57
  "via het upload scherm."
70
  msgstr "Afbeelding %d"
71
 
72
  #: ../functions/editor.php:180
73
+ msgid "Bug--this should not have occurred."
74
  msgstr "Bug - Dit zou niet plaatsgevonden moeten hebben."
75
 
76
  #: ../functions/editor.php:181
77
  msgid ""
78
+ "Warning: the original image is too small to be cropped in good quality with "
79
+ "this thumbnail size."
80
  msgstr ""
81
  "Waarschuwing: de originele afbeelding is te klein om met behoud van "
82
  "kwaliteit bijgesneden te kunnen worden tot deze grootte."
83
 
84
  #: ../functions/editor.php:182
85
+ msgid "First, select an image. Then, click once again."
86
  msgstr "Selecteer eerst een afbeelding. Klik vervolgens opnieuw."
87
 
88
  #: ../functions/editor.php:209
89
+ msgid "back to image list"
90
  msgstr "Keer terug naar de lijst met afbeeldingen"
91
 
92
  #: ../functions/editor.php:210
93
+ msgid "Please wait until the images are cropped."
94
  msgstr "Wacht a.u.b. tot de afbeeldingen zijn bijgesneden."
95
 
96
  #: ../functions/editor.php:213
102
  msgstr "pixels"
103
 
104
  #: ../functions/editor.php:215
105
+ msgid "Save Crop"
106
  msgstr "Bijgesneden afbeelding opslaan"
107
 
108
  #: ../functions/editor.php:216
109
+ msgid "Quick Instructions"
110
  msgstr "Korte instructie"
111
 
112
  #: ../functions/editor.php:218
115
 
116
  #: ../functions/editor.php:219
117
  msgid ""
118
+ "Step 2: Use your mouse to change the size of the rectangle on the image "
119
+ "above."
120
  msgstr ""
121
  "Stap 2: Gebruik de muis om de grootte van de rechthoek in de afbeelding "
122
  "hierboven aan te passen."
123
 
124
  #: ../functions/editor.php:220
125
+ msgid "Step 3: Click on \"Save Crop\"."
126
  msgstr "Stap 3: Klik op \"bijgesneden afbeelding opslaan\"."
127
 
128
  #: ../functions/editor.php:225
129
+ msgid "Crop all images with same ratio at once"
130
  msgstr "Selecteer afbeeldingen met eenzelfde aspect-ratio tegelijkertijd"
131
 
132
  #: ../functions/editor.php:226
142
  msgstr "Maximum"
143
 
144
  #: ../functions/editor.php:286
145
+ msgid "Original image size too small for good crop quality!"
146
  msgstr ""
147
  "De originele afbeelding is te klein om met goede kwaliteit bij te snijden!"
148
 
154
  msgid "Ratio:"
155
  msgstr "Aspect-ratio:"
156
 
157
+ #: ../functions/save.php:106
 
 
 
 
 
 
 
 
 
 
 
 
158
  #, php-format
159
+ msgid "Can't generate filesize '%s'."
160
+ msgstr "Kan de bestandsgrootte '%s' niet aanmaken."
161
 
162
+ #: ../functions/save.php:113
163
+ msgid "Can't copy temporary file to media library."
164
  msgstr ""
165
  "Het tijdelijke bestand kan niet gekopieerd worden naar de mediabibliotheek."
166
 
167
+ #: ../functions/save.php:117
168
+ msgid "Can't delete temporary file."
169
  msgstr "Het tijdelijke bestand kan niet verwijderd worden."
170
 
171
+ #: ../functions/save.php:205
172
  msgid "ERROR: Security Check failed (maybe a timeout - please try again)."
173
  msgstr ""
174
  "ERROR: Beveiligingscheck is mislukt (dit is mogelijk een timeout - probeer "
175
  "het opnieuw)."
176
 
177
+ #: ../functions/save.php:209
178
+ msgid "ERROR: Submitted data is incomplete."
179
  msgstr "ERROR: Toegevoegde data is niet volledig!"
180
 
181
+ #: ../functions/save.php:217
182
+ msgid "Cropping to these dimensions on this image is not possible."
183
  msgstr ""
184
  "Het bijsnijden met deze afmetingen is niet mogelijk bij deze afbeelding."
185
 
186
+ #: ../functions/save.php:228
187
+ msgid "ERROR: Can't find original image in database!"
188
  msgstr ""
189
  "ERROR: De originele afbeelding kan niet in de database gevonden worden!"
190
 
191
+ #: ../functions/save.php:231
192
+ msgid "ERROR: Can't find original image file!"
193
  msgstr "ERROR: De originele afbeelding kan niet gevonden worden!"
194
 
195
+ #: ../functions/save.php:234
196
+ msgid "ERROR: Can't find original image metadata!"
197
  msgstr ""
198
  "ERROR: De originele metadata van de de afbeelding kunnen niet gevonden "
199
  "worden!"
211
  msgstr "Sla veranderingen op"
212
 
213
  #: ../functions/settings.php:49
214
+ msgid "Support the plugin author"
215
  msgstr "Ondersteun de pluginontwikkelaar"
216
 
217
  #: ../functions/settings.php:50
218
  msgid ""
219
+ "You can support the plugin author <br />(and let him know you love this "
220
  "plugin) <br />by donating via Paypal. Thanks a lot!"
221
  msgstr ""
222
  "Je kunt de pluginontwikkelaar ondersteunen <br /> (en hem laten weten dat je "
223
  "deze plugin gaaf vindt) <br /> door te doneren via Paypal. Alvast bedankt!"
224
 
225
  #: ../functions/settings.php:72
226
+ msgid "Sizes and Post Types"
227
  msgstr "Afbeeldingsgroottes en berichttypes"
228
 
229
  #: ../functions/settings.php:73
230
+ msgid "Choose the image size options you want to hide for each post type."
 
 
231
  msgstr ""
232
  "Kies de afbeeldingsgroottes die je wilt verbergen. Kies een berichttype om "
233
  "elk gebruik van de plugin daarbij te voorkomen."
246
 
247
  #: ../functions/settings.php:90
248
  msgid ""
249
+ "Crop-Thumbnails is designed to make cropping images easy. For some post "
250
+ "types, not all crop sizes are needed, but the plugin will automatically "
251
+ "create all the crop sizes. Here you can select which crop sizes are "
252
+ "available in the cropping interface for each post type.."
253
  msgstr ""
254
  "Crop-Thumbnails is gemaakt om het bijsnijden van afbeeldingen makkelijker te "
255
  "maken voor de gebruiker. Het komt vaak voor dat de gebruiker slechts naar "
260
 
261
  #: ../functions/settings.php:91
262
  msgid ""
263
+ "Crop-Thumbnails will only show cropped images. Sizes with no crop will "
264
  "always be hidden."
265
  msgstr ""
266
  "Crop-Thumbnails laat alleen bijgesneden afbeeldingen zien. Afbeeldingen die "
267
  "niet bijgesneden zijn zullen altijd verborgen blijven."
268
 
269
+ #: ../functions/settings.php:149
270
  msgid ""
271
  "ATTENTION: be aware that you can break things, when you activate this. When "
272
  "activated your are able to cut those images to a spezific dimension that are "
278
  "specifieke grootte die niet oorspronkelijk bijgesneden zijn. De naam van de "
279
  "afbeelding zal niet veranderen. Je moet extra voorzichtig zijn als:"
280
 
281
+ #: ../functions/settings.php:151
282
  msgid ""
283
  "you had inserted the image before on any page or post. (There may be height "
284
  "and width stored directly in the page-content.)"
286
  "Je hebt de afbeelding al eerder toegevoegd in een pagina of bericht. (Er kan "
287
  "een hoogte en breedte direct aangegeven zijn in de inhoud.)"
288
 
289
+ #: ../functions/settings.php:152
290
  msgid ""
291
  "you use a plugin that expect the original image size. (The original image-"
292
  "size is also \"stored\" in the filename.)"
294
  "Je gebruikt een plugin die de originele afbeeldingsgroottes verwacht. (De "
295
  "oorspronkelijke afbeeldingsgrootte is ook \"opgeslagen\" in de bestandsnaam.)"
296
 
297
+ #: ../functions/settings.php:154
298
  msgid ""
299
  "The \"full\" image-size will never be cropped, otherwise you are not able to "
300
  "restore any image-size."
lang/cpt_lang-pt_BR.mo CHANGED
Binary file
lang/cpt_lang-pt_BR.po CHANGED
@@ -2,20 +2,20 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Crop Thumbnails v0.7.0\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-12-03 14:36+0100\n"
6
- "PO-Revision-Date: 2012-12-04 14:45+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
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-Poedit-Language: Portuguese\n"
14
- "X-Poedit-Country: BRAZIL\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
  "X-Poedit-KeywordsList: __;_e;esc_html_e;esc_html__;esc_attr_e;esc_attr__\n"
17
  "X-Poedit-Basepath: ../\n"
18
  "X-Textdomain-Support: yes\n"
 
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
  # @ default
@@ -24,236 +24,309 @@ msgid "Crop your thumbnails, the easy way."
24
  msgstr "Cortando suas miniaturas de uma maneira mais simples"
25
 
26
  # @ cpt_lang
27
- #: functions/editor.php:23
28
- #: functions/editor.php:43
29
- msgid "An error happend!"
30
- msgstr "Ocorreu um erro!"
 
 
 
 
 
 
 
 
 
 
 
 
 
31
 
32
- #: functions/editor.php:39
33
- msgid "No featured Image set for this post until now."
34
  msgstr "Sem Imagem Destacada definida para este post até o momento."
35
 
36
  # @ cpt_lang
37
- #: functions/editor.php:75
38
- #: functions/editor.php:187
 
 
 
 
39
  msgid "Cropping is disabled for this post-type."
40
  msgstr "O corte está desativado para este tipo de post."
41
 
42
  # @ cpt_lang
43
- #: functions/editor.php:77
44
- msgid "No images in this post yet. You have to upload some via upload dialog."
45
- msgstr "Não imagens neste post ainda. Você tem que carregar alguma através da caixa de diálogo de upload."
 
 
 
 
46
 
47
  # @ cpt_lang
48
- #: functions/editor.php:98
49
  msgid "Choose the image you want to crop."
50
  msgstr "Escolha a imagem que você deseja cortar."
51
 
52
  # @ cpt_lang
53
- #: functions/editor.php:104
54
  msgid "Post Thumbnail"
55
  msgstr "Publicar Miniatura"
56
 
57
  # @ cpt_lang
58
- #: functions/editor.php:104
59
  #, php-format
60
  msgid "Image %d"
61
  msgstr "Imagem %d"
62
 
63
  # @ cpt_lang
64
- #: functions/editor.php:164
65
- msgid "bug - this case shouldnt be happend"
66
  msgstr "bug - isso não devia ter acontececido"
67
 
68
  # @ cpt_lang
69
- #: functions/editor.php:165
70
- msgid "Warning: the original image is to small to be cropped in good quality with this thumbnail-size."
71
- msgstr "Atenção: a imagem original é muito pequena para ser cortada em boa qualidade neste tamanho de miniatura."
 
 
 
 
72
 
73
  # @ cpt_lang
74
- #: functions/editor.php:166
75
- msgid "First, select one image. Then, click once again."
76
  msgstr "Primeiro, selecione uma imagem. Em seguida, clique novamente."
77
 
78
  # @ cpt_lang
79
- #: functions/editor.php:192
80
- msgid "back to image-list"
81
  msgstr "volte a lista de imagens"
82
 
83
  # @ cpt_lang
84
- #: functions/editor.php:193
85
- msgid "Please wait until the Images are cropped."
86
  msgstr "Por favor, aguarde até que as imagens sejam cortadas."
87
 
88
  # @ cpt_lang
89
- #: functions/editor.php:196
90
  msgid "Raw"
91
  msgstr "Bruta"
92
 
93
  # @ cpt_lang
94
- #: functions/editor.php:196
95
- #: functions/editor.php:237
96
  msgid "pixel"
97
  msgstr "pixel"
98
 
99
  # @ cpt_lang
100
- #: functions/editor.php:198
101
- msgid "save crop"
102
  msgstr "Cortar e Salvar"
103
 
104
  # @ cpt_lang
105
- #: functions/editor.php:199
106
- msgid "Quick-Instructions"
107
  msgstr "Instruções Rápidas"
108
 
109
  # @ cpt_lang
110
- #: functions/editor.php:201
111
  msgid "Step 1: Choose an image from the right."
112
  msgstr "Passo 1: Escolha uma imagem à direita."
113
 
114
  # @ cpt_lang
115
- #: functions/editor.php:202
116
- msgid "Step 2: Use the mouse change the size of the rectangle on the image above."
117
- msgstr "Passo 2: Use o mouse para alterar o tamanho do retângulo na imagem acima."
 
 
 
118
 
119
  # @ cpt_lang
120
- #: functions/editor.php:203
121
- msgid "Step 3: Click on \"save crop\"."
122
  msgstr "Passo 3: Clique em \"Cortar e Salvar\"."
123
 
124
  # @ cpt_lang
125
- #: functions/editor.php:208
126
- msgid "select images with same ratio at once"
127
  msgstr "Selecionar imagens com mesma proporção de uma só vez"
128
 
129
  # @ cpt_lang
130
- #: functions/editor.php:209
131
  msgid "deselect all"
132
  msgstr "Desmarcar Todos"
133
 
134
  # @ cpt_lang
135
- #: functions/editor.php:221
136
  msgid "cropped"
137
  msgstr "Cortadas"
138
 
 
 
 
 
139
  # @ cpt_lang
140
- #: functions/editor.php:231
141
- msgid "Original image to small for good crop-quality!"
142
  msgstr "Imagem original muito pequena para um corte de qualidade!"
143
 
144
  # @ cpt_lang
145
- #: functions/editor.php:237
146
  msgid "Dimensions:"
147
  msgstr "Dimensões:"
148
 
149
  # @ cpt_lang
150
- #: functions/editor.php:238
151
  msgid "Ratio:"
152
  msgstr "Relação:"
153
 
154
- # @ cpt_lang
155
- #: functions/editor.php:421
156
- msgid "Crop Thumbnails"
157
- msgstr "Cortar Miniaturas"
158
-
159
- #: functions/editor.php:425
160
- msgid "Crop Featured Image"
161
- msgstr "Cortar Imagem Destacada"
162
-
163
- # @ cpt_lang
164
- #: functions/editor.php:439
165
- msgid "Crop Thumbnail"
166
- msgstr "Cortar Miniatura"
167
-
168
- # @ cpt_lang
169
- #: functions/save.php:95
170
  #, php-format
171
- msgid "Cant generate filesize \"%s\"."
172
- msgstr "Não é possível gerar o tamanho \"%s\"."
173
 
174
  # @ cpt_lang
175
- #: functions/save.php:102
176
- msgid "Cant copy temporary file to media-library."
177
  msgstr "Não é possível copiar arquivo temporário para a biblioteca de mídia."
178
 
179
  # @ cpt_lang
180
- #: functions/save.php:106
181
- msgid "Cant delete temporary file."
182
  msgstr "Não é possível excluir arquivo temporário."
183
 
184
  # @ cpt_lang
185
- #: functions/save.php:172
186
  msgid "ERROR: Security Check failed (maybe a timeout - please try again)."
187
- msgstr "ERRO: Verificação de Segurança falhou (talvez pelo tempo limite ter sido atingido - por favor, tente novamente)."
 
 
188
 
189
  # @ cpt_lang
190
- #: functions/save.php:176
191
- msgid "ERROR: Submitted data are not complete."
192
  msgstr "ERRO: Dados enviados não estão completos."
193
 
194
  # @ cpt_lang
195
- #: functions/save.php:184
196
- msgid "A cropping with this dimensions on these Image ist not possible."
197
  msgstr "Um corte com estas dimensões sobre esta imagem não é possível."
198
 
199
  # @ cpt_lang
200
- #: functions/save.php:195
201
- msgid "ERROR: Can`t find original Image in Database!"
202
  msgstr "ERRO: Não é possível localizar a imagem original no banco de dados!"
203
 
204
  # @ cpt_lang
205
- #: functions/save.php:198
206
- msgid "ERROR: Can`t find original Imagefile!"
207
  msgstr "ERRO: Não é possível encontrar arquivo de imagem original!"
208
 
209
  # @ cpt_lang
210
- #: functions/save.php:201
211
- msgid "ERROR: Can`t find original Image-Metadata!"
212
  msgstr "ERRO: Não é possível encontrar os metadados da imagem original!"
213
 
214
  # @ cpt_lang
215
- #: functions/settings.php:16
216
- #: functions/settings.php:30
217
  msgid "Settings"
218
  msgstr "Configurações"
219
 
220
  # @ cpt_lang
221
- #: functions/settings.php:23
222
  msgid "Crop Post Thumbnail Page"
223
  msgstr "Cortar miniaturas na página do post"
224
 
225
  # @ cpt_lang
226
- #: functions/settings.php:35
227
  msgid "Save Changes"
228
  msgstr "Salvar Mudanças"
229
 
230
  # @ cpt_lang
231
- #: functions/settings.php:39
232
- msgid "Support the plugin-author"
233
  msgstr "Apoiar o autor do plugin"
234
 
235
  # @ cpt_lang
236
- #: functions/settings.php:40
237
- msgid "You can support the plugin-author <br />(and let him know you love this plugin) <br />by donating via Paypal. Thanks a lot!"
238
- msgstr "Você pode apoiar o autor do plugin <br />(e deixá-lo saber que você ama este plugin)<br /> doando via Paypal. Muito obrigado!"
 
 
 
 
239
 
240
  # @ cpt_lang
241
- #: functions/settings.php:60
242
- msgid "Sizes and Posttypes"
243
  msgstr "Tamanhos e Tipos de Post"
244
 
245
  # @ cpt_lang
246
- #: functions/settings.php:61
247
- msgid "Choose the image-sizes you want to hide. Choose a post-type to prevent any use of the plugin for these entries."
248
- msgstr "Escolha os tamanhos de imagem que você deseja esconder. Escolha um tipo de post para evitar qualquer uso do plugin para essas entradas."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
249
 
250
  # @ cpt_lang
251
- #: functions/settings.php:66
252
- 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."
253
- msgstr "Crop-Thumbnails é criado para fazer recorte fácil para o usuário. Muitas vezes o utilizador necessita somente de um recorte, pois depende dele em seu post. Mas o sistema irá criar também todos os outros tamanhos. Então, aqui você pode selecionar para que as miniaturas de seu post sejam visíveis na interface do plugin."
 
 
 
 
 
 
 
 
 
254
 
255
  # @ cpt_lang
256
- #: functions/settings.php:67
257
- msgid "Crop-Thumbnails will only show croped images - sizes with no crop will always be hidden."
258
- msgstr "Crop-Thumbnails irá mostrar imagens cortadas - tamanhos sem cortes serão sempre escondidos."
 
 
 
 
 
 
 
 
 
 
 
 
259
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: Crop Thumbnails v0.7.0\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-11-18 22:26+0100\n"
6
+ "PO-Revision-Date: 2015-11-18 22:26+0100\n"
7
  "Last-Translator: Volkmar Kantor <volkmar.kantor@gmx.de>\n"
8
  "Language-Team: \n"
9
+ "Language: pt_BR\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
 
 
14
  "X-Poedit-SourceCharset: utf-8\n"
15
  "X-Poedit-KeywordsList: __;_e;esc_html_e;esc_html__;esc_attr_e;esc_attr__\n"
16
  "X-Poedit-Basepath: ../\n"
17
  "X-Textdomain-Support: yes\n"
18
+ "X-Generator: Poedit 1.7.6\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
  # @ default
24
  msgstr "Cortando suas miniaturas de uma maneira mais simples"
25
 
26
  # @ cpt_lang
27
+ #: functions/backendpreparer.php:84 functions/backendpreparer.php:87
28
+ msgid "Crop Thumbnails"
29
+ msgstr "Cortar Miniaturas"
30
+
31
+ #: functions/backendpreparer.php:98 functions/backendpreparer.php:101
32
+ msgid "Crop Featured Image"
33
+ msgstr "Cortar Imagem Destacada"
34
+
35
+ # @ cpt_lang
36
+ #: functions/backendpreparer.php:127 functions/backendpreparer.php:130
37
+ #: functions/backendpreparer.php:252 functions/backendpreparer.php:253
38
+ msgid "Crop Thumbnail"
39
+ msgstr "Cortar Miniatura"
40
+
41
+ #: functions/editor.php:25
42
+ msgid "You are not allowed to do this."
43
+ msgstr ""
44
 
45
+ #: functions/editor.php:41
46
+ msgid "No featured image set for this post until now."
47
  msgstr "Sem Imagem Destacada definida para este post até o momento."
48
 
49
  # @ cpt_lang
50
+ #: functions/editor.php:45
51
+ msgid "An error occurred!"
52
+ msgstr "Ocorreu um erro!"
53
+
54
+ # @ cpt_lang
55
+ #: functions/editor.php:78 functions/editor.php:204
56
  msgid "Cropping is disabled for this post-type."
57
  msgstr "O corte está desativado para este tipo de post."
58
 
59
  # @ cpt_lang
60
+ #: functions/editor.php:80
61
+ msgid ""
62
+ "No images attached to this post yet. Please upload some via the upload "
63
+ "dialog."
64
+ msgstr ""
65
+ "Não há imagens neste post ainda. Você tem que carregar alguma através da "
66
+ "caixa de diálogo de upload."
67
 
68
  # @ cpt_lang
69
+ #: functions/editor.php:101
70
  msgid "Choose the image you want to crop."
71
  msgstr "Escolha a imagem que você deseja cortar."
72
 
73
  # @ cpt_lang
74
+ #: functions/editor.php:107
75
  msgid "Post Thumbnail"
76
  msgstr "Publicar Miniatura"
77
 
78
  # @ cpt_lang
79
+ #: functions/editor.php:107
80
  #, php-format
81
  msgid "Image %d"
82
  msgstr "Imagem %d"
83
 
84
  # @ cpt_lang
85
+ #: functions/editor.php:180
86
+ msgid "Bug--this should not have occurred."
87
  msgstr "bug - isso não devia ter acontececido"
88
 
89
  # @ cpt_lang
90
+ #: functions/editor.php:181
91
+ msgid ""
92
+ "Warning: the original image is too small to be cropped in good quality with "
93
+ "this thumbnail size."
94
+ msgstr ""
95
+ "Atenção: a imagem original é muito pequena para ser cortada em boa qualidade "
96
+ "neste tamanho de miniatura."
97
 
98
  # @ cpt_lang
99
+ #: functions/editor.php:182
100
+ msgid "First, select an image. Then, click once again."
101
  msgstr "Primeiro, selecione uma imagem. Em seguida, clique novamente."
102
 
103
  # @ cpt_lang
104
+ #: functions/editor.php:209
105
+ msgid "back to image list"
106
  msgstr "volte a lista de imagens"
107
 
108
  # @ cpt_lang
109
+ #: functions/editor.php:210
110
+ msgid "Please wait until the images are cropped."
111
  msgstr "Por favor, aguarde até que as imagens sejam cortadas."
112
 
113
  # @ cpt_lang
114
+ #: functions/editor.php:213
115
  msgid "Raw"
116
  msgstr "Bruta"
117
 
118
  # @ cpt_lang
119
+ #: functions/editor.php:213 functions/editor.php:279
 
120
  msgid "pixel"
121
  msgstr "pixel"
122
 
123
  # @ cpt_lang
124
+ #: functions/editor.php:215
125
+ msgid "Save Crop"
126
  msgstr "Cortar e Salvar"
127
 
128
  # @ cpt_lang
129
+ #: functions/editor.php:216
130
+ msgid "Quick Instructions"
131
  msgstr "Instruções Rápidas"
132
 
133
  # @ cpt_lang
134
+ #: functions/editor.php:218
135
  msgid "Step 1: Choose an image from the right."
136
  msgstr "Passo 1: Escolha uma imagem à direita."
137
 
138
  # @ cpt_lang
139
+ #: functions/editor.php:219
140
+ msgid ""
141
+ "Step 2: Use your mouse to change the size of the rectangle on the image "
142
+ "above."
143
+ msgstr ""
144
+ "Passo 2: Use o mouse para alterar o tamanho do retângulo na imagem acima."
145
 
146
  # @ cpt_lang
147
+ #: functions/editor.php:220
148
+ msgid "Step 3: Click on \"Save Crop\"."
149
  msgstr "Passo 3: Clique em \"Cortar e Salvar\"."
150
 
151
  # @ cpt_lang
152
+ #: functions/editor.php:225
153
+ msgid "Crop all images with same ratio at once"
154
  msgstr "Selecionar imagens com mesma proporção de uma só vez"
155
 
156
  # @ cpt_lang
157
+ #: functions/editor.php:226
158
  msgid "deselect all"
159
  msgstr "Desmarcar Todos"
160
 
161
  # @ cpt_lang
162
+ #: functions/editor.php:262
163
  msgid "cropped"
164
  msgstr "Cortadas"
165
 
166
+ #: functions/editor.php:271
167
+ msgid "maximum"
168
+ msgstr ""
169
+
170
  # @ cpt_lang
171
+ #: functions/editor.php:286
172
+ msgid "Original image size too small for good crop quality!"
173
  msgstr "Imagem original muito pequena para um corte de qualidade!"
174
 
175
  # @ cpt_lang
176
+ #: functions/editor.php:292
177
  msgid "Dimensions:"
178
  msgstr "Dimensões:"
179
 
180
  # @ cpt_lang
181
+ #: functions/editor.php:293
182
  msgid "Ratio:"
183
  msgstr "Relação:"
184
 
185
+ #: functions/save.php:106
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
186
  #, php-format
187
+ msgid "Can't generate filesize '%s'."
188
+ msgstr "Não é possível gerar o tamanho '%s'."
189
 
190
  # @ cpt_lang
191
+ #: functions/save.php:113
192
+ msgid "Can't copy temporary file to media library."
193
  msgstr "Não é possível copiar arquivo temporário para a biblioteca de mídia."
194
 
195
  # @ cpt_lang
196
+ #: functions/save.php:117
197
+ msgid "Can't delete temporary file."
198
  msgstr "Não é possível excluir arquivo temporário."
199
 
200
  # @ cpt_lang
201
+ #: functions/save.php:205
202
  msgid "ERROR: Security Check failed (maybe a timeout - please try again)."
203
+ msgstr ""
204
+ "ERRO: Verificação de Segurança falhou (talvez pelo tempo limite ter sido "
205
+ "atingido - por favor, tente novamente)."
206
 
207
  # @ cpt_lang
208
+ #: functions/save.php:209
209
+ msgid "ERROR: Submitted data is incomplete."
210
  msgstr "ERRO: Dados enviados não estão completos."
211
 
212
  # @ cpt_lang
213
+ #: functions/save.php:217
214
+ msgid "Cropping to these dimensions on this image is not possible."
215
  msgstr "Um corte com estas dimensões sobre esta imagem não é possível."
216
 
217
  # @ cpt_lang
218
+ #: functions/save.php:228
219
+ msgid "ERROR: Can't find original image in database!"
220
  msgstr "ERRO: Não é possível localizar a imagem original no banco de dados!"
221
 
222
  # @ cpt_lang
223
+ #: functions/save.php:231
224
+ msgid "ERROR: Can't find original image file!"
225
  msgstr "ERRO: Não é possível encontrar arquivo de imagem original!"
226
 
227
  # @ cpt_lang
228
+ #: functions/save.php:234
229
+ msgid "ERROR: Can't find original image metadata!"
230
  msgstr "ERRO: Não é possível encontrar os metadados da imagem original!"
231
 
232
  # @ cpt_lang
233
+ #: functions/settings.php:24 functions/settings.php:38
 
234
  msgid "Settings"
235
  msgstr "Configurações"
236
 
237
  # @ cpt_lang
238
+ #: functions/settings.php:31
239
  msgid "Crop Post Thumbnail Page"
240
  msgstr "Cortar miniaturas na página do post"
241
 
242
  # @ cpt_lang
243
+ #: functions/settings.php:44
244
  msgid "Save Changes"
245
  msgstr "Salvar Mudanças"
246
 
247
  # @ cpt_lang
248
+ #: functions/settings.php:49
249
+ msgid "Support the plugin author"
250
  msgstr "Apoiar o autor do plugin"
251
 
252
  # @ cpt_lang
253
+ #: functions/settings.php:50
254
+ msgid ""
255
+ "You can support the plugin author <br />(and let him know you love this "
256
+ "plugin) <br />by donating via Paypal. Thanks a lot!"
257
+ msgstr ""
258
+ "Você pode apoiar o autor do plugin <br />(e deixá-lo saber que você ama este "
259
+ "plugin)<br /> doando via Paypal. Muito obrigado!"
260
 
261
  # @ cpt_lang
262
+ #: functions/settings.php:72
263
+ msgid "Sizes and Post Types"
264
  msgstr "Tamanhos e Tipos de Post"
265
 
266
  # @ cpt_lang
267
+ #: functions/settings.php:73
268
+ msgid "Choose the image size options you want to hide for each post type."
269
+ msgstr ""
270
+ "Escolha os tamanhos de imagem que você deseja esconder. Escolha um tipo de "
271
+ "post para evitar qualquer uso do plugin para essas entradas."
272
+
273
+ #: functions/settings.php:81
274
+ msgid "Developer Settings"
275
+ msgstr ""
276
+
277
+ #: functions/settings.php:83
278
+ msgid "Enable JS-Debug."
279
+ msgstr ""
280
+
281
+ #: functions/settings.php:85
282
+ msgid "Enable Data-Debug."
283
+ msgstr ""
284
 
285
  # @ cpt_lang
286
+ #: functions/settings.php:90
287
+ msgid ""
288
+ "Crop-Thumbnails is designed to make cropping images easy. For some post "
289
+ "types, not all crop sizes are needed, but the plugin will automatically "
290
+ "create all the crop sizes. Here you can select which crop sizes are "
291
+ "available in the cropping interface for each post type.."
292
+ msgstr ""
293
+ "Crop-Thumbnails é criado para fazer recorte fácil para o usuário. Muitas "
294
+ "vezes o utilizador necessita somente de um recorte, pois depende dele em seu "
295
+ "post. Mas o sistema irá criar também todos os outros tamanhos. Então, aqui "
296
+ "você pode selecionar para que as miniaturas de seu post sejam visíveis na "
297
+ "interface do plugin."
298
 
299
  # @ cpt_lang
300
+ #: functions/settings.php:91
301
+ msgid ""
302
+ "Crop-Thumbnails will only show cropped images. Sizes with no crop will "
303
+ "always be hidden."
304
+ msgstr ""
305
+ "Crop-Thumbnails só irá mostrar imagens cortadas - tamanhos sem cortes serão "
306
+ "sempre escondidos."
307
+
308
+ #: functions/settings.php:149
309
+ msgid ""
310
+ "ATTENTION: be aware that you can break things, when you activate this. When "
311
+ "activated your are able to cut those images to a spezific dimension that are "
312
+ "not cropped. The name of the image will not change. You should be extra "
313
+ "carefull when:"
314
+ msgstr ""
315
 
316
+ #: functions/settings.php:151
317
+ msgid ""
318
+ "you had inserted the image before on any page or post. (There may be height "
319
+ "and width stored directly in the page-content.)"
320
+ msgstr ""
321
+
322
+ #: functions/settings.php:152
323
+ msgid ""
324
+ "you use a plugin that expect the original image size. (The original image-"
325
+ "size is also \"stored\" in the filename.)"
326
+ msgstr ""
327
+
328
+ #: functions/settings.php:154
329
+ msgid ""
330
+ "The \"full\" image-size will never be cropped, otherwise you are not able to "
331
+ "restore any image-size."
332
+ msgstr ""
lang/cpt_lang-uk.mo CHANGED
Binary file
lang/cpt_lang-uk.po CHANGED
@@ -2,17 +2,17 @@ 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
 
@@ -20,208 +20,256 @@ msgstr ""
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 "Ті розміри зображень, які Ви не дозволили обрізати — буде приховано."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: Crop-Post-Thumbnails\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-11-18 22:26+0100\n"
6
+ "PO-Revision-Date: 2015-11-18 22:26+0100\n"
7
  "Last-Translator: Jurko Chervony <info@skinik.name>\n"
8
  "Language-Team: Skinik <info@skinik.name>\n"
9
+ "Language: uk\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e;esc_attr_e;esc_attr__;esc_html_e\n"
14
  "X-Poedit-Basepath: .\n"
15
+ "X-Generator: Poedit 1.7.6\n"
 
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
20
  msgid "Crop your thumbnails, the easy way."
21
  msgstr "Обрізайте мініатюри простим методом."
22
 
23
+ #: ../functions/backendpreparer.php:84 ../functions/backendpreparer.php:87
24
+ msgid "Crop Thumbnails"
25
+ msgstr "Обрізати мініатюри"
26
+
27
+ #: ../functions/backendpreparer.php:98 ../functions/backendpreparer.php:101
28
+ msgid "Crop Featured Image"
29
+ msgstr "Обрізати головне зображення"
30
 
31
+ #: ../functions/backendpreparer.php:127 ../functions/backendpreparer.php:130
32
+ #: ../functions/backendpreparer.php:252
33
+ msgid "Crop Thumbnail"
34
+ msgstr "Обрізати мініатюру"
35
+
36
+ #: ../functions/editor.php:25
37
+ msgid "You are not allowed to do this."
38
  msgstr ""
39
 
40
+ #: ../functions/editor.php:41
41
+ msgid "No featured image set for this post until now."
42
+ msgstr ""
43
+
44
+ #: ../functions/editor.php:45
45
+ msgid "An error occurred!"
46
+ msgstr "Виникла помилка!"
47
+
48
+ #: ../functions/editor.php:78 ../functions/editor.php:204
49
  msgid "Cropping is disabled for this post-type."
50
  msgstr "Обрізання картинок вимкнене для цього типу матеріалу."
51
 
52
+ #: ../functions/editor.php:80
53
+ msgid ""
54
+ "No images attached to this post yet. Please upload some via the upload "
55
+ "dialog."
56
  msgstr ""
57
 
58
+ #: ../functions/editor.php:101
59
  msgid "Choose the image you want to crop."
60
  msgstr "Оберіть зображення, яке потрібно обрізати."
61
 
62
+ #: ../functions/editor.php:107
63
  msgid "Post Thumbnail"
64
  msgstr "Головне зображення"
65
 
66
+ #: ../functions/editor.php:107
67
  #, php-format
68
  msgid "Image %d"
69
  msgstr ""
70
 
71
+ #: ../functions/editor.php:180
72
+ msgid "Bug--this should not have occurred."
73
  msgstr ""
74
 
75
+ #: ../functions/editor.php:181
76
  msgid ""
77
+ "Warning: the original image is too small to be cropped in good quality with "
78
+ "this thumbnail size."
79
  msgstr ""
80
 
81
+ #: ../functions/editor.php:182
82
+ msgid "First, select an image. Then, click once again."
83
  msgstr "Спочатку виберіть справа зображення. Потім натисніть кнопку ще раз."
84
 
85
+ #: ../functions/editor.php:209
86
+ msgid "back to image list"
87
  msgstr ""
88
 
89
+ #: ../functions/editor.php:210
90
+ msgid "Please wait until the images are cropped."
91
  msgstr "Будь ласка, зачекайте. Триває обробка зображення."
92
 
93
+ #: ../functions/editor.php:213
94
  msgid "Raw"
95
  msgstr "Оригінал"
96
 
97
+ #: ../functions/editor.php:213 ../functions/editor.php:279
98
  msgid "pixel"
99
  msgstr "пікселів"
100
 
101
+ #: ../functions/editor.php:215
102
+ msgid "Save Crop"
103
  msgstr "Обрізати"
104
 
105
+ #: ../functions/editor.php:216
106
+ msgid "Quick Instructions"
107
  msgstr "Коротка інструкція"
108
 
109
+ #: ../functions/editor.php:218
110
  msgid "Step 1: Choose an image from the right."
111
  msgstr "1) Оберіть розмір зображення справа."
112
 
113
+ #: ../functions/editor.php:219
114
  msgid ""
115
+ "Step 2: Use your mouse to change the size of the rectangle on the image "
116
+ "above."
117
  msgstr "2) Переміщуйте виділену область, яку слід залишити на картинці."
118
 
119
+ #: ../functions/editor.php:220
120
+ msgid "Step 3: Click on \"Save Crop\"."
121
  msgstr "3) Натисніть кнопку «Обрізати»."
122
 
123
+ #: ../functions/editor.php:225
124
+ msgid "Crop all images with same ratio at once"
125
  msgstr "Одразу виділити область з потрібними пропорціями"
126
 
127
+ #: ../functions/editor.php:226
128
  msgid "deselect all"
129
  msgstr "скасувати виділення"
130
 
131
+ #: ../functions/editor.php:262
132
  msgid "cropped"
133
  msgstr "обрізано"
134
 
135
+ #: ../functions/editor.php:271
136
+ msgid "maximum"
137
+ msgstr ""
138
+
139
+ #: ../functions/editor.php:286
140
+ msgid "Original image size too small for good crop quality!"
141
  msgstr ""
142
 
143
+ #: ../functions/editor.php:292
144
  msgid "Dimensions:"
145
  msgstr "Розмір:"
146
 
147
+ #: ../functions/editor.php:293
148
  msgid "Ratio:"
149
  msgstr "Пропорції:"
150
 
151
+ #: ../functions/save.php:106
 
 
 
 
 
 
 
 
 
 
 
 
152
  #, php-format
153
+ msgid "Can't generate filesize '%s'."
154
  msgstr ""
155
 
156
+ #: ../functions/save.php:113
157
+ msgid "Can't copy temporary file to media library."
158
  msgstr "Неможливо скопіювати тимчасовий файл до медіа-бібліотеки."
159
 
160
+ #: ../functions/save.php:117
161
+ msgid "Can't delete temporary file."
162
  msgstr "Неможливо видалити тимчасовий файл."
163
 
164
+ #: ../functions/save.php:205
165
  msgid "ERROR: Security Check failed (maybe a timeout - please try again)."
166
  msgstr ""
167
 
168
+ #: ../functions/save.php:209
169
+ msgid "ERROR: Submitted data is incomplete."
170
  msgstr ""
171
 
172
+ #: ../functions/save.php:217
173
+ msgid "Cropping to these dimensions on this image is not possible."
174
  msgstr "Неможливо обрізати це зображення з такими розмірами."
175
 
176
+ #: ../functions/save.php:228
177
+ msgid "ERROR: Can't find original image in database!"
178
  msgstr ""
179
 
180
+ #: ../functions/save.php:231
181
+ msgid "ERROR: Can't find original image file!"
182
  msgstr ""
183
 
184
+ #: ../functions/save.php:234
185
+ msgid "ERROR: Can't find original image metadata!"
186
  msgstr ""
187
 
188
+ #: ../functions/settings.php:24 ../functions/settings.php:38
189
  msgid "Settings"
190
  msgstr "Налаштування"
191
 
192
+ #: ../functions/settings.php:31
193
  msgid "Crop Post Thumbnail Page"
194
  msgstr ""
195
 
196
+ #: ../functions/settings.php:44
197
  msgid "Save Changes"
198
  msgstr "Зберегти зміни"
199
 
200
+ #: ../functions/settings.php:49
201
+ msgid "Support the plugin author"
202
  msgstr "Підтримайте розробника плаґіну"
203
 
204
+ #: ../functions/settings.php:50
205
  msgid ""
206
+ "You can support the plugin author <br />(and let him know you love this "
207
  "plugin) <br />by donating via Paypal. Thanks a lot!"
208
  msgstr ""
209
  "Ви можете підтримати розвиток плаґіну<br /> переказавши кошти автору через "
210
  "Paypal."
211
 
212
+ #: ../functions/settings.php:72
213
+ msgid "Sizes and Post Types"
214
  msgstr "Розміри і типи матеріалів"
215
 
216
+ #: ../functions/settings.php:73
217
+ msgid "Choose the image size options you want to hide for each post type."
 
 
218
  msgstr ""
219
  "Виберіть розміри картинок, які Ви хочете приховати. Також можете вказати "
220
  "типи матеріалів, де слід заборонити обрізання картинок."
221
 
222
+ #: ../functions/settings.php:81
223
+ msgid "Developer Settings"
224
+ msgstr ""
225
+
226
+ #: ../functions/settings.php:83
227
+ msgid "Enable JS-Debug."
228
+ msgstr ""
229
+
230
+ #: ../functions/settings.php:85
231
+ msgid "Enable Data-Debug."
232
+ msgstr ""
233
+
234
+ #: ../functions/settings.php:90
235
  msgid ""
236
+ "Crop-Thumbnails is designed to make cropping images easy. For some post "
237
+ "types, not all crop sizes are needed, but the plugin will automatically "
238
+ "create all the crop sizes. Here you can select which crop sizes are "
239
+ "available in the cropping interface for each post type.."
240
  msgstr ""
241
  "Цей плаґін створенно, щоб Ви могли легко і зручно обрізати зображення. Можна "
242
  "вказати для яких типів матеріалів дозволити обрізання картинок, а також які "
243
  "розміри зображень можна обрізати."
244
 
245
+ #: ../functions/settings.php:91
246
  msgid ""
247
+ "Crop-Thumbnails will only show cropped images. Sizes with no crop will "
248
  "always be hidden."
249
  msgstr "Ті розміри зображень, які Ви не дозволили обрізати — буде приховано."
250
+
251
+ #: ../functions/settings.php:149
252
+ msgid ""
253
+ "ATTENTION: be aware that you can break things, when you activate this. When "
254
+ "activated your are able to cut those images to a spezific dimension that are "
255
+ "not cropped. The name of the image will not change. You should be extra "
256
+ "carefull when:"
257
+ msgstr ""
258
+
259
+ #: ../functions/settings.php:151
260
+ msgid ""
261
+ "you had inserted the image before on any page or post. (There may be height "
262
+ "and width stored directly in the page-content.)"
263
+ msgstr ""
264
+
265
+ #: ../functions/settings.php:152
266
+ msgid ""
267
+ "you use a plugin that expect the original image size. (The original image-"
268
+ "size is also \"stored\" in the filename.)"
269
+ msgstr ""
270
+
271
+ #: ../functions/settings.php:154
272
+ msgid ""
273
+ "The \"full\" image-size will never be cropped, otherwise you are not able to "
274
+ "restore any image-size."
275
+ msgstr ""
readme.txt CHANGED
@@ -92,6 +92,8 @@ If you fork and planning to publish the forked plugin, please contact me.
92
  5. Choose what image-sizes should be hidden (for what post-types), for better usability.
93
 
94
  == Changelog ==
 
 
95
 
96
  = 0.10.2 =
97
  * make the modal-dialog more robust against css-overriding of other plugins
92
  5. Choose what image-sizes should be hidden (for what post-types), for better usability.
93
 
94
  == Changelog ==
95
+ = 0.10.3 =
96
+ * small language adjustments
97
 
98
  = 0.10.2 =
99
  * make the modal-dialog more robust against css-overriding of other plugins