Quick Featured Images - Version 13.0

Version Description

  • Added in 'Set, replace, remove': action for removing database entries of featured images without existing image files
  • Added in image column: check for existence of image file and, if not available, Delete link
  • Revised: added sanitations to (nearly) all displayed texts
  • Updated translations
Download this release

Release Info

Developer Hinjiriyo
Plugin Icon 128x128 Quick Featured Images
Version 13.0
Comparing to
See all releases

Code changes from version 12.3.7 to 13.0

README.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
4
  Tags: audios, author, categories, custom post types, custom taxonomies, date, featured images, filter, image size, nextgen, remove, taxonomies, thumbnails, videos, posts, pages
5
  Requires at least: 3.8
6
  Tested up to: 4.8
7
- Stable tag: 12.3.7
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -21,6 +21,7 @@ The plugin 'Quick Featured Images' helps you bulk managing featured images, sett
21
  1. It **sets, replaces and removes featured images for hundreds of posts and pages in one go**. You can run it over all contents or let it work only to desired contents by using flexible filters.
22
  2. It **sets, replaces and removes featured images in a sortable image column** in lists of posts, pages and custom post types if they support thumbnails. So you can change the images per post quickly without leaving the posts list page.
23
  3. It enables you to **define presets for automatic default featured images** for future posts as many as you need. You can set **accurate rules based on post properties**.
 
24
 
25
  You get the free version here. If you want to include **audios, videos and custom post types** and get more options then take a look the **premium version** [Quick Featured Images Pro](https://www.quickfeaturedimages.com/).
26
 
@@ -50,6 +51,7 @@ With Quick Featured Images you can apply time-saving tasks with many featured im
50
  1. **Adding featured images:** You can select an image to set it as the new featured image to hundreds of posts in one go. You can select multiple images to set them randomly as featured images.
51
  2. **Exchanging featured images:** You can replace or update several existing featured images with a selected image in one go.
52
  3. **Deleting featured images:** You can remove a selected featured image or all existing featured images in one go.
 
53
 
54
  If you want to **set the first content image as featured** then take a look the **premium version** [Quick Featured Images Pro](https://www.quickfeaturedimages.com/).
55
 
@@ -277,6 +279,12 @@ If you want to contribute a translation of the plugin in your language it would
277
 
278
  == Changelog ==
279
 
 
 
 
 
 
 
280
  = 12.3.7 =
281
  * Added background color for transparent thumbnails or vector graphics on admin pages
282
  * Changed in "Set, replace, remove": Tiny rearrangement of explanations
@@ -433,8 +441,11 @@ Added spanish translation for the main texts of the plugin
433
 
434
  == Upgrade Notice ==
435
 
 
 
 
436
  = 12.3.7 =
437
- Added background color for transparent images or vector graphics and headline on Select page
438
 
439
  = 12.3.6 =
440
  Fixed missing sanitations of ID in Columns class to close possible cross-site-scripting security hole
4
  Tags: audios, author, categories, custom post types, custom taxonomies, date, featured images, filter, image size, nextgen, remove, taxonomies, thumbnails, videos, posts, pages
5
  Requires at least: 3.8
6
  Tested up to: 4.8
7
+ Stable tag: 13.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
21
  1. It **sets, replaces and removes featured images for hundreds of posts and pages in one go**. You can run it over all contents or let it work only to desired contents by using flexible filters.
22
  2. It **sets, replaces and removes featured images in a sortable image column** in lists of posts, pages and custom post types if they support thumbnails. So you can change the images per post quickly without leaving the posts list page.
23
  3. It enables you to **define presets for automatic default featured images** for future posts as many as you need. You can set **accurate rules based on post properties**.
24
+ 4. It **removes database entries of featured images without existing image files** with a simple single click
25
 
26
  You get the free version here. If you want to include **audios, videos and custom post types** and get more options then take a look the **premium version** [Quick Featured Images Pro](https://www.quickfeaturedimages.com/).
27
 
51
  1. **Adding featured images:** You can select an image to set it as the new featured image to hundreds of posts in one go. You can select multiple images to set them randomly as featured images.
52
  2. **Exchanging featured images:** You can replace or update several existing featured images with a selected image in one go.
53
  3. **Deleting featured images:** You can remove a selected featured image or all existing featured images in one go.
54
+ 4. **Removing database entries of featured images without existing image files:** You can remove them and clean your database with a simple single click.
55
 
56
  If you want to **set the first content image as featured** then take a look the **premium version** [Quick Featured Images Pro](https://www.quickfeaturedimages.com/).
57
 
279
 
280
  == Changelog ==
281
 
282
+ = 13.0 =
283
+ * Added in 'Set, replace, remove': action for removing database entries of featured images without existing image files
284
+ * Added in image column: check for existence of image file and, if not available, Delete link
285
+ * Revised: added sanitations to (nearly) all displayed texts
286
+ * Updated translations
287
+
288
  = 12.3.7 =
289
  * Added background color for transparent thumbnails or vector graphics on admin pages
290
  * Changed in "Set, replace, remove": Tiny rearrangement of explanations
441
 
442
  == Upgrade Notice ==
443
 
444
+ = 13.0 =
445
+ Added actions for removing database entries of featured images without existing image files
446
+
447
  = 12.3.7 =
448
+ Added background color for transparent images or vector graphics, rearranged Select page
449
 
450
  = 12.3.6 =
451
  Fixed missing sanitations of ID in Columns class to close possible cross-site-scripting security hole
admin/assets/css/admin-column.css CHANGED
@@ -1,3 +1,8 @@
 
 
 
 
 
1
  td.qfi-thumbnail img {
2
  /*border: 2px solid #666;*/
3
  border-radius: 3px;
1
+ td.qfi-thumbnail img.qfi-no100p {
2
+ width: auto;
3
+ box-shadow: none;
4
+ border-radius: 0;
5
+ }
6
  td.qfi-thumbnail img {
7
  /*border: 2px solid #666;*/
8
  border-radius: 3px;
admin/assets/images/no-file.png ADDED
Binary file
admin/class-quick-featured-images-admin.php CHANGED
@@ -19,7 +19,7 @@
19
  *
20
  * @var string
21
  */
22
- protected $plugin_version = '12.3.7';
23
 
24
  /**
25
  * Instance of this class.
@@ -274,7 +274,7 @@
274
  sprintf(
275
  '<p>%s</p>',
276
  sprintf(
277
- __( 'The plugin requires WordPress version %s or higher. Therefore, WordPress did not activate it. If you want to use this plugin update the Wordpress files to the latest version.', 'quick-featured-images' ),
278
  $required_wp_version
279
  )
280
  ),
@@ -564,15 +564,15 @@
564
  * @return null
565
  */
566
  /*public function display_menu_icon(){
567
- print '<style type="text/css">';
568
- print '/* Quick Featured Images Menu Icon * /';
569
- print "\n";
570
  printf( '#toplevel_page_%s .dashicons-admin-generic:before {', $this->page_slug );
571
- #print ' content: "\f232";';
572
- #print ' content: "\f233";';
573
- print '}';
574
- print "\n";
575
- print '</style>';
576
  }*/
577
 
578
  }
@@ -594,9 +594,9 @@ class Quick_Featured_Images_Base {
594
  * @since 1.0.0
595
  */
596
  function dambedei ( $v, $die = false ) {
597
- print "<pre>";
598
  var_dump( $v );
599
- print "</pre>";
600
  if ( $die ) die();
601
  }
602
  }
19
  *
20
  * @var string
21
  */
22
+ protected $plugin_version = '13.0';
23
 
24
  /**
25
  * Instance of this class.
274
  sprintf(
275
  '<p>%s</p>',
276
  sprintf(
277
+ esc_html__( 'The plugin requires WordPress version %s or higher. Therefore, WordPress did not activate it. If you want to use this plugin update the Wordpress files to the latest version.', 'quick-featured-images' ),
278
  $required_wp_version
279
  )
280
  ),
564
  * @return null
565
  */
566
  /*public function display_menu_icon(){
567
+ echo '<style type="text/css">';
568
+ echo '/* Quick Featured Images Menu Icon * /';
569
+ echo "\n";
570
  printf( '#toplevel_page_%s .dashicons-admin-generic:before {', $this->page_slug );
571
+ #echo ' content: "\f232";';
572
+ #echo ' content: "\f233";';
573
+ echo '}';
574
+ echo "\n";
575
+ echo '</style>';
576
  }*/
577
 
578
  }
594
  * @since 1.0.0
595
  */
596
  function dambedei ( $v, $die = false ) {
597
+ echo "<pre>";
598
  var_dump( $v );
599
+ echo "</pre>";
600
  if ( $die ) die();
601
  }
602
  }
admin/class-quick-featured-images-columns.php CHANGED
@@ -286,58 +286,96 @@ class Quick_Featured_Images_Columns {
286
  $width = $height = 80;
287
  if ( $this->column_name == $column_name ) {
288
  $thumbnail_id = get_post_thumbnail_id( $post_id );
289
- // image from gallery
290
  if ( $thumbnail_id ) {
291
- if ( $thumb = wp_get_attachment_image( $thumbnail_id, array( $width, $height ) ) ) {
292
- if ( current_user_can( $this->required_user_cap, $thumbnail_id ) ) {
293
- // show image linked to media selection box
294
- $link_title = __( 'Change &#8220;%s&#8221;', 'quick-featured-images' );
295
- $thumb_title = _draft_or_post_title( $thumbnail_id );
296
- $link_text = 'Change Image';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
297
  printf(
298
- '<a href="%s" id="qfi_set_%d" class="qfi_set_fi" title="%s">%s<br />%s</a>',
299
- esc_url( get_upload_iframe_src( 'image', $post_id ) ),
300
- $post_id,
301
- esc_attr( sprintf( $link_title, $thumb_title ) ),
302
- $thumb,
303
- __( $link_text )
304
  );
305
-
306
- // display 'edit' link
307
- $link_title = 'Edit &#8220;%s&#8221;';
308
- $link_text = 'Edit Image';
309
- printf(
310
- '<br><a href="%s" title="%s">%s</a>',
311
- get_edit_post_link( $thumbnail_id ),
312
- esc_attr( sprintf( __( $link_title ), $thumb_title ) ),
313
- __( $link_text )
314
- );
315
-
316
  // display removal link
317
- $link_title = __( 'Remove &#8220;%s&#8221;', 'quick-featured-images' );
318
- $link_text = 'Remove featured image';
 
 
 
 
319
  printf(
320
  '<br><a href="#" id="qfi_delete_%d" class="qfi_delete_fi hide-if-no-js" title="%s">%s</a>',
321
  $post_id,
322
- esc_attr( sprintf( $link_title, $thumb_title ) ),
323
- _x( $link_text, 'post' )
 
 
 
 
 
 
 
 
 
 
324
  );
325
- } else {
326
- // if no edit capatibilities show image only
327
- echo $thumb;
328
  } // if user may
329
- } // if thumb
330
  } else {
331
  if ( current_user_can( $this->required_user_cap ) ) {
332
- /*$text = 'No image set';
333
- _e( $text );*/
334
  $text = 'Set featured image';
 
335
  printf(
336
  '<a href="%s" id="qfi_set_%d" class="qfi_set_fi" title="%s">%s</a>',
337
  esc_url( get_upload_iframe_src( 'image', $post_id ) ),
338
  $post_id,
339
  esc_attr( sprintf( __( 'Set image for &#8220;%s&#8221;', 'quick-featured-images' ), _draft_or_post_title( $post_id ) ) ),
340
- _x( $text, 'post' )
341
  );
342
  } // if user may
343
  } // if thumbnail_id
286
  $width = $height = 80;
287
  if ( $this->column_name == $column_name ) {
288
  $thumbnail_id = get_post_thumbnail_id( $post_id );
289
+ // check if image file exists, omit filters in get_attached_file() ('true')
290
  if ( $thumbnail_id ) {
291
+ if ( file_exists( get_attached_file( $thumbnail_id, true ) ) ) {
292
+ if ( $thumb = wp_get_attachment_image( $thumbnail_id, array( $width, $height ) ) ) {
293
+ if ( current_user_can( $this->required_user_cap, $thumbnail_id ) ) {
294
+ // show image linked to media selection box
295
+ $link_title = __( 'Change &#8220;%s&#8221;', 'quick-featured-images' );
296
+ $thumb_title = _draft_or_post_title( $thumbnail_id );
297
+ $text = 'Change Image';
298
+ $link_text = __( $text );
299
+ printf(
300
+ '<a href="%s" id="qfi_set_%d" class="qfi_set_fi" title="%s">%s<br />%s</a>',
301
+ esc_url( get_upload_iframe_src( 'image', $post_id ) ),
302
+ $post_id,
303
+ esc_attr( sprintf( $link_title, $thumb_title ) ),
304
+ $thumb,
305
+ esc_html( $link_text )
306
+ );
307
+
308
+ // display 'edit' link
309
+ $link_title = 'Edit &#8220;%s&#8221;';
310
+ $text = 'Edit Image';
311
+ $link_text = __( $text );
312
+ printf(
313
+ '<br><a href="%s" title="%s">%s</a>',
314
+ get_edit_post_link( $thumbnail_id ),
315
+ esc_attr( sprintf( __( $link_title ), $thumb_title ) ),
316
+ esc_html( $link_text )
317
+ );
318
+
319
+ // display removal link
320
+ $link_title = __( 'Remove &#8220;%s&#8221;', 'quick-featured-images' );
321
+ $text = 'Remove featured image';
322
+ $link_text = _x( $text, 'post' );
323
+ printf(
324
+ '<br><a href="#" id="qfi_delete_%d" class="qfi_delete_fi hide-if-no-js" title="%s">%s</a>',
325
+ $post_id,
326
+ esc_attr( sprintf( $link_title, $thumb_title ) ),
327
+ esc_html( $link_text )
328
+ );
329
+ } else {
330
+ // if no edit capatibilities show image only
331
+ echo $thumb;
332
+ } // if user may
333
+ } // if thumb
334
+ } else {
335
+ // if thumbnail ID is orphaned ("file-less", outdated)
336
+ if ( current_user_can( $this->required_user_cap ) ) {
337
+ // print "broken" icon
338
+ $text = 'No file was uploaded.';
339
  printf(
340
+ '<img src="%sassets/images/no-file.png" alt="%s" width="48" height="64" class="qfi-no100p">',
341
+ esc_url( plugin_dir_url( __FILE__ ) ),
342
+ esc_attr( __( $text ) )
 
 
 
343
  );
 
 
 
 
 
 
 
 
 
 
 
344
  // display removal link
345
+ $text = 'Delete %s';
346
+ $link_title = _x( $text, 'plugin' );
347
+ $text = 'Meta';
348
+ $meta_text = __( $text );
349
+ $text = 'Delete';
350
+ $link_text = __( $text );
351
  printf(
352
  '<br><a href="#" id="qfi_delete_%d" class="qfi_delete_fi hide-if-no-js" title="%s">%s</a>',
353
  $post_id,
354
+ esc_attr( sprintf( $link_title, $meta_text ) ),
355
+ esc_html( $link_text )
356
+ );
357
+ // print creation link
358
+ $text = 'Set featured image';
359
+ $link_text = _x( $text, 'post' );
360
+ printf(
361
+ '<br><a href="%s" id="qfi_set_%d" class="qfi_set_fi" title="%s">%s</a>',
362
+ esc_url( get_upload_iframe_src( 'image', $post_id ) ),
363
+ $post_id,
364
+ esc_attr( sprintf( __( 'Set image for &#8220;%s&#8221;', 'quick-featured-images' ), _draft_or_post_title( $post_id ) ) ),
365
+ esc_html( $link_text )
366
  );
 
 
 
367
  } // if user may
368
+ } // if file_exists(thumbnail)
369
  } else {
370
  if ( current_user_can( $this->required_user_cap ) ) {
 
 
371
  $text = 'Set featured image';
372
+ $link_text = _x( $text, 'post' );
373
  printf(
374
  '<a href="%s" id="qfi_set_%d" class="qfi_set_fi" title="%s">%s</a>',
375
  esc_url( get_upload_iframe_src( 'image', $post_id ) ),
376
  $post_id,
377
  esc_attr( sprintf( __( 'Set image for &#8220;%s&#8221;', 'quick-featured-images' ), _draft_or_post_title( $post_id ) ) ),
378
+ esc_html( $link_text )
379
  );
380
  } // if user may
381
  } // if thumbnail_id
admin/class-quick-featured-images-defaults.php CHANGED
@@ -216,7 +216,7 @@ class Quick_Featured_Images_Defaults {
216
  $msg = __( 'No changes were saved.', 'quick-featured-images' );
217
  $class = 'error';
218
  }
219
- printf ( '<div class="%s"><p><strong>%s</strong></p></div>', $class, $msg );
220
  } // if $_POST
221
  // get rules
222
  $this->selected_rules = $this->get_stored_settings();
@@ -362,7 +362,7 @@ class Quick_Featured_Images_Defaults {
362
  return array_merge(
363
  $links,
364
  array(
365
- 'defaults' => sprintf( '<a href="%s">%s</a>', admin_url( $url ), $this->get_page_headline() )
366
  )
367
  );
368
 
216
  $msg = __( 'No changes were saved.', 'quick-featured-images' );
217
  $class = 'error';
218
  }
219
+ printf ( '<div class="%s"><p><strong>%s</strong></p></div>', $class, esc_html( $msg ) );
220
  } // if $_POST
221
  // get rules
222
  $this->selected_rules = $this->get_stored_settings();
362
  return array_merge(
363
  $links,
364
  array(
365
+ 'defaults' => sprintf( '<a href="%s">%s</a>', admin_url( $url ), esc_html( $this->get_page_headline() ) )
366
  )
367
  );
368
 
admin/class-quick-featured-images-settings.php CHANGED
@@ -306,7 +306,7 @@ class Quick_Featured_Images_Settings {
306
  return array_merge(
307
  $links,
308
  array(
309
- 'settings' => sprintf( '<a href="%s">%s</a>', admin_url( $url ), $this->get_page_headline() )
310
  )
311
  );
312
 
@@ -391,7 +391,7 @@ class Quick_Featured_Images_Settings {
391
  // form field name for use in the 'id' attribute of tags
392
  'column_toggles',
393
  // title of the form field
394
- $title . sprintf( '<br />&nbsp;<br /><img src="%s" alt="%s" width="200" height="104" />', plugins_url( 'assets/images/posts_list_w_image_column.gif' , __FILE__ ), __( 'Posts list with image column', 'quick-featured-images' ) ),
395
  // callback function to print the form field
396
  array( $this, 'print_columns_options' ),
397
  // menu page on which to display this field for do_settings_section()
@@ -550,11 +550,11 @@ class Quick_Featured_Images_Settings {
550
  $value,
551
  $value,
552
  $checked,
553
- $label
554
  );
555
  } // foreach()
556
  $html .= '</fieldset>';
557
- $html .= sprintf( '<p class="description">%s</p>', __( 'Activate the checkboxes at each post type to show the extra columns in the post lists.', 'quick-featured-images' ) );
558
  print $html;
559
  }
560
 
@@ -586,7 +586,7 @@ class Quick_Featured_Images_Settings {
586
  '<option value="%s"%s>%s</option>',
587
  $role_slug,
588
  selected( $stored_value, $role_slug, false ),
589
- $role_label
590
  );
591
  }
592
 
@@ -595,17 +595,17 @@ class Quick_Featured_Images_Settings {
595
  $html .= sprintf( '<div>' );
596
  $html .= sprintf(
597
  '<label>%s<br /><select name="%s[%s]">%s</select></label>',
598
- $label,
599
  $this->settings_db_slug,
600
  'minimum_role_all_pages',
601
  $options
602
  );
603
  $html .= '</div>';
604
  $html .= '</fieldset>';
605
- $html .= sprintf( '<p class="description">%s</p>', __( 'Select the minimum user role a user must have to see the plugin.', 'quick-featured-images' ) );
606
- $html .= sprintf( '<p class="description">%s</p>', sprintf( __( 'The rules as set in &#8220;%s&#8221; work on posts independently of this setting.', 'quick-featured-images' ), __( 'Preset Featured Images', 'quick-featured-images' ) ) );
607
- $html .= sprintf( '<p class="description">%s</p>', __( 'This setting controls as well whether a user will see in an image column the thumbnails with action links or the thumbnails only. To switch image columns on and off use the section above.', 'quick-featured-images' ) );
608
- $html .= sprintf( '<p class="description">%s</p>', __( 'This page is accessible for administrators only.', 'quick-featured-images' ) );
609
  print $html;
610
  }
611
 
@@ -615,7 +615,7 @@ class Quick_Featured_Images_Settings {
615
  * @since 7.0
616
  */
617
  public function print_section_1st_section () {
618
- printf( "<div class=\"qfi_page_description\"><p>%s</p></div>\n", __( 'The additional columns give you a quick overview about all used featured images for every post. The Featured Image column is sortable.', 'quick-featured-images' ) );
619
  }
620
 
621
  /**
@@ -624,7 +624,7 @@ class Quick_Featured_Images_Settings {
624
  * @since 12.0
625
  */
626
  public function print_section_2nd_section () {
627
- printf( "<div class=\"qfi_page_description\"><p>%s</p></div>\n", __( 'Controls which minimum user role can see the plugin.', 'quick-featured-images' ) );
628
  }
629
 
630
  }
306
  return array_merge(
307
  $links,
308
  array(
309
+ 'settings' => sprintf( '<a href="%s">%s</a>', admin_url( $url ), esc_html( $this->get_page_headline() ) )
310
  )
311
  );
312
 
391
  // form field name for use in the 'id' attribute of tags
392
  'column_toggles',
393
  // title of the form field
394
+ $title . sprintf( '<br />&nbsp;<br /><img src="%s" alt="%s" width="200" height="104" />', plugins_url( 'assets/images/posts_list_w_image_column.gif' , __FILE__ ), esc_attr__( 'Posts list with image column', 'quick-featured-images' ) ),
395
  // callback function to print the form field
396
  array( $this, 'print_columns_options' ),
397
  // menu page on which to display this field for do_settings_section()
550
  $value,
551
  $value,
552
  $checked,
553
+ esc_html( $label )
554
  );
555
  } // foreach()
556
  $html .= '</fieldset>';
557
+ $html .= sprintf( '<p class="description">%s</p>', esc_html__( 'Activate the checkboxes at each post type to show the extra columns in the post lists.', 'quick-featured-images' ) );
558
  print $html;
559
  }
560
 
586
  '<option value="%s"%s>%s</option>',
587
  $role_slug,
588
  selected( $stored_value, $role_slug, false ),
589
+ esc_html( $role_label )
590
  );
591
  }
592
 
595
  $html .= sprintf( '<div>' );
596
  $html .= sprintf(
597
  '<label>%s<br /><select name="%s[%s]">%s</select></label>',
598
+ esc_html( $label ),
599
  $this->settings_db_slug,
600
  'minimum_role_all_pages',
601
  $options
602
  );
603
  $html .= '</div>';
604
  $html .= '</fieldset>';
605
+ $html .= sprintf( '<p class="description">%s</p>', esc_html__( 'Select the minimum user role a user must have to see the plugin.', 'quick-featured-images' ) );
606
+ $html .= sprintf( '<p class="description">%s</p>', sprintf( esc_html__( 'The rules as set in &#8220;%s&#8221; work on posts independently of this setting.', 'quick-featured-images' ), __( 'Preset Featured Images', 'quick-featured-images' ) ) );
607
+ $html .= sprintf( '<p class="description">%s</p>', esc_html__( 'This setting controls as well whether a user will see in an image column the thumbnails with action links or the thumbnails only. To switch image columns on and off use the section above.', 'quick-featured-images' ) );
608
+ $html .= sprintf( '<p class="description">%s</p>', esc_html__( 'This page is accessible for administrators only.', 'quick-featured-images' ) );
609
  print $html;
610
  }
611
 
615
  * @since 7.0
616
  */
617
  public function print_section_1st_section () {
618
+ printf( "<div class=\"qfi_page_description\"><p>%s</p></div>\n", esc_html__( 'The additional columns give you a quick overview about all used featured images for every post. The Featured Image column is sortable.', 'quick-featured-images' ) );
619
  }
620
 
621
  /**
624
  * @since 12.0
625
  */
626
  public function print_section_2nd_section () {
627
+ printf( "<div class=\"qfi_page_description\"><p>%s</p></div>\n", esc_html__( 'Controls which minimum user role can see the plugin.', 'quick-featured-images' ) );
628
  }
629
 
630
  }
admin/class-quick-featured-images-tools.php CHANGED
@@ -235,7 +235,7 @@ class Quick_Featured_Images_Tools { // only for debugging: extends Quick_Feature
235
  *
236
  * @var array
237
  */
238
- protected $selected_filters = null;
239
 
240
  /**
241
  * Valid names and descriptions of the filters
@@ -253,7 +253,7 @@ class Quick_Featured_Images_Tools { // only for debugging: extends Quick_Feature
253
  *
254
  * @var array
255
  */
256
- protected $selected_options = null;
257
 
258
  /**
259
  * Valid names and descriptions of the options
@@ -410,8 +410,8 @@ class Quick_Featured_Images_Tools { // only for debugging: extends Quick_Feature
410
  $this->set_default_values();
411
  // get current step
412
  $this->selected_step = $this->get_sanitized_step();
413
- #$this->dambedei( $_REQUEST );
414
- #$this->dambedei( $_SERVER );
415
  /*
416
  * print content
417
  */
@@ -427,101 +427,130 @@ class Quick_Featured_Images_Tools { // only for debugging: extends Quick_Feature
427
  if ( ! $this->selected_action ) {
428
  $this->display_error( 'wrong_action', false );
429
  } else {
430
- // check whether thumb id is not required due to selected action
431
- if ( in_array( $this->selected_action, array_merge( array_keys( $this->valid_actions_without_image ), array_keys( $this->valid_actions_multiple_images ) ) ) ) {
432
- $this->is_image_required = false;
433
- }
434
- // get selected image id, else 0
435
- $this->selected_image_id = $this->get_sanitized_image_id();
436
- // get selected image ids, else empty array
437
- $this->selected_multiple_image_ids = $this->get_sanitized_multiple_image_ids();
438
- // check whether an image id is available if required
439
- if ( $this->is_image_required && ! $this->selected_image_id ) {
440
- $this->display_error( 'no_image', false );
441
- // check whether selected attachment is an image if required
442
- } elseif ( $this->is_image_required && ! wp_attachment_is_image( $this->selected_image_id ) ) {
443
- $this->display_error( 'no_result', sprintf( __( 'Wrong image ID %d', 'quick-featured-images' ), $this->selected_image_id ) );
444
- // check whether there are selected images if required
445
- } elseif ( 'assign_randomly' == $this->selected_action && ! $this->selected_multiple_image_ids ) {
446
- $this->display_error( 'no_image', false );
 
 
 
 
 
 
 
 
 
 
447
  } else {
448
- // get user selected filters
449
- $this->selected_filters = $this->get_sanitized_filter_names();
450
- // get user selected options
451
- $this->selected_options = $this->get_sanitized_option_names();
452
- // after the old image selection page (filter_replace.php) and if no old image was selected
453
- if ( 'replace' == $this->selected_action && 'confirm' == $this->selected_step && ! isset( $_POST[ 'replacement_image_ids' ] ) ) {
454
- // stay on the selection page with a warning
455
- $this->selected_step = 'select';
456
- $this->is_error_no_old_image = true;
457
- // check if user comes from direct link in media page
458
- } elseif ( 'assign' == $this->selected_action && 'select' == $this->selected_step && $this->selected_image_id && isset( $_REQUEST[ '_wpnonce' ] ) ) {
459
- // go to the filter selection page directly
460
- $this->is_direct_access = true;
461
- // check if user comes from the selection page and has not select any filter
462
- } elseif ( 'refine' == $this->selected_step && empty( $this->selected_filters ) ) {
463
- // skip refine page, go to the confirm page directly
464
- $this->selected_step = 'confirm';
465
- $this->is_skip_refine = true;
466
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
467
 
468
- // print header
469
- $this->display_header();
470
- // print content based of process
471
- switch ( $this->selected_step ) {
472
- case 'select':
473
- if ( $this->is_error_no_old_image ) {
474
- check_admin_referer( 'quickfi_refine', $this->plugin_slug . '_nonce' );
475
- } elseif ( $this->is_direct_access ) {
476
- // no referer check
477
- check_admin_referer( 'bulk-assign' );
478
- } else {
479
- check_admin_referer( 'quickfi_start', $this->plugin_slug . '_nonce' );
480
- }
481
- // print selected thumbnail if required
482
- include_once( 'views/section_image.php' );
483
- // print form to select the posts to apply the action to
484
- include_once( 'views/form_select.php' );
485
- break;
486
- case 'refine':
487
- check_admin_referer( 'quickfi_select', $this->plugin_slug . '_nonce' );
488
- // print selected thumbnail if required
489
- include_once( 'views/section_image.php' );
490
- // print form to refine choice
491
- include_once( 'views/form_refine.php' );
492
- // print form for going back to the filter selection without loosing input data
493
- include_once( 'views/form_back_to_selection.php' );
494
- break;
495
- case 'confirm':
496
- if ( $this->is_skip_refine ) {
497
  check_admin_referer( 'quickfi_select', $this->plugin_slug . '_nonce' );
498
- } else {
499
- check_admin_referer( 'quickfi_refine', $this->plugin_slug . '_nonce' );
500
- }
501
- // filter posts
502
- $results = $this->find_posts();
503
- // print selected thumbnail if required
504
- include_once( 'views/section_image.php' );
505
- // print refine form again if there are no results
506
- include_once( 'views/form_confirm.php' );
507
- // print form to refine choice if filters were selected
508
- if ( $this->selected_filters ) {
509
  include_once( 'views/form_refine.php' );
510
- }
511
- // print form for going back to the filter selection without loosing input data
512
- include_once( 'views/form_back_to_selection.php' );
513
- break;
514
- case 'perform':
515
- check_admin_referer( 'quickfi_confirm', $this->plugin_slug . '_nonce' );
516
- // filter posts and apply action to found posts
517
- $results = $this->perform_action();
518
- // print results
519
- include_once( 'views/section_results.php' );
520
- // print form for going back to the filter selection without loosing input data
521
- include_once( 'views/form_back_to_selection.php' );
522
- break;
523
- } // switch( selected step )
524
- } // if( image available )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
525
  } // if( action available )
526
  } // if( is start )
527
  // print footer
@@ -555,6 +584,7 @@ class Quick_Featured_Images_Tools { // only for debugging: extends Quick_Feature
555
  );
556
  $this->valid_actions_without_image = array(
557
  'remove_any_img' => __( 'Remove any image as featured image', 'quick-featured-images' ),
 
558
  );
559
  $this->valid_actions_multiple_images = array(
560
  'assign_randomly' => __( 'Set multiple images randomly as featured images', 'quick-featured-images' ),
@@ -735,6 +765,53 @@ class Quick_Featured_Images_Tools { // only for debugging: extends Quick_Feature
735
  //die();
736
  } // display_error()
737
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
738
  /**
739
  * Call the WP Query and apply the selected action to found posts
740
  *
@@ -1092,7 +1169,7 @@ class Quick_Featured_Images_Tools { // only for debugging: extends Quick_Feature
1092
  } else {
1093
  $query_results = array();
1094
  $the_query = new WP_Query( $this->get_query_args() );
1095
- //printf( '<p>%s</p>', $the_query->request ); // just for debugging
1096
  // The Loop
1097
  if ( $the_query->have_posts() ) {
1098
  // do task dependent on selected action
@@ -1408,11 +1485,11 @@ class Quick_Featured_Images_Tools { // only for debugging: extends Quick_Feature
1408
  $is_key = isset( $arr[ $key ] );
1409
  if ( $is_key ) {
1410
  foreach ( $options as $key => $label ) {
1411
- $output .= sprintf( '<option value="%s" %s>%s</option>', $key, selected( $is_key , true, false ), $label );
1412
  }
1413
  } else {
1414
  foreach ( $options as $key => $label ) {
1415
- $output .= sprintf( '<option value="%s">%s</option>', $key, $label );
1416
  }
1417
  }
1418
  return $output;
@@ -1427,7 +1504,7 @@ class Quick_Featured_Images_Tools { // only for debugging: extends Quick_Feature
1427
  */
1428
  private function get_html_empty_option() {
1429
  $text = '&mdash; Select &mdash;';
1430
- return sprintf( '<option value="">%s</option>', __( $text ) );
1431
  }
1432
 
1433
  /**
@@ -1966,7 +2043,7 @@ class Quick_Featured_Images_Tools { // only for debugging: extends Quick_Feature
1966
  $url = wp_nonce_url( admin_url( sprintf( 'admin.php?page=%s&step=select&action=assign&image_id=%d', $this->page_slug, $post->ID ) ), 'bulk-assign' );
1967
 
1968
  // add it
1969
- $actions['quick-featured-images'] = sprintf( '<a href="%s">%s</a>', esc_url( $url ), __( 'Bulk set as featured image', 'quick-featured-images' ) );
1970
 
1971
  // return extended action links list
1972
  return $actions;
235
  *
236
  * @var array
237
  */
238
+ protected $selected_filters = array();
239
 
240
  /**
241
  * Valid names and descriptions of the filters
253
  *
254
  * @var array
255
  */
256
+ protected $selected_options = array();
257
 
258
  /**
259
  * Valid names and descriptions of the options
410
  $this->set_default_values();
411
  // get current step
412
  $this->selected_step = $this->get_sanitized_step();
413
+ //$this->dambedei( $_REQUEST );
414
+ //$this->dambedei( $_SERVER );
415
  /*
416
  * print content
417
  */
427
  if ( ! $this->selected_action ) {
428
  $this->display_error( 'wrong_action', false );
429
  } else {
430
+ if ( 'remove_orphaned' == $this->selected_action ) {
431
+ // if 'perform' step
432
+ if ( 'perform' == $this->selected_step ) {
433
+ check_admin_referer( 'quickfi_confirm', $this->plugin_slug . '_nonce' );
434
+ // filter posts and apply action to found posts
435
+ $results = $this->delete_orphaned();
436
+ } else {
437
+ check_admin_referer( 'quickfi_start', $this->plugin_slug . '_nonce' );
438
+ // find "file-less" thumbnail entries
439
+ $results = $this->find_orphaned();
440
+ if ( $results ) {
441
+ // jump to confirmation step
442
+ $this->selected_step = 'confirm';
443
+ } else {
444
+ // jump to result step directly
445
+ $this->selected_step = 'perform';
446
+ }
447
+ } // if( perform )
448
+ // print header
449
+ $this->display_header();
450
+ if ( 'confirm' == $this->selected_step ) {
451
+ // print refine form again if there are no results
452
+ include_once( 'views/form_confirm.php' );
453
+ } else {
454
+ // print results
455
+ include_once( 'views/section_results.php' );
456
+ } // if( confirm )
457
  } else {
458
+ // check whether thumb id is not required due to selected action
459
+ if ( in_array( $this->selected_action, array_merge( array_keys( $this->valid_actions_without_image ), array_keys( $this->valid_actions_multiple_images ) ) ) ) {
460
+ $this->is_image_required = false;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
461
  }
462
+ // get selected image id, else 0
463
+ $this->selected_image_id = $this->get_sanitized_image_id();
464
+ // get selected image ids, else empty array
465
+ $this->selected_multiple_image_ids = $this->get_sanitized_multiple_image_ids();
466
+ // check whether an image id is available if required
467
+ if ( $this->is_image_required && ! $this->selected_image_id ) {
468
+ $this->display_error( 'no_image', false );
469
+ // check whether selected attachment is an image if required
470
+ } elseif ( $this->is_image_required && ! wp_attachment_is_image( $this->selected_image_id ) ) {
471
+ $this->display_error( 'no_result', sprintf( __( 'Wrong image ID %d', 'quick-featured-images' ), $this->selected_image_id ) );
472
+ // check whether there are selected images if required
473
+ } elseif ( 'assign_randomly' == $this->selected_action && ! $this->selected_multiple_image_ids ) {
474
+ $this->display_error( 'no_image', false );
475
+ } else {
476
+ // get user selected filters
477
+ $this->selected_filters = $this->get_sanitized_filter_names();
478
+ // get user selected options
479
+ $this->selected_options = $this->get_sanitized_option_names();
480
+ // after the old image selection page (filter_replace.php) and if no old image was selected
481
+ if ( 'replace' == $this->selected_action && 'confirm' == $this->selected_step && ! isset( $_POST[ 'replacement_image_ids' ] ) ) {
482
+ // stay on the selection page with a warning
483
+ $this->selected_step = 'select';
484
+ $this->is_error_no_old_image = true;
485
+ // check if user comes from direct link in media page
486
+ } elseif ( 'assign' == $this->selected_action && 'select' == $this->selected_step && $this->selected_image_id && isset( $_REQUEST[ '_wpnonce' ] ) ) {
487
+ // go to the filter selection page directly
488
+ $this->is_direct_access = true;
489
+ // check if user comes from the selection page and has not select any filter
490
+ } elseif ( 'refine' == $this->selected_step && empty( $this->selected_filters ) ) {
491
+ // skip refine page, go to the confirm page directly
492
+ $this->selected_step = 'confirm';
493
+ $this->is_skip_refine = true;
494
+ }
495
 
496
+ // print header
497
+ $this->display_header();
498
+ // print content based of process
499
+ switch ( $this->selected_step ) {
500
+ case 'select':
501
+ if ( $this->is_error_no_old_image ) {
502
+ check_admin_referer( 'quickfi_refine', $this->plugin_slug . '_nonce' );
503
+ } elseif ( $this->is_direct_access ) {
504
+ // no referer check
505
+ check_admin_referer( 'bulk-assign' );
506
+ } else {
507
+ check_admin_referer( 'quickfi_start', $this->plugin_slug . '_nonce' );
508
+ }
509
+ // print selected thumbnail if required
510
+ include_once( 'views/section_image.php' );
511
+ // print form to select the posts to apply the action to
512
+ include_once( 'views/form_select.php' );
513
+ break;
514
+ case 'refine':
 
 
 
 
 
 
 
 
 
 
515
  check_admin_referer( 'quickfi_select', $this->plugin_slug . '_nonce' );
516
+ // print selected thumbnail if required
517
+ include_once( 'views/section_image.php' );
518
+ // print form to refine choice
 
 
 
 
 
 
 
 
519
  include_once( 'views/form_refine.php' );
520
+ // print form for going back to the filter selection without loosing input data
521
+ include_once( 'views/form_back_to_selection.php' );
522
+ break;
523
+ case 'confirm':
524
+ if ( $this->is_skip_refine ) {
525
+ check_admin_referer( 'quickfi_select', $this->plugin_slug . '_nonce' );
526
+ } else {
527
+ check_admin_referer( 'quickfi_refine', $this->plugin_slug . '_nonce' );
528
+ }
529
+ // filter posts
530
+ $results = $this->find_posts();
531
+ // print selected thumbnail if required
532
+ include_once( 'views/section_image.php' );
533
+ // print refine form again if there are no results
534
+ include_once( 'views/form_confirm.php' );
535
+ // print form to refine choice if filters were selected
536
+ if ( $this->selected_filters ) {
537
+ include_once( 'views/form_refine.php' );
538
+ }
539
+ // print form for going back to the filter selection without loosing input data
540
+ include_once( 'views/form_back_to_selection.php' );
541
+ break;
542
+ case 'perform':
543
+ check_admin_referer( 'quickfi_confirm', $this->plugin_slug . '_nonce' );
544
+ // filter posts and apply action to found posts
545
+ $results = $this->perform_action();
546
+ // print results
547
+ include_once( 'views/section_results.php' );
548
+ // print form for going back to the filter selection without loosing input data
549
+ include_once( 'views/form_back_to_selection.php' );
550
+ break;
551
+ } // switch( selected step )
552
+ } // if( image available )
553
+ } // if ( remove_orphaned )
554
  } // if( action available )
555
  } // if( is start )
556
  // print footer
584
  );
585
  $this->valid_actions_without_image = array(
586
  'remove_any_img' => __( 'Remove any image as featured image', 'quick-featured-images' ),
587
+ 'remove_orphaned' => __( 'Remove all featured images without existing image files', 'quick-featured-images' ),
588
  );
589
  $this->valid_actions_multiple_images = array(
590
  'assign_randomly' => __( 'Set multiple images randomly as featured images', 'quick-featured-images' ),
765
  //die();
766
  } // display_error()
767
 
768
+ /**
769
+ * Call the WP Query to find thumbnail entries without existing image files
770
+ *
771
+ * @access private
772
+ * @since 13.0
773
+ *
774
+ */
775
+ private function find_orphaned() {
776
+ $orphaned_ids = array();
777
+ global $wpdb;
778
+ // get IDs of images flagged as featured images
779
+ $thumb_ids = $wpdb->get_col( "SELECT DISTINCT meta_value FROM $wpdb->postmeta WHERE meta_key = '_thumbnail_id';" );
780
+ // if there are featured images
781
+ if ( $thumb_ids ) {
782
+ // check if the corresponding image files exist
783
+ foreach( $thumb_ids as $thumbnail_id ) {
784
+ $filepath = get_attached_file( $thumbnail_id );
785
+ if ( ! file_exists( $filepath ) ) {
786
+ // collect ID in array
787
+ $orphaned_ids[] = $thumbnail_id;
788
+ }
789
+ }
790
+ }
791
+ // return IDs of "file-less" featured images or empty array
792
+ return $orphaned_ids;
793
+ }
794
+
795
+ /**
796
+ * Call the WP Query to delete all thumbnail entries without existing image files
797
+ *
798
+ * @access private
799
+ * @since 13.0
800
+ *
801
+ */
802
+ private function delete_orphaned() {
803
+ global $wpdb;
804
+ // look for "file-less" featured images
805
+ $orphaned_ids = $this->find_orphaned();
806
+ // if there are none, return false
807
+ if ( empty( $orphaned_ids ) ) {
808
+ return false;
809
+ } else {
810
+ // delete orphaned thumbnail entries in database, return number of deleted entries or false
811
+ return $wpdb->query( sprintf( "DELETE FROM $wpdb->postmeta WHERE meta_key = '_thumbnail_id' AND meta_value IN ( %s );", implode( ',', $orphaned_ids ) ) );
812
+ }
813
+ }
814
+
815
  /**
816
  * Call the WP Query and apply the selected action to found posts
817
  *
1169
  } else {
1170
  $query_results = array();
1171
  $the_query = new WP_Query( $this->get_query_args() );
1172
+ //printf( '<p>%s</p>', esc_html( $the_query->request ) ); // just for debugging
1173
  // The Loop
1174
  if ( $the_query->have_posts() ) {
1175
  // do task dependent on selected action
1485
  $is_key = isset( $arr[ $key ] );
1486
  if ( $is_key ) {
1487
  foreach ( $options as $key => $label ) {
1488
+ $output .= sprintf( '<option value="%s" %s>%s</option>', $key, selected( $is_key , true, false ), esc_html( $label ) );
1489
  }
1490
  } else {
1491
  foreach ( $options as $key => $label ) {
1492
+ $output .= sprintf( '<option value="%s">%s</option>', $key, esc_html( $label ) );
1493
  }
1494
  }
1495
  return $output;
1504
  */
1505
  private function get_html_empty_option() {
1506
  $text = '&mdash; Select &mdash;';
1507
+ return sprintf( '<option value="">%s</option>', esc_html__( $text ) );
1508
  }
1509
 
1510
  /**
2043
  $url = wp_nonce_url( admin_url( sprintf( 'admin.php?page=%s&step=select&action=assign&image_id=%d', $this->page_slug, $post->ID ) ), 'bulk-assign' );
2044
 
2045
  // add it
2046
+ $actions['quick-featured-images'] = sprintf( '<a href="%s">%s</a>', esc_url( $url ), esc_html__( 'Bulk set as featured image', 'quick-featured-images' ) );
2047
 
2048
  // return extended action links list
2049
  return $actions;
admin/views/filter_category.php CHANGED
@@ -1,6 +1,6 @@
1
- <h3><?php echo $this->valid_filters[ 'filter_category' ]; ?></h3>
2
  <p>
3
- <label for="category_id"><?php _e( 'Select a category', 'quick-featured-images' ); ?></label><br />
4
  <?php
5
  $text = '&mdash; Select &mdash;';
6
  $args = array(
1
+ <h3><?php echo esc_html( $this->valid_filters[ 'filter_category' ] ); ?></h3>
2
  <p>
3
+ <label for="category_id"><?php esc_html_e( 'Select a category', 'quick-featured-images' ); ?></label><br />
4
  <?php
5
  $text = '&mdash; Select &mdash;';
6
  $args = array(
admin/views/filter_post_types.php CHANGED
@@ -1,11 +1,11 @@
1
- <h3><?php echo $this->valid_filters[ 'filter_post_types' ]; ?></h3>
2
- <p><?php _e( 'Select post types', 'quick-featured-images' ); ?>. <?php _e( 'You can select posts and pages.', 'quick-featured-images' ); ?></p>
3
  <p>
4
  <?php
5
  foreach ( $this->valid_post_types as $key => $label ) {
6
  ?>
7
  <input type="checkbox" id="<?php printf( 'qfi_%s', $key ); ?>" name="post_types[]" value="<?php echo $key; ?>" <?php checked( in_array( $key, $this->selected_post_types ) ); ?> />
8
- <label for="<?php printf( 'qfi_%s', $key ); ?>"><?php echo $label; ?></label><br />
9
  <?php
10
  }
11
  ?>
1
+ <h3><?php echo esc_html( $this->valid_filters[ 'filter_post_types' ] ); ?></h3>
2
+ <p><?php esc_html_e( 'Select post types', 'quick-featured-images' ); ?>. <?php esc_html_e( 'You can select posts and pages.', 'quick-featured-images' ); ?></p>
3
  <p>
4
  <?php
5
  foreach ( $this->valid_post_types as $key => $label ) {
6
  ?>
7
  <input type="checkbox" id="<?php printf( 'qfi_%s', $key ); ?>" name="post_types[]" value="<?php echo $key; ?>" <?php checked( in_array( $key, $this->selected_post_types ) ); ?> />
8
+ <label for="<?php printf( 'qfi_%s', $key ); ?>"><?php echo esc_html( $label ); ?></label><br />
9
  <?php
10
  }
11
  ?>
admin/views/filter_tag.php CHANGED
@@ -1,23 +1,23 @@
1
- <h3><?php echo $this->valid_filters[ 'filter_tag' ]; ?></h3>
2
  <p>
3
  <?php
4
  $tags = get_tags();
5
  if ( $tags ) {
6
  ?>
7
- <label for="qfi_tags"><?php _e( 'Select a tag', 'quick-featured-images' ); ?></label><br />
8
  <select id="qfi_tags" name="tag_id">
9
  <?php
10
  print $this->get_html_empty_option();
11
  foreach ( $tags as $tag ) {
12
  ?>
13
- <option value="<?php echo $tag->term_id; ?>" <?php selected( $this->selected_tag_id == $tag->term_id ); ?>><?php echo $tag->name; ?></option>
14
  <?php
15
  }
16
  ?>
17
  </select>
18
  <?php
19
  } else {
20
- _e( 'There are no tags in use.', 'quick-featured-images' );
21
  }
22
  ?>
23
  </p>
1
+ <h3><?php echo esc_html( $this->valid_filters[ 'filter_tag' ] ); ?></h3>
2
  <p>
3
  <?php
4
  $tags = get_tags();
5
  if ( $tags ) {
6
  ?>
7
+ <label for="qfi_tags"><?php esc_html_e( 'Select a tag', 'quick-featured-images' ); ?></label><br />
8
  <select id="qfi_tags" name="tag_id">
9
  <?php
10
  print $this->get_html_empty_option();
11
  foreach ( $tags as $tag ) {
12
  ?>
13
+ <option value="<?php echo $tag->term_id; ?>" <?php selected( $this->selected_tag_id == $tag->term_id ); ?>><?php echo esc_html( $tag->name ); ?></option>
14
  <?php
15
  }
16
  ?>
17
  </select>
18
  <?php
19
  } else {
20
+ esc_html_e( 'There are no tags in use.', 'quick-featured-images' );
21
  }
22
  ?>
23
  </p>
admin/views/form_back_to_selection.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php // print form for going back to the filter selection without loosing input data ?>
2
- <h2><?php _e( 'Select filters and options again', 'quick-featured-images' ); ?></h2>
3
- <p><?php _e( 'If you want to change your former selection just go back by clicking on this button.', 'quick-featured-images' ); ?></p>
4
  <form method="post" action="<?php echo esc_url( admin_url( sprintf( 'admin.php?page=%s&amp;step=select', $this->page_slug ) ) ); ?>">
5
  <p>
6
  <input type="hidden" name="image_id" value="<?php echo $this->selected_image_id; ?>" />
@@ -39,6 +39,6 @@ if ( $this->selected_options ) {
39
  }
40
  ?>
41
  <?php wp_nonce_field( 'quickfi_start', $this->plugin_slug . '_nonce' ); ?>
42
- <input type="submit" class="button" value="<?php _e( 'Modify selection', 'quick-featured-images' ); ?>" />
43
  </p>
44
  </form>
1
  <?php // print form for going back to the filter selection without loosing input data ?>
2
+ <h2><?php esc_html_e( 'Select filters and options again', 'quick-featured-images' ); ?></h2>
3
+ <p><?php esc_html_e( 'If you want to change your former selection just go back by clicking on this button.', 'quick-featured-images' ); ?></p>
4
  <form method="post" action="<?php echo esc_url( admin_url( sprintf( 'admin.php?page=%s&amp;step=select', $this->page_slug ) ) ); ?>">
5
  <p>
6
  <input type="hidden" name="image_id" value="<?php echo $this->selected_image_id; ?>" />
39
  }
40
  ?>
41
  <?php wp_nonce_field( 'quickfi_start', $this->plugin_slug . '_nonce' ); ?>
42
+ <input type="submit" class="button" value="<?php esc_attr_e( 'Modify selection', 'quick-featured-images' ); ?>" />
43
  </p>
44
  </form>
admin/views/form_confirm.php CHANGED
@@ -1,51 +1,57 @@
1
- <?php
2
- switch ( $this->selected_action ) {
3
- case 'assign':
4
- $question = __( 'Should the selected image be set as featured image to all listed posts?', 'quick-featured-images' );
5
- break;
6
- case 'assign_randomly':
7
- $question = __( 'Should the selected images be set randomly as featured images to all listed posts?', 'quick-featured-images' );
8
- break;
9
- case 'replace':
10
- $question = __( 'Should the current set featured image be replaced by the selected image at all listed posts?', 'quick-featured-images' );
11
- break;
12
- case 'remove':
13
- $question = __( 'Should the selected image be removed from all listed posts?', 'quick-featured-images' );
14
- break;
15
- case 'assign_first_img':
16
- $question = __( 'Should the future images be set as featured images at all listed posts?', 'quick-featured-images' );
17
- break;
18
- case 'remove_any_img':
19
- $question = __( 'Should the added featured images be removed from all listed posts?', 'quick-featured-images' );
20
- break;
21
- } // switch()
22
-
23
- ?>
24
- <h2><?php _e( 'Preview of your selection', 'quick-featured-images' ); ?></h2>
25
- <h3><?php printf( __( '%d matches found', 'quick-featured-images' ), sizeof( $results ) ); ?></h3>
26
  <?php
27
  if ( $results ) {
28
- // translate once for multiple usage and improve performance
29
- $label_details = __( 'Details', 'quick-featured-images' );
30
- $label_number = __( 'No.', 'quick-featured-images' );
31
- $label_current_fi = __( 'Current Featured Image', 'quick-featured-images' );
32
- $label_future_fi = __( 'Future Featured Image', 'quick-featured-images' );
33
- $label_written_on = __( 'written on', 'quick-featured-images' );
34
- $label_by = __( 'by', 'quick-featured-images' );
35
- // WP core labels
36
- $text = 'No image set';
37
- $label_no_image = __( $text );
38
- $text = 'Status:';
39
- $label_status = __( $text );
40
- $text = 'Apply';
41
- $label_apply = __( $text );
42
- $text = 'Cancel';
43
- $label_cancel = __( $text );
44
- $text = '(no title)';
45
- $default_title = __( $text );
46
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
47
  ?>
48
- <p><?php _e( 'The list is in alphabetical order according to post title. You can edit a post in a new window by clicking on its link in the list.', 'quick-featured-images' ); ?></p>
49
  <table class="widefat">
50
  <thead>
51
  <tr>
@@ -57,46 +63,46 @@ if ( $results ) {
57
  </thead>
58
  <tbody>
59
  <?php
60
- $c = 1;
61
- foreach ( $results as $result ) {
62
- // alternating row colors: if $c is divisible by 2 (so the modulo is 0) then set 'alt'-class
63
- $row_classes = ( 0 != $c % 2 ) ? ' class="alternate"' : '';
64
- // post title, else default title
65
- $post_title = $result[ 1 ] ? $result[ 1 ] : $default_title;
66
- // post date
67
- $post_date = sprintf( '%s %s', $label_written_on, $result[ 2 ] );
68
- // post author
69
- $post_author = sprintf( '%s %s', $label_by, $result[ 3 ] );
70
- // post type label
71
- $post_type = $result[ 7 ];
72
- $post_type_obj = get_post_type_object( $post_type );
73
- if ( $post_type_obj ) {
74
- $post_type = $post_type_obj->labels->singular_name; // readable name
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
75
  }
76
- // post status
77
- $post_status = isset( $this->valid_statuses[ $result[ 6 ] ] ) ? $this->valid_statuses[ $result[ 6 ] ] : $result[ 6 ];
78
- // check if no featured image for the post, else add default
79
- $current_img = $result[ 4 ] ? $result[ 4 ] : $label_no_image;
80
- $future_img = $result[ 5 ] ? $result[ 5 ] : $label_no_image;
81
- // print the table row
82
- printf( '<tr%s>', $row_classes );
83
- printf( '<td class="num">%d</td>', $c );
84
- printf(
85
- '<td><a href="%s" target="_blank">%s</a><br>%s<br>%s<br>%s, %s %s</td>',
86
- $result[ 0 ], // edit post link
87
- $post_title,
88
- $post_date,
89
- $post_author,
90
- $post_type,
91
- $label_status,
92
- $post_status
93
- );
94
- printf( '<td class="num">%s</td>', $current_img );
95
- printf( '<td class="num">%s</td>', $future_img );
96
- print "</tr>\n";
97
- // increase counter
98
- $c++;
99
- }
100
  ?>
101
  </tbody>
102
  <tfoot>
@@ -108,8 +114,11 @@ if ( $results ) {
108
  </tr>
109
  </tfoot>
110
  </table>
111
- <h2><?php _e( 'Confirm the change', 'quick-featured-images' ); ?></h2>
112
- <p><?php echo $question; ?> <?php _e( 'You can not undo the operation!', 'quick-featured-images' ); ?></p>
 
 
 
113
  <form method="post" action="<?php echo esc_url( admin_url( sprintf( 'admin.php?page=%s&amp;step=perform', $this->page_slug ) ) ); ?>">
114
  <p>
115
  <input type="hidden" name="image_id" value="<?php echo $this->selected_image_id; ?>" />
@@ -170,6 +179,6 @@ if ( $this->selected_old_image_ids ) {
170
  <?php
171
  } else {
172
  ?>
173
- <p><a class="button" href='<?php echo esc_url( admin_url( sprintf( 'admin.php?page=%s', $this->page_slug ) ) );?>'><?php _e( 'Start again', 'quick-featured-images' );?></a> <?php _e( 'or refine your selection with the following form fields.', 'quick-featured-images' );?></p>
174
  <?php
175
- }
1
+ <h2><?php esc_html_e( 'Preview of your selection', 'quick-featured-images' ); ?></h2>
2
+ <h3><?php printf( esc_html__( '%d matches found', 'quick-featured-images' ), sizeof( $results ) ); ?></h3>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  <?php
4
  if ( $results ) {
5
+ if ( 'remove_orphaned' == $this->selected_action ) {
6
+ // WP core labels
7
+ $text = 'Delete';
8
+ $label_apply = __( $text );
9
+ $text = 'Cancel';
10
+ $label_cancel = __( $text );
11
+ // QFI strings
12
+ $question = __( 'Should the entries of featured images without image files be removed from the database?', 'quick-featured-images' );
13
+ } else {
14
+ // translate once for multiple usage and improve performance
15
+ $label_details = esc_html__( 'Details', 'quick-featured-images' );
16
+ $label_number = esc_html__( 'No.', 'quick-featured-images' );
17
+ $label_current_fi = esc_html__( 'Current Featured Image', 'quick-featured-images' );
18
+ $label_future_fi = esc_html__( 'Future Featured Image', 'quick-featured-images' );
19
+ $label_written_on = esc_html__( 'written on', 'quick-featured-images' );
20
+ $label_by = esc_html__( 'by', 'quick-featured-images' );
21
+ // WP core labels
22
+ $text = 'No image set';
23
+ $label_no_image = __( $text );
24
+ $text = 'Status:';
25
+ $label_status = __( $text );
26
+ $text = 'Apply';
27
+ $label_apply = __( $text );
28
+ $text = 'Cancel';
29
+ $label_cancel = __( $text );
30
+ $text = '(no title)';
31
+ $default_title = __( $text );
32
+ // QFI strings
33
+ switch ( $this->selected_action ) {
34
+ case 'assign':
35
+ $question = __( 'Should the selected image be set as featured image to all listed posts?', 'quick-featured-images' );
36
+ break;
37
+ case 'assign_randomly':
38
+ $question = __( 'Should the selected images be set randomly as featured images to all listed posts?', 'quick-featured-images' );
39
+ break;
40
+ case 'replace':
41
+ $question = __( 'Should the current set featured image be replaced by the selected image at all listed posts?', 'quick-featured-images' );
42
+ break;
43
+ case 'remove':
44
+ $question = __( 'Should the selected image be removed from all listed posts?', 'quick-featured-images' );
45
+ break;
46
+ case 'assign_first_img':
47
+ $question = __( 'Should the future images be set as featured images at all listed posts?', 'quick-featured-images' );
48
+ break;
49
+ case 'remove_any_img':
50
+ $question = __( 'Should the added featured images be removed from all listed posts?', 'quick-featured-images' );
51
+ break;
52
+ } // switch()
53
  ?>
54
+ <p><?php esc_html_e( 'The list is in alphabetical order according to post title. You can edit a post in a new window by clicking on its link in the list.', 'quick-featured-images' ); ?></p>
55
  <table class="widefat">
56
  <thead>
57
  <tr>
63
  </thead>
64
  <tbody>
65
  <?php
66
+ $c = 1;
67
+ foreach ( $results as $result ) {
68
+ // alternating row colors: if $c is divisible by 2 (so the modulo is 0) then set 'alt'-class
69
+ $row_classes = ( 0 != $c % 2 ) ? ' class="alternate"' : '';
70
+ // post title, else default title
71
+ $post_title = $result[ 1 ] ? $result[ 1 ] : $default_title;
72
+ // post date
73
+ $post_date = sprintf( '%s %s', $label_written_on, $result[ 2 ] );
74
+ // post author
75
+ $post_author = sprintf( '%s %s', $label_by, $result[ 3 ] );
76
+ // post type label
77
+ $post_type = $result[ 7 ];
78
+ $post_type_obj = get_post_type_object( $post_type );
79
+ if ( $post_type_obj ) {
80
+ $post_type = $post_type_obj->labels->singular_name; // readable name
81
+ }
82
+ // post status
83
+ $post_status = isset( $this->valid_statuses[ $result[ 6 ] ] ) ? $this->valid_statuses[ $result[ 6 ] ] : $result[ 6 ];
84
+ // check if no featured image for the post, else add default
85
+ $current_img = $result[ 4 ] ? $result[ 4 ] : $label_no_image;
86
+ $future_img = $result[ 5 ] ? $result[ 5 ] : $label_no_image;
87
+ // print the table row
88
+ printf( '<tr%s>', $row_classes );
89
+ printf( '<td class="num">%d</td>', $c );
90
+ printf(
91
+ '<td><a href="%s" target="_blank">%s</a><br>%s<br>%s<br>%s, %s %s</td>',
92
+ $result[ 0 ], // edit post link
93
+ $post_title,
94
+ $post_date,
95
+ $post_author,
96
+ $post_type,
97
+ $label_status,
98
+ $post_status
99
+ );
100
+ printf( '<td class="num">%s</td>', $current_img );
101
+ printf( '<td class="num">%s</td>', $future_img );
102
+ print "</tr>\n";
103
+ // increase counter
104
+ $c++;
105
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
106
  ?>
107
  </tbody>
108
  <tfoot>
114
  </tr>
115
  </tfoot>
116
  </table>
117
+ <?php
118
+ } // if ( 'remove_orphaned' == $this->selected_action )
119
+ ?>
120
+ <h2><?php esc_html_e( 'Confirm the change', 'quick-featured-images' ); ?></h2>
121
+ <p><?php echo esc_html( $question ); ?> <?php esc_html_e( 'You can not undo the operation!', 'quick-featured-images' ); ?></p>
122
  <form method="post" action="<?php echo esc_url( admin_url( sprintf( 'admin.php?page=%s&amp;step=perform', $this->page_slug ) ) ); ?>">
123
  <p>
124
  <input type="hidden" name="image_id" value="<?php echo $this->selected_image_id; ?>" />
179
  <?php
180
  } else {
181
  ?>
182
+ <p><a class="button" href='<?php echo esc_url( admin_url( sprintf( 'admin.php?page=%s', $this->page_slug ) ) );?>'><?php esc_html_e( 'Start again', 'quick-featured-images' );?></a> <?php esc_html_e( 'or refine your selection with the following form fields.', 'quick-featured-images' );?></p>
183
  <?php
184
+ }
admin/views/form_refine.php CHANGED
@@ -1,13 +1,13 @@
1
- <h2><?php _e( 'Refine your selection', 'quick-featured-images' ); ?></h2>
2
  <?php
3
  // display selected filters
4
  if ( $this->selected_filters ) {
5
  ?>
6
  <form method="post" action="<?php echo esc_url( admin_url( sprintf( 'admin.php?page=%s&amp;step=confirm', $this->page_slug ) ) ); ?>">
7
  <fieldset>
8
- <legend><span><?php _e( 'Refine filters', 'quick-featured-images' ); ?></span></legend>
9
- <p><?php _e( 'Now you can find posts and pages by matching parameters. Refine them here.', 'quick-featured-images' ); ?></p>
10
- <p><?php _e( 'Whatever you do: You can confirm your choice on the next page.', 'quick-featured-images' ); ?></p>
11
  <?php
12
  foreach ( $this->selected_filters as $filter ) {
13
  $filename = $filter . '.php';
@@ -15,7 +15,7 @@ if ( $this->selected_filters ) {
15
  include_once( $filename );
16
  } else {
17
  ?>
18
- <p><?php printf( __( 'File %s is not available.', 'quick-featured-images' ), $filename ); ?></p>
19
  <?php
20
  }
21
  ?>
@@ -45,13 +45,13 @@ if ( $this->selected_multiple_image_ids ) {
45
  <input type="hidden" name="image_id" value="<?php echo $this->selected_image_id; ?>" />
46
  <input type="hidden" name="action" value="<?php echo $this->selected_action; ?>" />
47
  <?php wp_nonce_field( 'quickfi_refine', $this->plugin_slug . '_nonce' ); ?>
48
- <input type="submit" class="button" value="<?php _e( 'Preview filtering', 'quick-featured-images' ); ?>" />
49
  </p>
50
  </form>
51
  <?php
52
  } else {
53
  ?>
54
- <p><?php _e( 'There are no selected filters. Modify your filter selection or just go on by clicking on the next button.', 'quick-featured-images' ); ?></p>
55
  <?php
56
  }// if()
57
  ?>
1
+ <h2><?php esc_html_e( 'Refine your selection', 'quick-featured-images' ); ?></h2>
2
  <?php
3
  // display selected filters
4
  if ( $this->selected_filters ) {
5
  ?>
6
  <form method="post" action="<?php echo esc_url( admin_url( sprintf( 'admin.php?page=%s&amp;step=confirm', $this->page_slug ) ) ); ?>">
7
  <fieldset>
8
+ <legend><span><?php esc_html_e( 'Refine filters', 'quick-featured-images' ); ?></span></legend>
9
+ <p><?php esc_html_e( 'Now you can find posts and pages by matching parameters. Refine them here.', 'quick-featured-images' ); ?></p>
10
+ <p><?php esc_html_e( 'Whatever you do: You can confirm your choice on the next page.', 'quick-featured-images' ); ?></p>
11
  <?php
12
  foreach ( $this->selected_filters as $filter ) {
13
  $filename = $filter . '.php';
15
  include_once( $filename );
16
  } else {
17
  ?>
18
+ <p><?php printf( esc_html__( 'File %s is not available.', 'quick-featured-images' ), $filename ); ?></p>
19
  <?php
20
  }
21
  ?>
45
  <input type="hidden" name="image_id" value="<?php echo $this->selected_image_id; ?>" />
46
  <input type="hidden" name="action" value="<?php echo $this->selected_action; ?>" />
47
  <?php wp_nonce_field( 'quickfi_refine', $this->plugin_slug . '_nonce' ); ?>
48
+ <input type="submit" class="button" value="<?php esc_attr_e( 'Preview filtering', 'quick-featured-images' ); ?>" />
49
  </p>
50
  </form>
51
  <?php
52
  } else {
53
  ?>
54
+ <p><?php esc_html_e( 'There are no selected filters. Modify your filter selection or just go on by clicking on the next button.', 'quick-featured-images' ); ?></p>
55
  <?php
56
  }// if()
57
  ?>
admin/views/form_select.php CHANGED
@@ -6,46 +6,46 @@ if ( 'replace' == $this->selected_action ) {
6
 
7
  if ( $this->is_error_no_old_image ) {
8
  ?>
9
- <h2><?php _e( 'Notice', 'quick-featured-images' ); ?></h2>
10
  <div class="qfi_content_inside">
11
- <p class="failure"><?php _e( 'You did not have selected an image from the list below. To go on select at least one image you want to replace by the selected image.', 'quick-featured-images' ); ?></p>
12
  </div>
13
  <?php
14
  } // if( is_error_no_old_image )
15
  ?>
16
  <form method="post" action="<?php echo esc_url( admin_url( sprintf( 'admin.php?page=%s&amp;step=confirm', $this->page_slug ) ) ); ?>">
17
- <h2><?php _e( 'Select the featured images you want to replace by the selected image.', 'quick-featured-images' ); ?></h2>
18
- <p><?php _e( 'You can select multiple images. Select at least one image.', 'quick-featured-images' ); ?></p>
19
- <p><?php _e( 'To select multiple images click on the button and use the CTRL key while clicking on the images.', 'quick-featured-images' ); ?></p>
20
  <p>
21
  <input type="hidden" id="multiple_image_ids" name="replacement_image_ids" value="<?php echo $img_ids; ?>">
22
  <img id="blank_image" src="<?php echo $blank_img_url; ?>" alt="" /><br />
23
- <input type="button" id="select_images_multiple" class="button" value="<?php _e( 'Choose Images', 'quick-featured-images' ); ?>" />
24
  </p>
25
  <p>
26
  <input type="hidden" name="image_id" value="<?php echo $this->selected_image_id; ?>" />
27
  <input type="hidden" name="action" value="<?php echo $this->selected_action; ?>" />
28
  <?php wp_nonce_field( 'quickfi_refine', $this->plugin_slug . '_nonce' ); ?>
29
- <input type="submit" class="button" value="<?php _e( 'Preview filtering', 'quick-featured-images' ); ?>" />
30
  </p>
31
- <input type="hidden" id="selection_advice" name="selection_advice" value="<?php _e( 'Use CTRL for multiple choice', 'quick-featured-images' ); ?>" />
32
  </form>
33
  <?php
34
  } else {
35
  // else display filter selection
36
  ?>
37
- <h2><?php _e( 'Refine your selections', 'quick-featured-images' ); ?></h2>
38
- <p><?php _e( 'You can control the process with the following options.', 'quick-featured-images' ); ?></p>
39
  <form method="post" action="<?php echo esc_url( admin_url( sprintf( 'admin.php?page=%s&amp;step=refine', $this->page_slug ) ) ); ?>">
40
  <?php
41
  switch ( $this->selected_action ) {
42
  case 'assign':
43
  case 'assign_randomly':
44
  ?>
45
- <h3><?php _e( 'Optional: Select options', 'quick-featured-images' ); ?></h3>
46
  <fieldset>
47
- <legend><span><?php _e( 'Process Options', 'quick-featured-images' ); ?></span></legend>
48
- <p><?php _e( 'You can control the process with the following options.', 'quick-featured-images' ); ?></p>
49
  <?php
50
  // option for overwriting existing featured images
51
  $key = 'overwrite';
@@ -54,7 +54,7 @@ if ( 'replace' == $this->selected_action ) {
54
  ?>
55
  <p>
56
  <input type="checkbox" id="<?php printf( 'qfi_%s', $key ); ?>" name="options[]" value="<?php echo $key; ?>" <?php checked( in_array( $key, $this->selected_options ) ); ?>>
57
- <label for="<?php printf( 'qfi_%s', $key ); ?>"><strong><?php echo $label; ?>:</strong> <?php echo $desc; ?></label>
58
  </p>
59
  <?php
60
  // option for posts without featured image
@@ -64,17 +64,17 @@ if ( 'replace' == $this->selected_action ) {
64
  ?>
65
  <p>
66
  <input type="checkbox" id="<?php printf( 'qfi_%s', $key ); ?>" name="options[]" value="<?php echo $key; ?>" <?php checked( in_array( $key, $this->selected_options ) ); ?>>
67
- <label for="<?php printf( 'qfi_%s', $key ); ?>"><strong><?php echo $label; ?>:</strong> <?php echo $desc; ?></label>
68
  </p>
69
  <?php
70
  if ( 'assign_randomly' == $this->selected_action ) {
71
  ?>
72
- <p><?php _e( 'There are two more options in the premium version for random images:', 'quick-featured-images' ); ?></p>
73
  <ol>
74
- <li><?php _e( 'Use each selected image only once', 'quick-featured-images' ); ?></li>
75
- <li><?php _e( 'Remove excess featured images after all selected images are used', 'quick-featured-images' ); ?></li>
76
  </ol>
77
- <p class="qfi_ad_for_pro"><?php _e( 'Get the premium version', 'quick-featured-images' ); ?> <a href="https://www.quickfeaturedimages.com<?php _e( '/', 'quick-featured-images' ); ?>">Quick Featured Images Pro</a>.</p>
78
  <?php
79
  } // if(assign_randomly)
80
  ?>
@@ -83,11 +83,11 @@ if ( 'replace' == $this->selected_action ) {
83
  break;
84
  } // switch( selected_action )
85
  ?>
86
- <h3><?php _e( 'Optional: Add a filter', 'quick-featured-images' ); ?></h3>
87
  <fieldset>
88
- <legend><span><?php _e( 'Select filters', 'quick-featured-images' ); ?></span></legend>
89
- <p><?php _e( 'If you want select one of the following filters to narrow down the set of concerned posts and pages.', 'quick-featured-images' ); ?></p>
90
- <p><?php _e( 'You can select multiple filters. They will return an intersection of their results.', 'quick-featured-images' ); ?></p>
91
  <?php
92
  foreach ( $this->valid_filters as $key => $label ) {
93
  switch ( $key ) {
@@ -106,28 +106,28 @@ if ( 'replace' == $this->selected_action ) {
106
  ?>
107
  <p>
108
  <input type="checkbox" id="<?php printf( 'qfi_%s', $key ); ?>" name="filters[]" value="<?php echo $key; ?>" <?php checked( in_array( $key, $this->selected_filters ) ); ?>>
109
- <label for="<?php printf( 'qfi_%s', $key ); ?>"><strong><?php echo $label; ?>:</strong> <?php echo $desc; ?></label>
110
  </p>
111
  <?php
112
  } // foreach()
113
  ?>
114
  </fieldset>
115
- <p class="qfi_ad_for_pro"><?php _e( 'Are you looking for more options and more filters?', 'quick-featured-images' );?> <?php _e( 'Get the premium version', 'quick-featured-images' ); ?> <a href="https://www.quickfeaturedimages.com<?php _e( '/', 'quick-featured-images' ); ?>">Quick Featured Images Pro</a>.</p>
116
- <h3><?php _e( 'If you encounter a white, blank page, read this', 'quick-featured-images' ); ?></h3>
117
- <p><?php _e( 'Facing a white blank page while trying to treat thousands of posts is the effect of limited memory capacities on the website server. Instead of treating a huge amount of posts in one single go try to treat small amounts of posts multiple times successively. To achieve that do:', 'quick-featured-images' ); ?></p>
118
  <ol>
119
- <li class="qfi_ad_for_pro"><?php _e( 'Get the premium version', 'quick-featured-images' ); ?> <a href="https://www.quickfeaturedimages.com<?php _e( '/', 'quick-featured-images' ); ?>">Quick Featured Images Pro</a>.</li>
120
- <li><?php _e( 'add the time filter,', 'quick-featured-images' ); ?></li>
121
- <li><?php _e( 'set a small time range,', 'quick-featured-images' ); ?></li>
122
- <li><?php _e( 'do the process', 'quick-featured-images' ); ?></li>
123
- <li><?php _e( 'and repeat it with the next time range as often as needed.', 'quick-featured-images' ); ?></li>
124
  </ol>
125
- <p><?php _e( 'This way is not as fast as one single run, but still much faster than setting the images for each post manually.', 'quick-featured-images' ); ?></p>
126
  <?php
127
  $text = 'Next';
128
  ?>
129
- <h3><?php _e( $text ); ?></h3>
130
- <p><?php _e( 'On the next page you can refine the filters. If you did not select any filter you will go to the preview list directly.', 'quick-featured-images' ); ?></p>
131
  <p>
132
  <?php
133
  // remember selected multiple images if there are some
@@ -142,7 +142,7 @@ if ( $this->selected_multiple_image_ids ) {
142
  <input type="hidden" name="image_id" value="<?php echo $this->selected_image_id; ?>" />
143
  <input type="hidden" name="action" value="<?php echo $this->selected_action; ?>" />
144
  <?php wp_nonce_field( 'quickfi_select', $this->plugin_slug . '_nonce' ); ?>
145
- <input type="submit" class="button" value="<?php _e( $text ); ?>" />
146
  </p>
147
  </form>
148
  <?php
6
 
7
  if ( $this->is_error_no_old_image ) {
8
  ?>
9
+ <h2><?php esc_html_e( 'Notice', 'quick-featured-images' ); ?></h2>
10
  <div class="qfi_content_inside">
11
+ <p class="failure"><?php esc_html_e( 'You did not have selected an image from the list below. To go on select at least one image you want to replace by the selected image.', 'quick-featured-images' ); ?></p>
12
  </div>
13
  <?php
14
  } // if( is_error_no_old_image )
15
  ?>
16
  <form method="post" action="<?php echo esc_url( admin_url( sprintf( 'admin.php?page=%s&amp;step=confirm', $this->page_slug ) ) ); ?>">
17
+ <h2><?php esc_html_e( 'Select the featured images you want to replace by the selected image.', 'quick-featured-images' ); ?></h2>
18
+ <p><?php esc_html_e( 'You can select multiple images. Select at least one image.', 'quick-featured-images' ); ?></p>
19
+ <p><?php esc_html_e( 'To select multiple images click on the button and use the CTRL key while clicking on the images.', 'quick-featured-images' ); ?></p>
20
  <p>
21
  <input type="hidden" id="multiple_image_ids" name="replacement_image_ids" value="<?php echo $img_ids; ?>">
22
  <img id="blank_image" src="<?php echo $blank_img_url; ?>" alt="" /><br />
23
+ <input type="button" id="select_images_multiple" class="button" value="<?php esc_attr_e( 'Choose Images', 'quick-featured-images' ); ?>" />
24
  </p>
25
  <p>
26
  <input type="hidden" name="image_id" value="<?php echo $this->selected_image_id; ?>" />
27
  <input type="hidden" name="action" value="<?php echo $this->selected_action; ?>" />
28
  <?php wp_nonce_field( 'quickfi_refine', $this->plugin_slug . '_nonce' ); ?>
29
+ <input type="submit" class="button" value="<?php esc_attr_e( 'Preview filtering', 'quick-featured-images' ); ?>" />
30
  </p>
31
+ <input type="hidden" id="selection_advice" name="selection_advice" value="<?php esc_attr_e( 'Use CTRL for multiple choice', 'quick-featured-images' ); ?>" />
32
  </form>
33
  <?php
34
  } else {
35
  // else display filter selection
36
  ?>
37
+ <h2><?php esc_html_e( 'Refine your selections', 'quick-featured-images' ); ?></h2>
38
+ <p><?php esc_html_e( 'You can control the process with the following options.', 'quick-featured-images' ); ?></p>
39
  <form method="post" action="<?php echo esc_url( admin_url( sprintf( 'admin.php?page=%s&amp;step=refine', $this->page_slug ) ) ); ?>">
40
  <?php
41
  switch ( $this->selected_action ) {
42
  case 'assign':
43
  case 'assign_randomly':
44
  ?>
45
+ <h3><?php esc_html_e( 'Optional: Select options', 'quick-featured-images' ); ?></h3>
46
  <fieldset>
47
+ <legend><span><?php esc_html_e( 'Process Options', 'quick-featured-images' ); ?></span></legend>
48
+ <p><?php esc_html_e( 'You can control the process with the following options.', 'quick-featured-images' ); ?></p>
49
  <?php
50
  // option for overwriting existing featured images
51
  $key = 'overwrite';
54
  ?>
55
  <p>
56
  <input type="checkbox" id="<?php printf( 'qfi_%s', $key ); ?>" name="options[]" value="<?php echo $key; ?>" <?php checked( in_array( $key, $this->selected_options ) ); ?>>
57
+ <label for="<?php printf( 'qfi_%s', $key ); ?>"><strong><?php echo esc_html( $label ); ?>:</strong> <?php echo esc_html( $desc ); ?></label>
58
  </p>
59
  <?php
60
  // option for posts without featured image
64
  ?>
65
  <p>
66
  <input type="checkbox" id="<?php printf( 'qfi_%s', $key ); ?>" name="options[]" value="<?php echo $key; ?>" <?php checked( in_array( $key, $this->selected_options ) ); ?>>
67
+ <label for="<?php printf( 'qfi_%s', $key ); ?>"><strong><?php echo esc_html( $label ); ?>:</strong> <?php echo esc_html( $desc ); ?></label>
68
  </p>
69
  <?php
70
  if ( 'assign_randomly' == $this->selected_action ) {
71
  ?>
72
+ <p><?php esc_html_e( 'There are two more options in the premium version for random images:', 'quick-featured-images' ); ?></p>
73
  <ol>
74
+ <li><?php esc_html_e( 'Use each selected image only once', 'quick-featured-images' ); ?></li>
75
+ <li><?php esc_html_e( 'Remove excess featured images after all selected images are used', 'quick-featured-images' ); ?></li>
76
  </ol>
77
+ <p class="qfi_ad_for_pro"><?php esc_html_e( 'Get the premium version', 'quick-featured-images' ); ?> <a href="https://www.quickfeaturedimages.com<?php esc_html_e( '/', 'quick-featured-images' ); ?>">Quick Featured Images Pro</a>.</p>
78
  <?php
79
  } // if(assign_randomly)
80
  ?>
83
  break;
84
  } // switch( selected_action )
85
  ?>
86
+ <h3><?php esc_html_e( 'Optional: Add a filter', 'quick-featured-images' ); ?></h3>
87
  <fieldset>
88
+ <legend><span><?php esc_html_e( 'Select filters', 'quick-featured-images' ); ?></span></legend>
89
+ <p><?php esc_html_e( 'If you want select one of the following filters to narrow down the set of concerned posts and pages.', 'quick-featured-images' ); ?></p>
90
+ <p><?php esc_html_e( 'You can select multiple filters. They will return an intersection of their results.', 'quick-featured-images' ); ?></p>
91
  <?php
92
  foreach ( $this->valid_filters as $key => $label ) {
93
  switch ( $key ) {
106
  ?>
107
  <p>
108
  <input type="checkbox" id="<?php printf( 'qfi_%s', $key ); ?>" name="filters[]" value="<?php echo $key; ?>" <?php checked( in_array( $key, $this->selected_filters ) ); ?>>
109
+ <label for="<?php printf( 'qfi_%s', $key ); ?>"><strong><?php echo esc_html( $label ); ?>:</strong> <?php echo esc_html( $desc ); ?></label>
110
  </p>
111
  <?php
112
  } // foreach()
113
  ?>
114
  </fieldset>
115
+ <p class="qfi_ad_for_pro"><?php esc_html_e( 'Are you looking for more options and more filters?', 'quick-featured-images' );?> <?php esc_html_e( 'Get the premium version', 'quick-featured-images' ); ?> <a href="https://www.quickfeaturedimages.com<?php esc_html_e( '/', 'quick-featured-images' ); ?>">Quick Featured Images Pro</a>.</p>
116
+ <h3><?php esc_html_e( 'If you encounter a white, blank page, read this', 'quick-featured-images' ); ?></h3>
117
+ <p><?php esc_html_e( 'Facing a white blank page while trying to treat thousands of posts is the effect of limited memory capacities on the website server. Instead of treating a huge amount of posts in one single go try to treat small amounts of posts multiple times successively. To achieve that do:', 'quick-featured-images' ); ?></p>
118
  <ol>
119
+ <li class="qfi_ad_for_pro"><?php esc_html_e( 'Get the premium version', 'quick-featured-images' ); ?> <a href="https://www.quickfeaturedimages.com<?php esc_html_e( '/', 'quick-featured-images' ); ?>">Quick Featured Images Pro</a>.</li>
120
+ <li><?php esc_html_e( 'add the time filter,', 'quick-featured-images' ); ?></li>
121
+ <li><?php esc_html_e( 'set a small time range,', 'quick-featured-images' ); ?></li>
122
+ <li><?php esc_html_e( 'do the process', 'quick-featured-images' ); ?></li>
123
+ <li><?php esc_html_e( 'and repeat it with the next time range as often as needed.', 'quick-featured-images' ); ?></li>
124
  </ol>
125
+ <p><?php esc_html_e( 'This way is not as fast as one single run, but still much faster than setting the images for each post manually.', 'quick-featured-images' ); ?></p>
126
  <?php
127
  $text = 'Next';
128
  ?>
129
+ <h3><?php esc_html_e( $text ); ?></h3>
130
+ <p><?php esc_html_e( 'On the next page you can refine the filters. If you did not select any filter you will go to the preview list directly.', 'quick-featured-images' ); ?></p>
131
  <p>
132
  <?php
133
  // remember selected multiple images if there are some
142
  <input type="hidden" name="image_id" value="<?php echo $this->selected_image_id; ?>" />
143
  <input type="hidden" name="action" value="<?php echo $this->selected_action; ?>" />
144
  <?php wp_nonce_field( 'quickfi_select', $this->plugin_slug . '_nonce' ); ?>
145
+ <input type="submit" class="button" value="<?php esc_attr_e( $text ); ?>" />
146
  </p>
147
  </form>
148
  <?php
admin/views/form_start.php CHANGED
@@ -1,38 +1,38 @@
1
  <?php
2
  if ( ! current_theme_supports( 'post-thumbnails' ) ) {
3
  ?>
4
- <h2><?php _e( 'Notice', 'quick-featured-images' ); ?></h2>
5
  <div class="qfi_content_inside">
6
- <p class="failure"><?php _e( 'The current theme does not support featured images. Anyway you can use this plugin. The effects are stored and will be visible in a theme which supports featured images.', 'quick-featured-images' ); ?></p>
7
  </div>
8
  <?php
9
  }
10
  ?>
11
  <form method="post" action="<?php echo esc_url( admin_url( sprintf( 'admin.php?page=%s&amp;step=select', $this->page_slug ) ) ); ?>">
12
- <h2 class="no-bottom"><?php _e( 'What do you want to do?', 'quick-featured-images' ); ?></h2>
13
  <div class="qfi_page_description">
14
- <p><?php _e( 'Here you can add, replace and delete featured images to your posts. Select one of the following actions and, if necessary, one or more images.', 'quick-featured-images' ); ?></p>
15
- <p><?php _e( 'Whatever you select: You can refine your choice on the next page.', 'quick-featured-images' ); ?></p>
16
  </div>
17
- <h3><?php _e( 'Important advice', 'quick-featured-images' ); ?></h3>
18
- <p><strong><?php _e( 'There is no undo function! It is strongly recommended that you make a backup of the WordPress database before you perform mass changes.', 'quick-featured-images' ); ?></strong></p>
19
  <fieldset>
20
- <legend class="screen-reader-text"><span><?php _e( 'Select action', 'quick-featured-images' ); ?></span></legend>
21
- <h3><?php _e( 'Actions with a single image', 'quick-featured-images' ); ?></h3>
22
- <p><?php _e( 'These actions require to select an image with the following button.', 'quick-featured-images' ); ?></p>
23
  <?php
24
  foreach ( $this->valid_actions as $name => $label ) {
25
  ?>
26
  <p>
27
  <input type="radio" id="<?php echo $name; ?>" name="action" value="<?php echo $name; ?>" <?php checked( 'assign' == $name ); ?> />
28
- <label for="<?php echo $name; ?>"><strong><?php echo $label; ?>.</strong></label>
29
  </p>
30
  <?php
31
  } // foeach( valid_actions )
32
  ?>
33
  <div class="qfi_wrapper">
34
  <div class="qfi_w50percent">
35
- <p><?php _e( 'Select the image you want to add to, replace or delete from posts and pages by clicking on the following button.', 'quick-featured-images' ); ?></p>
36
  <p>
37
  <?php
38
  // default values for image element
@@ -54,34 +54,34 @@ if ( $this->selected_image_id ) {
54
  ?>
55
  <input type="hidden" id="image_id" name="image_id" value="<?php echo $this->selected_image_id; ?>">
56
  <img id="selected_image" src="<?php echo $img_url; ?>" alt="<?php $text = 'Featured Image'; echo _x( $text, 'post' ); ?>" class="<?php echo $img_class; ?>" style="<?php echo $img_style; ?>" /><br />
57
- <input type="button" id="upload_image_button" class="button qfi_select_image" value="<?php _e( 'Choose Image', 'quick-featured-images' ); ?>" />
58
  </p>
59
  </div>
60
  <div class="qfi_w50percent">
61
- <p><strong><?php _e( 'If the button does not work, read this:', 'quick-featured-images' ); ?></strong></p>
62
- <p><?php _e( 'Some users reported that this button would not work in some WordPress installations. If this should be the case you can take another way:', 'quick-featured-images' ); ?></p>
63
- <p><?php _e( '1. Go to the media library. 2. Move the mouse over the desired image. Further links are appearing, among them the link &quot;Bulk set as featured image&quot;. 3. After a click on it you can move on in this plugin.', 'quick-featured-images' ); ?></p>
64
  </div>
65
  </div>
66
 
67
- <h3><?php _e( 'Actions with multiple images', 'quick-featured-images' ); ?></h3>
68
- <p><?php _e( 'These actions require at least one selected image with the following button.', 'quick-featured-images' ); ?></p>
69
  <?php
70
  foreach ( $this->valid_actions_multiple_images as $name => $label ) {
71
  ?>
72
  <p>
73
  <input type="radio" id="<?php echo $name; ?>" name="action" value="<?php echo $name; ?>" <?php checked( 'assign' == $name ); ?> />
74
- <label for="<?php echo $name; ?>"><strong><?php echo $label; ?>.</strong></label>
75
  </p>
76
  <?php
77
  } // foreach( valid_actions_multiple_images )
78
  $img_ids = is_array( $this->selected_multiple_image_ids ) ? implode( ',', $this->selected_multiple_image_ids ) : '';
79
  ?>
80
- <p><?php _e( 'To select multiple images click on the button and use the CTRL key while clicking on the images.', 'quick-featured-images' ); ?></p>
81
  <p>
82
  <input type="hidden" id="multiple_image_ids" name="multiple_image_ids" value="<?php echo $img_ids; ?>">
83
  <img id="blank_image" src="<?php echo $blank_img_url; ?>" alt="" /><br />
84
- <input type="button" id="select_images_multiple" class="button" value="<?php _e( 'Choose Images', 'quick-featured-images' ); ?>" />
85
  </p>
86
  <?php
87
  if ( $this->selected_multiple_image_ids ) {
@@ -98,24 +98,24 @@ if ( $this->selected_multiple_image_ids ) {
98
  <?php
99
  } // if ( $this->selected_multiple_image_ids )
100
  ?>
101
- <h3><?php _e( 'Actions without any selected image', 'quick-featured-images' ); ?></h3>
102
- <p><?php _e( 'These actions do not require a selected image.', 'quick-featured-images' ); ?></p>
103
  <?php
104
  foreach ( $this->valid_actions_without_image as $name => $label ) {
105
  ?>
106
  <p>
107
  <input type="radio" id="<?php echo $name; ?>" name="action" value="<?php echo $name; ?>" <?php checked( 'assign' == $name ); ?> />
108
- <label for="<?php echo $name; ?>"><strong><?php echo $label; ?>.</strong></label>
109
  </p>
110
  <?php
111
  }
112
  ?>
113
- <p class="qfi_ad_for_pro"><?php _e( 'Do you want to assign the first image of each post?', 'quick-featured-images' ); ?> <?php _e( 'Get the premium version', 'quick-featured-images' ); ?> <a href="https://www.quickfeaturedimages.com<?php _e( '/', 'quick-featured-images' ); ?>">Quick Featured Images Pro</a>.</p>
114
  </fieldset>
115
  <?php
116
  wp_nonce_field( 'quickfi_start', $this->plugin_slug . '_nonce' );
117
  $text = 'Next &raquo;';
118
  submit_button( __( $text ), 'secondary' );
119
  ?>
120
- <input type="hidden" id="selection_advice" name="selection_advice" value="<?php _e( 'Use CTRL for multiple choice', 'quick-featured-images' ); ?>" />
121
  </form>
1
  <?php
2
  if ( ! current_theme_supports( 'post-thumbnails' ) ) {
3
  ?>
4
+ <h2><?php esc_html_e( 'Notice', 'quick-featured-images' ); ?></h2>
5
  <div class="qfi_content_inside">
6
+ <p class="failure"><?php esc_html_e( 'The current theme does not support featured images. Anyway you can use this plugin. The effects are stored and will be visible in a theme which supports featured images.', 'quick-featured-images' ); ?></p>
7
  </div>
8
  <?php
9
  }
10
  ?>
11
  <form method="post" action="<?php echo esc_url( admin_url( sprintf( 'admin.php?page=%s&amp;step=select', $this->page_slug ) ) ); ?>">
12
+ <h2 class="no-bottom"><?php esc_html_e( 'What do you want to do?', 'quick-featured-images' ); ?></h2>
13
  <div class="qfi_page_description">
14
+ <p><?php esc_html_e( 'Here you can add, replace and delete featured images to your posts. Select one of the following actions and, if necessary, one or more images.', 'quick-featured-images' ); ?></p>
15
+ <p><?php esc_html_e( 'Whatever you select: You can refine your choice on the next page.', 'quick-featured-images' ); ?></p>
16
  </div>
17
+ <h3><?php esc_html_e( 'Important advice', 'quick-featured-images' ); ?></h3>
18
+ <p><strong><?php esc_html_e( 'There is no undo function! It is strongly recommended that you make a backup of the WordPress database before you perform mass changes.', 'quick-featured-images' ); ?></strong></p>
19
  <fieldset>
20
+ <legend class="screen-reader-text"><span><?php esc_html_e( 'Select action', 'quick-featured-images' ); ?></span></legend>
21
+ <h3><?php esc_html_e( 'Actions with a single image', 'quick-featured-images' ); ?></h3>
22
+ <p><?php esc_html_e( 'These actions require to select an image with the following button.', 'quick-featured-images' ); ?></p>
23
  <?php
24
  foreach ( $this->valid_actions as $name => $label ) {
25
  ?>
26
  <p>
27
  <input type="radio" id="<?php echo $name; ?>" name="action" value="<?php echo $name; ?>" <?php checked( 'assign' == $name ); ?> />
28
+ <label for="<?php echo $name; ?>"><strong><?php echo esc_html( $label ); ?></strong></label>
29
  </p>
30
  <?php
31
  } // foeach( valid_actions )
32
  ?>
33
  <div class="qfi_wrapper">
34
  <div class="qfi_w50percent">
35
+ <p><?php esc_html_e( 'Select the image you want to add to, replace or delete from posts and pages by clicking on the following button.', 'quick-featured-images' ); ?></p>
36
  <p>
37
  <?php
38
  // default values for image element
54
  ?>
55
  <input type="hidden" id="image_id" name="image_id" value="<?php echo $this->selected_image_id; ?>">
56
  <img id="selected_image" src="<?php echo $img_url; ?>" alt="<?php $text = 'Featured Image'; echo _x( $text, 'post' ); ?>" class="<?php echo $img_class; ?>" style="<?php echo $img_style; ?>" /><br />
57
+ <input type="button" id="upload_image_button" class="button qfi_select_image" value="<?php esc_attr_e( 'Choose Image', 'quick-featured-images' ); ?>" />
58
  </p>
59
  </div>
60
  <div class="qfi_w50percent">
61
+ <p><strong><?php esc_html_e( 'If the button does not work, read this:', 'quick-featured-images' ); ?></strong></p>
62
+ <p><?php esc_html_e( 'Some users reported that this button would not work in some WordPress installations. If this should be the case you can take another way:', 'quick-featured-images' ); ?></p>
63
+ <p><?php esc_html_e( '1. Go to the media library. 2. Move the mouse over the desired image. Further links are appearing, among them the link &quot;Bulk set as featured image&quot;. 3. After a click on it you can move on in this plugin.', 'quick-featured-images' ); ?></p>
64
  </div>
65
  </div>
66
 
67
+ <h3><?php esc_html_e( 'Actions with multiple images', 'quick-featured-images' ); ?></h3>
68
+ <p><?php esc_html_e( 'These actions require at least one selected image with the following button.', 'quick-featured-images' ); ?></p>
69
  <?php
70
  foreach ( $this->valid_actions_multiple_images as $name => $label ) {
71
  ?>
72
  <p>
73
  <input type="radio" id="<?php echo $name; ?>" name="action" value="<?php echo $name; ?>" <?php checked( 'assign' == $name ); ?> />
74
+ <label for="<?php echo $name; ?>"><strong><?php echo esc_html( $label ); ?></strong></label>
75
  </p>
76
  <?php
77
  } // foreach( valid_actions_multiple_images )
78
  $img_ids = is_array( $this->selected_multiple_image_ids ) ? implode( ',', $this->selected_multiple_image_ids ) : '';
79
  ?>
80
+ <p><?php esc_html_e( 'To select multiple images click on the button and use the CTRL key while clicking on the images.', 'quick-featured-images' ); ?></p>
81
  <p>
82
  <input type="hidden" id="multiple_image_ids" name="multiple_image_ids" value="<?php echo $img_ids; ?>">
83
  <img id="blank_image" src="<?php echo $blank_img_url; ?>" alt="" /><br />
84
+ <input type="button" id="select_images_multiple" class="button" value="<?php esc_attr_e( 'Choose Images', 'quick-featured-images' ); ?>" />
85
  </p>
86
  <?php
87
  if ( $this->selected_multiple_image_ids ) {
98
  <?php
99
  } // if ( $this->selected_multiple_image_ids )
100
  ?>
101
+ <h3><?php esc_html_e( 'Actions without any selected image', 'quick-featured-images' ); ?></h3>
102
+ <p><?php esc_html_e( 'These actions do not require a selected image.', 'quick-featured-images' ); ?></p>
103
  <?php
104
  foreach ( $this->valid_actions_without_image as $name => $label ) {
105
  ?>
106
  <p>
107
  <input type="radio" id="<?php echo $name; ?>" name="action" value="<?php echo $name; ?>" <?php checked( 'assign' == $name ); ?> />
108
+ <label for="<?php echo $name; ?>"><strong><?php echo esc_html( $label ); ?></strong></label>
109
  </p>
110
  <?php
111
  }
112
  ?>
113
+ <p class="qfi_ad_for_pro"><?php esc_html_e( 'Do you want to assign the first image of each post?', 'quick-featured-images' ); ?> <?php esc_html_e( 'Get the premium version', 'quick-featured-images' ); ?> <a href="https://www.quickfeaturedimages.com<?php esc_html_e( '/', 'quick-featured-images' ); ?>">Quick Featured Images Pro</a>.</p>
114
  </fieldset>
115
  <?php
116
  wp_nonce_field( 'quickfi_start', $this->plugin_slug . '_nonce' );
117
  $text = 'Next &raquo;';
118
  submit_button( __( $text ), 'secondary' );
119
  ?>
120
+ <input type="hidden" id="selection_advice" name="selection_advice" value="<?php esc_attr_e( 'Use CTRL for multiple choice', 'quick-featured-images' ); ?>" />
121
  </form>
admin/views/section_defaults.php CHANGED
@@ -13,38 +13,38 @@
13
  $no_thumb_url = includes_url() . 'images/blank.gif';
14
 
15
  // store recurring translations only once for more performance
16
- $matches_label = __( 'matches', 'quick-featured-images' );
17
- $number_label = __( 'No.', 'quick-featured-images' );
18
 
19
  // WP core strings
20
  $text = 'Save Changes';
21
- $button_label = __( $text );
22
  $text = 'Choose Image';
23
- $choose_image_label = __( $text );
24
  $text = 'Taxonomy:';
25
- $taxonomy_label = __( $text );
26
  $text = 'Action';
27
- $action_label = __( $text );
28
  $text = 'Description';
29
- $description_label = __( $text );
30
  $text = 'Image';
31
- $image_label = __( $text );
32
  $text = 'Value';
33
- $value_label = __( $text );
34
  $text = 'Author';
35
- $user_label = __( $text );
36
  $text = '&mdash; Select &mdash;';
37
- $first_option_label = __( $text );
38
  $text = 'Featured Image';
39
- $feat_img_label = _x( $text, 'post' );
40
  $text = 'Category';
41
- $category_label = _x( $text, 'taxonomy singular name' );
42
  $text = 'Tag';
43
- $tag_label = _x( $text, 'taxonomy singular name' );
44
  $text = 'Post';
45
- $post_label = _x( $text, 'post type singular name' );
46
  $text = 'Page';
47
- $page_label = _x( $text, 'post type singular name' );
48
 
49
  // set parameters for term queries
50
  $args = array(
@@ -96,7 +96,7 @@ if ( $custom_taxonomies ) {
96
  $options = array();
97
  $terms = get_terms( $key, $args );
98
  if ( is_wp_error( $terms ) ) {
99
- printf( '<p>%s<p>', $terms->get_error_message() );
100
  continue;
101
  }
102
  if ( 0 < count( $terms ) ) {
@@ -232,7 +232,7 @@ if ( ! current_theme_supports( 'post-thumbnails' ) ) {
232
  <tr id="row_1" class="alternate">
233
  <td class="num">1</td>
234
  <td>
235
- <?php printf( '<img src="%s" alt="%s" width="80" height="80" />', plugins_url( 'assets/images/overwrite-image.jpg' , dirname( __FILE__ ) ), __( 'An image overwrites an existing image', 'quick-featured-images' ) ); ?><br />
236
  </td>
237
  <td>
238
  <p>
@@ -245,7 +245,7 @@ if ( ! current_theme_supports( 'post-thumbnails' ) ) {
245
  <tr id="row_2">
246
  <td class="num">2</td>
247
  <td>
248
- <?php printf( '<img src="%s" alt="%s" width="80" height="80" />', plugins_url( 'assets/images/first-content-image.gif' , dirname( __FILE__ ) ), __( 'Text with images in WordPress editor', 'quick-featured-images' ) ); ?><br />
249
  </td>
250
  <td>
251
  <p>
@@ -489,5 +489,5 @@ wp_nonce_field( 'save_default_images', 'knlk235rf' );
489
  <li><?php esc_html_e( 'User defined order of rules', 'quick-featured-images' ); ?></li>
490
  <li><?php esc_html_e( 'Import your rules from this plugin into the premium plugin', 'quick-featured-images' ); ?></li>
491
  </ol>
492
- <p class="qfi_ad_for_pro"><?php esc_html_e( 'Get the premium version', 'quick-featured-images' ); ?> <a href="https://www.quickfeaturedimages.com<?php _e( '/', 'quick-featured-images' ); ?>">Quick Featured Images Pro</a>.</p>
493
 
13
  $no_thumb_url = includes_url() . 'images/blank.gif';
14
 
15
  // store recurring translations only once for more performance
16
+ $matches_label = esc_html__( 'matches', 'quick-featured-images' );
17
+ $number_label = esc_html__( 'No.', 'quick-featured-images' );
18
 
19
  // WP core strings
20
  $text = 'Save Changes';
21
+ $button_label = __( $text ); // will be escaped by submin_button()
22
  $text = 'Choose Image';
23
+ $choose_image_label = esc_attr__( $text );
24
  $text = 'Taxonomy:';
25
+ $taxonomy_label = esc_html__( $text );
26
  $text = 'Action';
27
+ $action_label = esc_html__( $text );
28
  $text = 'Description';
29
+ $description_label = esc_html__( $text );
30
  $text = 'Image';
31
+ $image_label = esc_html__( $text );
32
  $text = 'Value';
33
+ $value_label = esc_html__( $text );
34
  $text = 'Author';
35
+ $user_label = esc_html__( $text );
36
  $text = '&mdash; Select &mdash;';
37
+ $first_option_label = esc_html__( $text );
38
  $text = 'Featured Image';
39
+ $feat_img_label = esc_attr( _x( $text, 'post' ) );
40
  $text = 'Category';
41
+ $category_label = esc_html( _x( $text, 'taxonomy singular name' ) );
42
  $text = 'Tag';
43
+ $tag_label = esc_html( _x( $text, 'taxonomy singular name' ) );
44
  $text = 'Post';
45
+ $post_label = esc_html( _x( $text, 'post type singular name' ) );
46
  $text = 'Page';
47
+ $page_label = esc_html(_x( $text, 'post type singular name' ) );
48
 
49
  // set parameters for term queries
50
  $args = array(
96
  $options = array();
97
  $terms = get_terms( $key, $args );
98
  if ( is_wp_error( $terms ) ) {
99
+ printf( '<p>%s<p>', esc_html( $terms->get_error_message() ) );
100
  continue;
101
  }
102
  if ( 0 < count( $terms ) ) {
232
  <tr id="row_1" class="alternate">
233
  <td class="num">1</td>
234
  <td>
235
+ <?php printf( '<img src="%s" alt="%s" width="80" height="80" />', plugins_url( 'assets/images/overwrite-image.jpg' , dirname( __FILE__ ) ), esc_attr__( 'An image overwrites an existing image', 'quick-featured-images' ) ); ?><br />
236
  </td>
237
  <td>
238
  <p>
245
  <tr id="row_2">
246
  <td class="num">2</td>
247
  <td>
248
+ <?php printf( '<img src="%s" alt="%s" width="80" height="80" />', plugins_url( 'assets/images/first-content-image.gif' , dirname( __FILE__ ) ), esc_attr__( 'Text with images in WordPress editor', 'quick-featured-images' ) ); ?><br />
249
  </td>
250
  <td>
251
  <p>
489
  <li><?php esc_html_e( 'User defined order of rules', 'quick-featured-images' ); ?></li>
490
  <li><?php esc_html_e( 'Import your rules from this plugin into the premium plugin', 'quick-featured-images' ); ?></li>
491
  </ol>
492
+ <p class="qfi_ad_for_pro"><?php esc_html_e( 'Get the premium version', 'quick-featured-images' ); ?> <a href="https://www.quickfeaturedimages.com<?php esc_html_e( '/', 'quick-featured-images' ); ?>">Quick Featured Images Pro</a>.</p>
493
 
admin/views/section_errormsg.php CHANGED
@@ -1,8 +1,8 @@
1
- <h2><?php _e( 'Error', $this->page_slug );?></h2>
2
  <div class="qfi_content_inside">
3
- <h3><?php _e( 'Reason', 'quick-featured-images' );?></h3>
4
- <p class="failure"><?php print $msg; ?></p>
5
- <h3><?php _e( 'Solution', 'quick-featured-images' );?></h3>
6
- <p class="success"><?php print $solution; ?></p>
7
  </div>
8
- <p><a class="button" href='<?php echo esc_url( admin_url( sprintf( 'admin.php?page=%s', $this->page_slug ) ) );?>'><?php _e( 'Start again', 'quick-featured-images' );?></a></p>
1
+ <h2><?php esc_html_e( 'Error', $this->page_slug );?></h2>
2
  <div class="qfi_content_inside">
3
+ <h3><?php esc_html_e( 'Reason', 'quick-featured-images' );?></h3>
4
+ <p class="failure"><?php print esc_html( $msg ); ?></p>
5
+ <h3><?php esc_html_e( 'Solution', 'quick-featured-images' );?></h3>
6
+ <p class="success"><?php print esc_html( $solution ); ?></p>
7
  </div>
8
+ <p><a class="button" href='<?php echo esc_url( admin_url( sprintf( 'admin.php?page=%s', $this->page_slug ) ) );?>'><?php esc_html_e( 'Start again', 'quick-featured-images' );?></a></p>
admin/views/section_footer.php CHANGED
@@ -49,14 +49,14 @@ if ( ! in_array( $paypal_locale, array( 'en_US', 'en_AU', 'es_ES', 'fr_FR', 'de_
49
  </div><!-- #qfi_main -->
50
  <div id="qfi_footer">
51
  <div class="qfi_content">
52
- <h2><?php _e( 'Credits and informations', $text_domain ); ?></h2>
53
  <dl>
54
- <dt><?php _e( 'Do you like the plugin?', $text_domain ); ?></dt><dd><a href="http://wordpress.org/support/view/plugin-reviews/quick-featured-images"><?php _e( 'Please rate it at wordpress.org!', $text_domain ); ?></a></dd>
55
- <dt><?php _e( 'The plugin is for free. But the plugin author would be delighted to your small contribution.', $text_domain ); ?></dt><dd><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=2KUW27NECWVWJ"><img src="https://www.paypalobjects.com/<?php echo $paypal_locale; ?>/i/btn/btn_donateCC_LG.gif" alt="(<?php _e( 'Donation Button', $text_domain ); ?>)" id="paypal_button" /><br /><?php _e( 'Donate with PayPal', $text_domain ); ?></a><img alt="" border="0" src="https://www.paypalobjects.com/de_DE/i/scr/pixel.gif" width="1" height="1" /></dd>
56
- <dt><?php _e( 'Do you need support or have an idea for the plugin?', $text_domain ); ?></dt><dd><a href="http://wordpress.org/support/plugin/quick-featured-images"><?php _e( 'Post your questions and ideas about Quick Featured Images in the forum at wordpress.org!', $text_domain ); ?></a></dd>
57
- <dt><?php _e( 'Special thanks for the fine frontend style of the plugin go to', $text_domain ); ?></dt><dd><a href="http://alexandra-mutter.de/?ref=quick-featured-images"><?php echo get_avatar( 'allamoda07@googlemail.com', 44 ); ?>alexandra mutter design</a></dd>
58
- <dt><?php _e( 'Let the thumbnails appear in the widget of the most recent posts with this fast plugin', $text_domain ); ?></dt><dd><a href="http://wordpress.org/plugins/recent-posts-widget-with-thumbnails/"><?php printf( __( 'Download plugin %s at %s!', $text_domain ), '<strong>Recent Posts Widget With Thumbnails</strong>', 'wordpress.org' ); ?></a></dd>
59
- <dt><?php _e( 'Get the premium version', 'quick-featured-images' ); ?> <a href="https://www.quickfeaturedimages.com<?php _e( '/', 'quick-featured-images' ); ?>">Quick Featured Images Pro</a></dd>
60
  </dl>
61
  </div><!-- .qfi_content -->
62
  </div><!-- #qfi_footer -->
49
  </div><!-- #qfi_main -->
50
  <div id="qfi_footer">
51
  <div class="qfi_content">
52
+ <h2><?php esc_html_e( 'Credits and informations', $text_domain ); ?></h2>
53
  <dl>
54
+ <dt><?php esc_html_e( 'Do you like the plugin?', $text_domain ); ?></dt><dd><a href="http://wordpress.org/support/view/plugin-reviews/quick-featured-images"><?php esc_html_e( 'Please rate it at wordpress.org!', $text_domain ); ?></a></dd>
55
+ <dt><?php esc_html_e( 'The plugin is for free. But the plugin author would be delighted to your small contribution.', $text_domain ); ?></dt><dd><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=2KUW27NECWVWJ"><img src="https://www.paypalobjects.com/<?php echo $paypal_locale; ?>/i/btn/btn_donateCC_LG.gif" alt="(<?php esc_html_e( 'Donation Button', $text_domain ); ?>)" id="paypal_button" /><br /><?php esc_html_e( 'Donate with PayPal', $text_domain ); ?></a><img alt="" border="0" src="https://www.paypalobjects.com/de_DE/i/scr/pixel.gif" width="1" height="1" /></dd>
56
+ <dt><?php esc_html_e( 'Do you need support or have an idea for the plugin?', $text_domain ); ?></dt><dd><a href="http://wordpress.org/support/plugin/quick-featured-images"><?php esc_html_e( 'Post your questions and ideas about Quick Featured Images in the forum at wordpress.org!', $text_domain ); ?></a></dd>
57
+ <dt><?php esc_html_e( 'Special thanks for the fine frontend style of the plugin go to', $text_domain ); ?></dt><dd><a href="http://alexandra-mutter.de/?ref=quick-featured-images"><?php echo get_avatar( 'allamoda07@googlemail.com', 44 ); ?>alexandra mutter design</a></dd>
58
+ <dt><?php esc_html_e( 'Let the thumbnails appear in the widget of the most recent posts with this fast plugin', $text_domain ); ?></dt><dd><a href="http://wordpress.org/plugins/recent-posts-widget-with-thumbnails/"><?php printf( __( 'Download plugin %s at %s!', $text_domain ), '<strong>Recent Posts Widget With Thumbnails</strong>', 'wordpress.org' ); ?></a></dd>
59
+ <dt><?php esc_html_e( 'Get the premium version', 'quick-featured-images' ); ?> <a href="https://www.quickfeaturedimages.com<?php esc_html_e( '/', 'quick-featured-images' ); ?>">Quick Featured Images Pro</a></dd>
60
  </dl>
61
  </div><!-- .qfi_content -->
62
  </div><!-- #qfi_footer -->
admin/views/section_header_progress.php CHANGED
@@ -12,9 +12,9 @@
12
 
13
  <div class="wrap">
14
  <h1><?php echo esc_html( get_admin_page_title() ); ?></h1>
15
- <h2><?php _e( 'Progress bar', 'quick-featured-images' ); ?></h2>
16
  <p id="progress">
17
- <em class="screen-reader-text"><?php _e( 'You are here', 'quick-featured-images' ); ?>:</em>
18
  <span id="bar" class="wp-ui-primary">
19
  <?php
20
  $count = 1;
@@ -27,7 +27,7 @@ foreach ( $this->valid_steps as $key => $label ) {
27
  $elem = 'span';
28
  $class = 'wp-ui-notification';
29
  }
30
- printf( '<%s class="%s">%s</%s>', $elem, $class, $label, $elem );
31
  if ( $count < $max ) {
32
  print '<span class="sep"> &gt; </span>';
33
  }
12
 
13
  <div class="wrap">
14
  <h1><?php echo esc_html( get_admin_page_title() ); ?></h1>
15
+ <h2><?php esc_html_e( 'Progress bar', 'quick-featured-images' ); ?></h2>
16
  <p id="progress">
17
+ <em class="screen-reader-text"><?php esc_html_e( 'You are here', 'quick-featured-images' ); ?>:</em>
18
  <span id="bar" class="wp-ui-primary">
19
  <?php
20
  $count = 1;
27
  $elem = 'span';
28
  $class = 'wp-ui-notification';
29
  }
30
+ printf( '<%s class="%s">%s</%s>', $elem, $class, esc_html( $label ), $elem );
31
  if ( $count < $max ) {
32
  print '<span class="sep"> &gt; </span>';
33
  }
admin/views/section_image.php CHANGED
@@ -1,4 +1,4 @@
1
- <h2><?php _e( 'Your selection', 'quick-featured-images' ); ?></h2>
2
  <?php
3
  $two_columns = false;
4
  if ( in_array( $this->selected_action, array_keys( $this->valid_actions ) ) && $this->selected_image_id ) {
@@ -6,12 +6,12 @@ if ( in_array( $this->selected_action, array_keys( $this->valid_actions ) ) && $
6
  ?>
7
  <div class="qfi_wrapper">
8
  <div class="qfi_w50percent">
9
- <h3><?php _e( 'Your selected thumbnail', 'quick-featured-images' ); ?></h3>
10
  <p>
11
  <?php echo wp_get_attachment_image( $this->selected_image_id, 'thumbnail' ); ?><br>
12
- <strong><?php _e( 'Image title', 'quick-featured-images' ); ?>:</strong> <?php echo get_the_title( $this->selected_image_id ); ?>
13
  </p>
14
- <p><a class="button" href='<?php echo esc_url( admin_url( sprintf( 'admin.php?page=%s', $this->page_slug ) ) );?>'><?php _e( 'If wrong image start again', 'quick-featured-images' );?></a></p>
15
  </div><!-- .qfi_w50percent -->
16
  <div class="qfi_w50percent">
17
  <?php
@@ -20,7 +20,7 @@ if ( in_array( $this->selected_action, array_keys( $this->valid_actions ) ) && $
20
  ?>
21
  <div class="qfi_wrapper">
22
  <div class="qfi_w50percent">
23
- <h3><?php _e( 'Your selected thumbnails', 'quick-featured-images' ); ?></h3>
24
  <ul class="selected_images">
25
  <?php
26
  $size = array( 60, 60 );
@@ -33,13 +33,13 @@ if ( in_array( $this->selected_action, array_keys( $this->valid_actions ) ) && $
33
  </ul>
34
  <?php
35
  ?>
36
- <p><a class="button" href='<?php echo esc_url( admin_url( sprintf( 'admin.php?page=%s', $this->page_slug ) ) );?>'><?php _e( 'If wrong image start again', 'quick-featured-images' );?></a></p>
37
  </div><!-- .qfi_w50percent -->
38
  <div class="qfi_w50percent">
39
  <?php
40
  }
41
  ?>
42
- <h3><?php _e( 'Your selected action', 'quick-featured-images' ); ?></h3>
43
  <?php
44
  if ( isset( $this->valid_actions[ $this->selected_action ] ) ) {
45
  $selected_action = $this->valid_actions[ $this->selected_action ];
@@ -51,8 +51,8 @@ if ( isset( $this->valid_actions[ $this->selected_action ] ) ) {
51
  $selected_action = __( 'You have not selected an action.', 'quick-featured-images' );
52
  }
53
  ?>
54
- <p><?php echo $selected_action; ?></p>
55
- <p><a class="button" href='<?php echo esc_url( admin_url( sprintf( 'admin.php?page=%s', $this->page_slug ) ) );?>'><?php _e( 'If wrong action start again', 'quick-featured-images' );?></a></p>
56
  <?php
57
  if ( $two_columns ) {
58
  ?>
@@ -65,7 +65,7 @@ if ( 'select' != $this->selected_step ) {
65
  ?>
66
  <div class="qfi_wrapper">
67
  <div class="qfi_w50percent">
68
- <h3><?php _e( 'Your selected options', 'quick-featured-images' ); ?></h3>
69
  <?php
70
  if ( $this->selected_options ) {
71
  ?>
@@ -81,13 +81,13 @@ if ( 'select' != $this->selected_step ) {
81
  <?php
82
  } else {
83
  ?>
84
- <p><?php _e( 'No selected options', 'quick-featured-images' ); ?></p>
85
  <?php
86
  }
87
  ?>
88
  </div><!-- .qfi_w50percent -->
89
  <div class="qfi_w50percent">
90
- <h3><?php _e( 'Your selected filters', 'quick-featured-images' ); ?></h3>
91
  <?php
92
  if ( $this->selected_filters ) {
93
  ?>
@@ -103,7 +103,7 @@ if ( 'select' != $this->selected_step ) {
103
  <?php
104
  } else {
105
  ?>
106
- <p><?php _e( 'No selected filters', 'quick-featured-images' ); ?></p>
107
  <?php
108
  }
109
  ?>
1
+ <h2><?php esc_html_e( 'Your selection', 'quick-featured-images' ); ?></h2>
2
  <?php
3
  $two_columns = false;
4
  if ( in_array( $this->selected_action, array_keys( $this->valid_actions ) ) && $this->selected_image_id ) {
6
  ?>
7
  <div class="qfi_wrapper">
8
  <div class="qfi_w50percent">
9
+ <h3><?php esc_html_e( 'Your selected thumbnail', 'quick-featured-images' ); ?></h3>
10
  <p>
11
  <?php echo wp_get_attachment_image( $this->selected_image_id, 'thumbnail' ); ?><br>
12
+ <strong><?php esc_html_e( 'Image title', 'quick-featured-images' ); ?>:</strong> <?php echo get_the_title( $this->selected_image_id ); ?>
13
  </p>
14
+ <p><a class="button" href='<?php echo esc_url( admin_url( sprintf( 'admin.php?page=%s', $this->page_slug ) ) );?>'><?php esc_html_e( 'If wrong image start again', 'quick-featured-images' );?></a></p>
15
  </div><!-- .qfi_w50percent -->
16
  <div class="qfi_w50percent">
17
  <?php
20
  ?>
21
  <div class="qfi_wrapper">
22
  <div class="qfi_w50percent">
23
+ <h3><?php esc_html_e( 'Your selected thumbnails', 'quick-featured-images' ); ?></h3>
24
  <ul class="selected_images">
25
  <?php
26
  $size = array( 60, 60 );
33
  </ul>
34
  <?php
35
  ?>
36
+ <p><a class="button" href='<?php echo esc_url( admin_url( sprintf( 'admin.php?page=%s', $this->page_slug ) ) );?>'><?php esc_html_e( 'If wrong image start again', 'quick-featured-images' );?></a></p>
37
  </div><!-- .qfi_w50percent -->
38
  <div class="qfi_w50percent">
39
  <?php
40
  }
41
  ?>
42
+ <h3><?php esc_html_e( 'Your selected action', 'quick-featured-images' ); ?></h3>
43
  <?php
44
  if ( isset( $this->valid_actions[ $this->selected_action ] ) ) {
45
  $selected_action = $this->valid_actions[ $this->selected_action ];
51
  $selected_action = __( 'You have not selected an action.', 'quick-featured-images' );
52
  }
53
  ?>
54
+ <p><?php echo esc_html( $selected_action ); ?></p>
55
+ <p><a class="button" href='<?php echo esc_url( admin_url( sprintf( 'admin.php?page=%s', $this->page_slug ) ) );?>'><?php esc_html_e( 'If wrong action start again', 'quick-featured-images' );?></a></p>
56
  <?php
57
  if ( $two_columns ) {
58
  ?>
65
  ?>
66
  <div class="qfi_wrapper">
67
  <div class="qfi_w50percent">
68
+ <h3><?php esc_html_e( 'Your selected options', 'quick-featured-images' ); ?></h3>
69
  <?php
70
  if ( $this->selected_options ) {
71
  ?>
81
  <?php
82
  } else {
83
  ?>
84
+ <p><?php esc_html_e( 'No selected options', 'quick-featured-images' ); ?></p>
85
  <?php
86
  }
87
  ?>
88
  </div><!-- .qfi_w50percent -->
89
  <div class="qfi_w50percent">
90
+ <h3><?php esc_html_e( 'Your selected filters', 'quick-featured-images' ); ?></h3>
91
  <?php
92
  if ( $this->selected_filters ) {
93
  ?>
103
  <?php
104
  } else {
105
  ?>
106
+ <p><?php esc_html_e( 'No selected filters', 'quick-featured-images' ); ?></p>
107
  <?php
108
  }
109
  ?>
admin/views/section_overview.php CHANGED
@@ -14,9 +14,9 @@ $qfi_defaults_instance = Quick_Featured_Images_Defaults::get_instance();
14
  $qfi_settings_instance = Quick_Featured_Images_Settings::get_instance();
15
  ?>
16
 
17
- <h2 class="no-bottom"><?php _e( 'Manage featured images in a quick way', 'quick-featured-images' ); ?></h2>
18
  <div class="qfi_page_description">
19
- <p><?php echo $this->get_page_description(); ?></p>
20
  </div>
21
  <ul>
22
  <?php
@@ -26,17 +26,17 @@ $qfi_settings_instance = Quick_Featured_Images_Settings::get_instance();
26
  */
27
  ?>
28
  <li>
29
- <h3><?php echo $qfi_tools_instance->get_page_headline(); ?></h3>
30
  <?php
31
  if ( current_user_can( $qfi_tools_instance->get_required_user_cap() ) ) {
32
  printf(
33
  ' <p><a href="%s"><span class="dashicons dashicons-admin-tools"></span><br />%s</a></p>',
34
  admin_url( sprintf( 'admin.php?page=%s', $qfi_tools_instance->get_page_slug() ) ),
35
- $qfi_tools_instance->get_page_description()
36
  );
37
  } else {
38
  ?>
39
- <p><span class="dashicons dashicons-admin-tools"></span><br /><?php echo $qfi_tools_instance->get_page_description(); ?></p>
40
  <?php
41
  }
42
  ?>
@@ -48,17 +48,17 @@ if ( current_user_can( $qfi_tools_instance->get_required_user_cap() ) ) {
48
  */
49
  ?>
50
  <li>
51
- <h3><?php echo $qfi_defaults_instance->get_page_headline(); ?></h3>
52
  <?php
53
  if ( current_user_can( $qfi_defaults_instance->get_required_user_cap() ) ) {
54
  printf(
55
  ' <p><a href="%s"><span class="dashicons dashicons-images-alt"></span><br />%s</a></p>',
56
  admin_url( sprintf( 'admin.php?page=%s', $qfi_defaults_instance->get_page_slug() ) ),
57
- $qfi_defaults_instance->get_page_description()
58
  );
59
  } else {
60
  ?>
61
- <p><span class="dashicons dashicons-admin-defaults"></span><br /><?php echo $qfi_defaults_instance->get_page_description(); ?></p>
62
  <?php
63
  }
64
  ?>
@@ -70,25 +70,25 @@ if ( current_user_can( $qfi_defaults_instance->get_required_user_cap() ) ) {
70
  */
71
  ?>
72
  <li>
73
- <h3><?php echo $qfi_settings_instance->get_page_headline(); ?></h3>
74
  <?php
75
  if ( current_user_can( $qfi_settings_instance->get_required_user_cap() ) ) {
76
  printf(
77
  ' <p><a href="%s"><span class="dashicons dashicons-admin-settings"></span><br />%s</a></p>',
78
  admin_url( sprintf( 'admin.php?page=%s', $qfi_settings_instance->get_page_slug() ) ),
79
- $qfi_settings_instance->get_page_description()
80
  );
81
  } else {
82
  ?>
83
- <p><span class="dashicons dashicons-admin-settings"></span><br /><?php echo $qfi_settings_instance->get_page_description(); ?></p>
84
  <?php
85
  }
86
  ?>
87
  </li>
88
  <li>
89
- <h3><?php _e( 'The premium version', 'quick-featured-images' ); ?></h3>
90
- <p><a href="https://www.quickfeaturedimages.com<?php _e( '/', 'quick-featured-images' ); ?>"><img alt="Quick Featured Images Pro" src="<?php echo plugin_dir_url( dirname( dirname( __FILE__ ) ) ); ?>admin/assets/images/logo_qfi_pro.gif" style="width:100%;height:auto;"></a></p>
91
- <p><?php _e( 'Are you looking for more options and more filters?', 'quick-featured-images' ); ?> <?php _e( 'Get the premium version', 'quick-featured-images' ); ?> <a href="https://www.quickfeaturedimages.com<?php _e( '/', 'quick-featured-images' ); ?>">Quick Featured Images Pro</a>.</p>
92
  </li>
93
  </ul>
94
 
14
  $qfi_settings_instance = Quick_Featured_Images_Settings::get_instance();
15
  ?>
16
 
17
+ <h2 class="no-bottom"><?php esc_html_e( 'Manage featured images in a quick way', 'quick-featured-images' ); ?></h2>
18
  <div class="qfi_page_description">
19
+ <p><?php echo esc_html( $this->get_page_description() ); ?></p>
20
  </div>
21
  <ul>
22
  <?php
26
  */
27
  ?>
28
  <li>
29
+ <h3><?php echo esc_html( $qfi_tools_instance->get_page_headline() ); ?></h3>
30
  <?php
31
  if ( current_user_can( $qfi_tools_instance->get_required_user_cap() ) ) {
32
  printf(
33
  ' <p><a href="%s"><span class="dashicons dashicons-admin-tools"></span><br />%s</a></p>',
34
  admin_url( sprintf( 'admin.php?page=%s', $qfi_tools_instance->get_page_slug() ) ),
35
+ esc_html( $qfi_tools_instance->get_page_description() )
36
  );
37
  } else {
38
  ?>
39
+ <p><span class="dashicons dashicons-admin-tools"></span><br /><?php echo esc_html( $qfi_tools_instance->get_page_description() ); ?></p>
40
  <?php
41
  }
42
  ?>
48
  */
49
  ?>
50
  <li>
51
+ <h3><?php echo esc_html( $qfi_defaults_instance->get_page_headline() ); ?></h3>
52
  <?php
53
  if ( current_user_can( $qfi_defaults_instance->get_required_user_cap() ) ) {
54
  printf(
55
  ' <p><a href="%s"><span class="dashicons dashicons-images-alt"></span><br />%s</a></p>',
56
  admin_url( sprintf( 'admin.php?page=%s', $qfi_defaults_instance->get_page_slug() ) ),
57
+ esc_html( $qfi_defaults_instance->get_page_description() )
58
  );
59
  } else {
60
  ?>
61
+ <p><span class="dashicons dashicons-admin-defaults"></span><br /><?php echo esc_html( $qfi_defaults_instance->get_page_description() ); ?></p>
62
  <?php
63
  }
64
  ?>
70
  */
71
  ?>
72
  <li>
73
+ <h3><?php echo esc_html( $qfi_settings_instance->get_page_headline() ); ?></h3>
74
  <?php
75
  if ( current_user_can( $qfi_settings_instance->get_required_user_cap() ) ) {
76
  printf(
77
  ' <p><a href="%s"><span class="dashicons dashicons-admin-settings"></span><br />%s</a></p>',
78
  admin_url( sprintf( 'admin.php?page=%s', $qfi_settings_instance->get_page_slug() ) ),
79
+ esc_html( $qfi_settings_instance->get_page_description() )
80
  );
81
  } else {
82
  ?>
83
+ <p><span class="dashicons dashicons-admin-settings"></span><br /><?php echo esc_html( $qfi_settings_instance->get_page_description() ); ?></p>
84
  <?php
85
  }
86
  ?>
87
  </li>
88
  <li>
89
+ <h3><?php esc_html_e( 'The premium version', 'quick-featured-images' ); ?></h3>
90
+ <p><a href="https://www.quickfeaturedimages.com<?php esc_attr_e( '/', 'quick-featured-images' ); ?>"><img alt="Quick Featured Images Pro" src="<?php echo plugin_dir_url( dirname( dirname( __FILE__ ) ) ); ?>admin/assets/images/logo_qfi_pro.gif" style="width:100%;height:auto;"></a></p>
91
+ <p><?php esc_html_e( 'Are you looking for more options and more filters?', 'quick-featured-images' ); ?> <?php esc_html_e( 'Get the premium version', 'quick-featured-images' ); ?> <a href="https://www.quickfeaturedimages.com<?php esc_attr_e( '/', 'quick-featured-images' ); ?>">Quick Featured Images Pro</a>.</p>
92
  </li>
93
  </ul>
94
 
admin/views/section_results.php CHANGED
@@ -1,19 +1,30 @@
1
- <h2><?php _e( 'Results of the action', 'quick-featured-images' ); ?></h2>
2
  <?php
3
  if ( $results ) {
4
- // translate once for multiple usage and improve performance
5
- $label_details = __( 'Details', 'quick-featured-images' );
6
- $label_current_fi = __( 'Current Featured Image', 'quick-featured-images' );
7
- $label_number = __( 'No.', 'quick-featured-images' );
8
- $label_changed = __( 'Changed successfully', 'quick-featured-images' );
9
- $label_unchanged = sprintf( '<span class="failure">%s</span>', __( 'Unchanged', 'quick-featured-images' ) );
10
- // WP core labels
11
- $text = 'No image set';
12
- $label_no_image = __( $text );
13
- $text = '(no title)';
14
- $default_title = __( $text );
15
  ?>
16
- <p><?php _e( 'The list is in alphabetical order according to post title. You can edit a post in a new window by clicking on its link in the list.', 'quick-featured-images' ); ?></p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  <table class="widefat">
18
  <thead>
19
  <tr>
@@ -24,36 +35,36 @@ if ( $results ) {
24
  </thead>
25
  <tbody>
26
  <?php
27
- $c = 1;
28
- foreach ( $results as $result ) {
29
- // post title, else default title
30
- $post_title = $result[ 1 ] ? $result[ 1 ] : $default_title;
31
- // check if no featured image for the post, else add default
32
- $img = $result[ 2 ] ? $result[ 2 ] : $label_no_image;
33
- // get the result message per post
34
- $msg = $result[ 3 ] ? $label_changed : $label_unchanged;
35
- // alternating row colors with error class if error
36
- $row_classes = $result[ 3 ] ? '' : 'qfi-failure';
37
- if ( 0 != $c % 2 ) { // if $c is divisible by 2 (so the modulo is 0)
38
- $row_classes .= $row_classes ? ' alternate' : 'alternate';
39
- }
40
- if ( $row_classes ) {
41
- $row_classes = ' class="' . $row_classes . '"';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
42
  }
43
- // print the table row
44
- printf( '<tr%s>', $row_classes );
45
- printf( '<td class="num">%d</td>', $c );
46
- printf(
47
- '<td><a href="%s" target="_blank">%s</a><br>%s</td>',
48
- $result[ 0 ], // edit post link
49
- $post_title,
50
- $msg
51
- );
52
- printf( '<td class="num">%s</td>', $img );
53
- print "</tr>\n";
54
- // increase counter
55
- $c++;
56
- }
57
  ?>
58
  </tbody>
59
  <tfoot>
@@ -65,12 +76,13 @@ if ( $results ) {
65
  </tfoot>
66
  </table>
67
  <?php
 
68
  } else {
69
  ?>
70
- <p><?php _e( 'No matches found.', 'quick-featured-images' ); ?></p>
71
  <?php
72
  }
73
  ?>
74
- <p><a class="button" href="<?php echo esc_url( admin_url( sprintf( 'admin.php?page=%s', $this->page_slug ) ) );?>"><?php _e( 'Start again', 'quick-featured-images' );?></a></p>
75
- <h2><?php _e( 'Do you like the plugin?', 'quick-featured-images' ); ?></h2>
76
- <p><a href="http://wordpress.org/support/view/plugin-reviews/quick-featured-images"><?php _e( 'Please rate it at wordpress.org!', 'quick-featured-images' ); ?></a></p>
1
+ <h2><?php esc_html_e( 'Results of the action', 'quick-featured-images' ); ?></h2>
2
  <?php
3
  if ( $results ) {
4
+ if ( 'remove_orphaned' == $this->selected_action ) {
5
+ // WP core labels
6
+ $text = 'Number of items found: %d';
7
+ $number_found = esc_html__( $text );
8
+ $text = 'Deleted!';
9
+ $label_deleted = esc_html( _x( $text, 'plugin' ) );
 
 
 
 
 
10
  ?>
11
+ <p><?php printf( $number_found, $results ); ?></p>
12
+ <p><?php echo $label_deleted; ?> <img src="<?php echo esc_url( admin_url() ); ?>images/yes.png" alt="" width="16" height="16"></p>
13
+ <?php
14
+ } else {
15
+ // translate once for multiple usage and improve performance
16
+ $label_details = esc_html__( 'Details', 'quick-featured-images' );
17
+ $label_current_fi = esc_html__( 'Current Featured Image', 'quick-featured-images' );
18
+ $label_number = esc_html__( 'No.', 'quick-featured-images' );
19
+ $label_changed = esc_html__( 'Changed successfully', 'quick-featured-images' );
20
+ $label_unchanged = sprintf( '<span class="failure">%s</span>', esc_html__( 'Unchanged', 'quick-featured-images' ) );
21
+ // WP core labels
22
+ $text = 'No image set';
23
+ $label_no_image = esc_html__( $text );
24
+ $text = '(no title)';
25
+ $default_title = esc_html__( $text );
26
+ ?>
27
+ <p><?php esc_html_e( 'The list is in alphabetical order according to post title. You can edit a post in a new window by clicking on its link in the list.', 'quick-featured-images' ); ?></p>
28
  <table class="widefat">
29
  <thead>
30
  <tr>
35
  </thead>
36
  <tbody>
37
  <?php
38
+ $c = 1;
39
+ foreach ( $results as $result ) {
40
+ // post title, else default title
41
+ $post_title = $result[ 1 ] ? esc_html( $result[ 1 ] ) : $default_title;
42
+ // check if no featured image for the post, else add default
43
+ $img = $result[ 2 ] ? esc_html( $result[ 2 ] ) : $label_no_image;
44
+ // get the result message per post
45
+ $msg = $result[ 3 ] ? $label_changed : $label_unchanged;
46
+ // alternating row colors with error class if error
47
+ $row_classes = $result[ 3 ] ? '' : 'qfi-failure';
48
+ if ( 0 != $c % 2 ) { // if $c is divisible by 2 (so the modulo is 0)
49
+ $row_classes .= $row_classes ? ' alternate' : 'alternate';
50
+ }
51
+ if ( $row_classes ) {
52
+ $row_classes = ' class="' . $row_classes . '"';
53
+ }
54
+ // print the table row
55
+ printf( '<tr%s>', $row_classes );
56
+ printf( '<td class="num">%d</td>', $c );
57
+ printf(
58
+ '<td><a href="%s" target="_blank">%s</a><br>%s</td>',
59
+ $result[ 0 ], // edit post link
60
+ $post_title,
61
+ $msg
62
+ );
63
+ printf( '<td class="num">%s</td>', $img );
64
+ print "</tr>\n";
65
+ // increase counter
66
+ $c++;
67
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
68
  ?>
69
  </tbody>
70
  <tfoot>
76
  </tfoot>
77
  </table>
78
  <?php
79
+ } // if ( 'remove_orphaned' == $this->selected_action )
80
  } else {
81
  ?>
82
+ <p><?php esc_html_e( 'No matches found.', 'quick-featured-images' ); ?></p>
83
  <?php
84
  }
85
  ?>
86
+ <p><a class="button" href="<?php echo esc_url( admin_url( sprintf( 'admin.php?page=%s', $this->page_slug ) ) );?>"><?php esc_html_e( 'Start again', 'quick-featured-images' );?></a></p>
87
+ <h2><?php esc_html_e( 'Do you like the plugin?', 'quick-featured-images' ); ?></h2>
88
+ <p><a href="http://wordpress.org/support/view/plugin-reviews/quick-featured-images"><?php esc_html_e( 'Please rate it at wordpress.org!', 'quick-featured-images' ); ?></a></p>
languages/quick-featured-images-ar.mo CHANGED
Binary file
languages/quick-featured-images-ar.po CHANGED
@@ -4,15 +4,15 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Quick Featured Images Pro\n"
6
  "Report-Msgid-Bugs-To: http://quickfeaturedimages.com\n"
7
- "POT-Creation-Date: 2017-03-30 22:55+0200\n"
8
- "PO-Revision-Date: 2017-03-30 22:55+0200\n"
9
  "Last-Translator: Martin Stehle <m.stehle@gmx.de>\n"
10
  "Language-Team: m.stehle@gmx.de\n"
11
  "Language: ar\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
- "X-Generator: Poedit 2.0\n"
16
  "X-Poedit-KeywordsList: __;_e;_n;_x;esc_html_e;esc_html__;esc_attr_e;"
17
  "esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_x:1,2c;_n:1,2\n"
18
  "X-Poedit-Basepath: ..\n"
@@ -44,20 +44,21 @@ msgstr ""
44
  msgid "Welcome to %s! You can find the plugin at %s."
45
  msgstr "مرحباً بك في %s! يمكنك أن تجد الإضافة في %s."
46
 
47
- #: admin/class-quick-featured-images-columns.php:294
48
- #: admin/class-quick-featured-images-columns.php:414
49
  #, php-format
50
  msgid "Change &#8220;%s&#8221;"
51
  msgstr "تغيير %s"
52
 
53
- #: admin/class-quick-featured-images-columns.php:317
54
- #: admin/class-quick-featured-images-columns.php:415
55
  #, php-format
56
  msgid "Remove &#8220;%s&#8221;"
57
  msgstr "إزالة %s"
58
 
59
- #: admin/class-quick-featured-images-columns.php:339
60
- #: admin/class-quick-featured-images-columns.php:484
 
61
  #, php-format
62
  msgid "Set image for &#8220;%s&#8221;"
63
  msgstr "صورة مضبوط ل %s"
@@ -153,136 +154,140 @@ msgstr ""
153
  msgid "Controls which minimum user role can see the plugin."
154
  msgstr "الضوابط التي دورا الحد الأدنى يمكن للمستخدم رؤية البرنامج المساعد."
155
 
156
- #: admin/class-quick-featured-images-tools.php:443
157
  #, php-format
158
  msgid "Wrong image ID %d"
159
  msgstr "معرّف صورة خاطئ %d"
160
 
161
- #: admin/class-quick-featured-images-tools.php:544
162
  msgid "Select"
163
  msgstr "اختر"
164
 
165
- #: admin/class-quick-featured-images-tools.php:545
166
  msgid "Add filter"
167
  msgstr "إضافة فلتر"
168
 
169
- #: admin/class-quick-featured-images-tools.php:546
170
  msgid "Refine"
171
  msgstr "تنقيح"
172
 
173
- #: admin/class-quick-featured-images-tools.php:547
174
  msgid "Confirm"
175
  msgstr "تأكيد"
176
 
177
- #: admin/class-quick-featured-images-tools.php:548
178
  msgid "Perform"
179
  msgstr "نفّذ"
180
 
181
- #: admin/class-quick-featured-images-tools.php:552
182
  msgid "Set the selected image as new featured image"
183
  msgstr "استخدم الصورة المحددة كصورة بارزة جديدة"
184
 
185
- #: admin/class-quick-featured-images-tools.php:553
186
  msgid "Replace featured images by the selected image"
187
  msgstr "استبدل الصور البارزة بالصورة المحددة"
188
 
189
- #: admin/class-quick-featured-images-tools.php:554
190
  msgid "Remove the selected image as featured image"
191
  msgstr "أزل الصورة المحددة كصورة بارزة"
192
 
193
- #: admin/class-quick-featured-images-tools.php:557
194
  msgid "Remove any image as featured image"
195
  msgstr "أزل أي صورة كصورة بارزة"
196
 
197
- #: admin/class-quick-featured-images-tools.php:560
 
 
 
 
198
  msgid "Set multiple images randomly as featured images"
199
  msgstr "استخدم صور متعددة عشوائياً كصور بارزة"
200
 
201
- #: admin/class-quick-featured-images-tools.php:564
202
  msgid "Overwrite featured images"
203
  msgstr "استبدل الصور البارزة"
204
 
205
- #: admin/class-quick-featured-images-tools.php:565
206
  msgid "Consider only posts without any featured image"
207
  msgstr "فقط المقالات التي بدون صور بارزة"
208
 
209
- #: admin/class-quick-featured-images-tools.php:569
210
  msgid "Post Type Filter"
211
  msgstr "فلتر نوع المقالة"
212
 
213
- #: admin/class-quick-featured-images-tools.php:570
214
  msgid "Category Filter"
215
  msgstr "فلتر التصنيف"
216
 
217
- #: admin/class-quick-featured-images-tools.php:571
218
  msgid "Tag Filter"
219
  msgstr "فلتر الوسوم"
220
 
221
- #: admin/class-quick-featured-images-tools.php:600
222
  msgid "Image width in pixels lower than"
223
  msgstr "عرض الصورة بالبكسل أقل من"
224
 
225
- #: admin/class-quick-featured-images-tools.php:601
226
  msgid "Image height in pixels lower than"
227
  msgstr "ارتفاع الصورة بالبكسل أقل من"
228
 
229
- #: admin/class-quick-featured-images-tools.php:710
230
  #, php-format
231
  msgid "The input field %s is empty."
232
  msgstr "حقل الإدخال %s فارغ"
233
 
234
- #: admin/class-quick-featured-images-tools.php:711
235
  msgid "Type in a value into the input field."
236
  msgstr "اكتب قيمة في حقل الإدخال"
237
 
238
- #: admin/class-quick-featured-images-tools.php:714
239
  #, php-format
240
  msgid "%s is not defined."
241
  msgstr "%s غير معرّف"
242
 
243
- #: admin/class-quick-featured-images-tools.php:715
244
  msgid "Check how to define the value."
245
  msgstr "تحقق من كيفية تحديد القيمة."
246
 
247
- #: admin/class-quick-featured-images-tools.php:718
248
  msgid "There is no selected image."
249
  msgstr "لا يوجد صورة محددة."
250
 
251
- #: admin/class-quick-featured-images-tools.php:719
252
  msgid "Select an image from the media library."
253
  msgstr "حدد صورة من مكتبة الوسائط."
254
 
255
- #: admin/class-quick-featured-images-tools.php:722
256
  #: admin/views/section_image.php:51
257
  msgid "You have not selected an action."
258
  msgstr "لم تقم بتحديد إجراء."
259
 
260
- #: admin/class-quick-featured-images-tools.php:723
261
  msgid "Start again and select which action you want to apply."
262
  msgstr "ابدأ مرة أخرى وحدد أي إجراء تريد تنفيذه."
263
 
264
- #: admin/class-quick-featured-images-tools.php:726
265
  #, php-format
266
  msgid "The input field %s has an invalid value."
267
  msgstr "حقل الإدخال %s به قيمة خاطئة."
268
 
269
- #: admin/class-quick-featured-images-tools.php:727
270
  msgid "Type in valid values in the input field."
271
  msgstr "أدخل قيم صالحة في حقل الإدخال."
272
 
273
- #: admin/class-quick-featured-images-tools.php:731
274
  msgid "Type in values stored by WordPress."
275
  msgstr "أدخل قيم مخزنة بواسطة ووردبريس."
276
 
277
- #: admin/class-quick-featured-images-tools.php:1846
278
  msgid "Set, replace, remove"
279
  msgstr "حدد، استبدل، احذف"
280
 
281
- #: admin/class-quick-featured-images-tools.php:1857
282
  msgid "Bulk set, replace and remove featured images for existing posts"
283
  msgstr "لمجموعة دفعة واحدة، حدد واستبدل واحذف الصور البارزة لمقالات موجودة"
284
 
285
- #: admin/class-quick-featured-images-tools.php:1966
286
  msgid "Bulk set as featured image"
287
  msgstr "حدد كصورة بارزة لمجموعة دفعة واحدة"
288
 
@@ -320,71 +325,77 @@ msgstr "إذا أردت تغيير اختيارك السابق فقط ارجع
320
  msgid "Modify selection"
321
  msgstr "تعديل الاختيار"
322
 
323
- #: admin/views/form_confirm.php:4
324
- msgid "Should the selected image be set as featured image to all listed posts?"
325
- msgstr "هل يجب أن تستخدم الصورة المحددة كصورة بارزة لكل المقالات المدرجة؟"
326
-
327
- #: admin/views/form_confirm.php:7
328
- msgid ""
329
- "Should the selected images be set randomly as featured images to all listed "
330
- "posts?"
331
- msgstr ""
332
- "هل يجب أن تستخدم الصور المحددة عشوائياً كصور بارزة لكل المقالات المدرجة؟"
333
-
334
- #: admin/views/form_confirm.php:10
335
- msgid ""
336
- "Should the current set featured image be replaced by the selected image at "
337
- "all listed posts?"
338
- msgstr ""
339
- "هل يجب استبدال الصورة البارزة الحالية بالصورة المحددة لكل المقالات المدرجة؟"
340
-
341
- #: admin/views/form_confirm.php:13
342
- msgid "Should the selected image be removed from all listed posts?"
343
- msgstr "هل يجب إزالة الصورة المحددة من كل المقالات المدرجة؟"
344
-
345
- #: admin/views/form_confirm.php:16
346
- msgid "Should the future images be set as featured images at all listed posts?"
347
- msgstr "هل يجب استخدام الصور المستقبلية كصور بارزة لكل المقالات المدرجة؟"
348
-
349
- #: admin/views/form_confirm.php:19
350
- msgid "Should the added featured images be removed from all listed posts?"
351
- msgstr "هل يجب إزالة الصور البارزة المضافة من كل المقالات المدرجة؟"
352
-
353
- #: admin/views/form_confirm.php:24
354
  msgid "Preview of your selection"
355
  msgstr "معاينة على اختيارك"
356
 
357
- #: admin/views/form_confirm.php:25
358
  #, php-format
359
  msgid "%d matches found"
360
  msgstr "%d نتيجة مطابقة وجدت"
361
 
362
- #: admin/views/form_confirm.php:29 admin/views/section_results.php:5
 
 
 
 
 
 
363
  msgid "Details"
364
  msgstr "تفاصيل"
365
 
366
- #: admin/views/form_confirm.php:30 admin/views/section_defaults.php:17
367
- #: admin/views/section_results.php:7
368
  msgid "No."
369
  msgstr "رقم"
370
 
371
- #: admin/views/form_confirm.php:31 admin/views/section_results.php:6
372
  msgid "Current Featured Image"
373
  msgstr "الصورة البارزة الحالية"
374
 
375
- #: admin/views/form_confirm.php:32
376
  msgid "Future Featured Image"
377
  msgstr "الصورة البارزة المستقبلية"
378
 
379
- #: admin/views/form_confirm.php:33
380
  msgid "written on"
381
  msgstr "كتبت على"
382
 
383
- #: admin/views/form_confirm.php:34
384
  msgid "by"
385
  msgstr "بواسطة"
386
 
387
- #: admin/views/form_confirm.php:48 admin/views/section_results.php:16
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
388
  msgid ""
389
  "The list is in alphabetical order according to post title. You can edit a "
390
  "post in a new window by clicking on its link in the list."
@@ -392,20 +403,20 @@ msgstr ""
392
  "القائمة مرتبة أبجدياً وفقاً لعنوان المقالة. بإمكانك تعديل مقالة في نافذة جديدة "
393
  "بالضغط على رابطها في القائمة."
394
 
395
- #: admin/views/form_confirm.php:111
396
  msgid "Confirm the change"
397
  msgstr "تأكيد التغيير"
398
 
399
- #: admin/views/form_confirm.php:112
400
  msgid "You can not undo the operation!"
401
  msgstr "لا يمكنك التراجع عن الإجراء !"
402
 
403
- #: admin/views/form_confirm.php:173 admin/views/section_errormsg.php:8
404
- #: admin/views/section_results.php:74
405
  msgid "Start again"
406
  msgstr "ابدأ مرة أخرى"
407
 
408
- #: admin/views/form_confirm.php:173
409
  msgid "or refine your selection with the following form fields."
410
  msgstr "أو قم بتنقيح اختيارك بواسطة حقول النموذج التالي."
411
 
@@ -520,14 +531,14 @@ msgid "Remove excess featured images after all selected images are used"
520
  msgstr "أزل الصور البارزة الفائضة بعد استخدام جميع الصور المحددة"
521
 
522
  #: admin/views/form_select.php:77 admin/views/form_select.php:115
523
- #: admin/views/form_select.php:137 admin/views/form_start.php:113
524
  #: admin/views/section_defaults.php:492 admin/views/section_footer.php:59
525
  #: admin/views/section_overview.php:91
526
  msgid "Get the premium version"
527
  msgstr "أحصل على النسخة المدفوعة"
528
 
529
  #: admin/views/form_select.php:77 admin/views/form_select.php:115
530
- #: admin/views/form_select.php:137 admin/views/form_start.php:113
531
  #: admin/views/section_defaults.php:492 admin/views/section_footer.php:59
532
  #: admin/views/section_overview.php:90 admin/views/section_overview.php:91
533
  msgid "/"
@@ -571,18 +582,10 @@ msgid "Are you looking for more options and more filters?"
571
  msgstr "هل تبحث عن المزيد من الخيارات والفلاتر؟"
572
 
573
  #: admin/views/form_select.php:116
574
- msgid ""
575
- "On the next page you can refine the filters. If you did not select any "
576
- "filter you will go to the preview list directly."
577
- msgstr ""
578
- "في الصفحة التالية بإمكان تنقيح الفلاتر. إذا لم تحدد أي فلتر ستذهب إلى قائمة "
579
- "المعاينة مباشرة."
580
-
581
- #: admin/views/form_select.php:134
582
  msgid "If you encounter a white, blank page, read this"
583
  msgstr "إذا واجهت صفحة بيضاء أو فارغة، اقرأ هذا"
584
 
585
- #: admin/views/form_select.php:135
586
  msgid ""
587
  "Facing a white blank page while trying to treat thousands of posts is the "
588
  "effect of limited memory capacities on the website server. Instead of "
@@ -594,23 +597,23 @@ msgstr ""
594
  "واحدة حاول معالجة كميات قليلة من المقالات لمرات متعددة بنجاح. لتحقيق ذلك "
595
  "افعل التالي:"
596
 
597
- #: admin/views/form_select.php:138
598
  msgid "add the time filter,"
599
  msgstr "أضف فلتر للوقت،"
600
 
601
- #: admin/views/form_select.php:139
602
  msgid "set a small time range,"
603
  msgstr "حدد فترة زمنية صغيرة،"
604
 
605
- #: admin/views/form_select.php:140
606
  msgid "do the process"
607
  msgstr "قم بالعملية"
608
 
609
- #: admin/views/form_select.php:141
610
  msgid "and repeat it with the next time range as often as needed."
611
  msgstr "وكررها حسب الحاجة مع الفترات الزمنية التالية."
612
 
613
- #: admin/views/form_select.php:143
614
  msgid ""
615
  "This way is not as fast as one single run, but still much faster than "
616
  "setting the images for each post manually."
@@ -618,6 +621,14 @@ msgstr ""
618
  "هذه الطريقة ليست سريعة كما لو قمت بها دفعة واحدة، لكنها أسرع من إعداد الصور "
619
  "يدوياً لكل مقالة."
620
 
 
 
 
 
 
 
 
 
621
  #: admin/views/form_start.php:6 admin/views/section_defaults.php:215
622
  msgid ""
623
  "The current theme does not support featured images. Anyway you can use this "
@@ -917,11 +928,11 @@ msgstr "الحلّ"
917
  msgid "Credits and informations"
918
  msgstr "المؤلفون والمعلومات"
919
 
920
- #: admin/views/section_footer.php:54 admin/views/section_results.php:75
921
  msgid "Do you like the plugin?"
922
  msgstr "هل أعجبتك هذه الإضافة؟"
923
 
924
- #: admin/views/section_footer.php:54 admin/views/section_results.php:76
925
  msgid "Please rate it at wordpress.org!"
926
  msgstr "رجاءً قم بتقييمها في wordpress.org!"
927
 
@@ -1033,547 +1044,14 @@ msgstr "النسخة المدفوعة"
1033
  msgid "Results of the action"
1034
  msgstr "نتائج الإجراء"
1035
 
1036
- #: admin/views/section_results.php:8
1037
  msgid "Changed successfully"
1038
  msgstr "تمّ التغيير بنجاح"
1039
 
1040
- #: admin/views/section_results.php:9
1041
  msgid "Unchanged"
1042
  msgstr "لم يتمّ التغيير"
1043
 
1044
- #: admin/views/section_results.php:70
1045
  msgid "No matches found."
1046
  msgstr "لم يعثر على نتائج متوافقة."
1047
-
1048
- #~ msgid "There are no featured images in use."
1049
- #~ msgstr "لا يوجد صور بارزة مستخدمة."
1050
-
1051
- #~ msgid "Image Columns"
1052
- #~ msgstr "أعمدة صور"
1053
-
1054
- #~ msgid ""
1055
- #~ "There is a new version of %1$s available. <a target=\"_blank\" class="
1056
- #~ "\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
1057
- #~ msgstr ""
1058
- #~ "هناك نسخة جديدة من %1$s متوفّرة. <a target=\"_blank\" class=\"thickbox\" "
1059
- #~ "href=\"%2$s\">اعرض تفاصيل النسخة %3$s</a>."
1060
-
1061
- #~ msgid ""
1062
- #~ "There is a new version of %1$s available. <a target=\"_blank\" class="
1063
- #~ "\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s"
1064
- #~ "\">update now</a>."
1065
- #~ msgstr ""
1066
- #~ "هناك نسخة جديدة من %1$s متوفّرة. <a target=\"_blank\" class=\"thickbox\" "
1067
- #~ "href=\"%2$s\">اعرض تفاصيل النسخة %3$s</a> أو <a href=\"%4$s\">قم بالتحديث "
1068
- #~ "الآن</a>."
1069
-
1070
- #~ msgid "You do not have permission to install plugin updates"
1071
- #~ msgstr "أنت لا تمتلك الصلاحيات لتثبيت تحديثات الإضافة"
1072
-
1073
- #~ msgid "The license is valid and active."
1074
- #~ msgstr "الرخصة سارية ومفعّلة."
1075
-
1076
- #~ msgid "The license is expired."
1077
- #~ msgstr "الرخصة منتهية."
1078
-
1079
- #~ msgid "The license key does not match."
1080
- #~ msgstr "مفتاح الرخصة غير متطابق."
1081
-
1082
- #~ msgid "The license is not activated."
1083
- #~ msgstr "لم يتمّ تفعيل الرخصة."
1084
-
1085
- #~ msgid "The license is disabled."
1086
- #~ msgstr "الرخصة معطّلة."
1087
-
1088
- #~ msgid "The license is inactive."
1089
- #~ msgstr "الرخصة غير مفعّلة."
1090
-
1091
- #~ msgid "The status of the license is unknown."
1092
- #~ msgstr "حالة الرخصة غير معروفة."
1093
-
1094
- #~ msgid "License Activation"
1095
- #~ msgstr "تفعيل الرخصة"
1096
-
1097
- #~ msgid "Enter the license key to get automatic upgrades of the plugin."
1098
- #~ msgstr "أدخل مفتاح الرخصة لتحصل على تحديثات آلياً للإضافة."
1099
-
1100
- #~ msgid "Set the first image as featured image"
1101
- #~ msgstr "استخدم الصورة الأولى كصورة بارزة"
1102
-
1103
- #~ msgid "Take the first post image if available in the media library"
1104
- #~ msgstr "خذ الصورة الأولى في المقالة إذا كانت موجودة في مكتبة الوسائط"
1105
-
1106
- #~ msgid ""
1107
- #~ "Take the first post image from current site domain, copy and add it to "
1108
- #~ "the media library if not available there"
1109
- #~ msgstr ""
1110
- #~ "خذ الصورة الأولى في المقالة الموجودة على نفس نطاق الموقع الحالي، ثم "
1111
- #~ "انسخها وأضفها لمكتبة الوسائط إذا لم تكن موجودة هناك"
1112
-
1113
- #~ msgid ""
1114
- #~ "Take the first external post image, download it and add it to the media "
1115
- #~ "library"
1116
- #~ msgstr ""
1117
- #~ "خذ صورة المقالة الخارجية الأولى، ثم قم بتحميلها وأضفها إلى مكتبة الوسائط"
1118
-
1119
- #~ msgid "Take the first image of a WordPress standard gallery"
1120
- #~ msgstr "خذ أول صورة في قائمة صور ووردبريس الأساسية"
1121
-
1122
- #~ msgid "Take the first image of a NextGen Gallery"
1123
- #~ msgstr "خذ الصورة الأولى من قائمة صور NextGen Gallery"
1124
-
1125
- #~ msgid "Remove first embedded image"
1126
- #~ msgstr "أزل أول صورة مضمّنة"
1127
-
1128
- #~ msgid "Remove excess featured images"
1129
- #~ msgstr "أزل الصور البارزة الزائدة"
1130
-
1131
- #~ msgid "Forced removal"
1132
- #~ msgstr "إزالة قسرية"
1133
-
1134
- #~ msgid "Post Format Filter"
1135
- #~ msgstr "فلتر بنية المقالة"
1136
-
1137
- #~ msgid "Multimedia File Filter"
1138
- #~ msgstr "فلتر الوسائط المتعددة"
1139
-
1140
- #~ msgid "Status Filter"
1141
- #~ msgstr "فلتر الحالة"
1142
-
1143
- #~ msgid "Search Filter"
1144
- #~ msgstr "فلتر البحث"
1145
-
1146
- #~ msgid "Time Filter"
1147
- #~ msgstr "فلتر الوقت"
1148
-
1149
- #~ msgid "Author Filter"
1150
- #~ msgstr "فلتر الكاتب"
1151
-
1152
- #~ msgid "Custom Taxonomy Filter"
1153
- #~ msgstr "فلتر الفئات المخصّصة"
1154
-
1155
- #~ msgid "Featured Image Size Filter"
1156
- #~ msgstr "فلتر حجم الصورة البارزة"
1157
-
1158
- #~ msgid "Parent Page Filter"
1159
- #~ msgstr "فلتر الصفحة الأب"
1160
-
1161
- #~ msgid "Audio files"
1162
- #~ msgstr "ملفات صوت"
1163
-
1164
- #~ msgid "Video files"
1165
- #~ msgstr "ملفات فيديو"
1166
-
1167
- #~ msgid "Start Date"
1168
- #~ msgstr "تاريخ البداية"
1169
-
1170
- #~ msgid "End Date"
1171
- #~ msgstr "تاريخ النهاية"
1172
-
1173
- #~ msgid "Include the posts of the selected dates"
1174
- #~ msgstr "تضمين مقالات التواريخ المحددة"
1175
-
1176
- #~ msgid "Custom field name"
1177
- #~ msgstr "اسم الحقل المخصص"
1178
-
1179
- #~ msgid "Operator to test with the value in the custom field"
1180
- #~ msgstr "مشغل لاختبار مع القيمة في الحقل المخصص"
1181
-
1182
- #~ msgid "Custom field value to compare with"
1183
- #~ msgstr "قيمة الحقل المخصص للمقارنة مع"
1184
-
1185
- #~ msgid "Custom field type"
1186
- #~ msgstr "نوع الحقل المخصص"
1187
-
1188
- #~ msgid "Search in post titles only"
1189
- #~ msgstr "ابحث في عناوين المقالات فقط"
1190
-
1191
- #~ msgid "Select an author"
1192
- #~ msgstr "اختر كاتب"
1193
-
1194
- #~ msgid "is equal"
1195
- #~ msgstr "مساوي"
1196
-
1197
- #~ msgid "is not equal"
1198
- #~ msgstr "غير مساوي"
1199
-
1200
- #~ msgid "is greater than"
1201
- #~ msgstr "أكبر من"
1202
-
1203
- #~ msgid "is lower than"
1204
- #~ msgstr "أقلّ من"
1205
-
1206
- #~ msgid "contains"
1207
- #~ msgstr "يحتوي"
1208
-
1209
- #~ msgid "Select the custom field to find the associated posts/pages."
1210
- #~ msgstr "حدد الحقول المخصصة لإيجاد المقالات\\الصفحات المرتبطة."
1211
-
1212
- #~ msgid ""
1213
- #~ "Optional: Type in the value which will be compared with the value of the "
1214
- #~ "selected custom field."
1215
- #~ msgstr "اختياري: اكتب القيمة التي سيتم مقارنتها بقيمة الحقل المخصص."
1216
-
1217
- #~ msgid ""
1218
- #~ "Leave it empty if you just want to test the existence of the custom field "
1219
- #~ "per post/page."
1220
- #~ msgstr "اتركها فارغة إذا أردت فحص وجود الحقل المخصص لكل مقالة\\صفحة."
1221
-
1222
- #~ msgid ""
1223
- #~ "Optional: Change the operator of the comparison. The default is to "
1224
- #~ "compare equality with the value you type in the 'value' field."
1225
- #~ msgstr ""
1226
- #~ "اختياري: غيّر عامل المقارنة. افتراضياً سيتم مقارنة مساواة القيمة التي "
1227
- #~ "أدخلتها في حقل \"القيمة\""
1228
-
1229
- #~ msgid "There are no custom fields in use."
1230
- #~ msgstr "لا يوجد حقول مخصصة مستخدمة."
1231
-
1232
- #~ msgid "Registered terms of the taxonomy <strong>%s</strong>"
1233
- #~ msgstr "المفردات المسجلة للفئة <strong>%s</strong>"
1234
-
1235
- #~ msgid "There are no terms of the taxonomy <strong>%s</strong>."
1236
- #~ msgstr "لا يوجد مفردات للفئة <strong>%s</strong>."
1237
-
1238
- #~ msgid "Strange search result with custom taxonomies?"
1239
- #~ msgstr "نتائج بحث غريبة مع التصنيفات المخصصة؟"
1240
-
1241
- #~ msgid ""
1242
- #~ "The search for custom taxonomy terms could lead to surprising results. "
1243
- #~ "The reason is custom taxonomies can be used in many different ways. It is "
1244
- #~ "not possible to catch them all in one single code expression. If you "
1245
- #~ "should be unsatisfied with the result try other filters to get the result "
1246
- #~ "you want."
1247
- #~ msgstr ""
1248
- #~ "البحث عن مفردات فئة مخصصة ربما يقود إلى نتائج مفاجئة. السبب أن الفئات "
1249
- #~ "المخصصة يمكن أن تستخدم بطرق متعددة. من غير الممكن إحصائها في كود واحد. "
1250
- #~ "إذا كنت غير راضٍ عن النتائج قم بتجربة فلاتر أخرى لتحصل على النتيجة التي "
1251
- #~ "تريدها."
1252
-
1253
- #~ msgid "There are no custom taxonomies."
1254
- #~ msgstr "لا يوجد تصنيفات مخصصة."
1255
-
1256
- #~ msgid ""
1257
- #~ "The search will find posts with an already added featured image which its "
1258
- #~ "original image file is smaller than one of the given dimensions."
1259
- #~ msgstr ""
1260
- #~ "عملية البحث ستعثر على مقالات مضاف لها صور بارزة مسبقاً والتي ملف صورتها "
1261
- #~ "أصغر من الأبعاد المحددة."
1262
-
1263
- #~ msgid "For example you can search for posts with too small featured images."
1264
- #~ msgstr "على سبيل المثال يمكنك أن تبحث عن مقالات بصور بارزة صغيرة للغاية."
1265
-
1266
- #~ msgid ""
1267
- #~ "Only positive integers from %d to %d are allowed. By default the "
1268
- #~ "thumbnail dimensions as defined in %s are used."
1269
- #~ msgstr ""
1270
- #~ "فقط الأرقام الموجبة من %d إلى %d مسموح بها. افتراضياً أبعاد الصورة المصغرة "
1271
- #~ "كما هو محدد في %s هو المستخدم."
1272
-
1273
- #~ msgid "Select multimedia file types"
1274
- #~ msgstr "حدد أنواع ملف الوسائط المتعددة."
1275
-
1276
- #~ msgid ""
1277
- #~ "You can select two multimedia files types: audios and videos. If you "
1278
- #~ "check at least one of both all other post types (posts, pages, etc.) will "
1279
- #~ "be ignored."
1280
- #~ msgstr ""
1281
- #~ "بإمكانك تحديد نوعين لملفات الوسائط المتعددة. إذا حددت على الأقل واحد من "
1282
- #~ "كل أنواع المقالات الأخرى (مقالات، صفحات، إلخ) سيتم تجاهله."
1283
-
1284
- #~ msgid "Select a parent page"
1285
- #~ msgstr "حدد الصفحة الأب."
1286
-
1287
- #~ msgid "There are no pages with child pages."
1288
- #~ msgstr "لا يوجد صفحات لديها صفحات أبناء."
1289
-
1290
- #~ msgid "You can select posts, pages and available custom posts types."
1291
- #~ msgstr "بإمكانك اختيار مقالات أو صفحات أو أنواع مقالات مخصصة متوفرة."
1292
-
1293
- #~ msgid "There are no custom post types."
1294
- #~ msgstr "لا يوجد أنواع مقالات مخصصة."
1295
-
1296
- #~ msgid ""
1297
- #~ "If you want to search for an exact phrase surround it with double quotes."
1298
- #~ msgstr "إذا أردت البحث عن مفردات محددة قم بوضعها داخل علامات اقتباس مزدوجة."
1299
-
1300
- #~ msgid "Type in a search term"
1301
- #~ msgstr "أدخل مفردات البحث"
1302
-
1303
- #~ msgid "Select the statuses of the posts/pages:"
1304
- #~ msgstr "حدد حالة المقالات\\الصفحات:"
1305
-
1306
- #~ msgid "Date range"
1307
- #~ msgstr "النطاق الزمني"
1308
-
1309
- #~ msgid ""
1310
- #~ "To define a time segment select both the start date and the end date."
1311
- #~ msgstr "لتحديد شريحة الوقت قم باختيار تاريخ البداية وتاريخ النهاية."
1312
-
1313
- #~ msgid ""
1314
- #~ "You can also define a time period by selecting only one date as the "
1315
- #~ "limiting value of the period."
1316
- #~ msgstr "بإمكانك تحديد الفترة الزمنية باختيار تاريخ واحد كحدّ للفترة."
1317
-
1318
- #~ msgid "The listed dates are the date of the publication of stored posts."
1319
- #~ msgstr "التواريخ المدرجة هي تاريخ النشر للمقالات المخزنة."
1320
-
1321
- #~ msgid "What sort of first image?"
1322
- #~ msgstr "أي نوع من الصورة الأولى؟"
1323
-
1324
- #~ msgid ""
1325
- #~ "Remove the first embedded image from the post content after this image "
1326
- #~ "was set as featured image. This does not affect galleries or attached "
1327
- #~ "images. <strong>There is no undo function. Be careful with this option "
1328
- #~ "and please create a backup of the database of this website before you use "
1329
- #~ "this!</strong>"
1330
- #~ msgstr ""
1331
- #~ "أزل أو صورة مضمنة من محتوى المقالة بعد تحديد هذه الصورة كصورة بارزة. هذا "
1332
- #~ "لا يؤثر على القوائم أو الصور المرفقة. <strong>لا يوجد خيار للتراجع. كن "
1333
- #~ "حذراً مع هذا الخيار ورجاءً خذ نسخة احتياطية من قاعدة البيانات لهذا الموقع "
1334
- #~ "قبل استخدام هذا الإجراء!</strong>"
1335
-
1336
- #~ msgid ""
1337
- #~ "Remove first content image even if the featured image was not changed "
1338
- #~ "successfully. Works only if 'Remove first embedded image' is activated."
1339
- #~ msgstr ""
1340
- #~ "أزل صورة المحتوى الأولى حتى إذا لم يتم تغيير الصورة البارزة بنجاح. الخيار "
1341
- #~ "يعمل فقط إذا تم تفعيل خيار إزالة أول صورة مضمنة."
1342
-
1343
- #~ msgid ""
1344
- #~ "By default the selected images will be used multiple times in random "
1345
- #~ "order. If you check this option each selected image will be used only "
1346
- #~ "once. If there are more posts than images the remaining posts will not be "
1347
- #~ "changed. If you want to remove the featured images of remaining posts "
1348
- #~ "check the next option additionally."
1349
- #~ msgstr ""
1350
- #~ "بشكل افتراضي يتم استخدام الصور المحددة عدة مرات عشوائياً. إذا فعّلت هذا "
1351
- #~ "الخيار سيتم استخدام كل صورة مرة واحدة فقط. إذا كان هناك مقالات أكثر من "
1352
- #~ "الصور فلن يتم التعديل على المقالات الباقية. إذا أردت إزالة الصور البارزة "
1353
- #~ "من المقالات الباقية فعّل الخيار التالي أيضاً."
1354
-
1355
- #~ msgid ""
1356
- #~ "Remove existing featured images of remaining posts if all selected images "
1357
- #~ "are used. This option works only with the previous option."
1358
- #~ msgstr ""
1359
- #~ "أزل الصور البارزة الحالية من المقالات الباقية إذا تم استخدام جميع الصور. "
1360
- #~ "هذا الخيار يعمل فقط مع الخيار السابق."
1361
-
1362
- #~ msgid "Some advices from experience"
1363
- #~ msgstr "بعض النصائح من التجربة"
1364
-
1365
- #~ msgid ""
1366
- #~ "Looking for external images can take a long time. Please be patient for "
1367
- #~ "at least one minute and do not reload the page! If you would see a "
1368
- #~ "timeout message please start again with a filter that limits the number "
1369
- #~ "of posts."
1370
- #~ msgstr ""
1371
- #~ "البحث عن صور خارجية يمكن أن يستغرق وقتاً طويلاً. رجاءً كن صبوراً لدقيقة واحدة "
1372
- #~ "على الأقل ولا تقم بتحديث الصفحة ! إذا شاهدت رسالة انتهاء المهلة رجاءً ابدأ "
1373
- #~ "مرة أخرى بفلتر يضع حداً لعدد المقالات."
1374
-
1375
- #~ msgid ""
1376
- #~ "If you would be unsatisfied with the next results of the search for first "
1377
- #~ "embedded images try the option for external images. Maybe that result "
1378
- #~ "could meet your expectations better."
1379
- #~ msgstr ""
1380
- #~ "إذا لم تكن راضٍ عن النتائج البحث التالية عن أول الصور المضمّنة، جرّب خيار "
1381
- #~ "الصور الخارجية. ربما هذه النتيجة ستحقق توقعاتك أفضل."
1382
-
1383
- #~ msgid ""
1384
- #~ "Search by post format. By default the standard post format is affected."
1385
- #~ msgstr "البحث بواسطة بنية المقالة. افتراضياً البنية القياسية ستتأثر."
1386
-
1387
- #~ msgid ""
1388
- #~ "Search for audios and videos. This filter will ignore all other post "
1389
- #~ "types automatically."
1390
- #~ msgstr ""
1391
- #~ "البحث عن الأصوات ومقاطع الفيديو. هذا الفلتر سيتجاهل كل أنواع المقالات "
1392
- #~ "الأخرى تلقائياً."
1393
-
1394
- #~ msgid ""
1395
- #~ "Search by several statuses (published, draft, private etc.). By default "
1396
- #~ "all statuses will be affected."
1397
- #~ msgstr ""
1398
- #~ "البحث بواسطة حالات مختلفة (منشور، مسودة، خاص، إلخ). افتراضياً كل الحالات "
1399
- #~ "ستتأثر."
1400
-
1401
- #~ msgid "Search by search term"
1402
- #~ msgstr "البحث بواسطة كلمات البحث"
1403
-
1404
- #~ msgid "Search by time specifications"
1405
- #~ msgstr "البحث بواسطة مواصفات الوقت"
1406
-
1407
- #~ msgid "Search by author"
1408
- #~ msgstr "البحث بواسطة الكاتب"
1409
-
1410
- #~ msgid "Search by other taxonomies like plugin categories etc."
1411
- #~ msgstr "البحث بواسطة تصنيفات أخرى مثل إضافات أو تصنيفات المقالات، إلخ."
1412
-
1413
- #~ msgid "Search by original dimensions of added featured image"
1414
- #~ msgstr "البحث بواسطة الأبعاد الأساسية للصورة البارزة المضافة"
1415
-
1416
- #~ msgid "Search child pages by parent page"
1417
- #~ msgstr "البحث في الصفحات الإبن بواسطة الصفحة الأب"
1418
-
1419
- #~ msgid ""
1420
- #~ "The plugin will try to find the first image embedded in the content, in a "
1421
- #~ "WordPress standard gallery or attached to a post."
1422
- #~ msgstr ""
1423
- #~ "هذه الإضافة ستحاول إيجاد أول صورة مضمّنة في المحتوى أو في قائمة صور "
1424
- #~ "ووردبريس الأساسية أو المرفقة مع المقالة."
1425
-
1426
- #~ msgid "It will also search in NextGen galleries."
1427
- #~ msgstr "ستقوم أيضاً بالبحث في قوائم صور الإضافة NextGen galleries."
1428
-
1429
- #~ msgid "Search string"
1430
- #~ msgstr "ابحث عن نصّ"
1431
-
1432
- #~ msgid "works only if '%s' is set to '%s'"
1433
- #~ msgstr "يعمل فقط إذا '%s' تمّ تعيينه إلى '%s'"
1434
-
1435
- #~ msgid ""
1436
- #~ "The current theme does not support featured images. Anyway you can use "
1437
- #~ "this plugin. The rules are stored and will be visible in a theme which "
1438
- #~ "supports featured images."
1439
- #~ msgstr ""
1440
- #~ "قالب الموقع الحالي لا يدعم الصور البارزة. على كل حال بإمكانك استخدام هذه "
1441
- #~ "الإضافة. القواعد ستخزّن وستكون ظاهرة عند استخدام قالب يدعم الصور البارزة."
1442
-
1443
- #~ msgid ""
1444
- #~ "The current theme does not support post formats. Anyway you can use this "
1445
- #~ "plugin. The rules are stored and will be visible in a theme which "
1446
- #~ "supports post formats."
1447
- #~ msgstr ""
1448
- #~ "قالب الموقع الحالي لا يدعم بنية المقالات. على كل حال بإمكانك استخدام هذه "
1449
- #~ "الإضافة. القواعد ستخزّن وستكون ظاهرة عند استخدام قالب يدعم بنية المقالات."
1450
-
1451
- #~ msgid ""
1452
- #~ "Activate to automatically use the first attached image if no content "
1453
- #~ "image was found"
1454
- #~ msgstr ""
1455
- #~ "تفعيل هذا الخيار لاستخدام أول صورة مرفقة إذا لم يكن هناك صورة مضمّنة في "
1456
- #~ "محتوى المقالة."
1457
-
1458
- #~ msgid "matched search string in post title. If not then..."
1459
- #~ msgstr "توافق نصّ البحث مع عنوان المقالة. إذا لم يتحقق ذلك فسيتم..."
1460
-
1461
- #~ msgid "matched post format. If not then..."
1462
- #~ msgstr "توافق بنية المقالة. إذا لم يتحقق ذلك فسيتم..."
1463
-
1464
- #~ msgid "/reviews/"
1465
- #~ msgstr "/تقييمات/"
1466
-
1467
- #~ msgid "Your selected approach"
1468
- #~ msgstr "النمط الذي اخترته"
1469
-
1470
- #~ msgid "License Settings"
1471
- #~ msgstr "خيارات الرخصة"
1472
-
1473
- #~ msgid "License Key"
1474
- #~ msgstr "مفتاح الرخصة"
1475
-
1476
- #~ msgid "Enter your license key. Then click on the button."
1477
- #~ msgstr "أدخل مفتاح رخصتك. ثم اضغط على الزرّ."
1478
-
1479
- #~ msgid "Licence Status"
1480
- #~ msgstr "حالة الرخصة"
1481
-
1482
- #~ msgid "The license will expire on %1$s at %2$s."
1483
- #~ msgstr "الرخصة ستنتهي في %1$s في %2$s."
1484
-
1485
- #~ msgid "There are %d activations left"
1486
- #~ msgstr "هناك %d تفعيلات باقية"
1487
-
1488
- #~ msgid "Deactivate License"
1489
- #~ msgstr "إلغاء تفعيل الرخصة"
1490
-
1491
- #~ msgid ""
1492
- #~ "Click to deactivate the license if you do not want to use it on this "
1493
- #~ "server."
1494
- #~ msgstr "اضغط لإلغاء تفعيل الرخصة إذا لم تشأ استخدامها على هذا الخادم."
1495
-
1496
- #~ msgid "The license expired on %1$s at %2$s."
1497
- #~ msgstr "الرخصة انتهت في %1$s في %2$s."
1498
-
1499
- #~ msgid "Click here for a new license"
1500
- #~ msgstr "اضغط هنا لرخصة جديدة"
1501
-
1502
- #~ msgid "Activate License"
1503
- #~ msgstr "تفعيل الرخصة"
1504
-
1505
- #~ msgid ""
1506
- #~ "Click to activate the license after you have entered your license key."
1507
- #~ msgstr "اضغط لتفعيل الرخصة بعد إدخالك لمفتاح الرخصة."
1508
-
1509
- #~ msgid "Important advices about the license"
1510
- #~ msgstr "نصائح مهمة حول الرخصة"
1511
-
1512
- #~ msgid "Why a license?"
1513
- #~ msgstr "لماذا الرخصة؟"
1514
-
1515
- #~ msgid ""
1516
- #~ "With activating the license you will receive automatic upgrades of the "
1517
- #~ "plugin for 365 days since the day of the purchase. Each license key is "
1518
- #~ "valid for one installation of the plugin only."
1519
- #~ msgstr ""
1520
- #~ "بتفعيل الرخصة ستحصل على ترقيات آلية للإضافة لمدة 365 يوماً منذ يوم الشراء. "
1521
- #~ "كل مفتاح رخصة فعّال لتثبيت واحد للإضافة."
1522
-
1523
- #~ msgid "Terms of the license"
1524
- #~ msgstr "شروط الرخصة"
1525
-
1526
- #~ msgid ""
1527
- #~ "By activating this license you are also confirming your agreement to be "
1528
- #~ "bound by the terms of the license associated with this plugin which you "
1529
- #~ "acknowledged at the time of the purchase checkout."
1530
- #~ msgstr ""
1531
- #~ "بتفعيل هذه الرخصة أنت أيضاً تؤكد موافقتك موافقتك على الالتزام بشروط "
1532
- #~ "الترخيص المرتبطة بهذه الإضافة التي تمّ إعلامك بها وقت عملية الشراء."
1533
-
1534
- #~ msgid "http://www.quickfeaturedimages.com/terms-licence-withdrawal/"
1535
- #~ msgstr "http://www.quickfeaturedimages.com/terms-licence-withdrawal/"
1536
-
1537
- #~ msgid "Read the terms of the license (in new window)"
1538
- #~ msgstr "اقرأ شروط الترخيص (في هذه النافذة)"
1539
-
1540
- #~ msgid ""
1541
- #~ "This includes that the warranty offered by the plugin author is limited "
1542
- #~ "to correcting any defects and that the plugin author will not be held "
1543
- #~ "liable for any actions or financial loss occurring as a result of using "
1544
- #~ "this plugin."
1545
- #~ msgstr ""
1546
- #~ "هذا يتضمن أن الكفالة المقدمة من قبل مبرمج الإضافة تقتصر فقط على تصحيح أي "
1547
- #~ "عيوب، وأن مبرمج الإضافة لن يتم إيقافة وأنه غير مسؤول تجاه أي إجراءات أو "
1548
- #~ "خسارة مالية تحدث نتيجة استخدام هذه الإضافة."
1549
-
1550
- #~ msgid "Contact"
1551
- #~ msgstr "تواصل"
1552
-
1553
- #~ msgid ""
1554
- #~ "If you have any issues and problems with activating you can contact the "
1555
- #~ "plugin author for solutions."
1556
- #~ msgstr ""
1557
- #~ "إذا واجهتك أي مشاكل بعملية التفعيل بإمكانك التواصل مع مبرمج الإضافة "
1558
- #~ "لإيجاد حلول."
1559
-
1560
- #~ msgid "http://www.quickfeaturedimages.com/contact/"
1561
- #~ msgstr "http://www.quickfeaturedimages.com/contact/"
1562
-
1563
- #~ msgid "Contact page (in new window)"
1564
- #~ msgstr "صفحة التواصل (في نافذة جديدة)"
1565
-
1566
- #~ msgid "Image removed successfully from post"
1567
- #~ msgstr "الصورة أزيلت بنجاح من المقالة"
1568
-
1569
- #~ msgid "Image not removed from post"
1570
- #~ msgstr "الصورة لم تزل من المقالة"
1571
-
1572
- #~ msgid "Taxonomy"
1573
- #~ msgstr "الفئة"
1574
-
1575
- #~ msgid "matched keyword. If not then..."
1576
- #~ msgstr "توافق كلمة مفتاحية. إذا لم يتحقق ذلك فسيتم..."
1577
-
1578
- #~ msgid "Latest News"
1579
- #~ msgstr "آخر الأخبار"
4
  msgstr ""
5
  "Project-Id-Version: Quick Featured Images Pro\n"
6
  "Report-Msgid-Bugs-To: http://quickfeaturedimages.com\n"
7
+ "POT-Creation-Date: 2017-07-06 23:14+0200\n"
8
+ "PO-Revision-Date: 2017-07-06 23:17+0200\n"
9
  "Last-Translator: Martin Stehle <m.stehle@gmx.de>\n"
10
  "Language-Team: m.stehle@gmx.de\n"
11
  "Language: ar\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
+ "X-Generator: Poedit 2.0.2\n"
16
  "X-Poedit-KeywordsList: __;_e;_n;_x;esc_html_e;esc_html__;esc_attr_e;"
17
  "esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_x:1,2c;_n:1,2\n"
18
  "X-Poedit-Basepath: ..\n"
44
  msgid "Welcome to %s! You can find the plugin at %s."
45
  msgstr "مرحباً بك في %s! يمكنك أن تجد الإضافة في %s."
46
 
47
+ #: admin/class-quick-featured-images-columns.php:295
48
+ #: admin/class-quick-featured-images-columns.php:456
49
  #, php-format
50
  msgid "Change &#8220;%s&#8221;"
51
  msgstr "تغيير %s"
52
 
53
+ #: admin/class-quick-featured-images-columns.php:320
54
+ #: admin/class-quick-featured-images-columns.php:457
55
  #, php-format
56
  msgid "Remove &#8220;%s&#8221;"
57
  msgstr "إزالة %s"
58
 
59
+ #: admin/class-quick-featured-images-columns.php:364
60
+ #: admin/class-quick-featured-images-columns.php:377
61
+ #: admin/class-quick-featured-images-columns.php:529
62
  #, php-format
63
  msgid "Set image for &#8220;%s&#8221;"
64
  msgstr "صورة مضبوط ل %s"
154
  msgid "Controls which minimum user role can see the plugin."
155
  msgstr "الضوابط التي دورا الحد الأدنى يمكن للمستخدم رؤية البرنامج المساعد."
156
 
157
+ #: admin/class-quick-featured-images-tools.php:471
158
  #, php-format
159
  msgid "Wrong image ID %d"
160
  msgstr "معرّف صورة خاطئ %d"
161
 
162
+ #: admin/class-quick-featured-images-tools.php:573
163
  msgid "Select"
164
  msgstr "اختر"
165
 
166
+ #: admin/class-quick-featured-images-tools.php:574
167
  msgid "Add filter"
168
  msgstr "إضافة فلتر"
169
 
170
+ #: admin/class-quick-featured-images-tools.php:575
171
  msgid "Refine"
172
  msgstr "تنقيح"
173
 
174
+ #: admin/class-quick-featured-images-tools.php:576
175
  msgid "Confirm"
176
  msgstr "تأكيد"
177
 
178
+ #: admin/class-quick-featured-images-tools.php:577
179
  msgid "Perform"
180
  msgstr "نفّذ"
181
 
182
+ #: admin/class-quick-featured-images-tools.php:581
183
  msgid "Set the selected image as new featured image"
184
  msgstr "استخدم الصورة المحددة كصورة بارزة جديدة"
185
 
186
+ #: admin/class-quick-featured-images-tools.php:582
187
  msgid "Replace featured images by the selected image"
188
  msgstr "استبدل الصور البارزة بالصورة المحددة"
189
 
190
+ #: admin/class-quick-featured-images-tools.php:583
191
  msgid "Remove the selected image as featured image"
192
  msgstr "أزل الصورة المحددة كصورة بارزة"
193
 
194
+ #: admin/class-quick-featured-images-tools.php:586
195
  msgid "Remove any image as featured image"
196
  msgstr "أزل أي صورة كصورة بارزة"
197
 
198
+ #: admin/class-quick-featured-images-tools.php:587
199
+ msgid "Remove all featured images without existing image files"
200
+ msgstr "أزل جميع الصور المميزة بدون ملفات الصور الموجودة"
201
+
202
+ #: admin/class-quick-featured-images-tools.php:590
203
  msgid "Set multiple images randomly as featured images"
204
  msgstr "استخدم صور متعددة عشوائياً كصور بارزة"
205
 
206
+ #: admin/class-quick-featured-images-tools.php:594
207
  msgid "Overwrite featured images"
208
  msgstr "استبدل الصور البارزة"
209
 
210
+ #: admin/class-quick-featured-images-tools.php:595
211
  msgid "Consider only posts without any featured image"
212
  msgstr "فقط المقالات التي بدون صور بارزة"
213
 
214
+ #: admin/class-quick-featured-images-tools.php:599
215
  msgid "Post Type Filter"
216
  msgstr "فلتر نوع المقالة"
217
 
218
+ #: admin/class-quick-featured-images-tools.php:600
219
  msgid "Category Filter"
220
  msgstr "فلتر التصنيف"
221
 
222
+ #: admin/class-quick-featured-images-tools.php:601
223
  msgid "Tag Filter"
224
  msgstr "فلتر الوسوم"
225
 
226
+ #: admin/class-quick-featured-images-tools.php:630
227
  msgid "Image width in pixels lower than"
228
  msgstr "عرض الصورة بالبكسل أقل من"
229
 
230
+ #: admin/class-quick-featured-images-tools.php:631
231
  msgid "Image height in pixels lower than"
232
  msgstr "ارتفاع الصورة بالبكسل أقل من"
233
 
234
+ #: admin/class-quick-featured-images-tools.php:740
235
  #, php-format
236
  msgid "The input field %s is empty."
237
  msgstr "حقل الإدخال %s فارغ"
238
 
239
+ #: admin/class-quick-featured-images-tools.php:741
240
  msgid "Type in a value into the input field."
241
  msgstr "اكتب قيمة في حقل الإدخال"
242
 
243
+ #: admin/class-quick-featured-images-tools.php:744
244
  #, php-format
245
  msgid "%s is not defined."
246
  msgstr "%s غير معرّف"
247
 
248
+ #: admin/class-quick-featured-images-tools.php:745
249
  msgid "Check how to define the value."
250
  msgstr "تحقق من كيفية تحديد القيمة."
251
 
252
+ #: admin/class-quick-featured-images-tools.php:748
253
  msgid "There is no selected image."
254
  msgstr "لا يوجد صورة محددة."
255
 
256
+ #: admin/class-quick-featured-images-tools.php:749
257
  msgid "Select an image from the media library."
258
  msgstr "حدد صورة من مكتبة الوسائط."
259
 
260
+ #: admin/class-quick-featured-images-tools.php:752
261
  #: admin/views/section_image.php:51
262
  msgid "You have not selected an action."
263
  msgstr "لم تقم بتحديد إجراء."
264
 
265
+ #: admin/class-quick-featured-images-tools.php:753
266
  msgid "Start again and select which action you want to apply."
267
  msgstr "ابدأ مرة أخرى وحدد أي إجراء تريد تنفيذه."
268
 
269
+ #: admin/class-quick-featured-images-tools.php:756
270
  #, php-format
271
  msgid "The input field %s has an invalid value."
272
  msgstr "حقل الإدخال %s به قيمة خاطئة."
273
 
274
+ #: admin/class-quick-featured-images-tools.php:757
275
  msgid "Type in valid values in the input field."
276
  msgstr "أدخل قيم صالحة في حقل الإدخال."
277
 
278
+ #: admin/class-quick-featured-images-tools.php:761
279
  msgid "Type in values stored by WordPress."
280
  msgstr "أدخل قيم مخزنة بواسطة ووردبريس."
281
 
282
+ #: admin/class-quick-featured-images-tools.php:1926
283
  msgid "Set, replace, remove"
284
  msgstr "حدد، استبدل، احذف"
285
 
286
+ #: admin/class-quick-featured-images-tools.php:1937
287
  msgid "Bulk set, replace and remove featured images for existing posts"
288
  msgstr "لمجموعة دفعة واحدة، حدد واستبدل واحذف الصور البارزة لمقالات موجودة"
289
 
290
+ #: admin/class-quick-featured-images-tools.php:2046
291
  msgid "Bulk set as featured image"
292
  msgstr "حدد كصورة بارزة لمجموعة دفعة واحدة"
293
 
325
  msgid "Modify selection"
326
  msgstr "تعديل الاختيار"
327
 
328
+ #: admin/views/form_confirm.php:1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
329
  msgid "Preview of your selection"
330
  msgstr "معاينة على اختيارك"
331
 
332
+ #: admin/views/form_confirm.php:2
333
  #, php-format
334
  msgid "%d matches found"
335
  msgstr "%d نتيجة مطابقة وجدت"
336
 
337
+ #: admin/views/form_confirm.php:12
338
+ msgid ""
339
+ "Should the entries of featured images without image files be removed from "
340
+ "the database?"
341
+ msgstr "هل يجب إزالة إدخالات الصور المميزة بدون ملفات الصور من قاعدة البيانات؟"
342
+
343
+ #: admin/views/form_confirm.php:15 admin/views/section_results.php:16
344
  msgid "Details"
345
  msgstr "تفاصيل"
346
 
347
+ #: admin/views/form_confirm.php:16 admin/views/section_defaults.php:17
348
+ #: admin/views/section_results.php:18
349
  msgid "No."
350
  msgstr "رقم"
351
 
352
+ #: admin/views/form_confirm.php:17 admin/views/section_results.php:17
353
  msgid "Current Featured Image"
354
  msgstr "الصورة البارزة الحالية"
355
 
356
+ #: admin/views/form_confirm.php:18
357
  msgid "Future Featured Image"
358
  msgstr "الصورة البارزة المستقبلية"
359
 
360
+ #: admin/views/form_confirm.php:19
361
  msgid "written on"
362
  msgstr "كتبت على"
363
 
364
+ #: admin/views/form_confirm.php:20
365
  msgid "by"
366
  msgstr "بواسطة"
367
 
368
+ #: admin/views/form_confirm.php:35
369
+ msgid "Should the selected image be set as featured image to all listed posts?"
370
+ msgstr "هل يجب أن تستخدم الصورة المحددة كصورة بارزة لكل المقالات المدرجة؟"
371
+
372
+ #: admin/views/form_confirm.php:38
373
+ msgid ""
374
+ "Should the selected images be set randomly as featured images to all listed "
375
+ "posts?"
376
+ msgstr ""
377
+ "هل يجب أن تستخدم الصور المحددة عشوائياً كصور بارزة لكل المقالات المدرجة؟"
378
+
379
+ #: admin/views/form_confirm.php:41
380
+ msgid ""
381
+ "Should the current set featured image be replaced by the selected image at "
382
+ "all listed posts?"
383
+ msgstr ""
384
+ "هل يجب استبدال الصورة البارزة الحالية بالصورة المحددة لكل المقالات المدرجة؟"
385
+
386
+ #: admin/views/form_confirm.php:44
387
+ msgid "Should the selected image be removed from all listed posts?"
388
+ msgstr "هل يجب إزالة الصورة المحددة من كل المقالات المدرجة؟"
389
+
390
+ #: admin/views/form_confirm.php:47
391
+ msgid "Should the future images be set as featured images at all listed posts?"
392
+ msgstr "هل يجب استخدام الصور المستقبلية كصور بارزة لكل المقالات المدرجة؟"
393
+
394
+ #: admin/views/form_confirm.php:50
395
+ msgid "Should the added featured images be removed from all listed posts?"
396
+ msgstr "هل يجب إزالة الصور البارزة المضافة من كل المقالات المدرجة؟"
397
+
398
+ #: admin/views/form_confirm.php:54 admin/views/section_results.php:27
399
  msgid ""
400
  "The list is in alphabetical order according to post title. You can edit a "
401
  "post in a new window by clicking on its link in the list."
403
  "القائمة مرتبة أبجدياً وفقاً لعنوان المقالة. بإمكانك تعديل مقالة في نافذة جديدة "
404
  "بالضغط على رابطها في القائمة."
405
 
406
+ #: admin/views/form_confirm.php:120
407
  msgid "Confirm the change"
408
  msgstr "تأكيد التغيير"
409
 
410
+ #: admin/views/form_confirm.php:121
411
  msgid "You can not undo the operation!"
412
  msgstr "لا يمكنك التراجع عن الإجراء !"
413
 
414
+ #: admin/views/form_confirm.php:182 admin/views/section_errormsg.php:8
415
+ #: admin/views/section_results.php:86
416
  msgid "Start again"
417
  msgstr "ابدأ مرة أخرى"
418
 
419
+ #: admin/views/form_confirm.php:182
420
  msgid "or refine your selection with the following form fields."
421
  msgstr "أو قم بتنقيح اختيارك بواسطة حقول النموذج التالي."
422
 
531
  msgstr "أزل الصور البارزة الفائضة بعد استخدام جميع الصور المحددة"
532
 
533
  #: admin/views/form_select.php:77 admin/views/form_select.php:115
534
+ #: admin/views/form_select.php:119 admin/views/form_start.php:113
535
  #: admin/views/section_defaults.php:492 admin/views/section_footer.php:59
536
  #: admin/views/section_overview.php:91
537
  msgid "Get the premium version"
538
  msgstr "أحصل على النسخة المدفوعة"
539
 
540
  #: admin/views/form_select.php:77 admin/views/form_select.php:115
541
+ #: admin/views/form_select.php:119 admin/views/form_start.php:113
542
  #: admin/views/section_defaults.php:492 admin/views/section_footer.php:59
543
  #: admin/views/section_overview.php:90 admin/views/section_overview.php:91
544
  msgid "/"
582
  msgstr "هل تبحث عن المزيد من الخيارات والفلاتر؟"
583
 
584
  #: admin/views/form_select.php:116
 
 
 
 
 
 
 
 
585
  msgid "If you encounter a white, blank page, read this"
586
  msgstr "إذا واجهت صفحة بيضاء أو فارغة، اقرأ هذا"
587
 
588
+ #: admin/views/form_select.php:117
589
  msgid ""
590
  "Facing a white blank page while trying to treat thousands of posts is the "
591
  "effect of limited memory capacities on the website server. Instead of "
597
  "واحدة حاول معالجة كميات قليلة من المقالات لمرات متعددة بنجاح. لتحقيق ذلك "
598
  "افعل التالي:"
599
 
600
+ #: admin/views/form_select.php:120
601
  msgid "add the time filter,"
602
  msgstr "أضف فلتر للوقت،"
603
 
604
+ #: admin/views/form_select.php:121
605
  msgid "set a small time range,"
606
  msgstr "حدد فترة زمنية صغيرة،"
607
 
608
+ #: admin/views/form_select.php:122
609
  msgid "do the process"
610
  msgstr "قم بالعملية"
611
 
612
+ #: admin/views/form_select.php:123
613
  msgid "and repeat it with the next time range as often as needed."
614
  msgstr "وكررها حسب الحاجة مع الفترات الزمنية التالية."
615
 
616
+ #: admin/views/form_select.php:125
617
  msgid ""
618
  "This way is not as fast as one single run, but still much faster than "
619
  "setting the images for each post manually."
621
  "هذه الطريقة ليست سريعة كما لو قمت بها دفعة واحدة، لكنها أسرع من إعداد الصور "
622
  "يدوياً لكل مقالة."
623
 
624
+ #: admin/views/form_select.php:130
625
+ msgid ""
626
+ "On the next page you can refine the filters. If you did not select any "
627
+ "filter you will go to the preview list directly."
628
+ msgstr ""
629
+ "في الصفحة التالية بإمكان تنقيح الفلاتر. إذا لم تحدد أي فلتر ستذهب إلى قائمة "
630
+ "المعاينة مباشرة."
631
+
632
  #: admin/views/form_start.php:6 admin/views/section_defaults.php:215
633
  msgid ""
634
  "The current theme does not support featured images. Anyway you can use this "
928
  msgid "Credits and informations"
929
  msgstr "المؤلفون والمعلومات"
930
 
931
+ #: admin/views/section_footer.php:54 admin/views/section_results.php:87
932
  msgid "Do you like the plugin?"
933
  msgstr "هل أعجبتك هذه الإضافة؟"
934
 
935
+ #: admin/views/section_footer.php:54 admin/views/section_results.php:88
936
  msgid "Please rate it at wordpress.org!"
937
  msgstr "رجاءً قم بتقييمها في wordpress.org!"
938
 
1044
  msgid "Results of the action"
1045
  msgstr "نتائج الإجراء"
1046
 
1047
+ #: admin/views/section_results.php:19
1048
  msgid "Changed successfully"
1049
  msgstr "تمّ التغيير بنجاح"
1050
 
1051
+ #: admin/views/section_results.php:20
1052
  msgid "Unchanged"
1053
  msgstr "لم يتمّ التغيير"
1054
 
1055
+ #: admin/views/section_results.php:82
1056
  msgid "No matches found."
1057
  msgstr "لم يعثر على نتائج متوافقة."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/quick-featured-images-de_DE.mo CHANGED
Binary file
languages/quick-featured-images-de_DE.po CHANGED
@@ -4,15 +4,15 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Quick Featured Images\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/plugins/quick-featured-images\n"
7
- "POT-Creation-Date: 2017-03-30 22:54+0200\n"
8
- "PO-Revision-Date: 2017-03-30 22:55+0200\n"
9
  "Last-Translator: Martin Stehle <m.stehle@gmx.de>\n"
10
  "Language-Team: m.stehle@gmx.de\n"
11
  "Language: de_DE\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
- "X-Generator: Poedit 2.0\n"
16
  "X-Poedit-KeywordsList: __;_e;_n;_x;esc_html_e;esc_html__;esc_attr_e;"
17
  "esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_x:1,2c;_n:1,2\n"
18
  "X-Poedit-Basepath: ..\n"
@@ -44,20 +44,21 @@ msgstr ""
44
  msgid "Welcome to %s! You can find the plugin at %s."
45
  msgstr "Willkommen zu %s! Du kannst das Plugin finden unter %s."
46
 
47
- #: admin/class-quick-featured-images-columns.php:294
48
- #: admin/class-quick-featured-images-columns.php:414
49
  #, php-format
50
  msgid "Change &#8220;%s&#8221;"
51
  msgstr "Ändere &#8220;%s&#8221;"
52
 
53
- #: admin/class-quick-featured-images-columns.php:317
54
- #: admin/class-quick-featured-images-columns.php:415
55
  #, php-format
56
  msgid "Remove &#8220;%s&#8221;"
57
  msgstr "Lösche &#8220;%s&#8221;"
58
 
59
- #: admin/class-quick-featured-images-columns.php:339
60
- #: admin/class-quick-featured-images-columns.php:484
 
61
  #, php-format
62
  msgid "Set image for &#8220;%s&#8221;"
63
  msgstr "Stelle Bild für &#8220;%s&#8221; ein"
@@ -159,139 +160,143 @@ msgstr ""
159
  msgid "Controls which minimum user role can see the plugin."
160
  msgstr "Regelt, welche Mindestrolle das Plugin sehen kann."
161
 
162
- #: admin/class-quick-featured-images-tools.php:443
163
  #, php-format
164
  msgid "Wrong image ID %d"
165
  msgstr "Falsche Bild-ID %d"
166
 
167
- #: admin/class-quick-featured-images-tools.php:544
168
  msgid "Select"
169
  msgstr "Auswählen"
170
 
171
- #: admin/class-quick-featured-images-tools.php:545
172
  msgid "Add filter"
173
  msgstr "Filter hinzufügen"
174
 
175
- #: admin/class-quick-featured-images-tools.php:546
176
  msgid "Refine"
177
  msgstr "Verfeinern"
178
 
179
- #: admin/class-quick-featured-images-tools.php:547
180
  msgid "Confirm"
181
  msgstr "Bestätigen"
182
 
183
- #: admin/class-quick-featured-images-tools.php:548
184
  msgid "Perform"
185
  msgstr "Umsetzen"
186
 
187
- #: admin/class-quick-featured-images-tools.php:552
188
  msgid "Set the selected image as new featured image"
189
  msgstr "Füge das ausgewählte Bild als neues Beitragsbild hinzu"
190
 
191
- #: admin/class-quick-featured-images-tools.php:553
192
  msgid "Replace featured images by the selected image"
193
  msgstr "Ersetze mindestens ein Beitragsbild durch das ausgewählte Bild"
194
 
195
- #: admin/class-quick-featured-images-tools.php:554
196
  msgid "Remove the selected image as featured image"
197
  msgstr "Entferne das ausgewählte Bild als Beitragsbild"
198
 
199
- #: admin/class-quick-featured-images-tools.php:557
200
  msgid "Remove any image as featured image"
201
  msgstr "Entferne jedes Bild als Beitragsbild"
202
 
203
- #: admin/class-quick-featured-images-tools.php:560
 
 
 
 
204
  msgid "Set multiple images randomly as featured images"
205
  msgstr ""
206
  "Füge mehrere Bilder in zufälliger Ordnung als neue Beitragsbilder hinzu"
207
 
208
- #: admin/class-quick-featured-images-tools.php:564
209
  msgid "Overwrite featured images"
210
  msgstr "Überschreibe Beitragsbilder"
211
 
212
- #: admin/class-quick-featured-images-tools.php:565
213
  msgid "Consider only posts without any featured image"
214
  msgstr "Berücksichtige nur Beiträge ohne Beitragsbild"
215
 
216
- #: admin/class-quick-featured-images-tools.php:569
217
  msgid "Post Type Filter"
218
  msgstr "Inhaltstypfilter"
219
 
220
- #: admin/class-quick-featured-images-tools.php:570
221
  msgid "Category Filter"
222
  msgstr "Kategorienfilter"
223
 
224
- #: admin/class-quick-featured-images-tools.php:571
225
  msgid "Tag Filter"
226
  msgstr "Schlagwortfilter"
227
 
228
- #: admin/class-quick-featured-images-tools.php:600
229
  msgid "Image width in pixels lower than"
230
  msgstr "Bildbreite in Pixeln kleiner als"
231
 
232
- #: admin/class-quick-featured-images-tools.php:601
233
  msgid "Image height in pixels lower than"
234
  msgstr "Bildhöhe in Pixeln kleiner als"
235
 
236
- #: admin/class-quick-featured-images-tools.php:710
237
  #, php-format
238
  msgid "The input field %s is empty."
239
  msgstr "Das Eingabefeld %s ist leer."
240
 
241
- #: admin/class-quick-featured-images-tools.php:711
242
  msgid "Type in a value into the input field."
243
  msgstr "Gebe in das Eingabefeld einen Wert ein."
244
 
245
- #: admin/class-quick-featured-images-tools.php:714
246
  #, php-format
247
  msgid "%s is not defined."
248
  msgstr "%s ist nicht definiert."
249
 
250
- #: admin/class-quick-featured-images-tools.php:715
251
  msgid "Check how to define the value."
252
  msgstr "Prüfe nach, wie der Wert gesetzt wird."
253
 
254
- #: admin/class-quick-featured-images-tools.php:718
255
  msgid "There is no selected image."
256
  msgstr "Es gibt kein ausgewähltes Bild."
257
 
258
- #: admin/class-quick-featured-images-tools.php:719
259
  msgid "Select an image from the media library."
260
  msgstr "Wähle ein Bild aus der Mediathek aus."
261
 
262
- #: admin/class-quick-featured-images-tools.php:722
263
  #: admin/views/section_image.php:51
264
  msgid "You have not selected an action."
265
  msgstr "Du hast keine Aktion ausgewählt."
266
 
267
- #: admin/class-quick-featured-images-tools.php:723
268
  msgid "Start again and select which action you want to apply."
269
  msgstr "Fange neu an und wähle aus, welche Aktion du anwenden willst."
270
 
271
- #: admin/class-quick-featured-images-tools.php:726
272
  #, php-format
273
  msgid "The input field %s has an invalid value."
274
  msgstr "Das Eingabefeld %s hat einen ungültigen Wert."
275
 
276
- #: admin/class-quick-featured-images-tools.php:727
277
  msgid "Type in valid values in the input field."
278
  msgstr "Gebe einen gültigen Wert in das Eingabefeld ein."
279
 
280
- #: admin/class-quick-featured-images-tools.php:731
281
  msgid "Type in values stored by WordPress."
282
  msgstr "Gebe von WordPress gespeicherte Werte ein."
283
 
284
- #: admin/class-quick-featured-images-tools.php:1846
285
  msgid "Set, replace, remove"
286
  msgstr "Setzen, tauschen, löschen"
287
 
288
- #: admin/class-quick-featured-images-tools.php:1857
289
  msgid "Bulk set, replace and remove featured images for existing posts"
290
  msgstr ""
291
  "Massenweises Hinzufügen, Ersetzen und Entfernen von Beitragsbildern für "
292
  "bestehende Inhalte"
293
 
294
- #: admin/class-quick-featured-images-tools.php:1966
295
  msgid "Bulk set as featured image"
296
  msgstr "Als Beitragsbild setzen"
297
 
@@ -331,13 +336,55 @@ msgstr ""
331
  msgid "Modify selection"
332
  msgstr "Auswahl ändern"
333
 
334
- #: admin/views/form_confirm.php:4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
335
  msgid "Should the selected image be set as featured image to all listed posts?"
336
  msgstr ""
337
  "Sollte das ausgewählte Bild allen gelisteten Beiträgen als Beitragsbild "
338
  "hinzugefügt werden?"
339
 
340
- #: admin/views/form_confirm.php:7
341
  msgid ""
342
  "Should the selected images be set randomly as featured images to all listed "
343
  "posts?"
@@ -345,7 +392,7 @@ msgstr ""
345
  "Sollten die ausgewählten Bilder bei allen gelisteten Beiträgen zufällig "
346
  "hinzugefügt werden?"
347
 
348
- #: admin/views/form_confirm.php:10
349
  msgid ""
350
  "Should the current set featured image be replaced by the selected image at "
351
  "all listed posts?"
@@ -353,55 +400,21 @@ msgstr ""
353
  "Sollte das aktuell gesetzte Beitragsbild durch das ausgewählte Bild bei "
354
  "allen gelisteten Beiträgen ausgetauscht werden?"
355
 
356
- #: admin/views/form_confirm.php:13
357
  msgid "Should the selected image be removed from all listed posts?"
358
  msgstr ""
359
  "Sollte das ausgewählte Bild von allen gelisteten Beiträgen entfernt werden?"
360
 
361
- #: admin/views/form_confirm.php:16
362
  msgid "Should the future images be set as featured images at all listed posts?"
363
  msgstr "Sollten die vorgeschlagene Bilder als Beitragsbilder gesetzt werden?"
364
 
365
- #: admin/views/form_confirm.php:19
366
  msgid "Should the added featured images be removed from all listed posts?"
367
  msgstr ""
368
  "Sollte das ausgewählte Bild von allen gelisteten Beiträgen entfernt werden?"
369
 
370
- #: admin/views/form_confirm.php:24
371
- msgid "Preview of your selection"
372
- msgstr "Vorschau deiner Auswahl"
373
-
374
- #: admin/views/form_confirm.php:25
375
- #, php-format
376
- msgid "%d matches found"
377
- msgstr "%d Treffer gefunden"
378
-
379
- #: admin/views/form_confirm.php:29 admin/views/section_results.php:5
380
- msgid "Details"
381
- msgstr "Details"
382
-
383
- #: admin/views/form_confirm.php:30 admin/views/section_defaults.php:17
384
- #: admin/views/section_results.php:7
385
- msgid "No."
386
- msgstr "Nr."
387
-
388
- #: admin/views/form_confirm.php:31 admin/views/section_results.php:6
389
- msgid "Current Featured Image"
390
- msgstr "Aktuelles Beitragsbild"
391
-
392
- #: admin/views/form_confirm.php:32
393
- msgid "Future Featured Image"
394
- msgstr "Zukünftiges Beitragsbild"
395
-
396
- #: admin/views/form_confirm.php:33
397
- msgid "written on"
398
- msgstr "geschrieben am"
399
-
400
- #: admin/views/form_confirm.php:34
401
- msgid "by"
402
- msgstr "von"
403
-
404
- #: admin/views/form_confirm.php:48 admin/views/section_results.php:16
405
  msgid ""
406
  "The list is in alphabetical order according to post title. You can edit a "
407
  "post in a new window by clicking on its link in the list."
@@ -409,20 +422,20 @@ msgstr ""
409
  "Die Liste ist alphabetisch nach Titel sortiert. Du kannst einen Beitrag in "
410
  "einem neuen Fenster bearbeiten per Klick auf seinen Link in der Liste."
411
 
412
- #: admin/views/form_confirm.php:111
413
  msgid "Confirm the change"
414
  msgstr "Änderung bestätigen"
415
 
416
- #: admin/views/form_confirm.php:112
417
  msgid "You can not undo the operation!"
418
  msgstr "Du kannst die Aktion nicht rückgängig machen!"
419
 
420
- #: admin/views/form_confirm.php:173 admin/views/section_errormsg.php:8
421
- #: admin/views/section_results.php:74
422
  msgid "Start again"
423
  msgstr "Beginne neu"
424
 
425
- #: admin/views/form_confirm.php:173
426
  msgid "or refine your selection with the following form fields."
427
  msgstr "oder verfeinere deine Auswahl mit dem folgenden Feldern."
428
 
@@ -548,7 +561,7 @@ msgstr ""
548
  "verwendet wurden"
549
 
550
  #: admin/views/form_select.php:77 admin/views/form_select.php:115
551
- #: admin/views/form_select.php:137 admin/views/form_start.php:113
552
  #: admin/views/section_defaults.php:492 admin/views/section_footer.php:59
553
  #: admin/views/section_overview.php:91
554
  msgid "Get the premium version"
@@ -556,7 +569,7 @@ msgstr "Hole dir die Premium-Version"
556
 
557
  # Path to language site
558
  #: admin/views/form_select.php:77 admin/views/form_select.php:115
559
- #: admin/views/form_select.php:137 admin/views/form_start.php:113
560
  #: admin/views/section_defaults.php:492 admin/views/section_footer.php:59
561
  #: admin/views/section_overview.php:90 admin/views/section_overview.php:91
562
  msgid "/"
@@ -605,18 +618,10 @@ msgid "Are you looking for more options and more filters?"
605
  msgstr "Suchst du nach mehr Optionen und mehr Filtern?"
606
 
607
  #: admin/views/form_select.php:116
608
- msgid ""
609
- "On the next page you can refine the filters. If you did not select any "
610
- "filter you will go to the preview list directly."
611
- msgstr ""
612
- "Auf der nächsten Seite kannst du die Filter verfeinern. Falls du keine "
613
- "Filter ausgewählt hast, kommst du direkt zur Vorschau."
614
-
615
- #: admin/views/form_select.php:134
616
  msgid "If you encounter a white, blank page, read this"
617
  msgstr "Sollte dir die weiße, leere Seite begegnen, lese das"
618
 
619
- #: admin/views/form_select.php:135
620
  msgid ""
621
  "Facing a white blank page while trying to treat thousands of posts is the "
622
  "effect of limited memory capacities on the website server. Instead of "
@@ -630,23 +635,23 @@ msgstr ""
630
  "kleine Zahl von Beiträgen in mehreren Durchgängen nacheinander anzugehen. Um "
631
  "das umzusetzen, mache folgendes:"
632
 
633
- #: admin/views/form_select.php:138
634
  msgid "add the time filter,"
635
  msgstr "füge den Zeitfilter hinzu,"
636
 
637
- #: admin/views/form_select.php:139
638
  msgid "set a small time range,"
639
  msgstr "stelle einen kurzen Zeitraum ein,"
640
 
641
- #: admin/views/form_select.php:140
642
  msgid "do the process"
643
  msgstr "führe den Prozess durch"
644
 
645
- #: admin/views/form_select.php:141
646
  msgid "and repeat it with the next time range as often as needed."
647
  msgstr "und wiederhole ihn mit dem nächsten Zeitraum so oft wie nötig."
648
 
649
- #: admin/views/form_select.php:143
650
  msgid ""
651
  "This way is not as fast as one single run, but still much faster than "
652
  "setting the images for each post manually."
@@ -655,6 +660,14 @@ msgstr ""
655
  "immer noch um einiges schneller, als jedem Beitrag das Bild per Hand "
656
  "zuzuweisen."
657
 
 
 
 
 
 
 
 
 
658
  #: admin/views/form_start.php:6 admin/views/section_defaults.php:215
659
  msgid ""
660
  "The current theme does not support featured images. Anyway you can use this "
@@ -974,11 +987,11 @@ msgstr "Lösung"
974
  msgid "Credits and informations"
975
  msgstr "Danksagungen und Hinweise"
976
 
977
- #: admin/views/section_footer.php:54 admin/views/section_results.php:75
978
  msgid "Do you like the plugin?"
979
  msgstr "Gefällt dir das Plugin?"
980
 
981
- #: admin/views/section_footer.php:54 admin/views/section_results.php:76
982
  msgid "Please rate it at wordpress.org!"
983
  msgstr "Bewerte es auf wordpress.org!"
984
 
@@ -1091,17 +1104,14 @@ msgstr "Die Premium-Version"
1091
  msgid "Results of the action"
1092
  msgstr "Ergebnisse der Aktion"
1093
 
1094
- #: admin/views/section_results.php:8
1095
  msgid "Changed successfully"
1096
  msgstr "Erfolgreich geändert"
1097
 
1098
- #: admin/views/section_results.php:9
1099
  msgid "Unchanged"
1100
  msgstr "Nicht geändert"
1101
 
1102
- #: admin/views/section_results.php:70
1103
  msgid "No matches found."
1104
  msgstr "Keine Treffer gefunden."
1105
-
1106
- #~ msgid "Use multiple choice"
1107
- #~ msgstr "Drücke STRG für Mehrfachauswahl"
4
  msgstr ""
5
  "Project-Id-Version: Quick Featured Images\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/plugins/quick-featured-images\n"
7
+ "POT-Creation-Date: 2017-07-07 00:03+0200\n"
8
+ "PO-Revision-Date: 2017-07-07 00:03+0200\n"
9
  "Last-Translator: Martin Stehle <m.stehle@gmx.de>\n"
10
  "Language-Team: m.stehle@gmx.de\n"
11
  "Language: de_DE\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
+ "X-Generator: Poedit 2.0.2\n"
16
  "X-Poedit-KeywordsList: __;_e;_n;_x;esc_html_e;esc_html__;esc_attr_e;"
17
  "esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_x:1,2c;_n:1,2\n"
18
  "X-Poedit-Basepath: ..\n"
44
  msgid "Welcome to %s! You can find the plugin at %s."
45
  msgstr "Willkommen zu %s! Du kannst das Plugin finden unter %s."
46
 
47
+ #: admin/class-quick-featured-images-columns.php:295
48
+ #: admin/class-quick-featured-images-columns.php:456
49
  #, php-format
50
  msgid "Change &#8220;%s&#8221;"
51
  msgstr "Ändere &#8220;%s&#8221;"
52
 
53
+ #: admin/class-quick-featured-images-columns.php:320
54
+ #: admin/class-quick-featured-images-columns.php:457
55
  #, php-format
56
  msgid "Remove &#8220;%s&#8221;"
57
  msgstr "Lösche &#8220;%s&#8221;"
58
 
59
+ #: admin/class-quick-featured-images-columns.php:364
60
+ #: admin/class-quick-featured-images-columns.php:377
61
+ #: admin/class-quick-featured-images-columns.php:529
62
  #, php-format
63
  msgid "Set image for &#8220;%s&#8221;"
64
  msgstr "Stelle Bild für &#8220;%s&#8221; ein"
160
  msgid "Controls which minimum user role can see the plugin."
161
  msgstr "Regelt, welche Mindestrolle das Plugin sehen kann."
162
 
163
+ #: admin/class-quick-featured-images-tools.php:471
164
  #, php-format
165
  msgid "Wrong image ID %d"
166
  msgstr "Falsche Bild-ID %d"
167
 
168
+ #: admin/class-quick-featured-images-tools.php:573
169
  msgid "Select"
170
  msgstr "Auswählen"
171
 
172
+ #: admin/class-quick-featured-images-tools.php:574
173
  msgid "Add filter"
174
  msgstr "Filter hinzufügen"
175
 
176
+ #: admin/class-quick-featured-images-tools.php:575
177
  msgid "Refine"
178
  msgstr "Verfeinern"
179
 
180
+ #: admin/class-quick-featured-images-tools.php:576
181
  msgid "Confirm"
182
  msgstr "Bestätigen"
183
 
184
+ #: admin/class-quick-featured-images-tools.php:577
185
  msgid "Perform"
186
  msgstr "Umsetzen"
187
 
188
+ #: admin/class-quick-featured-images-tools.php:581
189
  msgid "Set the selected image as new featured image"
190
  msgstr "Füge das ausgewählte Bild als neues Beitragsbild hinzu"
191
 
192
+ #: admin/class-quick-featured-images-tools.php:582
193
  msgid "Replace featured images by the selected image"
194
  msgstr "Ersetze mindestens ein Beitragsbild durch das ausgewählte Bild"
195
 
196
+ #: admin/class-quick-featured-images-tools.php:583
197
  msgid "Remove the selected image as featured image"
198
  msgstr "Entferne das ausgewählte Bild als Beitragsbild"
199
 
200
+ #: admin/class-quick-featured-images-tools.php:586
201
  msgid "Remove any image as featured image"
202
  msgstr "Entferne jedes Bild als Beitragsbild"
203
 
204
+ #: admin/class-quick-featured-images-tools.php:587
205
+ msgid "Remove all featured images without existing image files"
206
+ msgstr "Entferne alle Beitragsbilder ohne vorhandene Bilddateien"
207
+
208
+ #: admin/class-quick-featured-images-tools.php:590
209
  msgid "Set multiple images randomly as featured images"
210
  msgstr ""
211
  "Füge mehrere Bilder in zufälliger Ordnung als neue Beitragsbilder hinzu"
212
 
213
+ #: admin/class-quick-featured-images-tools.php:594
214
  msgid "Overwrite featured images"
215
  msgstr "Überschreibe Beitragsbilder"
216
 
217
+ #: admin/class-quick-featured-images-tools.php:595
218
  msgid "Consider only posts without any featured image"
219
  msgstr "Berücksichtige nur Beiträge ohne Beitragsbild"
220
 
221
+ #: admin/class-quick-featured-images-tools.php:599
222
  msgid "Post Type Filter"
223
  msgstr "Inhaltstypfilter"
224
 
225
+ #: admin/class-quick-featured-images-tools.php:600
226
  msgid "Category Filter"
227
  msgstr "Kategorienfilter"
228
 
229
+ #: admin/class-quick-featured-images-tools.php:601
230
  msgid "Tag Filter"
231
  msgstr "Schlagwortfilter"
232
 
233
+ #: admin/class-quick-featured-images-tools.php:630
234
  msgid "Image width in pixels lower than"
235
  msgstr "Bildbreite in Pixeln kleiner als"
236
 
237
+ #: admin/class-quick-featured-images-tools.php:631
238
  msgid "Image height in pixels lower than"
239
  msgstr "Bildhöhe in Pixeln kleiner als"
240
 
241
+ #: admin/class-quick-featured-images-tools.php:740
242
  #, php-format
243
  msgid "The input field %s is empty."
244
  msgstr "Das Eingabefeld %s ist leer."
245
 
246
+ #: admin/class-quick-featured-images-tools.php:741
247
  msgid "Type in a value into the input field."
248
  msgstr "Gebe in das Eingabefeld einen Wert ein."
249
 
250
+ #: admin/class-quick-featured-images-tools.php:744
251
  #, php-format
252
  msgid "%s is not defined."
253
  msgstr "%s ist nicht definiert."
254
 
255
+ #: admin/class-quick-featured-images-tools.php:745
256
  msgid "Check how to define the value."
257
  msgstr "Prüfe nach, wie der Wert gesetzt wird."
258
 
259
+ #: admin/class-quick-featured-images-tools.php:748
260
  msgid "There is no selected image."
261
  msgstr "Es gibt kein ausgewähltes Bild."
262
 
263
+ #: admin/class-quick-featured-images-tools.php:749
264
  msgid "Select an image from the media library."
265
  msgstr "Wähle ein Bild aus der Mediathek aus."
266
 
267
+ #: admin/class-quick-featured-images-tools.php:752
268
  #: admin/views/section_image.php:51
269
  msgid "You have not selected an action."
270
  msgstr "Du hast keine Aktion ausgewählt."
271
 
272
+ #: admin/class-quick-featured-images-tools.php:753
273
  msgid "Start again and select which action you want to apply."
274
  msgstr "Fange neu an und wähle aus, welche Aktion du anwenden willst."
275
 
276
+ #: admin/class-quick-featured-images-tools.php:756
277
  #, php-format
278
  msgid "The input field %s has an invalid value."
279
  msgstr "Das Eingabefeld %s hat einen ungültigen Wert."
280
 
281
+ #: admin/class-quick-featured-images-tools.php:757
282
  msgid "Type in valid values in the input field."
283
  msgstr "Gebe einen gültigen Wert in das Eingabefeld ein."
284
 
285
+ #: admin/class-quick-featured-images-tools.php:761
286
  msgid "Type in values stored by WordPress."
287
  msgstr "Gebe von WordPress gespeicherte Werte ein."
288
 
289
+ #: admin/class-quick-featured-images-tools.php:1926
290
  msgid "Set, replace, remove"
291
  msgstr "Setzen, tauschen, löschen"
292
 
293
+ #: admin/class-quick-featured-images-tools.php:1937
294
  msgid "Bulk set, replace and remove featured images for existing posts"
295
  msgstr ""
296
  "Massenweises Hinzufügen, Ersetzen und Entfernen von Beitragsbildern für "
297
  "bestehende Inhalte"
298
 
299
+ #: admin/class-quick-featured-images-tools.php:2046
300
  msgid "Bulk set as featured image"
301
  msgstr "Als Beitragsbild setzen"
302
 
336
  msgid "Modify selection"
337
  msgstr "Auswahl ändern"
338
 
339
+ #: admin/views/form_confirm.php:1
340
+ msgid "Preview of your selection"
341
+ msgstr "Vorschau deiner Auswahl"
342
+
343
+ #: admin/views/form_confirm.php:2
344
+ #, php-format
345
+ msgid "%d matches found"
346
+ msgstr "%d Treffer gefunden"
347
+
348
+ #: admin/views/form_confirm.php:12
349
+ msgid ""
350
+ "Should the entries of featured images without image files be removed from "
351
+ "the database?"
352
+ msgstr ""
353
+ "Sollten die Einträge der Beitragsbilder ohne vorhandene Dateien von der "
354
+ "Datenbank entfernt werden?"
355
+
356
+ #: admin/views/form_confirm.php:15 admin/views/section_results.php:16
357
+ msgid "Details"
358
+ msgstr "Details"
359
+
360
+ #: admin/views/form_confirm.php:16 admin/views/section_defaults.php:17
361
+ #: admin/views/section_results.php:18
362
+ msgid "No."
363
+ msgstr "Nr."
364
+
365
+ #: admin/views/form_confirm.php:17 admin/views/section_results.php:17
366
+ msgid "Current Featured Image"
367
+ msgstr "Aktuelles Beitragsbild"
368
+
369
+ #: admin/views/form_confirm.php:18
370
+ msgid "Future Featured Image"
371
+ msgstr "Zukünftiges Beitragsbild"
372
+
373
+ #: admin/views/form_confirm.php:19
374
+ msgid "written on"
375
+ msgstr "geschrieben am"
376
+
377
+ #: admin/views/form_confirm.php:20
378
+ msgid "by"
379
+ msgstr "von"
380
+
381
+ #: admin/views/form_confirm.php:35
382
  msgid "Should the selected image be set as featured image to all listed posts?"
383
  msgstr ""
384
  "Sollte das ausgewählte Bild allen gelisteten Beiträgen als Beitragsbild "
385
  "hinzugefügt werden?"
386
 
387
+ #: admin/views/form_confirm.php:38
388
  msgid ""
389
  "Should the selected images be set randomly as featured images to all listed "
390
  "posts?"
392
  "Sollten die ausgewählten Bilder bei allen gelisteten Beiträgen zufällig "
393
  "hinzugefügt werden?"
394
 
395
+ #: admin/views/form_confirm.php:41
396
  msgid ""
397
  "Should the current set featured image be replaced by the selected image at "
398
  "all listed posts?"
400
  "Sollte das aktuell gesetzte Beitragsbild durch das ausgewählte Bild bei "
401
  "allen gelisteten Beiträgen ausgetauscht werden?"
402
 
403
+ #: admin/views/form_confirm.php:44
404
  msgid "Should the selected image be removed from all listed posts?"
405
  msgstr ""
406
  "Sollte das ausgewählte Bild von allen gelisteten Beiträgen entfernt werden?"
407
 
408
+ #: admin/views/form_confirm.php:47
409
  msgid "Should the future images be set as featured images at all listed posts?"
410
  msgstr "Sollten die vorgeschlagene Bilder als Beitragsbilder gesetzt werden?"
411
 
412
+ #: admin/views/form_confirm.php:50
413
  msgid "Should the added featured images be removed from all listed posts?"
414
  msgstr ""
415
  "Sollte das ausgewählte Bild von allen gelisteten Beiträgen entfernt werden?"
416
 
417
+ #: admin/views/form_confirm.php:54 admin/views/section_results.php:27
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
418
  msgid ""
419
  "The list is in alphabetical order according to post title. You can edit a "
420
  "post in a new window by clicking on its link in the list."
422
  "Die Liste ist alphabetisch nach Titel sortiert. Du kannst einen Beitrag in "
423
  "einem neuen Fenster bearbeiten per Klick auf seinen Link in der Liste."
424
 
425
+ #: admin/views/form_confirm.php:120
426
  msgid "Confirm the change"
427
  msgstr "Änderung bestätigen"
428
 
429
+ #: admin/views/form_confirm.php:121
430
  msgid "You can not undo the operation!"
431
  msgstr "Du kannst die Aktion nicht rückgängig machen!"
432
 
433
+ #: admin/views/form_confirm.php:182 admin/views/section_errormsg.php:8
434
+ #: admin/views/section_results.php:86
435
  msgid "Start again"
436
  msgstr "Beginne neu"
437
 
438
+ #: admin/views/form_confirm.php:182
439
  msgid "or refine your selection with the following form fields."
440
  msgstr "oder verfeinere deine Auswahl mit dem folgenden Feldern."
441
 
561
  "verwendet wurden"
562
 
563
  #: admin/views/form_select.php:77 admin/views/form_select.php:115
564
+ #: admin/views/form_select.php:119 admin/views/form_start.php:113
565
  #: admin/views/section_defaults.php:492 admin/views/section_footer.php:59
566
  #: admin/views/section_overview.php:91
567
  msgid "Get the premium version"
569
 
570
  # Path to language site
571
  #: admin/views/form_select.php:77 admin/views/form_select.php:115
572
+ #: admin/views/form_select.php:119 admin/views/form_start.php:113
573
  #: admin/views/section_defaults.php:492 admin/views/section_footer.php:59
574
  #: admin/views/section_overview.php:90 admin/views/section_overview.php:91
575
  msgid "/"
618
  msgstr "Suchst du nach mehr Optionen und mehr Filtern?"
619
 
620
  #: admin/views/form_select.php:116
 
 
 
 
 
 
 
 
621
  msgid "If you encounter a white, blank page, read this"
622
  msgstr "Sollte dir die weiße, leere Seite begegnen, lese das"
623
 
624
+ #: admin/views/form_select.php:117
625
  msgid ""
626
  "Facing a white blank page while trying to treat thousands of posts is the "
627
  "effect of limited memory capacities on the website server. Instead of "
635
  "kleine Zahl von Beiträgen in mehreren Durchgängen nacheinander anzugehen. Um "
636
  "das umzusetzen, mache folgendes:"
637
 
638
+ #: admin/views/form_select.php:120
639
  msgid "add the time filter,"
640
  msgstr "füge den Zeitfilter hinzu,"
641
 
642
+ #: admin/views/form_select.php:121
643
  msgid "set a small time range,"
644
  msgstr "stelle einen kurzen Zeitraum ein,"
645
 
646
+ #: admin/views/form_select.php:122
647
  msgid "do the process"
648
  msgstr "führe den Prozess durch"
649
 
650
+ #: admin/views/form_select.php:123
651
  msgid "and repeat it with the next time range as often as needed."
652
  msgstr "und wiederhole ihn mit dem nächsten Zeitraum so oft wie nötig."
653
 
654
+ #: admin/views/form_select.php:125
655
  msgid ""
656
  "This way is not as fast as one single run, but still much faster than "
657
  "setting the images for each post manually."
660
  "immer noch um einiges schneller, als jedem Beitrag das Bild per Hand "
661
  "zuzuweisen."
662
 
663
+ #: admin/views/form_select.php:130
664
+ msgid ""
665
+ "On the next page you can refine the filters. If you did not select any "
666
+ "filter you will go to the preview list directly."
667
+ msgstr ""
668
+ "Auf der nächsten Seite kannst du die Filter verfeinern. Falls du keine "
669
+ "Filter ausgewählt hast, kommst du direkt zur Vorschau."
670
+
671
  #: admin/views/form_start.php:6 admin/views/section_defaults.php:215
672
  msgid ""
673
  "The current theme does not support featured images. Anyway you can use this "
987
  msgid "Credits and informations"
988
  msgstr "Danksagungen und Hinweise"
989
 
990
+ #: admin/views/section_footer.php:54 admin/views/section_results.php:87
991
  msgid "Do you like the plugin?"
992
  msgstr "Gefällt dir das Plugin?"
993
 
994
+ #: admin/views/section_footer.php:54 admin/views/section_results.php:88
995
  msgid "Please rate it at wordpress.org!"
996
  msgstr "Bewerte es auf wordpress.org!"
997
 
1104
  msgid "Results of the action"
1105
  msgstr "Ergebnisse der Aktion"
1106
 
1107
+ #: admin/views/section_results.php:19
1108
  msgid "Changed successfully"
1109
  msgstr "Erfolgreich geändert"
1110
 
1111
+ #: admin/views/section_results.php:20
1112
  msgid "Unchanged"
1113
  msgstr "Nicht geändert"
1114
 
1115
+ #: admin/views/section_results.php:82
1116
  msgid "No matches found."
1117
  msgstr "Keine Treffer gefunden."
 
 
 
languages/quick-featured-images-es_ES.mo CHANGED
Binary file
languages/quick-featured-images-es_ES.po CHANGED
@@ -4,15 +4,15 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Quick Featured Images Pro\n"
6
  "Report-Msgid-Bugs-To: http://quickfeaturedimages.com\n"
7
- "POT-Creation-Date: 2017-03-30 22:56+0200\n"
8
- "PO-Revision-Date: 2017-03-30 22:56+0200\n"
9
  "Last-Translator: Martin Stehle <m.stehle@gmx.de>\n"
10
  "Language-Team: m.stehle@gmx.de\n"
11
  "Language: es_ES\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
- "X-Generator: Poedit 2.0\n"
16
  "X-Poedit-KeywordsList: __;_e;_n;_x;esc_html_e;esc_html__;esc_attr_e;"
17
  "esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_x:1,2c;_n:1,2\n"
18
  "X-Poedit-Basepath: ..\n"
@@ -44,20 +44,21 @@ msgstr ""
44
  msgid "Welcome to %s! You can find the plugin at %s."
45
  msgstr "Bienvenido a %s! Puedes encontrar el plugin en %s."
46
 
47
- #: admin/class-quick-featured-images-columns.php:294
48
- #: admin/class-quick-featured-images-columns.php:414
49
  #, php-format
50
  msgid "Change &#8220;%s&#8221;"
51
  msgstr "Cambia &#8220;%s&#8221;"
52
 
53
- #: admin/class-quick-featured-images-columns.php:317
54
- #: admin/class-quick-featured-images-columns.php:415
55
  #, php-format
56
  msgid "Remove &#8220;%s&#8221;"
57
  msgstr "Eliminar &#8220;%s&#8221;"
58
 
59
- #: admin/class-quick-featured-images-columns.php:339
60
- #: admin/class-quick-featured-images-columns.php:484
 
61
  #, php-format
62
  msgid "Set image for &#8220;%s&#8221;"
63
  msgstr "Establecer imagen para &#8220;%s&#8221;"
@@ -163,138 +164,143 @@ msgstr ""
163
  msgid "Controls which minimum user role can see the plugin."
164
  msgstr "Controla qué papel mínimo el usuario puede ver el plugin."
165
 
166
- #: admin/class-quick-featured-images-tools.php:443
167
  #, php-format
168
  msgid "Wrong image ID %d"
169
  msgstr "La identificación de la imagen incorrecta ID %d"
170
 
171
- #: admin/class-quick-featured-images-tools.php:544
172
  msgid "Select"
173
  msgstr "Selecciona"
174
 
175
- #: admin/class-quick-featured-images-tools.php:545
176
  msgid "Add filter"
177
  msgstr "Añade el filtro"
178
 
179
- #: admin/class-quick-featured-images-tools.php:546
180
  msgid "Refine"
181
  msgstr "Refinar"
182
 
183
- #: admin/class-quick-featured-images-tools.php:547
184
  msgid "Confirm"
185
  msgstr "Confirmar"
186
 
187
- #: admin/class-quick-featured-images-tools.php:548
188
  msgid "Perform"
189
  msgstr "Realizar"
190
 
191
- #: admin/class-quick-featured-images-tools.php:552
192
  msgid "Set the selected image as new featured image"
193
  msgstr "Establece la imagen seleccionada como la imagen destacada nueva"
194
 
195
- #: admin/class-quick-featured-images-tools.php:553
196
  msgid "Replace featured images by the selected image"
197
  msgstr "Reemplaza las imágenes destacadas por la imagen seleccionada"
198
 
199
- #: admin/class-quick-featured-images-tools.php:554
200
  msgid "Remove the selected image as featured image"
201
  msgstr "Elimina la imagen seleccionada como la imagen destacada"
202
 
203
- #: admin/class-quick-featured-images-tools.php:557
204
  msgid "Remove any image as featured image"
205
  msgstr "Elimina cualquiera imagen como la imagen destacada"
206
 
207
- #: admin/class-quick-featured-images-tools.php:560
 
 
 
 
 
208
  msgid "Set multiple images randomly as featured images"
209
  msgstr "Establece las imágenes múltiples al azar como la imagen destacada"
210
 
211
- #: admin/class-quick-featured-images-tools.php:564
212
  msgid "Overwrite featured images"
213
  msgstr "Sobrescribe las imágenes destacadas"
214
 
215
- #: admin/class-quick-featured-images-tools.php:565
216
  msgid "Consider only posts without any featured image"
217
  msgstr "Considera solamente posts sin cualquier imagen destacada"
218
 
219
- #: admin/class-quick-featured-images-tools.php:569
220
  msgid "Post Type Filter"
221
  msgstr "El filtro de tipo de post"
222
 
223
- #: admin/class-quick-featured-images-tools.php:570
224
  msgid "Category Filter"
225
  msgstr "El filtro de la categoría"
226
 
227
- #: admin/class-quick-featured-images-tools.php:571
228
  msgid "Tag Filter"
229
  msgstr "El filtro de las etiquetas"
230
 
231
- #: admin/class-quick-featured-images-tools.php:600
232
  msgid "Image width in pixels lower than"
233
  msgstr "El tipo del campo personalizado"
234
 
235
- #: admin/class-quick-featured-images-tools.php:601
236
  msgid "Image height in pixels lower than"
237
  msgstr "La altura de la imagen en píxeles es inferior al"
238
 
239
- #: admin/class-quick-featured-images-tools.php:710
240
  #, php-format
241
  msgid "The input field %s is empty."
242
  msgstr "El campo de entrada %s está vacío."
243
 
244
- #: admin/class-quick-featured-images-tools.php:711
245
  msgid "Type in a value into the input field."
246
  msgstr "Escribe el valor en el campo de la entrada."
247
 
248
- #: admin/class-quick-featured-images-tools.php:714
249
  #, php-format
250
  msgid "%s is not defined."
251
  msgstr "%s no está definido."
252
 
253
- #: admin/class-quick-featured-images-tools.php:715
254
  msgid "Check how to define the value."
255
  msgstr "Comprueba cómo definir el valor."
256
 
257
- #: admin/class-quick-featured-images-tools.php:718
258
  msgid "There is no selected image."
259
  msgstr "No hay ninguna imagen seleccionada."
260
 
261
- #: admin/class-quick-featured-images-tools.php:719
262
  msgid "Select an image from the media library."
263
  msgstr "Selecciona la imagen de Media library (la biblioteca multimedia)."
264
 
265
- #: admin/class-quick-featured-images-tools.php:722
266
  #: admin/views/section_image.php:51
267
  msgid "You have not selected an action."
268
  msgstr "No has seleccionado ninguna acción."
269
 
270
- #: admin/class-quick-featured-images-tools.php:723
271
  msgid "Start again and select which action you want to apply."
272
  msgstr "Empieza de nuevo y selecciona la acción que quieres aplicar."
273
 
274
- #: admin/class-quick-featured-images-tools.php:726
275
  #, php-format
276
  msgid "The input field %s has an invalid value."
277
  msgstr "El valor del campo %s de la entrada es inválido."
278
 
279
- #: admin/class-quick-featured-images-tools.php:727
280
  msgid "Type in valid values in the input field."
281
  msgstr "El valor del campo de la entrada es inválido."
282
 
283
- #: admin/class-quick-featured-images-tools.php:731
284
  msgid "Type in values stored by WordPress."
285
  msgstr "Escribe los valores válidos en el campo de la entrada."
286
 
287
- #: admin/class-quick-featured-images-tools.php:1846
288
  msgid "Set, replace, remove"
289
  msgstr "Establece, reemplaza, elimina"
290
 
291
- #: admin/class-quick-featured-images-tools.php:1857
292
  msgid "Bulk set, replace and remove featured images for existing posts"
293
  msgstr ""
294
  "Configura el bulk, reemplaza y elimina las imágenes destacadas por posts "
295
  "existentes"
296
 
297
- #: admin/class-quick-featured-images-tools.php:1966
298
  msgid "Bulk set as featured image"
299
  msgstr "El bulk configurado como la imagen destacada"
300
 
@@ -334,13 +340,55 @@ msgstr ""
334
  msgid "Modify selection"
335
  msgstr "Modifica la selección"
336
 
337
- #: admin/views/form_confirm.php:4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
338
  msgid "Should the selected image be set as featured image to all listed posts?"
339
  msgstr ""
340
  "¿Debería la imagen seleccionada estar establecida como la imagen destacada "
341
  "en todos los post listados?"
342
 
343
- #: admin/views/form_confirm.php:7
344
  msgid ""
345
  "Should the selected images be set randomly as featured images to all listed "
346
  "posts?"
@@ -348,7 +396,7 @@ msgstr ""
348
  "¿Deberían las imágenes seleccionadas estar establecidas al azar como las "
349
  "imágenes destacadas en todos los post listados?"
350
 
351
- #: admin/views/form_confirm.php:10
352
  msgid ""
353
  "Should the current set featured image be replaced by the selected image at "
354
  "all listed posts?"
@@ -356,58 +404,24 @@ msgstr ""
356
  "¿Debería la imagen destacada actual ser reemplazada por la imagen "
357
  "seleccionada en todos los post listados?"
358
 
359
- #: admin/views/form_confirm.php:13
360
  msgid "Should the selected image be removed from all listed posts?"
361
  msgstr ""
362
  "¿Debería la imagen seleccionada ser eliminada de todos los post listados?"
363
 
364
- #: admin/views/form_confirm.php:16
365
  msgid "Should the future images be set as featured images at all listed posts?"
366
  msgstr ""
367
  "¿Deberían las imágenes futuras estar establecidas como las imágenes "
368
  "destacadas en todos los post listados?"
369
 
370
- #: admin/views/form_confirm.php:19
371
  msgid "Should the added featured images be removed from all listed posts?"
372
  msgstr ""
373
  "¿Deberían las imágenes destacadas añadidas ser eliminadas de todos los post "
374
  "listados?"
375
 
376
- #: admin/views/form_confirm.php:24
377
- msgid "Preview of your selection"
378
- msgstr "La vista previa de su selección"
379
-
380
- #: admin/views/form_confirm.php:25
381
- #, php-format
382
- msgid "%d matches found"
383
- msgstr "%d Las coincidencias encontradas"
384
-
385
- #: admin/views/form_confirm.php:29 admin/views/section_results.php:5
386
- msgid "Details"
387
- msgstr "Los detalles"
388
-
389
- #: admin/views/form_confirm.php:30 admin/views/section_defaults.php:17
390
- #: admin/views/section_results.php:7
391
- msgid "No."
392
- msgstr "Nro."
393
-
394
- #: admin/views/form_confirm.php:31 admin/views/section_results.php:6
395
- msgid "Current Featured Image"
396
- msgstr "La imagen destacada actual"
397
-
398
- #: admin/views/form_confirm.php:32
399
- msgid "Future Featured Image"
400
- msgstr "La imagen destacada futura"
401
-
402
- #: admin/views/form_confirm.php:33
403
- msgid "written on"
404
- msgstr "escrito en"
405
-
406
- #: admin/views/form_confirm.php:34
407
- msgid "by"
408
- msgstr "por"
409
-
410
- #: admin/views/form_confirm.php:48 admin/views/section_results.php:16
411
  msgid ""
412
  "The list is in alphabetical order according to post title. You can edit a "
413
  "post in a new window by clicking on its link in the list."
@@ -415,20 +429,20 @@ msgstr ""
415
  "La lista está ordenada alfabéticamente por el titulo de post. Puedes editar "
416
  "post en una ventana nueva al hacer clic en su enlace en la lista."
417
 
418
- #: admin/views/form_confirm.php:111
419
  msgid "Confirm the change"
420
  msgstr "Confirma el cambio"
421
 
422
- #: admin/views/form_confirm.php:112
423
  msgid "You can not undo the operation!"
424
  msgstr "¡No puedes deshacer la operación!"
425
 
426
- #: admin/views/form_confirm.php:173 admin/views/section_errormsg.php:8
427
- #: admin/views/section_results.php:74
428
  msgid "Start again"
429
  msgstr "Empieza de nuevo"
430
 
431
- #: admin/views/form_confirm.php:173
432
  msgid "or refine your selection with the following form fields."
433
  msgstr "o refina su selección con los siguientes campos del formulario."
434
 
@@ -552,14 +566,14 @@ msgid "Remove excess featured images after all selected images are used"
552
  msgstr "Reemplaza las imágenes destacadas por la imagen seleccionada"
553
 
554
  #: admin/views/form_select.php:77 admin/views/form_select.php:115
555
- #: admin/views/form_select.php:137 admin/views/form_start.php:113
556
  #: admin/views/section_defaults.php:492 admin/views/section_footer.php:59
557
  #: admin/views/section_overview.php:91
558
  msgid "Get the premium version"
559
  msgstr "Obtener la Pro versión"
560
 
561
  #: admin/views/form_select.php:77 admin/views/form_select.php:115
562
- #: admin/views/form_select.php:137 admin/views/form_start.php:113
563
  #: admin/views/section_defaults.php:492 admin/views/section_footer.php:59
564
  #: admin/views/section_overview.php:90 admin/views/section_overview.php:91
565
  msgid "/"
@@ -608,18 +622,10 @@ msgid "Are you looking for more options and more filters?"
608
  msgstr "¿Buscas más opciones y más filtros de búsqueda?"
609
 
610
  #: admin/views/form_select.php:116
611
- msgid ""
612
- "On the next page you can refine the filters. If you did not select any "
613
- "filter you will go to the preview list directly."
614
- msgstr ""
615
- "El la página siguiente puedes refinar sus filtros. Si no has seleccionado "
616
- "ningún, filtro te vas a la lista previa directamente."
617
-
618
- #: admin/views/form_select.php:134
619
  msgid "If you encounter a white, blank page, read this"
620
  msgstr "Si surge la página en blanco, lee esto"
621
 
622
- #: admin/views/form_select.php:135
623
  msgid ""
624
  "Facing a white blank page while trying to treat thousands of posts is the "
625
  "effect of limited memory capacities on the website server. Instead of "
@@ -632,25 +638,25 @@ msgstr ""
632
  "pequeñas cantidades de post varias veces sucesivamente. Para conseguirlo, "
633
  "haz lo siguiente:"
634
 
635
- #: admin/views/form_select.php:138
636
  msgid "add the time filter,"
637
  msgstr "añade el filtro de tiempo,"
638
 
639
- #: admin/views/form_select.php:139
640
  msgid "set a small time range,"
641
  msgstr "establece el período limitado de tiempo,"
642
 
643
- #: admin/views/form_select.php:140
644
  msgid "do the process"
645
  msgstr "realiza el proceso"
646
 
647
- #: admin/views/form_select.php:141
648
  msgid "and repeat it with the next time range as often as needed."
649
  msgstr ""
650
  "y realízalo de nuevo con el periodo de tiempo siguiente las veces que te "
651
  "sean necesarias."
652
 
653
- #: admin/views/form_select.php:143
654
  msgid ""
655
  "This way is not as fast as one single run, but still much faster than "
656
  "setting the images for each post manually."
@@ -659,6 +665,14 @@ msgstr ""
659
  "mucho más rápido que el establecimiento de las imágenes para cada post de "
660
  "forma manual."
661
 
 
 
 
 
 
 
 
 
662
  #: admin/views/form_start.php:6 admin/views/section_defaults.php:215
663
  msgid ""
664
  "The current theme does not support featured images. Anyway you can use this "
@@ -977,11 +991,11 @@ msgstr "La solución"
977
  msgid "Credits and informations"
978
  msgstr "Los créditos y las informaciones"
979
 
980
- #: admin/views/section_footer.php:54 admin/views/section_results.php:75
981
  msgid "Do you like the plugin?"
982
  msgstr "¿Te gusta el plugin?"
983
 
984
- #: admin/views/section_footer.php:54 admin/views/section_results.php:76
985
  msgid "Please rate it at wordpress.org!"
986
  msgstr "¡Por favor califícalo en at wordpress.org!"
987
 
@@ -1095,512 +1109,14 @@ msgstr "La Pro versión"
1095
  msgid "Results of the action"
1096
  msgstr "Los resultados de la acción"
1097
 
1098
- #: admin/views/section_results.php:8
1099
  msgid "Changed successfully"
1100
  msgstr "Cambiado con éxito"
1101
 
1102
- #: admin/views/section_results.php:9
1103
  msgid "Unchanged"
1104
  msgstr "Sin alterar"
1105
 
1106
- #: admin/views/section_results.php:70
1107
  msgid "No matches found."
1108
  msgstr "No se han encontrado coincidencias."
1109
-
1110
- #~ msgid "There are no featured images in use."
1111
- #~ msgstr "No hay ninguna imagen destacada en uso."
1112
-
1113
- #~ msgid "Image Columns"
1114
- #~ msgstr "Las columnas de la imagen"
1115
-
1116
- #~ msgid "Taxonomy"
1117
- #~ msgstr "Taxonomy"
1118
-
1119
- #~ msgid ""
1120
- #~ "There is a new version of %1$s available. <a target=\"_blank\" class="
1121
- #~ "\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
1122
- #~ msgstr ""
1123
- #~ "Hay una nueva versión de %1$s disponible. <a target=\"_blank\" class="
1124
- #~ "\"thickbox\" href=\"%2$s\"> Ver la versión %3$s details</a>"
1125
-
1126
- #~ msgid ""
1127
- #~ "There is a new version of %1$s available. <a target=\"_blank\" class="
1128
- #~ "\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s"
1129
- #~ "\">update now</a>."
1130
- #~ msgstr ""
1131
- #~ "Hay una nueva versión de %1$s disponible. <a target=\"_blank\" class="
1132
- #~ "\"thickbox\" href=\"%2$s\">Ver la versión %3$s details</a> or <a href="
1133
- #~ "\"%4$s\">update now"
1134
-
1135
- #~ msgid "You do not have permission to install plugin updates"
1136
- #~ msgstr "No tienes permiso a instalar las actualizaciones de plugin"
1137
-
1138
- #~ msgid "The license is valid and active."
1139
- #~ msgstr "La licencia es válida y está activada."
1140
-
1141
- #~ msgid "The license is expired."
1142
- #~ msgstr "La licencia expiró."
1143
-
1144
- #~ msgid "The license key does not match."
1145
- #~ msgstr "La clave de licencia no coincide."
1146
-
1147
- #~ msgid "The license is not activated."
1148
- #~ msgstr "La licencia no está activada."
1149
-
1150
- #~ msgid "The license is disabled."
1151
- #~ msgstr "La licencia está desactivada"
1152
-
1153
- #~ msgid "The license is inactive."
1154
- #~ msgstr "La licencia está inactivada"
1155
-
1156
- #~ msgid "The status of the license is unknown."
1157
- #~ msgstr "El estado de la licencia es desconocido"
1158
-
1159
- #~ msgid "License Activation"
1160
- #~ msgstr "La activación de licencia"
1161
-
1162
- #~ msgid "Enter the license key to get automatic upgrades of the plugin."
1163
- #~ msgstr ""
1164
- #~ "Introduce la clave de la licencia para obtener las actualizaciones de "
1165
- #~ "plugin automaticas"
1166
-
1167
- #~ msgid "Set the first image as featured image"
1168
- #~ msgstr "Establece la primera imagen como la imagen destacada"
1169
-
1170
- #~ msgid "Take the first post image if available in the media library"
1171
- #~ msgstr ""
1172
- #~ "Toma la primera imagen de post si está disponible en la Media Library (la "
1173
- #~ "biblioteca multimedia )"
1174
-
1175
- #~ msgid ""
1176
- #~ "Take the first post image from current site domain, copy and add it to "
1177
- #~ "the media library if not available there"
1178
- #~ msgstr ""
1179
- #~ "Toma la primera imagen de post del dominio del sitio web actual, cópiala, "
1180
- #~ "y añádela a la Media Library (la biblioteca multimedia) si no está "
1181
- #~ "disponible ahí"
1182
-
1183
- #~ msgid ""
1184
- #~ "Take the first external post image, download it and add it to the media "
1185
- #~ "library"
1186
- #~ msgstr ""
1187
- #~ "Toma la primera imagen externa de post, descárgala y añádela a la Media "
1188
- #~ "Library (biblioteca multimedia)"
1189
-
1190
- #~ msgid "Take the first image of a WordPress standard gallery"
1191
- #~ msgstr "Toma la primera imagen de galería estándar de WordPress"
1192
-
1193
- #~ msgid "Take the first image of a NextGen Gallery"
1194
- #~ msgstr "Toma la primera imagen de galería de NextGen"
1195
-
1196
- #~ msgid "Remove first embedded image"
1197
- #~ msgstr "Elimina la primera imagen incrustada"
1198
-
1199
- #~ msgid "Remove excess featured images"
1200
- #~ msgstr "Elimina el exceso de imágenes destacadas"
1201
-
1202
- #~ msgid "Multimedia File Filter"
1203
- #~ msgstr "El filtro del archivo de Multimedia"
1204
-
1205
- #~ msgid "Status Filter"
1206
- #~ msgstr "El filtro del estatus"
1207
-
1208
- #~ msgid "Search Filter"
1209
- #~ msgstr "El filtro de búsqueda"
1210
-
1211
- #~ msgid "Time Filter"
1212
- #~ msgstr "El filtro de tiempo"
1213
-
1214
- #~ msgid "Author Filter"
1215
- #~ msgstr "El filtro de autor"
1216
-
1217
- #~ msgid "Custom Taxonomy Filter"
1218
- #~ msgstr "El filtro de taxonomía personalizada"
1219
-
1220
- #~ msgid "Featured Image Size Filter"
1221
- #~ msgstr "El filtro de tamaño de la imagen destacada"
1222
-
1223
- #~ msgid "Parent Page Filter"
1224
- #~ msgstr "El filtro de páginas padres"
1225
-
1226
- #~ msgid "Audio files"
1227
- #~ msgstr "Los archivos de audio"
1228
-
1229
- #~ msgid "Video files"
1230
- #~ msgstr "Los archivos de video"
1231
-
1232
- #~ msgid "Start Date"
1233
- #~ msgstr "La fecha de comienzo"
1234
-
1235
- #~ msgid "End Date"
1236
- #~ msgstr "La fecha final"
1237
-
1238
- #~ msgid "Include the posts of the selected dates"
1239
- #~ msgstr "Incluye los posts de las fechas seleccionadas"
1240
-
1241
- #~ msgid "Custom field name"
1242
- #~ msgstr "El nombre del campo personalizado"
1243
-
1244
- #~ msgid "Operator to test with the value in the custom field"
1245
- #~ msgstr "El operador comprobará el valor en el campo personalizado"
1246
-
1247
- #~ msgid "Custom field value to compare with"
1248
- #~ msgstr "El valor del campo personalizado al compararse con"
1249
-
1250
- #~ msgid "Custom field type"
1251
- #~ msgstr "El tipo del campo personalizado"
1252
-
1253
- #~ msgid "Select an author"
1254
- #~ msgstr "Selecciona el autor"
1255
-
1256
- #~ msgid "is equal"
1257
- #~ msgstr "Es igual"
1258
-
1259
- #~ msgid "is not equal"
1260
- #~ msgstr "No es igual"
1261
-
1262
- #~ msgid "is greater than"
1263
- #~ msgstr "Es mayor de"
1264
-
1265
- #~ msgid "is lower than"
1266
- #~ msgstr "Es inferior a, Es menor que"
1267
-
1268
- #~ msgid "contains"
1269
- #~ msgstr "Contiene"
1270
-
1271
- #~ msgid "Select the custom field to find the associated posts/pages."
1272
- #~ msgstr ""
1273
- #~ "Selecciona el campo personalizado para encontrar posts/páginas asociadas"
1274
-
1275
- #~ msgid ""
1276
- #~ "Optional: Type in the value which will be compared with the value of the "
1277
- #~ "selected custom field."
1278
- #~ msgstr ""
1279
- #~ "Selecciona el campo personalizado para encontrar posts/páginas asociadas"
1280
-
1281
- #~ msgid ""
1282
- #~ "Leave it empty if you just want to test the existence of the custom field "
1283
- #~ "per post/page."
1284
- #~ msgstr ""
1285
- #~ "Déjalo vacío si sólo quieres comprobar la existencia del campo "
1286
- #~ "personalizado por post/página."
1287
-
1288
- #~ msgid ""
1289
- #~ "Optional: Change the operator of the comparison. The default is to "
1290
- #~ "compare equality with the value you type in the 'value' field."
1291
- #~ msgstr ""
1292
- #~ "Opcional: Cambia de operador de la comparación. El comportamiento "
1293
- #~ "predeterminado es comparar la igualdad del valor escrito en el campo ‘ "
1294
- #~ "value’ (valor)"
1295
-
1296
- #~ msgid "There are no custom fields in use."
1297
- #~ msgstr ". No hay ningún campo personalizado en uso"
1298
-
1299
- #~ msgid "Registered terms of the taxonomy <strong>%s</strong>"
1300
- #~ msgstr "Términos de taxonomía registrados <strong>%s</strong>."
1301
-
1302
- #~ msgid "There are no terms of the taxonomy <strong>%s</strong>."
1303
- #~ msgstr "No hay ningún término de taxonomía. <strong>%s</strong>."
1304
-
1305
- #~ msgid "Strange search result with custom taxonomies?"
1306
- #~ msgstr ""
1307
- #~ "¿Un resultado de búsqueda extraño con las taxonomías personalizadas?"
1308
-
1309
- #~ msgid ""
1310
- #~ "The search for custom taxonomy terms could lead to surprising results. "
1311
- #~ "The reason is custom taxonomies can be used in many different ways. It is "
1312
- #~ "not possible to catch them all in one single code expression. If you "
1313
- #~ "should be unsatisfied with the result try other filters to get the result "
1314
- #~ "you want."
1315
- #~ msgstr ""
1316
- #~ "La búsqueda de término de taxonomía personalizada puede llevar a los "
1317
- #~ "resultados sorprendentes. Es que, las taxonomías personalizadas se pueden "
1318
- #~ "usar de múltiple modos.No es posible capturarlas a todas en el único "
1319
- #~ "código de expresión. Si no estás satisfecho con el resultado, prueba "
1320
- #~ "otros filtros para obtener los resultados deseados."
1321
-
1322
- #~ msgid "There are no custom taxonomies."
1323
- #~ msgstr "No hay ninguna taxonomía personalizada."
1324
-
1325
- #~ msgid ""
1326
- #~ "The search will find posts with an already added featured image which its "
1327
- #~ "original image file is smaller than one of the given dimensions."
1328
- #~ msgstr ""
1329
- #~ "La búsqueda encontrará posts con la imagen destacada añadida ya, cuyo "
1330
- #~ "archivo original de imagen es menor que la imagen de las dimensiones "
1331
- #~ "dadas."
1332
-
1333
- #~ msgid "For example you can search for posts with too small featured images."
1334
- #~ msgstr ""
1335
- #~ "Por ejemplo, puedes buscar posts con las imágenes destacadas demasiado "
1336
- #~ "pequeñas."
1337
-
1338
- #~ msgid ""
1339
- #~ "Only positive integers from %d to %d are allowed. By default the "
1340
- #~ "thumbnail dimensions as defined in %s are used."
1341
- #~ msgstr ""
1342
- #~ "Solo los números enteros positivos de %d a %d están permitidos. De forma "
1343
- #~ "predeterminada se usan las dimensiones de la miniatura definidas en %s"
1344
-
1345
- #~ msgid "Select multimedia file types"
1346
- #~ msgstr "Selecciona tipos de archivo multimedia."
1347
-
1348
- #~ msgid ""
1349
- #~ "You can select two multimedia files types: audios and videos. If you "
1350
- #~ "check at least one of both all other post types (posts, pages, etc.) will "
1351
- #~ "be ignored."
1352
- #~ msgstr ""
1353
- #~ "Puedes seleccionar dos tipos de archivo multimedia : de audio y de video. "
1354
- #~ "Si compruebas por lo menos uno de los dos, otros tipos de post (posts, "
1355
- #~ "páginas, etc) serán ignorados."
1356
-
1357
- #~ msgid "Select a parent page"
1358
- #~ msgstr "Selecciona la página padre."
1359
-
1360
- #~ msgid "There are no pages with child pages."
1361
- #~ msgstr "No hay páginas que contienen las páginas secundarias."
1362
-
1363
- #~ msgid "There are no custom post types."
1364
- #~ msgstr "No hay ningún tipo de post personalizado."
1365
-
1366
- #~ msgid "Type in a search term"
1367
- #~ msgstr "Escribe en término de búsqueda."
1368
-
1369
- #~ msgid "Select the statuses of the posts/pages:"
1370
- #~ msgstr "Selecciona los estatus de post/páginas."
1371
-
1372
- #~ msgid "Date range"
1373
- #~ msgstr "El intervalo de fechas"
1374
-
1375
- #~ msgid ""
1376
- #~ "To define a time segment select both the start date and the end date."
1377
- #~ msgstr ""
1378
- #~ "Para definir un intervalo de tiempo selecciona la fecha de comienzo y la "
1379
- #~ "fecha final"
1380
-
1381
- #~ msgid ""
1382
- #~ "You can also define a time period by selecting only one date as the "
1383
- #~ "limiting value of the period."
1384
- #~ msgstr ""
1385
- #~ "También puedes definir un intervalo de tiempo seleccionando una sola "
1386
- #~ "fecha como el valor límite del periodo."
1387
-
1388
- #~ msgid "The listed dates are the date of the publication of stored posts."
1389
- #~ msgstr ""
1390
- #~ "Las fechas listadas son las fechas de publicación de los post almacenados."
1391
-
1392
- #~ msgid "What sort of first image?"
1393
- #~ msgstr "¿Qué tipo de la primera imagen?"
1394
-
1395
- #~ msgid ""
1396
- #~ "Remove the first embedded image from the post content after this image "
1397
- #~ "was set as featured image. This does not affect galleries or attached "
1398
- #~ "images. <strong>There is no undo function. Be careful with this option "
1399
- #~ "and please create a backup of the database of this website before you use "
1400
- #~ "this!</strong>"
1401
- #~ msgstr ""
1402
- #~ "Elimina la primera imagen incrustada del contenido de post al establecer "
1403
- #~ "esta imagen como la imagen destacada. Esto no afecta a las galerías o "
1404
- #~ "imágenes adjuntas. <strong>. No hay la función Deshacer (Anular).¡Ten "
1405
- #~ "cuidado con esta opción y antes de usarla, por favor, crea una copia de "
1406
- #~ "seguridad de datos de este sitio web! </strong>"
1407
-
1408
- #~ msgid ""
1409
- #~ "By default the selected images will be used multiple times in random "
1410
- #~ "order. If you check this option each selected image will be used only "
1411
- #~ "once. If there are more posts than images the remaining posts will not be "
1412
- #~ "changed. If you want to remove the featured images of remaining posts "
1413
- #~ "check the next option additionally."
1414
- #~ msgstr ""
1415
- #~ "De forma predeterminada las imágenes seleccionadas serán usadas varias "
1416
- #~ "veces en orden aleatorio. Si marcas (compruebas) esta opción, cada imagen "
1417
- #~ "seleccionada será usada una sola vez. Si hay más post que las imágenes, "
1418
- #~ "los post restantes no serán cambiados.Si quieres eliminar las imágenes "
1419
- #~ "destacadas de los post restantes marca la siguiente opción adicionalmente."
1420
-
1421
- #~ msgid ""
1422
- #~ "Remove existing featured images of remaining posts if all selected images "
1423
- #~ "are used. This option works only with the previous option."
1424
- #~ msgstr ""
1425
- #~ "Elimina las imágenes destacadas existentes de los post restantes, si "
1426
- #~ "todas imágenes seleccionadas son usadas. Esta opción funciona solo junto "
1427
- #~ "a la opción previa."
1428
-
1429
- #~ msgid "Some advices from experience"
1430
- #~ msgstr "Algunos consejos de experiencia"
1431
-
1432
- #~ msgid ""
1433
- #~ "Looking for external images can take a long time. Please be patient for "
1434
- #~ "at least one minute and do not reload the page! If you would see a "
1435
- #~ "timeout message please start again with a filter that limits the number "
1436
- #~ "of posts."
1437
- #~ msgstr ""
1438
- #~ "La búsqueda de las imágenes externas puede tardar mucho tiempo. ¡Por "
1439
- #~ "favor, ten paciencia por lo menos un minuto y no recargues la página! Si "
1440
- #~ "ves el mensaje de tiempo de espera, por favor, empieza de nuevo con el "
1441
- #~ "filtro que limita el número de post."
1442
-
1443
- #~ msgid ""
1444
- #~ "If you would be unsatisfied with the next results of the search for first "
1445
- #~ "embedded images try the option for external images. Maybe that result "
1446
- #~ "could meet your expectations better."
1447
- #~ msgstr ""
1448
- #~ "Si no estás satisfecho con los siguientes resultados de la búsqueda de "
1449
- #~ "las primeras imágenes incrustadas, prueba con la opción de las imágenes "
1450
- #~ "externas. A lo mejor el resultado podría satisfacer tus expectativas "
1451
- #~ "mejor."
1452
-
1453
- #~ msgid ""
1454
- #~ "Search for audios and videos. This filter will ignore all other post "
1455
- #~ "types automatically."
1456
- #~ msgstr ""
1457
- #~ "Busca los audios y videos. Este filtro ignorará todos los otros tipos de "
1458
- #~ "post automáticamente."
1459
-
1460
- #~ msgid ""
1461
- #~ "Search by several statuses (published, draft, private etc.). By default "
1462
- #~ "all statuses will be affected."
1463
- #~ msgstr ""
1464
- #~ "Busca por los varios estatus (publicado, borrador, privado, etc.) De "
1465
- #~ "forma predeterminada todos los estatus serán afectados."
1466
-
1467
- #~ msgid "Search by search term"
1468
- #~ msgstr "Busca por el término de búsqueda"
1469
-
1470
- #~ msgid "Search by time specifications"
1471
- #~ msgstr "Busca por la especificación de tiempo"
1472
-
1473
- #~ msgid "Search by author"
1474
- #~ msgstr "Busca por el autor"
1475
-
1476
- #~ msgid "Search by other taxonomies like plugin categories etc."
1477
- #~ msgstr "Busca por las otras taxonomías como las categorías de plugin"
1478
-
1479
- #~ msgid "Search by original dimensions of added featured image"
1480
- #~ msgstr ""
1481
- #~ "Busca por las dimensiones originales de la imagen destacada añadida."
1482
-
1483
- #~ msgid "Search child pages by parent page"
1484
- #~ msgstr "Busca las páginas secundarias por la página padre."
1485
-
1486
- #~ msgid ""
1487
- #~ "The plugin will try to find the first image embedded in the content, in a "
1488
- #~ "WordPress standard gallery or attached to a post."
1489
- #~ msgstr ""
1490
- #~ "El plugin intentará a encontrar la primera imagen incrustada en el "
1491
- #~ "contenido, en la galería estándar de WolrdPress, o añadida al post."
1492
-
1493
- #~ msgid "It will also search in NextGen galleries."
1494
- #~ msgstr "Buscará también en las galerías de NextGen."
1495
-
1496
- #~ msgid "/reviews/"
1497
- #~ msgstr "/Las evaluaciones/"
1498
-
1499
- #~ msgid "Your selected approach"
1500
- #~ msgstr "Tu enfoque seleccionado"
1501
-
1502
- #~ msgid "License Settings"
1503
- #~ msgstr "La configuración de la licencia"
1504
-
1505
- #~ msgid "License Key"
1506
- #~ msgstr "La clave de la licencia"
1507
-
1508
- #~ msgid "Enter your license key. Then click on the button."
1509
- #~ msgstr ""
1510
- #~ "Introduce su clave de la licencia. A continuación hay clic en el botón."
1511
-
1512
- #~ msgid "Licence Status"
1513
- #~ msgstr "El estatus de la licencia"
1514
-
1515
- #~ msgid "The license will expire on %1$s at %2$s."
1516
- #~ msgstr "La licencia expirará el %1$s a %2$s"
1517
-
1518
- #~ msgid "There are %d activations left"
1519
- #~ msgstr "Todavía quedan %d activaciones"
1520
-
1521
- #~ msgid "Deactivate License"
1522
- #~ msgstr "Desactiva la licencia"
1523
-
1524
- #~ msgid ""
1525
- #~ "Click to deactivate the license if you do not want to use it on this "
1526
- #~ "server."
1527
- #~ msgstr ""
1528
- #~ "Haz clic en desactivar la licencia si no quieres usarla en este servidor."
1529
-
1530
- #~ msgid "The license expired on %1$s at %2$s."
1531
- #~ msgstr "La licencia expiró el %1$s a %2$s"
1532
-
1533
- #~ msgid "Click here for a new license"
1534
- #~ msgstr "Haz clic aquí para obtener la nueva licencia"
1535
-
1536
- #~ msgid "Activate License"
1537
- #~ msgstr "Activa la licencia"
1538
-
1539
- #~ msgid ""
1540
- #~ "Click to activate the license after you have entered your license key."
1541
- #~ msgstr ""
1542
- #~ "Al introducir su clave de licencia, haz clic aquí para activar su "
1543
- #~ "licencia."
1544
-
1545
- #~ msgid "Important advices about the license"
1546
- #~ msgstr "Los consejos importantes sobre la licencia"
1547
-
1548
- #~ msgid "Why a license?"
1549
- #~ msgstr "¿Por qué la licencia?"
1550
-
1551
- #~ msgid ""
1552
- #~ "With activating the license you will receive automatic upgrades of the "
1553
- #~ "plugin for 365 days since the day of the purchase. Each license key is "
1554
- #~ "valid for one installation of the plugin only."
1555
- #~ msgstr ""
1556
- #~ "Al activar la licencia recibirás las actualizaciones automáticas de "
1557
- #~ "plugin por 365 días desde el día de compra. Cada clave de la licencia es "
1558
- #~ "válida para una sola instalación de plugin."
1559
-
1560
- #~ msgid "Terms of the license"
1561
- #~ msgstr "Los términos de la licencia"
1562
-
1563
- #~ msgid ""
1564
- #~ "By activating this license you are also confirming your agreement to be "
1565
- #~ "bound by the terms of the license associated with this plugin which you "
1566
- #~ "acknowledged at the time of the purchase checkout."
1567
- #~ msgstr ""
1568
- #~ "Activando esta licencia confirmas el acuerdo de estar obligado por los "
1569
- #~ "términos de licencia asociados con este plugin, que has aceptado al "
1570
- #~ "comprarlo y pagarlo."
1571
-
1572
- #~ msgid "http://www.quickfeaturedimages.com/terms-licence-withdrawal/"
1573
- #~ msgstr "http://www.quickfeaturedimages.com/terms-licence-withdrawal/"
1574
-
1575
- #~ msgid "Read the terms of the license (in new window)"
1576
- #~ msgstr "Lee los términos de la licencia (en una nueva ventana)"
1577
-
1578
- #~ msgid ""
1579
- #~ "This includes that the warranty offered by the plugin author is limited "
1580
- #~ "to correcting any defects and that the plugin author will not be held "
1581
- #~ "liable for any actions or financial loss occurring as a result of using "
1582
- #~ "this plugin."
1583
- #~ msgstr ""
1584
- #~ "Es que la garantía ofrecida por el autor de plugin es limitada al "
1585
- #~ "corregir cualquier defecto. El autor de plugin no será responsable por "
1586
- #~ "cualquier acción o perdida financiera hecha como consecuencia del uso de "
1587
- #~ "este plugin."
1588
-
1589
- #~ msgid "Contact"
1590
- #~ msgstr "El contacto"
1591
-
1592
- #~ msgid ""
1593
- #~ "If you have any issues and problems with activating you can contact the "
1594
- #~ "plugin author for solutions."
1595
- #~ msgstr ""
1596
- #~ "Si tienes cualquier problema con la activación de la licencia, puedes "
1597
- #~ "comunicar con el autor para obtener soluciones."
1598
-
1599
- #~ msgid "http://www.quickfeaturedimages.com/contact/"
1600
- #~ msgstr "http://www.quickfeaturedimages.com/contact/"
1601
-
1602
- #~ msgid "Contact page (in new window)"
1603
- #~ msgstr "La página de contacto (en una ventana nueva)"
1604
-
1605
- #~ msgid "Latest News"
1606
- #~ msgstr "Las últimas noticias"
4
  msgstr ""
5
  "Project-Id-Version: Quick Featured Images Pro\n"
6
  "Report-Msgid-Bugs-To: http://quickfeaturedimages.com\n"
7
+ "POT-Creation-Date: 2017-07-06 23:13+0200\n"
8
+ "PO-Revision-Date: 2017-07-06 23:17+0200\n"
9
  "Last-Translator: Martin Stehle <m.stehle@gmx.de>\n"
10
  "Language-Team: m.stehle@gmx.de\n"
11
  "Language: es_ES\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
+ "X-Generator: Poedit 2.0.2\n"
16
  "X-Poedit-KeywordsList: __;_e;_n;_x;esc_html_e;esc_html__;esc_attr_e;"
17
  "esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_x:1,2c;_n:1,2\n"
18
  "X-Poedit-Basepath: ..\n"
44
  msgid "Welcome to %s! You can find the plugin at %s."
45
  msgstr "Bienvenido a %s! Puedes encontrar el plugin en %s."
46
 
47
+ #: admin/class-quick-featured-images-columns.php:295
48
+ #: admin/class-quick-featured-images-columns.php:456
49
  #, php-format
50
  msgid "Change &#8220;%s&#8221;"
51
  msgstr "Cambia &#8220;%s&#8221;"
52
 
53
+ #: admin/class-quick-featured-images-columns.php:320
54
+ #: admin/class-quick-featured-images-columns.php:457
55
  #, php-format
56
  msgid "Remove &#8220;%s&#8221;"
57
  msgstr "Eliminar &#8220;%s&#8221;"
58
 
59
+ #: admin/class-quick-featured-images-columns.php:364
60
+ #: admin/class-quick-featured-images-columns.php:377
61
+ #: admin/class-quick-featured-images-columns.php:529
62
  #, php-format
63
  msgid "Set image for &#8220;%s&#8221;"
64
  msgstr "Establecer imagen para &#8220;%s&#8221;"
164
  msgid "Controls which minimum user role can see the plugin."
165
  msgstr "Controla qué papel mínimo el usuario puede ver el plugin."
166
 
167
+ #: admin/class-quick-featured-images-tools.php:471
168
  #, php-format
169
  msgid "Wrong image ID %d"
170
  msgstr "La identificación de la imagen incorrecta ID %d"
171
 
172
+ #: admin/class-quick-featured-images-tools.php:573
173
  msgid "Select"
174
  msgstr "Selecciona"
175
 
176
+ #: admin/class-quick-featured-images-tools.php:574
177
  msgid "Add filter"
178
  msgstr "Añade el filtro"
179
 
180
+ #: admin/class-quick-featured-images-tools.php:575
181
  msgid "Refine"
182
  msgstr "Refinar"
183
 
184
+ #: admin/class-quick-featured-images-tools.php:576
185
  msgid "Confirm"
186
  msgstr "Confirmar"
187
 
188
+ #: admin/class-quick-featured-images-tools.php:577
189
  msgid "Perform"
190
  msgstr "Realizar"
191
 
192
+ #: admin/class-quick-featured-images-tools.php:581
193
  msgid "Set the selected image as new featured image"
194
  msgstr "Establece la imagen seleccionada como la imagen destacada nueva"
195
 
196
+ #: admin/class-quick-featured-images-tools.php:582
197
  msgid "Replace featured images by the selected image"
198
  msgstr "Reemplaza las imágenes destacadas por la imagen seleccionada"
199
 
200
+ #: admin/class-quick-featured-images-tools.php:583
201
  msgid "Remove the selected image as featured image"
202
  msgstr "Elimina la imagen seleccionada como la imagen destacada"
203
 
204
+ #: admin/class-quick-featured-images-tools.php:586
205
  msgid "Remove any image as featured image"
206
  msgstr "Elimina cualquiera imagen como la imagen destacada"
207
 
208
+ #: admin/class-quick-featured-images-tools.php:587
209
+ msgid "Remove all featured images without existing image files"
210
+ msgstr ""
211
+ "Eliminar todas las imágenes destacadas sin archivos de imagen existentes"
212
+
213
+ #: admin/class-quick-featured-images-tools.php:590
214
  msgid "Set multiple images randomly as featured images"
215
  msgstr "Establece las imágenes múltiples al azar como la imagen destacada"
216
 
217
+ #: admin/class-quick-featured-images-tools.php:594
218
  msgid "Overwrite featured images"
219
  msgstr "Sobrescribe las imágenes destacadas"
220
 
221
+ #: admin/class-quick-featured-images-tools.php:595
222
  msgid "Consider only posts without any featured image"
223
  msgstr "Considera solamente posts sin cualquier imagen destacada"
224
 
225
+ #: admin/class-quick-featured-images-tools.php:599
226
  msgid "Post Type Filter"
227
  msgstr "El filtro de tipo de post"
228
 
229
+ #: admin/class-quick-featured-images-tools.php:600
230
  msgid "Category Filter"
231
  msgstr "El filtro de la categoría"
232
 
233
+ #: admin/class-quick-featured-images-tools.php:601
234
  msgid "Tag Filter"
235
  msgstr "El filtro de las etiquetas"
236
 
237
+ #: admin/class-quick-featured-images-tools.php:630
238
  msgid "Image width in pixels lower than"
239
  msgstr "El tipo del campo personalizado"
240
 
241
+ #: admin/class-quick-featured-images-tools.php:631
242
  msgid "Image height in pixels lower than"
243
  msgstr "La altura de la imagen en píxeles es inferior al"
244
 
245
+ #: admin/class-quick-featured-images-tools.php:740
246
  #, php-format
247
  msgid "The input field %s is empty."
248
  msgstr "El campo de entrada %s está vacío."
249
 
250
+ #: admin/class-quick-featured-images-tools.php:741
251
  msgid "Type in a value into the input field."
252
  msgstr "Escribe el valor en el campo de la entrada."
253
 
254
+ #: admin/class-quick-featured-images-tools.php:744
255
  #, php-format
256
  msgid "%s is not defined."
257
  msgstr "%s no está definido."
258
 
259
+ #: admin/class-quick-featured-images-tools.php:745
260
  msgid "Check how to define the value."
261
  msgstr "Comprueba cómo definir el valor."
262
 
263
+ #: admin/class-quick-featured-images-tools.php:748
264
  msgid "There is no selected image."
265
  msgstr "No hay ninguna imagen seleccionada."
266
 
267
+ #: admin/class-quick-featured-images-tools.php:749
268
  msgid "Select an image from the media library."
269
  msgstr "Selecciona la imagen de Media library (la biblioteca multimedia)."
270
 
271
+ #: admin/class-quick-featured-images-tools.php:752
272
  #: admin/views/section_image.php:51
273
  msgid "You have not selected an action."
274
  msgstr "No has seleccionado ninguna acción."
275
 
276
+ #: admin/class-quick-featured-images-tools.php:753
277
  msgid "Start again and select which action you want to apply."
278
  msgstr "Empieza de nuevo y selecciona la acción que quieres aplicar."
279
 
280
+ #: admin/class-quick-featured-images-tools.php:756
281
  #, php-format
282
  msgid "The input field %s has an invalid value."
283
  msgstr "El valor del campo %s de la entrada es inválido."
284
 
285
+ #: admin/class-quick-featured-images-tools.php:757
286
  msgid "Type in valid values in the input field."
287
  msgstr "El valor del campo de la entrada es inválido."
288
 
289
+ #: admin/class-quick-featured-images-tools.php:761
290
  msgid "Type in values stored by WordPress."
291
  msgstr "Escribe los valores válidos en el campo de la entrada."
292
 
293
+ #: admin/class-quick-featured-images-tools.php:1926
294
  msgid "Set, replace, remove"
295
  msgstr "Establece, reemplaza, elimina"
296
 
297
+ #: admin/class-quick-featured-images-tools.php:1937
298
  msgid "Bulk set, replace and remove featured images for existing posts"
299
  msgstr ""
300
  "Configura el bulk, reemplaza y elimina las imágenes destacadas por posts "
301
  "existentes"
302
 
303
+ #: admin/class-quick-featured-images-tools.php:2046
304
  msgid "Bulk set as featured image"
305
  msgstr "El bulk configurado como la imagen destacada"
306
 
340
  msgid "Modify selection"
341
  msgstr "Modifica la selección"
342
 
343
+ #: admin/views/form_confirm.php:1
344
+ msgid "Preview of your selection"
345
+ msgstr "La vista previa de su selección"
346
+
347
+ #: admin/views/form_confirm.php:2
348
+ #, php-format
349
+ msgid "%d matches found"
350
+ msgstr "%d Las coincidencias encontradas"
351
+
352
+ #: admin/views/form_confirm.php:12
353
+ msgid ""
354
+ "Should the entries of featured images without image files be removed from "
355
+ "the database?"
356
+ msgstr ""
357
+ "¿Deberían eliminarse de la base de datos las entradas de imágenes destacadas "
358
+ "sin archivos de imagen?"
359
+
360
+ #: admin/views/form_confirm.php:15 admin/views/section_results.php:16
361
+ msgid "Details"
362
+ msgstr "Los detalles"
363
+
364
+ #: admin/views/form_confirm.php:16 admin/views/section_defaults.php:17
365
+ #: admin/views/section_results.php:18
366
+ msgid "No."
367
+ msgstr "Nro."
368
+
369
+ #: admin/views/form_confirm.php:17 admin/views/section_results.php:17
370
+ msgid "Current Featured Image"
371
+ msgstr "La imagen destacada actual"
372
+
373
+ #: admin/views/form_confirm.php:18
374
+ msgid "Future Featured Image"
375
+ msgstr "La imagen destacada futura"
376
+
377
+ #: admin/views/form_confirm.php:19
378
+ msgid "written on"
379
+ msgstr "escrito en"
380
+
381
+ #: admin/views/form_confirm.php:20
382
+ msgid "by"
383
+ msgstr "por"
384
+
385
+ #: admin/views/form_confirm.php:35
386
  msgid "Should the selected image be set as featured image to all listed posts?"
387
  msgstr ""
388
  "¿Debería la imagen seleccionada estar establecida como la imagen destacada "
389
  "en todos los post listados?"
390
 
391
+ #: admin/views/form_confirm.php:38
392
  msgid ""
393
  "Should the selected images be set randomly as featured images to all listed "
394
  "posts?"
396
  "¿Deberían las imágenes seleccionadas estar establecidas al azar como las "
397
  "imágenes destacadas en todos los post listados?"
398
 
399
+ #: admin/views/form_confirm.php:41
400
  msgid ""
401
  "Should the current set featured image be replaced by the selected image at "
402
  "all listed posts?"
404
  "¿Debería la imagen destacada actual ser reemplazada por la imagen "
405
  "seleccionada en todos los post listados?"
406
 
407
+ #: admin/views/form_confirm.php:44
408
  msgid "Should the selected image be removed from all listed posts?"
409
  msgstr ""
410
  "¿Debería la imagen seleccionada ser eliminada de todos los post listados?"
411
 
412
+ #: admin/views/form_confirm.php:47
413
  msgid "Should the future images be set as featured images at all listed posts?"
414
  msgstr ""
415
  "¿Deberían las imágenes futuras estar establecidas como las imágenes "
416
  "destacadas en todos los post listados?"
417
 
418
+ #: admin/views/form_confirm.php:50
419
  msgid "Should the added featured images be removed from all listed posts?"
420
  msgstr ""
421
  "¿Deberían las imágenes destacadas añadidas ser eliminadas de todos los post "
422
  "listados?"
423
 
424
+ #: admin/views/form_confirm.php:54 admin/views/section_results.php:27
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
425
  msgid ""
426
  "The list is in alphabetical order according to post title. You can edit a "
427
  "post in a new window by clicking on its link in the list."
429
  "La lista está ordenada alfabéticamente por el titulo de post. Puedes editar "
430
  "post en una ventana nueva al hacer clic en su enlace en la lista."
431
 
432
+ #: admin/views/form_confirm.php:120
433
  msgid "Confirm the change"
434
  msgstr "Confirma el cambio"
435
 
436
+ #: admin/views/form_confirm.php:121
437
  msgid "You can not undo the operation!"
438
  msgstr "¡No puedes deshacer la operación!"
439
 
440
+ #: admin/views/form_confirm.php:182 admin/views/section_errormsg.php:8
441
+ #: admin/views/section_results.php:86
442
  msgid "Start again"
443
  msgstr "Empieza de nuevo"
444
 
445
+ #: admin/views/form_confirm.php:182
446
  msgid "or refine your selection with the following form fields."
447
  msgstr "o refina su selección con los siguientes campos del formulario."
448
 
566
  msgstr "Reemplaza las imágenes destacadas por la imagen seleccionada"
567
 
568
  #: admin/views/form_select.php:77 admin/views/form_select.php:115
569
+ #: admin/views/form_select.php:119 admin/views/form_start.php:113
570
  #: admin/views/section_defaults.php:492 admin/views/section_footer.php:59
571
  #: admin/views/section_overview.php:91
572
  msgid "Get the premium version"
573
  msgstr "Obtener la Pro versión"
574
 
575
  #: admin/views/form_select.php:77 admin/views/form_select.php:115
576
+ #: admin/views/form_select.php:119 admin/views/form_start.php:113
577
  #: admin/views/section_defaults.php:492 admin/views/section_footer.php:59
578
  #: admin/views/section_overview.php:90 admin/views/section_overview.php:91
579
  msgid "/"
622
  msgstr "¿Buscas más opciones y más filtros de búsqueda?"
623
 
624
  #: admin/views/form_select.php:116
 
 
 
 
 
 
 
 
625
  msgid "If you encounter a white, blank page, read this"
626
  msgstr "Si surge la página en blanco, lee esto"
627
 
628
+ #: admin/views/form_select.php:117
629
  msgid ""
630
  "Facing a white blank page while trying to treat thousands of posts is the "
631
  "effect of limited memory capacities on the website server. Instead of "
638
  "pequeñas cantidades de post varias veces sucesivamente. Para conseguirlo, "
639
  "haz lo siguiente:"
640
 
641
+ #: admin/views/form_select.php:120
642
  msgid "add the time filter,"
643
  msgstr "añade el filtro de tiempo,"
644
 
645
+ #: admin/views/form_select.php:121
646
  msgid "set a small time range,"
647
  msgstr "establece el período limitado de tiempo,"
648
 
649
+ #: admin/views/form_select.php:122
650
  msgid "do the process"
651
  msgstr "realiza el proceso"
652
 
653
+ #: admin/views/form_select.php:123
654
  msgid "and repeat it with the next time range as often as needed."
655
  msgstr ""
656
  "y realízalo de nuevo con el periodo de tiempo siguiente las veces que te "
657
  "sean necesarias."
658
 
659
+ #: admin/views/form_select.php:125
660
  msgid ""
661
  "This way is not as fast as one single run, but still much faster than "
662
  "setting the images for each post manually."
665
  "mucho más rápido que el establecimiento de las imágenes para cada post de "
666
  "forma manual."
667
 
668
+ #: admin/views/form_select.php:130
669
+ msgid ""
670
+ "On the next page you can refine the filters. If you did not select any "
671
+ "filter you will go to the preview list directly."
672
+ msgstr ""
673
+ "El la página siguiente puedes refinar sus filtros. Si no has seleccionado "
674
+ "ningún, filtro te vas a la lista previa directamente."
675
+
676
  #: admin/views/form_start.php:6 admin/views/section_defaults.php:215
677
  msgid ""
678
  "The current theme does not support featured images. Anyway you can use this "
991
  msgid "Credits and informations"
992
  msgstr "Los créditos y las informaciones"
993
 
994
+ #: admin/views/section_footer.php:54 admin/views/section_results.php:87
995
  msgid "Do you like the plugin?"
996
  msgstr "¿Te gusta el plugin?"
997
 
998
+ #: admin/views/section_footer.php:54 admin/views/section_results.php:88
999
  msgid "Please rate it at wordpress.org!"
1000
  msgstr "¡Por favor califícalo en at wordpress.org!"
1001
 
1109
  msgid "Results of the action"
1110
  msgstr "Los resultados de la acción"
1111
 
1112
+ #: admin/views/section_results.php:19
1113
  msgid "Changed successfully"
1114
  msgstr "Cambiado con éxito"
1115
 
1116
+ #: admin/views/section_results.php:20
1117
  msgid "Unchanged"
1118
  msgstr "Sin alterar"
1119
 
1120
+ #: admin/views/section_results.php:82
1121
  msgid "No matches found."
1122
  msgstr "No se han encontrado coincidencias."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/quick-featured-images-pt_BR.mo CHANGED
Binary file
languages/quick-featured-images-pt_BR.po CHANGED
@@ -4,15 +4,15 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Quick Featured Images\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/plugins/quick-featured-images\n"
7
- "POT-Creation-Date: 2017-03-30 22:57+0200\n"
8
- "PO-Revision-Date: 2017-03-30 22:57+0200\n"
9
  "Last-Translator: Martin Stehle <m.stehle@gmx.de>\n"
10
  "Language-Team: m.stehle@gmx.de\n"
11
  "Language: pt_BR\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
- "X-Generator: Poedit 2.0\n"
16
  "X-Poedit-KeywordsList: __;_e;_n;_x;esc_html_e;esc_html__;esc_attr_e;"
17
  "esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_x:1,2c;_n:1,2\n"
18
  "X-Poedit-Basepath: ..\n"
@@ -44,20 +44,21 @@ msgstr ""
44
  msgid "Welcome to %s! You can find the plugin at %s."
45
  msgstr "Bem-vindo ao %s! Você pode encontrar o plugin em %s."
46
 
47
- #: admin/class-quick-featured-images-columns.php:294
48
- #: admin/class-quick-featured-images-columns.php:414
49
  #, php-format
50
  msgid "Change &#8220;%s&#8221;"
51
  msgstr "Alterar &#8220;%s&#8221;"
52
 
53
- #: admin/class-quick-featured-images-columns.php:317
54
- #: admin/class-quick-featured-images-columns.php:415
55
  #, php-format
56
  msgid "Remove &#8220;%s&#8221;"
57
  msgstr "Remover &#8220;%s&#8221;"
58
 
59
- #: admin/class-quick-featured-images-columns.php:339
60
- #: admin/class-quick-featured-images-columns.php:484
 
61
  #, php-format
62
  msgid "Set image for &#8220;%s&#8221;"
63
  msgstr "Definir imagem para &#8220;%s&#8221;"
@@ -157,138 +158,142 @@ msgstr ""
157
  msgid "Controls which minimum user role can see the plugin."
158
  msgstr "Controla qual função de usuário mínima pode ver o plug-in."
159
 
160
- #: admin/class-quick-featured-images-tools.php:443
161
  #, php-format
162
  msgid "Wrong image ID %d"
163
  msgstr "ID de imagem errado %d"
164
 
165
- #: admin/class-quick-featured-images-tools.php:544
166
  msgid "Select"
167
  msgstr "Selecionar"
168
 
169
- #: admin/class-quick-featured-images-tools.php:545
170
  msgid "Add filter"
171
  msgstr "Adicionar um filtro"
172
 
173
- #: admin/class-quick-featured-images-tools.php:546
174
  msgid "Refine"
175
  msgstr "Refinar"
176
 
177
- #: admin/class-quick-featured-images-tools.php:547
178
  msgid "Confirm"
179
  msgstr "Confirmar"
180
 
181
- #: admin/class-quick-featured-images-tools.php:548
182
  msgid "Perform"
183
  msgstr "Executar"
184
 
185
- #: admin/class-quick-featured-images-tools.php:552
186
  msgid "Set the selected image as new featured image"
187
  msgstr "Definir a imagem selecionada como nova imagem destacada"
188
 
189
- #: admin/class-quick-featured-images-tools.php:553
190
  msgid "Replace featured images by the selected image"
191
  msgstr "Substituir imagens destacadas pela imagem selecionada"
192
 
193
- #: admin/class-quick-featured-images-tools.php:554
194
  msgid "Remove the selected image as featured image"
195
  msgstr "Remover a imagem selecionada como imagem destacada"
196
 
197
- #: admin/class-quick-featured-images-tools.php:557
198
  msgid "Remove any image as featured image"
199
  msgstr "Remover qualquer imagem como imagem destacada"
200
 
201
- #: admin/class-quick-featured-images-tools.php:560
 
 
 
 
202
  msgid "Set multiple images randomly as featured images"
203
  msgstr "Definir várias imagens aleatoriamente como imagens destacadas"
204
 
205
- #: admin/class-quick-featured-images-tools.php:564
206
  msgid "Overwrite featured images"
207
  msgstr "Sobrescrever imagens destacadas"
208
 
209
- #: admin/class-quick-featured-images-tools.php:565
210
  msgid "Consider only posts without any featured image"
211
  msgstr "Considerar apenas posts sem nenhuma imagem destacada"
212
 
213
- #: admin/class-quick-featured-images-tools.php:569
214
  msgid "Post Type Filter"
215
  msgstr "Filtro de tipo de posts"
216
 
217
- #: admin/class-quick-featured-images-tools.php:570
218
  msgid "Category Filter"
219
  msgstr "Filtro por categoria"
220
 
221
- #: admin/class-quick-featured-images-tools.php:571
222
  msgid "Tag Filter"
223
  msgstr "Filtro por tag"
224
 
225
- #: admin/class-quick-featured-images-tools.php:600
226
  msgid "Image width in pixels lower than"
227
  msgstr "Largura da imagem em pixels menor que"
228
 
229
- #: admin/class-quick-featured-images-tools.php:601
230
  msgid "Image height in pixels lower than"
231
  msgstr "Altura da imagem em pixels menor que"
232
 
233
- #: admin/class-quick-featured-images-tools.php:710
234
  #, php-format
235
  msgid "The input field %s is empty."
236
  msgstr "O campo de entrada %s está vazio."
237
 
238
- #: admin/class-quick-featured-images-tools.php:711
239
  msgid "Type in a value into the input field."
240
  msgstr "Digite um valor para o campo de entrada."
241
 
242
- #: admin/class-quick-featured-images-tools.php:714
243
  #, php-format
244
  msgid "%s is not defined."
245
  msgstr "%s não está definido."
246
 
247
- #: admin/class-quick-featured-images-tools.php:715
248
  msgid "Check how to define the value."
249
  msgstr "Veja como definir o valor."
250
 
251
- #: admin/class-quick-featured-images-tools.php:718
252
  msgid "There is no selected image."
253
  msgstr "Não há nenhuma imagem selecionada."
254
 
255
- #: admin/class-quick-featured-images-tools.php:719
256
  msgid "Select an image from the media library."
257
  msgstr "Selecione uma imagem da biblioteca de mídia."
258
 
259
- #: admin/class-quick-featured-images-tools.php:722
260
  #: admin/views/section_image.php:51
261
  msgid "You have not selected an action."
262
  msgstr "Você não selecionou uma ação."
263
 
264
- #: admin/class-quick-featured-images-tools.php:723
265
  msgid "Start again and select which action you want to apply."
266
  msgstr "Comece de novo e selecione a ação que você deseja aplicar."
267
 
268
- #: admin/class-quick-featured-images-tools.php:726
269
  #, php-format
270
  msgid "The input field %s has an invalid value."
271
  msgstr "O campo de entrada %s tem um valor inválido."
272
 
273
- #: admin/class-quick-featured-images-tools.php:727
274
  msgid "Type in valid values in the input field."
275
  msgstr "Digite valores válidos no campo de entrada."
276
 
277
- #: admin/class-quick-featured-images-tools.php:731
278
  msgid "Type in values stored by WordPress."
279
  msgstr "Digite valores armazenados pelo WordPress."
280
 
281
- #: admin/class-quick-featured-images-tools.php:1846
282
  msgid "Set, replace, remove"
283
  msgstr "Definir, substituir, remover"
284
 
285
- #: admin/class-quick-featured-images-tools.php:1857
286
  msgid "Bulk set, replace and remove featured images for existing posts"
287
  msgstr ""
288
  "Definir, substituir e remover imagens destacadas em massa para posts "
289
  "existentes"
290
 
291
- #: admin/class-quick-featured-images-tools.php:1966
292
  msgid "Bulk set as featured image"
293
  msgstr "Definir imagem destacada em massa"
294
 
@@ -327,13 +332,55 @@ msgstr ""
327
  msgid "Modify selection"
328
  msgstr "Modificar seleção"
329
 
330
- #: admin/views/form_confirm.php:4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
331
  msgid "Should the selected image be set as featured image to all listed posts?"
332
  msgstr ""
333
  "Deve a imagem selecionada ser definido como uma imagem destacada a todos os "
334
  "posts listados?"
335
 
336
- #: admin/views/form_confirm.php:7
337
  msgid ""
338
  "Should the selected images be set randomly as featured images to all listed "
339
  "posts?"
@@ -341,7 +388,7 @@ msgstr ""
341
  "Devem as imagens selecionadas serem definidas aleatoriamente como imagens "
342
  "destacadas a todos os posts listados?"
343
 
344
- #: admin/views/form_confirm.php:10
345
  msgid ""
346
  "Should the current set featured image be replaced by the selected image at "
347
  "all listed posts?"
@@ -349,57 +396,23 @@ msgstr ""
349
  "Devem as imagens destacadas atuais serem substituídas pela imagem secionada "
350
  "em todos os posts listados?"
351
 
352
- #: admin/views/form_confirm.php:13
353
  msgid "Should the selected image be removed from all listed posts?"
354
  msgstr "Deve a imagem selecionada ser removida de todos os posts listados?"
355
 
356
- #: admin/views/form_confirm.php:16
357
  msgid "Should the future images be set as featured images at all listed posts?"
358
  msgstr ""
359
  "Devem as futuras imagens serem definidas como imagens destacadas em todos os "
360
  "posts listados?"
361
 
362
- #: admin/views/form_confirm.php:19
363
  msgid "Should the added featured images be removed from all listed posts?"
364
  msgstr ""
365
  "Devem as imagens destacadas adicionadas serem removidas de todos os posts "
366
  "listados?"
367
 
368
- #: admin/views/form_confirm.php:24
369
- msgid "Preview of your selection"
370
- msgstr "Pré-visualizar a sua seleção"
371
-
372
- #: admin/views/form_confirm.php:25
373
- #, php-format
374
- msgid "%d matches found"
375
- msgstr "%d registros encontrados"
376
-
377
- #: admin/views/form_confirm.php:29 admin/views/section_results.php:5
378
- msgid "Details"
379
- msgstr "Detalhes"
380
-
381
- #: admin/views/form_confirm.php:30 admin/views/section_defaults.php:17
382
- #: admin/views/section_results.php:7
383
- msgid "No."
384
- msgstr "Nº."
385
-
386
- #: admin/views/form_confirm.php:31 admin/views/section_results.php:6
387
- msgid "Current Featured Image"
388
- msgstr "Imagem Destacada atual"
389
-
390
- #: admin/views/form_confirm.php:32
391
- msgid "Future Featured Image"
392
- msgstr "Imagem Destacada futura"
393
-
394
- #: admin/views/form_confirm.php:33
395
- msgid "written on"
396
- msgstr "escrito em"
397
-
398
- #: admin/views/form_confirm.php:34
399
- msgid "by"
400
- msgstr "por"
401
-
402
- #: admin/views/form_confirm.php:48 admin/views/section_results.php:16
403
  msgid ""
404
  "The list is in alphabetical order according to post title. You can edit a "
405
  "post in a new window by clicking on its link in the list."
@@ -407,20 +420,20 @@ msgstr ""
407
  "A lista está em ordem alfabética de acordo com o título do post. Você pode "
408
  "editar um post em uma nova janela clicando em seu link na lista."
409
 
410
- #: admin/views/form_confirm.php:111
411
  msgid "Confirm the change"
412
  msgstr "Confirme a mudança"
413
 
414
- #: admin/views/form_confirm.php:112
415
  msgid "You can not undo the operation!"
416
  msgstr "Você não pode desfazer a operação!"
417
 
418
- #: admin/views/form_confirm.php:173 admin/views/section_errormsg.php:8
419
- #: admin/views/section_results.php:74
420
  msgid "Start again"
421
  msgstr "Começar novamente"
422
 
423
- #: admin/views/form_confirm.php:173
424
  msgid "or refine your selection with the following form fields."
425
  msgstr "ou refine sua seleção com os campos a seguir."
426
 
@@ -545,7 +558,7 @@ msgstr ""
545
  "forem usadas"
546
 
547
  #: admin/views/form_select.php:77 admin/views/form_select.php:115
548
- #: admin/views/form_select.php:137 admin/views/form_start.php:113
549
  #: admin/views/section_defaults.php:492 admin/views/section_footer.php:59
550
  #: admin/views/section_overview.php:91
551
  msgid "Get the premium version"
@@ -553,7 +566,7 @@ msgstr "Obter a versão premium"
553
 
554
  # Path to language site
555
  #: admin/views/form_select.php:77 admin/views/form_select.php:115
556
- #: admin/views/form_select.php:137 admin/views/form_start.php:113
557
  #: admin/views/section_defaults.php:492 admin/views/section_footer.php:59
558
  #: admin/views/section_overview.php:90 admin/views/section_overview.php:91
559
  msgid "/"
@@ -602,18 +615,10 @@ msgid "Are you looking for more options and more filters?"
602
  msgstr "Você está procurando mais opções e mais filtros?"
603
 
604
  #: admin/views/form_select.php:116
605
- msgid ""
606
- "On the next page you can refine the filters. If you did not select any "
607
- "filter you will go to the preview list directly."
608
- msgstr ""
609
- "Na próxima página você pode refinar os filtros. Se você não selecionar "
610
- "qualquer filtro que você vai diretamente para a lista de pré-visualização."
611
-
612
- #: admin/views/form_select.php:134
613
  msgid "If you encounter a white, blank page, read this"
614
  msgstr "Se você encontrar uma página branca, em branco, leia isto"
615
 
616
- #: admin/views/form_select.php:135
617
  msgid ""
618
  "Facing a white blank page while trying to treat thousands of posts is the "
619
  "effect of limited memory capacities on the website server. Instead of "
@@ -626,24 +631,24 @@ msgstr ""
626
  "tratar pequenas quantidades de posts várias vezes sucessivamente. Para "
627
  "conseguir isso faça:"
628
 
629
- #: admin/views/form_select.php:138
630
  msgid "add the time filter,"
631
  msgstr "adicione o filtro de tempo,"
632
 
633
- #: admin/views/form_select.php:139
634
  msgid "set a small time range,"
635
  msgstr "defina um pequeno intervalo de tempo,"
636
 
637
- #: admin/views/form_select.php:140
638
  msgid "do the process"
639
  msgstr "faça o processo"
640
 
641
- #: admin/views/form_select.php:141
642
  msgid "and repeat it with the next time range as often as needed."
643
  msgstr ""
644
  "e repeta com o próximo intervalo de tempo quantas vezes for necessário."
645
 
646
- #: admin/views/form_select.php:143
647
  msgid ""
648
  "This way is not as fast as one single run, but still much faster than "
649
  "setting the images for each post manually."
@@ -651,6 +656,14 @@ msgstr ""
651
  "Desta forma, não é tão rápido como uma única vez, mas ainda muito mais "
652
  "rápido do que a criação das imagens para cada post manualmente."
653
 
 
 
 
 
 
 
 
 
654
  #: admin/views/form_start.php:6 admin/views/section_defaults.php:215
655
  msgid ""
656
  "The current theme does not support featured images. Anyway you can use this "
@@ -964,11 +977,11 @@ msgstr "Solução"
964
  msgid "Credits and informations"
965
  msgstr "Créditos e informações"
966
 
967
- #: admin/views/section_footer.php:54 admin/views/section_results.php:75
968
  msgid "Do you like the plugin?"
969
  msgstr "Gostou do plugin?"
970
 
971
- #: admin/views/section_footer.php:54 admin/views/section_results.php:76
972
  msgid "Please rate it at wordpress.org!"
973
  msgstr "Por favor avalie ele no wordpress.org!"
974
 
@@ -1081,20 +1094,14 @@ msgstr "A versão premium"
1081
  msgid "Results of the action"
1082
  msgstr "Resultados da ação"
1083
 
1084
- #: admin/views/section_results.php:8
1085
  msgid "Changed successfully"
1086
  msgstr "Alterado com sucesso"
1087
 
1088
- #: admin/views/section_results.php:9
1089
  msgid "Unchanged"
1090
  msgstr "Inalterado"
1091
 
1092
- #: admin/views/section_results.php:70
1093
  msgid "No matches found."
1094
  msgstr "Nenhum resultado encontrado."
1095
-
1096
- #~ msgid "There are no featured images in use."
1097
- #~ msgstr "Não há imagens destacadas em uso."
1098
-
1099
- #~ msgid "Image Columns"
1100
- #~ msgstr "Colunas de imagem"
4
  msgstr ""
5
  "Project-Id-Version: Quick Featured Images\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/plugins/quick-featured-images\n"
7
+ "POT-Creation-Date: 2017-07-06 23:13+0200\n"
8
+ "PO-Revision-Date: 2017-07-06 23:17+0200\n"
9
  "Last-Translator: Martin Stehle <m.stehle@gmx.de>\n"
10
  "Language-Team: m.stehle@gmx.de\n"
11
  "Language: pt_BR\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
+ "X-Generator: Poedit 2.0.2\n"
16
  "X-Poedit-KeywordsList: __;_e;_n;_x;esc_html_e;esc_html__;esc_attr_e;"
17
  "esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_x:1,2c;_n:1,2\n"
18
  "X-Poedit-Basepath: ..\n"
44
  msgid "Welcome to %s! You can find the plugin at %s."
45
  msgstr "Bem-vindo ao %s! Você pode encontrar o plugin em %s."
46
 
47
+ #: admin/class-quick-featured-images-columns.php:295
48
+ #: admin/class-quick-featured-images-columns.php:456
49
  #, php-format
50
  msgid "Change &#8220;%s&#8221;"
51
  msgstr "Alterar &#8220;%s&#8221;"
52
 
53
+ #: admin/class-quick-featured-images-columns.php:320
54
+ #: admin/class-quick-featured-images-columns.php:457
55
  #, php-format
56
  msgid "Remove &#8220;%s&#8221;"
57
  msgstr "Remover &#8220;%s&#8221;"
58
 
59
+ #: admin/class-quick-featured-images-columns.php:364
60
+ #: admin/class-quick-featured-images-columns.php:377
61
+ #: admin/class-quick-featured-images-columns.php:529
62
  #, php-format
63
  msgid "Set image for &#8220;%s&#8221;"
64
  msgstr "Definir imagem para &#8220;%s&#8221;"
158
  msgid "Controls which minimum user role can see the plugin."
159
  msgstr "Controla qual função de usuário mínima pode ver o plug-in."
160
 
161
+ #: admin/class-quick-featured-images-tools.php:471
162
  #, php-format
163
  msgid "Wrong image ID %d"
164
  msgstr "ID de imagem errado %d"
165
 
166
+ #: admin/class-quick-featured-images-tools.php:573
167
  msgid "Select"
168
  msgstr "Selecionar"
169
 
170
+ #: admin/class-quick-featured-images-tools.php:574
171
  msgid "Add filter"
172
  msgstr "Adicionar um filtro"
173
 
174
+ #: admin/class-quick-featured-images-tools.php:575
175
  msgid "Refine"
176
  msgstr "Refinar"
177
 
178
+ #: admin/class-quick-featured-images-tools.php:576
179
  msgid "Confirm"
180
  msgstr "Confirmar"
181
 
182
+ #: admin/class-quick-featured-images-tools.php:577
183
  msgid "Perform"
184
  msgstr "Executar"
185
 
186
+ #: admin/class-quick-featured-images-tools.php:581
187
  msgid "Set the selected image as new featured image"
188
  msgstr "Definir a imagem selecionada como nova imagem destacada"
189
 
190
+ #: admin/class-quick-featured-images-tools.php:582
191
  msgid "Replace featured images by the selected image"
192
  msgstr "Substituir imagens destacadas pela imagem selecionada"
193
 
194
+ #: admin/class-quick-featured-images-tools.php:583
195
  msgid "Remove the selected image as featured image"
196
  msgstr "Remover a imagem selecionada como imagem destacada"
197
 
198
+ #: admin/class-quick-featured-images-tools.php:586
199
  msgid "Remove any image as featured image"
200
  msgstr "Remover qualquer imagem como imagem destacada"
201
 
202
+ #: admin/class-quick-featured-images-tools.php:587
203
+ msgid "Remove all featured images without existing image files"
204
+ msgstr "Remova todas as imagens apresentadas sem arquivos de imagem existentes"
205
+
206
+ #: admin/class-quick-featured-images-tools.php:590
207
  msgid "Set multiple images randomly as featured images"
208
  msgstr "Definir várias imagens aleatoriamente como imagens destacadas"
209
 
210
+ #: admin/class-quick-featured-images-tools.php:594
211
  msgid "Overwrite featured images"
212
  msgstr "Sobrescrever imagens destacadas"
213
 
214
+ #: admin/class-quick-featured-images-tools.php:595
215
  msgid "Consider only posts without any featured image"
216
  msgstr "Considerar apenas posts sem nenhuma imagem destacada"
217
 
218
+ #: admin/class-quick-featured-images-tools.php:599
219
  msgid "Post Type Filter"
220
  msgstr "Filtro de tipo de posts"
221
 
222
+ #: admin/class-quick-featured-images-tools.php:600
223
  msgid "Category Filter"
224
  msgstr "Filtro por categoria"
225
 
226
+ #: admin/class-quick-featured-images-tools.php:601
227
  msgid "Tag Filter"
228
  msgstr "Filtro por tag"
229
 
230
+ #: admin/class-quick-featured-images-tools.php:630
231
  msgid "Image width in pixels lower than"
232
  msgstr "Largura da imagem em pixels menor que"
233
 
234
+ #: admin/class-quick-featured-images-tools.php:631
235
  msgid "Image height in pixels lower than"
236
  msgstr "Altura da imagem em pixels menor que"
237
 
238
+ #: admin/class-quick-featured-images-tools.php:740
239
  #, php-format
240
  msgid "The input field %s is empty."
241
  msgstr "O campo de entrada %s está vazio."
242
 
243
+ #: admin/class-quick-featured-images-tools.php:741
244
  msgid "Type in a value into the input field."
245
  msgstr "Digite um valor para o campo de entrada."
246
 
247
+ #: admin/class-quick-featured-images-tools.php:744
248
  #, php-format
249
  msgid "%s is not defined."
250
  msgstr "%s não está definido."
251
 
252
+ #: admin/class-quick-featured-images-tools.php:745
253
  msgid "Check how to define the value."
254
  msgstr "Veja como definir o valor."
255
 
256
+ #: admin/class-quick-featured-images-tools.php:748
257
  msgid "There is no selected image."
258
  msgstr "Não há nenhuma imagem selecionada."
259
 
260
+ #: admin/class-quick-featured-images-tools.php:749
261
  msgid "Select an image from the media library."
262
  msgstr "Selecione uma imagem da biblioteca de mídia."
263
 
264
+ #: admin/class-quick-featured-images-tools.php:752
265
  #: admin/views/section_image.php:51
266
  msgid "You have not selected an action."
267
  msgstr "Você não selecionou uma ação."
268
 
269
+ #: admin/class-quick-featured-images-tools.php:753
270
  msgid "Start again and select which action you want to apply."
271
  msgstr "Comece de novo e selecione a ação que você deseja aplicar."
272
 
273
+ #: admin/class-quick-featured-images-tools.php:756
274
  #, php-format
275
  msgid "The input field %s has an invalid value."
276
  msgstr "O campo de entrada %s tem um valor inválido."
277
 
278
+ #: admin/class-quick-featured-images-tools.php:757
279
  msgid "Type in valid values in the input field."
280
  msgstr "Digite valores válidos no campo de entrada."
281
 
282
+ #: admin/class-quick-featured-images-tools.php:761
283
  msgid "Type in values stored by WordPress."
284
  msgstr "Digite valores armazenados pelo WordPress."
285
 
286
+ #: admin/class-quick-featured-images-tools.php:1926
287
  msgid "Set, replace, remove"
288
  msgstr "Definir, substituir, remover"
289
 
290
+ #: admin/class-quick-featured-images-tools.php:1937
291
  msgid "Bulk set, replace and remove featured images for existing posts"
292
  msgstr ""
293
  "Definir, substituir e remover imagens destacadas em massa para posts "
294
  "existentes"
295
 
296
+ #: admin/class-quick-featured-images-tools.php:2046
297
  msgid "Bulk set as featured image"
298
  msgstr "Definir imagem destacada em massa"
299
 
332
  msgid "Modify selection"
333
  msgstr "Modificar seleção"
334
 
335
+ #: admin/views/form_confirm.php:1
336
+ msgid "Preview of your selection"
337
+ msgstr "Pré-visualizar a sua seleção"
338
+
339
+ #: admin/views/form_confirm.php:2
340
+ #, php-format
341
+ msgid "%d matches found"
342
+ msgstr "%d registros encontrados"
343
+
344
+ #: admin/views/form_confirm.php:12
345
+ msgid ""
346
+ "Should the entries of featured images without image files be removed from "
347
+ "the database?"
348
+ msgstr ""
349
+ "As entradas de imagens em destaque sem arquivos de imagem devem ser "
350
+ "removidas do banco de dados?"
351
+
352
+ #: admin/views/form_confirm.php:15 admin/views/section_results.php:16
353
+ msgid "Details"
354
+ msgstr "Detalhes"
355
+
356
+ #: admin/views/form_confirm.php:16 admin/views/section_defaults.php:17
357
+ #: admin/views/section_results.php:18
358
+ msgid "No."
359
+ msgstr "Nº."
360
+
361
+ #: admin/views/form_confirm.php:17 admin/views/section_results.php:17
362
+ msgid "Current Featured Image"
363
+ msgstr "Imagem Destacada atual"
364
+
365
+ #: admin/views/form_confirm.php:18
366
+ msgid "Future Featured Image"
367
+ msgstr "Imagem Destacada futura"
368
+
369
+ #: admin/views/form_confirm.php:19
370
+ msgid "written on"
371
+ msgstr "escrito em"
372
+
373
+ #: admin/views/form_confirm.php:20
374
+ msgid "by"
375
+ msgstr "por"
376
+
377
+ #: admin/views/form_confirm.php:35
378
  msgid "Should the selected image be set as featured image to all listed posts?"
379
  msgstr ""
380
  "Deve a imagem selecionada ser definido como uma imagem destacada a todos os "
381
  "posts listados?"
382
 
383
+ #: admin/views/form_confirm.php:38
384
  msgid ""
385
  "Should the selected images be set randomly as featured images to all listed "
386
  "posts?"
388
  "Devem as imagens selecionadas serem definidas aleatoriamente como imagens "
389
  "destacadas a todos os posts listados?"
390
 
391
+ #: admin/views/form_confirm.php:41
392
  msgid ""
393
  "Should the current set featured image be replaced by the selected image at "
394
  "all listed posts?"
396
  "Devem as imagens destacadas atuais serem substituídas pela imagem secionada "
397
  "em todos os posts listados?"
398
 
399
+ #: admin/views/form_confirm.php:44
400
  msgid "Should the selected image be removed from all listed posts?"
401
  msgstr "Deve a imagem selecionada ser removida de todos os posts listados?"
402
 
403
+ #: admin/views/form_confirm.php:47
404
  msgid "Should the future images be set as featured images at all listed posts?"
405
  msgstr ""
406
  "Devem as futuras imagens serem definidas como imagens destacadas em todos os "
407
  "posts listados?"
408
 
409
+ #: admin/views/form_confirm.php:50
410
  msgid "Should the added featured images be removed from all listed posts?"
411
  msgstr ""
412
  "Devem as imagens destacadas adicionadas serem removidas de todos os posts "
413
  "listados?"
414
 
415
+ #: admin/views/form_confirm.php:54 admin/views/section_results.php:27
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
416
  msgid ""
417
  "The list is in alphabetical order according to post title. You can edit a "
418
  "post in a new window by clicking on its link in the list."
420
  "A lista está em ordem alfabética de acordo com o título do post. Você pode "
421
  "editar um post em uma nova janela clicando em seu link na lista."
422
 
423
+ #: admin/views/form_confirm.php:120
424
  msgid "Confirm the change"
425
  msgstr "Confirme a mudança"
426
 
427
+ #: admin/views/form_confirm.php:121
428
  msgid "You can not undo the operation!"
429
  msgstr "Você não pode desfazer a operação!"
430
 
431
+ #: admin/views/form_confirm.php:182 admin/views/section_errormsg.php:8
432
+ #: admin/views/section_results.php:86
433
  msgid "Start again"
434
  msgstr "Começar novamente"
435
 
436
+ #: admin/views/form_confirm.php:182
437
  msgid "or refine your selection with the following form fields."
438
  msgstr "ou refine sua seleção com os campos a seguir."
439
 
558
  "forem usadas"
559
 
560
  #: admin/views/form_select.php:77 admin/views/form_select.php:115
561
+ #: admin/views/form_select.php:119 admin/views/form_start.php:113
562
  #: admin/views/section_defaults.php:492 admin/views/section_footer.php:59
563
  #: admin/views/section_overview.php:91
564
  msgid "Get the premium version"
566
 
567
  # Path to language site
568
  #: admin/views/form_select.php:77 admin/views/form_select.php:115
569
+ #: admin/views/form_select.php:119 admin/views/form_start.php:113
570
  #: admin/views/section_defaults.php:492 admin/views/section_footer.php:59
571
  #: admin/views/section_overview.php:90 admin/views/section_overview.php:91
572
  msgid "/"
615
  msgstr "Você está procurando mais opções e mais filtros?"
616
 
617
  #: admin/views/form_select.php:116
 
 
 
 
 
 
 
 
618
  msgid "If you encounter a white, blank page, read this"
619
  msgstr "Se você encontrar uma página branca, em branco, leia isto"
620
 
621
+ #: admin/views/form_select.php:117
622
  msgid ""
623
  "Facing a white blank page while trying to treat thousands of posts is the "
624
  "effect of limited memory capacities on the website server. Instead of "
631
  "tratar pequenas quantidades de posts várias vezes sucessivamente. Para "
632
  "conseguir isso faça:"
633
 
634
+ #: admin/views/form_select.php:120
635
  msgid "add the time filter,"
636
  msgstr "adicione o filtro de tempo,"
637
 
638
+ #: admin/views/form_select.php:121
639
  msgid "set a small time range,"
640
  msgstr "defina um pequeno intervalo de tempo,"
641
 
642
+ #: admin/views/form_select.php:122
643
  msgid "do the process"
644
  msgstr "faça o processo"
645
 
646
+ #: admin/views/form_select.php:123
647
  msgid "and repeat it with the next time range as often as needed."
648
  msgstr ""
649
  "e repeta com o próximo intervalo de tempo quantas vezes for necessário."
650
 
651
+ #: admin/views/form_select.php:125
652
  msgid ""
653
  "This way is not as fast as one single run, but still much faster than "
654
  "setting the images for each post manually."
656
  "Desta forma, não é tão rápido como uma única vez, mas ainda muito mais "
657
  "rápido do que a criação das imagens para cada post manualmente."
658
 
659
+ #: admin/views/form_select.php:130
660
+ msgid ""
661
+ "On the next page you can refine the filters. If you did not select any "
662
+ "filter you will go to the preview list directly."
663
+ msgstr ""
664
+ "Na próxima página você pode refinar os filtros. Se você não selecionar "
665
+ "qualquer filtro que você vai diretamente para a lista de pré-visualização."
666
+
667
  #: admin/views/form_start.php:6 admin/views/section_defaults.php:215
668
  msgid ""
669
  "The current theme does not support featured images. Anyway you can use this "
977
  msgid "Credits and informations"
978
  msgstr "Créditos e informações"
979
 
980
+ #: admin/views/section_footer.php:54 admin/views/section_results.php:87
981
  msgid "Do you like the plugin?"
982
  msgstr "Gostou do plugin?"
983
 
984
+ #: admin/views/section_footer.php:54 admin/views/section_results.php:88
985
  msgid "Please rate it at wordpress.org!"
986
  msgstr "Por favor avalie ele no wordpress.org!"
987
 
1094
  msgid "Results of the action"
1095
  msgstr "Resultados da ação"
1096
 
1097
+ #: admin/views/section_results.php:19
1098
  msgid "Changed successfully"
1099
  msgstr "Alterado com sucesso"
1100
 
1101
+ #: admin/views/section_results.php:20
1102
  msgid "Unchanged"
1103
  msgstr "Inalterado"
1104
 
1105
+ #: admin/views/section_results.php:82
1106
  msgid "No matches found."
1107
  msgstr "Nenhum resultado encontrado."
 
 
 
 
 
 
languages/quick-featured-images.pot CHANGED
@@ -4,17 +4,17 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Quick Featured Images\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/plugins/quick-featured-images\n"
7
- "POT-Creation-Date: 2017-03-30 22:54+0200\n"
8
- "PO-Revision-Date: 2017-03-30 22:55+0200\n"
9
  "Language-Team: m.stehle@gmx.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-Generator: Poedit 2.0\n"
14
  "X-Poedit-KeywordsList: __;_e;_n;_x;esc_html_e;esc_html__;esc_attr_e;"
15
  "esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_x:1,2c;_n:1,2\n"
16
  "X-Poedit-Basepath: ..\n"
17
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: admin/class-quick-featured-images-admin.php:213
@@ -31,20 +31,21 @@ msgstr ""
31
  msgid "Welcome to %s! You can find the plugin at %s."
32
  msgstr ""
33
 
34
- #: admin/class-quick-featured-images-columns.php:294
35
- #: admin/class-quick-featured-images-columns.php:414
36
  #, php-format
37
  msgid "Change &#8220;%s&#8221;"
38
  msgstr ""
39
 
40
- #: admin/class-quick-featured-images-columns.php:317
41
- #: admin/class-quick-featured-images-columns.php:415
42
  #, php-format
43
  msgid "Remove &#8220;%s&#8221;"
44
  msgstr ""
45
 
46
- #: admin/class-quick-featured-images-columns.php:339
47
- #: admin/class-quick-featured-images-columns.php:484
 
48
  #, php-format
49
  msgid "Set image for &#8220;%s&#8221;"
50
  msgstr ""
@@ -123,136 +124,140 @@ msgstr ""
123
  msgid "Controls which minimum user role can see the plugin."
124
  msgstr ""
125
 
126
- #: admin/class-quick-featured-images-tools.php:443
127
  #, php-format
128
  msgid "Wrong image ID %d"
129
  msgstr ""
130
 
131
- #: admin/class-quick-featured-images-tools.php:544
132
  msgid "Select"
133
  msgstr ""
134
 
135
- #: admin/class-quick-featured-images-tools.php:545
136
  msgid "Add filter"
137
  msgstr ""
138
 
139
- #: admin/class-quick-featured-images-tools.php:546
140
  msgid "Refine"
141
  msgstr ""
142
 
143
- #: admin/class-quick-featured-images-tools.php:547
144
  msgid "Confirm"
145
  msgstr ""
146
 
147
- #: admin/class-quick-featured-images-tools.php:548
148
  msgid "Perform"
149
  msgstr ""
150
 
151
- #: admin/class-quick-featured-images-tools.php:552
152
  msgid "Set the selected image as new featured image"
153
  msgstr ""
154
 
155
- #: admin/class-quick-featured-images-tools.php:553
156
  msgid "Replace featured images by the selected image"
157
  msgstr ""
158
 
159
- #: admin/class-quick-featured-images-tools.php:554
160
  msgid "Remove the selected image as featured image"
161
  msgstr ""
162
 
163
- #: admin/class-quick-featured-images-tools.php:557
164
  msgid "Remove any image as featured image"
165
  msgstr ""
166
 
167
- #: admin/class-quick-featured-images-tools.php:560
 
 
 
 
168
  msgid "Set multiple images randomly as featured images"
169
  msgstr ""
170
 
171
- #: admin/class-quick-featured-images-tools.php:564
172
  msgid "Overwrite featured images"
173
  msgstr ""
174
 
175
- #: admin/class-quick-featured-images-tools.php:565
176
  msgid "Consider only posts without any featured image"
177
  msgstr ""
178
 
179
- #: admin/class-quick-featured-images-tools.php:569
180
  msgid "Post Type Filter"
181
  msgstr ""
182
 
183
- #: admin/class-quick-featured-images-tools.php:570
184
  msgid "Category Filter"
185
  msgstr ""
186
 
187
- #: admin/class-quick-featured-images-tools.php:571
188
  msgid "Tag Filter"
189
  msgstr ""
190
 
191
- #: admin/class-quick-featured-images-tools.php:600
192
  msgid "Image width in pixels lower than"
193
  msgstr ""
194
 
195
- #: admin/class-quick-featured-images-tools.php:601
196
  msgid "Image height in pixels lower than"
197
  msgstr ""
198
 
199
- #: admin/class-quick-featured-images-tools.php:710
200
  #, php-format
201
  msgid "The input field %s is empty."
202
  msgstr ""
203
 
204
- #: admin/class-quick-featured-images-tools.php:711
205
  msgid "Type in a value into the input field."
206
  msgstr ""
207
 
208
- #: admin/class-quick-featured-images-tools.php:714
209
  #, php-format
210
  msgid "%s is not defined."
211
  msgstr ""
212
 
213
- #: admin/class-quick-featured-images-tools.php:715
214
  msgid "Check how to define the value."
215
  msgstr ""
216
 
217
- #: admin/class-quick-featured-images-tools.php:718
218
  msgid "There is no selected image."
219
  msgstr ""
220
 
221
- #: admin/class-quick-featured-images-tools.php:719
222
  msgid "Select an image from the media library."
223
  msgstr ""
224
 
225
- #: admin/class-quick-featured-images-tools.php:722
226
  #: admin/views/section_image.php:51
227
  msgid "You have not selected an action."
228
  msgstr ""
229
 
230
- #: admin/class-quick-featured-images-tools.php:723
231
  msgid "Start again and select which action you want to apply."
232
  msgstr ""
233
 
234
- #: admin/class-quick-featured-images-tools.php:726
235
  #, php-format
236
  msgid "The input field %s has an invalid value."
237
  msgstr ""
238
 
239
- #: admin/class-quick-featured-images-tools.php:727
240
  msgid "Type in valid values in the input field."
241
  msgstr ""
242
 
243
- #: admin/class-quick-featured-images-tools.php:731
244
  msgid "Type in values stored by WordPress."
245
  msgstr ""
246
 
247
- #: admin/class-quick-featured-images-tools.php:1846
248
  msgid "Set, replace, remove"
249
  msgstr ""
250
 
251
- #: admin/class-quick-featured-images-tools.php:1857
252
  msgid "Bulk set, replace and remove featured images for existing posts"
253
  msgstr ""
254
 
255
- #: admin/class-quick-featured-images-tools.php:1966
256
  msgid "Bulk set as featured image"
257
  msgstr ""
258
 
@@ -288,82 +293,86 @@ msgstr ""
288
  msgid "Modify selection"
289
  msgstr ""
290
 
291
- #: admin/views/form_confirm.php:4
292
- msgid "Should the selected image be set as featured image to all listed posts?"
293
  msgstr ""
294
 
295
- #: admin/views/form_confirm.php:7
296
- msgid "Should the selected images be set randomly as featured images to all listed posts?"
 
297
  msgstr ""
298
 
299
- #: admin/views/form_confirm.php:10
300
- msgid "Should the current set featured image be replaced by the selected image at all listed posts?"
301
  msgstr ""
302
 
303
- #: admin/views/form_confirm.php:13
304
- msgid "Should the selected image be removed from all listed posts?"
305
  msgstr ""
306
 
307
- #: admin/views/form_confirm.php:16
308
- msgid "Should the future images be set as featured images at all listed posts?"
 
309
  msgstr ""
310
 
311
- #: admin/views/form_confirm.php:19
312
- msgid "Should the added featured images be removed from all listed posts?"
313
  msgstr ""
314
 
315
- #: admin/views/form_confirm.php:24
316
- msgid "Preview of your selection"
317
  msgstr ""
318
 
319
- #: admin/views/form_confirm.php:25
320
- #, php-format
321
- msgid "%d matches found"
322
  msgstr ""
323
 
324
- #: admin/views/form_confirm.php:29 admin/views/section_results.php:5
325
- msgid "Details"
326
  msgstr ""
327
 
328
- #: admin/views/form_confirm.php:30 admin/views/section_defaults.php:17
329
- #: admin/views/section_results.php:7
330
- msgid "No."
331
  msgstr ""
332
 
333
- #: admin/views/form_confirm.php:31 admin/views/section_results.php:6
334
- msgid "Current Featured Image"
335
  msgstr ""
336
 
337
- #: admin/views/form_confirm.php:32
338
- msgid "Future Featured Image"
339
  msgstr ""
340
 
341
- #: admin/views/form_confirm.php:33
342
- msgid "written on"
343
  msgstr ""
344
 
345
- #: admin/views/form_confirm.php:34
346
- msgid "by"
 
 
 
 
347
  msgstr ""
348
 
349
- #: admin/views/form_confirm.php:48 admin/views/section_results.php:16
350
  msgid "The list is in alphabetical order according to post title. You can edit a post in a new window by clicking on its link in the list."
351
  msgstr ""
352
 
353
- #: admin/views/form_confirm.php:111
354
  msgid "Confirm the change"
355
  msgstr ""
356
 
357
- #: admin/views/form_confirm.php:112
358
  msgid "You can not undo the operation!"
359
  msgstr ""
360
 
361
- #: admin/views/form_confirm.php:173 admin/views/section_errormsg.php:8
362
- #: admin/views/section_results.php:74
363
  msgid "Start again"
364
  msgstr ""
365
 
366
- #: admin/views/form_confirm.php:173
367
  msgid "or refine your selection with the following form fields."
368
  msgstr ""
369
 
@@ -462,7 +471,7 @@ msgid "Remove excess featured images after all selected images are used"
462
  msgstr ""
463
 
464
  #: admin/views/form_select.php:77 admin/views/form_select.php:115
465
- #: admin/views/form_select.php:137 admin/views/form_start.php:113
466
  #: admin/views/section_defaults.php:492 admin/views/section_footer.php:59
467
  #: admin/views/section_overview.php:91
468
  msgid "Get the premium version"
@@ -470,7 +479,7 @@ msgstr ""
470
 
471
  # Path to language site
472
  #: admin/views/form_select.php:77 admin/views/form_select.php:115
473
- #: admin/views/form_select.php:137 admin/views/form_start.php:113
474
  #: admin/views/section_defaults.php:492 admin/views/section_footer.php:59
475
  #: admin/views/section_overview.php:90 admin/views/section_overview.php:91
476
  msgid "/"
@@ -509,37 +518,37 @@ msgid "Are you looking for more options and more filters?"
509
  msgstr ""
510
 
511
  #: admin/views/form_select.php:116
512
- msgid "On the next page you can refine the filters. If you did not select any filter you will go to the preview list directly."
513
- msgstr ""
514
-
515
- #: admin/views/form_select.php:134
516
  msgid "If you encounter a white, blank page, read this"
517
  msgstr ""
518
 
519
- #: admin/views/form_select.php:135
520
  msgid "Facing a white blank page while trying to treat thousands of posts is the effect of limited memory capacities on the website server. Instead of treating a huge amount of posts in one single go try to treat small amounts of posts multiple times successively. To achieve that do:"
521
  msgstr ""
522
 
523
- #: admin/views/form_select.php:138
524
  msgid "add the time filter,"
525
  msgstr ""
526
 
527
- #: admin/views/form_select.php:139
528
  msgid "set a small time range,"
529
  msgstr ""
530
 
531
- #: admin/views/form_select.php:140
532
  msgid "do the process"
533
  msgstr ""
534
 
535
- #: admin/views/form_select.php:141
536
  msgid "and repeat it with the next time range as often as needed."
537
  msgstr ""
538
 
539
- #: admin/views/form_select.php:143
540
  msgid "This way is not as fast as one single run, but still much faster than setting the images for each post manually."
541
  msgstr ""
542
 
 
 
 
 
543
  #: admin/views/form_start.php:6 admin/views/section_defaults.php:215
544
  msgid "The current theme does not support featured images. Anyway you can use this plugin. The effects are stored and will be visible in a theme which supports featured images."
545
  msgstr ""
@@ -764,11 +773,11 @@ msgstr ""
764
  msgid "Credits and informations"
765
  msgstr ""
766
 
767
- #: admin/views/section_footer.php:54 admin/views/section_results.php:75
768
  msgid "Do you like the plugin?"
769
  msgstr ""
770
 
771
- #: admin/views/section_footer.php:54 admin/views/section_results.php:76
772
  msgid "Please rate it at wordpress.org!"
773
  msgstr ""
774
 
@@ -869,17 +878,14 @@ msgstr ""
869
  msgid "Results of the action"
870
  msgstr ""
871
 
872
- #: admin/views/section_results.php:8
873
  msgid "Changed successfully"
874
  msgstr ""
875
 
876
- #: admin/views/section_results.php:9
877
  msgid "Unchanged"
878
  msgstr ""
879
 
880
- #: admin/views/section_results.php:70
881
  msgid "No matches found."
882
  msgstr ""
883
-
884
- #~ msgid "Use multiple choice"
885
- #~ msgstr ""
4
  msgstr ""
5
  "Project-Id-Version: Quick Featured Images\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/plugins/quick-featured-images\n"
7
+ "POT-Creation-Date: 2017-07-06 23:13+0200\n"
8
+ "PO-Revision-Date: 2017-07-06 23:17+0200\n"
9
  "Language-Team: m.stehle@gmx.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-Generator: Poedit 2.0.2\n"
14
  "X-Poedit-KeywordsList: __;_e;_n;_x;esc_html_e;esc_html__;esc_attr_e;"
15
  "esc_attr__;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_x:1,2c;_n:1,2\n"
16
  "X-Poedit-Basepath: ..\n"
17
+ "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: admin/class-quick-featured-images-admin.php:213
31
  msgid "Welcome to %s! You can find the plugin at %s."
32
  msgstr ""
33
 
34
+ #: admin/class-quick-featured-images-columns.php:295
35
+ #: admin/class-quick-featured-images-columns.php:456
36
  #, php-format
37
  msgid "Change &#8220;%s&#8221;"
38
  msgstr ""
39
 
40
+ #: admin/class-quick-featured-images-columns.php:320
41
+ #: admin/class-quick-featured-images-columns.php:457
42
  #, php-format
43
  msgid "Remove &#8220;%s&#8221;"
44
  msgstr ""
45
 
46
+ #: admin/class-quick-featured-images-columns.php:364
47
+ #: admin/class-quick-featured-images-columns.php:377
48
+ #: admin/class-quick-featured-images-columns.php:529
49
  #, php-format
50
  msgid "Set image for &#8220;%s&#8221;"
51
  msgstr ""
124
  msgid "Controls which minimum user role can see the plugin."
125
  msgstr ""
126
 
127
+ #: admin/class-quick-featured-images-tools.php:471
128
  #, php-format
129
  msgid "Wrong image ID %d"
130
  msgstr ""
131
 
132
+ #: admin/class-quick-featured-images-tools.php:573
133
  msgid "Select"
134
  msgstr ""
135
 
136
+ #: admin/class-quick-featured-images-tools.php:574
137
  msgid "Add filter"
138
  msgstr ""
139
 
140
+ #: admin/class-quick-featured-images-tools.php:575
141
  msgid "Refine"
142
  msgstr ""
143
 
144
+ #: admin/class-quick-featured-images-tools.php:576
145
  msgid "Confirm"
146
  msgstr ""
147
 
148
+ #: admin/class-quick-featured-images-tools.php:577
149
  msgid "Perform"
150
  msgstr ""
151
 
152
+ #: admin/class-quick-featured-images-tools.php:581
153
  msgid "Set the selected image as new featured image"
154
  msgstr ""
155
 
156
+ #: admin/class-quick-featured-images-tools.php:582
157
  msgid "Replace featured images by the selected image"
158
  msgstr ""
159
 
160
+ #: admin/class-quick-featured-images-tools.php:583
161
  msgid "Remove the selected image as featured image"
162
  msgstr ""
163
 
164
+ #: admin/class-quick-featured-images-tools.php:586
165
  msgid "Remove any image as featured image"
166
  msgstr ""
167
 
168
+ #: admin/class-quick-featured-images-tools.php:587
169
+ msgid "Remove all featured images without existing image files"
170
+ msgstr ""
171
+
172
+ #: admin/class-quick-featured-images-tools.php:590
173
  msgid "Set multiple images randomly as featured images"
174
  msgstr ""
175
 
176
+ #: admin/class-quick-featured-images-tools.php:594
177
  msgid "Overwrite featured images"
178
  msgstr ""
179
 
180
+ #: admin/class-quick-featured-images-tools.php:595
181
  msgid "Consider only posts without any featured image"
182
  msgstr ""
183
 
184
+ #: admin/class-quick-featured-images-tools.php:599
185
  msgid "Post Type Filter"
186
  msgstr ""
187
 
188
+ #: admin/class-quick-featured-images-tools.php:600
189
  msgid "Category Filter"
190
  msgstr ""
191
 
192
+ #: admin/class-quick-featured-images-tools.php:601
193
  msgid "Tag Filter"
194
  msgstr ""
195
 
196
+ #: admin/class-quick-featured-images-tools.php:630
197
  msgid "Image width in pixels lower than"
198
  msgstr ""
199
 
200
+ #: admin/class-quick-featured-images-tools.php:631
201
  msgid "Image height in pixels lower than"
202
  msgstr ""
203
 
204
+ #: admin/class-quick-featured-images-tools.php:740
205
  #, php-format
206
  msgid "The input field %s is empty."
207
  msgstr ""
208
 
209
+ #: admin/class-quick-featured-images-tools.php:741
210
  msgid "Type in a value into the input field."
211
  msgstr ""
212
 
213
+ #: admin/class-quick-featured-images-tools.php:744
214
  #, php-format
215
  msgid "%s is not defined."
216
  msgstr ""
217
 
218
+ #: admin/class-quick-featured-images-tools.php:745
219
  msgid "Check how to define the value."
220
  msgstr ""
221
 
222
+ #: admin/class-quick-featured-images-tools.php:748
223
  msgid "There is no selected image."
224
  msgstr ""
225
 
226
+ #: admin/class-quick-featured-images-tools.php:749
227
  msgid "Select an image from the media library."
228
  msgstr ""
229
 
230
+ #: admin/class-quick-featured-images-tools.php:752
231
  #: admin/views/section_image.php:51
232
  msgid "You have not selected an action."
233
  msgstr ""
234
 
235
+ #: admin/class-quick-featured-images-tools.php:753
236
  msgid "Start again and select which action you want to apply."
237
  msgstr ""
238
 
239
+ #: admin/class-quick-featured-images-tools.php:756
240
  #, php-format
241
  msgid "The input field %s has an invalid value."
242
  msgstr ""
243
 
244
+ #: admin/class-quick-featured-images-tools.php:757
245
  msgid "Type in valid values in the input field."
246
  msgstr ""
247
 
248
+ #: admin/class-quick-featured-images-tools.php:761
249
  msgid "Type in values stored by WordPress."
250
  msgstr ""
251
 
252
+ #: admin/class-quick-featured-images-tools.php:1926
253
  msgid "Set, replace, remove"
254
  msgstr ""
255
 
256
+ #: admin/class-quick-featured-images-tools.php:1937
257
  msgid "Bulk set, replace and remove featured images for existing posts"
258
  msgstr ""
259
 
260
+ #: admin/class-quick-featured-images-tools.php:2046
261
  msgid "Bulk set as featured image"
262
  msgstr ""
263
 
293
  msgid "Modify selection"
294
  msgstr ""
295
 
296
+ #: admin/views/form_confirm.php:1
297
+ msgid "Preview of your selection"
298
  msgstr ""
299
 
300
+ #: admin/views/form_confirm.php:2
301
+ #, php-format
302
+ msgid "%d matches found"
303
  msgstr ""
304
 
305
+ #: admin/views/form_confirm.php:12
306
+ msgid "Should the entries of featured images without image files be removed from the database?"
307
  msgstr ""
308
 
309
+ #: admin/views/form_confirm.php:15 admin/views/section_results.php:16
310
+ msgid "Details"
311
  msgstr ""
312
 
313
+ #: admin/views/form_confirm.php:16 admin/views/section_defaults.php:17
314
+ #: admin/views/section_results.php:18
315
+ msgid "No."
316
  msgstr ""
317
 
318
+ #: admin/views/form_confirm.php:17 admin/views/section_results.php:17
319
+ msgid "Current Featured Image"
320
  msgstr ""
321
 
322
+ #: admin/views/form_confirm.php:18
323
+ msgid "Future Featured Image"
324
  msgstr ""
325
 
326
+ #: admin/views/form_confirm.php:19
327
+ msgid "written on"
 
328
  msgstr ""
329
 
330
+ #: admin/views/form_confirm.php:20
331
+ msgid "by"
332
  msgstr ""
333
 
334
+ #: admin/views/form_confirm.php:35
335
+ msgid "Should the selected image be set as featured image to all listed posts?"
 
336
  msgstr ""
337
 
338
+ #: admin/views/form_confirm.php:38
339
+ msgid "Should the selected images be set randomly as featured images to all listed posts?"
340
  msgstr ""
341
 
342
+ #: admin/views/form_confirm.php:41
343
+ msgid "Should the current set featured image be replaced by the selected image at all listed posts?"
344
  msgstr ""
345
 
346
+ #: admin/views/form_confirm.php:44
347
+ msgid "Should the selected image be removed from all listed posts?"
348
  msgstr ""
349
 
350
+ #: admin/views/form_confirm.php:47
351
+ msgid "Should the future images be set as featured images at all listed posts?"
352
+ msgstr ""
353
+
354
+ #: admin/views/form_confirm.php:50
355
+ msgid "Should the added featured images be removed from all listed posts?"
356
  msgstr ""
357
 
358
+ #: admin/views/form_confirm.php:54 admin/views/section_results.php:27
359
  msgid "The list is in alphabetical order according to post title. You can edit a post in a new window by clicking on its link in the list."
360
  msgstr ""
361
 
362
+ #: admin/views/form_confirm.php:120
363
  msgid "Confirm the change"
364
  msgstr ""
365
 
366
+ #: admin/views/form_confirm.php:121
367
  msgid "You can not undo the operation!"
368
  msgstr ""
369
 
370
+ #: admin/views/form_confirm.php:182 admin/views/section_errormsg.php:8
371
+ #: admin/views/section_results.php:86
372
  msgid "Start again"
373
  msgstr ""
374
 
375
+ #: admin/views/form_confirm.php:182
376
  msgid "or refine your selection with the following form fields."
377
  msgstr ""
378
 
471
  msgstr ""
472
 
473
  #: admin/views/form_select.php:77 admin/views/form_select.php:115
474
+ #: admin/views/form_select.php:119 admin/views/form_start.php:113
475
  #: admin/views/section_defaults.php:492 admin/views/section_footer.php:59
476
  #: admin/views/section_overview.php:91
477
  msgid "Get the premium version"
479
 
480
  # Path to language site
481
  #: admin/views/form_select.php:77 admin/views/form_select.php:115
482
+ #: admin/views/form_select.php:119 admin/views/form_start.php:113
483
  #: admin/views/section_defaults.php:492 admin/views/section_footer.php:59
484
  #: admin/views/section_overview.php:90 admin/views/section_overview.php:91
485
  msgid "/"
518
  msgstr ""
519
 
520
  #: admin/views/form_select.php:116
 
 
 
 
521
  msgid "If you encounter a white, blank page, read this"
522
  msgstr ""
523
 
524
+ #: admin/views/form_select.php:117
525
  msgid "Facing a white blank page while trying to treat thousands of posts is the effect of limited memory capacities on the website server. Instead of treating a huge amount of posts in one single go try to treat small amounts of posts multiple times successively. To achieve that do:"
526
  msgstr ""
527
 
528
+ #: admin/views/form_select.php:120
529
  msgid "add the time filter,"
530
  msgstr ""
531
 
532
+ #: admin/views/form_select.php:121
533
  msgid "set a small time range,"
534
  msgstr ""
535
 
536
+ #: admin/views/form_select.php:122
537
  msgid "do the process"
538
  msgstr ""
539
 
540
+ #: admin/views/form_select.php:123
541
  msgid "and repeat it with the next time range as often as needed."
542
  msgstr ""
543
 
544
+ #: admin/views/form_select.php:125
545
  msgid "This way is not as fast as one single run, but still much faster than setting the images for each post manually."
546
  msgstr ""
547
 
548
+ #: admin/views/form_select.php:130
549
+ msgid "On the next page you can refine the filters. If you did not select any filter you will go to the preview list directly."
550
+ msgstr ""
551
+
552
  #: admin/views/form_start.php:6 admin/views/section_defaults.php:215
553
  msgid "The current theme does not support featured images. Anyway you can use this plugin. The effects are stored and will be visible in a theme which supports featured images."
554
  msgstr ""
773
  msgid "Credits and informations"
774
  msgstr ""
775
 
776
+ #: admin/views/section_footer.php:54 admin/views/section_results.php:87
777
  msgid "Do you like the plugin?"
778
  msgstr ""
779
 
780
+ #: admin/views/section_footer.php:54 admin/views/section_results.php:88
781
  msgid "Please rate it at wordpress.org!"
782
  msgstr ""
783
 
878
  msgid "Results of the action"
879
  msgstr ""
880
 
881
+ #: admin/views/section_results.php:19
882
  msgid "Changed successfully"
883
  msgstr ""
884
 
885
+ #: admin/views/section_results.php:20
886
  msgid "Unchanged"
887
  msgstr ""
888
 
889
+ #: admin/views/section_results.php:82
890
  msgid "No matches found."
891
  msgstr ""
 
 
 
quick-featured-images.php CHANGED
@@ -10,7 +10,7 @@
10
  * Plugin Name: Quick Featured Images
11
  * Plugin URI: http://wordpress.org/plugins/quick-featured-images
12
  * Description: Your time-saving Swiss Army Knife for featured images: Set, replace and delete them in bulk, in posts lists and set default images for future posts.
13
- * Version: 12.3.7
14
  * Author: Martin Stehle
15
  * Author URI: http://stehle-internet.de
16
  * Text Domain: quick-featured-images
10
  * Plugin Name: Quick Featured Images
11
  * Plugin URI: http://wordpress.org/plugins/quick-featured-images
12
  * Description: Your time-saving Swiss Army Knife for featured images: Set, replace and delete them in bulk, in posts lists and set default images for future posts.
13
+ * Version: 13.0
14
  * Author: Martin Stehle
15
  * Author URI: http://stehle-internet.de
16
  * Text Domain: quick-featured-images