Contextual Related Posts - Version 2.1.1

Version Description

  • Modified: Settings page now clearly highlights what options cannot be changed if the default styles are enabled, i.e. thumbnail settings and no excerpt, author or date

=

Download this release

Release Info

Developer Ajay
Plugin Icon 128x128 Contextual Related Posts
Version 2.1.1
Comparing to
See all releases

Code changes from version 2.0.1 to 2.1.1

Files changed (51) hide show
  1. README.md +1 -1
  2. admin/admin.php +46 -12
  3. admin/main-view.php +623 -9
  4. admin/options-custom-styles.php +0 -57
  5. admin/options-feed.php +0 -78
  6. admin/options-genops.php +0 -118
  7. admin/options-output.php +0 -343
  8. admin/sidebar-view.php +3 -2
  9. assets/banner-1544x500.png +0 -0
  10. assets/banner-772x250.png +0 -0
  11. assets/icon-128x128.png +0 -0
  12. assets/icon-256x256.png +0 -0
  13. assets/screenshot-1.png +0 -0
  14. assets/screenshot-2.png +0 -0
  15. assets/screenshot-3.png +0 -0
  16. assets/screenshot-4.png +0 -0
  17. assets/screenshot-5.png +0 -0
  18. assets/screenshot-6.png +0 -0
  19. contextual-related-posts.php +337 -89
  20. css/default-style.css +4 -1
  21. languages/crp-da_DK.mo +0 -0
  22. languages/crp-da_DK.po +349 -303
  23. languages/crp-de_DE.mo +0 -0
  24. languages/crp-de_DE.po +410 -339
  25. languages/crp-el_GR.mo +0 -0
  26. languages/crp-el_GR.po +770 -0
  27. languages/crp-en_US.mo +0 -0
  28. languages/crp-en_US.po +321 -277
  29. languages/crp-en_US.pot +321 -277
  30. languages/crp-es_ES.mo +0 -0
  31. languages/crp-es_ES.po +349 -302
  32. languages/crp-fr_FR.mo +0 -0
  33. languages/crp-fr_FR.po +478 -332
  34. languages/crp-it_IT.mo +0 -0
  35. languages/crp-it_IT.po +365 -315
  36. languages/crp-lt_LT.mo +0 -0
  37. languages/crp-lt_LT.po +360 -310
  38. languages/crp-nl_NL.mo +0 -0
  39. languages/crp-nl_NL.po +361 -312
  40. languages/crp-pt_BR.mo +0 -0
  41. languages/crp-pt_BR.po +759 -0
  42. languages/crp-ro_RO.mo +0 -0
  43. languages/crp-ro_RO.po +446 -331
  44. languages/crp-ru_RU.mo +0 -0
  45. languages/crp-ru_RU.po +368 -318
  46. languages/crp-zh_CN.mo +0 -0
  47. languages/crp-zh_CN.po +371 -313
  48. readme.txt +32 -13
  49. timthumb/cache/index.php +0 -1
  50. timthumb/index.php +0 -1
  51. timthumb/timthumb.php +0 -1270
README.md CHANGED
@@ -2,7 +2,7 @@
2
 
3
  __Requires:__ 3.5
4
 
5
- __Tested up to:__ 4.0
6
 
7
  __License:__ [GPL-2.0+](http://www.gnu.org/licenses/gpl-2.0.html)
8
 
2
 
3
  __Requires:__ 3.5
4
 
5
+ __Tested up to:__ 4.3
6
 
7
  __License:__ [GPL-2.0+](http://www.gnu.org/licenses/gpl-2.0.html)
8
 
admin/admin.php CHANGED
@@ -8,7 +8,7 @@
8
  * @author Ajay D'Souza <me@ajaydsouza.com>
9
  * @license GPL-2.0+
10
  * @link http://ajaydsouza.com
11
- * @copyright 2009-2014 Ajay D'Souza
12
  */
13
 
14
  /**** If this file is called directly, abort. ****/
@@ -25,7 +25,7 @@ if ( ! defined( 'WPINC' ) ) {
25
  */
26
  function crp_options() {
27
 
28
- global $wpdb;
29
 
30
  $crp_settings = crp_read_options();
31
 
@@ -80,17 +80,18 @@ function crp_options() {
80
  $crp_settings['exclude_on_post_ids'] = $_POST['exclude_on_post_ids'] == '' ? '' : implode( ',', array_map( 'intval', explode( ",", $_POST['exclude_on_post_ids'] ) ) );
81
  $crp_settings['exclude_post_ids'] = $_POST['exclude_post_ids'] == '' ? '' : implode( ',', array_map( 'intval', explode( ",", $_POST['exclude_post_ids'] ) ) );
82
 
 
83
  $crp_settings['post_thumb_op'] = wp_kses_post( $_POST['post_thumb_op'] );
 
84
  $crp_settings['thumb_height'] = intval( $_POST['thumb_height'] );
85
  $crp_settings['thumb_width'] = intval( $_POST['thumb_width'] );
86
  $crp_settings['thumb_crop'] = ( isset( $_POST['thumb_crop'] ) ? true : false );
87
  $crp_settings['thumb_html'] = $_POST['thumb_html'];
 
88
  $crp_settings['thumb_meta'] = ( '' == $_POST['thumb_meta'] ? 'post-image' : wp_kses_post( $_POST['thumb_meta'] ) );
89
  $crp_settings['scan_images'] = ( isset( $_POST['scan_images'] ) ? true : false );
90
- $crp_settings['thumb_default'] = wp_kses_post( $_POST['thumb_default'] );
91
  $crp_settings['thumb_default_show'] = ( isset( $_POST['thumb_default_show'] ) ? true : false );
92
- $crp_settings['thumb_timthumb'] = ( isset( $_POST['thumb_timthumb'] ) ? true : false );
93
- $crp_settings['thumb_timthumb_q'] = intval( $_POST['thumb_timthumb_q'] );
94
 
95
  /**** Feed options ****/
96
  $crp_settings['limit_feed'] = intval( $_POST['limit_feed'] );
@@ -155,10 +156,22 @@ function crp_options() {
155
  parse_str( $crp_settings['exclude_on_post_types'], $exclude_on_post_types );
156
  $posts_types_excl = array_intersect( $wp_post_types, $exclude_on_post_types );
157
 
158
- delete_post_meta_by_key( 'crp_related_posts' ); // Delete the cache
159
- delete_post_meta_by_key( 'crp_related_posts_widget' ); // Delete the cache
 
 
 
 
 
 
 
 
 
 
 
 
 
160
 
161
- $str = '<div id="message" class="updated fade"><p>'. __( 'Options saved successfully.', CRP_LOCAL_NAME ) .'</p></div>';
162
  echo $str;
163
  }
164
 
@@ -228,6 +241,10 @@ function crp_adminhead() {
228
  wp_enqueue_script( 'common' );
229
  wp_enqueue_script( 'wp-lists' );
230
  wp_enqueue_script( 'postbox' );
 
 
 
 
231
  ?>
232
  <style type="text/css">
233
  .postbox .handlediv:before {
@@ -378,7 +395,7 @@ function crp_admin_notice() {
378
  function crp_ajax_clearcache() {
379
  global $wpdb;
380
 
381
- $rows = $wpdb->query( "
382
  DELETE FROM " . $wpdb->postmeta . "
383
  WHERE meta_key='crp_related_posts'
384
  " );
@@ -388,8 +405,18 @@ function crp_ajax_clearcache() {
388
  WHERE meta_key='crp_related_posts_widget'
389
  " );
390
 
 
 
 
 
 
 
 
 
 
 
391
  /**** Did an error occur? ****/
392
- if ( ( $rows === false ) && ( $rows2 === false ) ) {
393
  exit( json_encode( array(
394
  'success' => 0,
395
  'message' => __('An error occurred clearing the cache. Please contact your site administrator.\n\nError message:\n', CRP_LOCAL_NAME) . $wpdb->print_error(),
@@ -397,7 +424,7 @@ function crp_ajax_clearcache() {
397
  } else { // No error, return the number of
398
  exit( json_encode( array(
399
  'success' => 1,
400
- 'message' => ($rows+$rows2) . __(' cached row(s) cleared', CRP_LOCAL_NAME),
401
  ) ) );
402
  }
403
  }
@@ -414,6 +441,13 @@ add_action( 'wp_ajax_crp_clear_cache', 'crp_ajax_clearcache' );
414
  */
415
  function crp_add_meta_box( $post_type, $post ) {
416
 
 
 
 
 
 
 
 
417
  add_meta_box(
418
  'crp_metabox',
419
  __( 'Contextual Related Posts', CRP_LOCAL_NAME ),
@@ -422,7 +456,7 @@ function crp_add_meta_box( $post_type, $post ) {
422
  'advanced',
423
  'default'
424
  );
425
-
426
  }
427
  add_action( 'add_meta_boxes', 'crp_add_meta_box' , 10, 2 );
428
 
8
  * @author Ajay D'Souza <me@ajaydsouza.com>
9
  * @license GPL-2.0+
10
  * @link http://ajaydsouza.com
11
+ * @copyright 2009-2015 Ajay D'Souza
12
  */
13
 
14
  /**** If this file is called directly, abort. ****/
25
  */
26
  function crp_options() {
27
 
28
+ global $wpdb, $crp_url;
29
 
30
  $crp_settings = crp_read_options();
31
 
80
  $crp_settings['exclude_on_post_ids'] = $_POST['exclude_on_post_ids'] == '' ? '' : implode( ',', array_map( 'intval', explode( ",", $_POST['exclude_on_post_ids'] ) ) );
81
  $crp_settings['exclude_post_ids'] = $_POST['exclude_post_ids'] == '' ? '' : implode( ',', array_map( 'intval', explode( ",", $_POST['exclude_post_ids'] ) ) );
82
 
83
+ /**** Thumbnail options ****/
84
  $crp_settings['post_thumb_op'] = wp_kses_post( $_POST['post_thumb_op'] );
85
+ $crp_settings['thumb_size'] = $_POST['thumb_size'];
86
  $crp_settings['thumb_height'] = intval( $_POST['thumb_height'] );
87
  $crp_settings['thumb_width'] = intval( $_POST['thumb_width'] );
88
  $crp_settings['thumb_crop'] = ( isset( $_POST['thumb_crop'] ) ? true : false );
89
  $crp_settings['thumb_html'] = $_POST['thumb_html'];
90
+
91
  $crp_settings['thumb_meta'] = ( '' == $_POST['thumb_meta'] ? 'post-image' : wp_kses_post( $_POST['thumb_meta'] ) );
92
  $crp_settings['scan_images'] = ( isset( $_POST['scan_images'] ) ? true : false );
93
+ $crp_settings['thumb_default'] = ( ( '' == $_POST['thumb_default'] ) || ( "/default.png" == $_POST['thumb_default'] ) ) ? $crp_url . '/default.png' : $_POST['thumb_default'];
94
  $crp_settings['thumb_default_show'] = ( isset( $_POST['thumb_default_show'] ) ? true : false );
 
 
95
 
96
  /**** Feed options ****/
97
  $crp_settings['limit_feed'] = intval( $_POST['limit_feed'] );
156
  parse_str( $crp_settings['exclude_on_post_types'], $exclude_on_post_types );
157
  $posts_types_excl = array_intersect( $wp_post_types, $exclude_on_post_types );
158
 
159
+ // Delete the cache
160
+ delete_post_meta_by_key( 'crp_related_posts' );
161
+ delete_post_meta_by_key( 'crp_related_posts_widget' );
162
+ delete_post_meta_by_key( 'crp_related_posts_feed' );
163
+ delete_post_meta_by_key( 'crp_related_posts_widget_feed' );
164
+
165
+ /* Echo a success message */
166
+ $str = '<div id="message" class="updated fade"><p>'. __( 'Options saved successfully.', CRP_LOCAL_NAME ) . '</p>';
167
+
168
+ if ( isset( $_POST['include_default_style'] ) ) {
169
+ $str .= '<p>'. __( 'Default styles selected. Thumbnail width, height and crop settings have been fixed. Author, Excerpt and Date will not be displayed.', CRP_LOCAL_NAME ) . '</p>';
170
+
171
+ }
172
+
173
+ $str .= '</div>';
174
 
 
175
  echo $str;
176
  }
177
 
241
  wp_enqueue_script( 'common' );
242
  wp_enqueue_script( 'wp-lists' );
243
  wp_enqueue_script( 'postbox' );
244
+ wp_enqueue_script( 'plugin-install' );
245
+
246
+ add_thickbox();
247
+
248
  ?>
249
  <style type="text/css">
250
  .postbox .handlediv:before {
395
  function crp_ajax_clearcache() {
396
  global $wpdb;
397
 
398
+ $rows1 = $wpdb->query( "
399
  DELETE FROM " . $wpdb->postmeta . "
400
  WHERE meta_key='crp_related_posts'
401
  " );
405
  WHERE meta_key='crp_related_posts_widget'
406
  " );
407
 
408
+ $rows3 = $wpdb->query( "
409
+ DELETE FROM " . $wpdb->postmeta . "
410
+ WHERE meta_key='crp_related_posts_feed'
411
+ " );
412
+
413
+ $rows4 = $wpdb->query( "
414
+ DELETE FROM " . $wpdb->postmeta . "
415
+ WHERE meta_key='crp_related_posts_widget_feed'
416
+ " );
417
+
418
  /**** Did an error occur? ****/
419
+ if ( ( $rows1 === false ) && ( $rows2 === false ) && ( $rows3 === false ) && ( $rows4 === false ) ) {
420
  exit( json_encode( array(
421
  'success' => 0,
422
  'message' => __('An error occurred clearing the cache. Please contact your site administrator.\n\nError message:\n', CRP_LOCAL_NAME) . $wpdb->print_error(),
424
  } else { // No error, return the number of
425
  exit( json_encode( array(
426
  'success' => 1,
427
+ 'message' => ($rows1+$rows2+$rows3+$rows4) . __(' cached row(s) cleared', CRP_LOCAL_NAME),
428
  ) ) );
429
  }
430
  }
441
  */
442
  function crp_add_meta_box( $post_type, $post ) {
443
 
444
+ $args = array(
445
+ 'public' => true,
446
+ );
447
+ $post_types = get_post_types( $args );
448
+
449
+ if ( in_array( $post_type, $post_types ) ) {
450
+
451
  add_meta_box(
452
  'crp_metabox',
453
  __( 'Contextual Related Posts', CRP_LOCAL_NAME ),
456
  'advanced',
457
  'default'
458
  );
459
+ }
460
  }
461
  add_action( 'add_meta_boxes', 'crp_add_meta_box' , 10, 2 );
462
 
admin/main-view.php CHANGED
@@ -6,7 +6,7 @@
6
  * @author Ajay D'Souza <me@ajaydsouza.com>
7
  * @license GPL-2.0+
8
  * @link http://ajaydsouza.com
9
- * @copyright 2009-2014 Ajay D'Souza
10
  */
11
 
12
  // If this file is called directly, abort.
@@ -30,7 +30,9 @@ if ( ! defined( 'WPINC' ) ) {
30
  ?>
31
 
32
  <li><a href="#genopdiv"><?php _e( 'General options', CRP_LOCAL_NAME ); ?></a> | </li>
 
33
  <li><a href="#outputopdiv"><?php _e( 'Output options', CRP_LOCAL_NAME ); ?></a> | </li>
 
34
  <li><a href="#feedopdiv"><?php _e( 'Feed options', CRP_LOCAL_NAME ); ?></a> | </li>
35
  <li><a href="#customcssdiv"><?php _e( 'Custom styles', CRP_LOCAL_NAME ); ?></a></li>
36
  <?php
@@ -47,20 +49,529 @@ if ( ! defined( 'WPINC' ) ) {
47
  <div id="post-body" class="metabox-holder columns-2">
48
  <div id="post-body-content">
49
  <form method="post" id="crp_options" name="crp_options" onsubmit="return checkForm()">
 
50
  <div id="genopdiv" class="postbox"><div class="handlediv" title="Click to toggle"><br /></div>
51
  <h3 class='hndle'><span><?php _e( 'General options', CRP_LOCAL_NAME ); ?></span></h3>
52
  <div class="inside">
53
 
54
- <?php include_once( 'options-genops.php' ); ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
55
 
56
  </div> <!-- // inside -->
57
  </div> <!-- // genopdiv -->
58
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
59
  <div id="outputopdiv" class="postbox"><div class="handlediv" title="Click to toggle"><br /></div>
60
  <h3 class='hndle'><span><?php _e( 'Output options', CRP_LOCAL_NAME ); ?></span></h3>
61
  <div class="inside">
62
 
63
- <?php include_once( 'options-output.php' ); ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
64
 
65
  </div> <!-- // inside -->
66
  </div> <!-- // outputopdiv -->
@@ -69,18 +580,121 @@ if ( ! defined( 'WPINC' ) ) {
69
  <h3 class='hndle'><span><?php _e( 'Feed options', CRP_LOCAL_NAME ); ?></span></h3>
70
  <div class="inside">
71
 
72
- <?php include_once( 'options-feed.php' ); ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
73
 
74
- </div>
75
- </div>
76
  <div id="customcssdiv" class="postbox"><div class="handlediv" title="Click to toggle"><br /></div>
77
  <h3 class='hndle'><span><?php _e( 'Custom styles', CRP_LOCAL_NAME ); ?></span></h3>
78
  <div class="inside">
79
 
80
- <?php include_once( 'options-custom-styles.php' ); ?>
 
 
 
 
 
 
 
 
 
 
 
81
 
82
- </div>
83
- </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
84
 
85
  <?php
86
  /**
6
  * @author Ajay D'Souza <me@ajaydsouza.com>
7
  * @license GPL-2.0+
8
  * @link http://ajaydsouza.com
9
+ * @copyright 2009-2015 Ajay D'Souza
10
  */
11
 
12
  // If this file is called directly, abort.
30
  ?>
31
 
32
  <li><a href="#genopdiv"><?php _e( 'General options', CRP_LOCAL_NAME ); ?></a> | </li>
33
+ <li><a href="#tuneopdiv"><?php _e( 'List tuning options', CRP_LOCAL_NAME ); ?></a> | </li>
34
  <li><a href="#outputopdiv"><?php _e( 'Output options', CRP_LOCAL_NAME ); ?></a> | </li>
35
+ <li><a href="#thumbopdiv"><?php _e( 'Thumbnail options', CRP_LOCAL_NAME ); ?></a> | </li>
36
  <li><a href="#feedopdiv"><?php _e( 'Feed options', CRP_LOCAL_NAME ); ?></a> | </li>
37
  <li><a href="#customcssdiv"><?php _e( 'Custom styles', CRP_LOCAL_NAME ); ?></a></li>
38
  <?php
49
  <div id="post-body" class="metabox-holder columns-2">
50
  <div id="post-body-content">
51
  <form method="post" id="crp_options" name="crp_options" onsubmit="return checkForm()">
52
+
53
  <div id="genopdiv" class="postbox"><div class="handlediv" title="Click to toggle"><br /></div>
54
  <h3 class='hndle'><span><?php _e( 'General options', CRP_LOCAL_NAME ); ?></span></h3>
55
  <div class="inside">
56
 
57
+ <table class="form-table">
58
+
59
+ <?php
60
+ /**
61
+ * Fires before General options block.
62
+ *
63
+ * @since 2.0.0
64
+ *
65
+ * @param array $crp_settings Contextual Related Posts settings array
66
+ */
67
+ do_action( 'crp_admin_general_options_before', $crp_settings );
68
+ ?>
69
+
70
+ <tr><th scope="row"><label for="cache"><?php _e( 'Cache output?', CRP_LOCAL_NAME ); ?></label></th>
71
+ <td><input type="checkbox" name="cache" id="cache" <?php if ( $crp_settings['cache'] ) echo 'checked="checked"' ?> />
72
+ <p class="description"><?php _e( 'Enabling this option will cache the related posts output when the post is visited the first time. The cache is cleaned when you save this page.', CRP_LOCAL_NAME ); ?></p>
73
+ <p><input type="button" value="<?php _e( 'Clear cache', CRP_LOCAL_NAME ) ?>" onclick="return clearCache();" class="button-secondary" /></p>
74
+ </td>
75
+ </tr>
76
+
77
+ <tr><th scope="row"><?php _e( 'Add related posts to:', CRP_LOCAL_NAME ); ?></th>
78
+ <td>
79
+ <label><input type="checkbox" name="add_to_content" id="add_to_content" <?php if ( $crp_settings['add_to_content'] ) echo 'checked="checked"' ?> /> <?php _e( 'Posts', CRP_LOCAL_NAME ); ?></label><br />
80
+ <label><input type="checkbox" name="add_to_page" id="add_to_page" <?php if ( $crp_settings['add_to_page'] ) echo 'checked="checked"' ?> /> <?php _e( 'Pages', CRP_LOCAL_NAME ); ?></label><br />
81
+ <label><input type="checkbox" name="add_to_home" id="add_to_home" <?php if ( $crp_settings['add_to_home'] ) echo 'checked="checked"' ?> /> <?php _e( 'Home page', CRP_LOCAL_NAME ); ?></label></label><br />
82
+ <label><input type="checkbox" name="add_to_feed" id="add_to_feed" <?php if ( $crp_settings['add_to_feed'] ) echo 'checked="checked"' ?> /> <?php _e( 'Feeds', CRP_LOCAL_NAME ); ?></label></label><br />
83
+ <label><input type="checkbox" name="add_to_category_archives" id="add_to_category_archives" <?php if ( $crp_settings['add_to_category_archives'] ) echo 'checked="checked"' ?> /> <?php _e( 'Category archives', CRP_LOCAL_NAME ); ?></label><br />
84
+ <label><input type="checkbox" name="add_to_tag_archives" id="add_to_tag_archives" <?php if ( $crp_settings['add_to_tag_archives'] ) echo 'checked="checked"' ?> /> <?php _e( 'Tag archives', CRP_LOCAL_NAME ); ?></label></label><br />
85
+ <label><input type="checkbox" name="add_to_archives" id="add_to_archives" <?php if ( $crp_settings['add_to_archives'] ) echo 'checked="checked"' ?> /> <?php _e( 'Other archives', CRP_LOCAL_NAME ); ?></label></label>
86
+ <p class="description"><?php _e( "If you choose to disable this, please add <code>&lt;?php if ( function_exists( 'echo_ald_crp' ) ) echo_ald_crp(); ?&gt;</code> to your template file where you want it displayed", CRP_LOCAL_NAME ); ?></p>
87
+ </td>
88
+ </tr>
89
+
90
+ <tr><th scope="row"><label for="content_filter_priority"><?php _e( 'Content filter priority:', CRP_LOCAL_NAME ); ?></label></th>
91
+ <td>
92
+ <input type="textbox" name="content_filter_priority" id="content_filter_priority" value="<?php echo esc_attr( stripslashes( $crp_settings['content_filter_priority'] ) ); ?>" />
93
+ <p class="description"><?php _e( 'A higher number will cause the content above to be processed after other filters. Number below 10 is not recommended.', CRP_LOCAL_NAME ); ?></p>
94
+ </td>
95
+ </tr>
96
+
97
+ <tr><th scope="row"><label for="show_credit"><?php _e( "Tell the world you're using Contextual Related Posts:", CRP_LOCAL_NAME ); ?></label></th>
98
+ <td>
99
+ <input type="checkbox" name="show_credit" id="show_credit" <?php if ( $crp_settings['show_credit'] ) echo 'checked="checked"' ?> /> <?php _e( ' <em>Optional</em>', CRP_LOCAL_NAME ); ?>
100
+ <p class="description"><?php _e( 'Adds a nofollow link to Contextual Related Posts homepage as the last time in the list.', CRP_LOCAL_NAME ); ?></p>
101
+ </td>
102
+ </tr>
103
+
104
+ <?php
105
+ /**
106
+ * Fires after General options block.
107
+ *
108
+ * @since 2.0.0
109
+ *
110
+ * @param array $crp_settings Contextual Related Posts settings array
111
+ */
112
+ do_action( 'crp_admin_general_options_after', $crp_settings );
113
+ ?>
114
+
115
+ </table>
116
+
117
+ <p>
118
+ <input type="submit" name="crp_save" id="crp_genop_save" value="<?php _e( 'Save Options', CRP_LOCAL_NAME ); ?>" class="button button-primary" />
119
+ </p>
120
 
121
  </div> <!-- // inside -->
122
  </div> <!-- // genopdiv -->
123
 
124
+ <div id="tuneopdiv" class="postbox"><div class="handlediv" title="Click to toggle"><br /></div>
125
+ <h3 class='hndle'><span><?php _e( 'List tuning options', CRP_LOCAL_NAME ); ?></span></h3>
126
+ <div class="inside">
127
+
128
+ <table class="form-table">
129
+
130
+ <?php
131
+ /**
132
+ * Fires before Tuning options block.
133
+ *
134
+ * @since 2.1.0
135
+ *
136
+ * @param array $crp_settings Contextual Related Posts settings array
137
+ */
138
+ do_action( 'crp_admin_tuning_options_before', $crp_settings );
139
+ ?>
140
+
141
+ <tr><th scope="row"><label for="limit"><?php _e( 'Number of related posts to display: ', CRP_LOCAL_NAME ); ?></label></th>
142
+ <td>
143
+ <input type="textbox" name="limit" id="limit" value="<?php echo esc_attr( stripslashes( $crp_settings['limit'] ) ); ?>">
144
+ <p class="description"><?php _e( 'Maximum number of posts that will be displayed. The actual number may be smaller if less related posts are found.', CRP_LOCAL_NAME ); ?></p>
145
+ </td>
146
+ </tr>
147
+
148
+ <tr><th scope="row"><label for="daily_range"><?php _e( 'Related posts should be newer than:', CRP_LOCAL_NAME ); ?></label></th>
149
+ <td>
150
+ <input type="textbox" name="daily_range" id="daily_range" value="<?php echo esc_attr( stripslashes( $crp_settings['daily_range'] ) ); ?>"><?php _e( 'days', CRP_LOCAL_NAME ); ?>
151
+ <p class="description"><?php _e( 'This sets the cutoff period for which posts will be displayed. e.g. setting it to 365 will show related posts from the last year only. Set it to 0 to disable limiting posts.', CRP_LOCAL_NAME ); ?></p>
152
+ </td>
153
+ </tr>
154
+
155
+ <tr><th scope="row"><label for="match_content"><?php _e( 'Find related posts based on content as well as title:', CRP_LOCAL_NAME ); ?></label></th>
156
+ <td><input type="checkbox" name="match_content" id="match_content" <?php if ( $crp_settings['match_content'] ) echo 'checked="checked"' ?> />
157
+ <p class="description"><?php _e( 'If unchecked, only posts titles are used. I recommend using a caching plugin or enabling "Cache output" above if you enable this.', CRP_LOCAL_NAME ); ?></p>
158
+ </td>
159
+ </tr>
160
+
161
+ <tr><th scope="row"><label for="match_content_words"><?php _e( 'Limit content to be compared', CRP_LOCAL_NAME ); ?></label></th>
162
+ <td><input type="textbox" name="match_content_words" id="match_content_words" value="<?php echo esc_attr(stripslashes($crp_settings['match_content_words'])); ?>">
163
+ <p class="description"><?php _e( 'This sets the maximum words of the content that will be matched. 0 means no limit.', CRP_LOCAL_NAME ); ?></p>
164
+ </td>
165
+ </tr>
166
+
167
+ <tr><th scope="row"><?php _e( 'Post types to include in results:', CRP_LOCAL_NAME ); ?></th>
168
+ <td>
169
+ <?php foreach ( $wp_post_types as $wp_post_type ) {
170
+ $post_type_op = '<label><input type="checkbox" name="post_types[]" value="' . $wp_post_type . '" ';
171
+ if ( in_array( $wp_post_type, $posts_types_inc ) ) {
172
+ $post_type_op .= ' checked="checked" ';
173
+ }
174
+ $post_type_op .= ' />'.$wp_post_type.'</label>&nbsp;&nbsp;';
175
+ echo $post_type_op;
176
+ }
177
+ ?>
178
+ <p class="description"><?php _e( 'These post types will be displayed in the list. Includes custom post types.', CRP_LOCAL_NAME ); ?></p>
179
+ </td>
180
+ </tr>
181
+
182
+ <tr><th scope="row"><label for="exclude_post_ids"><?php _e( 'List of post or page IDs to exclude from the results:', CRP_LOCAL_NAME ); ?></label></th>
183
+ <td><input type="textbox" name="exclude_post_ids" id="exclude_post_ids" value="<?php echo esc_attr( stripslashes( $crp_settings['exclude_post_ids'] ) ); ?>" style="width:250px">
184
+ <p class="description"><?php _e( 'Comma separated list of post, page or custom post type IDs. e.g. 188,320,500', CRP_LOCAL_NAME ); ?></p>
185
+ </td>
186
+ </tr>
187
+
188
+ <tr><th scope="row"><label for="exclude_cat_slugs"><?php _e( 'Categories to exclude from the results: ', CRP_LOCAL_NAME ); ?></label></th>
189
+ <td>
190
+ <div style="position:relative;text-align:left">
191
+ <table id="MYCUSTOMFLOATER" class="myCustomFloater" style="position:absolute;top:50px;left:0;background-color:#cecece;display:none;visibility:hidden">
192
+ <tr><td><!--
193
+ please see: http://chrisholland.blogspot.com/2004/09/geekstuff-css-display-inline-block.html
194
+ to explain why i'm using a table here.
195
+ You could replace the table/tr/td with a DIV, but you'd have to specify it's width and height
196
+ -->
197
+ <div class="myCustomFloaterContent">
198
+ you should never be seeing this
199
+ </div>
200
+ </td></tr>
201
+ </table>
202
+ <textarea class="wickEnabled:MYCUSTOMFLOATER" cols="50" rows="3" wrap="virtual" name="exclude_cat_slugs"><?php echo ( stripslashes( $crp_settings['exclude_cat_slugs'] ) ); ?></textarea>
203
+ </div>
204
+ <p class="description"><?php _e( 'Comma separated list of category slugs. The field above has an autocomplete so simply start typing in the beginning of your category name and it will prompt you with options.', CRP_LOCAL_NAME ); ?></p>
205
+ </td>
206
+ </tr>
207
+
208
+ <?php
209
+ /**
210
+ * Fires after Tuning options block.
211
+ *
212
+ * @since 2.1.0
213
+ *
214
+ * @param array $crp_settings Contextual Related Posts settings array
215
+ */
216
+ do_action( 'crp_admin_tuning_options_after', $crp_settings );
217
+ ?>
218
+
219
+ </table>
220
+
221
+ <p>
222
+ <input type="submit" name="crp_save" id="crp_tuneop_save" value="<?php _e( 'Save Options', CRP_LOCAL_NAME ); ?>" class="button button-primary" />
223
+ </p>
224
+
225
+ </div> <!-- // inside -->
226
+ </div> <!-- // tuneopdiv -->
227
+
228
  <div id="outputopdiv" class="postbox"><div class="handlediv" title="Click to toggle"><br /></div>
229
  <h3 class='hndle'><span><?php _e( 'Output options', CRP_LOCAL_NAME ); ?></span></h3>
230
  <div class="inside">
231
 
232
+ <table class="form-table">
233
+
234
+ <?php
235
+ /**
236
+ * Fires before output options main block.
237
+ *
238
+ * @since 2.0.0
239
+ *
240
+ * @param array $crp_settings Contextual Related Posts settings array
241
+ */
242
+ do_action( 'crp_admin_output_options_before', $crp_settings );
243
+ ?>
244
+
245
+ <tr><th scope="row"><label for="title"><?php _e( 'Title of related posts: ', CRP_LOCAL_NAME ); ?></label></th>
246
+ <td>
247
+ <input type="textbox" name="title" id="title" value="<?php echo esc_attr( stripslashes( $crp_settings['title'] ) ); ?>" style="width:250px" />
248
+ <p class="description"><?php _e( 'This is the main heading of the related posts. You can also display the current post title by using <code>%postname%</code>. e.g. <code>Related Posts to %postname%</code>', CRP_LOCAL_NAME ); ?></p>
249
+ </td>
250
+ </tr>
251
+
252
+ <tr><th scope="row"><label for="blank_output"><?php _e( 'When there are no posts, what should be shown?', CRP_LOCAL_NAME ); ?></label></th>
253
+ <td>
254
+ <label>
255
+ <input type="radio" name="blank_output" value="blank" id="blank_output_0" <?php if ( $crp_settings['blank_output'] ) echo 'checked="checked"' ?> />
256
+ <?php _e( 'Blank Output', CRP_LOCAL_NAME ); ?></label>
257
+ <br />
258
+ <label>
259
+ <input type="radio" name="blank_output" value="customs" id="blank_output_1" <?php if ( ! $crp_settings['blank_output'] ) echo 'checked="checked"' ?> />
260
+ <?php _e( 'Display:', CRP_LOCAL_NAME ); ?></label>
261
+ <input type="textbox" name="blank_output_text" id="blank_output_text" value="<?php echo esc_attr( stripslashes( $crp_settings['blank_output_text'] ) ); ?>" style="width:250px" />
262
+ </td>
263
+ </tr>
264
+
265
+ <tr><th scope="row"><label for="show_excerpt"><?php _e( 'Show post excerpt in list?', CRP_LOCAL_NAME ); ?></label></th>
266
+ <td>
267
+ <input type="checkbox" name="show_excerpt" id="show_excerpt" <?php if ( $crp_settings['show_excerpt'] ) echo 'checked="checked"' ?> />
268
+ <p class="description"><?php printf( __( "Displays the excerpt of the post. If you do not provide an explicit excerpt to a post (in the post editor's optional excerpt field), it will display an automatic excerpt which refers to the first %d words of the post's content", CRP_LOCAL_NAME ), $crp_settings['excerpt_length'] ); ?></p>
269
+
270
+ <?php if ( $crp_settings['include_default_style'] ) { ?>
271
+ <p style="color: #F00"><?php _e( "Default style selected under the Custom Styles. Excerpt display is disabled.", CRP_LOCAL_NAME ); ?></p>
272
+ <?php } ?>
273
+ </td>
274
+ </tr>
275
+
276
+ <tr><th scope="row"><label for="excerpt_length"><?php _e( 'Length of excerpt (in words): ', CRP_LOCAL_NAME ); ?></label></th>
277
+ <td>
278
+ <input type="textbox" name="excerpt_length" id="excerpt_length" value="<?php echo stripslashes( $crp_settings['excerpt_length'] ); ?>" />
279
+ </td>
280
+ </tr>
281
+
282
+ <tr><th scope="row"><label for="show_author"><?php _e( 'Show post author in list?', CRP_LOCAL_NAME ); ?></label></th>
283
+ <td>
284
+ <input type="checkbox" name="show_author" id="show_author" <?php if ( $crp_settings['show_author'] ) echo 'checked="checked"' ?> />
285
+ <p class="description"><?php _e( 'Displays the author name prefixed with "by". e.g. by John Doe', CRP_LOCAL_NAME ); ?></p>
286
+
287
+ <?php if ( $crp_settings['include_default_style'] ) { ?>
288
+ <p style="color: #F00"><?php _e( "Default style selected under the Custom Styles. Author display is disabled.", CRP_LOCAL_NAME ); ?></p>
289
+ <?php } ?>
290
+ </td>
291
+ </tr>
292
+
293
+ <tr><th scope="row"><label for="show_date"><?php _e( 'Show post date in list?', CRP_LOCAL_NAME ); ?></label></th>
294
+ <td>
295
+ <input type="checkbox" name="show_date" id="show_date" <?php if ( $crp_settings['show_date'] ) echo 'checked="checked"' ?> />
296
+ <p class="description"><?php _e( "Displays the date of the post. Uses the same date format set in General Options", CRP_LOCAL_NAME ); ?></p>
297
+
298
+ <?php if ( $crp_settings['include_default_style'] ) { ?>
299
+ <p style="color: #F00"><?php _e( "Default style selected under the Custom Styles. Date display is disabled.", CRP_LOCAL_NAME ); ?></p>
300
+ <?php } ?>
301
+ </td>
302
+ </tr>
303
+
304
+ <tr><th scope="row"><label for="title_length"><?php _e( 'Limit post title length (in characters)', CRP_LOCAL_NAME ); ?></label></th>
305
+ <td>
306
+ <input type="textbox" name="title_length" id="title_length" value="<?php echo stripslashes( $crp_settings['title_length'] ); ?>" />
307
+ <p class="description"><?php _e( "Any title longer than the number of characters set above will be cut and appended with a &helip;", CRP_LOCAL_NAME ); ?></p>
308
+ </td>
309
+ </tr>
310
+
311
+ <tr><th scope="row"><label for="link_new_window"><?php _e( 'Open links in new window', CRP_LOCAL_NAME ); ?></label></th>
312
+ <td>
313
+ <input type="checkbox" name="link_new_window" id="link_new_window" <?php if ( $crp_settings['link_new_window'] ) echo 'checked="checked"' ?> /
314
+ ></td>
315
+ </tr>
316
+
317
+ <tr><th scope="row"><label for="link_nofollow"><?php _e( 'Add nofollow attribute to links in the list', CRP_LOCAL_NAME ); ?></label></th>
318
+ <td>
319
+ <input type="checkbox" name="link_nofollow" id="link_nofollow" <?php if ( $crp_settings['link_nofollow'] ) echo 'checked="checked"' ?> />
320
+ </td>
321
+ </tr>
322
+
323
+ <?php
324
+ /**
325
+ * Fires after Output options main block.
326
+ *
327
+ * @since 2.0.0
328
+ *
329
+ * @param array $crp_settings Contextual Related Posts settings array
330
+ */
331
+ do_action( 'crp_admin_output_options_after', $crp_settings );
332
+ ?>
333
+
334
+ </table>
335
+ <hr />
336
+ <table class="form-table">
337
+
338
+ <?php
339
+ /**
340
+ * Fires before Exclusion options block under Output options.
341
+ *
342
+ * @since 2.0.0
343
+ *
344
+ * @param array $crp_settings Contextual Related Posts settings array
345
+ */
346
+ do_action( 'crp_admin_exclusion_options_before', $crp_settings );
347
+ ?>
348
+
349
+ <tr>
350
+ <th scope="row" colspan="2" style="background: #eee; padding-left: 5px;"><?php _e( 'Exclusion settings:', CRP_LOCAL_NAME ); ?></th>
351
+ </tr>
352
+ <tr><th scope="row"><label for="exclude_on_post_ids"><?php _e( 'Exclude display of related posts on these posts / pages', CRP_LOCAL_NAME ); ?></label></th>
353
+ <td>
354
+ <input type="textbox" name="exclude_on_post_ids" id="exclude_on_post_ids" value="<?php echo esc_attr( stripslashes( $crp_settings['exclude_on_post_ids'] ) ); ?>" style="width:250px">
355
+ <p class="description"><?php _e( 'Comma separated list of post, page or custom post type IDs. e.g. 188,320,500', CRP_LOCAL_NAME ); ?></p>
356
+ </td>
357
+ </tr>
358
+ <tr><th scope="row"><?php _e( 'Exclude display of related posts on these post types.', CRP_LOCAL_NAME ); ?></th>
359
+ <td>
360
+ <?php foreach ( $wp_post_types as $wp_post_type ) {
361
+ $post_type_op = '<label><input type="checkbox" name="exclude_on_post_types[]" value="' . $wp_post_type . '" ';
362
+ if ( in_array( $wp_post_type, $posts_types_excl ) ) $post_type_op .= ' checked="checked" ';
363
+ $post_type_op .= ' />' . $wp_post_type . '</label>&nbsp;&nbsp;';
364
+ echo $post_type_op;
365
+ }
366
+ ?>
367
+ <p class="description"><?php _e( 'The related posts will not display on any of the above selected post types', CRP_LOCAL_NAME ); ?></p>
368
+ </td>
369
+ </tr>
370
+
371
+ <?php
372
+ /**
373
+ * Fires after Exclusion options block under Output options.
374
+ *
375
+ * @since 2.0.0
376
+ *
377
+ * @param array $crp_settings Contextual Related Posts settings array
378
+ */
379
+ do_action( 'crp_admin_exclusion_options_after', $crp_settings );
380
+ ?>
381
+
382
+ </table>
383
+ <hr />
384
+ <table class="form-table">
385
+
386
+ <?php
387
+ /**
388
+ * Fires before Customize options block under Output options.
389
+ *
390
+ * @since 2.0.0
391
+ *
392
+ * @param array $crp_settings Contextual Related Posts settings array
393
+ */
394
+ do_action( 'crp_admin_customize_options_before', $crp_settings );
395
+ ?>
396
+
397
+ <tr><th scope="row" colspan="2" style="background: #eee; padding-left: 5px;"><?php _e( 'Customize the output:', CRP_LOCAL_NAME ); ?></th>
398
+ </tr>
399
+ <tr><th scope="row"><label for="before_list"><?php _e( 'HTML to display before the list of posts: ', CRP_LOCAL_NAME ); ?></label></th>
400
+ <td><input type="textbox" name="before_list" id="before_list" value="<?php echo esc_attr( stripslashes( $crp_settings['before_list'] ) ); ?>" style="width:250px" /></td>
401
+ </tr>
402
+ <tr><th scope="row"><label for="before_list_item"><?php _e( 'HTML to display before each list item: ', CRP_LOCAL_NAME ); ?></label></th>
403
+ <td><input type="textbox" name="before_list_item" id="before_list_item" value="<?php echo esc_attr( stripslashes( $crp_settings['before_list_item'] ) ); ?>" style="width:250px" /></td>
404
+ </tr>
405
+ <tr><th scope="row"><label for="after_list_item"><?php _e( 'HTML to display after each list item: ', CRP_LOCAL_NAME ); ?></label></th>
406
+ <td><input type="textbox" name="after_list_item" id="after_list_item" value="<?php echo esc_attr( stripslashes( $crp_settings['after_list_item'] ) ); ?>" style="width:250px" /></td>
407
+ </tr>
408
+ <tr><th scope="row"><label for="after_list"><?php _e( 'HTML to display after the list of posts: ', CRP_LOCAL_NAME ); ?></label></th>
409
+ <td><input type="textbox" name="after_list" id="after_list" value="<?php echo esc_attr( stripslashes( $crp_settings['after_list'] ) ); ?>" style="width:250px" /></td>
410
+ </tr>
411
+
412
+ <?php
413
+ /**
414
+ * Fires after Customize options block under Output options.
415
+ *
416
+ * @since 2.0.0
417
+ *
418
+ * @param array $crp_settings Contextual Related Posts settings array
419
+ */
420
+ do_action( 'crp_admin_customize_options_after', $crp_settings );
421
+ ?>
422
+
423
+ </table>
424
+
425
+ <p>
426
+ <input type="submit" name="crp_save" id="crp_outputop_save" value="<?php _e( 'Save Options', CRP_LOCAL_NAME ); ?>" class="button button-primary" />
427
+ </p>
428
+
429
+ </div> <!-- // inside -->
430
+ </div> <!-- // outputopdiv -->
431
+
432
+ <div id="thumbopdiv" class="postbox"><div class="handlediv" title="Click to toggle"><br /></div>
433
+ <h3 class='hndle'><span><?php _e( 'Thumbnail options', CRP_LOCAL_NAME ); ?></span></h3>
434
+ <div class="inside">
435
+
436
+ <table class="form-table">
437
+
438
+ <?php
439
+ /**
440
+ * Fires before Thumbnail options block under Output options.
441
+ *
442
+ * @since 2.0.0
443
+ *
444
+ * @param array $crp_settings Contextual Related Posts settings array
445
+ */
446
+ do_action( 'crp_admin_thumb_options_before', $crp_settings );
447
+ ?>
448
+
449
+ <tr><th scope="row"><label for="post_thumb_op"><?php _e( 'Location of post thumbnail:', CRP_LOCAL_NAME ); ?></label></th>
450
+ <td>
451
+ <label>
452
+ <input type="radio" name="post_thumb_op" value="inline" id="post_thumb_op_0" <?php if ( 'inline' == $crp_settings['post_thumb_op'] ) echo 'checked="checked"' ?> />
453
+ <?php _e( 'Display thumbnails inline with posts, before title', CRP_LOCAL_NAME ); ?></label>
454
+ <br />
455
+ <label>
456
+ <input type="radio" name="post_thumb_op" value="after" id="post_thumb_op_1" <?php if ( 'after' == $crp_settings['post_thumb_op'] ) echo 'checked="checked"' ?> />
457
+ <?php _e( 'Display thumbnails inline with posts, after title', CRP_LOCAL_NAME ); ?></label>
458
+ <br />
459
+ <label>
460
+ <input type="radio" name="post_thumb_op" value="thumbs_only" id="post_thumb_op_2" <?php if ( 'thumbs_only' == $crp_settings['post_thumb_op'] ) echo 'checked="checked"' ?> />
461
+ <?php _e( 'Display only thumbnails, no text', CRP_LOCAL_NAME ); ?></label>
462
+ <br />
463
+ <label>
464
+ <input type="radio" name="post_thumb_op" value="text_only" id="post_thumb_op_3" <?php if ( 'text_only' == $crp_settings['post_thumb_op'] ) echo 'checked="checked"' ?> />
465
+ <?php _e( 'Do not display thumbnails, only text.', CRP_LOCAL_NAME ); ?></label>
466
+
467
+ <?php if ( $crp_settings['include_default_style'] ) { ?>
468
+ <p style="color: #F00"><?php _e( "Default style selected under the Custom Styles. Location of thumbnail forced to be inline before title", CRP_LOCAL_NAME ); ?></p>
469
+ <?php } ?>
470
+ </td>
471
+ </tr>
472
+ <tr><th scope="row"><?php _e( 'Thumbnail size:', CRP_LOCAL_NAME ); ?></th>
473
+ <td>
474
+ <?php
475
+ $crp_get_all_image_sizes = crp_get_all_image_sizes();
476
+ if ( isset( $crp_get_all_image_sizes['crp_thumbnail'] ) ) {
477
+ unset( $crp_get_all_image_sizes['crp_thumbnail'] );
478
+ }
479
+
480
+ foreach( $crp_get_all_image_sizes as $size ) :
481
+ ?>
482
+ <label>
483
+ <input type="radio" name="thumb_size" value="<?php echo $size['name'] ?>" id="<?php echo $size['name'] ?>" <?php if ( $crp_settings['thumb_size'] == $size['name'] ) echo 'checked="checked"' ?> />
484
+ <?php echo $size['name']; ?> ( <?php echo $size['width']; ?>x<?php echo $size['height']; ?>
485
+ <?php
486
+ if ( $size['crop'] ) {
487
+ echo "cropped";
488
+ }
489
+ ?>
490
+ )
491
+ </label>
492
+ <br />
493
+ <?php endforeach; ?>
494
+
495
+ <label>
496
+ <input type="radio" name="thumb_size" value="crp_thumbnail" id="crp_thumbnail" <?php if ( $crp_settings['thumb_size'] == 'crp_thumbnail' ) echo 'checked="checked"' ?> /> <?php _e( 'Custom size', CRP_LOCAL_NAME ); ?>
497
+ </label>
498
+ <p class="description">
499
+ <?php _e( 'You can choose from existing image sizes above or create a custom size. If you have chosen Custom size above, then enter the width, height and crop settings below. For best results, use a cropped image.', CRP_LOCAL_NAME ); ?><br />
500
+ <?php _e( "If you change the width, height or crop mode below, existing images will not be automatically resized.", CRP_LOCAL_NAME ); ?>
501
+ <?php printf( __( "I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</a> or <a href='%s' class='thickbox'>Regenerate Thumbnails</a> to regenerate all image sizes.", CRP_LOCAL_NAME ), self_admin_url( 'plugin-install.php?tab=plugin-information&amp;plugin=otf-regenerate-thumbnails&amp;TB_iframe=true&amp;width=600&amp;height=550' ), self_admin_url( 'plugin-install.php?tab=plugin-information&amp;plugin=regenerate-thumbnails&amp;TB_iframe=true&amp;width=600&amp;height=550' ) ); ?>
502
+ </p>
503
+ </td>
504
+ </tr>
505
+ <tr><th scope="row"><label for="thumb_width"><?php _e( 'Width of the thumbnail:', CRP_LOCAL_NAME ); ?></label></th>
506
+ <td><input type="textbox" name="thumb_width" id="thumb_width" value="<?php echo esc_attr( stripslashes( $crp_settings['thumb_width'] ) ); ?>" style="width:50px" />px</td>
507
+ </tr>
508
+ <tr><th scope="row"><label for="thumb_height"><?php _e( 'Height of the thumbnail: ', CRP_LOCAL_NAME ); ?></label></th>
509
+ <td>
510
+ <input type="textbox" name="thumb_height" id="thumb_height" value="<?php echo esc_attr( stripslashes( $crp_settings['thumb_height'] ) ); ?>" style="width:50px" />px
511
+ </td>
512
+ </tr>
513
+ <tr><th scope="row"><label for="thumb_crop"><?php _e( 'Crop mode:', CRP_LOCAL_NAME ); ?></label></th>
514
+ <td>
515
+ <input type="checkbox" name="thumb_crop" id="thumb_crop" <?php if ( $crp_settings['thumb_crop'] ) echo 'checked="checked"' ?> />
516
+ <p class="description">
517
+ <?php _e( "By default, thumbnails will be hard cropped. Uncheck this box to proportionately/soft crop the thumbnails.", CRP_LOCAL_NAME ); ?>
518
+ <?php printf( __( "<a href='%s' target='_blank'>Difference between soft and hard crop</a>", CRP_LOCAL_NAME ), 'http://www.davidtan.org/wordpress-hard-crop-vs-soft-crop-difference-comparison-example/' ); ?>
519
+ </p>
520
+ <?php if ( $crp_settings['include_default_style'] ) { ?>
521
+ <p class="description"><?php _e( "Default style selected under the Custom Styles. Thumbnail width and height is fixed at 150px and crop mode is enabled.", CRP_LOCAL_NAME ); ?></p>
522
+ <?php } ?>
523
+ </td>
524
+ </tr>
525
+ <tr><th scope="row"><label for="thumb_html"><?php _e( 'Style attributes / Width and Height HTML attributes:', CRP_LOCAL_NAME ); ?></label></th>
526
+ <td>
527
+ <label>
528
+ <input type="radio" name="thumb_html" value="css" id="thumb_html_0" <?php if ( 'css' == $crp_settings['thumb_html'] ) echo 'checked="checked"' ?> />
529
+ <?php _e( 'Style attributes are used for width and height.', CRP_LOCAL_NAME ); echo ' <code>style="max-width:' . $crp_settings['thumb_width'] . 'px;max-height:' . $crp_settings['thumb_height'] . 'px;"</code>'; ?></label>
530
+ <br />
531
+ <label>
532
+ <input type="radio" name="thumb_html" value="html" id="thumb_html_1" <?php if ( 'html' == $crp_settings['thumb_html'] ) echo 'checked="checked"' ?> />
533
+ <?php _e( 'HTML width and height attributes are used for width and height.', CRP_LOCAL_NAME ); echo ' <code>width="' . $crp_settings['thumb_width'] . '" height="' . $crp_settings['thumb_height'] . '"</code>'; ?></label>
534
+ <br />
535
+ </td>
536
+ </tr>
537
+ <tr><th scope="row"><label for="thumb_meta"><?php _e( 'Post thumbnail meta field name:', CRP_LOCAL_NAME ); ?></label></th>
538
+ <td><input type="textbox" name="thumb_meta" id="thumb_meta" value="<?php echo esc_attr( stripslashes( $crp_settings['thumb_meta'] ) ); ?>">
539
+ <p class="description"><?php _e( 'The value of this field should contain the image source and is set in the <em>Add New Post</em> screen', CRP_LOCAL_NAME ); ?></p>
540
+ </td>
541
+ </tr>
542
+ <tr><th scope="row"><label for="scan_images"><?php _e( 'Extract the first image from the post?', CRP_LOCAL_NAME ); ?></label></th>
543
+ <td><input type="checkbox" name="scan_images" id="scan_images" <?php if ( $crp_settings['scan_images'] ) echo 'checked="checked"' ?> />
544
+ <p class="description"><?php _e( 'This will only happen if there is no post thumbnail set and no image URL is specified in the meta field.', CRP_LOCAL_NAME ); ?></p>
545
+ </td>
546
+ </tr>
547
+ <tr><th scope="row"><label for="thumb_default_show"><?php _e( 'Use default thumbnail?', CRP_LOCAL_NAME ); ?></label></th>
548
+ <td><input type="checkbox" name="thumb_default_show" id="thumb_default_show" <?php if ( $crp_settings['thumb_default_show'] ) echo 'checked="checked"' ?> />
549
+ <p class="description"><?php _e( 'If checked, when no thumbnail is found, show a default one from the URL below. If not checked and no thumbnail is found, no image will be shown.', CRP_LOCAL_NAME ); ?></p>
550
+ </td>
551
+ </tr>
552
+ <tr><th scope="row"><label for="thumb_default"><?php _e( 'Default thumbnail:', CRP_LOCAL_NAME ); ?></label></th>
553
+ <td><input type="textbox" name="thumb_default" id="thumb_default" value="<?php echo esc_attr( stripslashes( $crp_settings['thumb_default'] ) ); ?>" style="width:100%">
554
+ <?php if( '' != $crp_settings['thumb_default'] ) echo "<img src='{$crp_settings['thumb_default']}' style='max-width:200px' />"; ?>
555
+ <p class="description"><?php _e( "The plugin will first check if the post contains a thumbnail. If it doesn't then it will check the meta field. If this is not available, then it will show the default image as specified above.", CRP_LOCAL_NAME ); ?></p>
556
+ </td>
557
+ </tr>
558
+
559
+ <?php
560
+ /**
561
+ * Fires after Thumbnail options block under Output options.
562
+ *
563
+ * @since 2.0.0
564
+ *
565
+ * @param array $crp_settings Contextual Related Posts settings array
566
+ */
567
+ do_action( 'crp_admin_thumb_options_after', $crp_settings );
568
+ ?>
569
+
570
+ </table>
571
+
572
+ <p>
573
+ <input type="submit" name="crp_save" id="crp_thumbop_save" value="<?php _e( 'Save Options', CRP_LOCAL_NAME ); ?>" class="button button-primary" />
574
+ </p>
575
 
576
  </div> <!-- // inside -->
577
  </div> <!-- // outputopdiv -->
580
  <h3 class='hndle'><span><?php _e( 'Feed options', CRP_LOCAL_NAME ); ?></span></h3>
581
  <div class="inside">
582
 
583
+ <table class="form-table">
584
+
585
+ <?php
586
+ /**
587
+ * Fires before Feed options block.
588
+ *
589
+ * @since 2.0.0
590
+ *
591
+ * @param array $crp_settings Contextual Related Posts settings array
592
+ */
593
+ do_action( 'crp_admin_feed_options_before', $crp_settings );
594
+ ?>
595
+
596
+ <tr><th scope="row" colspan="2"><?php _e( 'Below options override the related posts settings for your blog feed. These only apply if you have selected to add related posts to Feeds in the General Options tab.', CRP_LOCAL_NAME ); ?></th>
597
+ </tr>
598
+ <tr><th scope="row"><label for="limit_feed"><?php _e( 'Number of related posts to display: ', CRP_LOCAL_NAME ); ?></label></th>
599
+ <td><input type="textbox" name="limit_feed" id="limit_feed" value="<?php echo esc_attr( stripslashes( $crp_settings['limit_feed'] ) ); ?>"></td>
600
+ </tr>
601
+ <tr><th scope="row"><label for="show_excerpt_feed"><?php _e( 'Show post excerpt in list?', CRP_LOCAL_NAME ); ?></label></th>
602
+ <td><input type="checkbox" name="show_excerpt_feed" id="show_excerpt_feed" <?php if ( $crp_settings['show_excerpt_feed'] ) echo 'checked="checked"' ?> /></td>
603
+ </tr>
604
+ <tr><th scope="row"><label for="post_thumb_op_feed"><?php _e( 'Location of post thumbnail:', CRP_LOCAL_NAME ); ?></label></th>
605
+ <td>
606
+ <label>
607
+ <input type="radio" name="post_thumb_op_feed" value="inline" id="post_thumb_op_feed_0" <?php if ( 'inline' == $crp_settings['post_thumb_op_feed'] ) echo 'checked="checked"' ?> />
608
+ <?php _e( 'Display thumbnails inline with posts, before title', CRP_LOCAL_NAME ); ?></label>
609
+ <br />
610
+ <label>
611
+ <input type="radio" name="post_thumb_op_feed" value="after" id="post_thumb_op_feed_1" <?php if ( 'after' == $crp_settings['post_thumb_op_feed'] ) echo 'checked="checked"' ?> />
612
+ <?php _e( 'Display thumbnails inline with posts, after title', CRP_LOCAL_NAME ); ?></label>
613
+ <br />
614
+ <label>
615
+ <input type="radio" name="post_thumb_op_feed" value="thumbs_only" id="post_thumb_op_feed_2" <?php if ( 'thumbs_only' == $crp_settings['post_thumb_op_feed'] ) echo 'checked="checked"' ?> />
616
+ <?php _e( 'Display only thumbnails, no text', CRP_LOCAL_NAME ); ?></label>
617
+ <br />
618
+ <label>
619
+ <input type="radio" name="post_thumb_op_feed" value="text_only" id="post_thumb_op_feed_3" <?php if ( 'text_only' == $crp_settings['post_thumb_op_feed'] ) echo 'checked="checked"' ?> />
620
+ <?php _e( 'Do not display thumbnails, only text.', CRP_LOCAL_NAME ); ?></label>
621
+ <br />
622
+ </td>
623
+ </tr>
624
+ <tr><th scope="row"><label for="thumb_width_feed"><?php _e( 'Maximum width of the thumbnail: ', CRP_LOCAL_NAME ); ?></label></th>
625
+ <td><input type="textbox" name="thumb_width_feed" id="thumb_width_feed" value="<?php echo esc_attr( stripslashes( $crp_settings['thumb_width_feed'] ) ); ?>" style="width:50px" />px</td>
626
+ </tr>
627
+ <tr><th scope="row"><label for="thumb_height_feed"><?php _e( 'Maximum height of the thumbnail: ', CRP_LOCAL_NAME ); ?></label></th>
628
+ <td><input type="textbox" name="thumb_height_feed" id="thumb_height_feed" value="<?php echo esc_attr( stripslashes( $crp_settings['thumb_height_feed'] ) ); ?>" style="width:50px" />px</td>
629
+ </tr>
630
+
631
+ <?php
632
+ /**
633
+ * Fires after Feed options block.
634
+ *
635
+ * @since 2.0.0
636
+ *
637
+ * @param array $crp_settings Contextual Related Posts settings array
638
+ */
639
+ do_action( 'crp_admin_feed_options_after', $crp_settings );
640
+ ?>
641
+
642
+ </table>
643
+
644
+ <p>
645
+ <input type="submit" name="crp_save" id="crp_feedop_save" value="<?php _e( 'Save Options', CRP_LOCAL_NAME ); ?>" class="button button-primary" />
646
+ </p>
647
+
648
+ </div> <!-- // inside -->
649
+ </div> <!-- // feedopdiv -->
650
 
 
 
651
  <div id="customcssdiv" class="postbox"><div class="handlediv" title="Click to toggle"><br /></div>
652
  <h3 class='hndle'><span><?php _e( 'Custom styles', CRP_LOCAL_NAME ); ?></span></h3>
653
  <div class="inside">
654
 
655
+ <table class="form-table">
656
+
657
+ <?php
658
+ /**
659
+ * Fires before Custom styles options block.
660
+ *
661
+ * @since 2.0.0
662
+ *
663
+ * @param array $crp_settings Contextual Related Posts settings array
664
+ */
665
+ do_action( 'crp_admin_custom_styles_before', $crp_settings );
666
+ ?>
667
 
668
+ <tr><th scope="row"><label for="include_default_style"><?php _e( 'Use default style included in the plugin?', CRP_LOCAL_NAME ); ?></label></th>
669
+ <td>
670
+ <input type="checkbox" name="include_default_style" id="include_default_style" <?php if ( $crp_settings['include_default_style'] ) echo 'checked="checked"' ?> />
671
+ <p class="description"><?php _e( 'Contextual Related Posts includes a default style that makes your popular posts list to look beautiful. Check the box above if you want to use this.', CRP_LOCAL_NAME ); ?></p>
672
+ <p class="description"><?php _e( 'Enabling this option will turn on the thumbnails and set their width and height to 150px. It will also turn off the display of the author, excerpt and date if already enabled. Disabling this option will not revert any settings.', CRP_LOCAL_NAME ); ?></p>
673
+ <p class="description"><?php printf( __( 'You can view the default style at <a href="%1$s" target="_blank">%1$s</a>', CRP_LOCAL_NAME ), esc_url( 'https://github.com/ajaydsouza/contextual-related-posts/blob/master/css/default-style.css' ) ); ?></p>
674
+ </td>
675
+ </tr>
676
+ <tr><th scope="row" colspan="2"><?php _e( 'Custom CSS to add to header:', CRP_LOCAL_NAME ); ?></th>
677
+ </tr>
678
+ <tr>
679
+ <td scope="row" colspan="2"><textarea name="custom_CSS" id="custom_CSS" rows="15" cols="80" style="width:100%"><?php echo stripslashes( $crp_settings['custom_CSS'] ); ?></textarea>
680
+ <p class="description"><?php _e( 'Do not include <code>style</code> tags. Check out the <a href="http://wordpress.org/extend/plugins/contextual-related-posts/faq/" target="_blank">FAQ</a> for available CSS classes to style.', CRP_LOCAL_NAME ); ?></p>
681
+ </td></tr>
682
+
683
+ <?php
684
+ /**
685
+ * Fires after Custom styles options block.
686
+ *
687
+ * @since 2.0.0
688
+ *
689
+ * @param array $crp_settings Contextual Related Posts settings array
690
+ */
691
+ do_action( 'crp_admin_custom_styles_after', $crp_settings );
692
+ ?>
693
+
694
+ </table>
695
+
696
+ </div> <!-- // inside -->
697
+ </div> <!-- // customcssdiv -->
698
 
699
  <?php
700
  /**
admin/options-custom-styles.php DELETED
@@ -1,57 +0,0 @@
1
- <?php
2
- /**
3
- * Represents the view for the Custom styles option set.
4
- *
5
- * @package Contextual_Related_Posts
6
- * @author Ajay D'Souza <me@ajaydsouza.com>
7
- * @license GPL-2.0+
8
- * @link http://ajaydsouza.com
9
- * @copyright 2009-2014 Ajay D'Souza
10
- */
11
-
12
- // If this file is called directly, abort.
13
- if ( ! defined( 'WPINC' ) ) {
14
- die;
15
- }
16
-
17
- ?>
18
-
19
- <table class="form-table">
20
-
21
- <?php
22
- /**
23
- * Fires before Custom styles options block.
24
- *
25
- * @since 2.0.0
26
- *
27
- * @param array $crp_settings Contextual Related Posts settings array
28
- */
29
- do_action( 'crp_admin_custom_styles_before', $crp_settings );
30
- ?>
31
-
32
- <tr><th scope="row"><label for="include_default_style"><?php _e( 'Use default style included in the plugin?', CRP_LOCAL_NAME ); ?></label></th>
33
- <td>
34
- <input type="checkbox" name="include_default_style" id="include_default_style" <?php if ( $crp_settings['include_default_style'] ) echo 'checked="checked"' ?> />
35
- <p class="description"><?php _e( 'Contextual Related Posts includes a default style that makes your popular posts list to look beautiful. Check the box above if you want to use this.', CRP_LOCAL_NAME ); ?></p>
36
- <p class="description"><?php _e( 'Enabling this option will turn on the thumbnails and set their width and height to 150px. It will also turn off the display of the author, excerpt and date if already enabled. Disabling this option will not revert any settings.', CRP_LOCAL_NAME ); ?></p>
37
- </td>
38
- </tr>
39
- <tr><th scope="row" colspan="2"><?php _e( 'Custom CSS to add to header:', CRP_LOCAL_NAME ); ?></th>
40
- </tr>
41
- <tr>
42
- <td scope="row" colspan="2"><textarea name="custom_CSS" id="custom_CSS" rows="15" cols="80" style="width:100%"><?php echo stripslashes( $crp_settings['custom_CSS'] ); ?></textarea>
43
- <p class="description"><?php _e( 'Do not include <code>style</code> tags. Check out the <a href="http://wordpress.org/extend/plugins/contextual-related-posts/faq/" target="_blank">FAQ</a> for available CSS classes to style.', CRP_LOCAL_NAME ); ?></p>
44
- </td></tr>
45
-
46
- <?php
47
- /**
48
- * Fires after Custom styles options block.
49
- *
50
- * @since 2.0.0
51
- *
52
- * @param array $crp_settings Contextual Related Posts settings array
53
- */
54
- do_action( 'crp_admin_custom_styles_after', $crp_settings );
55
- ?>
56
-
57
- </table>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/options-feed.php DELETED
@@ -1,78 +0,0 @@
1
- <?php
2
- /**
3
- * Represents the view for the Feeds Options set.
4
- *
5
- * @package Contextual_Related_Posts
6
- * @author Ajay D'Souza <me@ajaydsouza.com>
7
- * @license GPL-2.0+
8
- * @link http://ajaydsouza.com
9
- * @copyright 2009-2014 Ajay D'Souza
10
- */
11
-
12
- // If this file is called directly, abort.
13
- if ( ! defined( 'WPINC' ) ) {
14
- die;
15
- }
16
-
17
- ?>
18
-
19
- <table class="form-table">
20
-
21
- <?php
22
- /**
23
- * Fires before Feed options block.
24
- *
25
- * @since 2.0.0
26
- *
27
- * @param array $crp_settings Contextual Related Posts settings array
28
- */
29
- do_action( 'crp_admin_feed_options_before', $crp_settings );
30
- ?>
31
-
32
- <tr><th scope="row" colspan="2"><?php _e( 'Below options override the related posts settings for your blog feed. These only apply if you have selected to add related posts to Feeds in the General Options tab.', CRP_LOCAL_NAME ); ?></th>
33
- </tr>
34
- <tr><th scope="row"><label for="limit_feed"><?php _e( 'Number of related posts to display: ', CRP_LOCAL_NAME ); ?></label></th>
35
- <td><input type="textbox" name="limit_feed" id="limit_feed" value="<?php echo esc_attr( stripslashes( $crp_settings['limit_feed'] ) ); ?>"></td>
36
- </tr>
37
- <tr><th scope="row"><label for="show_excerpt_feed"><?php _e( 'Show post excerpt in list?', CRP_LOCAL_NAME ); ?></label></th>
38
- <td><input type="checkbox" name="show_excerpt_feed" id="show_excerpt_feed" <?php if ( $crp_settings['show_excerpt_feed'] ) echo 'checked="checked"' ?> /></td>
39
- </tr>
40
- <tr><th scope="row"><label for="post_thumb_op_feed"><?php _e( 'Location of post thumbnail:', CRP_LOCAL_NAME ); ?></label></th>
41
- <td>
42
- <label>
43
- <input type="radio" name="post_thumb_op_feed" value="inline" id="post_thumb_op_feed_0" <?php if ( 'inline' == $crp_settings['post_thumb_op_feed'] ) echo 'checked="checked"' ?> />
44
- <?php _e( 'Display thumbnails inline with posts, before title', CRP_LOCAL_NAME ); ?></label>
45
- <br />
46
- <label>
47
- <input type="radio" name="post_thumb_op_feed" value="after" id="post_thumb_op_feed_1" <?php if ( 'after' == $crp_settings['post_thumb_op_feed'] ) echo 'checked="checked"' ?> />
48
- <?php _e( 'Display thumbnails inline with posts, after title', CRP_LOCAL_NAME ); ?></label>
49
- <br />
50
- <label>
51
- <input type="radio" name="post_thumb_op_feed" value="thumbs_only" id="post_thumb_op_feed_2" <?php if ( 'thumbs_only' == $crp_settings['post_thumb_op_feed'] ) echo 'checked="checked"' ?> />
52
- <?php _e( 'Display only thumbnails, no text', CRP_LOCAL_NAME ); ?></label>
53
- <br />
54
- <label>
55
- <input type="radio" name="post_thumb_op_feed" value="text_only" id="post_thumb_op_feed_3" <?php if ( 'text_only' == $crp_settings['post_thumb_op_feed'] ) echo 'checked="checked"' ?> />
56
- <?php _e( 'Do not display thumbnails, only text.', CRP_LOCAL_NAME ); ?></label>
57
- <br />
58
- </td>
59
- </tr>
60
- <tr><th scope="row"><label for="thumb_width_feed"><?php _e( 'Maximum width of the thumbnail: ', CRP_LOCAL_NAME ); ?></label></th>
61
- <td><input type="textbox" name="thumb_width_feed" id="thumb_width_feed" value="<?php echo esc_attr( stripslashes( $crp_settings['thumb_width_feed'] ) ); ?>" style="width:50px" />px</td>
62
- </tr>
63
- <tr><th scope="row"><label for="thumb_height_feed"><?php _e( 'Maximum height of the thumbnail: ', CRP_LOCAL_NAME ); ?></label></th>
64
- <td><input type="textbox" name="thumb_height_feed" id="thumb_height_feed" value="<?php echo esc_attr( stripslashes( $crp_settings['thumb_height_feed'] ) ); ?>" style="width:50px" />px</td>
65
- </tr>
66
-
67
- <?php
68
- /**
69
- * Fires after Feed options block.
70
- *
71
- * @since 2.0.0
72
- *
73
- * @param array $crp_settings Contextual Related Posts settings array
74
- */
75
- do_action( 'crp_admin_feed_options_after', $crp_settings );
76
- ?>
77
-
78
- </table>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/options-genops.php DELETED
@@ -1,118 +0,0 @@
1
- <?php
2
- /**
3
- * Represents the view for the General Options.
4
- *
5
- * @package Contextual_Related_Posts
6
- * @author Ajay D'Souza <me@ajaydsouza.com>
7
- * @license GPL-2.0+
8
- * @link http://ajaydsouza.com
9
- * @copyright 2009-2014 Ajay D'Souza
10
- */
11
-
12
- // If this file is called directly, abort.
13
- if ( ! defined( 'WPINC' ) ) {
14
- die;
15
- }
16
-
17
- ?>
18
-
19
- <table class="form-table">
20
-
21
- <?php
22
- /**
23
- * Fires before General options block.
24
- *
25
- * @since 2.0.0
26
- *
27
- * @param array $crp_settings Contextual Related Posts settings array
28
- */
29
- do_action( 'crp_admin_general_options_before', $crp_settings );
30
- ?>
31
-
32
- <tr><th scope="row"><label for="cache"><?php _e( 'Cache output?', CRP_LOCAL_NAME ); ?></label></th>
33
- <td><input type="checkbox" name="cache" id="cache" <?php if ( $crp_settings['cache'] ) echo 'checked="checked"' ?> />
34
- <p class="description"><?php _e( 'Enabling this option will cache the related posts output when the post is visited the first time. The cache is cleaned when you save this page.', CRP_LOCAL_NAME ); ?></p>
35
- <p><input type="button" value="<?php _e( 'Clear cache', CRP_LOCAL_NAME ) ?>" onclick="return clearCache();" class="button-secondary" /></p>
36
- </td>
37
- </tr>
38
-
39
- <tr><th scope="row"><label for="limit"><?php _e( 'Number of related posts to display: ', CRP_LOCAL_NAME ); ?></label></th>
40
- <td>
41
- <input type="textbox" name="limit" id="limit" value="<?php echo esc_attr( stripslashes( $crp_settings['limit'] ) ); ?>">
42
- <p class="description"><?php _e( 'Maximum number of posts that will be displayed. The actual number may be smaller if less related posts are found.', CRP_LOCAL_NAME ); ?></p>
43
- </td>
44
- </tr>
45
-
46
- <tr><th scope="row"><label for="daily_range"><?php _e( 'Related posts should be newer than:', CRP_LOCAL_NAME ); ?></label></th>
47
- <td>
48
- <input type="textbox" name="daily_range" id="daily_range" value="<?php echo esc_attr( stripslashes( $crp_settings['daily_range'] ) ); ?>"><?php _e( 'days', CRP_LOCAL_NAME ); ?>
49
- <p class="description"><?php _e( 'This sets the cutoff period for which posts will be displayed. e.g. setting it to 365 will show related posts from the last year only.', CRP_LOCAL_NAME ); ?></p>
50
- </td>
51
- </tr>
52
-
53
- <tr><th scope="row"><?php _e( 'Post types to include in results:', CRP_LOCAL_NAME ); ?></th>
54
- <td>
55
- <?php foreach ( $wp_post_types as $wp_post_type ) {
56
- $post_type_op = '<label><input type="checkbox" name="post_types[]" value="' . $wp_post_type . '" ';
57
- if ( in_array( $wp_post_type, $posts_types_inc ) ) {
58
- $post_type_op .= ' checked="checked" ';
59
- }
60
- $post_type_op .= ' />'.$wp_post_type.'</label>&nbsp;&nbsp;';
61
- echo $post_type_op;
62
- }
63
- ?>
64
- <p class="description"><?php _e( 'These post types will be displayed in the list. Includes custom post types.', CRP_LOCAL_NAME ); ?></p>
65
- </td>
66
- </tr>
67
-
68
- <tr><th scope="row"><label for="match_content"><?php _e( 'Find related posts based on content as well as title:', CRP_LOCAL_NAME ); ?></label></th>
69
- <td><input type="checkbox" name="match_content" id="match_content" <?php if ( $crp_settings['match_content'] ) echo 'checked="checked"' ?> />
70
- <p class="description"><?php _e( 'If unchecked, only posts titles are used. I recommend using a caching plugin or enabling "Cache output" above if you enable this.', CRP_LOCAL_NAME ); ?></p>
71
- </td>
72
- </tr>
73
-
74
- <tr><th scope="row"><label for="match_content_words"><?php _e( 'Limit content to be compared', CRP_LOCAL_NAME ); ?></label></th>
75
- <td><input type="textbox" name="match_content_words" id="match_content_words" value="<?php echo esc_attr(stripslashes($crp_settings['match_content_words'])); ?>">
76
- <p class="description"><?php _e( 'This sets the maximum words of the content that will be matched. 0 means no limit.', CRP_LOCAL_NAME ); ?></p>
77
- </td>
78
- </tr>
79
-
80
- <tr><th scope="row"><?php _e( 'Add related posts to:', CRP_LOCAL_NAME ); ?></th>
81
- <td>
82
- <label><input type="checkbox" name="add_to_content" id="add_to_content" <?php if ( $crp_settings['add_to_content'] ) echo 'checked="checked"' ?> /> <?php _e( 'Posts', CRP_LOCAL_NAME ); ?></label><br />
83
- <label><input type="checkbox" name="add_to_page" id="add_to_page" <?php if ( $crp_settings['add_to_page'] ) echo 'checked="checked"' ?> /> <?php _e( 'Pages', CRP_LOCAL_NAME ); ?></label><br />
84
- <label><input type="checkbox" name="add_to_home" id="add_to_home" <?php if ( $crp_settings['add_to_home'] ) echo 'checked="checked"' ?> /> <?php _e( 'Home page', CRP_LOCAL_NAME ); ?></label></label><br />
85
- <label><input type="checkbox" name="add_to_feed" id="add_to_feed" <?php if ( $crp_settings['add_to_feed'] ) echo 'checked="checked"' ?> /> <?php _e( 'Feeds', CRP_LOCAL_NAME ); ?></label></label><br />
86
- <label><input type="checkbox" name="add_to_category_archives" id="add_to_category_archives" <?php if ( $crp_settings['add_to_category_archives'] ) echo 'checked="checked"' ?> /> <?php _e( 'Category archives', CRP_LOCAL_NAME ); ?></label><br />
87
- <label><input type="checkbox" name="add_to_tag_archives" id="add_to_tag_archives" <?php if ( $crp_settings['add_to_tag_archives'] ) echo 'checked="checked"' ?> /> <?php _e( 'Tag archives', CRP_LOCAL_NAME ); ?></label></label><br />
88
- <label><input type="checkbox" name="add_to_archives" id="add_to_archives" <?php if ( $crp_settings['add_to_archives'] ) echo 'checked="checked"' ?> /> <?php _e( 'Other archives', CRP_LOCAL_NAME ); ?></label></label>
89
- <p class="description"><?php _e( "If you choose to disable this, please add <code>&lt;?php if ( function_exists( 'echo_ald_crp' ) ) echo_ald_crp(); ?&gt;</code> to your template file where you want it displayed", CRP_LOCAL_NAME ); ?></p>
90
- </td>
91
- </tr>
92
-
93
- <tr><th scope="row"><label for="content_filter_priority"><?php _e( 'Content filter priority:', CRP_LOCAL_NAME ); ?></label></th>
94
- <td>
95
- <input type="textbox" name="content_filter_priority" id="content_filter_priority" value="<?php echo esc_attr( stripslashes( $crp_settings['content_filter_priority'] ) ); ?>" />
96
- <p class="description"><?php _e( 'A higher number will cause the content above to be processed after other filters. Number below 10 is not recommended.', CRP_LOCAL_NAME ); ?></p>
97
- </td>
98
- </tr>
99
-
100
- <tr><th scope="row"><label for="show_credit"><?php _e( "Tell the world you're using Contextual Related Posts:", CRP_LOCAL_NAME ); ?></label></th>
101
- <td>
102
- <input type="checkbox" name="show_credit" id="show_credit" <?php if ( $crp_settings['show_credit'] ) echo 'checked="checked"' ?> /> <?php _e( ' <em>Optional</em>', CRP_LOCAL_NAME ); ?>
103
- <p class="description"><?php _e( 'Adds a nofollow link to Contextual Related Posts homepage as the last time in the list.', CRP_LOCAL_NAME ); ?></p>
104
- </td>
105
- </tr>
106
-
107
- <?php
108
- /**
109
- * Fires after General options block.
110
- *
111
- * @since 2.0.0
112
- *
113
- * @param array $crp_settings Contextual Related Posts settings array
114
- */
115
- do_action( 'crp_admin_general_options_after', $crp_settings );
116
- ?>
117
-
118
- </table>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/options-output.php DELETED
@@ -1,343 +0,0 @@
1
- <?php
2
- /**
3
- * Represents the view for the administration dashboard.
4
- *
5
- * @package Contextual_Related_Posts
6
- * @author Ajay D'Souza <me@ajaydsouza.com>
7
- * @license GPL-2.0+
8
- * @link http://ajaydsouza.com
9
- * @copyright 2009-2014 Ajay D'Souza
10
- */
11
-
12
- // If this file is called directly, abort.
13
- if ( ! defined( 'WPINC' ) ) {
14
- die;
15
- }
16
-
17
- ?>
18
-
19
- <table class="form-table">
20
-
21
- <?php
22
- /**
23
- * Fires before output options main block.
24
- *
25
- * @since 2.0.0
26
- *
27
- * @param array $crp_settings Contextual Related Posts settings array
28
- */
29
- do_action( 'crp_admin_output_options_before', $crp_settings );
30
- ?>
31
-
32
- <tr><th scope="row"><label for="title"><?php _e( 'Title of related posts: ', CRP_LOCAL_NAME ); ?></label></th>
33
- <td>
34
- <input type="textbox" name="title" id="title" value="<?php echo esc_attr( stripslashes( $crp_settings['title'] ) ); ?>" style="width:250px" />
35
- <p class="description"><?php _e( 'This is the main heading of the related posts. You can also display the current post title by using <code>%postname%</code>. e.g. <code>Related Posts to %postname%</code>', CRP_LOCAL_NAME ); ?></p>
36
- </td>
37
- </tr>
38
-
39
- <tr><th scope="row"><label for="blank_output"><?php _e( 'When there are no posts, what should be shown?', CRP_LOCAL_NAME ); ?></label></th>
40
- <td>
41
- <label>
42
- <input type="radio" name="blank_output" value="blank" id="blank_output_0" <?php if ( $crp_settings['blank_output'] ) echo 'checked="checked"' ?> />
43
- <?php _e( 'Blank Output', CRP_LOCAL_NAME ); ?></label>
44
- <br />
45
- <label>
46
- <input type="radio" name="blank_output" value="customs" id="blank_output_1" <?php if ( ! $crp_settings['blank_output'] ) echo 'checked="checked"' ?> />
47
- <?php _e( 'Display:', CRP_LOCAL_NAME ); ?></label>
48
- <input type="textbox" name="blank_output_text" id="blank_output_text" value="<?php echo esc_attr( stripslashes( $crp_settings['blank_output_text'] ) ); ?>" style="width:250px" />
49
- </td>
50
- </tr>
51
-
52
- <tr><th scope="row"><label for="show_excerpt"><?php _e( 'Show post excerpt in list?', CRP_LOCAL_NAME ); ?></label></th>
53
- <td>
54
- <input type="checkbox" name="show_excerpt" id="show_excerpt" <?php if ( $crp_settings['show_excerpt'] ) echo 'checked="checked"' ?> />
55
- <p class="description"><?php printf( __( "Displays the excerpt of the post. If you do not provide an explicit excerpt to a post (in the post editor's optional excerpt field), it will display an automatic excerpt which refers to the first %d words of the post's content", CRP_LOCAL_NAME ), $crp_settings['excerpt_length'] ); ?></p>
56
- </td>
57
- </tr>
58
-
59
- <tr><th scope="row"><label for="excerpt_length"><?php _e( 'Length of excerpt (in words): ', CRP_LOCAL_NAME ); ?></label></th>
60
- <td>
61
- <input type="textbox" name="excerpt_length" id="excerpt_length" value="<?php echo stripslashes( $crp_settings['excerpt_length'] ); ?>" />
62
- </td>
63
- </tr>
64
-
65
- <tr><th scope="row"><label for="show_author"><?php _e( 'Show post author in list?', CRP_LOCAL_NAME ); ?></label></th>
66
- <td>
67
- <input type="checkbox" name="show_author" id="show_author" <?php if ( $crp_settings['show_author'] ) echo 'checked="checked"' ?> />
68
- <p class="description"><?php _e( 'Displays the author name prefixed with "by". e.g. by John Doe', CRP_LOCAL_NAME ); ?></p>
69
- </td>
70
- </tr>
71
-
72
- <tr><th scope="row"><label for="show_date"><?php _e( 'Show post date in list?', CRP_LOCAL_NAME ); ?></label></th>
73
- <td>
74
- <input type="checkbox" name="show_date" id="show_date" <?php if ( $crp_settings['show_date'] ) echo 'checked="checked"' ?> />
75
- <p class="description"><?php _e( "Displays the date of the post. Uses the same date format set in General Options", CRP_LOCAL_NAME ); ?></p>
76
- </td>
77
- </tr>
78
-
79
- <tr><th scope="row"><label for="title_length"><?php _e( 'Limit post title length (in characters)', CRP_LOCAL_NAME ); ?></label></th>
80
- <td>
81
- <input type="textbox" name="title_length" id="title_length" value="<?php echo stripslashes( $crp_settings['title_length'] ); ?>" />
82
- <p class="description"><?php _e( "Any title longer than the number of characters set above will be cut and appended with a &helip;", CRP_LOCAL_NAME ); ?></p>
83
- </td>
84
- </tr>
85
-
86
- <tr><th scope="row"><label for="link_new_window"><?php _e( 'Open links in new window', CRP_LOCAL_NAME ); ?></label></th>
87
- <td>
88
- <input type="checkbox" name="link_new_window" id="link_new_window" <?php if ( $crp_settings['link_new_window'] ) echo 'checked="checked"' ?> /
89
- ></td>
90
- </tr>
91
-
92
- <tr><th scope="row"><label for="link_nofollow"><?php _e( 'Add nofollow attribute to links in the list', CRP_LOCAL_NAME ); ?></label></th>
93
- <td>
94
- <input type="checkbox" name="link_nofollow" id="link_nofollow" <?php if ( $crp_settings['link_nofollow'] ) echo 'checked="checked"' ?> />
95
- </td>
96
- </tr>
97
-
98
- <?php
99
- /**
100
- * Fires after Output options main block.
101
- *
102
- * @since 2.0.0
103
- *
104
- * @param array $crp_settings Contextual Related Posts settings array
105
- */
106
- do_action( 'crp_admin_output_options_after', $crp_settings );
107
- ?>
108
-
109
- </table>
110
- <hr />
111
- <table class="form-table">
112
-
113
- <?php
114
- /**
115
- * Fires before Exclusion options block under Output options.
116
- *
117
- * @since 2.0.0
118
- *
119
- * @param array $crp_settings Contextual Related Posts settings array
120
- */
121
- do_action( 'crp_admin_exclusion_options_before', $crp_settings );
122
- ?>
123
-
124
- <tr>
125
- <th scope="row" colspan="2" style="background: #eee; padding-left: 5px;"><?php _e( 'Exclusion settings:', CRP_LOCAL_NAME ); ?></th>
126
- </tr>
127
- <tr><th scope="row"><label for="exclude_post_ids"><?php _e( 'List of post or page IDs to exclude from the results:', CRP_LOCAL_NAME ); ?></label></th>
128
- <td><input type="textbox" name="exclude_post_ids" id="exclude_post_ids" value="<?php echo esc_attr( stripslashes( $crp_settings['exclude_post_ids'] ) ); ?>" style="width:250px">
129
- <p class="description"><?php _e( 'Comma separated list of post, page or custom post type IDs. e.g. 188,320,500', CRP_LOCAL_NAME ); ?></p>
130
- </td>
131
- </tr>
132
- <tr><th scope="row"><label for="exclude_on_post_ids"><?php _e( 'Exclude display of related posts on these posts / pages', CRP_LOCAL_NAME ); ?></label></th>
133
- <td>
134
- <input type="textbox" name="exclude_on_post_ids" id="exclude_on_post_ids" value="<?php echo esc_attr( stripslashes( $crp_settings['exclude_on_post_ids'] ) ); ?>" style="width:250px">
135
- <p class="description"><?php _e( 'Comma separated list of post, page or custom post type IDs. e.g. 188,320,500', CRP_LOCAL_NAME ); ?></p>
136
- </td>
137
- </tr>
138
- <tr><th scope="row"><label for="exclude_cat_slugs"><?php _e( 'Categories to exclude from the results: ', CRP_LOCAL_NAME ); ?></label></th>
139
- <td>
140
- <div style="position:relative;text-align:left">
141
- <table id="MYCUSTOMFLOATER" class="myCustomFloater" style="position:absolute;top:50px;left:0;background-color:#cecece;display:none;visibility:hidden">
142
- <tr><td><!--
143
- please see: http://chrisholland.blogspot.com/2004/09/geekstuff-css-display-inline-block.html
144
- to explain why i'm using a table here.
145
- You could replace the table/tr/td with a DIV, but you'd have to specify it's width and height
146
- -->
147
- <div class="myCustomFloaterContent">
148
- you should never be seeing this
149
- </div>
150
- </td></tr>
151
- </table>
152
- <textarea class="wickEnabled:MYCUSTOMFLOATER" cols="50" rows="3" wrap="virtual" name="exclude_cat_slugs"><?php echo ( stripslashes( $crp_settings['exclude_cat_slugs'] ) ); ?></textarea>
153
- </div>
154
- <p class="description"><?php _e( 'Comma separated list of category slugs. The field above has an autocomplete so simply start typing in the beginning of your category name and it will prompt you with options.', CRP_LOCAL_NAME ); ?></p>
155
- </td>
156
- </tr>
157
- <tr><th scope="row"><?php _e( 'Exclude display of related posts on these post types.', CRP_LOCAL_NAME ); ?></th>
158
- <td>
159
- <?php foreach ( $wp_post_types as $wp_post_type ) {
160
- $post_type_op = '<label><input type="checkbox" name="exclude_on_post_types[]" value="' . $wp_post_type . '" ';
161
- if ( in_array( $wp_post_type, $posts_types_excl ) ) $post_type_op .= ' checked="checked" ';
162
- $post_type_op .= ' />' . $wp_post_type . '</label>&nbsp;&nbsp;';
163
- echo $post_type_op;
164
- }
165
- ?>
166
- <p class="description"><?php _e( 'The related posts will not display on any of the above selected post types', CRP_LOCAL_NAME ); ?></p>
167
- </td>
168
- </tr>
169
-
170
- <?php
171
- /**
172
- * Fires after Exclusion options block under Output options.
173
- *
174
- * @since 2.0.0
175
- *
176
- * @param array $crp_settings Contextual Related Posts settings array
177
- */
178
- do_action( 'crp_admin_exclusion_options_after', $crp_settings );
179
- ?>
180
-
181
- </table>
182
- <hr />
183
- <table class="form-table">
184
-
185
- <?php
186
- /**
187
- * Fires before Customize options block under Output options.
188
- *
189
- * @since 2.0.0
190
- *
191
- * @param array $crp_settings Contextual Related Posts settings array
192
- */
193
- do_action( 'crp_admin_customize_options_before', $crp_settings );
194
- ?>
195
-
196
- <tr><th scope="row" colspan="2" style="background: #eee; padding-left: 5px;"><?php _e( 'Customize the output:', CRP_LOCAL_NAME ); ?></th>
197
- </tr>
198
- <tr><th scope="row"><label for="before_list"><?php _e( 'HTML to display before the list of posts: ', CRP_LOCAL_NAME ); ?></label></th>
199
- <td><input type="textbox" name="before_list" id="before_list" value="<?php echo esc_attr( stripslashes( $crp_settings['before_list'] ) ); ?>" style="width:250px" /></td>
200
- </tr>
201
- <tr><th scope="row"><label for="before_list_item"><?php _e( 'HTML to display before each list item: ', CRP_LOCAL_NAME ); ?></label></th>
202
- <td><input type="textbox" name="before_list_item" id="before_list_item" value="<?php echo esc_attr( stripslashes( $crp_settings['before_list_item'] ) ); ?>" style="width:250px" /></td>
203
- </tr>
204
- <tr><th scope="row"><label for="after_list_item"><?php _e( 'HTML to display after each list item: ', CRP_LOCAL_NAME ); ?></label></th>
205
- <td><input type="textbox" name="after_list_item" id="after_list_item" value="<?php echo esc_attr( stripslashes( $crp_settings['after_list_item'] ) ); ?>" style="width:250px" /></td>
206
- </tr>
207
- <tr><th scope="row"><label for="after_list"><?php _e( 'HTML to display after the list of posts: ', CRP_LOCAL_NAME ); ?></label></th>
208
- <td><input type="textbox" name="after_list" id="after_list" value="<?php echo esc_attr( stripslashes( $crp_settings['after_list'] ) ); ?>" style="width:250px" /></td>
209
- </tr>
210
-
211
- <?php
212
- /**
213
- * Fires after Customize options block under Output options.
214
- *
215
- * @since 2.0.0
216
- *
217
- * @param array $crp_settings Contextual Related Posts settings array
218
- */
219
- do_action( 'crp_admin_customize_options_after', $crp_settings );
220
- ?>
221
-
222
- </table>
223
- <hr />
224
- <table class="form-table">
225
-
226
- <?php
227
- /**
228
- * Fires before Thumbnail options block under Output options.
229
- *
230
- * @since 2.0.0
231
- *
232
- * @param array $crp_settings Contextual Related Posts settings array
233
- */
234
- do_action( 'crp_admin_thumb_options_before', $crp_settings );
235
- ?>
236
-
237
- <tr><th scope="row" colspan="2" style="background: #eee; padding-left: 5px;"><?php _e( 'Post thumbnail options:', CRP_LOCAL_NAME ); ?></th>
238
- </tr>
239
- <tr><th scope="row"><label for="post_thumb_op"><?php _e( 'Location of post thumbnail:', CRP_LOCAL_NAME ); ?></label></th>
240
- <td>
241
- <label>
242
- <input type="radio" name="post_thumb_op" value="inline" id="post_thumb_op_0" <?php if ( 'inline' == $crp_settings['post_thumb_op'] ) echo 'checked="checked"' ?> />
243
- <?php _e( 'Display thumbnails inline with posts, before title', CRP_LOCAL_NAME ); ?></label>
244
- <br />
245
- <label>
246
- <input type="radio" name="post_thumb_op" value="after" id="post_thumb_op_1" <?php if ( 'after' == $crp_settings['post_thumb_op'] ) echo 'checked="checked"' ?> />
247
- <?php _e( 'Display thumbnails inline with posts, after title', CRP_LOCAL_NAME ); ?></label>
248
- <br />
249
- <label>
250
- <input type="radio" name="post_thumb_op" value="thumbs_only" id="post_thumb_op_2" <?php if ( 'thumbs_only' == $crp_settings['post_thumb_op'] ) echo 'checked="checked"' ?> />
251
- <?php _e( 'Display only thumbnails, no text', CRP_LOCAL_NAME ); ?></label>
252
- <br />
253
- <label>
254
- <input type="radio" name="post_thumb_op" value="text_only" id="post_thumb_op_3" <?php if ( 'text_only' == $crp_settings['post_thumb_op'] ) echo 'checked="checked"' ?> />
255
- <?php _e( 'Do not display thumbnails, only text.', CRP_LOCAL_NAME ); ?></label>
256
- <br />
257
- </td>
258
- </tr>
259
- <tr><td scope="row" colspan="2">
260
- <p class="description">
261
- <?php _e( "Contextual Related Posts adds a new image size with the below dimensions.", CRP_LOCAL_NAME ); ?>
262
- <?php _e( "If you change the width and/or height below, existing images will not be automatically resized.", CRP_LOCAL_NAME ); ?>
263
- <?php printf( __( "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</a> to regenerate all image sizes.", CRP_LOCAL_NAME ), 'https://wordpress.org/plugins/force-regenerate-thumbnails/' ); ?>
264
- </p>
265
- </th>
266
- </tr>
267
- <tr><th scope="row"><label for="thumb_width"><?php _e( 'Maximum width of the thumbnail:', CRP_LOCAL_NAME ); ?></label></th>
268
- <td><input type="textbox" name="thumb_width" id="thumb_width" value="<?php echo esc_attr( stripslashes( $crp_settings['thumb_width'] ) ); ?>" style="width:50px" />px</td>
269
- </tr>
270
- <tr><th scope="row"><label for="thumb_height"><?php _e( 'Maximum height of the thumbnail: ', CRP_LOCAL_NAME ); ?></label></th>
271
- <td>
272
- <input type="textbox" name="thumb_height" id="thumb_height" value="<?php echo esc_attr( stripslashes( $crp_settings['thumb_height'] ) ); ?>" style="width:50px" />px
273
- <?php if ( $crp_settings['include_default_style'] ) { ?>
274
- <p class="description"><?php _e( "Since you're using the default styles set under the Custom Styles section, the width and height is fixed at 150px", CRP_LOCAL_NAME ); ?></p>
275
- <?php } ?>
276
- </td>
277
- </tr>
278
- <tr><th scope="row"><label for="thumb_crop"><?php _e( 'Crop mode:', CRP_LOCAL_NAME ); ?></label></th>
279
- <td>
280
- <input type="checkbox" name="thumb_crop" id="thumb_crop" <?php if ( $crp_settings['thumb_crop'] ) echo 'checked="checked"' ?> />
281
- <p class="description">
282
- <?php _e( "By default, thumbnails will be proportionately cropped. Check this box to hard crop the thumbnails.", CRP_LOCAL_NAME ); ?>
283
- <?php printf( __( "<a href='%s' target='_blank'>Difference between soft and hard crop</a>", CRP_LOCAL_NAME ), 'http://www.davidtan.org/wordpress-hard-crop-vs-soft-crop-difference-comparison-example/' ); ?>
284
- </p>
285
- </td>
286
- </tr>
287
- <tr><th scope="row"><label for="thumb_html"><?php _e( 'Style attributes / Width and Height HTML attributes:', CRP_LOCAL_NAME ); ?></label></th>
288
- <td>
289
- <label>
290
- <input type="radio" name="thumb_html" value="css" id="thumb_html_0" <?php if ( 'css' == $crp_settings['thumb_html'] ) echo 'checked="checked"' ?> />
291
- <?php _e( 'Style attributes are used for width and height.', CRP_LOCAL_NAME ); echo ' <code>style="max-width:' . $crp_settings['thumb_width'] . 'px;max-height:' . $crp_settings['thumb_height'] . 'px;"</code>'; ?></label>
292
- <br />
293
- <label>
294
- <input type="radio" name="thumb_html" value="html" id="thumb_html_1" <?php if ( 'html' == $crp_settings['thumb_html'] ) echo 'checked="checked"' ?> />
295
- <?php _e( 'HTML width and height attributes are used for width and height.', CRP_LOCAL_NAME ); echo ' <code>width="' . $crp_settings['thumb_width'] . '" height="' . $crp_settings['thumb_height'] . '"</code>'; ?></label>
296
- <br />
297
- </td>
298
- </tr>
299
- <tr><th scope="row"><label for="thumb_timthumb"><?php _e( 'Use timthumb to generate thumbnails? ', CRP_LOCAL_NAME ); ?></label></th>
300
- <td><input type="checkbox" name="thumb_timthumb" id="thumb_timthumb" <?php if ( $crp_settings['thumb_timthumb'] ) echo 'checked="checked"' ?> />
301
- <p class="description"><?php _e( 'If checked, <a href="http://www.binarymoon.co.uk/projects/timthumb/" target="_blank">timthumb</a> will be used to generate thumbnails', CRP_LOCAL_NAME ); ?></p>
302
- </td>
303
- </tr>
304
- <tr><th scope="row"><label for="thumb_timthumb_q"><?php _e( 'Quality of thumbnails generated by timthumb:', CRP_LOCAL_NAME ); ?></label></th>
305
- <td>
306
- <input type="textbox" name="thumb_timthumb_q" id="thumb_timthumb_q" value="<?php echo esc_attr( stripslashes( $crp_settings['thumb_timthumb_q'] ) ); ?>" style="width:50px" />
307
- <p class="description"><?php _e( 'Enter values between 0 and 100 only. 100 is highest quality and the highest file size. Suggested maximum value is 95. CRP default is 75.', CRP_LOCAL_NAME ); ?></p>
308
- </td>
309
- </tr>
310
- <tr><th scope="row"><label for="thumb_meta"><?php _e( 'Post thumbnail meta field name:', CRP_LOCAL_NAME ); ?></label></th>
311
- <td><input type="textbox" name="thumb_meta" id="thumb_meta" value="<?php echo esc_attr( stripslashes( $crp_settings['thumb_meta'] ) ); ?>">
312
- <p class="description"><?php _e( 'The value of this field should contain the image source and is set in the <em>Add New Post</em> screen', CRP_LOCAL_NAME ); ?></p>
313
- </td>
314
- </tr>
315
- <tr><th scope="row"><label for="scan_images"><?php _e( 'Extract the first image from the post?', CRP_LOCAL_NAME ); ?></label></th>
316
- <td><input type="checkbox" name="scan_images" id="scan_images" <?php if ( $crp_settings['scan_images'] ) echo 'checked="checked"' ?> />
317
- <p class="description"><?php _e( 'This will only happen if there is no post thumbnail set and no image URL is specified in the meta field.', CRP_LOCAL_NAME ); ?></p>
318
- </td>
319
- </tr>
320
- <tr><th scope="row"><label for="thumb_default_show"><?php _e( 'Use default thumbnail?', CRP_LOCAL_NAME ); ?></label></th>
321
- <td><input type="checkbox" name="thumb_default_show" id="thumb_default_show" <?php if ( $crp_settings['thumb_default_show'] ) echo 'checked="checked"' ?> />
322
- <p class="description"><?php _e( 'If checked, when no thumbnail is found, show a default one from the URL below. If not checked and no thumbnail is found, no image will be shown.', CRP_LOCAL_NAME ); ?></p>
323
- </td>
324
- </tr>
325
- <tr><th scope="row"><label for="thumb_default"><?php _e( 'Default thumbnail:', CRP_LOCAL_NAME ); ?></label></th>
326
- <td><input type="textbox" name="thumb_default" id="thumb_default" value="<?php echo esc_attr( stripslashes( $crp_settings['thumb_default'] ) ); ?>" style="width:100%">
327
- <?php if( '' != $crp_settings['thumb_default'] ) echo "<img src='{$crp_settings['thumb_default']}' style='max-width:200px' />"; ?>
328
- <p class="description"><?php _e( "The plugin will first check if the post contains a thumbnail. If it doesn't then it will check the meta field. If this is not available, then it will show the default image as specified above.", CRP_LOCAL_NAME ); ?></p>
329
- </td>
330
- </tr>
331
-
332
- <?php
333
- /**
334
- * Fires after Thumbnail options block under Output options.
335
- *
336
- * @since 2.0.0
337
- *
338
- * @param array $crp_settings Contextual Related Posts settings array
339
- */
340
- do_action( 'crp_admin_thumb_options_after', $crp_settings );
341
- ?>
342
-
343
- </table>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/sidebar-view.php CHANGED
@@ -6,7 +6,7 @@
6
  * @author Ajay D'Souza <me@ajaydsouza.com>
7
  * @license GPL-2.0+
8
  * @link http://ajaydsouza.com
9
- * @copyright 2009-2014 Ajay D'Souza
10
  */
11
 
12
  // If this file is called directly, abort.
@@ -41,7 +41,8 @@ if ( ! defined( 'WPINC' ) ) {
41
  <h3 class='hndle'><span><?php _e( 'Follow me', CRP_LOCAL_NAME ); ?></span></h3>
42
  <div class="inside">
43
  <div id="follow-us">
44
- <iframe src="//www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fajaydsouzacom&amp;width=292&amp;height=62&amp;colorscheme=light&amp;show_faces=false&amp;border_color&amp;stream=false&amp;header=true&amp;appId=113175385243" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:292px; height:62px;" allowTransparency="true"></iframe>
 
45
  <div style="text-align:center"><a href="https://twitter.com/ajaydsouza" class="twitter-follow-button" data-show-count="false" data-size="large" data-dnt="true">Follow @ajaydsouza</a>
46
  <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script></div>
47
  </div>
6
  * @author Ajay D'Souza <me@ajaydsouza.com>
7
  * @license GPL-2.0+
8
  * @link http://ajaydsouza.com
9
+ * @copyright 2009-2015 Ajay D'Souza
10
  */
11
 
12
  // If this file is called directly, abort.
41
  <h3 class='hndle'><span><?php _e( 'Follow me', CRP_LOCAL_NAME ); ?></span></h3>
42
  <div class="inside">
43
  <div id="follow-us">
44
+ <iframe src="//www.facebook.com/plugins/likebox.php?href=https%3A%2F%2Fwww.facebook.com%2Fajaydsouzacom&amp;width=292&amp;height=62&amp;colorscheme=light&amp;show_faces=false&amp;header=true&amp;stream=false&amp;show_border=true&amp;appId=151693118297567" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:292px; height:62px;" allowTransparency="true"></iframe>
45
+ <br /><br />
46
  <div style="text-align:center"><a href="https://twitter.com/ajaydsouza" class="twitter-follow-button" data-show-count="false" data-size="large" data-dnt="true">Follow @ajaydsouza</a>
47
  <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script></div>
48
  </div>
assets/banner-1544x500.png DELETED
Binary file
assets/banner-772x250.png DELETED
Binary file
assets/icon-128x128.png DELETED
Binary file
assets/icon-256x256.png DELETED
Binary file
assets/screenshot-1.png DELETED
Binary file
assets/screenshot-2.png DELETED
Binary file
assets/screenshot-3.png DELETED
Binary file
assets/screenshot-4.png DELETED
Binary file
assets/screenshot-5.png DELETED
Binary file
assets/screenshot-6.png DELETED
Binary file
contextual-related-posts.php CHANGED
@@ -9,13 +9,13 @@
9
  * @author Ajay D'Souza <me@ajaydsouza.com>
10
  * @license GPL-2.0+
11
  * @link http://ajaydsouza.com
12
- * @copyright 2009-2014 Ajay D'Souza
13
  *
14
  * @wordpress-plugin
15
  * Plugin Name: Contextual Related Posts
16
  * Plugin URI: http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/
17
  * Description: Display a set of related posts on your website or in your feed. Increase reader retention and reduce bounce rates
18
- * Version: 2.0.1
19
  * Author: Ajay D'Souza
20
  * Author URI: http://ajaydsouza.com
21
  * Text Domain: crp
@@ -103,7 +103,14 @@ function ald_crp( $args = array() ) {
103
 
104
  //Support caching to speed up retrieval
105
  if ( ! empty( $cache ) ) {
106
- $output = ( $is_widget ) ? get_post_meta( $post->ID, 'crp_related_posts_widget', true ) : get_post_meta( $post->ID, 'crp_related_posts', true );
 
 
 
 
 
 
 
107
  if ( $output ) {
108
  return $output;
109
  }
@@ -217,11 +224,8 @@ function ald_crp( $args = array() ) {
217
  'thumb_html' => $thumb_html,
218
  'thumb_default' => $thumb_default,
219
  'thumb_default_show' => $thumb_default_show,
220
- 'thumb_timthumb' => $thumb_timthumb,
221
- 'thumb_timthumb_q' => $thumb_timthumb_q,
222
  'scan_images' => $scan_images,
223
  'class' => 'crp_thumb',
224
- 'filter' => 'crp_postimage',
225
  ) );
226
  $output .= '</a>';
227
  }
@@ -243,7 +247,7 @@ function ald_crp( $args = array() ) {
243
  */
244
  $author_name = apply_filters( 'crp_author_name', $author_name, $author_info );
245
 
246
- $crp_author .= '<span class="crp_author"> ' . __( ' by ', CRP_LOCAL_NAME ).'<a href="' . $author_link . '">' . $author_name . '</a></span> ';
247
 
248
  /**
249
  * Filter the text with the author details.
@@ -298,7 +302,7 @@ function ald_crp( $args = array() ) {
298
  */
299
  $output .= apply_filters( 'crp_after_list', $after_list );
300
 
301
- $clearfix = '<div style="clear:both"></div>';
302
 
303
  /**
304
  * Filter the clearfix div tag. This is included after the closing tag to clear any miscellaneous floating elements;
@@ -323,11 +327,7 @@ function ald_crp( $args = array() ) {
323
 
324
  //Support caching to speed up retrieval
325
  if ( ! empty( $cache ) ) {
326
- if ( $is_widget ) {
327
- update_post_meta( $post->ID, 'crp_related_posts_widget', $output, '' );
328
- } else {
329
- update_post_meta( $post->ID, 'crp_related_posts', $output, '' );
330
- }
331
  }
332
 
333
  /**
@@ -374,6 +374,22 @@ function get_crp_posts_id( $args = array() ) {
374
  // Declare each item in $args as its own variable i.e. $type, $before.
375
  extract( $args, EXTR_SKIP );
376
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
377
  $post = ( empty( $postid ) ) ? $post : get_post( $postid );
378
 
379
  $limit = ( $strict_limit ) ? $limit : ( $limit * 3 );
@@ -394,9 +410,9 @@ function get_crp_posts_id( $args = array() ) {
394
  $now = gmdate( "Y-m-d H:i:s", ( time() + ( $time_difference * 3600 ) ) );
395
 
396
  // Limit the related posts by time
397
- $daily_range = $daily_range - 1;
398
- $from_date = strtotime( '-' . $daily_range . ' DAY' , strtotime( $now ) );
399
- $from_date = date ( 'Y-m-d H:i:s' , $from_date );
400
 
401
  // Create the SQL query to fetch the related posts from the database
402
  if ( ( is_int( $post->ID ) ) && ( '' != $stuff ) ) {
@@ -404,10 +420,50 @@ function get_crp_posts_id( $args = array() ) {
404
  // Fields to return
405
  $fields = " $wpdb->posts.ID ";
406
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
407
  // Create the base WHERE clause
408
- $where .= $wpdb->prepare( " AND MATCH (" . $match_fields . ") AGAINST ('%s') ", $stuff ); // FULLTEXT matching algorithm
409
- $where .= $wpdb->prepare( " AND $wpdb->posts.post_date < '%s' ", $now ); // Show posts before today
410
- $where .= $wpdb->prepare( " AND $wpdb->posts.post_date >= '%s' ", $from_date ); // Show posts after the date specified
411
  $where .= " AND $wpdb->posts.post_status = 'publish' "; // Only show published posts
412
  $where .= $wpdb->prepare( " AND $wpdb->posts.ID != %d ", $post->ID ); // Show posts after the date specified
413
  if ( '' != $exclude_post_ids ) {
@@ -421,28 +477,40 @@ function get_crp_posts_id( $args = array() ) {
421
  /**
422
  * Filter the SELECT clause of the query.
423
  *
 
 
424
  * @param string $fields The SELECT clause of the query.
 
425
  */
426
  $fields = apply_filters( 'crp_posts_fields', $fields, $post->ID );
427
 
428
  /**
429
  * Filter the JOIN clause of the query.
430
  *
 
 
431
  * @param string $join The JOIN clause of the query.
 
432
  */
433
  $join = apply_filters( 'crp_posts_join', $join, $post->ID );
434
 
435
  /**
436
  * Filter the WHERE clause of the query.
437
  *
 
 
438
  * @param string $where The WHERE clause of the query.
 
439
  */
440
  $where = apply_filters( 'crp_posts_where', $where, $post->ID );
441
 
442
  /**
443
  * Filter the GROUP BY clause of the query.
444
  *
 
 
445
  * @param string $groupby The GROUP BY clause of the query.
 
446
  */
447
  $groupby = apply_filters( 'crp_posts_groupby', $groupby, $post->ID );
448
 
@@ -450,14 +518,20 @@ function get_crp_posts_id( $args = array() ) {
450
  /**
451
  * Filter the ORDER BY clause of the query.
452
  *
 
 
453
  * @param string $orderby The ORDER BY clause of the query.
 
454
  */
455
  $orderby = apply_filters( 'crp_posts_orderby', $orderby, $post->ID );
456
 
457
  /**
458
  * Filter the LIMIT clause of the query.
459
  *
 
 
460
  * @param string $limits The LIMIT clause of the query.
 
461
  */
462
  $limits = apply_filters( 'crp_posts_limits', $limits, $post->ID );
463
 
@@ -659,6 +733,18 @@ class CRP_Widget extends WP_Widget {
659
  <?php _e( 'Thumbnail width', CRP_LOCAL_NAME ); ?>: <input class="widefat" id="<?php echo $this->get_field_id( 'thumb_width' ); ?>" name="<?php echo $this->get_field_name( 'thumb_width' ); ?>" type="text" value="<?php echo esc_attr( $thumb_width ); ?>" />
660
  </label>
661
  </p>
 
 
 
 
 
 
 
 
 
 
 
 
662
  <?php
663
  } //ending form creation
664
 
@@ -702,27 +788,39 @@ class CRP_Widget extends WP_Widget {
702
  global $crp_settings;
703
 
704
  parse_str( $crp_settings['exclude_on_post_types'], $exclude_on_post_types ); // Save post types in $exclude_on_post_types variable
705
- if ( in_array( $post->post_type, $exclude_on_post_types ) ) return 0; // Exit without adding related posts
 
 
706
 
707
  $exclude_on_post_ids = explode( ',', $crp_settings['exclude_on_post_ids'] );
708
 
709
  if ( ( ( is_single() ) && ( ! is_single( $exclude_on_post_ids ) ) ) || ( ( is_page() ) && ( ! is_page( $exclude_on_post_ids ) ) ) ) {
710
 
711
  $title = apply_filters( 'widget_title', empty( $instance['title'] ) ? strip_tags( str_replace( "%postname%", $post->post_title, $crp_settings['title'] ) ) : $instance['title'] );
712
- $limit = $instance['limit'];
713
- if ( empty( $limit ) ) $limit = $crp_settings['limit'];
 
 
 
 
 
 
 
 
 
 
714
 
715
  $output = $before_widget;
716
  $output .= $before_title . $title . $after_title;
717
  $output .= ald_crp( array(
718
  'is_widget' => 1,
719
  'limit' => $limit,
720
- 'show_excerpt' => $instance['show_excerpt'],
721
- 'show_author' => $instance['show_author'],
722
- 'show_date' => $instance['show_date'],
723
- 'post_thumb_op' => $instance['post_thumb_op'],
724
- 'thumb_height' => $instance['thumb_height'],
725
- 'thumb_width' => $instance['thumb_width'],
726
  ) );
727
 
728
  $output .= $after_widget;
@@ -802,6 +900,8 @@ function crp_default_options() {
802
 
803
  $thumb_default = plugins_url( 'default.png' , __FILE__ );
804
 
 
 
805
  // get relevant post types
806
  $args = array(
807
  'public' => true,
@@ -812,16 +912,10 @@ function crp_default_options() {
812
  'page' => 'page',
813
  );
814
  $post_types = http_build_query( $post_types, '', '&' );
815
- // $post_types = http_build_query( get_post_types( $args ), '', '&' );
816
 
817
  $crp_settings = array(
818
  // General options
819
  'cache' => false, // Cache output for faster page load
820
- 'limit' => '5', // How many posts to display?
821
- 'daily_range' => '1095', // How old posts should be displayed?
822
- 'post_types' => $post_types, // WordPress custom post types
823
- 'match_content' => true, // Match against post content as well as title
824
- 'match_content_words' => '0', // How many characters of content should be matched? 0 for all chars
825
 
826
  'add_to_content' => true, // Add related posts to content (only on single posts)
827
  'add_to_page' => true, // Add related posts to content (only on single pages)
@@ -834,6 +928,19 @@ function crp_default_options() {
834
  'content_filter_priority' => 10, // Content priority
835
  'show_credit' => false, // Link to this plugin's page?
836
 
 
 
 
 
 
 
 
 
 
 
 
 
 
837
  // Output options
838
  'title' => $title, // Add before the content
839
  'blank_output' => true, // Blank output?
@@ -853,23 +960,20 @@ function crp_default_options() {
853
  'before_list_item' => '<li>', // Before each list item
854
  'after_list_item' => '</li>', // After each list item
855
 
856
- 'exclude_categories' => '', // Exclude these categories
857
- 'exclude_cat_slugs' => '', // Exclude these categories (slugs)
858
- 'exclude_post_ids' => '', // Comma separated list of page / post IDs that are to be excluded in the results
859
  'exclude_on_post_ids' => '', // Comma separate list of page/post IDs to not display related posts on
860
  'exclude_on_post_types' => '', // WordPress custom post types
861
 
862
- 'post_thumb_op' => 'text_only', // Default option to display text and no thumbnails in posts
 
 
863
  'thumb_height' => '150', // Height of thumbnails
864
  'thumb_width' => '150', // Width of thumbnails
865
- 'thumb_crop' => false, // Crop mode. default is soft proportional
866
  'thumb_html' => 'html', // Use HTML or CSS for width and height of the thumbnail?
867
  'thumb_meta' => 'post-image', // Meta field that is used to store the location of default thumbnail image
868
- 'scan_images' => false, // Scan post for images
869
  'thumb_default' => $thumb_default, // Default thumbnail image
870
  'thumb_default_show' => true, // Show default thumb if none found (if false, don't show thumb at all)
871
- 'thumb_timthumb' => false, // Use timthumb
872
- 'thumb_timthumb_q' => '75', // Quality attribute for timthumb
873
 
874
  // Feed options
875
  'limit_feed' => '5', // How many posts to display in feeds
@@ -880,7 +984,7 @@ function crp_default_options() {
880
 
881
  // Custom styles
882
  'custom_CSS' => '', // Custom CSS to style the output
883
- 'include_default_style' => false, // Include without VAT
884
  );
885
 
886
 
@@ -1058,38 +1162,21 @@ add_action( 'wpmu_new_blog', 'crp_activate_new_site' );
1058
  function crp_add_image_sizes() {
1059
  global $crp_settings;
1060
 
1061
- $width = empty( $crp_settings['thumb_width'] ) ? 150 : $crp_settings['thumb_width'];
1062
- $height = empty( $crp_settings['thumb_height'] ) ? 150 : $crp_settings['thumb_height'];
1063
- $crop = isset( $crp_settings['thumb_crop'] ) ? $crp_settings['thumb_crop'] : false;
1064
-
1065
- add_image_size( 'crp_thumbnail', $width, $height, $crop );
1066
- }
1067
- add_action( 'init', 'crp_add_image_sizes' );
1068
-
1069
 
1070
- /**
1071
- * Filter function to resize post thumbnail. Filters: crp_postimage.
1072
- *
1073
- * @since 1.8.4
1074
- *
1075
- * @param string $postimage
1076
- * @param string|int $thumb_width
1077
- * @param string|int $thumb_height
1078
- * @param boolean $thumb_timthumb
1079
- * @param string|int $thumb_timthumb_q
1080
- * @return string Post image output
1081
- */
1082
- function crp_scale_thumbs( $postimage, $thumb_width, $thumb_height, $thumb_timthumb, $thumb_timthumb_q, $post ) {
1083
- global $crp_url;
1084
 
1085
- if ( $thumb_timthumb ) {
1086
- $new_pi = $crp_url . '/timthumb/timthumb.php?src=' . urlencode( $postimage ) . '&amp;w=' . $thumb_width . '&amp;h=' . $thumb_height . '&amp;zc=1&amp;q=' . $thumb_timthumb_q;
1087
- } else {
1088
- $new_pi = $postimage;
1089
  }
1090
- return $new_pi;
1091
  }
1092
- add_filter( 'crp_postimage', 'crp_scale_thumbs', 10, 6 );
1093
 
1094
 
1095
  /**
@@ -1102,42 +1189,58 @@ add_filter( 'crp_postimage', 'crp_scale_thumbs', 10, 6 );
1102
  */
1103
  function crp_get_the_post_thumbnail( $args = array() ) {
1104
 
 
 
1105
  $defaults = array(
1106
  'postid' => '',
1107
- 'thumb_height' => '50', // Max height of thumbnails
1108
- 'thumb_width' => '50', // Max width of thumbnails
1109
  'thumb_meta' => 'post-image', // Meta field that is used to store the location of default thumbnail image
1110
  'thumb_html' => 'html', // HTML / CSS for width and height attributes
1111
  'thumb_default' => '', // Default thumbnail image
1112
  'thumb_default_show' => true, // Show default thumb if none found (if false, don't show thumb at all)
1113
- 'thumb_timthumb' => true, // Use timthumb
1114
- 'thumb_timthumb_q' => '75', // Quality attribute for timthumb
1115
  'scan_images' => false, // Scan post for images
1116
  'class' => 'crp_thumb', // Class of the thumbnail
1117
- 'filter' => 'crp_postimage', // Class of the thumbnail
1118
  );
1119
 
1120
  // Parse incomming $args into an array and merge it with $defaults
1121
  $args = wp_parse_args( $args, $defaults );
1122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1123
  // Declare each item in $args as its own variable i.e. $type, $before.
1124
  extract( $args, EXTR_SKIP );
1125
 
1126
  $result = get_post( $postid );
1127
- $title = get_the_title( $postid );
1128
 
1129
  $output = '';
1130
- $thumb_html = ( 'css' == $thumb_html ) ? 'style="max-width:' . $thumb_width . 'px;max-height:' . $thumb_height . 'px;"' : 'width="' . $thumb_width . '" height="' .$thumb_height . '"';
1131
 
1132
  // Let's start fetching the thumbnail. First place to look is in the post meta defined in the Settings page
1133
- $postimage = get_post_meta( $result->ID, $thumb_meta, true ); // Check the post meta first
 
 
 
1134
 
1135
  // If there is no thumbnail found, check the post thumbnail
1136
  if ( ! $postimage ) {
1137
- if ( function_exists( 'has_post_thumbnail' ) && ( ( '' != wp_get_attachment_image_src( get_post_thumbnail_id( $result->ID ) ) ) || ( false != wp_get_attachment_image_src( get_post_thumbnail_id( $result->ID ) ) ) ) ) {
1138
- $postthumb = wp_get_attachment_image_src( get_post_thumbnail_id( $result->ID ), 'crp_thumbnail' );
1139
  $postimage = $postthumb[0];
1140
  }
 
1141
  }
1142
 
1143
  // If there is no thumbnail found, fetch the first image in the post, if enabled
@@ -1146,11 +1249,22 @@ function crp_get_the_post_thumbnail( $args = array() ) {
1146
  if ( isset( $matches[1][0] ) && $matches[1][0] ) { // any image there?
1147
  $postimage = $matches[1][0]; // we need the first one only!
1148
  }
 
 
 
 
 
 
 
 
 
 
1149
  }
1150
 
1151
  // If there is no thumbnail found, fetch the first child image
1152
  if ( ! $postimage ) {
1153
- $postimage = crp_get_first_image($result->ID); // Get the first image
 
1154
  }
1155
 
1156
  // If no other thumbnail set, try to get the custom video thumbnail set by the Video Thumbnails plugin
@@ -1167,17 +1281,47 @@ function crp_get_the_post_thumbnail( $args = array() ) {
1167
  if ( $postimage ) {
1168
 
1169
  /**
1170
- * Get the first image in the post.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1171
  *
1172
- * @since 1.8.10
 
1173
  *
1174
- * @param mixed $postID Post ID
 
 
 
 
 
1175
  */
1176
- $postimage = apply_filters( $filter, $postimage, $thumb_width, $thumb_height, $thumb_timthumb, $thumb_timthumb_q, $result );
 
1177
  if ( is_ssl() ) {
1178
  $postimage = preg_replace( '~http://~', 'https://', $postimage );
1179
  }
1180
- $output .= '<img src="'.$postimage.'" alt="'.$title.'" title="'.$title.'" '.$thumb_html.' class="'.$class.'" />';
 
 
 
 
1181
  }
1182
 
1183
  /**
@@ -1186,8 +1330,9 @@ function crp_get_the_post_thumbnail( $args = array() ) {
1186
  * @since 1.9
1187
  *
1188
  * @param array $output Formatted output
 
1189
  */
1190
- return apply_filters( 'crp_get_the_post_thumbnail', $output );
1191
  }
1192
 
1193
 
@@ -1213,7 +1358,7 @@ function crp_get_first_image( $postID ) {
1213
 
1214
  if ( $attachments ) {
1215
  foreach ( $attachments as $attachment ) {
1216
- $image_attributes = wp_get_attachment_image_src( $attachment->ID, 'crp_thumbnail' );
1217
 
1218
  /**
1219
  * Filters first child attachment from the post.
@@ -1231,6 +1376,53 @@ function crp_get_first_image( $postID ) {
1231
  }
1232
 
1233
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1234
  /**
1235
  * Function to create an excerpt for the post.
1236
  *
@@ -1305,6 +1497,62 @@ function crp_max_formatted_content( $content, $no_of_char = -1 ) {
1305
  }
1306
 
1307
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1308
  /*----------------------------------------------------------------------------*
1309
  * Dashboard and Administrative Functionality
1310
  *----------------------------------------------------------------------------*/
9
  * @author Ajay D'Souza <me@ajaydsouza.com>
10
  * @license GPL-2.0+
11
  * @link http://ajaydsouza.com
12
+ * @copyright 2009-2015 Ajay D'Souza
13
  *
14
  * @wordpress-plugin
15
  * Plugin Name: Contextual Related Posts
16
  * Plugin URI: http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/
17
  * Description: Display a set of related posts on your website or in your feed. Increase reader retention and reduce bounce rates
18
+ * Version: 2.1.1
19
  * Author: Ajay D'Souza
20
  * Author URI: http://ajaydsouza.com
21
  * Text Domain: crp
103
 
104
  //Support caching to speed up retrieval
105
  if ( ! empty( $cache ) ) {
106
+ $meta_key = 'crp_related_posts';
107
+ if ( $is_widget ) {
108
+ $meta_key .= '_widget';
109
+ }
110
+ if ( is_feed() ) {
111
+ $meta_key .= '_feed';
112
+ }
113
+ $output = get_post_meta( $post->ID, $meta_key, true );
114
  if ( $output ) {
115
  return $output;
116
  }
224
  'thumb_html' => $thumb_html,
225
  'thumb_default' => $thumb_default,
226
  'thumb_default_show' => $thumb_default_show,
 
 
227
  'scan_images' => $scan_images,
228
  'class' => 'crp_thumb',
 
229
  ) );
230
  $output .= '</a>';
231
  }
247
  */
248
  $author_name = apply_filters( 'crp_author_name', $author_name, $author_info );
249
 
250
+ $crp_author = '<span class="crp_author"> ' . __( ' by ', CRP_LOCAL_NAME ).'<a href="' . $author_link . '">' . $author_name . '</a></span> ';
251
 
252
  /**
253
  * Filter the text with the author details.
302
  */
303
  $output .= apply_filters( 'crp_after_list', $after_list );
304
 
305
+ $clearfix = '<div class="crp_clear"></div>';
306
 
307
  /**
308
  * Filter the clearfix div tag. This is included after the closing tag to clear any miscellaneous floating elements;
327
 
328
  //Support caching to speed up retrieval
329
  if ( ! empty( $cache ) ) {
330
+ update_post_meta( $post->ID, $meta_key, $output, '' );
 
 
 
 
331
  }
332
 
333
  /**
374
  // Declare each item in $args as its own variable i.e. $type, $before.
375
  extract( $args, EXTR_SKIP );
376
 
377
+ // Fix the thumb size in case it is missing
378
+ $crp_thumb_size = crp_get_all_image_sizes( $thumb_size );
379
+
380
+ if ( isset( $crp_thumb_size['width'] ) ) {
381
+ $thumb_width = $crp_thumb_size['width'];
382
+ $thumb_height = $crp_thumb_size['height'];
383
+ }
384
+
385
+ if ( empty( $thumb_width ) ) {
386
+ $thumb_width = $crp_settings['thumb_width'];
387
+ }
388
+
389
+ if ( empty( $thumb_height ) ) {
390
+ $thumb_height = $crp_settings['thumb_height'];
391
+ }
392
+
393
  $post = ( empty( $postid ) ) ? $post : get_post( $postid );
394
 
395
  $limit = ( $strict_limit ) ? $limit : ( $limit * 3 );
410
  $now = gmdate( "Y-m-d H:i:s", ( time() + ( $time_difference * 3600 ) ) );
411
 
412
  // Limit the related posts by time
413
+ $current_time = current_time( 'timestamp', 0 );
414
+ $from_date = $current_time - ( $daily_range * DAY_IN_SECONDS );
415
+ $from_date = gmdate( 'Y-m-d H:i:s' , $from_date );
416
 
417
  // Create the SQL query to fetch the related posts from the database
418
  if ( ( is_int( $post->ID ) ) && ( '' != $stuff ) ) {
420
  // Fields to return
421
  $fields = " $wpdb->posts.ID ";
422
 
423
+ // Create the base MATCH clause
424
+ $match = $wpdb->prepare( " AND MATCH (" . $match_fields . ") AGAINST ('%s') ", $stuff ); // FULLTEXT matching algorithm
425
+
426
+ /**
427
+ * Filter the MATCH clause of the query.
428
+ *
429
+ * @since 2.1.0
430
+ *
431
+ * @param string $match The MATCH section of the WHERE clause of the query
432
+ * @param string $stuff String to match fulltext with
433
+ * @param int $post->ID Post ID
434
+ */
435
+ $match = apply_filters( 'crp_posts_match', $match, $stuff, $post->ID );
436
+
437
+ // Create the maximum date limit
438
+ $now_clause = $wpdb->prepare( " AND $wpdb->posts.post_date < '%s' ", $now ); // Show posts before today
439
+
440
+ /**
441
+ * Filter the Maximum date clause of the query.
442
+ *
443
+ * @since 2.1.0
444
+ *
445
+ * @param string $now_clause The Maximum date of the WHERE clause of the query.
446
+ * @param int $post->ID Post ID
447
+ */
448
+ $now_clause = apply_filters( 'crp_posts_now_date', $now_clause, $post->ID );
449
+
450
+ // Create the minimum date limit
451
+ $from_clause = ( 0 == $daily_range ) ? '' : $wpdb->prepare( " AND $wpdb->posts.post_date >= '%s' ", $from_date ); // Show posts after the date specified
452
+
453
+ /**
454
+ * Filter the Maximum date clause of the query.
455
+ *
456
+ * @since 2.1.0
457
+ *
458
+ * @param string $from_clause The Minimum date of the WHERE clause of the query.
459
+ * @param int $post->ID Post ID
460
+ */
461
+ $from_clause = apply_filters( 'crp_posts_from_date', $from_clause, $post->ID );
462
+
463
  // Create the base WHERE clause
464
+ $where = $match;
465
+ $where .= $now_clause;
466
+ $where .= $from_clause;
467
  $where .= " AND $wpdb->posts.post_status = 'publish' "; // Only show published posts
468
  $where .= $wpdb->prepare( " AND $wpdb->posts.ID != %d ", $post->ID ); // Show posts after the date specified
469
  if ( '' != $exclude_post_ids ) {
477
  /**
478
  * Filter the SELECT clause of the query.
479
  *
480
+ * @since 2.0.0
481
+ *
482
  * @param string $fields The SELECT clause of the query.
483
+ * @param int $post->ID Post ID
484
  */
485
  $fields = apply_filters( 'crp_posts_fields', $fields, $post->ID );
486
 
487
  /**
488
  * Filter the JOIN clause of the query.
489
  *
490
+ * @since 2.0.0
491
+ *
492
  * @param string $join The JOIN clause of the query.
493
+ * @param int $post->ID Post ID
494
  */
495
  $join = apply_filters( 'crp_posts_join', $join, $post->ID );
496
 
497
  /**
498
  * Filter the WHERE clause of the query.
499
  *
500
+ * @since 2.0.0
501
+ *
502
  * @param string $where The WHERE clause of the query.
503
+ * @param int $post->ID Post ID
504
  */
505
  $where = apply_filters( 'crp_posts_where', $where, $post->ID );
506
 
507
  /**
508
  * Filter the GROUP BY clause of the query.
509
  *
510
+ * @since 2.0.0
511
+ *
512
  * @param string $groupby The GROUP BY clause of the query.
513
+ * @param int $post->ID Post ID
514
  */
515
  $groupby = apply_filters( 'crp_posts_groupby', $groupby, $post->ID );
516
 
518
  /**
519
  * Filter the ORDER BY clause of the query.
520
  *
521
+ * @since 2.0.0
522
+ *
523
  * @param string $orderby The ORDER BY clause of the query.
524
+ * @param int $post->ID Post ID
525
  */
526
  $orderby = apply_filters( 'crp_posts_orderby', $orderby, $post->ID );
527
 
528
  /**
529
  * Filter the LIMIT clause of the query.
530
  *
531
+ * @since 2.0.0
532
+ *
533
  * @param string $limits The LIMIT clause of the query.
534
+ * @param int $post->ID Post ID
535
  */
536
  $limits = apply_filters( 'crp_posts_limits', $limits, $post->ID );
537
 
733
  <?php _e( 'Thumbnail width', CRP_LOCAL_NAME ); ?>: <input class="widefat" id="<?php echo $this->get_field_id( 'thumb_width' ); ?>" name="<?php echo $this->get_field_name( 'thumb_width' ); ?>" type="text" value="<?php echo esc_attr( $thumb_width ); ?>" />
734
  </label>
735
  </p>
736
+
737
+ <?php
738
+ /**
739
+ * Fires after Contextual Related Posts widget options.
740
+ *
741
+ * @since 2.1.0
742
+ *
743
+ * @param array $instance Widget options array
744
+ */
745
+ do_action( 'crp_widget_options_after', $instance );
746
+ ?>
747
+
748
  <?php
749
  } //ending form creation
750
 
788
  global $crp_settings;
789
 
790
  parse_str( $crp_settings['exclude_on_post_types'], $exclude_on_post_types ); // Save post types in $exclude_on_post_types variable
791
+ if ( is_object( $post ) && ( in_array( $post->post_type, $exclude_on_post_types ) ) ) {
792
+ return 0; // Exit without adding related posts
793
+ }
794
 
795
  $exclude_on_post_ids = explode( ',', $crp_settings['exclude_on_post_ids'] );
796
 
797
  if ( ( ( is_single() ) && ( ! is_single( $exclude_on_post_ids ) ) ) || ( ( is_page() ) && ( ! is_page( $exclude_on_post_ids ) ) ) ) {
798
 
799
  $title = apply_filters( 'widget_title', empty( $instance['title'] ) ? strip_tags( str_replace( "%postname%", $post->post_title, $crp_settings['title'] ) ) : $instance['title'] );
800
+
801
+ $limit = isset( $instance['limit'] ) ? $instance['limit'] : $crp_settings['limit'];
802
+ if ( empty( $limit ) ) {
803
+ $limit = $crp_settings['limit'];
804
+ }
805
+
806
+ $post_thumb_op = isset( $instance['post_thumb_op'] ) ? esc_attr( $instance['post_thumb_op'] ) : 'text_only';
807
+ $thumb_height = isset( $instance['thumb_height'] ) ? esc_attr( $instance['thumb_height'] ) : $crp_settings['thumb_height'];
808
+ $thumb_width = isset( $instance['thumb_width'] ) ? esc_attr( $instance['thumb_width'] ) : $crp_settings['thumb_width'];
809
+ $show_excerpt = isset( $instance['show_excerpt'] ) ? esc_attr( $instance['show_excerpt'] ) : '';
810
+ $show_author = isset( $instance['show_author'] ) ? esc_attr( $instance['show_author'] ) : '';
811
+ $show_date = isset( $instance['show_date'] ) ? esc_attr( $instance['show_date'] ) : '';
812
 
813
  $output = $before_widget;
814
  $output .= $before_title . $title . $after_title;
815
  $output .= ald_crp( array(
816
  'is_widget' => 1,
817
  'limit' => $limit,
818
+ 'show_excerpt' => $show_excerpt,
819
+ 'show_author' => $show_author,
820
+ 'show_date' => $show_date,
821
+ 'post_thumb_op' => $post_thumb_op,
822
+ 'thumb_height' => $thumb_height,
823
+ 'thumb_width' => $thumb_width,
824
  ) );
825
 
826
  $output .= $after_widget;
900
 
901
  $thumb_default = plugins_url( 'default.png' , __FILE__ );
902
 
903
+ $crp_get_all_image_sizes = crp_get_all_image_sizes();
904
+
905
  // get relevant post types
906
  $args = array(
907
  'public' => true,
912
  'page' => 'page',
913
  );
914
  $post_types = http_build_query( $post_types, '', '&' );
 
915
 
916
  $crp_settings = array(
917
  // General options
918
  'cache' => false, // Cache output for faster page load
 
 
 
 
 
919
 
920
  'add_to_content' => true, // Add related posts to content (only on single posts)
921
  'add_to_page' => true, // Add related posts to content (only on single pages)
928
  'content_filter_priority' => 10, // Content priority
929
  'show_credit' => false, // Link to this plugin's page?
930
 
931
+ // List tuning options
932
+ 'limit' => '6', // How many posts to display?
933
+ 'daily_range' => '1095', // How old posts should be displayed?
934
+
935
+ 'match_content' => true, // Match against post content as well as title
936
+ 'match_content_words' => '0', // How many characters of content should be matched? 0 for all chars
937
+
938
+ 'post_types' => $post_types, // WordPress custom post types
939
+
940
+ 'exclude_categories' => '', // Exclude these categories
941
+ 'exclude_cat_slugs' => '', // Exclude these categories (slugs)
942
+ 'exclude_post_ids' => '', // Comma separated list of page / post IDs that are to be excluded in the results
943
+
944
  // Output options
945
  'title' => $title, // Add before the content
946
  'blank_output' => true, // Blank output?
960
  'before_list_item' => '<li>', // Before each list item
961
  'after_list_item' => '</li>', // After each list item
962
 
 
 
 
963
  'exclude_on_post_ids' => '', // Comma separate list of page/post IDs to not display related posts on
964
  'exclude_on_post_types' => '', // WordPress custom post types
965
 
966
+ // Thumbnail options
967
+ 'post_thumb_op' => 'inline', // Default option to display text and no thumbnails in posts
968
+ 'thumb_size' => 'crp_thumbnail', // Default thumbnail size
969
  'thumb_height' => '150', // Height of thumbnails
970
  'thumb_width' => '150', // Width of thumbnails
971
+ 'thumb_crop' => true, // Crop mode. default is hard crop
972
  'thumb_html' => 'html', // Use HTML or CSS for width and height of the thumbnail?
973
  'thumb_meta' => 'post-image', // Meta field that is used to store the location of default thumbnail image
974
+ 'scan_images' => true, // Scan post for images
975
  'thumb_default' => $thumb_default, // Default thumbnail image
976
  'thumb_default_show' => true, // Show default thumb if none found (if false, don't show thumb at all)
 
 
977
 
978
  // Feed options
979
  'limit_feed' => '5', // How many posts to display in feeds
984
 
985
  // Custom styles
986
  'custom_CSS' => '', // Custom CSS to style the output
987
+ 'include_default_style' => true, // Include default style
988
  );
989
 
990
 
1162
  function crp_add_image_sizes() {
1163
  global $crp_settings;
1164
 
1165
+ if ( ! in_array( $crp_settings['thumb_size'], get_intermediate_image_sizes() ) ) {
1166
+ $crp_settings['thumb_size'] = 'crp_thumbnail';
1167
+ update_option( 'ald_crp_settings', $crp_settings );
1168
+ }
 
 
 
 
1169
 
1170
+ // Add image sizes if 'crp_thumbnail' is selected or the selected thumbnail size is no longer valid
1171
+ if ( 'crp_thumbnail' == $crp_settings['thumb_size'] ) {
1172
+ $width = empty( $crp_settings['thumb_width'] ) ? 150 : $crp_settings['thumb_width'];
1173
+ $height = empty( $crp_settings['thumb_height'] ) ? 150 : $crp_settings['thumb_height'];
1174
+ $crop = isset( $crp_settings['thumb_crop'] ) ? $crp_settings['thumb_crop'] : false;
 
 
 
 
 
 
 
 
 
1175
 
1176
+ add_image_size( 'crp_thumbnail', $width, $height, $crop );
 
 
 
1177
  }
 
1178
  }
1179
+ add_action( 'init', 'crp_add_image_sizes' );
1180
 
1181
 
1182
  /**
1189
  */
1190
  function crp_get_the_post_thumbnail( $args = array() ) {
1191
 
1192
+ global $crp_url, $crp_settings;
1193
+
1194
  $defaults = array(
1195
  'postid' => '',
1196
+ 'thumb_height' => '150', // Max height of thumbnails
1197
+ 'thumb_width' => '150', // Max width of thumbnails
1198
  'thumb_meta' => 'post-image', // Meta field that is used to store the location of default thumbnail image
1199
  'thumb_html' => 'html', // HTML / CSS for width and height attributes
1200
  'thumb_default' => '', // Default thumbnail image
1201
  'thumb_default_show' => true, // Show default thumb if none found (if false, don't show thumb at all)
 
 
1202
  'scan_images' => false, // Scan post for images
1203
  'class' => 'crp_thumb', // Class of the thumbnail
 
1204
  );
1205
 
1206
  // Parse incomming $args into an array and merge it with $defaults
1207
  $args = wp_parse_args( $args, $defaults );
1208
 
1209
+ // Issue notice for deprecated arguments
1210
+ if ( isset( $args['thumb_timthumb'] ) ) {
1211
+ _deprecated_argument( __FUNCTION__, '2.1', __( 'thumb_timthumb argument has been deprecated', CRP_LOCAL_NAME ) );
1212
+ }
1213
+
1214
+ if ( isset( $args['thumb_timthumb_q'] ) ) {
1215
+ _deprecated_argument( __FUNCTION__, '2.1', __( 'thumb_timthumb_q argument has been deprecated', CRP_LOCAL_NAME ) );
1216
+ }
1217
+
1218
+ if ( isset( $args['filter'] ) ) {
1219
+ _deprecated_argument( __FUNCTION__, '2.1', __( 'filter argument has been deprecated', CRP_LOCAL_NAME ) );
1220
+ }
1221
+
1222
  // Declare each item in $args as its own variable i.e. $type, $before.
1223
  extract( $args, EXTR_SKIP );
1224
 
1225
  $result = get_post( $postid );
1226
+ $post_title = get_the_title( $postid );
1227
 
1228
  $output = '';
1229
+ $postimage = '';
1230
 
1231
  // Let's start fetching the thumbnail. First place to look is in the post meta defined in the Settings page
1232
+ if ( ! $postimage ) {
1233
+ $postimage = get_post_meta( $result->ID, $thumb_meta, true ); // Check the post meta first
1234
+ $pick = 'meta';
1235
+ }
1236
 
1237
  // If there is no thumbnail found, check the post thumbnail
1238
  if ( ! $postimage ) {
1239
+ if ( false != get_post_thumbnail_id( $result->ID ) ) {
1240
+ $postthumb = wp_get_attachment_image_src( get_post_thumbnail_id( $result->ID ), $crp_settings['thumb_size'] );
1241
  $postimage = $postthumb[0];
1242
  }
1243
+ $pick = 'featured';
1244
  }
1245
 
1246
  // If there is no thumbnail found, fetch the first image in the post, if enabled
1249
  if ( isset( $matches[1][0] ) && $matches[1][0] ) { // any image there?
1250
  $postimage = $matches[1][0]; // we need the first one only!
1251
  }
1252
+ if ( $postimage ) {
1253
+ $postimage_id = crp_get_attachment_id_from_url( $postimage );
1254
+
1255
+ if ( false != wp_get_attachment_image_src( $postimage_id, $crp_settings['thumb_size'] ) ) {
1256
+ $postthumb = wp_get_attachment_image_src( $postimage_id, $crp_settings['thumb_size'] );
1257
+ $postimage = $postthumb[0];
1258
+ }
1259
+ $pick = 'correct';
1260
+ }
1261
+ $pick .= 'first';
1262
  }
1263
 
1264
  // If there is no thumbnail found, fetch the first child image
1265
  if ( ! $postimage ) {
1266
+ $postimage = crp_get_first_image( $result->ID ); // Get the first image
1267
+ $pick = 'firstchild';
1268
  }
1269
 
1270
  // If no other thumbnail set, try to get the custom video thumbnail set by the Video Thumbnails plugin
1281
  if ( $postimage ) {
1282
 
1283
  /**
1284
+ * Filters the thumbnail image URL.
1285
+ *
1286
+ * Use this filter to modify the thumbnail URL that is automatically created
1287
+ * Before v2.1 this was used for cropping the post image using timthumb
1288
+ *
1289
+ * @since 2.1.0
1290
+ *
1291
+ * @param string $postimage URL of the thumbnail image
1292
+ * @param int $thumb_width Thumbnail width
1293
+ * @param int $thumb_height Thumbnail height
1294
+ * @param object $result Post Object
1295
+ */
1296
+ $postimage = apply_filters( 'crp_thumb_url', $postimage, $thumb_width, $thumb_height, $result );
1297
+
1298
+ /* Backward compatibility */
1299
+ $thumb_timthumb = false;
1300
+ $thumb_timthumb_q = 75;
1301
+
1302
+ /**
1303
+ * Filters the thumbnail image URL.
1304
  *
1305
+ * @since 1.8.10
1306
+ * @deprecated 2.1 Use crp_thumb_url instead.
1307
  *
1308
+ * @param string $postimage URL of the thumbnail image
1309
+ * @param int $thumb_width Thumbnail width
1310
+ * @param int $thumb_height Thumbnail height
1311
+ * @param boolean $thumb_timthumb Enable timthumb?
1312
+ * @param int $thumb_timthumb_q Quality of timthumb thumbnail.
1313
+ * @param object $result Post Object
1314
  */
1315
+ $postimage = apply_filters( 'crp_postimage', $postimage, $thumb_width, $thumb_height, $thumb_timthumb, $thumb_timthumb_q, $result );
1316
+
1317
  if ( is_ssl() ) {
1318
  $postimage = preg_replace( '~http://~', 'https://', $postimage );
1319
  }
1320
+
1321
+ $thumb_html = ( 'css' == $thumb_html ) ? 'style="max-width:' . $thumb_width . 'px;max-height:' . $thumb_height . 'px;"' : 'width="' . $thumb_width . '" height="' .$thumb_height . '"';
1322
+
1323
+ $class .= ' crp_' . $pick;
1324
+ $output .= '<img src="' . $postimage . '" alt="' . $post_title . '" title="' . $post_title . '" ' . $thumb_html . ' class="' . $class . '" />';
1325
  }
1326
 
1327
  /**
1330
  * @since 1.9
1331
  *
1332
  * @param array $output Formatted output
1333
+ * @param array $args Argument list
1334
  */
1335
+ return apply_filters( 'crp_get_the_post_thumbnail', $output, $args );
1336
  }
1337
 
1338
 
1358
 
1359
  if ( $attachments ) {
1360
  foreach ( $attachments as $attachment ) {
1361
+ $image_attributes = wp_get_attachment_image_src( $attachment->ID, 'thumbnail' ) ? wp_get_attachment_image_src( $attachment->ID, 'thumbnail' ) : wp_get_attachment_image_src( $attachment->ID, 'full' );
1362
 
1363
  /**
1364
  * Filters first child attachment from the post.
1376
  }
1377
 
1378
 
1379
+ /**
1380
+ * Function to get the attachment ID from the attachment URL.
1381
+ *
1382
+ * @since 2.1
1383
+ *
1384
+ * @param string $attachment_url Attachment URL
1385
+ * @return int Attachment ID
1386
+ */
1387
+ function crp_get_attachment_id_from_url( $attachment_url = '' ) {
1388
+
1389
+ global $wpdb;
1390
+ $attachment_id = false;
1391
+
1392
+ // If there is no url, return.
1393
+ if ( '' == $attachment_url ) {
1394
+ return;
1395
+ }
1396
+
1397
+ // Get the upload directory paths
1398
+ $upload_dir_paths = wp_upload_dir();
1399
+
1400
+ // Make sure the upload path base directory exists in the attachment URL, to verify that we're working with a media library image
1401
+ if ( false !== strpos( $attachment_url, $upload_dir_paths['baseurl'] ) ) {
1402
+
1403
+ // If this is the URL of an auto-generated thumbnail, get the URL of the original image
1404
+ $attachment_url = preg_replace( '/-\d+x\d+(?=\.(jpg|jpeg|png|gif)$)/i', '', $attachment_url );
1405
+
1406
+ // Remove the upload path base directory from the attachment URL
1407
+ $attachment_url = str_replace( $upload_dir_paths['baseurl'] . '/', '', $attachment_url );
1408
+
1409
+ // Finally, run a custom database query to get the attachment ID from the modified attachment URL
1410
+ $attachment_id = $wpdb->get_var( $wpdb->prepare( "SELECT wposts.ID FROM $wpdb->posts wposts, $wpdb->postmeta wpostmeta WHERE wposts.ID = wpostmeta.post_id AND wpostmeta.meta_key = '_wp_attached_file' AND wpostmeta.meta_value = '%s' AND wposts.post_type = 'attachment'", $attachment_url ) );
1411
+
1412
+ }
1413
+
1414
+ /**
1415
+ * Filters attachment ID generated from URL.
1416
+ *
1417
+ * @since 2.1
1418
+ *
1419
+ * @param int $attachment_id Attachment ID
1420
+ * @param string $attachment_url Attachment URL
1421
+ */
1422
+ return apply_filters( 'crp_get_attachment_id_from_url', $attachment_id, $attachment_url );
1423
+ }
1424
+
1425
+
1426
  /**
1427
  * Function to create an excerpt for the post.
1428
  *
1497
  }
1498
 
1499
 
1500
+ /**
1501
+ * Get all image sizes.
1502
+ *
1503
+ * @since 2.0.0
1504
+ * @param string $size Get specific image size
1505
+ * @return array Image size names along with width, height and crop setting
1506
+ */
1507
+ function crp_get_all_image_sizes( $size = '' ) {
1508
+ global $_wp_additional_image_sizes;
1509
+
1510
+ /* Get the intermediate image sizes and add the full size to the array. */
1511
+ $intermediate_image_sizes = get_intermediate_image_sizes();
1512
+
1513
+ foreach( $intermediate_image_sizes as $_size ) {
1514
+ if ( in_array( $_size, array( 'thumbnail', 'medium', 'large' ) ) ) {
1515
+
1516
+ $sizes[ $_size ]['name'] = $_size;
1517
+ $sizes[ $_size ]['width'] = get_option( $_size . '_size_w' );
1518
+ $sizes[ $_size ]['height'] = get_option( $_size . '_size_h' );
1519
+ $sizes[ $_size ]['crop'] = (bool) get_option( $_size . '_crop' );
1520
+
1521
+ if ( ( 0 == $sizes[ $_size ]['width'] ) && ( 0 == $sizes[ $_size ]['height'] ) ) {
1522
+ unset( $sizes[ $_size ] );
1523
+ }
1524
+
1525
+ } elseif ( isset( $_wp_additional_image_sizes[ $_size ] ) ) {
1526
+
1527
+ $sizes[ $_size ] = array(
1528
+ 'name' => $_size,
1529
+ 'width' => $_wp_additional_image_sizes[ $_size ]['width'],
1530
+ 'height' => $_wp_additional_image_sizes[ $_size ]['height'],
1531
+ 'crop' => (bool) $_wp_additional_image_sizes[ $_size ]['crop'],
1532
+ );
1533
+ }
1534
+ }
1535
+
1536
+ /* Get only 1 size if found */
1537
+ if ( $size ) {
1538
+ if ( isset( $sizes[ $size ] ) ) {
1539
+ return $sizes[ $size ];
1540
+ } else {
1541
+ return false;
1542
+ }
1543
+ }
1544
+
1545
+ /**
1546
+ * Filters array of image sizes.
1547
+ *
1548
+ * @since 2.0
1549
+ *
1550
+ * @param array $sizes Image sizes
1551
+ */
1552
+ return apply_filters( 'crp_get_all_image_sizes', $sizes );
1553
+ }
1554
+
1555
+
1556
  /*----------------------------------------------------------------------------*
1557
  * Dashboard and Administrative Functionality
1558
  *----------------------------------------------------------------------------*/
css/default-style.css CHANGED
@@ -62,4 +62,7 @@
62
  -webkit-border-radius: 7px;
63
  -moz-border-radius: 7px;
64
  border-radius: 7px;
65
- }
 
 
 
62
  -webkit-border-radius: 7px;
63
  -moz-border-radius: 7px;
64
  border-radius: 7px;
65
+ }
66
+
67
+ .crp_clear {
68
+ clear: both;
languages/crp-da_DK.mo CHANGED
Binary file
languages/crp-da_DK.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts 1.5.1\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-09-04 20:42-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Team Blogos <wordpress@blogos.dk>\n"
@@ -11,241 +11,234 @@ msgstr ""
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=2;plural=n != 1;\n"
14
- "X-Poedit-SourceCharset: utf-8\n"
15
  "X-Poedit-KeywordsList: __;_c;_e;__ngettext:1,2;__ngettext_noop:1,2;_n:1,2;"
16
  "_nc:1,2;_n_noop:1,2\n"
17
  "X-Poedit-Basepath: ../\n"
18
- "X-Generator: Poedit 1.6.9\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
- #: admin/admin.php:161
22
  msgid "Options saved successfully."
23
  msgstr "Indstillingerne blev gemt."
24
 
25
- #: admin/admin.php:181
 
 
 
 
 
 
26
  msgid "Options set to Default."
27
  msgstr "Indstillingerne sat til standardværdier."
28
 
29
- #: admin/admin.php:192
30
  msgid "Index recreated"
31
  msgstr "Indeks blev gendannet"
32
 
33
- #: admin/admin.php:209 admin/admin.php:419 admin/main-view.php:20
34
  #, fuzzy
35
  msgid "Contextual Related Posts"
36
  msgstr "Related Posts (Lignende indlæg)"
37
 
38
- #: admin/admin.php:210
39
  msgid "Related Posts"
40
  msgstr "Related Posts (Lignende indlæg)"
41
 
42
- #: admin/admin.php:321
43
  msgid "Settings"
44
  msgstr "Opsætning"
45
 
46
- #: admin/admin.php:343 admin/sidebar-view.php:58
47
  msgid "Support"
48
  msgstr "Support"
49
 
50
- #: admin/admin.php:344
51
  msgid "Donate"
52
  msgstr "Donation"
53
 
54
- #: admin/admin.php:345
55
  msgid "Contribute"
56
  msgstr ""
57
 
58
- #: admin/admin.php:361
59
  msgid "plugin settings page"
60
  msgstr ""
61
 
62
- #: admin/admin.php:395
63
  msgid ""
64
  "An error occurred clearing the cache. Please contact your site administrator."
65
  "\\n\\nError message:\\n"
66
  msgstr ""
67
 
68
- #: admin/admin.php:400
69
  msgid " cached row(s) cleared"
70
  msgstr ""
71
 
72
- #: admin/admin.php:446
73
  msgid "Location of thumbnail:"
74
  msgstr ""
75
 
76
- #: admin/admin.php:448
77
  msgid ""
78
  "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
79
  "image will be used for the post. It will be resized to the thumbnail size "
80
  "set under Settings &raquo; Related Posts &raquo; Output Options"
81
  msgstr ""
82
 
83
- #: admin/admin.php:449
84
  msgid "The URL above is saved in the meta field: "
85
  msgstr ""
86
 
87
- #: admin/main-view.php:32 admin/main-view.php:51
88
  msgid "General options"
89
  msgstr ""
90
 
91
- #: admin/main-view.php:33 admin/main-view.php:60
 
 
 
 
92
  #, fuzzy
93
  msgid "Output options"
94
  msgstr "Indstillinger for output:"
95
 
96
- #: admin/main-view.php:34 admin/main-view.php:69
 
97
  #, fuzzy
98
- msgid "Feed options"
99
- msgstr "Indstillinger:"
100
-
101
- #: admin/main-view.php:35 admin/main-view.php:77
102
- msgid "Custom styles"
103
- msgstr ""
104
 
105
- #: admin/main-view.php:95
106
  #, fuzzy
107
- msgid "Save Options"
108
  msgstr "Indstillinger:"
109
 
110
- #: admin/main-view.php:96
111
- #, fuzzy
112
- msgid "Default Options"
113
- msgstr "Indstillinger for output:"
114
-
115
- #: admin/main-view.php:96
116
- msgid "Do you want to set options to Default?"
117
- msgstr "Ønsker du at sætte indstillingerne til standardværdierne?"
118
-
119
- #: admin/main-view.php:97
120
- msgid "Recreate Index"
121
  msgstr ""
122
 
123
- #: admin/main-view.php:97
124
- msgid "Are you sure you want to recreate the index?"
125
- msgstr "Er du sikker på, du ønsker at gendanne indekset?"
126
-
127
- #: admin/options-custom-styles.php:32
128
- msgid "Use default style included in the plugin?"
129
  msgstr ""
130
 
131
- #: admin/options-custom-styles.php:35
132
  msgid ""
133
- "Contextual Related Posts includes a default style that makes your popular "
134
- "posts list to look beautiful. Check the box above if you want to use this."
135
  msgstr ""
136
 
137
- #: admin/options-custom-styles.php:36
138
- msgid ""
139
- "Enabling this option will turn on the thumbnails and set their width and "
140
- "height to 150px. It will also turn off the display of the author, excerpt "
141
- "and date if already enabled. Disabling this option will not revert any "
142
- "settings."
143
  msgstr ""
144
 
145
- #: admin/options-custom-styles.php:39
146
- msgid "Custom CSS to add to header:"
 
 
 
 
 
147
  msgstr ""
148
 
149
- #: admin/options-custom-styles.php:43
150
- msgid ""
151
- "Do not include <code>style</code> tags. Check out the <a href=\"http://"
152
- "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
153
- "\">FAQ</a> for available CSS classes to style."
154
  msgstr ""
155
 
156
- #: admin/options-feed.php:32
157
- msgid ""
158
- "Below options override the related posts settings for your blog feed. These "
159
- "only apply if you have selected to add related posts to Feeds in the General "
160
- "Options tab."
161
  msgstr ""
162
 
163
- #: admin/options-feed.php:34 admin/options-genops.php:39
164
- msgid "Number of related posts to display: "
165
- msgstr "Antal Lignende indlæg, der skal vises: "
166
 
167
- #: admin/options-feed.php:37 admin/options-output.php:52
168
- msgid "Show post excerpt in list?"
169
  msgstr ""
170
 
171
- #: admin/options-feed.php:40 admin/options-output.php:239
172
- msgid "Location of post thumbnail:"
173
  msgstr ""
174
 
175
- #: admin/options-feed.php:44 admin/options-output.php:243
176
- #, fuzzy
177
- msgid "Display thumbnails inline with posts, before title"
178
- msgstr "Vis miniaturer inline med indlæg"
179
 
180
- #: admin/options-feed.php:48 admin/options-output.php:247
181
  #, fuzzy
182
- msgid "Display thumbnails inline with posts, after title"
183
- msgstr "Vis miniaturer inline med indlæg"
184
-
185
- #: admin/options-feed.php:52 admin/options-output.php:251
186
- msgid "Display only thumbnails, no text"
187
- msgstr "Vis kun miniaturer, ingen tekst"
188
-
189
- #: admin/options-feed.php:56 admin/options-output.php:255
190
- msgid "Do not display thumbnails, only text."
191
- msgstr "Vis ikke miniaturer, kun tekst."
192
 
193
- #: admin/options-feed.php:60
194
- msgid "Maximum width of the thumbnail: "
195
  msgstr ""
196
 
197
- #: admin/options-feed.php:63 admin/options-output.php:270
198
- msgid "Maximum height of the thumbnail: "
 
 
199
  msgstr ""
200
 
201
- #: admin/options-genops.php:32
202
- msgid "Cache output?"
 
 
 
 
 
203
  msgstr ""
204
 
205
- #: admin/options-genops.php:34
 
206
  msgid ""
207
- "Enabling this option will cache the related posts output when the post is "
208
- "visited the first time. The cache is cleaned when you save this page."
209
- msgstr ""
210
 
211
- #: admin/options-genops.php:35
212
- msgid "Clear cache"
213
- msgstr ""
 
 
214
 
215
- #: admin/options-genops.php:42
 
 
 
 
216
  msgid ""
217
  "Maximum number of posts that will be displayed. The actual number may be "
218
  "smaller if less related posts are found."
219
  msgstr ""
220
 
221
- #: admin/options-genops.php:46
222
  msgid "Related posts should be newer than:"
223
  msgstr ""
224
 
225
- #: admin/options-genops.php:48
226
  msgid "days"
227
  msgstr ""
228
 
229
- #: admin/options-genops.php:49
230
  msgid ""
231
  "This sets the cutoff period for which posts will be displayed. e.g. setting "
232
- "it to 365 will show related posts from the last year only."
233
- msgstr ""
234
-
235
- #: admin/options-genops.php:53
236
- msgid "Post types to include in results:"
237
- msgstr ""
238
-
239
- #: admin/options-genops.php:64
240
- msgid ""
241
- "These post types will be displayed in the list. Includes custom post types."
242
  msgstr ""
243
 
244
- #: admin/options-genops.php:68
245
  msgid "Find related posts based on content as well as title:"
246
  msgstr ""
247
 
248
- #: admin/options-genops.php:70
249
  #, fuzzy
250
  msgid ""
251
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
@@ -255,111 +248,73 @@ msgstr ""
255
  "kun indlæggenes titler (jeg anbefaler et cache-plugin, hvis du aktiverer "
256
  "dette)"
257
 
258
- #: admin/options-genops.php:74
259
  msgid "Limit content to be compared"
260
  msgstr ""
261
 
262
- #: admin/options-genops.php:76
263
  msgid ""
264
  "This sets the maximum words of the content that will be matched. 0 means no "
265
  "limit."
266
  msgstr ""
267
 
268
- #: admin/options-genops.php:80
269
- #, fuzzy
270
- msgid "Add related posts to:"
271
- msgstr "Tilføj Lignende indlæg til feeds"
272
-
273
- #: admin/options-genops.php:82
274
- msgid "Posts"
275
- msgstr ""
276
-
277
- #: admin/options-genops.php:83
278
- msgid "Pages"
279
- msgstr ""
280
-
281
- #: admin/options-genops.php:84
282
- msgid "Home page"
283
- msgstr ""
284
-
285
- #: admin/options-genops.php:85
286
- msgid "Feeds"
287
- msgstr ""
288
-
289
- #: admin/options-genops.php:86
290
- msgid "Category archives"
291
- msgstr ""
292
-
293
- #: admin/options-genops.php:87
294
- msgid "Tag archives"
295
- msgstr ""
296
-
297
- #: admin/options-genops.php:88
298
- msgid "Other archives"
299
  msgstr ""
300
 
301
- #: admin/options-genops.php:89
302
- #, fuzzy
303
  msgid ""
304
- "If you choose to disable this, please add <code>&lt;?php if "
305
- "( function_exists( 'echo_ald_crp' ) ) echo_ald_crp(); ?&gt;</code> to your "
306
- "template file where you want it displayed"
307
  msgstr ""
308
- "Tilføj Lignende indlæg til statiske sider. <br />Hvis du vælger at "
309
- "deaktivere dette, skal du tilføje <code>&lt;?php "
310
- "if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> til din "
311
- "skabelonfil, hvor du ønsker de lignende indlæg vist"
312
 
313
- #: admin/options-genops.php:93
314
- msgid "Content filter priority:"
315
  msgstr ""
316
 
317
- #: admin/options-genops.php:96
318
  msgid ""
319
- "A higher number will cause the content above to be processed after other "
320
- "filters. Number below 10 is not recommended."
321
  msgstr ""
322
 
323
- #: admin/options-genops.php:100
324
- #, fuzzy
325
- msgid "Tell the world you're using Contextual Related Posts:"
326
- msgstr "Related Posts (Lignende indlæg)"
327
-
328
- #: admin/options-genops.php:102
329
- msgid " <em>Optional</em>"
330
  msgstr ""
331
 
332
- #: admin/options-genops.php:103
333
- #, fuzzy
334
  msgid ""
335
- "Adds a nofollow link to Contextual Related Posts homepage as the last time "
336
- "in the list."
337
- msgstr "Related Posts (Lignende indlæg)"
 
338
 
339
- #: admin/options-output.php:32
340
  msgid "Title of related posts: "
341
  msgstr "Titel på Lignende indlæg: "
342
 
343
- #: admin/options-output.php:35
344
  msgid ""
345
  "This is the main heading of the related posts. You can also display the "
346
  "current post title by using <code>%postname%</code>. e.g. <code>Related "
347
  "Posts to %postname%</code>"
348
  msgstr ""
349
 
350
- #: admin/options-output.php:39
351
  msgid "When there are no posts, what should be shown?"
352
  msgstr "Hvad skal der vises, hvis der ingen indlæg er?"
353
 
354
- #: admin/options-output.php:43
355
  msgid "Blank Output"
356
  msgstr "Intet"
357
 
358
- #: admin/options-output.php:47
359
  msgid "Display:"
360
  msgstr ""
361
 
362
- #: admin/options-output.php:55
 
 
 
 
363
  #, php-format
364
  msgid ""
365
  "Displays the excerpt of the post. If you do not provide an explicit excerpt "
@@ -367,221 +322,235 @@ msgid ""
367
  "automatic excerpt which refers to the first %d words of the post's content"
368
  msgstr ""
369
 
370
- #: admin/options-output.php:59
 
 
 
 
 
371
  msgid "Length of excerpt (in words): "
372
  msgstr ""
373
 
374
- #: admin/options-output.php:65
375
  msgid "Show post author in list?"
376
  msgstr ""
377
 
378
- #: admin/options-output.php:68
379
  msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
380
  msgstr ""
381
 
382
- #: admin/options-output.php:72
 
 
 
 
 
383
  msgid "Show post date in list?"
384
  msgstr ""
385
 
386
- #: admin/options-output.php:75
387
  msgid ""
388
  "Displays the date of the post. Uses the same date format set in General "
389
  "Options"
390
  msgstr ""
391
 
392
- #: admin/options-output.php:79
 
 
 
 
 
393
  msgid "Limit post title length (in characters)"
394
  msgstr ""
395
 
396
- #: admin/options-output.php:82
397
  msgid ""
398
  "Any title longer than the number of characters set above will be cut and "
399
  "appended with a &helip;"
400
  msgstr ""
401
 
402
- #: admin/options-output.php:86
403
  msgid "Open links in new window"
404
  msgstr ""
405
 
406
- #: admin/options-output.php:92
407
  msgid "Add nofollow attribute to links in the list"
408
  msgstr ""
409
 
410
- #: admin/options-output.php:125
411
  msgid "Exclusion settings:"
412
  msgstr ""
413
 
414
- #: admin/options-output.php:127
415
- msgid "List of post or page IDs to exclude from the results:"
416
- msgstr ""
417
-
418
- #: admin/options-output.php:129 admin/options-output.php:135
419
- msgid ""
420
- "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
421
- msgstr ""
422
-
423
- #: admin/options-output.php:132
424
  #, fuzzy
425
  msgid "Exclude display of related posts on these posts / pages"
426
  msgstr "Tilføj Lignende indlæg til feeds"
427
 
428
- #: admin/options-output.php:138
429
- msgid "Categories to exclude from the results: "
430
- msgstr ""
431
-
432
- #: admin/options-output.php:154
433
- msgid ""
434
- "Comma separated list of category slugs. The field above has an autocomplete "
435
- "so simply start typing in the beginning of your category name and it will "
436
- "prompt you with options."
437
- msgstr ""
438
-
439
- #: admin/options-output.php:157
440
  #, fuzzy
441
  msgid "Exclude display of related posts on these post types."
442
  msgstr "Tilføj Lignende indlæg til feeds"
443
 
444
- #: admin/options-output.php:166
445
  msgid ""
446
  "The related posts will not display on any of the above selected post types"
447
  msgstr ""
448
 
449
- #: admin/options-output.php:196
450
  msgid "Customize the output:"
451
  msgstr "Tilpas outputtet:"
452
 
453
- #: admin/options-output.php:198
454
  msgid "HTML to display before the list of posts: "
455
  msgstr "HTML, der skal vises før listen med indlæg: "
456
 
457
- #: admin/options-output.php:201
458
  msgid "HTML to display before each list item: "
459
  msgstr "HTML, der skal vises før hvert punkt på listen: "
460
 
461
- #: admin/options-output.php:204
462
  msgid "HTML to display after each list item: "
463
  msgstr "HTML, der skal vises efter hvert punkt på listen: "
464
 
465
- #: admin/options-output.php:207
466
  msgid "HTML to display after the list of posts: "
467
  msgstr "HTML, der skal vises efter listen med indlæg: "
468
 
469
- #: admin/options-output.php:237
470
- msgid "Post thumbnail options:"
471
- msgstr "Indstillinger for indlægsminiaturer:"
472
-
473
- #: admin/options-output.php:261
474
- msgid ""
475
- "Contextual Related Posts adds a new image size with the below dimensions."
476
  msgstr ""
477
 
478
- #: admin/options-output.php:262
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
479
  msgid ""
480
- "If you change the width and/or height below, existing images will not be "
481
- "automatically resized."
482
  msgstr ""
483
 
484
- #: admin/options-output.php:263
485
- #, php-format
486
- msgid ""
487
- "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
488
- "a> to regenerate all image sizes."
489
  msgstr ""
490
 
491
- #: admin/options-output.php:267
492
- msgid "Maximum width of the thumbnail:"
493
  msgstr ""
494
 
495
- #: admin/options-output.php:274
496
  msgid ""
497
- "Since you're using the default styles set under the Custom Styles section, "
498
- "the width and height is fixed at 150px"
 
499
  msgstr ""
500
 
501
- #: admin/options-output.php:278
502
- msgid "Crop mode:"
 
 
503
  msgstr ""
504
 
505
- #: admin/options-output.php:282
 
506
  msgid ""
507
- "By default, thumbnails will be proportionately cropped. Check this box to "
508
- "hard crop the thumbnails."
 
509
  msgstr ""
510
 
511
- #: admin/options-output.php:283
512
- #, php-format
513
- msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
514
  msgstr ""
515
 
516
- #: admin/options-output.php:287
517
- msgid "Style attributes / Width and Height HTML attributes:"
518
  msgstr ""
519
 
520
- #: admin/options-output.php:291
521
- msgid "Style attributes are used for width and height."
522
  msgstr ""
523
 
524
- #: admin/options-output.php:295
525
- msgid "HTML width and height attributes are used for width and height."
 
 
526
  msgstr ""
527
 
528
- #: admin/options-output.php:299
529
- msgid "Use timthumb to generate thumbnails? "
 
530
  msgstr ""
531
 
532
- #: admin/options-output.php:301
533
  msgid ""
534
- "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
535
- "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
536
  msgstr ""
537
 
538
- #: admin/options-output.php:304
539
- msgid "Quality of thumbnails generated by timthumb:"
540
  msgstr ""
541
 
542
- #: admin/options-output.php:307
543
- msgid ""
544
- "Enter values between 0 and 100 only. 100 is highest quality and the highest "
545
- "file size. Suggested maximum value is 95. CRP default is 75."
 
 
546
  msgstr ""
547
 
548
- #: admin/options-output.php:310
549
  #, fuzzy
550
  msgid "Post thumbnail meta field name:"
551
  msgstr "Indstillinger for indlægsminiaturer:"
552
 
553
- #: admin/options-output.php:312
554
  msgid ""
555
  "The value of this field should contain the image source and is set in the "
556
  "<em>Add New Post</em> screen"
557
  msgstr ""
558
 
559
- #: admin/options-output.php:315
560
  msgid "Extract the first image from the post?"
561
  msgstr ""
562
 
563
- #: admin/options-output.php:317
564
  msgid ""
565
  "This will only happen if there is no post thumbnail set and no image URL is "
566
  "specified in the meta field."
567
  msgstr ""
568
 
569
- #: admin/options-output.php:320
570
  msgid "Use default thumbnail?"
571
  msgstr ""
572
 
573
- #: admin/options-output.php:322
574
  msgid ""
575
  "If checked, when no thumbnail is found, show a default one from the URL "
576
  "below. If not checked and no thumbnail is found, no image will be shown."
577
  msgstr ""
578
 
579
- #: admin/options-output.php:325
580
  #, fuzzy
581
  msgid "Default thumbnail:"
582
  msgstr "Indstillinger for output:"
583
 
584
- #: admin/options-output.php:328
585
  #, fuzzy
586
  msgid ""
587
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -592,6 +561,73 @@ msgstr ""
592
  "indlægget ikke gør det, tjekker pluginnet metafeltet. Hvis dette ikke "
593
  "findes, vil det vise standardbilledet specificeret nedenfor:"
594
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
595
  #: admin/sidebar-view.php:20
596
  #, fuzzy
597
  msgid "Support the development"
@@ -614,118 +650,128 @@ msgstr ""
614
  msgid "Follow me"
615
  msgstr ""
616
 
617
- #: admin/sidebar-view.php:52
618
  msgid "Quick links"
619
  msgstr ""
620
 
621
- #: admin/sidebar-view.php:56
622
  #, fuzzy
623
  msgid "Contextual Related Posts plugin page"
624
  msgstr "Related Posts (Lignende indlæg)"
625
 
626
- #: admin/sidebar-view.php:57
627
  msgid "FAQ"
628
  msgstr ""
629
 
630
- #: admin/sidebar-view.php:59
631
  msgid "Reviews"
632
  msgstr ""
633
 
634
- #: admin/sidebar-view.php:60
635
  msgid "Github repository"
636
  msgstr ""
637
 
638
- #: admin/sidebar-view.php:61
639
  msgid "Other plugins"
640
  msgstr ""
641
 
642
- #: admin/sidebar-view.php:62
643
  msgid "Ajay's blog"
644
  msgstr ""
645
 
646
- #: contextual-related-posts.php:246
647
  msgid " by "
648
  msgstr ""
649
 
650
- #: contextual-related-posts.php:285
651
  #, php-format
652
  msgid "Powered by <a href=\"%s\" rel=\"nofollow\">Contextual Related Posts</a>"
653
  msgstr ""
654
 
655
- #: contextual-related-posts.php:596
656
  #, fuzzy
657
  msgid "Related Posts [CRP]"
658
  msgstr "Related Posts (Lignende indlæg)"
659
 
660
- #: contextual-related-posts.php:597
661
  #, fuzzy
662
  msgid "Display Related Posts"
663
  msgstr "Vis \"Ingen lignende indlæg\""
664
 
665
- #: contextual-related-posts.php:620
666
  msgid "Title"
667
  msgstr ""
668
 
669
- #: contextual-related-posts.php:625
670
  msgid "No. of posts"
671
  msgstr ""
672
 
673
- #: contextual-related-posts.php:630
674
  msgid " Show excerpt?"
675
  msgstr ""
676
 
677
- #: contextual-related-posts.php:635
678
  msgid " Show author?"
679
  msgstr ""
680
 
681
- #: contextual-related-posts.php:640
682
  msgid " Show date?"
683
  msgstr ""
684
 
685
- #: contextual-related-posts.php:644
686
- #, fuzzy
687
- msgid "Thumbnail options"
688
- msgstr "Indstillinger for indlægsminiaturer:"
689
-
690
- #: contextual-related-posts.php:646
691
  #, fuzzy
692
  msgid "Thumbnails inline, before title"
693
  msgstr "Vis miniaturer inline med indlæg"
694
 
695
- #: contextual-related-posts.php:647
696
  #, fuzzy
697
  msgid "Thumbnails inline, after title"
698
  msgstr "Vis miniaturer inline med indlæg"
699
 
700
- #: contextual-related-posts.php:648
701
  #, fuzzy
702
  msgid "Only thumbnails, no text"
703
  msgstr "Vis kun miniaturer, ingen tekst"
704
 
705
- #: contextual-related-posts.php:649
706
  #, fuzzy
707
  msgid "No thumbnails, only text."
708
  msgstr "Vis ikke miniaturer, kun tekst."
709
 
710
- #: contextual-related-posts.php:654
711
  #, fuzzy
712
  msgid "Thumbnail height"
713
  msgstr "Indstillinger for indlægsminiaturer:"
714
 
715
- #: contextual-related-posts.php:659
716
  #, fuzzy
717
  msgid "Thumbnail width"
718
  msgstr "Indstillinger for indlægsminiaturer:"
719
 
720
- #: contextual-related-posts.php:799
721
  msgid "<h3>Related Posts:</h3>"
722
  msgstr "<h3>Lignende indlæg:</h3>"
723
 
724
- #: contextual-related-posts.php:801
725
  #, fuzzy
726
  msgid "No related posts found"
727
  msgstr "Ingen lignende indlæg fundet"
728
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
729
  #~ msgid "Display \"No Related Posts\""
730
  #~ msgstr "Vis \"Ingen lignende indlæg\""
731
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts 1.5.1\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-05-09 22:20-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Team Blogos <wordpress@blogos.dk>\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=2;plural=n != 1;\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
  "X-Poedit-KeywordsList: __;_c;_e;__ngettext:1,2;__ngettext_noop:1,2;_n:1,2;"
16
  "_nc:1,2;_n_noop:1,2\n"
17
  "X-Poedit-Basepath: ../\n"
18
+ "X-Generator: Poedit 1.7.1\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: admin/admin.php:166
22
  msgid "Options saved successfully."
23
  msgstr "Indstillingerne blev gemt."
24
 
25
+ #: admin/admin.php:169
26
+ msgid ""
27
+ "Default styles selected. Thumbnail width, height and crop settings have been "
28
+ "fixed. Author, Excerpt and Date will not be displayed."
29
+ msgstr ""
30
+
31
+ #: admin/admin.php:194
32
  msgid "Options set to Default."
33
  msgstr "Indstillingerne sat til standardværdier."
34
 
35
+ #: admin/admin.php:205
36
  msgid "Index recreated"
37
  msgstr "Indeks blev gendannet"
38
 
39
+ #: admin/admin.php:222 admin/admin.php:453 admin/main-view.php:20
40
  #, fuzzy
41
  msgid "Contextual Related Posts"
42
  msgstr "Related Posts (Lignende indlæg)"
43
 
44
+ #: admin/admin.php:223
45
  msgid "Related Posts"
46
  msgstr "Related Posts (Lignende indlæg)"
47
 
48
+ #: admin/admin.php:338
49
  msgid "Settings"
50
  msgstr "Opsætning"
51
 
52
+ #: admin/admin.php:360 admin/sidebar-view.php:59
53
  msgid "Support"
54
  msgstr "Support"
55
 
56
+ #: admin/admin.php:361
57
  msgid "Donate"
58
  msgstr "Donation"
59
 
60
+ #: admin/admin.php:362
61
  msgid "Contribute"
62
  msgstr ""
63
 
64
+ #: admin/admin.php:378
65
  msgid "plugin settings page"
66
  msgstr ""
67
 
68
+ #: admin/admin.php:422
69
  msgid ""
70
  "An error occurred clearing the cache. Please contact your site administrator."
71
  "\\n\\nError message:\\n"
72
  msgstr ""
73
 
74
+ #: admin/admin.php:427
75
  msgid " cached row(s) cleared"
76
  msgstr ""
77
 
78
+ #: admin/admin.php:480
79
  msgid "Location of thumbnail:"
80
  msgstr ""
81
 
82
+ #: admin/admin.php:482
83
  msgid ""
84
  "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
85
  "image will be used for the post. It will be resized to the thumbnail size "
86
  "set under Settings &raquo; Related Posts &raquo; Output Options"
87
  msgstr ""
88
 
89
+ #: admin/admin.php:483
90
  msgid "The URL above is saved in the meta field: "
91
  msgstr ""
92
 
93
+ #: admin/main-view.php:32 admin/main-view.php:54
94
  msgid "General options"
95
  msgstr ""
96
 
97
+ #: admin/main-view.php:33 admin/main-view.php:125
98
+ msgid "List tuning options"
99
+ msgstr ""
100
+
101
+ #: admin/main-view.php:34 admin/main-view.php:229
102
  #, fuzzy
103
  msgid "Output options"
104
  msgstr "Indstillinger for output:"
105
 
106
+ #: admin/main-view.php:35 admin/main-view.php:433
107
+ #: contextual-related-posts.php:718
108
  #, fuzzy
109
+ msgid "Thumbnail options"
110
+ msgstr "Indstillinger for indlægsminiaturer:"
 
 
 
 
111
 
112
+ #: admin/main-view.php:36 admin/main-view.php:580
113
  #, fuzzy
114
+ msgid "Feed options"
115
  msgstr "Indstillinger:"
116
 
117
+ #: admin/main-view.php:37 admin/main-view.php:652
118
+ msgid "Custom styles"
 
 
 
 
 
 
 
 
 
119
  msgstr ""
120
 
121
+ #: admin/main-view.php:70
122
+ msgid "Cache output?"
 
 
 
 
123
  msgstr ""
124
 
125
+ #: admin/main-view.php:72
126
  msgid ""
127
+ "Enabling this option will cache the related posts output when the post is "
128
+ "visited the first time. The cache is cleaned when you save this page."
129
  msgstr ""
130
 
131
+ #: admin/main-view.php:73
132
+ msgid "Clear cache"
 
 
 
 
133
  msgstr ""
134
 
135
+ #: admin/main-view.php:77
136
+ #, fuzzy
137
+ msgid "Add related posts to:"
138
+ msgstr "Tilføj Lignende indlæg til feeds"
139
+
140
+ #: admin/main-view.php:79
141
+ msgid "Posts"
142
  msgstr ""
143
 
144
+ #: admin/main-view.php:80
145
+ msgid "Pages"
 
 
 
146
  msgstr ""
147
 
148
+ #: admin/main-view.php:81
149
+ msgid "Home page"
 
 
 
150
  msgstr ""
151
 
152
+ #: admin/main-view.php:82
153
+ msgid "Feeds"
154
+ msgstr ""
155
 
156
+ #: admin/main-view.php:83
157
+ msgid "Category archives"
158
  msgstr ""
159
 
160
+ #: admin/main-view.php:84
161
+ msgid "Tag archives"
162
  msgstr ""
163
 
164
+ #: admin/main-view.php:85
165
+ msgid "Other archives"
166
+ msgstr ""
 
167
 
168
+ #: admin/main-view.php:86
169
  #, fuzzy
170
+ msgid ""
171
+ "If you choose to disable this, please add <code>&lt;?php if "
172
+ "( function_exists( 'echo_ald_crp' ) ) echo_ald_crp(); ?&gt;</code> to your "
173
+ "template file where you want it displayed"
174
+ msgstr ""
175
+ "Tilføj Lignende indlæg til statiske sider. <br />Hvis du vælger at "
176
+ "deaktivere dette, skal du tilføje <code>&lt;?php "
177
+ "if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> til din "
178
+ "skabelonfil, hvor du ønsker de lignende indlæg vist"
 
179
 
180
+ #: admin/main-view.php:90
181
+ msgid "Content filter priority:"
182
  msgstr ""
183
 
184
+ #: admin/main-view.php:93
185
+ msgid ""
186
+ "A higher number will cause the content above to be processed after other "
187
+ "filters. Number below 10 is not recommended."
188
  msgstr ""
189
 
190
+ #: admin/main-view.php:97
191
+ #, fuzzy
192
+ msgid "Tell the world you're using Contextual Related Posts:"
193
+ msgstr "Related Posts (Lignende indlæg)"
194
+
195
+ #: admin/main-view.php:99
196
+ msgid " <em>Optional</em>"
197
  msgstr ""
198
 
199
+ #: admin/main-view.php:100
200
+ #, fuzzy
201
  msgid ""
202
+ "Adds a nofollow link to Contextual Related Posts homepage as the last time "
203
+ "in the list."
204
+ msgstr "Related Posts (Lignende indlæg)"
205
 
206
+ #: admin/main-view.php:118 admin/main-view.php:222 admin/main-view.php:426
207
+ #: admin/main-view.php:573 admin/main-view.php:645 admin/main-view.php:709
208
+ #, fuzzy
209
+ msgid "Save Options"
210
+ msgstr "Indstillinger:"
211
 
212
+ #: admin/main-view.php:141 admin/main-view.php:598
213
+ msgid "Number of related posts to display: "
214
+ msgstr "Antal Lignende indlæg, der skal vises: "
215
+
216
+ #: admin/main-view.php:144
217
  msgid ""
218
  "Maximum number of posts that will be displayed. The actual number may be "
219
  "smaller if less related posts are found."
220
  msgstr ""
221
 
222
+ #: admin/main-view.php:148
223
  msgid "Related posts should be newer than:"
224
  msgstr ""
225
 
226
+ #: admin/main-view.php:150
227
  msgid "days"
228
  msgstr ""
229
 
230
+ #: admin/main-view.php:151
231
  msgid ""
232
  "This sets the cutoff period for which posts will be displayed. e.g. setting "
233
+ "it to 365 will show related posts from the last year only. Set it to 0 to "
234
+ "disable limiting posts."
 
 
 
 
 
 
 
 
235
  msgstr ""
236
 
237
+ #: admin/main-view.php:155
238
  msgid "Find related posts based on content as well as title:"
239
  msgstr ""
240
 
241
+ #: admin/main-view.php:157
242
  #, fuzzy
243
  msgid ""
244
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
248
  "kun indlæggenes titler (jeg anbefaler et cache-plugin, hvis du aktiverer "
249
  "dette)"
250
 
251
+ #: admin/main-view.php:161
252
  msgid "Limit content to be compared"
253
  msgstr ""
254
 
255
+ #: admin/main-view.php:163
256
  msgid ""
257
  "This sets the maximum words of the content that will be matched. 0 means no "
258
  "limit."
259
  msgstr ""
260
 
261
+ #: admin/main-view.php:167
262
+ msgid "Post types to include in results:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
263
  msgstr ""
264
 
265
+ #: admin/main-view.php:178
 
266
  msgid ""
267
+ "These post types will be displayed in the list. Includes custom post types."
 
 
268
  msgstr ""
 
 
 
 
269
 
270
+ #: admin/main-view.php:182
271
+ msgid "List of post or page IDs to exclude from the results:"
272
  msgstr ""
273
 
274
+ #: admin/main-view.php:184 admin/main-view.php:355
275
  msgid ""
276
+ "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
 
277
  msgstr ""
278
 
279
+ #: admin/main-view.php:188
280
+ msgid "Categories to exclude from the results: "
 
 
 
 
 
281
  msgstr ""
282
 
283
+ #: admin/main-view.php:204
 
284
  msgid ""
285
+ "Comma separated list of category slugs. The field above has an autocomplete "
286
+ "so simply start typing in the beginning of your category name and it will "
287
+ "prompt you with options."
288
+ msgstr ""
289
 
290
+ #: admin/main-view.php:245
291
  msgid "Title of related posts: "
292
  msgstr "Titel på Lignende indlæg: "
293
 
294
+ #: admin/main-view.php:248
295
  msgid ""
296
  "This is the main heading of the related posts. You can also display the "
297
  "current post title by using <code>%postname%</code>. e.g. <code>Related "
298
  "Posts to %postname%</code>"
299
  msgstr ""
300
 
301
+ #: admin/main-view.php:252
302
  msgid "When there are no posts, what should be shown?"
303
  msgstr "Hvad skal der vises, hvis der ingen indlæg er?"
304
 
305
+ #: admin/main-view.php:256
306
  msgid "Blank Output"
307
  msgstr "Intet"
308
 
309
+ #: admin/main-view.php:260
310
  msgid "Display:"
311
  msgstr ""
312
 
313
+ #: admin/main-view.php:265 admin/main-view.php:601
314
+ msgid "Show post excerpt in list?"
315
+ msgstr ""
316
+
317
+ #: admin/main-view.php:268
318
  #, php-format
319
  msgid ""
320
  "Displays the excerpt of the post. If you do not provide an explicit excerpt "
322
  "automatic excerpt which refers to the first %d words of the post's content"
323
  msgstr ""
324
 
325
+ #: admin/main-view.php:271
326
+ msgid ""
327
+ "Default style selected under the Custom Styles. Excerpt display is disabled."
328
+ msgstr ""
329
+
330
+ #: admin/main-view.php:276
331
  msgid "Length of excerpt (in words): "
332
  msgstr ""
333
 
334
+ #: admin/main-view.php:282
335
  msgid "Show post author in list?"
336
  msgstr ""
337
 
338
+ #: admin/main-view.php:285
339
  msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
340
  msgstr ""
341
 
342
+ #: admin/main-view.php:288
343
+ msgid ""
344
+ "Default style selected under the Custom Styles. Author display is disabled."
345
+ msgstr ""
346
+
347
+ #: admin/main-view.php:293
348
  msgid "Show post date in list?"
349
  msgstr ""
350
 
351
+ #: admin/main-view.php:296
352
  msgid ""
353
  "Displays the date of the post. Uses the same date format set in General "
354
  "Options"
355
  msgstr ""
356
 
357
+ #: admin/main-view.php:299
358
+ msgid ""
359
+ "Default style selected under the Custom Styles. Date display is disabled."
360
+ msgstr ""
361
+
362
+ #: admin/main-view.php:304
363
  msgid "Limit post title length (in characters)"
364
  msgstr ""
365
 
366
+ #: admin/main-view.php:307
367
  msgid ""
368
  "Any title longer than the number of characters set above will be cut and "
369
  "appended with a &helip;"
370
  msgstr ""
371
 
372
+ #: admin/main-view.php:311
373
  msgid "Open links in new window"
374
  msgstr ""
375
 
376
+ #: admin/main-view.php:317
377
  msgid "Add nofollow attribute to links in the list"
378
  msgstr ""
379
 
380
+ #: admin/main-view.php:350
381
  msgid "Exclusion settings:"
382
  msgstr ""
383
 
384
+ #: admin/main-view.php:352
 
 
 
 
 
 
 
 
 
385
  #, fuzzy
386
  msgid "Exclude display of related posts on these posts / pages"
387
  msgstr "Tilføj Lignende indlæg til feeds"
388
 
389
+ #: admin/main-view.php:358
 
 
 
 
 
 
 
 
 
 
 
390
  #, fuzzy
391
  msgid "Exclude display of related posts on these post types."
392
  msgstr "Tilføj Lignende indlæg til feeds"
393
 
394
+ #: admin/main-view.php:367
395
  msgid ""
396
  "The related posts will not display on any of the above selected post types"
397
  msgstr ""
398
 
399
+ #: admin/main-view.php:397
400
  msgid "Customize the output:"
401
  msgstr "Tilpas outputtet:"
402
 
403
+ #: admin/main-view.php:399
404
  msgid "HTML to display before the list of posts: "
405
  msgstr "HTML, der skal vises før listen med indlæg: "
406
 
407
+ #: admin/main-view.php:402
408
  msgid "HTML to display before each list item: "
409
  msgstr "HTML, der skal vises før hvert punkt på listen: "
410
 
411
+ #: admin/main-view.php:405
412
  msgid "HTML to display after each list item: "
413
  msgstr "HTML, der skal vises efter hvert punkt på listen: "
414
 
415
+ #: admin/main-view.php:408
416
  msgid "HTML to display after the list of posts: "
417
  msgstr "HTML, der skal vises efter listen med indlæg: "
418
 
419
+ #: admin/main-view.php:449 admin/main-view.php:604
420
+ msgid "Location of post thumbnail:"
 
 
 
 
 
421
  msgstr ""
422
 
423
+ #: admin/main-view.php:453 admin/main-view.php:608
424
+ #, fuzzy
425
+ msgid "Display thumbnails inline with posts, before title"
426
+ msgstr "Vis miniaturer inline med indlæg"
427
+
428
+ #: admin/main-view.php:457 admin/main-view.php:612
429
+ #, fuzzy
430
+ msgid "Display thumbnails inline with posts, after title"
431
+ msgstr "Vis miniaturer inline med indlæg"
432
+
433
+ #: admin/main-view.php:461 admin/main-view.php:616
434
+ msgid "Display only thumbnails, no text"
435
+ msgstr "Vis kun miniaturer, ingen tekst"
436
+
437
+ #: admin/main-view.php:465 admin/main-view.php:620
438
+ msgid "Do not display thumbnails, only text."
439
+ msgstr "Vis ikke miniaturer, kun tekst."
440
+
441
+ #: admin/main-view.php:468
442
  msgid ""
443
+ "Default style selected under the Custom Styles. Location of thumbnail forced "
444
+ "to be inline before title"
445
  msgstr ""
446
 
447
+ #: admin/main-view.php:472
448
+ msgid "Thumbnail size:"
 
 
 
449
  msgstr ""
450
 
451
+ #: admin/main-view.php:496
452
+ msgid "Custom size"
453
  msgstr ""
454
 
455
+ #: admin/main-view.php:499
456
  msgid ""
457
+ "You can choose from existing image sizes above or create a custom size. If "
458
+ "you have chosen Custom size above, then enter the width, height and crop "
459
+ "settings below. For best results, use a cropped image."
460
  msgstr ""
461
 
462
+ #: admin/main-view.php:500
463
+ msgid ""
464
+ "If you change the width, height or crop mode below, existing images will not "
465
+ "be automatically resized."
466
  msgstr ""
467
 
468
+ #: admin/main-view.php:501
469
+ #, php-format
470
  msgid ""
471
+ "I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
472
+ "a> or <a href='%s' class='thickbox'>Regenerate Thumbnails</a> to regenerate "
473
+ "all image sizes."
474
  msgstr ""
475
 
476
+ #: admin/main-view.php:505
477
+ msgid "Width of the thumbnail:"
 
478
  msgstr ""
479
 
480
+ #: admin/main-view.php:508
481
+ msgid "Height of the thumbnail: "
482
  msgstr ""
483
 
484
+ #: admin/main-view.php:513
485
+ msgid "Crop mode:"
486
  msgstr ""
487
 
488
+ #: admin/main-view.php:517
489
+ msgid ""
490
+ "By default, thumbnails will be hard cropped. Uncheck this box to "
491
+ "proportionately/soft crop the thumbnails."
492
  msgstr ""
493
 
494
+ #: admin/main-view.php:518
495
+ #, php-format
496
+ msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
497
  msgstr ""
498
 
499
+ #: admin/main-view.php:521
500
  msgid ""
501
+ "Default style selected under the Custom Styles. Thumbnail width and height "
502
+ "is fixed at 150px and crop mode is enabled."
503
  msgstr ""
504
 
505
+ #: admin/main-view.php:525
506
+ msgid "Style attributes / Width and Height HTML attributes:"
507
  msgstr ""
508
 
509
+ #: admin/main-view.php:529
510
+ msgid "Style attributes are used for width and height."
511
+ msgstr ""
512
+
513
+ #: admin/main-view.php:533
514
+ msgid "HTML width and height attributes are used for width and height."
515
  msgstr ""
516
 
517
+ #: admin/main-view.php:537
518
  #, fuzzy
519
  msgid "Post thumbnail meta field name:"
520
  msgstr "Indstillinger for indlægsminiaturer:"
521
 
522
+ #: admin/main-view.php:539
523
  msgid ""
524
  "The value of this field should contain the image source and is set in the "
525
  "<em>Add New Post</em> screen"
526
  msgstr ""
527
 
528
+ #: admin/main-view.php:542
529
  msgid "Extract the first image from the post?"
530
  msgstr ""
531
 
532
+ #: admin/main-view.php:544
533
  msgid ""
534
  "This will only happen if there is no post thumbnail set and no image URL is "
535
  "specified in the meta field."
536
  msgstr ""
537
 
538
+ #: admin/main-view.php:547
539
  msgid "Use default thumbnail?"
540
  msgstr ""
541
 
542
+ #: admin/main-view.php:549
543
  msgid ""
544
  "If checked, when no thumbnail is found, show a default one from the URL "
545
  "below. If not checked and no thumbnail is found, no image will be shown."
546
  msgstr ""
547
 
548
+ #: admin/main-view.php:552
549
  #, fuzzy
550
  msgid "Default thumbnail:"
551
  msgstr "Indstillinger for output:"
552
 
553
+ #: admin/main-view.php:555
554
  #, fuzzy
555
  msgid ""
556
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
561
  "indlægget ikke gør det, tjekker pluginnet metafeltet. Hvis dette ikke "
562
  "findes, vil det vise standardbilledet specificeret nedenfor:"
563
 
564
+ #: admin/main-view.php:596
565
+ msgid ""
566
+ "Below options override the related posts settings for your blog feed. These "
567
+ "only apply if you have selected to add related posts to Feeds in the General "
568
+ "Options tab."
569
+ msgstr ""
570
+
571
+ #: admin/main-view.php:624
572
+ msgid "Maximum width of the thumbnail: "
573
+ msgstr ""
574
+
575
+ #: admin/main-view.php:627
576
+ msgid "Maximum height of the thumbnail: "
577
+ msgstr ""
578
+
579
+ #: admin/main-view.php:668
580
+ msgid "Use default style included in the plugin?"
581
+ msgstr ""
582
+
583
+ #: admin/main-view.php:671
584
+ msgid ""
585
+ "Contextual Related Posts includes a default style that makes your popular "
586
+ "posts list to look beautiful. Check the box above if you want to use this."
587
+ msgstr ""
588
+
589
+ #: admin/main-view.php:672
590
+ msgid ""
591
+ "Enabling this option will turn on the thumbnails and set their width and "
592
+ "height to 150px. It will also turn off the display of the author, excerpt "
593
+ "and date if already enabled. Disabling this option will not revert any "
594
+ "settings."
595
+ msgstr ""
596
+
597
+ #: admin/main-view.php:673
598
+ #, php-format
599
+ msgid ""
600
+ "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
601
+ msgstr ""
602
+
603
+ #: admin/main-view.php:676
604
+ msgid "Custom CSS to add to header:"
605
+ msgstr ""
606
+
607
+ #: admin/main-view.php:680
608
+ msgid ""
609
+ "Do not include <code>style</code> tags. Check out the <a href=\"http://"
610
+ "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
611
+ "\">FAQ</a> for available CSS classes to style."
612
+ msgstr ""
613
+
614
+ #: admin/main-view.php:710
615
+ #, fuzzy
616
+ msgid "Default Options"
617
+ msgstr "Indstillinger for output:"
618
+
619
+ #: admin/main-view.php:710
620
+ msgid "Do you want to set options to Default?"
621
+ msgstr "Ønsker du at sætte indstillingerne til standardværdierne?"
622
+
623
+ #: admin/main-view.php:711
624
+ msgid "Recreate Index"
625
+ msgstr ""
626
+
627
+ #: admin/main-view.php:711
628
+ msgid "Are you sure you want to recreate the index?"
629
+ msgstr "Er du sikker på, du ønsker at gendanne indekset?"
630
+
631
  #: admin/sidebar-view.php:20
632
  #, fuzzy
633
  msgid "Support the development"
650
  msgid "Follow me"
651
  msgstr ""
652
 
653
+ #: admin/sidebar-view.php:53
654
  msgid "Quick links"
655
  msgstr ""
656
 
657
+ #: admin/sidebar-view.php:57
658
  #, fuzzy
659
  msgid "Contextual Related Posts plugin page"
660
  msgstr "Related Posts (Lignende indlæg)"
661
 
662
+ #: admin/sidebar-view.php:58
663
  msgid "FAQ"
664
  msgstr ""
665
 
666
+ #: admin/sidebar-view.php:60
667
  msgid "Reviews"
668
  msgstr ""
669
 
670
+ #: admin/sidebar-view.php:61
671
  msgid "Github repository"
672
  msgstr ""
673
 
674
+ #: admin/sidebar-view.php:62
675
  msgid "Other plugins"
676
  msgstr ""
677
 
678
+ #: admin/sidebar-view.php:63
679
  msgid "Ajay's blog"
680
  msgstr ""
681
 
682
+ #: contextual-related-posts.php:250
683
  msgid " by "
684
  msgstr ""
685
 
686
+ #: contextual-related-posts.php:289
687
  #, php-format
688
  msgid "Powered by <a href=\"%s\" rel=\"nofollow\">Contextual Related Posts</a>"
689
  msgstr ""
690
 
691
+ #: contextual-related-posts.php:670
692
  #, fuzzy
693
  msgid "Related Posts [CRP]"
694
  msgstr "Related Posts (Lignende indlæg)"
695
 
696
+ #: contextual-related-posts.php:671
697
  #, fuzzy
698
  msgid "Display Related Posts"
699
  msgstr "Vis \"Ingen lignende indlæg\""
700
 
701
+ #: contextual-related-posts.php:694
702
  msgid "Title"
703
  msgstr ""
704
 
705
+ #: contextual-related-posts.php:699
706
  msgid "No. of posts"
707
  msgstr ""
708
 
709
+ #: contextual-related-posts.php:704
710
  msgid " Show excerpt?"
711
  msgstr ""
712
 
713
+ #: contextual-related-posts.php:709
714
  msgid " Show author?"
715
  msgstr ""
716
 
717
+ #: contextual-related-posts.php:714
718
  msgid " Show date?"
719
  msgstr ""
720
 
721
+ #: contextual-related-posts.php:720
 
 
 
 
 
722
  #, fuzzy
723
  msgid "Thumbnails inline, before title"
724
  msgstr "Vis miniaturer inline med indlæg"
725
 
726
+ #: contextual-related-posts.php:721
727
  #, fuzzy
728
  msgid "Thumbnails inline, after title"
729
  msgstr "Vis miniaturer inline med indlæg"
730
 
731
+ #: contextual-related-posts.php:722
732
  #, fuzzy
733
  msgid "Only thumbnails, no text"
734
  msgstr "Vis kun miniaturer, ingen tekst"
735
 
736
+ #: contextual-related-posts.php:723
737
  #, fuzzy
738
  msgid "No thumbnails, only text."
739
  msgstr "Vis ikke miniaturer, kun tekst."
740
 
741
+ #: contextual-related-posts.php:728
742
  #, fuzzy
743
  msgid "Thumbnail height"
744
  msgstr "Indstillinger for indlægsminiaturer:"
745
 
746
+ #: contextual-related-posts.php:733
747
  #, fuzzy
748
  msgid "Thumbnail width"
749
  msgstr "Indstillinger for indlægsminiaturer:"
750
 
751
+ #: contextual-related-posts.php:897
752
  msgid "<h3>Related Posts:</h3>"
753
  msgstr "<h3>Lignende indlæg:</h3>"
754
 
755
+ #: contextual-related-posts.php:899
756
  #, fuzzy
757
  msgid "No related posts found"
758
  msgstr "Ingen lignende indlæg fundet"
759
 
760
+ #: contextual-related-posts.php:1211
761
+ msgid "thumb_timthumb argument has been deprecated"
762
+ msgstr ""
763
+
764
+ #: contextual-related-posts.php:1215
765
+ msgid "thumb_timthumb_q argument has been deprecated"
766
+ msgstr ""
767
+
768
+ #: contextual-related-posts.php:1219
769
+ msgid "filter argument has been deprecated"
770
+ msgstr ""
771
+
772
+ #~ msgid "Post thumbnail options:"
773
+ #~ msgstr "Indstillinger for indlægsminiaturer:"
774
+
775
  #~ msgid "Display \"No Related Posts\""
776
  #~ msgstr "Vis \"Ingen lignende indlæg\""
777
 
languages/crp-de_DE.mo CHANGED
Binary file
languages/crp-de_DE.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-09-04 20:42-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
@@ -12,51 +12,58 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e;_c;__ngettext\n"
14
  "X-Poedit-Basepath: ../\n"
15
- "X-Generator: Poedit 1.6.9\n"
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: admin/admin.php:161
20
  msgid "Options saved successfully."
21
  msgstr "Optionen erfolgreich gespeichert."
22
 
23
- #: admin/admin.php:181
 
 
 
 
 
 
24
  msgid "Options set to Default."
25
  msgstr "Optionen auf die Voreinstellungen gesetzt."
26
 
27
- #: admin/admin.php:192
28
  msgid "Index recreated"
29
  msgstr "Index neu aufgebaut"
30
 
31
- #: admin/admin.php:209 admin/admin.php:419 admin/main-view.php:20
32
  msgid "Contextual Related Posts"
33
  msgstr "Contextual Related Posts"
34
 
35
- #: admin/admin.php:210
36
  msgid "Related Posts"
37
  msgstr "Ähnliche Beiträge"
38
 
39
- #: admin/admin.php:321
40
  msgid "Settings"
41
  msgstr "Einstellungen"
42
 
43
- #: admin/admin.php:343 admin/sidebar-view.php:58
44
  msgid "Support"
45
  msgstr "Support"
46
 
47
- #: admin/admin.php:344
48
  msgid "Donate"
49
  msgstr "Spende"
50
 
51
- #: admin/admin.php:345
52
  msgid "Contribute"
53
  msgstr ""
54
 
55
- #: admin/admin.php:361
56
  msgid "plugin settings page"
57
  msgstr "Einstellungen des Plugins"
58
 
59
- #: admin/admin.php:395
60
  msgid ""
61
  "An error occurred clearing the cache. Please contact your site administrator."
62
  "\\n\\nError message:\\n"
@@ -64,160 +71,149 @@ msgstr ""
64
  "Ein Fehler trat beim Löschen des Caches auf. Bitte kontaktiere den "
65
  "Administrator der Seite.\\n\\nError message:\\n"
66
 
67
- #: admin/admin.php:400
68
  msgid " cached row(s) cleared"
69
  msgstr "Die Reihe(n) im Cache wurde(n) gelöscht"
70
 
71
- #: admin/admin.php:446
72
  #, fuzzy
73
  msgid "Location of thumbnail:"
74
  msgstr "Ort der Beitragsvorschaubilder"
75
 
76
- #: admin/admin.php:448
77
  msgid ""
78
  "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
79
  "image will be used for the post. It will be resized to the thumbnail size "
80
  "set under Settings &raquo; Related Posts &raquo; Output Options"
81
  msgstr ""
82
 
83
- #: admin/admin.php:449
84
  msgid "The URL above is saved in the meta field: "
85
  msgstr ""
86
 
87
- #: admin/main-view.php:32 admin/main-view.php:51
88
  msgid "General options"
89
  msgstr "Allgemeine Optionen"
90
 
91
- #: admin/main-view.php:33 admin/main-view.php:60
 
 
 
 
92
  msgid "Output options"
93
  msgstr "Ausgabe Einstellungen"
94
 
95
- #: admin/main-view.php:34 admin/main-view.php:69
 
 
 
 
 
96
  msgid "Feed options"
97
  msgstr "Feed Einstellungen"
98
 
99
- #: admin/main-view.php:35 admin/main-view.php:77
100
  #, fuzzy
101
  msgid "Custom styles"
102
  msgstr "Eigenes CSS"
103
 
104
- #: admin/main-view.php:95
105
- msgid "Save Options"
106
- msgstr "Optionen speichern"
107
-
108
- #: admin/main-view.php:96
109
- msgid "Default Options"
110
- msgstr "Standardoptionen"
111
-
112
- #: admin/main-view.php:96
113
- msgid "Do you want to set options to Default?"
114
- msgstr "Möchtest du Einstellungen zurücksetzen?"
115
-
116
- #: admin/main-view.php:97
117
- msgid "Recreate Index"
118
- msgstr "Erstelle den Index neu"
119
-
120
- #: admin/main-view.php:97
121
- msgid "Are you sure you want to recreate the index?"
122
- msgstr "Bist du sicher, den Index neu zu erstellen?"
123
-
124
- #: admin/options-custom-styles.php:32
125
- msgid "Use default style included in the plugin?"
126
- msgstr ""
127
 
128
- #: admin/options-custom-styles.php:35
129
  msgid ""
130
- "Contextual Related Posts includes a default style that makes your popular "
131
- "posts list to look beautiful. Check the box above if you want to use this."
132
  msgstr ""
 
 
 
133
 
134
- #: admin/options-custom-styles.php:36
135
- msgid ""
136
- "Enabling this option will turn on the thumbnails and set their width and "
137
- "height to 150px. It will also turn off the display of the author, excerpt "
138
- "and date if already enabled. Disabling this option will not revert any "
139
- "settings."
140
- msgstr ""
141
 
142
- #: admin/options-custom-styles.php:39
143
- msgid "Custom CSS to add to header:"
144
- msgstr "Eigenes CSS, das im Header-Bereich hinzugefügt werden soll:"
145
 
146
- #: admin/options-custom-styles.php:43
147
- msgid ""
148
- "Do not include <code>style</code> tags. Check out the <a href=\"http://"
149
- "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
150
- "\">FAQ</a> for available CSS classes to style."
151
- msgstr ""
152
- "Benutze nicht den <code>style</code> Tag. Siehe dir die <a href=\"http://"
153
- "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
154
- "\">FAQ</a> (en) für benutzbare CSS Klassen an."
155
 
156
- #: admin/options-feed.php:32
157
- msgid ""
158
- "Below options override the related posts settings for your blog feed. These "
159
- "only apply if you have selected to add related posts to Feeds in the General "
160
- "Options tab."
161
- msgstr ""
162
- "Die Optionen unterhalb überschreiben die Einstellung der ähnlichen Beiträge "
163
- "für den Feed deines Blogs. Diese werden nur übernommen, wenn du bei den "
164
- "allgemeinen Einstellungen ausgewählt hast, dass ähnliche Beiträge auch in "
165
- "den Feeds angezeigt werden sollen. "
166
 
167
- #: admin/options-feed.php:34 admin/options-genops.php:39
168
- msgid "Number of related posts to display: "
169
- msgstr "Anzahl der ähnlichen Beiträge, die angezeigt werden sollen:"
170
 
171
- #: admin/options-feed.php:37 admin/options-output.php:52
172
- msgid "Show post excerpt in list?"
173
- msgstr "Soll ein Auszug in der Liste angezeigt werden?"
174
 
175
- #: admin/options-feed.php:40 admin/options-output.php:239
176
- msgid "Location of post thumbnail:"
177
- msgstr "Ort der Beitragsvorschaubilder"
178
 
179
- #: admin/options-feed.php:44 admin/options-output.php:243
180
- msgid "Display thumbnails inline with posts, before title"
181
- msgstr "Zeige die Vorschaubilder inline mit den Beiträgen an; vor dem Titel"
182
 
183
- #: admin/options-feed.php:48 admin/options-output.php:247
184
- msgid "Display thumbnails inline with posts, after title"
185
- msgstr "Zeige die Vorschaubilder inline mit den Beiträgen an; nach dem Titel"
186
 
187
- #: admin/options-feed.php:52 admin/options-output.php:251
188
- msgid "Display only thumbnails, no text"
189
- msgstr "Zeige nur die Vorschaubilder an; keinen Text"
 
 
 
 
 
 
 
190
 
191
- #: admin/options-feed.php:56 admin/options-output.php:255
192
- msgid "Do not display thumbnails, only text."
193
- msgstr "Zeige keine Vorschaubilder an; nur Text"
194
 
195
- #: admin/options-feed.php:60
196
- msgid "Maximum width of the thumbnail: "
197
- msgstr "Maximale Breite der Vorschaubilder:"
 
 
198
 
199
- #: admin/options-feed.php:63 admin/options-output.php:270
200
- msgid "Maximum height of the thumbnail: "
201
- msgstr "Maximale Höhe der Vorschaubilder:"
 
202
 
203
- #: admin/options-genops.php:32
204
- msgid "Cache output?"
205
- msgstr "Cache Ausgabe?"
206
 
207
- #: admin/options-genops.php:34
 
208
  msgid ""
209
- "Enabling this option will cache the related posts output when the post is "
210
- "visited the first time. The cache is cleaned when you save this page."
211
  msgstr ""
212
- "Mit dieser Option werden die Berechnung der ähnlichen Beiträge im Cache "
213
- "gespeichert, sobald ein Beitrag das erste Mal aufgerufen wird. Der Cache "
214
- "wird geleert, wenn diese Seite gespeichert wird."
215
 
216
- #: admin/options-genops.php:35
217
- msgid "Clear cache"
218
- msgstr "Lösche den Cache"
 
 
 
 
 
219
 
220
- #: admin/options-genops.php:42
221
  msgid ""
222
  "Maximum number of posts that will be displayed. The actual number may be "
223
  "smaller if less related posts are found."
@@ -225,42 +221,28 @@ msgstr ""
225
  "Maximale Anzahl an ähnlichen Beiträgen, die angezeigt werden soll. Diese "
226
  "kann auch geringer sein, wenn weniger ähnliche Beiträge gefunden werden."
227
 
228
- #: admin/options-genops.php:46
229
  msgid "Related posts should be newer than:"
230
  msgstr "Ähnliche Beiträge sollen neuer sein als:"
231
 
232
- #: admin/options-genops.php:48
233
  msgid "days"
234
  msgstr "Tage"
235
 
236
- #: admin/options-genops.php:49
237
  msgid ""
238
  "This sets the cutoff period for which posts will be displayed. e.g. setting "
239
- "it to 365 will show related posts from the last year only."
 
240
  msgstr ""
241
- "Hier den Zeitraum eintragen, aus dem die ähnlichen Beiträge berechnet "
242
- "werden. Zum Beispiel 365 eintragen, damit nur Beiträge aus dem letzten Jahr "
243
- "angezeigt werden."
244
 
245
- #: admin/options-genops.php:53
246
- #, fuzzy
247
- msgid "Post types to include in results:"
248
- msgstr "Beitragsarten, die einbezogen werden sollen."
249
-
250
- #: admin/options-genops.php:64
251
- msgid ""
252
- "These post types will be displayed in the list. Includes custom post types."
253
- msgstr ""
254
- "Diese Beitragsarten werden in der Liste angezeigt. Einschließlich "
255
- "benutzerdefinierter Beitragsarten (custom post types)."
256
-
257
- #: admin/options-genops.php:68
258
  #, fuzzy
259
  msgid "Find related posts based on content as well as title:"
260
  msgstr ""
261
  "Finde ähnliche Beiträge basierend auf dem Inhalt als auch auf dem Titel"
262
 
263
- #: admin/options-genops.php:70
264
  msgid ""
265
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
266
  "or enabling \"Cache output\" above if you enable this."
@@ -269,11 +251,11 @@ msgstr ""
269
  "empfehle ein Caching Plugin oder das Anschalten der Cache Ausgabe, wenn "
270
  "diese Einstellung ausgewählt ist."
271
 
272
- #: admin/options-genops.php:74
273
  msgid "Limit content to be compared"
274
  msgstr "Begrenze den Inhalt, der verglichen werden soll"
275
 
276
- #: admin/options-genops.php:76
277
  msgid ""
278
  "This sets the maximum words of the content that will be matched. 0 means no "
279
  "limit."
@@ -281,81 +263,52 @@ msgstr ""
281
  "Dies setzt die maximale Anzahl an Worten aus dem Inhalt, die benutzt wird. 0 "
282
  "bedeutet keine Begrenzung."
283
 
284
- #: admin/options-genops.php:80
285
- msgid "Add related posts to:"
286
- msgstr "Füge ähnliche Beiträge hinzu:"
287
-
288
- #: admin/options-genops.php:82
289
- msgid "Posts"
290
- msgstr "Beiträge"
291
-
292
- #: admin/options-genops.php:83
293
- msgid "Pages"
294
- msgstr "Seiten"
295
-
296
- #: admin/options-genops.php:84
297
- msgid "Home page"
298
- msgstr "Homepage"
299
-
300
- #: admin/options-genops.php:85
301
- msgid "Feeds"
302
- msgstr "Feeds"
303
-
304
- #: admin/options-genops.php:86
305
- msgid "Category archives"
306
- msgstr "Kategorie Archive"
307
-
308
- #: admin/options-genops.php:87
309
- msgid "Tag archives"
310
- msgstr "Schlagwort Archive"
311
-
312
- #: admin/options-genops.php:88
313
- msgid "Other archives"
314
- msgstr "Andere Archive"
315
-
316
- #: admin/options-genops.php:89
317
  #, fuzzy
 
 
 
 
318
  msgid ""
319
- "If you choose to disable this, please add <code>&lt;?php if "
320
- "( function_exists( 'echo_ald_crp' ) ) echo_ald_crp(); ?&gt;</code> to your "
321
- "template file where you want it displayed"
322
  msgstr ""
323
- "Wenn du diese Option deaktivierst, füge bitte <code>&lt;?php "
324
- "if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> zu deinen "
325
- "Theme-Templates, wo die ähnlichen Beiträge angezeigt werden sollen"
326
 
327
- #: admin/options-genops.php:93
328
- msgid "Content filter priority:"
 
329
  msgstr ""
 
 
330
 
331
- #: admin/options-genops.php:96
332
  msgid ""
333
- "A higher number will cause the content above to be processed after other "
334
- "filters. Number below 10 is not recommended."
335
  msgstr ""
 
 
336
 
337
- #: admin/options-genops.php:100
338
- #, fuzzy
339
- msgid "Tell the world you're using Contextual Related Posts:"
340
- msgstr "Contextual Related Posts"
341
-
342
- #: admin/options-genops.php:102
343
- msgid " <em>Optional</em>"
344
- msgstr "<em>Optional</em>"
345
 
346
- #: admin/options-genops.php:103
347
  #, fuzzy
348
  msgid ""
349
- "Adds a nofollow link to Contextual Related Posts homepage as the last time "
350
- "in the list."
 
351
  msgstr ""
352
- "Fügt einen nofollow Link zu Homepage von Contextual Related Posts hinzu."
 
 
353
 
354
- #: admin/options-output.php:32
355
  msgid "Title of related posts: "
356
  msgstr "Überschrift der ähnlichen Beiträge:"
357
 
358
- #: admin/options-output.php:35
359
  msgid ""
360
  "This is the main heading of the related posts. You can also display the "
361
  "current post title by using <code>%postname%</code>. e.g. <code>Related "
@@ -365,20 +318,24 @@ msgstr ""
365
  "aktuellen Beitragstitel anzeigen lassen mit <code>%postname%</code>. "
366
  "Beispielsweise: <code>Ähnliche Beiträge zu %postname%</code>"
367
 
368
- #: admin/options-output.php:39
369
  msgid "When there are no posts, what should be shown?"
370
  msgstr ""
371
  "Wenn keine ähnlichen Beiträge gefunden wurden, was soll angezeigt werden?"
372
 
373
- #: admin/options-output.php:43
374
  msgid "Blank Output"
375
  msgstr "Gar nichts"
376
 
377
- #: admin/options-output.php:47
378
  msgid "Display:"
379
  msgstr "Zeige an:"
380
 
381
- #: admin/options-output.php:55
 
 
 
 
382
  #, php-format
383
  msgid ""
384
  "Displays the excerpt of the post. If you do not provide an explicit excerpt "
@@ -386,92 +343,78 @@ msgid ""
386
  "automatic excerpt which refers to the first %d words of the post's content"
387
  msgstr ""
388
 
389
- #: admin/options-output.php:59
 
 
 
 
 
390
  msgid "Length of excerpt (in words): "
391
  msgstr "Länge des Auszugs (in Worten):"
392
 
393
- #: admin/options-output.php:65
394
  msgid "Show post author in list?"
395
  msgstr "Zeige den Autor des Beitrags an in der Liste?"
396
 
397
- #: admin/options-output.php:68
398
  msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
399
  msgstr ""
400
 
401
- #: admin/options-output.php:72
 
 
 
 
 
402
  msgid "Show post date in list?"
403
  msgstr "Zeige das Datum des Beitrags in der Liste an?"
404
 
405
- #: admin/options-output.php:75
406
  msgid ""
407
  "Displays the date of the post. Uses the same date format set in General "
408
  "Options"
409
  msgstr ""
410
 
411
- #: admin/options-output.php:79
 
 
 
 
 
412
  msgid "Limit post title length (in characters)"
413
  msgstr "Begrenze den Titel des Beitrags (in Zeichen)"
414
 
415
- #: admin/options-output.php:82
416
  msgid ""
417
  "Any title longer than the number of characters set above will be cut and "
418
  "appended with a &helip;"
419
  msgstr ""
420
 
421
- #: admin/options-output.php:86
422
  msgid "Open links in new window"
423
  msgstr "Öffne die Links in einem neuen Fenster"
424
 
425
- #: admin/options-output.php:92
426
  msgid "Add nofollow attribute to links in the list"
427
  msgstr "Füge nofollow zu den Links aus der Liste hinzu"
428
 
429
- #: admin/options-output.php:125
430
  #, fuzzy
431
  msgid "Exclusion settings:"
432
  msgstr "Einstellungen des Plugins"
433
 
434
- #: admin/options-output.php:127
435
- #, fuzzy
436
- msgid "List of post or page IDs to exclude from the results:"
437
- msgstr ""
438
- "Liste deine Beitrags- oder Seiten-IDs auf, die aus den Ergebnissen "
439
- "ausgeschlossen werden sollen:"
440
-
441
- #: admin/options-output.php:129 admin/options-output.php:135
442
- msgid ""
443
- "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
444
- msgstr ""
445
- "Mit Komma getrennte Liste der IDs von Beiträgen, Seiten oder "
446
- "benutzerdefinierter Beitragsarten (custom post types). Beispiel: 188,320,500"
447
-
448
- #: admin/options-output.php:132
449
  msgid "Exclude display of related posts on these posts / pages"
450
  msgstr ""
451
  "Schließe auf diesen Beiträgen / Seiten die Anzeige der ähnliche Beiträge aus"
452
 
453
- #: admin/options-output.php:138
454
- msgid "Categories to exclude from the results: "
455
- msgstr "Kategorien, die von den Ergebnissen ausgeschlossen werden sollen:"
456
-
457
- #: admin/options-output.php:154
458
- #, fuzzy
459
- msgid ""
460
- "Comma separated list of category slugs. The field above has an autocomplete "
461
- "so simply start typing in the beginning of your category name and it will "
462
- "prompt you with options."
463
- msgstr ""
464
- "Mit Komma getrennte Liste der Kategorie Slugs. Das obige Feld benutzt "
465
- "Autovervollständigung, beginne einfach zu tippen und du bekommst Kategorien "
466
- "vorgeschlagen."
467
-
468
- #: admin/options-output.php:157
469
  #, fuzzy
470
  msgid "Exclude display of related posts on these post types."
471
  msgstr ""
472
  "Schließe auf diesen Beiträgen / Seiten die Anzeige der ähnliche Beiträge aus"
473
 
474
- #: admin/options-output.php:166
475
  #, fuzzy
476
  msgid ""
477
  "The related posts will not display on any of the above selected post types"
@@ -479,123 +422,131 @@ msgstr ""
479
  "Diese Beitragsarten werden in der Liste angezeigt. Einschließlich "
480
  "benutzerdefinierter Beitragsarten (custom post types)."
481
 
482
- #: admin/options-output.php:196
483
  msgid "Customize the output:"
484
  msgstr "Passe die Ausgabe an:"
485
 
486
- #: admin/options-output.php:198
487
  msgid "HTML to display before the list of posts: "
488
  msgstr "HTML vor der Liste ähnlicher Beiträge:"
489
 
490
- #: admin/options-output.php:201
491
  msgid "HTML to display before each list item: "
492
  msgstr "HTML-Code vor jedem Listenelement:"
493
 
494
- #: admin/options-output.php:204
495
  msgid "HTML to display after each list item: "
496
  msgstr "HTML-Code nach jedem Listenelement:"
497
 
498
- #: admin/options-output.php:207
499
  msgid "HTML to display after the list of posts: "
500
  msgstr "HTML-Code nach der Liste ähnlicher Beiträge:"
501
 
502
- #: admin/options-output.php:237
503
- msgid "Post thumbnail options:"
504
- msgstr "Einstellungen der Beitragsvorschaubilder:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
505
 
506
- #: admin/options-output.php:261
507
  msgid ""
508
- "Contextual Related Posts adds a new image size with the below dimensions."
 
509
  msgstr ""
510
 
511
- #: admin/options-output.php:262
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
512
  msgid ""
513
- "If you change the width and/or height below, existing images will not be "
514
- "automatically resized."
515
  msgstr ""
516
 
517
- #: admin/options-output.php:263
518
  #, php-format
519
  msgid ""
520
- "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
521
- "a> to regenerate all image sizes."
 
522
  msgstr ""
523
 
524
- #: admin/options-output.php:267
525
- #, fuzzy
526
- msgid "Maximum width of the thumbnail:"
527
- msgstr "Maximale Breite der Vorschaubilder:"
528
 
529
- #: admin/options-output.php:274
530
- msgid ""
531
- "Since you're using the default styles set under the Custom Styles section, "
532
- "the width and height is fixed at 150px"
533
  msgstr ""
534
 
535
- #: admin/options-output.php:278
536
  msgid "Crop mode:"
537
  msgstr ""
538
 
539
- #: admin/options-output.php:282
540
  msgid ""
541
- "By default, thumbnails will be proportionately cropped. Check this box to "
542
- "hard crop the thumbnails."
543
  msgstr ""
544
 
545
- #: admin/options-output.php:283
546
  #, php-format
547
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
548
  msgstr ""
549
 
550
- #: admin/options-output.php:287
 
 
 
 
 
 
551
  msgid "Style attributes / Width and Height HTML attributes:"
552
  msgstr "Breite und Höhe mit CSS oder HTML festlegen:"
553
 
554
- #: admin/options-output.php:291
555
  #, fuzzy
556
  msgid "Style attributes are used for width and height."
557
  msgstr ""
558
  "CSS Attribute werden für Breite und Höhe benutzt. <code>style=\"max-width:"
559
 
560
- #: admin/options-output.php:295
561
  #, fuzzy
562
  msgid "HTML width and height attributes are used for width and height."
563
  msgstr "HTML Attribute werden für Breite und Höhe benutzt. <code>width=\""
564
 
565
- #: admin/options-output.php:299
566
- msgid "Use timthumb to generate thumbnails? "
567
- msgstr "Benutze timthumb um die Vorschaubilder zu erstellen?"
568
-
569
- #: admin/options-output.php:301
570
- #, fuzzy
571
- msgid ""
572
- "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
573
- "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
574
- msgstr ""
575
- "Wenn ausgewählt wird <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
576
- "\">timthumb</a> zur Erstellung der Vorschaubilder benutzt"
577
-
578
- #: admin/options-output.php:304
579
- #, fuzzy
580
- msgid "Quality of thumbnails generated by timthumb:"
581
- msgstr "Qualität der Vorschaubilder von timthumb"
582
-
583
- #: admin/options-output.php:307
584
- #, fuzzy
585
- msgid ""
586
- "Enter values between 0 and 100 only. 100 is highest quality and the highest "
587
- "file size. Suggested maximum value is 95. CRP default is 75."
588
- msgstr ""
589
- "Trage einen Wert zwischen 0 und 100 ein. 100 ist die höchste Qualität, "
590
- "bedeutet aber auch die größte Dateigröße. 95 ist der empfohlene Wert. Die "
591
- "Voreinstellung ist 75."
592
-
593
- #: admin/options-output.php:310
594
  #, fuzzy
595
  msgid "Post thumbnail meta field name:"
596
  msgstr "Name des benutzerdefiniertes Feld des Vorschaubildes:"
597
 
598
- #: admin/options-output.php:312
599
  msgid ""
600
  "The value of this field should contain the image source and is set in the "
601
  "<em>Add New Post</em> screen"
@@ -603,22 +554,22 @@ msgstr ""
603
  "Der Wert dieses Feldes sollte die Bildquelle enthalten. Sie wird unter "
604
  "<em>Neuen Beitrag erstellen</em> gesetzt"
605
 
606
- #: admin/options-output.php:315
607
  msgid "Extract the first image from the post?"
608
  msgstr ""
609
 
610
- #: admin/options-output.php:317
611
  msgid ""
612
  "This will only happen if there is no post thumbnail set and no image URL is "
613
  "specified in the meta field."
614
  msgstr ""
615
 
616
- #: admin/options-output.php:320
617
  #, fuzzy
618
  msgid "Use default thumbnail?"
619
  msgstr "Benutze das Standard-Vorschaubild?"
620
 
621
- #: admin/options-output.php:322
622
  msgid ""
623
  "If checked, when no thumbnail is found, show a default one from the URL "
624
  "below. If not checked and no thumbnail is found, no image will be shown."
@@ -627,12 +578,12 @@ msgstr ""
627
  "unterhalb geladen. Wenn es nicht ausgewählt ist und kein Vorschaubild "
628
  "gefunden wird, wird kein Vorschaubild angezeigt."
629
 
630
- #: admin/options-output.php:325
631
  #, fuzzy
632
  msgid "Default thumbnail:"
633
  msgstr "Standard-Vorschaubild: "
634
 
635
- #: admin/options-output.php:328
636
  #, fuzzy
637
  msgid ""
638
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -644,6 +595,79 @@ msgstr ""
644
  "eingetragen ist, wird das Standard-Vorschaubild benutzt, das oben definiert "
645
  "wurde"
646
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
647
  #: admin/sidebar-view.php:20
648
  msgid "Support the development"
649
  msgstr "Unterstütze die Entwicklung"
@@ -666,109 +690,156 @@ msgstr "Schicke dein Geschenk an den Entwickler von"
666
  msgid "Follow me"
667
  msgstr ""
668
 
669
- #: admin/sidebar-view.php:52
670
  #, fuzzy
671
  msgid "Quick links"
672
  msgstr "Quick Links"
673
 
674
- #: admin/sidebar-view.php:56
675
  msgid "Contextual Related Posts plugin page"
676
  msgstr "Contextual Related Posts Pluginseite"
677
 
678
- #: admin/sidebar-view.php:57
679
  msgid "FAQ"
680
  msgstr "FAQ"
681
 
682
- #: admin/sidebar-view.php:59
683
  msgid "Reviews"
684
  msgstr "Rezensionen"
685
 
686
- #: admin/sidebar-view.php:60
687
  msgid "Github repository"
688
  msgstr ""
689
 
690
- #: admin/sidebar-view.php:61
691
  msgid "Other plugins"
692
  msgstr "Andere Plugins"
693
 
694
- #: admin/sidebar-view.php:62
695
  msgid "Ajay's blog"
696
  msgstr "Ajay's Blog"
697
 
698
- #: contextual-related-posts.php:246
699
  msgid " by "
700
  msgstr "von"
701
 
702
- #: contextual-related-posts.php:285
703
  #, php-format
704
  msgid "Powered by <a href=\"%s\" rel=\"nofollow\">Contextual Related Posts</a>"
705
  msgstr ""
706
 
707
- #: contextual-related-posts.php:596
708
  #, fuzzy
709
  msgid "Related Posts [CRP]"
710
  msgstr "Ähnliche Beiträge"
711
 
712
- #: contextual-related-posts.php:597
713
  msgid "Display Related Posts"
714
  msgstr "Zeige ähnliche Beiträge an"
715
 
716
- #: contextual-related-posts.php:620
717
  msgid "Title"
718
  msgstr "Titel"
719
 
720
- #: contextual-related-posts.php:625
721
  msgid "No. of posts"
722
  msgstr ""
723
 
724
- #: contextual-related-posts.php:630
725
  msgid " Show excerpt?"
726
  msgstr "Zeige einen Textauszug?"
727
 
728
- #: contextual-related-posts.php:635
729
  msgid " Show author?"
730
  msgstr "Zeige den Autor?"
731
 
732
- #: contextual-related-posts.php:640
733
  msgid " Show date?"
734
  msgstr "Zeige das Datum?"
735
 
736
- #: contextual-related-posts.php:644
737
- msgid "Thumbnail options"
738
- msgstr "Optionen des Vorschaubildes"
739
-
740
- #: contextual-related-posts.php:646
741
  msgid "Thumbnails inline, before title"
742
  msgstr "Vorschaubilder inline, vor dem Titel"
743
 
744
- #: contextual-related-posts.php:647
745
  msgid "Thumbnails inline, after title"
746
  msgstr "Vorschaubilder inline, hinter dem Titel"
747
 
748
- #: contextual-related-posts.php:648
749
  msgid "Only thumbnails, no text"
750
  msgstr "Nur Vorschaubilder, kein Text"
751
 
752
- #: contextual-related-posts.php:649
753
  msgid "No thumbnails, only text."
754
  msgstr "Keine Vorschaubilder, nur Text"
755
 
756
- #: contextual-related-posts.php:654
757
  msgid "Thumbnail height"
758
  msgstr "Höhe des Vorschaubildes"
759
 
760
- #: contextual-related-posts.php:659
761
  msgid "Thumbnail width"
762
  msgstr "Breite des Vorschaubildes"
763
 
764
- #: contextual-related-posts.php:799
765
  msgid "<h3>Related Posts:</h3>"
766
  msgstr "<h3>Ähnliche Beiträge:</h3>"
767
 
768
- #: contextual-related-posts.php:801
769
  msgid "No related posts found"
770
  msgstr "Es wurden keine ähnlichen Beiträge gefunden"
771
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
772
  #~ msgid "Powered by"
773
  #~ msgstr "Powered by"
774
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-05-09 22:20-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e;_c;__ngettext\n"
14
  "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.7.1\n"
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+ "X-Poedit-SourceCharset: UTF-8\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: admin/admin.php:166
21
  msgid "Options saved successfully."
22
  msgstr "Optionen erfolgreich gespeichert."
23
 
24
+ #: admin/admin.php:169
25
+ msgid ""
26
+ "Default styles selected. Thumbnail width, height and crop settings have been "
27
+ "fixed. Author, Excerpt and Date will not be displayed."
28
+ msgstr ""
29
+
30
+ #: admin/admin.php:194
31
  msgid "Options set to Default."
32
  msgstr "Optionen auf die Voreinstellungen gesetzt."
33
 
34
+ #: admin/admin.php:205
35
  msgid "Index recreated"
36
  msgstr "Index neu aufgebaut"
37
 
38
+ #: admin/admin.php:222 admin/admin.php:453 admin/main-view.php:20
39
  msgid "Contextual Related Posts"
40
  msgstr "Contextual Related Posts"
41
 
42
+ #: admin/admin.php:223
43
  msgid "Related Posts"
44
  msgstr "Ähnliche Beiträge"
45
 
46
+ #: admin/admin.php:338
47
  msgid "Settings"
48
  msgstr "Einstellungen"
49
 
50
+ #: admin/admin.php:360 admin/sidebar-view.php:59
51
  msgid "Support"
52
  msgstr "Support"
53
 
54
+ #: admin/admin.php:361
55
  msgid "Donate"
56
  msgstr "Spende"
57
 
58
+ #: admin/admin.php:362
59
  msgid "Contribute"
60
  msgstr ""
61
 
62
+ #: admin/admin.php:378
63
  msgid "plugin settings page"
64
  msgstr "Einstellungen des Plugins"
65
 
66
+ #: admin/admin.php:422
67
  msgid ""
68
  "An error occurred clearing the cache. Please contact your site administrator."
69
  "\\n\\nError message:\\n"
71
  "Ein Fehler trat beim Löschen des Caches auf. Bitte kontaktiere den "
72
  "Administrator der Seite.\\n\\nError message:\\n"
73
 
74
+ #: admin/admin.php:427
75
  msgid " cached row(s) cleared"
76
  msgstr "Die Reihe(n) im Cache wurde(n) gelöscht"
77
 
78
+ #: admin/admin.php:480
79
  #, fuzzy
80
  msgid "Location of thumbnail:"
81
  msgstr "Ort der Beitragsvorschaubilder"
82
 
83
+ #: admin/admin.php:482
84
  msgid ""
85
  "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
86
  "image will be used for the post. It will be resized to the thumbnail size "
87
  "set under Settings &raquo; Related Posts &raquo; Output Options"
88
  msgstr ""
89
 
90
+ #: admin/admin.php:483
91
  msgid "The URL above is saved in the meta field: "
92
  msgstr ""
93
 
94
+ #: admin/main-view.php:32 admin/main-view.php:54
95
  msgid "General options"
96
  msgstr "Allgemeine Optionen"
97
 
98
+ #: admin/main-view.php:33 admin/main-view.php:125
99
+ msgid "List tuning options"
100
+ msgstr ""
101
+
102
+ #: admin/main-view.php:34 admin/main-view.php:229
103
  msgid "Output options"
104
  msgstr "Ausgabe Einstellungen"
105
 
106
+ #: admin/main-view.php:35 admin/main-view.php:433
107
+ #: contextual-related-posts.php:718
108
+ msgid "Thumbnail options"
109
+ msgstr "Optionen des Vorschaubildes"
110
+
111
+ #: admin/main-view.php:36 admin/main-view.php:580
112
  msgid "Feed options"
113
  msgstr "Feed Einstellungen"
114
 
115
+ #: admin/main-view.php:37 admin/main-view.php:652
116
  #, fuzzy
117
  msgid "Custom styles"
118
  msgstr "Eigenes CSS"
119
 
120
+ #: admin/main-view.php:70
121
+ msgid "Cache output?"
122
+ msgstr "Cache Ausgabe?"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
123
 
124
+ #: admin/main-view.php:72
125
  msgid ""
126
+ "Enabling this option will cache the related posts output when the post is "
127
+ "visited the first time. The cache is cleaned when you save this page."
128
  msgstr ""
129
+ "Mit dieser Option werden die Berechnung der ähnlichen Beiträge im Cache "
130
+ "gespeichert, sobald ein Beitrag das erste Mal aufgerufen wird. Der Cache "
131
+ "wird geleert, wenn diese Seite gespeichert wird."
132
 
133
+ #: admin/main-view.php:73
134
+ msgid "Clear cache"
135
+ msgstr "Lösche den Cache"
 
 
 
 
136
 
137
+ #: admin/main-view.php:77
138
+ msgid "Add related posts to:"
139
+ msgstr "Füge ähnliche Beiträge hinzu:"
140
 
141
+ #: admin/main-view.php:79
142
+ msgid "Posts"
143
+ msgstr "Beiträge"
 
 
 
 
 
 
144
 
145
+ #: admin/main-view.php:80
146
+ msgid "Pages"
147
+ msgstr "Seiten"
 
 
 
 
 
 
 
148
 
149
+ #: admin/main-view.php:81
150
+ msgid "Home page"
151
+ msgstr "Homepage"
152
 
153
+ #: admin/main-view.php:82
154
+ msgid "Feeds"
155
+ msgstr "Feeds"
156
 
157
+ #: admin/main-view.php:83
158
+ msgid "Category archives"
159
+ msgstr "Kategorie Archive"
160
 
161
+ #: admin/main-view.php:84
162
+ msgid "Tag archives"
163
+ msgstr "Schlagwort Archive"
164
 
165
+ #: admin/main-view.php:85
166
+ msgid "Other archives"
167
+ msgstr "Andere Archive"
168
 
169
+ #: admin/main-view.php:86
170
+ #, fuzzy
171
+ msgid ""
172
+ "If you choose to disable this, please add <code>&lt;?php if "
173
+ "( function_exists( 'echo_ald_crp' ) ) echo_ald_crp(); ?&gt;</code> to your "
174
+ "template file where you want it displayed"
175
+ msgstr ""
176
+ "Wenn du diese Option deaktivierst, füge bitte <code>&lt;?php "
177
+ "if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> zu deinen "
178
+ "Theme-Templates, wo die ähnlichen Beiträge angezeigt werden sollen"
179
 
180
+ #: admin/main-view.php:90
181
+ msgid "Content filter priority:"
182
+ msgstr ""
183
 
184
+ #: admin/main-view.php:93
185
+ msgid ""
186
+ "A higher number will cause the content above to be processed after other "
187
+ "filters. Number below 10 is not recommended."
188
+ msgstr ""
189
 
190
+ #: admin/main-view.php:97
191
+ #, fuzzy
192
+ msgid "Tell the world you're using Contextual Related Posts:"
193
+ msgstr "Contextual Related Posts"
194
 
195
+ #: admin/main-view.php:99
196
+ msgid " <em>Optional</em>"
197
+ msgstr "<em>Optional</em>"
198
 
199
+ #: admin/main-view.php:100
200
+ #, fuzzy
201
  msgid ""
202
+ "Adds a nofollow link to Contextual Related Posts homepage as the last time "
203
+ "in the list."
204
  msgstr ""
205
+ "Fügt einen nofollow Link zu Homepage von Contextual Related Posts hinzu."
 
 
206
 
207
+ #: admin/main-view.php:118 admin/main-view.php:222 admin/main-view.php:426
208
+ #: admin/main-view.php:573 admin/main-view.php:645 admin/main-view.php:709
209
+ msgid "Save Options"
210
+ msgstr "Optionen speichern"
211
+
212
+ #: admin/main-view.php:141 admin/main-view.php:598
213
+ msgid "Number of related posts to display: "
214
+ msgstr "Anzahl der ähnlichen Beiträge, die angezeigt werden sollen:"
215
 
216
+ #: admin/main-view.php:144
217
  msgid ""
218
  "Maximum number of posts that will be displayed. The actual number may be "
219
  "smaller if less related posts are found."
221
  "Maximale Anzahl an ähnlichen Beiträgen, die angezeigt werden soll. Diese "
222
  "kann auch geringer sein, wenn weniger ähnliche Beiträge gefunden werden."
223
 
224
+ #: admin/main-view.php:148
225
  msgid "Related posts should be newer than:"
226
  msgstr "Ähnliche Beiträge sollen neuer sein als:"
227
 
228
+ #: admin/main-view.php:150
229
  msgid "days"
230
  msgstr "Tage"
231
 
232
+ #: admin/main-view.php:151
233
  msgid ""
234
  "This sets the cutoff period for which posts will be displayed. e.g. setting "
235
+ "it to 365 will show related posts from the last year only. Set it to 0 to "
236
+ "disable limiting posts."
237
  msgstr ""
 
 
 
238
 
239
+ #: admin/main-view.php:155
 
 
 
 
 
 
 
 
 
 
 
 
240
  #, fuzzy
241
  msgid "Find related posts based on content as well as title:"
242
  msgstr ""
243
  "Finde ähnliche Beiträge basierend auf dem Inhalt als auch auf dem Titel"
244
 
245
+ #: admin/main-view.php:157
246
  msgid ""
247
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
248
  "or enabling \"Cache output\" above if you enable this."
251
  "empfehle ein Caching Plugin oder das Anschalten der Cache Ausgabe, wenn "
252
  "diese Einstellung ausgewählt ist."
253
 
254
+ #: admin/main-view.php:161
255
  msgid "Limit content to be compared"
256
  msgstr "Begrenze den Inhalt, der verglichen werden soll"
257
 
258
+ #: admin/main-view.php:163
259
  msgid ""
260
  "This sets the maximum words of the content that will be matched. 0 means no "
261
  "limit."
263
  "Dies setzt die maximale Anzahl an Worten aus dem Inhalt, die benutzt wird. 0 "
264
  "bedeutet keine Begrenzung."
265
 
266
+ #: admin/main-view.php:167
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
267
  #, fuzzy
268
+ msgid "Post types to include in results:"
269
+ msgstr "Beitragsarten, die einbezogen werden sollen."
270
+
271
+ #: admin/main-view.php:178
272
  msgid ""
273
+ "These post types will be displayed in the list. Includes custom post types."
 
 
274
  msgstr ""
275
+ "Diese Beitragsarten werden in der Liste angezeigt. Einschließlich "
276
+ "benutzerdefinierter Beitragsarten (custom post types)."
 
277
 
278
+ #: admin/main-view.php:182
279
+ #, fuzzy
280
+ msgid "List of post or page IDs to exclude from the results:"
281
  msgstr ""
282
+ "Liste deine Beitrags- oder Seiten-IDs auf, die aus den Ergebnissen "
283
+ "ausgeschlossen werden sollen:"
284
 
285
+ #: admin/main-view.php:184 admin/main-view.php:355
286
  msgid ""
287
+ "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
 
288
  msgstr ""
289
+ "Mit Komma getrennte Liste der IDs von Beiträgen, Seiten oder "
290
+ "benutzerdefinierter Beitragsarten (custom post types). Beispiel: 188,320,500"
291
 
292
+ #: admin/main-view.php:188
293
+ msgid "Categories to exclude from the results: "
294
+ msgstr "Kategorien, die von den Ergebnissen ausgeschlossen werden sollen:"
 
 
 
 
 
295
 
296
+ #: admin/main-view.php:204
297
  #, fuzzy
298
  msgid ""
299
+ "Comma separated list of category slugs. The field above has an autocomplete "
300
+ "so simply start typing in the beginning of your category name and it will "
301
+ "prompt you with options."
302
  msgstr ""
303
+ "Mit Komma getrennte Liste der Kategorie Slugs. Das obige Feld benutzt "
304
+ "Autovervollständigung, beginne einfach zu tippen und du bekommst Kategorien "
305
+ "vorgeschlagen."
306
 
307
+ #: admin/main-view.php:245
308
  msgid "Title of related posts: "
309
  msgstr "Überschrift der ähnlichen Beiträge:"
310
 
311
+ #: admin/main-view.php:248
312
  msgid ""
313
  "This is the main heading of the related posts. You can also display the "
314
  "current post title by using <code>%postname%</code>. e.g. <code>Related "
318
  "aktuellen Beitragstitel anzeigen lassen mit <code>%postname%</code>. "
319
  "Beispielsweise: <code>Ähnliche Beiträge zu %postname%</code>"
320
 
321
+ #: admin/main-view.php:252
322
  msgid "When there are no posts, what should be shown?"
323
  msgstr ""
324
  "Wenn keine ähnlichen Beiträge gefunden wurden, was soll angezeigt werden?"
325
 
326
+ #: admin/main-view.php:256
327
  msgid "Blank Output"
328
  msgstr "Gar nichts"
329
 
330
+ #: admin/main-view.php:260
331
  msgid "Display:"
332
  msgstr "Zeige an:"
333
 
334
+ #: admin/main-view.php:265 admin/main-view.php:601
335
+ msgid "Show post excerpt in list?"
336
+ msgstr "Soll ein Auszug in der Liste angezeigt werden?"
337
+
338
+ #: admin/main-view.php:268
339
  #, php-format
340
  msgid ""
341
  "Displays the excerpt of the post. If you do not provide an explicit excerpt "
343
  "automatic excerpt which refers to the first %d words of the post's content"
344
  msgstr ""
345
 
346
+ #: admin/main-view.php:271
347
+ msgid ""
348
+ "Default style selected under the Custom Styles. Excerpt display is disabled."
349
+ msgstr ""
350
+
351
+ #: admin/main-view.php:276
352
  msgid "Length of excerpt (in words): "
353
  msgstr "Länge des Auszugs (in Worten):"
354
 
355
+ #: admin/main-view.php:282
356
  msgid "Show post author in list?"
357
  msgstr "Zeige den Autor des Beitrags an in der Liste?"
358
 
359
+ #: admin/main-view.php:285
360
  msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
361
  msgstr ""
362
 
363
+ #: admin/main-view.php:288
364
+ msgid ""
365
+ "Default style selected under the Custom Styles. Author display is disabled."
366
+ msgstr ""
367
+
368
+ #: admin/main-view.php:293
369
  msgid "Show post date in list?"
370
  msgstr "Zeige das Datum des Beitrags in der Liste an?"
371
 
372
+ #: admin/main-view.php:296
373
  msgid ""
374
  "Displays the date of the post. Uses the same date format set in General "
375
  "Options"
376
  msgstr ""
377
 
378
+ #: admin/main-view.php:299
379
+ msgid ""
380
+ "Default style selected under the Custom Styles. Date display is disabled."
381
+ msgstr ""
382
+
383
+ #: admin/main-view.php:304
384
  msgid "Limit post title length (in characters)"
385
  msgstr "Begrenze den Titel des Beitrags (in Zeichen)"
386
 
387
+ #: admin/main-view.php:307
388
  msgid ""
389
  "Any title longer than the number of characters set above will be cut and "
390
  "appended with a &helip;"
391
  msgstr ""
392
 
393
+ #: admin/main-view.php:311
394
  msgid "Open links in new window"
395
  msgstr "Öffne die Links in einem neuen Fenster"
396
 
397
+ #: admin/main-view.php:317
398
  msgid "Add nofollow attribute to links in the list"
399
  msgstr "Füge nofollow zu den Links aus der Liste hinzu"
400
 
401
+ #: admin/main-view.php:350
402
  #, fuzzy
403
  msgid "Exclusion settings:"
404
  msgstr "Einstellungen des Plugins"
405
 
406
+ #: admin/main-view.php:352
 
 
 
 
 
 
 
 
 
 
 
 
 
 
407
  msgid "Exclude display of related posts on these posts / pages"
408
  msgstr ""
409
  "Schließe auf diesen Beiträgen / Seiten die Anzeige der ähnliche Beiträge aus"
410
 
411
+ #: admin/main-view.php:358
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
412
  #, fuzzy
413
  msgid "Exclude display of related posts on these post types."
414
  msgstr ""
415
  "Schließe auf diesen Beiträgen / Seiten die Anzeige der ähnliche Beiträge aus"
416
 
417
+ #: admin/main-view.php:367
418
  #, fuzzy
419
  msgid ""
420
  "The related posts will not display on any of the above selected post types"
422
  "Diese Beitragsarten werden in der Liste angezeigt. Einschließlich "
423
  "benutzerdefinierter Beitragsarten (custom post types)."
424
 
425
+ #: admin/main-view.php:397
426
  msgid "Customize the output:"
427
  msgstr "Passe die Ausgabe an:"
428
 
429
+ #: admin/main-view.php:399
430
  msgid "HTML to display before the list of posts: "
431
  msgstr "HTML vor der Liste ähnlicher Beiträge:"
432
 
433
+ #: admin/main-view.php:402
434
  msgid "HTML to display before each list item: "
435
  msgstr "HTML-Code vor jedem Listenelement:"
436
 
437
+ #: admin/main-view.php:405
438
  msgid "HTML to display after each list item: "
439
  msgstr "HTML-Code nach jedem Listenelement:"
440
 
441
+ #: admin/main-view.php:408
442
  msgid "HTML to display after the list of posts: "
443
  msgstr "HTML-Code nach der Liste ähnlicher Beiträge:"
444
 
445
+ #: admin/main-view.php:449 admin/main-view.php:604
446
+ msgid "Location of post thumbnail:"
447
+ msgstr "Ort der Beitragsvorschaubilder"
448
+
449
+ #: admin/main-view.php:453 admin/main-view.php:608
450
+ msgid "Display thumbnails inline with posts, before title"
451
+ msgstr "Zeige die Vorschaubilder inline mit den Beiträgen an; vor dem Titel"
452
+
453
+ #: admin/main-view.php:457 admin/main-view.php:612
454
+ msgid "Display thumbnails inline with posts, after title"
455
+ msgstr "Zeige die Vorschaubilder inline mit den Beiträgen an; nach dem Titel"
456
+
457
+ #: admin/main-view.php:461 admin/main-view.php:616
458
+ msgid "Display only thumbnails, no text"
459
+ msgstr "Zeige nur die Vorschaubilder an; keinen Text"
460
+
461
+ #: admin/main-view.php:465 admin/main-view.php:620
462
+ msgid "Do not display thumbnails, only text."
463
+ msgstr "Zeige keine Vorschaubilder an; nur Text"
464
 
465
+ #: admin/main-view.php:468
466
  msgid ""
467
+ "Default style selected under the Custom Styles. Location of thumbnail forced "
468
+ "to be inline before title"
469
  msgstr ""
470
 
471
+ #: admin/main-view.php:472
472
+ msgid "Thumbnail size:"
473
+ msgstr ""
474
+
475
+ #: admin/main-view.php:496
476
+ msgid "Custom size"
477
+ msgstr ""
478
+
479
+ #: admin/main-view.php:499
480
+ msgid ""
481
+ "You can choose from existing image sizes above or create a custom size. If "
482
+ "you have chosen Custom size above, then enter the width, height and crop "
483
+ "settings below. For best results, use a cropped image."
484
+ msgstr ""
485
+
486
+ #: admin/main-view.php:500
487
  msgid ""
488
+ "If you change the width, height or crop mode below, existing images will not "
489
+ "be automatically resized."
490
  msgstr ""
491
 
492
+ #: admin/main-view.php:501
493
  #, php-format
494
  msgid ""
495
+ "I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
496
+ "a> or <a href='%s' class='thickbox'>Regenerate Thumbnails</a> to regenerate "
497
+ "all image sizes."
498
  msgstr ""
499
 
500
+ #: admin/main-view.php:505
501
+ msgid "Width of the thumbnail:"
502
+ msgstr ""
 
503
 
504
+ #: admin/main-view.php:508
505
+ msgid "Height of the thumbnail: "
 
 
506
  msgstr ""
507
 
508
+ #: admin/main-view.php:513
509
  msgid "Crop mode:"
510
  msgstr ""
511
 
512
+ #: admin/main-view.php:517
513
  msgid ""
514
+ "By default, thumbnails will be hard cropped. Uncheck this box to "
515
+ "proportionately/soft crop the thumbnails."
516
  msgstr ""
517
 
518
+ #: admin/main-view.php:518
519
  #, php-format
520
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
521
  msgstr ""
522
 
523
+ #: admin/main-view.php:521
524
+ msgid ""
525
+ "Default style selected under the Custom Styles. Thumbnail width and height "
526
+ "is fixed at 150px and crop mode is enabled."
527
+ msgstr ""
528
+
529
+ #: admin/main-view.php:525
530
  msgid "Style attributes / Width and Height HTML attributes:"
531
  msgstr "Breite und Höhe mit CSS oder HTML festlegen:"
532
 
533
+ #: admin/main-view.php:529
534
  #, fuzzy
535
  msgid "Style attributes are used for width and height."
536
  msgstr ""
537
  "CSS Attribute werden für Breite und Höhe benutzt. <code>style=\"max-width:"
538
 
539
+ #: admin/main-view.php:533
540
  #, fuzzy
541
  msgid "HTML width and height attributes are used for width and height."
542
  msgstr "HTML Attribute werden für Breite und Höhe benutzt. <code>width=\""
543
 
544
+ #: admin/main-view.php:537
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
545
  #, fuzzy
546
  msgid "Post thumbnail meta field name:"
547
  msgstr "Name des benutzerdefiniertes Feld des Vorschaubildes:"
548
 
549
+ #: admin/main-view.php:539
550
  msgid ""
551
  "The value of this field should contain the image source and is set in the "
552
  "<em>Add New Post</em> screen"
554
  "Der Wert dieses Feldes sollte die Bildquelle enthalten. Sie wird unter "
555
  "<em>Neuen Beitrag erstellen</em> gesetzt"
556
 
557
+ #: admin/main-view.php:542
558
  msgid "Extract the first image from the post?"
559
  msgstr ""
560
 
561
+ #: admin/main-view.php:544
562
  msgid ""
563
  "This will only happen if there is no post thumbnail set and no image URL is "
564
  "specified in the meta field."
565
  msgstr ""
566
 
567
+ #: admin/main-view.php:547
568
  #, fuzzy
569
  msgid "Use default thumbnail?"
570
  msgstr "Benutze das Standard-Vorschaubild?"
571
 
572
+ #: admin/main-view.php:549
573
  msgid ""
574
  "If checked, when no thumbnail is found, show a default one from the URL "
575
  "below. If not checked and no thumbnail is found, no image will be shown."
578
  "unterhalb geladen. Wenn es nicht ausgewählt ist und kein Vorschaubild "
579
  "gefunden wird, wird kein Vorschaubild angezeigt."
580
 
581
+ #: admin/main-view.php:552
582
  #, fuzzy
583
  msgid "Default thumbnail:"
584
  msgstr "Standard-Vorschaubild: "
585
 
586
+ #: admin/main-view.php:555
587
  #, fuzzy
588
  msgid ""
589
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
595
  "eingetragen ist, wird das Standard-Vorschaubild benutzt, das oben definiert "
596
  "wurde"
597
 
598
+ #: admin/main-view.php:596
599
+ msgid ""
600
+ "Below options override the related posts settings for your blog feed. These "
601
+ "only apply if you have selected to add related posts to Feeds in the General "
602
+ "Options tab."
603
+ msgstr ""
604
+ "Die Optionen unterhalb überschreiben die Einstellung der ähnlichen Beiträge "
605
+ "für den Feed deines Blogs. Diese werden nur übernommen, wenn du bei den "
606
+ "allgemeinen Einstellungen ausgewählt hast, dass ähnliche Beiträge auch in "
607
+ "den Feeds angezeigt werden sollen. "
608
+
609
+ #: admin/main-view.php:624
610
+ msgid "Maximum width of the thumbnail: "
611
+ msgstr "Maximale Breite der Vorschaubilder:"
612
+
613
+ #: admin/main-view.php:627
614
+ msgid "Maximum height of the thumbnail: "
615
+ msgstr "Maximale Höhe der Vorschaubilder:"
616
+
617
+ #: admin/main-view.php:668
618
+ msgid "Use default style included in the plugin?"
619
+ msgstr ""
620
+
621
+ #: admin/main-view.php:671
622
+ msgid ""
623
+ "Contextual Related Posts includes a default style that makes your popular "
624
+ "posts list to look beautiful. Check the box above if you want to use this."
625
+ msgstr ""
626
+
627
+ #: admin/main-view.php:672
628
+ msgid ""
629
+ "Enabling this option will turn on the thumbnails and set their width and "
630
+ "height to 150px. It will also turn off the display of the author, excerpt "
631
+ "and date if already enabled. Disabling this option will not revert any "
632
+ "settings."
633
+ msgstr ""
634
+
635
+ #: admin/main-view.php:673
636
+ #, php-format
637
+ msgid ""
638
+ "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
639
+ msgstr ""
640
+
641
+ #: admin/main-view.php:676
642
+ msgid "Custom CSS to add to header:"
643
+ msgstr "Eigenes CSS, das im Header-Bereich hinzugefügt werden soll:"
644
+
645
+ #: admin/main-view.php:680
646
+ msgid ""
647
+ "Do not include <code>style</code> tags. Check out the <a href=\"http://"
648
+ "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
649
+ "\">FAQ</a> for available CSS classes to style."
650
+ msgstr ""
651
+ "Benutze nicht den <code>style</code> Tag. Siehe dir die <a href=\"http://"
652
+ "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
653
+ "\">FAQ</a> (en) für benutzbare CSS Klassen an."
654
+
655
+ #: admin/main-view.php:710
656
+ msgid "Default Options"
657
+ msgstr "Standardoptionen"
658
+
659
+ #: admin/main-view.php:710
660
+ msgid "Do you want to set options to Default?"
661
+ msgstr "Möchtest du Einstellungen zurücksetzen?"
662
+
663
+ #: admin/main-view.php:711
664
+ msgid "Recreate Index"
665
+ msgstr "Erstelle den Index neu"
666
+
667
+ #: admin/main-view.php:711
668
+ msgid "Are you sure you want to recreate the index?"
669
+ msgstr "Bist du sicher, den Index neu zu erstellen?"
670
+
671
  #: admin/sidebar-view.php:20
672
  msgid "Support the development"
673
  msgstr "Unterstütze die Entwicklung"
690
  msgid "Follow me"
691
  msgstr ""
692
 
693
+ #: admin/sidebar-view.php:53
694
  #, fuzzy
695
  msgid "Quick links"
696
  msgstr "Quick Links"
697
 
698
+ #: admin/sidebar-view.php:57
699
  msgid "Contextual Related Posts plugin page"
700
  msgstr "Contextual Related Posts Pluginseite"
701
 
702
+ #: admin/sidebar-view.php:58
703
  msgid "FAQ"
704
  msgstr "FAQ"
705
 
706
+ #: admin/sidebar-view.php:60
707
  msgid "Reviews"
708
  msgstr "Rezensionen"
709
 
710
+ #: admin/sidebar-view.php:61
711
  msgid "Github repository"
712
  msgstr ""
713
 
714
+ #: admin/sidebar-view.php:62
715
  msgid "Other plugins"
716
  msgstr "Andere Plugins"
717
 
718
+ #: admin/sidebar-view.php:63
719
  msgid "Ajay's blog"
720
  msgstr "Ajay's Blog"
721
 
722
+ #: contextual-related-posts.php:250
723
  msgid " by "
724
  msgstr "von"
725
 
726
+ #: contextual-related-posts.php:289
727
  #, php-format
728
  msgid "Powered by <a href=\"%s\" rel=\"nofollow\">Contextual Related Posts</a>"
729
  msgstr ""
730
 
731
+ #: contextual-related-posts.php:670
732
  #, fuzzy
733
  msgid "Related Posts [CRP]"
734
  msgstr "Ähnliche Beiträge"
735
 
736
+ #: contextual-related-posts.php:671
737
  msgid "Display Related Posts"
738
  msgstr "Zeige ähnliche Beiträge an"
739
 
740
+ #: contextual-related-posts.php:694
741
  msgid "Title"
742
  msgstr "Titel"
743
 
744
+ #: contextual-related-posts.php:699
745
  msgid "No. of posts"
746
  msgstr ""
747
 
748
+ #: contextual-related-posts.php:704
749
  msgid " Show excerpt?"
750
  msgstr "Zeige einen Textauszug?"
751
 
752
+ #: contextual-related-posts.php:709
753
  msgid " Show author?"
754
  msgstr "Zeige den Autor?"
755
 
756
+ #: contextual-related-posts.php:714
757
  msgid " Show date?"
758
  msgstr "Zeige das Datum?"
759
 
760
+ #: contextual-related-posts.php:720
 
 
 
 
761
  msgid "Thumbnails inline, before title"
762
  msgstr "Vorschaubilder inline, vor dem Titel"
763
 
764
+ #: contextual-related-posts.php:721
765
  msgid "Thumbnails inline, after title"
766
  msgstr "Vorschaubilder inline, hinter dem Titel"
767
 
768
+ #: contextual-related-posts.php:722
769
  msgid "Only thumbnails, no text"
770
  msgstr "Nur Vorschaubilder, kein Text"
771
 
772
+ #: contextual-related-posts.php:723
773
  msgid "No thumbnails, only text."
774
  msgstr "Keine Vorschaubilder, nur Text"
775
 
776
+ #: contextual-related-posts.php:728
777
  msgid "Thumbnail height"
778
  msgstr "Höhe des Vorschaubildes"
779
 
780
+ #: contextual-related-posts.php:733
781
  msgid "Thumbnail width"
782
  msgstr "Breite des Vorschaubildes"
783
 
784
+ #: contextual-related-posts.php:897
785
  msgid "<h3>Related Posts:</h3>"
786
  msgstr "<h3>Ähnliche Beiträge:</h3>"
787
 
788
+ #: contextual-related-posts.php:899
789
  msgid "No related posts found"
790
  msgstr "Es wurden keine ähnlichen Beiträge gefunden"
791
 
792
+ #: contextual-related-posts.php:1211
793
+ msgid "thumb_timthumb argument has been deprecated"
794
+ msgstr ""
795
+
796
+ #: contextual-related-posts.php:1215
797
+ msgid "thumb_timthumb_q argument has been deprecated"
798
+ msgstr ""
799
+
800
+ #: contextual-related-posts.php:1219
801
+ msgid "filter argument has been deprecated"
802
+ msgstr ""
803
+
804
+ #~ msgid ""
805
+ #~ "This sets the cutoff period for which posts will be displayed. e.g. "
806
+ #~ "setting it to 365 will show related posts from the last year only."
807
+ #~ msgstr ""
808
+ #~ "Hier den Zeitraum eintragen, aus dem die ähnlichen Beiträge berechnet "
809
+ #~ "werden. Zum Beispiel 365 eintragen, damit nur Beiträge aus dem letzten "
810
+ #~ "Jahr angezeigt werden."
811
+
812
+ #~ msgid "Post thumbnail options:"
813
+ #~ msgstr "Einstellungen der Beitragsvorschaubilder:"
814
+
815
+ #, fuzzy
816
+ #~ msgid "Maximum width of the thumbnail:"
817
+ #~ msgstr "Maximale Breite der Vorschaubilder:"
818
+
819
+ #~ msgid "Use timthumb to generate thumbnails? "
820
+ #~ msgstr "Benutze timthumb um die Vorschaubilder zu erstellen?"
821
+
822
+ #, fuzzy
823
+ #~ msgid ""
824
+ #~ "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
825
+ #~ "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
826
+ #~ msgstr ""
827
+ #~ "Wenn ausgewählt wird <a href=\"http://www.binarymoon.co.uk/projects/"
828
+ #~ "timthumb/\">timthumb</a> zur Erstellung der Vorschaubilder benutzt"
829
+
830
+ #, fuzzy
831
+ #~ msgid "Quality of thumbnails generated by timthumb:"
832
+ #~ msgstr "Qualität der Vorschaubilder von timthumb"
833
+
834
+ #, fuzzy
835
+ #~ msgid ""
836
+ #~ "Enter values between 0 and 100 only. 100 is highest quality and the "
837
+ #~ "highest file size. Suggested maximum value is 95. CRP default is 75."
838
+ #~ msgstr ""
839
+ #~ "Trage einen Wert zwischen 0 und 100 ein. 100 ist die höchste Qualität, "
840
+ #~ "bedeutet aber auch die größte Dateigröße. 95 ist der empfohlene Wert. Die "
841
+ #~ "Voreinstellung ist 75."
842
+
843
  #~ msgid "Powered by"
844
  #~ msgstr "Powered by"
845
 
languages/crp-el_GR.mo ADDED
Binary file
languages/crp-el_GR.po ADDED
@@ -0,0 +1,770 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #
2
+ # Translators:
3
+ # evigiannakou <evigian@in.gr>, 2014
4
+ msgid ""
5
+ msgstr ""
6
+ "Project-Id-Version: Contextual Related Posts\n"
7
+ "Report-Msgid-Bugs-To: \n"
8
+ "POT-Creation-Date: 2015-05-09 22:20-0000\n"
9
+ "PO-Revision-Date: 2015-05-09 22:20-0000\n"
10
+ "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
11
+ "Language-Team: Greek (http://www.transifex.com/projects/p/contextual-related-"
12
+ "posts/language/el/)\n"
13
+ "Language: el\n"
14
+ "MIME-Version: 1.0\n"
15
+ "Content-Type: text/plain; charset=UTF-8\n"
16
+ "Content-Transfer-Encoding: 8bit\n"
17
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
+ "X-Generator: Poedit 1.7.1\n"
19
+ "X-Poedit-Basepath: ../\n"
20
+ "X-Poedit-KeywordsList: __;_e;_c;__ngettext\n"
21
+ "X-Poedit-SourceCharset: UTF-8\n"
22
+ "X-Poedit-SearchPath-0: .\n"
23
+
24
+ #: admin/admin.php:166
25
+ msgid "Options saved successfully."
26
+ msgstr "Οι επιλογές αποθηκεύτηκαν επιτυχώς."
27
+
28
+ #: admin/admin.php:169
29
+ msgid ""
30
+ "Default styles selected. Thumbnail width, height and crop settings have been "
31
+ "fixed. Author, Excerpt and Date will not be displayed."
32
+ msgstr ""
33
+
34
+ #: admin/admin.php:194
35
+ msgid "Options set to Default."
36
+ msgstr "Οι επιλογές ορίστηκαν ως Προεπιλογή."
37
+
38
+ #: admin/admin.php:205
39
+ msgid "Index recreated"
40
+ msgstr ""
41
+
42
+ #: admin/admin.php:222 admin/admin.php:453 admin/main-view.php:20
43
+ msgid "Contextual Related Posts"
44
+ msgstr "Άρθρα Σχετικά με το Περιεχόμενο"
45
+
46
+ #: admin/admin.php:223
47
+ msgid "Related Posts"
48
+ msgstr "Σχετικά Άρθρα"
49
+
50
+ #: admin/admin.php:338
51
+ msgid "Settings"
52
+ msgstr "Ρυθμίσεις"
53
+
54
+ #: admin/admin.php:360 admin/sidebar-view.php:59
55
+ msgid "Support"
56
+ msgstr "Υποστήριξη"
57
+
58
+ #: admin/admin.php:361
59
+ msgid "Donate"
60
+ msgstr "Δωρεά"
61
+
62
+ #: admin/admin.php:362
63
+ msgid "Contribute"
64
+ msgstr "Συνεισφορά"
65
+
66
+ #: admin/admin.php:378
67
+ msgid "plugin settings page"
68
+ msgstr "σελίδα ρυθμίσεων προσθέτου"
69
+
70
+ #: admin/admin.php:422
71
+ msgid ""
72
+ "An error occurred clearing the cache. Please contact your site administrator."
73
+ "\\n\\nError message:\\n"
74
+ msgstr ""
75
+ "Προέκυψε σφάλμα κατά τον καθαρισμό των προσωρινών αρχείων. Παρακαλώ "
76
+ "επικοινωνήστε με το διαχειριστή του ιστότοπου σας.\\n\\nΜήνυμα σφάλματος:\\n"
77
+
78
+ #: admin/admin.php:427
79
+ msgid " cached row(s) cleared"
80
+ msgstr "οι σειρά(ές) προσωρινών δεδομένων καθαρίστηκαν"
81
+
82
+ #: admin/admin.php:480
83
+ msgid "Location of thumbnail:"
84
+ msgstr "Τοποθεσία μικρογραφίας:"
85
+
86
+ #: admin/admin.php:482
87
+ msgid ""
88
+ "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
89
+ "image will be used for the post. It will be resized to the thumbnail size "
90
+ "set under Settings &raquo; Related Posts &raquo; Output Options"
91
+ msgstr ""
92
+
93
+ #: admin/admin.php:483
94
+ msgid "The URL above is saved in the meta field: "
95
+ msgstr ""
96
+
97
+ #: admin/main-view.php:32 admin/main-view.php:54
98
+ msgid "General options"
99
+ msgstr "Γενικές επιλογές"
100
+
101
+ #: admin/main-view.php:33 admin/main-view.php:125
102
+ msgid "List tuning options"
103
+ msgstr ""
104
+
105
+ #: admin/main-view.php:34 admin/main-view.php:229
106
+ msgid "Output options"
107
+ msgstr ""
108
+
109
+ #: admin/main-view.php:35 admin/main-view.php:433
110
+ #: contextual-related-posts.php:718
111
+ msgid "Thumbnail options"
112
+ msgstr "Επιλογές μικρογραφιών"
113
+
114
+ #: admin/main-view.php:36 admin/main-view.php:580
115
+ msgid "Feed options"
116
+ msgstr "Επιλογές καναλιού"
117
+
118
+ #: admin/main-view.php:37 admin/main-view.php:652
119
+ msgid "Custom styles"
120
+ msgstr "Στυλ συνδέσμου"
121
+
122
+ #: admin/main-view.php:70
123
+ msgid "Cache output?"
124
+ msgstr ""
125
+
126
+ #: admin/main-view.php:72
127
+ msgid ""
128
+ "Enabling this option will cache the related posts output when the post is "
129
+ "visited the first time. The cache is cleaned when you save this page."
130
+ msgstr ""
131
+ "Ενεργοποιώντας αυτή την επιλογή θα αποθηκεύσετε προσωρινά τα δεδομένα των "
132
+ "σχετικών άρθρων όταν το άρθρο επισκέπτεται για πρώτη φορά. Τα προσωρινά "
133
+ "δεδομένα καθαρίζονται όταν αποθηκεύετε αυτή τη σελίδα."
134
+
135
+ #: admin/main-view.php:73
136
+ msgid "Clear cache"
137
+ msgstr "Καθαρισμός προσωρινών αρχείων"
138
+
139
+ #: admin/main-view.php:77
140
+ msgid "Add related posts to:"
141
+ msgstr "Προσθήκη σχετικών άρθρων σε:"
142
+
143
+ #: admin/main-view.php:79
144
+ msgid "Posts"
145
+ msgstr "Άρθρα"
146
+
147
+ #: admin/main-view.php:80
148
+ msgid "Pages"
149
+ msgstr "Σελίδες"
150
+
151
+ #: admin/main-view.php:81
152
+ msgid "Home page"
153
+ msgstr "Αρχική σελίδα"
154
+
155
+ #: admin/main-view.php:82
156
+ msgid "Feeds"
157
+ msgstr "Κανάλια"
158
+
159
+ #: admin/main-view.php:83
160
+ msgid "Category archives"
161
+ msgstr "Αρχεία κατηγορίας"
162
+
163
+ #: admin/main-view.php:84
164
+ msgid "Tag archives"
165
+ msgstr "Αρχεία ετικέτας"
166
+
167
+ #: admin/main-view.php:85
168
+ msgid "Other archives"
169
+ msgstr "Άλλα αρχεία"
170
+
171
+ #: admin/main-view.php:86
172
+ msgid ""
173
+ "If you choose to disable this, please add <code>&lt;?php if "
174
+ "( function_exists( 'echo_ald_crp' ) ) echo_ald_crp(); ?&gt;</code> to your "
175
+ "template file where you want it displayed"
176
+ msgstr ""
177
+
178
+ #: admin/main-view.php:90
179
+ msgid "Content filter priority:"
180
+ msgstr ""
181
+
182
+ #: admin/main-view.php:93
183
+ msgid ""
184
+ "A higher number will cause the content above to be processed after other "
185
+ "filters. Number below 10 is not recommended."
186
+ msgstr ""
187
+
188
+ #: admin/main-view.php:97
189
+ msgid "Tell the world you're using Contextual Related Posts:"
190
+ msgstr ""
191
+
192
+ #: admin/main-view.php:99
193
+ msgid " <em>Optional</em>"
194
+ msgstr "<em>Προαιρετικό</em>"
195
+
196
+ #: admin/main-view.php:100
197
+ msgid ""
198
+ "Adds a nofollow link to Contextual Related Posts homepage as the last time "
199
+ "in the list."
200
+ msgstr ""
201
+
202
+ #: admin/main-view.php:118 admin/main-view.php:222 admin/main-view.php:426
203
+ #: admin/main-view.php:573 admin/main-view.php:645 admin/main-view.php:709
204
+ msgid "Save Options"
205
+ msgstr "Αποθήκευση επιλογών"
206
+
207
+ #: admin/main-view.php:141 admin/main-view.php:598
208
+ msgid "Number of related posts to display: "
209
+ msgstr "Αριθμός σχετικών άρθρων για προβολή:"
210
+
211
+ #: admin/main-view.php:144
212
+ msgid ""
213
+ "Maximum number of posts that will be displayed. The actual number may be "
214
+ "smaller if less related posts are found."
215
+ msgstr ""
216
+ "Ο μέγιστος αριθμός άρθρων που θα προβάλλονται. Ο πραγματικός αριθμός ίσως "
217
+ "είναι μικρότερος αν βρεθούν λιγότερα σχετικά άρθρα."
218
+
219
+ #: admin/main-view.php:148
220
+ msgid "Related posts should be newer than:"
221
+ msgstr "Τα σχετικά άρθρα να είναι νεότερα από:"
222
+
223
+ #: admin/main-view.php:150
224
+ msgid "days"
225
+ msgstr "ημέρες "
226
+
227
+ #: admin/main-view.php:151
228
+ msgid ""
229
+ "This sets the cutoff period for which posts will be displayed. e.g. setting "
230
+ "it to 365 will show related posts from the last year only. Set it to 0 to "
231
+ "disable limiting posts."
232
+ msgstr ""
233
+
234
+ #: admin/main-view.php:155
235
+ msgid "Find related posts based on content as well as title:"
236
+ msgstr "Εύρεση σχετικών άρθρων με βάσει το περιεχόμενο καθώς και τον τίτλο:"
237
+
238
+ #: admin/main-view.php:157
239
+ msgid ""
240
+ "If unchecked, only posts titles are used. I recommend using a caching plugin "
241
+ "or enabling \"Cache output\" above if you enable this."
242
+ msgstr ""
243
+
244
+ #: admin/main-view.php:161
245
+ msgid "Limit content to be compared"
246
+ msgstr "Όριο περιεχομένου για σύγκριση"
247
+
248
+ #: admin/main-view.php:163
249
+ msgid ""
250
+ "This sets the maximum words of the content that will be matched. 0 means no "
251
+ "limit."
252
+ msgstr ""
253
+ "Αυτό ορίζει το μέγιστο αριθμό λέξεων του περιεχομένου που θα αντιστοιχηθούν. "
254
+ "Το 0 σημαίνει χωρίς όριο."
255
+
256
+ #: admin/main-view.php:167
257
+ msgid "Post types to include in results:"
258
+ msgstr "Τύποι άρθρων που θα περιληφθούν στα αποτελέσματα:"
259
+
260
+ #: admin/main-view.php:178
261
+ msgid ""
262
+ "These post types will be displayed in the list. Includes custom post types."
263
+ msgstr ""
264
+ "Αυτοί οι τύποι άρθρων θα προβάλλονται στον κατάλογο. Περιλαμβάνει "
265
+ "προσαρμοσμένους τύπους άρθρων."
266
+
267
+ #: admin/main-view.php:182
268
+ msgid "List of post or page IDs to exclude from the results:"
269
+ msgstr "Κατάλογος ID άρθρων ή σελίδων για να αποκλείσετε από τα αποτελέσματα:"
270
+
271
+ #: admin/main-view.php:184 admin/main-view.php:355
272
+ msgid ""
273
+ "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
274
+ msgstr ""
275
+ "Διαχωρισμένος με κόμμα κατάλογος ID άρθρων, σελίδων ή προσαρμοσμένου τύπου "
276
+ "άρθρων. π.χ. 188,320,500"
277
+
278
+ #: admin/main-view.php:188
279
+ msgid "Categories to exclude from the results: "
280
+ msgstr "Κατηγορίες για να αποκλειστούν από τα αποτελέσματα:"
281
+
282
+ #: admin/main-view.php:204
283
+ msgid ""
284
+ "Comma separated list of category slugs. The field above has an autocomplete "
285
+ "so simply start typing in the beginning of your category name and it will "
286
+ "prompt you with options."
287
+ msgstr ""
288
+
289
+ #: admin/main-view.php:245
290
+ msgid "Title of related posts: "
291
+ msgstr ""
292
+
293
+ #: admin/main-view.php:248
294
+ msgid ""
295
+ "This is the main heading of the related posts. You can also display the "
296
+ "current post title by using <code>%postname%</code>. e.g. <code>Related "
297
+ "Posts to %postname%</code>"
298
+ msgstr ""
299
+
300
+ #: admin/main-view.php:252
301
+ msgid "When there are no posts, what should be shown?"
302
+ msgstr ""
303
+
304
+ #: admin/main-view.php:256
305
+ msgid "Blank Output"
306
+ msgstr ""
307
+
308
+ #: admin/main-view.php:260
309
+ msgid "Display:"
310
+ msgstr "Προβολή:"
311
+
312
+ #: admin/main-view.php:265 admin/main-view.php:601
313
+ msgid "Show post excerpt in list?"
314
+ msgstr "Προβολή αποσπασμάτων άρθρων σε κατάλογο;"
315
+
316
+ #: admin/main-view.php:268
317
+ #, php-format
318
+ msgid ""
319
+ "Displays the excerpt of the post. If you do not provide an explicit excerpt "
320
+ "to a post (in the post editor's optional excerpt field), it will display an "
321
+ "automatic excerpt which refers to the first %d words of the post's content"
322
+ msgstr ""
323
+
324
+ #: admin/main-view.php:271
325
+ msgid ""
326
+ "Default style selected under the Custom Styles. Excerpt display is disabled."
327
+ msgstr ""
328
+
329
+ #: admin/main-view.php:276
330
+ msgid "Length of excerpt (in words): "
331
+ msgstr ""
332
+
333
+ #: admin/main-view.php:282
334
+ msgid "Show post author in list?"
335
+ msgstr "Προβολή συντάκτη άρθρου σε κατάλογο;"
336
+
337
+ #: admin/main-view.php:285
338
+ msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
339
+ msgstr ""
340
+
341
+ #: admin/main-view.php:288
342
+ msgid ""
343
+ "Default style selected under the Custom Styles. Author display is disabled."
344
+ msgstr ""
345
+
346
+ #: admin/main-view.php:293
347
+ msgid "Show post date in list?"
348
+ msgstr "Προβολή ημερομηνίας άρθρου σε κατάλογο;"
349
+
350
+ #: admin/main-view.php:296
351
+ msgid ""
352
+ "Displays the date of the post. Uses the same date format set in General "
353
+ "Options"
354
+ msgstr ""
355
+ "Προβάλλει την ημερομηνία του άρθρου. Χρησιμοποιεί την ίδια μορφοποίηση "
356
+ "ημερομηνίας που ορίστηκε στις Γενικές Επιλογές"
357
+
358
+ #: admin/main-view.php:299
359
+ msgid ""
360
+ "Default style selected under the Custom Styles. Date display is disabled."
361
+ msgstr ""
362
+
363
+ #: admin/main-view.php:304
364
+ msgid "Limit post title length (in characters)"
365
+ msgstr "Όριο μήκους τίτλου άρθρου (σε χαρακτήρες)"
366
+
367
+ #: admin/main-view.php:307
368
+ msgid ""
369
+ "Any title longer than the number of characters set above will be cut and "
370
+ "appended with a &helip;"
371
+ msgstr ""
372
+
373
+ #: admin/main-view.php:311
374
+ msgid "Open links in new window"
375
+ msgstr "Άνοιγμα συνδέσμων σε νέο παράθυρο"
376
+
377
+ #: admin/main-view.php:317
378
+ msgid "Add nofollow attribute to links in the list"
379
+ msgstr ""
380
+
381
+ #: admin/main-view.php:350
382
+ msgid "Exclusion settings:"
383
+ msgstr "Ρυθμίσεις αποκλεισμού:"
384
+
385
+ #: admin/main-view.php:352
386
+ msgid "Exclude display of related posts on these posts / pages"
387
+ msgstr "Αποκλεισμός προβολής σχετικών άρθρων σε αυτά τα άρθρα / σελίδες"
388
+
389
+ #: admin/main-view.php:358
390
+ msgid "Exclude display of related posts on these post types."
391
+ msgstr "Αποκλεισμός προβολής σχετικών άρθρων σε αυτούς τους τύπους άρθρων."
392
+
393
+ #: admin/main-view.php:367
394
+ msgid ""
395
+ "The related posts will not display on any of the above selected post types"
396
+ msgstr ""
397
+ "Τα σχετικά άρθρα δε θα προβάλλονται σε κανέναν από τους παραπάνω "
398
+ "επιλεγμένους τύπους άρθρων"
399
+
400
+ #: admin/main-view.php:397
401
+ msgid "Customize the output:"
402
+ msgstr ""
403
+
404
+ #: admin/main-view.php:399
405
+ msgid "HTML to display before the list of posts: "
406
+ msgstr "HTML για προβολή πριν τον κατάλογο άρθρων:"
407
+
408
+ #: admin/main-view.php:402
409
+ msgid "HTML to display before each list item: "
410
+ msgstr "HTML για προβολή πριν από κάθε στοιχείο καταλόγου:"
411
+
412
+ #: admin/main-view.php:405
413
+ msgid "HTML to display after each list item: "
414
+ msgstr "HTML για προβολή μετά από κάθε στοιχείο καταλόγου:"
415
+
416
+ #: admin/main-view.php:408
417
+ msgid "HTML to display after the list of posts: "
418
+ msgstr "HTML για προβολή μετά τον κατάλογο άρθρων:"
419
+
420
+ #: admin/main-view.php:449 admin/main-view.php:604
421
+ msgid "Location of post thumbnail:"
422
+ msgstr "Τοποθεσία μικρογραφίας άρθρου:"
423
+
424
+ #: admin/main-view.php:453 admin/main-view.php:608
425
+ msgid "Display thumbnails inline with posts, before title"
426
+ msgstr "Προβολή μικρογραφιών σε σειρά με τα άρθρα, πριν τον τίτλο"
427
+
428
+ #: admin/main-view.php:457 admin/main-view.php:612
429
+ msgid "Display thumbnails inline with posts, after title"
430
+ msgstr "Προβολή μικρογραφιών σε σειρά με τα άρθρα, μετά τον τίτλο"
431
+
432
+ #: admin/main-view.php:461 admin/main-view.php:616
433
+ msgid "Display only thumbnails, no text"
434
+ msgstr "Προβολή μόνο μικρογραφιών, όχι κείμενο"
435
+
436
+ #: admin/main-view.php:465 admin/main-view.php:620
437
+ msgid "Do not display thumbnails, only text."
438
+ msgstr "Όχι προβολή μικρογραφιών, μόνο κείμενο."
439
+
440
+ #: admin/main-view.php:468
441
+ msgid ""
442
+ "Default style selected under the Custom Styles. Location of thumbnail forced "
443
+ "to be inline before title"
444
+ msgstr ""
445
+
446
+ #: admin/main-view.php:472
447
+ msgid "Thumbnail size:"
448
+ msgstr ""
449
+
450
+ #: admin/main-view.php:496
451
+ msgid "Custom size"
452
+ msgstr ""
453
+
454
+ #: admin/main-view.php:499
455
+ msgid ""
456
+ "You can choose from existing image sizes above or create a custom size. If "
457
+ "you have chosen Custom size above, then enter the width, height and crop "
458
+ "settings below. For best results, use a cropped image."
459
+ msgstr ""
460
+
461
+ #: admin/main-view.php:500
462
+ msgid ""
463
+ "If you change the width, height or crop mode below, existing images will not "
464
+ "be automatically resized."
465
+ msgstr ""
466
+
467
+ #: admin/main-view.php:501
468
+ #, php-format
469
+ msgid ""
470
+ "I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
471
+ "a> or <a href='%s' class='thickbox'>Regenerate Thumbnails</a> to regenerate "
472
+ "all image sizes."
473
+ msgstr ""
474
+
475
+ #: admin/main-view.php:505
476
+ msgid "Width of the thumbnail:"
477
+ msgstr ""
478
+
479
+ #: admin/main-view.php:508
480
+ msgid "Height of the thumbnail: "
481
+ msgstr ""
482
+
483
+ #: admin/main-view.php:513
484
+ msgid "Crop mode:"
485
+ msgstr "Περικοπή:"
486
+
487
+ #: admin/main-view.php:517
488
+ msgid ""
489
+ "By default, thumbnails will be hard cropped. Uncheck this box to "
490
+ "proportionately/soft crop the thumbnails."
491
+ msgstr ""
492
+
493
+ #: admin/main-view.php:518
494
+ #, php-format
495
+ msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
496
+ msgstr ""
497
+
498
+ #: admin/main-view.php:521
499
+ msgid ""
500
+ "Default style selected under the Custom Styles. Thumbnail width and height "
501
+ "is fixed at 150px and crop mode is enabled."
502
+ msgstr ""
503
+
504
+ #: admin/main-view.php:525
505
+ msgid "Style attributes / Width and Height HTML attributes:"
506
+ msgstr ""
507
+
508
+ #: admin/main-view.php:529
509
+ msgid "Style attributes are used for width and height."
510
+ msgstr ""
511
+
512
+ #: admin/main-view.php:533
513
+ msgid "HTML width and height attributes are used for width and height."
514
+ msgstr ""
515
+
516
+ #: admin/main-view.php:537
517
+ msgid "Post thumbnail meta field name:"
518
+ msgstr ""
519
+
520
+ #: admin/main-view.php:539
521
+ msgid ""
522
+ "The value of this field should contain the image source and is set in the "
523
+ "<em>Add New Post</em> screen"
524
+ msgstr ""
525
+
526
+ #: admin/main-view.php:542
527
+ msgid "Extract the first image from the post?"
528
+ msgstr ""
529
+
530
+ #: admin/main-view.php:544
531
+ msgid ""
532
+ "This will only happen if there is no post thumbnail set and no image URL is "
533
+ "specified in the meta field."
534
+ msgstr ""
535
+
536
+ #: admin/main-view.php:547
537
+ msgid "Use default thumbnail?"
538
+ msgstr "Χρήση προεπιλεγμένης μικρογραφίας;"
539
+
540
+ #: admin/main-view.php:549
541
+ msgid ""
542
+ "If checked, when no thumbnail is found, show a default one from the URL "
543
+ "below. If not checked and no thumbnail is found, no image will be shown."
544
+ msgstr ""
545
+
546
+ #: admin/main-view.php:552
547
+ msgid "Default thumbnail:"
548
+ msgstr ""
549
+
550
+ #: admin/main-view.php:555
551
+ msgid ""
552
+ "The plugin will first check if the post contains a thumbnail. If it doesn't "
553
+ "then it will check the meta field. If this is not available, then it will "
554
+ "show the default image as specified above."
555
+ msgstr ""
556
+
557
+ #: admin/main-view.php:596
558
+ msgid ""
559
+ "Below options override the related posts settings for your blog feed. These "
560
+ "only apply if you have selected to add related posts to Feeds in the General "
561
+ "Options tab."
562
+ msgstr ""
563
+
564
+ #: admin/main-view.php:624
565
+ msgid "Maximum width of the thumbnail: "
566
+ msgstr "Μέγιστο πλάτος της μικρογραφίας:"
567
+
568
+ #: admin/main-view.php:627
569
+ msgid "Maximum height of the thumbnail: "
570
+ msgstr "Μέγιστο ύψος της μικρογραφίας:"
571
+
572
+ #: admin/main-view.php:668
573
+ msgid "Use default style included in the plugin?"
574
+ msgstr "Χρήση του προεπιλεγμένου στυλ που περιλαμβάνεται στο πρόσθετο;"
575
+
576
+ #: admin/main-view.php:671
577
+ msgid ""
578
+ "Contextual Related Posts includes a default style that makes your popular "
579
+ "posts list to look beautiful. Check the box above if you want to use this."
580
+ msgstr ""
581
+
582
+ #: admin/main-view.php:672
583
+ msgid ""
584
+ "Enabling this option will turn on the thumbnails and set their width and "
585
+ "height to 150px. It will also turn off the display of the author, excerpt "
586
+ "and date if already enabled. Disabling this option will not revert any "
587
+ "settings."
588
+ msgstr ""
589
+
590
+ #: admin/main-view.php:673
591
+ #, php-format
592
+ msgid ""
593
+ "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
594
+ msgstr ""
595
+
596
+ #: admin/main-view.php:676
597
+ msgid "Custom CSS to add to header:"
598
+ msgstr "Σύνδεσμος CSS για προσθήκη στην επικεφαλίδα:"
599
+
600
+ #: admin/main-view.php:680
601
+ msgid ""
602
+ "Do not include <code>style</code> tags. Check out the <a href=\"http://"
603
+ "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
604
+ "\">FAQ</a> for available CSS classes to style."
605
+ msgstr ""
606
+
607
+ #: admin/main-view.php:710
608
+ msgid "Default Options"
609
+ msgstr "Προεπιλεγμένες Επιλογές "
610
+
611
+ #: admin/main-view.php:710
612
+ msgid "Do you want to set options to Default?"
613
+ msgstr "Θέλετε να ορίσετε τις επιλογές ως Προεπιλογές;"
614
+
615
+ #: admin/main-view.php:711
616
+ msgid "Recreate Index"
617
+ msgstr ""
618
+
619
+ #: admin/main-view.php:711
620
+ msgid "Are you sure you want to recreate the index?"
621
+ msgstr ""
622
+
623
+ #: admin/sidebar-view.php:20
624
+ msgid "Support the development"
625
+ msgstr ""
626
+
627
+ #: admin/sidebar-view.php:27
628
+ msgid "Donation for Contextual Related Posts"
629
+ msgstr ""
630
+
631
+ #: admin/sidebar-view.php:29
632
+ msgid "Enter amount in USD:"
633
+ msgstr ""
634
+
635
+ #: admin/sidebar-view.php:33
636
+ msgid "Send your donation to the author of"
637
+ msgstr "Αποστολή της δωρεάς σας στον συντάκτη του"
638
+
639
+ #: admin/sidebar-view.php:41
640
+ msgid "Follow me"
641
+ msgstr ""
642
+
643
+ #: admin/sidebar-view.php:53
644
+ msgid "Quick links"
645
+ msgstr ""
646
+
647
+ #: admin/sidebar-view.php:57
648
+ msgid "Contextual Related Posts plugin page"
649
+ msgstr ""
650
+
651
+ #: admin/sidebar-view.php:58
652
+ msgid "FAQ"
653
+ msgstr "Κοινές απορίες"
654
+
655
+ #: admin/sidebar-view.php:60
656
+ msgid "Reviews"
657
+ msgstr "Κριτικές"
658
+
659
+ #: admin/sidebar-view.php:61
660
+ msgid "Github repository"
661
+ msgstr "Αποθετήριο Github"
662
+
663
+ #: admin/sidebar-view.php:62
664
+ msgid "Other plugins"
665
+ msgstr "Άλλα πρόσθετα"
666
+
667
+ #: admin/sidebar-view.php:63
668
+ msgid "Ajay's blog"
669
+ msgstr ""
670
+
671
+ #: contextual-related-posts.php:250
672
+ msgid " by "
673
+ msgstr ""
674
+
675
+ #: contextual-related-posts.php:289
676
+ #, php-format
677
+ msgid "Powered by <a href=\"%s\" rel=\"nofollow\">Contextual Related Posts</a>"
678
+ msgstr ""
679
+
680
+ #: contextual-related-posts.php:670
681
+ msgid "Related Posts [CRP]"
682
+ msgstr "Σχετικά Άρθρα [CRP]"
683
+
684
+ #: contextual-related-posts.php:671
685
+ msgid "Display Related Posts"
686
+ msgstr "Προβολή Σχετικών Άρθρων"
687
+
688
+ #: contextual-related-posts.php:694
689
+ msgid "Title"
690
+ msgstr "Τίτλος:"
691
+
692
+ #: contextual-related-posts.php:699
693
+ msgid "No. of posts"
694
+ msgstr "Αρ. άρθρων"
695
+
696
+ #: contextual-related-posts.php:704
697
+ msgid " Show excerpt?"
698
+ msgstr "Προβολή αποσπασμάτων;"
699
+
700
+ #: contextual-related-posts.php:709
701
+ msgid " Show author?"
702
+ msgstr "Προβολή συντάκτη;"
703
+
704
+ #: contextual-related-posts.php:714
705
+ msgid " Show date?"
706
+ msgstr "Προβολή ημερομηνίας;"
707
+
708
+ #: contextual-related-posts.php:720
709
+ msgid "Thumbnails inline, before title"
710
+ msgstr "Μικρογραφίες σε σειρά, πριν τον τίτλο"
711
+
712
+ #: contextual-related-posts.php:721
713
+ msgid "Thumbnails inline, after title"
714
+ msgstr "Μικρογραφίες σε σειρά, μετά τον τίτλο"
715
+
716
+ #: contextual-related-posts.php:722
717
+ msgid "Only thumbnails, no text"
718
+ msgstr "Μόνο μικρογραφίες, όχι κείμενο."
719
+
720
+ #: contextual-related-posts.php:723
721
+ msgid "No thumbnails, only text."
722
+ msgstr "Όχι μικρογραφίες, μόνο κείμενο."
723
+
724
+ #: contextual-related-posts.php:728
725
+ msgid "Thumbnail height"
726
+ msgstr "Ύψος μικρογραφίας "
727
+
728
+ #: contextual-related-posts.php:733
729
+ msgid "Thumbnail width"
730
+ msgstr "Πλάτος μικρογραφίας "
731
+
732
+ #: contextual-related-posts.php:897
733
+ msgid "<h3>Related Posts:</h3>"
734
+ msgstr "<h3>Σχετικά Άρθρα:</h3>"
735
+
736
+ #: contextual-related-posts.php:899
737
+ msgid "No related posts found"
738
+ msgstr "Δεν βρέθηκαν σχετικά άρθρα."
739
+
740
+ #: contextual-related-posts.php:1211
741
+ msgid "thumb_timthumb argument has been deprecated"
742
+ msgstr ""
743
+
744
+ #: contextual-related-posts.php:1215
745
+ msgid "thumb_timthumb_q argument has been deprecated"
746
+ msgstr ""
747
+
748
+ #: contextual-related-posts.php:1219
749
+ msgid "filter argument has been deprecated"
750
+ msgstr ""
751
+
752
+ #~ msgid "Post thumbnail options:"
753
+ #~ msgstr "Επιλογές μικρογραφιών άρθρου:"
754
+
755
+ #~ msgid ""
756
+ #~ "If you change the width and/or height below, existing images will not be "
757
+ #~ "automatically resized."
758
+ #~ msgstr ""
759
+ #~ "Αν αλλάξετε το πλάτος και/ή το ύψος παρακάτω, δε θα αλλάξει αυτόματα το "
760
+ #~ "μέγεθος των υπάρχουσων εικόνων."
761
+
762
+ #~ msgid ""
763
+ #~ "I recommend using <a href='%s' target='_blank'>Force Regenerate "
764
+ #~ "Thumbnails</a> to regenerate all image sizes."
765
+ #~ msgstr ""
766
+ #~ "Συστήνω τη χρήση <a href='%s' target='_blank'>Force Regenerate "
767
+ #~ "Thumbnails</a> για να ανανεώσετε όλα τα μεγέθη εικόνων."
768
+
769
+ #~ msgid "Maximum width of the thumbnail:"
770
+ #~ msgstr "Μέγιστο πλάτος μικρογραφίας:"
languages/crp-en_US.mo CHANGED
Binary file
languages/crp-en_US.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-09-04 20:40-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
@@ -12,332 +12,290 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e;_c;__ngettext\n"
14
  "X-Poedit-Basepath: ../\n"
15
- "X-Generator: Poedit 1.6.9\n"
 
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin/admin.php:161
19
  msgid "Options saved successfully."
20
  msgstr ""
21
 
22
- #: admin/admin.php:181
 
 
 
 
 
 
23
  msgid "Options set to Default."
24
  msgstr ""
25
 
26
- #: admin/admin.php:192
27
  msgid "Index recreated"
28
  msgstr ""
29
 
30
- #: admin/admin.php:209 admin/admin.php:419 admin/main-view.php:20
31
  msgid "Contextual Related Posts"
32
  msgstr ""
33
 
34
- #: admin/admin.php:210
35
  msgid "Related Posts"
36
  msgstr ""
37
 
38
- #: admin/admin.php:321
39
  msgid "Settings"
40
  msgstr ""
41
 
42
- #: admin/admin.php:343 admin/sidebar-view.php:58
43
  msgid "Support"
44
  msgstr ""
45
 
46
- #: admin/admin.php:344
47
  msgid "Donate"
48
  msgstr ""
49
 
50
- #: admin/admin.php:345
51
  msgid "Contribute"
52
  msgstr ""
53
 
54
- #: admin/admin.php:361
55
  msgid "plugin settings page"
56
  msgstr ""
57
 
58
- #: admin/admin.php:395
59
  msgid ""
60
  "An error occurred clearing the cache. Please contact your site administrator."
61
  "\\n\\nError message:\\n"
62
  msgstr ""
63
 
64
- #: admin/admin.php:400
65
  msgid " cached row(s) cleared"
66
  msgstr ""
67
 
68
- #: admin/admin.php:446
69
  msgid "Location of thumbnail:"
70
  msgstr ""
71
 
72
- #: admin/admin.php:448
73
  msgid ""
74
  "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
75
  "image will be used for the post. It will be resized to the thumbnail size "
76
  "set under Settings &raquo; Related Posts &raquo; Output Options"
77
  msgstr ""
78
 
79
- #: admin/admin.php:449
80
  msgid "The URL above is saved in the meta field: "
81
  msgstr ""
82
 
83
- #: admin/main-view.php:32 admin/main-view.php:51
84
  msgid "General options"
85
  msgstr ""
86
 
87
- #: admin/main-view.php:33 admin/main-view.php:60
88
- msgid "Output options"
89
- msgstr ""
90
-
91
- #: admin/main-view.php:34 admin/main-view.php:69
92
- msgid "Feed options"
93
  msgstr ""
94
 
95
- #: admin/main-view.php:35 admin/main-view.php:77
96
- msgid "Custom styles"
97
- msgstr ""
98
-
99
- #: admin/main-view.php:95
100
- msgid "Save Options"
101
- msgstr ""
102
-
103
- #: admin/main-view.php:96
104
- msgid "Default Options"
105
  msgstr ""
106
 
107
- #: admin/main-view.php:96
108
- msgid "Do you want to set options to Default?"
 
109
  msgstr ""
110
 
111
- #: admin/main-view.php:97
112
- msgid "Recreate Index"
113
  msgstr ""
114
 
115
- #: admin/main-view.php:97
116
- msgid "Are you sure you want to recreate the index?"
117
  msgstr ""
118
 
119
- #: admin/options-custom-styles.php:32
120
- msgid "Use default style included in the plugin?"
121
  msgstr ""
122
 
123
- #: admin/options-custom-styles.php:35
124
  msgid ""
125
- "Contextual Related Posts includes a default style that makes your popular "
126
- "posts list to look beautiful. Check the box above if you want to use this."
127
  msgstr ""
128
 
129
- #: admin/options-custom-styles.php:36
130
- msgid ""
131
- "Enabling this option will turn on the thumbnails and set their width and "
132
- "height to 150px. It will also turn off the display of the author, excerpt "
133
- "and date if already enabled. Disabling this option will not revert any "
134
- "settings."
135
  msgstr ""
136
 
137
- #: admin/options-custom-styles.php:39
138
- msgid "Custom CSS to add to header:"
139
  msgstr ""
140
 
141
- #: admin/options-custom-styles.php:43
142
- msgid ""
143
- "Do not include <code>style</code> tags. Check out the <a href=\"http://"
144
- "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
145
- "\">FAQ</a> for available CSS classes to style."
146
  msgstr ""
147
 
148
- #: admin/options-feed.php:32
149
- msgid ""
150
- "Below options override the related posts settings for your blog feed. These "
151
- "only apply if you have selected to add related posts to Feeds in the General "
152
- "Options tab."
153
  msgstr ""
154
 
155
- #: admin/options-feed.php:34 admin/options-genops.php:39
156
- msgid "Number of related posts to display: "
157
  msgstr ""
158
 
159
- #: admin/options-feed.php:37 admin/options-output.php:52
160
- msgid "Show post excerpt in list?"
161
  msgstr ""
162
 
163
- #: admin/options-feed.php:40 admin/options-output.php:239
164
- msgid "Location of post thumbnail:"
165
  msgstr ""
166
 
167
- #: admin/options-feed.php:44 admin/options-output.php:243
168
- msgid "Display thumbnails inline with posts, before title"
169
  msgstr ""
170
 
171
- #: admin/options-feed.php:48 admin/options-output.php:247
172
- msgid "Display thumbnails inline with posts, after title"
173
  msgstr ""
174
 
175
- #: admin/options-feed.php:52 admin/options-output.php:251
176
- msgid "Display only thumbnails, no text"
 
 
 
177
  msgstr ""
178
 
179
- #: admin/options-feed.php:56 admin/options-output.php:255
180
- msgid "Do not display thumbnails, only text."
181
  msgstr ""
182
 
183
- #: admin/options-feed.php:60
184
- msgid "Maximum width of the thumbnail: "
 
 
185
  msgstr ""
186
 
187
- #: admin/options-feed.php:63 admin/options-output.php:270
188
- msgid "Maximum height of the thumbnail: "
189
  msgstr ""
190
 
191
- #: admin/options-genops.php:32
192
- msgid "Cache output?"
193
  msgstr ""
194
 
195
- #: admin/options-genops.php:34
196
  msgid ""
197
- "Enabling this option will cache the related posts output when the post is "
198
- "visited the first time. The cache is cleaned when you save this page."
199
  msgstr ""
200
 
201
- #: admin/options-genops.php:35
202
- msgid "Clear cache"
 
203
  msgstr ""
204
 
205
- #: admin/options-genops.php:42
 
 
 
 
206
  msgid ""
207
  "Maximum number of posts that will be displayed. The actual number may be "
208
  "smaller if less related posts are found."
209
  msgstr ""
210
 
211
- #: admin/options-genops.php:46
212
  msgid "Related posts should be newer than:"
213
  msgstr ""
214
 
215
- #: admin/options-genops.php:48
216
  msgid "days"
217
  msgstr ""
218
 
219
- #: admin/options-genops.php:49
220
  msgid ""
221
  "This sets the cutoff period for which posts will be displayed. e.g. setting "
222
- "it to 365 will show related posts from the last year only."
223
- msgstr ""
224
-
225
- #: admin/options-genops.php:53
226
- msgid "Post types to include in results:"
227
- msgstr ""
228
-
229
- #: admin/options-genops.php:64
230
- msgid ""
231
- "These post types will be displayed in the list. Includes custom post types."
232
  msgstr ""
233
 
234
- #: admin/options-genops.php:68
235
  msgid "Find related posts based on content as well as title:"
236
  msgstr ""
237
 
238
- #: admin/options-genops.php:70
239
  msgid ""
240
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
241
  "or enabling \"Cache output\" above if you enable this."
242
  msgstr ""
243
 
244
- #: admin/options-genops.php:74
245
  msgid "Limit content to be compared"
246
  msgstr ""
247
 
248
- #: admin/options-genops.php:76
249
  msgid ""
250
  "This sets the maximum words of the content that will be matched. 0 means no "
251
  "limit."
252
  msgstr ""
253
 
254
- #: admin/options-genops.php:80
255
- msgid "Add related posts to:"
256
- msgstr ""
257
-
258
- #: admin/options-genops.php:82
259
- msgid "Posts"
260
- msgstr ""
261
-
262
- #: admin/options-genops.php:83
263
- msgid "Pages"
264
- msgstr ""
265
-
266
- #: admin/options-genops.php:84
267
- msgid "Home page"
268
- msgstr ""
269
-
270
- #: admin/options-genops.php:85
271
- msgid "Feeds"
272
- msgstr ""
273
-
274
- #: admin/options-genops.php:86
275
- msgid "Category archives"
276
- msgstr ""
277
-
278
- #: admin/options-genops.php:87
279
- msgid "Tag archives"
280
- msgstr ""
281
-
282
- #: admin/options-genops.php:88
283
- msgid "Other archives"
284
  msgstr ""
285
 
286
- #: admin/options-genops.php:89
287
  msgid ""
288
- "If you choose to disable this, please add <code>&lt;?php if "
289
- "( function_exists( 'echo_ald_crp' ) ) echo_ald_crp(); ?&gt;</code> to your "
290
- "template file where you want it displayed"
291
  msgstr ""
292
 
293
- #: admin/options-genops.php:93
294
- msgid "Content filter priority:"
295
  msgstr ""
296
 
297
- #: admin/options-genops.php:96
298
  msgid ""
299
- "A higher number will cause the content above to be processed after other "
300
- "filters. Number below 10 is not recommended."
301
- msgstr ""
302
-
303
- #: admin/options-genops.php:100
304
- msgid "Tell the world you're using Contextual Related Posts:"
305
  msgstr ""
306
 
307
- #: admin/options-genops.php:102
308
- msgid " <em>Optional</em>"
309
  msgstr ""
310
 
311
- #: admin/options-genops.php:103
312
  msgid ""
313
- "Adds a nofollow link to Contextual Related Posts homepage as the last time "
314
- "in the list."
 
315
  msgstr ""
316
 
317
- #: admin/options-output.php:32
318
  msgid "Title of related posts: "
319
  msgstr ""
320
 
321
- #: admin/options-output.php:35
322
  msgid ""
323
  "This is the main heading of the related posts. You can also display the "
324
  "current post title by using <code>%postname%</code>. e.g. <code>Related "
325
  "Posts to %postname%</code>"
326
  msgstr ""
327
 
328
- #: admin/options-output.php:39
329
  msgid "When there are no posts, what should be shown?"
330
  msgstr ""
331
 
332
- #: admin/options-output.php:43
333
  msgid "Blank Output"
334
  msgstr ""
335
 
336
- #: admin/options-output.php:47
337
  msgid "Display:"
338
  msgstr ""
339
 
340
- #: admin/options-output.php:55
 
 
 
 
341
  #, php-format
342
  msgid ""
343
  "Displays the excerpt of the post. If you do not provide an explicit excerpt "
@@ -345,223 +303,301 @@ msgid ""
345
  "automatic excerpt which refers to the first %d words of the post's content"
346
  msgstr ""
347
 
348
- #: admin/options-output.php:59
 
 
 
 
 
349
  msgid "Length of excerpt (in words): "
350
  msgstr ""
351
 
352
- #: admin/options-output.php:65
353
  msgid "Show post author in list?"
354
  msgstr ""
355
 
356
- #: admin/options-output.php:68
357
  msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
358
  msgstr ""
359
 
360
- #: admin/options-output.php:72
 
 
 
 
 
361
  msgid "Show post date in list?"
362
  msgstr ""
363
 
364
- #: admin/options-output.php:75
365
  msgid ""
366
  "Displays the date of the post. Uses the same date format set in General "
367
  "Options"
368
  msgstr ""
369
 
370
- #: admin/options-output.php:79
 
 
 
 
 
371
  msgid "Limit post title length (in characters)"
372
  msgstr ""
373
 
374
- #: admin/options-output.php:82
375
  msgid ""
376
  "Any title longer than the number of characters set above will be cut and "
377
  "appended with a &helip;"
378
  msgstr ""
379
 
380
- #: admin/options-output.php:86
381
  msgid "Open links in new window"
382
  msgstr ""
383
 
384
- #: admin/options-output.php:92
385
  msgid "Add nofollow attribute to links in the list"
386
  msgstr ""
387
 
388
- #: admin/options-output.php:125
389
  msgid "Exclusion settings:"
390
  msgstr ""
391
 
392
- #: admin/options-output.php:127
393
- msgid "List of post or page IDs to exclude from the results:"
394
- msgstr ""
395
-
396
- #: admin/options-output.php:129 admin/options-output.php:135
397
- msgid ""
398
- "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
399
- msgstr ""
400
-
401
- #: admin/options-output.php:132
402
  msgid "Exclude display of related posts on these posts / pages"
403
  msgstr ""
404
 
405
- #: admin/options-output.php:138
406
- msgid "Categories to exclude from the results: "
407
- msgstr ""
408
-
409
- #: admin/options-output.php:154
410
- msgid ""
411
- "Comma separated list of category slugs. The field above has an autocomplete "
412
- "so simply start typing in the beginning of your category name and it will "
413
- "prompt you with options."
414
- msgstr ""
415
-
416
- #: admin/options-output.php:157
417
  msgid "Exclude display of related posts on these post types."
418
  msgstr ""
419
 
420
- #: admin/options-output.php:166
421
  msgid ""
422
  "The related posts will not display on any of the above selected post types"
423
  msgstr ""
424
 
425
- #: admin/options-output.php:196
426
  msgid "Customize the output:"
427
  msgstr ""
428
 
429
- #: admin/options-output.php:198
430
  msgid "HTML to display before the list of posts: "
431
  msgstr ""
432
 
433
- #: admin/options-output.php:201
434
  msgid "HTML to display before each list item: "
435
  msgstr ""
436
 
437
- #: admin/options-output.php:204
438
  msgid "HTML to display after each list item: "
439
  msgstr ""
440
 
441
- #: admin/options-output.php:207
442
  msgid "HTML to display after the list of posts: "
443
  msgstr ""
444
 
445
- #: admin/options-output.php:237
446
- msgid "Post thumbnail options:"
447
  msgstr ""
448
 
449
- #: admin/options-output.php:261
450
- msgid ""
451
- "Contextual Related Posts adds a new image size with the below dimensions."
452
  msgstr ""
453
 
454
- #: admin/options-output.php:262
455
- msgid ""
456
- "If you change the width and/or height below, existing images will not be "
457
- "automatically resized."
458
  msgstr ""
459
 
460
- #: admin/options-output.php:263
461
- #, php-format
462
- msgid ""
463
- "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
464
- "a> to regenerate all image sizes."
465
  msgstr ""
466
 
467
- #: admin/options-output.php:267
468
- msgid "Maximum width of the thumbnail:"
469
  msgstr ""
470
 
471
- #: admin/options-output.php:274
472
  msgid ""
473
- "Since you're using the default styles set under the Custom Styles section, "
474
- "the width and height is fixed at 150px"
475
  msgstr ""
476
 
477
- #: admin/options-output.php:278
478
- msgid "Crop mode:"
 
 
 
 
479
  msgstr ""
480
 
481
- #: admin/options-output.php:282
482
  msgid ""
483
- "By default, thumbnails will be proportionately cropped. Check this box to "
484
- "hard crop the thumbnails."
 
485
  msgstr ""
486
 
487
- #: admin/options-output.php:283
488
- #, php-format
489
- msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
 
490
  msgstr ""
491
 
492
- #: admin/options-output.php:287
493
- msgid "Style attributes / Width and Height HTML attributes:"
 
 
 
 
494
  msgstr ""
495
 
496
- #: admin/options-output.php:291
497
- msgid "Style attributes are used for width and height."
498
  msgstr ""
499
 
500
- #: admin/options-output.php:295
501
- msgid "HTML width and height attributes are used for width and height."
502
  msgstr ""
503
 
504
- #: admin/options-output.php:299
505
- msgid "Use timthumb to generate thumbnails? "
506
  msgstr ""
507
 
508
- #: admin/options-output.php:301
509
  msgid ""
510
- "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
511
- "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
512
  msgstr ""
513
 
514
- #: admin/options-output.php:304
515
- msgid "Quality of thumbnails generated by timthumb:"
 
516
  msgstr ""
517
 
518
- #: admin/options-output.php:307
519
  msgid ""
520
- "Enter values between 0 and 100 only. 100 is highest quality and the highest "
521
- "file size. Suggested maximum value is 95. CRP default is 75."
 
 
 
 
 
 
 
 
 
 
 
 
522
  msgstr ""
523
 
524
- #: admin/options-output.php:310
525
  msgid "Post thumbnail meta field name:"
526
  msgstr ""
527
 
528
- #: admin/options-output.php:312
529
  msgid ""
530
  "The value of this field should contain the image source and is set in the "
531
  "<em>Add New Post</em> screen"
532
  msgstr ""
533
 
534
- #: admin/options-output.php:315
535
  msgid "Extract the first image from the post?"
536
  msgstr ""
537
 
538
- #: admin/options-output.php:317
539
  msgid ""
540
  "This will only happen if there is no post thumbnail set and no image URL is "
541
  "specified in the meta field."
542
  msgstr ""
543
 
544
- #: admin/options-output.php:320
545
  msgid "Use default thumbnail?"
546
  msgstr ""
547
 
548
- #: admin/options-output.php:322
549
  msgid ""
550
  "If checked, when no thumbnail is found, show a default one from the URL "
551
  "below. If not checked and no thumbnail is found, no image will be shown."
552
  msgstr ""
553
 
554
- #: admin/options-output.php:325
555
  msgid "Default thumbnail:"
556
  msgstr ""
557
 
558
- #: admin/options-output.php:328
559
  msgid ""
560
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
561
  "then it will check the meta field. If this is not available, then it will "
562
  "show the default image as specified above."
563
  msgstr ""
564
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
565
  #: admin/sidebar-view.php:20
566
  msgid "Support the development"
567
  msgstr ""
@@ -582,103 +618,111 @@ msgstr ""
582
  msgid "Follow me"
583
  msgstr ""
584
 
585
- #: admin/sidebar-view.php:52
586
  msgid "Quick links"
587
  msgstr ""
588
 
589
- #: admin/sidebar-view.php:56
590
  msgid "Contextual Related Posts plugin page"
591
  msgstr ""
592
 
593
- #: admin/sidebar-view.php:57
594
  msgid "FAQ"
595
  msgstr ""
596
 
597
- #: admin/sidebar-view.php:59
598
  msgid "Reviews"
599
  msgstr ""
600
 
601
- #: admin/sidebar-view.php:60
602
  msgid "Github repository"
603
  msgstr ""
604
 
605
- #: admin/sidebar-view.php:61
606
  msgid "Other plugins"
607
  msgstr ""
608
 
609
- #: admin/sidebar-view.php:62
610
  msgid "Ajay's blog"
611
  msgstr ""
612
 
613
- #: contextual-related-posts.php:246
614
  msgid " by "
615
  msgstr ""
616
 
617
- #: contextual-related-posts.php:285
618
  #, php-format
619
  msgid "Powered by <a href=\"%s\" rel=\"nofollow\">Contextual Related Posts</a>"
620
  msgstr ""
621
 
622
- #: contextual-related-posts.php:596
623
  msgid "Related Posts [CRP]"
624
  msgstr ""
625
 
626
- #: contextual-related-posts.php:597
627
  msgid "Display Related Posts"
628
  msgstr ""
629
 
630
- #: contextual-related-posts.php:620
631
  msgid "Title"
632
  msgstr ""
633
 
634
- #: contextual-related-posts.php:625
635
  msgid "No. of posts"
636
  msgstr ""
637
 
638
- #: contextual-related-posts.php:630
639
  msgid " Show excerpt?"
640
  msgstr ""
641
 
642
- #: contextual-related-posts.php:635
643
  msgid " Show author?"
644
  msgstr ""
645
 
646
- #: contextual-related-posts.php:640
647
  msgid " Show date?"
648
  msgstr ""
649
 
650
- #: contextual-related-posts.php:644
651
- msgid "Thumbnail options"
652
- msgstr ""
653
-
654
- #: contextual-related-posts.php:646
655
  msgid "Thumbnails inline, before title"
656
  msgstr ""
657
 
658
- #: contextual-related-posts.php:647
659
  msgid "Thumbnails inline, after title"
660
  msgstr ""
661
 
662
- #: contextual-related-posts.php:648
663
  msgid "Only thumbnails, no text"
664
  msgstr ""
665
 
666
- #: contextual-related-posts.php:649
667
  msgid "No thumbnails, only text."
668
  msgstr ""
669
 
670
- #: contextual-related-posts.php:654
671
  msgid "Thumbnail height"
672
  msgstr ""
673
 
674
- #: contextual-related-posts.php:659
675
  msgid "Thumbnail width"
676
  msgstr ""
677
 
678
- #: contextual-related-posts.php:799
679
  msgid "<h3>Related Posts:</h3>"
680
  msgstr ""
681
 
682
- #: contextual-related-posts.php:801
683
  msgid "No related posts found"
684
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-05-09 22:20-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e;_c;__ngettext\n"
14
  "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.7.1\n"
16
+ "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: admin/admin.php:166
20
  msgid "Options saved successfully."
21
  msgstr ""
22
 
23
+ #: admin/admin.php:169
24
+ msgid ""
25
+ "Default styles selected. Thumbnail width, height and crop settings have been "
26
+ "fixed. Author, Excerpt and Date will not be displayed."
27
+ msgstr ""
28
+
29
+ #: admin/admin.php:194
30
  msgid "Options set to Default."
31
  msgstr ""
32
 
33
+ #: admin/admin.php:205
34
  msgid "Index recreated"
35
  msgstr ""
36
 
37
+ #: admin/admin.php:222 admin/admin.php:453 admin/main-view.php:20
38
  msgid "Contextual Related Posts"
39
  msgstr ""
40
 
41
+ #: admin/admin.php:223
42
  msgid "Related Posts"
43
  msgstr ""
44
 
45
+ #: admin/admin.php:338
46
  msgid "Settings"
47
  msgstr ""
48
 
49
+ #: admin/admin.php:360 admin/sidebar-view.php:59
50
  msgid "Support"
51
  msgstr ""
52
 
53
+ #: admin/admin.php:361
54
  msgid "Donate"
55
  msgstr ""
56
 
57
+ #: admin/admin.php:362
58
  msgid "Contribute"
59
  msgstr ""
60
 
61
+ #: admin/admin.php:378
62
  msgid "plugin settings page"
63
  msgstr ""
64
 
65
+ #: admin/admin.php:422
66
  msgid ""
67
  "An error occurred clearing the cache. Please contact your site administrator."
68
  "\\n\\nError message:\\n"
69
  msgstr ""
70
 
71
+ #: admin/admin.php:427
72
  msgid " cached row(s) cleared"
73
  msgstr ""
74
 
75
+ #: admin/admin.php:480
76
  msgid "Location of thumbnail:"
77
  msgstr ""
78
 
79
+ #: admin/admin.php:482
80
  msgid ""
81
  "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
82
  "image will be used for the post. It will be resized to the thumbnail size "
83
  "set under Settings &raquo; Related Posts &raquo; Output Options"
84
  msgstr ""
85
 
86
+ #: admin/admin.php:483
87
  msgid "The URL above is saved in the meta field: "
88
  msgstr ""
89
 
90
+ #: admin/main-view.php:32 admin/main-view.php:54
91
  msgid "General options"
92
  msgstr ""
93
 
94
+ #: admin/main-view.php:33 admin/main-view.php:125
95
+ msgid "List tuning options"
 
 
 
 
96
  msgstr ""
97
 
98
+ #: admin/main-view.php:34 admin/main-view.php:229
99
+ msgid "Output options"
 
 
 
 
 
 
 
 
100
  msgstr ""
101
 
102
+ #: admin/main-view.php:35 admin/main-view.php:433
103
+ #: contextual-related-posts.php:718
104
+ msgid "Thumbnail options"
105
  msgstr ""
106
 
107
+ #: admin/main-view.php:36 admin/main-view.php:580
108
+ msgid "Feed options"
109
  msgstr ""
110
 
111
+ #: admin/main-view.php:37 admin/main-view.php:652
112
+ msgid "Custom styles"
113
  msgstr ""
114
 
115
+ #: admin/main-view.php:70
116
+ msgid "Cache output?"
117
  msgstr ""
118
 
119
+ #: admin/main-view.php:72
120
  msgid ""
121
+ "Enabling this option will cache the related posts output when the post is "
122
+ "visited the first time. The cache is cleaned when you save this page."
123
  msgstr ""
124
 
125
+ #: admin/main-view.php:73
126
+ msgid "Clear cache"
 
 
 
 
127
  msgstr ""
128
 
129
+ #: admin/main-view.php:77
130
+ msgid "Add related posts to:"
131
  msgstr ""
132
 
133
+ #: admin/main-view.php:79
134
+ msgid "Posts"
 
 
 
135
  msgstr ""
136
 
137
+ #: admin/main-view.php:80
138
+ msgid "Pages"
 
 
 
139
  msgstr ""
140
 
141
+ #: admin/main-view.php:81
142
+ msgid "Home page"
143
  msgstr ""
144
 
145
+ #: admin/main-view.php:82
146
+ msgid "Feeds"
147
  msgstr ""
148
 
149
+ #: admin/main-view.php:83
150
+ msgid "Category archives"
151
  msgstr ""
152
 
153
+ #: admin/main-view.php:84
154
+ msgid "Tag archives"
155
  msgstr ""
156
 
157
+ #: admin/main-view.php:85
158
+ msgid "Other archives"
159
  msgstr ""
160
 
161
+ #: admin/main-view.php:86
162
+ msgid ""
163
+ "If you choose to disable this, please add <code>&lt;?php if "
164
+ "( function_exists( 'echo_ald_crp' ) ) echo_ald_crp(); ?&gt;</code> to your "
165
+ "template file where you want it displayed"
166
  msgstr ""
167
 
168
+ #: admin/main-view.php:90
169
+ msgid "Content filter priority:"
170
  msgstr ""
171
 
172
+ #: admin/main-view.php:93
173
+ msgid ""
174
+ "A higher number will cause the content above to be processed after other "
175
+ "filters. Number below 10 is not recommended."
176
  msgstr ""
177
 
178
+ #: admin/main-view.php:97
179
+ msgid "Tell the world you're using Contextual Related Posts:"
180
  msgstr ""
181
 
182
+ #: admin/main-view.php:99
183
+ msgid " <em>Optional</em>"
184
  msgstr ""
185
 
186
+ #: admin/main-view.php:100
187
  msgid ""
188
+ "Adds a nofollow link to Contextual Related Posts homepage as the last time "
189
+ "in the list."
190
  msgstr ""
191
 
192
+ #: admin/main-view.php:118 admin/main-view.php:222 admin/main-view.php:426
193
+ #: admin/main-view.php:573 admin/main-view.php:645 admin/main-view.php:709
194
+ msgid "Save Options"
195
  msgstr ""
196
 
197
+ #: admin/main-view.php:141 admin/main-view.php:598
198
+ msgid "Number of related posts to display: "
199
+ msgstr ""
200
+
201
+ #: admin/main-view.php:144
202
  msgid ""
203
  "Maximum number of posts that will be displayed. The actual number may be "
204
  "smaller if less related posts are found."
205
  msgstr ""
206
 
207
+ #: admin/main-view.php:148
208
  msgid "Related posts should be newer than:"
209
  msgstr ""
210
 
211
+ #: admin/main-view.php:150
212
  msgid "days"
213
  msgstr ""
214
 
215
+ #: admin/main-view.php:151
216
  msgid ""
217
  "This sets the cutoff period for which posts will be displayed. e.g. setting "
218
+ "it to 365 will show related posts from the last year only. Set it to 0 to "
219
+ "disable limiting posts."
 
 
 
 
 
 
 
 
220
  msgstr ""
221
 
222
+ #: admin/main-view.php:155
223
  msgid "Find related posts based on content as well as title:"
224
  msgstr ""
225
 
226
+ #: admin/main-view.php:157
227
  msgid ""
228
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
229
  "or enabling \"Cache output\" above if you enable this."
230
  msgstr ""
231
 
232
+ #: admin/main-view.php:161
233
  msgid "Limit content to be compared"
234
  msgstr ""
235
 
236
+ #: admin/main-view.php:163
237
  msgid ""
238
  "This sets the maximum words of the content that will be matched. 0 means no "
239
  "limit."
240
  msgstr ""
241
 
242
+ #: admin/main-view.php:167
243
+ msgid "Post types to include in results:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
244
  msgstr ""
245
 
246
+ #: admin/main-view.php:178
247
  msgid ""
248
+ "These post types will be displayed in the list. Includes custom post types."
 
 
249
  msgstr ""
250
 
251
+ #: admin/main-view.php:182
252
+ msgid "List of post or page IDs to exclude from the results:"
253
  msgstr ""
254
 
255
+ #: admin/main-view.php:184 admin/main-view.php:355
256
  msgid ""
257
+ "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
 
 
 
 
 
258
  msgstr ""
259
 
260
+ #: admin/main-view.php:188
261
+ msgid "Categories to exclude from the results: "
262
  msgstr ""
263
 
264
+ #: admin/main-view.php:204
265
  msgid ""
266
+ "Comma separated list of category slugs. The field above has an autocomplete "
267
+ "so simply start typing in the beginning of your category name and it will "
268
+ "prompt you with options."
269
  msgstr ""
270
 
271
+ #: admin/main-view.php:245
272
  msgid "Title of related posts: "
273
  msgstr ""
274
 
275
+ #: admin/main-view.php:248
276
  msgid ""
277
  "This is the main heading of the related posts. You can also display the "
278
  "current post title by using <code>%postname%</code>. e.g. <code>Related "
279
  "Posts to %postname%</code>"
280
  msgstr ""
281
 
282
+ #: admin/main-view.php:252
283
  msgid "When there are no posts, what should be shown?"
284
  msgstr ""
285
 
286
+ #: admin/main-view.php:256
287
  msgid "Blank Output"
288
  msgstr ""
289
 
290
+ #: admin/main-view.php:260
291
  msgid "Display:"
292
  msgstr ""
293
 
294
+ #: admin/main-view.php:265 admin/main-view.php:601
295
+ msgid "Show post excerpt in list?"
296
+ msgstr ""
297
+
298
+ #: admin/main-view.php:268
299
  #, php-format
300
  msgid ""
301
  "Displays the excerpt of the post. If you do not provide an explicit excerpt "
303
  "automatic excerpt which refers to the first %d words of the post's content"
304
  msgstr ""
305
 
306
+ #: admin/main-view.php:271
307
+ msgid ""
308
+ "Default style selected under the Custom Styles. Excerpt display is disabled."
309
+ msgstr ""
310
+
311
+ #: admin/main-view.php:276
312
  msgid "Length of excerpt (in words): "
313
  msgstr ""
314
 
315
+ #: admin/main-view.php:282
316
  msgid "Show post author in list?"
317
  msgstr ""
318
 
319
+ #: admin/main-view.php:285
320
  msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
321
  msgstr ""
322
 
323
+ #: admin/main-view.php:288
324
+ msgid ""
325
+ "Default style selected under the Custom Styles. Author display is disabled."
326
+ msgstr ""
327
+
328
+ #: admin/main-view.php:293
329
  msgid "Show post date in list?"
330
  msgstr ""
331
 
332
+ #: admin/main-view.php:296
333
  msgid ""
334
  "Displays the date of the post. Uses the same date format set in General "
335
  "Options"
336
  msgstr ""
337
 
338
+ #: admin/main-view.php:299
339
+ msgid ""
340
+ "Default style selected under the Custom Styles. Date display is disabled."
341
+ msgstr ""
342
+
343
+ #: admin/main-view.php:304
344
  msgid "Limit post title length (in characters)"
345
  msgstr ""
346
 
347
+ #: admin/main-view.php:307
348
  msgid ""
349
  "Any title longer than the number of characters set above will be cut and "
350
  "appended with a &helip;"
351
  msgstr ""
352
 
353
+ #: admin/main-view.php:311
354
  msgid "Open links in new window"
355
  msgstr ""
356
 
357
+ #: admin/main-view.php:317
358
  msgid "Add nofollow attribute to links in the list"
359
  msgstr ""
360
 
361
+ #: admin/main-view.php:350
362
  msgid "Exclusion settings:"
363
  msgstr ""
364
 
365
+ #: admin/main-view.php:352
 
 
 
 
 
 
 
 
 
366
  msgid "Exclude display of related posts on these posts / pages"
367
  msgstr ""
368
 
369
+ #: admin/main-view.php:358
 
 
 
 
 
 
 
 
 
 
 
370
  msgid "Exclude display of related posts on these post types."
371
  msgstr ""
372
 
373
+ #: admin/main-view.php:367
374
  msgid ""
375
  "The related posts will not display on any of the above selected post types"
376
  msgstr ""
377
 
378
+ #: admin/main-view.php:397
379
  msgid "Customize the output:"
380
  msgstr ""
381
 
382
+ #: admin/main-view.php:399
383
  msgid "HTML to display before the list of posts: "
384
  msgstr ""
385
 
386
+ #: admin/main-view.php:402
387
  msgid "HTML to display before each list item: "
388
  msgstr ""
389
 
390
+ #: admin/main-view.php:405
391
  msgid "HTML to display after each list item: "
392
  msgstr ""
393
 
394
+ #: admin/main-view.php:408
395
  msgid "HTML to display after the list of posts: "
396
  msgstr ""
397
 
398
+ #: admin/main-view.php:449 admin/main-view.php:604
399
+ msgid "Location of post thumbnail:"
400
  msgstr ""
401
 
402
+ #: admin/main-view.php:453 admin/main-view.php:608
403
+ msgid "Display thumbnails inline with posts, before title"
 
404
  msgstr ""
405
 
406
+ #: admin/main-view.php:457 admin/main-view.php:612
407
+ msgid "Display thumbnails inline with posts, after title"
 
 
408
  msgstr ""
409
 
410
+ #: admin/main-view.php:461 admin/main-view.php:616
411
+ msgid "Display only thumbnails, no text"
 
 
 
412
  msgstr ""
413
 
414
+ #: admin/main-view.php:465 admin/main-view.php:620
415
+ msgid "Do not display thumbnails, only text."
416
  msgstr ""
417
 
418
+ #: admin/main-view.php:468
419
  msgid ""
420
+ "Default style selected under the Custom Styles. Location of thumbnail forced "
421
+ "to be inline before title"
422
  msgstr ""
423
 
424
+ #: admin/main-view.php:472
425
+ msgid "Thumbnail size:"
426
+ msgstr ""
427
+
428
+ #: admin/main-view.php:496
429
+ msgid "Custom size"
430
  msgstr ""
431
 
432
+ #: admin/main-view.php:499
433
  msgid ""
434
+ "You can choose from existing image sizes above or create a custom size. If "
435
+ "you have chosen Custom size above, then enter the width, height and crop "
436
+ "settings below. For best results, use a cropped image."
437
  msgstr ""
438
 
439
+ #: admin/main-view.php:500
440
+ msgid ""
441
+ "If you change the width, height or crop mode below, existing images will not "
442
+ "be automatically resized."
443
  msgstr ""
444
 
445
+ #: admin/main-view.php:501
446
+ #, php-format
447
+ msgid ""
448
+ "I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
449
+ "a> or <a href='%s' class='thickbox'>Regenerate Thumbnails</a> to regenerate "
450
+ "all image sizes."
451
  msgstr ""
452
 
453
+ #: admin/main-view.php:505
454
+ msgid "Width of the thumbnail:"
455
  msgstr ""
456
 
457
+ #: admin/main-view.php:508
458
+ msgid "Height of the thumbnail: "
459
  msgstr ""
460
 
461
+ #: admin/main-view.php:513
462
+ msgid "Crop mode:"
463
  msgstr ""
464
 
465
+ #: admin/main-view.php:517
466
  msgid ""
467
+ "By default, thumbnails will be hard cropped. Uncheck this box to "
468
+ "proportionately/soft crop the thumbnails."
469
  msgstr ""
470
 
471
+ #: admin/main-view.php:518
472
+ #, php-format
473
+ msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
474
  msgstr ""
475
 
476
+ #: admin/main-view.php:521
477
  msgid ""
478
+ "Default style selected under the Custom Styles. Thumbnail width and height "
479
+ "is fixed at 150px and crop mode is enabled."
480
+ msgstr ""
481
+
482
+ #: admin/main-view.php:525
483
+ msgid "Style attributes / Width and Height HTML attributes:"
484
+ msgstr ""
485
+
486
+ #: admin/main-view.php:529
487
+ msgid "Style attributes are used for width and height."
488
+ msgstr ""
489
+
490
+ #: admin/main-view.php:533
491
+ msgid "HTML width and height attributes are used for width and height."
492
  msgstr ""
493
 
494
+ #: admin/main-view.php:537
495
  msgid "Post thumbnail meta field name:"
496
  msgstr ""
497
 
498
+ #: admin/main-view.php:539
499
  msgid ""
500
  "The value of this field should contain the image source and is set in the "
501
  "<em>Add New Post</em> screen"
502
  msgstr ""
503
 
504
+ #: admin/main-view.php:542
505
  msgid "Extract the first image from the post?"
506
  msgstr ""
507
 
508
+ #: admin/main-view.php:544
509
  msgid ""
510
  "This will only happen if there is no post thumbnail set and no image URL is "
511
  "specified in the meta field."
512
  msgstr ""
513
 
514
+ #: admin/main-view.php:547
515
  msgid "Use default thumbnail?"
516
  msgstr ""
517
 
518
+ #: admin/main-view.php:549
519
  msgid ""
520
  "If checked, when no thumbnail is found, show a default one from the URL "
521
  "below. If not checked and no thumbnail is found, no image will be shown."
522
  msgstr ""
523
 
524
+ #: admin/main-view.php:552
525
  msgid "Default thumbnail:"
526
  msgstr ""
527
 
528
+ #: admin/main-view.php:555
529
  msgid ""
530
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
531
  "then it will check the meta field. If this is not available, then it will "
532
  "show the default image as specified above."
533
  msgstr ""
534
 
535
+ #: admin/main-view.php:596
536
+ msgid ""
537
+ "Below options override the related posts settings for your blog feed. These "
538
+ "only apply if you have selected to add related posts to Feeds in the General "
539
+ "Options tab."
540
+ msgstr ""
541
+
542
+ #: admin/main-view.php:624
543
+ msgid "Maximum width of the thumbnail: "
544
+ msgstr ""
545
+
546
+ #: admin/main-view.php:627
547
+ msgid "Maximum height of the thumbnail: "
548
+ msgstr ""
549
+
550
+ #: admin/main-view.php:668
551
+ msgid "Use default style included in the plugin?"
552
+ msgstr ""
553
+
554
+ #: admin/main-view.php:671
555
+ msgid ""
556
+ "Contextual Related Posts includes a default style that makes your popular "
557
+ "posts list to look beautiful. Check the box above if you want to use this."
558
+ msgstr ""
559
+
560
+ #: admin/main-view.php:672
561
+ msgid ""
562
+ "Enabling this option will turn on the thumbnails and set their width and "
563
+ "height to 150px. It will also turn off the display of the author, excerpt "
564
+ "and date if already enabled. Disabling this option will not revert any "
565
+ "settings."
566
+ msgstr ""
567
+
568
+ #: admin/main-view.php:673
569
+ #, php-format
570
+ msgid ""
571
+ "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
572
+ msgstr ""
573
+
574
+ #: admin/main-view.php:676
575
+ msgid "Custom CSS to add to header:"
576
+ msgstr ""
577
+
578
+ #: admin/main-view.php:680
579
+ msgid ""
580
+ "Do not include <code>style</code> tags. Check out the <a href=\"http://"
581
+ "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
582
+ "\">FAQ</a> for available CSS classes to style."
583
+ msgstr ""
584
+
585
+ #: admin/main-view.php:710
586
+ msgid "Default Options"
587
+ msgstr ""
588
+
589
+ #: admin/main-view.php:710
590
+ msgid "Do you want to set options to Default?"
591
+ msgstr ""
592
+
593
+ #: admin/main-view.php:711
594
+ msgid "Recreate Index"
595
+ msgstr ""
596
+
597
+ #: admin/main-view.php:711
598
+ msgid "Are you sure you want to recreate the index?"
599
+ msgstr ""
600
+
601
  #: admin/sidebar-view.php:20
602
  msgid "Support the development"
603
  msgstr ""
618
  msgid "Follow me"
619
  msgstr ""
620
 
621
+ #: admin/sidebar-view.php:53
622
  msgid "Quick links"
623
  msgstr ""
624
 
625
+ #: admin/sidebar-view.php:57
626
  msgid "Contextual Related Posts plugin page"
627
  msgstr ""
628
 
629
+ #: admin/sidebar-view.php:58
630
  msgid "FAQ"
631
  msgstr ""
632
 
633
+ #: admin/sidebar-view.php:60
634
  msgid "Reviews"
635
  msgstr ""
636
 
637
+ #: admin/sidebar-view.php:61
638
  msgid "Github repository"
639
  msgstr ""
640
 
641
+ #: admin/sidebar-view.php:62
642
  msgid "Other plugins"
643
  msgstr ""
644
 
645
+ #: admin/sidebar-view.php:63
646
  msgid "Ajay's blog"
647
  msgstr ""
648
 
649
+ #: contextual-related-posts.php:250
650
  msgid " by "
651
  msgstr ""
652
 
653
+ #: contextual-related-posts.php:289
654
  #, php-format
655
  msgid "Powered by <a href=\"%s\" rel=\"nofollow\">Contextual Related Posts</a>"
656
  msgstr ""
657
 
658
+ #: contextual-related-posts.php:670
659
  msgid "Related Posts [CRP]"
660
  msgstr ""
661
 
662
+ #: contextual-related-posts.php:671
663
  msgid "Display Related Posts"
664
  msgstr ""
665
 
666
+ #: contextual-related-posts.php:694
667
  msgid "Title"
668
  msgstr ""
669
 
670
+ #: contextual-related-posts.php:699
671
  msgid "No. of posts"
672
  msgstr ""
673
 
674
+ #: contextual-related-posts.php:704
675
  msgid " Show excerpt?"
676
  msgstr ""
677
 
678
+ #: contextual-related-posts.php:709
679
  msgid " Show author?"
680
  msgstr ""
681
 
682
+ #: contextual-related-posts.php:714
683
  msgid " Show date?"
684
  msgstr ""
685
 
686
+ #: contextual-related-posts.php:720
 
 
 
 
687
  msgid "Thumbnails inline, before title"
688
  msgstr ""
689
 
690
+ #: contextual-related-posts.php:721
691
  msgid "Thumbnails inline, after title"
692
  msgstr ""
693
 
694
+ #: contextual-related-posts.php:722
695
  msgid "Only thumbnails, no text"
696
  msgstr ""
697
 
698
+ #: contextual-related-posts.php:723
699
  msgid "No thumbnails, only text."
700
  msgstr ""
701
 
702
+ #: contextual-related-posts.php:728
703
  msgid "Thumbnail height"
704
  msgstr ""
705
 
706
+ #: contextual-related-posts.php:733
707
  msgid "Thumbnail width"
708
  msgstr ""
709
 
710
+ #: contextual-related-posts.php:897
711
  msgid "<h3>Related Posts:</h3>"
712
  msgstr ""
713
 
714
+ #: contextual-related-posts.php:899
715
  msgid "No related posts found"
716
  msgstr ""
717
+
718
+ #: contextual-related-posts.php:1211
719
+ msgid "thumb_timthumb argument has been deprecated"
720
+ msgstr ""
721
+
722
+ #: contextual-related-posts.php:1215
723
+ msgid "thumb_timthumb_q argument has been deprecated"
724
+ msgstr ""
725
+
726
+ #: contextual-related-posts.php:1219
727
+ msgid "filter argument has been deprecated"
728
+ msgstr ""
languages/crp-en_US.pot CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-09-04 20:40-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
@@ -12,332 +12,290 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e;_c;__ngettext\n"
14
  "X-Poedit-Basepath: ../\n"
15
- "X-Generator: Poedit 1.6.9\n"
 
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin/admin.php:161
19
  msgid "Options saved successfully."
20
  msgstr ""
21
 
22
- #: admin/admin.php:181
 
 
 
 
 
 
23
  msgid "Options set to Default."
24
  msgstr ""
25
 
26
- #: admin/admin.php:192
27
  msgid "Index recreated"
28
  msgstr ""
29
 
30
- #: admin/admin.php:209 admin/admin.php:419 admin/main-view.php:20
31
  msgid "Contextual Related Posts"
32
  msgstr ""
33
 
34
- #: admin/admin.php:210
35
  msgid "Related Posts"
36
  msgstr ""
37
 
38
- #: admin/admin.php:321
39
  msgid "Settings"
40
  msgstr ""
41
 
42
- #: admin/admin.php:343 admin/sidebar-view.php:58
43
  msgid "Support"
44
  msgstr ""
45
 
46
- #: admin/admin.php:344
47
  msgid "Donate"
48
  msgstr ""
49
 
50
- #: admin/admin.php:345
51
  msgid "Contribute"
52
  msgstr ""
53
 
54
- #: admin/admin.php:361
55
  msgid "plugin settings page"
56
  msgstr ""
57
 
58
- #: admin/admin.php:395
59
  msgid ""
60
  "An error occurred clearing the cache. Please contact your site administrator."
61
  "\\n\\nError message:\\n"
62
  msgstr ""
63
 
64
- #: admin/admin.php:400
65
  msgid " cached row(s) cleared"
66
  msgstr ""
67
 
68
- #: admin/admin.php:446
69
  msgid "Location of thumbnail:"
70
  msgstr ""
71
 
72
- #: admin/admin.php:448
73
  msgid ""
74
  "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
75
  "image will be used for the post. It will be resized to the thumbnail size "
76
  "set under Settings &raquo; Related Posts &raquo; Output Options"
77
  msgstr ""
78
 
79
- #: admin/admin.php:449
80
  msgid "The URL above is saved in the meta field: "
81
  msgstr ""
82
 
83
- #: admin/main-view.php:32 admin/main-view.php:51
84
  msgid "General options"
85
  msgstr ""
86
 
87
- #: admin/main-view.php:33 admin/main-view.php:60
88
- msgid "Output options"
89
- msgstr ""
90
-
91
- #: admin/main-view.php:34 admin/main-view.php:69
92
- msgid "Feed options"
93
  msgstr ""
94
 
95
- #: admin/main-view.php:35 admin/main-view.php:77
96
- msgid "Custom styles"
97
- msgstr ""
98
-
99
- #: admin/main-view.php:95
100
- msgid "Save Options"
101
- msgstr ""
102
-
103
- #: admin/main-view.php:96
104
- msgid "Default Options"
105
  msgstr ""
106
 
107
- #: admin/main-view.php:96
108
- msgid "Do you want to set options to Default?"
 
109
  msgstr ""
110
 
111
- #: admin/main-view.php:97
112
- msgid "Recreate Index"
113
  msgstr ""
114
 
115
- #: admin/main-view.php:97
116
- msgid "Are you sure you want to recreate the index?"
117
  msgstr ""
118
 
119
- #: admin/options-custom-styles.php:32
120
- msgid "Use default style included in the plugin?"
121
  msgstr ""
122
 
123
- #: admin/options-custom-styles.php:35
124
  msgid ""
125
- "Contextual Related Posts includes a default style that makes your popular "
126
- "posts list to look beautiful. Check the box above if you want to use this."
127
  msgstr ""
128
 
129
- #: admin/options-custom-styles.php:36
130
- msgid ""
131
- "Enabling this option will turn on the thumbnails and set their width and "
132
- "height to 150px. It will also turn off the display of the author, excerpt "
133
- "and date if already enabled. Disabling this option will not revert any "
134
- "settings."
135
  msgstr ""
136
 
137
- #: admin/options-custom-styles.php:39
138
- msgid "Custom CSS to add to header:"
139
  msgstr ""
140
 
141
- #: admin/options-custom-styles.php:43
142
- msgid ""
143
- "Do not include <code>style</code> tags. Check out the <a href=\"http://"
144
- "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
145
- "\">FAQ</a> for available CSS classes to style."
146
  msgstr ""
147
 
148
- #: admin/options-feed.php:32
149
- msgid ""
150
- "Below options override the related posts settings for your blog feed. These "
151
- "only apply if you have selected to add related posts to Feeds in the General "
152
- "Options tab."
153
  msgstr ""
154
 
155
- #: admin/options-feed.php:34 admin/options-genops.php:39
156
- msgid "Number of related posts to display: "
157
  msgstr ""
158
 
159
- #: admin/options-feed.php:37 admin/options-output.php:52
160
- msgid "Show post excerpt in list?"
161
  msgstr ""
162
 
163
- #: admin/options-feed.php:40 admin/options-output.php:239
164
- msgid "Location of post thumbnail:"
165
  msgstr ""
166
 
167
- #: admin/options-feed.php:44 admin/options-output.php:243
168
- msgid "Display thumbnails inline with posts, before title"
169
  msgstr ""
170
 
171
- #: admin/options-feed.php:48 admin/options-output.php:247
172
- msgid "Display thumbnails inline with posts, after title"
173
  msgstr ""
174
 
175
- #: admin/options-feed.php:52 admin/options-output.php:251
176
- msgid "Display only thumbnails, no text"
 
 
 
177
  msgstr ""
178
 
179
- #: admin/options-feed.php:56 admin/options-output.php:255
180
- msgid "Do not display thumbnails, only text."
181
  msgstr ""
182
 
183
- #: admin/options-feed.php:60
184
- msgid "Maximum width of the thumbnail: "
 
 
185
  msgstr ""
186
 
187
- #: admin/options-feed.php:63 admin/options-output.php:270
188
- msgid "Maximum height of the thumbnail: "
189
  msgstr ""
190
 
191
- #: admin/options-genops.php:32
192
- msgid "Cache output?"
193
  msgstr ""
194
 
195
- #: admin/options-genops.php:34
196
  msgid ""
197
- "Enabling this option will cache the related posts output when the post is "
198
- "visited the first time. The cache is cleaned when you save this page."
199
  msgstr ""
200
 
201
- #: admin/options-genops.php:35
202
- msgid "Clear cache"
 
203
  msgstr ""
204
 
205
- #: admin/options-genops.php:42
 
 
 
 
206
  msgid ""
207
  "Maximum number of posts that will be displayed. The actual number may be "
208
  "smaller if less related posts are found."
209
  msgstr ""
210
 
211
- #: admin/options-genops.php:46
212
  msgid "Related posts should be newer than:"
213
  msgstr ""
214
 
215
- #: admin/options-genops.php:48
216
  msgid "days"
217
  msgstr ""
218
 
219
- #: admin/options-genops.php:49
220
  msgid ""
221
  "This sets the cutoff period for which posts will be displayed. e.g. setting "
222
- "it to 365 will show related posts from the last year only."
223
- msgstr ""
224
-
225
- #: admin/options-genops.php:53
226
- msgid "Post types to include in results:"
227
- msgstr ""
228
-
229
- #: admin/options-genops.php:64
230
- msgid ""
231
- "These post types will be displayed in the list. Includes custom post types."
232
  msgstr ""
233
 
234
- #: admin/options-genops.php:68
235
  msgid "Find related posts based on content as well as title:"
236
  msgstr ""
237
 
238
- #: admin/options-genops.php:70
239
  msgid ""
240
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
241
  "or enabling \"Cache output\" above if you enable this."
242
  msgstr ""
243
 
244
- #: admin/options-genops.php:74
245
  msgid "Limit content to be compared"
246
  msgstr ""
247
 
248
- #: admin/options-genops.php:76
249
  msgid ""
250
  "This sets the maximum words of the content that will be matched. 0 means no "
251
  "limit."
252
  msgstr ""
253
 
254
- #: admin/options-genops.php:80
255
- msgid "Add related posts to:"
256
- msgstr ""
257
-
258
- #: admin/options-genops.php:82
259
- msgid "Posts"
260
- msgstr ""
261
-
262
- #: admin/options-genops.php:83
263
- msgid "Pages"
264
- msgstr ""
265
-
266
- #: admin/options-genops.php:84
267
- msgid "Home page"
268
- msgstr ""
269
-
270
- #: admin/options-genops.php:85
271
- msgid "Feeds"
272
- msgstr ""
273
-
274
- #: admin/options-genops.php:86
275
- msgid "Category archives"
276
- msgstr ""
277
-
278
- #: admin/options-genops.php:87
279
- msgid "Tag archives"
280
- msgstr ""
281
-
282
- #: admin/options-genops.php:88
283
- msgid "Other archives"
284
  msgstr ""
285
 
286
- #: admin/options-genops.php:89
287
  msgid ""
288
- "If you choose to disable this, please add <code>&lt;?php if "
289
- "( function_exists( 'echo_ald_crp' ) ) echo_ald_crp(); ?&gt;</code> to your "
290
- "template file where you want it displayed"
291
  msgstr ""
292
 
293
- #: admin/options-genops.php:93
294
- msgid "Content filter priority:"
295
  msgstr ""
296
 
297
- #: admin/options-genops.php:96
298
  msgid ""
299
- "A higher number will cause the content above to be processed after other "
300
- "filters. Number below 10 is not recommended."
301
- msgstr ""
302
-
303
- #: admin/options-genops.php:100
304
- msgid "Tell the world you're using Contextual Related Posts:"
305
  msgstr ""
306
 
307
- #: admin/options-genops.php:102
308
- msgid " <em>Optional</em>"
309
  msgstr ""
310
 
311
- #: admin/options-genops.php:103
312
  msgid ""
313
- "Adds a nofollow link to Contextual Related Posts homepage as the last time "
314
- "in the list."
 
315
  msgstr ""
316
 
317
- #: admin/options-output.php:32
318
  msgid "Title of related posts: "
319
  msgstr ""
320
 
321
- #: admin/options-output.php:35
322
  msgid ""
323
  "This is the main heading of the related posts. You can also display the "
324
  "current post title by using <code>%postname%</code>. e.g. <code>Related "
325
  "Posts to %postname%</code>"
326
  msgstr ""
327
 
328
- #: admin/options-output.php:39
329
  msgid "When there are no posts, what should be shown?"
330
  msgstr ""
331
 
332
- #: admin/options-output.php:43
333
  msgid "Blank Output"
334
  msgstr ""
335
 
336
- #: admin/options-output.php:47
337
  msgid "Display:"
338
  msgstr ""
339
 
340
- #: admin/options-output.php:55
 
 
 
 
341
  #, php-format
342
  msgid ""
343
  "Displays the excerpt of the post. If you do not provide an explicit excerpt "
@@ -345,223 +303,301 @@ msgid ""
345
  "automatic excerpt which refers to the first %d words of the post's content"
346
  msgstr ""
347
 
348
- #: admin/options-output.php:59
 
 
 
 
 
349
  msgid "Length of excerpt (in words): "
350
  msgstr ""
351
 
352
- #: admin/options-output.php:65
353
  msgid "Show post author in list?"
354
  msgstr ""
355
 
356
- #: admin/options-output.php:68
357
  msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
358
  msgstr ""
359
 
360
- #: admin/options-output.php:72
 
 
 
 
 
361
  msgid "Show post date in list?"
362
  msgstr ""
363
 
364
- #: admin/options-output.php:75
365
  msgid ""
366
  "Displays the date of the post. Uses the same date format set in General "
367
  "Options"
368
  msgstr ""
369
 
370
- #: admin/options-output.php:79
 
 
 
 
 
371
  msgid "Limit post title length (in characters)"
372
  msgstr ""
373
 
374
- #: admin/options-output.php:82
375
  msgid ""
376
  "Any title longer than the number of characters set above will be cut and "
377
  "appended with a &helip;"
378
  msgstr ""
379
 
380
- #: admin/options-output.php:86
381
  msgid "Open links in new window"
382
  msgstr ""
383
 
384
- #: admin/options-output.php:92
385
  msgid "Add nofollow attribute to links in the list"
386
  msgstr ""
387
 
388
- #: admin/options-output.php:125
389
  msgid "Exclusion settings:"
390
  msgstr ""
391
 
392
- #: admin/options-output.php:127
393
- msgid "List of post or page IDs to exclude from the results:"
394
- msgstr ""
395
-
396
- #: admin/options-output.php:129 admin/options-output.php:135
397
- msgid ""
398
- "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
399
- msgstr ""
400
-
401
- #: admin/options-output.php:132
402
  msgid "Exclude display of related posts on these posts / pages"
403
  msgstr ""
404
 
405
- #: admin/options-output.php:138
406
- msgid "Categories to exclude from the results: "
407
- msgstr ""
408
-
409
- #: admin/options-output.php:154
410
- msgid ""
411
- "Comma separated list of category slugs. The field above has an autocomplete "
412
- "so simply start typing in the beginning of your category name and it will "
413
- "prompt you with options."
414
- msgstr ""
415
-
416
- #: admin/options-output.php:157
417
  msgid "Exclude display of related posts on these post types."
418
  msgstr ""
419
 
420
- #: admin/options-output.php:166
421
  msgid ""
422
  "The related posts will not display on any of the above selected post types"
423
  msgstr ""
424
 
425
- #: admin/options-output.php:196
426
  msgid "Customize the output:"
427
  msgstr ""
428
 
429
- #: admin/options-output.php:198
430
  msgid "HTML to display before the list of posts: "
431
  msgstr ""
432
 
433
- #: admin/options-output.php:201
434
  msgid "HTML to display before each list item: "
435
  msgstr ""
436
 
437
- #: admin/options-output.php:204
438
  msgid "HTML to display after each list item: "
439
  msgstr ""
440
 
441
- #: admin/options-output.php:207
442
  msgid "HTML to display after the list of posts: "
443
  msgstr ""
444
 
445
- #: admin/options-output.php:237
446
- msgid "Post thumbnail options:"
447
  msgstr ""
448
 
449
- #: admin/options-output.php:261
450
- msgid ""
451
- "Contextual Related Posts adds a new image size with the below dimensions."
452
  msgstr ""
453
 
454
- #: admin/options-output.php:262
455
- msgid ""
456
- "If you change the width and/or height below, existing images will not be "
457
- "automatically resized."
458
  msgstr ""
459
 
460
- #: admin/options-output.php:263
461
- #, php-format
462
- msgid ""
463
- "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
464
- "a> to regenerate all image sizes."
465
  msgstr ""
466
 
467
- #: admin/options-output.php:267
468
- msgid "Maximum width of the thumbnail:"
469
  msgstr ""
470
 
471
- #: admin/options-output.php:274
472
  msgid ""
473
- "Since you're using the default styles set under the Custom Styles section, "
474
- "the width and height is fixed at 150px"
475
  msgstr ""
476
 
477
- #: admin/options-output.php:278
478
- msgid "Crop mode:"
 
 
 
 
479
  msgstr ""
480
 
481
- #: admin/options-output.php:282
482
  msgid ""
483
- "By default, thumbnails will be proportionately cropped. Check this box to "
484
- "hard crop the thumbnails."
 
485
  msgstr ""
486
 
487
- #: admin/options-output.php:283
488
- #, php-format
489
- msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
 
490
  msgstr ""
491
 
492
- #: admin/options-output.php:287
493
- msgid "Style attributes / Width and Height HTML attributes:"
 
 
 
 
494
  msgstr ""
495
 
496
- #: admin/options-output.php:291
497
- msgid "Style attributes are used for width and height."
498
  msgstr ""
499
 
500
- #: admin/options-output.php:295
501
- msgid "HTML width and height attributes are used for width and height."
502
  msgstr ""
503
 
504
- #: admin/options-output.php:299
505
- msgid "Use timthumb to generate thumbnails? "
506
  msgstr ""
507
 
508
- #: admin/options-output.php:301
509
  msgid ""
510
- "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
511
- "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
512
  msgstr ""
513
 
514
- #: admin/options-output.php:304
515
- msgid "Quality of thumbnails generated by timthumb:"
 
516
  msgstr ""
517
 
518
- #: admin/options-output.php:307
519
  msgid ""
520
- "Enter values between 0 and 100 only. 100 is highest quality and the highest "
521
- "file size. Suggested maximum value is 95. CRP default is 75."
 
 
 
 
 
 
 
 
 
 
 
 
522
  msgstr ""
523
 
524
- #: admin/options-output.php:310
525
  msgid "Post thumbnail meta field name:"
526
  msgstr ""
527
 
528
- #: admin/options-output.php:312
529
  msgid ""
530
  "The value of this field should contain the image source and is set in the "
531
  "<em>Add New Post</em> screen"
532
  msgstr ""
533
 
534
- #: admin/options-output.php:315
535
  msgid "Extract the first image from the post?"
536
  msgstr ""
537
 
538
- #: admin/options-output.php:317
539
  msgid ""
540
  "This will only happen if there is no post thumbnail set and no image URL is "
541
  "specified in the meta field."
542
  msgstr ""
543
 
544
- #: admin/options-output.php:320
545
  msgid "Use default thumbnail?"
546
  msgstr ""
547
 
548
- #: admin/options-output.php:322
549
  msgid ""
550
  "If checked, when no thumbnail is found, show a default one from the URL "
551
  "below. If not checked and no thumbnail is found, no image will be shown."
552
  msgstr ""
553
 
554
- #: admin/options-output.php:325
555
  msgid "Default thumbnail:"
556
  msgstr ""
557
 
558
- #: admin/options-output.php:328
559
  msgid ""
560
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
561
  "then it will check the meta field. If this is not available, then it will "
562
  "show the default image as specified above."
563
  msgstr ""
564
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
565
  #: admin/sidebar-view.php:20
566
  msgid "Support the development"
567
  msgstr ""
@@ -582,103 +618,111 @@ msgstr ""
582
  msgid "Follow me"
583
  msgstr ""
584
 
585
- #: admin/sidebar-view.php:52
586
  msgid "Quick links"
587
  msgstr ""
588
 
589
- #: admin/sidebar-view.php:56
590
  msgid "Contextual Related Posts plugin page"
591
  msgstr ""
592
 
593
- #: admin/sidebar-view.php:57
594
  msgid "FAQ"
595
  msgstr ""
596
 
597
- #: admin/sidebar-view.php:59
598
  msgid "Reviews"
599
  msgstr ""
600
 
601
- #: admin/sidebar-view.php:60
602
  msgid "Github repository"
603
  msgstr ""
604
 
605
- #: admin/sidebar-view.php:61
606
  msgid "Other plugins"
607
  msgstr ""
608
 
609
- #: admin/sidebar-view.php:62
610
  msgid "Ajay's blog"
611
  msgstr ""
612
 
613
- #: contextual-related-posts.php:246
614
  msgid " by "
615
  msgstr ""
616
 
617
- #: contextual-related-posts.php:285
618
  #, php-format
619
  msgid "Powered by <a href=\"%s\" rel=\"nofollow\">Contextual Related Posts</a>"
620
  msgstr ""
621
 
622
- #: contextual-related-posts.php:596
623
  msgid "Related Posts [CRP]"
624
  msgstr ""
625
 
626
- #: contextual-related-posts.php:597
627
  msgid "Display Related Posts"
628
  msgstr ""
629
 
630
- #: contextual-related-posts.php:620
631
  msgid "Title"
632
  msgstr ""
633
 
634
- #: contextual-related-posts.php:625
635
  msgid "No. of posts"
636
  msgstr ""
637
 
638
- #: contextual-related-posts.php:630
639
  msgid " Show excerpt?"
640
  msgstr ""
641
 
642
- #: contextual-related-posts.php:635
643
  msgid " Show author?"
644
  msgstr ""
645
 
646
- #: contextual-related-posts.php:640
647
  msgid " Show date?"
648
  msgstr ""
649
 
650
- #: contextual-related-posts.php:644
651
- msgid "Thumbnail options"
652
- msgstr ""
653
-
654
- #: contextual-related-posts.php:646
655
  msgid "Thumbnails inline, before title"
656
  msgstr ""
657
 
658
- #: contextual-related-posts.php:647
659
  msgid "Thumbnails inline, after title"
660
  msgstr ""
661
 
662
- #: contextual-related-posts.php:648
663
  msgid "Only thumbnails, no text"
664
  msgstr ""
665
 
666
- #: contextual-related-posts.php:649
667
  msgid "No thumbnails, only text."
668
  msgstr ""
669
 
670
- #: contextual-related-posts.php:654
671
  msgid "Thumbnail height"
672
  msgstr ""
673
 
674
- #: contextual-related-posts.php:659
675
  msgid "Thumbnail width"
676
  msgstr ""
677
 
678
- #: contextual-related-posts.php:799
679
  msgid "<h3>Related Posts:</h3>"
680
  msgstr ""
681
 
682
- #: contextual-related-posts.php:801
683
  msgid "No related posts found"
684
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-05-09 22:20-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e;_c;__ngettext\n"
14
  "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.7.1\n"
16
+ "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: admin/admin.php:166
20
  msgid "Options saved successfully."
21
  msgstr ""
22
 
23
+ #: admin/admin.php:169
24
+ msgid ""
25
+ "Default styles selected. Thumbnail width, height and crop settings have been "
26
+ "fixed. Author, Excerpt and Date will not be displayed."
27
+ msgstr ""
28
+
29
+ #: admin/admin.php:194
30
  msgid "Options set to Default."
31
  msgstr ""
32
 
33
+ #: admin/admin.php:205
34
  msgid "Index recreated"
35
  msgstr ""
36
 
37
+ #: admin/admin.php:222 admin/admin.php:453 admin/main-view.php:20
38
  msgid "Contextual Related Posts"
39
  msgstr ""
40
 
41
+ #: admin/admin.php:223
42
  msgid "Related Posts"
43
  msgstr ""
44
 
45
+ #: admin/admin.php:338
46
  msgid "Settings"
47
  msgstr ""
48
 
49
+ #: admin/admin.php:360 admin/sidebar-view.php:59
50
  msgid "Support"
51
  msgstr ""
52
 
53
+ #: admin/admin.php:361
54
  msgid "Donate"
55
  msgstr ""
56
 
57
+ #: admin/admin.php:362
58
  msgid "Contribute"
59
  msgstr ""
60
 
61
+ #: admin/admin.php:378
62
  msgid "plugin settings page"
63
  msgstr ""
64
 
65
+ #: admin/admin.php:422
66
  msgid ""
67
  "An error occurred clearing the cache. Please contact your site administrator."
68
  "\\n\\nError message:\\n"
69
  msgstr ""
70
 
71
+ #: admin/admin.php:427
72
  msgid " cached row(s) cleared"
73
  msgstr ""
74
 
75
+ #: admin/admin.php:480
76
  msgid "Location of thumbnail:"
77
  msgstr ""
78
 
79
+ #: admin/admin.php:482
80
  msgid ""
81
  "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
82
  "image will be used for the post. It will be resized to the thumbnail size "
83
  "set under Settings &raquo; Related Posts &raquo; Output Options"
84
  msgstr ""
85
 
86
+ #: admin/admin.php:483
87
  msgid "The URL above is saved in the meta field: "
88
  msgstr ""
89
 
90
+ #: admin/main-view.php:32 admin/main-view.php:54
91
  msgid "General options"
92
  msgstr ""
93
 
94
+ #: admin/main-view.php:33 admin/main-view.php:125
95
+ msgid "List tuning options"
 
 
 
 
96
  msgstr ""
97
 
98
+ #: admin/main-view.php:34 admin/main-view.php:229
99
+ msgid "Output options"
 
 
 
 
 
 
 
 
100
  msgstr ""
101
 
102
+ #: admin/main-view.php:35 admin/main-view.php:433
103
+ #: contextual-related-posts.php:718
104
+ msgid "Thumbnail options"
105
  msgstr ""
106
 
107
+ #: admin/main-view.php:36 admin/main-view.php:580
108
+ msgid "Feed options"
109
  msgstr ""
110
 
111
+ #: admin/main-view.php:37 admin/main-view.php:652
112
+ msgid "Custom styles"
113
  msgstr ""
114
 
115
+ #: admin/main-view.php:70
116
+ msgid "Cache output?"
117
  msgstr ""
118
 
119
+ #: admin/main-view.php:72
120
  msgid ""
121
+ "Enabling this option will cache the related posts output when the post is "
122
+ "visited the first time. The cache is cleaned when you save this page."
123
  msgstr ""
124
 
125
+ #: admin/main-view.php:73
126
+ msgid "Clear cache"
 
 
 
 
127
  msgstr ""
128
 
129
+ #: admin/main-view.php:77
130
+ msgid "Add related posts to:"
131
  msgstr ""
132
 
133
+ #: admin/main-view.php:79
134
+ msgid "Posts"
 
 
 
135
  msgstr ""
136
 
137
+ #: admin/main-view.php:80
138
+ msgid "Pages"
 
 
 
139
  msgstr ""
140
 
141
+ #: admin/main-view.php:81
142
+ msgid "Home page"
143
  msgstr ""
144
 
145
+ #: admin/main-view.php:82
146
+ msgid "Feeds"
147
  msgstr ""
148
 
149
+ #: admin/main-view.php:83
150
+ msgid "Category archives"
151
  msgstr ""
152
 
153
+ #: admin/main-view.php:84
154
+ msgid "Tag archives"
155
  msgstr ""
156
 
157
+ #: admin/main-view.php:85
158
+ msgid "Other archives"
159
  msgstr ""
160
 
161
+ #: admin/main-view.php:86
162
+ msgid ""
163
+ "If you choose to disable this, please add <code>&lt;?php if "
164
+ "( function_exists( 'echo_ald_crp' ) ) echo_ald_crp(); ?&gt;</code> to your "
165
+ "template file where you want it displayed"
166
  msgstr ""
167
 
168
+ #: admin/main-view.php:90
169
+ msgid "Content filter priority:"
170
  msgstr ""
171
 
172
+ #: admin/main-view.php:93
173
+ msgid ""
174
+ "A higher number will cause the content above to be processed after other "
175
+ "filters. Number below 10 is not recommended."
176
  msgstr ""
177
 
178
+ #: admin/main-view.php:97
179
+ msgid "Tell the world you're using Contextual Related Posts:"
180
  msgstr ""
181
 
182
+ #: admin/main-view.php:99
183
+ msgid " <em>Optional</em>"
184
  msgstr ""
185
 
186
+ #: admin/main-view.php:100
187
  msgid ""
188
+ "Adds a nofollow link to Contextual Related Posts homepage as the last time "
189
+ "in the list."
190
  msgstr ""
191
 
192
+ #: admin/main-view.php:118 admin/main-view.php:222 admin/main-view.php:426
193
+ #: admin/main-view.php:573 admin/main-view.php:645 admin/main-view.php:709
194
+ msgid "Save Options"
195
  msgstr ""
196
 
197
+ #: admin/main-view.php:141 admin/main-view.php:598
198
+ msgid "Number of related posts to display: "
199
+ msgstr ""
200
+
201
+ #: admin/main-view.php:144
202
  msgid ""
203
  "Maximum number of posts that will be displayed. The actual number may be "
204
  "smaller if less related posts are found."
205
  msgstr ""
206
 
207
+ #: admin/main-view.php:148
208
  msgid "Related posts should be newer than:"
209
  msgstr ""
210
 
211
+ #: admin/main-view.php:150
212
  msgid "days"
213
  msgstr ""
214
 
215
+ #: admin/main-view.php:151
216
  msgid ""
217
  "This sets the cutoff period for which posts will be displayed. e.g. setting "
218
+ "it to 365 will show related posts from the last year only. Set it to 0 to "
219
+ "disable limiting posts."
 
 
 
 
 
 
 
 
220
  msgstr ""
221
 
222
+ #: admin/main-view.php:155
223
  msgid "Find related posts based on content as well as title:"
224
  msgstr ""
225
 
226
+ #: admin/main-view.php:157
227
  msgid ""
228
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
229
  "or enabling \"Cache output\" above if you enable this."
230
  msgstr ""
231
 
232
+ #: admin/main-view.php:161
233
  msgid "Limit content to be compared"
234
  msgstr ""
235
 
236
+ #: admin/main-view.php:163
237
  msgid ""
238
  "This sets the maximum words of the content that will be matched. 0 means no "
239
  "limit."
240
  msgstr ""
241
 
242
+ #: admin/main-view.php:167
243
+ msgid "Post types to include in results:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
244
  msgstr ""
245
 
246
+ #: admin/main-view.php:178
247
  msgid ""
248
+ "These post types will be displayed in the list. Includes custom post types."
 
 
249
  msgstr ""
250
 
251
+ #: admin/main-view.php:182
252
+ msgid "List of post or page IDs to exclude from the results:"
253
  msgstr ""
254
 
255
+ #: admin/main-view.php:184 admin/main-view.php:355
256
  msgid ""
257
+ "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
 
 
 
 
 
258
  msgstr ""
259
 
260
+ #: admin/main-view.php:188
261
+ msgid "Categories to exclude from the results: "
262
  msgstr ""
263
 
264
+ #: admin/main-view.php:204
265
  msgid ""
266
+ "Comma separated list of category slugs. The field above has an autocomplete "
267
+ "so simply start typing in the beginning of your category name and it will "
268
+ "prompt you with options."
269
  msgstr ""
270
 
271
+ #: admin/main-view.php:245
272
  msgid "Title of related posts: "
273
  msgstr ""
274
 
275
+ #: admin/main-view.php:248
276
  msgid ""
277
  "This is the main heading of the related posts. You can also display the "
278
  "current post title by using <code>%postname%</code>. e.g. <code>Related "
279
  "Posts to %postname%</code>"
280
  msgstr ""
281
 
282
+ #: admin/main-view.php:252
283
  msgid "When there are no posts, what should be shown?"
284
  msgstr ""
285
 
286
+ #: admin/main-view.php:256
287
  msgid "Blank Output"
288
  msgstr ""
289
 
290
+ #: admin/main-view.php:260
291
  msgid "Display:"
292
  msgstr ""
293
 
294
+ #: admin/main-view.php:265 admin/main-view.php:601
295
+ msgid "Show post excerpt in list?"
296
+ msgstr ""
297
+
298
+ #: admin/main-view.php:268
299
  #, php-format
300
  msgid ""
301
  "Displays the excerpt of the post. If you do not provide an explicit excerpt "
303
  "automatic excerpt which refers to the first %d words of the post's content"
304
  msgstr ""
305
 
306
+ #: admin/main-view.php:271
307
+ msgid ""
308
+ "Default style selected under the Custom Styles. Excerpt display is disabled."
309
+ msgstr ""
310
+
311
+ #: admin/main-view.php:276
312
  msgid "Length of excerpt (in words): "
313
  msgstr ""
314
 
315
+ #: admin/main-view.php:282
316
  msgid "Show post author in list?"
317
  msgstr ""
318
 
319
+ #: admin/main-view.php:285
320
  msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
321
  msgstr ""
322
 
323
+ #: admin/main-view.php:288
324
+ msgid ""
325
+ "Default style selected under the Custom Styles. Author display is disabled."
326
+ msgstr ""
327
+
328
+ #: admin/main-view.php:293
329
  msgid "Show post date in list?"
330
  msgstr ""
331
 
332
+ #: admin/main-view.php:296
333
  msgid ""
334
  "Displays the date of the post. Uses the same date format set in General "
335
  "Options"
336
  msgstr ""
337
 
338
+ #: admin/main-view.php:299
339
+ msgid ""
340
+ "Default style selected under the Custom Styles. Date display is disabled."
341
+ msgstr ""
342
+
343
+ #: admin/main-view.php:304
344
  msgid "Limit post title length (in characters)"
345
  msgstr ""
346
 
347
+ #: admin/main-view.php:307
348
  msgid ""
349
  "Any title longer than the number of characters set above will be cut and "
350
  "appended with a &helip;"
351
  msgstr ""
352
 
353
+ #: admin/main-view.php:311
354
  msgid "Open links in new window"
355
  msgstr ""
356
 
357
+ #: admin/main-view.php:317
358
  msgid "Add nofollow attribute to links in the list"
359
  msgstr ""
360
 
361
+ #: admin/main-view.php:350
362
  msgid "Exclusion settings:"
363
  msgstr ""
364
 
365
+ #: admin/main-view.php:352
 
 
 
 
 
 
 
 
 
366
  msgid "Exclude display of related posts on these posts / pages"
367
  msgstr ""
368
 
369
+ #: admin/main-view.php:358
 
 
 
 
 
 
 
 
 
 
 
370
  msgid "Exclude display of related posts on these post types."
371
  msgstr ""
372
 
373
+ #: admin/main-view.php:367
374
  msgid ""
375
  "The related posts will not display on any of the above selected post types"
376
  msgstr ""
377
 
378
+ #: admin/main-view.php:397
379
  msgid "Customize the output:"
380
  msgstr ""
381
 
382
+ #: admin/main-view.php:399
383
  msgid "HTML to display before the list of posts: "
384
  msgstr ""
385
 
386
+ #: admin/main-view.php:402
387
  msgid "HTML to display before each list item: "
388
  msgstr ""
389
 
390
+ #: admin/main-view.php:405
391
  msgid "HTML to display after each list item: "
392
  msgstr ""
393
 
394
+ #: admin/main-view.php:408
395
  msgid "HTML to display after the list of posts: "
396
  msgstr ""
397
 
398
+ #: admin/main-view.php:449 admin/main-view.php:604
399
+ msgid "Location of post thumbnail:"
400
  msgstr ""
401
 
402
+ #: admin/main-view.php:453 admin/main-view.php:608
403
+ msgid "Display thumbnails inline with posts, before title"
 
404
  msgstr ""
405
 
406
+ #: admin/main-view.php:457 admin/main-view.php:612
407
+ msgid "Display thumbnails inline with posts, after title"
 
 
408
  msgstr ""
409
 
410
+ #: admin/main-view.php:461 admin/main-view.php:616
411
+ msgid "Display only thumbnails, no text"
 
 
 
412
  msgstr ""
413
 
414
+ #: admin/main-view.php:465 admin/main-view.php:620
415
+ msgid "Do not display thumbnails, only text."
416
  msgstr ""
417
 
418
+ #: admin/main-view.php:468
419
  msgid ""
420
+ "Default style selected under the Custom Styles. Location of thumbnail forced "
421
+ "to be inline before title"
422
  msgstr ""
423
 
424
+ #: admin/main-view.php:472
425
+ msgid "Thumbnail size:"
426
+ msgstr ""
427
+
428
+ #: admin/main-view.php:496
429
+ msgid "Custom size"
430
  msgstr ""
431
 
432
+ #: admin/main-view.php:499
433
  msgid ""
434
+ "You can choose from existing image sizes above or create a custom size. If "
435
+ "you have chosen Custom size above, then enter the width, height and crop "
436
+ "settings below. For best results, use a cropped image."
437
  msgstr ""
438
 
439
+ #: admin/main-view.php:500
440
+ msgid ""
441
+ "If you change the width, height or crop mode below, existing images will not "
442
+ "be automatically resized."
443
  msgstr ""
444
 
445
+ #: admin/main-view.php:501
446
+ #, php-format
447
+ msgid ""
448
+ "I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
449
+ "a> or <a href='%s' class='thickbox'>Regenerate Thumbnails</a> to regenerate "
450
+ "all image sizes."
451
  msgstr ""
452
 
453
+ #: admin/main-view.php:505
454
+ msgid "Width of the thumbnail:"
455
  msgstr ""
456
 
457
+ #: admin/main-view.php:508
458
+ msgid "Height of the thumbnail: "
459
  msgstr ""
460
 
461
+ #: admin/main-view.php:513
462
+ msgid "Crop mode:"
463
  msgstr ""
464
 
465
+ #: admin/main-view.php:517
466
  msgid ""
467
+ "By default, thumbnails will be hard cropped. Uncheck this box to "
468
+ "proportionately/soft crop the thumbnails."
469
  msgstr ""
470
 
471
+ #: admin/main-view.php:518
472
+ #, php-format
473
+ msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
474
  msgstr ""
475
 
476
+ #: admin/main-view.php:521
477
  msgid ""
478
+ "Default style selected under the Custom Styles. Thumbnail width and height "
479
+ "is fixed at 150px and crop mode is enabled."
480
+ msgstr ""
481
+
482
+ #: admin/main-view.php:525
483
+ msgid "Style attributes / Width and Height HTML attributes:"
484
+ msgstr ""
485
+
486
+ #: admin/main-view.php:529
487
+ msgid "Style attributes are used for width and height."
488
+ msgstr ""
489
+
490
+ #: admin/main-view.php:533
491
+ msgid "HTML width and height attributes are used for width and height."
492
  msgstr ""
493
 
494
+ #: admin/main-view.php:537
495
  msgid "Post thumbnail meta field name:"
496
  msgstr ""
497
 
498
+ #: admin/main-view.php:539
499
  msgid ""
500
  "The value of this field should contain the image source and is set in the "
501
  "<em>Add New Post</em> screen"
502
  msgstr ""
503
 
504
+ #: admin/main-view.php:542
505
  msgid "Extract the first image from the post?"
506
  msgstr ""
507
 
508
+ #: admin/main-view.php:544
509
  msgid ""
510
  "This will only happen if there is no post thumbnail set and no image URL is "
511
  "specified in the meta field."
512
  msgstr ""
513
 
514
+ #: admin/main-view.php:547
515
  msgid "Use default thumbnail?"
516
  msgstr ""
517
 
518
+ #: admin/main-view.php:549
519
  msgid ""
520
  "If checked, when no thumbnail is found, show a default one from the URL "
521
  "below. If not checked and no thumbnail is found, no image will be shown."
522
  msgstr ""
523
 
524
+ #: admin/main-view.php:552
525
  msgid "Default thumbnail:"
526
  msgstr ""
527
 
528
+ #: admin/main-view.php:555
529
  msgid ""
530
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
531
  "then it will check the meta field. If this is not available, then it will "
532
  "show the default image as specified above."
533
  msgstr ""
534
 
535
+ #: admin/main-view.php:596
536
+ msgid ""
537
+ "Below options override the related posts settings for your blog feed. These "
538
+ "only apply if you have selected to add related posts to Feeds in the General "
539
+ "Options tab."
540
+ msgstr ""
541
+
542
+ #: admin/main-view.php:624
543
+ msgid "Maximum width of the thumbnail: "
544
+ msgstr ""
545
+
546
+ #: admin/main-view.php:627
547
+ msgid "Maximum height of the thumbnail: "
548
+ msgstr ""
549
+
550
+ #: admin/main-view.php:668
551
+ msgid "Use default style included in the plugin?"
552
+ msgstr ""
553
+
554
+ #: admin/main-view.php:671
555
+ msgid ""
556
+ "Contextual Related Posts includes a default style that makes your popular "
557
+ "posts list to look beautiful. Check the box above if you want to use this."
558
+ msgstr ""
559
+
560
+ #: admin/main-view.php:672
561
+ msgid ""
562
+ "Enabling this option will turn on the thumbnails and set their width and "
563
+ "height to 150px. It will also turn off the display of the author, excerpt "
564
+ "and date if already enabled. Disabling this option will not revert any "
565
+ "settings."
566
+ msgstr ""
567
+
568
+ #: admin/main-view.php:673
569
+ #, php-format
570
+ msgid ""
571
+ "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
572
+ msgstr ""
573
+
574
+ #: admin/main-view.php:676
575
+ msgid "Custom CSS to add to header:"
576
+ msgstr ""
577
+
578
+ #: admin/main-view.php:680
579
+ msgid ""
580
+ "Do not include <code>style</code> tags. Check out the <a href=\"http://"
581
+ "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
582
+ "\">FAQ</a> for available CSS classes to style."
583
+ msgstr ""
584
+
585
+ #: admin/main-view.php:710
586
+ msgid "Default Options"
587
+ msgstr ""
588
+
589
+ #: admin/main-view.php:710
590
+ msgid "Do you want to set options to Default?"
591
+ msgstr ""
592
+
593
+ #: admin/main-view.php:711
594
+ msgid "Recreate Index"
595
+ msgstr ""
596
+
597
+ #: admin/main-view.php:711
598
+ msgid "Are you sure you want to recreate the index?"
599
+ msgstr ""
600
+
601
  #: admin/sidebar-view.php:20
602
  msgid "Support the development"
603
  msgstr ""
618
  msgid "Follow me"
619
  msgstr ""
620
 
621
+ #: admin/sidebar-view.php:53
622
  msgid "Quick links"
623
  msgstr ""
624
 
625
+ #: admin/sidebar-view.php:57
626
  msgid "Contextual Related Posts plugin page"
627
  msgstr ""
628
 
629
+ #: admin/sidebar-view.php:58
630
  msgid "FAQ"
631
  msgstr ""
632
 
633
+ #: admin/sidebar-view.php:60
634
  msgid "Reviews"
635
  msgstr ""
636
 
637
+ #: admin/sidebar-view.php:61
638
  msgid "Github repository"
639
  msgstr ""
640
 
641
+ #: admin/sidebar-view.php:62
642
  msgid "Other plugins"
643
  msgstr ""
644
 
645
+ #: admin/sidebar-view.php:63
646
  msgid "Ajay's blog"
647
  msgstr ""
648
 
649
+ #: contextual-related-posts.php:250
650
  msgid " by "
651
  msgstr ""
652
 
653
+ #: contextual-related-posts.php:289
654
  #, php-format
655
  msgid "Powered by <a href=\"%s\" rel=\"nofollow\">Contextual Related Posts</a>"
656
  msgstr ""
657
 
658
+ #: contextual-related-posts.php:670
659
  msgid "Related Posts [CRP]"
660
  msgstr ""
661
 
662
+ #: contextual-related-posts.php:671
663
  msgid "Display Related Posts"
664
  msgstr ""
665
 
666
+ #: contextual-related-posts.php:694
667
  msgid "Title"
668
  msgstr ""
669
 
670
+ #: contextual-related-posts.php:699
671
  msgid "No. of posts"
672
  msgstr ""
673
 
674
+ #: contextual-related-posts.php:704
675
  msgid " Show excerpt?"
676
  msgstr ""
677
 
678
+ #: contextual-related-posts.php:709
679
  msgid " Show author?"
680
  msgstr ""
681
 
682
+ #: contextual-related-posts.php:714
683
  msgid " Show date?"
684
  msgstr ""
685
 
686
+ #: contextual-related-posts.php:720
 
 
 
 
687
  msgid "Thumbnails inline, before title"
688
  msgstr ""
689
 
690
+ #: contextual-related-posts.php:721
691
  msgid "Thumbnails inline, after title"
692
  msgstr ""
693
 
694
+ #: contextual-related-posts.php:722
695
  msgid "Only thumbnails, no text"
696
  msgstr ""
697
 
698
+ #: contextual-related-posts.php:723
699
  msgid "No thumbnails, only text."
700
  msgstr ""
701
 
702
+ #: contextual-related-posts.php:728
703
  msgid "Thumbnail height"
704
  msgstr ""
705
 
706
+ #: contextual-related-posts.php:733
707
  msgid "Thumbnail width"
708
  msgstr ""
709
 
710
+ #: contextual-related-posts.php:897
711
  msgid "<h3>Related Posts:</h3>"
712
  msgstr ""
713
 
714
+ #: contextual-related-posts.php:899
715
  msgid "No related posts found"
716
  msgstr ""
717
+
718
+ #: contextual-related-posts.php:1211
719
+ msgid "thumb_timthumb argument has been deprecated"
720
+ msgstr ""
721
+
722
+ #: contextual-related-posts.php:1215
723
+ msgid "thumb_timthumb_q argument has been deprecated"
724
+ msgstr ""
725
+
726
+ #: contextual-related-posts.php:1219
727
+ msgid "filter argument has been deprecated"
728
+ msgstr ""
languages/crp-es_ES.mo CHANGED
Binary file
languages/crp-es_ES.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-09-04 20:42-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: \n"
@@ -12,237 +12,231 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e;_c;__ngettext\n"
14
  "X-Poedit-Basepath: ../\n"
15
- "X-Generator: Poedit 1.6.9\n"
 
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin/admin.php:161
19
  msgid "Options saved successfully."
20
  msgstr "Opciones guardadas correctament."
21
 
22
- #: admin/admin.php:181
 
 
 
 
 
 
23
  msgid "Options set to Default."
24
  msgstr "Restablecer opciones originales"
25
 
26
- #: admin/admin.php:192
27
  msgid "Index recreated"
28
  msgstr "Recrear el Index"
29
 
30
- #: admin/admin.php:209 admin/admin.php:419 admin/main-view.php:20
31
  msgid "Contextual Related Posts"
32
  msgstr "Posts Relacionados Contextualmente"
33
 
34
- #: admin/admin.php:210
35
  msgid "Related Posts"
36
  msgstr "Post Relacionados"
37
 
38
- #: admin/admin.php:321
39
  msgid "Settings"
40
  msgstr "Opciones"
41
 
42
- #: admin/admin.php:343 admin/sidebar-view.php:58
43
  msgid "Support"
44
  msgstr "Soporte"
45
 
46
- #: admin/admin.php:344
47
  msgid "Donate"
48
  msgstr "Donar"
49
 
50
- #: admin/admin.php:345
51
  msgid "Contribute"
52
  msgstr ""
53
 
54
- #: admin/admin.php:361
55
  #, fuzzy
56
  msgid "plugin settings page"
57
  msgstr "sitio del plugin"
58
 
59
- #: admin/admin.php:395
60
  msgid ""
61
  "An error occurred clearing the cache. Please contact your site administrator."
62
  "\\n\\nError message:\\n"
63
  msgstr ""
64
 
65
- #: admin/admin.php:400
66
  msgid " cached row(s) cleared"
67
  msgstr ""
68
 
69
- #: admin/admin.php:446
70
  msgid "Location of thumbnail:"
71
  msgstr ""
72
 
73
- #: admin/admin.php:448
74
  msgid ""
75
  "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
76
  "image will be used for the post. It will be resized to the thumbnail size "
77
  "set under Settings &raquo; Related Posts &raquo; Output Options"
78
  msgstr ""
79
 
80
- #: admin/admin.php:449
81
  msgid "The URL above is saved in the meta field: "
82
  msgstr ""
83
 
84
- #: admin/main-view.php:32 admin/main-view.php:51
85
  msgid "General options"
86
  msgstr ""
87
 
88
- #: admin/main-view.php:33 admin/main-view.php:60
 
 
 
 
89
  #, fuzzy
90
  msgid "Output options"
91
  msgstr "Opciones de Salida:"
92
 
93
- #: admin/main-view.php:34 admin/main-view.php:69
 
 
 
 
 
 
94
  #, fuzzy
95
  msgid "Feed options"
96
  msgstr "Opciones:"
97
 
98
- #: admin/main-view.php:35 admin/main-view.php:77
99
  msgid "Custom styles"
100
  msgstr ""
101
 
102
- #: admin/main-view.php:95
103
- #, fuzzy
104
- msgid "Save Options"
105
- msgstr "Opciones:"
106
-
107
- #: admin/main-view.php:96
108
- #, fuzzy
109
- msgid "Default Options"
110
- msgstr "Opciones de Salida:"
111
 
112
- #: admin/main-view.php:96
113
- msgid "Do you want to set options to Default?"
114
- msgstr "¿Quieres resetear las opciones?"
 
 
115
 
116
- #: admin/main-view.php:97
117
- msgid "Recreate Index"
118
  msgstr ""
119
 
120
- #: admin/main-view.php:97
121
- msgid "Are you sure you want to recreate the index?"
122
- msgstr "¿Está seguro que quiere recrear el index?"
 
123
 
124
- #: admin/options-custom-styles.php:32
125
- msgid "Use default style included in the plugin?"
126
  msgstr ""
127
 
128
- #: admin/options-custom-styles.php:35
129
- msgid ""
130
- "Contextual Related Posts includes a default style that makes your popular "
131
- "posts list to look beautiful. Check the box above if you want to use this."
132
  msgstr ""
133
 
134
- #: admin/options-custom-styles.php:36
135
- msgid ""
136
- "Enabling this option will turn on the thumbnails and set their width and "
137
- "height to 150px. It will also turn off the display of the author, excerpt "
138
- "and date if already enabled. Disabling this option will not revert any "
139
- "settings."
140
  msgstr ""
141
 
142
- #: admin/options-custom-styles.php:39
143
- msgid "Custom CSS to add to header:"
144
  msgstr ""
145
 
146
- #: admin/options-custom-styles.php:43
147
- msgid ""
148
- "Do not include <code>style</code> tags. Check out the <a href=\"http://"
149
- "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
150
- "\">FAQ</a> for available CSS classes to style."
151
  msgstr ""
152
 
153
- #: admin/options-feed.php:32
154
- msgid ""
155
- "Below options override the related posts settings for your blog feed. These "
156
- "only apply if you have selected to add related posts to Feeds in the General "
157
- "Options tab."
158
  msgstr ""
159
 
160
- #: admin/options-feed.php:34 admin/options-genops.php:39
161
- msgid "Number of related posts to display: "
162
- msgstr "Número de posts relacionados a mostrar:"
163
-
164
- #: admin/options-feed.php:37 admin/options-output.php:52
165
- msgid "Show post excerpt in list?"
166
- msgstr "¿Mostrar extracto con los items?"
167
-
168
- #: admin/options-feed.php:40 admin/options-output.php:239
169
- msgid "Location of post thumbnail:"
170
  msgstr ""
171
 
172
- #: admin/options-feed.php:44 admin/options-output.php:243
173
  #, fuzzy
174
- msgid "Display thumbnails inline with posts, before title"
175
- msgstr "Miniaturas en línea con los posts"
176
-
177
- #: admin/options-feed.php:48 admin/options-output.php:247
178
- #, fuzzy
179
- msgid "Display thumbnails inline with posts, after title"
180
- msgstr "Miniaturas en línea con los posts"
181
-
182
- #: admin/options-feed.php:52 admin/options-output.php:251
183
- msgid "Display only thumbnails, no text"
184
- msgstr "Solo miniaturas, sin texto"
185
-
186
- #: admin/options-feed.php:56 admin/options-output.php:255
187
- msgid "Do not display thumbnails, only text."
188
- msgstr "No mostrar miniaturas, solo texto."
189
 
190
- #: admin/options-feed.php:60
191
- msgid "Maximum width of the thumbnail: "
192
  msgstr ""
193
 
194
- #: admin/options-feed.php:63 admin/options-output.php:270
195
- msgid "Maximum height of the thumbnail: "
 
 
196
  msgstr ""
197
 
198
- #: admin/options-genops.php:32
199
- msgid "Cache output?"
 
 
 
 
 
200
  msgstr ""
201
 
202
- #: admin/options-genops.php:34
 
203
  msgid ""
204
- "Enabling this option will cache the related posts output when the post is "
205
- "visited the first time. The cache is cleaned when you save this page."
206
- msgstr ""
207
 
208
- #: admin/options-genops.php:35
209
- msgid "Clear cache"
210
- msgstr ""
 
 
211
 
212
- #: admin/options-genops.php:42
 
 
 
 
213
  msgid ""
214
  "Maximum number of posts that will be displayed. The actual number may be "
215
  "smaller if less related posts are found."
216
  msgstr ""
217
 
218
- #: admin/options-genops.php:46
219
  msgid "Related posts should be newer than:"
220
  msgstr ""
221
 
222
- #: admin/options-genops.php:48
223
  msgid "days"
224
  msgstr ""
225
 
226
- #: admin/options-genops.php:49
227
  msgid ""
228
  "This sets the cutoff period for which posts will be displayed. e.g. setting "
229
- "it to 365 will show related posts from the last year only."
230
- msgstr ""
231
-
232
- #: admin/options-genops.php:53
233
- msgid "Post types to include in results:"
234
- msgstr ""
235
-
236
- #: admin/options-genops.php:64
237
- msgid ""
238
- "These post types will be displayed in the list. Includes custom post types."
239
  msgstr ""
240
 
241
- #: admin/options-genops.php:68
242
  msgid "Find related posts based on content as well as title:"
243
  msgstr ""
244
 
245
- #: admin/options-genops.php:70
246
  #, fuzzy
247
  msgid ""
248
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
@@ -252,111 +246,73 @@ msgstr ""
252
  "deseleccionado, solo los títulos serán usados. (Recomiendo usar un plugin de "
253
  "caché si activas esto)"
254
 
255
- #: admin/options-genops.php:74
256
  msgid "Limit content to be compared"
257
  msgstr ""
258
 
259
- #: admin/options-genops.php:76
260
  msgid ""
261
  "This sets the maximum words of the content that will be matched. 0 means no "
262
  "limit."
263
  msgstr ""
264
 
265
- #: admin/options-genops.php:80
266
- #, fuzzy
267
- msgid "Add related posts to:"
268
- msgstr "Agregar posts relacionados al feed"
269
-
270
- #: admin/options-genops.php:82
271
- msgid "Posts"
272
- msgstr ""
273
-
274
- #: admin/options-genops.php:83
275
- msgid "Pages"
276
- msgstr ""
277
-
278
- #: admin/options-genops.php:84
279
- msgid "Home page"
280
- msgstr ""
281
-
282
- #: admin/options-genops.php:85
283
- msgid "Feeds"
284
- msgstr ""
285
-
286
- #: admin/options-genops.php:86
287
- msgid "Category archives"
288
- msgstr ""
289
-
290
- #: admin/options-genops.php:87
291
- msgid "Tag archives"
292
- msgstr ""
293
-
294
- #: admin/options-genops.php:88
295
- msgid "Other archives"
296
  msgstr ""
297
 
298
- #: admin/options-genops.php:89
299
- #, fuzzy
300
  msgid ""
301
- "If you choose to disable this, please add <code>&lt;?php if "
302
- "( function_exists( 'echo_ald_crp' ) ) echo_ald_crp(); ?&gt;</code> to your "
303
- "template file where you want it displayed"
304
  msgstr ""
305
- "Agregar posts relacionados a páginas. <br />Si eliges desabilitar esto, por "
306
- "favor agrega <code>&lt;?php if(function_exists('echo_ald_crp')) "
307
- "echo_ald_crp(); ?&gt;</code> a tu archivo de template donde quieras q se "
308
- "muestre"
309
 
310
- #: admin/options-genops.php:93
311
- msgid "Content filter priority:"
312
  msgstr ""
313
 
314
- #: admin/options-genops.php:96
315
  msgid ""
316
- "A higher number will cause the content above to be processed after other "
317
- "filters. Number below 10 is not recommended."
318
  msgstr ""
319
 
320
- #: admin/options-genops.php:100
321
- #, fuzzy
322
- msgid "Tell the world you're using Contextual Related Posts:"
323
- msgstr "Posts Relacionados Contextualmente"
324
-
325
- #: admin/options-genops.php:102
326
- msgid " <em>Optional</em>"
327
  msgstr ""
328
 
329
- #: admin/options-genops.php:103
330
- #, fuzzy
331
  msgid ""
332
- "Adds a nofollow link to Contextual Related Posts homepage as the last time "
333
- "in the list."
334
- msgstr "Posts relacionados contextualmente"
 
335
 
336
- #: admin/options-output.php:32
337
  msgid "Title of related posts: "
338
  msgstr "Título de posts relacionados:"
339
 
340
- #: admin/options-output.php:35
341
  msgid ""
342
  "This is the main heading of the related posts. You can also display the "
343
  "current post title by using <code>%postname%</code>. e.g. <code>Related "
344
  "Posts to %postname%</code>"
345
  msgstr ""
346
 
347
- #: admin/options-output.php:39
348
  msgid "When there are no posts, what should be shown?"
349
  msgstr "Cuando no hay posts, ¿Qué se debe mostrar?"
350
 
351
- #: admin/options-output.php:43
352
  msgid "Blank Output"
353
  msgstr "Salida vacía"
354
 
355
- #: admin/options-output.php:47
356
  msgid "Display:"
357
  msgstr ""
358
 
359
- #: admin/options-output.php:55
 
 
 
 
360
  #, php-format
361
  msgid ""
362
  "Displays the excerpt of the post. If you do not provide an explicit excerpt "
@@ -364,224 +320,238 @@ msgid ""
364
  "automatic excerpt which refers to the first %d words of the post's content"
365
  msgstr ""
366
 
367
- #: admin/options-output.php:59
 
 
 
 
 
368
  msgid "Length of excerpt (in words): "
369
  msgstr "Tamaño del extracto (en palabras):"
370
 
371
- #: admin/options-output.php:65
372
  #, fuzzy
373
  msgid "Show post author in list?"
374
  msgstr "¿Mostrar extracto con los items?"
375
 
376
- #: admin/options-output.php:68
377
  msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
378
  msgstr ""
379
 
380
- #: admin/options-output.php:72
 
 
 
 
 
381
  #, fuzzy
382
  msgid "Show post date in list?"
383
  msgstr "¿Mostrar extracto con los items?"
384
 
385
- #: admin/options-output.php:75
386
  msgid ""
387
  "Displays the date of the post. Uses the same date format set in General "
388
  "Options"
389
  msgstr ""
390
 
391
- #: admin/options-output.php:79
 
 
 
 
 
392
  msgid "Limit post title length (in characters)"
393
  msgstr ""
394
 
395
- #: admin/options-output.php:82
396
  msgid ""
397
  "Any title longer than the number of characters set above will be cut and "
398
  "appended with a &helip;"
399
  msgstr ""
400
 
401
- #: admin/options-output.php:86
402
  msgid "Open links in new window"
403
  msgstr ""
404
 
405
- #: admin/options-output.php:92
406
  msgid "Add nofollow attribute to links in the list"
407
  msgstr ""
408
 
409
- #: admin/options-output.php:125
410
  #, fuzzy
411
  msgid "Exclusion settings:"
412
  msgstr "sitio del plugin"
413
 
414
- #: admin/options-output.php:127
415
- msgid "List of post or page IDs to exclude from the results:"
416
- msgstr ""
417
-
418
- #: admin/options-output.php:129 admin/options-output.php:135
419
- msgid ""
420
- "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
421
- msgstr ""
422
-
423
- #: admin/options-output.php:132
424
  #, fuzzy
425
  msgid "Exclude display of related posts on these posts / pages"
426
  msgstr "Agregar posts relacionados al feed"
427
 
428
- #: admin/options-output.php:138
429
- msgid "Categories to exclude from the results: "
430
- msgstr ""
431
-
432
- #: admin/options-output.php:154
433
- msgid ""
434
- "Comma separated list of category slugs. The field above has an autocomplete "
435
- "so simply start typing in the beginning of your category name and it will "
436
- "prompt you with options."
437
- msgstr ""
438
-
439
- #: admin/options-output.php:157
440
  #, fuzzy
441
  msgid "Exclude display of related posts on these post types."
442
  msgstr "Agregar posts relacionados al feed"
443
 
444
- #: admin/options-output.php:166
445
  msgid ""
446
  "The related posts will not display on any of the above selected post types"
447
  msgstr ""
448
 
449
- #: admin/options-output.php:196
450
  msgid "Customize the output:"
451
  msgstr "Personalizar la salida:"
452
 
453
- #: admin/options-output.php:198
454
  msgid "HTML to display before the list of posts: "
455
  msgstr "HTML a mostrar antes de todos los items:"
456
 
457
- #: admin/options-output.php:201
458
  msgid "HTML to display before each list item: "
459
  msgstr "HTML a mostrar antes de cada item:"
460
 
461
- #: admin/options-output.php:204
462
  msgid "HTML to display after each list item: "
463
  msgstr "HTML a mostrar despues de cada item:"
464
 
465
- #: admin/options-output.php:207
466
  msgid "HTML to display after the list of posts: "
467
  msgstr "HTML a mostrar despues de todos los items:"
468
 
469
- #: admin/options-output.php:237
470
- msgid "Post thumbnail options:"
471
- msgstr "Opciones de miniaturas en el post:"
472
-
473
- #: admin/options-output.php:261
474
- msgid ""
475
- "Contextual Related Posts adds a new image size with the below dimensions."
476
  msgstr ""
477
 
478
- #: admin/options-output.php:262
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
479
  msgid ""
480
- "If you change the width and/or height below, existing images will not be "
481
- "automatically resized."
482
  msgstr ""
483
 
484
- #: admin/options-output.php:263
485
- #, php-format
486
- msgid ""
487
- "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
488
- "a> to regenerate all image sizes."
489
  msgstr ""
490
 
491
- #: admin/options-output.php:267
492
- msgid "Maximum width of the thumbnail:"
493
  msgstr ""
494
 
495
- #: admin/options-output.php:274
496
  msgid ""
497
- "Since you're using the default styles set under the Custom Styles section, "
498
- "the width and height is fixed at 150px"
 
499
  msgstr ""
500
 
501
- #: admin/options-output.php:278
502
- msgid "Crop mode:"
 
 
503
  msgstr ""
504
 
505
- #: admin/options-output.php:282
 
506
  msgid ""
507
- "By default, thumbnails will be proportionately cropped. Check this box to "
508
- "hard crop the thumbnails."
 
509
  msgstr ""
510
 
511
- #: admin/options-output.php:283
512
- #, php-format
513
- msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
514
  msgstr ""
515
 
516
- #: admin/options-output.php:287
517
- msgid "Style attributes / Width and Height HTML attributes:"
518
  msgstr ""
519
 
520
- #: admin/options-output.php:291
521
- msgid "Style attributes are used for width and height."
522
  msgstr ""
523
 
524
- #: admin/options-output.php:295
525
- msgid "HTML width and height attributes are used for width and height."
 
 
526
  msgstr ""
527
 
528
- #: admin/options-output.php:299
529
- msgid "Use timthumb to generate thumbnails? "
 
530
  msgstr ""
531
 
532
- #: admin/options-output.php:301
533
  msgid ""
534
- "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
535
- "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
536
  msgstr ""
537
 
538
- #: admin/options-output.php:304
539
- msgid "Quality of thumbnails generated by timthumb:"
540
  msgstr ""
541
 
542
- #: admin/options-output.php:307
543
- msgid ""
544
- "Enter values between 0 and 100 only. 100 is highest quality and the highest "
545
- "file size. Suggested maximum value is 95. CRP default is 75."
 
 
546
  msgstr ""
547
 
548
- #: admin/options-output.php:310
549
  #, fuzzy
550
  msgid "Post thumbnail meta field name:"
551
  msgstr "Opciones de miniaturas en el post:"
552
 
553
- #: admin/options-output.php:312
554
  msgid ""
555
  "The value of this field should contain the image source and is set in the "
556
  "<em>Add New Post</em> screen"
557
  msgstr ""
558
 
559
- #: admin/options-output.php:315
560
  msgid "Extract the first image from the post?"
561
  msgstr ""
562
 
563
- #: admin/options-output.php:317
564
  msgid ""
565
  "This will only happen if there is no post thumbnail set and no image URL is "
566
  "specified in the meta field."
567
  msgstr ""
568
 
569
- #: admin/options-output.php:320
570
  msgid "Use default thumbnail?"
571
  msgstr ""
572
 
573
- #: admin/options-output.php:322
574
  msgid ""
575
  "If checked, when no thumbnail is found, show a default one from the URL "
576
  "below. If not checked and no thumbnail is found, no image will be shown."
577
  msgstr ""
578
 
579
- #: admin/options-output.php:325
580
  #, fuzzy
581
  msgid "Default thumbnail:"
582
  msgstr "Opciones de Salida:"
583
 
584
- #: admin/options-output.php:328
585
  #, fuzzy
586
  msgid ""
587
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -592,6 +562,73 @@ msgstr ""
592
  "ninguno verificará el campo meta. Si no está disponible, entonces mostrará "
593
  "la imágen padrón especificada a continuación:"
594
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
595
  #: admin/sidebar-view.php:20
596
  msgid "Support the development"
597
  msgstr "Apoya el desarrollo"
@@ -614,121 +651,131 @@ msgstr "Enviar tu donación al autor de"
614
  msgid "Follow me"
615
  msgstr ""
616
 
617
- #: admin/sidebar-view.php:52
618
  #, fuzzy
619
  msgid "Quick links"
620
  msgstr "Links rápidos"
621
 
622
- #: admin/sidebar-view.php:56
623
  #, fuzzy
624
  msgid "Contextual Related Posts plugin page"
625
  msgstr "Posts relacionados contextualmente"
626
 
627
- #: admin/sidebar-view.php:57
628
  msgid "FAQ"
629
  msgstr ""
630
 
631
- #: admin/sidebar-view.php:59
632
  msgid "Reviews"
633
  msgstr ""
634
 
635
- #: admin/sidebar-view.php:60
636
  msgid "Github repository"
637
  msgstr ""
638
 
639
- #: admin/sidebar-view.php:61
640
  msgid "Other plugins"
641
  msgstr "Otros plugins"
642
 
643
- #: admin/sidebar-view.php:62
644
  msgid "Ajay's blog"
645
  msgstr ""
646
 
647
- #: contextual-related-posts.php:246
648
  msgid " by "
649
  msgstr ""
650
 
651
- #: contextual-related-posts.php:285
652
  #, php-format
653
  msgid "Powered by <a href=\"%s\" rel=\"nofollow\">Contextual Related Posts</a>"
654
  msgstr ""
655
 
656
- #: contextual-related-posts.php:596
657
  #, fuzzy
658
  msgid "Related Posts [CRP]"
659
  msgstr "Post Relacionados"
660
 
661
- #: contextual-related-posts.php:597
662
  #, fuzzy
663
  msgid "Display Related Posts"
664
  msgstr "Mostrar \"Posts No Relacionados\""
665
 
666
- #: contextual-related-posts.php:620
667
  msgid "Title"
668
  msgstr ""
669
 
670
- #: contextual-related-posts.php:625
671
  msgid "No. of posts"
672
  msgstr ""
673
 
674
- #: contextual-related-posts.php:630
675
  #, fuzzy
676
  msgid " Show excerpt?"
677
  msgstr "¿Mostrar extracto con los items?"
678
 
679
- #: contextual-related-posts.php:635
680
  msgid " Show author?"
681
  msgstr ""
682
 
683
- #: contextual-related-posts.php:640
684
  #, fuzzy
685
  msgid " Show date?"
686
  msgstr "¿Mostrar extracto con los items?"
687
 
688
- #: contextual-related-posts.php:644
689
- #, fuzzy
690
- msgid "Thumbnail options"
691
- msgstr "Opciones de miniaturas en el post:"
692
-
693
- #: contextual-related-posts.php:646
694
  #, fuzzy
695
  msgid "Thumbnails inline, before title"
696
  msgstr "Miniaturas en línea con los posts"
697
 
698
- #: contextual-related-posts.php:647
699
  #, fuzzy
700
  msgid "Thumbnails inline, after title"
701
  msgstr "Miniaturas en línea con los posts"
702
 
703
- #: contextual-related-posts.php:648
704
  #, fuzzy
705
  msgid "Only thumbnails, no text"
706
  msgstr "Solo miniaturas, sin texto"
707
 
708
- #: contextual-related-posts.php:649
709
  #, fuzzy
710
  msgid "No thumbnails, only text."
711
  msgstr "No mostrar miniaturas, solo texto."
712
 
713
- #: contextual-related-posts.php:654
714
  #, fuzzy
715
  msgid "Thumbnail height"
716
  msgstr "Opciones de miniaturas en el post:"
717
 
718
- #: contextual-related-posts.php:659
719
  #, fuzzy
720
  msgid "Thumbnail width"
721
  msgstr "Opciones de miniaturas en el post:"
722
 
723
- #: contextual-related-posts.php:799
724
  msgid "<h3>Related Posts:</h3>"
725
  msgstr "<h3>Post Relacionados:</h3>"
726
 
727
- #: contextual-related-posts.php:801
728
  #, fuzzy
729
  msgid "No related posts found"
730
  msgstr "No hay posts relacionados"
731
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
732
  #~ msgid "Powered by"
733
  #~ msgstr "Creado por"
734
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-05-09 22:20-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: \n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e;_c;__ngettext\n"
14
  "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.7.1\n"
16
+ "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: admin/admin.php:166
20
  msgid "Options saved successfully."
21
  msgstr "Opciones guardadas correctament."
22
 
23
+ #: admin/admin.php:169
24
+ msgid ""
25
+ "Default styles selected. Thumbnail width, height and crop settings have been "
26
+ "fixed. Author, Excerpt and Date will not be displayed."
27
+ msgstr ""
28
+
29
+ #: admin/admin.php:194
30
  msgid "Options set to Default."
31
  msgstr "Restablecer opciones originales"
32
 
33
+ #: admin/admin.php:205
34
  msgid "Index recreated"
35
  msgstr "Recrear el Index"
36
 
37
+ #: admin/admin.php:222 admin/admin.php:453 admin/main-view.php:20
38
  msgid "Contextual Related Posts"
39
  msgstr "Posts Relacionados Contextualmente"
40
 
41
+ #: admin/admin.php:223
42
  msgid "Related Posts"
43
  msgstr "Post Relacionados"
44
 
45
+ #: admin/admin.php:338
46
  msgid "Settings"
47
  msgstr "Opciones"
48
 
49
+ #: admin/admin.php:360 admin/sidebar-view.php:59
50
  msgid "Support"
51
  msgstr "Soporte"
52
 
53
+ #: admin/admin.php:361
54
  msgid "Donate"
55
  msgstr "Donar"
56
 
57
+ #: admin/admin.php:362
58
  msgid "Contribute"
59
  msgstr ""
60
 
61
+ #: admin/admin.php:378
62
  #, fuzzy
63
  msgid "plugin settings page"
64
  msgstr "sitio del plugin"
65
 
66
+ #: admin/admin.php:422
67
  msgid ""
68
  "An error occurred clearing the cache. Please contact your site administrator."
69
  "\\n\\nError message:\\n"
70
  msgstr ""
71
 
72
+ #: admin/admin.php:427
73
  msgid " cached row(s) cleared"
74
  msgstr ""
75
 
76
+ #: admin/admin.php:480
77
  msgid "Location of thumbnail:"
78
  msgstr ""
79
 
80
+ #: admin/admin.php:482
81
  msgid ""
82
  "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
83
  "image will be used for the post. It will be resized to the thumbnail size "
84
  "set under Settings &raquo; Related Posts &raquo; Output Options"
85
  msgstr ""
86
 
87
+ #: admin/admin.php:483
88
  msgid "The URL above is saved in the meta field: "
89
  msgstr ""
90
 
91
+ #: admin/main-view.php:32 admin/main-view.php:54
92
  msgid "General options"
93
  msgstr ""
94
 
95
+ #: admin/main-view.php:33 admin/main-view.php:125
96
+ msgid "List tuning options"
97
+ msgstr ""
98
+
99
+ #: admin/main-view.php:34 admin/main-view.php:229
100
  #, fuzzy
101
  msgid "Output options"
102
  msgstr "Opciones de Salida:"
103
 
104
+ #: admin/main-view.php:35 admin/main-view.php:433
105
+ #: contextual-related-posts.php:718
106
+ #, fuzzy
107
+ msgid "Thumbnail options"
108
+ msgstr "Opciones de miniaturas en el post:"
109
+
110
+ #: admin/main-view.php:36 admin/main-view.php:580
111
  #, fuzzy
112
  msgid "Feed options"
113
  msgstr "Opciones:"
114
 
115
+ #: admin/main-view.php:37 admin/main-view.php:652
116
  msgid "Custom styles"
117
  msgstr ""
118
 
119
+ #: admin/main-view.php:70
120
+ msgid "Cache output?"
121
+ msgstr ""
 
 
 
 
 
 
122
 
123
+ #: admin/main-view.php:72
124
+ msgid ""
125
+ "Enabling this option will cache the related posts output when the post is "
126
+ "visited the first time. The cache is cleaned when you save this page."
127
+ msgstr ""
128
 
129
+ #: admin/main-view.php:73
130
+ msgid "Clear cache"
131
  msgstr ""
132
 
133
+ #: admin/main-view.php:77
134
+ #, fuzzy
135
+ msgid "Add related posts to:"
136
+ msgstr "Agregar posts relacionados al feed"
137
 
138
+ #: admin/main-view.php:79
139
+ msgid "Posts"
140
  msgstr ""
141
 
142
+ #: admin/main-view.php:80
143
+ msgid "Pages"
 
 
144
  msgstr ""
145
 
146
+ #: admin/main-view.php:81
147
+ msgid "Home page"
 
 
 
 
148
  msgstr ""
149
 
150
+ #: admin/main-view.php:82
151
+ msgid "Feeds"
152
  msgstr ""
153
 
154
+ #: admin/main-view.php:83
155
+ msgid "Category archives"
 
 
 
156
  msgstr ""
157
 
158
+ #: admin/main-view.php:84
159
+ msgid "Tag archives"
 
 
 
160
  msgstr ""
161
 
162
+ #: admin/main-view.php:85
163
+ msgid "Other archives"
 
 
 
 
 
 
 
 
164
  msgstr ""
165
 
166
+ #: admin/main-view.php:86
167
  #, fuzzy
168
+ msgid ""
169
+ "If you choose to disable this, please add <code>&lt;?php if "
170
+ "( function_exists( 'echo_ald_crp' ) ) echo_ald_crp(); ?&gt;</code> to your "
171
+ "template file where you want it displayed"
172
+ msgstr ""
173
+ "Agregar posts relacionados a páginas. <br />Si eliges desabilitar esto, por "
174
+ "favor agrega <code>&lt;?php if(function_exists('echo_ald_crp')) "
175
+ "echo_ald_crp(); ?&gt;</code> a tu archivo de template donde quieras q se "
176
+ "muestre"
 
 
 
 
 
 
177
 
178
+ #: admin/main-view.php:90
179
+ msgid "Content filter priority:"
180
  msgstr ""
181
 
182
+ #: admin/main-view.php:93
183
+ msgid ""
184
+ "A higher number will cause the content above to be processed after other "
185
+ "filters. Number below 10 is not recommended."
186
  msgstr ""
187
 
188
+ #: admin/main-view.php:97
189
+ #, fuzzy
190
+ msgid "Tell the world you're using Contextual Related Posts:"
191
+ msgstr "Posts Relacionados Contextualmente"
192
+
193
+ #: admin/main-view.php:99
194
+ msgid " <em>Optional</em>"
195
  msgstr ""
196
 
197
+ #: admin/main-view.php:100
198
+ #, fuzzy
199
  msgid ""
200
+ "Adds a nofollow link to Contextual Related Posts homepage as the last time "
201
+ "in the list."
202
+ msgstr "Posts relacionados contextualmente"
203
 
204
+ #: admin/main-view.php:118 admin/main-view.php:222 admin/main-view.php:426
205
+ #: admin/main-view.php:573 admin/main-view.php:645 admin/main-view.php:709
206
+ #, fuzzy
207
+ msgid "Save Options"
208
+ msgstr "Opciones:"
209
 
210
+ #: admin/main-view.php:141 admin/main-view.php:598
211
+ msgid "Number of related posts to display: "
212
+ msgstr "Número de posts relacionados a mostrar:"
213
+
214
+ #: admin/main-view.php:144
215
  msgid ""
216
  "Maximum number of posts that will be displayed. The actual number may be "
217
  "smaller if less related posts are found."
218
  msgstr ""
219
 
220
+ #: admin/main-view.php:148
221
  msgid "Related posts should be newer than:"
222
  msgstr ""
223
 
224
+ #: admin/main-view.php:150
225
  msgid "days"
226
  msgstr ""
227
 
228
+ #: admin/main-view.php:151
229
  msgid ""
230
  "This sets the cutoff period for which posts will be displayed. e.g. setting "
231
+ "it to 365 will show related posts from the last year only. Set it to 0 to "
232
+ "disable limiting posts."
 
 
 
 
 
 
 
 
233
  msgstr ""
234
 
235
+ #: admin/main-view.php:155
236
  msgid "Find related posts based on content as well as title:"
237
  msgstr ""
238
 
239
+ #: admin/main-view.php:157
240
  #, fuzzy
241
  msgid ""
242
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
246
  "deseleccionado, solo los títulos serán usados. (Recomiendo usar un plugin de "
247
  "caché si activas esto)"
248
 
249
+ #: admin/main-view.php:161
250
  msgid "Limit content to be compared"
251
  msgstr ""
252
 
253
+ #: admin/main-view.php:163
254
  msgid ""
255
  "This sets the maximum words of the content that will be matched. 0 means no "
256
  "limit."
257
  msgstr ""
258
 
259
+ #: admin/main-view.php:167
260
+ msgid "Post types to include in results:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
261
  msgstr ""
262
 
263
+ #: admin/main-view.php:178
 
264
  msgid ""
265
+ "These post types will be displayed in the list. Includes custom post types."
 
 
266
  msgstr ""
 
 
 
 
267
 
268
+ #: admin/main-view.php:182
269
+ msgid "List of post or page IDs to exclude from the results:"
270
  msgstr ""
271
 
272
+ #: admin/main-view.php:184 admin/main-view.php:355
273
  msgid ""
274
+ "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
 
275
  msgstr ""
276
 
277
+ #: admin/main-view.php:188
278
+ msgid "Categories to exclude from the results: "
 
 
 
 
 
279
  msgstr ""
280
 
281
+ #: admin/main-view.php:204
 
282
  msgid ""
283
+ "Comma separated list of category slugs. The field above has an autocomplete "
284
+ "so simply start typing in the beginning of your category name and it will "
285
+ "prompt you with options."
286
+ msgstr ""
287
 
288
+ #: admin/main-view.php:245
289
  msgid "Title of related posts: "
290
  msgstr "Título de posts relacionados:"
291
 
292
+ #: admin/main-view.php:248
293
  msgid ""
294
  "This is the main heading of the related posts. You can also display the "
295
  "current post title by using <code>%postname%</code>. e.g. <code>Related "
296
  "Posts to %postname%</code>"
297
  msgstr ""
298
 
299
+ #: admin/main-view.php:252
300
  msgid "When there are no posts, what should be shown?"
301
  msgstr "Cuando no hay posts, ¿Qué se debe mostrar?"
302
 
303
+ #: admin/main-view.php:256
304
  msgid "Blank Output"
305
  msgstr "Salida vacía"
306
 
307
+ #: admin/main-view.php:260
308
  msgid "Display:"
309
  msgstr ""
310
 
311
+ #: admin/main-view.php:265 admin/main-view.php:601
312
+ msgid "Show post excerpt in list?"
313
+ msgstr "¿Mostrar extracto con los items?"
314
+
315
+ #: admin/main-view.php:268
316
  #, php-format
317
  msgid ""
318
  "Displays the excerpt of the post. If you do not provide an explicit excerpt "
320
  "automatic excerpt which refers to the first %d words of the post's content"
321
  msgstr ""
322
 
323
+ #: admin/main-view.php:271
324
+ msgid ""
325
+ "Default style selected under the Custom Styles. Excerpt display is disabled."
326
+ msgstr ""
327
+
328
+ #: admin/main-view.php:276
329
  msgid "Length of excerpt (in words): "
330
  msgstr "Tamaño del extracto (en palabras):"
331
 
332
+ #: admin/main-view.php:282
333
  #, fuzzy
334
  msgid "Show post author in list?"
335
  msgstr "¿Mostrar extracto con los items?"
336
 
337
+ #: admin/main-view.php:285
338
  msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
339
  msgstr ""
340
 
341
+ #: admin/main-view.php:288
342
+ msgid ""
343
+ "Default style selected under the Custom Styles. Author display is disabled."
344
+ msgstr ""
345
+
346
+ #: admin/main-view.php:293
347
  #, fuzzy
348
  msgid "Show post date in list?"
349
  msgstr "¿Mostrar extracto con los items?"
350
 
351
+ #: admin/main-view.php:296
352
  msgid ""
353
  "Displays the date of the post. Uses the same date format set in General "
354
  "Options"
355
  msgstr ""
356
 
357
+ #: admin/main-view.php:299
358
+ msgid ""
359
+ "Default style selected under the Custom Styles. Date display is disabled."
360
+ msgstr ""
361
+
362
+ #: admin/main-view.php:304
363
  msgid "Limit post title length (in characters)"
364
  msgstr ""
365
 
366
+ #: admin/main-view.php:307
367
  msgid ""
368
  "Any title longer than the number of characters set above will be cut and "
369
  "appended with a &helip;"
370
  msgstr ""
371
 
372
+ #: admin/main-view.php:311
373
  msgid "Open links in new window"
374
  msgstr ""
375
 
376
+ #: admin/main-view.php:317
377
  msgid "Add nofollow attribute to links in the list"
378
  msgstr ""
379
 
380
+ #: admin/main-view.php:350
381
  #, fuzzy
382
  msgid "Exclusion settings:"
383
  msgstr "sitio del plugin"
384
 
385
+ #: admin/main-view.php:352
 
 
 
 
 
 
 
 
 
386
  #, fuzzy
387
  msgid "Exclude display of related posts on these posts / pages"
388
  msgstr "Agregar posts relacionados al feed"
389
 
390
+ #: admin/main-view.php:358
 
 
 
 
 
 
 
 
 
 
 
391
  #, fuzzy
392
  msgid "Exclude display of related posts on these post types."
393
  msgstr "Agregar posts relacionados al feed"
394
 
395
+ #: admin/main-view.php:367
396
  msgid ""
397
  "The related posts will not display on any of the above selected post types"
398
  msgstr ""
399
 
400
+ #: admin/main-view.php:397
401
  msgid "Customize the output:"
402
  msgstr "Personalizar la salida:"
403
 
404
+ #: admin/main-view.php:399
405
  msgid "HTML to display before the list of posts: "
406
  msgstr "HTML a mostrar antes de todos los items:"
407
 
408
+ #: admin/main-view.php:402
409
  msgid "HTML to display before each list item: "
410
  msgstr "HTML a mostrar antes de cada item:"
411
 
412
+ #: admin/main-view.php:405
413
  msgid "HTML to display after each list item: "
414
  msgstr "HTML a mostrar despues de cada item:"
415
 
416
+ #: admin/main-view.php:408
417
  msgid "HTML to display after the list of posts: "
418
  msgstr "HTML a mostrar despues de todos los items:"
419
 
420
+ #: admin/main-view.php:449 admin/main-view.php:604
421
+ msgid "Location of post thumbnail:"
 
 
 
 
 
422
  msgstr ""
423
 
424
+ #: admin/main-view.php:453 admin/main-view.php:608
425
+ #, fuzzy
426
+ msgid "Display thumbnails inline with posts, before title"
427
+ msgstr "Miniaturas en línea con los posts"
428
+
429
+ #: admin/main-view.php:457 admin/main-view.php:612
430
+ #, fuzzy
431
+ msgid "Display thumbnails inline with posts, after title"
432
+ msgstr "Miniaturas en línea con los posts"
433
+
434
+ #: admin/main-view.php:461 admin/main-view.php:616
435
+ msgid "Display only thumbnails, no text"
436
+ msgstr "Solo miniaturas, sin texto"
437
+
438
+ #: admin/main-view.php:465 admin/main-view.php:620
439
+ msgid "Do not display thumbnails, only text."
440
+ msgstr "No mostrar miniaturas, solo texto."
441
+
442
+ #: admin/main-view.php:468
443
  msgid ""
444
+ "Default style selected under the Custom Styles. Location of thumbnail forced "
445
+ "to be inline before title"
446
  msgstr ""
447
 
448
+ #: admin/main-view.php:472
449
+ msgid "Thumbnail size:"
 
 
 
450
  msgstr ""
451
 
452
+ #: admin/main-view.php:496
453
+ msgid "Custom size"
454
  msgstr ""
455
 
456
+ #: admin/main-view.php:499
457
  msgid ""
458
+ "You can choose from existing image sizes above or create a custom size. If "
459
+ "you have chosen Custom size above, then enter the width, height and crop "
460
+ "settings below. For best results, use a cropped image."
461
  msgstr ""
462
 
463
+ #: admin/main-view.php:500
464
+ msgid ""
465
+ "If you change the width, height or crop mode below, existing images will not "
466
+ "be automatically resized."
467
  msgstr ""
468
 
469
+ #: admin/main-view.php:501
470
+ #, php-format
471
  msgid ""
472
+ "I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
473
+ "a> or <a href='%s' class='thickbox'>Regenerate Thumbnails</a> to regenerate "
474
+ "all image sizes."
475
  msgstr ""
476
 
477
+ #: admin/main-view.php:505
478
+ msgid "Width of the thumbnail:"
 
479
  msgstr ""
480
 
481
+ #: admin/main-view.php:508
482
+ msgid "Height of the thumbnail: "
483
  msgstr ""
484
 
485
+ #: admin/main-view.php:513
486
+ msgid "Crop mode:"
487
  msgstr ""
488
 
489
+ #: admin/main-view.php:517
490
+ msgid ""
491
+ "By default, thumbnails will be hard cropped. Uncheck this box to "
492
+ "proportionately/soft crop the thumbnails."
493
  msgstr ""
494
 
495
+ #: admin/main-view.php:518
496
+ #, php-format
497
+ msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
498
  msgstr ""
499
 
500
+ #: admin/main-view.php:521
501
  msgid ""
502
+ "Default style selected under the Custom Styles. Thumbnail width and height "
503
+ "is fixed at 150px and crop mode is enabled."
504
  msgstr ""
505
 
506
+ #: admin/main-view.php:525
507
+ msgid "Style attributes / Width and Height HTML attributes:"
508
  msgstr ""
509
 
510
+ #: admin/main-view.php:529
511
+ msgid "Style attributes are used for width and height."
512
+ msgstr ""
513
+
514
+ #: admin/main-view.php:533
515
+ msgid "HTML width and height attributes are used for width and height."
516
  msgstr ""
517
 
518
+ #: admin/main-view.php:537
519
  #, fuzzy
520
  msgid "Post thumbnail meta field name:"
521
  msgstr "Opciones de miniaturas en el post:"
522
 
523
+ #: admin/main-view.php:539
524
  msgid ""
525
  "The value of this field should contain the image source and is set in the "
526
  "<em>Add New Post</em> screen"
527
  msgstr ""
528
 
529
+ #: admin/main-view.php:542
530
  msgid "Extract the first image from the post?"
531
  msgstr ""
532
 
533
+ #: admin/main-view.php:544
534
  msgid ""
535
  "This will only happen if there is no post thumbnail set and no image URL is "
536
  "specified in the meta field."
537
  msgstr ""
538
 
539
+ #: admin/main-view.php:547
540
  msgid "Use default thumbnail?"
541
  msgstr ""
542
 
543
+ #: admin/main-view.php:549
544
  msgid ""
545
  "If checked, when no thumbnail is found, show a default one from the URL "
546
  "below. If not checked and no thumbnail is found, no image will be shown."
547
  msgstr ""
548
 
549
+ #: admin/main-view.php:552
550
  #, fuzzy
551
  msgid "Default thumbnail:"
552
  msgstr "Opciones de Salida:"
553
 
554
+ #: admin/main-view.php:555
555
  #, fuzzy
556
  msgid ""
557
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
562
  "ninguno verificará el campo meta. Si no está disponible, entonces mostrará "
563
  "la imágen padrón especificada a continuación:"
564
 
565
+ #: admin/main-view.php:596
566
+ msgid ""
567
+ "Below options override the related posts settings for your blog feed. These "
568
+ "only apply if you have selected to add related posts to Feeds in the General "
569
+ "Options tab."
570
+ msgstr ""
571
+
572
+ #: admin/main-view.php:624
573
+ msgid "Maximum width of the thumbnail: "
574
+ msgstr ""
575
+
576
+ #: admin/main-view.php:627
577
+ msgid "Maximum height of the thumbnail: "
578
+ msgstr ""
579
+
580
+ #: admin/main-view.php:668
581
+ msgid "Use default style included in the plugin?"
582
+ msgstr ""
583
+
584
+ #: admin/main-view.php:671
585
+ msgid ""
586
+ "Contextual Related Posts includes a default style that makes your popular "
587
+ "posts list to look beautiful. Check the box above if you want to use this."
588
+ msgstr ""
589
+
590
+ #: admin/main-view.php:672
591
+ msgid ""
592
+ "Enabling this option will turn on the thumbnails and set their width and "
593
+ "height to 150px. It will also turn off the display of the author, excerpt "
594
+ "and date if already enabled. Disabling this option will not revert any "
595
+ "settings."
596
+ msgstr ""
597
+
598
+ #: admin/main-view.php:673
599
+ #, php-format
600
+ msgid ""
601
+ "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
602
+ msgstr ""
603
+
604
+ #: admin/main-view.php:676
605
+ msgid "Custom CSS to add to header:"
606
+ msgstr ""
607
+
608
+ #: admin/main-view.php:680
609
+ msgid ""
610
+ "Do not include <code>style</code> tags. Check out the <a href=\"http://"
611
+ "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
612
+ "\">FAQ</a> for available CSS classes to style."
613
+ msgstr ""
614
+
615
+ #: admin/main-view.php:710
616
+ #, fuzzy
617
+ msgid "Default Options"
618
+ msgstr "Opciones de Salida:"
619
+
620
+ #: admin/main-view.php:710
621
+ msgid "Do you want to set options to Default?"
622
+ msgstr "¿Quieres resetear las opciones?"
623
+
624
+ #: admin/main-view.php:711
625
+ msgid "Recreate Index"
626
+ msgstr ""
627
+
628
+ #: admin/main-view.php:711
629
+ msgid "Are you sure you want to recreate the index?"
630
+ msgstr "¿Está seguro que quiere recrear el index?"
631
+
632
  #: admin/sidebar-view.php:20
633
  msgid "Support the development"
634
  msgstr "Apoya el desarrollo"
651
  msgid "Follow me"
652
  msgstr ""
653
 
654
+ #: admin/sidebar-view.php:53
655
  #, fuzzy
656
  msgid "Quick links"
657
  msgstr "Links rápidos"
658
 
659
+ #: admin/sidebar-view.php:57
660
  #, fuzzy
661
  msgid "Contextual Related Posts plugin page"
662
  msgstr "Posts relacionados contextualmente"
663
 
664
+ #: admin/sidebar-view.php:58
665
  msgid "FAQ"
666
  msgstr ""
667
 
668
+ #: admin/sidebar-view.php:60
669
  msgid "Reviews"
670
  msgstr ""
671
 
672
+ #: admin/sidebar-view.php:61
673
  msgid "Github repository"
674
  msgstr ""
675
 
676
+ #: admin/sidebar-view.php:62
677
  msgid "Other plugins"
678
  msgstr "Otros plugins"
679
 
680
+ #: admin/sidebar-view.php:63
681
  msgid "Ajay's blog"
682
  msgstr ""
683
 
684
+ #: contextual-related-posts.php:250
685
  msgid " by "
686
  msgstr ""
687
 
688
+ #: contextual-related-posts.php:289
689
  #, php-format
690
  msgid "Powered by <a href=\"%s\" rel=\"nofollow\">Contextual Related Posts</a>"
691
  msgstr ""
692
 
693
+ #: contextual-related-posts.php:670
694
  #, fuzzy
695
  msgid "Related Posts [CRP]"
696
  msgstr "Post Relacionados"
697
 
698
+ #: contextual-related-posts.php:671
699
  #, fuzzy
700
  msgid "Display Related Posts"
701
  msgstr "Mostrar \"Posts No Relacionados\""
702
 
703
+ #: contextual-related-posts.php:694
704
  msgid "Title"
705
  msgstr ""
706
 
707
+ #: contextual-related-posts.php:699
708
  msgid "No. of posts"
709
  msgstr ""
710
 
711
+ #: contextual-related-posts.php:704
712
  #, fuzzy
713
  msgid " Show excerpt?"
714
  msgstr "¿Mostrar extracto con los items?"
715
 
716
+ #: contextual-related-posts.php:709
717
  msgid " Show author?"
718
  msgstr ""
719
 
720
+ #: contextual-related-posts.php:714
721
  #, fuzzy
722
  msgid " Show date?"
723
  msgstr "¿Mostrar extracto con los items?"
724
 
725
+ #: contextual-related-posts.php:720
 
 
 
 
 
726
  #, fuzzy
727
  msgid "Thumbnails inline, before title"
728
  msgstr "Miniaturas en línea con los posts"
729
 
730
+ #: contextual-related-posts.php:721
731
  #, fuzzy
732
  msgid "Thumbnails inline, after title"
733
  msgstr "Miniaturas en línea con los posts"
734
 
735
+ #: contextual-related-posts.php:722
736
  #, fuzzy
737
  msgid "Only thumbnails, no text"
738
  msgstr "Solo miniaturas, sin texto"
739
 
740
+ #: contextual-related-posts.php:723
741
  #, fuzzy
742
  msgid "No thumbnails, only text."
743
  msgstr "No mostrar miniaturas, solo texto."
744
 
745
+ #: contextual-related-posts.php:728
746
  #, fuzzy
747
  msgid "Thumbnail height"
748
  msgstr "Opciones de miniaturas en el post:"
749
 
750
+ #: contextual-related-posts.php:733
751
  #, fuzzy
752
  msgid "Thumbnail width"
753
  msgstr "Opciones de miniaturas en el post:"
754
 
755
+ #: contextual-related-posts.php:897
756
  msgid "<h3>Related Posts:</h3>"
757
  msgstr "<h3>Post Relacionados:</h3>"
758
 
759
+ #: contextual-related-posts.php:899
760
  #, fuzzy
761
  msgid "No related posts found"
762
  msgstr "No hay posts relacionados"
763
 
764
+ #: contextual-related-posts.php:1211
765
+ msgid "thumb_timthumb argument has been deprecated"
766
+ msgstr ""
767
+
768
+ #: contextual-related-posts.php:1215
769
+ msgid "thumb_timthumb_q argument has been deprecated"
770
+ msgstr ""
771
+
772
+ #: contextual-related-posts.php:1219
773
+ msgid "filter argument has been deprecated"
774
+ msgstr ""
775
+
776
+ #~ msgid "Post thumbnail options:"
777
+ #~ msgstr "Opciones de miniaturas en el post:"
778
+
779
  #~ msgid "Powered by"
780
  #~ msgstr "Creado por"
781
 
languages/crp-fr_FR.mo CHANGED
Binary file
languages/crp-fr_FR.po CHANGED
@@ -1,570 +1,691 @@
1
- #
2
  # Translators:
 
3
  # FxB <fxb@wp-translations.org>, 2014
 
4
  msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Contextual Related Posts\n"
7
  "Report-Msgid-Bugs-To: \n"
8
- "POT-Creation-Date: 2014-09-04 20:40-0000\n"
9
- "PO-Revision-Date: 2014-09-04 20:11+0000\n"
10
- "Last-Translator: Ajay D'Souza\n"
11
- "Language-Team: French (France) (http://www.transifex.com/projects/p/contextual-related-posts/language/fr_FR/)\n"
 
 
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
- "Language: fr_FR\n"
16
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
17
- "X-Generator: Poedit 1.6.9\n"
18
  "X-Poedit-Basepath: ../\n"
19
  "X-Poedit-KeywordsList: __;_e;_c;__ngettext\n"
 
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
- #: admin/admin.php:161
23
  msgid "Options saved successfully."
24
  msgstr "Options sauvegardées avec succès."
25
 
26
- #: admin/admin.php:181
 
 
 
 
 
 
27
  msgid "Options set to Default."
28
  msgstr "Options remises à la valeur par défaut."
29
 
30
- #: admin/admin.php:192
31
  msgid "Index recreated"
32
  msgstr "Index recrée"
33
 
34
- #: admin/admin.php:209 admin/admin.php:419 admin/main-view.php:20
35
  msgid "Contextual Related Posts"
36
  msgstr "Articles relatifs contextuels"
37
 
38
- #: admin/admin.php:210
39
  msgid "Related Posts"
40
  msgstr "Articles relatifs"
41
 
42
- #: admin/admin.php:321
43
  msgid "Settings"
44
  msgstr "Réglages"
45
 
46
- #: admin/admin.php:343 admin/sidebar-view.php:58
47
  msgid "Support"
48
  msgstr "Aide"
49
 
50
- #: admin/admin.php:344
51
  msgid "Donate"
52
  msgstr "Don"
53
 
54
- #: admin/admin.php:345
55
  msgid "Contribute"
56
  msgstr "Contribuer"
57
 
58
- #: admin/admin.php:361
59
  msgid "plugin settings page"
60
  msgstr "Page des réglages de l'extension"
61
 
62
- #: admin/admin.php:395
63
  msgid ""
64
- "An error occurred clearing the cache. Please contact your site "
65
- "administrator.\\n\\nError message:\\n"
66
- msgstr "Une erreur s'est produite lors du nettoyage du cache. Veuillez contacter l'administrateur de votre site.\\n\\nMessage d'erreur :\\n"
 
 
67
 
68
- #: admin/admin.php:400
69
  msgid " cached row(s) cleared"
70
  msgstr "rang(s) en cache nettoyé(s)"
71
 
72
- #: admin/admin.php:446
73
  msgid "Location of thumbnail:"
74
  msgstr "Emplacement de la miniature :"
75
 
76
- #: admin/admin.php:448
77
  msgid ""
78
  "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
79
  "image will be used for the post. It will be resized to the thumbnail size "
80
  "set under Settings &raquo; Related Posts &raquo; Output Options"
81
- msgstr "Entrer l'URL complète vers l'image (JPG, PNG ou GIF) que vous souhaitez utiliser. Cette image sera utilisée pour l'article. Elle sera redimensionnée en fonction des dimensions réglées dans les réglages des options de sortie"
 
 
 
82
 
83
- #: admin/admin.php:449
84
  msgid "The URL above is saved in the meta field: "
85
  msgstr "L'URL ci-dessus est sauvegardée dans les champs méta :"
86
 
87
- #: admin/main-view.php:32 admin/main-view.php:51
88
  msgid "General options"
89
  msgstr "Options générales"
90
 
91
- #: admin/main-view.php:33 admin/main-view.php:60
 
 
 
 
92
  msgid "Output options"
93
  msgstr "Options de sortie"
94
 
95
- #: admin/main-view.php:34 admin/main-view.php:69
 
 
 
 
 
96
  msgid "Feed options"
97
  msgstr "Options du flux"
98
 
99
- #: admin/main-view.php:35 admin/main-view.php:77
100
  msgid "Custom styles"
101
  msgstr "Styles personnalisés"
102
 
103
- #: admin/main-view.php:95
104
- msgid "Save Options"
105
- msgstr "Sauvegarder les options"
106
-
107
- #: admin/main-view.php:96
108
- msgid "Default Options"
109
- msgstr "options par défaut"
110
-
111
- #: admin/main-view.php:96
112
- msgid "Do you want to set options to Default?"
113
- msgstr "Voulez-vous réinitialiser les options à leurs valeurs par défaut ?"
114
-
115
- #: admin/main-view.php:97
116
- msgid "Recreate Index"
117
- msgstr "Recréer l'index"
118
-
119
- #: admin/main-view.php:97
120
- msgid "Are you sure you want to recreate the index?"
121
- msgstr "Voulez-vous vraiment recréer l'index ?"
122
-
123
- #: admin/options-custom-styles.php:32
124
- msgid "Use default style included in the plugin?"
125
- msgstr "Utiliser les styles par défaut inclus dans l'extension ?"
126
 
127
- #: admin/options-custom-styles.php:35
128
  msgid ""
129
- "Contextual Related Posts includes a default style that makes your popular "
130
- "posts list to look beautiful. Check the box above if you want to use this."
131
  msgstr ""
 
 
 
132
 
133
- #: admin/options-custom-styles.php:36
134
- msgid ""
135
- "Enabling this option will turn on the thumbnails and set their width and "
136
- "height to 150px. It will also turn off the display of the author, excerpt "
137
- "and date if already enabled. Disabling this option will not revert any "
138
- "settings."
139
- msgstr ""
140
 
141
- #: admin/options-custom-styles.php:39
142
- msgid "Custom CSS to add to header:"
143
- msgstr "CSS personnalisé a ajouter dans l'en-tête :"
144
 
145
- #: admin/options-custom-styles.php:43
146
- msgid ""
147
- "Do not include <code>style</code> tags. Check out the <a "
148
- "href=\"http://wordpress.org/extend/plugins/contextual-related-posts/faq/\" "
149
- "target=\"_blank\">FAQ</a> for available CSS classes to style."
150
- msgstr "Ne pas inclure de mots-clefs de <code>style</code>. Consultez la <a href=\"http://wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank\">FAQ</a> pour connaitre les classes de style CSS disponibles."
151
 
152
- #: admin/options-feed.php:32
153
- msgid ""
154
- "Below options override the related posts settings for your blog feed. These "
155
- "only apply if you have selected to add related posts to Feeds in the General"
156
- " Options tab."
157
- msgstr "Les options ci-dessous remplacent les réglages des articles relatifs pour les flux de votre blog. Celles-ci ne s'appliquent si vous avez choisi d'ajouter des articles relatifs à vos flux dans l'onglet Options générales."
158
 
159
- #: admin/options-feed.php:34 admin/options-genops.php:39
160
- msgid "Number of related posts to display: "
161
- msgstr "Nombre d'articles relatifs à afficher :"
162
 
163
- #: admin/options-feed.php:37 admin/options-output.php:52
164
- msgid "Show post excerpt in list?"
165
- msgstr "Afficher l'extrait de l'article en liste ?"
166
 
167
- #: admin/options-feed.php:40 admin/options-output.php:239
168
- msgid "Location of post thumbnail:"
169
- msgstr "Emplacement de la miniature de l'article :"
170
 
171
- #: admin/options-feed.php:44 admin/options-output.php:243
172
- msgid "Display thumbnails inline with posts, before title"
173
- msgstr "Afficher les miniatures avec l'article, avant le titre"
174
 
175
- #: admin/options-feed.php:48 admin/options-output.php:247
176
- msgid "Display thumbnails inline with posts, after title"
177
- msgstr "Afficher les miniatures avec l'article, après le titre"
178
 
179
- #: admin/options-feed.php:52 admin/options-output.php:251
180
- msgid "Display only thumbnails, no text"
181
- msgstr "Que les miniatures, pas de texte"
 
 
 
 
 
 
182
 
183
- #: admin/options-feed.php:56 admin/options-output.php:255
184
- msgid "Do not display thumbnails, only text."
185
- msgstr "Pas de miniature, que le texte"
186
 
187
- #: admin/options-feed.php:60
188
- msgid "Maximum width of the thumbnail: "
189
- msgstr "Largeur maximale de la miniature :"
 
 
 
 
190
 
191
- #: admin/options-feed.php:63 admin/options-output.php:270
192
- msgid "Maximum height of the thumbnail: "
193
- msgstr "Hauteur maximale de la miniature :"
194
 
195
- #: admin/options-genops.php:32
196
- msgid "Cache output?"
197
- msgstr "Mettre en cache la sortie ?"
198
 
199
- #: admin/options-genops.php:34
200
  msgid ""
201
- "Enabling this option will cache the related posts output when the post is "
202
- "visited the first time. The cache is cleaned when you save this page."
203
- msgstr "L'activation de cette option met en cache la sortie des articles relatifs lorsque l'article est lu la première fois. Le cache est vidé lorsque vous enregistrez cette page."
 
 
204
 
205
- #: admin/options-genops.php:35
206
- msgid "Clear cache"
207
- msgstr "Vider le cache"
 
 
 
 
 
208
 
209
- #: admin/options-genops.php:42
210
  msgid ""
211
  "Maximum number of posts that will be displayed. The actual number may be "
212
  "smaller if less related posts are found."
213
- msgstr "Nombre maximal d'articles à afficher. Le nombre réel peut être plus petit si moins d'articles relatifs sont trouvés."
 
 
214
 
215
- #: admin/options-genops.php:46
216
  msgid "Related posts should be newer than:"
217
  msgstr "Les articles relatifs doivent être plus récents que :"
218
 
219
- #: admin/options-genops.php:48
220
  msgid "days"
221
  msgstr "jours"
222
 
223
- #: admin/options-genops.php:49
224
  msgid ""
225
  "This sets the cutoff period for which posts will be displayed. e.g. setting "
226
- "it to 365 will show related posts from the last year only."
227
- msgstr "Ceci définit la période pour laquelle les articles seront affichés, par exemple 365 n'affichera uniquement que les articles de l'année dernière."
228
-
229
- #: admin/options-genops.php:53
230
- msgid "Post types to include in results:"
231
- msgstr "Types d'articles à inclure dans les résultats :"
232
-
233
- #: admin/options-genops.php:64
234
- msgid ""
235
- "These post types will be displayed in the list. Includes custom post types."
236
- msgstr "Ces types d'articles seront affichés en liste. Cela inclut les types d'articles personnalisés."
237
 
238
- #: admin/options-genops.php:68
239
  msgid "Find related posts based on content as well as title:"
240
  msgstr "Trouver des articles relatifs en se servant du contenu et du titre :"
241
 
242
- #: admin/options-genops.php:70
243
  msgid ""
244
- "If unchecked, only posts titles are used. I recommend using a caching plugin"
245
- " or enabling \"Cache output\" above if you enable this."
246
- msgstr "Si décoché, seuls les titres des articles sont utilisés. Je recommande d'utiliser une extension de mise en cache ou d'activer le « Cache de sortie » ci-dessus si vous l'activez."
 
 
 
247
 
248
- #: admin/options-genops.php:74
249
  msgid "Limit content to be compared"
250
  msgstr "Limiter le contenu à comparer"
251
 
252
- #: admin/options-genops.php:76
253
  msgid ""
254
  "This sets the maximum words of the content that will be matched. 0 means no "
255
  "limit."
256
- msgstr "Ceci définit le maximum de mots du contenu qui seront mis en correspondance. Mettre 0 pour aucune limite."
257
-
258
- #: admin/options-genops.php:80
259
- msgid "Add related posts to:"
260
- msgstr "Ajouter les articles relatifs aux :"
261
-
262
- #: admin/options-genops.php:82
263
- msgid "Posts"
264
- msgstr "Articles"
265
-
266
- #: admin/options-genops.php:83
267
- msgid "Pages"
268
- msgstr "Pages"
269
-
270
- #: admin/options-genops.php:84
271
- msgid "Home page"
272
- msgstr "Page d'accueil"
273
-
274
- #: admin/options-genops.php:85
275
- msgid "Feeds"
276
- msgstr "Flux"
277
-
278
- #: admin/options-genops.php:86
279
- msgid "Category archives"
280
- msgstr "Archives de catégorie"
281
-
282
- #: admin/options-genops.php:87
283
- msgid "Tag archives"
284
- msgstr "Archives de mot-clef"
285
 
286
- #: admin/options-genops.php:88
287
- msgid "Other archives"
288
- msgstr "Autres archives"
289
 
290
- #: admin/options-genops.php:89
291
  msgid ""
292
- "If you choose to disable this, please add <code>&lt;?php if ( "
293
- "function_exists( 'echo_ald_crp' ) ) echo_ald_crp(); ?&gt;</code> to your "
294
- "template file where you want it displayed"
295
- msgstr "Si vous décidez de le désactiver, s'il vous plaît veuillez ajouter <code>&lt;?php if ( function_exists( 'echo_ald_crp' ) ) echo_ald_crp(); ?&gt;</code> dans votre modèle où vous voulez l'afficher."
296
 
297
- #: admin/options-genops.php:93
298
- msgid "Content filter priority:"
299
- msgstr "Priorité du filtrage du contenu :"
300
 
301
- #: admin/options-genops.php:96
302
  msgid ""
303
- "A higher number will cause the content above to be processed after other "
304
- "filters. Number below 10 is not recommended."
305
- msgstr "Un nombre plus élevé fera que le contenu ci-dessus sera traité après les autres filtres. Un nombre inférieur à 10 n'est pas recommandé."
306
-
307
- #: admin/options-genops.php:100
308
- msgid "Tell the world you're using Contextual Related Posts:"
309
- msgstr "Annoncer au monde que vous utilisez Contextual Related Posts :"
310
 
311
- #: admin/options-genops.php:102
312
- msgid " <em>Optional</em>"
313
- msgstr " <em>Facultatif</em>"
314
 
315
- #: admin/options-genops.php:103
316
  msgid ""
317
- "Adds a nofollow link to Contextual Related Posts homepage as the last time "
318
- "in the list."
319
- msgstr "Ajoute un lien nofollow vers la page d'accueil de Contextual Related Posts comme la dernière fois dans la liste."
 
 
 
 
320
 
321
- #: admin/options-output.php:32
322
  msgid "Title of related posts: "
323
  msgstr "Titre des articles relatifs :"
324
 
325
- #: admin/options-output.php:35
326
  msgid ""
327
  "This is the main heading of the related posts. You can also display the "
328
  "current post title by using <code>%postname%</code>. e.g. <code>Related "
329
  "Posts to %postname%</code>"
330
- msgstr "C'est le titre principal des articles relatifs. Vous pouvez également afficher le titre de l'article en utilisant <code>%postname%</code>. p.ex. <code>Articles relatifs à %postname%</code>"
 
 
 
331
 
332
- #: admin/options-output.php:39
333
  msgid "When there are no posts, what should be shown?"
334
  msgstr "Quand il n'y a aucun article, qu'est-ce qui doit être affiché ?"
335
 
336
- #: admin/options-output.php:43
337
  msgid "Blank Output"
338
  msgstr "Sortie vide"
339
 
340
- #: admin/options-output.php:47
341
  msgid "Display:"
342
  msgstr "Affichage :"
343
 
344
- #: admin/options-output.php:55
 
 
 
 
345
  #, php-format
346
  msgid ""
347
  "Displays the excerpt of the post. If you do not provide an explicit excerpt "
348
  "to a post (in the post editor's optional excerpt field), it will display an "
349
  "automatic excerpt which refers to the first %d words of the post's content"
350
- msgstr "Affiche l'extrait de l'article. Si vous ne fournissez pas un extrait d'un article (dans le champ d'extrait en option de l'éditeur d'article), un extrait automatique sera affiché qui prendra en compte les premiers %d mots du contenu de celui-ci."
 
 
 
 
351
 
352
- #: admin/options-output.php:59
 
 
 
 
 
353
  msgid "Length of excerpt (in words): "
354
  msgstr "Longueur de l'extrait (en mots) :"
355
 
356
- #: admin/options-output.php:65
357
  msgid "Show post author in list?"
358
  msgstr "Afficher l'auteur de l'article en liste ?"
359
 
360
- #: admin/options-output.php:68
361
  msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
362
- msgstr "Affiche le nom de l'auteur préfixé avec \"de\". p.ex. de Pierre Paul Jacques"
 
 
 
 
 
 
363
 
364
- #: admin/options-output.php:72
365
  msgid "Show post date in list?"
366
  msgstr "Afficher la date de l'article en liste ?"
367
 
368
- #: admin/options-output.php:75
369
  msgid ""
370
  "Displays the date of the post. Uses the same date format set in General "
371
  "Options"
372
- msgstr "Affiche la date de l'article. Utilise le même format que celui de vos options générales"
 
 
 
 
 
 
 
373
 
374
- #: admin/options-output.php:79
375
  msgid "Limit post title length (in characters)"
376
  msgstr "Limiter la longueur du titre de l'article (en caractères)"
377
 
378
- #: admin/options-output.php:82
379
  msgid ""
380
  "Any title longer than the number of characters set above will be cut and "
381
  "appended with a &helip;"
382
- msgstr "Tous les titres plus long que le nombre de caractères seront coupés et un &helip; sera ajouté."
 
 
383
 
384
- #: admin/options-output.php:86
385
  msgid "Open links in new window"
386
  msgstr "Ouvrir les liens dans une nouvelle fenêtre"
387
 
388
- #: admin/options-output.php:92
389
  msgid "Add nofollow attribute to links in the list"
390
  msgstr "Ajouter un attribut de nofollow aux liens de la liste"
391
 
392
- #: admin/options-output.php:125
393
  msgid "Exclusion settings:"
394
  msgstr "Réglages d'exclusion :"
395
 
396
- #: admin/options-output.php:127
397
- msgid "List of post or page IDs to exclude from the results:"
398
- msgstr "La liste des IDs d'articles ou de pages à exclure des résultats :"
399
-
400
- #: admin/options-output.php:129 admin/options-output.php:135
401
- msgid ""
402
- "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
403
- msgstr "Une liste séparée par des virgules d'IDs d'articles, pages ou types d'articles personnalisés. P.ex. 188,320,500"
404
-
405
- #: admin/options-output.php:132
406
  msgid "Exclude display of related posts on these posts / pages"
407
  msgstr "Exclure l'affichage des articles relatifs sur ces articles / pages"
408
 
409
- #: admin/options-output.php:138
410
- msgid "Categories to exclude from the results: "
411
- msgstr "Les catégories à exclure des résultats :"
412
-
413
- #: admin/options-output.php:154
414
- msgid ""
415
- "Comma separated list of category slugs. The field above has an autocomplete "
416
- "so simply start typing in the beginning of your category name and it will "
417
- "prompt you with options."
418
- msgstr "Une liste séparée par des virgules d'identifiant de catégories. Le champ possède l'auto-remplissage, commencez à remplir le début du nom de la catégorie pour voir des résultats s'afficher."
419
-
420
- #: admin/options-output.php:157
421
  msgid "Exclude display of related posts on these post types."
422
  msgstr "Exclure l'affichage des articles relatifs sur ces types d'articles."
423
 
424
- #: admin/options-output.php:166
425
  msgid ""
426
  "The related posts will not display on any of the above selected post types"
427
- msgstr "Les articles relatifs ne seront pas affichés sur aucun des types d'articles ci-dessus "
 
 
428
 
429
- #: admin/options-output.php:196
430
  msgid "Customize the output:"
431
  msgstr "Personnaliser la sortie :"
432
 
433
- #: admin/options-output.php:198
434
  msgid "HTML to display before the list of posts: "
435
  msgstr "HTML à afficher avant la liste des articles :"
436
 
437
- #: admin/options-output.php:201
438
  msgid "HTML to display before each list item: "
439
  msgstr "HTML à afficher avant chaque élément de la liste :"
440
 
441
- #: admin/options-output.php:204
442
  msgid "HTML to display after each list item: "
443
  msgstr "HTML à afficher après chaque élément de la liste :"
444
 
445
- #: admin/options-output.php:207
446
  msgid "HTML to display after the list of posts: "
447
  msgstr "HTML à afficher après la liste d'articles :"
448
 
449
- #: admin/options-output.php:237
450
- msgid "Post thumbnail options:"
451
- msgstr "Options de la miniature de l'article :"
452
 
453
- #: admin/options-output.php:261
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
454
  msgid ""
455
- "Contextual Related Posts adds a new image size with the below dimensions."
 
456
  msgstr ""
457
 
458
- #: admin/options-output.php:262
 
 
 
 
 
 
 
 
459
  msgid ""
460
- "If you change the width and/or height below, existing images will not be "
461
- "automatically resized."
 
462
  msgstr ""
 
 
 
 
 
463
 
464
- #: admin/options-output.php:263
465
- #, php-format
466
  msgid ""
467
- "I recommend using <a href='%s' target='_blank'>Force Regenerate "
468
- "Thumbnails</a> to regenerate all image sizes."
469
  msgstr ""
 
 
470
 
471
- #: admin/options-output.php:267
472
- msgid "Maximum width of the thumbnail:"
 
 
 
 
473
  msgstr ""
474
 
475
- #: admin/options-output.php:274
476
- msgid ""
477
- "Since you're using the default styles set under the Custom Styles section, "
478
- "the width and height is fixed at 150px"
479
- msgstr "Puisque vous utilisez les styles par défaut défini dans la section Styles personnalisés, la largeur et la hauteur sont fixées à 150px"
 
 
480
 
481
- #: admin/options-output.php:278
482
  msgid "Crop mode:"
483
- msgstr ""
484
 
485
- #: admin/options-output.php:282
486
  msgid ""
487
- "By default, thumbnails will be proportionately cropped. Check this box to "
488
- "hard crop the thumbnails."
489
  msgstr ""
 
 
490
 
491
- #: admin/options-output.php:283
492
  #, php-format
493
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
494
  msgstr ""
 
495
 
496
- #: admin/options-output.php:287
 
 
 
 
 
 
497
  msgid "Style attributes / Width and Height HTML attributes:"
498
  msgstr "Attributs de style / Attributs HTML de largeur et de hauteur :"
499
 
500
- #: admin/options-output.php:291
501
  msgid "Style attributes are used for width and height."
502
  msgstr "Les attributs de style sont utilisés pour la hauteur et la largeur."
503
 
504
- #: admin/options-output.php:295
505
  msgid "HTML width and height attributes are used for width and height."
506
- msgstr "Les attributs HTML de hauteur et largeur sont utilisés pour la hauteur et la largeur."
507
-
508
- #: admin/options-output.php:299
509
- msgid "Use timthumb to generate thumbnails? "
510
- msgstr "Utiliser timthumb pour générer les miniatures ?"
511
-
512
- #: admin/options-output.php:301
513
- msgid ""
514
- "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
515
- "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
516
- msgstr "Si coché, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" target=\"_blank\">timthumb</a> sera utilisé pour générer les miniatures"
517
-
518
- #: admin/options-output.php:304
519
- msgid "Quality of thumbnails generated by timthumb:"
520
- msgstr "Qualité des miniatures générées par timthumb :"
521
-
522
- #: admin/options-output.php:307
523
- msgid ""
524
- "Enter values between 0 and 100 only. 100 is highest quality and the highest "
525
- "file size. Suggested maximum value is 95. CRP default is 75."
526
- msgstr "Entrez des valeurs entre 0 et 100 uniquement. 100 est la plus haute qualité et la plus grande taille de fichier. La valeur maximale suggérée est de 95. La valeur par défaut de CRP est de 75."
527
 
528
- #: admin/options-output.php:310
529
  msgid "Post thumbnail meta field name:"
530
  msgstr "Nom du champ méta de la miniature de l'article"
531
 
532
- #: admin/options-output.php:312
533
  msgid ""
534
  "The value of this field should contain the image source and is set in the "
535
  "<em>Add New Post</em> screen"
536
- msgstr "La valeur de ce champ doit contenir la source de l'image et se trouve dans l'écran <em>Ajouter un nouvel article</em>"
 
 
537
 
538
- #: admin/options-output.php:315
539
  msgid "Extract the first image from the post?"
540
  msgstr "Extraire la première image de l'article ?"
541
 
542
- #: admin/options-output.php:317
543
  msgid ""
544
  "This will only happen if there is no post thumbnail set and no image URL is "
545
  "specified in the meta field."
546
- msgstr "Cela se produit uniquement que s'il n'y a aucune miniature d'article et qu'aucune URL d'image n'est spécifiée dans le champ des métadonnées."
 
 
547
 
548
- #: admin/options-output.php:320
549
  msgid "Use default thumbnail?"
550
  msgstr "Utiliser la miniature par défaut ?"
551
 
552
- #: admin/options-output.php:322
553
  msgid ""
554
  "If checked, when no thumbnail is found, show a default one from the URL "
555
  "below. If not checked and no thumbnail is found, no image will be shown."
556
- msgstr "Si coché, quand aucune miniature n'est trouvée, celle par défaut à l'URL ci-dessous est utilisée. Si décoché et qu'aucune miniature n'est trouvée, aucune image ne sera affichée."
 
 
 
557
 
558
- #: admin/options-output.php:325
559
  msgid "Default thumbnail:"
560
  msgstr "Miniature par défaut"
561
 
562
- #: admin/options-output.php:328
563
  msgid ""
564
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
565
  "then it will check the meta field. If this is not available, then it will "
566
  "show the default image as specified above."
567
- msgstr "L'extension va d'abord vérifier si l'article contient une miniature. Si ce n'est pas le cas alors elle vérifie les métadonnées. Si aucune n'est toujours disponible, alors elle affichera l'image par défaut comme indiquée ci-dessus."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
568
 
569
  #: admin/sidebar-view.php:20
570
  msgid "Support the development"
@@ -586,103 +707,128 @@ msgstr "Envoyez votre don à l'auteur de"
586
  msgid "Follow me"
587
  msgstr "Suivez-moi"
588
 
589
- #: admin/sidebar-view.php:52
590
  msgid "Quick links"
591
  msgstr "Liens rapides"
592
 
593
- #: admin/sidebar-view.php:56
594
  msgid "Contextual Related Posts plugin page"
595
  msgstr "Page de l'extension Contextual Related Posts"
596
 
597
- #: admin/sidebar-view.php:57
598
  msgid "FAQ"
599
  msgstr "FAQ"
600
 
601
- #: admin/sidebar-view.php:59
602
  msgid "Reviews"
603
  msgstr "Avis"
604
 
605
- #: admin/sidebar-view.php:60
606
  msgid "Github repository"
607
  msgstr "Dépot Github"
608
 
609
- #: admin/sidebar-view.php:61
610
  msgid "Other plugins"
611
  msgstr "Autres extensions"
612
 
613
- #: admin/sidebar-view.php:62
614
  msgid "Ajay's blog"
615
  msgstr "Blog de Ajay"
616
 
617
- #: contextual-related-posts.php:246
618
  msgid " by "
619
  msgstr " par"
620
 
621
- #: contextual-related-posts.php:285
622
  #, php-format
623
  msgid "Powered by <a href=\"%s\" rel=\"nofollow\">Contextual Related Posts</a>"
624
  msgstr ""
 
625
 
626
- #: contextual-related-posts.php:596
627
  msgid "Related Posts [CRP]"
628
  msgstr "Articles relatifs [CRP]"
629
 
630
- #: contextual-related-posts.php:597
631
  msgid "Display Related Posts"
632
  msgstr "Afficher les articles relatifs"
633
 
634
- #: contextual-related-posts.php:620
635
  msgid "Title"
636
  msgstr "Titre"
637
 
638
- #: contextual-related-posts.php:625
639
  msgid "No. of posts"
640
  msgstr "No. de l'articles"
641
 
642
- #: contextual-related-posts.php:630
643
  msgid " Show excerpt?"
644
  msgstr "Afficher l'extrait ?"
645
 
646
- #: contextual-related-posts.php:635
647
  msgid " Show author?"
648
  msgstr "Afficher l'auteur ?"
649
 
650
- #: contextual-related-posts.php:640
651
  msgid " Show date?"
652
  msgstr "Afficher la date ?"
653
 
654
- #: contextual-related-posts.php:644
655
- msgid "Thumbnail options"
656
- msgstr "Options de la miniature"
657
-
658
- #: contextual-related-posts.php:646
659
  msgid "Thumbnails inline, before title"
660
  msgstr "Miniature avant le titre"
661
 
662
- #: contextual-related-posts.php:647
663
  msgid "Thumbnails inline, after title"
664
  msgstr "Miniatures après le titre"
665
 
666
- #: contextual-related-posts.php:648
667
  msgid "Only thumbnails, no text"
668
  msgstr "Que les miniatures, pas de texte"
669
 
670
- #: contextual-related-posts.php:649
671
  msgid "No thumbnails, only text."
672
  msgstr "Pas de miniature, que le texte"
673
 
674
- #: contextual-related-posts.php:654
675
  msgid "Thumbnail height"
676
  msgstr "Hauteur de la vignette"
677
 
678
- #: contextual-related-posts.php:659
679
  msgid "Thumbnail width"
680
  msgstr "Largeur des vignettes"
681
 
682
- #: contextual-related-posts.php:799
683
  msgid "<h3>Related Posts:</h3>"
684
  msgstr "<h3>Articles relatifs :</h3>"
685
 
686
- #: contextual-related-posts.php:801
687
  msgid "No related posts found"
688
  msgstr "Aucun article relatif trouvé."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #
2
  # Translators:
3
+ # Franck, 2015
4
  # FxB <fxb@wp-translations.org>, 2014
5
+ # Jean-Christophe Brebion <pro@jcbrebion.com>, 2014-2015
6
  msgid ""
7
  msgstr ""
8
  "Project-Id-Version: Contextual Related Posts\n"
9
  "Report-Msgid-Bugs-To: \n"
10
+ "POT-Creation-Date: 2015-05-09 22:24-0000\n"
11
+ "PO-Revision-Date: 2015-05-09 22:24-0000\n"
12
+ "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
13
+ "Language-Team: French (France) (http://www.transifex.com/projects/p/"
14
+ "contextual-related-posts/language/fr_FR/)\n"
15
+ "Language: fr_FR\n"
16
  "MIME-Version: 1.0\n"
17
  "Content-Type: text/plain; charset=UTF-8\n"
18
  "Content-Transfer-Encoding: 8bit\n"
 
19
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
20
+ "X-Generator: Poedit 1.7.1\n"
21
  "X-Poedit-Basepath: ../\n"
22
  "X-Poedit-KeywordsList: __;_e;_c;__ngettext\n"
23
+ "X-Poedit-SourceCharset: UTF-8\n"
24
  "X-Poedit-SearchPath-0: .\n"
25
 
26
+ #: admin/admin.php:166
27
  msgid "Options saved successfully."
28
  msgstr "Options sauvegardées avec succès."
29
 
30
+ #: admin/admin.php:169
31
+ msgid ""
32
+ "Default styles selected. Thumbnail width, height and crop settings have been "
33
+ "fixed. Author, Excerpt and Date will not be displayed."
34
+ msgstr ""
35
+
36
+ #: admin/admin.php:194
37
  msgid "Options set to Default."
38
  msgstr "Options remises à la valeur par défaut."
39
 
40
+ #: admin/admin.php:205
41
  msgid "Index recreated"
42
  msgstr "Index recrée"
43
 
44
+ #: admin/admin.php:222 admin/admin.php:453 admin/main-view.php:20
45
  msgid "Contextual Related Posts"
46
  msgstr "Articles relatifs contextuels"
47
 
48
+ #: admin/admin.php:223
49
  msgid "Related Posts"
50
  msgstr "Articles relatifs"
51
 
52
+ #: admin/admin.php:338
53
  msgid "Settings"
54
  msgstr "Réglages"
55
 
56
+ #: admin/admin.php:360 admin/sidebar-view.php:59
57
  msgid "Support"
58
  msgstr "Aide"
59
 
60
+ #: admin/admin.php:361
61
  msgid "Donate"
62
  msgstr "Don"
63
 
64
+ #: admin/admin.php:362
65
  msgid "Contribute"
66
  msgstr "Contribuer"
67
 
68
+ #: admin/admin.php:378
69
  msgid "plugin settings page"
70
  msgstr "Page des réglages de l'extension"
71
 
72
+ #: admin/admin.php:422
73
  msgid ""
74
+ "An error occurred clearing the cache. Please contact your site administrator."
75
+ "\\n\\nError message:\\n"
76
+ msgstr ""
77
+ "Une erreur s'est produite lors du nettoyage du cache. Veuillez contacter "
78
+ "l'administrateur de votre site.\\n\\nMessage d'erreur :\\n"
79
 
80
+ #: admin/admin.php:427
81
  msgid " cached row(s) cleared"
82
  msgstr "rang(s) en cache nettoyé(s)"
83
 
84
+ #: admin/admin.php:480
85
  msgid "Location of thumbnail:"
86
  msgstr "Emplacement de la miniature :"
87
 
88
+ #: admin/admin.php:482
89
  msgid ""
90
  "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
91
  "image will be used for the post. It will be resized to the thumbnail size "
92
  "set under Settings &raquo; Related Posts &raquo; Output Options"
93
+ msgstr ""
94
+ "Entrer l'URL complète vers l'image (JPG, PNG ou GIF) que vous souhaitez "
95
+ "utiliser. Cette image sera utilisée pour l'article. Elle sera redimensionnée "
96
+ "en fonction des dimensions réglées dans les réglages des options de sortie"
97
 
98
+ #: admin/admin.php:483
99
  msgid "The URL above is saved in the meta field: "
100
  msgstr "L'URL ci-dessus est sauvegardée dans les champs méta :"
101
 
102
+ #: admin/main-view.php:32 admin/main-view.php:54
103
  msgid "General options"
104
  msgstr "Options générales"
105
 
106
+ #: admin/main-view.php:33 admin/main-view.php:125
107
+ msgid "List tuning options"
108
+ msgstr "Liste des options de réglages"
109
+
110
+ #: admin/main-view.php:34 admin/main-view.php:229
111
  msgid "Output options"
112
  msgstr "Options de sortie"
113
 
114
+ #: admin/main-view.php:35 admin/main-view.php:433
115
+ #: contextual-related-posts.php:718
116
+ msgid "Thumbnail options"
117
+ msgstr "Options de la miniature"
118
+
119
+ #: admin/main-view.php:36 admin/main-view.php:580
120
  msgid "Feed options"
121
  msgstr "Options du flux"
122
 
123
+ #: admin/main-view.php:37 admin/main-view.php:652
124
  msgid "Custom styles"
125
  msgstr "Styles personnalisés"
126
 
127
+ #: admin/main-view.php:70
128
+ msgid "Cache output?"
129
+ msgstr "Mettre en cache la sortie ?"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
130
 
131
+ #: admin/main-view.php:72
132
  msgid ""
133
+ "Enabling this option will cache the related posts output when the post is "
134
+ "visited the first time. The cache is cleaned when you save this page."
135
  msgstr ""
136
+ "L'activation de cette option met en cache la sortie des articles relatifs "
137
+ "lorsque l'article est lu la première fois. Le cache est vidé lorsque vous "
138
+ "enregistrez cette page."
139
 
140
+ #: admin/main-view.php:73
141
+ msgid "Clear cache"
142
+ msgstr "Vider le cache"
 
 
 
 
143
 
144
+ #: admin/main-view.php:77
145
+ msgid "Add related posts to:"
146
+ msgstr "Ajouter les articles relatifs aux :"
147
 
148
+ #: admin/main-view.php:79
149
+ msgid "Posts"
150
+ msgstr "Articles"
 
 
 
151
 
152
+ #: admin/main-view.php:80
153
+ msgid "Pages"
154
+ msgstr "Pages"
 
 
 
155
 
156
+ #: admin/main-view.php:81
157
+ msgid "Home page"
158
+ msgstr "Page d'accueil"
159
 
160
+ #: admin/main-view.php:82
161
+ msgid "Feeds"
162
+ msgstr "Flux"
163
 
164
+ #: admin/main-view.php:83
165
+ msgid "Category archives"
166
+ msgstr "Archives de catégorie"
167
 
168
+ #: admin/main-view.php:84
169
+ msgid "Tag archives"
170
+ msgstr "Archives de mot-clef"
171
 
172
+ #: admin/main-view.php:85
173
+ msgid "Other archives"
174
+ msgstr "Autres archives"
175
 
176
+ #: admin/main-view.php:86
177
+ msgid ""
178
+ "If you choose to disable this, please add <code>&lt;?php if "
179
+ "( function_exists( 'echo_ald_crp' ) ) echo_ald_crp(); ?&gt;</code> to your "
180
+ "template file where you want it displayed"
181
+ msgstr ""
182
+ "Si vous décidez de le désactiver, s'il vous plaît veuillez ajouter "
183
+ "<code>&lt;?php if ( function_exists( 'echo_ald_crp' ) ) echo_ald_crp(); ?&gt;"
184
+ "</code> dans votre modèle où vous voulez l'afficher."
185
 
186
+ #: admin/main-view.php:90
187
+ msgid "Content filter priority:"
188
+ msgstr "Priorité du filtrage du contenu :"
189
 
190
+ #: admin/main-view.php:93
191
+ msgid ""
192
+ "A higher number will cause the content above to be processed after other "
193
+ "filters. Number below 10 is not recommended."
194
+ msgstr ""
195
+ "Un nombre plus élevé fera que le contenu ci-dessus sera traité après les "
196
+ "autres filtres. Un nombre inférieur à 10 n'est pas recommandé."
197
 
198
+ #: admin/main-view.php:97
199
+ msgid "Tell the world you're using Contextual Related Posts:"
200
+ msgstr "Annoncer au monde que vous utilisez Contextual Related Posts :"
201
 
202
+ #: admin/main-view.php:99
203
+ msgid " <em>Optional</em>"
204
+ msgstr " <em>Facultatif</em>"
205
 
206
+ #: admin/main-view.php:100
207
  msgid ""
208
+ "Adds a nofollow link to Contextual Related Posts homepage as the last time "
209
+ "in the list."
210
+ msgstr ""
211
+ "Ajoute un lien nofollow vers la page d'accueil de Contextual Related Posts "
212
+ "comme la dernière fois dans la liste."
213
 
214
+ #: admin/main-view.php:118 admin/main-view.php:222 admin/main-view.php:426
215
+ #: admin/main-view.php:573 admin/main-view.php:645 admin/main-view.php:709
216
+ msgid "Save Options"
217
+ msgstr "Sauvegarder les options"
218
+
219
+ #: admin/main-view.php:141 admin/main-view.php:598
220
+ msgid "Number of related posts to display: "
221
+ msgstr "Nombre d'articles relatifs à afficher :"
222
 
223
+ #: admin/main-view.php:144
224
  msgid ""
225
  "Maximum number of posts that will be displayed. The actual number may be "
226
  "smaller if less related posts are found."
227
+ msgstr ""
228
+ "Nombre maximal d'articles à afficher. Le nombre réel peut être plus petit si "
229
+ "moins d'articles relatifs sont trouvés."
230
 
231
+ #: admin/main-view.php:148
232
  msgid "Related posts should be newer than:"
233
  msgstr "Les articles relatifs doivent être plus récents que :"
234
 
235
+ #: admin/main-view.php:150
236
  msgid "days"
237
  msgstr "jours"
238
 
239
+ #: admin/main-view.php:151
240
  msgid ""
241
  "This sets the cutoff period for which posts will be displayed. e.g. setting "
242
+ "it to 365 will show related posts from the last year only. Set it to 0 to "
243
+ "disable limiting posts."
244
+ msgstr ""
245
+ "Ceci définit la période de coupure durant laquelle les articles seront "
246
+ "affichés. Le mettre par exemple à 365 affichera les articles similaires de "
247
+ "la dernière année seulement. Réglez-le à 0 pour désactiver cette limitation."
 
 
 
 
 
248
 
249
+ #: admin/main-view.php:155
250
  msgid "Find related posts based on content as well as title:"
251
  msgstr "Trouver des articles relatifs en se servant du contenu et du titre :"
252
 
253
+ #: admin/main-view.php:157
254
  msgid ""
255
+ "If unchecked, only posts titles are used. I recommend using a caching plugin "
256
+ "or enabling \"Cache output\" above if you enable this."
257
+ msgstr ""
258
+ "Si décoché, seuls les titres des articles sont utilisés. Je recommande "
259
+ "d'utiliser une extension de mise en cache ou d'activer le « Cache de sortie "
260
+ "» ci-dessus si vous l'activez."
261
 
262
+ #: admin/main-view.php:161
263
  msgid "Limit content to be compared"
264
  msgstr "Limiter le contenu à comparer"
265
 
266
+ #: admin/main-view.php:163
267
  msgid ""
268
  "This sets the maximum words of the content that will be matched. 0 means no "
269
  "limit."
270
+ msgstr ""
271
+ "Ceci définit le maximum de mots du contenu qui seront mis en correspondance. "
272
+ "Mettre 0 pour aucune limite."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
273
 
274
+ #: admin/main-view.php:167
275
+ msgid "Post types to include in results:"
276
+ msgstr "Types d'articles à inclure dans les résultats :"
277
 
278
+ #: admin/main-view.php:178
279
  msgid ""
280
+ "These post types will be displayed in the list. Includes custom post types."
281
+ msgstr ""
282
+ "Ces types d'articles seront affichés en liste. Cela inclut les types "
283
+ "d'articles personnalisés."
284
 
285
+ #: admin/main-view.php:182
286
+ msgid "List of post or page IDs to exclude from the results:"
287
+ msgstr "La liste des IDs d'articles ou de pages à exclure des résultats :"
288
 
289
+ #: admin/main-view.php:184 admin/main-view.php:355
290
  msgid ""
291
+ "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
292
+ msgstr ""
293
+ "Une liste séparée par des virgules d'IDs d'articles, pages ou types "
294
+ "d'articles personnalisés. P.ex. 188,320,500"
 
 
 
295
 
296
+ #: admin/main-view.php:188
297
+ msgid "Categories to exclude from the results: "
298
+ msgstr "Les catégories à exclure des résultats :"
299
 
300
+ #: admin/main-view.php:204
301
  msgid ""
302
+ "Comma separated list of category slugs. The field above has an autocomplete "
303
+ "so simply start typing in the beginning of your category name and it will "
304
+ "prompt you with options."
305
+ msgstr ""
306
+ "Une liste séparée par des virgules d'identifiant de catégories. Le champ "
307
+ "possède l'auto-remplissage, commencez à remplir le début du nom de la "
308
+ "catégorie pour voir des résultats s'afficher."
309
 
310
+ #: admin/main-view.php:245
311
  msgid "Title of related posts: "
312
  msgstr "Titre des articles relatifs :"
313
 
314
+ #: admin/main-view.php:248
315
  msgid ""
316
  "This is the main heading of the related posts. You can also display the "
317
  "current post title by using <code>%postname%</code>. e.g. <code>Related "
318
  "Posts to %postname%</code>"
319
+ msgstr ""
320
+ "C'est le titre principal des articles relatifs. Vous pouvez également "
321
+ "afficher le titre de l'article en utilisant <code>%postname%</code>. p.ex. "
322
+ "<code>Articles relatifs à %postname%</code>"
323
 
324
+ #: admin/main-view.php:252
325
  msgid "When there are no posts, what should be shown?"
326
  msgstr "Quand il n'y a aucun article, qu'est-ce qui doit être affiché ?"
327
 
328
+ #: admin/main-view.php:256
329
  msgid "Blank Output"
330
  msgstr "Sortie vide"
331
 
332
+ #: admin/main-view.php:260
333
  msgid "Display:"
334
  msgstr "Affichage :"
335
 
336
+ #: admin/main-view.php:265 admin/main-view.php:601
337
+ msgid "Show post excerpt in list?"
338
+ msgstr "Afficher l'extrait de l'article en liste ?"
339
+
340
+ #: admin/main-view.php:268
341
  #, php-format
342
  msgid ""
343
  "Displays the excerpt of the post. If you do not provide an explicit excerpt "
344
  "to a post (in the post editor's optional excerpt field), it will display an "
345
  "automatic excerpt which refers to the first %d words of the post's content"
346
+ msgstr ""
347
+ "Affiche l'extrait de l'article. Si vous ne fournissez pas un extrait d'un "
348
+ "article (dans le champ d'extrait en option de l'éditeur d'article), un "
349
+ "extrait automatique sera affiché qui prendra en compte les premiers %d mots "
350
+ "du contenu de celui-ci."
351
 
352
+ #: admin/main-view.php:271
353
+ msgid ""
354
+ "Default style selected under the Custom Styles. Excerpt display is disabled."
355
+ msgstr ""
356
+
357
+ #: admin/main-view.php:276
358
  msgid "Length of excerpt (in words): "
359
  msgstr "Longueur de l'extrait (en mots) :"
360
 
361
+ #: admin/main-view.php:282
362
  msgid "Show post author in list?"
363
  msgstr "Afficher l'auteur de l'article en liste ?"
364
 
365
+ #: admin/main-view.php:285
366
  msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
367
+ msgstr ""
368
+ "Affiche le nom de l'auteur préfixé avec \"de\". p.ex. de Pierre Paul Jacques"
369
+
370
+ #: admin/main-view.php:288
371
+ msgid ""
372
+ "Default style selected under the Custom Styles. Author display is disabled."
373
+ msgstr ""
374
 
375
+ #: admin/main-view.php:293
376
  msgid "Show post date in list?"
377
  msgstr "Afficher la date de l'article en liste ?"
378
 
379
+ #: admin/main-view.php:296
380
  msgid ""
381
  "Displays the date of the post. Uses the same date format set in General "
382
  "Options"
383
+ msgstr ""
384
+ "Affiche la date de l'article. Utilise le même format que celui de vos "
385
+ "options générales"
386
+
387
+ #: admin/main-view.php:299
388
+ msgid ""
389
+ "Default style selected under the Custom Styles. Date display is disabled."
390
+ msgstr ""
391
 
392
+ #: admin/main-view.php:304
393
  msgid "Limit post title length (in characters)"
394
  msgstr "Limiter la longueur du titre de l'article (en caractères)"
395
 
396
+ #: admin/main-view.php:307
397
  msgid ""
398
  "Any title longer than the number of characters set above will be cut and "
399
  "appended with a &helip;"
400
+ msgstr ""
401
+ "Tous les titres plus long que le nombre de caractères seront coupés et un "
402
+ "&helip; sera ajouté."
403
 
404
+ #: admin/main-view.php:311
405
  msgid "Open links in new window"
406
  msgstr "Ouvrir les liens dans une nouvelle fenêtre"
407
 
408
+ #: admin/main-view.php:317
409
  msgid "Add nofollow attribute to links in the list"
410
  msgstr "Ajouter un attribut de nofollow aux liens de la liste"
411
 
412
+ #: admin/main-view.php:350
413
  msgid "Exclusion settings:"
414
  msgstr "Réglages d'exclusion :"
415
 
416
+ #: admin/main-view.php:352
 
 
 
 
 
 
 
 
 
417
  msgid "Exclude display of related posts on these posts / pages"
418
  msgstr "Exclure l'affichage des articles relatifs sur ces articles / pages"
419
 
420
+ #: admin/main-view.php:358
 
 
 
 
 
 
 
 
 
 
 
421
  msgid "Exclude display of related posts on these post types."
422
  msgstr "Exclure l'affichage des articles relatifs sur ces types d'articles."
423
 
424
+ #: admin/main-view.php:367
425
  msgid ""
426
  "The related posts will not display on any of the above selected post types"
427
+ msgstr ""
428
+ "Les articles relatifs ne seront pas affichés sur aucun des types d'articles "
429
+ "ci-dessus "
430
 
431
+ #: admin/main-view.php:397
432
  msgid "Customize the output:"
433
  msgstr "Personnaliser la sortie :"
434
 
435
+ #: admin/main-view.php:399
436
  msgid "HTML to display before the list of posts: "
437
  msgstr "HTML à afficher avant la liste des articles :"
438
 
439
+ #: admin/main-view.php:402
440
  msgid "HTML to display before each list item: "
441
  msgstr "HTML à afficher avant chaque élément de la liste :"
442
 
443
+ #: admin/main-view.php:405
444
  msgid "HTML to display after each list item: "
445
  msgstr "HTML à afficher après chaque élément de la liste :"
446
 
447
+ #: admin/main-view.php:408
448
  msgid "HTML to display after the list of posts: "
449
  msgstr "HTML à afficher après la liste d'articles :"
450
 
451
+ #: admin/main-view.php:449 admin/main-view.php:604
452
+ msgid "Location of post thumbnail:"
453
+ msgstr "Emplacement de la miniature de l'article :"
454
 
455
+ #: admin/main-view.php:453 admin/main-view.php:608
456
+ msgid "Display thumbnails inline with posts, before title"
457
+ msgstr "Afficher les miniatures avec l'article, avant le titre"
458
+
459
+ #: admin/main-view.php:457 admin/main-view.php:612
460
+ msgid "Display thumbnails inline with posts, after title"
461
+ msgstr "Afficher les miniatures avec l'article, après le titre"
462
+
463
+ #: admin/main-view.php:461 admin/main-view.php:616
464
+ msgid "Display only thumbnails, no text"
465
+ msgstr "Que les miniatures, pas de texte"
466
+
467
+ #: admin/main-view.php:465 admin/main-view.php:620
468
+ msgid "Do not display thumbnails, only text."
469
+ msgstr "Pas de miniature, que le texte"
470
+
471
+ #: admin/main-view.php:468
472
  msgid ""
473
+ "Default style selected under the Custom Styles. Location of thumbnail forced "
474
+ "to be inline before title"
475
  msgstr ""
476
 
477
+ #: admin/main-view.php:472
478
+ msgid "Thumbnail size:"
479
+ msgstr "Taille des miniatures&nbsp;:"
480
+
481
+ #: admin/main-view.php:496
482
+ msgid "Custom size"
483
+ msgstr "Taille personnalisée"
484
+
485
+ #: admin/main-view.php:499
486
  msgid ""
487
+ "You can choose from existing image sizes above or create a custom size. If "
488
+ "you have chosen Custom size above, then enter the width, height and crop "
489
+ "settings below. For best results, use a cropped image."
490
  msgstr ""
491
+ "Vous pouvez choisir parmi les tailles d'images existantes ci-dessus ou créer "
492
+ "une taille personnalisée. Si vous avez choisi la taille personnalisée ci-"
493
+ "dessus, alors entrez la largeur, puis la hauteur et les réglages de "
494
+ "recadrage ci-dessous. Pour de meilleurs résultats, utilisez une image "
495
+ "recadrée."
496
 
497
+ #: admin/main-view.php:500
 
498
  msgid ""
499
+ "If you change the width, height or crop mode below, existing images will not "
500
+ "be automatically resized."
501
  msgstr ""
502
+ "Si vous modifiez la largeur, hauteur ou mode de recadrage ci-dessous, les "
503
+ "images existantes ne seront pas redimensionnées automatiquement."
504
 
505
+ #: admin/main-view.php:501
506
+ #, php-format
507
+ msgid ""
508
+ "I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
509
+ "a> or <a href='%s' class='thickbox'>Regenerate Thumbnails</a> to regenerate "
510
+ "all image sizes."
511
  msgstr ""
512
 
513
+ #: admin/main-view.php:505
514
+ msgid "Width of the thumbnail:"
515
+ msgstr "Largeur des miniatures&nbsp;:"
516
+
517
+ #: admin/main-view.php:508
518
+ msgid "Height of the thumbnail: "
519
+ msgstr "Hauteur des miniatures&nbsp;:"
520
 
521
+ #: admin/main-view.php:513
522
  msgid "Crop mode:"
523
+ msgstr "Mode de recadrage:"
524
 
525
+ #: admin/main-view.php:517
526
  msgid ""
527
+ "By default, thumbnails will be hard cropped. Uncheck this box to "
528
+ "proportionately/soft crop the thumbnails."
529
  msgstr ""
530
+ "Par défaut, les miniatures seront recadrées de façon non proportionnée. "
531
+ "Décochez cette case pour recadrer de façon proportionnée les miniatures. "
532
 
533
+ #: admin/main-view.php:518
534
  #, php-format
535
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
536
  msgstr ""
537
+ "<a href='%s' target='_blank'>La différence entre le soft le hard crop</a>"
538
 
539
+ #: admin/main-view.php:521
540
+ msgid ""
541
+ "Default style selected under the Custom Styles. Thumbnail width and height "
542
+ "is fixed at 150px and crop mode is enabled."
543
+ msgstr ""
544
+
545
+ #: admin/main-view.php:525
546
  msgid "Style attributes / Width and Height HTML attributes:"
547
  msgstr "Attributs de style / Attributs HTML de largeur et de hauteur :"
548
 
549
+ #: admin/main-view.php:529
550
  msgid "Style attributes are used for width and height."
551
  msgstr "Les attributs de style sont utilisés pour la hauteur et la largeur."
552
 
553
+ #: admin/main-view.php:533
554
  msgid "HTML width and height attributes are used for width and height."
555
+ msgstr ""
556
+ "Les attributs HTML de hauteur et largeur sont utilisés pour la hauteur et la "
557
+ "largeur."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
558
 
559
+ #: admin/main-view.php:537
560
  msgid "Post thumbnail meta field name:"
561
  msgstr "Nom du champ méta de la miniature de l'article"
562
 
563
+ #: admin/main-view.php:539
564
  msgid ""
565
  "The value of this field should contain the image source and is set in the "
566
  "<em>Add New Post</em> screen"
567
+ msgstr ""
568
+ "La valeur de ce champ doit contenir la source de l'image et se trouve dans "
569
+ "l'écran <em>Ajouter un nouvel article</em>"
570
 
571
+ #: admin/main-view.php:542
572
  msgid "Extract the first image from the post?"
573
  msgstr "Extraire la première image de l'article ?"
574
 
575
+ #: admin/main-view.php:544
576
  msgid ""
577
  "This will only happen if there is no post thumbnail set and no image URL is "
578
  "specified in the meta field."
579
+ msgstr ""
580
+ "Cela se produit uniquement que s'il n'y a aucune miniature d'article et "
581
+ "qu'aucune URL d'image n'est spécifiée dans le champ des métadonnées."
582
 
583
+ #: admin/main-view.php:547
584
  msgid "Use default thumbnail?"
585
  msgstr "Utiliser la miniature par défaut ?"
586
 
587
+ #: admin/main-view.php:549
588
  msgid ""
589
  "If checked, when no thumbnail is found, show a default one from the URL "
590
  "below. If not checked and no thumbnail is found, no image will be shown."
591
+ msgstr ""
592
+ "Si coché, quand aucune miniature n'est trouvée, celle par défaut à l'URL ci-"
593
+ "dessous est utilisée. Si décoché et qu'aucune miniature n'est trouvée, "
594
+ "aucune image ne sera affichée."
595
 
596
+ #: admin/main-view.php:552
597
  msgid "Default thumbnail:"
598
  msgstr "Miniature par défaut"
599
 
600
+ #: admin/main-view.php:555
601
  msgid ""
602
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
603
  "then it will check the meta field. If this is not available, then it will "
604
  "show the default image as specified above."
605
+ msgstr ""
606
+ "L'extension va d'abord vérifier si l'article contient une miniature. Si ce "
607
+ "n'est pas le cas alors elle vérifie les métadonnées. Si aucune n'est "
608
+ "toujours disponible, alors elle affichera l'image par défaut comme indiquée "
609
+ "ci-dessus."
610
+
611
+ #: admin/main-view.php:596
612
+ msgid ""
613
+ "Below options override the related posts settings for your blog feed. These "
614
+ "only apply if you have selected to add related posts to Feeds in the General "
615
+ "Options tab."
616
+ msgstr ""
617
+ "Les options ci-dessous remplacent les réglages des articles relatifs pour "
618
+ "les flux de votre blog. Celles-ci ne s'appliquent si vous avez choisi "
619
+ "d'ajouter des articles relatifs à vos flux dans l'onglet Options générales."
620
+
621
+ #: admin/main-view.php:624
622
+ msgid "Maximum width of the thumbnail: "
623
+ msgstr "Largeur maximale de la miniature :"
624
+
625
+ #: admin/main-view.php:627
626
+ msgid "Maximum height of the thumbnail: "
627
+ msgstr "Hauteur maximale de la miniature :"
628
+
629
+ #: admin/main-view.php:668
630
+ msgid "Use default style included in the plugin?"
631
+ msgstr "Utiliser les styles par défaut inclus dans l'extension ?"
632
+
633
+ #: admin/main-view.php:671
634
+ msgid ""
635
+ "Contextual Related Posts includes a default style that makes your popular "
636
+ "posts list to look beautiful. Check the box above if you want to use this."
637
+ msgstr ""
638
+ "Contextual Related Posts inclut un style par défaut qui rend votre liste "
639
+ "d'articles populaires plus belle. Cochez la case ci-dessus si vous désirez "
640
+ "l'utiliser."
641
+
642
+ #: admin/main-view.php:672
643
+ msgid ""
644
+ "Enabling this option will turn on the thumbnails and set their width and "
645
+ "height to 150px. It will also turn off the display of the author, excerpt "
646
+ "and date if already enabled. Disabling this option will not revert any "
647
+ "settings."
648
+ msgstr ""
649
+ "L'activation de cette option activera automatiquement les miniatures et "
650
+ "réglera leurs largeurs et leurs hauteurs à 150px. Cela desactivera aussi "
651
+ "l'affichage de l'auteur, l'extrait et de la date s'ils sont déjà activés. La "
652
+ "désactivation de cette option ne réinitialisera aucun réglage."
653
+
654
+ #: admin/main-view.php:673
655
+ #, php-format
656
+ msgid ""
657
+ "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
658
+ msgstr ""
659
+
660
+ #: admin/main-view.php:676
661
+ msgid "Custom CSS to add to header:"
662
+ msgstr "CSS personnalisé a ajouter dans l'en-tête :"
663
+
664
+ #: admin/main-view.php:680
665
+ msgid ""
666
+ "Do not include <code>style</code> tags. Check out the <a href=\"http://"
667
+ "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
668
+ "\">FAQ</a> for available CSS classes to style."
669
+ msgstr ""
670
+ "Ne pas inclure de mots-clefs de <code>style</code>. Consultez la <a href="
671
+ "\"http://wordpress.org/extend/plugins/contextual-related-posts/faq/\" target="
672
+ "\"_blank\">FAQ</a> pour connaitre les classes de style CSS disponibles."
673
+
674
+ #: admin/main-view.php:710
675
+ msgid "Default Options"
676
+ msgstr "options par défaut"
677
+
678
+ #: admin/main-view.php:710
679
+ msgid "Do you want to set options to Default?"
680
+ msgstr "Voulez-vous réinitialiser les options à leurs valeurs par défaut ?"
681
+
682
+ #: admin/main-view.php:711
683
+ msgid "Recreate Index"
684
+ msgstr "Recréer l'index"
685
+
686
+ #: admin/main-view.php:711
687
+ msgid "Are you sure you want to recreate the index?"
688
+ msgstr "Voulez-vous vraiment recréer l'index ?"
689
 
690
  #: admin/sidebar-view.php:20
691
  msgid "Support the development"
707
  msgid "Follow me"
708
  msgstr "Suivez-moi"
709
 
710
+ #: admin/sidebar-view.php:53
711
  msgid "Quick links"
712
  msgstr "Liens rapides"
713
 
714
+ #: admin/sidebar-view.php:57
715
  msgid "Contextual Related Posts plugin page"
716
  msgstr "Page de l'extension Contextual Related Posts"
717
 
718
+ #: admin/sidebar-view.php:58
719
  msgid "FAQ"
720
  msgstr "FAQ"
721
 
722
+ #: admin/sidebar-view.php:60
723
  msgid "Reviews"
724
  msgstr "Avis"
725
 
726
+ #: admin/sidebar-view.php:61
727
  msgid "Github repository"
728
  msgstr "Dépot Github"
729
 
730
+ #: admin/sidebar-view.php:62
731
  msgid "Other plugins"
732
  msgstr "Autres extensions"
733
 
734
+ #: admin/sidebar-view.php:63
735
  msgid "Ajay's blog"
736
  msgstr "Blog de Ajay"
737
 
738
+ #: contextual-related-posts.php:250
739
  msgid " by "
740
  msgstr " par"
741
 
742
+ #: contextual-related-posts.php:289
743
  #, php-format
744
  msgid "Powered by <a href=\"%s\" rel=\"nofollow\">Contextual Related Posts</a>"
745
  msgstr ""
746
+ "Propulsé par <a href=\"%s\" rel=\"nofollow\">Contextual Related Posts</a>"
747
 
748
+ #: contextual-related-posts.php:670
749
  msgid "Related Posts [CRP]"
750
  msgstr "Articles relatifs [CRP]"
751
 
752
+ #: contextual-related-posts.php:671
753
  msgid "Display Related Posts"
754
  msgstr "Afficher les articles relatifs"
755
 
756
+ #: contextual-related-posts.php:694
757
  msgid "Title"
758
  msgstr "Titre"
759
 
760
+ #: contextual-related-posts.php:699
761
  msgid "No. of posts"
762
  msgstr "No. de l'articles"
763
 
764
+ #: contextual-related-posts.php:704
765
  msgid " Show excerpt?"
766
  msgstr "Afficher l'extrait ?"
767
 
768
+ #: contextual-related-posts.php:709
769
  msgid " Show author?"
770
  msgstr "Afficher l'auteur ?"
771
 
772
+ #: contextual-related-posts.php:714
773
  msgid " Show date?"
774
  msgstr "Afficher la date ?"
775
 
776
+ #: contextual-related-posts.php:720
 
 
 
 
777
  msgid "Thumbnails inline, before title"
778
  msgstr "Miniature avant le titre"
779
 
780
+ #: contextual-related-posts.php:721
781
  msgid "Thumbnails inline, after title"
782
  msgstr "Miniatures après le titre"
783
 
784
+ #: contextual-related-posts.php:722
785
  msgid "Only thumbnails, no text"
786
  msgstr "Que les miniatures, pas de texte"
787
 
788
+ #: contextual-related-posts.php:723
789
  msgid "No thumbnails, only text."
790
  msgstr "Pas de miniature, que le texte"
791
 
792
+ #: contextual-related-posts.php:728
793
  msgid "Thumbnail height"
794
  msgstr "Hauteur de la vignette"
795
 
796
+ #: contextual-related-posts.php:733
797
  msgid "Thumbnail width"
798
  msgstr "Largeur des vignettes"
799
 
800
+ #: contextual-related-posts.php:897
801
  msgid "<h3>Related Posts:</h3>"
802
  msgstr "<h3>Articles relatifs :</h3>"
803
 
804
+ #: contextual-related-posts.php:899
805
  msgid "No related posts found"
806
  msgstr "Aucun article relatif trouvé."
807
+
808
+ #: contextual-related-posts.php:1211
809
+ msgid "thumb_timthumb argument has been deprecated"
810
+ msgstr "L'argument thumb_timthumb est devenu obsolète"
811
+
812
+ #: contextual-related-posts.php:1215
813
+ msgid "thumb_timthumb_q argument has been deprecated"
814
+ msgstr "L'argument thumb_timthumb_q est devenu obsolète"
815
+
816
+ #: contextual-related-posts.php:1219
817
+ msgid "filter argument has been deprecated"
818
+ msgstr "L'argument filter est devenu obsolète"
819
+
820
+ #~ msgid ""
821
+ #~ "I recommend using <a href='%s' target='_blank'>OTF Regenerate Thumbnails</"
822
+ #~ "a> or <a href='%s' target='_blank'>Regenerate Thumbnails</a> to "
823
+ #~ "regenerate all image sizes."
824
+ #~ msgstr ""
825
+ #~ "Je recommande d'utiliser les extensions <a href='%s' target='_blank'>OTF "
826
+ #~ "Regenerate Thumbnails</a> ou <a href='%s' target='_blank'>Regenerate "
827
+ #~ "Thumbnails</a> pour régénérer toutes les tailles d'image."
828
+
829
+ #~ msgid ""
830
+ #~ "Since you're using the default styles set under the Custom Styles "
831
+ #~ "section, the width and height is fixed at 150px"
832
+ #~ msgstr ""
833
+ #~ "Puisque vous utilisez les styles par défaut défini dans la section Styles "
834
+ #~ "personnalisés, la largeur et la hauteur sont fixées à 150px"
languages/crp-it_IT.mo CHANGED
Binary file
languages/crp-it_IT.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts in italiano\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-09-04 20:42-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Gianni Diurno | http://gidibao.net/ <gidibao@gmail.com>\n"
@@ -12,246 +12,239 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e;_c;__ngettext\n"
14
  "X-Poedit-Basepath: ../\n"
15
- "X-Generator: Poedit 1.6.9\n"
 
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin/admin.php:161
19
  msgid "Options saved successfully."
20
  msgstr "Le opzioni sono state salvate correttamente."
21
 
22
- #: admin/admin.php:181
 
 
 
 
 
 
23
  msgid "Options set to Default."
24
  msgstr "Opzioni impostate alle predefinite."
25
 
26
- #: admin/admin.php:192
27
  msgid "Index recreated"
28
  msgstr "E' stato ricreato l'indice"
29
 
30
- #: admin/admin.php:209 admin/admin.php:419 admin/main-view.php:20
31
  msgid "Contextual Related Posts"
32
  msgstr "Contextual Related Posts"
33
 
34
- #: admin/admin.php:210
35
  msgid "Related Posts"
36
  msgstr "Related Posts"
37
 
38
- #: admin/admin.php:321
39
  msgid "Settings"
40
  msgstr "Impostazioni"
41
 
42
- #: admin/admin.php:343 admin/sidebar-view.php:58
43
  msgid "Support"
44
  msgstr "Supporto"
45
 
46
- #: admin/admin.php:344
47
  msgid "Donate"
48
  msgstr "Donazioni"
49
 
50
- #: admin/admin.php:345
51
  msgid "Contribute"
52
  msgstr ""
53
 
54
- #: admin/admin.php:361
55
  #, fuzzy
56
  msgid "plugin settings page"
57
  msgstr "Impostazioni"
58
 
59
- #: admin/admin.php:395
60
  msgid ""
61
  "An error occurred clearing the cache. Please contact your site administrator."
62
  "\\n\\nError message:\\n"
63
  msgstr ""
64
 
65
- #: admin/admin.php:400
66
  msgid " cached row(s) cleared"
67
  msgstr ""
68
 
69
- #: admin/admin.php:446
70
  #, fuzzy
71
  msgid "Location of thumbnail:"
72
  msgstr "Opzioni miniature articolo:"
73
 
74
- #: admin/admin.php:448
75
  msgid ""
76
  "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
77
  "image will be used for the post. It will be resized to the thumbnail size "
78
  "set under Settings &raquo; Related Posts &raquo; Output Options"
79
  msgstr ""
80
 
81
- #: admin/admin.php:449
82
  msgid "The URL above is saved in the meta field: "
83
  msgstr ""
84
 
85
- #: admin/main-view.php:32 admin/main-view.php:51
86
  #, fuzzy
87
  msgid "General options"
88
  msgstr "Le opzioni sono state salvate con successo."
89
 
90
- #: admin/main-view.php:33 admin/main-view.php:60
 
 
 
 
91
  #, fuzzy
92
  msgid "Output options"
93
  msgstr "Le opzioni sono state salvate con successo."
94
 
95
- #: admin/main-view.php:34 admin/main-view.php:69
 
 
 
 
 
 
96
  #, fuzzy
97
  msgid "Feed options"
98
  msgstr "Le opzioni sono state salvate con successo."
99
 
100
- #: admin/main-view.php:35 admin/main-view.php:77
101
  msgid "Custom styles"
102
  msgstr ""
103
 
104
- #: admin/main-view.php:95
105
- #, fuzzy
106
- msgid "Save Options"
107
- msgstr "Le opzioni sono state salvate con successo."
108
-
109
- #: admin/main-view.php:96
110
- #, fuzzy
111
- msgid "Default Options"
112
- msgstr "Opzioni impostate alle predefinite."
113
 
114
- #: admin/main-view.php:96
115
- msgid "Do you want to set options to Default?"
116
- msgstr "Sei certo di volere impostare alle opzioni predefinite?"
 
 
117
 
118
- #: admin/main-view.php:97
119
- msgid "Recreate Index"
120
  msgstr ""
121
 
122
- #: admin/main-view.php:97
123
- msgid "Are you sure you want to recreate the index?"
124
- msgstr "Sei certo di volere ricreare l'indice?"
 
125
 
126
- #: admin/options-custom-styles.php:32
127
- msgid "Use default style included in the plugin?"
128
- msgstr ""
 
129
 
130
- #: admin/options-custom-styles.php:35
131
- msgid ""
132
- "Contextual Related Posts includes a default style that makes your popular "
133
- "posts list to look beautiful. Check the box above if you want to use this."
134
  msgstr ""
135
 
136
- #: admin/options-custom-styles.php:36
137
- msgid ""
138
- "Enabling this option will turn on the thumbnails and set their width and "
139
- "height to 150px. It will also turn off the display of the author, excerpt "
140
- "and date if already enabled. Disabling this option will not revert any "
141
- "settings."
142
- msgstr ""
143
 
144
- #: admin/options-custom-styles.php:39
145
- msgid "Custom CSS to add to header:"
146
  msgstr ""
147
 
148
- #: admin/options-custom-styles.php:43
149
- msgid ""
150
- "Do not include <code>style</code> tags. Check out the <a href=\"http://"
151
- "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
152
- "\">FAQ</a> for available CSS classes to style."
153
  msgstr ""
154
 
155
- #: admin/options-feed.php:32
156
- msgid ""
157
- "Below options override the related posts settings for your blog feed. These "
158
- "only apply if you have selected to add related posts to Feeds in the General "
159
- "Options tab."
160
  msgstr ""
161
 
162
- #: admin/options-feed.php:34 admin/options-genops.php:39
163
- msgid "Number of related posts to display: "
164
- msgstr "numero di articoli correlati da mostrare:"
165
-
166
- #: admin/options-feed.php:37 admin/options-output.php:52
167
- msgid "Show post excerpt in list?"
168
- msgstr "Desideri mostrare gli estratti?"
169
-
170
- #: admin/options-feed.php:40 admin/options-output.php:239
171
- #, fuzzy
172
- msgid "Location of post thumbnail:"
173
- msgstr "Opzioni miniature articolo:"
174
-
175
- #: admin/options-feed.php:44 admin/options-output.php:243
176
  #, fuzzy
177
- msgid "Display thumbnails inline with posts, before title"
178
- msgstr "Mostra gli articoli con le miniature inline prima del titolo"
179
 
180
- #: admin/options-feed.php:48 admin/options-output.php:247
181
  #, fuzzy
182
- msgid "Display thumbnails inline with posts, after title"
183
- msgstr "Mostra gli articoli con le miniature inline dopo il titolo"
184
-
185
- #: admin/options-feed.php:52 admin/options-output.php:251
186
- msgid "Display only thumbnails, no text"
187
- msgstr "Mostra le sole miniature, nessun testo"
 
 
 
188
 
189
- #: admin/options-feed.php:56 admin/options-output.php:255
190
- msgid "Do not display thumbnails, only text."
191
- msgstr "Non mostrare le miniature, solo testo."
192
 
193
- #: admin/options-feed.php:60
194
- #, fuzzy
195
- msgid "Maximum width of the thumbnail: "
196
- msgstr "Opzioni miniature articolo:"
 
197
 
198
- #: admin/options-feed.php:63 admin/options-output.php:270
199
  #, fuzzy
200
- msgid "Maximum height of the thumbnail: "
201
- msgstr "Opzioni miniature articolo:"
202
 
203
- #: admin/options-genops.php:32
204
- msgid "Cache output?"
205
  msgstr ""
206
 
207
- #: admin/options-genops.php:34
 
208
  msgid ""
209
- "Enabling this option will cache the related posts output when the post is "
210
- "visited the first time. The cache is cleaned when you save this page."
211
- msgstr ""
212
 
213
- #: admin/options-genops.php:35
214
- msgid "Clear cache"
215
- msgstr ""
 
 
216
 
217
- #: admin/options-genops.php:42
 
 
 
 
218
  msgid ""
219
  "Maximum number of posts that will be displayed. The actual number may be "
220
  "smaller if less related posts are found."
221
  msgstr ""
222
 
223
- #: admin/options-genops.php:46
224
  msgid "Related posts should be newer than:"
225
  msgstr ""
226
 
227
- #: admin/options-genops.php:48
228
  #, fuzzy
229
  msgid "days"
230
  msgstr ""
231
  "Quanti giorni desideri siano considerati per il computo delle "
232
  "visualizzazioni per articoli più popolari del giorno?"
233
 
234
- #: admin/options-genops.php:49
235
  msgid ""
236
  "This sets the cutoff period for which posts will be displayed. e.g. setting "
237
- "it to 365 will show related posts from the last year only."
 
238
  msgstr ""
239
 
240
- #: admin/options-genops.php:53
241
- #, fuzzy
242
- msgid "Post types to include in results:"
243
- msgstr "Escludi categorie:"
244
-
245
- #: admin/options-genops.php:64
246
- msgid ""
247
- "These post types will be displayed in the list. Includes custom post types."
248
- msgstr ""
249
-
250
- #: admin/options-genops.php:68
251
  msgid "Find related posts based on content as well as title:"
252
  msgstr ""
253
 
254
- #: admin/options-genops.php:70
255
  #, fuzzy
256
  msgid ""
257
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
@@ -261,115 +254,77 @@ msgstr ""
261
  "disattivata, verranno utilizzati i soli titoli dei post. (in questo caso é "
262
  "preferibile attivare un plugin per la cache)"
263
 
264
- #: admin/options-genops.php:74
265
  msgid "Limit content to be compared"
266
  msgstr ""
267
 
268
- #: admin/options-genops.php:76
269
  msgid ""
270
  "This sets the maximum words of the content that will be matched. 0 means no "
271
  "limit."
272
  msgstr ""
273
 
274
- #: admin/options-genops.php:80
275
- #, fuzzy
276
- msgid "Add related posts to:"
277
- msgstr "Gli articoli più popolari"
278
-
279
- #: admin/options-genops.php:82
280
- #, fuzzy
281
- msgid "Posts"
282
- msgstr "Gli articoli più popolari"
283
-
284
- #: admin/options-genops.php:83
285
- msgid "Pages"
286
- msgstr ""
287
-
288
- #: admin/options-genops.php:84
289
- #, fuzzy
290
- msgid "Home page"
291
- msgstr "Risultati per pagina:"
292
-
293
- #: admin/options-genops.php:85
294
- msgid "Feeds"
295
- msgstr ""
296
-
297
- #: admin/options-genops.php:86
298
- msgid "Category archives"
299
- msgstr ""
300
-
301
- #: admin/options-genops.php:87
302
- msgid "Tag archives"
303
- msgstr ""
304
-
305
- #: admin/options-genops.php:88
306
  #, fuzzy
307
- msgid "Other archives"
308
- msgstr "Altri plugin"
309
 
310
- #: admin/options-genops.php:89
311
- #, fuzzy
312
  msgid ""
313
- "If you choose to disable this, please add <code>&lt;?php if "
314
- "( function_exists( 'echo_ald_crp' ) ) echo_ald_crp(); ?&gt;</code> to your "
315
- "template file where you want it displayed"
316
  msgstr ""
317
- "aggiungi gli articoli correlati alle pagine. <br />oppure disattiva ed "
318
- "inserisci <code>&lt;?php if(function_exists('echo_ald_crp')) "
319
- "echo_ald_crp(); ?&gt;</code> nel tuo template laddove desideri che siano "
320
- "visualizzati"
321
 
322
- #: admin/options-genops.php:93
323
- msgid "Content filter priority:"
324
- msgstr ""
 
325
 
326
- #: admin/options-genops.php:96
327
  msgid ""
328
- "A higher number will cause the content above to be processed after other "
329
- "filters. Number below 10 is not recommended."
330
  msgstr ""
331
 
332
- #: admin/options-genops.php:100
333
  #, fuzzy
334
- msgid "Tell the world you're using Contextual Related Posts:"
335
- msgstr "Contextual Related Posts"
336
-
337
- #: admin/options-genops.php:102
338
- msgid " <em>Optional</em>"
339
- msgstr ""
340
 
341
- #: admin/options-genops.php:103
342
- #, fuzzy
343
  msgid ""
344
- "Adds a nofollow link to Contextual Related Posts homepage as the last time "
345
- "in the list."
346
- msgstr "Contextual Related Posts "
 
347
 
348
- #: admin/options-output.php:32
349
  msgid "Title of related posts: "
350
  msgstr "titolo per gli articoli correlati:"
351
 
352
- #: admin/options-output.php:35
353
  msgid ""
354
  "This is the main heading of the related posts. You can also display the "
355
  "current post title by using <code>%postname%</code>. e.g. <code>Related "
356
  "Posts to %postname%</code>"
357
  msgstr ""
358
 
359
- #: admin/options-output.php:39
360
  msgid "When there are no posts, what should be shown?"
361
  msgstr "Cosa desideri mostrare in assenza di articoli?"
362
 
363
- #: admin/options-output.php:43
364
  msgid "Blank Output"
365
  msgstr "nulla"
366
 
367
- #: admin/options-output.php:47
368
  #, fuzzy
369
  msgid "Display:"
370
  msgstr "Numero degli articoli più popolari da mostrare:"
371
 
372
- #: admin/options-output.php:55
 
 
 
 
373
  #, php-format
374
  msgid ""
375
  "Displays the excerpt of the post. If you do not provide an explicit excerpt "
@@ -377,216 +332,228 @@ msgid ""
377
  "automatic excerpt which refers to the first %d words of the post's content"
378
  msgstr ""
379
 
380
- #: admin/options-output.php:59
 
 
 
 
 
381
  msgid "Length of excerpt (in words): "
382
  msgstr "Lunghezza estratto (in parole): "
383
 
384
- #: admin/options-output.php:65
385
  #, fuzzy
386
  msgid "Show post author in list?"
387
  msgstr "Desideri mostrare gli estratti?"
388
 
389
- #: admin/options-output.php:68
390
  msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
391
  msgstr ""
392
 
393
- #: admin/options-output.php:72
 
 
 
 
 
394
  #, fuzzy
395
  msgid "Show post date in list?"
396
  msgstr "Desideri mostrare gli estratti?"
397
 
398
- #: admin/options-output.php:75
399
  msgid ""
400
  "Displays the date of the post. Uses the same date format set in General "
401
  "Options"
402
  msgstr ""
403
 
404
- #: admin/options-output.php:79
 
 
 
 
 
405
  msgid "Limit post title length (in characters)"
406
  msgstr ""
407
 
408
- #: admin/options-output.php:82
409
  msgid ""
410
  "Any title longer than the number of characters set above will be cut and "
411
  "appended with a &helip;"
412
  msgstr ""
413
 
414
- #: admin/options-output.php:86
415
  msgid "Open links in new window"
416
  msgstr ""
417
 
418
- #: admin/options-output.php:92
419
  msgid "Add nofollow attribute to links in the list"
420
  msgstr ""
421
 
422
- #: admin/options-output.php:125
423
  #, fuzzy
424
  msgid "Exclusion settings:"
425
  msgstr "Impostazioni"
426
 
427
- #: admin/options-output.php:127
428
- #, fuzzy
429
- msgid "List of post or page IDs to exclude from the results:"
430
- msgstr "Escludi categorie:"
431
-
432
- #: admin/options-output.php:129 admin/options-output.php:135
433
- msgid ""
434
- "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
435
- msgstr ""
436
-
437
- #: admin/options-output.php:132
438
  #, fuzzy
439
  msgid "Exclude display of related posts on these posts / pages"
440
  msgstr "aggiungi gli articoli correlati al feed"
441
 
442
- #: admin/options-output.php:138
443
- #, fuzzy
444
- msgid "Categories to exclude from the results: "
445
- msgstr "Escludi categorie:"
446
-
447
- #: admin/options-output.php:154
448
- msgid ""
449
- "Comma separated list of category slugs. The field above has an autocomplete "
450
- "so simply start typing in the beginning of your category name and it will "
451
- "prompt you with options."
452
- msgstr ""
453
-
454
- #: admin/options-output.php:157
455
  #, fuzzy
456
  msgid "Exclude display of related posts on these post types."
457
  msgstr "aggiungi gli articoli correlati al feed"
458
 
459
- #: admin/options-output.php:166
460
  msgid ""
461
  "The related posts will not display on any of the above selected post types"
462
  msgstr ""
463
 
464
- #: admin/options-output.php:196
465
  msgid "Customize the output:"
466
  msgstr "Personalizzazione output:"
467
 
468
- #: admin/options-output.php:198
469
  msgid "HTML to display before the list of posts: "
470
  msgstr "HTML da mostrare davanti alla lista degli articoli:"
471
 
472
- #: admin/options-output.php:201
473
  msgid "HTML to display before each list item: "
474
  msgstr "HTML da mostrare davanti ad ogni singola lista:"
475
 
476
- #: admin/options-output.php:204
477
  msgid "HTML to display after each list item: "
478
  msgstr "HTML da mostrare dopo ogni lista:"
479
 
480
- #: admin/options-output.php:207
481
  msgid "HTML to display after the list of posts: "
482
  msgstr "HTML da mostrare dopo la lista degli articoli:"
483
 
484
- #: admin/options-output.php:237
485
- msgid "Post thumbnail options:"
 
486
  msgstr "Opzioni miniature articolo:"
487
 
488
- #: admin/options-output.php:261
489
- msgid ""
490
- "Contextual Related Posts adds a new image size with the below dimensions."
491
- msgstr ""
 
 
 
 
 
 
 
 
 
492
 
493
- #: admin/options-output.php:262
 
 
 
 
494
  msgid ""
495
- "If you change the width and/or height below, existing images will not be "
496
- "automatically resized."
497
  msgstr ""
498
 
499
- #: admin/options-output.php:263
500
- #, php-format
501
- msgid ""
502
- "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
503
- "a> to regenerate all image sizes."
504
  msgstr ""
505
 
506
- #: admin/options-output.php:267
507
- #, fuzzy
508
- msgid "Maximum width of the thumbnail:"
509
- msgstr "Opzioni miniature articolo:"
510
 
511
- #: admin/options-output.php:274
512
  msgid ""
513
- "Since you're using the default styles set under the Custom Styles section, "
514
- "the width and height is fixed at 150px"
 
515
  msgstr ""
516
 
517
- #: admin/options-output.php:278
518
- msgid "Crop mode:"
 
 
519
  msgstr ""
520
 
521
- #: admin/options-output.php:282
 
522
  msgid ""
523
- "By default, thumbnails will be proportionately cropped. Check this box to "
524
- "hard crop the thumbnails."
 
525
  msgstr ""
526
 
527
- #: admin/options-output.php:283
528
- #, php-format
529
- msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
530
  msgstr ""
531
 
532
- #: admin/options-output.php:287
533
- msgid "Style attributes / Width and Height HTML attributes:"
534
  msgstr ""
535
 
536
- #: admin/options-output.php:291
537
- msgid "Style attributes are used for width and height."
538
  msgstr ""
539
 
540
- #: admin/options-output.php:295
541
- msgid "HTML width and height attributes are used for width and height."
 
 
542
  msgstr ""
543
 
544
- #: admin/options-output.php:299
545
- msgid "Use timthumb to generate thumbnails? "
 
546
  msgstr ""
547
 
548
- #: admin/options-output.php:301
549
  msgid ""
550
- "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
551
- "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
552
  msgstr ""
553
 
554
- #: admin/options-output.php:304
555
- msgid "Quality of thumbnails generated by timthumb:"
556
  msgstr ""
557
 
558
- #: admin/options-output.php:307
559
- msgid ""
560
- "Enter values between 0 and 100 only. 100 is highest quality and the highest "
561
- "file size. Suggested maximum value is 95. CRP default is 75."
562
  msgstr ""
563
 
564
- #: admin/options-output.php:310
 
 
 
 
565
  #, fuzzy
566
  msgid "Post thumbnail meta field name:"
567
  msgstr "Opzioni miniature articolo:"
568
 
569
- #: admin/options-output.php:312
570
  msgid ""
571
  "The value of this field should contain the image source and is set in the "
572
  "<em>Add New Post</em> screen"
573
  msgstr ""
574
 
575
- #: admin/options-output.php:315
576
  msgid "Extract the first image from the post?"
577
  msgstr ""
578
 
579
- #: admin/options-output.php:317
580
  msgid ""
581
  "This will only happen if there is no post thumbnail set and no image URL is "
582
  "specified in the meta field."
583
  msgstr ""
584
 
585
- #: admin/options-output.php:320
586
  msgid "Use default thumbnail?"
587
  msgstr ""
588
 
589
- #: admin/options-output.php:322
590
  #, fuzzy
591
  msgid ""
592
  "If checked, when no thumbnail is found, show a default one from the URL "
@@ -595,12 +562,12 @@ msgstr ""
595
  "Se attiva, in assenza di miniatura ne mostrerà una predefinita da URL qui "
596
  "sotto. Se inattiva e senza miniatura, non verrà mostrata nessuna immagine."
597
 
598
- #: admin/options-output.php:325
599
  #, fuzzy
600
  msgid "Default thumbnail:"
601
  msgstr "Opzioni impostate alle predefinite."
602
 
603
- #: admin/options-output.php:328
604
  #, fuzzy
605
  msgid ""
606
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -612,6 +579,75 @@ msgstr ""
612
  "meta. Qualora non fosse disponibile, mostrerà l'immagine predefinita come "
613
  "specificato qui sotto:"
614
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
615
  #: admin/sidebar-view.php:20
616
  msgid "Support the development"
617
  msgstr "Sostieni lo sviluppo"
@@ -634,124 +670,138 @@ msgstr "Invia la tua donazione all'autore di"
634
  msgid "Follow me"
635
  msgstr ""
636
 
637
- #: admin/sidebar-view.php:52
638
  #, fuzzy
639
  msgid "Quick links"
640
  msgstr "Collegamenti veloci"
641
 
642
- #: admin/sidebar-view.php:56
643
  #, fuzzy
644
  msgid "Contextual Related Posts plugin page"
645
  msgstr "Contextual Related Posts "
646
 
647
- #: admin/sidebar-view.php:57
648
  msgid "FAQ"
649
  msgstr ""
650
 
651
- #: admin/sidebar-view.php:59
652
  msgid "Reviews"
653
  msgstr ""
654
 
655
- #: admin/sidebar-view.php:60
656
  msgid "Github repository"
657
  msgstr ""
658
 
659
- #: admin/sidebar-view.php:61
660
  msgid "Other plugins"
661
  msgstr "Altri plugin"
662
 
663
- #: admin/sidebar-view.php:62
664
  msgid "Ajay's blog"
665
  msgstr "Il blog di Ajay"
666
 
667
- #: contextual-related-posts.php:246
668
  msgid " by "
669
  msgstr ""
670
 
671
- #: contextual-related-posts.php:285
672
  #, php-format
673
  msgid "Powered by <a href=\"%s\" rel=\"nofollow\">Contextual Related Posts</a>"
674
  msgstr ""
675
 
676
- #: contextual-related-posts.php:596
677
  #, fuzzy
678
  msgid "Related Posts [CRP]"
679
  msgstr "Related Posts"
680
 
681
- #: contextual-related-posts.php:597
682
  #, fuzzy
683
  msgid "Display Related Posts"
684
  msgstr "Numero degli articoli più popolari da mostrare:"
685
 
686
- #: contextual-related-posts.php:620
687
  #, fuzzy
688
  msgid "Title"
689
  msgstr "Titolo per gli articoli più popolari:"
690
 
691
- #: contextual-related-posts.php:625
692
  #, fuzzy
693
  msgid "No. of posts"
694
  msgstr "Gli articoli più popolari"
695
 
696
- #: contextual-related-posts.php:630
697
  #, fuzzy
698
  msgid " Show excerpt?"
699
  msgstr "Desideri mostrare gli estratti?"
700
 
701
- #: contextual-related-posts.php:635
702
  #, fuzzy
703
  msgid " Show author?"
704
  msgstr "Invia la tua donazione all'autore di"
705
 
706
- #: contextual-related-posts.php:640
707
  #, fuzzy
708
  msgid " Show date?"
709
  msgstr "Desideri mostrare gli estratti?"
710
 
711
- #: contextual-related-posts.php:644
712
- #, fuzzy
713
- msgid "Thumbnail options"
714
- msgstr "Opzioni miniature articolo:"
715
-
716
- #: contextual-related-posts.php:646
717
  #, fuzzy
718
  msgid "Thumbnails inline, before title"
719
  msgstr "Mostra gli articoli con le miniature inline prima del titolo"
720
 
721
- #: contextual-related-posts.php:647
722
  #, fuzzy
723
  msgid "Thumbnails inline, after title"
724
  msgstr "Mostra gli articoli con le miniature inline dopo il titolo"
725
 
726
- #: contextual-related-posts.php:648
727
  #, fuzzy
728
  msgid "Only thumbnails, no text"
729
  msgstr "Mostra le sole miniature, nessun testo"
730
 
731
- #: contextual-related-posts.php:649
732
  #, fuzzy
733
  msgid "No thumbnails, only text."
734
  msgstr "Non mostrare le miniature, solo testo."
735
 
736
- #: contextual-related-posts.php:654
737
  #, fuzzy
738
  msgid "Thumbnail height"
739
  msgstr "Opzioni miniature articolo:"
740
 
741
- #: contextual-related-posts.php:659
742
  #, fuzzy
743
  msgid "Thumbnail width"
744
  msgstr "Opzioni miniature articolo:"
745
 
746
- #: contextual-related-posts.php:799
747
  msgid "<h3>Related Posts:</h3>"
748
  msgstr "<h3>Related Posts:</h3>"
749
 
750
- #: contextual-related-posts.php:801
751
  #, fuzzy
752
  msgid "No related posts found"
753
  msgstr "Non é stato trovato alcun articolo correlato"
754
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
755
  #~ msgid "Powered by"
756
  #~ msgstr "Powered by"
757
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts in italiano\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-05-09 22:20-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Gianni Diurno | http://gidibao.net/ <gidibao@gmail.com>\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e;_c;__ngettext\n"
14
  "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.7.1\n"
16
+ "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: admin/admin.php:166
20
  msgid "Options saved successfully."
21
  msgstr "Le opzioni sono state salvate correttamente."
22
 
23
+ #: admin/admin.php:169
24
+ msgid ""
25
+ "Default styles selected. Thumbnail width, height and crop settings have been "
26
+ "fixed. Author, Excerpt and Date will not be displayed."
27
+ msgstr ""
28
+
29
+ #: admin/admin.php:194
30
  msgid "Options set to Default."
31
  msgstr "Opzioni impostate alle predefinite."
32
 
33
+ #: admin/admin.php:205
34
  msgid "Index recreated"
35
  msgstr "E' stato ricreato l'indice"
36
 
37
+ #: admin/admin.php:222 admin/admin.php:453 admin/main-view.php:20
38
  msgid "Contextual Related Posts"
39
  msgstr "Contextual Related Posts"
40
 
41
+ #: admin/admin.php:223
42
  msgid "Related Posts"
43
  msgstr "Related Posts"
44
 
45
+ #: admin/admin.php:338
46
  msgid "Settings"
47
  msgstr "Impostazioni"
48
 
49
+ #: admin/admin.php:360 admin/sidebar-view.php:59
50
  msgid "Support"
51
  msgstr "Supporto"
52
 
53
+ #: admin/admin.php:361
54
  msgid "Donate"
55
  msgstr "Donazioni"
56
 
57
+ #: admin/admin.php:362
58
  msgid "Contribute"
59
  msgstr ""
60
 
61
+ #: admin/admin.php:378
62
  #, fuzzy
63
  msgid "plugin settings page"
64
  msgstr "Impostazioni"
65
 
66
+ #: admin/admin.php:422
67
  msgid ""
68
  "An error occurred clearing the cache. Please contact your site administrator."
69
  "\\n\\nError message:\\n"
70
  msgstr ""
71
 
72
+ #: admin/admin.php:427
73
  msgid " cached row(s) cleared"
74
  msgstr ""
75
 
76
+ #: admin/admin.php:480
77
  #, fuzzy
78
  msgid "Location of thumbnail:"
79
  msgstr "Opzioni miniature articolo:"
80
 
81
+ #: admin/admin.php:482
82
  msgid ""
83
  "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
84
  "image will be used for the post. It will be resized to the thumbnail size "
85
  "set under Settings &raquo; Related Posts &raquo; Output Options"
86
  msgstr ""
87
 
88
+ #: admin/admin.php:483
89
  msgid "The URL above is saved in the meta field: "
90
  msgstr ""
91
 
92
+ #: admin/main-view.php:32 admin/main-view.php:54
93
  #, fuzzy
94
  msgid "General options"
95
  msgstr "Le opzioni sono state salvate con successo."
96
 
97
+ #: admin/main-view.php:33 admin/main-view.php:125
98
+ msgid "List tuning options"
99
+ msgstr ""
100
+
101
+ #: admin/main-view.php:34 admin/main-view.php:229
102
  #, fuzzy
103
  msgid "Output options"
104
  msgstr "Le opzioni sono state salvate con successo."
105
 
106
+ #: admin/main-view.php:35 admin/main-view.php:433
107
+ #: contextual-related-posts.php:718
108
+ #, fuzzy
109
+ msgid "Thumbnail options"
110
+ msgstr "Opzioni miniature articolo:"
111
+
112
+ #: admin/main-view.php:36 admin/main-view.php:580
113
  #, fuzzy
114
  msgid "Feed options"
115
  msgstr "Le opzioni sono state salvate con successo."
116
 
117
+ #: admin/main-view.php:37 admin/main-view.php:652
118
  msgid "Custom styles"
119
  msgstr ""
120
 
121
+ #: admin/main-view.php:70
122
+ msgid "Cache output?"
123
+ msgstr ""
 
 
 
 
 
 
124
 
125
+ #: admin/main-view.php:72
126
+ msgid ""
127
+ "Enabling this option will cache the related posts output when the post is "
128
+ "visited the first time. The cache is cleaned when you save this page."
129
+ msgstr ""
130
 
131
+ #: admin/main-view.php:73
132
+ msgid "Clear cache"
133
  msgstr ""
134
 
135
+ #: admin/main-view.php:77
136
+ #, fuzzy
137
+ msgid "Add related posts to:"
138
+ msgstr "Gli articoli più popolari"
139
 
140
+ #: admin/main-view.php:79
141
+ #, fuzzy
142
+ msgid "Posts"
143
+ msgstr "Gli articoli più popolari"
144
 
145
+ #: admin/main-view.php:80
146
+ msgid "Pages"
 
 
147
  msgstr ""
148
 
149
+ #: admin/main-view.php:81
150
+ #, fuzzy
151
+ msgid "Home page"
152
+ msgstr "Risultati per pagina:"
 
 
 
153
 
154
+ #: admin/main-view.php:82
155
+ msgid "Feeds"
156
  msgstr ""
157
 
158
+ #: admin/main-view.php:83
159
+ msgid "Category archives"
 
 
 
160
  msgstr ""
161
 
162
+ #: admin/main-view.php:84
163
+ msgid "Tag archives"
 
 
 
164
  msgstr ""
165
 
166
+ #: admin/main-view.php:85
 
 
 
 
 
 
 
 
 
 
 
 
 
167
  #, fuzzy
168
+ msgid "Other archives"
169
+ msgstr "Altri plugin"
170
 
171
+ #: admin/main-view.php:86
172
  #, fuzzy
173
+ msgid ""
174
+ "If you choose to disable this, please add <code>&lt;?php if "
175
+ "( function_exists( 'echo_ald_crp' ) ) echo_ald_crp(); ?&gt;</code> to your "
176
+ "template file where you want it displayed"
177
+ msgstr ""
178
+ "aggiungi gli articoli correlati alle pagine. <br />oppure disattiva ed "
179
+ "inserisci <code>&lt;?php if(function_exists('echo_ald_crp')) "
180
+ "echo_ald_crp(); ?&gt;</code> nel tuo template laddove desideri che siano "
181
+ "visualizzati"
182
 
183
+ #: admin/main-view.php:90
184
+ msgid "Content filter priority:"
185
+ msgstr ""
186
 
187
+ #: admin/main-view.php:93
188
+ msgid ""
189
+ "A higher number will cause the content above to be processed after other "
190
+ "filters. Number below 10 is not recommended."
191
+ msgstr ""
192
 
193
+ #: admin/main-view.php:97
194
  #, fuzzy
195
+ msgid "Tell the world you're using Contextual Related Posts:"
196
+ msgstr "Contextual Related Posts"
197
 
198
+ #: admin/main-view.php:99
199
+ msgid " <em>Optional</em>"
200
  msgstr ""
201
 
202
+ #: admin/main-view.php:100
203
+ #, fuzzy
204
  msgid ""
205
+ "Adds a nofollow link to Contextual Related Posts homepage as the last time "
206
+ "in the list."
207
+ msgstr "Contextual Related Posts "
208
 
209
+ #: admin/main-view.php:118 admin/main-view.php:222 admin/main-view.php:426
210
+ #: admin/main-view.php:573 admin/main-view.php:645 admin/main-view.php:709
211
+ #, fuzzy
212
+ msgid "Save Options"
213
+ msgstr "Le opzioni sono state salvate con successo."
214
 
215
+ #: admin/main-view.php:141 admin/main-view.php:598
216
+ msgid "Number of related posts to display: "
217
+ msgstr "numero di articoli correlati da mostrare:"
218
+
219
+ #: admin/main-view.php:144
220
  msgid ""
221
  "Maximum number of posts that will be displayed. The actual number may be "
222
  "smaller if less related posts are found."
223
  msgstr ""
224
 
225
+ #: admin/main-view.php:148
226
  msgid "Related posts should be newer than:"
227
  msgstr ""
228
 
229
+ #: admin/main-view.php:150
230
  #, fuzzy
231
  msgid "days"
232
  msgstr ""
233
  "Quanti giorni desideri siano considerati per il computo delle "
234
  "visualizzazioni per articoli più popolari del giorno?"
235
 
236
+ #: admin/main-view.php:151
237
  msgid ""
238
  "This sets the cutoff period for which posts will be displayed. e.g. setting "
239
+ "it to 365 will show related posts from the last year only. Set it to 0 to "
240
+ "disable limiting posts."
241
  msgstr ""
242
 
243
+ #: admin/main-view.php:155
 
 
 
 
 
 
 
 
 
 
244
  msgid "Find related posts based on content as well as title:"
245
  msgstr ""
246
 
247
+ #: admin/main-view.php:157
248
  #, fuzzy
249
  msgid ""
250
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
254
  "disattivata, verranno utilizzati i soli titoli dei post. (in questo caso é "
255
  "preferibile attivare un plugin per la cache)"
256
 
257
+ #: admin/main-view.php:161
258
  msgid "Limit content to be compared"
259
  msgstr ""
260
 
261
+ #: admin/main-view.php:163
262
  msgid ""
263
  "This sets the maximum words of the content that will be matched. 0 means no "
264
  "limit."
265
  msgstr ""
266
 
267
+ #: admin/main-view.php:167
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
268
  #, fuzzy
269
+ msgid "Post types to include in results:"
270
+ msgstr "Escludi categorie:"
271
 
272
+ #: admin/main-view.php:178
 
273
  msgid ""
274
+ "These post types will be displayed in the list. Includes custom post types."
 
 
275
  msgstr ""
 
 
 
 
276
 
277
+ #: admin/main-view.php:182
278
+ #, fuzzy
279
+ msgid "List of post or page IDs to exclude from the results:"
280
+ msgstr "Escludi categorie:"
281
 
282
+ #: admin/main-view.php:184 admin/main-view.php:355
283
  msgid ""
284
+ "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
 
285
  msgstr ""
286
 
287
+ #: admin/main-view.php:188
288
  #, fuzzy
289
+ msgid "Categories to exclude from the results: "
290
+ msgstr "Escludi categorie:"
 
 
 
 
291
 
292
+ #: admin/main-view.php:204
 
293
  msgid ""
294
+ "Comma separated list of category slugs. The field above has an autocomplete "
295
+ "so simply start typing in the beginning of your category name and it will "
296
+ "prompt you with options."
297
+ msgstr ""
298
 
299
+ #: admin/main-view.php:245
300
  msgid "Title of related posts: "
301
  msgstr "titolo per gli articoli correlati:"
302
 
303
+ #: admin/main-view.php:248
304
  msgid ""
305
  "This is the main heading of the related posts. You can also display the "
306
  "current post title by using <code>%postname%</code>. e.g. <code>Related "
307
  "Posts to %postname%</code>"
308
  msgstr ""
309
 
310
+ #: admin/main-view.php:252
311
  msgid "When there are no posts, what should be shown?"
312
  msgstr "Cosa desideri mostrare in assenza di articoli?"
313
 
314
+ #: admin/main-view.php:256
315
  msgid "Blank Output"
316
  msgstr "nulla"
317
 
318
+ #: admin/main-view.php:260
319
  #, fuzzy
320
  msgid "Display:"
321
  msgstr "Numero degli articoli più popolari da mostrare:"
322
 
323
+ #: admin/main-view.php:265 admin/main-view.php:601
324
+ msgid "Show post excerpt in list?"
325
+ msgstr "Desideri mostrare gli estratti?"
326
+
327
+ #: admin/main-view.php:268
328
  #, php-format
329
  msgid ""
330
  "Displays the excerpt of the post. If you do not provide an explicit excerpt "
332
  "automatic excerpt which refers to the first %d words of the post's content"
333
  msgstr ""
334
 
335
+ #: admin/main-view.php:271
336
+ msgid ""
337
+ "Default style selected under the Custom Styles. Excerpt display is disabled."
338
+ msgstr ""
339
+
340
+ #: admin/main-view.php:276
341
  msgid "Length of excerpt (in words): "
342
  msgstr "Lunghezza estratto (in parole): "
343
 
344
+ #: admin/main-view.php:282
345
  #, fuzzy
346
  msgid "Show post author in list?"
347
  msgstr "Desideri mostrare gli estratti?"
348
 
349
+ #: admin/main-view.php:285
350
  msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
351
  msgstr ""
352
 
353
+ #: admin/main-view.php:288
354
+ msgid ""
355
+ "Default style selected under the Custom Styles. Author display is disabled."
356
+ msgstr ""
357
+
358
+ #: admin/main-view.php:293
359
  #, fuzzy
360
  msgid "Show post date in list?"
361
  msgstr "Desideri mostrare gli estratti?"
362
 
363
+ #: admin/main-view.php:296
364
  msgid ""
365
  "Displays the date of the post. Uses the same date format set in General "
366
  "Options"
367
  msgstr ""
368
 
369
+ #: admin/main-view.php:299
370
+ msgid ""
371
+ "Default style selected under the Custom Styles. Date display is disabled."
372
+ msgstr ""
373
+
374
+ #: admin/main-view.php:304
375
  msgid "Limit post title length (in characters)"
376
  msgstr ""
377
 
378
+ #: admin/main-view.php:307
379
  msgid ""
380
  "Any title longer than the number of characters set above will be cut and "
381
  "appended with a &helip;"
382
  msgstr ""
383
 
384
+ #: admin/main-view.php:311
385
  msgid "Open links in new window"
386
  msgstr ""
387
 
388
+ #: admin/main-view.php:317
389
  msgid "Add nofollow attribute to links in the list"
390
  msgstr ""
391
 
392
+ #: admin/main-view.php:350
393
  #, fuzzy
394
  msgid "Exclusion settings:"
395
  msgstr "Impostazioni"
396
 
397
+ #: admin/main-view.php:352
 
 
 
 
 
 
 
 
 
 
398
  #, fuzzy
399
  msgid "Exclude display of related posts on these posts / pages"
400
  msgstr "aggiungi gli articoli correlati al feed"
401
 
402
+ #: admin/main-view.php:358
 
 
 
 
 
 
 
 
 
 
 
 
403
  #, fuzzy
404
  msgid "Exclude display of related posts on these post types."
405
  msgstr "aggiungi gli articoli correlati al feed"
406
 
407
+ #: admin/main-view.php:367
408
  msgid ""
409
  "The related posts will not display on any of the above selected post types"
410
  msgstr ""
411
 
412
+ #: admin/main-view.php:397
413
  msgid "Customize the output:"
414
  msgstr "Personalizzazione output:"
415
 
416
+ #: admin/main-view.php:399
417
  msgid "HTML to display before the list of posts: "
418
  msgstr "HTML da mostrare davanti alla lista degli articoli:"
419
 
420
+ #: admin/main-view.php:402
421
  msgid "HTML to display before each list item: "
422
  msgstr "HTML da mostrare davanti ad ogni singola lista:"
423
 
424
+ #: admin/main-view.php:405
425
  msgid "HTML to display after each list item: "
426
  msgstr "HTML da mostrare dopo ogni lista:"
427
 
428
+ #: admin/main-view.php:408
429
  msgid "HTML to display after the list of posts: "
430
  msgstr "HTML da mostrare dopo la lista degli articoli:"
431
 
432
+ #: admin/main-view.php:449 admin/main-view.php:604
433
+ #, fuzzy
434
+ msgid "Location of post thumbnail:"
435
  msgstr "Opzioni miniature articolo:"
436
 
437
+ #: admin/main-view.php:453 admin/main-view.php:608
438
+ #, fuzzy
439
+ msgid "Display thumbnails inline with posts, before title"
440
+ msgstr "Mostra gli articoli con le miniature inline prima del titolo"
441
+
442
+ #: admin/main-view.php:457 admin/main-view.php:612
443
+ #, fuzzy
444
+ msgid "Display thumbnails inline with posts, after title"
445
+ msgstr "Mostra gli articoli con le miniature inline dopo il titolo"
446
+
447
+ #: admin/main-view.php:461 admin/main-view.php:616
448
+ msgid "Display only thumbnails, no text"
449
+ msgstr "Mostra le sole miniature, nessun testo"
450
 
451
+ #: admin/main-view.php:465 admin/main-view.php:620
452
+ msgid "Do not display thumbnails, only text."
453
+ msgstr "Non mostrare le miniature, solo testo."
454
+
455
+ #: admin/main-view.php:468
456
  msgid ""
457
+ "Default style selected under the Custom Styles. Location of thumbnail forced "
458
+ "to be inline before title"
459
  msgstr ""
460
 
461
+ #: admin/main-view.php:472
462
+ msgid "Thumbnail size:"
 
 
 
463
  msgstr ""
464
 
465
+ #: admin/main-view.php:496
466
+ msgid "Custom size"
467
+ msgstr ""
 
468
 
469
+ #: admin/main-view.php:499
470
  msgid ""
471
+ "You can choose from existing image sizes above or create a custom size. If "
472
+ "you have chosen Custom size above, then enter the width, height and crop "
473
+ "settings below. For best results, use a cropped image."
474
  msgstr ""
475
 
476
+ #: admin/main-view.php:500
477
+ msgid ""
478
+ "If you change the width, height or crop mode below, existing images will not "
479
+ "be automatically resized."
480
  msgstr ""
481
 
482
+ #: admin/main-view.php:501
483
+ #, php-format
484
  msgid ""
485
+ "I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
486
+ "a> or <a href='%s' class='thickbox'>Regenerate Thumbnails</a> to regenerate "
487
+ "all image sizes."
488
  msgstr ""
489
 
490
+ #: admin/main-view.php:505
491
+ msgid "Width of the thumbnail:"
 
492
  msgstr ""
493
 
494
+ #: admin/main-view.php:508
495
+ msgid "Height of the thumbnail: "
496
  msgstr ""
497
 
498
+ #: admin/main-view.php:513
499
+ msgid "Crop mode:"
500
  msgstr ""
501
 
502
+ #: admin/main-view.php:517
503
+ msgid ""
504
+ "By default, thumbnails will be hard cropped. Uncheck this box to "
505
+ "proportionately/soft crop the thumbnails."
506
  msgstr ""
507
 
508
+ #: admin/main-view.php:518
509
+ #, php-format
510
+ msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
511
  msgstr ""
512
 
513
+ #: admin/main-view.php:521
514
  msgid ""
515
+ "Default style selected under the Custom Styles. Thumbnail width and height "
516
+ "is fixed at 150px and crop mode is enabled."
517
  msgstr ""
518
 
519
+ #: admin/main-view.php:525
520
+ msgid "Style attributes / Width and Height HTML attributes:"
521
  msgstr ""
522
 
523
+ #: admin/main-view.php:529
524
+ msgid "Style attributes are used for width and height."
 
 
525
  msgstr ""
526
 
527
+ #: admin/main-view.php:533
528
+ msgid "HTML width and height attributes are used for width and height."
529
+ msgstr ""
530
+
531
+ #: admin/main-view.php:537
532
  #, fuzzy
533
  msgid "Post thumbnail meta field name:"
534
  msgstr "Opzioni miniature articolo:"
535
 
536
+ #: admin/main-view.php:539
537
  msgid ""
538
  "The value of this field should contain the image source and is set in the "
539
  "<em>Add New Post</em> screen"
540
  msgstr ""
541
 
542
+ #: admin/main-view.php:542
543
  msgid "Extract the first image from the post?"
544
  msgstr ""
545
 
546
+ #: admin/main-view.php:544
547
  msgid ""
548
  "This will only happen if there is no post thumbnail set and no image URL is "
549
  "specified in the meta field."
550
  msgstr ""
551
 
552
+ #: admin/main-view.php:547
553
  msgid "Use default thumbnail?"
554
  msgstr ""
555
 
556
+ #: admin/main-view.php:549
557
  #, fuzzy
558
  msgid ""
559
  "If checked, when no thumbnail is found, show a default one from the URL "
562
  "Se attiva, in assenza di miniatura ne mostrerà una predefinita da URL qui "
563
  "sotto. Se inattiva e senza miniatura, non verrà mostrata nessuna immagine."
564
 
565
+ #: admin/main-view.php:552
566
  #, fuzzy
567
  msgid "Default thumbnail:"
568
  msgstr "Opzioni impostate alle predefinite."
569
 
570
+ #: admin/main-view.php:555
571
  #, fuzzy
572
  msgid ""
573
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
579
  "meta. Qualora non fosse disponibile, mostrerà l'immagine predefinita come "
580
  "specificato qui sotto:"
581
 
582
+ #: admin/main-view.php:596
583
+ msgid ""
584
+ "Below options override the related posts settings for your blog feed. These "
585
+ "only apply if you have selected to add related posts to Feeds in the General "
586
+ "Options tab."
587
+ msgstr ""
588
+
589
+ #: admin/main-view.php:624
590
+ #, fuzzy
591
+ msgid "Maximum width of the thumbnail: "
592
+ msgstr "Opzioni miniature articolo:"
593
+
594
+ #: admin/main-view.php:627
595
+ #, fuzzy
596
+ msgid "Maximum height of the thumbnail: "
597
+ msgstr "Opzioni miniature articolo:"
598
+
599
+ #: admin/main-view.php:668
600
+ msgid "Use default style included in the plugin?"
601
+ msgstr ""
602
+
603
+ #: admin/main-view.php:671
604
+ msgid ""
605
+ "Contextual Related Posts includes a default style that makes your popular "
606
+ "posts list to look beautiful. Check the box above if you want to use this."
607
+ msgstr ""
608
+
609
+ #: admin/main-view.php:672
610
+ msgid ""
611
+ "Enabling this option will turn on the thumbnails and set their width and "
612
+ "height to 150px. It will also turn off the display of the author, excerpt "
613
+ "and date if already enabled. Disabling this option will not revert any "
614
+ "settings."
615
+ msgstr ""
616
+
617
+ #: admin/main-view.php:673
618
+ #, php-format
619
+ msgid ""
620
+ "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
621
+ msgstr ""
622
+
623
+ #: admin/main-view.php:676
624
+ msgid "Custom CSS to add to header:"
625
+ msgstr ""
626
+
627
+ #: admin/main-view.php:680
628
+ msgid ""
629
+ "Do not include <code>style</code> tags. Check out the <a href=\"http://"
630
+ "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
631
+ "\">FAQ</a> for available CSS classes to style."
632
+ msgstr ""
633
+
634
+ #: admin/main-view.php:710
635
+ #, fuzzy
636
+ msgid "Default Options"
637
+ msgstr "Opzioni impostate alle predefinite."
638
+
639
+ #: admin/main-view.php:710
640
+ msgid "Do you want to set options to Default?"
641
+ msgstr "Sei certo di volere impostare alle opzioni predefinite?"
642
+
643
+ #: admin/main-view.php:711
644
+ msgid "Recreate Index"
645
+ msgstr ""
646
+
647
+ #: admin/main-view.php:711
648
+ msgid "Are you sure you want to recreate the index?"
649
+ msgstr "Sei certo di volere ricreare l'indice?"
650
+
651
  #: admin/sidebar-view.php:20
652
  msgid "Support the development"
653
  msgstr "Sostieni lo sviluppo"
670
  msgid "Follow me"
671
  msgstr ""
672
 
673
+ #: admin/sidebar-view.php:53
674
  #, fuzzy
675
  msgid "Quick links"
676
  msgstr "Collegamenti veloci"
677
 
678
+ #: admin/sidebar-view.php:57
679
  #, fuzzy
680
  msgid "Contextual Related Posts plugin page"
681
  msgstr "Contextual Related Posts "
682
 
683
+ #: admin/sidebar-view.php:58
684
  msgid "FAQ"
685
  msgstr ""
686
 
687
+ #: admin/sidebar-view.php:60
688
  msgid "Reviews"
689
  msgstr ""
690
 
691
+ #: admin/sidebar-view.php:61
692
  msgid "Github repository"
693
  msgstr ""
694
 
695
+ #: admin/sidebar-view.php:62
696
  msgid "Other plugins"
697
  msgstr "Altri plugin"
698
 
699
+ #: admin/sidebar-view.php:63
700
  msgid "Ajay's blog"
701
  msgstr "Il blog di Ajay"
702
 
703
+ #: contextual-related-posts.php:250
704
  msgid " by "
705
  msgstr ""
706
 
707
+ #: contextual-related-posts.php:289
708
  #, php-format
709
  msgid "Powered by <a href=\"%s\" rel=\"nofollow\">Contextual Related Posts</a>"
710
  msgstr ""
711
 
712
+ #: contextual-related-posts.php:670
713
  #, fuzzy
714
  msgid "Related Posts [CRP]"
715
  msgstr "Related Posts"
716
 
717
+ #: contextual-related-posts.php:671
718
  #, fuzzy
719
  msgid "Display Related Posts"
720
  msgstr "Numero degli articoli più popolari da mostrare:"
721
 
722
+ #: contextual-related-posts.php:694
723
  #, fuzzy
724
  msgid "Title"
725
  msgstr "Titolo per gli articoli più popolari:"
726
 
727
+ #: contextual-related-posts.php:699
728
  #, fuzzy
729
  msgid "No. of posts"
730
  msgstr "Gli articoli più popolari"
731
 
732
+ #: contextual-related-posts.php:704
733
  #, fuzzy
734
  msgid " Show excerpt?"
735
  msgstr "Desideri mostrare gli estratti?"
736
 
737
+ #: contextual-related-posts.php:709
738
  #, fuzzy
739
  msgid " Show author?"
740
  msgstr "Invia la tua donazione all'autore di"
741
 
742
+ #: contextual-related-posts.php:714
743
  #, fuzzy
744
  msgid " Show date?"
745
  msgstr "Desideri mostrare gli estratti?"
746
 
747
+ #: contextual-related-posts.php:720
 
 
 
 
 
748
  #, fuzzy
749
  msgid "Thumbnails inline, before title"
750
  msgstr "Mostra gli articoli con le miniature inline prima del titolo"
751
 
752
+ #: contextual-related-posts.php:721
753
  #, fuzzy
754
  msgid "Thumbnails inline, after title"
755
  msgstr "Mostra gli articoli con le miniature inline dopo il titolo"
756
 
757
+ #: contextual-related-posts.php:722
758
  #, fuzzy
759
  msgid "Only thumbnails, no text"
760
  msgstr "Mostra le sole miniature, nessun testo"
761
 
762
+ #: contextual-related-posts.php:723
763
  #, fuzzy
764
  msgid "No thumbnails, only text."
765
  msgstr "Non mostrare le miniature, solo testo."
766
 
767
+ #: contextual-related-posts.php:728
768
  #, fuzzy
769
  msgid "Thumbnail height"
770
  msgstr "Opzioni miniature articolo:"
771
 
772
+ #: contextual-related-posts.php:733
773
  #, fuzzy
774
  msgid "Thumbnail width"
775
  msgstr "Opzioni miniature articolo:"
776
 
777
+ #: contextual-related-posts.php:897
778
  msgid "<h3>Related Posts:</h3>"
779
  msgstr "<h3>Related Posts:</h3>"
780
 
781
+ #: contextual-related-posts.php:899
782
  #, fuzzy
783
  msgid "No related posts found"
784
  msgstr "Non é stato trovato alcun articolo correlato"
785
 
786
+ #: contextual-related-posts.php:1211
787
+ msgid "thumb_timthumb argument has been deprecated"
788
+ msgstr ""
789
+
790
+ #: contextual-related-posts.php:1215
791
+ msgid "thumb_timthumb_q argument has been deprecated"
792
+ msgstr ""
793
+
794
+ #: contextual-related-posts.php:1219
795
+ msgid "filter argument has been deprecated"
796
+ msgstr ""
797
+
798
+ #~ msgid "Post thumbnail options:"
799
+ #~ msgstr "Opzioni miniature articolo:"
800
+
801
+ #, fuzzy
802
+ #~ msgid "Maximum width of the thumbnail:"
803
+ #~ msgstr "Opzioni miniature articolo:"
804
+
805
  #~ msgid "Powered by"
806
  #~ msgstr "Powered by"
807
 
languages/crp-lt_LT.mo CHANGED
Binary file
languages/crp-lt_LT.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-09-04 20:42-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
@@ -12,238 +12,231 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e;_c;__ngettext\n"
14
  "X-Poedit-Basepath: ../\n"
15
- "X-Generator: Poedit 1.6.9\n"
 
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin/admin.php:161
19
  msgid "Options saved successfully."
20
  msgstr "Opcijas veiksmīgi saglabāts."
21
 
22
- #: admin/admin.php:181
 
 
 
 
 
 
23
  msgid "Options set to Default."
24
  msgstr "Opcijas iestatīts uz Default."
25
 
26
- #: admin/admin.php:192
27
  msgid "Index recreated"
28
  msgstr "indekss pārbūvēts"
29
 
30
- #: admin/admin.php:209 admin/admin.php:419 admin/main-view.php:20
31
  msgid "Contextual Related Posts"
32
  msgstr "Konteksta Related Posts"
33
 
34
- #: admin/admin.php:210
35
  msgid "Related Posts"
36
  msgstr "Related Posts"
37
 
38
- #: admin/admin.php:321
39
  msgid "Settings"
40
  msgstr "iestatījumi"
41
 
42
- #: admin/admin.php:343 admin/sidebar-view.php:58
43
  msgid "Support"
44
  msgstr "atbalstīt"
45
 
46
- #: admin/admin.php:344
47
  msgid "Donate"
48
  msgstr "ziedot"
49
 
50
- #: admin/admin.php:345
51
  msgid "Contribute"
52
  msgstr ""
53
 
54
- #: admin/admin.php:361
55
  msgid "plugin settings page"
56
  msgstr "spraudnis iestatījumu lapa"
57
 
58
- #: admin/admin.php:395
59
  msgid ""
60
  "An error occurred clearing the cache. Please contact your site administrator."
61
  "\\n\\nError message:\\n"
62
  msgstr ""
63
 
64
- #: admin/admin.php:400
65
  msgid " cached row(s) cleared"
66
  msgstr ""
67
 
68
- #: admin/admin.php:446
69
  #, fuzzy
70
  msgid "Location of thumbnail:"
71
  msgstr "Настройки превью к записям:"
72
 
73
- #: admin/admin.php:448
74
  msgid ""
75
  "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
76
  "image will be used for the post. It will be resized to the thumbnail size "
77
  "set under Settings &raquo; Related Posts &raquo; Output Options"
78
  msgstr ""
79
 
80
- #: admin/admin.php:449
81
  msgid "The URL above is saved in the meta field: "
82
  msgstr ""
83
 
84
- #: admin/main-view.php:32 admin/main-view.php:51
85
  #, fuzzy
86
  msgid "General options"
87
  msgstr "Настройки сохранены."
88
 
89
- #: admin/main-view.php:33 admin/main-view.php:60
 
 
 
 
90
  msgid "Output options"
91
  msgstr "Izejas opcijas:"
92
 
93
- #: admin/main-view.php:34 admin/main-view.php:69
 
 
 
 
 
94
  msgid "Feed options"
95
  msgstr "Iespējas:"
96
 
97
- #: admin/main-view.php:35 admin/main-view.php:77
98
  msgid "Custom styles"
99
  msgstr ""
100
 
101
- #: admin/main-view.php:95
102
- msgid "Save Options"
103
- msgstr "Saglabāt opcijas"
104
-
105
- #: admin/main-view.php:96
106
- msgid "Default Options"
107
- msgstr "noklusējuma opcijas"
108
-
109
- #: admin/main-view.php:96
110
- msgid "Do you want to set options to Default?"
111
- msgstr "Vai jūs vēlaties, lai uzstādītu iespējas Default?"
112
-
113
- #: admin/main-view.php:97
114
- msgid "Recreate Index"
115
- msgstr ""
116
-
117
- #: admin/main-view.php:97
118
- msgid "Are you sure you want to recreate the index?"
119
- msgstr "Vai jūs tiešām vēlaties, lai atjaunotu indeksu?"
120
-
121
- #: admin/options-custom-styles.php:32
122
- msgid "Use default style included in the plugin?"
123
  msgstr ""
124
 
125
- #: admin/options-custom-styles.php:35
126
  msgid ""
127
- "Contextual Related Posts includes a default style that makes your popular "
128
- "posts list to look beautiful. Check the box above if you want to use this."
129
  msgstr ""
130
 
131
- #: admin/options-custom-styles.php:36
132
- msgid ""
133
- "Enabling this option will turn on the thumbnails and set their width and "
134
- "height to 150px. It will also turn off the display of the author, excerpt "
135
- "and date if already enabled. Disabling this option will not revert any "
136
- "settings."
137
  msgstr ""
138
 
139
- #: admin/options-custom-styles.php:39
140
- msgid "Custom CSS to add to header:"
141
- msgstr ""
142
 
143
- #: admin/options-custom-styles.php:43
144
- msgid ""
145
- "Do not include <code>style</code> tags. Check out the <a href=\"http://"
146
- "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
147
- "\">FAQ</a> for available CSS classes to style."
148
- msgstr ""
149
 
150
- #: admin/options-feed.php:32
151
- msgid ""
152
- "Below options override the related posts settings for your blog feed. These "
153
- "only apply if you have selected to add related posts to Feeds in the General "
154
- "Options tab."
155
  msgstr ""
156
 
157
- #: admin/options-feed.php:34 admin/options-genops.php:39
158
- msgid "Number of related posts to display: "
159
- msgstr "Skaits saistītus amatus, lai parādītu:"
160
-
161
- #: admin/options-feed.php:37 admin/options-output.php:52
162
- msgid "Show post excerpt in list?"
163
- msgstr "Rādīt post izvilkumu sarakstā?"
164
-
165
- #: admin/options-feed.php:40 admin/options-output.php:239
166
  #, fuzzy
167
- msgid "Location of post thumbnail:"
168
- msgstr "Настройки превью к записям:"
169
-
170
- #: admin/options-feed.php:44 admin/options-output.php:243
171
- msgid "Display thumbnails inline with posts, before title"
172
- msgstr "Rādīt skices ar ziņojumiem"
173
 
174
- #: admin/options-feed.php:48 admin/options-output.php:247
175
- msgid "Display thumbnails inline with posts, after title"
176
- msgstr "Rādīt sīktēlus saskaņā ar soobscheniyamiazat skicēm ar ziņojumiem"
177
 
178
- #: admin/options-feed.php:52 admin/options-output.php:251
179
- msgid "Display only thumbnails, no text"
180
- msgstr "Attēlotu tikai sīktēlus, teksts"
181
 
182
- #: admin/options-feed.php:56 admin/options-output.php:255
183
- msgid "Do not display thumbnails, only text."
184
- msgstr "Nerādīt sīktēlus, tikai tekstu."
185
 
186
- #: admin/options-feed.php:60
187
  #, fuzzy
188
- msgid "Maximum width of the thumbnail: "
189
- msgstr "Настройки превью к записям:"
190
 
191
- #: admin/options-feed.php:63 admin/options-output.php:270
192
  #, fuzzy
193
- msgid "Maximum height of the thumbnail: "
194
- msgstr "Настройки превью к записям:"
 
 
 
 
 
 
195
 
196
- #: admin/options-genops.php:32
197
- msgid "Cache output?"
198
  msgstr ""
199
 
200
- #: admin/options-genops.php:34
201
  msgid ""
202
- "Enabling this option will cache the related posts output when the post is "
203
- "visited the first time. The cache is cleaned when you save this page."
204
  msgstr ""
205
 
206
- #: admin/options-genops.php:35
207
- msgid "Clear cache"
 
 
 
 
 
208
  msgstr ""
209
 
210
- #: admin/options-genops.php:42
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
211
  msgid ""
212
  "Maximum number of posts that will be displayed. The actual number may be "
213
  "smaller if less related posts are found."
214
  msgstr ""
215
 
216
- #: admin/options-genops.php:46
217
  msgid "Related posts should be newer than:"
218
  msgstr ""
219
 
220
- #: admin/options-genops.php:48
221
  #, fuzzy
222
  msgid "days"
223
  msgstr ""
224
  "За сколько дней считать просмотры для списка Популярных сегодня записей?"
225
 
226
- #: admin/options-genops.php:49
227
  msgid ""
228
  "This sets the cutoff period for which posts will be displayed. e.g. setting "
229
- "it to 365 will show related posts from the last year only."
230
- msgstr ""
231
-
232
- #: admin/options-genops.php:53
233
- #, fuzzy
234
- msgid "Post types to include in results:"
235
- msgstr "Исключить рубрики:"
236
-
237
- #: admin/options-genops.php:64
238
- msgid ""
239
- "These post types will be displayed in the list. Includes custom post types."
240
  msgstr ""
241
 
242
- #: admin/options-genops.php:68
243
  msgid "Find related posts based on content as well as title:"
244
  msgstr ""
245
 
246
- #: admin/options-genops.php:70
247
  #, fuzzy
248
  msgid ""
249
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
@@ -252,113 +245,77 @@ msgstr ""
252
  "Ja nekontrolēti, tikai amati nosaukumi tiek izmantoti. (Es ieteiktu izmantot "
253
  "caching spraudnis, ja aktivizēsiet šo)"
254
 
255
- #: admin/options-genops.php:74
256
  msgid "Limit content to be compared"
257
  msgstr ""
258
 
259
- #: admin/options-genops.php:76
260
  msgid ""
261
  "This sets the maximum words of the content that will be matched. 0 means no "
262
  "limit."
263
  msgstr ""
264
 
265
- #: admin/options-genops.php:80
266
- msgid "Add related posts to:"
267
- msgstr "Pievienot saistītus amatus barībā"
268
-
269
- #: admin/options-genops.php:82
270
  #, fuzzy
271
- msgid "Posts"
272
- msgstr "Популярные записи"
273
-
274
- #: admin/options-genops.php:83
275
- msgid "Pages"
276
- msgstr ""
277
-
278
- #: admin/options-genops.php:84
279
- #, fuzzy
280
- msgid "Home page"
281
- msgstr "Результатов на страницу:"
282
-
283
- #: admin/options-genops.php:85
284
- msgid "Feeds"
285
- msgstr ""
286
-
287
- #: admin/options-genops.php:86
288
- msgid "Category archives"
289
- msgstr ""
290
-
291
- #: admin/options-genops.php:87
292
- msgid "Tag archives"
293
- msgstr ""
294
-
295
- #: admin/options-genops.php:88
296
- #, fuzzy
297
- msgid "Other archives"
298
- msgstr "Другие плагины автора"
299
 
300
- #: admin/options-genops.php:89
301
- #, fuzzy
302
  msgid ""
303
- "If you choose to disable this, please add <code>&lt;?php if "
304
- "( function_exists( 'echo_ald_crp' ) ) echo_ald_crp(); ?&gt;</code> to your "
305
- "template file where you want it displayed"
306
  msgstr ""
307
- "Ja vēlaties atslēgt šo, lūdzu, pievienojiet <code> <php if (function_exists "
308
- "(\"echo_ald_crp\")) echo_ald_crp ();?> </ Code>, lai jūsu veidnes failu, kur "
309
- "vēlaties to parādīt"
310
 
311
- #: admin/options-genops.php:93
312
- msgid "Content filter priority:"
313
- msgstr ""
 
314
 
315
- #: admin/options-genops.php:96
316
  msgid ""
317
- "A higher number will cause the content above to be processed after other "
318
- "filters. Number below 10 is not recommended."
319
  msgstr ""
320
 
321
- #: admin/options-genops.php:100
322
  #, fuzzy
323
- msgid "Tell the world you're using Contextual Related Posts:"
324
- msgstr "Konteksta Related Posts"
325
-
326
- #: admin/options-genops.php:102
327
- msgid " <em>Optional</em>"
328
- msgstr ""
329
 
330
- #: admin/options-genops.php:103
331
- #, fuzzy
332
  msgid ""
333
- "Adds a nofollow link to Contextual Related Posts homepage as the last time "
334
- "in the list."
335
- msgstr "Konteksta saistītus amatus"
 
336
 
337
- #: admin/options-output.php:32
338
  msgid "Title of related posts: "
339
  msgstr "Nosaukums saistītus amatus:"
340
 
341
- #: admin/options-output.php:35
342
  msgid ""
343
  "This is the main heading of the related posts. You can also display the "
344
  "current post title by using <code>%postname%</code>. e.g. <code>Related "
345
  "Posts to %postname%</code>"
346
  msgstr ""
347
 
348
- #: admin/options-output.php:39
349
  msgid "When there are no posts, what should be shown?"
350
  msgstr "Ja nav amati, kas būtu redzams?"
351
 
352
- #: admin/options-output.php:43
353
  msgid "Blank Output"
354
  msgstr "tukša izeja"
355
 
356
- #: admin/options-output.php:47
357
  #, fuzzy
358
  msgid "Display:"
359
  msgstr "Количество Популярных записей в списке:"
360
 
361
- #: admin/options-output.php:55
 
 
 
 
362
  #, php-format
363
  msgid ""
364
  "Displays the excerpt of the post. If you do not provide an explicit excerpt "
@@ -366,215 +323,225 @@ msgid ""
366
  "automatic excerpt which refers to the first %d words of the post's content"
367
  msgstr ""
368
 
369
- #: admin/options-output.php:59
 
 
 
 
 
370
  msgid "Length of excerpt (in words): "
371
  msgstr "Garums izrakstā (vārdiem)"
372
 
373
- #: admin/options-output.php:65
374
  #, fuzzy
375
  msgid "Show post author in list?"
376
  msgstr "Показывать текст записи в списке?"
377
 
378
- #: admin/options-output.php:68
379
  msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
380
  msgstr ""
381
 
382
- #: admin/options-output.php:72
 
 
 
 
 
383
  #, fuzzy
384
  msgid "Show post date in list?"
385
  msgstr "Показывать текст записи в списке?"
386
 
387
- #: admin/options-output.php:75
388
  msgid ""
389
  "Displays the date of the post. Uses the same date format set in General "
390
  "Options"
391
  msgstr ""
392
 
393
- #: admin/options-output.php:79
 
 
 
 
 
394
  msgid "Limit post title length (in characters)"
395
  msgstr ""
396
 
397
- #: admin/options-output.php:82
398
  msgid ""
399
  "Any title longer than the number of characters set above will be cut and "
400
  "appended with a &helip;"
401
  msgstr ""
402
 
403
- #: admin/options-output.php:86
404
  msgid "Open links in new window"
405
  msgstr ""
406
 
407
- #: admin/options-output.php:92
408
  msgid "Add nofollow attribute to links in the list"
409
  msgstr ""
410
 
411
- #: admin/options-output.php:125
412
  #, fuzzy
413
  msgid "Exclusion settings:"
414
  msgstr "spraudnis iestatījumu lapa"
415
 
416
- #: admin/options-output.php:127
417
- #, fuzzy
418
- msgid "List of post or page IDs to exclude from the results:"
419
- msgstr "Исключить рубрики:"
420
-
421
- #: admin/options-output.php:129 admin/options-output.php:135
422
- msgid ""
423
- "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
424
- msgstr ""
425
-
426
- #: admin/options-output.php:132
427
  msgid "Exclude display of related posts on these posts / pages"
428
  msgstr "Pievienot saistītus amatus barībā"
429
 
430
- #: admin/options-output.php:138
431
- #, fuzzy
432
- msgid "Categories to exclude from the results: "
433
- msgstr "Исключить рубрики:"
434
-
435
- #: admin/options-output.php:154
436
- msgid ""
437
- "Comma separated list of category slugs. The field above has an autocomplete "
438
- "so simply start typing in the beginning of your category name and it will "
439
- "prompt you with options."
440
- msgstr ""
441
-
442
- #: admin/options-output.php:157
443
  #, fuzzy
444
  msgid "Exclude display of related posts on these post types."
445
  msgstr "Pievienot saistītus amatus barībā"
446
 
447
- #: admin/options-output.php:166
448
  msgid ""
449
  "The related posts will not display on any of the above selected post types"
450
  msgstr ""
451
 
452
- #: admin/options-output.php:196
453
  msgid "Customize the output:"
454
  msgstr "Pielāgot izejas:"
455
 
456
- #: admin/options-output.php:198
457
  msgid "HTML to display before the list of posts: "
458
  msgstr "HTML, lai parādītu, pirms amatu sarakstu:"
459
 
460
- #: admin/options-output.php:201
461
  msgid "HTML to display before each list item: "
462
  msgstr "HTML, lai parādītu pirms katras saraksta elementa:"
463
 
464
- #: admin/options-output.php:204
465
  msgid "HTML to display after each list item: "
466
  msgstr "HTML, lai parādītu pēc katra saraksta elementa:"
467
 
468
- #: admin/options-output.php:207
469
  msgid "HTML to display after the list of posts: "
470
  msgstr "HTML, lai parādītu pēc amatu sarakstā:"
471
 
472
- #: admin/options-output.php:237
473
- msgid "Post thumbnail options:"
474
- msgstr "Post sīktēlu iespējas:"
 
475
 
476
- #: admin/options-output.php:261
477
- msgid ""
478
- "Contextual Related Posts adds a new image size with the below dimensions."
479
- msgstr ""
480
 
481
- #: admin/options-output.php:262
 
 
 
 
 
 
 
 
 
 
 
 
482
  msgid ""
483
- "If you change the width and/or height below, existing images will not be "
484
- "automatically resized."
485
  msgstr ""
486
 
487
- #: admin/options-output.php:263
488
- #, php-format
489
- msgid ""
490
- "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
491
- "a> to regenerate all image sizes."
492
  msgstr ""
493
 
494
- #: admin/options-output.php:267
495
- #, fuzzy
496
- msgid "Maximum width of the thumbnail:"
497
- msgstr "Настройки превью к записям:"
498
 
499
- #: admin/options-output.php:274
500
  msgid ""
501
- "Since you're using the default styles set under the Custom Styles section, "
502
- "the width and height is fixed at 150px"
 
503
  msgstr ""
504
 
505
- #: admin/options-output.php:278
506
- msgid "Crop mode:"
 
 
507
  msgstr ""
508
 
509
- #: admin/options-output.php:282
 
510
  msgid ""
511
- "By default, thumbnails will be proportionately cropped. Check this box to "
512
- "hard crop the thumbnails."
 
513
  msgstr ""
514
 
515
- #: admin/options-output.php:283
516
- #, php-format
517
- msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
518
  msgstr ""
519
 
520
- #: admin/options-output.php:287
521
- msgid "Style attributes / Width and Height HTML attributes:"
522
  msgstr ""
523
 
524
- #: admin/options-output.php:291
525
- msgid "Style attributes are used for width and height."
526
  msgstr ""
527
 
528
- #: admin/options-output.php:295
529
- msgid "HTML width and height attributes are used for width and height."
 
 
530
  msgstr ""
531
 
532
- #: admin/options-output.php:299
533
- msgid "Use timthumb to generate thumbnails? "
 
534
  msgstr ""
535
 
536
- #: admin/options-output.php:301
537
  msgid ""
538
- "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
539
- "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
540
  msgstr ""
541
 
542
- #: admin/options-output.php:304
543
- msgid "Quality of thumbnails generated by timthumb:"
544
  msgstr ""
545
 
546
- #: admin/options-output.php:307
547
- msgid ""
548
- "Enter values between 0 and 100 only. 100 is highest quality and the highest "
549
- "file size. Suggested maximum value is 95. CRP default is 75."
550
  msgstr ""
551
 
552
- #: admin/options-output.php:310
 
 
 
 
553
  #, fuzzy
554
  msgid "Post thumbnail meta field name:"
555
  msgstr "Attēlu rīki post:"
556
 
557
- #: admin/options-output.php:312
558
  msgid ""
559
  "The value of this field should contain the image source and is set in the "
560
  "<em>Add New Post</em> screen"
561
  msgstr ""
562
 
563
- #: admin/options-output.php:315
564
  msgid "Extract the first image from the post?"
565
  msgstr ""
566
 
567
- #: admin/options-output.php:317
568
  msgid ""
569
  "This will only happen if there is no post thumbnail set and no image URL is "
570
  "specified in the meta field."
571
  msgstr ""
572
 
573
- #: admin/options-output.php:320
574
  msgid "Use default thumbnail?"
575
  msgstr ""
576
 
577
- #: admin/options-output.php:322
578
  #, fuzzy
579
  msgid ""
580
  "If checked, when no thumbnail is found, show a default one from the URL "
@@ -584,12 +551,12 @@ msgstr ""
584
  "добавлено стандартное изображение. Если превью задано к записи - будет "
585
  "отображаться только оно."
586
 
587
- #: admin/options-output.php:325
588
  #, fuzzy
589
  msgid "Default thumbnail:"
590
  msgstr "noklusējuma opcijas"
591
 
592
- #: admin/options-output.php:328
593
  #, fuzzy
594
  msgid ""
595
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -600,6 +567,74 @@ msgstr ""
600
  "būs pārbaudīt meta laukā. Ja šāda informācija nav pieejama, tad tas rādīs "
601
  "noklusējuma attēlu, kā minēts iepriekš"
602
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
603
  #: admin/sidebar-view.php:20
604
  msgid "Support the development"
605
  msgstr "Atbalstīt"
@@ -622,113 +657,128 @@ msgstr "Sūtiet savu ziedojumu autoram"
622
  msgid "Follow me"
623
  msgstr ""
624
 
625
- #: admin/sidebar-view.php:52
626
  #, fuzzy
627
  msgid "Quick links"
628
  msgstr "Ātrās saites"
629
 
630
- #: admin/sidebar-view.php:56
631
  msgid "Contextual Related Posts plugin page"
632
  msgstr "Konteksta saistītus amatus"
633
 
634
- #: admin/sidebar-view.php:57
635
  msgid "FAQ"
636
  msgstr ""
637
 
638
- #: admin/sidebar-view.php:59
639
  msgid "Reviews"
640
  msgstr ""
641
 
642
- #: admin/sidebar-view.php:60
643
  msgid "Github repository"
644
  msgstr ""
645
 
646
- #: admin/sidebar-view.php:61
647
  msgid "Other plugins"
648
  msgstr "citas plugins"
649
 
650
- #: admin/sidebar-view.php:62
651
  msgid "Ajay's blog"
652
  msgstr "Ajay blogs"
653
 
654
- #: contextual-related-posts.php:246
655
  msgid " by "
656
  msgstr ""
657
 
658
- #: contextual-related-posts.php:285
659
  #, php-format
660
  msgid "Powered by <a href=\"%s\" rel=\"nofollow\">Contextual Related Posts</a>"
661
  msgstr ""
662
 
663
- #: contextual-related-posts.php:596
664
  #, fuzzy
665
  msgid "Related Posts [CRP]"
666
  msgstr "Related Posts"
667
 
668
- #: contextual-related-posts.php:597
669
  msgid "Display Related Posts"
670
  msgstr "Displeja Related Posts"
671
 
672
- #: contextual-related-posts.php:620
673
  #, fuzzy
674
  msgid "Title"
675
  msgstr "Заголовок списка Популярных записей:"
676
 
677
- #: contextual-related-posts.php:625
678
  #, fuzzy
679
  msgid "No. of posts"
680
  msgstr "Популярные записи"
681
 
682
- #: contextual-related-posts.php:630
683
  msgid " Show excerpt?"
684
  msgstr "Rādīt izvilkumu?"
685
 
686
- #: contextual-related-posts.php:635
687
  #, fuzzy
688
  msgid " Show author?"
689
  msgstr "Отправьте пожертвование автору"
690
 
691
- #: contextual-related-posts.php:640
692
  #, fuzzy
693
  msgid " Show date?"
694
  msgstr "Показывать текст записи в списке?"
695
 
696
- #: contextual-related-posts.php:644
697
- msgid "Thumbnail options"
698
- msgstr "sīktēlu iespējas"
699
-
700
- #: contextual-related-posts.php:646
701
  msgid "Thumbnails inline, before title"
702
  msgstr "Sīktēli inline, pirms virsraksta"
703
 
704
- #: contextual-related-posts.php:647
705
  msgid "Thumbnails inline, after title"
706
  msgstr "Sīktēli inline, pēc nosaukuma"
707
 
708
- #: contextual-related-posts.php:648
709
  msgid "Only thumbnails, no text"
710
  msgstr "Tikai sīktēlus, bez teksta"
711
 
712
- #: contextual-related-posts.php:649
713
  msgid "No thumbnails, only text."
714
  msgstr "Nav sīktēlus, tikai tekstu."
715
 
716
- #: contextual-related-posts.php:654
717
  msgid "Thumbnail height"
718
  msgstr "sīktēls augstums"
719
 
720
- #: contextual-related-posts.php:659
721
  msgid "Thumbnail width"
722
  msgstr "Thumbnail platums"
723
 
724
- #: contextual-related-posts.php:799
725
  msgid "<h3>Related Posts:</h3>"
726
  msgstr "<h3>saistīta posts:</h3>"
727
 
728
- #: contextual-related-posts.php:801
729
  msgid "No related posts found"
730
  msgstr "Nr saistītus amatus atrasts"
731
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
732
  #~ msgid "Powered by"
733
  #~ msgstr "Powered by"
734
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-05-09 22:20-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e;_c;__ngettext\n"
14
  "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.7.1\n"
16
+ "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: admin/admin.php:166
20
  msgid "Options saved successfully."
21
  msgstr "Opcijas veiksmīgi saglabāts."
22
 
23
+ #: admin/admin.php:169
24
+ msgid ""
25
+ "Default styles selected. Thumbnail width, height and crop settings have been "
26
+ "fixed. Author, Excerpt and Date will not be displayed."
27
+ msgstr ""
28
+
29
+ #: admin/admin.php:194
30
  msgid "Options set to Default."
31
  msgstr "Opcijas iestatīts uz Default."
32
 
33
+ #: admin/admin.php:205
34
  msgid "Index recreated"
35
  msgstr "indekss pārbūvēts"
36
 
37
+ #: admin/admin.php:222 admin/admin.php:453 admin/main-view.php:20
38
  msgid "Contextual Related Posts"
39
  msgstr "Konteksta Related Posts"
40
 
41
+ #: admin/admin.php:223
42
  msgid "Related Posts"
43
  msgstr "Related Posts"
44
 
45
+ #: admin/admin.php:338
46
  msgid "Settings"
47
  msgstr "iestatījumi"
48
 
49
+ #: admin/admin.php:360 admin/sidebar-view.php:59
50
  msgid "Support"
51
  msgstr "atbalstīt"
52
 
53
+ #: admin/admin.php:361
54
  msgid "Donate"
55
  msgstr "ziedot"
56
 
57
+ #: admin/admin.php:362
58
  msgid "Contribute"
59
  msgstr ""
60
 
61
+ #: admin/admin.php:378
62
  msgid "plugin settings page"
63
  msgstr "spraudnis iestatījumu lapa"
64
 
65
+ #: admin/admin.php:422
66
  msgid ""
67
  "An error occurred clearing the cache. Please contact your site administrator."
68
  "\\n\\nError message:\\n"
69
  msgstr ""
70
 
71
+ #: admin/admin.php:427
72
  msgid " cached row(s) cleared"
73
  msgstr ""
74
 
75
+ #: admin/admin.php:480
76
  #, fuzzy
77
  msgid "Location of thumbnail:"
78
  msgstr "Настройки превью к записям:"
79
 
80
+ #: admin/admin.php:482
81
  msgid ""
82
  "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
83
  "image will be used for the post. It will be resized to the thumbnail size "
84
  "set under Settings &raquo; Related Posts &raquo; Output Options"
85
  msgstr ""
86
 
87
+ #: admin/admin.php:483
88
  msgid "The URL above is saved in the meta field: "
89
  msgstr ""
90
 
91
+ #: admin/main-view.php:32 admin/main-view.php:54
92
  #, fuzzy
93
  msgid "General options"
94
  msgstr "Настройки сохранены."
95
 
96
+ #: admin/main-view.php:33 admin/main-view.php:125
97
+ msgid "List tuning options"
98
+ msgstr ""
99
+
100
+ #: admin/main-view.php:34 admin/main-view.php:229
101
  msgid "Output options"
102
  msgstr "Izejas opcijas:"
103
 
104
+ #: admin/main-view.php:35 admin/main-view.php:433
105
+ #: contextual-related-posts.php:718
106
+ msgid "Thumbnail options"
107
+ msgstr "sīktēlu iespējas"
108
+
109
+ #: admin/main-view.php:36 admin/main-view.php:580
110
  msgid "Feed options"
111
  msgstr "Iespējas:"
112
 
113
+ #: admin/main-view.php:37 admin/main-view.php:652
114
  msgid "Custom styles"
115
  msgstr ""
116
 
117
+ #: admin/main-view.php:70
118
+ msgid "Cache output?"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
119
  msgstr ""
120
 
121
+ #: admin/main-view.php:72
122
  msgid ""
123
+ "Enabling this option will cache the related posts output when the post is "
124
+ "visited the first time. The cache is cleaned when you save this page."
125
  msgstr ""
126
 
127
+ #: admin/main-view.php:73
128
+ msgid "Clear cache"
 
 
 
 
129
  msgstr ""
130
 
131
+ #: admin/main-view.php:77
132
+ msgid "Add related posts to:"
133
+ msgstr "Pievienot saistītus amatus barībā"
134
 
135
+ #: admin/main-view.php:79
136
+ #, fuzzy
137
+ msgid "Posts"
138
+ msgstr "Популярные записи"
 
 
139
 
140
+ #: admin/main-view.php:80
141
+ msgid "Pages"
 
 
 
142
  msgstr ""
143
 
144
+ #: admin/main-view.php:81
 
 
 
 
 
 
 
 
145
  #, fuzzy
146
+ msgid "Home page"
147
+ msgstr "Результатов на страницу:"
 
 
 
 
148
 
149
+ #: admin/main-view.php:82
150
+ msgid "Feeds"
151
+ msgstr ""
152
 
153
+ #: admin/main-view.php:83
154
+ msgid "Category archives"
155
+ msgstr ""
156
 
157
+ #: admin/main-view.php:84
158
+ msgid "Tag archives"
159
+ msgstr ""
160
 
161
+ #: admin/main-view.php:85
162
  #, fuzzy
163
+ msgid "Other archives"
164
+ msgstr "Другие плагины автора"
165
 
166
+ #: admin/main-view.php:86
167
  #, fuzzy
168
+ msgid ""
169
+ "If you choose to disable this, please add <code>&lt;?php if "
170
+ "( function_exists( 'echo_ald_crp' ) ) echo_ald_crp(); ?&gt;</code> to your "
171
+ "template file where you want it displayed"
172
+ msgstr ""
173
+ "Ja vēlaties atslēgt šo, lūdzu, pievienojiet <code> <php if (function_exists "
174
+ "(\"echo_ald_crp\")) echo_ald_crp ();?> </ Code>, lai jūsu veidnes failu, kur "
175
+ "vēlaties to parādīt"
176
 
177
+ #: admin/main-view.php:90
178
+ msgid "Content filter priority:"
179
  msgstr ""
180
 
181
+ #: admin/main-view.php:93
182
  msgid ""
183
+ "A higher number will cause the content above to be processed after other "
184
+ "filters. Number below 10 is not recommended."
185
  msgstr ""
186
 
187
+ #: admin/main-view.php:97
188
+ #, fuzzy
189
+ msgid "Tell the world you're using Contextual Related Posts:"
190
+ msgstr "Konteksta Related Posts"
191
+
192
+ #: admin/main-view.php:99
193
+ msgid " <em>Optional</em>"
194
  msgstr ""
195
 
196
+ #: admin/main-view.php:100
197
+ #, fuzzy
198
+ msgid ""
199
+ "Adds a nofollow link to Contextual Related Posts homepage as the last time "
200
+ "in the list."
201
+ msgstr "Konteksta saistītus amatus"
202
+
203
+ #: admin/main-view.php:118 admin/main-view.php:222 admin/main-view.php:426
204
+ #: admin/main-view.php:573 admin/main-view.php:645 admin/main-view.php:709
205
+ msgid "Save Options"
206
+ msgstr "Saglabāt opcijas"
207
+
208
+ #: admin/main-view.php:141 admin/main-view.php:598
209
+ msgid "Number of related posts to display: "
210
+ msgstr "Skaits saistītus amatus, lai parādītu:"
211
+
212
+ #: admin/main-view.php:144
213
  msgid ""
214
  "Maximum number of posts that will be displayed. The actual number may be "
215
  "smaller if less related posts are found."
216
  msgstr ""
217
 
218
+ #: admin/main-view.php:148
219
  msgid "Related posts should be newer than:"
220
  msgstr ""
221
 
222
+ #: admin/main-view.php:150
223
  #, fuzzy
224
  msgid "days"
225
  msgstr ""
226
  "За сколько дней считать просмотры для списка Популярных сегодня записей?"
227
 
228
+ #: admin/main-view.php:151
229
  msgid ""
230
  "This sets the cutoff period for which posts will be displayed. e.g. setting "
231
+ "it to 365 will show related posts from the last year only. Set it to 0 to "
232
+ "disable limiting posts."
 
 
 
 
 
 
 
 
 
233
  msgstr ""
234
 
235
+ #: admin/main-view.php:155
236
  msgid "Find related posts based on content as well as title:"
237
  msgstr ""
238
 
239
+ #: admin/main-view.php:157
240
  #, fuzzy
241
  msgid ""
242
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
245
  "Ja nekontrolēti, tikai amati nosaukumi tiek izmantoti. (Es ieteiktu izmantot "
246
  "caching spraudnis, ja aktivizēsiet šo)"
247
 
248
+ #: admin/main-view.php:161
249
  msgid "Limit content to be compared"
250
  msgstr ""
251
 
252
+ #: admin/main-view.php:163
253
  msgid ""
254
  "This sets the maximum words of the content that will be matched. 0 means no "
255
  "limit."
256
  msgstr ""
257
 
258
+ #: admin/main-view.php:167
 
 
 
 
259
  #, fuzzy
260
+ msgid "Post types to include in results:"
261
+ msgstr "Исключить рубрики:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
262
 
263
+ #: admin/main-view.php:178
 
264
  msgid ""
265
+ "These post types will be displayed in the list. Includes custom post types."
 
 
266
  msgstr ""
 
 
 
267
 
268
+ #: admin/main-view.php:182
269
+ #, fuzzy
270
+ msgid "List of post or page IDs to exclude from the results:"
271
+ msgstr "Исключить рубрики:"
272
 
273
+ #: admin/main-view.php:184 admin/main-view.php:355
274
  msgid ""
275
+ "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
 
276
  msgstr ""
277
 
278
+ #: admin/main-view.php:188
279
  #, fuzzy
280
+ msgid "Categories to exclude from the results: "
281
+ msgstr "Исключить рубрики:"
 
 
 
 
282
 
283
+ #: admin/main-view.php:204
 
284
  msgid ""
285
+ "Comma separated list of category slugs. The field above has an autocomplete "
286
+ "so simply start typing in the beginning of your category name and it will "
287
+ "prompt you with options."
288
+ msgstr ""
289
 
290
+ #: admin/main-view.php:245
291
  msgid "Title of related posts: "
292
  msgstr "Nosaukums saistītus amatus:"
293
 
294
+ #: admin/main-view.php:248
295
  msgid ""
296
  "This is the main heading of the related posts. You can also display the "
297
  "current post title by using <code>%postname%</code>. e.g. <code>Related "
298
  "Posts to %postname%</code>"
299
  msgstr ""
300
 
301
+ #: admin/main-view.php:252
302
  msgid "When there are no posts, what should be shown?"
303
  msgstr "Ja nav amati, kas būtu redzams?"
304
 
305
+ #: admin/main-view.php:256
306
  msgid "Blank Output"
307
  msgstr "tukša izeja"
308
 
309
+ #: admin/main-view.php:260
310
  #, fuzzy
311
  msgid "Display:"
312
  msgstr "Количество Популярных записей в списке:"
313
 
314
+ #: admin/main-view.php:265 admin/main-view.php:601
315
+ msgid "Show post excerpt in list?"
316
+ msgstr "Rādīt post izvilkumu sarakstā?"
317
+
318
+ #: admin/main-view.php:268
319
  #, php-format
320
  msgid ""
321
  "Displays the excerpt of the post. If you do not provide an explicit excerpt "
323
  "automatic excerpt which refers to the first %d words of the post's content"
324
  msgstr ""
325
 
326
+ #: admin/main-view.php:271
327
+ msgid ""
328
+ "Default style selected under the Custom Styles. Excerpt display is disabled."
329
+ msgstr ""
330
+
331
+ #: admin/main-view.php:276
332
  msgid "Length of excerpt (in words): "
333
  msgstr "Garums izrakstā (vārdiem)"
334
 
335
+ #: admin/main-view.php:282
336
  #, fuzzy
337
  msgid "Show post author in list?"
338
  msgstr "Показывать текст записи в списке?"
339
 
340
+ #: admin/main-view.php:285
341
  msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
342
  msgstr ""
343
 
344
+ #: admin/main-view.php:288
345
+ msgid ""
346
+ "Default style selected under the Custom Styles. Author display is disabled."
347
+ msgstr ""
348
+
349
+ #: admin/main-view.php:293
350
  #, fuzzy
351
  msgid "Show post date in list?"
352
  msgstr "Показывать текст записи в списке?"
353
 
354
+ #: admin/main-view.php:296
355
  msgid ""
356
  "Displays the date of the post. Uses the same date format set in General "
357
  "Options"
358
  msgstr ""
359
 
360
+ #: admin/main-view.php:299
361
+ msgid ""
362
+ "Default style selected under the Custom Styles. Date display is disabled."
363
+ msgstr ""
364
+
365
+ #: admin/main-view.php:304
366
  msgid "Limit post title length (in characters)"
367
  msgstr ""
368
 
369
+ #: admin/main-view.php:307
370
  msgid ""
371
  "Any title longer than the number of characters set above will be cut and "
372
  "appended with a &helip;"
373
  msgstr ""
374
 
375
+ #: admin/main-view.php:311
376
  msgid "Open links in new window"
377
  msgstr ""
378
 
379
+ #: admin/main-view.php:317
380
  msgid "Add nofollow attribute to links in the list"
381
  msgstr ""
382
 
383
+ #: admin/main-view.php:350
384
  #, fuzzy
385
  msgid "Exclusion settings:"
386
  msgstr "spraudnis iestatījumu lapa"
387
 
388
+ #: admin/main-view.php:352
 
 
 
 
 
 
 
 
 
 
389
  msgid "Exclude display of related posts on these posts / pages"
390
  msgstr "Pievienot saistītus amatus barībā"
391
 
392
+ #: admin/main-view.php:358
 
 
 
 
 
 
 
 
 
 
 
 
393
  #, fuzzy
394
  msgid "Exclude display of related posts on these post types."
395
  msgstr "Pievienot saistītus amatus barībā"
396
 
397
+ #: admin/main-view.php:367
398
  msgid ""
399
  "The related posts will not display on any of the above selected post types"
400
  msgstr ""
401
 
402
+ #: admin/main-view.php:397
403
  msgid "Customize the output:"
404
  msgstr "Pielāgot izejas:"
405
 
406
+ #: admin/main-view.php:399
407
  msgid "HTML to display before the list of posts: "
408
  msgstr "HTML, lai parādītu, pirms amatu sarakstu:"
409
 
410
+ #: admin/main-view.php:402
411
  msgid "HTML to display before each list item: "
412
  msgstr "HTML, lai parādītu pirms katras saraksta elementa:"
413
 
414
+ #: admin/main-view.php:405
415
  msgid "HTML to display after each list item: "
416
  msgstr "HTML, lai parādītu pēc katra saraksta elementa:"
417
 
418
+ #: admin/main-view.php:408
419
  msgid "HTML to display after the list of posts: "
420
  msgstr "HTML, lai parādītu pēc amatu sarakstā:"
421
 
422
+ #: admin/main-view.php:449 admin/main-view.php:604
423
+ #, fuzzy
424
+ msgid "Location of post thumbnail:"
425
+ msgstr "Настройки превью к записям:"
426
 
427
+ #: admin/main-view.php:453 admin/main-view.php:608
428
+ msgid "Display thumbnails inline with posts, before title"
429
+ msgstr "Rādīt skices ar ziņojumiem"
 
430
 
431
+ #: admin/main-view.php:457 admin/main-view.php:612
432
+ msgid "Display thumbnails inline with posts, after title"
433
+ msgstr "Rādīt sīktēlus saskaņā ar soobscheniyamiazat skicēm ar ziņojumiem"
434
+
435
+ #: admin/main-view.php:461 admin/main-view.php:616
436
+ msgid "Display only thumbnails, no text"
437
+ msgstr "Attēlotu tikai sīktēlus, teksts"
438
+
439
+ #: admin/main-view.php:465 admin/main-view.php:620
440
+ msgid "Do not display thumbnails, only text."
441
+ msgstr "Nerādīt sīktēlus, tikai tekstu."
442
+
443
+ #: admin/main-view.php:468
444
  msgid ""
445
+ "Default style selected under the Custom Styles. Location of thumbnail forced "
446
+ "to be inline before title"
447
  msgstr ""
448
 
449
+ #: admin/main-view.php:472
450
+ msgid "Thumbnail size:"
 
 
 
451
  msgstr ""
452
 
453
+ #: admin/main-view.php:496
454
+ msgid "Custom size"
455
+ msgstr ""
 
456
 
457
+ #: admin/main-view.php:499
458
  msgid ""
459
+ "You can choose from existing image sizes above or create a custom size. If "
460
+ "you have chosen Custom size above, then enter the width, height and crop "
461
+ "settings below. For best results, use a cropped image."
462
  msgstr ""
463
 
464
+ #: admin/main-view.php:500
465
+ msgid ""
466
+ "If you change the width, height or crop mode below, existing images will not "
467
+ "be automatically resized."
468
  msgstr ""
469
 
470
+ #: admin/main-view.php:501
471
+ #, php-format
472
  msgid ""
473
+ "I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
474
+ "a> or <a href='%s' class='thickbox'>Regenerate Thumbnails</a> to regenerate "
475
+ "all image sizes."
476
  msgstr ""
477
 
478
+ #: admin/main-view.php:505
479
+ msgid "Width of the thumbnail:"
 
480
  msgstr ""
481
 
482
+ #: admin/main-view.php:508
483
+ msgid "Height of the thumbnail: "
484
  msgstr ""
485
 
486
+ #: admin/main-view.php:513
487
+ msgid "Crop mode:"
488
  msgstr ""
489
 
490
+ #: admin/main-view.php:517
491
+ msgid ""
492
+ "By default, thumbnails will be hard cropped. Uncheck this box to "
493
+ "proportionately/soft crop the thumbnails."
494
  msgstr ""
495
 
496
+ #: admin/main-view.php:518
497
+ #, php-format
498
+ msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
499
  msgstr ""
500
 
501
+ #: admin/main-view.php:521
502
  msgid ""
503
+ "Default style selected under the Custom Styles. Thumbnail width and height "
504
+ "is fixed at 150px and crop mode is enabled."
505
  msgstr ""
506
 
507
+ #: admin/main-view.php:525
508
+ msgid "Style attributes / Width and Height HTML attributes:"
509
  msgstr ""
510
 
511
+ #: admin/main-view.php:529
512
+ msgid "Style attributes are used for width and height."
 
 
513
  msgstr ""
514
 
515
+ #: admin/main-view.php:533
516
+ msgid "HTML width and height attributes are used for width and height."
517
+ msgstr ""
518
+
519
+ #: admin/main-view.php:537
520
  #, fuzzy
521
  msgid "Post thumbnail meta field name:"
522
  msgstr "Attēlu rīki post:"
523
 
524
+ #: admin/main-view.php:539
525
  msgid ""
526
  "The value of this field should contain the image source and is set in the "
527
  "<em>Add New Post</em> screen"
528
  msgstr ""
529
 
530
+ #: admin/main-view.php:542
531
  msgid "Extract the first image from the post?"
532
  msgstr ""
533
 
534
+ #: admin/main-view.php:544
535
  msgid ""
536
  "This will only happen if there is no post thumbnail set and no image URL is "
537
  "specified in the meta field."
538
  msgstr ""
539
 
540
+ #: admin/main-view.php:547
541
  msgid "Use default thumbnail?"
542
  msgstr ""
543
 
544
+ #: admin/main-view.php:549
545
  #, fuzzy
546
  msgid ""
547
  "If checked, when no thumbnail is found, show a default one from the URL "
551
  "добавлено стандартное изображение. Если превью задано к записи - будет "
552
  "отображаться только оно."
553
 
554
+ #: admin/main-view.php:552
555
  #, fuzzy
556
  msgid "Default thumbnail:"
557
  msgstr "noklusējuma opcijas"
558
 
559
+ #: admin/main-view.php:555
560
  #, fuzzy
561
  msgid ""
562
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
567
  "būs pārbaudīt meta laukā. Ja šāda informācija nav pieejama, tad tas rādīs "
568
  "noklusējuma attēlu, kā minēts iepriekš"
569
 
570
+ #: admin/main-view.php:596
571
+ msgid ""
572
+ "Below options override the related posts settings for your blog feed. These "
573
+ "only apply if you have selected to add related posts to Feeds in the General "
574
+ "Options tab."
575
+ msgstr ""
576
+
577
+ #: admin/main-view.php:624
578
+ #, fuzzy
579
+ msgid "Maximum width of the thumbnail: "
580
+ msgstr "Настройки превью к записям:"
581
+
582
+ #: admin/main-view.php:627
583
+ #, fuzzy
584
+ msgid "Maximum height of the thumbnail: "
585
+ msgstr "Настройки превью к записям:"
586
+
587
+ #: admin/main-view.php:668
588
+ msgid "Use default style included in the plugin?"
589
+ msgstr ""
590
+
591
+ #: admin/main-view.php:671
592
+ msgid ""
593
+ "Contextual Related Posts includes a default style that makes your popular "
594
+ "posts list to look beautiful. Check the box above if you want to use this."
595
+ msgstr ""
596
+
597
+ #: admin/main-view.php:672
598
+ msgid ""
599
+ "Enabling this option will turn on the thumbnails and set their width and "
600
+ "height to 150px. It will also turn off the display of the author, excerpt "
601
+ "and date if already enabled. Disabling this option will not revert any "
602
+ "settings."
603
+ msgstr ""
604
+
605
+ #: admin/main-view.php:673
606
+ #, php-format
607
+ msgid ""
608
+ "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
609
+ msgstr ""
610
+
611
+ #: admin/main-view.php:676
612
+ msgid "Custom CSS to add to header:"
613
+ msgstr ""
614
+
615
+ #: admin/main-view.php:680
616
+ msgid ""
617
+ "Do not include <code>style</code> tags. Check out the <a href=\"http://"
618
+ "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
619
+ "\">FAQ</a> for available CSS classes to style."
620
+ msgstr ""
621
+
622
+ #: admin/main-view.php:710
623
+ msgid "Default Options"
624
+ msgstr "noklusējuma opcijas"
625
+
626
+ #: admin/main-view.php:710
627
+ msgid "Do you want to set options to Default?"
628
+ msgstr "Vai jūs vēlaties, lai uzstādītu iespējas Default?"
629
+
630
+ #: admin/main-view.php:711
631
+ msgid "Recreate Index"
632
+ msgstr ""
633
+
634
+ #: admin/main-view.php:711
635
+ msgid "Are you sure you want to recreate the index?"
636
+ msgstr "Vai jūs tiešām vēlaties, lai atjaunotu indeksu?"
637
+
638
  #: admin/sidebar-view.php:20
639
  msgid "Support the development"
640
  msgstr "Atbalstīt"
657
  msgid "Follow me"
658
  msgstr ""
659
 
660
+ #: admin/sidebar-view.php:53
661
  #, fuzzy
662
  msgid "Quick links"
663
  msgstr "Ātrās saites"
664
 
665
+ #: admin/sidebar-view.php:57
666
  msgid "Contextual Related Posts plugin page"
667
  msgstr "Konteksta saistītus amatus"
668
 
669
+ #: admin/sidebar-view.php:58
670
  msgid "FAQ"
671
  msgstr ""
672
 
673
+ #: admin/sidebar-view.php:60
674
  msgid "Reviews"
675
  msgstr ""
676
 
677
+ #: admin/sidebar-view.php:61
678
  msgid "Github repository"
679
  msgstr ""
680
 
681
+ #: admin/sidebar-view.php:62
682
  msgid "Other plugins"
683
  msgstr "citas plugins"
684
 
685
+ #: admin/sidebar-view.php:63
686
  msgid "Ajay's blog"
687
  msgstr "Ajay blogs"
688
 
689
+ #: contextual-related-posts.php:250
690
  msgid " by "
691
  msgstr ""
692
 
693
+ #: contextual-related-posts.php:289
694
  #, php-format
695
  msgid "Powered by <a href=\"%s\" rel=\"nofollow\">Contextual Related Posts</a>"
696
  msgstr ""
697
 
698
+ #: contextual-related-posts.php:670
699
  #, fuzzy
700
  msgid "Related Posts [CRP]"
701
  msgstr "Related Posts"
702
 
703
+ #: contextual-related-posts.php:671
704
  msgid "Display Related Posts"
705
  msgstr "Displeja Related Posts"
706
 
707
+ #: contextual-related-posts.php:694
708
  #, fuzzy
709
  msgid "Title"
710
  msgstr "Заголовок списка Популярных записей:"
711
 
712
+ #: contextual-related-posts.php:699
713
  #, fuzzy
714
  msgid "No. of posts"
715
  msgstr "Популярные записи"
716
 
717
+ #: contextual-related-posts.php:704
718
  msgid " Show excerpt?"
719
  msgstr "Rādīt izvilkumu?"
720
 
721
+ #: contextual-related-posts.php:709
722
  #, fuzzy
723
  msgid " Show author?"
724
  msgstr "Отправьте пожертвование автору"
725
 
726
+ #: contextual-related-posts.php:714
727
  #, fuzzy
728
  msgid " Show date?"
729
  msgstr "Показывать текст записи в списке?"
730
 
731
+ #: contextual-related-posts.php:720
 
 
 
 
732
  msgid "Thumbnails inline, before title"
733
  msgstr "Sīktēli inline, pirms virsraksta"
734
 
735
+ #: contextual-related-posts.php:721
736
  msgid "Thumbnails inline, after title"
737
  msgstr "Sīktēli inline, pēc nosaukuma"
738
 
739
+ #: contextual-related-posts.php:722
740
  msgid "Only thumbnails, no text"
741
  msgstr "Tikai sīktēlus, bez teksta"
742
 
743
+ #: contextual-related-posts.php:723
744
  msgid "No thumbnails, only text."
745
  msgstr "Nav sīktēlus, tikai tekstu."
746
 
747
+ #: contextual-related-posts.php:728
748
  msgid "Thumbnail height"
749
  msgstr "sīktēls augstums"
750
 
751
+ #: contextual-related-posts.php:733
752
  msgid "Thumbnail width"
753
  msgstr "Thumbnail platums"
754
 
755
+ #: contextual-related-posts.php:897
756
  msgid "<h3>Related Posts:</h3>"
757
  msgstr "<h3>saistīta posts:</h3>"
758
 
759
+ #: contextual-related-posts.php:899
760
  msgid "No related posts found"
761
  msgstr "Nr saistītus amatus atrasts"
762
 
763
+ #: contextual-related-posts.php:1211
764
+ msgid "thumb_timthumb argument has been deprecated"
765
+ msgstr ""
766
+
767
+ #: contextual-related-posts.php:1215
768
+ msgid "thumb_timthumb_q argument has been deprecated"
769
+ msgstr ""
770
+
771
+ #: contextual-related-posts.php:1219
772
+ msgid "filter argument has been deprecated"
773
+ msgstr ""
774
+
775
+ #~ msgid "Post thumbnail options:"
776
+ #~ msgstr "Post sīktēlu iespējas:"
777
+
778
+ #, fuzzy
779
+ #~ msgid "Maximum width of the thumbnail:"
780
+ #~ msgstr "Настройки превью к записям:"
781
+
782
  #~ msgid "Powered by"
783
  #~ msgstr "Powered by"
784
 
languages/crp-nl_NL.mo CHANGED
Binary file
languages/crp-nl_NL.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-09-04 20:42-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: http://WPwebshop.com <info@wppg.me>\n"
@@ -14,243 +14,236 @@ msgstr ""
14
  "X-Poedit-Basepath: ../\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
  "X-Poedit-SourceCharset: utf-8\n"
17
- "X-Generator: Poedit 1.6.9\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: admin/admin.php:161
21
  msgid "Options saved successfully."
22
  msgstr "Opties succesvol opgeslagen."
23
 
24
- #: admin/admin.php:181
 
 
 
 
 
 
25
  msgid "Options set to Default."
26
  msgstr "Opties ingesteld op standaard."
27
 
28
- #: admin/admin.php:192
29
  msgid "Index recreated"
30
  msgstr "Index opnieuw gemaakt"
31
 
32
- #: admin/admin.php:209 admin/admin.php:419 admin/main-view.php:20
33
  msgid "Contextual Related Posts"
34
  msgstr "Contextual Related Posts"
35
 
36
- #: admin/admin.php:210
37
  msgid "Related Posts"
38
  msgstr "Gerelateerde Berichten"
39
 
40
- #: admin/admin.php:321
41
  msgid "Settings"
42
  msgstr "Instellingen"
43
 
44
- #: admin/admin.php:343 admin/sidebar-view.php:58
45
  msgid "Support"
46
  msgstr "Ondersteuning"
47
 
48
- #: admin/admin.php:344
49
  msgid "Donate"
50
  msgstr "Doneren"
51
 
52
- #: admin/admin.php:345
53
  msgid "Contribute"
54
  msgstr ""
55
 
56
- #: admin/admin.php:361
57
  #, fuzzy
58
  msgid "plugin settings page"
59
  msgstr "Instellingen"
60
 
61
- #: admin/admin.php:395
62
  msgid ""
63
  "An error occurred clearing the cache. Please contact your site administrator."
64
  "\\n\\nError message:\\n"
65
  msgstr ""
66
 
67
- #: admin/admin.php:400
68
  msgid " cached row(s) cleared"
69
  msgstr ""
70
 
71
- #: admin/admin.php:446
72
  #, fuzzy
73
  msgid "Location of thumbnail:"
74
  msgstr "Bericht miniatuurafbeelding opties:"
75
 
76
- #: admin/admin.php:448
77
  msgid ""
78
  "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
79
  "image will be used for the post. It will be resized to the thumbnail size "
80
  "set under Settings &raquo; Related Posts &raquo; Output Options"
81
  msgstr ""
82
 
83
- #: admin/admin.php:449
84
  msgid "The URL above is saved in the meta field: "
85
  msgstr ""
86
 
87
- #: admin/main-view.php:32 admin/main-view.php:51
88
  #, fuzzy
89
  msgid "General options"
90
  msgstr "Opties succesvol opgeslagen."
91
 
92
- #: admin/main-view.php:33 admin/main-view.php:60
 
 
 
 
93
  #, fuzzy
94
  msgid "Output options"
95
  msgstr "Opties succesvol opgeslagen."
96
 
97
- #: admin/main-view.php:34 admin/main-view.php:69
 
 
 
 
 
 
98
  #, fuzzy
99
  msgid "Feed options"
100
  msgstr "Opties succesvol opgeslagen."
101
 
102
- #: admin/main-view.php:35 admin/main-view.php:77
103
  msgid "Custom styles"
104
  msgstr ""
105
 
106
- #: admin/main-view.php:95
107
- #, fuzzy
108
- msgid "Save Options"
109
- msgstr "Opties succesvol opgeslagen."
110
-
111
- #: admin/main-view.php:96
112
- #, fuzzy
113
- msgid "Default Options"
114
- msgstr "Opties ingesteld op Standaard."
115
 
116
- #: admin/main-view.php:96
117
- msgid "Do you want to set options to Default?"
118
- msgstr "Wil je opties terug naar standaard instellen?"
 
 
119
 
120
- #: admin/main-view.php:97
121
- msgid "Recreate Index"
122
  msgstr ""
123
 
124
- #: admin/main-view.php:97
125
- msgid "Are you sure you want to recreate the index?"
126
- msgstr "Weet je zeker dat je de index opnieuw wilt creeëren?"
 
127
 
128
- #: admin/options-custom-styles.php:32
129
- msgid "Use default style included in the plugin?"
130
- msgstr ""
 
131
 
132
- #: admin/options-custom-styles.php:35
133
- msgid ""
134
- "Contextual Related Posts includes a default style that makes your popular "
135
- "posts list to look beautiful. Check the box above if you want to use this."
136
  msgstr ""
137
 
138
- #: admin/options-custom-styles.php:36
139
- msgid ""
140
- "Enabling this option will turn on the thumbnails and set their width and "
141
- "height to 150px. It will also turn off the display of the author, excerpt "
142
- "and date if already enabled. Disabling this option will not revert any "
143
- "settings."
144
- msgstr ""
145
 
146
- #: admin/options-custom-styles.php:39
147
- msgid "Custom CSS to add to header:"
148
  msgstr ""
149
 
150
- #: admin/options-custom-styles.php:43
151
- msgid ""
152
- "Do not include <code>style</code> tags. Check out the <a href=\"http://"
153
- "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
154
- "\">FAQ</a> for available CSS classes to style."
155
  msgstr ""
156
 
157
- #: admin/options-feed.php:32
158
- msgid ""
159
- "Below options override the related posts settings for your blog feed. These "
160
- "only apply if you have selected to add related posts to Feeds in the General "
161
- "Options tab."
162
  msgstr ""
163
 
164
- #: admin/options-feed.php:34 admin/options-genops.php:39
165
- msgid "Number of related posts to display: "
166
- msgstr "Aantal weer te geven gerelateerde berichten:"
167
-
168
- #: admin/options-feed.php:37 admin/options-output.php:52
169
- msgid "Show post excerpt in list?"
170
- msgstr "Laat bericht uittreksel zien in lijst?"
171
-
172
- #: admin/options-feed.php:40 admin/options-output.php:239
173
  #, fuzzy
174
- msgid "Location of post thumbnail:"
175
- msgstr "Bericht miniatuurafbeelding opties:"
176
-
177
- #: admin/options-feed.php:44 admin/options-output.php:243
178
- #, fuzzy
179
- msgid "Display thumbnails inline with posts, before title"
180
- msgstr "Toon miniatuurafbeeldingen inline met berichten"
181
 
182
- #: admin/options-feed.php:48 admin/options-output.php:247
183
  #, fuzzy
184
- msgid "Display thumbnails inline with posts, after title"
185
- msgstr "Toon miniatuurafbeeldingen inline met berichten"
186
-
187
- #: admin/options-feed.php:52 admin/options-output.php:251
188
- msgid "Display only thumbnails, no text"
189
- msgstr "Alleen miniatuurafbeeldingen weergeven, geen tekst"
 
 
 
190
 
191
- #: admin/options-feed.php:56 admin/options-output.php:255
192
- msgid "Do not display thumbnails, only text."
193
- msgstr "Geen miniatuurafbeeldingen weergeven, alleen tekst."
194
 
195
- #: admin/options-feed.php:60
196
- #, fuzzy
197
- msgid "Maximum width of the thumbnail: "
198
- msgstr "Bericht miniatuurafbeelding opties:"
 
199
 
200
- #: admin/options-feed.php:63 admin/options-output.php:270
201
  #, fuzzy
202
- msgid "Maximum height of the thumbnail: "
203
- msgstr "Bericht miniatuurafbeelding opties:"
204
 
205
- #: admin/options-genops.php:32
206
- msgid "Cache output?"
207
  msgstr ""
208
 
209
- #: admin/options-genops.php:34
 
210
  msgid ""
211
- "Enabling this option will cache the related posts output when the post is "
212
- "visited the first time. The cache is cleaned when you save this page."
213
- msgstr ""
214
 
215
- #: admin/options-genops.php:35
216
- msgid "Clear cache"
217
- msgstr ""
 
 
 
 
 
 
218
 
219
- #: admin/options-genops.php:42
220
  msgid ""
221
  "Maximum number of posts that will be displayed. The actual number may be "
222
  "smaller if less related posts are found."
223
  msgstr ""
224
 
225
- #: admin/options-genops.php:46
226
  msgid "Related posts should be newer than:"
227
  msgstr ""
228
 
229
- #: admin/options-genops.php:48
230
  #, fuzzy
231
  msgid "days"
232
  msgstr "Van hoeveel dagen moet Dagelijks Populair weergaves bevatten ?"
233
 
234
- #: admin/options-genops.php:49
235
  msgid ""
236
  "This sets the cutoff period for which posts will be displayed. e.g. setting "
237
- "it to 365 will show related posts from the last year only."
 
238
  msgstr ""
239
 
240
- #: admin/options-genops.php:53
241
- msgid "Post types to include in results:"
242
- msgstr ""
243
-
244
- #: admin/options-genops.php:64
245
- msgid ""
246
- "These post types will be displayed in the list. Includes custom post types."
247
- msgstr ""
248
-
249
- #: admin/options-genops.php:68
250
  msgid "Find related posts based on content as well as title:"
251
  msgstr ""
252
 
253
- #: admin/options-genops.php:70
254
  #, fuzzy
255
  msgid ""
256
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
@@ -260,115 +253,74 @@ msgstr ""
260
  "niet geselecteerd worden er alleen berichttitels gebruikt. (Ik beveel het "
261
  "gebruik van een caching plugin aan wanneer je dit inschakelt)"
262
 
263
- #: admin/options-genops.php:74
264
  msgid "Limit content to be compared"
265
  msgstr ""
266
 
267
- #: admin/options-genops.php:76
268
  msgid ""
269
  "This sets the maximum words of the content that will be matched. 0 means no "
270
  "limit."
271
  msgstr ""
272
 
273
- #: admin/options-genops.php:80
274
- #, fuzzy
275
- msgid "Add related posts to:"
276
- msgstr "Populaire Berichten"
277
-
278
- #: admin/options-genops.php:82
279
- #, fuzzy
280
- msgid "Posts"
281
- msgstr "Populaire Berichten"
282
-
283
- #: admin/options-genops.php:83
284
- msgid "Pages"
285
- msgstr ""
286
-
287
- #: admin/options-genops.php:84
288
- #, fuzzy
289
- msgid "Home page"
290
- msgstr "Resultaten per pagina:"
291
-
292
- #: admin/options-genops.php:85
293
- msgid "Feeds"
294
- msgstr ""
295
-
296
- #: admin/options-genops.php:86
297
- msgid "Category archives"
298
- msgstr ""
299
-
300
- #: admin/options-genops.php:87
301
- msgid "Tag archives"
302
  msgstr ""
303
 
304
- #: admin/options-genops.php:88
305
- #, fuzzy
306
- msgid "Other archives"
307
- msgstr "Andere plugins"
308
-
309
- #: admin/options-genops.php:89
310
- #, fuzzy
311
  msgid ""
312
- "If you choose to disable this, please add <code>&lt;?php if "
313
- "( function_exists( 'echo_ald_crp' ) ) echo_ald_crp(); ?&gt;</code> to your "
314
- "template file where you want it displayed"
315
  msgstr ""
316
- "Voeg gerelateerde berichten toe aan pagina's. <br />Wanneer je ervoor kiest "
317
- "om dit uit te zetten moet je de code <code>&lt;?php "
318
- "if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> toevoegen "
319
- "aan je sjabloon bestand waar je het wilt laten weergeven"
320
 
321
- #: admin/options-genops.php:93
322
- msgid "Content filter priority:"
323
  msgstr ""
324
 
325
- #: admin/options-genops.php:96
326
  msgid ""
327
- "A higher number will cause the content above to be processed after other "
328
- "filters. Number below 10 is not recommended."
329
  msgstr ""
330
 
331
- #: admin/options-genops.php:100
332
- #, fuzzy
333
- msgid "Tell the world you're using Contextual Related Posts:"
334
- msgstr "Contextual Related Posts"
335
-
336
- #: admin/options-genops.php:102
337
- msgid " <em>Optional</em>"
338
  msgstr ""
339
 
340
- #: admin/options-genops.php:103
341
- #, fuzzy
342
  msgid ""
343
- "Adds a nofollow link to Contextual Related Posts homepage as the last time "
344
- "in the list."
345
- msgstr "Contextual Related Posts "
 
346
 
347
- #: admin/options-output.php:32
348
  msgid "Title of related posts: "
349
  msgstr "Titel van gerelateerde berichten:"
350
 
351
- #: admin/options-output.php:35
352
  msgid ""
353
  "This is the main heading of the related posts. You can also display the "
354
  "current post title by using <code>%postname%</code>. e.g. <code>Related "
355
  "Posts to %postname%</code>"
356
  msgstr ""
357
 
358
- #: admin/options-output.php:39
359
  msgid "When there are no posts, what should be shown?"
360
  msgstr "Wat moet er weergegeven worden wanneer er geen berichten zijn?"
361
 
362
- #: admin/options-output.php:43
363
  msgid "Blank Output"
364
  msgstr "Lege Output"
365
 
366
- #: admin/options-output.php:47
367
  #, fuzzy
368
  msgid "Display:"
369
  msgstr "Aantal populaire berichten om weer te geven:"
370
 
371
- #: admin/options-output.php:55
 
 
 
 
372
  #, php-format
373
  msgid ""
374
  "Displays the excerpt of the post. If you do not provide an explicit excerpt "
@@ -376,226 +328,240 @@ msgid ""
376
  "automatic excerpt which refers to the first %d words of the post's content"
377
  msgstr ""
378
 
379
- #: admin/options-output.php:59
 
 
 
 
 
380
  msgid "Length of excerpt (in words): "
381
  msgstr "Lengte van uittreksel (in woorden):"
382
 
383
- #: admin/options-output.php:65
384
  #, fuzzy
385
  msgid "Show post author in list?"
386
  msgstr "Laat bericht samenvatting zien in lijst?"
387
 
388
- #: admin/options-output.php:68
389
  msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
390
  msgstr ""
391
 
392
- #: admin/options-output.php:72
 
 
 
 
 
393
  #, fuzzy
394
  msgid "Show post date in list?"
395
  msgstr "Laat bericht samenvatting zien in lijst?"
396
 
397
- #: admin/options-output.php:75
398
  msgid ""
399
  "Displays the date of the post. Uses the same date format set in General "
400
  "Options"
401
  msgstr ""
402
 
403
- #: admin/options-output.php:79
 
 
 
 
 
404
  msgid "Limit post title length (in characters)"
405
  msgstr ""
406
 
407
- #: admin/options-output.php:82
408
  msgid ""
409
  "Any title longer than the number of characters set above will be cut and "
410
  "appended with a &helip;"
411
  msgstr ""
412
 
413
- #: admin/options-output.php:86
414
  msgid "Open links in new window"
415
  msgstr ""
416
 
417
- #: admin/options-output.php:92
418
  msgid "Add nofollow attribute to links in the list"
419
  msgstr ""
420
 
421
- #: admin/options-output.php:125
422
  #, fuzzy
423
  msgid "Exclusion settings:"
424
  msgstr "Instellingen"
425
 
426
- #: admin/options-output.php:127
427
- msgid "List of post or page IDs to exclude from the results:"
428
- msgstr ""
429
-
430
- #: admin/options-output.php:129 admin/options-output.php:135
431
- msgid ""
432
- "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
433
- msgstr ""
434
-
435
- #: admin/options-output.php:132
436
  #, fuzzy
437
  msgid "Exclude display of related posts on these posts / pages"
438
  msgstr "Voeg gerelateerde berichten toe aan feed"
439
 
440
- #: admin/options-output.php:138
441
- msgid "Categories to exclude from the results: "
442
- msgstr ""
443
-
444
- #: admin/options-output.php:154
445
- msgid ""
446
- "Comma separated list of category slugs. The field above has an autocomplete "
447
- "so simply start typing in the beginning of your category name and it will "
448
- "prompt you with options."
449
- msgstr ""
450
-
451
- #: admin/options-output.php:157
452
  #, fuzzy
453
  msgid "Exclude display of related posts on these post types."
454
  msgstr "Voeg gerelateerde berichten toe aan feed"
455
 
456
- #: admin/options-output.php:166
457
  msgid ""
458
  "The related posts will not display on any of the above selected post types"
459
  msgstr ""
460
 
461
- #: admin/options-output.php:196
462
  msgid "Customize the output:"
463
  msgstr "Aanpassen van de output:"
464
 
465
- #: admin/options-output.php:198
466
  msgid "HTML to display before the list of posts: "
467
  msgstr "Weer te geven HTML voor de berichtenlijst:"
468
 
469
- #: admin/options-output.php:201
470
  msgid "HTML to display before each list item: "
471
  msgstr "Weer te geven HTML voor elk item in de lijst:"
472
 
473
- #: admin/options-output.php:204
474
  msgid "HTML to display after each list item: "
475
  msgstr "Weer te geven HTML na elk item in de lijst:"
476
 
477
- #: admin/options-output.php:207
478
  msgid "HTML to display after the list of posts: "
479
  msgstr "Weer te geven HTML na de berichtenlijst:"
480
 
481
- #: admin/options-output.php:237
482
- msgid "Post thumbnail options:"
483
- msgstr "Berichtopties miniatuurafbeelding:"
 
484
 
485
- #: admin/options-output.php:261
486
- msgid ""
487
- "Contextual Related Posts adds a new image size with the below dimensions."
488
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
489
 
490
- #: admin/options-output.php:262
491
  msgid ""
492
- "If you change the width and/or height below, existing images will not be "
493
- "automatically resized."
494
  msgstr ""
495
 
496
- #: admin/options-output.php:263
497
- #, php-format
498
- msgid ""
499
- "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
500
- "a> to regenerate all image sizes."
501
  msgstr ""
502
 
503
- #: admin/options-output.php:267
504
- #, fuzzy
505
- msgid "Maximum width of the thumbnail:"
506
- msgstr "Bericht miniatuurafbeelding opties:"
507
 
508
- #: admin/options-output.php:274
509
  msgid ""
510
- "Since you're using the default styles set under the Custom Styles section, "
511
- "the width and height is fixed at 150px"
 
512
  msgstr ""
513
 
514
- #: admin/options-output.php:278
515
- msgid "Crop mode:"
 
 
516
  msgstr ""
517
 
518
- #: admin/options-output.php:282
 
519
  msgid ""
520
- "By default, thumbnails will be proportionately cropped. Check this box to "
521
- "hard crop the thumbnails."
 
522
  msgstr ""
523
 
524
- #: admin/options-output.php:283
525
- #, php-format
526
- msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
527
  msgstr ""
528
 
529
- #: admin/options-output.php:287
530
- msgid "Style attributes / Width and Height HTML attributes:"
531
  msgstr ""
532
 
533
- #: admin/options-output.php:291
534
- msgid "Style attributes are used for width and height."
535
  msgstr ""
536
 
537
- #: admin/options-output.php:295
538
- msgid "HTML width and height attributes are used for width and height."
 
 
539
  msgstr ""
540
 
541
- #: admin/options-output.php:299
542
- msgid "Use timthumb to generate thumbnails? "
 
543
  msgstr ""
544
 
545
- #: admin/options-output.php:301
546
  msgid ""
547
- "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
548
- "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
549
  msgstr ""
550
 
551
- #: admin/options-output.php:304
552
- msgid "Quality of thumbnails generated by timthumb:"
553
  msgstr ""
554
 
555
- #: admin/options-output.php:307
556
- msgid ""
557
- "Enter values between 0 and 100 only. 100 is highest quality and the highest "
558
- "file size. Suggested maximum value is 95. CRP default is 75."
559
  msgstr ""
560
 
561
- #: admin/options-output.php:310
 
 
 
 
562
  #, fuzzy
563
  msgid "Post thumbnail meta field name:"
564
  msgstr "Berichtopties miniatuurafbeelding:"
565
 
566
- #: admin/options-output.php:312
567
  msgid ""
568
  "The value of this field should contain the image source and is set in the "
569
  "<em>Add New Post</em> screen"
570
  msgstr ""
571
 
572
- #: admin/options-output.php:315
573
  msgid "Extract the first image from the post?"
574
  msgstr ""
575
 
576
- #: admin/options-output.php:317
577
  msgid ""
578
  "This will only happen if there is no post thumbnail set and no image URL is "
579
  "specified in the meta field."
580
  msgstr ""
581
 
582
- #: admin/options-output.php:320
583
  #, fuzzy
584
  msgid "Use default thumbnail?"
585
  msgstr "Bericht miniatuurafbeelding opties:"
586
 
587
- #: admin/options-output.php:322
588
  msgid ""
589
  "If checked, when no thumbnail is found, show a default one from the URL "
590
  "below. If not checked and no thumbnail is found, no image will be shown."
591
  msgstr ""
592
 
593
- #: admin/options-output.php:325
594
  #, fuzzy
595
  msgid "Default thumbnail:"
596
  msgstr "Bericht miniatuurafbeelding opties:"
597
 
598
- #: admin/options-output.php:328
599
  #, fuzzy
600
  msgid ""
601
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -607,6 +573,75 @@ msgstr ""
607
  "miniatuurafbeelding bevat wordt de standaard afbeelding getoond zoals "
608
  "hieronder aangegeven:"
609
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
610
  #: admin/sidebar-view.php:20
611
  msgid "Support the development"
612
  msgstr "Ondersteun de ontwikkeling"
@@ -629,124 +664,138 @@ msgstr "Stuur je donatie aan de auteur van"
629
  msgid "Follow me"
630
  msgstr ""
631
 
632
- #: admin/sidebar-view.php:52
633
  #, fuzzy
634
  msgid "Quick links"
635
  msgstr "Quick links"
636
 
637
- #: admin/sidebar-view.php:56
638
  #, fuzzy
639
  msgid "Contextual Related Posts plugin page"
640
  msgstr "Contextual Related Posts "
641
 
642
- #: admin/sidebar-view.php:57
643
  msgid "FAQ"
644
  msgstr ""
645
 
646
- #: admin/sidebar-view.php:59
647
  msgid "Reviews"
648
  msgstr ""
649
 
650
- #: admin/sidebar-view.php:60
651
  msgid "Github repository"
652
  msgstr ""
653
 
654
- #: admin/sidebar-view.php:61
655
  msgid "Other plugins"
656
  msgstr "Andere plugins"
657
 
658
- #: admin/sidebar-view.php:62
659
  msgid "Ajay's blog"
660
  msgstr "Ajay's blog"
661
 
662
- #: contextual-related-posts.php:246
663
  msgid " by "
664
  msgstr ""
665
 
666
- #: contextual-related-posts.php:285
667
  #, php-format
668
  msgid "Powered by <a href=\"%s\" rel=\"nofollow\">Contextual Related Posts</a>"
669
  msgstr ""
670
 
671
- #: contextual-related-posts.php:596
672
  #, fuzzy
673
  msgid "Related Posts [CRP]"
674
  msgstr "Gerelateerde Berichten"
675
 
676
- #: contextual-related-posts.php:597
677
  #, fuzzy
678
  msgid "Display Related Posts"
679
  msgstr "Aantal populaire berichten om weer te geven:"
680
 
681
- #: contextual-related-posts.php:620
682
  #, fuzzy
683
  msgid "Title"
684
  msgstr "Titel van populaire berichten:"
685
 
686
- #: contextual-related-posts.php:625
687
  #, fuzzy
688
  msgid "No. of posts"
689
  msgstr "Populaire Berichten"
690
 
691
- #: contextual-related-posts.php:630
692
  #, fuzzy
693
  msgid " Show excerpt?"
694
  msgstr "Laat bericht samenvatting zien in lijst?"
695
 
696
- #: contextual-related-posts.php:635
697
  #, fuzzy
698
  msgid " Show author?"
699
  msgstr "Zend je donatie naar de auteur van "
700
 
701
- #: contextual-related-posts.php:640
702
  #, fuzzy
703
  msgid " Show date?"
704
  msgstr "Laat bericht samenvatting zien in lijst?"
705
 
706
- #: contextual-related-posts.php:644
707
- #, fuzzy
708
- msgid "Thumbnail options"
709
- msgstr "Bericht miniatuurafbeelding opties:"
710
-
711
- #: contextual-related-posts.php:646
712
  #, fuzzy
713
  msgid "Thumbnails inline, before title"
714
  msgstr "Toon miniatuurafbeeldingen inline met berichten"
715
 
716
- #: contextual-related-posts.php:647
717
  #, fuzzy
718
  msgid "Thumbnails inline, after title"
719
  msgstr "Toon miniatuurafbeeldingen inline met berichten"
720
 
721
- #: contextual-related-posts.php:648
722
  #, fuzzy
723
  msgid "Only thumbnails, no text"
724
  msgstr "Geef alleen miniatuurafbeeldingen weer, geen text"
725
 
726
- #: contextual-related-posts.php:649
727
  #, fuzzy
728
  msgid "No thumbnails, only text."
729
  msgstr "Geef geen miniatuurafbeeldingen weer, alleen text"
730
 
731
- #: contextual-related-posts.php:654
732
  #, fuzzy
733
  msgid "Thumbnail height"
734
  msgstr "Bericht miniatuurafbeelding opties:"
735
 
736
- #: contextual-related-posts.php:659
737
  #, fuzzy
738
  msgid "Thumbnail width"
739
  msgstr "Bericht miniatuurafbeelding opties:"
740
 
741
- #: contextual-related-posts.php:799
742
  msgid "<h3>Related Posts:</h3>"
743
  msgstr "<h3>Gerelateerde Berichten:</h3>"
744
 
745
- #: contextual-related-posts.php:801
746
  #, fuzzy
747
  msgid "No related posts found"
748
  msgstr "Populaire Berichten"
749
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
750
  #~ msgid "Powered by"
751
  #~ msgstr "Powered by"
752
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-05-09 22:20-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: http://WPwebshop.com <info@wppg.me>\n"
14
  "X-Poedit-Basepath: ../\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
  "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Generator: Poedit 1.7.1\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: admin/admin.php:166
21
  msgid "Options saved successfully."
22
  msgstr "Opties succesvol opgeslagen."
23
 
24
+ #: admin/admin.php:169
25
+ msgid ""
26
+ "Default styles selected. Thumbnail width, height and crop settings have been "
27
+ "fixed. Author, Excerpt and Date will not be displayed."
28
+ msgstr ""
29
+
30
+ #: admin/admin.php:194
31
  msgid "Options set to Default."
32
  msgstr "Opties ingesteld op standaard."
33
 
34
+ #: admin/admin.php:205
35
  msgid "Index recreated"
36
  msgstr "Index opnieuw gemaakt"
37
 
38
+ #: admin/admin.php:222 admin/admin.php:453 admin/main-view.php:20
39
  msgid "Contextual Related Posts"
40
  msgstr "Contextual Related Posts"
41
 
42
+ #: admin/admin.php:223
43
  msgid "Related Posts"
44
  msgstr "Gerelateerde Berichten"
45
 
46
+ #: admin/admin.php:338
47
  msgid "Settings"
48
  msgstr "Instellingen"
49
 
50
+ #: admin/admin.php:360 admin/sidebar-view.php:59
51
  msgid "Support"
52
  msgstr "Ondersteuning"
53
 
54
+ #: admin/admin.php:361
55
  msgid "Donate"
56
  msgstr "Doneren"
57
 
58
+ #: admin/admin.php:362
59
  msgid "Contribute"
60
  msgstr ""
61
 
62
+ #: admin/admin.php:378
63
  #, fuzzy
64
  msgid "plugin settings page"
65
  msgstr "Instellingen"
66
 
67
+ #: admin/admin.php:422
68
  msgid ""
69
  "An error occurred clearing the cache. Please contact your site administrator."
70
  "\\n\\nError message:\\n"
71
  msgstr ""
72
 
73
+ #: admin/admin.php:427
74
  msgid " cached row(s) cleared"
75
  msgstr ""
76
 
77
+ #: admin/admin.php:480
78
  #, fuzzy
79
  msgid "Location of thumbnail:"
80
  msgstr "Bericht miniatuurafbeelding opties:"
81
 
82
+ #: admin/admin.php:482
83
  msgid ""
84
  "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
85
  "image will be used for the post. It will be resized to the thumbnail size "
86
  "set under Settings &raquo; Related Posts &raquo; Output Options"
87
  msgstr ""
88
 
89
+ #: admin/admin.php:483
90
  msgid "The URL above is saved in the meta field: "
91
  msgstr ""
92
 
93
+ #: admin/main-view.php:32 admin/main-view.php:54
94
  #, fuzzy
95
  msgid "General options"
96
  msgstr "Opties succesvol opgeslagen."
97
 
98
+ #: admin/main-view.php:33 admin/main-view.php:125
99
+ msgid "List tuning options"
100
+ msgstr ""
101
+
102
+ #: admin/main-view.php:34 admin/main-view.php:229
103
  #, fuzzy
104
  msgid "Output options"
105
  msgstr "Opties succesvol opgeslagen."
106
 
107
+ #: admin/main-view.php:35 admin/main-view.php:433
108
+ #: contextual-related-posts.php:718
109
+ #, fuzzy
110
+ msgid "Thumbnail options"
111
+ msgstr "Bericht miniatuurafbeelding opties:"
112
+
113
+ #: admin/main-view.php:36 admin/main-view.php:580
114
  #, fuzzy
115
  msgid "Feed options"
116
  msgstr "Opties succesvol opgeslagen."
117
 
118
+ #: admin/main-view.php:37 admin/main-view.php:652
119
  msgid "Custom styles"
120
  msgstr ""
121
 
122
+ #: admin/main-view.php:70
123
+ msgid "Cache output?"
124
+ msgstr ""
 
 
 
 
 
 
125
 
126
+ #: admin/main-view.php:72
127
+ msgid ""
128
+ "Enabling this option will cache the related posts output when the post is "
129
+ "visited the first time. The cache is cleaned when you save this page."
130
+ msgstr ""
131
 
132
+ #: admin/main-view.php:73
133
+ msgid "Clear cache"
134
  msgstr ""
135
 
136
+ #: admin/main-view.php:77
137
+ #, fuzzy
138
+ msgid "Add related posts to:"
139
+ msgstr "Populaire Berichten"
140
 
141
+ #: admin/main-view.php:79
142
+ #, fuzzy
143
+ msgid "Posts"
144
+ msgstr "Populaire Berichten"
145
 
146
+ #: admin/main-view.php:80
147
+ msgid "Pages"
 
 
148
  msgstr ""
149
 
150
+ #: admin/main-view.php:81
151
+ #, fuzzy
152
+ msgid "Home page"
153
+ msgstr "Resultaten per pagina:"
 
 
 
154
 
155
+ #: admin/main-view.php:82
156
+ msgid "Feeds"
157
  msgstr ""
158
 
159
+ #: admin/main-view.php:83
160
+ msgid "Category archives"
 
 
 
161
  msgstr ""
162
 
163
+ #: admin/main-view.php:84
164
+ msgid "Tag archives"
 
 
 
165
  msgstr ""
166
 
167
+ #: admin/main-view.php:85
 
 
 
 
 
 
 
 
168
  #, fuzzy
169
+ msgid "Other archives"
170
+ msgstr "Andere plugins"
 
 
 
 
 
171
 
172
+ #: admin/main-view.php:86
173
  #, fuzzy
174
+ msgid ""
175
+ "If you choose to disable this, please add <code>&lt;?php if "
176
+ "( function_exists( 'echo_ald_crp' ) ) echo_ald_crp(); ?&gt;</code> to your "
177
+ "template file where you want it displayed"
178
+ msgstr ""
179
+ "Voeg gerelateerde berichten toe aan pagina's. <br />Wanneer je ervoor kiest "
180
+ "om dit uit te zetten moet je de code <code>&lt;?php "
181
+ "if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> toevoegen "
182
+ "aan je sjabloon bestand waar je het wilt laten weergeven"
183
 
184
+ #: admin/main-view.php:90
185
+ msgid "Content filter priority:"
186
+ msgstr ""
187
 
188
+ #: admin/main-view.php:93
189
+ msgid ""
190
+ "A higher number will cause the content above to be processed after other "
191
+ "filters. Number below 10 is not recommended."
192
+ msgstr ""
193
 
194
+ #: admin/main-view.php:97
195
  #, fuzzy
196
+ msgid "Tell the world you're using Contextual Related Posts:"
197
+ msgstr "Contextual Related Posts"
198
 
199
+ #: admin/main-view.php:99
200
+ msgid " <em>Optional</em>"
201
  msgstr ""
202
 
203
+ #: admin/main-view.php:100
204
+ #, fuzzy
205
  msgid ""
206
+ "Adds a nofollow link to Contextual Related Posts homepage as the last time "
207
+ "in the list."
208
+ msgstr "Contextual Related Posts "
209
 
210
+ #: admin/main-view.php:118 admin/main-view.php:222 admin/main-view.php:426
211
+ #: admin/main-view.php:573 admin/main-view.php:645 admin/main-view.php:709
212
+ #, fuzzy
213
+ msgid "Save Options"
214
+ msgstr "Opties succesvol opgeslagen."
215
+
216
+ #: admin/main-view.php:141 admin/main-view.php:598
217
+ msgid "Number of related posts to display: "
218
+ msgstr "Aantal weer te geven gerelateerde berichten:"
219
 
220
+ #: admin/main-view.php:144
221
  msgid ""
222
  "Maximum number of posts that will be displayed. The actual number may be "
223
  "smaller if less related posts are found."
224
  msgstr ""
225
 
226
+ #: admin/main-view.php:148
227
  msgid "Related posts should be newer than:"
228
  msgstr ""
229
 
230
+ #: admin/main-view.php:150
231
  #, fuzzy
232
  msgid "days"
233
  msgstr "Van hoeveel dagen moet Dagelijks Populair weergaves bevatten ?"
234
 
235
+ #: admin/main-view.php:151
236
  msgid ""
237
  "This sets the cutoff period for which posts will be displayed. e.g. setting "
238
+ "it to 365 will show related posts from the last year only. Set it to 0 to "
239
+ "disable limiting posts."
240
  msgstr ""
241
 
242
+ #: admin/main-view.php:155
 
 
 
 
 
 
 
 
 
243
  msgid "Find related posts based on content as well as title:"
244
  msgstr ""
245
 
246
+ #: admin/main-view.php:157
247
  #, fuzzy
248
  msgid ""
249
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
253
  "niet geselecteerd worden er alleen berichttitels gebruikt. (Ik beveel het "
254
  "gebruik van een caching plugin aan wanneer je dit inschakelt)"
255
 
256
+ #: admin/main-view.php:161
257
  msgid "Limit content to be compared"
258
  msgstr ""
259
 
260
+ #: admin/main-view.php:163
261
  msgid ""
262
  "This sets the maximum words of the content that will be matched. 0 means no "
263
  "limit."
264
  msgstr ""
265
 
266
+ #: admin/main-view.php:167
267
+ msgid "Post types to include in results:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
268
  msgstr ""
269
 
270
+ #: admin/main-view.php:178
 
 
 
 
 
 
271
  msgid ""
272
+ "These post types will be displayed in the list. Includes custom post types."
 
 
273
  msgstr ""
 
 
 
 
274
 
275
+ #: admin/main-view.php:182
276
+ msgid "List of post or page IDs to exclude from the results:"
277
  msgstr ""
278
 
279
+ #: admin/main-view.php:184 admin/main-view.php:355
280
  msgid ""
281
+ "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
 
282
  msgstr ""
283
 
284
+ #: admin/main-view.php:188
285
+ msgid "Categories to exclude from the results: "
 
 
 
 
 
286
  msgstr ""
287
 
288
+ #: admin/main-view.php:204
 
289
  msgid ""
290
+ "Comma separated list of category slugs. The field above has an autocomplete "
291
+ "so simply start typing in the beginning of your category name and it will "
292
+ "prompt you with options."
293
+ msgstr ""
294
 
295
+ #: admin/main-view.php:245
296
  msgid "Title of related posts: "
297
  msgstr "Titel van gerelateerde berichten:"
298
 
299
+ #: admin/main-view.php:248
300
  msgid ""
301
  "This is the main heading of the related posts. You can also display the "
302
  "current post title by using <code>%postname%</code>. e.g. <code>Related "
303
  "Posts to %postname%</code>"
304
  msgstr ""
305
 
306
+ #: admin/main-view.php:252
307
  msgid "When there are no posts, what should be shown?"
308
  msgstr "Wat moet er weergegeven worden wanneer er geen berichten zijn?"
309
 
310
+ #: admin/main-view.php:256
311
  msgid "Blank Output"
312
  msgstr "Lege Output"
313
 
314
+ #: admin/main-view.php:260
315
  #, fuzzy
316
  msgid "Display:"
317
  msgstr "Aantal populaire berichten om weer te geven:"
318
 
319
+ #: admin/main-view.php:265 admin/main-view.php:601
320
+ msgid "Show post excerpt in list?"
321
+ msgstr "Laat bericht uittreksel zien in lijst?"
322
+
323
+ #: admin/main-view.php:268
324
  #, php-format
325
  msgid ""
326
  "Displays the excerpt of the post. If you do not provide an explicit excerpt "
328
  "automatic excerpt which refers to the first %d words of the post's content"
329
  msgstr ""
330
 
331
+ #: admin/main-view.php:271
332
+ msgid ""
333
+ "Default style selected under the Custom Styles. Excerpt display is disabled."
334
+ msgstr ""
335
+
336
+ #: admin/main-view.php:276
337
  msgid "Length of excerpt (in words): "
338
  msgstr "Lengte van uittreksel (in woorden):"
339
 
340
+ #: admin/main-view.php:282
341
  #, fuzzy
342
  msgid "Show post author in list?"
343
  msgstr "Laat bericht samenvatting zien in lijst?"
344
 
345
+ #: admin/main-view.php:285
346
  msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
347
  msgstr ""
348
 
349
+ #: admin/main-view.php:288
350
+ msgid ""
351
+ "Default style selected under the Custom Styles. Author display is disabled."
352
+ msgstr ""
353
+
354
+ #: admin/main-view.php:293
355
  #, fuzzy
356
  msgid "Show post date in list?"
357
  msgstr "Laat bericht samenvatting zien in lijst?"
358
 
359
+ #: admin/main-view.php:296
360
  msgid ""
361
  "Displays the date of the post. Uses the same date format set in General "
362
  "Options"
363
  msgstr ""
364
 
365
+ #: admin/main-view.php:299
366
+ msgid ""
367
+ "Default style selected under the Custom Styles. Date display is disabled."
368
+ msgstr ""
369
+
370
+ #: admin/main-view.php:304
371
  msgid "Limit post title length (in characters)"
372
  msgstr ""
373
 
374
+ #: admin/main-view.php:307
375
  msgid ""
376
  "Any title longer than the number of characters set above will be cut and "
377
  "appended with a &helip;"
378
  msgstr ""
379
 
380
+ #: admin/main-view.php:311
381
  msgid "Open links in new window"
382
  msgstr ""
383
 
384
+ #: admin/main-view.php:317
385
  msgid "Add nofollow attribute to links in the list"
386
  msgstr ""
387
 
388
+ #: admin/main-view.php:350
389
  #, fuzzy
390
  msgid "Exclusion settings:"
391
  msgstr "Instellingen"
392
 
393
+ #: admin/main-view.php:352
 
 
 
 
 
 
 
 
 
394
  #, fuzzy
395
  msgid "Exclude display of related posts on these posts / pages"
396
  msgstr "Voeg gerelateerde berichten toe aan feed"
397
 
398
+ #: admin/main-view.php:358
 
 
 
 
 
 
 
 
 
 
 
399
  #, fuzzy
400
  msgid "Exclude display of related posts on these post types."
401
  msgstr "Voeg gerelateerde berichten toe aan feed"
402
 
403
+ #: admin/main-view.php:367
404
  msgid ""
405
  "The related posts will not display on any of the above selected post types"
406
  msgstr ""
407
 
408
+ #: admin/main-view.php:397
409
  msgid "Customize the output:"
410
  msgstr "Aanpassen van de output:"
411
 
412
+ #: admin/main-view.php:399
413
  msgid "HTML to display before the list of posts: "
414
  msgstr "Weer te geven HTML voor de berichtenlijst:"
415
 
416
+ #: admin/main-view.php:402
417
  msgid "HTML to display before each list item: "
418
  msgstr "Weer te geven HTML voor elk item in de lijst:"
419
 
420
+ #: admin/main-view.php:405
421
  msgid "HTML to display after each list item: "
422
  msgstr "Weer te geven HTML na elk item in de lijst:"
423
 
424
+ #: admin/main-view.php:408
425
  msgid "HTML to display after the list of posts: "
426
  msgstr "Weer te geven HTML na de berichtenlijst:"
427
 
428
+ #: admin/main-view.php:449 admin/main-view.php:604
429
+ #, fuzzy
430
+ msgid "Location of post thumbnail:"
431
+ msgstr "Bericht miniatuurafbeelding opties:"
432
 
433
+ #: admin/main-view.php:453 admin/main-view.php:608
434
+ #, fuzzy
435
+ msgid "Display thumbnails inline with posts, before title"
436
+ msgstr "Toon miniatuurafbeeldingen inline met berichten"
437
+
438
+ #: admin/main-view.php:457 admin/main-view.php:612
439
+ #, fuzzy
440
+ msgid "Display thumbnails inline with posts, after title"
441
+ msgstr "Toon miniatuurafbeeldingen inline met berichten"
442
+
443
+ #: admin/main-view.php:461 admin/main-view.php:616
444
+ msgid "Display only thumbnails, no text"
445
+ msgstr "Alleen miniatuurafbeeldingen weergeven, geen tekst"
446
+
447
+ #: admin/main-view.php:465 admin/main-view.php:620
448
+ msgid "Do not display thumbnails, only text."
449
+ msgstr "Geen miniatuurafbeeldingen weergeven, alleen tekst."
450
 
451
+ #: admin/main-view.php:468
452
  msgid ""
453
+ "Default style selected under the Custom Styles. Location of thumbnail forced "
454
+ "to be inline before title"
455
  msgstr ""
456
 
457
+ #: admin/main-view.php:472
458
+ msgid "Thumbnail size:"
 
 
 
459
  msgstr ""
460
 
461
+ #: admin/main-view.php:496
462
+ msgid "Custom size"
463
+ msgstr ""
 
464
 
465
+ #: admin/main-view.php:499
466
  msgid ""
467
+ "You can choose from existing image sizes above or create a custom size. If "
468
+ "you have chosen Custom size above, then enter the width, height and crop "
469
+ "settings below. For best results, use a cropped image."
470
  msgstr ""
471
 
472
+ #: admin/main-view.php:500
473
+ msgid ""
474
+ "If you change the width, height or crop mode below, existing images will not "
475
+ "be automatically resized."
476
  msgstr ""
477
 
478
+ #: admin/main-view.php:501
479
+ #, php-format
480
  msgid ""
481
+ "I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
482
+ "a> or <a href='%s' class='thickbox'>Regenerate Thumbnails</a> to regenerate "
483
+ "all image sizes."
484
  msgstr ""
485
 
486
+ #: admin/main-view.php:505
487
+ msgid "Width of the thumbnail:"
 
488
  msgstr ""
489
 
490
+ #: admin/main-view.php:508
491
+ msgid "Height of the thumbnail: "
492
  msgstr ""
493
 
494
+ #: admin/main-view.php:513
495
+ msgid "Crop mode:"
496
  msgstr ""
497
 
498
+ #: admin/main-view.php:517
499
+ msgid ""
500
+ "By default, thumbnails will be hard cropped. Uncheck this box to "
501
+ "proportionately/soft crop the thumbnails."
502
  msgstr ""
503
 
504
+ #: admin/main-view.php:518
505
+ #, php-format
506
+ msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
507
  msgstr ""
508
 
509
+ #: admin/main-view.php:521
510
  msgid ""
511
+ "Default style selected under the Custom Styles. Thumbnail width and height "
512
+ "is fixed at 150px and crop mode is enabled."
513
  msgstr ""
514
 
515
+ #: admin/main-view.php:525
516
+ msgid "Style attributes / Width and Height HTML attributes:"
517
  msgstr ""
518
 
519
+ #: admin/main-view.php:529
520
+ msgid "Style attributes are used for width and height."
 
 
521
  msgstr ""
522
 
523
+ #: admin/main-view.php:533
524
+ msgid "HTML width and height attributes are used for width and height."
525
+ msgstr ""
526
+
527
+ #: admin/main-view.php:537
528
  #, fuzzy
529
  msgid "Post thumbnail meta field name:"
530
  msgstr "Berichtopties miniatuurafbeelding:"
531
 
532
+ #: admin/main-view.php:539
533
  msgid ""
534
  "The value of this field should contain the image source and is set in the "
535
  "<em>Add New Post</em> screen"
536
  msgstr ""
537
 
538
+ #: admin/main-view.php:542
539
  msgid "Extract the first image from the post?"
540
  msgstr ""
541
 
542
+ #: admin/main-view.php:544
543
  msgid ""
544
  "This will only happen if there is no post thumbnail set and no image URL is "
545
  "specified in the meta field."
546
  msgstr ""
547
 
548
+ #: admin/main-view.php:547
549
  #, fuzzy
550
  msgid "Use default thumbnail?"
551
  msgstr "Bericht miniatuurafbeelding opties:"
552
 
553
+ #: admin/main-view.php:549
554
  msgid ""
555
  "If checked, when no thumbnail is found, show a default one from the URL "
556
  "below. If not checked and no thumbnail is found, no image will be shown."
557
  msgstr ""
558
 
559
+ #: admin/main-view.php:552
560
  #, fuzzy
561
  msgid "Default thumbnail:"
562
  msgstr "Bericht miniatuurafbeelding opties:"
563
 
564
+ #: admin/main-view.php:555
565
  #, fuzzy
566
  msgid ""
567
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
573
  "miniatuurafbeelding bevat wordt de standaard afbeelding getoond zoals "
574
  "hieronder aangegeven:"
575
 
576
+ #: admin/main-view.php:596
577
+ msgid ""
578
+ "Below options override the related posts settings for your blog feed. These "
579
+ "only apply if you have selected to add related posts to Feeds in the General "
580
+ "Options tab."
581
+ msgstr ""
582
+
583
+ #: admin/main-view.php:624
584
+ #, fuzzy
585
+ msgid "Maximum width of the thumbnail: "
586
+ msgstr "Bericht miniatuurafbeelding opties:"
587
+
588
+ #: admin/main-view.php:627
589
+ #, fuzzy
590
+ msgid "Maximum height of the thumbnail: "
591
+ msgstr "Bericht miniatuurafbeelding opties:"
592
+
593
+ #: admin/main-view.php:668
594
+ msgid "Use default style included in the plugin?"
595
+ msgstr ""
596
+
597
+ #: admin/main-view.php:671
598
+ msgid ""
599
+ "Contextual Related Posts includes a default style that makes your popular "
600
+ "posts list to look beautiful. Check the box above if you want to use this."
601
+ msgstr ""
602
+
603
+ #: admin/main-view.php:672
604
+ msgid ""
605
+ "Enabling this option will turn on the thumbnails and set their width and "
606
+ "height to 150px. It will also turn off the display of the author, excerpt "
607
+ "and date if already enabled. Disabling this option will not revert any "
608
+ "settings."
609
+ msgstr ""
610
+
611
+ #: admin/main-view.php:673
612
+ #, php-format
613
+ msgid ""
614
+ "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
615
+ msgstr ""
616
+
617
+ #: admin/main-view.php:676
618
+ msgid "Custom CSS to add to header:"
619
+ msgstr ""
620
+
621
+ #: admin/main-view.php:680
622
+ msgid ""
623
+ "Do not include <code>style</code> tags. Check out the <a href=\"http://"
624
+ "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
625
+ "\">FAQ</a> for available CSS classes to style."
626
+ msgstr ""
627
+
628
+ #: admin/main-view.php:710
629
+ #, fuzzy
630
+ msgid "Default Options"
631
+ msgstr "Opties ingesteld op Standaard."
632
+
633
+ #: admin/main-view.php:710
634
+ msgid "Do you want to set options to Default?"
635
+ msgstr "Wil je opties terug naar standaard instellen?"
636
+
637
+ #: admin/main-view.php:711
638
+ msgid "Recreate Index"
639
+ msgstr ""
640
+
641
+ #: admin/main-view.php:711
642
+ msgid "Are you sure you want to recreate the index?"
643
+ msgstr "Weet je zeker dat je de index opnieuw wilt creeëren?"
644
+
645
  #: admin/sidebar-view.php:20
646
  msgid "Support the development"
647
  msgstr "Ondersteun de ontwikkeling"
664
  msgid "Follow me"
665
  msgstr ""
666
 
667
+ #: admin/sidebar-view.php:53
668
  #, fuzzy
669
  msgid "Quick links"
670
  msgstr "Quick links"
671
 
672
+ #: admin/sidebar-view.php:57
673
  #, fuzzy
674
  msgid "Contextual Related Posts plugin page"
675
  msgstr "Contextual Related Posts "
676
 
677
+ #: admin/sidebar-view.php:58
678
  msgid "FAQ"
679
  msgstr ""
680
 
681
+ #: admin/sidebar-view.php:60
682
  msgid "Reviews"
683
  msgstr ""
684
 
685
+ #: admin/sidebar-view.php:61
686
  msgid "Github repository"
687
  msgstr ""
688
 
689
+ #: admin/sidebar-view.php:62
690
  msgid "Other plugins"
691
  msgstr "Andere plugins"
692
 
693
+ #: admin/sidebar-view.php:63
694
  msgid "Ajay's blog"
695
  msgstr "Ajay's blog"
696
 
697
+ #: contextual-related-posts.php:250
698
  msgid " by "
699
  msgstr ""
700
 
701
+ #: contextual-related-posts.php:289
702
  #, php-format
703
  msgid "Powered by <a href=\"%s\" rel=\"nofollow\">Contextual Related Posts</a>"
704
  msgstr ""
705
 
706
+ #: contextual-related-posts.php:670
707
  #, fuzzy
708
  msgid "Related Posts [CRP]"
709
  msgstr "Gerelateerde Berichten"
710
 
711
+ #: contextual-related-posts.php:671
712
  #, fuzzy
713
  msgid "Display Related Posts"
714
  msgstr "Aantal populaire berichten om weer te geven:"
715
 
716
+ #: contextual-related-posts.php:694
717
  #, fuzzy
718
  msgid "Title"
719
  msgstr "Titel van populaire berichten:"
720
 
721
+ #: contextual-related-posts.php:699
722
  #, fuzzy
723
  msgid "No. of posts"
724
  msgstr "Populaire Berichten"
725
 
726
+ #: contextual-related-posts.php:704
727
  #, fuzzy
728
  msgid " Show excerpt?"
729
  msgstr "Laat bericht samenvatting zien in lijst?"
730
 
731
+ #: contextual-related-posts.php:709
732
  #, fuzzy
733
  msgid " Show author?"
734
  msgstr "Zend je donatie naar de auteur van "
735
 
736
+ #: contextual-related-posts.php:714
737
  #, fuzzy
738
  msgid " Show date?"
739
  msgstr "Laat bericht samenvatting zien in lijst?"
740
 
741
+ #: contextual-related-posts.php:720
 
 
 
 
 
742
  #, fuzzy
743
  msgid "Thumbnails inline, before title"
744
  msgstr "Toon miniatuurafbeeldingen inline met berichten"
745
 
746
+ #: contextual-related-posts.php:721
747
  #, fuzzy
748
  msgid "Thumbnails inline, after title"
749
  msgstr "Toon miniatuurafbeeldingen inline met berichten"
750
 
751
+ #: contextual-related-posts.php:722
752
  #, fuzzy
753
  msgid "Only thumbnails, no text"
754
  msgstr "Geef alleen miniatuurafbeeldingen weer, geen text"
755
 
756
+ #: contextual-related-posts.php:723
757
  #, fuzzy
758
  msgid "No thumbnails, only text."
759
  msgstr "Geef geen miniatuurafbeeldingen weer, alleen text"
760
 
761
+ #: contextual-related-posts.php:728
762
  #, fuzzy
763
  msgid "Thumbnail height"
764
  msgstr "Bericht miniatuurafbeelding opties:"
765
 
766
+ #: contextual-related-posts.php:733
767
  #, fuzzy
768
  msgid "Thumbnail width"
769
  msgstr "Bericht miniatuurafbeelding opties:"
770
 
771
+ #: contextual-related-posts.php:897
772
  msgid "<h3>Related Posts:</h3>"
773
  msgstr "<h3>Gerelateerde Berichten:</h3>"
774
 
775
+ #: contextual-related-posts.php:899
776
  #, fuzzy
777
  msgid "No related posts found"
778
  msgstr "Populaire Berichten"
779
 
780
+ #: contextual-related-posts.php:1211
781
+ msgid "thumb_timthumb argument has been deprecated"
782
+ msgstr ""
783
+
784
+ #: contextual-related-posts.php:1215
785
+ msgid "thumb_timthumb_q argument has been deprecated"
786
+ msgstr ""
787
+
788
+ #: contextual-related-posts.php:1219
789
+ msgid "filter argument has been deprecated"
790
+ msgstr ""
791
+
792
+ #~ msgid "Post thumbnail options:"
793
+ #~ msgstr "Berichtopties miniatuurafbeelding:"
794
+
795
+ #, fuzzy
796
+ #~ msgid "Maximum width of the thumbnail:"
797
+ #~ msgstr "Bericht miniatuurafbeelding opties:"
798
+
799
  #~ msgid "Powered by"
800
  #~ msgstr "Powered by"
801
 
languages/crp-pt_BR.mo ADDED
Binary file
languages/crp-pt_BR.po ADDED
@@ -0,0 +1,759 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #
2
+ # Translators:
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Contextual Related Posts\n"
6
+ "Report-Msgid-Bugs-To: \n"
7
+ "POT-Creation-Date: 2015-05-09 22:24-0000\n"
8
+ "PO-Revision-Date: 2015-05-09 22:24-0000\n"
9
+ "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
10
+ "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/"
11
+ "contextual-related-posts/language/pt_BR/)\n"
12
+ "Language: pt_BR\n"
13
+ "MIME-Version: 1.0\n"
14
+ "Content-Type: text/plain; charset=UTF-8\n"
15
+ "Content-Transfer-Encoding: 8bit\n"
16
+ "Plural-Forms: nplurals=2; plural=(n > 1);\n"
17
+ "X-Generator: Poedit 1.7.1\n"
18
+ "X-Poedit-Basepath: ../\n"
19
+ "X-Poedit-KeywordsList: __;_e;_c;__ngettext\n"
20
+ "X-Poedit-SourceCharset: UTF-8\n"
21
+ "X-Poedit-SearchPath-0: .\n"
22
+
23
+ #: admin/admin.php:166
24
+ msgid "Options saved successfully."
25
+ msgstr "Opções salvas com sucesso."
26
+
27
+ #: admin/admin.php:169
28
+ msgid ""
29
+ "Default styles selected. Thumbnail width, height and crop settings have been "
30
+ "fixed. Author, Excerpt and Date will not be displayed."
31
+ msgstr ""
32
+
33
+ #: admin/admin.php:194
34
+ msgid "Options set to Default."
35
+ msgstr "Opções redefinidas ao padrão."
36
+
37
+ #: admin/admin.php:205
38
+ msgid "Index recreated"
39
+ msgstr "O índice foi recriado"
40
+
41
+ #: admin/admin.php:222 admin/admin.php:453 admin/main-view.php:20
42
+ msgid "Contextual Related Posts"
43
+ msgstr "Posts Relacionados Contextuais"
44
+
45
+ #: admin/admin.php:223
46
+ msgid "Related Posts"
47
+ msgstr "Posts Relacionados"
48
+
49
+ #: admin/admin.php:338
50
+ msgid "Settings"
51
+ msgstr "Configurações"
52
+
53
+ #: admin/admin.php:360 admin/sidebar-view.php:59
54
+ msgid "Support"
55
+ msgstr "Suporte"
56
+
57
+ #: admin/admin.php:361
58
+ msgid "Donate"
59
+ msgstr "Doar"
60
+
61
+ #: admin/admin.php:362
62
+ msgid "Contribute"
63
+ msgstr "Contribuir"
64
+
65
+ #: admin/admin.php:378
66
+ msgid "plugin settings page"
67
+ msgstr "página de configurações do plugin"
68
+
69
+ #: admin/admin.php:422
70
+ msgid ""
71
+ "An error occurred clearing the cache. Please contact your site administrator."
72
+ "\\n\\nError message:\\n"
73
+ msgstr ""
74
+ "Ocorreu um erro ao limpar o cache. Entre em contato com seu administrador do "
75
+ "site.\\n\\nMensagem de Erro: \\n"
76
+
77
+ #: admin/admin.php:427
78
+ msgid " cached row(s) cleared"
79
+ msgstr " linha(s) de cache limpa(s)"
80
+
81
+ #: admin/admin.php:480
82
+ msgid "Location of thumbnail:"
83
+ msgstr "Localização da miniatura:"
84
+
85
+ #: admin/admin.php:482
86
+ msgid ""
87
+ "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
88
+ "image will be used for the post. It will be resized to the thumbnail size set "
89
+ "under Settings &raquo; Related Posts &raquo; Output Options"
90
+ msgstr ""
91
+ "Digite a URL completa para a imagem (JPG, PNG ou GIF) que você quer usar. "
92
+ "Esta imagem será utilizada para o post. Ela será redimensionada para o "
93
+ "tamanho da miniatura definido em Configurações &raquo; Posts Relacionados "
94
+ "&raquo; Opções de Saída"
95
+
96
+ #: admin/admin.php:483
97
+ msgid "The URL above is saved in the meta field: "
98
+ msgstr "A URL acima é salvo no campo de meta:"
99
+
100
+ #: admin/main-view.php:32 admin/main-view.php:54
101
+ msgid "General options"
102
+ msgstr "Opções gerais"
103
+
104
+ #: admin/main-view.php:33 admin/main-view.php:125
105
+ msgid "List tuning options"
106
+ msgstr ""
107
+
108
+ #: admin/main-view.php:34 admin/main-view.php:229
109
+ msgid "Output options"
110
+ msgstr "Opções de Resultado"
111
+
112
+ #: admin/main-view.php:35 admin/main-view.php:433
113
+ #: contextual-related-posts.php:718
114
+ msgid "Thumbnail options"
115
+ msgstr "Opções de miniatura"
116
+
117
+ #: admin/main-view.php:36 admin/main-view.php:580
118
+ msgid "Feed options"
119
+ msgstr "Opções de Feed"
120
+
121
+ #: admin/main-view.php:37 admin/main-view.php:652
122
+ msgid "Custom styles"
123
+ msgstr "Estilos personalizados"
124
+
125
+ #: admin/main-view.php:70
126
+ msgid "Cache output?"
127
+ msgstr "Guardar Resultado em Cache?"
128
+
129
+ #: admin/main-view.php:72
130
+ msgid ""
131
+ "Enabling this option will cache the related posts output when the post is "
132
+ "visited the first time. The cache is cleaned when you save this page."
133
+ msgstr ""
134
+
135
+ #: admin/main-view.php:73
136
+ msgid "Clear cache"
137
+ msgstr "Limpar cache"
138
+
139
+ #: admin/main-view.php:77
140
+ msgid "Add related posts to:"
141
+ msgstr "Adicionar posts relacionados a:"
142
+
143
+ #: admin/main-view.php:79
144
+ msgid "Posts"
145
+ msgstr "Posts"
146
+
147
+ #: admin/main-view.php:80
148
+ msgid "Pages"
149
+ msgstr "Páginas"
150
+
151
+ #: admin/main-view.php:81
152
+ msgid "Home page"
153
+ msgstr "Página inicial"
154
+
155
+ #: admin/main-view.php:82
156
+ msgid "Feeds"
157
+ msgstr "Feeds"
158
+
159
+ #: admin/main-view.php:83
160
+ msgid "Category archives"
161
+ msgstr "Arquivos de categoria"
162
+
163
+ #: admin/main-view.php:84
164
+ msgid "Tag archives"
165
+ msgstr "Arquivos de tag"
166
+
167
+ #: admin/main-view.php:85
168
+ msgid "Other archives"
169
+ msgstr "Outros arquivos"
170
+
171
+ #: admin/main-view.php:86
172
+ msgid ""
173
+ "If you choose to disable this, please add <code>&lt;?php if "
174
+ "( function_exists( 'echo_ald_crp' ) ) echo_ald_crp(); ?&gt;</code> to your "
175
+ "template file where you want it displayed"
176
+ msgstr ""
177
+
178
+ #: admin/main-view.php:90
179
+ msgid "Content filter priority:"
180
+ msgstr "Prioridade do filtro de prioridade:"
181
+
182
+ #: admin/main-view.php:93
183
+ msgid ""
184
+ "A higher number will cause the content above to be processed after other "
185
+ "filters. Number below 10 is not recommended."
186
+ msgstr ""
187
+
188
+ #: admin/main-view.php:97
189
+ msgid "Tell the world you're using Contextual Related Posts:"
190
+ msgstr "Diga ao mundo que você está usando Posts Relacionados Contextuais:"
191
+
192
+ #: admin/main-view.php:99
193
+ msgid " <em>Optional</em>"
194
+ msgstr "<em>Opcional</em>"
195
+
196
+ #: admin/main-view.php:100
197
+ msgid ""
198
+ "Adds a nofollow link to Contextual Related Posts homepage as the last time in "
199
+ "the list."
200
+ msgstr ""
201
+ "Adiciona um link nofollow à página inicial de Posts Relacionados Contextuais "
202
+ "na última vez da lista."
203
+
204
+ #: admin/main-view.php:118 admin/main-view.php:222 admin/main-view.php:426
205
+ #: admin/main-view.php:573 admin/main-view.php:645 admin/main-view.php:709
206
+ msgid "Save Options"
207
+ msgstr "Salvar Opções"
208
+
209
+ #: admin/main-view.php:141 admin/main-view.php:598
210
+ msgid "Number of related posts to display: "
211
+ msgstr "Número de posts relacionados a exibir?"
212
+
213
+ #: admin/main-view.php:144
214
+ msgid ""
215
+ "Maximum number of posts that will be displayed. The actual number may be "
216
+ "smaller if less related posts are found."
217
+ msgstr ""
218
+
219
+ #: admin/main-view.php:148
220
+ msgid "Related posts should be newer than:"
221
+ msgstr ""
222
+
223
+ #: admin/main-view.php:150
224
+ msgid "days"
225
+ msgstr "dias"
226
+
227
+ #: admin/main-view.php:151
228
+ msgid ""
229
+ "This sets the cutoff period for which posts will be displayed. e.g. setting "
230
+ "it to 365 will show related posts from the last year only. Set it to 0 to "
231
+ "disable limiting posts."
232
+ msgstr ""
233
+
234
+ #: admin/main-view.php:155
235
+ msgid "Find related posts based on content as well as title:"
236
+ msgstr ""
237
+
238
+ #: admin/main-view.php:157
239
+ msgid ""
240
+ "If unchecked, only posts titles are used. I recommend using a caching plugin "
241
+ "or enabling \"Cache output\" above if you enable this."
242
+ msgstr ""
243
+
244
+ #: admin/main-view.php:161
245
+ msgid "Limit content to be compared"
246
+ msgstr "Limitar conteúdo a ser comparado"
247
+
248
+ #: admin/main-view.php:163
249
+ msgid ""
250
+ "This sets the maximum words of the content that will be matched. 0 means no "
251
+ "limit."
252
+ msgstr ""
253
+
254
+ #: admin/main-view.php:167
255
+ msgid "Post types to include in results:"
256
+ msgstr "Tipos de post para incluir nos resultados:"
257
+
258
+ #: admin/main-view.php:178
259
+ msgid ""
260
+ "These post types will be displayed in the list. Includes custom post types."
261
+ msgstr ""
262
+
263
+ #: admin/main-view.php:182
264
+ msgid "List of post or page IDs to exclude from the results:"
265
+ msgstr ""
266
+
267
+ #: admin/main-view.php:184 admin/main-view.php:355
268
+ msgid ""
269
+ "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
270
+ msgstr ""
271
+
272
+ #: admin/main-view.php:188
273
+ msgid "Categories to exclude from the results: "
274
+ msgstr "Excluir estas categorias dos resultados:"
275
+
276
+ #: admin/main-view.php:204
277
+ msgid ""
278
+ "Comma separated list of category slugs. The field above has an autocomplete "
279
+ "so simply start typing in the beginning of your category name and it will "
280
+ "prompt you with options."
281
+ msgstr ""
282
+
283
+ #: admin/main-view.php:245
284
+ msgid "Title of related posts: "
285
+ msgstr "Título dos posts relacionados:"
286
+
287
+ #: admin/main-view.php:248
288
+ msgid ""
289
+ "This is the main heading of the related posts. You can also display the "
290
+ "current post title by using <code>%postname%</code>. e.g. <code>Related Posts "
291
+ "to %postname%</code>"
292
+ msgstr ""
293
+
294
+ #: admin/main-view.php:252
295
+ msgid "When there are no posts, what should be shown?"
296
+ msgstr "O que mostrar quando não houver nenhum post relacionado?"
297
+
298
+ #: admin/main-view.php:256
299
+ msgid "Blank Output"
300
+ msgstr "Resultado em Branco"
301
+
302
+ #: admin/main-view.php:260
303
+ msgid "Display:"
304
+ msgstr "Mostrar:"
305
+
306
+ #: admin/main-view.php:265 admin/main-view.php:601
307
+ msgid "Show post excerpt in list?"
308
+ msgstr "Lista de resumos dos posts?"
309
+
310
+ #: admin/main-view.php:268
311
+ #, php-format
312
+ msgid ""
313
+ "Displays the excerpt of the post. If you do not provide an explicit excerpt "
314
+ "to a post (in the post editor's optional excerpt field), it will display an "
315
+ "automatic excerpt which refers to the first %d words of the post's content"
316
+ msgstr ""
317
+
318
+ #: admin/main-view.php:271
319
+ msgid ""
320
+ "Default style selected under the Custom Styles. Excerpt display is disabled."
321
+ msgstr ""
322
+
323
+ #: admin/main-view.php:276
324
+ msgid "Length of excerpt (in words): "
325
+ msgstr "Tamanho do resumo (em palavras):"
326
+
327
+ #: admin/main-view.php:282
328
+ msgid "Show post author in list?"
329
+ msgstr "Mostra o autor do post na lista?"
330
+
331
+ #: admin/main-view.php:285
332
+ msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
333
+ msgstr ""
334
+
335
+ #: admin/main-view.php:288
336
+ msgid ""
337
+ "Default style selected under the Custom Styles. Author display is disabled."
338
+ msgstr ""
339
+
340
+ #: admin/main-view.php:293
341
+ msgid "Show post date in list?"
342
+ msgstr "Mostrar data do post na lista?"
343
+
344
+ #: admin/main-view.php:296
345
+ msgid ""
346
+ "Displays the date of the post. Uses the same date format set in General "
347
+ "Options"
348
+ msgstr ""
349
+
350
+ #: admin/main-view.php:299
351
+ msgid ""
352
+ "Default style selected under the Custom Styles. Date display is disabled."
353
+ msgstr ""
354
+
355
+ #: admin/main-view.php:304
356
+ msgid "Limit post title length (in characters)"
357
+ msgstr "Limite do título do post (em caracteres)"
358
+
359
+ #: admin/main-view.php:307
360
+ msgid ""
361
+ "Any title longer than the number of characters set above will be cut and "
362
+ "appended with a &helip;"
363
+ msgstr ""
364
+
365
+ #: admin/main-view.php:311
366
+ msgid "Open links in new window"
367
+ msgstr "Abrir links numa nova janela"
368
+
369
+ #: admin/main-view.php:317
370
+ msgid "Add nofollow attribute to links in the list"
371
+ msgstr "Adicionar atributo nofollow aos links na lista"
372
+
373
+ #: admin/main-view.php:350
374
+ msgid "Exclusion settings:"
375
+ msgstr "Configurações de exclusão:"
376
+
377
+ #: admin/main-view.php:352
378
+ msgid "Exclude display of related posts on these posts / pages"
379
+ msgstr "Não exibir posts relacionados nestes posts/páginas?"
380
+
381
+ #: admin/main-view.php:358
382
+ msgid "Exclude display of related posts on these post types."
383
+ msgstr "Excluir exibição de posts relacionados nestes tipos de post."
384
+
385
+ #: admin/main-view.php:367
386
+ msgid ""
387
+ "The related posts will not display on any of the above selected post types"
388
+ msgstr ""
389
+
390
+ #: admin/main-view.php:397
391
+ msgid "Customize the output:"
392
+ msgstr "Personalizar o resultado:"
393
+
394
+ #: admin/main-view.php:399
395
+ msgid "HTML to display before the list of posts: "
396
+ msgstr "HTML para exibir antes da lista de posts: "
397
+
398
+ #: admin/main-view.php:402
399
+ msgid "HTML to display before each list item: "
400
+ msgstr "HTML para exibir antes de cada item da lista: "
401
+
402
+ #: admin/main-view.php:405
403
+ msgid "HTML to display after each list item: "
404
+ msgstr "HTML para exibir depois de cada item da lista: "
405
+
406
+ #: admin/main-view.php:408
407
+ msgid "HTML to display after the list of posts: "
408
+ msgstr "HTML para exibir depois da lista de posts: "
409
+
410
+ #: admin/main-view.php:449 admin/main-view.php:604
411
+ msgid "Location of post thumbnail:"
412
+ msgstr "Localização da miniatura do post:"
413
+
414
+ #: admin/main-view.php:453 admin/main-view.php:608
415
+ msgid "Display thumbnails inline with posts, before title"
416
+ msgstr ""
417
+
418
+ #: admin/main-view.php:457 admin/main-view.php:612
419
+ msgid "Display thumbnails inline with posts, after title"
420
+ msgstr ""
421
+
422
+ #: admin/main-view.php:461 admin/main-view.php:616
423
+ msgid "Display only thumbnails, no text"
424
+ msgstr "Mostrar somente miniaturas, sem texto"
425
+
426
+ #: admin/main-view.php:465 admin/main-view.php:620
427
+ msgid "Do not display thumbnails, only text."
428
+ msgstr "Não mostrar miniaturas, somente texto"
429
+
430
+ #: admin/main-view.php:468
431
+ msgid ""
432
+ "Default style selected under the Custom Styles. Location of thumbnail forced "
433
+ "to be inline before title"
434
+ msgstr ""
435
+
436
+ #: admin/main-view.php:472
437
+ msgid "Thumbnail size:"
438
+ msgstr ""
439
+
440
+ #: admin/main-view.php:496
441
+ msgid "Custom size"
442
+ msgstr ""
443
+
444
+ #: admin/main-view.php:499
445
+ msgid ""
446
+ "You can choose from existing image sizes above or create a custom size. If "
447
+ "you have chosen Custom size above, then enter the width, height and crop "
448
+ "settings below. For best results, use a cropped image."
449
+ msgstr ""
450
+
451
+ #: admin/main-view.php:500
452
+ msgid ""
453
+ "If you change the width, height or crop mode below, existing images will not "
454
+ "be automatically resized."
455
+ msgstr ""
456
+
457
+ #: admin/main-view.php:501
458
+ #, php-format
459
+ msgid ""
460
+ "I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</a> "
461
+ "or <a href='%s' class='thickbox'>Regenerate Thumbnails</a> to regenerate all "
462
+ "image sizes."
463
+ msgstr ""
464
+
465
+ #: admin/main-view.php:505
466
+ msgid "Width of the thumbnail:"
467
+ msgstr ""
468
+
469
+ #: admin/main-view.php:508
470
+ msgid "Height of the thumbnail: "
471
+ msgstr ""
472
+
473
+ #: admin/main-view.php:513
474
+ msgid "Crop mode:"
475
+ msgstr "Modo de recorte:"
476
+
477
+ #: admin/main-view.php:517
478
+ msgid ""
479
+ "By default, thumbnails will be hard cropped. Uncheck this box to "
480
+ "proportionately/soft crop the thumbnails."
481
+ msgstr ""
482
+
483
+ #: admin/main-view.php:518
484
+ #, php-format
485
+ msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
486
+ msgstr ""
487
+
488
+ #: admin/main-view.php:521
489
+ msgid ""
490
+ "Default style selected under the Custom Styles. Thumbnail width and height is "
491
+ "fixed at 150px and crop mode is enabled."
492
+ msgstr ""
493
+
494
+ #: admin/main-view.php:525
495
+ msgid "Style attributes / Width and Height HTML attributes:"
496
+ msgstr ""
497
+
498
+ #: admin/main-view.php:529
499
+ msgid "Style attributes are used for width and height."
500
+ msgstr ""
501
+
502
+ #: admin/main-view.php:533
503
+ msgid "HTML width and height attributes are used for width and height."
504
+ msgstr ""
505
+
506
+ #: admin/main-view.php:537
507
+ msgid "Post thumbnail meta field name:"
508
+ msgstr "Nome do campo meta da miniatura do post:"
509
+
510
+ #: admin/main-view.php:539
511
+ msgid ""
512
+ "The value of this field should contain the image source and is set in the "
513
+ "<em>Add New Post</em> screen"
514
+ msgstr ""
515
+ "O valor deste campo deve conter a fonte de imagem e está definida na tela "
516
+ "<em>Adicionar Novo Post</em>"
517
+
518
+ #: admin/main-view.php:542
519
+ msgid "Extract the first image from the post?"
520
+ msgstr "Extrair a primeira imagem do post?"
521
+
522
+ #: admin/main-view.php:544
523
+ msgid ""
524
+ "This will only happen if there is no post thumbnail set and no image URL is "
525
+ "specified in the meta field."
526
+ msgstr ""
527
+ "Isso só acontecerá se não houver nenhum conjunto de miniaturas de post e "
528
+ "nenhuma URL de imagem for definido no campo meta."
529
+
530
+ #: admin/main-view.php:547
531
+ msgid "Use default thumbnail?"
532
+ msgstr "Usar miniatura padrão?"
533
+
534
+ #: admin/main-view.php:549
535
+ msgid ""
536
+ "If checked, when no thumbnail is found, show a default one from the URL "
537
+ "below. If not checked and no thumbnail is found, no image will be shown."
538
+ msgstr ""
539
+ "Se marcada, quando não for encontrada nenhuma miniatura, mostra uma padrão da "
540
+ "URL abaixo. Se desmarcada e não encontrar nenhuma miniatura, a imagem não "
541
+ "será exibida."
542
+
543
+ #: admin/main-view.php:552
544
+ msgid "Default thumbnail:"
545
+ msgstr "Miniatura padrão:"
546
+
547
+ #: admin/main-view.php:555
548
+ msgid ""
549
+ "The plugin will first check if the post contains a thumbnail. If it doesn't "
550
+ "then it will check the meta field. If this is not available, then it will "
551
+ "show the default image as specified above."
552
+ msgstr ""
553
+ "O plugin irá verificar primeiro se o post contém uma miniatura. Se não, então "
554
+ "ele irá verificar o campo de meta. Se este não estiver disponível, então "
555
+ "mostrará a imagem padrão conforme especificado acima."
556
+
557
+ #: admin/main-view.php:596
558
+ msgid ""
559
+ "Below options override the related posts settings for your blog feed. These "
560
+ "only apply if you have selected to add related posts to Feeds in the General "
561
+ "Options tab."
562
+ msgstr ""
563
+
564
+ #: admin/main-view.php:624
565
+ msgid "Maximum width of the thumbnail: "
566
+ msgstr "Largura máxima da miniatura:"
567
+
568
+ #: admin/main-view.php:627
569
+ msgid "Maximum height of the thumbnail: "
570
+ msgstr "Altura máxima da miniatura:"
571
+
572
+ #: admin/main-view.php:668
573
+ msgid "Use default style included in the plugin?"
574
+ msgstr "Use o estilo padrão incluído no plugin?"
575
+
576
+ #: admin/main-view.php:671
577
+ msgid ""
578
+ "Contextual Related Posts includes a default style that makes your popular "
579
+ "posts list to look beautiful. Check the box above if you want to use this."
580
+ msgstr ""
581
+ "Posts Relacionados Contextuais inclui um estilo padrão que faz sua lista de "
582
+ "posts populares ficar linda. Marque a caixa acima se você quiser usar isto."
583
+
584
+ #: admin/main-view.php:672
585
+ msgid ""
586
+ "Enabling this option will turn on the thumbnails and set their width and "
587
+ "height to 150px. It will also turn off the display of the author, excerpt and "
588
+ "date if already enabled. Disabling this option will not revert any settings."
589
+ msgstr ""
590
+ "Habilitar esta opção irá ativar as miniaturas e definir sua largura e a "
591
+ "altura para 150px. Também desativará a exibição do autor, resumo e data caso "
592
+ "já estejam habilitados. Desabilitar esta opção não irá reverter quaisquer "
593
+ "configurações."
594
+
595
+ #: admin/main-view.php:673
596
+ #, php-format
597
+ msgid ""
598
+ "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
599
+ msgstr ""
600
+
601
+ #: admin/main-view.php:676
602
+ msgid "Custom CSS to add to header:"
603
+ msgstr "CSS personalizado para adicionar ao cabeçalho:"
604
+
605
+ #: admin/main-view.php:680
606
+ msgid ""
607
+ "Do not include <code>style</code> tags. Check out the <a href=\"http://"
608
+ "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
609
+ "\">FAQ</a> for available CSS classes to style."
610
+ msgstr ""
611
+ "Não inclua atributos <code>style</code> nas tags. Confira o <a href=\"http://"
612
+ "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
613
+ "\">FAQ</a> para saber as classes CSS disponíveis para estilizar."
614
+
615
+ #: admin/main-view.php:710
616
+ msgid "Default Options"
617
+ msgstr "Opções Padrão"
618
+
619
+ #: admin/main-view.php:710
620
+ msgid "Do you want to set options to Default?"
621
+ msgstr "Você quer definir opções para o padrão?"
622
+
623
+ #: admin/main-view.php:711
624
+ msgid "Recreate Index"
625
+ msgstr "Recriar Índice"
626
+
627
+ #: admin/main-view.php:711
628
+ msgid "Are you sure you want to recreate the index?"
629
+ msgstr "Tem certeza de que deseja recriar o índice?"
630
+
631
+ #: admin/sidebar-view.php:20
632
+ msgid "Support the development"
633
+ msgstr "Apoie o desenvolvimento"
634
+
635
+ #: admin/sidebar-view.php:27
636
+ msgid "Donation for Contextual Related Posts"
637
+ msgstr "Doação para Posts Contextuais Relacionados"
638
+
639
+ #: admin/sidebar-view.php:29
640
+ msgid "Enter amount in USD:"
641
+ msgstr "Informe o valor em USD:"
642
+
643
+ #: admin/sidebar-view.php:33
644
+ msgid "Send your donation to the author of"
645
+ msgstr "Envie sua doação para o autor de"
646
+
647
+ #: admin/sidebar-view.php:41
648
+ msgid "Follow me"
649
+ msgstr "Siga-me"
650
+
651
+ #: admin/sidebar-view.php:53
652
+ msgid "Quick links"
653
+ msgstr "Links Rápidos"
654
+
655
+ #: admin/sidebar-view.php:57
656
+ msgid "Contextual Related Posts plugin page"
657
+ msgstr "Página do plugin Posts Relacionados Contextuais"
658
+
659
+ #: admin/sidebar-view.php:58
660
+ msgid "FAQ"
661
+ msgstr "FAQ"
662
+
663
+ #: admin/sidebar-view.php:60
664
+ msgid "Reviews"
665
+ msgstr "Avaliações"
666
+
667
+ #: admin/sidebar-view.php:61
668
+ msgid "Github repository"
669
+ msgstr "Repositório no Github."
670
+
671
+ #: admin/sidebar-view.php:62
672
+ msgid "Other plugins"
673
+ msgstr "Outros plugins"
674
+
675
+ #: admin/sidebar-view.php:63
676
+ msgid "Ajay's blog"
677
+ msgstr "Blog do Ajay"
678
+
679
+ #: contextual-related-posts.php:250
680
+ msgid " by "
681
+ msgstr "por"
682
+
683
+ #: contextual-related-posts.php:289
684
+ #, php-format
685
+ msgid "Powered by <a href=\"%s\" rel=\"nofollow\">Contextual Related Posts</a>"
686
+ msgstr ""
687
+ "Gerado por <a href=\"%s\" rel=\"nofollow\">Posts Relacionados Contextuais</a>"
688
+
689
+ #: contextual-related-posts.php:670
690
+ msgid "Related Posts [CRP]"
691
+ msgstr "Posts Relacionados [CRP]"
692
+
693
+ #: contextual-related-posts.php:671
694
+ msgid "Display Related Posts"
695
+ msgstr "Mostrar Posts Relacionados"
696
+
697
+ #: contextual-related-posts.php:694
698
+ msgid "Title"
699
+ msgstr "Título"
700
+
701
+ #: contextual-related-posts.php:699
702
+ msgid "No. of posts"
703
+ msgstr "Nº de posts"
704
+
705
+ #: contextual-related-posts.php:704
706
+ msgid " Show excerpt?"
707
+ msgstr " Mostrar resumo?"
708
+
709
+ #: contextual-related-posts.php:709
710
+ msgid " Show author?"
711
+ msgstr " Mostrar autor?"
712
+
713
+ #: contextual-related-posts.php:714
714
+ msgid " Show date?"
715
+ msgstr " Mostrar data?"
716
+
717
+ #: contextual-related-posts.php:720
718
+ msgid "Thumbnails inline, before title"
719
+ msgstr "Miniaturas inline, antes do título"
720
+
721
+ #: contextual-related-posts.php:721
722
+ msgid "Thumbnails inline, after title"
723
+ msgstr "Miniaturas inline, após o título"
724
+
725
+ #: contextual-related-posts.php:722
726
+ msgid "Only thumbnails, no text"
727
+ msgstr "Apenas miniaturas, sem texto"
728
+
729
+ #: contextual-related-posts.php:723
730
+ msgid "No thumbnails, only text."
731
+ msgstr "Sem miniaturas, apenas texto."
732
+
733
+ #: contextual-related-posts.php:728
734
+ msgid "Thumbnail height"
735
+ msgstr "Altura da miniatura"
736
+
737
+ #: contextual-related-posts.php:733
738
+ msgid "Thumbnail width"
739
+ msgstr "Largura da miniatura"
740
+
741
+ #: contextual-related-posts.php:897
742
+ msgid "<h3>Related Posts:</h3>"
743
+ msgstr "<h3>Posts Relacionados:</h3>"
744
+
745
+ #: contextual-related-posts.php:899
746
+ msgid "No related posts found"
747
+ msgstr "Nenhum post relacionado foi encontrado"
748
+
749
+ #: contextual-related-posts.php:1211
750
+ msgid "thumb_timthumb argument has been deprecated"
751
+ msgstr ""
752
+
753
+ #: contextual-related-posts.php:1215
754
+ msgid "thumb_timthumb_q argument has been deprecated"
755
+ msgstr ""
756
+
757
+ #: contextual-related-posts.php:1219
758
+ msgid "filter argument has been deprecated"
759
+ msgstr ""
languages/crp-ro_RO.mo ADDED
Binary file
languages/crp-ro_RO.po CHANGED
@@ -1,570 +1,670 @@
1
- #
2
  # Translators:
3
  # Alex Cristache <alex@qbkl.net>, 2014
4
  msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Contextual Related Posts\n"
7
  "Report-Msgid-Bugs-To: \n"
8
- "POT-Creation-Date: 2014-09-04 20:40-0000\n"
9
- "PO-Revision-Date: 2014-09-04 19:53+0000\n"
10
- "Last-Translator: Ajay D'Souza\n"
11
- "Language-Team: Romanian (Romania) (http://www.transifex.com/projects/p/contextual-related-posts/language/ro_RO/)\n"
 
 
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
- "Language: ro_RO\n"
16
- "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
17
- "X-Generator: Poedit 1.6.9\n"
18
  "X-Poedit-Basepath: ../\n"
19
  "X-Poedit-KeywordsList: __;_e;_c;__ngettext\n"
 
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
- #: admin/admin.php:161
23
  msgid "Options saved successfully."
24
  msgstr "Opțiuni salvate cu succes."
25
 
26
- #: admin/admin.php:181
 
 
 
 
 
 
27
  msgid "Options set to Default."
28
  msgstr "Opțiuni setate ca predefinite."
29
 
30
- #: admin/admin.php:192
31
  msgid "Index recreated"
32
  msgstr "Index recreat"
33
 
34
- #: admin/admin.php:209 admin/admin.php:419 admin/main-view.php:20
35
  msgid "Contextual Related Posts"
36
  msgstr "Contextual Related Posts"
37
 
38
- #: admin/admin.php:210
39
  msgid "Related Posts"
40
  msgstr "Articole asociate"
41
 
42
- #: admin/admin.php:321
43
  msgid "Settings"
44
  msgstr "Setări"
45
 
46
- #: admin/admin.php:343 admin/sidebar-view.php:58
47
  msgid "Support"
48
  msgstr "Asistenţă"
49
 
50
- #: admin/admin.php:344
51
  msgid "Donate"
52
  msgstr "Donați"
53
 
54
- #: admin/admin.php:345
55
  msgid "Contribute"
56
  msgstr ""
57
 
58
- #: admin/admin.php:361
59
  msgid "plugin settings page"
60
  msgstr "pagina de setări ale modulului"
61
 
62
- #: admin/admin.php:395
63
  msgid ""
64
- "An error occurred clearing the cache. Please contact your site "
65
- "administrator.\\n\\nError message:\\n"
66
- msgstr "A apărut o eroare în timpul golirii cache-ului. Vă rugăm să contactați administratorul site-ului.\\n\\nMesaj de eroare:\\n"
 
 
67
 
68
- #: admin/admin.php:400
69
  msgid " cached row(s) cleared"
70
  msgstr "rând(uri) cache golit(e)"
71
 
72
- #: admin/admin.php:446
73
  msgid "Location of thumbnail:"
74
  msgstr "Poziția imaginii miniatură:"
75
 
76
- #: admin/admin.php:448
77
  msgid ""
78
  "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
79
  "image will be used for the post. It will be resized to the thumbnail size "
80
  "set under Settings &raquo; Related Posts &raquo; Output Options"
81
- msgstr "Introduceți adresa URL completa a imaginii (JPG, PNG sau GIF) pe care dorițti sa o utilizați. Această imagine va fi folosită pentru articol. Va fi redimensionată la dimensiunile imaginii miniatura, setate in sectiunea \"Setări &raquo; Articole asociate &raquo; Opțiuni afișaj\"."
 
 
 
 
82
 
83
- #: admin/admin.php:449
84
  msgid "The URL above is saved in the meta field: "
85
  msgstr "Adresa URL de mai sus este salvată în câmpul meta:"
86
 
87
- #: admin/main-view.php:32 admin/main-view.php:51
88
  msgid "General options"
89
  msgstr "Opțiuni generale"
90
 
91
- #: admin/main-view.php:33 admin/main-view.php:60
 
 
 
 
92
  msgid "Output options"
93
  msgstr "Opțiuni de afișare"
94
 
95
- #: admin/main-view.php:34 admin/main-view.php:69
 
 
 
 
 
96
  msgid "Feed options"
97
  msgstr "Opțiuni flux"
98
 
99
- #: admin/main-view.php:35 admin/main-view.php:77
100
  msgid "Custom styles"
101
  msgstr "Stiluri personalizate"
102
 
103
- #: admin/main-view.php:95
104
- msgid "Save Options"
105
- msgstr "Salvați opțiunile"
106
-
107
- #: admin/main-view.php:96
108
- msgid "Default Options"
109
- msgstr "Opțiuni predefinite"
110
-
111
- #: admin/main-view.php:96
112
- msgid "Do you want to set options to Default?"
113
- msgstr "Doriți încărcarea opțiunilor predefinite?"
114
-
115
- #: admin/main-view.php:97
116
- msgid "Recreate Index"
117
- msgstr "Recreare index"
118
-
119
- #: admin/main-view.php:97
120
- msgid "Are you sure you want to recreate the index?"
121
- msgstr "Sunteți sigur că doriți recrearea indexului?"
122
-
123
- #: admin/options-custom-styles.php:32
124
- msgid "Use default style included in the plugin?"
125
- msgstr "Utilizați stilurile predefinite incluse în modul?"
126
 
127
- #: admin/options-custom-styles.php:35
128
  msgid ""
129
- "Contextual Related Posts includes a default style that makes your popular "
130
- "posts list to look beautiful. Check the box above if you want to use this."
131
  msgstr ""
 
 
 
132
 
133
- #: admin/options-custom-styles.php:36
134
- msgid ""
135
- "Enabling this option will turn on the thumbnails and set their width and "
136
- "height to 150px. It will also turn off the display of the author, excerpt "
137
- "and date if already enabled. Disabling this option will not revert any "
138
- "settings."
139
- msgstr ""
140
 
141
- #: admin/options-custom-styles.php:39
142
- msgid "Custom CSS to add to header:"
143
- msgstr "Cod CSS personalizat de adăugat în header:"
144
 
145
- #: admin/options-custom-styles.php:43
146
- msgid ""
147
- "Do not include <code>style</code> tags. Check out the <a "
148
- "href=\"http://wordpress.org/extend/plugins/contextual-related-posts/faq/\" "
149
- "target=\"_blank\">FAQ</a> for available CSS classes to style."
150
- msgstr "Nu includeți etichete de <code>stil</code>. Verificați secțiunea de <a href=\"http://wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank\">Întrebări / Răspunsuri</a> pentru clasele disponibile stilizării."
151
 
152
- #: admin/options-feed.php:32
153
- msgid ""
154
- "Below options override the related posts settings for your blog feed. These "
155
- "only apply if you have selected to add related posts to Feeds in the General"
156
- " Options tab."
157
- msgstr "Opțiunile de mai jos suprascriu setările de articole asociate pentru fluxul blogului. Acestea se aplică doar dacă ați selectat adăugarea articolelor asociatele la Flux in sectiunea de Setări Generale."
158
 
159
- #: admin/options-feed.php:34 admin/options-genops.php:39
160
- msgid "Number of related posts to display: "
161
- msgstr "Numărul de articole asociate de afișat."
162
 
163
- #: admin/options-feed.php:37 admin/options-output.php:52
164
- msgid "Show post excerpt in list?"
165
- msgstr "Arată extrasul articolului in listă?"
166
 
167
- #: admin/options-feed.php:40 admin/options-output.php:239
168
- msgid "Location of post thumbnail:"
169
- msgstr "Poziția imaginii miniatură:"
170
 
171
- #: admin/options-feed.php:44 admin/options-output.php:243
172
- msgid "Display thumbnails inline with posts, before title"
173
- msgstr "Afișează imagini miniatură în linie cu articolele, înaintea titlului"
174
 
175
- #: admin/options-feed.php:48 admin/options-output.php:247
176
- msgid "Display thumbnails inline with posts, after title"
177
- msgstr "Afișează imagini miniatură în linie cu articolele, după titlu"
178
 
179
- #: admin/options-feed.php:52 admin/options-output.php:251
180
- msgid "Display only thumbnails, no text"
181
- msgstr "Afișează doar imagini miniatură, fără text"
 
 
 
 
 
 
182
 
183
- #: admin/options-feed.php:56 admin/options-output.php:255
184
- msgid "Do not display thumbnails, only text."
185
- msgstr "Nu afișează imagini miniatură, doar text."
186
 
187
- #: admin/options-feed.php:60
188
- msgid "Maximum width of the thumbnail: "
189
- msgstr "Lățimea maximă a imaginii miniatură:"
 
 
 
 
190
 
191
- #: admin/options-feed.php:63 admin/options-output.php:270
192
- msgid "Maximum height of the thumbnail: "
193
- msgstr "Înălțimea maximăa a imaginii miniatură:"
 
 
194
 
195
- #: admin/options-genops.php:32
196
- msgid "Cache output?"
197
- msgstr "Afișare Cache?"
198
 
199
- #: admin/options-genops.php:34
200
  msgid ""
201
- "Enabling this option will cache the related posts output when the post is "
202
- "visited the first time. The cache is cleaned when you save this page."
203
- msgstr "Activarea acestei opțiuni va memora afișarea articolelor asociate cand articolul va fi vizitat pentru prima dată. Cache-ul este golit când salvați această pagină."
 
 
204
 
205
- #: admin/options-genops.php:35
206
- msgid "Clear cache"
207
- msgstr "Golire Cache"
 
208
 
209
- #: admin/options-genops.php:42
 
 
 
 
210
  msgid ""
211
  "Maximum number of posts that will be displayed. The actual number may be "
212
  "smaller if less related posts are found."
213
- msgstr "Numărul maxim de articole de afișat. Numărul real poate fi mai mic daca se vor găsi mai puține articole asociate."
 
 
214
 
215
- #: admin/options-genops.php:46
216
  msgid "Related posts should be newer than:"
217
  msgstr "Articolele asociate trebuie să fie mai noi decât:"
218
 
219
- #: admin/options-genops.php:48
220
  msgid "days"
221
  msgstr "zile"
222
 
223
- #: admin/options-genops.php:49
224
  msgid ""
225
  "This sets the cutoff period for which posts will be displayed. e.g. setting "
226
- "it to 365 will show related posts from the last year only."
227
- msgstr "Setează perioada limită pentru care articolele vor fi afisate. De exemplu, setând 365 va afișa articole asociate doar din ultimul an."
228
-
229
- #: admin/options-genops.php:53
230
- msgid "Post types to include in results:"
231
- msgstr "Tipuri de articole incluse în rezultate:"
232
-
233
- #: admin/options-genops.php:64
234
- msgid ""
235
- "These post types will be displayed in the list. Includes custom post types."
236
- msgstr "Aceste tipuri de articole vor fi afișate în listă. Include tipurile de articole personalizate."
237
 
238
- #: admin/options-genops.php:68
239
  msgid "Find related posts based on content as well as title:"
240
  msgstr "Gasește articole asociate pe baza conținutului și titlului:"
241
 
242
- #: admin/options-genops.php:70
243
  msgid ""
244
- "If unchecked, only posts titles are used. I recommend using a caching plugin"
245
- " or enabling \"Cache output\" above if you enable this."
246
- msgstr "Dacă nu bifați, doar titlurile articolelor vor fi folosite. Recomandăm utilizarea unui modul de Cache sau activarea \"Ieșirii Cache\" de mai sus dacă alegeti să bifați aici."
 
 
 
247
 
248
- #: admin/options-genops.php:74
249
  msgid "Limit content to be compared"
250
  msgstr "Limitare conținut pentru comparație"
251
 
252
- #: admin/options-genops.php:76
253
  msgid ""
254
  "This sets the maximum words of the content that will be matched. 0 means no "
255
  "limit."
256
- msgstr "Setează numărul maxim de cuvinte din conținut pentru comparare. 0 inseamnă 'fară limită'."
257
-
258
- #: admin/options-genops.php:80
259
- msgid "Add related posts to:"
260
- msgstr "Adaugă articolele asociate la:"
261
-
262
- #: admin/options-genops.php:82
263
- msgid "Posts"
264
- msgstr "Articole"
265
-
266
- #: admin/options-genops.php:83
267
- msgid "Pages"
268
- msgstr "Pagini"
269
-
270
- #: admin/options-genops.php:84
271
- msgid "Home page"
272
- msgstr "Pagina principală"
273
-
274
- #: admin/options-genops.php:85
275
- msgid "Feeds"
276
- msgstr "Fluxuri"
277
-
278
- #: admin/options-genops.php:86
279
- msgid "Category archives"
280
- msgstr "Arhive de categorii"
281
-
282
- #: admin/options-genops.php:87
283
- msgid "Tag archives"
284
- msgstr "Arhive de etichete"
285
 
286
- #: admin/options-genops.php:88
287
- msgid "Other archives"
288
- msgstr "Alte arhive"
289
 
290
- #: admin/options-genops.php:89
291
  msgid ""
292
- "If you choose to disable this, please add <code>&lt;?php if ( "
293
- "function_exists( 'echo_ald_crp' ) ) echo_ald_crp(); ?&gt;</code> to your "
294
- "template file where you want it displayed"
295
- msgstr "Daca alegeți sa afișați asta, vă rugăm să adaugati <code>&lt;?php if ( function_exists( 'echo_ald_crp' ) ) echo_ald_crp(); ?&gt;</code> în șablonul dumneavoastră în locul în care doriți afișarea"
296
 
297
- #: admin/options-genops.php:93
298
- msgid "Content filter priority:"
299
- msgstr "Prioritate filtru de conținut:"
300
 
301
- #: admin/options-genops.php:96
302
  msgid ""
303
- "A higher number will cause the content above to be processed after other "
304
- "filters. Number below 10 is not recommended."
305
- msgstr "Un număr mare va determina procesarea conținutului de deasupra după alte filtre. Nu recomandăm un numar sub 10."
306
-
307
- #: admin/options-genops.php:100
308
- msgid "Tell the world you're using Contextual Related Posts:"
309
- msgstr "Spuneți lumii că folosiți \"Contextual Related Posts / Articole Asociate Contextual\":"
310
 
311
- #: admin/options-genops.php:102
312
- msgid " <em>Optional</em>"
313
- msgstr "<em>Opțional</em>"
314
 
315
- #: admin/options-genops.php:103
316
  msgid ""
317
- "Adds a nofollow link to Contextual Related Posts homepage as the last time "
318
- "in the list."
319
- msgstr "Adaugă ca ultima in listă o legatură nofollow catre pagina principală a Contextual Related Posts."
 
 
 
 
320
 
321
- #: admin/options-output.php:32
322
  msgid "Title of related posts: "
323
  msgstr "Titlul articolelor asociate:"
324
 
325
- #: admin/options-output.php:35
326
  msgid ""
327
  "This is the main heading of the related posts. You can also display the "
328
  "current post title by using <code>%postname%</code>. e.g. <code>Related "
329
  "Posts to %postname%</code>"
330
- msgstr "Acesta este titlul principal al articolelor asociate. Puteti afișa de asemenea titlul articolului curent folosind <code>%postname%</code>. Exemplu: <code>Articole asociate cu %postname%</code>"
 
 
 
331
 
332
- #: admin/options-output.php:39
333
  msgid "When there are no posts, what should be shown?"
334
  msgstr "Ce se va afișa cănd nu există articole?"
335
 
336
- #: admin/options-output.php:43
337
  msgid "Blank Output"
338
  msgstr "Afișaj gol"
339
 
340
- #: admin/options-output.php:47
341
  msgid "Display:"
342
  msgstr "Afișare:"
343
 
344
- #: admin/options-output.php:55
 
 
 
 
345
  #, php-format
346
  msgid ""
347
  "Displays the excerpt of the post. If you do not provide an explicit excerpt "
348
  "to a post (in the post editor's optional excerpt field), it will display an "
349
  "automatic excerpt which refers to the first %d words of the post's content"
350
- msgstr "Afișează extrasul articolului. Dacă nu oferiți un extras ( în câmpul opțional al editorului ), va fi generat un extras automat ce va conține primele %d cuvinte din conținutul articolului."
 
 
 
 
 
 
 
 
351
 
352
- #: admin/options-output.php:59
353
  msgid "Length of excerpt (in words): "
354
  msgstr "Lungimea extrasului (în cuvinte):"
355
 
356
- #: admin/options-output.php:65
357
  msgid "Show post author in list?"
358
  msgstr "Afișați autorul articolului în listă?"
359
 
360
- #: admin/options-output.php:68
361
  msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
362
  msgstr "Afișează numele autorului cu prefixul \"de\". Exemplu: de John Doe"
363
 
364
- #: admin/options-output.php:72
 
 
 
 
 
365
  msgid "Show post date in list?"
366
  msgstr "Afișați data articolului în listă?"
367
 
368
- #: admin/options-output.php:75
369
  msgid ""
370
  "Displays the date of the post. Uses the same date format set in General "
371
  "Options"
372
- msgstr "Afișează data articolului. Utilizează formatul setat in Opțiuni Generale."
 
373
 
374
- #: admin/options-output.php:79
 
 
 
 
 
375
  msgid "Limit post title length (in characters)"
376
  msgstr "Limita titlului articolului (în caractere)"
377
 
378
- #: admin/options-output.php:82
379
  msgid ""
380
  "Any title longer than the number of characters set above will be cut and "
381
  "appended with a &helip;"
382
- msgstr "Orice titlu mai lung decât numarul de caractere setat deasupra va fi truncheat și se va încheia cu &helip;"
 
 
383
 
384
- #: admin/options-output.php:86
385
  msgid "Open links in new window"
386
  msgstr "Se deschide într-o fereastră nouă"
387
 
388
- #: admin/options-output.php:92
389
  msgid "Add nofollow attribute to links in the list"
390
  msgstr "Adaugă atribut nofollow legăturilor din listă"
391
 
392
- #: admin/options-output.php:125
393
  msgid "Exclusion settings:"
394
  msgstr "Setări de excludere:"
395
 
396
- #: admin/options-output.php:127
397
- msgid "List of post or page IDs to exclude from the results:"
398
- msgstr "Listă de ID-uri de articol sau pagină de exclus din rezultate:"
399
-
400
- #: admin/options-output.php:129 admin/options-output.php:135
401
- msgid ""
402
- "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
403
- msgstr "Listă separată prin virgulă a ID-urilor de articol, pagină sau tip de articol personalizat. Exemplu: 188,320,500"
404
-
405
- #: admin/options-output.php:132
406
  msgid "Exclude display of related posts on these posts / pages"
407
  msgstr "Exclude afișarea articolelor asociate pentru aceste articole / pagini"
408
 
409
- #: admin/options-output.php:138
410
- msgid "Categories to exclude from the results: "
411
- msgstr "Categorii de exclus din rezultate:"
412
-
413
- #: admin/options-output.php:154
414
- msgid ""
415
- "Comma separated list of category slugs. The field above has an autocomplete "
416
- "so simply start typing in the beginning of your category name and it will "
417
- "prompt you with options."
418
- msgstr "Listă separata prin virgulă de slug-uri de categorie. Câmpul de deasupra utilizează autocompletare, asa că începeți să tastați numele categoriei dorite și vi se vor afișa opțiunile."
419
-
420
- #: admin/options-output.php:157
421
  msgid "Exclude display of related posts on these post types."
422
- msgstr "Exclude afișarea articolelor asociate pentru aceste tipuri de articole."
 
423
 
424
- #: admin/options-output.php:166
425
  msgid ""
426
  "The related posts will not display on any of the above selected post types"
427
- msgstr "Articolele asociate nu vor fi afișate pentru niciunul dintre tipurile de articole selectate mai sus"
 
 
428
 
429
- #: admin/options-output.php:196
430
  msgid "Customize the output:"
431
  msgstr "Personalizați afișajul:"
432
 
433
- #: admin/options-output.php:198
434
  msgid "HTML to display before the list of posts: "
435
  msgstr "Cod HTML de afișat înaintea listei de articole:"
436
 
437
- #: admin/options-output.php:201
438
  msgid "HTML to display before each list item: "
439
  msgstr "Cod HTML de afișat înaintea fiecarei intrari din listă:"
440
 
441
- #: admin/options-output.php:204
442
  msgid "HTML to display after each list item: "
443
  msgstr "Cod HTML de afișat după fiecare intrare din listă:"
444
 
445
- #: admin/options-output.php:207
446
  msgid "HTML to display after the list of posts: "
447
  msgstr "Cod HTML de afișat după lista de articole:"
448
 
449
- #: admin/options-output.php:237
450
- msgid "Post thumbnail options:"
451
- msgstr "Opțiuni imagine miniatură:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
452
 
453
- #: admin/options-output.php:261
454
  msgid ""
455
- "Contextual Related Posts adds a new image size with the below dimensions."
 
456
  msgstr ""
457
 
458
- #: admin/options-output.php:262
 
 
 
 
 
 
 
 
459
  msgid ""
460
- "If you change the width and/or height below, existing images will not be "
461
- "automatically resized."
 
462
  msgstr ""
463
 
464
- #: admin/options-output.php:263
 
 
 
 
 
 
465
  #, php-format
466
  msgid ""
467
- "I recommend using <a href='%s' target='_blank'>Force Regenerate "
468
- "Thumbnails</a> to regenerate all image sizes."
 
469
  msgstr ""
470
 
471
- #: admin/options-output.php:267
472
- msgid "Maximum width of the thumbnail:"
473
  msgstr ""
474
 
475
- #: admin/options-output.php:274
476
- msgid ""
477
- "Since you're using the default styles set under the Custom Styles section, "
478
- "the width and height is fixed at 150px"
479
- msgstr "Deoarece utilizați stilurile predefinite setate în secțiunea Stiluri Personalizate, lățimea și înalțimea sunt fixe, de 150px"
480
 
481
- #: admin/options-output.php:278
482
  msgid "Crop mode:"
483
  msgstr ""
484
 
485
- #: admin/options-output.php:282
486
  msgid ""
487
- "By default, thumbnails will be proportionately cropped. Check this box to "
488
- "hard crop the thumbnails."
489
  msgstr ""
490
 
491
- #: admin/options-output.php:283
492
  #, php-format
493
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
494
  msgstr ""
495
 
496
- #: admin/options-output.php:287
 
 
 
 
 
 
497
  msgid "Style attributes / Width and Height HTML attributes:"
498
  msgstr "Atribute de stil / Atribute HTML de lățime și înălțime:"
499
 
500
- #: admin/options-output.php:291
501
  msgid "Style attributes are used for width and height."
502
  msgstr "Atributele de stil sunt folosite pentru lățime și înălțime."
503
 
504
- #: admin/options-output.php:295
505
  msgid "HTML width and height attributes are used for width and height."
506
- msgstr "Atributele HTML de lătime și înălțime sunt folosite pentru lățime și înălțime."
507
-
508
- #: admin/options-output.php:299
509
- msgid "Use timthumb to generate thumbnails? "
510
- msgstr "Folosiți timthumb pentru a genera imaginile miniatură?"
511
-
512
- #: admin/options-output.php:301
513
- msgid ""
514
- "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
515
- "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
516
- msgstr "Dacă bifați, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" target=\"_blank\">timthumb</a> va fi folosit pentru a genera imaginile miniatură"
517
-
518
- #: admin/options-output.php:304
519
- msgid "Quality of thumbnails generated by timthumb:"
520
- msgstr "Calitatea imaginilor miniatură generate de timthumb:"
521
-
522
- #: admin/options-output.php:307
523
- msgid ""
524
- "Enter values between 0 and 100 only. 100 is highest quality and the highest "
525
- "file size. Suggested maximum value is 95. CRP default is 75."
526
- msgstr "Introduceți doar valori cuprinse între 0 și 100. 100 este cea mai mare calitate și cea mai mare dimensiune de fișier. Sugerăm 95, predefinit este 75."
527
 
528
- #: admin/options-output.php:310
529
  msgid "Post thumbnail meta field name:"
530
  msgstr "Numele câmpului meta al imaginii miniatură a articolului:"
531
 
532
- #: admin/options-output.php:312
533
  msgid ""
534
  "The value of this field should contain the image source and is set in the "
535
  "<em>Add New Post</em> screen"
536
- msgstr "Valoarea acestui câmp ar trebui să conțină sursa imaginii și este setată in ecranul de <em>Adaugare articol nou</em>"
 
 
537
 
538
- #: admin/options-output.php:315
539
  msgid "Extract the first image from the post?"
540
  msgstr "Extrageți prima imagine din articol?"
541
 
542
- #: admin/options-output.php:317
543
  msgid ""
544
  "This will only happen if there is no post thumbnail set and no image URL is "
545
  "specified in the meta field."
546
- msgstr "Asta se va întâmpla doar daca nu exista o imagine miniatură setata și nu a fost specificată adresa URL a unei imagini in câmpul meta."
 
 
547
 
548
- #: admin/options-output.php:320
549
  msgid "Use default thumbnail?"
550
  msgstr "Folosiți imaginea miniatură predefinită?"
551
 
552
- #: admin/options-output.php:322
553
  msgid ""
554
  "If checked, when no thumbnail is found, show a default one from the URL "
555
  "below. If not checked and no thumbnail is found, no image will be shown."
556
- msgstr "Daca bifați, cand nu se găsește o imagine miniatură, va fi afișată una de la adresa URL de mai jos. Daca nu bifați și nu se găsește o imagine miniatură, nicio imagine nu va fi afișată."
 
 
 
557
 
558
- #: admin/options-output.php:325
559
  msgid "Default thumbnail:"
560
  msgstr "Imagine miniatură predefinită:"
561
 
562
- #: admin/options-output.php:328
563
  msgid ""
564
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
565
  "then it will check the meta field. If this is not available, then it will "
566
  "show the default image as specified above."
567
- msgstr "Modului va verifica întâi dacă articolul conține o imagine miniatură. Dacă nu, va verifica câmpul meta. Dacă acesta nu este disponibil, va afișa imaginea predefinită specificată mai deasupra."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
568
 
569
  #: admin/sidebar-view.php:20
570
  msgid "Support the development"
@@ -586,103 +686,118 @@ msgstr "Trimiteți donația dumneavoastră autorului"
586
  msgid "Follow me"
587
  msgstr "Urmăriți-mă"
588
 
589
- #: admin/sidebar-view.php:52
590
  msgid "Quick links"
591
  msgstr "Legături rapide"
592
 
593
- #: admin/sidebar-view.php:56
594
  msgid "Contextual Related Posts plugin page"
595
  msgstr "Pagina modulului Contextual Related Posts"
596
 
597
- #: admin/sidebar-view.php:57
598
  msgid "FAQ"
599
  msgstr "Întrebări/Răspunsuri"
600
 
601
- #: admin/sidebar-view.php:59
602
  msgid "Reviews"
603
  msgstr "Recenzii"
604
 
605
- #: admin/sidebar-view.php:60
606
  msgid "Github repository"
607
  msgstr "Depozit Github"
608
 
609
- #: admin/sidebar-view.php:61
610
  msgid "Other plugins"
611
  msgstr "Alte module"
612
 
613
- #: admin/sidebar-view.php:62
614
  msgid "Ajay's blog"
615
  msgstr "Blogul lui Ajay"
616
 
617
- #: contextual-related-posts.php:246
618
  msgid " by "
619
  msgstr "de"
620
 
621
- #: contextual-related-posts.php:285
622
  #, php-format
623
  msgid "Powered by <a href=\"%s\" rel=\"nofollow\">Contextual Related Posts</a>"
624
  msgstr ""
625
 
626
- #: contextual-related-posts.php:596
627
  msgid "Related Posts [CRP]"
628
  msgstr "Articole asociate [AAC]"
629
 
630
- #: contextual-related-posts.php:597
631
  msgid "Display Related Posts"
632
  msgstr "Afișați articolele asociate"
633
 
634
- #: contextual-related-posts.php:620
635
  msgid "Title"
636
  msgstr "Titlu"
637
 
638
- #: contextual-related-posts.php:625
639
  msgid "No. of posts"
640
  msgstr "Numărul de articole"
641
 
642
- #: contextual-related-posts.php:630
643
  msgid " Show excerpt?"
644
  msgstr "Afișați extrasul?"
645
 
646
- #: contextual-related-posts.php:635
647
  msgid " Show author?"
648
  msgstr "Afișați autorul?"
649
 
650
- #: contextual-related-posts.php:640
651
  msgid " Show date?"
652
  msgstr "Afișați data?"
653
 
654
- #: contextual-related-posts.php:644
655
- msgid "Thumbnail options"
656
- msgstr "Opțiuni imagini miniatură"
657
-
658
- #: contextual-related-posts.php:646
659
  msgid "Thumbnails inline, before title"
660
  msgstr "Imagini miniatură în linie, înaintea titlului"
661
 
662
- #: contextual-related-posts.php:647
663
  msgid "Thumbnails inline, after title"
664
  msgstr "Imagini miniatură în linie, după titlu"
665
 
666
- #: contextual-related-posts.php:648
667
  msgid "Only thumbnails, no text"
668
  msgstr "Doar imagini miniatură, fară text"
669
 
670
- #: contextual-related-posts.php:649
671
  msgid "No thumbnails, only text."
672
  msgstr "Fară imagini miniatură, doar text"
673
 
674
- #: contextual-related-posts.php:654
675
  msgid "Thumbnail height"
676
  msgstr "Inălțime imagine miniatură"
677
 
678
- #: contextual-related-posts.php:659
679
  msgid "Thumbnail width"
680
  msgstr "Lățime imagine miniatură"
681
 
682
- #: contextual-related-posts.php:799
683
  msgid "<h3>Related Posts:</h3>"
684
  msgstr "<h3>Articole asociate:</h3>"
685
 
686
- #: contextual-related-posts.php:801
687
  msgid "No related posts found"
688
  msgstr "Nu au fost găsite articole asociate"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #
2
  # Translators:
3
  # Alex Cristache <alex@qbkl.net>, 2014
4
  msgid ""
5
  msgstr ""
6
  "Project-Id-Version: Contextual Related Posts\n"
7
  "Report-Msgid-Bugs-To: \n"
8
+ "POT-Creation-Date: 2015-05-09 22:24-0000\n"
9
+ "PO-Revision-Date: 2015-05-09 22:24-0000\n"
10
+ "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
11
+ "Language-Team: Romanian (Romania) (http://www.transifex.com/projects/p/"
12
+ "contextual-related-posts/language/ro_RO/)\n"
13
+ "Language: ro_RO\n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
+ "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
18
+ "2:1));\n"
19
+ "X-Generator: Poedit 1.7.1\n"
20
  "X-Poedit-Basepath: ../\n"
21
  "X-Poedit-KeywordsList: __;_e;_c;__ngettext\n"
22
+ "X-Poedit-SourceCharset: UTF-8\n"
23
  "X-Poedit-SearchPath-0: .\n"
24
 
25
+ #: admin/admin.php:166
26
  msgid "Options saved successfully."
27
  msgstr "Opțiuni salvate cu succes."
28
 
29
+ #: admin/admin.php:169
30
+ msgid ""
31
+ "Default styles selected. Thumbnail width, height and crop settings have been "
32
+ "fixed. Author, Excerpt and Date will not be displayed."
33
+ msgstr ""
34
+
35
+ #: admin/admin.php:194
36
  msgid "Options set to Default."
37
  msgstr "Opțiuni setate ca predefinite."
38
 
39
+ #: admin/admin.php:205
40
  msgid "Index recreated"
41
  msgstr "Index recreat"
42
 
43
+ #: admin/admin.php:222 admin/admin.php:453 admin/main-view.php:20
44
  msgid "Contextual Related Posts"
45
  msgstr "Contextual Related Posts"
46
 
47
+ #: admin/admin.php:223
48
  msgid "Related Posts"
49
  msgstr "Articole asociate"
50
 
51
+ #: admin/admin.php:338
52
  msgid "Settings"
53
  msgstr "Setări"
54
 
55
+ #: admin/admin.php:360 admin/sidebar-view.php:59
56
  msgid "Support"
57
  msgstr "Asistenţă"
58
 
59
+ #: admin/admin.php:361
60
  msgid "Donate"
61
  msgstr "Donați"
62
 
63
+ #: admin/admin.php:362
64
  msgid "Contribute"
65
  msgstr ""
66
 
67
+ #: admin/admin.php:378
68
  msgid "plugin settings page"
69
  msgstr "pagina de setări ale modulului"
70
 
71
+ #: admin/admin.php:422
72
  msgid ""
73
+ "An error occurred clearing the cache. Please contact your site administrator."
74
+ "\\n\\nError message:\\n"
75
+ msgstr ""
76
+ "A apărut o eroare în timpul golirii cache-ului. Vă rugăm să contactați "
77
+ "administratorul site-ului.\\n\\nMesaj de eroare:\\n"
78
 
79
+ #: admin/admin.php:427
80
  msgid " cached row(s) cleared"
81
  msgstr "rând(uri) cache golit(e)"
82
 
83
+ #: admin/admin.php:480
84
  msgid "Location of thumbnail:"
85
  msgstr "Poziția imaginii miniatură:"
86
 
87
+ #: admin/admin.php:482
88
  msgid ""
89
  "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
90
  "image will be used for the post. It will be resized to the thumbnail size "
91
  "set under Settings &raquo; Related Posts &raquo; Output Options"
92
+ msgstr ""
93
+ "Introduceți adresa URL completa a imaginii (JPG, PNG sau GIF) pe care "
94
+ "dorițti sa o utilizați. Această imagine va fi folosită pentru articol. Va fi "
95
+ "redimensionată la dimensiunile imaginii miniatura, setate in sectiunea "
96
+ "\"Setări &raquo; Articole asociate &raquo; Opțiuni afișaj\"."
97
 
98
+ #: admin/admin.php:483
99
  msgid "The URL above is saved in the meta field: "
100
  msgstr "Adresa URL de mai sus este salvată în câmpul meta:"
101
 
102
+ #: admin/main-view.php:32 admin/main-view.php:54
103
  msgid "General options"
104
  msgstr "Opțiuni generale"
105
 
106
+ #: admin/main-view.php:33 admin/main-view.php:125
107
+ msgid "List tuning options"
108
+ msgstr ""
109
+
110
+ #: admin/main-view.php:34 admin/main-view.php:229
111
  msgid "Output options"
112
  msgstr "Opțiuni de afișare"
113
 
114
+ #: admin/main-view.php:35 admin/main-view.php:433
115
+ #: contextual-related-posts.php:718
116
+ msgid "Thumbnail options"
117
+ msgstr "Opțiuni imagini miniatură"
118
+
119
+ #: admin/main-view.php:36 admin/main-view.php:580
120
  msgid "Feed options"
121
  msgstr "Opțiuni flux"
122
 
123
+ #: admin/main-view.php:37 admin/main-view.php:652
124
  msgid "Custom styles"
125
  msgstr "Stiluri personalizate"
126
 
127
+ #: admin/main-view.php:70
128
+ msgid "Cache output?"
129
+ msgstr "Afișare Cache?"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
130
 
131
+ #: admin/main-view.php:72
132
  msgid ""
133
+ "Enabling this option will cache the related posts output when the post is "
134
+ "visited the first time. The cache is cleaned when you save this page."
135
  msgstr ""
136
+ "Activarea acestei opțiuni va memora afișarea articolelor asociate cand "
137
+ "articolul va fi vizitat pentru prima dată. Cache-ul este golit când salvați "
138
+ "această pagină."
139
 
140
+ #: admin/main-view.php:73
141
+ msgid "Clear cache"
142
+ msgstr "Golire Cache"
 
 
 
 
143
 
144
+ #: admin/main-view.php:77
145
+ msgid "Add related posts to:"
146
+ msgstr "Adaugă articolele asociate la:"
147
 
148
+ #: admin/main-view.php:79
149
+ msgid "Posts"
150
+ msgstr "Articole"
 
 
 
151
 
152
+ #: admin/main-view.php:80
153
+ msgid "Pages"
154
+ msgstr "Pagini"
 
 
 
155
 
156
+ #: admin/main-view.php:81
157
+ msgid "Home page"
158
+ msgstr "Pagina principală"
159
 
160
+ #: admin/main-view.php:82
161
+ msgid "Feeds"
162
+ msgstr "Fluxuri"
163
 
164
+ #: admin/main-view.php:83
165
+ msgid "Category archives"
166
+ msgstr "Arhive de categorii"
167
 
168
+ #: admin/main-view.php:84
169
+ msgid "Tag archives"
170
+ msgstr "Arhive de etichete"
171
 
172
+ #: admin/main-view.php:85
173
+ msgid "Other archives"
174
+ msgstr "Alte arhive"
175
 
176
+ #: admin/main-view.php:86
177
+ msgid ""
178
+ "If you choose to disable this, please add <code>&lt;?php if "
179
+ "( function_exists( 'echo_ald_crp' ) ) echo_ald_crp(); ?&gt;</code> to your "
180
+ "template file where you want it displayed"
181
+ msgstr ""
182
+ "Daca alegeți sa afișați asta, vă rugăm să adaugati <code>&lt;?php if "
183
+ "( function_exists( 'echo_ald_crp' ) ) echo_ald_crp(); ?&gt;</code> în "
184
+ "șablonul dumneavoastră în locul în care doriți afișarea"
185
 
186
+ #: admin/main-view.php:90
187
+ msgid "Content filter priority:"
188
+ msgstr "Prioritate filtru de conținut:"
189
 
190
+ #: admin/main-view.php:93
191
+ msgid ""
192
+ "A higher number will cause the content above to be processed after other "
193
+ "filters. Number below 10 is not recommended."
194
+ msgstr ""
195
+ "Un număr mare va determina procesarea conținutului de deasupra după alte "
196
+ "filtre. Nu recomandăm un numar sub 10."
197
 
198
+ #: admin/main-view.php:97
199
+ msgid "Tell the world you're using Contextual Related Posts:"
200
+ msgstr ""
201
+ "Spuneți lumii că folosiți \"Contextual Related Posts / Articole Asociate "
202
+ "Contextual\":"
203
 
204
+ #: admin/main-view.php:99
205
+ msgid " <em>Optional</em>"
206
+ msgstr "<em>Opțional</em>"
207
 
208
+ #: admin/main-view.php:100
209
  msgid ""
210
+ "Adds a nofollow link to Contextual Related Posts homepage as the last time "
211
+ "in the list."
212
+ msgstr ""
213
+ "Adaugă ca ultima in listă o legatură nofollow catre pagina principală a "
214
+ "Contextual Related Posts."
215
 
216
+ #: admin/main-view.php:118 admin/main-view.php:222 admin/main-view.php:426
217
+ #: admin/main-view.php:573 admin/main-view.php:645 admin/main-view.php:709
218
+ msgid "Save Options"
219
+ msgstr "Salvați opțiunile"
220
 
221
+ #: admin/main-view.php:141 admin/main-view.php:598
222
+ msgid "Number of related posts to display: "
223
+ msgstr "Numărul de articole asociate de afișat."
224
+
225
+ #: admin/main-view.php:144
226
  msgid ""
227
  "Maximum number of posts that will be displayed. The actual number may be "
228
  "smaller if less related posts are found."
229
+ msgstr ""
230
+ "Numărul maxim de articole de afișat. Numărul real poate fi mai mic daca se "
231
+ "vor găsi mai puține articole asociate."
232
 
233
+ #: admin/main-view.php:148
234
  msgid "Related posts should be newer than:"
235
  msgstr "Articolele asociate trebuie să fie mai noi decât:"
236
 
237
+ #: admin/main-view.php:150
238
  msgid "days"
239
  msgstr "zile"
240
 
241
+ #: admin/main-view.php:151
242
  msgid ""
243
  "This sets the cutoff period for which posts will be displayed. e.g. setting "
244
+ "it to 365 will show related posts from the last year only. Set it to 0 to "
245
+ "disable limiting posts."
246
+ msgstr ""
 
 
 
 
 
 
 
 
247
 
248
+ #: admin/main-view.php:155
249
  msgid "Find related posts based on content as well as title:"
250
  msgstr "Gasește articole asociate pe baza conținutului și titlului:"
251
 
252
+ #: admin/main-view.php:157
253
  msgid ""
254
+ "If unchecked, only posts titles are used. I recommend using a caching plugin "
255
+ "or enabling \"Cache output\" above if you enable this."
256
+ msgstr ""
257
+ "Dacă nu bifați, doar titlurile articolelor vor fi folosite. Recomandăm "
258
+ "utilizarea unui modul de Cache sau activarea \"Ieșirii Cache\" de mai sus "
259
+ "dacă alegeti să bifați aici."
260
 
261
+ #: admin/main-view.php:161
262
  msgid "Limit content to be compared"
263
  msgstr "Limitare conținut pentru comparație"
264
 
265
+ #: admin/main-view.php:163
266
  msgid ""
267
  "This sets the maximum words of the content that will be matched. 0 means no "
268
  "limit."
269
+ msgstr ""
270
+ "Setează numărul maxim de cuvinte din conținut pentru comparare. 0 inseamnă "
271
+ "'fară limită'."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
272
 
273
+ #: admin/main-view.php:167
274
+ msgid "Post types to include in results:"
275
+ msgstr "Tipuri de articole incluse în rezultate:"
276
 
277
+ #: admin/main-view.php:178
278
  msgid ""
279
+ "These post types will be displayed in the list. Includes custom post types."
280
+ msgstr ""
281
+ "Aceste tipuri de articole vor fi afișate în listă. Include tipurile de "
282
+ "articole personalizate."
283
 
284
+ #: admin/main-view.php:182
285
+ msgid "List of post or page IDs to exclude from the results:"
286
+ msgstr "Listă de ID-uri de articol sau pagină de exclus din rezultate:"
287
 
288
+ #: admin/main-view.php:184 admin/main-view.php:355
289
  msgid ""
290
+ "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
291
+ msgstr ""
292
+ "Listă separată prin virgulă a ID-urilor de articol, pagină sau tip de "
293
+ "articol personalizat. Exemplu: 188,320,500"
 
 
 
294
 
295
+ #: admin/main-view.php:188
296
+ msgid "Categories to exclude from the results: "
297
+ msgstr "Categorii de exclus din rezultate:"
298
 
299
+ #: admin/main-view.php:204
300
  msgid ""
301
+ "Comma separated list of category slugs. The field above has an autocomplete "
302
+ "so simply start typing in the beginning of your category name and it will "
303
+ "prompt you with options."
304
+ msgstr ""
305
+ "Listă separata prin virgulă de slug-uri de categorie. Câmpul de deasupra "
306
+ "utilizează autocompletare, asa că începeți să tastați numele categoriei "
307
+ "dorite și vi se vor afișa opțiunile."
308
 
309
+ #: admin/main-view.php:245
310
  msgid "Title of related posts: "
311
  msgstr "Titlul articolelor asociate:"
312
 
313
+ #: admin/main-view.php:248
314
  msgid ""
315
  "This is the main heading of the related posts. You can also display the "
316
  "current post title by using <code>%postname%</code>. e.g. <code>Related "
317
  "Posts to %postname%</code>"
318
+ msgstr ""
319
+ "Acesta este titlul principal al articolelor asociate. Puteti afișa de "
320
+ "asemenea titlul articolului curent folosind <code>%postname%</code>. "
321
+ "Exemplu: <code>Articole asociate cu %postname%</code>"
322
 
323
+ #: admin/main-view.php:252
324
  msgid "When there are no posts, what should be shown?"
325
  msgstr "Ce se va afișa cănd nu există articole?"
326
 
327
+ #: admin/main-view.php:256
328
  msgid "Blank Output"
329
  msgstr "Afișaj gol"
330
 
331
+ #: admin/main-view.php:260
332
  msgid "Display:"
333
  msgstr "Afișare:"
334
 
335
+ #: admin/main-view.php:265 admin/main-view.php:601
336
+ msgid "Show post excerpt in list?"
337
+ msgstr "Arată extrasul articolului in listă?"
338
+
339
+ #: admin/main-view.php:268
340
  #, php-format
341
  msgid ""
342
  "Displays the excerpt of the post. If you do not provide an explicit excerpt "
343
  "to a post (in the post editor's optional excerpt field), it will display an "
344
  "automatic excerpt which refers to the first %d words of the post's content"
345
+ msgstr ""
346
+ "Afișează extrasul articolului. Dacă nu oferiți un extras ( în câmpul "
347
+ "opțional al editorului ), va fi generat un extras automat ce va conține "
348
+ "primele %d cuvinte din conținutul articolului."
349
+
350
+ #: admin/main-view.php:271
351
+ msgid ""
352
+ "Default style selected under the Custom Styles. Excerpt display is disabled."
353
+ msgstr ""
354
 
355
+ #: admin/main-view.php:276
356
  msgid "Length of excerpt (in words): "
357
  msgstr "Lungimea extrasului (în cuvinte):"
358
 
359
+ #: admin/main-view.php:282
360
  msgid "Show post author in list?"
361
  msgstr "Afișați autorul articolului în listă?"
362
 
363
+ #: admin/main-view.php:285
364
  msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
365
  msgstr "Afișează numele autorului cu prefixul \"de\". Exemplu: de John Doe"
366
 
367
+ #: admin/main-view.php:288
368
+ msgid ""
369
+ "Default style selected under the Custom Styles. Author display is disabled."
370
+ msgstr ""
371
+
372
+ #: admin/main-view.php:293
373
  msgid "Show post date in list?"
374
  msgstr "Afișați data articolului în listă?"
375
 
376
+ #: admin/main-view.php:296
377
  msgid ""
378
  "Displays the date of the post. Uses the same date format set in General "
379
  "Options"
380
+ msgstr ""
381
+ "Afișează data articolului. Utilizează formatul setat in Opțiuni Generale."
382
 
383
+ #: admin/main-view.php:299
384
+ msgid ""
385
+ "Default style selected under the Custom Styles. Date display is disabled."
386
+ msgstr ""
387
+
388
+ #: admin/main-view.php:304
389
  msgid "Limit post title length (in characters)"
390
  msgstr "Limita titlului articolului (în caractere)"
391
 
392
+ #: admin/main-view.php:307
393
  msgid ""
394
  "Any title longer than the number of characters set above will be cut and "
395
  "appended with a &helip;"
396
+ msgstr ""
397
+ "Orice titlu mai lung decât numarul de caractere setat deasupra va fi "
398
+ "truncheat și se va încheia cu &helip;"
399
 
400
+ #: admin/main-view.php:311
401
  msgid "Open links in new window"
402
  msgstr "Se deschide într-o fereastră nouă"
403
 
404
+ #: admin/main-view.php:317
405
  msgid "Add nofollow attribute to links in the list"
406
  msgstr "Adaugă atribut nofollow legăturilor din listă"
407
 
408
+ #: admin/main-view.php:350
409
  msgid "Exclusion settings:"
410
  msgstr "Setări de excludere:"
411
 
412
+ #: admin/main-view.php:352
 
 
 
 
 
 
 
 
 
413
  msgid "Exclude display of related posts on these posts / pages"
414
  msgstr "Exclude afișarea articolelor asociate pentru aceste articole / pagini"
415
 
416
+ #: admin/main-view.php:358
 
 
 
 
 
 
 
 
 
 
 
417
  msgid "Exclude display of related posts on these post types."
418
+ msgstr ""
419
+ "Exclude afișarea articolelor asociate pentru aceste tipuri de articole."
420
 
421
+ #: admin/main-view.php:367
422
  msgid ""
423
  "The related posts will not display on any of the above selected post types"
424
+ msgstr ""
425
+ "Articolele asociate nu vor fi afișate pentru niciunul dintre tipurile de "
426
+ "articole selectate mai sus"
427
 
428
+ #: admin/main-view.php:397
429
  msgid "Customize the output:"
430
  msgstr "Personalizați afișajul:"
431
 
432
+ #: admin/main-view.php:399
433
  msgid "HTML to display before the list of posts: "
434
  msgstr "Cod HTML de afișat înaintea listei de articole:"
435
 
436
+ #: admin/main-view.php:402
437
  msgid "HTML to display before each list item: "
438
  msgstr "Cod HTML de afișat înaintea fiecarei intrari din listă:"
439
 
440
+ #: admin/main-view.php:405
441
  msgid "HTML to display after each list item: "
442
  msgstr "Cod HTML de afișat după fiecare intrare din listă:"
443
 
444
+ #: admin/main-view.php:408
445
  msgid "HTML to display after the list of posts: "
446
  msgstr "Cod HTML de afișat după lista de articole:"
447
 
448
+ #: admin/main-view.php:449 admin/main-view.php:604
449
+ msgid "Location of post thumbnail:"
450
+ msgstr "Poziția imaginii miniatură:"
451
+
452
+ #: admin/main-view.php:453 admin/main-view.php:608
453
+ msgid "Display thumbnails inline with posts, before title"
454
+ msgstr "Afișează imagini miniatură în linie cu articolele, înaintea titlului"
455
+
456
+ #: admin/main-view.php:457 admin/main-view.php:612
457
+ msgid "Display thumbnails inline with posts, after title"
458
+ msgstr "Afișează imagini miniatură în linie cu articolele, după titlu"
459
+
460
+ #: admin/main-view.php:461 admin/main-view.php:616
461
+ msgid "Display only thumbnails, no text"
462
+ msgstr "Afișează doar imagini miniatură, fără text"
463
+
464
+ #: admin/main-view.php:465 admin/main-view.php:620
465
+ msgid "Do not display thumbnails, only text."
466
+ msgstr "Nu afișează imagini miniatură, doar text."
467
 
468
+ #: admin/main-view.php:468
469
  msgid ""
470
+ "Default style selected under the Custom Styles. Location of thumbnail forced "
471
+ "to be inline before title"
472
  msgstr ""
473
 
474
+ #: admin/main-view.php:472
475
+ msgid "Thumbnail size:"
476
+ msgstr ""
477
+
478
+ #: admin/main-view.php:496
479
+ msgid "Custom size"
480
+ msgstr ""
481
+
482
+ #: admin/main-view.php:499
483
  msgid ""
484
+ "You can choose from existing image sizes above or create a custom size. If "
485
+ "you have chosen Custom size above, then enter the width, height and crop "
486
+ "settings below. For best results, use a cropped image."
487
  msgstr ""
488
 
489
+ #: admin/main-view.php:500
490
+ msgid ""
491
+ "If you change the width, height or crop mode below, existing images will not "
492
+ "be automatically resized."
493
+ msgstr ""
494
+
495
+ #: admin/main-view.php:501
496
  #, php-format
497
  msgid ""
498
+ "I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
499
+ "a> or <a href='%s' class='thickbox'>Regenerate Thumbnails</a> to regenerate "
500
+ "all image sizes."
501
  msgstr ""
502
 
503
+ #: admin/main-view.php:505
504
+ msgid "Width of the thumbnail:"
505
  msgstr ""
506
 
507
+ #: admin/main-view.php:508
508
+ msgid "Height of the thumbnail: "
509
+ msgstr ""
 
 
510
 
511
+ #: admin/main-view.php:513
512
  msgid "Crop mode:"
513
  msgstr ""
514
 
515
+ #: admin/main-view.php:517
516
  msgid ""
517
+ "By default, thumbnails will be hard cropped. Uncheck this box to "
518
+ "proportionately/soft crop the thumbnails."
519
  msgstr ""
520
 
521
+ #: admin/main-view.php:518
522
  #, php-format
523
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
524
  msgstr ""
525
 
526
+ #: admin/main-view.php:521
527
+ msgid ""
528
+ "Default style selected under the Custom Styles. Thumbnail width and height "
529
+ "is fixed at 150px and crop mode is enabled."
530
+ msgstr ""
531
+
532
+ #: admin/main-view.php:525
533
  msgid "Style attributes / Width and Height HTML attributes:"
534
  msgstr "Atribute de stil / Atribute HTML de lățime și înălțime:"
535
 
536
+ #: admin/main-view.php:529
537
  msgid "Style attributes are used for width and height."
538
  msgstr "Atributele de stil sunt folosite pentru lățime și înălțime."
539
 
540
+ #: admin/main-view.php:533
541
  msgid "HTML width and height attributes are used for width and height."
542
+ msgstr ""
543
+ "Atributele HTML de lătime și înălțime sunt folosite pentru lățime și "
544
+ "înălțime."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
545
 
546
+ #: admin/main-view.php:537
547
  msgid "Post thumbnail meta field name:"
548
  msgstr "Numele câmpului meta al imaginii miniatură a articolului:"
549
 
550
+ #: admin/main-view.php:539
551
  msgid ""
552
  "The value of this field should contain the image source and is set in the "
553
  "<em>Add New Post</em> screen"
554
+ msgstr ""
555
+ "Valoarea acestui câmp ar trebui să conțină sursa imaginii și este setată in "
556
+ "ecranul de <em>Adaugare articol nou</em>"
557
 
558
+ #: admin/main-view.php:542
559
  msgid "Extract the first image from the post?"
560
  msgstr "Extrageți prima imagine din articol?"
561
 
562
+ #: admin/main-view.php:544
563
  msgid ""
564
  "This will only happen if there is no post thumbnail set and no image URL is "
565
  "specified in the meta field."
566
+ msgstr ""
567
+ "Asta se va întâmpla doar daca nu exista o imagine miniatură setata și nu a "
568
+ "fost specificată adresa URL a unei imagini in câmpul meta."
569
 
570
+ #: admin/main-view.php:547
571
  msgid "Use default thumbnail?"
572
  msgstr "Folosiți imaginea miniatură predefinită?"
573
 
574
+ #: admin/main-view.php:549
575
  msgid ""
576
  "If checked, when no thumbnail is found, show a default one from the URL "
577
  "below. If not checked and no thumbnail is found, no image will be shown."
578
+ msgstr ""
579
+ "Daca bifați, cand nu se găsește o imagine miniatură, va fi afișată una de la "
580
+ "adresa URL de mai jos. Daca nu bifați și nu se găsește o imagine miniatură, "
581
+ "nicio imagine nu va fi afișată."
582
 
583
+ #: admin/main-view.php:552
584
  msgid "Default thumbnail:"
585
  msgstr "Imagine miniatură predefinită:"
586
 
587
+ #: admin/main-view.php:555
588
  msgid ""
589
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
590
  "then it will check the meta field. If this is not available, then it will "
591
  "show the default image as specified above."
592
+ msgstr ""
593
+ "Modului va verifica întâi dacă articolul conține o imagine miniatură. Dacă "
594
+ "nu, va verifica câmpul meta. Dacă acesta nu este disponibil, va afișa "
595
+ "imaginea predefinită specificată mai deasupra."
596
+
597
+ #: admin/main-view.php:596
598
+ msgid ""
599
+ "Below options override the related posts settings for your blog feed. These "
600
+ "only apply if you have selected to add related posts to Feeds in the General "
601
+ "Options tab."
602
+ msgstr ""
603
+ "Opțiunile de mai jos suprascriu setările de articole asociate pentru fluxul "
604
+ "blogului. Acestea se aplică doar dacă ați selectat adăugarea articolelor "
605
+ "asociatele la Flux in sectiunea de Setări Generale."
606
+
607
+ #: admin/main-view.php:624
608
+ msgid "Maximum width of the thumbnail: "
609
+ msgstr "Lățimea maximă a imaginii miniatură:"
610
+
611
+ #: admin/main-view.php:627
612
+ msgid "Maximum height of the thumbnail: "
613
+ msgstr "Înălțimea maximăa a imaginii miniatură:"
614
+
615
+ #: admin/main-view.php:668
616
+ msgid "Use default style included in the plugin?"
617
+ msgstr "Utilizați stilurile predefinite incluse în modul?"
618
+
619
+ #: admin/main-view.php:671
620
+ msgid ""
621
+ "Contextual Related Posts includes a default style that makes your popular "
622
+ "posts list to look beautiful. Check the box above if you want to use this."
623
+ msgstr ""
624
+
625
+ #: admin/main-view.php:672
626
+ msgid ""
627
+ "Enabling this option will turn on the thumbnails and set their width and "
628
+ "height to 150px. It will also turn off the display of the author, excerpt "
629
+ "and date if already enabled. Disabling this option will not revert any "
630
+ "settings."
631
+ msgstr ""
632
+
633
+ #: admin/main-view.php:673
634
+ #, php-format
635
+ msgid ""
636
+ "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
637
+ msgstr ""
638
+
639
+ #: admin/main-view.php:676
640
+ msgid "Custom CSS to add to header:"
641
+ msgstr "Cod CSS personalizat de adăugat în header:"
642
+
643
+ #: admin/main-view.php:680
644
+ msgid ""
645
+ "Do not include <code>style</code> tags. Check out the <a href=\"http://"
646
+ "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
647
+ "\">FAQ</a> for available CSS classes to style."
648
+ msgstr ""
649
+ "Nu includeți etichete de <code>stil</code>. Verificați secțiunea de <a href="
650
+ "\"http://wordpress.org/extend/plugins/contextual-related-posts/faq/\" target="
651
+ "\"_blank\">Întrebări / Răspunsuri</a> pentru clasele disponibile stilizării."
652
+
653
+ #: admin/main-view.php:710
654
+ msgid "Default Options"
655
+ msgstr "Opțiuni predefinite"
656
+
657
+ #: admin/main-view.php:710
658
+ msgid "Do you want to set options to Default?"
659
+ msgstr "Doriți încărcarea opțiunilor predefinite?"
660
+
661
+ #: admin/main-view.php:711
662
+ msgid "Recreate Index"
663
+ msgstr "Recreare index"
664
+
665
+ #: admin/main-view.php:711
666
+ msgid "Are you sure you want to recreate the index?"
667
+ msgstr "Sunteți sigur că doriți recrearea indexului?"
668
 
669
  #: admin/sidebar-view.php:20
670
  msgid "Support the development"
686
  msgid "Follow me"
687
  msgstr "Urmăriți-mă"
688
 
689
+ #: admin/sidebar-view.php:53
690
  msgid "Quick links"
691
  msgstr "Legături rapide"
692
 
693
+ #: admin/sidebar-view.php:57
694
  msgid "Contextual Related Posts plugin page"
695
  msgstr "Pagina modulului Contextual Related Posts"
696
 
697
+ #: admin/sidebar-view.php:58
698
  msgid "FAQ"
699
  msgstr "Întrebări/Răspunsuri"
700
 
701
+ #: admin/sidebar-view.php:60
702
  msgid "Reviews"
703
  msgstr "Recenzii"
704
 
705
+ #: admin/sidebar-view.php:61
706
  msgid "Github repository"
707
  msgstr "Depozit Github"
708
 
709
+ #: admin/sidebar-view.php:62
710
  msgid "Other plugins"
711
  msgstr "Alte module"
712
 
713
+ #: admin/sidebar-view.php:63
714
  msgid "Ajay's blog"
715
  msgstr "Blogul lui Ajay"
716
 
717
+ #: contextual-related-posts.php:250
718
  msgid " by "
719
  msgstr "de"
720
 
721
+ #: contextual-related-posts.php:289
722
  #, php-format
723
  msgid "Powered by <a href=\"%s\" rel=\"nofollow\">Contextual Related Posts</a>"
724
  msgstr ""
725
 
726
+ #: contextual-related-posts.php:670
727
  msgid "Related Posts [CRP]"
728
  msgstr "Articole asociate [AAC]"
729
 
730
+ #: contextual-related-posts.php:671
731
  msgid "Display Related Posts"
732
  msgstr "Afișați articolele asociate"
733
 
734
+ #: contextual-related-posts.php:694
735
  msgid "Title"
736
  msgstr "Titlu"
737
 
738
+ #: contextual-related-posts.php:699
739
  msgid "No. of posts"
740
  msgstr "Numărul de articole"
741
 
742
+ #: contextual-related-posts.php:704
743
  msgid " Show excerpt?"
744
  msgstr "Afișați extrasul?"
745
 
746
+ #: contextual-related-posts.php:709
747
  msgid " Show author?"
748
  msgstr "Afișați autorul?"
749
 
750
+ #: contextual-related-posts.php:714
751
  msgid " Show date?"
752
  msgstr "Afișați data?"
753
 
754
+ #: contextual-related-posts.php:720
 
 
 
 
755
  msgid "Thumbnails inline, before title"
756
  msgstr "Imagini miniatură în linie, înaintea titlului"
757
 
758
+ #: contextual-related-posts.php:721
759
  msgid "Thumbnails inline, after title"
760
  msgstr "Imagini miniatură în linie, după titlu"
761
 
762
+ #: contextual-related-posts.php:722
763
  msgid "Only thumbnails, no text"
764
  msgstr "Doar imagini miniatură, fară text"
765
 
766
+ #: contextual-related-posts.php:723
767
  msgid "No thumbnails, only text."
768
  msgstr "Fară imagini miniatură, doar text"
769
 
770
+ #: contextual-related-posts.php:728
771
  msgid "Thumbnail height"
772
  msgstr "Inălțime imagine miniatură"
773
 
774
+ #: contextual-related-posts.php:733
775
  msgid "Thumbnail width"
776
  msgstr "Lățime imagine miniatură"
777
 
778
+ #: contextual-related-posts.php:897
779
  msgid "<h3>Related Posts:</h3>"
780
  msgstr "<h3>Articole asociate:</h3>"
781
 
782
+ #: contextual-related-posts.php:899
783
  msgid "No related posts found"
784
  msgstr "Nu au fost găsite articole asociate"
785
+
786
+ #: contextual-related-posts.php:1211
787
+ msgid "thumb_timthumb argument has been deprecated"
788
+ msgstr ""
789
+
790
+ #: contextual-related-posts.php:1215
791
+ msgid "thumb_timthumb_q argument has been deprecated"
792
+ msgstr ""
793
+
794
+ #: contextual-related-posts.php:1219
795
+ msgid "filter argument has been deprecated"
796
+ msgstr ""
797
+
798
+ #~ msgid ""
799
+ #~ "Since you're using the default styles set under the Custom Styles "
800
+ #~ "section, the width and height is fixed at 150px"
801
+ #~ msgstr ""
802
+ #~ "Deoarece utilizați stilurile predefinite setate în secțiunea Stiluri "
803
+ #~ "Personalizate, lățimea și înalțimea sunt fixe, de 150px"
languages/crp-ru_RU.mo CHANGED
Binary file
languages/crp-ru_RU.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-09-04 20:42-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
@@ -12,247 +12,240 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e;_c;__ngettext\n"
14
  "X-Poedit-Basepath: ../\n"
15
- "X-Generator: Poedit 1.6.9\n"
 
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin/admin.php:161
19
  msgid "Options saved successfully."
20
  msgstr "Настройки сохранены успешно."
21
 
22
- #: admin/admin.php:181
 
 
 
 
 
 
23
  msgid "Options set to Default."
24
  msgstr "Опции возвращены к стандартным"
25
 
26
- #: admin/admin.php:192
27
  msgid "Index recreated"
28
  msgstr "Индекс воссоздан"
29
 
30
- #: admin/admin.php:209 admin/admin.php:419 admin/main-view.php:20
31
  msgid "Contextual Related Posts"
32
  msgstr "Контекстные похожие посты"
33
 
34
- #: admin/admin.php:210
35
  msgid "Related Posts"
36
  msgstr "Похожие посты"
37
 
38
- #: admin/admin.php:321
39
  msgid "Settings"
40
  msgstr "Настройки"
41
 
42
- #: admin/admin.php:343 admin/sidebar-view.php:58
43
  msgid "Support"
44
  msgstr "Поддержка"
45
 
46
- #: admin/admin.php:344
47
  msgid "Donate"
48
  msgstr "Пожертвование"
49
 
50
- #: admin/admin.php:345
51
  msgid "Contribute"
52
  msgstr ""
53
 
54
- #: admin/admin.php:361
55
  #, fuzzy
56
  msgid "plugin settings page"
57
  msgstr "spraudnis iestatījumu lapa"
58
 
59
- #: admin/admin.php:395
60
  msgid ""
61
  "An error occurred clearing the cache. Please contact your site administrator."
62
  "\\n\\nError message:\\n"
63
  msgstr ""
64
 
65
- #: admin/admin.php:400
66
  msgid " cached row(s) cleared"
67
  msgstr ""
68
 
69
- #: admin/admin.php:446
70
  #, fuzzy
71
  msgid "Location of thumbnail:"
72
  msgstr "Настройки превью к записям:"
73
 
74
- #: admin/admin.php:448
75
  msgid ""
76
  "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
77
  "image will be used for the post. It will be resized to the thumbnail size "
78
  "set under Settings &raquo; Related Posts &raquo; Output Options"
79
  msgstr ""
80
 
81
- #: admin/admin.php:449
82
  msgid "The URL above is saved in the meta field: "
83
  msgstr ""
84
 
85
- #: admin/main-view.php:32 admin/main-view.php:51
86
  #, fuzzy
87
  msgid "General options"
88
  msgstr "Izejas opcijas:"
89
 
90
- #: admin/main-view.php:33 admin/main-view.php:60
 
 
 
 
91
  #, fuzzy
92
  msgid "Output options"
93
  msgstr "Izejas opcijas:"
94
 
95
- #: admin/main-view.php:34 admin/main-view.php:69
 
 
 
 
 
 
96
  #, fuzzy
97
  msgid "Feed options"
98
  msgstr "Iespējas:"
99
 
100
- #: admin/main-view.php:35 admin/main-view.php:77
101
  msgid "Custom styles"
102
  msgstr ""
103
 
104
- #: admin/main-view.php:95
105
  #, fuzzy
106
- msgid "Save Options"
107
- msgstr "Saglabāt opcijas"
 
 
 
 
 
 
 
 
 
 
108
 
109
- #: admin/main-view.php:96
110
  #, fuzzy
111
- msgid "Default Options"
112
- msgstr "noklusējuma opcijas"
113
 
114
- #: admin/main-view.php:96
115
- msgid "Do you want to set options to Default?"
116
- msgstr "Вы хотите задать параметры по умолчанию?"
 
117
 
118
- #: admin/main-view.php:97
119
  #, fuzzy
120
- msgid "Recreate Index"
121
- msgstr "Vai jūs tiešām vēlaties, lai atjaunotu indeksu?"
122
 
123
- #: admin/main-view.php:97
124
- msgid "Are you sure you want to recreate the index?"
125
- msgstr "Вы уверены, что хотите воссоздать индекс?"
 
126
 
127
- #: admin/options-custom-styles.php:32
128
- msgid "Use default style included in the plugin?"
129
  msgstr ""
130
 
131
- #: admin/options-custom-styles.php:35
132
- msgid ""
133
- "Contextual Related Posts includes a default style that makes your popular "
134
- "posts list to look beautiful. Check the box above if you want to use this."
135
  msgstr ""
136
 
137
- #: admin/options-custom-styles.php:36
138
- msgid ""
139
- "Enabling this option will turn on the thumbnails and set their width and "
140
- "height to 150px. It will also turn off the display of the author, excerpt "
141
- "and date if already enabled. Disabling this option will not revert any "
142
- "settings."
143
  msgstr ""
144
 
145
- #: admin/options-custom-styles.php:39
146
- msgid "Custom CSS to add to header:"
147
- msgstr ""
 
148
 
149
- #: admin/options-custom-styles.php:43
 
150
  msgid ""
151
- "Do not include <code>style</code> tags. Check out the <a href=\"http://"
152
- "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
153
- "\">FAQ</a> for available CSS classes to style."
154
  msgstr ""
 
 
 
 
155
 
156
- #: admin/options-feed.php:32
157
- msgid ""
158
- "Below options override the related posts settings for your blog feed. These "
159
- "only apply if you have selected to add related posts to Feeds in the General "
160
- "Options tab."
161
  msgstr ""
162
 
163
- #: admin/options-feed.php:34 admin/options-genops.php:39
164
- msgid "Number of related posts to display: "
165
- msgstr "Количество отображаемых похожих постов:"
166
-
167
- #: admin/options-feed.php:37 admin/options-output.php:52
168
- msgid "Show post excerpt in list?"
169
- msgstr "Показать выдержки из поста в списке?"
170
-
171
- #: admin/options-feed.php:40 admin/options-output.php:239
172
- #, fuzzy
173
- msgid "Location of post thumbnail:"
174
- msgstr "Настройки превью к записям:"
175
-
176
- #: admin/options-feed.php:44 admin/options-output.php:243
177
- #, fuzzy
178
- msgid "Display thumbnails inline with posts, before title"
179
- msgstr "Отображать превью к записи сразу перед заголовком"
180
 
181
- #: admin/options-feed.php:48 admin/options-output.php:247
182
  #, fuzzy
183
- msgid "Display thumbnails inline with posts, after title"
184
- msgstr "Отображать превью к записи сразу после заголовка"
185
-
186
- #: admin/options-feed.php:52 admin/options-output.php:251
187
- msgid "Display only thumbnails, no text"
188
- msgstr "Показывать только изображения, без текста"
189
-
190
- #: admin/options-feed.php:56 admin/options-output.php:255
191
- msgid "Do not display thumbnails, only text."
192
- msgstr "Не показывать изображения, только текст"
193
 
194
- #: admin/options-feed.php:60
195
- #, fuzzy
196
- msgid "Maximum width of the thumbnail: "
197
- msgstr "Thumbnail platums"
198
 
199
- #: admin/options-feed.php:63 admin/options-output.php:270
200
  #, fuzzy
201
- msgid "Maximum height of the thumbnail: "
202
- msgstr "sīktēls augstums"
 
 
203
 
204
- #: admin/options-genops.php:32
 
205
  #, fuzzy
206
- msgid "Cache output?"
207
- msgstr "Izejas opcijas:"
208
-
209
- #: admin/options-genops.php:34
210
- msgid ""
211
- "Enabling this option will cache the related posts output when the post is "
212
- "visited the first time. The cache is cleaned when you save this page."
213
- msgstr ""
214
 
215
- #: admin/options-genops.php:35
216
- msgid "Clear cache"
217
- msgstr ""
218
 
219
- #: admin/options-genops.php:42
220
  msgid ""
221
  "Maximum number of posts that will be displayed. The actual number may be "
222
  "smaller if less related posts are found."
223
  msgstr ""
224
 
225
- #: admin/options-genops.php:46
226
  msgid "Related posts should be newer than:"
227
  msgstr ""
228
 
229
- #: admin/options-genops.php:48
230
  #, fuzzy
231
  msgid "days"
232
  msgstr ""
233
  "За сколько дней считать просмотры для списка Популярных сегодня записей?"
234
 
235
- #: admin/options-genops.php:49
236
  msgid ""
237
  "This sets the cutoff period for which posts will be displayed. e.g. setting "
238
- "it to 365 will show related posts from the last year only."
239
- msgstr ""
240
-
241
- #: admin/options-genops.php:53
242
- #, fuzzy
243
- msgid "Post types to include in results:"
244
- msgstr "Исключить рубрики:"
245
-
246
- #: admin/options-genops.php:64
247
- msgid ""
248
- "These post types will be displayed in the list. Includes custom post types."
249
  msgstr ""
250
 
251
- #: admin/options-genops.php:68
252
  msgid "Find related posts based on content as well as title:"
253
  msgstr ""
254
 
255
- #: admin/options-genops.php:70
256
  #, fuzzy
257
  msgid ""
258
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
@@ -263,116 +256,77 @@ msgstr ""
263
  "сообщений. (Я рекомендую использовать плагин кэширования, если вы включите "
264
  "опцию)"
265
 
266
- #: admin/options-genops.php:74
267
  msgid "Limit content to be compared"
268
  msgstr ""
269
 
270
- #: admin/options-genops.php:76
271
  msgid ""
272
  "This sets the maximum words of the content that will be matched. 0 means no "
273
  "limit."
274
  msgstr ""
275
 
276
- #: admin/options-genops.php:80
277
- #, fuzzy
278
- msgid "Add related posts to:"
279
- msgstr "Pievienot saistītus amatus barībā"
280
-
281
- #: admin/options-genops.php:82
282
- #, fuzzy
283
- msgid "Posts"
284
- msgstr "Популярные записи"
285
-
286
- #: admin/options-genops.php:83
287
  #, fuzzy
288
- msgid "Pages"
289
- msgstr "Pievienot saistītus amatus barībā"
290
-
291
- #: admin/options-genops.php:84
292
- #, fuzzy
293
- msgid "Home page"
294
- msgstr "Результатов на страницу:"
295
-
296
- #: admin/options-genops.php:85
297
- msgid "Feeds"
298
- msgstr ""
299
-
300
- #: admin/options-genops.php:86
301
- msgid "Category archives"
302
- msgstr ""
303
-
304
- #: admin/options-genops.php:87
305
- msgid "Tag archives"
306
- msgstr ""
307
-
308
- #: admin/options-genops.php:88
309
- #, fuzzy
310
- msgid "Other archives"
311
- msgstr "Другие плагины автора"
312
 
313
- #: admin/options-genops.php:89
314
- #, fuzzy
315
  msgid ""
316
- "If you choose to disable this, please add <code>&lt;?php if "
317
- "( function_exists( 'echo_ald_crp' ) ) echo_ald_crp(); ?&gt;</code> to your "
318
- "template file where you want it displayed"
319
  msgstr ""
320
- "Показывать связанные посты на страницах. <br />Если вы захотите отключить "
321
- "эту опцию, пожалуйста, добавьте код: <code>&lt;?php "
322
- "if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code>, в "
323
- "отображаемый шаблон на вашем сайте"
324
 
325
- #: admin/options-genops.php:93
326
- msgid "Content filter priority:"
327
- msgstr ""
 
328
 
329
- #: admin/options-genops.php:96
330
  msgid ""
331
- "A higher number will cause the content above to be processed after other "
332
- "filters. Number below 10 is not recommended."
333
  msgstr ""
334
 
335
- #: admin/options-genops.php:100
336
  #, fuzzy
337
- msgid "Tell the world you're using Contextual Related Posts:"
338
- msgstr "Контекстные похожие посты"
339
-
340
- #: admin/options-genops.php:102
341
- msgid " <em>Optional</em>"
342
- msgstr ""
343
 
344
- #: admin/options-genops.php:103
345
- #, fuzzy
346
  msgid ""
347
- "Adds a nofollow link to Contextual Related Posts homepage as the last time "
348
- "in the list."
349
- msgstr "Контекстные похожие посты"
 
350
 
351
- #: admin/options-output.php:32
352
  msgid "Title of related posts: "
353
  msgstr "Названия связанных постов:"
354
 
355
- #: admin/options-output.php:35
356
  msgid ""
357
  "This is the main heading of the related posts. You can also display the "
358
  "current post title by using <code>%postname%</code>. e.g. <code>Related "
359
  "Posts to %postname%</code>"
360
  msgstr ""
361
 
362
- #: admin/options-output.php:39
363
  msgid "When there are no posts, what should be shown?"
364
  msgstr "Когда нет сообщений, что должно быть показано?"
365
 
366
- #: admin/options-output.php:43
367
  msgid "Blank Output"
368
  msgstr "Пустой выход"
369
 
370
- #: admin/options-output.php:47
371
  #, fuzzy
372
  msgid "Display:"
373
  msgstr "Количество Популярных записей в списке:"
374
 
375
- #: admin/options-output.php:55
 
 
 
 
376
  #, php-format
377
  msgid ""
378
  "Displays the excerpt of the post. If you do not provide an explicit excerpt "
@@ -380,216 +334,228 @@ msgid ""
380
  "automatic excerpt which refers to the first %d words of the post's content"
381
  msgstr ""
382
 
383
- #: admin/options-output.php:59
 
 
 
 
 
384
  msgid "Length of excerpt (in words): "
385
  msgstr "Длина выдержки (в словах):"
386
 
387
- #: admin/options-output.php:65
388
  #, fuzzy
389
  msgid "Show post author in list?"
390
  msgstr "Показывать текст записи в списке?"
391
 
392
- #: admin/options-output.php:68
393
  msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
394
  msgstr ""
395
 
396
- #: admin/options-output.php:72
 
 
 
 
 
397
  #, fuzzy
398
  msgid "Show post date in list?"
399
  msgstr "Показывать текст записи в списке?"
400
 
401
- #: admin/options-output.php:75
402
  msgid ""
403
  "Displays the date of the post. Uses the same date format set in General "
404
  "Options"
405
  msgstr ""
406
 
407
- #: admin/options-output.php:79
 
 
 
 
 
408
  msgid "Limit post title length (in characters)"
409
  msgstr ""
410
 
411
- #: admin/options-output.php:82
412
  msgid ""
413
  "Any title longer than the number of characters set above will be cut and "
414
  "appended with a &helip;"
415
  msgstr ""
416
 
417
- #: admin/options-output.php:86
418
  msgid "Open links in new window"
419
  msgstr ""
420
 
421
- #: admin/options-output.php:92
422
  msgid "Add nofollow attribute to links in the list"
423
  msgstr ""
424
 
425
- #: admin/options-output.php:125
426
  #, fuzzy
427
  msgid "Exclusion settings:"
428
  msgstr "spraudnis iestatījumu lapa"
429
 
430
- #: admin/options-output.php:127
431
- #, fuzzy
432
- msgid "List of post or page IDs to exclude from the results:"
433
- msgstr "Исключить рубрики:"
434
-
435
- #: admin/options-output.php:129 admin/options-output.php:135
436
- msgid ""
437
- "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
438
- msgstr ""
439
-
440
- #: admin/options-output.php:132
441
  #, fuzzy
442
  msgid "Exclude display of related posts on these posts / pages"
443
  msgstr "Pievienot saistītus amatus barībā"
444
 
445
- #: admin/options-output.php:138
446
- #, fuzzy
447
- msgid "Categories to exclude from the results: "
448
- msgstr "Исключить рубрики:"
449
-
450
- #: admin/options-output.php:154
451
- msgid ""
452
- "Comma separated list of category slugs. The field above has an autocomplete "
453
- "so simply start typing in the beginning of your category name and it will "
454
- "prompt you with options."
455
- msgstr ""
456
-
457
- #: admin/options-output.php:157
458
  #, fuzzy
459
  msgid "Exclude display of related posts on these post types."
460
  msgstr "Pievienot saistītus amatus barībā"
461
 
462
- #: admin/options-output.php:166
463
  msgid ""
464
  "The related posts will not display on any of the above selected post types"
465
  msgstr ""
466
 
467
- #: admin/options-output.php:196
468
  msgid "Customize the output:"
469
  msgstr "Настройки выхода:"
470
 
471
- #: admin/options-output.php:198
472
  msgid "HTML to display before the list of posts: "
473
  msgstr "HTML для показа перед списком сообщений: "
474
 
475
- #: admin/options-output.php:201
476
  msgid "HTML to display before each list item: "
477
  msgstr "HTML для показа перед каждым элементом списка: "
478
 
479
- #: admin/options-output.php:204
480
  msgid "HTML to display after each list item: "
481
  msgstr "HTML для отображения после каждого элемента списка: "
482
 
483
- #: admin/options-output.php:207
484
  msgid "HTML to display after the list of posts: "
485
  msgstr "HTML для отображения после списка сообщений: "
486
 
487
- #: admin/options-output.php:237
488
- msgid "Post thumbnail options:"
489
- msgstr "Опции изображения поста:"
 
490
 
491
- #: admin/options-output.php:261
492
- msgid ""
493
- "Contextual Related Posts adds a new image size with the below dimensions."
494
- msgstr ""
495
 
496
- #: admin/options-output.php:262
 
 
 
 
 
 
 
 
 
 
 
 
 
497
  msgid ""
498
- "If you change the width and/or height below, existing images will not be "
499
- "automatically resized."
500
  msgstr ""
501
 
502
- #: admin/options-output.php:263
503
- #, php-format
504
- msgid ""
505
- "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
506
- "a> to regenerate all image sizes."
507
  msgstr ""
508
 
509
- #: admin/options-output.php:267
510
- #, fuzzy
511
- msgid "Maximum width of the thumbnail:"
512
- msgstr "Thumbnail platums"
513
 
514
- #: admin/options-output.php:274
515
  msgid ""
516
- "Since you're using the default styles set under the Custom Styles section, "
517
- "the width and height is fixed at 150px"
 
518
  msgstr ""
519
 
520
- #: admin/options-output.php:278
521
- msgid "Crop mode:"
 
 
522
  msgstr ""
523
 
524
- #: admin/options-output.php:282
 
525
  msgid ""
526
- "By default, thumbnails will be proportionately cropped. Check this box to "
527
- "hard crop the thumbnails."
 
528
  msgstr ""
529
 
530
- #: admin/options-output.php:283
531
- #, php-format
532
- msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
533
  msgstr ""
534
 
535
- #: admin/options-output.php:287
536
- msgid "Style attributes / Width and Height HTML attributes:"
537
  msgstr ""
538
 
539
- #: admin/options-output.php:291
540
- msgid "Style attributes are used for width and height."
541
  msgstr ""
542
 
543
- #: admin/options-output.php:295
544
- msgid "HTML width and height attributes are used for width and height."
 
 
545
  msgstr ""
546
 
547
- #: admin/options-output.php:299
548
- msgid "Use timthumb to generate thumbnails? "
 
549
  msgstr ""
550
 
551
- #: admin/options-output.php:301
552
  msgid ""
553
- "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
554
- "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
555
  msgstr ""
556
 
557
- #: admin/options-output.php:304
558
- msgid "Quality of thumbnails generated by timthumb:"
559
  msgstr ""
560
 
561
- #: admin/options-output.php:307
562
- msgid ""
563
- "Enter values between 0 and 100 only. 100 is highest quality and the highest "
564
- "file size. Suggested maximum value is 95. CRP default is 75."
565
  msgstr ""
566
 
567
- #: admin/options-output.php:310
 
 
 
 
568
  #, fuzzy
569
  msgid "Post thumbnail meta field name:"
570
  msgstr "Attēlu rīki post:"
571
 
572
- #: admin/options-output.php:312
573
  msgid ""
574
  "The value of this field should contain the image source and is set in the "
575
  "<em>Add New Post</em> screen"
576
  msgstr ""
577
 
578
- #: admin/options-output.php:315
579
  msgid "Extract the first image from the post?"
580
  msgstr ""
581
 
582
- #: admin/options-output.php:317
583
  msgid ""
584
  "This will only happen if there is no post thumbnail set and no image URL is "
585
  "specified in the meta field."
586
  msgstr ""
587
 
588
- #: admin/options-output.php:320
589
  msgid "Use default thumbnail?"
590
  msgstr ""
591
 
592
- #: admin/options-output.php:322
593
  #, fuzzy
594
  msgid ""
595
  "If checked, when no thumbnail is found, show a default one from the URL "
@@ -599,12 +565,12 @@ msgstr ""
599
  "добавлено стандартное изображение. Если превью задано к записи - будет "
600
  "отображаться только оно."
601
 
602
- #: admin/options-output.php:325
603
  #, fuzzy
604
  msgid "Default thumbnail:"
605
  msgstr "noklusējuma opcijas"
606
 
607
- #: admin/options-output.php:328
608
  #, fuzzy
609
  msgid ""
610
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -615,6 +581,76 @@ msgstr ""
615
  "būs pārbaudīt meta laukā. Ja šāda informācija nav pieejama, tad tas rādīs "
616
  "noklusējuma attēlu, kā minēts iepriekš"
617
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
618
  #: admin/sidebar-view.php:20
619
  msgid "Support the development"
620
  msgstr "Поддержка развития проекта"
@@ -637,124 +673,138 @@ msgstr "Отправить пожертвование автору"
637
  msgid "Follow me"
638
  msgstr ""
639
 
640
- #: admin/sidebar-view.php:52
641
  #, fuzzy
642
  msgid "Quick links"
643
  msgstr "Быстрые ссылки"
644
 
645
- #: admin/sidebar-view.php:56
646
  #, fuzzy
647
  msgid "Contextual Related Posts plugin page"
648
  msgstr "Konteksta saistītus amatus"
649
 
650
- #: admin/sidebar-view.php:57
651
  msgid "FAQ"
652
  msgstr ""
653
 
654
- #: admin/sidebar-view.php:59
655
  msgid "Reviews"
656
  msgstr ""
657
 
658
- #: admin/sidebar-view.php:60
659
  msgid "Github repository"
660
  msgstr ""
661
 
662
- #: admin/sidebar-view.php:61
663
  msgid "Other plugins"
664
  msgstr "Другие плагины"
665
 
666
- #: admin/sidebar-view.php:62
667
  msgid "Ajay's blog"
668
  msgstr "Блог автора (Ajay, английский язык)"
669
 
670
- #: contextual-related-posts.php:246
671
  msgid " by "
672
  msgstr ""
673
 
674
- #: contextual-related-posts.php:285
675
  #, php-format
676
  msgid "Powered by <a href=\"%s\" rel=\"nofollow\">Contextual Related Posts</a>"
677
  msgstr ""
678
 
679
- #: contextual-related-posts.php:596
680
  #, fuzzy
681
  msgid "Related Posts [CRP]"
682
  msgstr "Похожие посты"
683
 
684
- #: contextual-related-posts.php:597
685
  #, fuzzy
686
  msgid "Display Related Posts"
687
  msgstr "Displeja Related Posts"
688
 
689
- #: contextual-related-posts.php:620
690
  #, fuzzy
691
  msgid "Title"
692
  msgstr "Заголовок списка Популярных записей:"
693
 
694
- #: contextual-related-posts.php:625
695
  #, fuzzy
696
  msgid "No. of posts"
697
  msgstr "Популярные записи"
698
 
699
- #: contextual-related-posts.php:630
700
  #, fuzzy
701
  msgid " Show excerpt?"
702
  msgstr "Rādīt izvilkumu?"
703
 
704
- #: contextual-related-posts.php:635
705
  #, fuzzy
706
  msgid " Show author?"
707
  msgstr "Отправьте пожертвование автору"
708
 
709
- #: contextual-related-posts.php:640
710
  #, fuzzy
711
  msgid " Show date?"
712
  msgstr "Rādīt izvilkumu?"
713
 
714
- #: contextual-related-posts.php:644
715
- #, fuzzy
716
- msgid "Thumbnail options"
717
- msgstr "sīktēlu iespējas"
718
-
719
- #: contextual-related-posts.php:646
720
  #, fuzzy
721
  msgid "Thumbnails inline, before title"
722
  msgstr "Sīktēli inline, pirms virsraksta"
723
 
724
- #: contextual-related-posts.php:647
725
  #, fuzzy
726
  msgid "Thumbnails inline, after title"
727
  msgstr "Sīktēli inline, pēc nosaukuma"
728
 
729
- #: contextual-related-posts.php:648
730
  #, fuzzy
731
  msgid "Only thumbnails, no text"
732
  msgstr "Отображать только превью, без текста"
733
 
734
- #: contextual-related-posts.php:649
735
  #, fuzzy
736
  msgid "No thumbnails, only text."
737
  msgstr "Nav sīktēlus, tikai tekstu."
738
 
739
- #: contextual-related-posts.php:654
740
  #, fuzzy
741
  msgid "Thumbnail height"
742
  msgstr "sīktēls augstums"
743
 
744
- #: contextual-related-posts.php:659
745
  #, fuzzy
746
  msgid "Thumbnail width"
747
  msgstr "Thumbnail platums"
748
 
749
- #: contextual-related-posts.php:799
750
  msgid "<h3>Related Posts:</h3>"
751
  msgstr "<h3>Похожие посты:</h3>"
752
 
753
- #: contextual-related-posts.php:801
754
  #, fuzzy
755
  msgid "No related posts found"
756
  msgstr "Nr saistītus amatus atrasts"
757
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
758
  #~ msgid "Powered by"
759
  #~ msgstr "Автор:"
760
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-05-09 22:20-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e;_c;__ngettext\n"
14
  "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.7.1\n"
16
+ "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: admin/admin.php:166
20
  msgid "Options saved successfully."
21
  msgstr "Настройки сохранены успешно."
22
 
23
+ #: admin/admin.php:169
24
+ msgid ""
25
+ "Default styles selected. Thumbnail width, height and crop settings have been "
26
+ "fixed. Author, Excerpt and Date will not be displayed."
27
+ msgstr ""
28
+
29
+ #: admin/admin.php:194
30
  msgid "Options set to Default."
31
  msgstr "Опции возвращены к стандартным"
32
 
33
+ #: admin/admin.php:205
34
  msgid "Index recreated"
35
  msgstr "Индекс воссоздан"
36
 
37
+ #: admin/admin.php:222 admin/admin.php:453 admin/main-view.php:20
38
  msgid "Contextual Related Posts"
39
  msgstr "Контекстные похожие посты"
40
 
41
+ #: admin/admin.php:223
42
  msgid "Related Posts"
43
  msgstr "Похожие посты"
44
 
45
+ #: admin/admin.php:338
46
  msgid "Settings"
47
  msgstr "Настройки"
48
 
49
+ #: admin/admin.php:360 admin/sidebar-view.php:59
50
  msgid "Support"
51
  msgstr "Поддержка"
52
 
53
+ #: admin/admin.php:361
54
  msgid "Donate"
55
  msgstr "Пожертвование"
56
 
57
+ #: admin/admin.php:362
58
  msgid "Contribute"
59
  msgstr ""
60
 
61
+ #: admin/admin.php:378
62
  #, fuzzy
63
  msgid "plugin settings page"
64
  msgstr "spraudnis iestatījumu lapa"
65
 
66
+ #: admin/admin.php:422
67
  msgid ""
68
  "An error occurred clearing the cache. Please contact your site administrator."
69
  "\\n\\nError message:\\n"
70
  msgstr ""
71
 
72
+ #: admin/admin.php:427
73
  msgid " cached row(s) cleared"
74
  msgstr ""
75
 
76
+ #: admin/admin.php:480
77
  #, fuzzy
78
  msgid "Location of thumbnail:"
79
  msgstr "Настройки превью к записям:"
80
 
81
+ #: admin/admin.php:482
82
  msgid ""
83
  "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
84
  "image will be used for the post. It will be resized to the thumbnail size "
85
  "set under Settings &raquo; Related Posts &raquo; Output Options"
86
  msgstr ""
87
 
88
+ #: admin/admin.php:483
89
  msgid "The URL above is saved in the meta field: "
90
  msgstr ""
91
 
92
+ #: admin/main-view.php:32 admin/main-view.php:54
93
  #, fuzzy
94
  msgid "General options"
95
  msgstr "Izejas opcijas:"
96
 
97
+ #: admin/main-view.php:33 admin/main-view.php:125
98
+ msgid "List tuning options"
99
+ msgstr ""
100
+
101
+ #: admin/main-view.php:34 admin/main-view.php:229
102
  #, fuzzy
103
  msgid "Output options"
104
  msgstr "Izejas opcijas:"
105
 
106
+ #: admin/main-view.php:35 admin/main-view.php:433
107
+ #: contextual-related-posts.php:718
108
+ #, fuzzy
109
+ msgid "Thumbnail options"
110
+ msgstr "sīktēlu iespējas"
111
+
112
+ #: admin/main-view.php:36 admin/main-view.php:580
113
  #, fuzzy
114
  msgid "Feed options"
115
  msgstr "Iespējas:"
116
 
117
+ #: admin/main-view.php:37 admin/main-view.php:652
118
  msgid "Custom styles"
119
  msgstr ""
120
 
121
+ #: admin/main-view.php:70
122
  #, fuzzy
123
+ msgid "Cache output?"
124
+ msgstr "Izejas opcijas:"
125
+
126
+ #: admin/main-view.php:72
127
+ msgid ""
128
+ "Enabling this option will cache the related posts output when the post is "
129
+ "visited the first time. The cache is cleaned when you save this page."
130
+ msgstr ""
131
+
132
+ #: admin/main-view.php:73
133
+ msgid "Clear cache"
134
+ msgstr ""
135
 
136
+ #: admin/main-view.php:77
137
  #, fuzzy
138
+ msgid "Add related posts to:"
139
+ msgstr "Pievienot saistītus amatus barībā"
140
 
141
+ #: admin/main-view.php:79
142
+ #, fuzzy
143
+ msgid "Posts"
144
+ msgstr "Популярные записи"
145
 
146
+ #: admin/main-view.php:80
147
  #, fuzzy
148
+ msgid "Pages"
149
+ msgstr "Pievienot saistītus amatus barībā"
150
 
151
+ #: admin/main-view.php:81
152
+ #, fuzzy
153
+ msgid "Home page"
154
+ msgstr "Результатов на страницу:"
155
 
156
+ #: admin/main-view.php:82
157
+ msgid "Feeds"
158
  msgstr ""
159
 
160
+ #: admin/main-view.php:83
161
+ msgid "Category archives"
 
 
162
  msgstr ""
163
 
164
+ #: admin/main-view.php:84
165
+ msgid "Tag archives"
 
 
 
 
166
  msgstr ""
167
 
168
+ #: admin/main-view.php:85
169
+ #, fuzzy
170
+ msgid "Other archives"
171
+ msgstr "Другие плагины автора"
172
 
173
+ #: admin/main-view.php:86
174
+ #, fuzzy
175
  msgid ""
176
+ "If you choose to disable this, please add <code>&lt;?php if "
177
+ "( function_exists( 'echo_ald_crp' ) ) echo_ald_crp(); ?&gt;</code> to your "
178
+ "template file where you want it displayed"
179
  msgstr ""
180
+ "Показывать связанные посты на страницах. <br />Если вы захотите отключить "
181
+ "эту опцию, пожалуйста, добавьте код: <code>&lt;?php "
182
+ "if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code>, в "
183
+ "отображаемый шаблон на вашем сайте"
184
 
185
+ #: admin/main-view.php:90
186
+ msgid "Content filter priority:"
 
 
 
187
  msgstr ""
188
 
189
+ #: admin/main-view.php:93
190
+ msgid ""
191
+ "A higher number will cause the content above to be processed after other "
192
+ "filters. Number below 10 is not recommended."
193
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
194
 
195
+ #: admin/main-view.php:97
196
  #, fuzzy
197
+ msgid "Tell the world you're using Contextual Related Posts:"
198
+ msgstr "Контекстные похожие посты"
 
 
 
 
 
 
 
 
199
 
200
+ #: admin/main-view.php:99
201
+ msgid " <em>Optional</em>"
202
+ msgstr ""
 
203
 
204
+ #: admin/main-view.php:100
205
  #, fuzzy
206
+ msgid ""
207
+ "Adds a nofollow link to Contextual Related Posts homepage as the last time "
208
+ "in the list."
209
+ msgstr "Контекстные похожие посты"
210
 
211
+ #: admin/main-view.php:118 admin/main-view.php:222 admin/main-view.php:426
212
+ #: admin/main-view.php:573 admin/main-view.php:645 admin/main-view.php:709
213
  #, fuzzy
214
+ msgid "Save Options"
215
+ msgstr "Saglabāt opcijas"
 
 
 
 
 
 
216
 
217
+ #: admin/main-view.php:141 admin/main-view.php:598
218
+ msgid "Number of related posts to display: "
219
+ msgstr "Количество отображаемых похожих постов:"
220
 
221
+ #: admin/main-view.php:144
222
  msgid ""
223
  "Maximum number of posts that will be displayed. The actual number may be "
224
  "smaller if less related posts are found."
225
  msgstr ""
226
 
227
+ #: admin/main-view.php:148
228
  msgid "Related posts should be newer than:"
229
  msgstr ""
230
 
231
+ #: admin/main-view.php:150
232
  #, fuzzy
233
  msgid "days"
234
  msgstr ""
235
  "За сколько дней считать просмотры для списка Популярных сегодня записей?"
236
 
237
+ #: admin/main-view.php:151
238
  msgid ""
239
  "This sets the cutoff period for which posts will be displayed. e.g. setting "
240
+ "it to 365 will show related posts from the last year only. Set it to 0 to "
241
+ "disable limiting posts."
 
 
 
 
 
 
 
 
 
242
  msgstr ""
243
 
244
+ #: admin/main-view.php:155
245
  msgid "Find related posts based on content as well as title:"
246
  msgstr ""
247
 
248
+ #: admin/main-view.php:157
249
  #, fuzzy
250
  msgid ""
251
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
256
  "сообщений. (Я рекомендую использовать плагин кэширования, если вы включите "
257
  "опцию)"
258
 
259
+ #: admin/main-view.php:161
260
  msgid "Limit content to be compared"
261
  msgstr ""
262
 
263
+ #: admin/main-view.php:163
264
  msgid ""
265
  "This sets the maximum words of the content that will be matched. 0 means no "
266
  "limit."
267
  msgstr ""
268
 
269
+ #: admin/main-view.php:167
 
 
 
 
 
 
 
 
 
 
270
  #, fuzzy
271
+ msgid "Post types to include in results:"
272
+ msgstr "Исключить рубрики:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
273
 
274
+ #: admin/main-view.php:178
 
275
  msgid ""
276
+ "These post types will be displayed in the list. Includes custom post types."
 
 
277
  msgstr ""
 
 
 
 
278
 
279
+ #: admin/main-view.php:182
280
+ #, fuzzy
281
+ msgid "List of post or page IDs to exclude from the results:"
282
+ msgstr "Исключить рубрики:"
283
 
284
+ #: admin/main-view.php:184 admin/main-view.php:355
285
  msgid ""
286
+ "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
 
287
  msgstr ""
288
 
289
+ #: admin/main-view.php:188
290
  #, fuzzy
291
+ msgid "Categories to exclude from the results: "
292
+ msgstr "Исключить рубрики:"
 
 
 
 
293
 
294
+ #: admin/main-view.php:204
 
295
  msgid ""
296
+ "Comma separated list of category slugs. The field above has an autocomplete "
297
+ "so simply start typing in the beginning of your category name and it will "
298
+ "prompt you with options."
299
+ msgstr ""
300
 
301
+ #: admin/main-view.php:245
302
  msgid "Title of related posts: "
303
  msgstr "Названия связанных постов:"
304
 
305
+ #: admin/main-view.php:248
306
  msgid ""
307
  "This is the main heading of the related posts. You can also display the "
308
  "current post title by using <code>%postname%</code>. e.g. <code>Related "
309
  "Posts to %postname%</code>"
310
  msgstr ""
311
 
312
+ #: admin/main-view.php:252
313
  msgid "When there are no posts, what should be shown?"
314
  msgstr "Когда нет сообщений, что должно быть показано?"
315
 
316
+ #: admin/main-view.php:256
317
  msgid "Blank Output"
318
  msgstr "Пустой выход"
319
 
320
+ #: admin/main-view.php:260
321
  #, fuzzy
322
  msgid "Display:"
323
  msgstr "Количество Популярных записей в списке:"
324
 
325
+ #: admin/main-view.php:265 admin/main-view.php:601
326
+ msgid "Show post excerpt in list?"
327
+ msgstr "Показать выдержки из поста в списке?"
328
+
329
+ #: admin/main-view.php:268
330
  #, php-format
331
  msgid ""
332
  "Displays the excerpt of the post. If you do not provide an explicit excerpt "
334
  "automatic excerpt which refers to the first %d words of the post's content"
335
  msgstr ""
336
 
337
+ #: admin/main-view.php:271
338
+ msgid ""
339
+ "Default style selected under the Custom Styles. Excerpt display is disabled."
340
+ msgstr ""
341
+
342
+ #: admin/main-view.php:276
343
  msgid "Length of excerpt (in words): "
344
  msgstr "Длина выдержки (в словах):"
345
 
346
+ #: admin/main-view.php:282
347
  #, fuzzy
348
  msgid "Show post author in list?"
349
  msgstr "Показывать текст записи в списке?"
350
 
351
+ #: admin/main-view.php:285
352
  msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
353
  msgstr ""
354
 
355
+ #: admin/main-view.php:288
356
+ msgid ""
357
+ "Default style selected under the Custom Styles. Author display is disabled."
358
+ msgstr ""
359
+
360
+ #: admin/main-view.php:293
361
  #, fuzzy
362
  msgid "Show post date in list?"
363
  msgstr "Показывать текст записи в списке?"
364
 
365
+ #: admin/main-view.php:296
366
  msgid ""
367
  "Displays the date of the post. Uses the same date format set in General "
368
  "Options"
369
  msgstr ""
370
 
371
+ #: admin/main-view.php:299
372
+ msgid ""
373
+ "Default style selected under the Custom Styles. Date display is disabled."
374
+ msgstr ""
375
+
376
+ #: admin/main-view.php:304
377
  msgid "Limit post title length (in characters)"
378
  msgstr ""
379
 
380
+ #: admin/main-view.php:307
381
  msgid ""
382
  "Any title longer than the number of characters set above will be cut and "
383
  "appended with a &helip;"
384
  msgstr ""
385
 
386
+ #: admin/main-view.php:311
387
  msgid "Open links in new window"
388
  msgstr ""
389
 
390
+ #: admin/main-view.php:317
391
  msgid "Add nofollow attribute to links in the list"
392
  msgstr ""
393
 
394
+ #: admin/main-view.php:350
395
  #, fuzzy
396
  msgid "Exclusion settings:"
397
  msgstr "spraudnis iestatījumu lapa"
398
 
399
+ #: admin/main-view.php:352
 
 
 
 
 
 
 
 
 
 
400
  #, fuzzy
401
  msgid "Exclude display of related posts on these posts / pages"
402
  msgstr "Pievienot saistītus amatus barībā"
403
 
404
+ #: admin/main-view.php:358
 
 
 
 
 
 
 
 
 
 
 
 
405
  #, fuzzy
406
  msgid "Exclude display of related posts on these post types."
407
  msgstr "Pievienot saistītus amatus barībā"
408
 
409
+ #: admin/main-view.php:367
410
  msgid ""
411
  "The related posts will not display on any of the above selected post types"
412
  msgstr ""
413
 
414
+ #: admin/main-view.php:397
415
  msgid "Customize the output:"
416
  msgstr "Настройки выхода:"
417
 
418
+ #: admin/main-view.php:399
419
  msgid "HTML to display before the list of posts: "
420
  msgstr "HTML для показа перед списком сообщений: "
421
 
422
+ #: admin/main-view.php:402
423
  msgid "HTML to display before each list item: "
424
  msgstr "HTML для показа перед каждым элементом списка: "
425
 
426
+ #: admin/main-view.php:405
427
  msgid "HTML to display after each list item: "
428
  msgstr "HTML для отображения после каждого элемента списка: "
429
 
430
+ #: admin/main-view.php:408
431
  msgid "HTML to display after the list of posts: "
432
  msgstr "HTML для отображения после списка сообщений: "
433
 
434
+ #: admin/main-view.php:449 admin/main-view.php:604
435
+ #, fuzzy
436
+ msgid "Location of post thumbnail:"
437
+ msgstr "Настройки превью к записям:"
438
 
439
+ #: admin/main-view.php:453 admin/main-view.php:608
440
+ #, fuzzy
441
+ msgid "Display thumbnails inline with posts, before title"
442
+ msgstr "Отображать превью к записи сразу перед заголовком"
443
 
444
+ #: admin/main-view.php:457 admin/main-view.php:612
445
+ #, fuzzy
446
+ msgid "Display thumbnails inline with posts, after title"
447
+ msgstr "Отображать превью к записи сразу после заголовка"
448
+
449
+ #: admin/main-view.php:461 admin/main-view.php:616
450
+ msgid "Display only thumbnails, no text"
451
+ msgstr "Показывать только изображения, без текста"
452
+
453
+ #: admin/main-view.php:465 admin/main-view.php:620
454
+ msgid "Do not display thumbnails, only text."
455
+ msgstr "Не показывать изображения, только текст"
456
+
457
+ #: admin/main-view.php:468
458
  msgid ""
459
+ "Default style selected under the Custom Styles. Location of thumbnail forced "
460
+ "to be inline before title"
461
  msgstr ""
462
 
463
+ #: admin/main-view.php:472
464
+ msgid "Thumbnail size:"
 
 
 
465
  msgstr ""
466
 
467
+ #: admin/main-view.php:496
468
+ msgid "Custom size"
469
+ msgstr ""
 
470
 
471
+ #: admin/main-view.php:499
472
  msgid ""
473
+ "You can choose from existing image sizes above or create a custom size. If "
474
+ "you have chosen Custom size above, then enter the width, height and crop "
475
+ "settings below. For best results, use a cropped image."
476
  msgstr ""
477
 
478
+ #: admin/main-view.php:500
479
+ msgid ""
480
+ "If you change the width, height or crop mode below, existing images will not "
481
+ "be automatically resized."
482
  msgstr ""
483
 
484
+ #: admin/main-view.php:501
485
+ #, php-format
486
  msgid ""
487
+ "I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
488
+ "a> or <a href='%s' class='thickbox'>Regenerate Thumbnails</a> to regenerate "
489
+ "all image sizes."
490
  msgstr ""
491
 
492
+ #: admin/main-view.php:505
493
+ msgid "Width of the thumbnail:"
 
494
  msgstr ""
495
 
496
+ #: admin/main-view.php:508
497
+ msgid "Height of the thumbnail: "
498
  msgstr ""
499
 
500
+ #: admin/main-view.php:513
501
+ msgid "Crop mode:"
502
  msgstr ""
503
 
504
+ #: admin/main-view.php:517
505
+ msgid ""
506
+ "By default, thumbnails will be hard cropped. Uncheck this box to "
507
+ "proportionately/soft crop the thumbnails."
508
  msgstr ""
509
 
510
+ #: admin/main-view.php:518
511
+ #, php-format
512
+ msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
513
  msgstr ""
514
 
515
+ #: admin/main-view.php:521
516
  msgid ""
517
+ "Default style selected under the Custom Styles. Thumbnail width and height "
518
+ "is fixed at 150px and crop mode is enabled."
519
  msgstr ""
520
 
521
+ #: admin/main-view.php:525
522
+ msgid "Style attributes / Width and Height HTML attributes:"
523
  msgstr ""
524
 
525
+ #: admin/main-view.php:529
526
+ msgid "Style attributes are used for width and height."
 
 
527
  msgstr ""
528
 
529
+ #: admin/main-view.php:533
530
+ msgid "HTML width and height attributes are used for width and height."
531
+ msgstr ""
532
+
533
+ #: admin/main-view.php:537
534
  #, fuzzy
535
  msgid "Post thumbnail meta field name:"
536
  msgstr "Attēlu rīki post:"
537
 
538
+ #: admin/main-view.php:539
539
  msgid ""
540
  "The value of this field should contain the image source and is set in the "
541
  "<em>Add New Post</em> screen"
542
  msgstr ""
543
 
544
+ #: admin/main-view.php:542
545
  msgid "Extract the first image from the post?"
546
  msgstr ""
547
 
548
+ #: admin/main-view.php:544
549
  msgid ""
550
  "This will only happen if there is no post thumbnail set and no image URL is "
551
  "specified in the meta field."
552
  msgstr ""
553
 
554
+ #: admin/main-view.php:547
555
  msgid "Use default thumbnail?"
556
  msgstr ""
557
 
558
+ #: admin/main-view.php:549
559
  #, fuzzy
560
  msgid ""
561
  "If checked, when no thumbnail is found, show a default one from the URL "
565
  "добавлено стандартное изображение. Если превью задано к записи - будет "
566
  "отображаться только оно."
567
 
568
+ #: admin/main-view.php:552
569
  #, fuzzy
570
  msgid "Default thumbnail:"
571
  msgstr "noklusējuma opcijas"
572
 
573
+ #: admin/main-view.php:555
574
  #, fuzzy
575
  msgid ""
576
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
581
  "būs pārbaudīt meta laukā. Ja šāda informācija nav pieejama, tad tas rādīs "
582
  "noklusējuma attēlu, kā minēts iepriekš"
583
 
584
+ #: admin/main-view.php:596
585
+ msgid ""
586
+ "Below options override the related posts settings for your blog feed. These "
587
+ "only apply if you have selected to add related posts to Feeds in the General "
588
+ "Options tab."
589
+ msgstr ""
590
+
591
+ #: admin/main-view.php:624
592
+ #, fuzzy
593
+ msgid "Maximum width of the thumbnail: "
594
+ msgstr "Thumbnail platums"
595
+
596
+ #: admin/main-view.php:627
597
+ #, fuzzy
598
+ msgid "Maximum height of the thumbnail: "
599
+ msgstr "sīktēls augstums"
600
+
601
+ #: admin/main-view.php:668
602
+ msgid "Use default style included in the plugin?"
603
+ msgstr ""
604
+
605
+ #: admin/main-view.php:671
606
+ msgid ""
607
+ "Contextual Related Posts includes a default style that makes your popular "
608
+ "posts list to look beautiful. Check the box above if you want to use this."
609
+ msgstr ""
610
+
611
+ #: admin/main-view.php:672
612
+ msgid ""
613
+ "Enabling this option will turn on the thumbnails and set their width and "
614
+ "height to 150px. It will also turn off the display of the author, excerpt "
615
+ "and date if already enabled. Disabling this option will not revert any "
616
+ "settings."
617
+ msgstr ""
618
+
619
+ #: admin/main-view.php:673
620
+ #, php-format
621
+ msgid ""
622
+ "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
623
+ msgstr ""
624
+
625
+ #: admin/main-view.php:676
626
+ msgid "Custom CSS to add to header:"
627
+ msgstr ""
628
+
629
+ #: admin/main-view.php:680
630
+ msgid ""
631
+ "Do not include <code>style</code> tags. Check out the <a href=\"http://"
632
+ "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
633
+ "\">FAQ</a> for available CSS classes to style."
634
+ msgstr ""
635
+
636
+ #: admin/main-view.php:710
637
+ #, fuzzy
638
+ msgid "Default Options"
639
+ msgstr "noklusējuma opcijas"
640
+
641
+ #: admin/main-view.php:710
642
+ msgid "Do you want to set options to Default?"
643
+ msgstr "Вы хотите задать параметры по умолчанию?"
644
+
645
+ #: admin/main-view.php:711
646
+ #, fuzzy
647
+ msgid "Recreate Index"
648
+ msgstr "Vai jūs tiešām vēlaties, lai atjaunotu indeksu?"
649
+
650
+ #: admin/main-view.php:711
651
+ msgid "Are you sure you want to recreate the index?"
652
+ msgstr "Вы уверены, что хотите воссоздать индекс?"
653
+
654
  #: admin/sidebar-view.php:20
655
  msgid "Support the development"
656
  msgstr "Поддержка развития проекта"
673
  msgid "Follow me"
674
  msgstr ""
675
 
676
+ #: admin/sidebar-view.php:53
677
  #, fuzzy
678
  msgid "Quick links"
679
  msgstr "Быстрые ссылки"
680
 
681
+ #: admin/sidebar-view.php:57
682
  #, fuzzy
683
  msgid "Contextual Related Posts plugin page"
684
  msgstr "Konteksta saistītus amatus"
685
 
686
+ #: admin/sidebar-view.php:58
687
  msgid "FAQ"
688
  msgstr ""
689
 
690
+ #: admin/sidebar-view.php:60
691
  msgid "Reviews"
692
  msgstr ""
693
 
694
+ #: admin/sidebar-view.php:61
695
  msgid "Github repository"
696
  msgstr ""
697
 
698
+ #: admin/sidebar-view.php:62
699
  msgid "Other plugins"
700
  msgstr "Другие плагины"
701
 
702
+ #: admin/sidebar-view.php:63
703
  msgid "Ajay's blog"
704
  msgstr "Блог автора (Ajay, английский язык)"
705
 
706
+ #: contextual-related-posts.php:250
707
  msgid " by "
708
  msgstr ""
709
 
710
+ #: contextual-related-posts.php:289
711
  #, php-format
712
  msgid "Powered by <a href=\"%s\" rel=\"nofollow\">Contextual Related Posts</a>"
713
  msgstr ""
714
 
715
+ #: contextual-related-posts.php:670
716
  #, fuzzy
717
  msgid "Related Posts [CRP]"
718
  msgstr "Похожие посты"
719
 
720
+ #: contextual-related-posts.php:671
721
  #, fuzzy
722
  msgid "Display Related Posts"
723
  msgstr "Displeja Related Posts"
724
 
725
+ #: contextual-related-posts.php:694
726
  #, fuzzy
727
  msgid "Title"
728
  msgstr "Заголовок списка Популярных записей:"
729
 
730
+ #: contextual-related-posts.php:699
731
  #, fuzzy
732
  msgid "No. of posts"
733
  msgstr "Популярные записи"
734
 
735
+ #: contextual-related-posts.php:704
736
  #, fuzzy
737
  msgid " Show excerpt?"
738
  msgstr "Rādīt izvilkumu?"
739
 
740
+ #: contextual-related-posts.php:709
741
  #, fuzzy
742
  msgid " Show author?"
743
  msgstr "Отправьте пожертвование автору"
744
 
745
+ #: contextual-related-posts.php:714
746
  #, fuzzy
747
  msgid " Show date?"
748
  msgstr "Rādīt izvilkumu?"
749
 
750
+ #: contextual-related-posts.php:720
 
 
 
 
 
751
  #, fuzzy
752
  msgid "Thumbnails inline, before title"
753
  msgstr "Sīktēli inline, pirms virsraksta"
754
 
755
+ #: contextual-related-posts.php:721
756
  #, fuzzy
757
  msgid "Thumbnails inline, after title"
758
  msgstr "Sīktēli inline, pēc nosaukuma"
759
 
760
+ #: contextual-related-posts.php:722
761
  #, fuzzy
762
  msgid "Only thumbnails, no text"
763
  msgstr "Отображать только превью, без текста"
764
 
765
+ #: contextual-related-posts.php:723
766
  #, fuzzy
767
  msgid "No thumbnails, only text."
768
  msgstr "Nav sīktēlus, tikai tekstu."
769
 
770
+ #: contextual-related-posts.php:728
771
  #, fuzzy
772
  msgid "Thumbnail height"
773
  msgstr "sīktēls augstums"
774
 
775
+ #: contextual-related-posts.php:733
776
  #, fuzzy
777
  msgid "Thumbnail width"
778
  msgstr "Thumbnail platums"
779
 
780
+ #: contextual-related-posts.php:897
781
  msgid "<h3>Related Posts:</h3>"
782
  msgstr "<h3>Похожие посты:</h3>"
783
 
784
+ #: contextual-related-posts.php:899
785
  #, fuzzy
786
  msgid "No related posts found"
787
  msgstr "Nr saistītus amatus atrasts"
788
 
789
+ #: contextual-related-posts.php:1211
790
+ msgid "thumb_timthumb argument has been deprecated"
791
+ msgstr ""
792
+
793
+ #: contextual-related-posts.php:1215
794
+ msgid "thumb_timthumb_q argument has been deprecated"
795
+ msgstr ""
796
+
797
+ #: contextual-related-posts.php:1219
798
+ msgid "filter argument has been deprecated"
799
+ msgstr ""
800
+
801
+ #~ msgid "Post thumbnail options:"
802
+ #~ msgstr "Опции изображения поста:"
803
+
804
+ #, fuzzy
805
+ #~ msgid "Maximum width of the thumbnail:"
806
+ #~ msgstr "Thumbnail platums"
807
+
808
  #~ msgid "Powered by"
809
  #~ msgstr "Автор:"
810
 
languages/crp-zh_CN.mo CHANGED
Binary file
languages/crp-zh_CN.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-09-04 20:42-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: \n"
@@ -12,349 +12,306 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e;_c;__ngettext\n"
14
  "X-Poedit-Basepath: ../\n"
15
- "X-Generator: Poedit 1.6.9\n"
 
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin/admin.php:161
19
  msgid "Options saved successfully."
20
  msgstr "成功保存设置。"
21
 
22
- #: admin/admin.php:181
 
 
 
 
 
 
23
  msgid "Options set to Default."
24
  msgstr "已重置设置。"
25
 
26
- #: admin/admin.php:192
27
  msgid "Index recreated"
28
  msgstr "已重新创建索引"
29
 
30
- #: admin/admin.php:209 admin/admin.php:419 admin/main-view.php:20
31
  msgid "Contextual Related Posts"
32
  msgstr "Contextual Related Posts"
33
 
34
- #: admin/admin.php:210
35
  msgid "Related Posts"
36
  msgstr "相关日志"
37
 
38
- #: admin/admin.php:321
39
  msgid "Settings"
40
  msgstr "设置"
41
 
42
- #: admin/admin.php:343 admin/sidebar-view.php:58
43
  msgid "Support"
44
  msgstr "技术支持"
45
 
46
- #: admin/admin.php:344
47
  msgid "Donate"
48
  msgstr "捐赠"
49
 
50
- #: admin/admin.php:345
51
  msgid "Contribute"
52
  msgstr ""
53
 
54
- #: admin/admin.php:361
55
  msgid "plugin settings page"
56
  msgstr "插件设置页面"
57
 
58
- #: admin/admin.php:395
59
  msgid ""
60
  "An error occurred clearing the cache. Please contact your site administrator."
61
  "\\n\\nError message:\\n"
62
  msgstr ""
63
 
64
- #: admin/admin.php:400
65
  msgid " cached row(s) cleared"
66
  msgstr ""
67
 
68
- #: admin/admin.php:446
69
  #, fuzzy
70
  msgid "Location of thumbnail:"
71
  msgstr "日志缩略图位置:"
72
 
73
- #: admin/admin.php:448
74
  msgid ""
75
  "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
76
  "image will be used for the post. It will be resized to the thumbnail size "
77
  "set under Settings &raquo; Related Posts &raquo; Output Options"
78
  msgstr ""
79
 
80
- #: admin/admin.php:449
81
  msgid "The URL above is saved in the meta field: "
82
  msgstr ""
83
 
84
- #: admin/main-view.php:32 admin/main-view.php:51
85
  msgid "General options"
86
  msgstr "一般设置"
87
 
88
- #: admin/main-view.php:33 admin/main-view.php:60
 
 
 
 
89
  #, fuzzy
90
  msgid "Output options"
91
  msgstr "显示设置"
92
 
93
- #: admin/main-view.php:34 admin/main-view.php:69
 
 
 
 
 
94
  #, fuzzy
95
  msgid "Feed options"
96
  msgstr "一般设置"
97
 
98
- #: admin/main-view.php:35 admin/main-view.php:77
99
  #, fuzzy
100
  msgid "Custom styles"
101
  msgstr "自定义样式"
102
 
103
- #: admin/main-view.php:95
104
- msgid "Save Options"
105
- msgstr "保存设置"
106
-
107
- #: admin/main-view.php:96
108
- msgid "Default Options"
109
- msgstr "默认设置"
110
-
111
- #: admin/main-view.php:96
112
- msgid "Do you want to set options to Default?"
113
- msgstr "是否要重置设置?"
114
-
115
- #: admin/main-view.php:97
116
- msgid "Recreate Index"
117
- msgstr "重建索引"
118
-
119
- #: admin/main-view.php:97
120
- msgid "Are you sure you want to recreate the index?"
121
- msgstr "是否要重建索引?"
122
-
123
- #: admin/options-custom-styles.php:32
124
- msgid "Use default style included in the plugin?"
125
  msgstr ""
126
 
127
- #: admin/options-custom-styles.php:35
128
  msgid ""
129
- "Contextual Related Posts includes a default style that makes your popular "
130
- "posts list to look beautiful. Check the box above if you want to use this."
131
  msgstr ""
132
 
133
- #: admin/options-custom-styles.php:36
134
- msgid ""
135
- "Enabling this option will turn on the thumbnails and set their width and "
136
- "height to 150px. It will also turn off the display of the author, excerpt "
137
- "and date if already enabled. Disabling this option will not revert any "
138
- "settings."
139
  msgstr ""
140
 
141
- #: admin/options-custom-styles.php:39
142
- msgid "Custom CSS to add to header:"
143
- msgstr "添加自定义 CSS 到 header:"
144
-
145
- #: admin/options-custom-styles.php:43
146
  #, fuzzy
147
- msgid ""
148
- "Do not include <code>style</code> tags. Check out the <a href=\"http://"
149
- "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
150
- "\">FAQ</a> for available CSS classes to style."
 
151
  msgstr ""
152
- "不要使用 <code>style</code> 标签。请查看 <a href=\"http://wordpress.org/"
153
- "extend/plugins/contextual-related-posts/faq/\">FAQ</a> 中可用的 CSS classes。"
154
 
155
- #: admin/options-feed.php:32
156
- msgid ""
157
- "Below options override the related posts settings for your blog feed. These "
158
- "only apply if you have selected to add related posts to Feeds in the General "
159
- "Options tab."
160
  msgstr ""
161
 
162
- #: admin/options-feed.php:34 admin/options-genops.php:39
163
- msgid "Number of related posts to display: "
164
- msgstr "相关日志数量:"
165
 
166
- #: admin/options-feed.php:37 admin/options-output.php:52
167
- msgid "Show post excerpt in list?"
168
- msgstr "是否显示日志摘要?"
169
 
170
- #: admin/options-feed.php:40 admin/options-output.php:239
171
- msgid "Location of post thumbnail:"
172
- msgstr "日志缩略图位置:"
173
 
174
- #: admin/options-feed.php:44 admin/options-output.php:243
175
- msgid "Display thumbnails inline with posts, before title"
176
- msgstr "在标题前显示缩略图"
177
 
178
- #: admin/options-feed.php:48 admin/options-output.php:247
179
- msgid "Display thumbnails inline with posts, after title"
180
- msgstr "在标题后显示缩略图"
181
 
182
- #: admin/options-feed.php:52 admin/options-output.php:251
183
- msgid "Display only thumbnails, no text"
184
- msgstr "不显示文本,只显示缩略图"
 
 
 
 
 
 
185
 
186
- #: admin/options-feed.php:56 admin/options-output.php:255
187
- msgid "Do not display thumbnails, only text."
188
- msgstr "不显示缩略图,只显示文本"
189
 
190
- #: admin/options-feed.php:60
191
- msgid "Maximum width of the thumbnail: "
192
- msgstr "缩略图最大宽度"
 
 
193
 
194
- #: admin/options-feed.php:63 admin/options-output.php:270
195
- msgid "Maximum height of the thumbnail: "
196
- msgstr "缩略图最大高度"
 
197
 
198
- #: admin/options-genops.php:32
199
- msgid "Cache output?"
200
- msgstr ""
201
 
202
- #: admin/options-genops.php:34
 
203
  msgid ""
204
- "Enabling this option will cache the related posts output when the post is "
205
- "visited the first time. The cache is cleaned when you save this page."
206
- msgstr ""
207
 
208
- #: admin/options-genops.php:35
209
- msgid "Clear cache"
210
- msgstr ""
 
 
 
 
 
211
 
212
- #: admin/options-genops.php:42
213
  msgid ""
214
  "Maximum number of posts that will be displayed. The actual number may be "
215
  "smaller if less related posts are found."
216
  msgstr ""
217
 
218
- #: admin/options-genops.php:46
219
  msgid "Related posts should be newer than:"
220
  msgstr ""
221
 
222
- #: admin/options-genops.php:48
223
  msgid "days"
224
  msgstr ""
225
 
226
- #: admin/options-genops.php:49
227
  msgid ""
228
  "This sets the cutoff period for which posts will be displayed. e.g. setting "
229
- "it to 365 will show related posts from the last year only."
 
230
  msgstr ""
231
 
232
- #: admin/options-genops.php:53
233
- #, fuzzy
234
- msgid "Post types to include in results:"
235
- msgstr "被索引的日志类型(包含自定义日志类型)"
236
-
237
- #: admin/options-genops.php:64
238
- #, fuzzy
239
- msgid ""
240
- "These post types will be displayed in the list. Includes custom post types."
241
- msgstr "被索引的日志类型(包含自定义日志类型)"
242
-
243
- #: admin/options-genops.php:68
244
  #, fuzzy
245
  msgid "Find related posts based on content as well as title:"
246
  msgstr "根据标题和正文内容索引"
247
 
248
- #: admin/options-genops.php:70
249
  #, fuzzy
250
  msgid ""
251
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
252
  "or enabling \"Cache output\" above if you enable this."
253
  msgstr "假如没有勾选此项,则只从标题索引。(推荐已经开启缓存的用户勾选使用)"
254
 
255
- #: admin/options-genops.php:74
256
  msgid "Limit content to be compared"
257
  msgstr ""
258
 
259
- #: admin/options-genops.php:76
260
  msgid ""
261
  "This sets the maximum words of the content that will be matched. 0 means no "
262
  "limit."
263
  msgstr ""
264
 
265
- #: admin/options-genops.php:80
266
  #, fuzzy
267
- msgid "Add related posts to:"
268
- msgstr "添加相关日志到 feed 里"
269
-
270
- #: admin/options-genops.php:82
271
- msgid "Posts"
272
- msgstr ""
273
-
274
- #: admin/options-genops.php:83
275
- msgid "Pages"
276
- msgstr ""
277
-
278
- #: admin/options-genops.php:84
279
- msgid "Home page"
280
- msgstr ""
281
-
282
- #: admin/options-genops.php:85
283
- msgid "Feeds"
284
- msgstr ""
285
-
286
- #: admin/options-genops.php:86
287
- msgid "Category archives"
288
- msgstr ""
289
-
290
- #: admin/options-genops.php:87
291
- msgid "Tag archives"
292
- msgstr ""
293
-
294
- #: admin/options-genops.php:88
295
- msgid "Other archives"
296
- msgstr ""
297
 
298
- #: admin/options-genops.php:89
299
  #, fuzzy
300
  msgid ""
301
- "If you choose to disable this, please add <code>&lt;?php if "
302
- "( function_exists( 'echo_ald_crp' ) ) echo_ald_crp(); ?&gt;</code> to your "
303
- "template file where you want it displayed"
304
- msgstr ""
305
- "假如没有勾选此项,请在模板文件中找到需要显示的地方,添加代码 <code>&lt;?php "
306
- "if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code>"
307
 
308
- #: admin/options-genops.php:93
309
- msgid "Content filter priority:"
310
- msgstr ""
 
311
 
312
- #: admin/options-genops.php:96
313
  msgid ""
314
- "A higher number will cause the content above to be processed after other "
315
- "filters. Number below 10 is not recommended."
316
  msgstr ""
317
 
318
- #: admin/options-genops.php:100
319
  #, fuzzy
320
- msgid "Tell the world you're using Contextual Related Posts:"
321
- msgstr "Contextual Related Posts"
322
-
323
- #: admin/options-genops.php:102
324
- msgid " <em>Optional</em>"
325
- msgstr " <em>可选</em>"
326
 
327
- #: admin/options-genops.php:103
328
- #, fuzzy
329
  msgid ""
330
- "Adds a nofollow link to Contextual Related Posts homepage as the last time "
331
- "in the list."
332
- msgstr "相关日志"
 
333
 
334
- #: admin/options-output.php:32
335
  msgid "Title of related posts: "
336
  msgstr "相关日志的标题:"
337
 
338
- #: admin/options-output.php:35
339
  msgid ""
340
  "This is the main heading of the related posts. You can also display the "
341
  "current post title by using <code>%postname%</code>. e.g. <code>Related "
342
  "Posts to %postname%</code>"
343
  msgstr ""
344
 
345
- #: admin/options-output.php:39
346
  msgid "When there are no posts, what should be shown?"
347
  msgstr "当不存在相关日志时,显示什么?"
348
 
349
- #: admin/options-output.php:43
350
  msgid "Blank Output"
351
  msgstr "不显示"
352
 
353
- #: admin/options-output.php:47
354
  msgid "Display:"
355
  msgstr ""
356
 
357
- #: admin/options-output.php:55
 
 
 
 
358
  #, php-format
359
  msgid ""
360
  "Displays the excerpt of the post. If you do not provide an explicit excerpt "
@@ -362,233 +319,239 @@ msgid ""
362
  "automatic excerpt which refers to the first %d words of the post's content"
363
  msgstr ""
364
 
365
- #: admin/options-output.php:59
 
 
 
 
 
366
  msgid "Length of excerpt (in words): "
367
  msgstr "摘要长度(词数):"
368
 
369
- #: admin/options-output.php:65
370
  #, fuzzy
371
  msgid "Show post author in list?"
372
  msgstr "是否显示日志摘要?"
373
 
374
- #: admin/options-output.php:68
375
  msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
376
  msgstr ""
377
 
378
- #: admin/options-output.php:72
 
 
 
 
 
379
  #, fuzzy
380
  msgid "Show post date in list?"
381
  msgstr "是否显示日志摘要?"
382
 
383
- #: admin/options-output.php:75
384
  msgid ""
385
  "Displays the date of the post. Uses the same date format set in General "
386
  "Options"
387
  msgstr ""
388
 
389
- #: admin/options-output.php:79
 
 
 
 
 
390
  msgid "Limit post title length (in characters)"
391
  msgstr ""
392
 
393
- #: admin/options-output.php:82
394
  msgid ""
395
  "Any title longer than the number of characters set above will be cut and "
396
  "appended with a &helip;"
397
  msgstr ""
398
 
399
- #: admin/options-output.php:86
400
  msgid "Open links in new window"
401
  msgstr ""
402
 
403
- #: admin/options-output.php:92
404
  msgid "Add nofollow attribute to links in the list"
405
  msgstr ""
406
 
407
- #: admin/options-output.php:125
408
  #, fuzzy
409
  msgid "Exclusion settings:"
410
  msgstr "插件设置页面"
411
 
412
- #: admin/options-output.php:127
413
- #, fuzzy
414
- msgid "List of post or page IDs to exclude from the results:"
415
- msgstr "排除的文章或页面 ID:"
416
-
417
- #: admin/options-output.php:129 admin/options-output.php:135
418
- msgid ""
419
- "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
420
- msgstr ""
421
-
422
- #: admin/options-output.php:132
423
  #, fuzzy
424
  msgid "Exclude display of related posts on these posts / pages"
425
  msgstr "添加相关日志到页面里"
426
 
427
- #: admin/options-output.php:138
428
- #, fuzzy
429
- msgid "Categories to exclude from the results: "
430
- msgstr "排除的文章或页面 ID:"
431
-
432
- #: admin/options-output.php:154
433
- msgid ""
434
- "Comma separated list of category slugs. The field above has an autocomplete "
435
- "so simply start typing in the beginning of your category name and it will "
436
- "prompt you with options."
437
- msgstr ""
438
-
439
- #: admin/options-output.php:157
440
  #, fuzzy
441
  msgid "Exclude display of related posts on these post types."
442
  msgstr "添加相关日志到页面里"
443
 
444
- #: admin/options-output.php:166
445
  #, fuzzy
446
  msgid ""
447
  "The related posts will not display on any of the above selected post types"
448
  msgstr "被索引的日志类型(包含自定义日志类型)"
449
 
450
- #: admin/options-output.php:196
451
  msgid "Customize the output:"
452
  msgstr "自定义显示:"
453
 
454
- #: admin/options-output.php:198
455
  msgid "HTML to display before the list of posts: "
456
  msgstr "显示在每篇日志后面的 HTML 标签:"
457
 
458
- #: admin/options-output.php:201
459
  msgid "HTML to display before each list item: "
460
  msgstr "显示在每篇日志后面的 HTML 标签:"
461
 
462
- #: admin/options-output.php:204
463
  msgid "HTML to display after each list item: "
464
  msgstr "显示在日志列表前面的 HTML 标签:"
465
 
466
- #: admin/options-output.php:207
467
  msgid "HTML to display after the list of posts: "
468
  msgstr "显示在日志列表后面的 HTML 标签:"
469
 
470
- #: admin/options-output.php:237
471
- msgid "Post thumbnail options:"
472
- msgstr "日志缩略图设置:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
473
 
474
- #: admin/options-output.php:261
475
  msgid ""
476
- "Contextual Related Posts adds a new image size with the below dimensions."
 
477
  msgstr ""
478
 
479
- #: admin/options-output.php:262
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
480
  msgid ""
481
- "If you change the width and/or height below, existing images will not be "
482
- "automatically resized."
483
  msgstr ""
484
 
485
- #: admin/options-output.php:263
486
  #, php-format
487
  msgid ""
488
- "I recommend using <a href='%s' target='_blank'>Force Regenerate Thumbnails</"
489
- "a> to regenerate all image sizes."
 
490
  msgstr ""
491
 
492
- #: admin/options-output.php:267
493
- #, fuzzy
494
- msgid "Maximum width of the thumbnail:"
495
- msgstr "缩略图最大宽度"
496
 
497
- #: admin/options-output.php:274
498
- msgid ""
499
- "Since you're using the default styles set under the Custom Styles section, "
500
- "the width and height is fixed at 150px"
501
  msgstr ""
502
 
503
- #: admin/options-output.php:278
504
  msgid "Crop mode:"
505
  msgstr ""
506
 
507
- #: admin/options-output.php:282
508
  msgid ""
509
- "By default, thumbnails will be proportionately cropped. Check this box to "
510
- "hard crop the thumbnails."
511
  msgstr ""
512
 
513
- #: admin/options-output.php:283
514
  #, php-format
515
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
516
  msgstr ""
517
 
518
- #: admin/options-output.php:287
 
 
 
 
 
 
519
  msgid "Style attributes / Width and Height HTML attributes:"
520
  msgstr ""
521
 
522
- #: admin/options-output.php:291
523
  msgid "Style attributes are used for width and height."
524
  msgstr ""
525
 
526
- #: admin/options-output.php:295
527
  msgid "HTML width and height attributes are used for width and height."
528
  msgstr ""
529
 
530
- #: admin/options-output.php:299
531
- msgid "Use timthumb to generate thumbnails? "
532
- msgstr "是否使用 timthumb 生成缩略图?"
533
-
534
- #: admin/options-output.php:301
535
- #, fuzzy
536
- msgid ""
537
- "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
538
- "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
539
- msgstr ""
540
- "勾选此项,将使用 <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
541
- "\">timthumb</a> 生成缩略图"
542
-
543
- #: admin/options-output.php:304
544
- msgid "Quality of thumbnails generated by timthumb:"
545
- msgstr ""
546
-
547
- #: admin/options-output.php:307
548
- msgid ""
549
- "Enter values between 0 and 100 only. 100 is highest quality and the highest "
550
- "file size. Suggested maximum value is 95. CRP default is 75."
551
- msgstr ""
552
-
553
- #: admin/options-output.php:310
554
  #, fuzzy
555
  msgid "Post thumbnail meta field name:"
556
  msgstr "日志缩略图自定义栏目的名称:"
557
 
558
- #: admin/options-output.php:312
559
  msgid ""
560
  "The value of this field should contain the image source and is set in the "
561
  "<em>Add New Post</em> screen"
562
  msgstr "该栏目的值在 <em>文章编辑 » 自定义栏目</em> 填写,需填写图像地址"
563
 
564
- #: admin/options-output.php:315
565
  msgid "Extract the first image from the post?"
566
  msgstr ""
567
 
568
- #: admin/options-output.php:317
569
  msgid ""
570
  "This will only happen if there is no post thumbnail set and no image URL is "
571
  "specified in the meta field."
572
  msgstr ""
573
 
574
- #: admin/options-output.php:320
575
  #, fuzzy
576
  msgid "Use default thumbnail?"
577
  msgstr "是否使用默认缩略图?"
578
 
579
- #: admin/options-output.php:322
580
  msgid ""
581
  "If checked, when no thumbnail is found, show a default one from the URL "
582
  "below. If not checked and no thumbnail is found, no image will be shown."
583
  msgstr ""
584
  "勾选此项,当不存在缩略图时,显示以下默认缩略图,不勾选则不显示任何图像。"
585
 
586
- #: admin/options-output.php:325
587
  #, fuzzy
588
  msgid "Default thumbnail:"
589
  msgstr "默认缩略图:"
590
 
591
- #: admin/options-output.php:328
592
  #, fuzzy
593
  msgid ""
594
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -598,6 +561,75 @@ msgstr ""
598
  "本插件按先后顺序检测日志本身、缩略图自定义栏目是否含有缩略图,若不存在,则显"
599
  "示上面默认图像"
600
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
601
  #: admin/sidebar-view.php:20
602
  msgid "Support the development"
603
  msgstr "支持开发"
@@ -620,114 +652,140 @@ msgstr "捐赠给作者"
620
  msgid "Follow me"
621
  msgstr ""
622
 
623
- #: admin/sidebar-view.php:52
624
  #, fuzzy
625
  msgid "Quick links"
626
  msgstr "快捷链接"
627
 
628
- #: admin/sidebar-view.php:56
629
  #, fuzzy
630
  msgid "Contextual Related Posts plugin page"
631
  msgstr "相关日志"
632
 
633
- #: admin/sidebar-view.php:57
634
  msgid "FAQ"
635
  msgstr ""
636
 
637
- #: admin/sidebar-view.php:59
638
  msgid "Reviews"
639
  msgstr ""
640
 
641
- #: admin/sidebar-view.php:60
642
  msgid "Github repository"
643
  msgstr ""
644
 
645
- #: admin/sidebar-view.php:61
646
  msgid "Other plugins"
647
  msgstr "其他插件"
648
 
649
- #: admin/sidebar-view.php:62
650
  msgid "Ajay's blog"
651
  msgstr "Ajay 的博客"
652
 
653
- #: contextual-related-posts.php:246
654
  msgid " by "
655
  msgstr ""
656
 
657
- #: contextual-related-posts.php:285
658
  #, php-format
659
  msgid "Powered by <a href=\"%s\" rel=\"nofollow\">Contextual Related Posts</a>"
660
  msgstr ""
661
 
662
- #: contextual-related-posts.php:596
663
  #, fuzzy
664
  msgid "Related Posts [CRP]"
665
  msgstr "相关日志"
666
 
667
- #: contextual-related-posts.php:597
668
  msgid "Display Related Posts"
669
  msgstr "显示相关日志"
670
 
671
- #: contextual-related-posts.php:620
672
  msgid "Title"
673
  msgstr "标题"
674
 
675
- #: contextual-related-posts.php:625
676
  msgid "No. of posts"
677
  msgstr "日志数量"
678
 
679
- #: contextual-related-posts.php:630
680
  msgid " Show excerpt?"
681
  msgstr "是否显示日志摘要?"
682
 
683
- #: contextual-related-posts.php:635
684
  msgid " Show author?"
685
  msgstr ""
686
 
687
- #: contextual-related-posts.php:640
688
  #, fuzzy
689
  msgid " Show date?"
690
  msgstr "是否显示日志摘要?"
691
 
692
- #: contextual-related-posts.php:644
693
- msgid "Thumbnail options"
694
- msgstr "缩略图设置:"
695
-
696
- #: contextual-related-posts.php:646
697
  msgid "Thumbnails inline, before title"
698
  msgstr "在标题前显示缩略图"
699
 
700
- #: contextual-related-posts.php:647
701
  msgid "Thumbnails inline, after title"
702
  msgstr "在标题后显示缩略图"
703
 
704
- #: contextual-related-posts.php:648
705
  msgid "Only thumbnails, no text"
706
  msgstr "不显示文本,只显示缩略图"
707
 
708
- #: contextual-related-posts.php:649
709
  msgid "No thumbnails, only text."
710
  msgstr "不显示缩略图,只显示文本"
711
 
712
- #: contextual-related-posts.php:654
713
  #, fuzzy
714
  msgid "Thumbnail height"
715
  msgstr "缩略图设置:"
716
 
717
- #: contextual-related-posts.php:659
718
  #, fuzzy
719
  msgid "Thumbnail width"
720
  msgstr "缩略图设置:"
721
 
722
- #: contextual-related-posts.php:799
723
  msgid "<h3>Related Posts:</h3>"
724
  msgstr "<h3>相关日志:</h3>"
725
 
726
- #: contextual-related-posts.php:801
727
  #, fuzzy
728
  msgid "No related posts found"
729
  msgstr "没有发现相关日志"
730
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
731
  #~ msgid "Powered by"
732
  #~ msgstr "插件作者:"
733
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-05-09 22:20-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: \n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e;_c;__ngettext\n"
14
  "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.7.1\n"
16
+ "X-Poedit-SourceCharset: UTF-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: admin/admin.php:166
20
  msgid "Options saved successfully."
21
  msgstr "成功保存设置。"
22
 
23
+ #: admin/admin.php:169
24
+ msgid ""
25
+ "Default styles selected. Thumbnail width, height and crop settings have been "
26
+ "fixed. Author, Excerpt and Date will not be displayed."
27
+ msgstr ""
28
+
29
+ #: admin/admin.php:194
30
  msgid "Options set to Default."
31
  msgstr "已重置设置。"
32
 
33
+ #: admin/admin.php:205
34
  msgid "Index recreated"
35
  msgstr "已重新创建索引"
36
 
37
+ #: admin/admin.php:222 admin/admin.php:453 admin/main-view.php:20
38
  msgid "Contextual Related Posts"
39
  msgstr "Contextual Related Posts"
40
 
41
+ #: admin/admin.php:223
42
  msgid "Related Posts"
43
  msgstr "相关日志"
44
 
45
+ #: admin/admin.php:338
46
  msgid "Settings"
47
  msgstr "设置"
48
 
49
+ #: admin/admin.php:360 admin/sidebar-view.php:59
50
  msgid "Support"
51
  msgstr "技术支持"
52
 
53
+ #: admin/admin.php:361
54
  msgid "Donate"
55
  msgstr "捐赠"
56
 
57
+ #: admin/admin.php:362
58
  msgid "Contribute"
59
  msgstr ""
60
 
61
+ #: admin/admin.php:378
62
  msgid "plugin settings page"
63
  msgstr "插件设置页面"
64
 
65
+ #: admin/admin.php:422
66
  msgid ""
67
  "An error occurred clearing the cache. Please contact your site administrator."
68
  "\\n\\nError message:\\n"
69
  msgstr ""
70
 
71
+ #: admin/admin.php:427
72
  msgid " cached row(s) cleared"
73
  msgstr ""
74
 
75
+ #: admin/admin.php:480
76
  #, fuzzy
77
  msgid "Location of thumbnail:"
78
  msgstr "日志缩略图位置:"
79
 
80
+ #: admin/admin.php:482
81
  msgid ""
82
  "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
83
  "image will be used for the post. It will be resized to the thumbnail size "
84
  "set under Settings &raquo; Related Posts &raquo; Output Options"
85
  msgstr ""
86
 
87
+ #: admin/admin.php:483
88
  msgid "The URL above is saved in the meta field: "
89
  msgstr ""
90
 
91
+ #: admin/main-view.php:32 admin/main-view.php:54
92
  msgid "General options"
93
  msgstr "一般设置"
94
 
95
+ #: admin/main-view.php:33 admin/main-view.php:125
96
+ msgid "List tuning options"
97
+ msgstr ""
98
+
99
+ #: admin/main-view.php:34 admin/main-view.php:229
100
  #, fuzzy
101
  msgid "Output options"
102
  msgstr "显示设置"
103
 
104
+ #: admin/main-view.php:35 admin/main-view.php:433
105
+ #: contextual-related-posts.php:718
106
+ msgid "Thumbnail options"
107
+ msgstr "缩略图设置:"
108
+
109
+ #: admin/main-view.php:36 admin/main-view.php:580
110
  #, fuzzy
111
  msgid "Feed options"
112
  msgstr "一般设置"
113
 
114
+ #: admin/main-view.php:37 admin/main-view.php:652
115
  #, fuzzy
116
  msgid "Custom styles"
117
  msgstr "自定义样式"
118
 
119
+ #: admin/main-view.php:70
120
+ msgid "Cache output?"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
121
  msgstr ""
122
 
123
+ #: admin/main-view.php:72
124
  msgid ""
125
+ "Enabling this option will cache the related posts output when the post is "
126
+ "visited the first time. The cache is cleaned when you save this page."
127
  msgstr ""
128
 
129
+ #: admin/main-view.php:73
130
+ msgid "Clear cache"
 
 
 
 
131
  msgstr ""
132
 
133
+ #: admin/main-view.php:77
 
 
 
 
134
  #, fuzzy
135
+ msgid "Add related posts to:"
136
+ msgstr "添加相关日志到 feed "
137
+
138
+ #: admin/main-view.php:79
139
+ msgid "Posts"
140
  msgstr ""
 
 
141
 
142
+ #: admin/main-view.php:80
143
+ msgid "Pages"
 
 
 
144
  msgstr ""
145
 
146
+ #: admin/main-view.php:81
147
+ msgid "Home page"
148
+ msgstr ""
149
 
150
+ #: admin/main-view.php:82
151
+ msgid "Feeds"
152
+ msgstr ""
153
 
154
+ #: admin/main-view.php:83
155
+ msgid "Category archives"
156
+ msgstr ""
157
 
158
+ #: admin/main-view.php:84
159
+ msgid "Tag archives"
160
+ msgstr ""
161
 
162
+ #: admin/main-view.php:85
163
+ msgid "Other archives"
164
+ msgstr ""
165
 
166
+ #: admin/main-view.php:86
167
+ #, fuzzy
168
+ msgid ""
169
+ "If you choose to disable this, please add <code>&lt;?php if "
170
+ "( function_exists( 'echo_ald_crp' ) ) echo_ald_crp(); ?&gt;</code> to your "
171
+ "template file where you want it displayed"
172
+ msgstr ""
173
+ "假如没有勾选此项,请在模板文件中找到需要显示的地方,添加代码 <code>&lt;?php "
174
+ "if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code>"
175
 
176
+ #: admin/main-view.php:90
177
+ msgid "Content filter priority:"
178
+ msgstr ""
179
 
180
+ #: admin/main-view.php:93
181
+ msgid ""
182
+ "A higher number will cause the content above to be processed after other "
183
+ "filters. Number below 10 is not recommended."
184
+ msgstr ""
185
 
186
+ #: admin/main-view.php:97
187
+ #, fuzzy
188
+ msgid "Tell the world you're using Contextual Related Posts:"
189
+ msgstr "Contextual Related Posts"
190
 
191
+ #: admin/main-view.php:99
192
+ msgid " <em>Optional</em>"
193
+ msgstr " <em>可选</em>"
194
 
195
+ #: admin/main-view.php:100
196
+ #, fuzzy
197
  msgid ""
198
+ "Adds a nofollow link to Contextual Related Posts homepage as the last time "
199
+ "in the list."
200
+ msgstr "相关日志"
201
 
202
+ #: admin/main-view.php:118 admin/main-view.php:222 admin/main-view.php:426
203
+ #: admin/main-view.php:573 admin/main-view.php:645 admin/main-view.php:709
204
+ msgid "Save Options"
205
+ msgstr "保存设置"
206
+
207
+ #: admin/main-view.php:141 admin/main-view.php:598
208
+ msgid "Number of related posts to display: "
209
+ msgstr "相关日志数量:"
210
 
211
+ #: admin/main-view.php:144
212
  msgid ""
213
  "Maximum number of posts that will be displayed. The actual number may be "
214
  "smaller if less related posts are found."
215
  msgstr ""
216
 
217
+ #: admin/main-view.php:148
218
  msgid "Related posts should be newer than:"
219
  msgstr ""
220
 
221
+ #: admin/main-view.php:150
222
  msgid "days"
223
  msgstr ""
224
 
225
+ #: admin/main-view.php:151
226
  msgid ""
227
  "This sets the cutoff period for which posts will be displayed. e.g. setting "
228
+ "it to 365 will show related posts from the last year only. Set it to 0 to "
229
+ "disable limiting posts."
230
  msgstr ""
231
 
232
+ #: admin/main-view.php:155
 
 
 
 
 
 
 
 
 
 
 
233
  #, fuzzy
234
  msgid "Find related posts based on content as well as title:"
235
  msgstr "根据标题和正文内容索引"
236
 
237
+ #: admin/main-view.php:157
238
  #, fuzzy
239
  msgid ""
240
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
241
  "or enabling \"Cache output\" above if you enable this."
242
  msgstr "假如没有勾选此项,则只从标题索引。(推荐已经开启缓存的用户勾选使用)"
243
 
244
+ #: admin/main-view.php:161
245
  msgid "Limit content to be compared"
246
  msgstr ""
247
 
248
+ #: admin/main-view.php:163
249
  msgid ""
250
  "This sets the maximum words of the content that will be matched. 0 means no "
251
  "limit."
252
  msgstr ""
253
 
254
+ #: admin/main-view.php:167
255
  #, fuzzy
256
+ msgid "Post types to include in results:"
257
+ msgstr "被索引的日志类型(包含自定义日志类型)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
258
 
259
+ #: admin/main-view.php:178
260
  #, fuzzy
261
  msgid ""
262
+ "These post types will be displayed in the list. Includes custom post types."
263
+ msgstr "被索引的日志类型(包含自定义日志类型)"
 
 
 
 
264
 
265
+ #: admin/main-view.php:182
266
+ #, fuzzy
267
+ msgid "List of post or page IDs to exclude from the results:"
268
+ msgstr "排除的文章或页面 ID:"
269
 
270
+ #: admin/main-view.php:184 admin/main-view.php:355
271
  msgid ""
272
+ "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
 
273
  msgstr ""
274
 
275
+ #: admin/main-view.php:188
276
  #, fuzzy
277
+ msgid "Categories to exclude from the results: "
278
+ msgstr "排除的文章或页面 ID:"
 
 
 
 
279
 
280
+ #: admin/main-view.php:204
 
281
  msgid ""
282
+ "Comma separated list of category slugs. The field above has an autocomplete "
283
+ "so simply start typing in the beginning of your category name and it will "
284
+ "prompt you with options."
285
+ msgstr ""
286
 
287
+ #: admin/main-view.php:245
288
  msgid "Title of related posts: "
289
  msgstr "相关日志的标题:"
290
 
291
+ #: admin/main-view.php:248
292
  msgid ""
293
  "This is the main heading of the related posts. You can also display the "
294
  "current post title by using <code>%postname%</code>. e.g. <code>Related "
295
  "Posts to %postname%</code>"
296
  msgstr ""
297
 
298
+ #: admin/main-view.php:252
299
  msgid "When there are no posts, what should be shown?"
300
  msgstr "当不存在相关日志时,显示什么?"
301
 
302
+ #: admin/main-view.php:256
303
  msgid "Blank Output"
304
  msgstr "不显示"
305
 
306
+ #: admin/main-view.php:260
307
  msgid "Display:"
308
  msgstr ""
309
 
310
+ #: admin/main-view.php:265 admin/main-view.php:601
311
+ msgid "Show post excerpt in list?"
312
+ msgstr "是否显示日志摘要?"
313
+
314
+ #: admin/main-view.php:268
315
  #, php-format
316
  msgid ""
317
  "Displays the excerpt of the post. If you do not provide an explicit excerpt "
319
  "automatic excerpt which refers to the first %d words of the post's content"
320
  msgstr ""
321
 
322
+ #: admin/main-view.php:271
323
+ msgid ""
324
+ "Default style selected under the Custom Styles. Excerpt display is disabled."
325
+ msgstr ""
326
+
327
+ #: admin/main-view.php:276
328
  msgid "Length of excerpt (in words): "
329
  msgstr "摘要长度(词数):"
330
 
331
+ #: admin/main-view.php:282
332
  #, fuzzy
333
  msgid "Show post author in list?"
334
  msgstr "是否显示日志摘要?"
335
 
336
+ #: admin/main-view.php:285
337
  msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
338
  msgstr ""
339
 
340
+ #: admin/main-view.php:288
341
+ msgid ""
342
+ "Default style selected under the Custom Styles. Author display is disabled."
343
+ msgstr ""
344
+
345
+ #: admin/main-view.php:293
346
  #, fuzzy
347
  msgid "Show post date in list?"
348
  msgstr "是否显示日志摘要?"
349
 
350
+ #: admin/main-view.php:296
351
  msgid ""
352
  "Displays the date of the post. Uses the same date format set in General "
353
  "Options"
354
  msgstr ""
355
 
356
+ #: admin/main-view.php:299
357
+ msgid ""
358
+ "Default style selected under the Custom Styles. Date display is disabled."
359
+ msgstr ""
360
+
361
+ #: admin/main-view.php:304
362
  msgid "Limit post title length (in characters)"
363
  msgstr ""
364
 
365
+ #: admin/main-view.php:307
366
  msgid ""
367
  "Any title longer than the number of characters set above will be cut and "
368
  "appended with a &helip;"
369
  msgstr ""
370
 
371
+ #: admin/main-view.php:311
372
  msgid "Open links in new window"
373
  msgstr ""
374
 
375
+ #: admin/main-view.php:317
376
  msgid "Add nofollow attribute to links in the list"
377
  msgstr ""
378
 
379
+ #: admin/main-view.php:350
380
  #, fuzzy
381
  msgid "Exclusion settings:"
382
  msgstr "插件设置页面"
383
 
384
+ #: admin/main-view.php:352
 
 
 
 
 
 
 
 
 
 
385
  #, fuzzy
386
  msgid "Exclude display of related posts on these posts / pages"
387
  msgstr "添加相关日志到页面里"
388
 
389
+ #: admin/main-view.php:358
 
 
 
 
 
 
 
 
 
 
 
 
390
  #, fuzzy
391
  msgid "Exclude display of related posts on these post types."
392
  msgstr "添加相关日志到页面里"
393
 
394
+ #: admin/main-view.php:367
395
  #, fuzzy
396
  msgid ""
397
  "The related posts will not display on any of the above selected post types"
398
  msgstr "被索引的日志类型(包含自定义日志类型)"
399
 
400
+ #: admin/main-view.php:397
401
  msgid "Customize the output:"
402
  msgstr "自定义显示:"
403
 
404
+ #: admin/main-view.php:399
405
  msgid "HTML to display before the list of posts: "
406
  msgstr "显示在每篇日志后面的 HTML 标签:"
407
 
408
+ #: admin/main-view.php:402
409
  msgid "HTML to display before each list item: "
410
  msgstr "显示在每篇日志后面的 HTML 标签:"
411
 
412
+ #: admin/main-view.php:405
413
  msgid "HTML to display after each list item: "
414
  msgstr "显示在日志列表前面的 HTML 标签:"
415
 
416
+ #: admin/main-view.php:408
417
  msgid "HTML to display after the list of posts: "
418
  msgstr "显示在日志列表后面的 HTML 标签:"
419
 
420
+ #: admin/main-view.php:449 admin/main-view.php:604
421
+ msgid "Location of post thumbnail:"
422
+ msgstr "日志缩略图位置:"
423
+
424
+ #: admin/main-view.php:453 admin/main-view.php:608
425
+ msgid "Display thumbnails inline with posts, before title"
426
+ msgstr "在标题前显示缩略图"
427
+
428
+ #: admin/main-view.php:457 admin/main-view.php:612
429
+ msgid "Display thumbnails inline with posts, after title"
430
+ msgstr "在标题后显示缩略图"
431
+
432
+ #: admin/main-view.php:461 admin/main-view.php:616
433
+ msgid "Display only thumbnails, no text"
434
+ msgstr "不显示文本,只显示缩略图"
435
+
436
+ #: admin/main-view.php:465 admin/main-view.php:620
437
+ msgid "Do not display thumbnails, only text."
438
+ msgstr "不显示缩略图,只显示文本"
439
 
440
+ #: admin/main-view.php:468
441
  msgid ""
442
+ "Default style selected under the Custom Styles. Location of thumbnail forced "
443
+ "to be inline before title"
444
  msgstr ""
445
 
446
+ #: admin/main-view.php:472
447
+ msgid "Thumbnail size:"
448
+ msgstr ""
449
+
450
+ #: admin/main-view.php:496
451
+ msgid "Custom size"
452
+ msgstr ""
453
+
454
+ #: admin/main-view.php:499
455
+ msgid ""
456
+ "You can choose from existing image sizes above or create a custom size. If "
457
+ "you have chosen Custom size above, then enter the width, height and crop "
458
+ "settings below. For best results, use a cropped image."
459
+ msgstr ""
460
+
461
+ #: admin/main-view.php:500
462
  msgid ""
463
+ "If you change the width, height or crop mode below, existing images will not "
464
+ "be automatically resized."
465
  msgstr ""
466
 
467
+ #: admin/main-view.php:501
468
  #, php-format
469
  msgid ""
470
+ "I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
471
+ "a> or <a href='%s' class='thickbox'>Regenerate Thumbnails</a> to regenerate "
472
+ "all image sizes."
473
  msgstr ""
474
 
475
+ #: admin/main-view.php:505
476
+ msgid "Width of the thumbnail:"
477
+ msgstr ""
 
478
 
479
+ #: admin/main-view.php:508
480
+ msgid "Height of the thumbnail: "
 
 
481
  msgstr ""
482
 
483
+ #: admin/main-view.php:513
484
  msgid "Crop mode:"
485
  msgstr ""
486
 
487
+ #: admin/main-view.php:517
488
  msgid ""
489
+ "By default, thumbnails will be hard cropped. Uncheck this box to "
490
+ "proportionately/soft crop the thumbnails."
491
  msgstr ""
492
 
493
+ #: admin/main-view.php:518
494
  #, php-format
495
  msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
496
  msgstr ""
497
 
498
+ #: admin/main-view.php:521
499
+ msgid ""
500
+ "Default style selected under the Custom Styles. Thumbnail width and height "
501
+ "is fixed at 150px and crop mode is enabled."
502
+ msgstr ""
503
+
504
+ #: admin/main-view.php:525
505
  msgid "Style attributes / Width and Height HTML attributes:"
506
  msgstr ""
507
 
508
+ #: admin/main-view.php:529
509
  msgid "Style attributes are used for width and height."
510
  msgstr ""
511
 
512
+ #: admin/main-view.php:533
513
  msgid "HTML width and height attributes are used for width and height."
514
  msgstr ""
515
 
516
+ #: admin/main-view.php:537
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
517
  #, fuzzy
518
  msgid "Post thumbnail meta field name:"
519
  msgstr "日志缩略图自定义栏目的名称:"
520
 
521
+ #: admin/main-view.php:539
522
  msgid ""
523
  "The value of this field should contain the image source and is set in the "
524
  "<em>Add New Post</em> screen"
525
  msgstr "该栏目的值在 <em>文章编辑 » 自定义栏目</em> 填写,需填写图像地址"
526
 
527
+ #: admin/main-view.php:542
528
  msgid "Extract the first image from the post?"
529
  msgstr ""
530
 
531
+ #: admin/main-view.php:544
532
  msgid ""
533
  "This will only happen if there is no post thumbnail set and no image URL is "
534
  "specified in the meta field."
535
  msgstr ""
536
 
537
+ #: admin/main-view.php:547
538
  #, fuzzy
539
  msgid "Use default thumbnail?"
540
  msgstr "是否使用默认缩略图?"
541
 
542
+ #: admin/main-view.php:549
543
  msgid ""
544
  "If checked, when no thumbnail is found, show a default one from the URL "
545
  "below. If not checked and no thumbnail is found, no image will be shown."
546
  msgstr ""
547
  "勾选此项,当不存在缩略图时,显示以下默认缩略图,不勾选则不显示任何图像。"
548
 
549
+ #: admin/main-view.php:552
550
  #, fuzzy
551
  msgid "Default thumbnail:"
552
  msgstr "默认缩略图:"
553
 
554
+ #: admin/main-view.php:555
555
  #, fuzzy
556
  msgid ""
557
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
561
  "本插件按先后顺序检测日志本身、缩略图自定义栏目是否含有缩略图,若不存在,则显"
562
  "示上面默认图像"
563
 
564
+ #: admin/main-view.php:596
565
+ msgid ""
566
+ "Below options override the related posts settings for your blog feed. These "
567
+ "only apply if you have selected to add related posts to Feeds in the General "
568
+ "Options tab."
569
+ msgstr ""
570
+
571
+ #: admin/main-view.php:624
572
+ msgid "Maximum width of the thumbnail: "
573
+ msgstr "缩略图最大宽度"
574
+
575
+ #: admin/main-view.php:627
576
+ msgid "Maximum height of the thumbnail: "
577
+ msgstr "缩略图最大高度"
578
+
579
+ #: admin/main-view.php:668
580
+ msgid "Use default style included in the plugin?"
581
+ msgstr ""
582
+
583
+ #: admin/main-view.php:671
584
+ msgid ""
585
+ "Contextual Related Posts includes a default style that makes your popular "
586
+ "posts list to look beautiful. Check the box above if you want to use this."
587
+ msgstr ""
588
+
589
+ #: admin/main-view.php:672
590
+ msgid ""
591
+ "Enabling this option will turn on the thumbnails and set their width and "
592
+ "height to 150px. It will also turn off the display of the author, excerpt "
593
+ "and date if already enabled. Disabling this option will not revert any "
594
+ "settings."
595
+ msgstr ""
596
+
597
+ #: admin/main-view.php:673
598
+ #, php-format
599
+ msgid ""
600
+ "You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
601
+ msgstr ""
602
+
603
+ #: admin/main-view.php:676
604
+ msgid "Custom CSS to add to header:"
605
+ msgstr "添加自定义 CSS 到 header:"
606
+
607
+ #: admin/main-view.php:680
608
+ #, fuzzy
609
+ msgid ""
610
+ "Do not include <code>style</code> tags. Check out the <a href=\"http://"
611
+ "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
612
+ "\">FAQ</a> for available CSS classes to style."
613
+ msgstr ""
614
+ "不要使用 <code>style</code> 标签。请查看 <a href=\"http://wordpress.org/"
615
+ "extend/plugins/contextual-related-posts/faq/\">FAQ</a> 中可用的 CSS classes。"
616
+
617
+ #: admin/main-view.php:710
618
+ msgid "Default Options"
619
+ msgstr "默认设置"
620
+
621
+ #: admin/main-view.php:710
622
+ msgid "Do you want to set options to Default?"
623
+ msgstr "是否要重置设置?"
624
+
625
+ #: admin/main-view.php:711
626
+ msgid "Recreate Index"
627
+ msgstr "重建索引"
628
+
629
+ #: admin/main-view.php:711
630
+ msgid "Are you sure you want to recreate the index?"
631
+ msgstr "是否要重建索引?"
632
+
633
  #: admin/sidebar-view.php:20
634
  msgid "Support the development"
635
  msgstr "支持开发"
652
  msgid "Follow me"
653
  msgstr ""
654
 
655
+ #: admin/sidebar-view.php:53
656
  #, fuzzy
657
  msgid "Quick links"
658
  msgstr "快捷链接"
659
 
660
+ #: admin/sidebar-view.php:57
661
  #, fuzzy
662
  msgid "Contextual Related Posts plugin page"
663
  msgstr "相关日志"
664
 
665
+ #: admin/sidebar-view.php:58
666
  msgid "FAQ"
667
  msgstr ""
668
 
669
+ #: admin/sidebar-view.php:60
670
  msgid "Reviews"
671
  msgstr ""
672
 
673
+ #: admin/sidebar-view.php:61
674
  msgid "Github repository"
675
  msgstr ""
676
 
677
+ #: admin/sidebar-view.php:62
678
  msgid "Other plugins"
679
  msgstr "其他插件"
680
 
681
+ #: admin/sidebar-view.php:63
682
  msgid "Ajay's blog"
683
  msgstr "Ajay 的博客"
684
 
685
+ #: contextual-related-posts.php:250
686
  msgid " by "
687
  msgstr ""
688
 
689
+ #: contextual-related-posts.php:289
690
  #, php-format
691
  msgid "Powered by <a href=\"%s\" rel=\"nofollow\">Contextual Related Posts</a>"
692
  msgstr ""
693
 
694
+ #: contextual-related-posts.php:670
695
  #, fuzzy
696
  msgid "Related Posts [CRP]"
697
  msgstr "相关日志"
698
 
699
+ #: contextual-related-posts.php:671
700
  msgid "Display Related Posts"
701
  msgstr "显示相关日志"
702
 
703
+ #: contextual-related-posts.php:694
704
  msgid "Title"
705
  msgstr "标题"
706
 
707
+ #: contextual-related-posts.php:699
708
  msgid "No. of posts"
709
  msgstr "日志数量"
710
 
711
+ #: contextual-related-posts.php:704
712
  msgid " Show excerpt?"
713
  msgstr "是否显示日志摘要?"
714
 
715
+ #: contextual-related-posts.php:709
716
  msgid " Show author?"
717
  msgstr ""
718
 
719
+ #: contextual-related-posts.php:714
720
  #, fuzzy
721
  msgid " Show date?"
722
  msgstr "是否显示日志摘要?"
723
 
724
+ #: contextual-related-posts.php:720
 
 
 
 
725
  msgid "Thumbnails inline, before title"
726
  msgstr "在标题前显示缩略图"
727
 
728
+ #: contextual-related-posts.php:721
729
  msgid "Thumbnails inline, after title"
730
  msgstr "在标题后显示缩略图"
731
 
732
+ #: contextual-related-posts.php:722
733
  msgid "Only thumbnails, no text"
734
  msgstr "不显示文本,只显示缩略图"
735
 
736
+ #: contextual-related-posts.php:723
737
  msgid "No thumbnails, only text."
738
  msgstr "不显示缩略图,只显示文本"
739
 
740
+ #: contextual-related-posts.php:728
741
  #, fuzzy
742
  msgid "Thumbnail height"
743
  msgstr "缩略图设置:"
744
 
745
+ #: contextual-related-posts.php:733
746
  #, fuzzy
747
  msgid "Thumbnail width"
748
  msgstr "缩略图设置:"
749
 
750
+ #: contextual-related-posts.php:897
751
  msgid "<h3>Related Posts:</h3>"
752
  msgstr "<h3>相关日志:</h3>"
753
 
754
+ #: contextual-related-posts.php:899
755
  #, fuzzy
756
  msgid "No related posts found"
757
  msgstr "没有发现相关日志"
758
 
759
+ #: contextual-related-posts.php:1211
760
+ msgid "thumb_timthumb argument has been deprecated"
761
+ msgstr ""
762
+
763
+ #: contextual-related-posts.php:1215
764
+ msgid "thumb_timthumb_q argument has been deprecated"
765
+ msgstr ""
766
+
767
+ #: contextual-related-posts.php:1219
768
+ msgid "filter argument has been deprecated"
769
+ msgstr ""
770
+
771
+ #~ msgid "Post thumbnail options:"
772
+ #~ msgstr "日志缩略图设置:"
773
+
774
+ #, fuzzy
775
+ #~ msgid "Maximum width of the thumbnail:"
776
+ #~ msgstr "缩略图最大宽度"
777
+
778
+ #~ msgid "Use timthumb to generate thumbnails? "
779
+ #~ msgstr "是否使用 timthumb 生成缩略图?"
780
+
781
+ #, fuzzy
782
+ #~ msgid ""
783
+ #~ "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
784
+ #~ "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
785
+ #~ msgstr ""
786
+ #~ "勾选此项,将使用 <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
787
+ #~ "\">timthumb</a> 生成缩略图"
788
+
789
  #~ msgid "Powered by"
790
  #~ msgstr "插件作者:"
791
 
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
- === Contextual Related Posts ===
2
  Tags: related posts, related, similar posts, posts, post, feed, feeds, rss, widget, thumbnail
3
  Contributors: Ajay
4
  Donate link: http://ajaydsouza.com/donate/
5
  Stable tag: trunk
6
  Requires at least: 3.5
7
- Tested up to: 4.1
8
  License: GPLv2 or later
9
 
10
  Display related posts on your WordPress blog and feed. Supports thumbnails, shortcodes, widgets and custom post types!
@@ -42,7 +42,7 @@ The plugin also comes with it's very own inbuilt stylesheet that let's your rela
42
 
43
  = Donations =
44
 
45
- I spend a significant amount of my free time maintaing, updating and more importantly supporting this plugin. Those who have sought support in the support forums know that I have done my best to answer your question and solve your problem.
46
  If you have been using this plugin and find this useful, do consider making a donation. This helps me pay for my hosting and domains.
47
 
48
  = Contribute =
@@ -53,19 +53,33 @@ So, if you've got some cool feature that you'd like to implement into the plugin
53
  = Translations =
54
  Contextual Related Posts is now on Transifex ready for translation courtesy the <a href="http://wp-translations.org/translators-wp-translations/">WP Translations</a>. WP-Translations is the place where you will find a number of WordPress amazing Plugins and Themes to make them available in your home language. In exchange you will receive credit for your work and will certainly make part of the WP community history in your country.
55
 
56
- If you're a translator, do consider joining the Wp Translations team.
57
 
58
- Visit <a href="https://www.transifex.com/projects/p/contextual-related-posts/">Contextual Related Posts on Transifex</a>.
59
 
60
  == Upgrade Notice ==
61
 
62
- = 2.0.1 =
63
- * New multisite support; Thumbnails no longer need timthumb; HTTPS support for thumbnails; filters for mySQL query;
64
- Check the Changelog for a full list of changes.
65
 
66
 
67
  == Changelog ==
68
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
69
  = 2.0.1 =
70
  * Fixed: Clear Cache button which broke in 2.0.0
71
 
@@ -309,14 +323,19 @@ Check the Changelog for a full list of changes.
309
 
310
  5. Optionally visit the **Custom Styles** tab to add any custom CSS styles. These are added to `wp_head` on the pages where the posts are displayed
311
 
 
312
  == Screenshots ==
313
 
314
  1. CRP options in WP-Admin - General options
315
- 2. CRP options in WP-Admin - Output options
316
- 3. CRP options in WP-Admin - Feed options
317
- 4. CRP options in WP-Admin - Custom styles
318
- 5. CRP Widget
319
- 6. Contextual Related Post metabox in the Edit Posts screen
 
 
 
 
320
 
321
  == Frequently Asked Questions ==
322
 
1
+ === Contextual Related Posts ===
2
  Tags: related posts, related, similar posts, posts, post, feed, feeds, rss, widget, thumbnail
3
  Contributors: Ajay
4
  Donate link: http://ajaydsouza.com/donate/
5
  Stable tag: trunk
6
  Requires at least: 3.5
7
+ Tested up to: 4.3
8
  License: GPLv2 or later
9
 
10
  Display related posts on your WordPress blog and feed. Supports thumbnails, shortcodes, widgets and custom post types!
42
 
43
  = Donations =
44
 
45
+ I spend a significant amount of my free time maintaining, updating and more importantly supporting this plugin. Those who have sought support in the support forums know that I have done my best to answer your question and solve your problem.
46
  If you have been using this plugin and find this useful, do consider making a donation. This helps me pay for my hosting and domains.
47
 
48
  = Contribute =
53
  = Translations =
54
  Contextual Related Posts is now on Transifex ready for translation courtesy the <a href="http://wp-translations.org/translators-wp-translations/">WP Translations</a>. WP-Translations is the place where you will find a number of WordPress amazing Plugins and Themes to make them available in your home language. In exchange you will receive credit for your work and will certainly make part of the WP community history in your country.
55
 
56
+ If you're a translator, do consider joining the Wp Translations team and translate <a href="https://www.transifex.com/projects/p/contextual-related-posts/">Contextual Related Posts on Transifex</a>.
57
 
 
58
 
59
  == Upgrade Notice ==
60
 
61
+ = 2.1.1 =
62
+ * Modified: Settings page now clearly highlights what options cannot be changed if the default styles are enabled, i.e. thumbnail settings and no excerpt, author or date
 
63
 
64
 
65
  == Changelog ==
66
 
67
+ = 2.1.1 =
68
+ * Modified: Settings page now clearly highlights what options cannot be changed if the default styles are enabled, i.e. thumbnail settings and no excerpt, author or date
69
+
70
+ = 2.1.0 =
71
+ * New: Separate cache for related posts added to feeds. Prevents conflict with the cache for normal related posts
72
+ * New: Timthumb has been deprecated
73
+ * New: Setting "Related posts should be newer than:" to 0 to disable limiting posts by age
74
+ * New: Filters `crp_posts_match`, `crp_posts_now_date`, `crp_posts_from_date` to modify the WHERE clause
75
+ * Modified: `thumb_timthumb`, `thumb_timthumb_q` and `filter` attributes for the function `crp_get_the_post_thumbnail` have been deprecated. If you're using this function, an entry will be created for the deprecated log
76
+ * Modified: Reset default thumbnail URL location to plugin default if the field is blank or only contains `/default.png`
77
+ * Modified: Meta-box will no longer be displayed on non-public post types
78
+ * Modified: For first image, the plugin will attempt to seek the correct thumbnail size if available
79
+ * Fixed: Author link was incorrectly displayed multiple times in the list when Show Author was enabled
80
+ * Fixed: WP Notice Errors when using the Widget via the Customizer menu in WordPress
81
+ * Fixed: Incorrect thumbnail was pulled on attachment pages
82
+
83
  = 2.0.1 =
84
  * Fixed: Clear Cache button which broke in 2.0.0
85
 
323
 
324
  5. Optionally visit the **Custom Styles** tab to add any custom CSS styles. These are added to `wp_head` on the pages where the posts are displayed
325
 
326
+
327
  == Screenshots ==
328
 
329
  1. CRP options in WP-Admin - General options
330
+ 2. CRP options in WP-Admin - List tuning options
331
+ 3. CRP options in WP-Admin - Output options
332
+ 4. CRP options in WP-Admin - Thumbnail options
333
+ 5. CRP options in WP-Admin - Feed options
334
+ 6. CRP options in WP-Admin - Custom styles
335
+ 7. Default style of Related Posts
336
+ 8. Contextual Related Post metabox in the Edit Posts screen
337
+ 9. CRP Widget
338
+
339
 
340
  == Frequently Asked Questions ==
341
 
timthumb/cache/index.php DELETED
@@ -1 +0,0 @@
1
- <?php // Silence is golden
 
timthumb/index.php DELETED
@@ -1 +0,0 @@
1
- <?php // Silence is golden
 
timthumb/timthumb.php DELETED
@@ -1,1270 +0,0 @@
1
- <?php
2
- /**
3
- * TimThumb by Ben Gillbanks and Mark Maunder
4
- * Based on work done by Tim McDaniels and Darren Hoyt
5
- * http://code.google.com/p/timthumb/
6
- *
7
- * GNU General Public License, version 2
8
- * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
9
- *
10
- * Examples and documentation available on the project homepage
11
- * http://www.binarymoon.co.uk/projects/timthumb/
12
- *
13
- * $Rev$
14
- */
15
-
16
- /*
17
- * --- TimThumb CONFIGURATION ---
18
- * To edit the configs it is best to create a file called timthumb-config.php
19
- * and define variables you want to customize in there. It will automatically be
20
- * loaded by timthumb. This will save you having to re-edit these variables
21
- * everytime you download a new version
22
- */
23
- define ('VERSION', '2.8.13'); // Version of this script
24
- //Load a config file if it exists. Otherwise, use the values below
25
- if( file_exists(dirname(__FILE__) . '/timthumb-config.php')) require_once('timthumb-config.php');
26
- if(! defined('DEBUG_ON') ) define ('DEBUG_ON', false); // Enable debug logging to web server error log (STDERR)
27
- if(! defined('DEBUG_LEVEL') ) define ('DEBUG_LEVEL', 1); // Debug level 1 is less noisy and 3 is the most noisy
28
- if(! defined('MEMORY_LIMIT') ) define ('MEMORY_LIMIT', '30M'); // Set PHP memory limit
29
- if(! defined('BLOCK_EXTERNAL_LEECHERS') ) define ('BLOCK_EXTERNAL_LEECHERS', false); // If the image or webshot is being loaded on an external site, display a red "No Hotlinking" gif.
30
- if(! defined('DISPLAY_ERROR_MESSAGES') ) define ('DISPLAY_ERROR_MESSAGES', true); // Display error messages. Set to false to turn off errors (good for production websites)
31
- //Image fetching and caching
32
- if(! defined('ALLOW_EXTERNAL') ) define ('ALLOW_EXTERNAL', TRUE); // Allow image fetching from external websites. Will check against ALLOWED_SITES if ALLOW_ALL_EXTERNAL_SITES is false
33
- if(! defined('ALLOW_ALL_EXTERNAL_SITES') ) define ('ALLOW_ALL_EXTERNAL_SITES', false); // Less secure.
34
- if(! defined('FILE_CACHE_ENABLED') ) define ('FILE_CACHE_ENABLED', TRUE); // Should we store resized/modified images on disk to speed things up?
35
- if(! defined('FILE_CACHE_TIME_BETWEEN_CLEANS')) define ('FILE_CACHE_TIME_BETWEEN_CLEANS', 86400); // How often the cache is cleaned
36
-
37
- if(! defined('FILE_CACHE_MAX_FILE_AGE') ) define ('FILE_CACHE_MAX_FILE_AGE', 86400); // How old does a file have to be to be deleted from the cache
38
- if(! defined('FILE_CACHE_SUFFIX') ) define ('FILE_CACHE_SUFFIX', '.timthumb.txt'); // What to put at the end of all files in the cache directory so we can identify them
39
- if(! defined('FILE_CACHE_PREFIX') ) define ('FILE_CACHE_PREFIX', 'timthumb'); // What to put at the beg of all files in the cache directory so we can identify them
40
- if(! defined('FILE_CACHE_DIRECTORY') ) define ('FILE_CACHE_DIRECTORY', './cache'); // Directory where images are cached. Left blank it will use the system temporary directory (which is better for security)
41
- if(! defined('MAX_FILE_SIZE') ) define ('MAX_FILE_SIZE', 10485760); // 10 Megs is 10485760. This is the max internal or external file size that we'll process.
42
- if(! defined('CURL_TIMEOUT') ) define ('CURL_TIMEOUT', 20); // Timeout duration for Curl. This only applies if you have Curl installed and aren't using PHP's default URL fetching mechanism.
43
- if(! defined('WAIT_BETWEEN_FETCH_ERRORS') ) define ('WAIT_BETWEEN_FETCH_ERRORS', 3600); // Time to wait between errors fetching remote file
44
-
45
- //Browser caching
46
- if(! defined('BROWSER_CACHE_MAX_AGE') ) define ('BROWSER_CACHE_MAX_AGE', 864000); // Time to cache in the browser
47
- if(! defined('BROWSER_CACHE_DISABLE') ) define ('BROWSER_CACHE_DISABLE', false); // Use for testing if you want to disable all browser caching
48
-
49
- //Image size and defaults
50
- if(! defined('MAX_WIDTH') ) define ('MAX_WIDTH', 1500); // Maximum image width
51
- if(! defined('MAX_HEIGHT') ) define ('MAX_HEIGHT', 1500); // Maximum image height
52
- if(! defined('NOT_FOUND_IMAGE') ) define ('NOT_FOUND_IMAGE', ''); // Image to serve if any 404 occurs
53
- if(! defined('ERROR_IMAGE') ) define ('ERROR_IMAGE', ''); // Image to serve if an error occurs instead of showing error message
54
- if(! defined('PNG_IS_TRANSPARENT') ) define ('PNG_IS_TRANSPARENT', FALSE); // Define if a png image should have a transparent background color. Use False value if you want to display a custom coloured canvas_colour
55
- if(! defined('DEFAULT_Q') ) define ('DEFAULT_Q', 90); // Default image quality. Allows overrid in timthumb-config.php
56
- if(! defined('DEFAULT_ZC') ) define ('DEFAULT_ZC', 1); // Default zoom/crop setting. Allows overrid in timthumb-config.php
57
- if(! defined('DEFAULT_F') ) define ('DEFAULT_F', ''); // Default image filters. Allows overrid in timthumb-config.php
58
- if(! defined('DEFAULT_S') ) define ('DEFAULT_S', 0); // Default sharpen value. Allows overrid in timthumb-config.php
59
- if(! defined('DEFAULT_CC') ) define ('DEFAULT_CC', 'ffffff'); // Default canvas colour. Allows overrid in timthumb-config.php
60
- if(! defined('DEFAULT_WIDTH') ) define ('DEFAULT_WIDTH', 100); // Default thumbnail width. Allows overrid in timthumb-config.php
61
- if(! defined('DEFAULT_HEIGHT') ) define ('DEFAULT_HEIGHT', 100); // Default thumbnail height. Allows overrid in timthumb-config.php
62
-
63
- /**
64
- * Additional Parameters:
65
- * LOCAL_FILE_BASE_DIRECTORY = Override the DOCUMENT_ROOT. This is best used in timthumb-config.php
66
- */
67
-
68
- //Image compression is enabled if either of these point to valid paths
69
-
70
- //These are now disabled by default because the file sizes of PNGs (and GIFs) are much smaller than we used to generate.
71
- //They only work for PNGs. GIFs and JPEGs are not affected.
72
- if(! defined('OPTIPNG_ENABLED') ) define ('OPTIPNG_ENABLED', false);
73
- if(! defined('OPTIPNG_PATH') ) define ('OPTIPNG_PATH', '/usr/bin/optipng'); //This will run first because it gives better compression than pngcrush.
74
- if(! defined('PNGCRUSH_ENABLED') ) define ('PNGCRUSH_ENABLED', false);
75
- if(! defined('PNGCRUSH_PATH') ) define ('PNGCRUSH_PATH', '/usr/bin/pngcrush'); //This will only run if OPTIPNG_PATH is not set or is not valid
76
-
77
- /*
78
- -------====Website Screenshots configuration - BETA====-------
79
-
80
- If you just want image thumbnails and don't want website screenshots, you can safely leave this as is.
81
-
82
- If you would like to get website screenshots set up, you will need root access to your own server.
83
-
84
- Enable ALLOW_ALL_EXTERNAL_SITES so you can fetch any external web page. This is more secure now that we're using a non-web folder for cache.
85
- Enable BLOCK_EXTERNAL_LEECHERS so that your site doesn't generate thumbnails for the whole Internet.
86
-
87
- Instructions to get website screenshots enabled on Ubuntu Linux:
88
-
89
- 1. Install Xvfb with the following command: sudo apt-get install subversion libqt4-webkit libqt4-dev g++ xvfb
90
- 2. Go to a directory where you can download some code
91
- 3. Check-out the latest version of CutyCapt with the following command: svn co https://cutycapt.svn.sourceforge.net/svnroot/cutycapt
92
- 4. Compile CutyCapt by doing: cd cutycapt/CutyCapt
93
- 5. qmake
94
- 6. make
95
- 7. cp CutyCapt /usr/local/bin/
96
- 8. Test it by running: xvfb-run --server-args="-screen 0, 1024x768x24" CutyCapt --url="http://markmaunder.com/" --out=test.png
97
- 9. If you get a file called test.png with something in it, it probably worked. Now test the script by accessing it as follows:
98
- 10. http://yoursite.com/path/to/timthumb.php?src=http://markmaunder.com/&webshot=1
99
-
100
- Notes on performance:
101
- The first time a webshot loads, it will take a few seconds.
102
- From then on it uses the regular timthumb caching mechanism with the configurable options above
103
- and loading will be very fast.
104
-
105
- --ADVANCED USERS ONLY--
106
- If you'd like a slight speedup (about 25%) and you know Linux, you can run the following command which will keep Xvfb running in the background.
107
- nohup Xvfb :100 -ac -nolisten tcp -screen 0, 1024x768x24 > /dev/null 2>&1 &
108
- Then set WEBSHOT_XVFB_RUNNING = true below. This will save your server having to fire off a new Xvfb server and shut it down every time a new shot is generated.
109
- You will need to take responsibility for keeping Xvfb running in case it crashes. (It seems pretty stable)
110
- You will also need to take responsibility for server security if you're running Xvfb as root.
111
-
112
-
113
- */
114
- if(! defined('WEBSHOT_ENABLED') ) define ('WEBSHOT_ENABLED', false); //Beta feature. Adding webshot=1 to your query string will cause the script to return a browser screenshot rather than try to fetch an image.
115
- if(! defined('WEBSHOT_CUTYCAPT') ) define ('WEBSHOT_CUTYCAPT', '/usr/local/bin/CutyCapt'); //The path to CutyCapt.
116
- if(! defined('WEBSHOT_XVFB') ) define ('WEBSHOT_XVFB', '/usr/bin/xvfb-run'); //The path to the Xvfb server
117
- if(! defined('WEBSHOT_SCREEN_X') ) define ('WEBSHOT_SCREEN_X', '1024'); //1024 works ok
118
- if(! defined('WEBSHOT_SCREEN_Y') ) define ('WEBSHOT_SCREEN_Y', '768'); //768 works ok
119
- if(! defined('WEBSHOT_COLOR_DEPTH') ) define ('WEBSHOT_COLOR_DEPTH', '24'); //I haven't tested anything besides 24
120
- if(! defined('WEBSHOT_IMAGE_FORMAT') ) define ('WEBSHOT_IMAGE_FORMAT', 'png'); //png is about 2.5 times the size of jpg but is a LOT better quality
121
- if(! defined('WEBSHOT_TIMEOUT') ) define ('WEBSHOT_TIMEOUT', '20'); //Seconds to wait for a webshot
122
- if(! defined('WEBSHOT_USER_AGENT') ) define ('WEBSHOT_USER_AGENT', "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.9.2.18) Gecko/20110614 Firefox/3.6.18"); //I hate to do this, but a non-browser robot user agent might not show what humans see. So we pretend to be Firefox
123
- if(! defined('WEBSHOT_JAVASCRIPT_ON') ) define ('WEBSHOT_JAVASCRIPT_ON', true); //Setting to false might give you a slight speedup and block ads. But it could cause other issues.
124
- if(! defined('WEBSHOT_JAVA_ON') ) define ('WEBSHOT_JAVA_ON', false); //Have only tested this as fase
125
- if(! defined('WEBSHOT_PLUGINS_ON') ) define ('WEBSHOT_PLUGINS_ON', true); //Enable flash and other plugins
126
- if(! defined('WEBSHOT_PROXY') ) define ('WEBSHOT_PROXY', ''); //In case you're behind a proxy server.
127
- if(! defined('WEBSHOT_XVFB_RUNNING') ) define ('WEBSHOT_XVFB_RUNNING', false); //ADVANCED: Enable this if you've got Xvfb running in the background.
128
-
129
-
130
- // If ALLOW_EXTERNAL is true and ALLOW_ALL_EXTERNAL_SITES is false, then external images will only be fetched from these domains and their subdomains.
131
- if(! isset($ALLOWED_SITES)){
132
- $ALLOWED_SITES = array (
133
- 'flickr.com',
134
- 'staticflickr.com',
135
- 'picasa.com',
136
- 'img.youtube.com',
137
- 'upload.wikimedia.org',
138
- 'photobucket.com',
139
- 'imgur.com',
140
- 'imageshack.us',
141
- 'tinypic.com',
142
- 'wordpress.com',
143
- 'wordpress.org',
144
- 'wp.com',
145
- 's3.amazonaws.com',
146
- 'w.org',
147
- 'github.com',
148
- );
149
- }
150
- // -------------------------------------------------------------
151
- // -------------- STOP EDITING CONFIGURATION HERE --------------
152
- // -------------------------------------------------------------
153
-
154
- timthumb::start();
155
-
156
- class timthumb {
157
- protected $src = "";
158
- protected $is404 = false;
159
- protected $docRoot = "";
160
- protected $lastURLError = false;
161
- protected $localImage = "";
162
- protected $localImageMTime = 0;
163
- protected $url = false;
164
- protected $myHost = "";
165
- protected $isURL = false;
166
- protected $cachefile = '';
167
- protected $errors = array();
168
- protected $toDeletes = array();
169
- protected $cacheDirectory = '';
170
- protected $startTime = 0;
171
- protected $lastBenchTime = 0;
172
- protected $cropTop = false;
173
- protected $salt = "";
174
- protected $fileCacheVersion = 1; //Generally if timthumb.php is modifed (upgraded) then the salt changes and all cache files are recreated. This is a backup mechanism to force regen.
175
- protected $filePrependSecurityBlock = "<?php die('Execution denied!'); //"; //Designed to have three letter mime type, space, question mark and greater than symbol appended. 6 bytes total.
176
- protected static $curlDataWritten = 0;
177
- protected static $curlFH = false;
178
- public static function start(){
179
- $tim = new timthumb();
180
- $tim->handleErrors();
181
- $tim->securityChecks();
182
- if($tim->tryBrowserCache()){
183
- exit(0);
184
- }
185
- $tim->handleErrors();
186
- if(FILE_CACHE_ENABLED && $tim->tryServerCache()){
187
- exit(0);
188
- }
189
- $tim->handleErrors();
190
- $tim->run();
191
- $tim->handleErrors();
192
- exit(0);
193
- }
194
- public function __construct(){
195
- global $ALLOWED_SITES;
196
- $this->startTime = microtime(true);
197
- date_default_timezone_set('UTC');
198
- $this->debug(1, "Starting new request from " . $this->getIP() . " to " . $_SERVER['REQUEST_URI']);
199
- $this->calcDocRoot();
200
- //On windows systems I'm assuming fileinode returns an empty string or a number that doesn't change. Check this.
201
- $this->salt = @filemtime(__FILE__) . '-' . @fileinode(__FILE__);
202
- $this->debug(3, "Salt is: " . $this->salt);
203
- if(FILE_CACHE_DIRECTORY){
204
- if(! is_dir(FILE_CACHE_DIRECTORY)){
205
- @mkdir(FILE_CACHE_DIRECTORY);
206
- if(! is_dir(FILE_CACHE_DIRECTORY)){
207
- $this->error("Could not create the file cache directory.");
208
- return false;
209
- }
210
- }
211
- $this->cacheDirectory = FILE_CACHE_DIRECTORY;
212
- if (!touch($this->cacheDirectory . '/index.html')) {
213
- $this->error("Could not create the index.html file - to fix this create an empty file named index.html file in the cache directory.");
214
- }
215
- } else {
216
- $this->cacheDirectory = sys_get_temp_dir();
217
- }
218
- //Clean the cache before we do anything because we don't want the first visitor after FILE_CACHE_TIME_BETWEEN_CLEANS expires to get a stale image.
219
- $this->cleanCache();
220
-
221
- $this->myHost = preg_replace('/^www\./i', '', $_SERVER['HTTP_HOST']);
222
- $this->src = $this->param('src');
223
- $this->url = parse_url($this->src);
224
- $this->src = preg_replace('/https?:\/\/(?:www\.)?' . $this->myHost . '/i', '', $this->src);
225
-
226
- if(strlen($this->src) <= 3){
227
- $this->error("No image specified");
228
- return false;
229
- }
230
- if(BLOCK_EXTERNAL_LEECHERS && array_key_exists('HTTP_REFERER', $_SERVER) && (! preg_match('/^https?:\/\/(?:www\.)?' . $this->myHost . '(?:$|\/)/i', $_SERVER['HTTP_REFERER']))){
231
- // base64 encoded red image that says 'no hotlinkers'
232
- // nothing to worry about! :)
233
- $imgData = base64_decode("R0lGODlhUAAMAIAAAP8AAP///yH5BAAHAP8ALAAAAABQAAwAAAJpjI+py+0Po5y0OgAMjjv01YUZ\nOGplhWXfNa6JCLnWkXplrcBmW+spbwvaVr/cDyg7IoFC2KbYVC2NQ5MQ4ZNao9Ynzjl9ScNYpneb\nDULB3RP6JuPuaGfuuV4fumf8PuvqFyhYtjdoeFgAADs=");
234
- header('Content-Type: image/gif');
235
- header('Content-Length: ' . strlen($imgData));
236
- header('Cache-Control: no-store, no-cache, must-revalidate, max-age=0');
237
- header("Pragma: no-cache");
238
- header('Expires: ' . gmdate ('D, d M Y H:i:s', time()));
239
- echo $imgData;
240
- return false;
241
- exit(0);
242
- }
243
- if(preg_match('/^https?:\/\/[^\/]+/i', $this->src)){
244
- $this->debug(2, "Is a request for an external URL: " . $this->src);
245
- $this->isURL = true;
246
- } else {
247
- $this->debug(2, "Is a request for an internal file: " . $this->src);
248
- }
249
- if($this->isURL && (! ALLOW_EXTERNAL)){
250
- $this->error("You are not allowed to fetch images from an external website.");
251
- return false;
252
- }
253
- if($this->isURL){
254
- if(ALLOW_ALL_EXTERNAL_SITES){
255
- $this->debug(2, "Fetching from all external sites is enabled.");
256
- } else {
257
- $this->debug(2, "Fetching only from selected external sites is enabled.");
258
- $allowed = false;
259
- foreach($ALLOWED_SITES as $site){
260
- if ((strtolower(substr($this->url['host'],-strlen($site)-1)) === strtolower(".$site")) || (strtolower($this->url['host'])===strtolower($site))) {
261
- $this->debug(3, "URL hostname {$this->url['host']} matches $site so allowing.");
262
- $allowed = true;
263
- }
264
- }
265
- if(! $allowed){
266
- return $this->error("You may not fetch images from that site. To enable this site in timthumb, you can either add it to \$ALLOWED_SITES and set ALLOW_EXTERNAL=true. Or you can set ALLOW_ALL_EXTERNAL_SITES=true, depending on your security needs.");
267
- }
268
- }
269
- }
270
-
271
- $cachePrefix = ($this->isURL ? '_ext_' : '_int_');
272
- if($this->isURL){
273
- $arr = explode('&', $_SERVER ['QUERY_STRING']);
274
- asort($arr);
275
- $this->cachefile = $this->cacheDirectory . '/' . FILE_CACHE_PREFIX . $cachePrefix . md5($this->salt . implode('', $arr) . $this->fileCacheVersion) . FILE_CACHE_SUFFIX;
276
- } else {
277
- $this->localImage = $this->getLocalImagePath($this->src);
278
- if(! $this->localImage){
279
- $this->debug(1, "Could not find the local image: {$this->localImage}");
280
- $this->error("Could not find the internal image you specified.");
281
- $this->set404();
282
- return false;
283
- }
284
- $this->debug(1, "Local image path is {$this->localImage}");
285
- $this->localImageMTime = @filemtime($this->localImage);
286
- //We include the mtime of the local file in case in changes on disk.
287
- $this->cachefile = $this->cacheDirectory . '/' . FILE_CACHE_PREFIX . $cachePrefix . md5($this->salt . $this->localImageMTime . $_SERVER ['QUERY_STRING'] . $this->fileCacheVersion) . FILE_CACHE_SUFFIX;
288
- }
289
- $this->debug(2, "Cache file is: " . $this->cachefile);
290
-
291
- return true;
292
- }
293
- public function __destruct(){
294
- foreach($this->toDeletes as $del){
295
- $this->debug(2, "Deleting temp file $del");
296
- @unlink($del);
297
- }
298
- }
299
- public function run(){
300
- if($this->isURL){
301
- if(! ALLOW_EXTERNAL){
302
- $this->debug(1, "Got a request for an external image but ALLOW_EXTERNAL is disabled so returning error msg.");
303
- $this->error("You are not allowed to fetch images from an external website.");
304
- return false;
305
- }
306
- $this->debug(3, "Got request for external image. Starting serveExternalImage.");
307
- if($this->param('webshot')){
308
- if(WEBSHOT_ENABLED){
309
- $this->debug(3, "webshot param is set, so we're going to take a webshot.");
310
- $this->serveWebshot();
311
- } else {
312
- $this->error("You added the webshot parameter but webshots are disabled on this server. You need to set WEBSHOT_ENABLED == true to enable webshots.");
313
- }
314
- } else {
315
- $this->debug(3, "webshot is NOT set so we're going to try to fetch a regular image.");
316
- $this->serveExternalImage();
317
-
318
- }
319
- } else {
320
- $this->debug(3, "Got request for internal image. Starting serveInternalImage()");
321
- $this->serveInternalImage();
322
- }
323
- return true;
324
- }
325
- protected function handleErrors(){
326
- if($this->haveErrors()){
327
- if(NOT_FOUND_IMAGE && $this->is404()){
328
- if($this->serveImg(NOT_FOUND_IMAGE)){
329
- exit(0);
330
- } else {
331
- $this->error("Additionally, the 404 image that is configured could not be found or there was an error serving it.");
332
- }
333
- }
334
- if(ERROR_IMAGE){
335
- if($this->serveImg(ERROR_IMAGE)){
336
- exit(0);
337
- } else {
338
- $this->error("Additionally, the error image that is configured could not be found or there was an error serving it.");
339
- }
340
- }
341
- $this->serveErrors();
342
- exit(0);
343
- }
344
- return false;
345
- }
346
- protected function tryBrowserCache(){
347
- if(BROWSER_CACHE_DISABLE){ $this->debug(3, "Browser caching is disabled"); return false; }
348
- if(!empty($_SERVER['HTTP_IF_MODIFIED_SINCE']) ){
349
- $this->debug(3, "Got a conditional get");
350
- $mtime = false;
351
- //We've already checked if the real file exists in the constructor
352
- if(! is_file($this->cachefile)){
353
- //If we don't have something cached, regenerate the cached image.
354
- return false;
355
- }
356
- if($this->localImageMTime){
357
- $mtime = $this->localImageMTime;
358
- $this->debug(3, "Local real file's modification time is $mtime");
359
- } else if(is_file($this->cachefile)){ //If it's not a local request then use the mtime of the cached file to determine the 304
360
- $mtime = @filemtime($this->cachefile);
361
- $this->debug(3, "Cached file's modification time is $mtime");
362
- }
363
- if(! $mtime){ return false; }
364
-
365
- $iftime = strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE']);
366
- $this->debug(3, "The conditional get's if-modified-since unixtime is $iftime");
367
- if($iftime < 1){
368
- $this->debug(3, "Got an invalid conditional get modified since time. Returning false.");
369
- return false;
370
- }
371
- if($iftime < $mtime){ //Real file or cache file has been modified since last request, so force refetch.
372
- $this->debug(3, "File has been modified since last fetch.");
373
- return false;
374
- } else { //Otherwise serve a 304
375
- $this->debug(3, "File has not been modified since last get, so serving a 304.");
376
- header ($_SERVER['SERVER_PROTOCOL'] . ' 304 Not Modified');
377
- $this->debug(1, "Returning 304 not modified");
378
- return true;
379
- }
380
- }
381
- return false;
382
- }
383
- protected function tryServerCache(){
384
- $this->debug(3, "Trying server cache");
385
- if(file_exists($this->cachefile)){
386
- $this->debug(3, "Cachefile {$this->cachefile} exists");
387
- if($this->isURL){
388
- $this->debug(3, "This is an external request, so checking if the cachefile is empty which means the request failed previously.");
389
- if(filesize($this->cachefile) < 1){
390
- $this->debug(3, "Found an empty cachefile indicating a failed earlier request. Checking how old it is.");
391
- //Fetching error occured previously
392
- if(time() - @filemtime($this->cachefile) > WAIT_BETWEEN_FETCH_ERRORS){
393
- $this->debug(3, "File is older than " . WAIT_BETWEEN_FETCH_ERRORS . " seconds. Deleting and returning false so app can try and load file.");
394
- @unlink($this->cachefile);
395
- return false; //to indicate we didn't serve from cache and app should try and load
396
- } else {
397
- $this->debug(3, "Empty cachefile is still fresh so returning message saying we had an error fetching this image from remote host.");
398
- $this->set404();
399
- $this->error("An error occured fetching image.");
400
- return false;
401
- }
402
- }
403
- } else {
404
- $this->debug(3, "Trying to serve cachefile {$this->cachefile}");
405
- }
406
- if($this->serveCacheFile()){
407
- $this->debug(3, "Succesfully served cachefile {$this->cachefile}");
408
- return true;
409
- } else {
410
- $this->debug(3, "Failed to serve cachefile {$this->cachefile} - Deleting it from cache.");
411
- //Image serving failed. We can't retry at this point, but lets remove it from cache so the next request recreates it
412
- @unlink($this->cachefile);
413
- return true;
414
- }
415
- }
416
- }
417
- protected function error($err){
418
- $this->debug(3, "Adding error message: $err");
419
- $this->errors[] = $err;
420
- return false;
421
-
422
- }
423
- protected function haveErrors(){
424
- if(sizeof($this->errors) > 0){
425
- return true;
426
- }
427
- return false;
428
- }
429
- protected function serveErrors(){
430
- header ($_SERVER['SERVER_PROTOCOL'] . ' 400 Bad Request');
431
- if ( ! DISPLAY_ERROR_MESSAGES ) {
432
- return;
433
- }
434
- $html = '<ul>';
435
- foreach($this->errors as $err){
436
- $html .= '<li>' . htmlentities($err) . '</li>';
437
- }
438
- $html .= '</ul>';
439
- echo '<h1>A TimThumb error has occured</h1>The following error(s) occured:<br />' . $html . '<br />';
440
- echo '<br />Query String : ' . htmlentities( $_SERVER['QUERY_STRING'], ENT_QUOTES );
441
- echo '<br />TimThumb version : ' . VERSION . '</pre>';
442
- }
443
- protected function serveInternalImage(){
444
- $this->debug(3, "Local image path is $this->localImage");
445
- if(! $this->localImage){
446
- $this->sanityFail("localImage not set after verifying it earlier in the code.");
447
- return false;
448
- }
449
- $fileSize = filesize($this->localImage);
450
- if($fileSize > MAX_FILE_SIZE){
451
- $this->error("The file you specified is greater than the maximum allowed file size.");
452
- return false;
453
- }
454
- if($fileSize <= 0){
455
- $this->error("The file you specified is <= 0 bytes.");
456
- return false;
457
- }
458
- $this->debug(3, "Calling processImageAndWriteToCache() for local image.");
459
- if($this->processImageAndWriteToCache($this->localImage)){
460
- $this->serveCacheFile();
461
- return true;
462
- } else {
463
- return false;
464
- }
465
- }
466
- protected function cleanCache(){
467
- if (FILE_CACHE_TIME_BETWEEN_CLEANS < 0) {
468
- return;
469
- }
470
- $this->debug(3, "cleanCache() called");
471
- $lastCleanFile = $this->cacheDirectory . '/timthumb_cacheLastCleanTime.touch';
472
-
473
- //If this is a new timthumb installation we need to create the file
474
- if(! is_file($lastCleanFile)){
475
- $this->debug(1, "File tracking last clean doesn't exist. Creating $lastCleanFile");
476
- if (!touch($lastCleanFile)) {
477
- $this->error("Could not create cache clean timestamp file.");
478
- }
479
- return;
480
- }
481
- if(@filemtime($lastCleanFile) < (time() - FILE_CACHE_TIME_BETWEEN_CLEANS) ){ //Cache was last cleaned more than 1 day ago
482
- $this->debug(1, "Cache was last cleaned more than " . FILE_CACHE_TIME_BETWEEN_CLEANS . " seconds ago. Cleaning now.");
483
- // Very slight race condition here, but worst case we'll have 2 or 3 servers cleaning the cache simultaneously once a day.
484
- if (!touch($lastCleanFile)) {
485
- $this->error("Could not create cache clean timestamp file.");
486
- }
487
- $files = glob($this->cacheDirectory . '/*' . FILE_CACHE_SUFFIX);
488
- if ($files) {
489
- $timeAgo = time() - FILE_CACHE_MAX_FILE_AGE;
490
- foreach($files as $file){
491
- if(@filemtime($file) < $timeAgo){
492
- $this->debug(3, "Deleting cache file $file older than max age: " . FILE_CACHE_MAX_FILE_AGE . " seconds");
493
- @unlink($file);
494
- }
495
- }
496
- }
497
- return true;
498
- } else {
499
- $this->debug(3, "Cache was cleaned less than " . FILE_CACHE_TIME_BETWEEN_CLEANS . " seconds ago so no cleaning needed.");
500
- }
501
- return false;
502
- }
503
- protected function processImageAndWriteToCache($localImage){
504
- $sData = getimagesize($localImage);
505
- $origType = $sData[2];
506
- $mimeType = $sData['mime'];
507
-
508
- $this->debug(3, "Mime type of image is $mimeType");
509
- if(! preg_match('/^image\/(?:gif|jpg|jpeg|png)$/i', $mimeType)){
510
- return $this->error("The image being resized is not a valid gif, jpg or png.");
511
- }
512
-
513
- if (!function_exists ('imagecreatetruecolor')) {
514
- return $this->error('GD Library Error: imagecreatetruecolor does not exist - please contact your webhost and ask them to install the GD library');
515
- }
516
-
517
- if (function_exists ('imagefilter') && defined ('IMG_FILTER_NEGATE')) {
518
- $imageFilters = array (
519
- 1 => array (IMG_FILTER_NEGATE, 0),
520
- 2 => array (IMG_FILTER_GRAYSCALE, 0),
521
- 3 => array (IMG_FILTER_BRIGHTNESS, 1),
522
- 4 => array (IMG_FILTER_CONTRAST, 1),
523
- 5 => array (IMG_FILTER_COLORIZE, 4),
524
- 6 => array (IMG_FILTER_EDGEDETECT, 0),
525
- 7 => array (IMG_FILTER_EMBOSS, 0),
526
- 8 => array (IMG_FILTER_GAUSSIAN_BLUR, 0),
527
- 9 => array (IMG_FILTER_SELECTIVE_BLUR, 0),
528
- 10 => array (IMG_FILTER_MEAN_REMOVAL, 0),
529
- 11 => array (IMG_FILTER_SMOOTH, 0),
530
- );
531
- }
532
-
533
- // get standard input properties
534
- $new_width = (int) abs ($this->param('w', 0));
535
- $new_height = (int) abs ($this->param('h', 0));
536
- $zoom_crop = (int) $this->param('zc', DEFAULT_ZC);
537
- $quality = (int) abs ($this->param('q', DEFAULT_Q));
538
- $align = $this->cropTop ? 't' : $this->param('a', 'c');
539
- $filters = $this->param('f', DEFAULT_F);
540
- $sharpen = (bool) $this->param('s', DEFAULT_S);
541
- $canvas_color = $this->param('cc', DEFAULT_CC);
542
- $canvas_trans = (bool) $this->param('ct', '1');
543
-
544
- // set default width and height if neither are set already
545
- if ($new_width == 0 && $new_height == 0) {
546
- $new_width = (int) DEFAULT_WIDTH;
547
- $new_height = (int) DEFAULT_HEIGHT;
548
- }
549
-
550
- // ensure size limits can not be abused
551
- $new_width = min ($new_width, MAX_WIDTH);
552
- $new_height = min ($new_height, MAX_HEIGHT);
553
-
554
- // set memory limit to be able to have enough space to resize larger images
555
- $this->setMemoryLimit();
556
-
557
- // open the existing image
558
- $image = $this->openImage ($mimeType, $localImage);
559
- if ($image === false) {
560
- return $this->error('Unable to open image.');
561
- }
562
-
563
- // Get original width and height
564
- $width = imagesx ($image);
565
- $height = imagesy ($image);
566
- $origin_x = 0;
567
- $origin_y = 0;
568
-
569
- // generate new w/h if not provided
570
- if ($new_width && !$new_height) {
571
- $new_height = floor ($height * ($new_width / $width));
572
- } else if ($new_height && !$new_width) {
573
- $new_width = floor ($width * ($new_height / $height));
574
- }
575
-
576
- // scale down and add borders
577
- if ($zoom_crop == 3) {
578
-
579
- $final_height = $height * ($new_width / $width);
580
-
581
- if ($final_height > $new_height) {
582
- $new_width = $width * ($new_height / $height);
583
- } else {
584
- $new_height = $final_height;
585
- }
586
-
587
- }
588
-
589
- // create a new true color image
590
- $canvas = imagecreatetruecolor ($new_width, $new_height);
591
- imagealphablending ($canvas, false);
592
-
593
- if (strlen($canvas_color) == 3) { //if is 3-char notation, edit string into 6-char notation
594
- $canvas_color = str_repeat(substr($canvas_color, 0, 1), 2) . str_repeat(substr($canvas_color, 1, 1), 2) . str_repeat(substr($canvas_color, 2, 1), 2);
595
- } else if (strlen($canvas_color) != 6) {
596
- $canvas_color = DEFAULT_CC; // on error return default canvas color
597
- }
598
-
599
- $canvas_color_R = hexdec (substr ($canvas_color, 0, 2));
600
- $canvas_color_G = hexdec (substr ($canvas_color, 2, 2));
601
- $canvas_color_B = hexdec (substr ($canvas_color, 4, 2));
602
-
603
- // Create a new transparent color for image
604
- // If is a png and PNG_IS_TRANSPARENT is false then remove the alpha transparency
605
- // (and if is set a canvas color show it in the background)
606
- if(preg_match('/^image\/png$/i', $mimeType) && !PNG_IS_TRANSPARENT && $canvas_trans){
607
- $color = imagecolorallocatealpha ($canvas, $canvas_color_R, $canvas_color_G, $canvas_color_B, 127);
608
- }else{
609
- $color = imagecolorallocatealpha ($canvas, $canvas_color_R, $canvas_color_G, $canvas_color_B, 0);
610
- }
611
-
612
-
613
- // Completely fill the background of the new image with allocated color.
614
- imagefill ($canvas, 0, 0, $color);
615
-
616
- // scale down and add borders
617
- if ($zoom_crop == 2) {
618
-
619
- $final_height = $height * ($new_width / $width);
620
-
621
- if ($final_height > $new_height) {
622
-
623
- $origin_x = $new_width / 2;
624
- $new_width = $width * ($new_height / $height);
625
- $origin_x = round ($origin_x - ($new_width / 2));
626
-
627
- } else {
628
-
629
- $origin_y = $new_height / 2;
630
- $new_height = $final_height;
631
- $origin_y = round ($origin_y - ($new_height / 2));
632
-
633
- }
634
-
635
- }
636
-
637
- // Restore transparency blending
638
- imagesavealpha ($canvas, true);
639
-
640
- if ($zoom_crop > 0) {
641
-
642
- $src_x = $src_y = 0;
643
- $src_w = $width;
644
- $src_h = $height;
645
-
646
- $cmp_x = $width / $new_width;
647
- $cmp_y = $height / $new_height;
648
-
649
- // calculate x or y coordinate and width or height of source
650
- if ($cmp_x > $cmp_y) {
651
-
652
- $src_w = round ($width / $cmp_x * $cmp_y);
653
- $src_x = round (($width - ($width / $cmp_x * $cmp_y)) / 2);
654
-
655
- } else if ($cmp_y > $cmp_x) {
656
-
657
- $src_h = round ($height / $cmp_y * $cmp_x);
658
- $src_y = round (($height - ($height / $cmp_y * $cmp_x)) / 2);
659
-
660
- }
661
-
662
- // positional cropping!
663
- if ($align) {
664
- if (strpos ($align, 't') !== false) {
665
- $src_y = 0;
666
- }
667
- if (strpos ($align, 'b') !== false) {
668
- $src_y = $height - $src_h;
669
- }
670
- if (strpos ($align, 'l') !== false) {
671
- $src_x = 0;
672
- }
673
- if (strpos ($align, 'r') !== false) {
674
- $src_x = $width - $src_w;
675
- }
676
- }
677
-
678
- imagecopyresampled ($canvas, $image, $origin_x, $origin_y, $src_x, $src_y, $new_width, $new_height, $src_w, $src_h);
679
-
680
- } else {
681
-
682
- // copy and resize part of an image with resampling
683
- imagecopyresampled ($canvas, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
684
-
685
- }
686
-
687
- if ($filters != '' && function_exists ('imagefilter') && defined ('IMG_FILTER_NEGATE')) {
688
- // apply filters to image
689
- $filterList = explode ('|', $filters);
690
- foreach ($filterList as $fl) {
691
-
692
- $filterSettings = explode (',', $fl);
693
- if (isset ($imageFilters[$filterSettings[0]])) {
694
-
695
- for ($i = 0; $i < 4; $i ++) {
696
- if (!isset ($filterSettings[$i])) {
697
- $filterSettings[$i] = null;
698
- } else {
699
- $filterSettings[$i] = (int) $filterSettings[$i];
700
- }
701
- }
702
-
703
- switch ($imageFilters[$filterSettings[0]][1]) {
704
-
705
- case 1:
706
-
707
- imagefilter ($canvas, $imageFilters[$filterSettings[0]][0], $filterSettings[1]);
708
- break;
709
-
710
- case 2:
711
-
712
- imagefilter ($canvas, $imageFilters[$filterSettings[0]][0], $filterSettings[1], $filterSettings[2]);
713
- break;
714
-
715
- case 3:
716
-
717
- imagefilter ($canvas, $imageFilters[$filterSettings[0]][0], $filterSettings[1], $filterSettings[2], $filterSettings[3]);
718
- break;
719
-
720
- case 4:
721
-
722
- imagefilter ($canvas, $imageFilters[$filterSettings[0]][0], $filterSettings[1], $filterSettings[2], $filterSettings[3], $filterSettings[4]);
723
- break;
724
-
725
- default:
726
-
727
- imagefilter ($canvas, $imageFilters[$filterSettings[0]][0]);
728
- break;
729
-
730
- }
731
- }
732
- }
733
- }
734
-
735
- // sharpen image
736
- if ($sharpen && function_exists ('imageconvolution')) {
737
-
738
- $sharpenMatrix = array (
739
- array (-1,-1,-1),
740
- array (-1,16,-1),
741
- array (-1,-1,-1),
742
- );
743
-
744
- $divisor = 8;
745
- $offset = 0;
746
-
747
- imageconvolution ($canvas, $sharpenMatrix, $divisor, $offset);
748
-
749
- }
750
- //Straight from Wordpress core code. Reduces filesize by up to 70% for PNG's
751
- if ( (IMAGETYPE_PNG == $origType || IMAGETYPE_GIF == $origType) && function_exists('imageistruecolor') && !imageistruecolor( $image ) && imagecolortransparent( $image ) > 0 ){
752
- imagetruecolortopalette( $canvas, false, imagecolorstotal( $image ) );
753
- }
754
-
755
- $imgType = "";
756
- $tempfile = tempnam($this->cacheDirectory, 'timthumb_tmpimg_');
757
- if(preg_match('/^image\/(?:jpg|jpeg)$/i', $mimeType)){
758
- $imgType = 'jpg';
759
- imagejpeg($canvas, $tempfile, $quality);
760
- } else if(preg_match('/^image\/png$/i', $mimeType)){
761
- $imgType = 'png';
762
- imagepng($canvas, $tempfile, floor($quality * 0.09));
763
- } else if(preg_match('/^image\/gif$/i', $mimeType)){
764
- $imgType = 'gif';
765
- imagegif($canvas, $tempfile);
766
- } else {
767
- return $this->sanityFail("Could not match mime type after verifying it previously.");
768
- }
769
-
770
- if($imgType == 'png' && OPTIPNG_ENABLED && OPTIPNG_PATH && @is_file(OPTIPNG_PATH)){
771
- $exec = OPTIPNG_PATH;
772
- $this->debug(3, "optipng'ing $tempfile");
773
- $presize = filesize($tempfile);
774
- $out = `$exec -o1 $tempfile`; //you can use up to -o7 but it really slows things down
775
- clearstatcache();
776
- $aftersize = filesize($tempfile);
777
- $sizeDrop = $presize - $aftersize;
778
- if($sizeDrop > 0){
779
- $this->debug(1, "optipng reduced size by $sizeDrop");
780
- } else if($sizeDrop < 0){
781
- $this->debug(1, "optipng increased size! Difference was: $sizeDrop");
782
- } else {
783
- $this->debug(1, "optipng did not change image size.");
784
- }
785
- } else if($imgType == 'png' && PNGCRUSH_ENABLED && PNGCRUSH_PATH && @is_file(PNGCRUSH_PATH)){
786
- $exec = PNGCRUSH_PATH;
787
- $tempfile2 = tempnam($this->cacheDirectory, 'timthumb_tmpimg_');
788
- $this->debug(3, "pngcrush'ing $tempfile to $tempfile2");
789
- $out = `$exec $tempfile $tempfile2`;
790
- $todel = "";
791
- if(is_file($tempfile2)){
792
- $sizeDrop = filesize($tempfile) - filesize($tempfile2);
793
- if($sizeDrop > 0){
794
- $this->debug(1, "pngcrush was succesful and gave a $sizeDrop byte size reduction");
795
- $todel = $tempfile;
796
- $tempfile = $tempfile2;
797
- } else {
798
- $this->debug(1, "pngcrush did not reduce file size. Difference was $sizeDrop bytes.");
799
- $todel = $tempfile2;
800
- }
801
- } else {
802
- $this->debug(3, "pngcrush failed with output: $out");
803
- $todel = $tempfile2;
804
- }
805
- @unlink($todel);
806
- }
807
-
808
- $this->debug(3, "Rewriting image with security header.");
809
- $tempfile4 = tempnam($this->cacheDirectory, 'timthumb_tmpimg_');
810
- $context = stream_context_create ();
811
- $fp = fopen($tempfile,'r',0,$context);
812
- file_put_contents($tempfile4, $this->filePrependSecurityBlock . $imgType . ' ?' . '>'); //6 extra bytes, first 3 being image type
813
- file_put_contents($tempfile4, $fp, FILE_APPEND);
814
- fclose($fp);
815
- @unlink($tempfile);
816
- $this->debug(3, "Locking and replacing cache file.");
817
- $lockFile = $this->cachefile . '.lock';
818
- $fh = fopen($lockFile, 'w');
819
- if(! $fh){
820
- return $this->error("Could not open the lockfile for writing an image.");
821
- }
822
- if(flock($fh, LOCK_EX)){
823
- @unlink($this->cachefile); //rename generally overwrites, but doing this in case of platform specific quirks. File might not exist yet.
824
- rename($tempfile4, $this->cachefile);
825
- flock($fh, LOCK_UN);
826
- fclose($fh);
827
- @unlink($lockFile);
828
- } else {
829
- fclose($fh);
830
- @unlink($lockFile);
831
- @unlink($tempfile4);
832
- return $this->error("Could not get a lock for writing.");
833
- }
834
- $this->debug(3, "Done image replace with security header. Cleaning up and running cleanCache()");
835
- imagedestroy($canvas);
836
- imagedestroy($image);
837
- return true;
838
- }
839
- protected function calcDocRoot(){
840
- $docRoot = @$_SERVER['DOCUMENT_ROOT'];
841
- if (defined('LOCAL_FILE_BASE_DIRECTORY')) {
842
- $docRoot = LOCAL_FILE_BASE_DIRECTORY;
843
- }
844
- if(!isset($docRoot)){
845
- $this->debug(3, "DOCUMENT_ROOT is not set. This is probably windows. Starting search 1.");
846
- if(isset($_SERVER['SCRIPT_FILENAME'])){
847
- $docRoot = str_replace( '\\', '/', substr($_SERVER['SCRIPT_FILENAME'], 0, 0-strlen($_SERVER['PHP_SELF'])));
848
- $this->debug(3, "Generated docRoot using SCRIPT_FILENAME and PHP_SELF as: $docRoot");
849
- }
850
- }
851
- if(!isset($docRoot)){
852
- $this->debug(3, "DOCUMENT_ROOT still is not set. Starting search 2.");
853
- if(isset($_SERVER['PATH_TRANSLATED'])){
854
- $docRoot = str_replace( '\\', '/', substr(str_replace('\\\\', '\\', $_SERVER['PATH_TRANSLATED']), 0, 0-strlen($_SERVER['PHP_SELF'])));
855
- $this->debug(3, "Generated docRoot using PATH_TRANSLATED and PHP_SELF as: $docRoot");
856
- }
857
- }
858
- if($docRoot && $_SERVER['DOCUMENT_ROOT'] != '/'){ $docRoot = preg_replace('/\/$/', '', $docRoot); }
859
- $this->debug(3, "Doc root is: " . $docRoot);
860
- $this->docRoot = $docRoot;
861
-
862
- }
863
- protected function getLocalImagePath($src){
864
- $src = ltrim($src, '/'); //strip off the leading '/'
865
- if(! $this->docRoot){
866
- $this->debug(3, "We have no document root set, so as a last resort, lets check if the image is in the current dir and serve that.");
867
- //We don't support serving images outside the current dir if we don't have a doc root for security reasons.
868
- $file = preg_replace('/^.*?([^\/\\\\]+)$/', '$1', $src); //strip off any path info and just leave the filename.
869
- if(is_file($file)){
870
- return $this->realpath($file);
871
- }
872
- return $this->error("Could not find your website document root and the file specified doesn't exist in timthumbs directory. We don't support serving files outside timthumb's directory without a document root for security reasons.");
873
- } else if ( ! is_dir( $this->docRoot ) ) {
874
- $this->error("Server path does not exist. Ensure variable \$_SERVER['DOCUMENT_ROOT'] is set correctly");
875
- }
876
-
877
- //Do not go past this point without docRoot set
878
-
879
- //Try src under docRoot
880
- if(file_exists ($this->docRoot . '/' . $src)) {
881
- $this->debug(3, "Found file as " . $this->docRoot . '/' . $src);
882
- $real = $this->realpath($this->docRoot . '/' . $src);
883
- if(stripos($real, $this->docRoot) === 0){
884
- return $real;
885
- } else {
886
- $this->debug(1, "Security block: The file specified occurs outside the document root.");
887
- //allow search to continue
888
- }
889
- }
890
- //Check absolute paths and then verify the real path is under doc root
891
- $absolute = $this->realpath('/' . $src);
892
- if($absolute && file_exists($absolute)){ //realpath does file_exists check, so can probably skip the exists check here
893
- $this->debug(3, "Found absolute path: $absolute");
894
- if(! $this->docRoot){ $this->sanityFail("docRoot not set when checking absolute path."); }
895
- if(stripos($absolute, $this->docRoot) === 0){
896
- return $absolute;
897
- } else {
898
- $this->debug(1, "Security block: The file specified occurs outside the document root.");
899
- //and continue search
900
- }
901
- }
902
-
903
- $base = $this->docRoot;
904
-
905
- // account for Windows directory structure
906
- if (strstr($_SERVER['SCRIPT_FILENAME'],':')) {
907
- $sub_directories = explode('\\', str_replace($this->docRoot, '', $_SERVER['SCRIPT_FILENAME']));
908
- } else {
909
- $sub_directories = explode('/', str_replace($this->docRoot, '', $_SERVER['SCRIPT_FILENAME']));
910
- }
911
-
912
- foreach ($sub_directories as $sub){
913
- $base .= $sub . '/';
914
- $this->debug(3, "Trying file as: " . $base . $src);
915
- if(file_exists($base . $src)){
916
- $this->debug(3, "Found file as: " . $base . $src);
917
- $real = $this->realpath($base . $src);
918
- if(stripos($real, $this->realpath($this->docRoot)) === 0){
919
- return $real;
920
- } else {
921
- $this->debug(1, "Security block: The file specified occurs outside the document root.");
922
- //And continue search
923
- }
924
- }
925
- }
926
- return false;
927
- }
928
- protected function realpath($path){
929
- //try to remove any relative paths
930
- $remove_relatives = '/\w+\/\.\.\//';
931
- while(preg_match($remove_relatives,$path)){
932
- $path = preg_replace($remove_relatives, '', $path);
933
- }
934
- //if any remain use PHP realpath to strip them out, otherwise return $path
935
- //if using realpath, any symlinks will also be resolved
936
- return preg_match('#^\.\./|/\.\./#', $path) ? realpath($path) : $path;
937
- }
938
- protected function toDelete($name){
939
- $this->debug(3, "Scheduling file $name to delete on destruct.");
940
- $this->toDeletes[] = $name;
941
- }
942
- protected function serveWebshot(){
943
- $this->debug(3, "Starting serveWebshot");
944
- $instr = "Please follow the instructions at http://code.google.com/p/timthumb/ to set your server up for taking website screenshots.";
945
- if(! is_file(WEBSHOT_CUTYCAPT)){
946
- return $this->error("CutyCapt is not installed. $instr");
947
- }
948
- if(! is_file(WEBSHOT_XVFB)){
949
- return $this->Error("Xvfb is not installed. $instr");
950
- }
951
- $cuty = WEBSHOT_CUTYCAPT;
952
- $xv = WEBSHOT_XVFB;
953
- $screenX = WEBSHOT_SCREEN_X;
954
- $screenY = WEBSHOT_SCREEN_Y;
955
- $colDepth = WEBSHOT_COLOR_DEPTH;
956
- $format = WEBSHOT_IMAGE_FORMAT;
957
- $timeout = WEBSHOT_TIMEOUT * 1000;
958
- $ua = WEBSHOT_USER_AGENT;
959
- $jsOn = WEBSHOT_JAVASCRIPT_ON ? 'on' : 'off';
960
- $javaOn = WEBSHOT_JAVA_ON ? 'on' : 'off';
961
- $pluginsOn = WEBSHOT_PLUGINS_ON ? 'on' : 'off';
962
- $proxy = WEBSHOT_PROXY ? ' --http-proxy=' . WEBSHOT_PROXY : '';
963
- $tempfile = tempnam($this->cacheDirectory, 'timthumb_webshot');
964
- $url = $this->src;
965
- if(! preg_match('/^https?:\/\/[a-zA-Z0-9\.\-]+/i', $url)){
966
- return $this->error("Invalid URL supplied.");
967
- }
968
- $url = preg_replace('/[^A-Za-z0-9\-\.\_\~:\/\?\#\[\]\@\!\$\&\'\(\)\*\+\,\;\=]+/', '', $url); //RFC 3986
969
- //Very important we don't allow injection of shell commands here. URL is between quotes and we are only allowing through chars allowed by a the RFC
970
- // which AFAIKT can't be used for shell injection.
971
- if(WEBSHOT_XVFB_RUNNING){
972
- putenv('DISPLAY=:100.0');
973
- $command = "$cuty $proxy --max-wait=$timeout --user-agent=\"$ua\" --javascript=$jsOn --java=$javaOn --plugins=$pluginsOn --js-can-open-windows=off --url=\"$url\" --out-format=$format --out=$tempfile";
974
- } else {
975
- $command = "$xv --server-args=\"-screen 0, {$screenX}x{$screenY}x{$colDepth}\" $cuty $proxy --max-wait=$timeout --user-agent=\"$ua\" --javascript=$jsOn --java=$javaOn --plugins=$pluginsOn --js-can-open-windows=off --url=\"$url\" --out-format=$format --out=$tempfile";
976
- }
977
- $this->debug(3, "Executing command: $command");
978
- $out = `$command`;
979
- $this->debug(3, "Received output: $out");
980
- if(! is_file($tempfile)){
981
- $this->set404();
982
- return $this->error("The command to create a thumbnail failed.");
983
- }
984
- $this->cropTop = true;
985
- if($this->processImageAndWriteToCache($tempfile)){
986
- $this->debug(3, "Image processed succesfully. Serving from cache");
987
- return $this->serveCacheFile();
988
- } else {
989
- return false;
990
- }
991
- }
992
- protected function serveExternalImage(){
993
- if(! preg_match('/^https?:\/\/[a-zA-Z0-9\-\.]+/i', $this->src)){
994
- $this->error("Invalid URL supplied.");
995
- return false;
996
- }
997
- $tempfile = tempnam($this->cacheDirectory, 'timthumb');
998
- $this->debug(3, "Fetching external image into temporary file $tempfile");
999
- $this->toDelete($tempfile);
1000
- #fetch file here
1001
- if(! $this->getURL($this->src, $tempfile)){
1002
- @unlink($this->cachefile);
1003
- touch($this->cachefile);
1004
- $this->debug(3, "Error fetching URL: " . $this->lastURLError);
1005
- $this->error("Error reading the URL you specified from remote host." . $this->lastURLError);
1006
- return false;
1007
- }
1008
-
1009
- $mimeType = $this->getMimeType($tempfile);
1010
- if(! preg_match("/^image\/(?:jpg|jpeg|gif|png)$/i", $mimeType)){
1011
- $this->debug(3, "Remote file has invalid mime type: $mimeType");
1012
- @unlink($this->cachefile);
1013
- touch($this->cachefile);
1014
- $this->error("The remote file is not a valid image. Mimetype = '" . $mimeType . "'" . $tempfile);
1015
- return false;
1016
- }
1017
- if($this->processImageAndWriteToCache($tempfile)){
1018
- $this->debug(3, "Image processed succesfully. Serving from cache");
1019
- return $this->serveCacheFile();
1020
- } else {
1021
- return false;
1022
- }
1023
- }
1024
- public static function curlWrite($h, $d){
1025
- fwrite(self::$curlFH, $d);
1026
- self::$curlDataWritten += strlen($d);
1027
- if(self::$curlDataWritten > MAX_FILE_SIZE){
1028
- return 0;
1029
- } else {
1030
- return strlen($d);
1031
- }
1032
- }
1033
- protected function serveCacheFile(){
1034
- $this->debug(3, "Serving {$this->cachefile}");
1035
- if(! is_file($this->cachefile)){
1036
- $this->error("serveCacheFile called in timthumb but we couldn't find the cached file.");
1037
- return false;
1038
- }
1039
- $fp = fopen($this->cachefile, 'rb');
1040
- if(! $fp){ return $this->error("Could not open cachefile."); }
1041
- fseek($fp, strlen($this->filePrependSecurityBlock), SEEK_SET);
1042
- $imgType = fread($fp, 3);
1043
- fseek($fp, 3, SEEK_CUR);
1044
- if(ftell($fp) != strlen($this->filePrependSecurityBlock) + 6){
1045
- @unlink($this->cachefile);
1046
- return $this->error("The cached image file seems to be corrupt.");
1047
- }
1048
- $imageDataSize = filesize($this->cachefile) - (strlen($this->filePrependSecurityBlock) + 6);
1049
- $this->sendImageHeaders($imgType, $imageDataSize);
1050
- $bytesSent = @fpassthru($fp);
1051
- fclose($fp);
1052
- if($bytesSent > 0){
1053
- return true;
1054
- }
1055
- $content = file_get_contents ($this->cachefile);
1056
- if ($content != FALSE) {
1057
- $content = substr($content, strlen($this->filePrependSecurityBlock) + 6);
1058
- echo $content;
1059
- $this->debug(3, "Served using file_get_contents and echo");
1060
- return true;
1061
- } else {
1062
- $this->error("Cache file could not be loaded.");
1063
- return false;
1064
- }
1065
- }
1066
- protected function sendImageHeaders($mimeType, $dataSize){
1067
- if(! preg_match('/^image\//i', $mimeType)){
1068
- $mimeType = 'image/' . $mimeType;
1069
- }
1070
- if(strtolower($mimeType) == 'image/jpg'){
1071
- $mimeType = 'image/jpeg';
1072
- }
1073
- $gmdate_expires = gmdate ('D, d M Y H:i:s', strtotime ('now +10 days')) . ' GMT';
1074
- $gmdate_modified = gmdate ('D, d M Y H:i:s') . ' GMT';
1075
- // send content headers then display image
1076
- header ('Content-Type: ' . $mimeType);
1077
- header ('Accept-Ranges: none'); //Changed this because we don't accept range requests
1078
- header ('Last-Modified: ' . $gmdate_modified);
1079
- header ('Content-Length: ' . $dataSize);
1080
- if(BROWSER_CACHE_DISABLE){
1081
- $this->debug(3, "Browser cache is disabled so setting non-caching headers.");
1082
- header('Cache-Control: no-store, no-cache, must-revalidate, max-age=0');
1083
- header("Pragma: no-cache");
1084
- header('Expires: ' . gmdate ('D, d M Y H:i:s', time()));
1085
- } else {
1086
- $this->debug(3, "Browser caching is enabled");
1087
- header('Cache-Control: max-age=' . BROWSER_CACHE_MAX_AGE . ', must-revalidate');
1088
- header('Expires: ' . $gmdate_expires);
1089
- }
1090
- return true;
1091
- }
1092
- protected function securityChecks(){
1093
- }
1094
- protected function param($property, $default = ''){
1095
- if (isset ($_GET[$property])) {
1096
- return $_GET[$property];
1097
- } else {
1098
- return $default;
1099
- }
1100
- }
1101
- protected function openImage($mimeType, $src){
1102
- switch ($mimeType) {
1103
- case 'image/jpeg':
1104
- $image = imagecreatefromjpeg ($src);
1105
- break;
1106
-
1107
- case 'image/png':
1108
- $image = imagecreatefrompng ($src);
1109
- imagealphablending( $image, true );
1110
- imagesavealpha( $image, true );
1111
- break;
1112
-
1113
- case 'image/gif':
1114
- $image = imagecreatefromgif ($src);
1115
- break;
1116
-
1117
- default:
1118
- $this->error("Unrecognised mimeType");
1119
- }
1120
-
1121
- return $image;
1122
- }
1123
- protected function getIP(){
1124
- $rem = @$_SERVER["REMOTE_ADDR"];
1125
- $ff = @$_SERVER["HTTP_X_FORWARDED_FOR"];
1126
- $ci = @$_SERVER["HTTP_CLIENT_IP"];
1127
- if(preg_match('/^(?:192\.168|172\.16|10\.|127\.)/', $rem)){
1128
- if($ff){ return $ff; }
1129
- if($ci){ return $ci; }
1130
- return $rem;
1131
- } else {
1132
- if($rem){ return $rem; }
1133
- if($ff){ return $ff; }
1134
- if($ci){ return $ci; }
1135
- return "UNKNOWN";
1136
- }
1137
- }
1138
- protected function debug($level, $msg){
1139
- if(DEBUG_ON && $level <= DEBUG_LEVEL){
1140
- $execTime = sprintf('%.6f', microtime(true) - $this->startTime);
1141
- $tick = sprintf('%.6f', 0);
1142
- if($this->lastBenchTime > 0){
1143
- $tick = sprintf('%.6f', microtime(true) - $this->lastBenchTime);
1144
- }
1145
- $this->lastBenchTime = microtime(true);
1146
- error_log("TimThumb Debug line " . __LINE__ . " [$execTime : $tick]: $msg");
1147
- }
1148
- }
1149
- protected function sanityFail($msg){
1150
- return $this->error("There is a problem in the timthumb code. Message: Please report this error at <a href='http://code.google.com/p/timthumb/issues/list'>timthumb's bug tracking page</a>: $msg");
1151
- }
1152
- protected function getMimeType($file){
1153
- $info = getimagesize($file);
1154
- if(is_array($info) && $info['mime']){
1155
- return $info['mime'];
1156
- }
1157
- return '';
1158
- }
1159
- protected function setMemoryLimit(){
1160
- $inimem = ini_get('memory_limit');
1161
- $inibytes = timthumb::returnBytes($inimem);
1162
- $ourbytes = timthumb::returnBytes(MEMORY_LIMIT);
1163
- if($inibytes < $ourbytes){
1164
- ini_set ('memory_limit', MEMORY_LIMIT);
1165
- $this->debug(3, "Increased memory from $inimem to " . MEMORY_LIMIT);
1166
- } else {
1167
- $this->debug(3, "Not adjusting memory size because the current setting is " . $inimem . " and our size of " . MEMORY_LIMIT . " is smaller.");
1168
- }
1169
- }
1170
- protected static function returnBytes($size_str){
1171
- switch (substr ($size_str, -1))
1172
- {
1173
- case 'M': case 'm': return (int)$size_str * 1048576;
1174
- case 'K': case 'k': return (int)$size_str * 1024;
1175
- case 'G': case 'g': return (int)$size_str * 1073741824;
1176
- default: return $size_str;
1177
- }
1178
- }
1179
-
1180
- protected function getURL($url, $tempfile){
1181
- $this->lastURLError = false;
1182
- $url = preg_replace('/ /', '%20', $url);
1183
- if(function_exists('curl_init')){
1184
- $this->debug(3, "Curl is installed so using it to fetch URL.");
1185
- self::$curlFH = fopen($tempfile, 'w');
1186
- if(! self::$curlFH){
1187
- $this->error("Could not open $tempfile for writing.");
1188
- return false;
1189
- }
1190
- self::$curlDataWritten = 0;
1191
- $this->debug(3, "Fetching url with curl: $url");
1192
- $curl = curl_init($url);
1193
- curl_setopt ($curl, CURLOPT_TIMEOUT, CURL_TIMEOUT);
1194
- curl_setopt ($curl, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.122 Safari/534.30");
1195
- curl_setopt ($curl, CURLOPT_RETURNTRANSFER, TRUE);
1196
- curl_setopt ($curl, CURLOPT_HEADER, 0);
1197
- curl_setopt ($curl, CURLOPT_SSL_VERIFYPEER, FALSE);
1198
- curl_setopt ($curl, CURLOPT_WRITEFUNCTION, 'timthumb::curlWrite');
1199
- @curl_setopt ($curl, CURLOPT_FOLLOWLOCATION, true);
1200
- @curl_setopt ($curl, CURLOPT_MAXREDIRS, 10);
1201
-
1202
- $curlResult = curl_exec($curl);
1203
- fclose(self::$curlFH);
1204
- $httpStatus = curl_getinfo($curl, CURLINFO_HTTP_CODE);
1205
- if($httpStatus == 404){
1206
- $this->set404();
1207
- }
1208
- if($httpStatus == 302){
1209
- $this->error("External Image is Redirecting. Try alternate image url");
1210
- return false;
1211
- }
1212
- if($curlResult){
1213
- curl_close($curl);
1214
- return true;
1215
- } else {
1216
- $this->lastURLError = curl_error($curl);
1217
- curl_close($curl);
1218
- return false;
1219
- }
1220
- } else {
1221
- $img = @file_get_contents ($url);
1222
- if($img === false){
1223
- $err = error_get_last();
1224
- if(is_array($err) && $err['message']){
1225
- $this->lastURLError = $err['message'];
1226
- } else {
1227
- $this->lastURLError = $err;
1228
- }
1229
- if(preg_match('/404/', $this->lastURLError)){
1230
- $this->set404();
1231
- }
1232
-
1233
- return false;
1234
- }
1235
- if(! file_put_contents($tempfile, $img)){
1236
- $this->error("Could not write to $tempfile.");
1237
- return false;
1238
- }
1239
- return true;
1240
- }
1241
-
1242
- }
1243
- protected function serveImg($file){
1244
- $s = getimagesize($file);
1245
- if(! ($s && $s['mime'])){
1246
- return false;
1247
- }
1248
- header ('Content-Type: ' . $s['mime']);
1249
- header ('Content-Length: ' . filesize($file) );
1250
- header ('Cache-Control: no-store, no-cache, must-revalidate, max-age=0');
1251
- header ("Pragma: no-cache");
1252
- $bytes = @readfile($file);
1253
- if($bytes > 0){
1254
- return true;
1255
- }
1256
- $content = @file_get_contents ($file);
1257
- if ($content != FALSE){
1258
- echo $content;
1259
- return true;
1260
- }
1261
- return false;
1262
-
1263
- }
1264
- protected function set404(){
1265
- $this->is404 = true;
1266
- }
1267
- protected function is404(){
1268
- return $this->is404;
1269
- }
1270
- }