Contextual Related Posts - Version 1.8.6

Version Description

  • New caching option; new function to return related posts; New shortcode; bug fixes and performance improvements Refer to Changelog for more information

=

Download this release

Release Info

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

Code changes from version 1.8.5 to 1.8.6

admin.inc.php CHANGED
@@ -24,6 +24,7 @@ function crp_options() {
24
  $crp_settings['exclude_on_post_ids'] = $_POST['exclude_on_post_ids'];
25
  $crp_settings['exclude_post_ids'] = $_POST['exclude_post_ids'];
26
  $crp_settings['match_content'] = (isset($_POST['match_content']) ? true : false);
 
27
 
28
  $crp_settings['add_to_content'] = (isset($_POST['add_to_content']) ? true : false);
29
  $crp_settings['add_to_page'] = (isset($_POST['add_to_page']) ? true : false);
@@ -70,12 +71,12 @@ function crp_options() {
70
  $crp_settings['exclude_cat_slugs'] = ($_POST['exclude_cat_slugs']);
71
  $exclude_categories_slugs = explode(", ",$crp_settings['exclude_cat_slugs']);
72
 
73
- $exclude_categories = '';
74
  foreach ($exclude_categories_slugs as $exclude_categories_slug) {
75
  $catObj = get_category_by_slug($exclude_categories_slug);
76
- if (isset($catObj->term_id)) $exclude_categories .= $catObj->term_id . ',';
77
  }
78
- $crp_settings['exclude_categories'] = substr($exclude_categories, 0, -2);
79
 
80
  $wp_post_types = get_post_types( array(
81
  'public' => true,
@@ -90,6 +91,8 @@ function crp_options() {
90
  parse_str($crp_settings['post_types'],$post_types);
91
  $posts_types_inc = array_intersect($wp_post_types, $post_types);
92
 
 
 
93
  $str = '<div id="message" class="updated fade"><p>'. __('Options saved successfully.',CRP_LOCAL_NAME) .'</p></div>';
94
  echo $str;
95
  }
@@ -179,6 +182,11 @@ function crp_options() {
179
  <div class="tabbertab" id="crp_genoptions">
180
  <h3><?php _e('General options',CRP_LOCAL_NAME); ?></h3>
181
  <table class="form-table">
 
 
 
 
 
182
  <tr style="vertical-align: top;"><th scope="row"><label for="limit"><?php _e('Number of related posts to display: ',CRP_LOCAL_NAME); ?></label></th>
183
  <td><input type="textbox" name="limit" id="limit" value="<?php echo esc_attr(stripslashes($crp_settings['limit'])); ?>"></td>
184
  </tr>
@@ -221,6 +229,7 @@ function crp_options() {
221
  </table>
222
  <textarea class="wickEnabled:MYCUSTOMFLOATER" cols="50" rows="3" wrap="virtual" name="exclude_cat_slugs"><?php echo (stripslashes($crp_settings['exclude_cat_slugs'])); ?></textarea>
223
  </div>
 
224
  </td>
225
  </tr>
226
  <tr style="vertical-align: top;"><th scope="row"><?php _e('Add related posts to:',CRP_LOCAL_NAME); ?></th>
@@ -422,12 +431,12 @@ add_action('admin_menu', 'crp_adminmenu');
422
 
423
  // Admin notices
424
  function crp_admin_notice() {
425
- $plugin_settings_page = '<a href="' . admin_url( 'options-general.php?page=crp_options' ) . '">' . __('plugin settings page', ATF_LOCAL_NAME ) . '</a>';
426
 
427
  if ( !current_user_can( 'manage_options' ) ) return;
428
 
429
  echo '<div class="error">
430
- <p>'.__('Contextual Related Posts plugin has just been installed / upgraded. Please visit the ', ATF_LOCAL_NAME ).$plugin_settings_page.__(' to configure.', ATF_LOCAL_NAME ).'</p>
431
  </div>';
432
  }
433
  // add_action('admin_notices', 'crp_admin_notice');
24
  $crp_settings['exclude_on_post_ids'] = $_POST['exclude_on_post_ids'];
25
  $crp_settings['exclude_post_ids'] = $_POST['exclude_post_ids'];
26
  $crp_settings['match_content'] = (isset($_POST['match_content']) ? true : false);
27
+ $crp_settings['cache'] = (isset($_POST['cache']) ? true : false);
28
 
29
  $crp_settings['add_to_content'] = (isset($_POST['add_to_content']) ? true : false);
30
  $crp_settings['add_to_page'] = (isset($_POST['add_to_page']) ? true : false);
71
  $crp_settings['exclude_cat_slugs'] = ($_POST['exclude_cat_slugs']);
72
  $exclude_categories_slugs = explode(", ",$crp_settings['exclude_cat_slugs']);
73
 
74
+ //$exclude_categories = array();
75
  foreach ($exclude_categories_slugs as $exclude_categories_slug) {
76
  $catObj = get_category_by_slug($exclude_categories_slug);
77
+ if (isset($catObj->term_id)) $exclude_categories[] = $catObj->term_id;
78
  }
79
+ $crp_settings['exclude_categories'] = (isset($exclude_categories)) ? join(',', $exclude_categories) : '';
80
 
81
  $wp_post_types = get_post_types( array(
82
  'public' => true,
91
  parse_str($crp_settings['post_types'],$post_types);
92
  $posts_types_inc = array_intersect($wp_post_types, $post_types);
93
 
94
+ delete_post_meta_by_key('crp_related_posts'); // Delete the cache
95
+
96
  $str = '<div id="message" class="updated fade"><p>'. __('Options saved successfully.',CRP_LOCAL_NAME) .'</p></div>';
97
  echo $str;
98
  }
182
  <div class="tabbertab" id="crp_genoptions">
183
  <h3><?php _e('General options',CRP_LOCAL_NAME); ?></h3>
184
  <table class="form-table">
185
+ <tr style="vertical-align: top;"><th scope="row"><label for="cache"><?php _e('Cache output?',CRP_LOCAL_NAME); ?></label></th>
186
+ <td><input type="checkbox" name="cache" id="cache" <?php if ($crp_settings['cache']) echo 'checked="checked"' ?> />
187
+ <br /><?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); ?>
188
+ </td>
189
+ </tr>
190
  <tr style="vertical-align: top;"><th scope="row"><label for="limit"><?php _e('Number of related posts to display: ',CRP_LOCAL_NAME); ?></label></th>
191
  <td><input type="textbox" name="limit" id="limit" value="<?php echo esc_attr(stripslashes($crp_settings['limit'])); ?>"></td>
192
  </tr>
229
  </table>
230
  <textarea class="wickEnabled:MYCUSTOMFLOATER" cols="50" rows="3" wrap="virtual" name="exclude_cat_slugs"><?php echo (stripslashes($crp_settings['exclude_cat_slugs'])); ?></textarea>
231
  </div>
232
+ <?php _e('Comma separated list of category slugs. The field above has an autocomplete so simply start typing in the starting letters and it will prompt you with options',CRP_LOCAL_NAME); ?>
233
  </td>
234
  </tr>
235
  <tr style="vertical-align: top;"><th scope="row"><?php _e('Add related posts to:',CRP_LOCAL_NAME); ?></th>
431
 
432
  // Admin notices
433
  function crp_admin_notice() {
434
+ $plugin_settings_page = '<a href="' . admin_url( 'options-general.php?page=crp_options' ) . '">' . __('plugin settings page', CRP_LOCAL_NAME ) . '</a>';
435
 
436
  if ( !current_user_can( 'manage_options' ) ) return;
437
 
438
  echo '<div class="error">
439
+ <p>'.__('Contextual Related Posts plugin has just been installed / upgraded. Please visit the ', CRP_LOCAL_NAME ).$plugin_settings_page.__(' to configure.', CRP_LOCAL_NAME ).'</p>
440
  </div>';
441
  }
442
  // add_action('admin_notices', 'crp_admin_notice');
contextual-related-posts.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  Plugin Name: Contextual Related Posts
4
- Version: 1.8.5
5
  Plugin URI: http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/
6
  Description: Displaying a set of related posts on your website or in your feed. Increase reader retention and reduce bounce rates
7
  Author: Ajay D'Souza
@@ -41,13 +41,19 @@ add_action('init', 'ald_crp_init');
41
  /*********************************************************************
42
  * Main Functions *
43
  ********************************************************************/
 
 
 
 
44
  // Main function, accepts parameters in a query string format
45
  function ald_crp( $args ) {
 
 
46
  $defaults = array(
47
  'is_widget' => FALSE,
48
  'echo' => TRUE,
49
  );
50
- $defaults = array_merge($defaults, crp_read_options());
51
 
52
  // Parse incomming $args into an array and merge it with $defaults
53
  $args = wp_parse_args( $args, $defaults );
@@ -62,71 +68,40 @@ function ald_crp( $args ) {
62
  function get_crp($is_widget, $limit, $show_excerpt, $post_thumb_op, $thumb_height, $thumb_width) {
63
  global $wpdb, $post, $single;
64
 
65
- $crp_settings = crp_read_options();
 
 
 
 
 
 
 
66
  if (empty($limit)) $limit = stripslashes($crp_settings['limit']);
67
- if (empty($post_thumb_op)) $post_thumb_op = stripslashes($crp_settings['post_thumb_op']);
68
  if (!isset($show_excerpt)) $show_excerpt = $crp_settings['show_excerpt'];
 
69
  if (empty($thumb_height)) $thumb_height = stripslashes($crp_settings['thumb_height']);
70
  if (empty($thumb_width)) $thumb_width = stripslashes($crp_settings['thumb_width']);
71
 
72
- parse_str($crp_settings['post_types'],$post_types);
73
  $exclude_categories = explode(',',$crp_settings['exclude_categories']);
74
 
75
  $rel_attribute = (($crp_settings['link_nofollow']) ? ' rel="nofollow" ' : ' ' );
76
- $target_attribute = (($crp_settings['link_nofollow']) ? ' target="_blank" ' : ' ' );
77
 
78
- // Make sure the post is not from the future
79
- $time_difference = get_option('gmt_offset');
80
- $now = gmdate("Y-m-d H:i:s",(time()+($time_difference*3600)));
81
-
82
- // Are we matching only the title or the post content as well?
83
- if($crp_settings['match_content']) {
84
- $stuff = addslashes($post->post_title. ' ' . $post->post_content);
85
- }
86
- else {
87
- $stuff = addslashes($post->post_title);
88
- }
89
-
90
- // Limit the related posts by time
91
- $daily_range = $crp_settings['daily_range'] - 1;
92
- $current_date = strtotime ( '-'.$daily_range. ' DAY' , strtotime ( $now ) );
93
- $current_date = date ( 'Y-m-d H:i:s' , $current_date );
94
-
95
- // Create the SQL query to fetch the related posts from the database
96
- if ((is_int($post->ID))&&($stuff != '')) {
97
- $sql = "SELECT DISTINCT ID,post_title,post_date "
98
- . " FROM ".$wpdb->posts." WHERE "
99
- . "MATCH (post_title,post_content) AGAINST ('".$stuff."') "
100
- . "AND post_date <= '".$now."' "
101
- . "AND post_date >= '".$current_date."' "
102
- . "AND post_status = 'publish' "
103
- . "AND ID != ".$post->ID." ";
104
- if ($crp_settings['exclude_post_ids']!='') $sql .= "AND ID NOT IN (".$crp_settings['exclude_post_ids'].") ";
105
- $sql .= "AND ( ";
106
- $multiple = false;
107
- foreach ($post_types as $post_type) {
108
- if ( $multiple ) $sql .= ' OR ';
109
- $sql .= " post_type = '".$post_type."' ";
110
- $multiple = true;
111
- }
112
- $sql .=" ) ";
113
- $sql .= "LIMIT ".$limit*3;
114
 
115
- $search_counter = 0;
116
- $searches = $wpdb->get_results($sql);
117
- } else {
118
- $searches = false;
119
- }
120
-
121
  $output = (is_singular()) ? '<div id="crp_related" class="crp_related">' : '<div class="crp_related">';
122
 
123
- if($searches){
 
 
124
  if(!$is_widget) $output .= (stripslashes($crp_settings['title']));
125
  $output .= $crp_settings['before_list'];
126
- foreach($searches as $search) {
127
- $categorys = get_the_category($search->ID); //Fetch categories of the plugin
 
128
  $p_in_c = false; // Variable to check if post exists in a particular category
129
- $title = crp_max_formatted_content(get_the_title($search->ID),$crp_settings['title_length']);
130
  foreach ($categorys as $cat) { // Loop to check if post exists in excluded category
131
  $p_in_c = (in_array($cat->cat_ID, $exclude_categories)) ? true : false;
132
  if ($p_in_c) break; // End loop if post found in category
@@ -135,27 +110,26 @@ function get_crp($is_widget, $limit, $show_excerpt, $post_thumb_op, $thumb_heigh
135
  if (!$p_in_c) {
136
  $output .= $crp_settings['before_list_item'];
137
 
138
- //$output .= '<a href="'.get_permalink($search->ID).'" class="crp_link">'; // Add beginning of link
139
  if ($post_thumb_op=='after') {
140
- $output .= '<a href="'.get_permalink($search->ID).'" '.$rel_attribute.' '.$target_attribute.'class="crp_title">'.$title.'</a>'; // Add title if post thumbnail is to be displayed after
141
  }
142
  if ($post_thumb_op=='inline' || $post_thumb_op=='after' || $post_thumb_op=='thumbs_only') {
143
- $output .= '<a href="'.get_permalink($search->ID).'" '.$rel_attribute.' '.$target_attribute.'>';
144
- $output .= crp_get_the_post_thumbnail('postid='.$search->ID.'&thumb_height='.$thumb_height.'&thumb_width='.$thumb_width.'&thumb_meta='.$crp_settings['thumb_meta'].'&thumb_default='.$crp_settings['thumb_default'].'&thumb_default_show='.$crp_settings['thumb_default_show'].'&thumb_timthumb='.$crp_settings['thumb_timthumb'].'&thumb_timthumb_q='.$crp_settings['thumb_timthumb_q'].'&scan_images='.$crp_settings['scan_images'].'&class=crp_thumb&filter=crp_postimage');
145
- //$output .= crp_get_the_post_thumbnail($search->ID, $crp_settings);
146
  $output .= '</a>';
147
  }
148
  if ($post_thumb_op=='inline' || $post_thumb_op=='text_only') {
149
- $output .= '<a href="'.get_permalink($search->ID).'" '.$rel_attribute.' '.$target_attribute.' class="crp_title">'.$title.'</a>'; // Add title when required by settings
150
  }
151
  //$output .= '</a>'; // Close the link
152
  if ($show_excerpt) {
153
- $output .= '<span class="crp_excerpt"> '.crp_excerpt($search->ID,$crp_settings['excerpt_length']).'</span>';
154
  }
155
  $output .= $crp_settings['after_list_item'];
156
- $search_counter++;
157
  }
158
- if ($search_counter == $limit) break; // End loop when related posts limit is reached
159
  } //end of foreach loop
160
  if ($crp_settings['show_credit']) {
161
  $output .= $crp_settings['before_list_item'];
@@ -165,7 +139,6 @@ function get_crp($is_widget, $limit, $show_excerpt, $post_thumb_op, $thumb_heigh
165
  $output .= $crp_settings['after_list'];
166
  }else{
167
  $output .= ($crp_settings['blank_output']) ? ' ' : '<p>'.$crp_settings['blank_output_text'].'</p>';
168
- //$output .= '<p>'.strip_tags($sql).'</p>';
169
  }
170
  if ((strpos($output, $crp_settings['before_list_item'])) === false) {
171
  $output = '<div id="crp_related">';
@@ -173,14 +146,77 @@ function get_crp($is_widget, $limit, $show_excerpt, $post_thumb_op, $thumb_heigh
173
  }
174
  $output .= '</div>';
175
 
 
 
 
 
 
176
  return $output;
177
  }
178
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
179
  // Filter for 'the_content' to add the related posts
180
  function ald_crp_content($content) {
181
 
182
  global $single, $post;
183
- $crp_settings = crp_read_options();
184
 
185
 
186
  $exclude_on_post_ids = explode(',',$crp_settings['exclude_on_post_ids']);
@@ -209,7 +245,7 @@ add_filter('the_content', 'ald_crp_content');
209
  // Filter to add related posts to feeds
210
  function ald_crp_rss($content) {
211
  global $post;
212
- $crp_settings = crp_read_options();
213
  $limit_feed = $crp_settings['limit_feed'];
214
  $show_excerpt_feed = $crp_settings['show_excerpt_feed'];
215
  $post_thumb_op_feed = $crp_settings['post_thumb_op_feed'];
@@ -224,6 +260,7 @@ add_filter('the_excerpt_rss', 'ald_crp_rss');
224
  add_filter('the_content_feed', 'ald_crp_rss');
225
 
226
 
 
227
  function echo_ald_crp() {
228
  echo ald_crp('is_widget=0');
229
  }
@@ -298,7 +335,7 @@ class WidgetCRP extends WP_Widget
298
 
299
  extract($args, EXTR_SKIP);
300
 
301
- $crp_settings = crp_read_options();
302
 
303
  $exclude_on_post_ids = explode(',',$crp_settings['exclude_on_post_ids']);
304
 
@@ -331,6 +368,22 @@ function init_ald_crp(){
331
  add_action('init', 'init_ald_crp', 1);
332
 
333
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
334
  /*********************************************************************
335
  * Default options *
336
  ********************************************************************/
@@ -338,7 +391,7 @@ add_action('init', 'init_ald_crp', 1);
338
  function crp_default_options() {
339
  global $crp_url;
340
  $title = __('<h3>Related Posts:</h3>',CRP_LOCAL_NAME);
341
- $blank_output_text = __('No related posts founds',CRP_LOCAL_NAME);
342
  $thumb_default = $crp_url.'/default.png';
343
  // get relevant post types
344
  $args = array (
@@ -356,6 +409,7 @@ function crp_default_options() {
356
  'add_to_category_archives' => false, // Add related posts to category archives
357
  'add_to_tag_archives' => false, // Add related posts to tag archives
358
  'add_to_archives' => false, // Add related posts to other archives
 
359
  'limit' => '5', // How many posts to display?
360
  'daily_range' => '1095', // How old posts should be displayed?
361
  'show_credit' => false, // Link to this plugin's page?
@@ -422,7 +476,7 @@ add_action('wp_head','crp_header');
422
  function crp_header() {
423
  global $wpdb, $post, $single;
424
 
425
- $crp_settings = crp_read_options();
426
  $crp_custom_CSS = stripslashes($crp_settings['custom_CSS']);
427
 
428
  // Add CSS to header
1
  <?php
2
  /*
3
  Plugin Name: Contextual Related Posts
4
+ Version: 1.8.6
5
  Plugin URI: http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/
6
  Description: Displaying a set of related posts on your website or in your feed. Increase reader retention and reduce bounce rates
7
  Author: Ajay D'Souza
41
  /*********************************************************************
42
  * Main Functions *
43
  ********************************************************************/
44
+ // Set $crp_settings as a global variable to prevent relookups in every function
45
+ global $crp_settings;
46
+ $crp_settings = crp_read_options();
47
+
48
  // Main function, accepts parameters in a query string format
49
  function ald_crp( $args ) {
50
+ global $crp_settings;
51
+
52
  $defaults = array(
53
  'is_widget' => FALSE,
54
  'echo' => TRUE,
55
  );
56
+ $defaults = array_merge($defaults, $crp_settings);
57
 
58
  // Parse incomming $args into an array and merge it with $defaults
59
  $args = wp_parse_args( $args, $defaults );
68
  function get_crp($is_widget, $limit, $show_excerpt, $post_thumb_op, $thumb_height, $thumb_width) {
69
  global $wpdb, $post, $single;
70
 
71
+ global $crp_settings;
72
+
73
+ //Support caching to speed up retrieval
74
+ if ( !empty($crp_settings['cache']) ) {
75
+ $output = get_post_meta($post->ID, 'crp_related_posts', true);
76
+ if ( $output ) return $output;
77
+ }
78
+
79
  if (empty($limit)) $limit = stripslashes($crp_settings['limit']);
 
80
  if (!isset($show_excerpt)) $show_excerpt = $crp_settings['show_excerpt'];
81
+ if (empty($post_thumb_op)) $post_thumb_op = stripslashes($crp_settings['post_thumb_op']);
82
  if (empty($thumb_height)) $thumb_height = stripslashes($crp_settings['thumb_height']);
83
  if (empty($thumb_width)) $thumb_width = stripslashes($crp_settings['thumb_width']);
84
 
 
85
  $exclude_categories = explode(',',$crp_settings['exclude_categories']);
86
 
87
  $rel_attribute = (($crp_settings['link_nofollow']) ? ' rel="nofollow" ' : ' ' );
88
+ $target_attribute = (($crp_settings['link_new_window']) ? ' target="_blank" ' : ' ' );
89
 
90
+ // Retrieve the list of posts
91
+ $results = get_crp_posts($post->ID, $limit, TRUE);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
92
 
 
 
 
 
 
 
93
  $output = (is_singular()) ? '<div id="crp_related" class="crp_related">' : '<div class="crp_related">';
94
 
95
+ if($results){
96
+ $loop_counter = 0;
97
+
98
  if(!$is_widget) $output .= (stripslashes($crp_settings['title']));
99
  $output .= $crp_settings['before_list'];
100
+
101
+ foreach($results as $result) {
102
+ $categorys = get_the_category($result->ID); //Fetch categories of the plugin
103
  $p_in_c = false; // Variable to check if post exists in a particular category
104
+ $title = crp_max_formatted_content(get_the_title($result->ID),$crp_settings['title_length']);
105
  foreach ($categorys as $cat) { // Loop to check if post exists in excluded category
106
  $p_in_c = (in_array($cat->cat_ID, $exclude_categories)) ? true : false;
107
  if ($p_in_c) break; // End loop if post found in category
110
  if (!$p_in_c) {
111
  $output .= $crp_settings['before_list_item'];
112
 
113
+ //$output .= '<a href="'.get_permalink($result->ID).'" class="crp_link">'; // Add beginning of link
114
  if ($post_thumb_op=='after') {
115
+ $output .= '<a href="'.get_permalink($result->ID).'" '.$rel_attribute.' '.$target_attribute.'class="crp_title">'.$title.'</a>'; // Add title if post thumbnail is to be displayed after
116
  }
117
  if ($post_thumb_op=='inline' || $post_thumb_op=='after' || $post_thumb_op=='thumbs_only') {
118
+ $output .= '<a href="'.get_permalink($result->ID).'" '.$rel_attribute.' '.$target_attribute.'>';
119
+ $output .= crp_get_the_post_thumbnail('postid='.$result->ID.'&thumb_height='.$thumb_height.'&thumb_width='.$thumb_width.'&thumb_meta='.$crp_settings['thumb_meta'].'&thumb_default='.$crp_settings['thumb_default'].'&thumb_default_show='.$crp_settings['thumb_default_show'].'&thumb_timthumb='.$crp_settings['thumb_timthumb'].'&thumb_timthumb_q='.$crp_settings['thumb_timthumb_q'].'&scan_images='.$crp_settings['scan_images'].'&class=crp_thumb&filter=crp_postimage');
 
120
  $output .= '</a>';
121
  }
122
  if ($post_thumb_op=='inline' || $post_thumb_op=='text_only') {
123
+ $output .= '<a href="'.get_permalink($result->ID).'" '.$rel_attribute.' '.$target_attribute.' class="crp_title">'.$title.'</a>'; // Add title when required by settings
124
  }
125
  //$output .= '</a>'; // Close the link
126
  if ($show_excerpt) {
127
+ $output .= '<span class="crp_excerpt"> '.crp_excerpt($result->ID,$crp_settings['excerpt_length']).'</span>';
128
  }
129
  $output .= $crp_settings['after_list_item'];
130
+ $loop_counter++;
131
  }
132
+ if ($loop_counter == $limit) break; // End loop when related posts limit is reached
133
  } //end of foreach loop
134
  if ($crp_settings['show_credit']) {
135
  $output .= $crp_settings['before_list_item'];
139
  $output .= $crp_settings['after_list'];
140
  }else{
141
  $output .= ($crp_settings['blank_output']) ? ' ' : '<p>'.$crp_settings['blank_output_text'].'</p>';
 
142
  }
143
  if ((strpos($output, $crp_settings['before_list_item'])) === false) {
144
  $output = '<div id="crp_related">';
146
  }
147
  $output .= '</div>';
148
 
149
+
150
+ //Support caching to speed up retrieval
151
+ if ( !empty($crp_settings['cache']) )
152
+ update_post_meta($post->ID, 'crp_related_posts', $output, '');
153
+
154
  return $output;
155
  }
156
 
157
+ // Fetch related posts as an array
158
+ function get_crp_posts($postid = FALSE, $limit = FALSE, $strict_limit = TRUE) {
159
+ global $wpdb, $post, $single;
160
+
161
+ global $crp_settings;
162
+
163
+ $post = (empty($postid)) ? get_post($postid) : $post;
164
+
165
+ if (empty($limit)) $limit = stripslashes($crp_settings['limit']);
166
+ $limit = ($strict_limit) ? $limit : ($limit*3);
167
+
168
+ parse_str($crp_settings['post_types'],$post_types); // Save post types in $post_types variable
169
+
170
+ // Make sure the post is not from the future
171
+ $time_difference = get_option('gmt_offset');
172
+ $now = gmdate("Y-m-d H:i:s",(time()+($time_difference*3600)));
173
+
174
+ // Are we matching only the title or the post content as well?
175
+ if($crp_settings['match_content']) {
176
+ $stuff = addslashes($post->post_title. ' ' . $post->post_content);
177
+ }
178
+ else {
179
+ $stuff = addslashes($post->post_title);
180
+ }
181
+
182
+ // Limit the related posts by time
183
+ $daily_range = $crp_settings['daily_range'] - 1;
184
+ $current_date = strtotime ( '-'.$daily_range. ' DAY' , strtotime ( $now ) );
185
+ $current_date = date ( 'Y-m-d H:i:s' , $current_date );
186
+
187
+ // Create the SQL query to fetch the related posts from the database
188
+ if ((is_int($post->ID))&&($stuff != '')) {
189
+ $sql = "SELECT DISTINCT ID "
190
+ . " FROM ".$wpdb->posts." WHERE "
191
+ . "MATCH (post_title,post_content) AGAINST ('".$stuff."') "
192
+ . "AND post_date <= '".$now."' "
193
+ . "AND post_date >= '".$current_date."' "
194
+ . "AND post_status = 'publish' "
195
+ . "AND ID != ".$post->ID." ";
196
+ if ($crp_settings['exclude_post_ids']!='') $sql .= "AND ID NOT IN (".$crp_settings['exclude_post_ids'].") ";
197
+ $sql .= "AND ( ";
198
+ $multiple = false;
199
+ foreach ($post_types as $post_type) {
200
+ if ( $multiple ) $sql .= ' OR ';
201
+ $sql .= " post_type = '".$post_type."' ";
202
+ $multiple = true;
203
+ }
204
+ $sql .=" ) ";
205
+ $sql .= "LIMIT ".$limit;
206
+
207
+ $results = $wpdb->get_results($sql);
208
+ } else {
209
+ $results = false;
210
+ }
211
+
212
+ return $results;
213
+ }
214
+
215
  // Filter for 'the_content' to add the related posts
216
  function ald_crp_content($content) {
217
 
218
  global $single, $post;
219
+ global $crp_settings;
220
 
221
 
222
  $exclude_on_post_ids = explode(',',$crp_settings['exclude_on_post_ids']);
245
  // Filter to add related posts to feeds
246
  function ald_crp_rss($content) {
247
  global $post;
248
+ global $crp_settings;
249
  $limit_feed = $crp_settings['limit_feed'];
250
  $show_excerpt_feed = $crp_settings['show_excerpt_feed'];
251
  $post_thumb_op_feed = $crp_settings['post_thumb_op_feed'];
260
  add_filter('the_content_feed', 'ald_crp_rss');
261
 
262
 
263
+ // Manual install
264
  function echo_ald_crp() {
265
  echo ald_crp('is_widget=0');
266
  }
335
 
336
  extract($args, EXTR_SKIP);
337
 
338
+ global $crp_settings;
339
 
340
  $exclude_on_post_ids = explode(',',$crp_settings['exclude_on_post_ids']);
341
 
368
  add_action('init', 'init_ald_crp', 1);
369
 
370
 
371
+ /*********************************************************************
372
+ * Shortcode functions *
373
+ ********************************************************************/
374
+ // Creates a shortcode [crp limit="5" heading="1"]
375
+ function crp_shortcode( $atts, $content = null ) {
376
+ extract( shortcode_atts( array(
377
+ 'limit' => '5',
378
+ 'heading' => '1',
379
+ ), $atts ) );
380
+
381
+ $heading = 1 - $heading;
382
+ return ald_crp('is_widget='.$heading.'&limit='.$limit);
383
+ }
384
+ add_shortcode( 'crp', 'crp_shortcode' );
385
+
386
+
387
  /*********************************************************************
388
  * Default options *
389
  ********************************************************************/
391
  function crp_default_options() {
392
  global $crp_url;
393
  $title = __('<h3>Related Posts:</h3>',CRP_LOCAL_NAME);
394
+ $blank_output_text = __('No related posts found',CRP_LOCAL_NAME);
395
  $thumb_default = $crp_url.'/default.png';
396
  // get relevant post types
397
  $args = array (
409
  'add_to_category_archives' => false, // Add related posts to category archives
410
  'add_to_tag_archives' => false, // Add related posts to tag archives
411
  'add_to_archives' => false, // Add related posts to other archives
412
+ 'cache' => false, // Cache output for faster page load
413
  'limit' => '5', // How many posts to display?
414
  'daily_range' => '1095', // How old posts should be displayed?
415
  'show_credit' => false, // Link to this plugin's page?
476
  function crp_header() {
477
  global $wpdb, $post, $single;
478
 
479
+ global $crp_settings;
480
  $crp_custom_CSS = stripslashes($crp_settings['custom_CSS']);
481
 
482
  // Add CSS to header
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: 2013-01-06 12:32-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"
@@ -15,92 +15,102 @@ msgstr ""
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.5.4\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
- #: admin.inc.php:93
22
  msgid "Options saved successfully."
23
  msgstr "Indstillingerne blev gemt."
24
 
25
- #: admin.inc.php:109
26
  msgid "Options set to Default."
27
  msgstr "Indstillingerne sat til standardværdier."
28
 
29
- #: admin.inc.php:124
30
  msgid "Index recreated"
31
  msgstr "Indeks blev gendannet"
32
 
33
- #: admin.inc.php:137
34
  #, fuzzy
35
  msgid "Support the development"
36
  msgstr "Støt udviklingen"
37
 
38
- #: admin.inc.php:145
39
  msgid "Enter amount in USD: "
40
  msgstr ""
41
 
42
- #: admin.inc.php:149
43
  msgid "Send your donation to the author of"
44
  msgstr ""
45
 
46
- #: admin.inc.php:160
47
  msgid "Quick Links"
48
  msgstr ""
49
 
50
- #: admin.inc.php:162
51
  #, fuzzy
52
  msgid "Contextual Related Posts plugin page"
53
  msgstr "Related Posts (Lignende indlæg)"
54
 
55
- #: admin.inc.php:163
56
  msgid "Other plugins"
57
  msgstr ""
58
 
59
- #: admin.inc.php:164
60
  msgid "Ajay's blog"
61
  msgstr ""
62
 
63
- #: admin.inc.php:165 contextual-related-posts.php:608
64
  msgid "Support"
65
  msgstr "Support"
66
 
67
- #: admin.inc.php:166
68
  msgid "Reviews"
69
  msgstr ""
70
 
71
- #: admin.inc.php:170
72
  msgid "Recent developments"
73
  msgstr ""
74
 
75
- #: admin.inc.php:180
76
  msgid "General options"
77
  msgstr ""
78
 
79
- #: admin.inc.php:182 admin.inc.php:354
 
 
 
 
 
 
 
 
 
 
80
  msgid "Number of related posts to display: "
81
  msgstr "Antal Lignende indlæg, der skal vises: "
82
 
83
- #: admin.inc.php:185
84
  msgid "Related posts should be newer than:"
85
  msgstr ""
86
 
87
- #: admin.inc.php:186
88
  msgid "days"
89
  msgstr ""
90
 
91
- #: admin.inc.php:188
92
  msgid "Post types to include in results (including custom post types)"
93
  msgstr ""
94
 
95
- #: admin.inc.php:199
96
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
97
  msgstr ""
98
 
99
- #: admin.inc.php:202
100
  msgid "Find related posts based on content as well as title"
101
  msgstr ""
102
 
103
- #: admin.inc.php:203
104
  #, fuzzy
105
  msgid ""
106
  "If unchecked, only posts titles are used. (I recommend using a caching "
@@ -110,48 +120,55 @@ msgstr ""
110
  "kun indlæggenes titler (jeg anbefaler et cache-plugin, hvis du aktiverer "
111
  "dette)"
112
 
113
- #: admin.inc.php:205
114
  msgid "List of post or page IDs to exclude from the results: "
115
  msgstr ""
116
 
117
- #: admin.inc.php:208
118
  msgid "Categories to exclude from the results: "
119
  msgstr ""
120
 
121
- #: admin.inc.php:226
 
 
 
 
 
 
 
122
  #, fuzzy
123
  msgid "Add related posts to:"
124
  msgstr "Tilføj Lignende indlæg til feeds"
125
 
126
- #: admin.inc.php:228
127
  msgid "Posts"
128
  msgstr ""
129
 
130
- #: admin.inc.php:229
131
  msgid "Pages"
132
  msgstr ""
133
 
134
- #: admin.inc.php:230
135
  msgid "Home page"
136
  msgstr ""
137
 
138
- #: admin.inc.php:231
139
  msgid "Feeds"
140
  msgstr ""
141
 
142
- #: admin.inc.php:232
143
  msgid "Category archives"
144
  msgstr ""
145
 
146
- #: admin.inc.php:233
147
  msgid "Tag archives"
148
  msgstr ""
149
 
150
- #: admin.inc.php:234
151
  msgid "Other archives"
152
  msgstr ""
153
 
154
- #: admin.inc.php:235
155
  #, fuzzy
156
  msgid ""
157
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
@@ -163,176 +180,176 @@ msgstr ""
163
  "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> til din skabelonfil, hvor du "
164
  "ønsker de lignende indlæg vist"
165
 
166
- #: admin.inc.php:238
167
  msgid "Add a link to the plugin page as a final item in the list"
168
  msgstr ""
169
 
170
- #: admin.inc.php:239
171
  msgid " <em>Optional</em>"
172
  msgstr ""
173
 
174
- #: admin.inc.php:246
175
  #, fuzzy
176
  msgid "Output options"
177
  msgstr "Indstillinger for output:"
178
 
179
- #: admin.inc.php:248
180
  msgid "Title of related posts: "
181
  msgstr "Titel på Lignende indlæg: "
182
 
183
- #: admin.inc.php:251
184
  msgid "When there are no posts, what should be shown?"
185
  msgstr "Hvad skal der vises, hvis der ingen indlæg er?"
186
 
187
- #: admin.inc.php:255
188
  msgid "Blank Output"
189
  msgstr "Intet"
190
 
191
- #: admin.inc.php:259
192
  msgid "Display:"
193
  msgstr ""
194
 
195
- #: admin.inc.php:263 admin.inc.php:357
196
  msgid "Show post excerpt in list?"
197
  msgstr ""
198
 
199
- #: admin.inc.php:266
200
  msgid "Length of excerpt (in words): "
201
  msgstr ""
202
 
203
- #: admin.inc.php:269
204
  msgid "Limit post title length (in characters)"
205
  msgstr ""
206
 
207
- #: admin.inc.php:272
208
  msgid "Open links in new window"
209
  msgstr ""
210
 
211
- #: admin.inc.php:275
212
  msgid "Add nofollow attribute to links in the list"
213
  msgstr ""
214
 
215
- #: admin.inc.php:278
216
  #, fuzzy
217
  msgid "Exclude display of related posts on these posts / pages"
218
  msgstr "Tilføj Lignende indlæg til feeds"
219
 
220
- #: admin.inc.php:281
221
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
222
  msgstr ""
223
 
224
- #: admin.inc.php:284
225
  msgid "Customize the output:"
226
  msgstr "Tilpas outputtet:"
227
 
228
- #: admin.inc.php:286
229
  msgid "HTML to display before the list of posts: "
230
  msgstr "HTML, der skal vises før listen med indlæg: "
231
 
232
- #: admin.inc.php:289
233
  msgid "HTML to display before each list item: "
234
  msgstr "HTML, der skal vises før hvert punkt på listen: "
235
 
236
- #: admin.inc.php:292
237
  msgid "HTML to display after each list item: "
238
  msgstr "HTML, der skal vises efter hvert punkt på listen: "
239
 
240
- #: admin.inc.php:295
241
  msgid "HTML to display after the list of posts: "
242
  msgstr "HTML, der skal vises efter listen med indlæg: "
243
 
244
- #: admin.inc.php:298
245
  msgid "Post thumbnail options:"
246
  msgstr "Indstillinger for indlægsminiaturer:"
247
 
248
- #: admin.inc.php:300 admin.inc.php:360
249
  msgid "Location of post thumbnail:"
250
  msgstr ""
251
 
252
- #: admin.inc.php:304 admin.inc.php:364
253
  #, fuzzy
254
  msgid "Display thumbnails inline with posts, before title"
255
  msgstr "Vis miniaturer inline med indlæg"
256
 
257
- #: admin.inc.php:308 admin.inc.php:368
258
  #, fuzzy
259
  msgid "Display thumbnails inline with posts, after title"
260
  msgstr "Vis miniaturer inline med indlæg"
261
 
262
- #: admin.inc.php:312 admin.inc.php:372
263
  msgid "Display only thumbnails, no text"
264
  msgstr "Vis kun miniaturer, ingen tekst"
265
 
266
- #: admin.inc.php:316 admin.inc.php:376
267
  msgid "Do not display thumbnails, only text."
268
  msgstr "Vis ikke miniaturer, kun tekst."
269
 
270
- #: admin.inc.php:320 admin.inc.php:380
271
  msgid "Maximum width of the thumbnail: "
272
  msgstr ""
273
 
274
- #: admin.inc.php:323 admin.inc.php:383
275
  msgid "Maximum height of the thumbnail: "
276
  msgstr ""
277
 
278
- #: admin.inc.php:326
279
  msgid "Use timthumb to generate thumbnails? "
280
  msgstr ""
281
 
282
- #: admin.inc.php:327
283
  msgid ""
284
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
285
  "\">timthumb</a> will be used to generate thumbnails"
286
  msgstr ""
287
 
288
- #: admin.inc.php:329
289
  msgid "Quality of thumbnails generated by timthumb"
290
  msgstr ""
291
 
292
- #: admin.inc.php:332
293
  msgid ""
294
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
295
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
296
  msgstr ""
297
 
298
- #: admin.inc.php:335
299
  #, fuzzy
300
  msgid "Post thumbnail meta field name: "
301
  msgstr "Indstillinger for indlægsminiaturer:"
302
 
303
- #: admin.inc.php:336
304
  msgid ""
305
  "The value of this field should contain the image source and is set in the "
306
  "<em>Add New Post</em> screen"
307
  msgstr ""
308
 
309
- #: admin.inc.php:338
310
  msgid ""
311
  "If the postmeta is not set, then should the plugin extract the first image "
312
  "from the post?"
313
  msgstr ""
314
 
315
- #: admin.inc.php:339
316
  msgid ""
317
  "This can slow down the loading of your page if the first image in the "
318
  "related posts is large in file-size"
319
  msgstr ""
320
 
321
- #: admin.inc.php:341
322
  msgid "Use default thumbnail? "
323
  msgstr ""
324
 
325
- #: admin.inc.php:342
326
  msgid ""
327
  "If checked, when no thumbnail is found, show a default one from the URL "
328
  "below. If not checked and no thumbnail is found, no image will be shown."
329
  msgstr ""
330
 
331
- #: admin.inc.php:344
332
  msgid "Default thumbnail: "
333
  msgstr ""
334
 
335
- #: admin.inc.php:345
336
  #, fuzzy
337
  msgid ""
338
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -343,148 +360,148 @@ msgstr ""
343
  "indlægget ikke gør det, tjekker pluginnet metafeltet. Hvis dette ikke "
344
  "findes, vil det vise standardbilledet specificeret nedenfor:"
345
 
346
- #: admin.inc.php:350
347
  #, fuzzy
348
  msgid "Feed options"
349
  msgstr "Indstillinger:"
350
 
351
- #: admin.inc.php:352
352
  msgid ""
353
  "Below options override the related posts settings for your blog feed. These "
354
  "only apply if you have selected to add related posts to Feeds in the General "
355
  "Options tab."
356
  msgstr ""
357
 
358
- #: admin.inc.php:389
359
  msgid "Custom Styles"
360
  msgstr ""
361
 
362
- #: admin.inc.php:391
363
  msgid "Custom CSS to add to header:"
364
  msgstr ""
365
 
366
- #: admin.inc.php:394
367
  msgid ""
368
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
369
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
370
  "\">FAQ</a> for available CSS classes to style."
371
  msgstr ""
372
 
373
- #: admin.inc.php:398
374
  #, fuzzy
375
  msgid "Save Options"
376
  msgstr "Indstillinger:"
377
 
378
- #: admin.inc.php:399
379
  #, fuzzy
380
  msgid "Default Options"
381
  msgstr "Indstillinger for output:"
382
 
383
- #: admin.inc.php:399
384
  msgid "Do you want to set options to Default?"
385
  msgstr "Ønsker du at sætte indstillingerne til standardværdierne?"
386
 
387
- #: admin.inc.php:400
388
  msgid "Recreate Index"
389
  msgstr ""
390
 
391
- #: admin.inc.php:400
392
  msgid "Are you sure you want to recreate the index?"
393
  msgstr "Er du sikker på, du ønsker at gendanne indekset?"
394
 
395
- #: admin.inc.php:417
396
  #, fuzzy
397
  msgid "Contextual Related Posts"
398
  msgstr "Related Posts (Lignende indlæg)"
399
 
400
- #: admin.inc.php:417 contextual-related-posts.php:240
401
  msgid "Related Posts"
402
  msgstr "Related Posts (Lignende indlæg)"
403
 
404
- #: admin.inc.php:425
405
  msgid "plugin settings page"
406
  msgstr ""
407
 
408
- #: admin.inc.php:430
409
  msgid ""
410
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
411
  "visit the "
412
  msgstr ""
413
 
414
- #: admin.inc.php:430
415
  msgid " to configure."
416
  msgstr ""
417
 
418
- #: contextual-related-posts.php:162
419
  msgid "Powered by"
420
  msgstr ""
421
 
422
- #: contextual-related-posts.php:239
423
  #, fuzzy
424
  msgid "Display Related Posts"
425
  msgstr "Vis \"Ingen lignende indlæg\""
426
 
427
- #: contextual-related-posts.php:252
428
  msgid "Title"
429
  msgstr ""
430
 
431
- #: contextual-related-posts.php:257
432
  msgid "No. of posts"
433
  msgstr ""
434
 
435
- #: contextual-related-posts.php:262
436
  msgid " Show excerpt?"
437
  msgstr ""
438
 
439
- #: contextual-related-posts.php:266
440
  #, fuzzy
441
  msgid "Thumbnail options"
442
  msgstr "Indstillinger for indlægsminiaturer:"
443
 
444
- #: contextual-related-posts.php:268
445
  #, fuzzy
446
  msgid "Thumbnails inline, before title"
447
  msgstr "Vis miniaturer inline med indlæg"
448
 
449
- #: contextual-related-posts.php:269
450
  #, fuzzy
451
  msgid "Thumbnails inline, after title"
452
  msgstr "Vis miniaturer inline med indlæg"
453
 
454
- #: contextual-related-posts.php:270
455
  #, fuzzy
456
  msgid "Only thumbnails, no text"
457
  msgstr "Vis kun miniaturer, ingen tekst"
458
 
459
- #: contextual-related-posts.php:271
460
  #, fuzzy
461
  msgid "No thumbnails, only text."
462
  msgstr "Vis ikke miniaturer, kun tekst."
463
 
464
- #: contextual-related-posts.php:276
465
  #, fuzzy
466
  msgid "Thumbnail height"
467
  msgstr "Indstillinger for indlægsminiaturer:"
468
 
469
- #: contextual-related-posts.php:281
470
  #, fuzzy
471
  msgid "Thumbnail width"
472
  msgstr "Indstillinger for indlægsminiaturer:"
473
 
474
- #: contextual-related-posts.php:340
475
  msgid "<h3>Related Posts:</h3>"
476
  msgstr "<h3>Lignende indlæg:</h3>"
477
 
478
- #: contextual-related-posts.php:341
479
  #, fuzzy
480
- msgid "No related posts founds"
481
  msgstr "Ingen lignende indlæg fundet"
482
 
483
- #: contextual-related-posts.php:594
484
  msgid "Settings"
485
  msgstr "Opsætning"
486
 
487
- #: contextual-related-posts.php:609
488
  msgid "Donate"
489
  msgstr "Donation"
490
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts 1.5.1\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-04-07 23:41-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"
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.5.5\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: admin.inc.php:96
22
  msgid "Options saved successfully."
23
  msgstr "Indstillingerne blev gemt."
24
 
25
+ #: admin.inc.php:112
26
  msgid "Options set to Default."
27
  msgstr "Indstillingerne sat til standardværdier."
28
 
29
+ #: admin.inc.php:127
30
  msgid "Index recreated"
31
  msgstr "Indeks blev gendannet"
32
 
33
+ #: admin.inc.php:140
34
  #, fuzzy
35
  msgid "Support the development"
36
  msgstr "Støt udviklingen"
37
 
38
+ #: admin.inc.php:148
39
  msgid "Enter amount in USD: "
40
  msgstr ""
41
 
42
+ #: admin.inc.php:152
43
  msgid "Send your donation to the author of"
44
  msgstr ""
45
 
46
+ #: admin.inc.php:163
47
  msgid "Quick Links"
48
  msgstr ""
49
 
50
+ #: admin.inc.php:165
51
  #, fuzzy
52
  msgid "Contextual Related Posts plugin page"
53
  msgstr "Related Posts (Lignende indlæg)"
54
 
55
+ #: admin.inc.php:166
56
  msgid "Other plugins"
57
  msgstr ""
58
 
59
+ #: admin.inc.php:167
60
  msgid "Ajay's blog"
61
  msgstr ""
62
 
63
+ #: admin.inc.php:168 contextual-related-posts.php:662
64
  msgid "Support"
65
  msgstr "Support"
66
 
67
+ #: admin.inc.php:169
68
  msgid "Reviews"
69
  msgstr ""
70
 
71
+ #: admin.inc.php:173
72
  msgid "Recent developments"
73
  msgstr ""
74
 
75
+ #: admin.inc.php:183
76
  msgid "General options"
77
  msgstr ""
78
 
79
+ #: admin.inc.php:185
80
+ msgid "Cache output?"
81
+ msgstr ""
82
+
83
+ #: admin.inc.php:187
84
+ msgid ""
85
+ "Enabling this option will cache the related posts output when the post is "
86
+ "visited the first time. The cache is cleaned when you save this page."
87
+ msgstr ""
88
+
89
+ #: admin.inc.php:190 admin.inc.php:363
90
  msgid "Number of related posts to display: "
91
  msgstr "Antal Lignende indlæg, der skal vises: "
92
 
93
+ #: admin.inc.php:193
94
  msgid "Related posts should be newer than:"
95
  msgstr ""
96
 
97
+ #: admin.inc.php:194
98
  msgid "days"
99
  msgstr ""
100
 
101
+ #: admin.inc.php:196
102
  msgid "Post types to include in results (including custom post types)"
103
  msgstr ""
104
 
105
+ #: admin.inc.php:207
106
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
107
  msgstr ""
108
 
109
+ #: admin.inc.php:210
110
  msgid "Find related posts based on content as well as title"
111
  msgstr ""
112
 
113
+ #: admin.inc.php:211
114
  #, fuzzy
115
  msgid ""
116
  "If unchecked, only posts titles are used. (I recommend using a caching "
120
  "kun indlæggenes titler (jeg anbefaler et cache-plugin, hvis du aktiverer "
121
  "dette)"
122
 
123
+ #: admin.inc.php:213
124
  msgid "List of post or page IDs to exclude from the results: "
125
  msgstr ""
126
 
127
+ #: admin.inc.php:216
128
  msgid "Categories to exclude from the results: "
129
  msgstr ""
130
 
131
+ #: admin.inc.php:232
132
+ msgid ""
133
+ "Comma separated list of category slugs. The field above has an autocomplete "
134
+ "so simply start typing in the starting letters and it will prompt you with "
135
+ "options"
136
+ msgstr ""
137
+
138
+ #: admin.inc.php:235
139
  #, fuzzy
140
  msgid "Add related posts to:"
141
  msgstr "Tilføj Lignende indlæg til feeds"
142
 
143
+ #: admin.inc.php:237
144
  msgid "Posts"
145
  msgstr ""
146
 
147
+ #: admin.inc.php:238
148
  msgid "Pages"
149
  msgstr ""
150
 
151
+ #: admin.inc.php:239
152
  msgid "Home page"
153
  msgstr ""
154
 
155
+ #: admin.inc.php:240
156
  msgid "Feeds"
157
  msgstr ""
158
 
159
+ #: admin.inc.php:241
160
  msgid "Category archives"
161
  msgstr ""
162
 
163
+ #: admin.inc.php:242
164
  msgid "Tag archives"
165
  msgstr ""
166
 
167
+ #: admin.inc.php:243
168
  msgid "Other archives"
169
  msgstr ""
170
 
171
+ #: admin.inc.php:244
172
  #, fuzzy
173
  msgid ""
174
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
180
  "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> til din skabelonfil, hvor du "
181
  "ønsker de lignende indlæg vist"
182
 
183
+ #: admin.inc.php:247
184
  msgid "Add a link to the plugin page as a final item in the list"
185
  msgstr ""
186
 
187
+ #: admin.inc.php:248
188
  msgid " <em>Optional</em>"
189
  msgstr ""
190
 
191
+ #: admin.inc.php:255
192
  #, fuzzy
193
  msgid "Output options"
194
  msgstr "Indstillinger for output:"
195
 
196
+ #: admin.inc.php:257
197
  msgid "Title of related posts: "
198
  msgstr "Titel på Lignende indlæg: "
199
 
200
+ #: admin.inc.php:260
201
  msgid "When there are no posts, what should be shown?"
202
  msgstr "Hvad skal der vises, hvis der ingen indlæg er?"
203
 
204
+ #: admin.inc.php:264
205
  msgid "Blank Output"
206
  msgstr "Intet"
207
 
208
+ #: admin.inc.php:268
209
  msgid "Display:"
210
  msgstr ""
211
 
212
+ #: admin.inc.php:272 admin.inc.php:366
213
  msgid "Show post excerpt in list?"
214
  msgstr ""
215
 
216
+ #: admin.inc.php:275
217
  msgid "Length of excerpt (in words): "
218
  msgstr ""
219
 
220
+ #: admin.inc.php:278
221
  msgid "Limit post title length (in characters)"
222
  msgstr ""
223
 
224
+ #: admin.inc.php:281
225
  msgid "Open links in new window"
226
  msgstr ""
227
 
228
+ #: admin.inc.php:284
229
  msgid "Add nofollow attribute to links in the list"
230
  msgstr ""
231
 
232
+ #: admin.inc.php:287
233
  #, fuzzy
234
  msgid "Exclude display of related posts on these posts / pages"
235
  msgstr "Tilføj Lignende indlæg til feeds"
236
 
237
+ #: admin.inc.php:290
238
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
239
  msgstr ""
240
 
241
+ #: admin.inc.php:293
242
  msgid "Customize the output:"
243
  msgstr "Tilpas outputtet:"
244
 
245
+ #: admin.inc.php:295
246
  msgid "HTML to display before the list of posts: "
247
  msgstr "HTML, der skal vises før listen med indlæg: "
248
 
249
+ #: admin.inc.php:298
250
  msgid "HTML to display before each list item: "
251
  msgstr "HTML, der skal vises før hvert punkt på listen: "
252
 
253
+ #: admin.inc.php:301
254
  msgid "HTML to display after each list item: "
255
  msgstr "HTML, der skal vises efter hvert punkt på listen: "
256
 
257
+ #: admin.inc.php:304
258
  msgid "HTML to display after the list of posts: "
259
  msgstr "HTML, der skal vises efter listen med indlæg: "
260
 
261
+ #: admin.inc.php:307
262
  msgid "Post thumbnail options:"
263
  msgstr "Indstillinger for indlægsminiaturer:"
264
 
265
+ #: admin.inc.php:309 admin.inc.php:369
266
  msgid "Location of post thumbnail:"
267
  msgstr ""
268
 
269
+ #: admin.inc.php:313 admin.inc.php:373
270
  #, fuzzy
271
  msgid "Display thumbnails inline with posts, before title"
272
  msgstr "Vis miniaturer inline med indlæg"
273
 
274
+ #: admin.inc.php:317 admin.inc.php:377
275
  #, fuzzy
276
  msgid "Display thumbnails inline with posts, after title"
277
  msgstr "Vis miniaturer inline med indlæg"
278
 
279
+ #: admin.inc.php:321 admin.inc.php:381
280
  msgid "Display only thumbnails, no text"
281
  msgstr "Vis kun miniaturer, ingen tekst"
282
 
283
+ #: admin.inc.php:325 admin.inc.php:385
284
  msgid "Do not display thumbnails, only text."
285
  msgstr "Vis ikke miniaturer, kun tekst."
286
 
287
+ #: admin.inc.php:329 admin.inc.php:389
288
  msgid "Maximum width of the thumbnail: "
289
  msgstr ""
290
 
291
+ #: admin.inc.php:332 admin.inc.php:392
292
  msgid "Maximum height of the thumbnail: "
293
  msgstr ""
294
 
295
+ #: admin.inc.php:335
296
  msgid "Use timthumb to generate thumbnails? "
297
  msgstr ""
298
 
299
+ #: admin.inc.php:336
300
  msgid ""
301
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
302
  "\">timthumb</a> will be used to generate thumbnails"
303
  msgstr ""
304
 
305
+ #: admin.inc.php:338
306
  msgid "Quality of thumbnails generated by timthumb"
307
  msgstr ""
308
 
309
+ #: admin.inc.php:341
310
  msgid ""
311
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
312
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
313
  msgstr ""
314
 
315
+ #: admin.inc.php:344
316
  #, fuzzy
317
  msgid "Post thumbnail meta field name: "
318
  msgstr "Indstillinger for indlægsminiaturer:"
319
 
320
+ #: admin.inc.php:345
321
  msgid ""
322
  "The value of this field should contain the image source and is set in the "
323
  "<em>Add New Post</em> screen"
324
  msgstr ""
325
 
326
+ #: admin.inc.php:347
327
  msgid ""
328
  "If the postmeta is not set, then should the plugin extract the first image "
329
  "from the post?"
330
  msgstr ""
331
 
332
+ #: admin.inc.php:348
333
  msgid ""
334
  "This can slow down the loading of your page if the first image in the "
335
  "related posts is large in file-size"
336
  msgstr ""
337
 
338
+ #: admin.inc.php:350
339
  msgid "Use default thumbnail? "
340
  msgstr ""
341
 
342
+ #: admin.inc.php:351
343
  msgid ""
344
  "If checked, when no thumbnail is found, show a default one from the URL "
345
  "below. If not checked and no thumbnail is found, no image will be shown."
346
  msgstr ""
347
 
348
+ #: admin.inc.php:353
349
  msgid "Default thumbnail: "
350
  msgstr ""
351
 
352
+ #: admin.inc.php:354
353
  #, fuzzy
354
  msgid ""
355
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
360
  "indlægget ikke gør det, tjekker pluginnet metafeltet. Hvis dette ikke "
361
  "findes, vil det vise standardbilledet specificeret nedenfor:"
362
 
363
+ #: admin.inc.php:359
364
  #, fuzzy
365
  msgid "Feed options"
366
  msgstr "Indstillinger:"
367
 
368
+ #: admin.inc.php:361
369
  msgid ""
370
  "Below options override the related posts settings for your blog feed. These "
371
  "only apply if you have selected to add related posts to Feeds in the General "
372
  "Options tab."
373
  msgstr ""
374
 
375
+ #: admin.inc.php:398
376
  msgid "Custom Styles"
377
  msgstr ""
378
 
379
+ #: admin.inc.php:400
380
  msgid "Custom CSS to add to header:"
381
  msgstr ""
382
 
383
+ #: admin.inc.php:403
384
  msgid ""
385
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
386
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
387
  "\">FAQ</a> for available CSS classes to style."
388
  msgstr ""
389
 
390
+ #: admin.inc.php:407
391
  #, fuzzy
392
  msgid "Save Options"
393
  msgstr "Indstillinger:"
394
 
395
+ #: admin.inc.php:408
396
  #, fuzzy
397
  msgid "Default Options"
398
  msgstr "Indstillinger for output:"
399
 
400
+ #: admin.inc.php:408
401
  msgid "Do you want to set options to Default?"
402
  msgstr "Ønsker du at sætte indstillingerne til standardværdierne?"
403
 
404
+ #: admin.inc.php:409
405
  msgid "Recreate Index"
406
  msgstr ""
407
 
408
+ #: admin.inc.php:409
409
  msgid "Are you sure you want to recreate the index?"
410
  msgstr "Er du sikker på, du ønsker at gendanne indekset?"
411
 
412
+ #: admin.inc.php:426
413
  #, fuzzy
414
  msgid "Contextual Related Posts"
415
  msgstr "Related Posts (Lignende indlæg)"
416
 
417
+ #: admin.inc.php:426 contextual-related-posts.php:277
418
  msgid "Related Posts"
419
  msgstr "Related Posts (Lignende indlæg)"
420
 
421
+ #: admin.inc.php:434
422
  msgid "plugin settings page"
423
  msgstr ""
424
 
425
+ #: admin.inc.php:439
426
  msgid ""
427
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
428
  "visit the "
429
  msgstr ""
430
 
431
+ #: admin.inc.php:439
432
  msgid " to configure."
433
  msgstr ""
434
 
435
+ #: contextual-related-posts.php:136
436
  msgid "Powered by"
437
  msgstr ""
438
 
439
+ #: contextual-related-posts.php:276
440
  #, fuzzy
441
  msgid "Display Related Posts"
442
  msgstr "Vis \"Ingen lignende indlæg\""
443
 
444
+ #: contextual-related-posts.php:289
445
  msgid "Title"
446
  msgstr ""
447
 
448
+ #: contextual-related-posts.php:294
449
  msgid "No. of posts"
450
  msgstr ""
451
 
452
+ #: contextual-related-posts.php:299
453
  msgid " Show excerpt?"
454
  msgstr ""
455
 
456
+ #: contextual-related-posts.php:303
457
  #, fuzzy
458
  msgid "Thumbnail options"
459
  msgstr "Indstillinger for indlægsminiaturer:"
460
 
461
+ #: contextual-related-posts.php:305
462
  #, fuzzy
463
  msgid "Thumbnails inline, before title"
464
  msgstr "Vis miniaturer inline med indlæg"
465
 
466
+ #: contextual-related-posts.php:306
467
  #, fuzzy
468
  msgid "Thumbnails inline, after title"
469
  msgstr "Vis miniaturer inline med indlæg"
470
 
471
+ #: contextual-related-posts.php:307
472
  #, fuzzy
473
  msgid "Only thumbnails, no text"
474
  msgstr "Vis kun miniaturer, ingen tekst"
475
 
476
+ #: contextual-related-posts.php:308
477
  #, fuzzy
478
  msgid "No thumbnails, only text."
479
  msgstr "Vis ikke miniaturer, kun tekst."
480
 
481
+ #: contextual-related-posts.php:313
482
  #, fuzzy
483
  msgid "Thumbnail height"
484
  msgstr "Indstillinger for indlægsminiaturer:"
485
 
486
+ #: contextual-related-posts.php:318
487
  #, fuzzy
488
  msgid "Thumbnail width"
489
  msgstr "Indstillinger for indlægsminiaturer:"
490
 
491
+ #: contextual-related-posts.php:393
492
  msgid "<h3>Related Posts:</h3>"
493
  msgstr "<h3>Lignende indlæg:</h3>"
494
 
495
+ #: contextual-related-posts.php:394
496
  #, fuzzy
497
+ msgid "No related posts found"
498
  msgstr "Ingen lignende indlæg fundet"
499
 
500
+ #: contextual-related-posts.php:648
501
  msgid "Settings"
502
  msgstr "Opsætning"
503
 
504
+ #: contextual-related-posts.php:663
505
  msgid "Donate"
506
  msgstr "Donation"
507
 
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: 2013-01-06 12:33-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,92 +12,102 @@ 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.5.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:93
19
  msgid "Options saved successfully."
20
  msgstr "Optionen gespeichert."
21
 
22
- #: admin.inc.php:109
23
  msgid "Options set to Default."
24
  msgstr "Optionen auf die Voreinstellungen zurückgesetzt."
25
 
26
- #: admin.inc.php:124
27
  msgid "Index recreated"
28
  msgstr "Index aufgefrischt"
29
 
30
- #: admin.inc.php:137
31
  msgid "Support the development"
32
  msgstr "Unterstützen Sie die Entwicklung"
33
 
34
- #: admin.inc.php:145
35
  msgid "Enter amount in USD: "
36
  msgstr "Den Betrag in USD eingeben: "
37
 
38
- #: admin.inc.php:149
39
  msgid "Send your donation to the author of"
40
  msgstr "Schicken Sie eine Spende an den Autor von"
41
 
42
- #: admin.inc.php:160
43
  #, fuzzy
44
  msgid "Quick Links"
45
  msgstr "Links"
46
 
47
- #: admin.inc.php:162
48
  #, fuzzy
49
  msgid "Contextual Related Posts plugin page"
50
  msgstr "Contextual Related Posts "
51
 
52
- #: admin.inc.php:163
53
  msgid "Other plugins"
54
  msgstr "Weitere Plugins"
55
 
56
- #: admin.inc.php:164
57
  msgid "Ajay's blog"
58
  msgstr "Ajay's Blog"
59
 
60
- #: admin.inc.php:165 contextual-related-posts.php:608
61
  msgid "Support"
62
  msgstr "Support"
63
 
64
- #: admin.inc.php:166
65
  msgid "Reviews"
66
  msgstr ""
67
 
68
- #: admin.inc.php:170
69
  msgid "Recent developments"
70
  msgstr "Neueste Entwicklungen"
71
 
72
- #: admin.inc.php:180
73
  msgid "General options"
74
  msgstr ""
75
 
76
- #: admin.inc.php:182 admin.inc.php:354
 
 
 
 
 
 
 
 
 
 
77
  msgid "Number of related posts to display: "
78
  msgstr "Maximale Anzahl der angezeigten ähnlichen Beiträge: "
79
 
80
- #: admin.inc.php:185
81
  msgid "Related posts should be newer than:"
82
  msgstr ""
83
 
84
- #: admin.inc.php:186
85
  msgid "days"
86
  msgstr ""
87
 
88
- #: admin.inc.php:188
89
  msgid "Post types to include in results (including custom post types)"
90
  msgstr ""
91
 
92
- #: admin.inc.php:199
93
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
94
  msgstr ""
95
 
96
- #: admin.inc.php:202
97
  msgid "Find related posts based on content as well as title"
98
  msgstr ""
99
 
100
- #: admin.inc.php:203
101
  #, fuzzy
102
  msgid ""
103
  "If unchecked, only posts titles are used. (I recommend using a caching "
@@ -107,48 +117,55 @@ msgstr ""
107
  "Bei Deaktivierung wird nur in den Beittragstiteln gesucht. (Im Falle der "
108
  "Aktivierung wird empfohlen, ein Cache-Plugin einzusetzen)"
109
 
110
- #: admin.inc.php:205
111
  msgid "List of post or page IDs to exclude from the results: "
112
  msgstr ""
113
 
114
- #: admin.inc.php:208
115
  msgid "Categories to exclude from the results: "
116
  msgstr ""
117
 
118
- #: admin.inc.php:226
 
 
 
 
 
 
 
119
  #, fuzzy
120
  msgid "Add related posts to:"
121
  msgstr "Ähnliche Beiträge auch in die Feeds aufnehmen"
122
 
123
- #: admin.inc.php:228
124
  msgid "Posts"
125
  msgstr ""
126
 
127
- #: admin.inc.php:229
128
  msgid "Pages"
129
  msgstr ""
130
 
131
- #: admin.inc.php:230
132
  msgid "Home page"
133
  msgstr ""
134
 
135
- #: admin.inc.php:231
136
  msgid "Feeds"
137
  msgstr ""
138
 
139
- #: admin.inc.php:232
140
  msgid "Category archives"
141
  msgstr ""
142
 
143
- #: admin.inc.php:233
144
  msgid "Tag archives"
145
  msgstr ""
146
 
147
- #: admin.inc.php:234
148
  msgid "Other archives"
149
  msgstr ""
150
 
151
- #: admin.inc.php:235
152
  #, fuzzy
153
  msgid ""
154
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
@@ -160,152 +177,152 @@ msgstr ""
160
  "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> in das Template ein, in dem "
161
  "die ähnlichen Beiträge aufgeliistet werden sollen"
162
 
163
- #: admin.inc.php:238
164
  msgid "Add a link to the plugin page as a final item in the list"
165
  msgstr ""
166
 
167
- #: admin.inc.php:239
168
  msgid " <em>Optional</em>"
169
  msgstr ""
170
 
171
- #: admin.inc.php:246
172
  #, fuzzy
173
  msgid "Output options"
174
  msgstr "Ausgabeotionen:"
175
 
176
- #: admin.inc.php:248
177
  msgid "Title of related posts: "
178
  msgstr "Überschrift über der Liste der ähnlichen Beiträge: "
179
 
180
- #: admin.inc.php:251
181
  msgid "When there are no posts, what should be shown?"
182
  msgstr ""
183
  "Wenn keine ähnlichen Beiträge gefunden werden, was soll dann angezeigt "
184
  "werden?"
185
 
186
- #: admin.inc.php:255
187
  msgid "Blank Output"
188
  msgstr "Nichts"
189
 
190
- #: admin.inc.php:259
191
  msgid "Display:"
192
  msgstr ""
193
 
194
- #: admin.inc.php:263 admin.inc.php:357
195
  msgid "Show post excerpt in list?"
196
  msgstr "Auszug des Beitrags in der Liste anzeigen?"
197
 
198
- #: admin.inc.php:266
199
  msgid "Length of excerpt (in words): "
200
  msgstr "Länge des Auszugs (in Worten): "
201
 
202
- #: admin.inc.php:269
203
  msgid "Limit post title length (in characters)"
204
  msgstr ""
205
 
206
- #: admin.inc.php:272
207
  msgid "Open links in new window"
208
  msgstr ""
209
 
210
- #: admin.inc.php:275
211
  msgid "Add nofollow attribute to links in the list"
212
  msgstr ""
213
 
214
- #: admin.inc.php:278
215
  #, fuzzy
216
  msgid "Exclude display of related posts on these posts / pages"
217
  msgstr "Ähnliche Beiträge auch in die Feeds aufnehmen"
218
 
219
- #: admin.inc.php:281
220
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
221
  msgstr ""
222
 
223
- #: admin.inc.php:284
224
  msgid "Customize the output:"
225
  msgstr "Die Ausgabe anpassen:"
226
 
227
- #: admin.inc.php:286
228
  msgid "HTML to display before the list of posts: "
229
  msgstr "HTML vor der Beitragsliste: "
230
 
231
- #: admin.inc.php:289
232
  msgid "HTML to display before each list item: "
233
  msgstr "HTML vor jedem Listenelement: "
234
 
235
- #: admin.inc.php:292
236
  msgid "HTML to display after each list item: "
237
  msgstr "HTML nach jedem Listenelement: "
238
 
239
- #: admin.inc.php:295
240
  msgid "HTML to display after the list of posts: "
241
  msgstr "HTML nach der Beitragsliste: "
242
 
243
- #: admin.inc.php:298
244
  msgid "Post thumbnail options:"
245
  msgstr "Optionen für die Beitrags-Thumbnails:"
246
 
247
- #: admin.inc.php:300 admin.inc.php:360
248
  msgid "Location of post thumbnail:"
249
  msgstr ""
250
 
251
- #: admin.inc.php:304 admin.inc.php:364
252
  #, fuzzy
253
  msgid "Display thumbnails inline with posts, before title"
254
  msgstr "Thumbnails und Beitragstitel anzeigen"
255
 
256
- #: admin.inc.php:308 admin.inc.php:368
257
  #, fuzzy
258
  msgid "Display thumbnails inline with posts, after title"
259
  msgstr "Thumbnails und Beitragstitel anzeigen"
260
 
261
- #: admin.inc.php:312 admin.inc.php:372
262
  msgid "Display only thumbnails, no text"
263
  msgstr "Nur Thumbnails, keine Beitragstitel anzeigen"
264
 
265
- #: admin.inc.php:316 admin.inc.php:376
266
  msgid "Do not display thumbnails, only text."
267
  msgstr "Keine Thumbnails, nur Beitragstitel anzeigen"
268
 
269
- #: admin.inc.php:320 admin.inc.php:380
270
  msgid "Maximum width of the thumbnail: "
271
  msgstr ""
272
 
273
- #: admin.inc.php:323 admin.inc.php:383
274
  msgid "Maximum height of the thumbnail: "
275
  msgstr ""
276
 
277
- #: admin.inc.php:326
278
  msgid "Use timthumb to generate thumbnails? "
279
  msgstr ""
280
 
281
- #: admin.inc.php:327
282
  msgid ""
283
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
284
  "\">timthumb</a> will be used to generate thumbnails"
285
  msgstr ""
286
 
287
- #: admin.inc.php:329
288
  msgid "Quality of thumbnails generated by timthumb"
289
  msgstr ""
290
 
291
- #: admin.inc.php:332
292
  msgid ""
293
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
294
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
295
  msgstr ""
296
 
297
- #: admin.inc.php:335
298
  #, fuzzy
299
  msgid "Post thumbnail meta field name: "
300
  msgstr "Optionen für die Beitrags-Thumbnails:"
301
 
302
- #: admin.inc.php:336
303
  msgid ""
304
  "The value of this field should contain the image source and is set in the "
305
  "<em>Add New Post</em> screen"
306
  msgstr ""
307
 
308
- #: admin.inc.php:338
309
  #, fuzzy
310
  msgid ""
311
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -315,7 +332,7 @@ msgstr ""
315
  "dem jeweiligen Beitrag verwenden. Das kann allerdings das Laden des Beitrags "
316
  "verlangsamen, wenn die Bilddateien der ähnlichen Beiträge groß sind!"
317
 
318
- #: admin.inc.php:339
319
  #, fuzzy
320
  msgid ""
321
  "This can slow down the loading of your page if the first image in the "
@@ -325,21 +342,21 @@ msgstr ""
325
  "dem jeweiligen Beitrag verwenden. Das kann allerdings das Laden des Beitrags "
326
  "verlangsamen, wenn die Bilddateien der ähnlichen Beiträge groß sind!"
327
 
328
- #: admin.inc.php:341
329
  msgid "Use default thumbnail? "
330
  msgstr ""
331
 
332
- #: admin.inc.php:342
333
  msgid ""
334
  "If checked, when no thumbnail is found, show a default one from the URL "
335
  "below. If not checked and no thumbnail is found, no image will be shown."
336
  msgstr ""
337
 
338
- #: admin.inc.php:344
339
  msgid "Default thumbnail: "
340
  msgstr ""
341
 
342
- #: admin.inc.php:345
343
  #, fuzzy
344
  msgid ""
345
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -350,149 +367,149 @@ msgstr ""
350
  "nicht, wird das Meta-Feld überprüft. Wenn auch dieses nicht vorhanden ist, "
351
  "wird das unten spezifizierte Default-Thumbnail angezeigt:"
352
 
353
- #: admin.inc.php:350
354
  #, fuzzy
355
  msgid "Feed options"
356
  msgstr "Optionen:"
357
 
358
- #: admin.inc.php:352
359
  msgid ""
360
  "Below options override the related posts settings for your blog feed. These "
361
  "only apply if you have selected to add related posts to Feeds in the General "
362
  "Options tab."
363
  msgstr ""
364
 
365
- #: admin.inc.php:389
366
  msgid "Custom Styles"
367
  msgstr ""
368
 
369
- #: admin.inc.php:391
370
  msgid "Custom CSS to add to header:"
371
  msgstr ""
372
 
373
- #: admin.inc.php:394
374
  msgid ""
375
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
376
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
377
  "\">FAQ</a> for available CSS classes to style."
378
  msgstr ""
379
 
380
- #: admin.inc.php:398
381
  #, fuzzy
382
  msgid "Save Options"
383
  msgstr "Optionen:"
384
 
385
- #: admin.inc.php:399
386
  #, fuzzy
387
  msgid "Default Options"
388
  msgstr "Ausgabeotionen:"
389
 
390
- #: admin.inc.php:399
391
  msgid "Do you want to set options to Default?"
392
  msgstr "Wollen Sie die Optionen auf die Voreinstellungen zurücksetzen?"
393
 
394
- #: admin.inc.php:400
395
  msgid "Recreate Index"
396
  msgstr ""
397
 
398
- #: admin.inc.php:400
399
  msgid "Are you sure you want to recreate the index?"
400
  msgstr "Sind Sie sicher, einen neuen Index zu erzeugen?"
401
 
402
- #: admin.inc.php:417
403
  msgid "Contextual Related Posts"
404
  msgstr "Contextual Related Posts"
405
 
406
- #: admin.inc.php:417 contextual-related-posts.php:240
407
  msgid "Related Posts"
408
  msgstr "Related Posts"
409
 
410
- #: admin.inc.php:425
411
  #, fuzzy
412
  msgid "plugin settings page"
413
  msgstr "Plugin-Seite"
414
 
415
- #: admin.inc.php:430
416
  msgid ""
417
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
418
  "visit the "
419
  msgstr ""
420
 
421
- #: admin.inc.php:430
422
  msgid " to configure."
423
  msgstr ""
424
 
425
- #: contextual-related-posts.php:162
426
  msgid "Powered by"
427
  msgstr "Powered by"
428
 
429
- #: contextual-related-posts.php:239
430
  #, fuzzy
431
  msgid "Display Related Posts"
432
  msgstr "\"Keine ähnlichen Beiträge\" anzeigen"
433
 
434
- #: contextual-related-posts.php:252
435
  msgid "Title"
436
  msgstr ""
437
 
438
- #: contextual-related-posts.php:257
439
  msgid "No. of posts"
440
  msgstr ""
441
 
442
- #: contextual-related-posts.php:262
443
  #, fuzzy
444
  msgid " Show excerpt?"
445
  msgstr "Auszug des Beitrags in der Liste anzeigen?"
446
 
447
- #: contextual-related-posts.php:266
448
  #, fuzzy
449
  msgid "Thumbnail options"
450
  msgstr "Optionen für die Beitrags-Thumbnails:"
451
 
452
- #: contextual-related-posts.php:268
453
  #, fuzzy
454
  msgid "Thumbnails inline, before title"
455
  msgstr "Thumbnails und Beitragstitel anzeigen"
456
 
457
- #: contextual-related-posts.php:269
458
  #, fuzzy
459
  msgid "Thumbnails inline, after title"
460
  msgstr "Thumbnails und Beitragstitel anzeigen"
461
 
462
- #: contextual-related-posts.php:270
463
  #, fuzzy
464
  msgid "Only thumbnails, no text"
465
  msgstr "Nur Thumbnails, keine Beitragstitel anzeigen"
466
 
467
- #: contextual-related-posts.php:271
468
  #, fuzzy
469
  msgid "No thumbnails, only text."
470
  msgstr "Keine Thumbnails, nur Beitragstitel anzeigen"
471
 
472
- #: contextual-related-posts.php:276
473
  #, fuzzy
474
  msgid "Thumbnail height"
475
  msgstr "Optionen für die Beitrags-Thumbnails:"
476
 
477
- #: contextual-related-posts.php:281
478
  #, fuzzy
479
  msgid "Thumbnail width"
480
  msgstr "Optionen für die Beitrags-Thumbnails:"
481
 
482
- #: contextual-related-posts.php:340
483
  msgid "<h3>Related Posts:</h3>"
484
  msgstr "<h3>Ähnliche Beiträge:</h3>"
485
 
486
- #: contextual-related-posts.php:341
487
  #, fuzzy
488
- msgid "No related posts founds"
489
  msgstr "Keine ähnlichen Beiträge gefunden"
490
 
491
- #: contextual-related-posts.php:594
492
  msgid "Settings"
493
  msgstr "Einstellungen"
494
 
495
- #: contextual-related-posts.php:609
496
  msgid "Donate"
497
  msgstr "Spenden"
498
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-04-07 23:41-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.5.5\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:96
19
  msgid "Options saved successfully."
20
  msgstr "Optionen gespeichert."
21
 
22
+ #: admin.inc.php:112
23
  msgid "Options set to Default."
24
  msgstr "Optionen auf die Voreinstellungen zurückgesetzt."
25
 
26
+ #: admin.inc.php:127
27
  msgid "Index recreated"
28
  msgstr "Index aufgefrischt"
29
 
30
+ #: admin.inc.php:140
31
  msgid "Support the development"
32
  msgstr "Unterstützen Sie die Entwicklung"
33
 
34
+ #: admin.inc.php:148
35
  msgid "Enter amount in USD: "
36
  msgstr "Den Betrag in USD eingeben: "
37
 
38
+ #: admin.inc.php:152
39
  msgid "Send your donation to the author of"
40
  msgstr "Schicken Sie eine Spende an den Autor von"
41
 
42
+ #: admin.inc.php:163
43
  #, fuzzy
44
  msgid "Quick Links"
45
  msgstr "Links"
46
 
47
+ #: admin.inc.php:165
48
  #, fuzzy
49
  msgid "Contextual Related Posts plugin page"
50
  msgstr "Contextual Related Posts "
51
 
52
+ #: admin.inc.php:166
53
  msgid "Other plugins"
54
  msgstr "Weitere Plugins"
55
 
56
+ #: admin.inc.php:167
57
  msgid "Ajay's blog"
58
  msgstr "Ajay's Blog"
59
 
60
+ #: admin.inc.php:168 contextual-related-posts.php:662
61
  msgid "Support"
62
  msgstr "Support"
63
 
64
+ #: admin.inc.php:169
65
  msgid "Reviews"
66
  msgstr ""
67
 
68
+ #: admin.inc.php:173
69
  msgid "Recent developments"
70
  msgstr "Neueste Entwicklungen"
71
 
72
+ #: admin.inc.php:183
73
  msgid "General options"
74
  msgstr ""
75
 
76
+ #: admin.inc.php:185
77
+ msgid "Cache output?"
78
+ msgstr ""
79
+
80
+ #: admin.inc.php:187
81
+ msgid ""
82
+ "Enabling this option will cache the related posts output when the post is "
83
+ "visited the first time. The cache is cleaned when you save this page."
84
+ msgstr ""
85
+
86
+ #: admin.inc.php:190 admin.inc.php:363
87
  msgid "Number of related posts to display: "
88
  msgstr "Maximale Anzahl der angezeigten ähnlichen Beiträge: "
89
 
90
+ #: admin.inc.php:193
91
  msgid "Related posts should be newer than:"
92
  msgstr ""
93
 
94
+ #: admin.inc.php:194
95
  msgid "days"
96
  msgstr ""
97
 
98
+ #: admin.inc.php:196
99
  msgid "Post types to include in results (including custom post types)"
100
  msgstr ""
101
 
102
+ #: admin.inc.php:207
103
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
104
  msgstr ""
105
 
106
+ #: admin.inc.php:210
107
  msgid "Find related posts based on content as well as title"
108
  msgstr ""
109
 
110
+ #: admin.inc.php:211
111
  #, fuzzy
112
  msgid ""
113
  "If unchecked, only posts titles are used. (I recommend using a caching "
117
  "Bei Deaktivierung wird nur in den Beittragstiteln gesucht. (Im Falle der "
118
  "Aktivierung wird empfohlen, ein Cache-Plugin einzusetzen)"
119
 
120
+ #: admin.inc.php:213
121
  msgid "List of post or page IDs to exclude from the results: "
122
  msgstr ""
123
 
124
+ #: admin.inc.php:216
125
  msgid "Categories to exclude from the results: "
126
  msgstr ""
127
 
128
+ #: admin.inc.php:232
129
+ msgid ""
130
+ "Comma separated list of category slugs. The field above has an autocomplete "
131
+ "so simply start typing in the starting letters and it will prompt you with "
132
+ "options"
133
+ msgstr ""
134
+
135
+ #: admin.inc.php:235
136
  #, fuzzy
137
  msgid "Add related posts to:"
138
  msgstr "Ähnliche Beiträge auch in die Feeds aufnehmen"
139
 
140
+ #: admin.inc.php:237
141
  msgid "Posts"
142
  msgstr ""
143
 
144
+ #: admin.inc.php:238
145
  msgid "Pages"
146
  msgstr ""
147
 
148
+ #: admin.inc.php:239
149
  msgid "Home page"
150
  msgstr ""
151
 
152
+ #: admin.inc.php:240
153
  msgid "Feeds"
154
  msgstr ""
155
 
156
+ #: admin.inc.php:241
157
  msgid "Category archives"
158
  msgstr ""
159
 
160
+ #: admin.inc.php:242
161
  msgid "Tag archives"
162
  msgstr ""
163
 
164
+ #: admin.inc.php:243
165
  msgid "Other archives"
166
  msgstr ""
167
 
168
+ #: admin.inc.php:244
169
  #, fuzzy
170
  msgid ""
171
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
177
  "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> in das Template ein, in dem "
178
  "die ähnlichen Beiträge aufgeliistet werden sollen"
179
 
180
+ #: admin.inc.php:247
181
  msgid "Add a link to the plugin page as a final item in the list"
182
  msgstr ""
183
 
184
+ #: admin.inc.php:248
185
  msgid " <em>Optional</em>"
186
  msgstr ""
187
 
188
+ #: admin.inc.php:255
189
  #, fuzzy
190
  msgid "Output options"
191
  msgstr "Ausgabeotionen:"
192
 
193
+ #: admin.inc.php:257
194
  msgid "Title of related posts: "
195
  msgstr "Überschrift über der Liste der ähnlichen Beiträge: "
196
 
197
+ #: admin.inc.php:260
198
  msgid "When there are no posts, what should be shown?"
199
  msgstr ""
200
  "Wenn keine ähnlichen Beiträge gefunden werden, was soll dann angezeigt "
201
  "werden?"
202
 
203
+ #: admin.inc.php:264
204
  msgid "Blank Output"
205
  msgstr "Nichts"
206
 
207
+ #: admin.inc.php:268
208
  msgid "Display:"
209
  msgstr ""
210
 
211
+ #: admin.inc.php:272 admin.inc.php:366
212
  msgid "Show post excerpt in list?"
213
  msgstr "Auszug des Beitrags in der Liste anzeigen?"
214
 
215
+ #: admin.inc.php:275
216
  msgid "Length of excerpt (in words): "
217
  msgstr "Länge des Auszugs (in Worten): "
218
 
219
+ #: admin.inc.php:278
220
  msgid "Limit post title length (in characters)"
221
  msgstr ""
222
 
223
+ #: admin.inc.php:281
224
  msgid "Open links in new window"
225
  msgstr ""
226
 
227
+ #: admin.inc.php:284
228
  msgid "Add nofollow attribute to links in the list"
229
  msgstr ""
230
 
231
+ #: admin.inc.php:287
232
  #, fuzzy
233
  msgid "Exclude display of related posts on these posts / pages"
234
  msgstr "Ähnliche Beiträge auch in die Feeds aufnehmen"
235
 
236
+ #: admin.inc.php:290
237
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
238
  msgstr ""
239
 
240
+ #: admin.inc.php:293
241
  msgid "Customize the output:"
242
  msgstr "Die Ausgabe anpassen:"
243
 
244
+ #: admin.inc.php:295
245
  msgid "HTML to display before the list of posts: "
246
  msgstr "HTML vor der Beitragsliste: "
247
 
248
+ #: admin.inc.php:298
249
  msgid "HTML to display before each list item: "
250
  msgstr "HTML vor jedem Listenelement: "
251
 
252
+ #: admin.inc.php:301
253
  msgid "HTML to display after each list item: "
254
  msgstr "HTML nach jedem Listenelement: "
255
 
256
+ #: admin.inc.php:304
257
  msgid "HTML to display after the list of posts: "
258
  msgstr "HTML nach der Beitragsliste: "
259
 
260
+ #: admin.inc.php:307
261
  msgid "Post thumbnail options:"
262
  msgstr "Optionen für die Beitrags-Thumbnails:"
263
 
264
+ #: admin.inc.php:309 admin.inc.php:369
265
  msgid "Location of post thumbnail:"
266
  msgstr ""
267
 
268
+ #: admin.inc.php:313 admin.inc.php:373
269
  #, fuzzy
270
  msgid "Display thumbnails inline with posts, before title"
271
  msgstr "Thumbnails und Beitragstitel anzeigen"
272
 
273
+ #: admin.inc.php:317 admin.inc.php:377
274
  #, fuzzy
275
  msgid "Display thumbnails inline with posts, after title"
276
  msgstr "Thumbnails und Beitragstitel anzeigen"
277
 
278
+ #: admin.inc.php:321 admin.inc.php:381
279
  msgid "Display only thumbnails, no text"
280
  msgstr "Nur Thumbnails, keine Beitragstitel anzeigen"
281
 
282
+ #: admin.inc.php:325 admin.inc.php:385
283
  msgid "Do not display thumbnails, only text."
284
  msgstr "Keine Thumbnails, nur Beitragstitel anzeigen"
285
 
286
+ #: admin.inc.php:329 admin.inc.php:389
287
  msgid "Maximum width of the thumbnail: "
288
  msgstr ""
289
 
290
+ #: admin.inc.php:332 admin.inc.php:392
291
  msgid "Maximum height of the thumbnail: "
292
  msgstr ""
293
 
294
+ #: admin.inc.php:335
295
  msgid "Use timthumb to generate thumbnails? "
296
  msgstr ""
297
 
298
+ #: admin.inc.php:336
299
  msgid ""
300
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
301
  "\">timthumb</a> will be used to generate thumbnails"
302
  msgstr ""
303
 
304
+ #: admin.inc.php:338
305
  msgid "Quality of thumbnails generated by timthumb"
306
  msgstr ""
307
 
308
+ #: admin.inc.php:341
309
  msgid ""
310
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
311
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
312
  msgstr ""
313
 
314
+ #: admin.inc.php:344
315
  #, fuzzy
316
  msgid "Post thumbnail meta field name: "
317
  msgstr "Optionen für die Beitrags-Thumbnails:"
318
 
319
+ #: admin.inc.php:345
320
  msgid ""
321
  "The value of this field should contain the image source and is set in the "
322
  "<em>Add New Post</em> screen"
323
  msgstr ""
324
 
325
+ #: admin.inc.php:347
326
  #, fuzzy
327
  msgid ""
328
  "If the postmeta is not set, then should the plugin extract the first image "
332
  "dem jeweiligen Beitrag verwenden. Das kann allerdings das Laden des Beitrags "
333
  "verlangsamen, wenn die Bilddateien der ähnlichen Beiträge groß sind!"
334
 
335
+ #: admin.inc.php:348
336
  #, fuzzy
337
  msgid ""
338
  "This can slow down the loading of your page if the first image in the "
342
  "dem jeweiligen Beitrag verwenden. Das kann allerdings das Laden des Beitrags "
343
  "verlangsamen, wenn die Bilddateien der ähnlichen Beiträge groß sind!"
344
 
345
+ #: admin.inc.php:350
346
  msgid "Use default thumbnail? "
347
  msgstr ""
348
 
349
+ #: admin.inc.php:351
350
  msgid ""
351
  "If checked, when no thumbnail is found, show a default one from the URL "
352
  "below. If not checked and no thumbnail is found, no image will be shown."
353
  msgstr ""
354
 
355
+ #: admin.inc.php:353
356
  msgid "Default thumbnail: "
357
  msgstr ""
358
 
359
+ #: admin.inc.php:354
360
  #, fuzzy
361
  msgid ""
362
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
367
  "nicht, wird das Meta-Feld überprüft. Wenn auch dieses nicht vorhanden ist, "
368
  "wird das unten spezifizierte Default-Thumbnail angezeigt:"
369
 
370
+ #: admin.inc.php:359
371
  #, fuzzy
372
  msgid "Feed options"
373
  msgstr "Optionen:"
374
 
375
+ #: admin.inc.php:361
376
  msgid ""
377
  "Below options override the related posts settings for your blog feed. These "
378
  "only apply if you have selected to add related posts to Feeds in the General "
379
  "Options tab."
380
  msgstr ""
381
 
382
+ #: admin.inc.php:398
383
  msgid "Custom Styles"
384
  msgstr ""
385
 
386
+ #: admin.inc.php:400
387
  msgid "Custom CSS to add to header:"
388
  msgstr ""
389
 
390
+ #: admin.inc.php:403
391
  msgid ""
392
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
393
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
394
  "\">FAQ</a> for available CSS classes to style."
395
  msgstr ""
396
 
397
+ #: admin.inc.php:407
398
  #, fuzzy
399
  msgid "Save Options"
400
  msgstr "Optionen:"
401
 
402
+ #: admin.inc.php:408
403
  #, fuzzy
404
  msgid "Default Options"
405
  msgstr "Ausgabeotionen:"
406
 
407
+ #: admin.inc.php:408
408
  msgid "Do you want to set options to Default?"
409
  msgstr "Wollen Sie die Optionen auf die Voreinstellungen zurücksetzen?"
410
 
411
+ #: admin.inc.php:409
412
  msgid "Recreate Index"
413
  msgstr ""
414
 
415
+ #: admin.inc.php:409
416
  msgid "Are you sure you want to recreate the index?"
417
  msgstr "Sind Sie sicher, einen neuen Index zu erzeugen?"
418
 
419
+ #: admin.inc.php:426
420
  msgid "Contextual Related Posts"
421
  msgstr "Contextual Related Posts"
422
 
423
+ #: admin.inc.php:426 contextual-related-posts.php:277
424
  msgid "Related Posts"
425
  msgstr "Related Posts"
426
 
427
+ #: admin.inc.php:434
428
  #, fuzzy
429
  msgid "plugin settings page"
430
  msgstr "Plugin-Seite"
431
 
432
+ #: admin.inc.php:439
433
  msgid ""
434
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
435
  "visit the "
436
  msgstr ""
437
 
438
+ #: admin.inc.php:439
439
  msgid " to configure."
440
  msgstr ""
441
 
442
+ #: contextual-related-posts.php:136
443
  msgid "Powered by"
444
  msgstr "Powered by"
445
 
446
+ #: contextual-related-posts.php:276
447
  #, fuzzy
448
  msgid "Display Related Posts"
449
  msgstr "\"Keine ähnlichen Beiträge\" anzeigen"
450
 
451
+ #: contextual-related-posts.php:289
452
  msgid "Title"
453
  msgstr ""
454
 
455
+ #: contextual-related-posts.php:294
456
  msgid "No. of posts"
457
  msgstr ""
458
 
459
+ #: contextual-related-posts.php:299
460
  #, fuzzy
461
  msgid " Show excerpt?"
462
  msgstr "Auszug des Beitrags in der Liste anzeigen?"
463
 
464
+ #: contextual-related-posts.php:303
465
  #, fuzzy
466
  msgid "Thumbnail options"
467
  msgstr "Optionen für die Beitrags-Thumbnails:"
468
 
469
+ #: contextual-related-posts.php:305
470
  #, fuzzy
471
  msgid "Thumbnails inline, before title"
472
  msgstr "Thumbnails und Beitragstitel anzeigen"
473
 
474
+ #: contextual-related-posts.php:306
475
  #, fuzzy
476
  msgid "Thumbnails inline, after title"
477
  msgstr "Thumbnails und Beitragstitel anzeigen"
478
 
479
+ #: contextual-related-posts.php:307
480
  #, fuzzy
481
  msgid "Only thumbnails, no text"
482
  msgstr "Nur Thumbnails, keine Beitragstitel anzeigen"
483
 
484
+ #: contextual-related-posts.php:308
485
  #, fuzzy
486
  msgid "No thumbnails, only text."
487
  msgstr "Keine Thumbnails, nur Beitragstitel anzeigen"
488
 
489
+ #: contextual-related-posts.php:313
490
  #, fuzzy
491
  msgid "Thumbnail height"
492
  msgstr "Optionen für die Beitrags-Thumbnails:"
493
 
494
+ #: contextual-related-posts.php:318
495
  #, fuzzy
496
  msgid "Thumbnail width"
497
  msgstr "Optionen für die Beitrags-Thumbnails:"
498
 
499
+ #: contextual-related-posts.php:393
500
  msgid "<h3>Related Posts:</h3>"
501
  msgstr "<h3>Ähnliche Beiträge:</h3>"
502
 
503
+ #: contextual-related-posts.php:394
504
  #, fuzzy
505
+ msgid "No related posts found"
506
  msgstr "Keine ähnlichen Beiträge gefunden"
507
 
508
+ #: contextual-related-posts.php:648
509
  msgid "Settings"
510
  msgstr "Einstellungen"
511
 
512
+ #: contextual-related-posts.php:663
513
  msgid "Donate"
514
  msgstr "Spenden"
515
 
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: 2013-01-06 12:33-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,441 +12,458 @@ 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.5.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:93
19
  msgid "Options saved successfully."
20
  msgstr ""
21
 
22
- #: admin.inc.php:109
23
  msgid "Options set to Default."
24
  msgstr ""
25
 
26
- #: admin.inc.php:124
27
  msgid "Index recreated"
28
  msgstr ""
29
 
30
- #: admin.inc.php:137
31
  msgid "Support the development"
32
  msgstr ""
33
 
34
- #: admin.inc.php:145
35
  msgid "Enter amount in USD: "
36
  msgstr ""
37
 
38
- #: admin.inc.php:149
39
  msgid "Send your donation to the author of"
40
  msgstr ""
41
 
42
- #: admin.inc.php:160
43
  msgid "Quick Links"
44
  msgstr ""
45
 
46
- #: admin.inc.php:162
47
  msgid "Contextual Related Posts plugin page"
48
  msgstr ""
49
 
50
- #: admin.inc.php:163
51
  msgid "Other plugins"
52
  msgstr ""
53
 
54
- #: admin.inc.php:164
55
  msgid "Ajay's blog"
56
  msgstr ""
57
 
58
- #: admin.inc.php:165 contextual-related-posts.php:608
59
  msgid "Support"
60
  msgstr ""
61
 
62
- #: admin.inc.php:166
63
  msgid "Reviews"
64
  msgstr ""
65
 
66
- #: admin.inc.php:170
67
  msgid "Recent developments"
68
  msgstr ""
69
 
70
- #: admin.inc.php:180
71
  msgid "General options"
72
  msgstr ""
73
 
74
- #: admin.inc.php:182 admin.inc.php:354
 
 
 
 
 
 
 
 
 
 
75
  msgid "Number of related posts to display: "
76
  msgstr ""
77
 
78
- #: admin.inc.php:185
79
  msgid "Related posts should be newer than:"
80
  msgstr ""
81
 
82
- #: admin.inc.php:186
83
  msgid "days"
84
  msgstr ""
85
 
86
- #: admin.inc.php:188
87
  msgid "Post types to include in results (including custom post types)"
88
  msgstr ""
89
 
90
- #: admin.inc.php:199
91
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
92
  msgstr ""
93
 
94
- #: admin.inc.php:202
95
  msgid "Find related posts based on content as well as title"
96
  msgstr ""
97
 
98
- #: admin.inc.php:203
99
  msgid ""
100
  "If unchecked, only posts titles are used. (I recommend using a caching "
101
  "plugin if you enable this)"
102
  msgstr ""
103
 
104
- #: admin.inc.php:205
105
  msgid "List of post or page IDs to exclude from the results: "
106
  msgstr ""
107
 
108
- #: admin.inc.php:208
109
  msgid "Categories to exclude from the results: "
110
  msgstr ""
111
 
112
- #: admin.inc.php:226
 
 
 
 
 
 
 
113
  msgid "Add related posts to:"
114
  msgstr ""
115
 
116
- #: admin.inc.php:228
117
  msgid "Posts"
118
  msgstr ""
119
 
120
- #: admin.inc.php:229
121
  msgid "Pages"
122
  msgstr ""
123
 
124
- #: admin.inc.php:230
125
  msgid "Home page"
126
  msgstr ""
127
 
128
- #: admin.inc.php:231
129
  msgid "Feeds"
130
  msgstr ""
131
 
132
- #: admin.inc.php:232
133
  msgid "Category archives"
134
  msgstr ""
135
 
136
- #: admin.inc.php:233
137
  msgid "Tag archives"
138
  msgstr ""
139
 
140
- #: admin.inc.php:234
141
  msgid "Other archives"
142
  msgstr ""
143
 
144
- #: admin.inc.php:235
145
  msgid ""
146
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
147
  "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where "
148
  "you want it displayed"
149
  msgstr ""
150
 
151
- #: admin.inc.php:238
152
  msgid "Add a link to the plugin page as a final item in the list"
153
  msgstr ""
154
 
155
- #: admin.inc.php:239
156
  msgid " <em>Optional</em>"
157
  msgstr ""
158
 
159
- #: admin.inc.php:246
160
  msgid "Output options"
161
  msgstr ""
162
 
163
- #: admin.inc.php:248
164
  msgid "Title of related posts: "
165
  msgstr ""
166
 
167
- #: admin.inc.php:251
168
  msgid "When there are no posts, what should be shown?"
169
  msgstr ""
170
 
171
- #: admin.inc.php:255
172
  msgid "Blank Output"
173
  msgstr ""
174
 
175
- #: admin.inc.php:259
176
  msgid "Display:"
177
  msgstr ""
178
 
179
- #: admin.inc.php:263 admin.inc.php:357
180
  msgid "Show post excerpt in list?"
181
  msgstr ""
182
 
183
- #: admin.inc.php:266
184
  msgid "Length of excerpt (in words): "
185
  msgstr ""
186
 
187
- #: admin.inc.php:269
188
  msgid "Limit post title length (in characters)"
189
  msgstr ""
190
 
191
- #: admin.inc.php:272
192
  msgid "Open links in new window"
193
  msgstr ""
194
 
195
- #: admin.inc.php:275
196
  msgid "Add nofollow attribute to links in the list"
197
  msgstr ""
198
 
199
- #: admin.inc.php:278
200
  msgid "Exclude display of related posts on these posts / pages"
201
  msgstr ""
202
 
203
- #: admin.inc.php:281
204
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
205
  msgstr ""
206
 
207
- #: admin.inc.php:284
208
  msgid "Customize the output:"
209
  msgstr ""
210
 
211
- #: admin.inc.php:286
212
  msgid "HTML to display before the list of posts: "
213
  msgstr ""
214
 
215
- #: admin.inc.php:289
216
  msgid "HTML to display before each list item: "
217
  msgstr ""
218
 
219
- #: admin.inc.php:292
220
  msgid "HTML to display after each list item: "
221
  msgstr ""
222
 
223
- #: admin.inc.php:295
224
  msgid "HTML to display after the list of posts: "
225
  msgstr ""
226
 
227
- #: admin.inc.php:298
228
  msgid "Post thumbnail options:"
229
  msgstr ""
230
 
231
- #: admin.inc.php:300 admin.inc.php:360
232
  msgid "Location of post thumbnail:"
233
  msgstr ""
234
 
235
- #: admin.inc.php:304 admin.inc.php:364
236
  msgid "Display thumbnails inline with posts, before title"
237
  msgstr ""
238
 
239
- #: admin.inc.php:308 admin.inc.php:368
240
  msgid "Display thumbnails inline with posts, after title"
241
  msgstr ""
242
 
243
- #: admin.inc.php:312 admin.inc.php:372
244
  msgid "Display only thumbnails, no text"
245
  msgstr ""
246
 
247
- #: admin.inc.php:316 admin.inc.php:376
248
  msgid "Do not display thumbnails, only text."
249
  msgstr ""
250
 
251
- #: admin.inc.php:320 admin.inc.php:380
252
  msgid "Maximum width of the thumbnail: "
253
  msgstr ""
254
 
255
- #: admin.inc.php:323 admin.inc.php:383
256
  msgid "Maximum height of the thumbnail: "
257
  msgstr ""
258
 
259
- #: admin.inc.php:326
260
  msgid "Use timthumb to generate thumbnails? "
261
  msgstr ""
262
 
263
- #: admin.inc.php:327
264
  msgid ""
265
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
266
  "\">timthumb</a> will be used to generate thumbnails"
267
  msgstr ""
268
 
269
- #: admin.inc.php:329
270
  msgid "Quality of thumbnails generated by timthumb"
271
  msgstr ""
272
 
273
- #: admin.inc.php:332
274
  msgid ""
275
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
276
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
277
  msgstr ""
278
 
279
- #: admin.inc.php:335
280
  msgid "Post thumbnail meta field name: "
281
  msgstr ""
282
 
283
- #: admin.inc.php:336
284
  msgid ""
285
  "The value of this field should contain the image source and is set in the "
286
  "<em>Add New Post</em> screen"
287
  msgstr ""
288
 
289
- #: admin.inc.php:338
290
  msgid ""
291
  "If the postmeta is not set, then should the plugin extract the first image "
292
  "from the post?"
293
  msgstr ""
294
 
295
- #: admin.inc.php:339
296
  msgid ""
297
  "This can slow down the loading of your page if the first image in the "
298
  "related posts is large in file-size"
299
  msgstr ""
300
 
301
- #: admin.inc.php:341
302
  msgid "Use default thumbnail? "
303
  msgstr ""
304
 
305
- #: admin.inc.php:342
306
  msgid ""
307
  "If checked, when no thumbnail is found, show a default one from the URL "
308
  "below. If not checked and no thumbnail is found, no image will be shown."
309
  msgstr ""
310
 
311
- #: admin.inc.php:344
312
  msgid "Default thumbnail: "
313
  msgstr ""
314
 
315
- #: admin.inc.php:345
316
  msgid ""
317
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
318
  "then it will check the meta field. If this is not available, then it will "
319
  "show the default image as specified above"
320
  msgstr ""
321
 
322
- #: admin.inc.php:350
323
  msgid "Feed options"
324
  msgstr ""
325
 
326
- #: admin.inc.php:352
327
  msgid ""
328
  "Below options override the related posts settings for your blog feed. These "
329
  "only apply if you have selected to add related posts to Feeds in the General "
330
  "Options tab."
331
  msgstr ""
332
 
333
- #: admin.inc.php:389
334
  msgid "Custom Styles"
335
  msgstr ""
336
 
337
- #: admin.inc.php:391
338
  msgid "Custom CSS to add to header:"
339
  msgstr ""
340
 
341
- #: admin.inc.php:394
342
  msgid ""
343
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
344
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
345
  "\">FAQ</a> for available CSS classes to style."
346
  msgstr ""
347
 
348
- #: admin.inc.php:398
349
  msgid "Save Options"
350
  msgstr ""
351
 
352
- #: admin.inc.php:399
353
  msgid "Default Options"
354
  msgstr ""
355
 
356
- #: admin.inc.php:399
357
  msgid "Do you want to set options to Default?"
358
  msgstr ""
359
 
360
- #: admin.inc.php:400
361
  msgid "Recreate Index"
362
  msgstr ""
363
 
364
- #: admin.inc.php:400
365
  msgid "Are you sure you want to recreate the index?"
366
  msgstr ""
367
 
368
- #: admin.inc.php:417
369
  msgid "Contextual Related Posts"
370
  msgstr ""
371
 
372
- #: admin.inc.php:417 contextual-related-posts.php:240
373
  msgid "Related Posts"
374
  msgstr ""
375
 
376
- #: admin.inc.php:425
377
  msgid "plugin settings page"
378
  msgstr ""
379
 
380
- #: admin.inc.php:430
381
  msgid ""
382
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
383
  "visit the "
384
  msgstr ""
385
 
386
- #: admin.inc.php:430
387
  msgid " to configure."
388
  msgstr ""
389
 
390
- #: contextual-related-posts.php:162
391
  msgid "Powered by"
392
  msgstr ""
393
 
394
- #: contextual-related-posts.php:239
395
  msgid "Display Related Posts"
396
  msgstr ""
397
 
398
- #: contextual-related-posts.php:252
399
  msgid "Title"
400
  msgstr ""
401
 
402
- #: contextual-related-posts.php:257
403
  msgid "No. of posts"
404
  msgstr ""
405
 
406
- #: contextual-related-posts.php:262
407
  msgid " Show excerpt?"
408
  msgstr ""
409
 
410
- #: contextual-related-posts.php:266
411
  msgid "Thumbnail options"
412
  msgstr ""
413
 
414
- #: contextual-related-posts.php:268
415
  msgid "Thumbnails inline, before title"
416
  msgstr ""
417
 
418
- #: contextual-related-posts.php:269
419
  msgid "Thumbnails inline, after title"
420
  msgstr ""
421
 
422
- #: contextual-related-posts.php:270
423
  msgid "Only thumbnails, no text"
424
  msgstr ""
425
 
426
- #: contextual-related-posts.php:271
427
  msgid "No thumbnails, only text."
428
  msgstr ""
429
 
430
- #: contextual-related-posts.php:276
431
  msgid "Thumbnail height"
432
  msgstr ""
433
 
434
- #: contextual-related-posts.php:281
435
  msgid "Thumbnail width"
436
  msgstr ""
437
 
438
- #: contextual-related-posts.php:340
439
  msgid "<h3>Related Posts:</h3>"
440
  msgstr ""
441
 
442
- #: contextual-related-posts.php:341
443
- msgid "No related posts founds"
444
  msgstr ""
445
 
446
- #: contextual-related-posts.php:594
447
  msgid "Settings"
448
  msgstr ""
449
 
450
- #: contextual-related-posts.php:609
451
  msgid "Donate"
452
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-04-07 23:39-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.5.5\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:96
19
  msgid "Options saved successfully."
20
  msgstr ""
21
 
22
+ #: admin.inc.php:112
23
  msgid "Options set to Default."
24
  msgstr ""
25
 
26
+ #: admin.inc.php:127
27
  msgid "Index recreated"
28
  msgstr ""
29
 
30
+ #: admin.inc.php:140
31
  msgid "Support the development"
32
  msgstr ""
33
 
34
+ #: admin.inc.php:148
35
  msgid "Enter amount in USD: "
36
  msgstr ""
37
 
38
+ #: admin.inc.php:152
39
  msgid "Send your donation to the author of"
40
  msgstr ""
41
 
42
+ #: admin.inc.php:163
43
  msgid "Quick Links"
44
  msgstr ""
45
 
46
+ #: admin.inc.php:165
47
  msgid "Contextual Related Posts plugin page"
48
  msgstr ""
49
 
50
+ #: admin.inc.php:166
51
  msgid "Other plugins"
52
  msgstr ""
53
 
54
+ #: admin.inc.php:167
55
  msgid "Ajay's blog"
56
  msgstr ""
57
 
58
+ #: admin.inc.php:168 contextual-related-posts.php:662
59
  msgid "Support"
60
  msgstr ""
61
 
62
+ #: admin.inc.php:169
63
  msgid "Reviews"
64
  msgstr ""
65
 
66
+ #: admin.inc.php:173
67
  msgid "Recent developments"
68
  msgstr ""
69
 
70
+ #: admin.inc.php:183
71
  msgid "General options"
72
  msgstr ""
73
 
74
+ #: admin.inc.php:185
75
+ msgid "Cache output?"
76
+ msgstr ""
77
+
78
+ #: admin.inc.php:187
79
+ msgid ""
80
+ "Enabling this option will cache the related posts output when the post is "
81
+ "visited the first time. The cache is cleaned when you save this page."
82
+ msgstr ""
83
+
84
+ #: admin.inc.php:190 admin.inc.php:363
85
  msgid "Number of related posts to display: "
86
  msgstr ""
87
 
88
+ #: admin.inc.php:193
89
  msgid "Related posts should be newer than:"
90
  msgstr ""
91
 
92
+ #: admin.inc.php:194
93
  msgid "days"
94
  msgstr ""
95
 
96
+ #: admin.inc.php:196
97
  msgid "Post types to include in results (including custom post types)"
98
  msgstr ""
99
 
100
+ #: admin.inc.php:207
101
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
102
  msgstr ""
103
 
104
+ #: admin.inc.php:210
105
  msgid "Find related posts based on content as well as title"
106
  msgstr ""
107
 
108
+ #: admin.inc.php:211
109
  msgid ""
110
  "If unchecked, only posts titles are used. (I recommend using a caching "
111
  "plugin if you enable this)"
112
  msgstr ""
113
 
114
+ #: admin.inc.php:213
115
  msgid "List of post or page IDs to exclude from the results: "
116
  msgstr ""
117
 
118
+ #: admin.inc.php:216
119
  msgid "Categories to exclude from the results: "
120
  msgstr ""
121
 
122
+ #: admin.inc.php:232
123
+ msgid ""
124
+ "Comma separated list of category slugs. The field above has an autocomplete "
125
+ "so simply start typing in the starting letters and it will prompt you with "
126
+ "options"
127
+ msgstr ""
128
+
129
+ #: admin.inc.php:235
130
  msgid "Add related posts to:"
131
  msgstr ""
132
 
133
+ #: admin.inc.php:237
134
  msgid "Posts"
135
  msgstr ""
136
 
137
+ #: admin.inc.php:238
138
  msgid "Pages"
139
  msgstr ""
140
 
141
+ #: admin.inc.php:239
142
  msgid "Home page"
143
  msgstr ""
144
 
145
+ #: admin.inc.php:240
146
  msgid "Feeds"
147
  msgstr ""
148
 
149
+ #: admin.inc.php:241
150
  msgid "Category archives"
151
  msgstr ""
152
 
153
+ #: admin.inc.php:242
154
  msgid "Tag archives"
155
  msgstr ""
156
 
157
+ #: admin.inc.php:243
158
  msgid "Other archives"
159
  msgstr ""
160
 
161
+ #: admin.inc.php:244
162
  msgid ""
163
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
164
  "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where "
165
  "you want it displayed"
166
  msgstr ""
167
 
168
+ #: admin.inc.php:247
169
  msgid "Add a link to the plugin page as a final item in the list"
170
  msgstr ""
171
 
172
+ #: admin.inc.php:248
173
  msgid " <em>Optional</em>"
174
  msgstr ""
175
 
176
+ #: admin.inc.php:255
177
  msgid "Output options"
178
  msgstr ""
179
 
180
+ #: admin.inc.php:257
181
  msgid "Title of related posts: "
182
  msgstr ""
183
 
184
+ #: admin.inc.php:260
185
  msgid "When there are no posts, what should be shown?"
186
  msgstr ""
187
 
188
+ #: admin.inc.php:264
189
  msgid "Blank Output"
190
  msgstr ""
191
 
192
+ #: admin.inc.php:268
193
  msgid "Display:"
194
  msgstr ""
195
 
196
+ #: admin.inc.php:272 admin.inc.php:366
197
  msgid "Show post excerpt in list?"
198
  msgstr ""
199
 
200
+ #: admin.inc.php:275
201
  msgid "Length of excerpt (in words): "
202
  msgstr ""
203
 
204
+ #: admin.inc.php:278
205
  msgid "Limit post title length (in characters)"
206
  msgstr ""
207
 
208
+ #: admin.inc.php:281
209
  msgid "Open links in new window"
210
  msgstr ""
211
 
212
+ #: admin.inc.php:284
213
  msgid "Add nofollow attribute to links in the list"
214
  msgstr ""
215
 
216
+ #: admin.inc.php:287
217
  msgid "Exclude display of related posts on these posts / pages"
218
  msgstr ""
219
 
220
+ #: admin.inc.php:290
221
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
222
  msgstr ""
223
 
224
+ #: admin.inc.php:293
225
  msgid "Customize the output:"
226
  msgstr ""
227
 
228
+ #: admin.inc.php:295
229
  msgid "HTML to display before the list of posts: "
230
  msgstr ""
231
 
232
+ #: admin.inc.php:298
233
  msgid "HTML to display before each list item: "
234
  msgstr ""
235
 
236
+ #: admin.inc.php:301
237
  msgid "HTML to display after each list item: "
238
  msgstr ""
239
 
240
+ #: admin.inc.php:304
241
  msgid "HTML to display after the list of posts: "
242
  msgstr ""
243
 
244
+ #: admin.inc.php:307
245
  msgid "Post thumbnail options:"
246
  msgstr ""
247
 
248
+ #: admin.inc.php:309 admin.inc.php:369
249
  msgid "Location of post thumbnail:"
250
  msgstr ""
251
 
252
+ #: admin.inc.php:313 admin.inc.php:373
253
  msgid "Display thumbnails inline with posts, before title"
254
  msgstr ""
255
 
256
+ #: admin.inc.php:317 admin.inc.php:377
257
  msgid "Display thumbnails inline with posts, after title"
258
  msgstr ""
259
 
260
+ #: admin.inc.php:321 admin.inc.php:381
261
  msgid "Display only thumbnails, no text"
262
  msgstr ""
263
 
264
+ #: admin.inc.php:325 admin.inc.php:385
265
  msgid "Do not display thumbnails, only text."
266
  msgstr ""
267
 
268
+ #: admin.inc.php:329 admin.inc.php:389
269
  msgid "Maximum width of the thumbnail: "
270
  msgstr ""
271
 
272
+ #: admin.inc.php:332 admin.inc.php:392
273
  msgid "Maximum height of the thumbnail: "
274
  msgstr ""
275
 
276
+ #: admin.inc.php:335
277
  msgid "Use timthumb to generate thumbnails? "
278
  msgstr ""
279
 
280
+ #: admin.inc.php:336
281
  msgid ""
282
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
283
  "\">timthumb</a> will be used to generate thumbnails"
284
  msgstr ""
285
 
286
+ #: admin.inc.php:338
287
  msgid "Quality of thumbnails generated by timthumb"
288
  msgstr ""
289
 
290
+ #: admin.inc.php:341
291
  msgid ""
292
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
293
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
294
  msgstr ""
295
 
296
+ #: admin.inc.php:344
297
  msgid "Post thumbnail meta field name: "
298
  msgstr ""
299
 
300
+ #: admin.inc.php:345
301
  msgid ""
302
  "The value of this field should contain the image source and is set in the "
303
  "<em>Add New Post</em> screen"
304
  msgstr ""
305
 
306
+ #: admin.inc.php:347
307
  msgid ""
308
  "If the postmeta is not set, then should the plugin extract the first image "
309
  "from the post?"
310
  msgstr ""
311
 
312
+ #: admin.inc.php:348
313
  msgid ""
314
  "This can slow down the loading of your page if the first image in the "
315
  "related posts is large in file-size"
316
  msgstr ""
317
 
318
+ #: admin.inc.php:350
319
  msgid "Use default thumbnail? "
320
  msgstr ""
321
 
322
+ #: admin.inc.php:351
323
  msgid ""
324
  "If checked, when no thumbnail is found, show a default one from the URL "
325
  "below. If not checked and no thumbnail is found, no image will be shown."
326
  msgstr ""
327
 
328
+ #: admin.inc.php:353
329
  msgid "Default thumbnail: "
330
  msgstr ""
331
 
332
+ #: admin.inc.php:354
333
  msgid ""
334
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
335
  "then it will check the meta field. If this is not available, then it will "
336
  "show the default image as specified above"
337
  msgstr ""
338
 
339
+ #: admin.inc.php:359
340
  msgid "Feed options"
341
  msgstr ""
342
 
343
+ #: admin.inc.php:361
344
  msgid ""
345
  "Below options override the related posts settings for your blog feed. These "
346
  "only apply if you have selected to add related posts to Feeds in the General "
347
  "Options tab."
348
  msgstr ""
349
 
350
+ #: admin.inc.php:398
351
  msgid "Custom Styles"
352
  msgstr ""
353
 
354
+ #: admin.inc.php:400
355
  msgid "Custom CSS to add to header:"
356
  msgstr ""
357
 
358
+ #: admin.inc.php:403
359
  msgid ""
360
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
361
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
362
  "\">FAQ</a> for available CSS classes to style."
363
  msgstr ""
364
 
365
+ #: admin.inc.php:407
366
  msgid "Save Options"
367
  msgstr ""
368
 
369
+ #: admin.inc.php:408
370
  msgid "Default Options"
371
  msgstr ""
372
 
373
+ #: admin.inc.php:408
374
  msgid "Do you want to set options to Default?"
375
  msgstr ""
376
 
377
+ #: admin.inc.php:409
378
  msgid "Recreate Index"
379
  msgstr ""
380
 
381
+ #: admin.inc.php:409
382
  msgid "Are you sure you want to recreate the index?"
383
  msgstr ""
384
 
385
+ #: admin.inc.php:426
386
  msgid "Contextual Related Posts"
387
  msgstr ""
388
 
389
+ #: admin.inc.php:426 contextual-related-posts.php:277
390
  msgid "Related Posts"
391
  msgstr ""
392
 
393
+ #: admin.inc.php:434
394
  msgid "plugin settings page"
395
  msgstr ""
396
 
397
+ #: admin.inc.php:439
398
  msgid ""
399
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
400
  "visit the "
401
  msgstr ""
402
 
403
+ #: admin.inc.php:439
404
  msgid " to configure."
405
  msgstr ""
406
 
407
+ #: contextual-related-posts.php:136
408
  msgid "Powered by"
409
  msgstr ""
410
 
411
+ #: contextual-related-posts.php:276
412
  msgid "Display Related Posts"
413
  msgstr ""
414
 
415
+ #: contextual-related-posts.php:289
416
  msgid "Title"
417
  msgstr ""
418
 
419
+ #: contextual-related-posts.php:294
420
  msgid "No. of posts"
421
  msgstr ""
422
 
423
+ #: contextual-related-posts.php:299
424
  msgid " Show excerpt?"
425
  msgstr ""
426
 
427
+ #: contextual-related-posts.php:303
428
  msgid "Thumbnail options"
429
  msgstr ""
430
 
431
+ #: contextual-related-posts.php:305
432
  msgid "Thumbnails inline, before title"
433
  msgstr ""
434
 
435
+ #: contextual-related-posts.php:306
436
  msgid "Thumbnails inline, after title"
437
  msgstr ""
438
 
439
+ #: contextual-related-posts.php:307
440
  msgid "Only thumbnails, no text"
441
  msgstr ""
442
 
443
+ #: contextual-related-posts.php:308
444
  msgid "No thumbnails, only text."
445
  msgstr ""
446
 
447
+ #: contextual-related-posts.php:313
448
  msgid "Thumbnail height"
449
  msgstr ""
450
 
451
+ #: contextual-related-posts.php:318
452
  msgid "Thumbnail width"
453
  msgstr ""
454
 
455
+ #: contextual-related-posts.php:393
456
  msgid "<h3>Related Posts:</h3>"
457
  msgstr ""
458
 
459
+ #: contextual-related-posts.php:394
460
+ msgid "No related posts found"
461
  msgstr ""
462
 
463
+ #: contextual-related-posts.php:648
464
  msgid "Settings"
465
  msgstr ""
466
 
467
+ #: contextual-related-posts.php:663
468
  msgid "Donate"
469
  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: 2013-01-06 12:31-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,441 +12,458 @@ 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.5.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:93
19
  msgid "Options saved successfully."
20
  msgstr ""
21
 
22
- #: admin.inc.php:109
23
  msgid "Options set to Default."
24
  msgstr ""
25
 
26
- #: admin.inc.php:124
27
  msgid "Index recreated"
28
  msgstr ""
29
 
30
- #: admin.inc.php:137
31
  msgid "Support the development"
32
  msgstr ""
33
 
34
- #: admin.inc.php:145
35
  msgid "Enter amount in USD: "
36
  msgstr ""
37
 
38
- #: admin.inc.php:149
39
  msgid "Send your donation to the author of"
40
  msgstr ""
41
 
42
- #: admin.inc.php:160
43
  msgid "Quick Links"
44
  msgstr ""
45
 
46
- #: admin.inc.php:162
47
  msgid "Contextual Related Posts plugin page"
48
  msgstr ""
49
 
50
- #: admin.inc.php:163
51
  msgid "Other plugins"
52
  msgstr ""
53
 
54
- #: admin.inc.php:164
55
  msgid "Ajay's blog"
56
  msgstr ""
57
 
58
- #: admin.inc.php:165 contextual-related-posts.php:608
59
  msgid "Support"
60
  msgstr ""
61
 
62
- #: admin.inc.php:166
63
  msgid "Reviews"
64
  msgstr ""
65
 
66
- #: admin.inc.php:170
67
  msgid "Recent developments"
68
  msgstr ""
69
 
70
- #: admin.inc.php:180
71
  msgid "General options"
72
  msgstr ""
73
 
74
- #: admin.inc.php:182 admin.inc.php:354
 
 
 
 
 
 
 
 
 
 
75
  msgid "Number of related posts to display: "
76
  msgstr ""
77
 
78
- #: admin.inc.php:185
79
  msgid "Related posts should be newer than:"
80
  msgstr ""
81
 
82
- #: admin.inc.php:186
83
  msgid "days"
84
  msgstr ""
85
 
86
- #: admin.inc.php:188
87
  msgid "Post types to include in results (including custom post types)"
88
  msgstr ""
89
 
90
- #: admin.inc.php:199
91
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
92
  msgstr ""
93
 
94
- #: admin.inc.php:202
95
  msgid "Find related posts based on content as well as title"
96
  msgstr ""
97
 
98
- #: admin.inc.php:203
99
  msgid ""
100
  "If unchecked, only posts titles are used. (I recommend using a caching "
101
  "plugin if you enable this)"
102
  msgstr ""
103
 
104
- #: admin.inc.php:205
105
  msgid "List of post or page IDs to exclude from the results: "
106
  msgstr ""
107
 
108
- #: admin.inc.php:208
109
  msgid "Categories to exclude from the results: "
110
  msgstr ""
111
 
112
- #: admin.inc.php:226
 
 
 
 
 
 
 
113
  msgid "Add related posts to:"
114
  msgstr ""
115
 
116
- #: admin.inc.php:228
117
  msgid "Posts"
118
  msgstr ""
119
 
120
- #: admin.inc.php:229
121
  msgid "Pages"
122
  msgstr ""
123
 
124
- #: admin.inc.php:230
125
  msgid "Home page"
126
  msgstr ""
127
 
128
- #: admin.inc.php:231
129
  msgid "Feeds"
130
  msgstr ""
131
 
132
- #: admin.inc.php:232
133
  msgid "Category archives"
134
  msgstr ""
135
 
136
- #: admin.inc.php:233
137
  msgid "Tag archives"
138
  msgstr ""
139
 
140
- #: admin.inc.php:234
141
  msgid "Other archives"
142
  msgstr ""
143
 
144
- #: admin.inc.php:235
145
  msgid ""
146
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
147
  "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where "
148
  "you want it displayed"
149
  msgstr ""
150
 
151
- #: admin.inc.php:238
152
  msgid "Add a link to the plugin page as a final item in the list"
153
  msgstr ""
154
 
155
- #: admin.inc.php:239
156
  msgid " <em>Optional</em>"
157
  msgstr ""
158
 
159
- #: admin.inc.php:246
160
  msgid "Output options"
161
  msgstr ""
162
 
163
- #: admin.inc.php:248
164
  msgid "Title of related posts: "
165
  msgstr ""
166
 
167
- #: admin.inc.php:251
168
  msgid "When there are no posts, what should be shown?"
169
  msgstr ""
170
 
171
- #: admin.inc.php:255
172
  msgid "Blank Output"
173
  msgstr ""
174
 
175
- #: admin.inc.php:259
176
  msgid "Display:"
177
  msgstr ""
178
 
179
- #: admin.inc.php:263 admin.inc.php:357
180
  msgid "Show post excerpt in list?"
181
  msgstr ""
182
 
183
- #: admin.inc.php:266
184
  msgid "Length of excerpt (in words): "
185
  msgstr ""
186
 
187
- #: admin.inc.php:269
188
  msgid "Limit post title length (in characters)"
189
  msgstr ""
190
 
191
- #: admin.inc.php:272
192
  msgid "Open links in new window"
193
  msgstr ""
194
 
195
- #: admin.inc.php:275
196
  msgid "Add nofollow attribute to links in the list"
197
  msgstr ""
198
 
199
- #: admin.inc.php:278
200
  msgid "Exclude display of related posts on these posts / pages"
201
  msgstr ""
202
 
203
- #: admin.inc.php:281
204
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
205
  msgstr ""
206
 
207
- #: admin.inc.php:284
208
  msgid "Customize the output:"
209
  msgstr ""
210
 
211
- #: admin.inc.php:286
212
  msgid "HTML to display before the list of posts: "
213
  msgstr ""
214
 
215
- #: admin.inc.php:289
216
  msgid "HTML to display before each list item: "
217
  msgstr ""
218
 
219
- #: admin.inc.php:292
220
  msgid "HTML to display after each list item: "
221
  msgstr ""
222
 
223
- #: admin.inc.php:295
224
  msgid "HTML to display after the list of posts: "
225
  msgstr ""
226
 
227
- #: admin.inc.php:298
228
  msgid "Post thumbnail options:"
229
  msgstr ""
230
 
231
- #: admin.inc.php:300 admin.inc.php:360
232
  msgid "Location of post thumbnail:"
233
  msgstr ""
234
 
235
- #: admin.inc.php:304 admin.inc.php:364
236
  msgid "Display thumbnails inline with posts, before title"
237
  msgstr ""
238
 
239
- #: admin.inc.php:308 admin.inc.php:368
240
  msgid "Display thumbnails inline with posts, after title"
241
  msgstr ""
242
 
243
- #: admin.inc.php:312 admin.inc.php:372
244
  msgid "Display only thumbnails, no text"
245
  msgstr ""
246
 
247
- #: admin.inc.php:316 admin.inc.php:376
248
  msgid "Do not display thumbnails, only text."
249
  msgstr ""
250
 
251
- #: admin.inc.php:320 admin.inc.php:380
252
  msgid "Maximum width of the thumbnail: "
253
  msgstr ""
254
 
255
- #: admin.inc.php:323 admin.inc.php:383
256
  msgid "Maximum height of the thumbnail: "
257
  msgstr ""
258
 
259
- #: admin.inc.php:326
260
  msgid "Use timthumb to generate thumbnails? "
261
  msgstr ""
262
 
263
- #: admin.inc.php:327
264
  msgid ""
265
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
266
  "\">timthumb</a> will be used to generate thumbnails"
267
  msgstr ""
268
 
269
- #: admin.inc.php:329
270
  msgid "Quality of thumbnails generated by timthumb"
271
  msgstr ""
272
 
273
- #: admin.inc.php:332
274
  msgid ""
275
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
276
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
277
  msgstr ""
278
 
279
- #: admin.inc.php:335
280
  msgid "Post thumbnail meta field name: "
281
  msgstr ""
282
 
283
- #: admin.inc.php:336
284
  msgid ""
285
  "The value of this field should contain the image source and is set in the "
286
  "<em>Add New Post</em> screen"
287
  msgstr ""
288
 
289
- #: admin.inc.php:338
290
  msgid ""
291
  "If the postmeta is not set, then should the plugin extract the first image "
292
  "from the post?"
293
  msgstr ""
294
 
295
- #: admin.inc.php:339
296
  msgid ""
297
  "This can slow down the loading of your page if the first image in the "
298
  "related posts is large in file-size"
299
  msgstr ""
300
 
301
- #: admin.inc.php:341
302
  msgid "Use default thumbnail? "
303
  msgstr ""
304
 
305
- #: admin.inc.php:342
306
  msgid ""
307
  "If checked, when no thumbnail is found, show a default one from the URL "
308
  "below. If not checked and no thumbnail is found, no image will be shown."
309
  msgstr ""
310
 
311
- #: admin.inc.php:344
312
  msgid "Default thumbnail: "
313
  msgstr ""
314
 
315
- #: admin.inc.php:345
316
  msgid ""
317
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
318
  "then it will check the meta field. If this is not available, then it will "
319
  "show the default image as specified above"
320
  msgstr ""
321
 
322
- #: admin.inc.php:350
323
  msgid "Feed options"
324
  msgstr ""
325
 
326
- #: admin.inc.php:352
327
  msgid ""
328
  "Below options override the related posts settings for your blog feed. These "
329
  "only apply if you have selected to add related posts to Feeds in the General "
330
  "Options tab."
331
  msgstr ""
332
 
333
- #: admin.inc.php:389
334
  msgid "Custom Styles"
335
  msgstr ""
336
 
337
- #: admin.inc.php:391
338
  msgid "Custom CSS to add to header:"
339
  msgstr ""
340
 
341
- #: admin.inc.php:394
342
  msgid ""
343
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
344
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
345
  "\">FAQ</a> for available CSS classes to style."
346
  msgstr ""
347
 
348
- #: admin.inc.php:398
349
  msgid "Save Options"
350
  msgstr ""
351
 
352
- #: admin.inc.php:399
353
  msgid "Default Options"
354
  msgstr ""
355
 
356
- #: admin.inc.php:399
357
  msgid "Do you want to set options to Default?"
358
  msgstr ""
359
 
360
- #: admin.inc.php:400
361
  msgid "Recreate Index"
362
  msgstr ""
363
 
364
- #: admin.inc.php:400
365
  msgid "Are you sure you want to recreate the index?"
366
  msgstr ""
367
 
368
- #: admin.inc.php:417
369
  msgid "Contextual Related Posts"
370
  msgstr ""
371
 
372
- #: admin.inc.php:417 contextual-related-posts.php:240
373
  msgid "Related Posts"
374
  msgstr ""
375
 
376
- #: admin.inc.php:425
377
  msgid "plugin settings page"
378
  msgstr ""
379
 
380
- #: admin.inc.php:430
381
  msgid ""
382
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
383
  "visit the "
384
  msgstr ""
385
 
386
- #: admin.inc.php:430
387
  msgid " to configure."
388
  msgstr ""
389
 
390
- #: contextual-related-posts.php:162
391
  msgid "Powered by"
392
  msgstr ""
393
 
394
- #: contextual-related-posts.php:239
395
  msgid "Display Related Posts"
396
  msgstr ""
397
 
398
- #: contextual-related-posts.php:252
399
  msgid "Title"
400
  msgstr ""
401
 
402
- #: contextual-related-posts.php:257
403
  msgid "No. of posts"
404
  msgstr ""
405
 
406
- #: contextual-related-posts.php:262
407
  msgid " Show excerpt?"
408
  msgstr ""
409
 
410
- #: contextual-related-posts.php:266
411
  msgid "Thumbnail options"
412
  msgstr ""
413
 
414
- #: contextual-related-posts.php:268
415
  msgid "Thumbnails inline, before title"
416
  msgstr ""
417
 
418
- #: contextual-related-posts.php:269
419
  msgid "Thumbnails inline, after title"
420
  msgstr ""
421
 
422
- #: contextual-related-posts.php:270
423
  msgid "Only thumbnails, no text"
424
  msgstr ""
425
 
426
- #: contextual-related-posts.php:271
427
  msgid "No thumbnails, only text."
428
  msgstr ""
429
 
430
- #: contextual-related-posts.php:276
431
  msgid "Thumbnail height"
432
  msgstr ""
433
 
434
- #: contextual-related-posts.php:281
435
  msgid "Thumbnail width"
436
  msgstr ""
437
 
438
- #: contextual-related-posts.php:340
439
  msgid "<h3>Related Posts:</h3>"
440
  msgstr ""
441
 
442
- #: contextual-related-posts.php:341
443
- msgid "No related posts founds"
444
  msgstr ""
445
 
446
- #: contextual-related-posts.php:594
447
  msgid "Settings"
448
  msgstr ""
449
 
450
- #: contextual-related-posts.php:609
451
  msgid "Donate"
452
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-04-07 23:39-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.5.5\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:96
19
  msgid "Options saved successfully."
20
  msgstr ""
21
 
22
+ #: admin.inc.php:112
23
  msgid "Options set to Default."
24
  msgstr ""
25
 
26
+ #: admin.inc.php:127
27
  msgid "Index recreated"
28
  msgstr ""
29
 
30
+ #: admin.inc.php:140
31
  msgid "Support the development"
32
  msgstr ""
33
 
34
+ #: admin.inc.php:148
35
  msgid "Enter amount in USD: "
36
  msgstr ""
37
 
38
+ #: admin.inc.php:152
39
  msgid "Send your donation to the author of"
40
  msgstr ""
41
 
42
+ #: admin.inc.php:163
43
  msgid "Quick Links"
44
  msgstr ""
45
 
46
+ #: admin.inc.php:165
47
  msgid "Contextual Related Posts plugin page"
48
  msgstr ""
49
 
50
+ #: admin.inc.php:166
51
  msgid "Other plugins"
52
  msgstr ""
53
 
54
+ #: admin.inc.php:167
55
  msgid "Ajay's blog"
56
  msgstr ""
57
 
58
+ #: admin.inc.php:168 contextual-related-posts.php:662
59
  msgid "Support"
60
  msgstr ""
61
 
62
+ #: admin.inc.php:169
63
  msgid "Reviews"
64
  msgstr ""
65
 
66
+ #: admin.inc.php:173
67
  msgid "Recent developments"
68
  msgstr ""
69
 
70
+ #: admin.inc.php:183
71
  msgid "General options"
72
  msgstr ""
73
 
74
+ #: admin.inc.php:185
75
+ msgid "Cache output?"
76
+ msgstr ""
77
+
78
+ #: admin.inc.php:187
79
+ msgid ""
80
+ "Enabling this option will cache the related posts output when the post is "
81
+ "visited the first time. The cache is cleaned when you save this page."
82
+ msgstr ""
83
+
84
+ #: admin.inc.php:190 admin.inc.php:363
85
  msgid "Number of related posts to display: "
86
  msgstr ""
87
 
88
+ #: admin.inc.php:193
89
  msgid "Related posts should be newer than:"
90
  msgstr ""
91
 
92
+ #: admin.inc.php:194
93
  msgid "days"
94
  msgstr ""
95
 
96
+ #: admin.inc.php:196
97
  msgid "Post types to include in results (including custom post types)"
98
  msgstr ""
99
 
100
+ #: admin.inc.php:207
101
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
102
  msgstr ""
103
 
104
+ #: admin.inc.php:210
105
  msgid "Find related posts based on content as well as title"
106
  msgstr ""
107
 
108
+ #: admin.inc.php:211
109
  msgid ""
110
  "If unchecked, only posts titles are used. (I recommend using a caching "
111
  "plugin if you enable this)"
112
  msgstr ""
113
 
114
+ #: admin.inc.php:213
115
  msgid "List of post or page IDs to exclude from the results: "
116
  msgstr ""
117
 
118
+ #: admin.inc.php:216
119
  msgid "Categories to exclude from the results: "
120
  msgstr ""
121
 
122
+ #: admin.inc.php:232
123
+ msgid ""
124
+ "Comma separated list of category slugs. The field above has an autocomplete "
125
+ "so simply start typing in the starting letters and it will prompt you with "
126
+ "options"
127
+ msgstr ""
128
+
129
+ #: admin.inc.php:235
130
  msgid "Add related posts to:"
131
  msgstr ""
132
 
133
+ #: admin.inc.php:237
134
  msgid "Posts"
135
  msgstr ""
136
 
137
+ #: admin.inc.php:238
138
  msgid "Pages"
139
  msgstr ""
140
 
141
+ #: admin.inc.php:239
142
  msgid "Home page"
143
  msgstr ""
144
 
145
+ #: admin.inc.php:240
146
  msgid "Feeds"
147
  msgstr ""
148
 
149
+ #: admin.inc.php:241
150
  msgid "Category archives"
151
  msgstr ""
152
 
153
+ #: admin.inc.php:242
154
  msgid "Tag archives"
155
  msgstr ""
156
 
157
+ #: admin.inc.php:243
158
  msgid "Other archives"
159
  msgstr ""
160
 
161
+ #: admin.inc.php:244
162
  msgid ""
163
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
164
  "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where "
165
  "you want it displayed"
166
  msgstr ""
167
 
168
+ #: admin.inc.php:247
169
  msgid "Add a link to the plugin page as a final item in the list"
170
  msgstr ""
171
 
172
+ #: admin.inc.php:248
173
  msgid " <em>Optional</em>"
174
  msgstr ""
175
 
176
+ #: admin.inc.php:255
177
  msgid "Output options"
178
  msgstr ""
179
 
180
+ #: admin.inc.php:257
181
  msgid "Title of related posts: "
182
  msgstr ""
183
 
184
+ #: admin.inc.php:260
185
  msgid "When there are no posts, what should be shown?"
186
  msgstr ""
187
 
188
+ #: admin.inc.php:264
189
  msgid "Blank Output"
190
  msgstr ""
191
 
192
+ #: admin.inc.php:268
193
  msgid "Display:"
194
  msgstr ""
195
 
196
+ #: admin.inc.php:272 admin.inc.php:366
197
  msgid "Show post excerpt in list?"
198
  msgstr ""
199
 
200
+ #: admin.inc.php:275
201
  msgid "Length of excerpt (in words): "
202
  msgstr ""
203
 
204
+ #: admin.inc.php:278
205
  msgid "Limit post title length (in characters)"
206
  msgstr ""
207
 
208
+ #: admin.inc.php:281
209
  msgid "Open links in new window"
210
  msgstr ""
211
 
212
+ #: admin.inc.php:284
213
  msgid "Add nofollow attribute to links in the list"
214
  msgstr ""
215
 
216
+ #: admin.inc.php:287
217
  msgid "Exclude display of related posts on these posts / pages"
218
  msgstr ""
219
 
220
+ #: admin.inc.php:290
221
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
222
  msgstr ""
223
 
224
+ #: admin.inc.php:293
225
  msgid "Customize the output:"
226
  msgstr ""
227
 
228
+ #: admin.inc.php:295
229
  msgid "HTML to display before the list of posts: "
230
  msgstr ""
231
 
232
+ #: admin.inc.php:298
233
  msgid "HTML to display before each list item: "
234
  msgstr ""
235
 
236
+ #: admin.inc.php:301
237
  msgid "HTML to display after each list item: "
238
  msgstr ""
239
 
240
+ #: admin.inc.php:304
241
  msgid "HTML to display after the list of posts: "
242
  msgstr ""
243
 
244
+ #: admin.inc.php:307
245
  msgid "Post thumbnail options:"
246
  msgstr ""
247
 
248
+ #: admin.inc.php:309 admin.inc.php:369
249
  msgid "Location of post thumbnail:"
250
  msgstr ""
251
 
252
+ #: admin.inc.php:313 admin.inc.php:373
253
  msgid "Display thumbnails inline with posts, before title"
254
  msgstr ""
255
 
256
+ #: admin.inc.php:317 admin.inc.php:377
257
  msgid "Display thumbnails inline with posts, after title"
258
  msgstr ""
259
 
260
+ #: admin.inc.php:321 admin.inc.php:381
261
  msgid "Display only thumbnails, no text"
262
  msgstr ""
263
 
264
+ #: admin.inc.php:325 admin.inc.php:385
265
  msgid "Do not display thumbnails, only text."
266
  msgstr ""
267
 
268
+ #: admin.inc.php:329 admin.inc.php:389
269
  msgid "Maximum width of the thumbnail: "
270
  msgstr ""
271
 
272
+ #: admin.inc.php:332 admin.inc.php:392
273
  msgid "Maximum height of the thumbnail: "
274
  msgstr ""
275
 
276
+ #: admin.inc.php:335
277
  msgid "Use timthumb to generate thumbnails? "
278
  msgstr ""
279
 
280
+ #: admin.inc.php:336
281
  msgid ""
282
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
283
  "\">timthumb</a> will be used to generate thumbnails"
284
  msgstr ""
285
 
286
+ #: admin.inc.php:338
287
  msgid "Quality of thumbnails generated by timthumb"
288
  msgstr ""
289
 
290
+ #: admin.inc.php:341
291
  msgid ""
292
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
293
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
294
  msgstr ""
295
 
296
+ #: admin.inc.php:344
297
  msgid "Post thumbnail meta field name: "
298
  msgstr ""
299
 
300
+ #: admin.inc.php:345
301
  msgid ""
302
  "The value of this field should contain the image source and is set in the "
303
  "<em>Add New Post</em> screen"
304
  msgstr ""
305
 
306
+ #: admin.inc.php:347
307
  msgid ""
308
  "If the postmeta is not set, then should the plugin extract the first image "
309
  "from the post?"
310
  msgstr ""
311
 
312
+ #: admin.inc.php:348
313
  msgid ""
314
  "This can slow down the loading of your page if the first image in the "
315
  "related posts is large in file-size"
316
  msgstr ""
317
 
318
+ #: admin.inc.php:350
319
  msgid "Use default thumbnail? "
320
  msgstr ""
321
 
322
+ #: admin.inc.php:351
323
  msgid ""
324
  "If checked, when no thumbnail is found, show a default one from the URL "
325
  "below. If not checked and no thumbnail is found, no image will be shown."
326
  msgstr ""
327
 
328
+ #: admin.inc.php:353
329
  msgid "Default thumbnail: "
330
  msgstr ""
331
 
332
+ #: admin.inc.php:354
333
  msgid ""
334
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
335
  "then it will check the meta field. If this is not available, then it will "
336
  "show the default image as specified above"
337
  msgstr ""
338
 
339
+ #: admin.inc.php:359
340
  msgid "Feed options"
341
  msgstr ""
342
 
343
+ #: admin.inc.php:361
344
  msgid ""
345
  "Below options override the related posts settings for your blog feed. These "
346
  "only apply if you have selected to add related posts to Feeds in the General "
347
  "Options tab."
348
  msgstr ""
349
 
350
+ #: admin.inc.php:398
351
  msgid "Custom Styles"
352
  msgstr ""
353
 
354
+ #: admin.inc.php:400
355
  msgid "Custom CSS to add to header:"
356
  msgstr ""
357
 
358
+ #: admin.inc.php:403
359
  msgid ""
360
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
361
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
362
  "\">FAQ</a> for available CSS classes to style."
363
  msgstr ""
364
 
365
+ #: admin.inc.php:407
366
  msgid "Save Options"
367
  msgstr ""
368
 
369
+ #: admin.inc.php:408
370
  msgid "Default Options"
371
  msgstr ""
372
 
373
+ #: admin.inc.php:408
374
  msgid "Do you want to set options to Default?"
375
  msgstr ""
376
 
377
+ #: admin.inc.php:409
378
  msgid "Recreate Index"
379
  msgstr ""
380
 
381
+ #: admin.inc.php:409
382
  msgid "Are you sure you want to recreate the index?"
383
  msgstr ""
384
 
385
+ #: admin.inc.php:426
386
  msgid "Contextual Related Posts"
387
  msgstr ""
388
 
389
+ #: admin.inc.php:426 contextual-related-posts.php:277
390
  msgid "Related Posts"
391
  msgstr ""
392
 
393
+ #: admin.inc.php:434
394
  msgid "plugin settings page"
395
  msgstr ""
396
 
397
+ #: admin.inc.php:439
398
  msgid ""
399
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
400
  "visit the "
401
  msgstr ""
402
 
403
+ #: admin.inc.php:439
404
  msgid " to configure."
405
  msgstr ""
406
 
407
+ #: contextual-related-posts.php:136
408
  msgid "Powered by"
409
  msgstr ""
410
 
411
+ #: contextual-related-posts.php:276
412
  msgid "Display Related Posts"
413
  msgstr ""
414
 
415
+ #: contextual-related-posts.php:289
416
  msgid "Title"
417
  msgstr ""
418
 
419
+ #: contextual-related-posts.php:294
420
  msgid "No. of posts"
421
  msgstr ""
422
 
423
+ #: contextual-related-posts.php:299
424
  msgid " Show excerpt?"
425
  msgstr ""
426
 
427
+ #: contextual-related-posts.php:303
428
  msgid "Thumbnail options"
429
  msgstr ""
430
 
431
+ #: contextual-related-posts.php:305
432
  msgid "Thumbnails inline, before title"
433
  msgstr ""
434
 
435
+ #: contextual-related-posts.php:306
436
  msgid "Thumbnails inline, after title"
437
  msgstr ""
438
 
439
+ #: contextual-related-posts.php:307
440
  msgid "Only thumbnails, no text"
441
  msgstr ""
442
 
443
+ #: contextual-related-posts.php:308
444
  msgid "No thumbnails, only text."
445
  msgstr ""
446
 
447
+ #: contextual-related-posts.php:313
448
  msgid "Thumbnail height"
449
  msgstr ""
450
 
451
+ #: contextual-related-posts.php:318
452
  msgid "Thumbnail width"
453
  msgstr ""
454
 
455
+ #: contextual-related-posts.php:393
456
  msgid "<h3>Related Posts:</h3>"
457
  msgstr ""
458
 
459
+ #: contextual-related-posts.php:394
460
+ msgid "No related posts found"
461
  msgstr ""
462
 
463
+ #: contextual-related-posts.php:648
464
  msgid "Settings"
465
  msgstr ""
466
 
467
+ #: contextual-related-posts.php:663
468
  msgid "Donate"
469
  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: 2013-01-06 12:33-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: \n"
@@ -12,92 +12,102 @@ 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.5.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:93
19
  msgid "Options saved successfully."
20
  msgstr "Opciones guardadas correctament."
21
 
22
- #: admin.inc.php:109
23
  msgid "Options set to Default."
24
  msgstr "Restablecer opciones originales"
25
 
26
- #: admin.inc.php:124
27
  msgid "Index recreated"
28
  msgstr "Recrear el Index"
29
 
30
- #: admin.inc.php:137
31
  msgid "Support the development"
32
  msgstr "Apoya el desarrollo"
33
 
34
- #: admin.inc.php:145
35
  msgid "Enter amount in USD: "
36
  msgstr "Ingresa monto en USD:"
37
 
38
- #: admin.inc.php:149
39
  msgid "Send your donation to the author of"
40
  msgstr "Enviar tu donación al autor de"
41
 
42
- #: admin.inc.php:160
43
  #, fuzzy
44
  msgid "Quick Links"
45
  msgstr "Links rápidos"
46
 
47
- #: admin.inc.php:162
48
  #, fuzzy
49
  msgid "Contextual Related Posts plugin page"
50
  msgstr "Posts relacionados contextualmente"
51
 
52
- #: admin.inc.php:163
53
  msgid "Other plugins"
54
  msgstr "Otros plugins"
55
 
56
- #: admin.inc.php:164
57
  msgid "Ajay's blog"
58
  msgstr ""
59
 
60
- #: admin.inc.php:165 contextual-related-posts.php:608
61
  msgid "Support"
62
  msgstr "Soporte"
63
 
64
- #: admin.inc.php:166
65
  msgid "Reviews"
66
  msgstr ""
67
 
68
- #: admin.inc.php:170
69
  msgid "Recent developments"
70
  msgstr "Desarrollos recientes"
71
 
72
- #: admin.inc.php:180
73
  msgid "General options"
74
  msgstr ""
75
 
76
- #: admin.inc.php:182 admin.inc.php:354
 
 
 
 
 
 
 
 
 
 
77
  msgid "Number of related posts to display: "
78
  msgstr "Número de posts relacionados a mostrar:"
79
 
80
- #: admin.inc.php:185
81
  msgid "Related posts should be newer than:"
82
  msgstr ""
83
 
84
- #: admin.inc.php:186
85
  msgid "days"
86
  msgstr ""
87
 
88
- #: admin.inc.php:188
89
  msgid "Post types to include in results (including custom post types)"
90
  msgstr ""
91
 
92
- #: admin.inc.php:199
93
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
94
  msgstr ""
95
 
96
- #: admin.inc.php:202
97
  msgid "Find related posts based on content as well as title"
98
  msgstr ""
99
 
100
- #: admin.inc.php:203
101
  #, fuzzy
102
  msgid ""
103
  "If unchecked, only posts titles are used. (I recommend using a caching "
@@ -107,48 +117,55 @@ msgstr ""
107
  "deseleccionado, solo los títulos serán usados. (Recomiendo usar un plugin de "
108
  "caché si activas esto)"
109
 
110
- #: admin.inc.php:205
111
  msgid "List of post or page IDs to exclude from the results: "
112
  msgstr ""
113
 
114
- #: admin.inc.php:208
115
  msgid "Categories to exclude from the results: "
116
  msgstr ""
117
 
118
- #: admin.inc.php:226
 
 
 
 
 
 
 
119
  #, fuzzy
120
  msgid "Add related posts to:"
121
  msgstr "Agregar posts relacionados al feed"
122
 
123
- #: admin.inc.php:228
124
  msgid "Posts"
125
  msgstr ""
126
 
127
- #: admin.inc.php:229
128
  msgid "Pages"
129
  msgstr ""
130
 
131
- #: admin.inc.php:230
132
  msgid "Home page"
133
  msgstr ""
134
 
135
- #: admin.inc.php:231
136
  msgid "Feeds"
137
  msgstr ""
138
 
139
- #: admin.inc.php:232
140
  msgid "Category archives"
141
  msgstr ""
142
 
143
- #: admin.inc.php:233
144
  msgid "Tag archives"
145
  msgstr ""
146
 
147
- #: admin.inc.php:234
148
  msgid "Other archives"
149
  msgstr ""
150
 
151
- #: admin.inc.php:235
152
  #, fuzzy
153
  msgid ""
154
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
@@ -159,150 +176,150 @@ msgstr ""
159
  "favor agrega <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp"
160
  "(); ?&gt;</code> a tu archivo de template donde quieras q se muestre"
161
 
162
- #: admin.inc.php:238
163
  msgid "Add a link to the plugin page as a final item in the list"
164
  msgstr ""
165
 
166
- #: admin.inc.php:239
167
  msgid " <em>Optional</em>"
168
  msgstr ""
169
 
170
- #: admin.inc.php:246
171
  #, fuzzy
172
  msgid "Output options"
173
  msgstr "Opciones de Salida:"
174
 
175
- #: admin.inc.php:248
176
  msgid "Title of related posts: "
177
  msgstr "Título de posts relacionados:"
178
 
179
- #: admin.inc.php:251
180
  msgid "When there are no posts, what should be shown?"
181
  msgstr "Cuando no hay posts, ¿Qué se debe mostrar?"
182
 
183
- #: admin.inc.php:255
184
  msgid "Blank Output"
185
  msgstr "Salida vacía"
186
 
187
- #: admin.inc.php:259
188
  msgid "Display:"
189
  msgstr ""
190
 
191
- #: admin.inc.php:263 admin.inc.php:357
192
  msgid "Show post excerpt in list?"
193
  msgstr "¿Mostrar extracto con los items?"
194
 
195
- #: admin.inc.php:266
196
  msgid "Length of excerpt (in words): "
197
  msgstr "Tamaño del extracto (en palabras):"
198
 
199
- #: admin.inc.php:269
200
  msgid "Limit post title length (in characters)"
201
  msgstr ""
202
 
203
- #: admin.inc.php:272
204
  msgid "Open links in new window"
205
  msgstr ""
206
 
207
- #: admin.inc.php:275
208
  msgid "Add nofollow attribute to links in the list"
209
  msgstr ""
210
 
211
- #: admin.inc.php:278
212
  #, fuzzy
213
  msgid "Exclude display of related posts on these posts / pages"
214
  msgstr "Agregar posts relacionados al feed"
215
 
216
- #: admin.inc.php:281
217
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
218
  msgstr ""
219
 
220
- #: admin.inc.php:284
221
  msgid "Customize the output:"
222
  msgstr "Personalizar la salida:"
223
 
224
- #: admin.inc.php:286
225
  msgid "HTML to display before the list of posts: "
226
  msgstr "HTML a mostrar antes de todos los items:"
227
 
228
- #: admin.inc.php:289
229
  msgid "HTML to display before each list item: "
230
  msgstr "HTML a mostrar antes de cada item:"
231
 
232
- #: admin.inc.php:292
233
  msgid "HTML to display after each list item: "
234
  msgstr "HTML a mostrar despues de cada item:"
235
 
236
- #: admin.inc.php:295
237
  msgid "HTML to display after the list of posts: "
238
  msgstr "HTML a mostrar despues de todos los items:"
239
 
240
- #: admin.inc.php:298
241
  msgid "Post thumbnail options:"
242
  msgstr "Opciones de miniaturas en el post:"
243
 
244
- #: admin.inc.php:300 admin.inc.php:360
245
  msgid "Location of post thumbnail:"
246
  msgstr ""
247
 
248
- #: admin.inc.php:304 admin.inc.php:364
249
  #, fuzzy
250
  msgid "Display thumbnails inline with posts, before title"
251
  msgstr "Miniaturas en línea con los posts"
252
 
253
- #: admin.inc.php:308 admin.inc.php:368
254
  #, fuzzy
255
  msgid "Display thumbnails inline with posts, after title"
256
  msgstr "Miniaturas en línea con los posts"
257
 
258
- #: admin.inc.php:312 admin.inc.php:372
259
  msgid "Display only thumbnails, no text"
260
  msgstr "Solo miniaturas, sin texto"
261
 
262
- #: admin.inc.php:316 admin.inc.php:376
263
  msgid "Do not display thumbnails, only text."
264
  msgstr "No mostrar miniaturas, solo texto."
265
 
266
- #: admin.inc.php:320 admin.inc.php:380
267
  msgid "Maximum width of the thumbnail: "
268
  msgstr ""
269
 
270
- #: admin.inc.php:323 admin.inc.php:383
271
  msgid "Maximum height of the thumbnail: "
272
  msgstr ""
273
 
274
- #: admin.inc.php:326
275
  msgid "Use timthumb to generate thumbnails? "
276
  msgstr ""
277
 
278
- #: admin.inc.php:327
279
  msgid ""
280
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
281
  "\">timthumb</a> will be used to generate thumbnails"
282
  msgstr ""
283
 
284
- #: admin.inc.php:329
285
  msgid "Quality of thumbnails generated by timthumb"
286
  msgstr ""
287
 
288
- #: admin.inc.php:332
289
  msgid ""
290
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
291
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
292
  msgstr ""
293
 
294
- #: admin.inc.php:335
295
  #, fuzzy
296
  msgid "Post thumbnail meta field name: "
297
  msgstr "Opciones de miniaturas en el post:"
298
 
299
- #: admin.inc.php:336
300
  msgid ""
301
  "The value of this field should contain the image source and is set in the "
302
  "<em>Add New Post</em> screen"
303
  msgstr ""
304
 
305
- #: admin.inc.php:338
306
  #, fuzzy
307
  msgid ""
308
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -312,7 +329,7 @@ msgstr ""
312
  "del post. Esto puede relentizar la carga si la primera imágen es de gran "
313
  "tamaño"
314
 
315
- #: admin.inc.php:339
316
  #, fuzzy
317
  msgid ""
318
  "This can slow down the loading of your page if the first image in the "
@@ -322,21 +339,21 @@ msgstr ""
322
  "del post. Esto puede relentizar la carga si la primera imágen es de gran "
323
  "tamaño"
324
 
325
- #: admin.inc.php:341
326
  msgid "Use default thumbnail? "
327
  msgstr ""
328
 
329
- #: admin.inc.php:342
330
  msgid ""
331
  "If checked, when no thumbnail is found, show a default one from the URL "
332
  "below. If not checked and no thumbnail is found, no image will be shown."
333
  msgstr ""
334
 
335
- #: admin.inc.php:344
336
  msgid "Default thumbnail: "
337
  msgstr ""
338
 
339
- #: admin.inc.php:345
340
  #, fuzzy
341
  msgid ""
342
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -347,149 +364,149 @@ msgstr ""
347
  "ninguno verificará el campo meta. Si no está disponible, entonces mostrará "
348
  "la imágen padrón especificada a continuación:"
349
 
350
- #: admin.inc.php:350
351
  #, fuzzy
352
  msgid "Feed options"
353
  msgstr "Opciones:"
354
 
355
- #: admin.inc.php:352
356
  msgid ""
357
  "Below options override the related posts settings for your blog feed. These "
358
  "only apply if you have selected to add related posts to Feeds in the General "
359
  "Options tab."
360
  msgstr ""
361
 
362
- #: admin.inc.php:389
363
  msgid "Custom Styles"
364
  msgstr ""
365
 
366
- #: admin.inc.php:391
367
  msgid "Custom CSS to add to header:"
368
  msgstr ""
369
 
370
- #: admin.inc.php:394
371
  msgid ""
372
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
373
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
374
  "\">FAQ</a> for available CSS classes to style."
375
  msgstr ""
376
 
377
- #: admin.inc.php:398
378
  #, fuzzy
379
  msgid "Save Options"
380
  msgstr "Opciones:"
381
 
382
- #: admin.inc.php:399
383
  #, fuzzy
384
  msgid "Default Options"
385
  msgstr "Opciones de Salida:"
386
 
387
- #: admin.inc.php:399
388
  msgid "Do you want to set options to Default?"
389
  msgstr "¿Quieres resetear las opciones?"
390
 
391
- #: admin.inc.php:400
392
  msgid "Recreate Index"
393
  msgstr ""
394
 
395
- #: admin.inc.php:400
396
  msgid "Are you sure you want to recreate the index?"
397
  msgstr "¿Está seguro que quiere recrear el index?"
398
 
399
- #: admin.inc.php:417
400
  msgid "Contextual Related Posts"
401
  msgstr "Posts Relacionados Contextualmente"
402
 
403
- #: admin.inc.php:417 contextual-related-posts.php:240
404
  msgid "Related Posts"
405
  msgstr "Post Relacionados"
406
 
407
- #: admin.inc.php:425
408
  #, fuzzy
409
  msgid "plugin settings page"
410
  msgstr "sitio del plugin"
411
 
412
- #: admin.inc.php:430
413
  msgid ""
414
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
415
  "visit the "
416
  msgstr ""
417
 
418
- #: admin.inc.php:430
419
  msgid " to configure."
420
  msgstr ""
421
 
422
- #: contextual-related-posts.php:162
423
  msgid "Powered by"
424
  msgstr "Creado por"
425
 
426
- #: contextual-related-posts.php:239
427
  #, fuzzy
428
  msgid "Display Related Posts"
429
  msgstr "Mostrar \"Posts No Relacionados\""
430
 
431
- #: contextual-related-posts.php:252
432
  msgid "Title"
433
  msgstr ""
434
 
435
- #: contextual-related-posts.php:257
436
  msgid "No. of posts"
437
  msgstr ""
438
 
439
- #: contextual-related-posts.php:262
440
  #, fuzzy
441
  msgid " Show excerpt?"
442
  msgstr "¿Mostrar extracto con los items?"
443
 
444
- #: contextual-related-posts.php:266
445
  #, fuzzy
446
  msgid "Thumbnail options"
447
  msgstr "Opciones de miniaturas en el post:"
448
 
449
- #: contextual-related-posts.php:268
450
  #, fuzzy
451
  msgid "Thumbnails inline, before title"
452
  msgstr "Miniaturas en línea con los posts"
453
 
454
- #: contextual-related-posts.php:269
455
  #, fuzzy
456
  msgid "Thumbnails inline, after title"
457
  msgstr "Miniaturas en línea con los posts"
458
 
459
- #: contextual-related-posts.php:270
460
  #, fuzzy
461
  msgid "Only thumbnails, no text"
462
  msgstr "Solo miniaturas, sin texto"
463
 
464
- #: contextual-related-posts.php:271
465
  #, fuzzy
466
  msgid "No thumbnails, only text."
467
  msgstr "No mostrar miniaturas, solo texto."
468
 
469
- #: contextual-related-posts.php:276
470
  #, fuzzy
471
  msgid "Thumbnail height"
472
  msgstr "Opciones de miniaturas en el post:"
473
 
474
- #: contextual-related-posts.php:281
475
  #, fuzzy
476
  msgid "Thumbnail width"
477
  msgstr "Opciones de miniaturas en el post:"
478
 
479
- #: contextual-related-posts.php:340
480
  msgid "<h3>Related Posts:</h3>"
481
  msgstr "<h3>Post Relacionados:</h3>"
482
 
483
- #: contextual-related-posts.php:341
484
  #, fuzzy
485
- msgid "No related posts founds"
486
  msgstr "No hay posts relacionados"
487
 
488
- #: contextual-related-posts.php:594
489
  msgid "Settings"
490
  msgstr "Opciones"
491
 
492
- #: contextual-related-posts.php:609
493
  msgid "Donate"
494
  msgstr "Donar"
495
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-04-07 23:41-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.5.5\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:96
19
  msgid "Options saved successfully."
20
  msgstr "Opciones guardadas correctament."
21
 
22
+ #: admin.inc.php:112
23
  msgid "Options set to Default."
24
  msgstr "Restablecer opciones originales"
25
 
26
+ #: admin.inc.php:127
27
  msgid "Index recreated"
28
  msgstr "Recrear el Index"
29
 
30
+ #: admin.inc.php:140
31
  msgid "Support the development"
32
  msgstr "Apoya el desarrollo"
33
 
34
+ #: admin.inc.php:148
35
  msgid "Enter amount in USD: "
36
  msgstr "Ingresa monto en USD:"
37
 
38
+ #: admin.inc.php:152
39
  msgid "Send your donation to the author of"
40
  msgstr "Enviar tu donación al autor de"
41
 
42
+ #: admin.inc.php:163
43
  #, fuzzy
44
  msgid "Quick Links"
45
  msgstr "Links rápidos"
46
 
47
+ #: admin.inc.php:165
48
  #, fuzzy
49
  msgid "Contextual Related Posts plugin page"
50
  msgstr "Posts relacionados contextualmente"
51
 
52
+ #: admin.inc.php:166
53
  msgid "Other plugins"
54
  msgstr "Otros plugins"
55
 
56
+ #: admin.inc.php:167
57
  msgid "Ajay's blog"
58
  msgstr ""
59
 
60
+ #: admin.inc.php:168 contextual-related-posts.php:662
61
  msgid "Support"
62
  msgstr "Soporte"
63
 
64
+ #: admin.inc.php:169
65
  msgid "Reviews"
66
  msgstr ""
67
 
68
+ #: admin.inc.php:173
69
  msgid "Recent developments"
70
  msgstr "Desarrollos recientes"
71
 
72
+ #: admin.inc.php:183
73
  msgid "General options"
74
  msgstr ""
75
 
76
+ #: admin.inc.php:185
77
+ msgid "Cache output?"
78
+ msgstr ""
79
+
80
+ #: admin.inc.php:187
81
+ msgid ""
82
+ "Enabling this option will cache the related posts output when the post is "
83
+ "visited the first time. The cache is cleaned when you save this page."
84
+ msgstr ""
85
+
86
+ #: admin.inc.php:190 admin.inc.php:363
87
  msgid "Number of related posts to display: "
88
  msgstr "Número de posts relacionados a mostrar:"
89
 
90
+ #: admin.inc.php:193
91
  msgid "Related posts should be newer than:"
92
  msgstr ""
93
 
94
+ #: admin.inc.php:194
95
  msgid "days"
96
  msgstr ""
97
 
98
+ #: admin.inc.php:196
99
  msgid "Post types to include in results (including custom post types)"
100
  msgstr ""
101
 
102
+ #: admin.inc.php:207
103
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
104
  msgstr ""
105
 
106
+ #: admin.inc.php:210
107
  msgid "Find related posts based on content as well as title"
108
  msgstr ""
109
 
110
+ #: admin.inc.php:211
111
  #, fuzzy
112
  msgid ""
113
  "If unchecked, only posts titles are used. (I recommend using a caching "
117
  "deseleccionado, solo los títulos serán usados. (Recomiendo usar un plugin de "
118
  "caché si activas esto)"
119
 
120
+ #: admin.inc.php:213
121
  msgid "List of post or page IDs to exclude from the results: "
122
  msgstr ""
123
 
124
+ #: admin.inc.php:216
125
  msgid "Categories to exclude from the results: "
126
  msgstr ""
127
 
128
+ #: admin.inc.php:232
129
+ msgid ""
130
+ "Comma separated list of category slugs. The field above has an autocomplete "
131
+ "so simply start typing in the starting letters and it will prompt you with "
132
+ "options"
133
+ msgstr ""
134
+
135
+ #: admin.inc.php:235
136
  #, fuzzy
137
  msgid "Add related posts to:"
138
  msgstr "Agregar posts relacionados al feed"
139
 
140
+ #: admin.inc.php:237
141
  msgid "Posts"
142
  msgstr ""
143
 
144
+ #: admin.inc.php:238
145
  msgid "Pages"
146
  msgstr ""
147
 
148
+ #: admin.inc.php:239
149
  msgid "Home page"
150
  msgstr ""
151
 
152
+ #: admin.inc.php:240
153
  msgid "Feeds"
154
  msgstr ""
155
 
156
+ #: admin.inc.php:241
157
  msgid "Category archives"
158
  msgstr ""
159
 
160
+ #: admin.inc.php:242
161
  msgid "Tag archives"
162
  msgstr ""
163
 
164
+ #: admin.inc.php:243
165
  msgid "Other archives"
166
  msgstr ""
167
 
168
+ #: admin.inc.php:244
169
  #, fuzzy
170
  msgid ""
171
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
176
  "favor agrega <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp"
177
  "(); ?&gt;</code> a tu archivo de template donde quieras q se muestre"
178
 
179
+ #: admin.inc.php:247
180
  msgid "Add a link to the plugin page as a final item in the list"
181
  msgstr ""
182
 
183
+ #: admin.inc.php:248
184
  msgid " <em>Optional</em>"
185
  msgstr ""
186
 
187
+ #: admin.inc.php:255
188
  #, fuzzy
189
  msgid "Output options"
190
  msgstr "Opciones de Salida:"
191
 
192
+ #: admin.inc.php:257
193
  msgid "Title of related posts: "
194
  msgstr "Título de posts relacionados:"
195
 
196
+ #: admin.inc.php:260
197
  msgid "When there are no posts, what should be shown?"
198
  msgstr "Cuando no hay posts, ¿Qué se debe mostrar?"
199
 
200
+ #: admin.inc.php:264
201
  msgid "Blank Output"
202
  msgstr "Salida vacía"
203
 
204
+ #: admin.inc.php:268
205
  msgid "Display:"
206
  msgstr ""
207
 
208
+ #: admin.inc.php:272 admin.inc.php:366
209
  msgid "Show post excerpt in list?"
210
  msgstr "¿Mostrar extracto con los items?"
211
 
212
+ #: admin.inc.php:275
213
  msgid "Length of excerpt (in words): "
214
  msgstr "Tamaño del extracto (en palabras):"
215
 
216
+ #: admin.inc.php:278
217
  msgid "Limit post title length (in characters)"
218
  msgstr ""
219
 
220
+ #: admin.inc.php:281
221
  msgid "Open links in new window"
222
  msgstr ""
223
 
224
+ #: admin.inc.php:284
225
  msgid "Add nofollow attribute to links in the list"
226
  msgstr ""
227
 
228
+ #: admin.inc.php:287
229
  #, fuzzy
230
  msgid "Exclude display of related posts on these posts / pages"
231
  msgstr "Agregar posts relacionados al feed"
232
 
233
+ #: admin.inc.php:290
234
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
235
  msgstr ""
236
 
237
+ #: admin.inc.php:293
238
  msgid "Customize the output:"
239
  msgstr "Personalizar la salida:"
240
 
241
+ #: admin.inc.php:295
242
  msgid "HTML to display before the list of posts: "
243
  msgstr "HTML a mostrar antes de todos los items:"
244
 
245
+ #: admin.inc.php:298
246
  msgid "HTML to display before each list item: "
247
  msgstr "HTML a mostrar antes de cada item:"
248
 
249
+ #: admin.inc.php:301
250
  msgid "HTML to display after each list item: "
251
  msgstr "HTML a mostrar despues de cada item:"
252
 
253
+ #: admin.inc.php:304
254
  msgid "HTML to display after the list of posts: "
255
  msgstr "HTML a mostrar despues de todos los items:"
256
 
257
+ #: admin.inc.php:307
258
  msgid "Post thumbnail options:"
259
  msgstr "Opciones de miniaturas en el post:"
260
 
261
+ #: admin.inc.php:309 admin.inc.php:369
262
  msgid "Location of post thumbnail:"
263
  msgstr ""
264
 
265
+ #: admin.inc.php:313 admin.inc.php:373
266
  #, fuzzy
267
  msgid "Display thumbnails inline with posts, before title"
268
  msgstr "Miniaturas en línea con los posts"
269
 
270
+ #: admin.inc.php:317 admin.inc.php:377
271
  #, fuzzy
272
  msgid "Display thumbnails inline with posts, after title"
273
  msgstr "Miniaturas en línea con los posts"
274
 
275
+ #: admin.inc.php:321 admin.inc.php:381
276
  msgid "Display only thumbnails, no text"
277
  msgstr "Solo miniaturas, sin texto"
278
 
279
+ #: admin.inc.php:325 admin.inc.php:385
280
  msgid "Do not display thumbnails, only text."
281
  msgstr "No mostrar miniaturas, solo texto."
282
 
283
+ #: admin.inc.php:329 admin.inc.php:389
284
  msgid "Maximum width of the thumbnail: "
285
  msgstr ""
286
 
287
+ #: admin.inc.php:332 admin.inc.php:392
288
  msgid "Maximum height of the thumbnail: "
289
  msgstr ""
290
 
291
+ #: admin.inc.php:335
292
  msgid "Use timthumb to generate thumbnails? "
293
  msgstr ""
294
 
295
+ #: admin.inc.php:336
296
  msgid ""
297
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
298
  "\">timthumb</a> will be used to generate thumbnails"
299
  msgstr ""
300
 
301
+ #: admin.inc.php:338
302
  msgid "Quality of thumbnails generated by timthumb"
303
  msgstr ""
304
 
305
+ #: admin.inc.php:341
306
  msgid ""
307
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
308
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
309
  msgstr ""
310
 
311
+ #: admin.inc.php:344
312
  #, fuzzy
313
  msgid "Post thumbnail meta field name: "
314
  msgstr "Opciones de miniaturas en el post:"
315
 
316
+ #: admin.inc.php:345
317
  msgid ""
318
  "The value of this field should contain the image source and is set in the "
319
  "<em>Add New Post</em> screen"
320
  msgstr ""
321
 
322
+ #: admin.inc.php:347
323
  #, fuzzy
324
  msgid ""
325
  "If the postmeta is not set, then should the plugin extract the first image "
329
  "del post. Esto puede relentizar la carga si la primera imágen es de gran "
330
  "tamaño"
331
 
332
+ #: admin.inc.php:348
333
  #, fuzzy
334
  msgid ""
335
  "This can slow down the loading of your page if the first image in the "
339
  "del post. Esto puede relentizar la carga si la primera imágen es de gran "
340
  "tamaño"
341
 
342
+ #: admin.inc.php:350
343
  msgid "Use default thumbnail? "
344
  msgstr ""
345
 
346
+ #: admin.inc.php:351
347
  msgid ""
348
  "If checked, when no thumbnail is found, show a default one from the URL "
349
  "below. If not checked and no thumbnail is found, no image will be shown."
350
  msgstr ""
351
 
352
+ #: admin.inc.php:353
353
  msgid "Default thumbnail: "
354
  msgstr ""
355
 
356
+ #: admin.inc.php:354
357
  #, fuzzy
358
  msgid ""
359
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
364
  "ninguno verificará el campo meta. Si no está disponible, entonces mostrará "
365
  "la imágen padrón especificada a continuación:"
366
 
367
+ #: admin.inc.php:359
368
  #, fuzzy
369
  msgid "Feed options"
370
  msgstr "Opciones:"
371
 
372
+ #: admin.inc.php:361
373
  msgid ""
374
  "Below options override the related posts settings for your blog feed. These "
375
  "only apply if you have selected to add related posts to Feeds in the General "
376
  "Options tab."
377
  msgstr ""
378
 
379
+ #: admin.inc.php:398
380
  msgid "Custom Styles"
381
  msgstr ""
382
 
383
+ #: admin.inc.php:400
384
  msgid "Custom CSS to add to header:"
385
  msgstr ""
386
 
387
+ #: admin.inc.php:403
388
  msgid ""
389
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
390
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
391
  "\">FAQ</a> for available CSS classes to style."
392
  msgstr ""
393
 
394
+ #: admin.inc.php:407
395
  #, fuzzy
396
  msgid "Save Options"
397
  msgstr "Opciones:"
398
 
399
+ #: admin.inc.php:408
400
  #, fuzzy
401
  msgid "Default Options"
402
  msgstr "Opciones de Salida:"
403
 
404
+ #: admin.inc.php:408
405
  msgid "Do you want to set options to Default?"
406
  msgstr "¿Quieres resetear las opciones?"
407
 
408
+ #: admin.inc.php:409
409
  msgid "Recreate Index"
410
  msgstr ""
411
 
412
+ #: admin.inc.php:409
413
  msgid "Are you sure you want to recreate the index?"
414
  msgstr "¿Está seguro que quiere recrear el index?"
415
 
416
+ #: admin.inc.php:426
417
  msgid "Contextual Related Posts"
418
  msgstr "Posts Relacionados Contextualmente"
419
 
420
+ #: admin.inc.php:426 contextual-related-posts.php:277
421
  msgid "Related Posts"
422
  msgstr "Post Relacionados"
423
 
424
+ #: admin.inc.php:434
425
  #, fuzzy
426
  msgid "plugin settings page"
427
  msgstr "sitio del plugin"
428
 
429
+ #: admin.inc.php:439
430
  msgid ""
431
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
432
  "visit the "
433
  msgstr ""
434
 
435
+ #: admin.inc.php:439
436
  msgid " to configure."
437
  msgstr ""
438
 
439
+ #: contextual-related-posts.php:136
440
  msgid "Powered by"
441
  msgstr "Creado por"
442
 
443
+ #: contextual-related-posts.php:276
444
  #, fuzzy
445
  msgid "Display Related Posts"
446
  msgstr "Mostrar \"Posts No Relacionados\""
447
 
448
+ #: contextual-related-posts.php:289
449
  msgid "Title"
450
  msgstr ""
451
 
452
+ #: contextual-related-posts.php:294
453
  msgid "No. of posts"
454
  msgstr ""
455
 
456
+ #: contextual-related-posts.php:299
457
  #, fuzzy
458
  msgid " Show excerpt?"
459
  msgstr "¿Mostrar extracto con los items?"
460
 
461
+ #: contextual-related-posts.php:303
462
  #, fuzzy
463
  msgid "Thumbnail options"
464
  msgstr "Opciones de miniaturas en el post:"
465
 
466
+ #: contextual-related-posts.php:305
467
  #, fuzzy
468
  msgid "Thumbnails inline, before title"
469
  msgstr "Miniaturas en línea con los posts"
470
 
471
+ #: contextual-related-posts.php:306
472
  #, fuzzy
473
  msgid "Thumbnails inline, after title"
474
  msgstr "Miniaturas en línea con los posts"
475
 
476
+ #: contextual-related-posts.php:307
477
  #, fuzzy
478
  msgid "Only thumbnails, no text"
479
  msgstr "Solo miniaturas, sin texto"
480
 
481
+ #: contextual-related-posts.php:308
482
  #, fuzzy
483
  msgid "No thumbnails, only text."
484
  msgstr "No mostrar miniaturas, solo texto."
485
 
486
+ #: contextual-related-posts.php:313
487
  #, fuzzy
488
  msgid "Thumbnail height"
489
  msgstr "Opciones de miniaturas en el post:"
490
 
491
+ #: contextual-related-posts.php:318
492
  #, fuzzy
493
  msgid "Thumbnail width"
494
  msgstr "Opciones de miniaturas en el post:"
495
 
496
+ #: contextual-related-posts.php:393
497
  msgid "<h3>Related Posts:</h3>"
498
  msgstr "<h3>Post Relacionados:</h3>"
499
 
500
+ #: contextual-related-posts.php:394
501
  #, fuzzy
502
+ msgid "No related posts found"
503
  msgstr "No hay posts relacionados"
504
 
505
+ #: contextual-related-posts.php:648
506
  msgid "Settings"
507
  msgstr "Opciones"
508
 
509
+ #: contextual-related-posts.php:663
510
  msgid "Donate"
511
  msgstr "Donar"
512
 
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: 2013-01-06 12:33-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,92 +12,102 @@ 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.5.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:93
19
  msgid "Options saved successfully."
20
  msgstr "Le opzioni sono state salvate correttamente."
21
 
22
- #: admin.inc.php:109
23
  msgid "Options set to Default."
24
  msgstr "Opzioni impostate alle predefinite."
25
 
26
- #: admin.inc.php:124
27
  msgid "Index recreated"
28
  msgstr "E' stato ricreato l'indice"
29
 
30
- #: admin.inc.php:137
31
  msgid "Support the development"
32
  msgstr "Sostieni lo sviluppo"
33
 
34
- #: admin.inc.php:145
35
  msgid "Enter amount in USD: "
36
  msgstr "Inserisci la cifra in USD: "
37
 
38
- #: admin.inc.php:149
39
  msgid "Send your donation to the author of"
40
  msgstr "Invia la tua donazione all'autore di"
41
 
42
- #: admin.inc.php:160
43
  #, fuzzy
44
  msgid "Quick Links"
45
  msgstr "Collegamenti veloci"
46
 
47
- #: admin.inc.php:162
48
  #, fuzzy
49
  msgid "Contextual Related Posts plugin page"
50
  msgstr "Contextual Related Posts "
51
 
52
- #: admin.inc.php:163
53
  msgid "Other plugins"
54
  msgstr "Altri plugin"
55
 
56
- #: admin.inc.php:164
57
  msgid "Ajay's blog"
58
  msgstr "Il blog di Ajay"
59
 
60
- #: admin.inc.php:165 contextual-related-posts.php:608
61
  msgid "Support"
62
  msgstr "Supporto"
63
 
64
- #: admin.inc.php:166
65
  msgid "Reviews"
66
  msgstr ""
67
 
68
- #: admin.inc.php:170
69
  msgid "Recent developments"
70
  msgstr "Sviluppi recenti"
71
 
72
- #: admin.inc.php:180
73
  msgid "General options"
74
  msgstr ""
75
 
76
- #: admin.inc.php:182 admin.inc.php:354
 
 
 
 
 
 
 
 
 
 
77
  msgid "Number of related posts to display: "
78
  msgstr "numero di articoli correlati da mostrare:"
79
 
80
- #: admin.inc.php:185
81
  msgid "Related posts should be newer than:"
82
  msgstr ""
83
 
84
- #: admin.inc.php:186
85
  msgid "days"
86
  msgstr ""
87
 
88
- #: admin.inc.php:188
89
  msgid "Post types to include in results (including custom post types)"
90
  msgstr ""
91
 
92
- #: admin.inc.php:199
93
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
94
  msgstr ""
95
 
96
- #: admin.inc.php:202
97
  msgid "Find related posts based on content as well as title"
98
  msgstr ""
99
 
100
- #: admin.inc.php:203
101
  #, fuzzy
102
  msgid ""
103
  "If unchecked, only posts titles are used. (I recommend using a caching "
@@ -107,48 +117,55 @@ msgstr ""
107
  "disattivata, verranno utilizzati i soli titoli dei post. (in questo caso é "
108
  "preferibile attivare un plugin per la cache)"
109
 
110
- #: admin.inc.php:205
111
  msgid "List of post or page IDs to exclude from the results: "
112
  msgstr ""
113
 
114
- #: admin.inc.php:208
115
  msgid "Categories to exclude from the results: "
116
  msgstr ""
117
 
118
- #: admin.inc.php:226
 
 
 
 
 
 
 
119
  #, fuzzy
120
  msgid "Add related posts to:"
121
  msgstr "aggiungi gli articoli correlati al feed"
122
 
123
- #: admin.inc.php:228
124
  msgid "Posts"
125
  msgstr ""
126
 
127
- #: admin.inc.php:229
128
  msgid "Pages"
129
  msgstr ""
130
 
131
- #: admin.inc.php:230
132
  msgid "Home page"
133
  msgstr ""
134
 
135
- #: admin.inc.php:231
136
  msgid "Feeds"
137
  msgstr ""
138
 
139
- #: admin.inc.php:232
140
  msgid "Category archives"
141
  msgstr ""
142
 
143
- #: admin.inc.php:233
144
  msgid "Tag archives"
145
  msgstr ""
146
 
147
- #: admin.inc.php:234
148
  msgid "Other archives"
149
  msgstr ""
150
 
151
- #: admin.inc.php:235
152
  #, fuzzy
153
  msgid ""
154
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
@@ -159,150 +176,150 @@ msgstr ""
159
  "inserisci <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp"
160
  "(); ?&gt;</code> nel tuo template laddove desideri che siano visualizzati"
161
 
162
- #: admin.inc.php:238
163
  msgid "Add a link to the plugin page as a final item in the list"
164
  msgstr ""
165
 
166
- #: admin.inc.php:239
167
  msgid " <em>Optional</em>"
168
  msgstr ""
169
 
170
- #: admin.inc.php:246
171
  #, fuzzy
172
  msgid "Output options"
173
  msgstr "Opzioni output:"
174
 
175
- #: admin.inc.php:248
176
  msgid "Title of related posts: "
177
  msgstr "titolo per gli articoli correlati:"
178
 
179
- #: admin.inc.php:251
180
  msgid "When there are no posts, what should be shown?"
181
  msgstr "Cosa desideri mostrare in assenza di articoli?"
182
 
183
- #: admin.inc.php:255
184
  msgid "Blank Output"
185
  msgstr "nulla"
186
 
187
- #: admin.inc.php:259
188
  msgid "Display:"
189
  msgstr ""
190
 
191
- #: admin.inc.php:263 admin.inc.php:357
192
  msgid "Show post excerpt in list?"
193
  msgstr "Desideri mostrare gli estratti?"
194
 
195
- #: admin.inc.php:266
196
  msgid "Length of excerpt (in words): "
197
  msgstr "Lunghezza estratto (in parole): "
198
 
199
- #: admin.inc.php:269
200
  msgid "Limit post title length (in characters)"
201
  msgstr ""
202
 
203
- #: admin.inc.php:272
204
  msgid "Open links in new window"
205
  msgstr ""
206
 
207
- #: admin.inc.php:275
208
  msgid "Add nofollow attribute to links in the list"
209
  msgstr ""
210
 
211
- #: admin.inc.php:278
212
  #, fuzzy
213
  msgid "Exclude display of related posts on these posts / pages"
214
  msgstr "aggiungi gli articoli correlati al feed"
215
 
216
- #: admin.inc.php:281
217
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
218
  msgstr ""
219
 
220
- #: admin.inc.php:284
221
  msgid "Customize the output:"
222
  msgstr "Personalizzazione output:"
223
 
224
- #: admin.inc.php:286
225
  msgid "HTML to display before the list of posts: "
226
  msgstr "HTML da mostrare davanti alla lista degli articoli:"
227
 
228
- #: admin.inc.php:289
229
  msgid "HTML to display before each list item: "
230
  msgstr "HTML da mostrare davanti ad ogni singola lista:"
231
 
232
- #: admin.inc.php:292
233
  msgid "HTML to display after each list item: "
234
  msgstr "HTML da mostrare dopo ogni lista:"
235
 
236
- #: admin.inc.php:295
237
  msgid "HTML to display after the list of posts: "
238
  msgstr "HTML da mostrare dopo la lista degli articoli:"
239
 
240
- #: admin.inc.php:298
241
  msgid "Post thumbnail options:"
242
  msgstr "Opzioni miniature articolo:"
243
 
244
- #: admin.inc.php:300 admin.inc.php:360
245
  msgid "Location of post thumbnail:"
246
  msgstr ""
247
 
248
- #: admin.inc.php:304 admin.inc.php:364
249
  #, fuzzy
250
  msgid "Display thumbnails inline with posts, before title"
251
  msgstr "Mostra gli articoli con le miniature inline"
252
 
253
- #: admin.inc.php:308 admin.inc.php:368
254
  #, fuzzy
255
  msgid "Display thumbnails inline with posts, after title"
256
  msgstr "Mostra gli articoli con le miniature inline"
257
 
258
- #: admin.inc.php:312 admin.inc.php:372
259
  msgid "Display only thumbnails, no text"
260
  msgstr "Mostra le sole miniature, nessun testo"
261
 
262
- #: admin.inc.php:316 admin.inc.php:376
263
  msgid "Do not display thumbnails, only text."
264
  msgstr "Non mostrare le miniature, solo testo."
265
 
266
- #: admin.inc.php:320 admin.inc.php:380
267
  msgid "Maximum width of the thumbnail: "
268
  msgstr ""
269
 
270
- #: admin.inc.php:323 admin.inc.php:383
271
  msgid "Maximum height of the thumbnail: "
272
  msgstr ""
273
 
274
- #: admin.inc.php:326
275
  msgid "Use timthumb to generate thumbnails? "
276
  msgstr ""
277
 
278
- #: admin.inc.php:327
279
  msgid ""
280
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
281
  "\">timthumb</a> will be used to generate thumbnails"
282
  msgstr ""
283
 
284
- #: admin.inc.php:329
285
  msgid "Quality of thumbnails generated by timthumb"
286
  msgstr ""
287
 
288
- #: admin.inc.php:332
289
  msgid ""
290
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
291
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
292
  msgstr ""
293
 
294
- #: admin.inc.php:335
295
  #, fuzzy
296
  msgid "Post thumbnail meta field name: "
297
  msgstr "Opzioni miniature articolo:"
298
 
299
- #: admin.inc.php:336
300
  msgid ""
301
  "The value of this field should contain the image source and is set in the "
302
  "<em>Add New Post</em> screen"
303
  msgstr ""
304
 
305
- #: admin.inc.php:338
306
  #, fuzzy
307
  msgid ""
308
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -313,7 +330,7 @@ msgstr ""
313
  "tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
314
  "dimensioni"
315
 
316
- #: admin.inc.php:339
317
  #, fuzzy
318
  msgid ""
319
  "This can slow down the loading of your page if the first image in the "
@@ -324,21 +341,21 @@ msgstr ""
324
  "tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
325
  "dimensioni"
326
 
327
- #: admin.inc.php:341
328
  msgid "Use default thumbnail? "
329
  msgstr ""
330
 
331
- #: admin.inc.php:342
332
  msgid ""
333
  "If checked, when no thumbnail is found, show a default one from the URL "
334
  "below. If not checked and no thumbnail is found, no image will be shown."
335
  msgstr ""
336
 
337
- #: admin.inc.php:344
338
  msgid "Default thumbnail: "
339
  msgstr ""
340
 
341
- #: admin.inc.php:345
342
  #, fuzzy
343
  msgid ""
344
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -350,149 +367,149 @@ msgstr ""
350
  "meta. Qualora non fosse disponibile, mostrerà l'immagine predefinita come "
351
  "specificato qui sotto:"
352
 
353
- #: admin.inc.php:350
354
  #, fuzzy
355
  msgid "Feed options"
356
  msgstr "Opzioni:"
357
 
358
- #: admin.inc.php:352
359
  msgid ""
360
  "Below options override the related posts settings for your blog feed. These "
361
  "only apply if you have selected to add related posts to Feeds in the General "
362
  "Options tab."
363
  msgstr ""
364
 
365
- #: admin.inc.php:389
366
  msgid "Custom Styles"
367
  msgstr ""
368
 
369
- #: admin.inc.php:391
370
  msgid "Custom CSS to add to header:"
371
  msgstr ""
372
 
373
- #: admin.inc.php:394
374
  msgid ""
375
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
376
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
377
  "\">FAQ</a> for available CSS classes to style."
378
  msgstr ""
379
 
380
- #: admin.inc.php:398
381
  #, fuzzy
382
  msgid "Save Options"
383
  msgstr "Opzioni:"
384
 
385
- #: admin.inc.php:399
386
  #, fuzzy
387
  msgid "Default Options"
388
  msgstr "Opzioni output:"
389
 
390
- #: admin.inc.php:399
391
  msgid "Do you want to set options to Default?"
392
  msgstr "Sei certo di volere impostare alle opzioni predefinite?"
393
 
394
- #: admin.inc.php:400
395
  msgid "Recreate Index"
396
  msgstr ""
397
 
398
- #: admin.inc.php:400
399
  msgid "Are you sure you want to recreate the index?"
400
  msgstr "Sei certo di volere ricreare l'indice?"
401
 
402
- #: admin.inc.php:417
403
  msgid "Contextual Related Posts"
404
  msgstr "Contextual Related Posts"
405
 
406
- #: admin.inc.php:417 contextual-related-posts.php:240
407
  msgid "Related Posts"
408
  msgstr "Related Posts"
409
 
410
- #: admin.inc.php:425
411
  #, fuzzy
412
  msgid "plugin settings page"
413
  msgstr "pagina plugin"
414
 
415
- #: admin.inc.php:430
416
  msgid ""
417
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
418
  "visit the "
419
  msgstr ""
420
 
421
- #: admin.inc.php:430
422
  msgid " to configure."
423
  msgstr ""
424
 
425
- #: contextual-related-posts.php:162
426
  msgid "Powered by"
427
  msgstr "Powered by"
428
 
429
- #: contextual-related-posts.php:239
430
  #, fuzzy
431
  msgid "Display Related Posts"
432
  msgstr "\"Nessun articolo correlato\""
433
 
434
- #: contextual-related-posts.php:252
435
  msgid "Title"
436
  msgstr ""
437
 
438
- #: contextual-related-posts.php:257
439
  msgid "No. of posts"
440
  msgstr ""
441
 
442
- #: contextual-related-posts.php:262
443
  #, fuzzy
444
  msgid " Show excerpt?"
445
  msgstr "Desideri mostrare gli estratti?"
446
 
447
- #: contextual-related-posts.php:266
448
  #, fuzzy
449
  msgid "Thumbnail options"
450
  msgstr "Opzioni miniature articolo:"
451
 
452
- #: contextual-related-posts.php:268
453
  #, fuzzy
454
  msgid "Thumbnails inline, before title"
455
  msgstr "Mostra gli articoli con le miniature inline"
456
 
457
- #: contextual-related-posts.php:269
458
  #, fuzzy
459
  msgid "Thumbnails inline, after title"
460
  msgstr "Mostra gli articoli con le miniature inline"
461
 
462
- #: contextual-related-posts.php:270
463
  #, fuzzy
464
  msgid "Only thumbnails, no text"
465
  msgstr "Mostra le sole miniature, nessun testo"
466
 
467
- #: contextual-related-posts.php:271
468
  #, fuzzy
469
  msgid "No thumbnails, only text."
470
  msgstr "Non mostrare le miniature, solo testo."
471
 
472
- #: contextual-related-posts.php:276
473
  #, fuzzy
474
  msgid "Thumbnail height"
475
  msgstr "Opzioni miniature articolo:"
476
 
477
- #: contextual-related-posts.php:281
478
  #, fuzzy
479
  msgid "Thumbnail width"
480
  msgstr "Opzioni miniature articolo:"
481
 
482
- #: contextual-related-posts.php:340
483
  msgid "<h3>Related Posts:</h3>"
484
  msgstr "<h3>Related Posts:</h3>"
485
 
486
- #: contextual-related-posts.php:341
487
  #, fuzzy
488
- msgid "No related posts founds"
489
  msgstr "Non é stato trovato alcun articolo correlato"
490
 
491
- #: contextual-related-posts.php:594
492
  msgid "Settings"
493
  msgstr "Impostazioni"
494
 
495
- #: contextual-related-posts.php:609
496
  msgid "Donate"
497
  msgstr "Donazioni"
498
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts in italiano\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-04-07 23:41-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.5.5\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:96
19
  msgid "Options saved successfully."
20
  msgstr "Le opzioni sono state salvate correttamente."
21
 
22
+ #: admin.inc.php:112
23
  msgid "Options set to Default."
24
  msgstr "Opzioni impostate alle predefinite."
25
 
26
+ #: admin.inc.php:127
27
  msgid "Index recreated"
28
  msgstr "E' stato ricreato l'indice"
29
 
30
+ #: admin.inc.php:140
31
  msgid "Support the development"
32
  msgstr "Sostieni lo sviluppo"
33
 
34
+ #: admin.inc.php:148
35
  msgid "Enter amount in USD: "
36
  msgstr "Inserisci la cifra in USD: "
37
 
38
+ #: admin.inc.php:152
39
  msgid "Send your donation to the author of"
40
  msgstr "Invia la tua donazione all'autore di"
41
 
42
+ #: admin.inc.php:163
43
  #, fuzzy
44
  msgid "Quick Links"
45
  msgstr "Collegamenti veloci"
46
 
47
+ #: admin.inc.php:165
48
  #, fuzzy
49
  msgid "Contextual Related Posts plugin page"
50
  msgstr "Contextual Related Posts "
51
 
52
+ #: admin.inc.php:166
53
  msgid "Other plugins"
54
  msgstr "Altri plugin"
55
 
56
+ #: admin.inc.php:167
57
  msgid "Ajay's blog"
58
  msgstr "Il blog di Ajay"
59
 
60
+ #: admin.inc.php:168 contextual-related-posts.php:662
61
  msgid "Support"
62
  msgstr "Supporto"
63
 
64
+ #: admin.inc.php:169
65
  msgid "Reviews"
66
  msgstr ""
67
 
68
+ #: admin.inc.php:173
69
  msgid "Recent developments"
70
  msgstr "Sviluppi recenti"
71
 
72
+ #: admin.inc.php:183
73
  msgid "General options"
74
  msgstr ""
75
 
76
+ #: admin.inc.php:185
77
+ msgid "Cache output?"
78
+ msgstr ""
79
+
80
+ #: admin.inc.php:187
81
+ msgid ""
82
+ "Enabling this option will cache the related posts output when the post is "
83
+ "visited the first time. The cache is cleaned when you save this page."
84
+ msgstr ""
85
+
86
+ #: admin.inc.php:190 admin.inc.php:363
87
  msgid "Number of related posts to display: "
88
  msgstr "numero di articoli correlati da mostrare:"
89
 
90
+ #: admin.inc.php:193
91
  msgid "Related posts should be newer than:"
92
  msgstr ""
93
 
94
+ #: admin.inc.php:194
95
  msgid "days"
96
  msgstr ""
97
 
98
+ #: admin.inc.php:196
99
  msgid "Post types to include in results (including custom post types)"
100
  msgstr ""
101
 
102
+ #: admin.inc.php:207
103
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
104
  msgstr ""
105
 
106
+ #: admin.inc.php:210
107
  msgid "Find related posts based on content as well as title"
108
  msgstr ""
109
 
110
+ #: admin.inc.php:211
111
  #, fuzzy
112
  msgid ""
113
  "If unchecked, only posts titles are used. (I recommend using a caching "
117
  "disattivata, verranno utilizzati i soli titoli dei post. (in questo caso é "
118
  "preferibile attivare un plugin per la cache)"
119
 
120
+ #: admin.inc.php:213
121
  msgid "List of post or page IDs to exclude from the results: "
122
  msgstr ""
123
 
124
+ #: admin.inc.php:216
125
  msgid "Categories to exclude from the results: "
126
  msgstr ""
127
 
128
+ #: admin.inc.php:232
129
+ msgid ""
130
+ "Comma separated list of category slugs. The field above has an autocomplete "
131
+ "so simply start typing in the starting letters and it will prompt you with "
132
+ "options"
133
+ msgstr ""
134
+
135
+ #: admin.inc.php:235
136
  #, fuzzy
137
  msgid "Add related posts to:"
138
  msgstr "aggiungi gli articoli correlati al feed"
139
 
140
+ #: admin.inc.php:237
141
  msgid "Posts"
142
  msgstr ""
143
 
144
+ #: admin.inc.php:238
145
  msgid "Pages"
146
  msgstr ""
147
 
148
+ #: admin.inc.php:239
149
  msgid "Home page"
150
  msgstr ""
151
 
152
+ #: admin.inc.php:240
153
  msgid "Feeds"
154
  msgstr ""
155
 
156
+ #: admin.inc.php:241
157
  msgid "Category archives"
158
  msgstr ""
159
 
160
+ #: admin.inc.php:242
161
  msgid "Tag archives"
162
  msgstr ""
163
 
164
+ #: admin.inc.php:243
165
  msgid "Other archives"
166
  msgstr ""
167
 
168
+ #: admin.inc.php:244
169
  #, fuzzy
170
  msgid ""
171
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
176
  "inserisci <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp"
177
  "(); ?&gt;</code> nel tuo template laddove desideri che siano visualizzati"
178
 
179
+ #: admin.inc.php:247
180
  msgid "Add a link to the plugin page as a final item in the list"
181
  msgstr ""
182
 
183
+ #: admin.inc.php:248
184
  msgid " <em>Optional</em>"
185
  msgstr ""
186
 
187
+ #: admin.inc.php:255
188
  #, fuzzy
189
  msgid "Output options"
190
  msgstr "Opzioni output:"
191
 
192
+ #: admin.inc.php:257
193
  msgid "Title of related posts: "
194
  msgstr "titolo per gli articoli correlati:"
195
 
196
+ #: admin.inc.php:260
197
  msgid "When there are no posts, what should be shown?"
198
  msgstr "Cosa desideri mostrare in assenza di articoli?"
199
 
200
+ #: admin.inc.php:264
201
  msgid "Blank Output"
202
  msgstr "nulla"
203
 
204
+ #: admin.inc.php:268
205
  msgid "Display:"
206
  msgstr ""
207
 
208
+ #: admin.inc.php:272 admin.inc.php:366
209
  msgid "Show post excerpt in list?"
210
  msgstr "Desideri mostrare gli estratti?"
211
 
212
+ #: admin.inc.php:275
213
  msgid "Length of excerpt (in words): "
214
  msgstr "Lunghezza estratto (in parole): "
215
 
216
+ #: admin.inc.php:278
217
  msgid "Limit post title length (in characters)"
218
  msgstr ""
219
 
220
+ #: admin.inc.php:281
221
  msgid "Open links in new window"
222
  msgstr ""
223
 
224
+ #: admin.inc.php:284
225
  msgid "Add nofollow attribute to links in the list"
226
  msgstr ""
227
 
228
+ #: admin.inc.php:287
229
  #, fuzzy
230
  msgid "Exclude display of related posts on these posts / pages"
231
  msgstr "aggiungi gli articoli correlati al feed"
232
 
233
+ #: admin.inc.php:290
234
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
235
  msgstr ""
236
 
237
+ #: admin.inc.php:293
238
  msgid "Customize the output:"
239
  msgstr "Personalizzazione output:"
240
 
241
+ #: admin.inc.php:295
242
  msgid "HTML to display before the list of posts: "
243
  msgstr "HTML da mostrare davanti alla lista degli articoli:"
244
 
245
+ #: admin.inc.php:298
246
  msgid "HTML to display before each list item: "
247
  msgstr "HTML da mostrare davanti ad ogni singola lista:"
248
 
249
+ #: admin.inc.php:301
250
  msgid "HTML to display after each list item: "
251
  msgstr "HTML da mostrare dopo ogni lista:"
252
 
253
+ #: admin.inc.php:304
254
  msgid "HTML to display after the list of posts: "
255
  msgstr "HTML da mostrare dopo la lista degli articoli:"
256
 
257
+ #: admin.inc.php:307
258
  msgid "Post thumbnail options:"
259
  msgstr "Opzioni miniature articolo:"
260
 
261
+ #: admin.inc.php:309 admin.inc.php:369
262
  msgid "Location of post thumbnail:"
263
  msgstr ""
264
 
265
+ #: admin.inc.php:313 admin.inc.php:373
266
  #, fuzzy
267
  msgid "Display thumbnails inline with posts, before title"
268
  msgstr "Mostra gli articoli con le miniature inline"
269
 
270
+ #: admin.inc.php:317 admin.inc.php:377
271
  #, fuzzy
272
  msgid "Display thumbnails inline with posts, after title"
273
  msgstr "Mostra gli articoli con le miniature inline"
274
 
275
+ #: admin.inc.php:321 admin.inc.php:381
276
  msgid "Display only thumbnails, no text"
277
  msgstr "Mostra le sole miniature, nessun testo"
278
 
279
+ #: admin.inc.php:325 admin.inc.php:385
280
  msgid "Do not display thumbnails, only text."
281
  msgstr "Non mostrare le miniature, solo testo."
282
 
283
+ #: admin.inc.php:329 admin.inc.php:389
284
  msgid "Maximum width of the thumbnail: "
285
  msgstr ""
286
 
287
+ #: admin.inc.php:332 admin.inc.php:392
288
  msgid "Maximum height of the thumbnail: "
289
  msgstr ""
290
 
291
+ #: admin.inc.php:335
292
  msgid "Use timthumb to generate thumbnails? "
293
  msgstr ""
294
 
295
+ #: admin.inc.php:336
296
  msgid ""
297
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
298
  "\">timthumb</a> will be used to generate thumbnails"
299
  msgstr ""
300
 
301
+ #: admin.inc.php:338
302
  msgid "Quality of thumbnails generated by timthumb"
303
  msgstr ""
304
 
305
+ #: admin.inc.php:341
306
  msgid ""
307
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
308
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
309
  msgstr ""
310
 
311
+ #: admin.inc.php:344
312
  #, fuzzy
313
  msgid "Post thumbnail meta field name: "
314
  msgstr "Opzioni miniature articolo:"
315
 
316
+ #: admin.inc.php:345
317
  msgid ""
318
  "The value of this field should contain the image source and is set in the "
319
  "<em>Add New Post</em> screen"
320
  msgstr ""
321
 
322
+ #: admin.inc.php:347
323
  #, fuzzy
324
  msgid ""
325
  "If the postmeta is not set, then should the plugin extract the first image "
330
  "tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
331
  "dimensioni"
332
 
333
+ #: admin.inc.php:348
334
  #, fuzzy
335
  msgid ""
336
  "This can slow down the loading of your page if the first image in the "
341
  "tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
342
  "dimensioni"
343
 
344
+ #: admin.inc.php:350
345
  msgid "Use default thumbnail? "
346
  msgstr ""
347
 
348
+ #: admin.inc.php:351
349
  msgid ""
350
  "If checked, when no thumbnail is found, show a default one from the URL "
351
  "below. If not checked and no thumbnail is found, no image will be shown."
352
  msgstr ""
353
 
354
+ #: admin.inc.php:353
355
  msgid "Default thumbnail: "
356
  msgstr ""
357
 
358
+ #: admin.inc.php:354
359
  #, fuzzy
360
  msgid ""
361
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
367
  "meta. Qualora non fosse disponibile, mostrerà l'immagine predefinita come "
368
  "specificato qui sotto:"
369
 
370
+ #: admin.inc.php:359
371
  #, fuzzy
372
  msgid "Feed options"
373
  msgstr "Opzioni:"
374
 
375
+ #: admin.inc.php:361
376
  msgid ""
377
  "Below options override the related posts settings for your blog feed. These "
378
  "only apply if you have selected to add related posts to Feeds in the General "
379
  "Options tab."
380
  msgstr ""
381
 
382
+ #: admin.inc.php:398
383
  msgid "Custom Styles"
384
  msgstr ""
385
 
386
+ #: admin.inc.php:400
387
  msgid "Custom CSS to add to header:"
388
  msgstr ""
389
 
390
+ #: admin.inc.php:403
391
  msgid ""
392
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
393
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
394
  "\">FAQ</a> for available CSS classes to style."
395
  msgstr ""
396
 
397
+ #: admin.inc.php:407
398
  #, fuzzy
399
  msgid "Save Options"
400
  msgstr "Opzioni:"
401
 
402
+ #: admin.inc.php:408
403
  #, fuzzy
404
  msgid "Default Options"
405
  msgstr "Opzioni output:"
406
 
407
+ #: admin.inc.php:408
408
  msgid "Do you want to set options to Default?"
409
  msgstr "Sei certo di volere impostare alle opzioni predefinite?"
410
 
411
+ #: admin.inc.php:409
412
  msgid "Recreate Index"
413
  msgstr ""
414
 
415
+ #: admin.inc.php:409
416
  msgid "Are you sure you want to recreate the index?"
417
  msgstr "Sei certo di volere ricreare l'indice?"
418
 
419
+ #: admin.inc.php:426
420
  msgid "Contextual Related Posts"
421
  msgstr "Contextual Related Posts"
422
 
423
+ #: admin.inc.php:426 contextual-related-posts.php:277
424
  msgid "Related Posts"
425
  msgstr "Related Posts"
426
 
427
+ #: admin.inc.php:434
428
  #, fuzzy
429
  msgid "plugin settings page"
430
  msgstr "pagina plugin"
431
 
432
+ #: admin.inc.php:439
433
  msgid ""
434
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
435
  "visit the "
436
  msgstr ""
437
 
438
+ #: admin.inc.php:439
439
  msgid " to configure."
440
  msgstr ""
441
 
442
+ #: contextual-related-posts.php:136
443
  msgid "Powered by"
444
  msgstr "Powered by"
445
 
446
+ #: contextual-related-posts.php:276
447
  #, fuzzy
448
  msgid "Display Related Posts"
449
  msgstr "\"Nessun articolo correlato\""
450
 
451
+ #: contextual-related-posts.php:289
452
  msgid "Title"
453
  msgstr ""
454
 
455
+ #: contextual-related-posts.php:294
456
  msgid "No. of posts"
457
  msgstr ""
458
 
459
+ #: contextual-related-posts.php:299
460
  #, fuzzy
461
  msgid " Show excerpt?"
462
  msgstr "Desideri mostrare gli estratti?"
463
 
464
+ #: contextual-related-posts.php:303
465
  #, fuzzy
466
  msgid "Thumbnail options"
467
  msgstr "Opzioni miniature articolo:"
468
 
469
+ #: contextual-related-posts.php:305
470
  #, fuzzy
471
  msgid "Thumbnails inline, before title"
472
  msgstr "Mostra gli articoli con le miniature inline"
473
 
474
+ #: contextual-related-posts.php:306
475
  #, fuzzy
476
  msgid "Thumbnails inline, after title"
477
  msgstr "Mostra gli articoli con le miniature inline"
478
 
479
+ #: contextual-related-posts.php:307
480
  #, fuzzy
481
  msgid "Only thumbnails, no text"
482
  msgstr "Mostra le sole miniature, nessun testo"
483
 
484
+ #: contextual-related-posts.php:308
485
  #, fuzzy
486
  msgid "No thumbnails, only text."
487
  msgstr "Non mostrare le miniature, solo testo."
488
 
489
+ #: contextual-related-posts.php:313
490
  #, fuzzy
491
  msgid "Thumbnail height"
492
  msgstr "Opzioni miniature articolo:"
493
 
494
+ #: contextual-related-posts.php:318
495
  #, fuzzy
496
  msgid "Thumbnail width"
497
  msgstr "Opzioni miniature articolo:"
498
 
499
+ #: contextual-related-posts.php:393
500
  msgid "<h3>Related Posts:</h3>"
501
  msgstr "<h3>Related Posts:</h3>"
502
 
503
+ #: contextual-related-posts.php:394
504
  #, fuzzy
505
+ msgid "No related posts found"
506
  msgstr "Non é stato trovato alcun articolo correlato"
507
 
508
+ #: contextual-related-posts.php:648
509
  msgid "Settings"
510
  msgstr "Impostazioni"
511
 
512
+ #: contextual-related-posts.php:663
513
  msgid "Donate"
514
  msgstr "Donazioni"
515
 
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: 2013-01-06 12:33-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,92 +14,102 @@ 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.5.4\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: admin.inc.php:93
21
  msgid "Options saved successfully."
22
  msgstr "Opties succesvol opgeslagen."
23
 
24
- #: admin.inc.php:109
25
  msgid "Options set to Default."
26
  msgstr "Opties ingesteld op standaard."
27
 
28
- #: admin.inc.php:124
29
  msgid "Index recreated"
30
  msgstr "Index opnieuw gemaakt"
31
 
32
- #: admin.inc.php:137
33
  msgid "Support the development"
34
  msgstr "Ondersteun de ontwikkeling"
35
 
36
- #: admin.inc.php:145
37
  msgid "Enter amount in USD: "
38
  msgstr "Voer het bedrag in USD in:"
39
 
40
- #: admin.inc.php:149
41
  msgid "Send your donation to the author of"
42
  msgstr "Stuur je donatie aan de auteur van"
43
 
44
- #: admin.inc.php:160
45
  #, fuzzy
46
  msgid "Quick Links"
47
  msgstr "Quick links"
48
 
49
- #: admin.inc.php:162
50
  #, fuzzy
51
  msgid "Contextual Related Posts plugin page"
52
  msgstr "Contextual Related Posts "
53
 
54
- #: admin.inc.php:163
55
  msgid "Other plugins"
56
  msgstr "Andere plugins"
57
 
58
- #: admin.inc.php:164
59
  msgid "Ajay's blog"
60
  msgstr "Ajay's blog"
61
 
62
- #: admin.inc.php:165 contextual-related-posts.php:608
63
  msgid "Support"
64
  msgstr "Ondersteuning"
65
 
66
- #: admin.inc.php:166
67
  msgid "Reviews"
68
  msgstr ""
69
 
70
- #: admin.inc.php:170
71
  msgid "Recent developments"
72
  msgstr "Recente ontwikkelingen"
73
 
74
- #: admin.inc.php:180
75
  msgid "General options"
76
  msgstr ""
77
 
78
- #: admin.inc.php:182 admin.inc.php:354
 
 
 
 
 
 
 
 
 
 
79
  msgid "Number of related posts to display: "
80
  msgstr "Aantal weer te geven gerelateerde berichten:"
81
 
82
- #: admin.inc.php:185
83
  msgid "Related posts should be newer than:"
84
  msgstr ""
85
 
86
- #: admin.inc.php:186
87
  msgid "days"
88
  msgstr ""
89
 
90
- #: admin.inc.php:188
91
  msgid "Post types to include in results (including custom post types)"
92
  msgstr ""
93
 
94
- #: admin.inc.php:199
95
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
96
  msgstr ""
97
 
98
- #: admin.inc.php:202
99
  msgid "Find related posts based on content as well as title"
100
  msgstr ""
101
 
102
- #: admin.inc.php:203
103
  #, fuzzy
104
  msgid ""
105
  "If unchecked, only posts titles are used. (I recommend using a caching "
@@ -109,48 +119,55 @@ msgstr ""
109
  "niet geselecteerd worden er alleen berichttitels gebruikt. (Ik beveel het "
110
  "gebruik van een caching plugin aan wanneer je dit inschakelt)"
111
 
112
- #: admin.inc.php:205
113
  msgid "List of post or page IDs to exclude from the results: "
114
  msgstr ""
115
 
116
- #: admin.inc.php:208
117
  msgid "Categories to exclude from the results: "
118
  msgstr ""
119
 
120
- #: admin.inc.php:226
 
 
 
 
 
 
 
121
  #, fuzzy
122
  msgid "Add related posts to:"
123
  msgstr "Voeg gerelateerde berichten toe aan feed"
124
 
125
- #: admin.inc.php:228
126
  msgid "Posts"
127
  msgstr ""
128
 
129
- #: admin.inc.php:229
130
  msgid "Pages"
131
  msgstr ""
132
 
133
- #: admin.inc.php:230
134
  msgid "Home page"
135
  msgstr ""
136
 
137
- #: admin.inc.php:231
138
  msgid "Feeds"
139
  msgstr ""
140
 
141
- #: admin.inc.php:232
142
  msgid "Category archives"
143
  msgstr ""
144
 
145
- #: admin.inc.php:233
146
  msgid "Tag archives"
147
  msgstr ""
148
 
149
- #: admin.inc.php:234
150
  msgid "Other archives"
151
  msgstr ""
152
 
153
- #: admin.inc.php:235
154
  #, fuzzy
155
  msgid ""
156
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
@@ -162,150 +179,150 @@ msgstr ""
162
  "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> toevoegen aan je sjabloon "
163
  "bestand waar je het wilt laten weergeven"
164
 
165
- #: admin.inc.php:238
166
  msgid "Add a link to the plugin page as a final item in the list"
167
  msgstr ""
168
 
169
- #: admin.inc.php:239
170
  msgid " <em>Optional</em>"
171
  msgstr ""
172
 
173
- #: admin.inc.php:246
174
  #, fuzzy
175
  msgid "Output options"
176
  msgstr "Output Opties:"
177
 
178
- #: admin.inc.php:248
179
  msgid "Title of related posts: "
180
  msgstr "Titel van gerelateerde berichten:"
181
 
182
- #: admin.inc.php:251
183
  msgid "When there are no posts, what should be shown?"
184
  msgstr "Wat moet er weergegeven worden wanneer er geen berichten zijn?"
185
 
186
- #: admin.inc.php:255
187
  msgid "Blank Output"
188
  msgstr "Lege Output"
189
 
190
- #: admin.inc.php:259
191
  msgid "Display:"
192
  msgstr ""
193
 
194
- #: admin.inc.php:263 admin.inc.php:357
195
  msgid "Show post excerpt in list?"
196
  msgstr "Laat bericht uittreksel zien in lijst?"
197
 
198
- #: admin.inc.php:266
199
  msgid "Length of excerpt (in words): "
200
  msgstr "Lengte van uittreksel (in woorden):"
201
 
202
- #: admin.inc.php:269
203
  msgid "Limit post title length (in characters)"
204
  msgstr ""
205
 
206
- #: admin.inc.php:272
207
  msgid "Open links in new window"
208
  msgstr ""
209
 
210
- #: admin.inc.php:275
211
  msgid "Add nofollow attribute to links in the list"
212
  msgstr ""
213
 
214
- #: admin.inc.php:278
215
  #, fuzzy
216
  msgid "Exclude display of related posts on these posts / pages"
217
  msgstr "Voeg gerelateerde berichten toe aan feed"
218
 
219
- #: admin.inc.php:281
220
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
221
  msgstr ""
222
 
223
- #: admin.inc.php:284
224
  msgid "Customize the output:"
225
  msgstr "Aanpassen van de output:"
226
 
227
- #: admin.inc.php:286
228
  msgid "HTML to display before the list of posts: "
229
  msgstr "Weer te geven HTML voor de berichtenlijst:"
230
 
231
- #: admin.inc.php:289
232
  msgid "HTML to display before each list item: "
233
  msgstr "Weer te geven HTML voor elk item in de lijst:"
234
 
235
- #: admin.inc.php:292
236
  msgid "HTML to display after each list item: "
237
  msgstr "Weer te geven HTML na elk item in de lijst:"
238
 
239
- #: admin.inc.php:295
240
  msgid "HTML to display after the list of posts: "
241
  msgstr "Weer te geven HTML na de berichtenlijst:"
242
 
243
- #: admin.inc.php:298
244
  msgid "Post thumbnail options:"
245
  msgstr "Berichtopties miniatuurafbeelding:"
246
 
247
- #: admin.inc.php:300 admin.inc.php:360
248
  msgid "Location of post thumbnail:"
249
  msgstr ""
250
 
251
- #: admin.inc.php:304 admin.inc.php:364
252
  #, fuzzy
253
  msgid "Display thumbnails inline with posts, before title"
254
  msgstr "Toon miniatuurafbeeldingen inline met berichten"
255
 
256
- #: admin.inc.php:308 admin.inc.php:368
257
  #, fuzzy
258
  msgid "Display thumbnails inline with posts, after title"
259
  msgstr "Toon miniatuurafbeeldingen inline met berichten"
260
 
261
- #: admin.inc.php:312 admin.inc.php:372
262
  msgid "Display only thumbnails, no text"
263
  msgstr "Alleen miniatuurafbeeldingen weergeven, geen tekst"
264
 
265
- #: admin.inc.php:316 admin.inc.php:376
266
  msgid "Do not display thumbnails, only text."
267
  msgstr "Geen miniatuurafbeeldingen weergeven, alleen tekst."
268
 
269
- #: admin.inc.php:320 admin.inc.php:380
270
  msgid "Maximum width of the thumbnail: "
271
  msgstr ""
272
 
273
- #: admin.inc.php:323 admin.inc.php:383
274
  msgid "Maximum height of the thumbnail: "
275
  msgstr ""
276
 
277
- #: admin.inc.php:326
278
  msgid "Use timthumb to generate thumbnails? "
279
  msgstr ""
280
 
281
- #: admin.inc.php:327
282
  msgid ""
283
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
284
  "\">timthumb</a> will be used to generate thumbnails"
285
  msgstr ""
286
 
287
- #: admin.inc.php:329
288
  msgid "Quality of thumbnails generated by timthumb"
289
  msgstr ""
290
 
291
- #: admin.inc.php:332
292
  msgid ""
293
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
294
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
295
  msgstr ""
296
 
297
- #: admin.inc.php:335
298
  #, fuzzy
299
  msgid "Post thumbnail meta field name: "
300
  msgstr "Berichtopties miniatuurafbeelding:"
301
 
302
- #: admin.inc.php:336
303
  msgid ""
304
  "The value of this field should contain the image source and is set in the "
305
  "<em>Add New Post</em> screen"
306
  msgstr ""
307
 
308
- #: admin.inc.php:338
309
  #, fuzzy
310
  msgid ""
311
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -315,7 +332,7 @@ msgstr ""
315
  "het bericht uitpakken. Dit kan het laden van uw bericht vertragen, indien "
316
  "het eerste beeld in de gerelateerde berichten groot is qua bestandsgrootte"
317
 
318
- #: admin.inc.php:339
319
  #, fuzzy
320
  msgid ""
321
  "This can slow down the loading of your page if the first image in the "
@@ -325,21 +342,21 @@ msgstr ""
325
  "het bericht uitpakken. Dit kan het laden van uw bericht vertragen, indien "
326
  "het eerste beeld in de gerelateerde berichten groot is qua bestandsgrootte"
327
 
328
- #: admin.inc.php:341
329
  msgid "Use default thumbnail? "
330
  msgstr ""
331
 
332
- #: admin.inc.php:342
333
  msgid ""
334
  "If checked, when no thumbnail is found, show a default one from the URL "
335
  "below. If not checked and no thumbnail is found, no image will be shown."
336
  msgstr ""
337
 
338
- #: admin.inc.php:344
339
  msgid "Default thumbnail: "
340
  msgstr ""
341
 
342
- #: admin.inc.php:345
343
  #, fuzzy
344
  msgid ""
345
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -351,149 +368,149 @@ msgstr ""
351
  "miniatuurafbeelding bevat wordt de standaard afbeelding getoond zoals "
352
  "hieronder aangegeven:"
353
 
354
- #: admin.inc.php:350
355
  #, fuzzy
356
  msgid "Feed options"
357
  msgstr "Opties:"
358
 
359
- #: admin.inc.php:352
360
  msgid ""
361
  "Below options override the related posts settings for your blog feed. These "
362
  "only apply if you have selected to add related posts to Feeds in the General "
363
  "Options tab."
364
  msgstr ""
365
 
366
- #: admin.inc.php:389
367
  msgid "Custom Styles"
368
  msgstr ""
369
 
370
- #: admin.inc.php:391
371
  msgid "Custom CSS to add to header:"
372
  msgstr ""
373
 
374
- #: admin.inc.php:394
375
  msgid ""
376
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
377
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
378
  "\">FAQ</a> for available CSS classes to style."
379
  msgstr ""
380
 
381
- #: admin.inc.php:398
382
  #, fuzzy
383
  msgid "Save Options"
384
  msgstr "Opties:"
385
 
386
- #: admin.inc.php:399
387
  #, fuzzy
388
  msgid "Default Options"
389
  msgstr "Output Opties:"
390
 
391
- #: admin.inc.php:399
392
  msgid "Do you want to set options to Default?"
393
  msgstr "Wil je opties terug naar standaard instellen?"
394
 
395
- #: admin.inc.php:400
396
  msgid "Recreate Index"
397
  msgstr ""
398
 
399
- #: admin.inc.php:400
400
  msgid "Are you sure you want to recreate the index?"
401
  msgstr "Weet je zeker dat je de index opnieuw wilt creeëren?"
402
 
403
- #: admin.inc.php:417
404
  msgid "Contextual Related Posts"
405
  msgstr "Contextual Related Posts"
406
 
407
- #: admin.inc.php:417 contextual-related-posts.php:240
408
  msgid "Related Posts"
409
  msgstr "Gerelateerde Berichten"
410
 
411
- #: admin.inc.php:425
412
  #, fuzzy
413
  msgid "plugin settings page"
414
  msgstr "plugin pagina"
415
 
416
- #: admin.inc.php:430
417
  msgid ""
418
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
419
  "visit the "
420
  msgstr ""
421
 
422
- #: admin.inc.php:430
423
  msgid " to configure."
424
  msgstr ""
425
 
426
- #: contextual-related-posts.php:162
427
  msgid "Powered by"
428
  msgstr "Powered by"
429
 
430
- #: contextual-related-posts.php:239
431
  #, fuzzy
432
  msgid "Display Related Posts"
433
  msgstr "Weergave \"Geen Gerelateerde Berichten\""
434
 
435
- #: contextual-related-posts.php:252
436
  msgid "Title"
437
  msgstr ""
438
 
439
- #: contextual-related-posts.php:257
440
  msgid "No. of posts"
441
  msgstr ""
442
 
443
- #: contextual-related-posts.php:262
444
  #, fuzzy
445
  msgid " Show excerpt?"
446
  msgstr "Laat bericht uittreksel zien in lijst?"
447
 
448
- #: contextual-related-posts.php:266
449
  #, fuzzy
450
  msgid "Thumbnail options"
451
  msgstr "Berichtopties miniatuurafbeelding:"
452
 
453
- #: contextual-related-posts.php:268
454
  #, fuzzy
455
  msgid "Thumbnails inline, before title"
456
  msgstr "Toon miniatuurafbeeldingen inline met berichten"
457
 
458
- #: contextual-related-posts.php:269
459
  #, fuzzy
460
  msgid "Thumbnails inline, after title"
461
  msgstr "Toon miniatuurafbeeldingen inline met berichten"
462
 
463
- #: contextual-related-posts.php:270
464
  #, fuzzy
465
  msgid "Only thumbnails, no text"
466
  msgstr "Alleen miniatuurafbeeldingen weergeven, geen tekst"
467
 
468
- #: contextual-related-posts.php:271
469
  #, fuzzy
470
  msgid "No thumbnails, only text."
471
  msgstr "Geen miniatuurafbeeldingen weergeven, alleen tekst."
472
 
473
- #: contextual-related-posts.php:276
474
  #, fuzzy
475
  msgid "Thumbnail height"
476
  msgstr "Berichtopties miniatuurafbeelding:"
477
 
478
- #: contextual-related-posts.php:281
479
  #, fuzzy
480
  msgid "Thumbnail width"
481
  msgstr "Berichtopties miniatuurafbeelding:"
482
 
483
- #: contextual-related-posts.php:340
484
  msgid "<h3>Related Posts:</h3>"
485
  msgstr "<h3>Gerelateerde Berichten:</h3>"
486
 
487
- #: contextual-related-posts.php:341
488
  #, fuzzy
489
- msgid "No related posts founds"
490
  msgstr "Geen gerelateerde berichten gevonden"
491
 
492
- #: contextual-related-posts.php:594
493
  msgid "Settings"
494
  msgstr "Instellingen"
495
 
496
- #: contextual-related-posts.php:609
497
  msgid "Donate"
498
  msgstr "Doneren"
499
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-04-07 23: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
  "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.5.5\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: admin.inc.php:96
21
  msgid "Options saved successfully."
22
  msgstr "Opties succesvol opgeslagen."
23
 
24
+ #: admin.inc.php:112
25
  msgid "Options set to Default."
26
  msgstr "Opties ingesteld op standaard."
27
 
28
+ #: admin.inc.php:127
29
  msgid "Index recreated"
30
  msgstr "Index opnieuw gemaakt"
31
 
32
+ #: admin.inc.php:140
33
  msgid "Support the development"
34
  msgstr "Ondersteun de ontwikkeling"
35
 
36
+ #: admin.inc.php:148
37
  msgid "Enter amount in USD: "
38
  msgstr "Voer het bedrag in USD in:"
39
 
40
+ #: admin.inc.php:152
41
  msgid "Send your donation to the author of"
42
  msgstr "Stuur je donatie aan de auteur van"
43
 
44
+ #: admin.inc.php:163
45
  #, fuzzy
46
  msgid "Quick Links"
47
  msgstr "Quick links"
48
 
49
+ #: admin.inc.php:165
50
  #, fuzzy
51
  msgid "Contextual Related Posts plugin page"
52
  msgstr "Contextual Related Posts "
53
 
54
+ #: admin.inc.php:166
55
  msgid "Other plugins"
56
  msgstr "Andere plugins"
57
 
58
+ #: admin.inc.php:167
59
  msgid "Ajay's blog"
60
  msgstr "Ajay's blog"
61
 
62
+ #: admin.inc.php:168 contextual-related-posts.php:662
63
  msgid "Support"
64
  msgstr "Ondersteuning"
65
 
66
+ #: admin.inc.php:169
67
  msgid "Reviews"
68
  msgstr ""
69
 
70
+ #: admin.inc.php:173
71
  msgid "Recent developments"
72
  msgstr "Recente ontwikkelingen"
73
 
74
+ #: admin.inc.php:183
75
  msgid "General options"
76
  msgstr ""
77
 
78
+ #: admin.inc.php:185
79
+ msgid "Cache output?"
80
+ msgstr ""
81
+
82
+ #: admin.inc.php:187
83
+ msgid ""
84
+ "Enabling this option will cache the related posts output when the post is "
85
+ "visited the first time. The cache is cleaned when you save this page."
86
+ msgstr ""
87
+
88
+ #: admin.inc.php:190 admin.inc.php:363
89
  msgid "Number of related posts to display: "
90
  msgstr "Aantal weer te geven gerelateerde berichten:"
91
 
92
+ #: admin.inc.php:193
93
  msgid "Related posts should be newer than:"
94
  msgstr ""
95
 
96
+ #: admin.inc.php:194
97
  msgid "days"
98
  msgstr ""
99
 
100
+ #: admin.inc.php:196
101
  msgid "Post types to include in results (including custom post types)"
102
  msgstr ""
103
 
104
+ #: admin.inc.php:207
105
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
106
  msgstr ""
107
 
108
+ #: admin.inc.php:210
109
  msgid "Find related posts based on content as well as title"
110
  msgstr ""
111
 
112
+ #: admin.inc.php:211
113
  #, fuzzy
114
  msgid ""
115
  "If unchecked, only posts titles are used. (I recommend using a caching "
119
  "niet geselecteerd worden er alleen berichttitels gebruikt. (Ik beveel het "
120
  "gebruik van een caching plugin aan wanneer je dit inschakelt)"
121
 
122
+ #: admin.inc.php:213
123
  msgid "List of post or page IDs to exclude from the results: "
124
  msgstr ""
125
 
126
+ #: admin.inc.php:216
127
  msgid "Categories to exclude from the results: "
128
  msgstr ""
129
 
130
+ #: admin.inc.php:232
131
+ msgid ""
132
+ "Comma separated list of category slugs. The field above has an autocomplete "
133
+ "so simply start typing in the starting letters and it will prompt you with "
134
+ "options"
135
+ msgstr ""
136
+
137
+ #: admin.inc.php:235
138
  #, fuzzy
139
  msgid "Add related posts to:"
140
  msgstr "Voeg gerelateerde berichten toe aan feed"
141
 
142
+ #: admin.inc.php:237
143
  msgid "Posts"
144
  msgstr ""
145
 
146
+ #: admin.inc.php:238
147
  msgid "Pages"
148
  msgstr ""
149
 
150
+ #: admin.inc.php:239
151
  msgid "Home page"
152
  msgstr ""
153
 
154
+ #: admin.inc.php:240
155
  msgid "Feeds"
156
  msgstr ""
157
 
158
+ #: admin.inc.php:241
159
  msgid "Category archives"
160
  msgstr ""
161
 
162
+ #: admin.inc.php:242
163
  msgid "Tag archives"
164
  msgstr ""
165
 
166
+ #: admin.inc.php:243
167
  msgid "Other archives"
168
  msgstr ""
169
 
170
+ #: admin.inc.php:244
171
  #, fuzzy
172
  msgid ""
173
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
179
  "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> toevoegen aan je sjabloon "
180
  "bestand waar je het wilt laten weergeven"
181
 
182
+ #: admin.inc.php:247
183
  msgid "Add a link to the plugin page as a final item in the list"
184
  msgstr ""
185
 
186
+ #: admin.inc.php:248
187
  msgid " <em>Optional</em>"
188
  msgstr ""
189
 
190
+ #: admin.inc.php:255
191
  #, fuzzy
192
  msgid "Output options"
193
  msgstr "Output Opties:"
194
 
195
+ #: admin.inc.php:257
196
  msgid "Title of related posts: "
197
  msgstr "Titel van gerelateerde berichten:"
198
 
199
+ #: admin.inc.php:260
200
  msgid "When there are no posts, what should be shown?"
201
  msgstr "Wat moet er weergegeven worden wanneer er geen berichten zijn?"
202
 
203
+ #: admin.inc.php:264
204
  msgid "Blank Output"
205
  msgstr "Lege Output"
206
 
207
+ #: admin.inc.php:268
208
  msgid "Display:"
209
  msgstr ""
210
 
211
+ #: admin.inc.php:272 admin.inc.php:366
212
  msgid "Show post excerpt in list?"
213
  msgstr "Laat bericht uittreksel zien in lijst?"
214
 
215
+ #: admin.inc.php:275
216
  msgid "Length of excerpt (in words): "
217
  msgstr "Lengte van uittreksel (in woorden):"
218
 
219
+ #: admin.inc.php:278
220
  msgid "Limit post title length (in characters)"
221
  msgstr ""
222
 
223
+ #: admin.inc.php:281
224
  msgid "Open links in new window"
225
  msgstr ""
226
 
227
+ #: admin.inc.php:284
228
  msgid "Add nofollow attribute to links in the list"
229
  msgstr ""
230
 
231
+ #: admin.inc.php:287
232
  #, fuzzy
233
  msgid "Exclude display of related posts on these posts / pages"
234
  msgstr "Voeg gerelateerde berichten toe aan feed"
235
 
236
+ #: admin.inc.php:290
237
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
238
  msgstr ""
239
 
240
+ #: admin.inc.php:293
241
  msgid "Customize the output:"
242
  msgstr "Aanpassen van de output:"
243
 
244
+ #: admin.inc.php:295
245
  msgid "HTML to display before the list of posts: "
246
  msgstr "Weer te geven HTML voor de berichtenlijst:"
247
 
248
+ #: admin.inc.php:298
249
  msgid "HTML to display before each list item: "
250
  msgstr "Weer te geven HTML voor elk item in de lijst:"
251
 
252
+ #: admin.inc.php:301
253
  msgid "HTML to display after each list item: "
254
  msgstr "Weer te geven HTML na elk item in de lijst:"
255
 
256
+ #: admin.inc.php:304
257
  msgid "HTML to display after the list of posts: "
258
  msgstr "Weer te geven HTML na de berichtenlijst:"
259
 
260
+ #: admin.inc.php:307
261
  msgid "Post thumbnail options:"
262
  msgstr "Berichtopties miniatuurafbeelding:"
263
 
264
+ #: admin.inc.php:309 admin.inc.php:369
265
  msgid "Location of post thumbnail:"
266
  msgstr ""
267
 
268
+ #: admin.inc.php:313 admin.inc.php:373
269
  #, fuzzy
270
  msgid "Display thumbnails inline with posts, before title"
271
  msgstr "Toon miniatuurafbeeldingen inline met berichten"
272
 
273
+ #: admin.inc.php:317 admin.inc.php:377
274
  #, fuzzy
275
  msgid "Display thumbnails inline with posts, after title"
276
  msgstr "Toon miniatuurafbeeldingen inline met berichten"
277
 
278
+ #: admin.inc.php:321 admin.inc.php:381
279
  msgid "Display only thumbnails, no text"
280
  msgstr "Alleen miniatuurafbeeldingen weergeven, geen tekst"
281
 
282
+ #: admin.inc.php:325 admin.inc.php:385
283
  msgid "Do not display thumbnails, only text."
284
  msgstr "Geen miniatuurafbeeldingen weergeven, alleen tekst."
285
 
286
+ #: admin.inc.php:329 admin.inc.php:389
287
  msgid "Maximum width of the thumbnail: "
288
  msgstr ""
289
 
290
+ #: admin.inc.php:332 admin.inc.php:392
291
  msgid "Maximum height of the thumbnail: "
292
  msgstr ""
293
 
294
+ #: admin.inc.php:335
295
  msgid "Use timthumb to generate thumbnails? "
296
  msgstr ""
297
 
298
+ #: admin.inc.php:336
299
  msgid ""
300
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
301
  "\">timthumb</a> will be used to generate thumbnails"
302
  msgstr ""
303
 
304
+ #: admin.inc.php:338
305
  msgid "Quality of thumbnails generated by timthumb"
306
  msgstr ""
307
 
308
+ #: admin.inc.php:341
309
  msgid ""
310
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
311
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
312
  msgstr ""
313
 
314
+ #: admin.inc.php:344
315
  #, fuzzy
316
  msgid "Post thumbnail meta field name: "
317
  msgstr "Berichtopties miniatuurafbeelding:"
318
 
319
+ #: admin.inc.php:345
320
  msgid ""
321
  "The value of this field should contain the image source and is set in the "
322
  "<em>Add New Post</em> screen"
323
  msgstr ""
324
 
325
+ #: admin.inc.php:347
326
  #, fuzzy
327
  msgid ""
328
  "If the postmeta is not set, then should the plugin extract the first image "
332
  "het bericht uitpakken. Dit kan het laden van uw bericht vertragen, indien "
333
  "het eerste beeld in de gerelateerde berichten groot is qua bestandsgrootte"
334
 
335
+ #: admin.inc.php:348
336
  #, fuzzy
337
  msgid ""
338
  "This can slow down the loading of your page if the first image in the "
342
  "het bericht uitpakken. Dit kan het laden van uw bericht vertragen, indien "
343
  "het eerste beeld in de gerelateerde berichten groot is qua bestandsgrootte"
344
 
345
+ #: admin.inc.php:350
346
  msgid "Use default thumbnail? "
347
  msgstr ""
348
 
349
+ #: admin.inc.php:351
350
  msgid ""
351
  "If checked, when no thumbnail is found, show a default one from the URL "
352
  "below. If not checked and no thumbnail is found, no image will be shown."
353
  msgstr ""
354
 
355
+ #: admin.inc.php:353
356
  msgid "Default thumbnail: "
357
  msgstr ""
358
 
359
+ #: admin.inc.php:354
360
  #, fuzzy
361
  msgid ""
362
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
368
  "miniatuurafbeelding bevat wordt de standaard afbeelding getoond zoals "
369
  "hieronder aangegeven:"
370
 
371
+ #: admin.inc.php:359
372
  #, fuzzy
373
  msgid "Feed options"
374
  msgstr "Opties:"
375
 
376
+ #: admin.inc.php:361
377
  msgid ""
378
  "Below options override the related posts settings for your blog feed. These "
379
  "only apply if you have selected to add related posts to Feeds in the General "
380
  "Options tab."
381
  msgstr ""
382
 
383
+ #: admin.inc.php:398
384
  msgid "Custom Styles"
385
  msgstr ""
386
 
387
+ #: admin.inc.php:400
388
  msgid "Custom CSS to add to header:"
389
  msgstr ""
390
 
391
+ #: admin.inc.php:403
392
  msgid ""
393
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
394
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
395
  "\">FAQ</a> for available CSS classes to style."
396
  msgstr ""
397
 
398
+ #: admin.inc.php:407
399
  #, fuzzy
400
  msgid "Save Options"
401
  msgstr "Opties:"
402
 
403
+ #: admin.inc.php:408
404
  #, fuzzy
405
  msgid "Default Options"
406
  msgstr "Output Opties:"
407
 
408
+ #: admin.inc.php:408
409
  msgid "Do you want to set options to Default?"
410
  msgstr "Wil je opties terug naar standaard instellen?"
411
 
412
+ #: admin.inc.php:409
413
  msgid "Recreate Index"
414
  msgstr ""
415
 
416
+ #: admin.inc.php:409
417
  msgid "Are you sure you want to recreate the index?"
418
  msgstr "Weet je zeker dat je de index opnieuw wilt creeëren?"
419
 
420
+ #: admin.inc.php:426
421
  msgid "Contextual Related Posts"
422
  msgstr "Contextual Related Posts"
423
 
424
+ #: admin.inc.php:426 contextual-related-posts.php:277
425
  msgid "Related Posts"
426
  msgstr "Gerelateerde Berichten"
427
 
428
+ #: admin.inc.php:434
429
  #, fuzzy
430
  msgid "plugin settings page"
431
  msgstr "plugin pagina"
432
 
433
+ #: admin.inc.php:439
434
  msgid ""
435
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
436
  "visit the "
437
  msgstr ""
438
 
439
+ #: admin.inc.php:439
440
  msgid " to configure."
441
  msgstr ""
442
 
443
+ #: contextual-related-posts.php:136
444
  msgid "Powered by"
445
  msgstr "Powered by"
446
 
447
+ #: contextual-related-posts.php:276
448
  #, fuzzy
449
  msgid "Display Related Posts"
450
  msgstr "Weergave \"Geen Gerelateerde Berichten\""
451
 
452
+ #: contextual-related-posts.php:289
453
  msgid "Title"
454
  msgstr ""
455
 
456
+ #: contextual-related-posts.php:294
457
  msgid "No. of posts"
458
  msgstr ""
459
 
460
+ #: contextual-related-posts.php:299
461
  #, fuzzy
462
  msgid " Show excerpt?"
463
  msgstr "Laat bericht uittreksel zien in lijst?"
464
 
465
+ #: contextual-related-posts.php:303
466
  #, fuzzy
467
  msgid "Thumbnail options"
468
  msgstr "Berichtopties miniatuurafbeelding:"
469
 
470
+ #: contextual-related-posts.php:305
471
  #, fuzzy
472
  msgid "Thumbnails inline, before title"
473
  msgstr "Toon miniatuurafbeeldingen inline met berichten"
474
 
475
+ #: contextual-related-posts.php:306
476
  #, fuzzy
477
  msgid "Thumbnails inline, after title"
478
  msgstr "Toon miniatuurafbeeldingen inline met berichten"
479
 
480
+ #: contextual-related-posts.php:307
481
  #, fuzzy
482
  msgid "Only thumbnails, no text"
483
  msgstr "Alleen miniatuurafbeeldingen weergeven, geen tekst"
484
 
485
+ #: contextual-related-posts.php:308
486
  #, fuzzy
487
  msgid "No thumbnails, only text."
488
  msgstr "Geen miniatuurafbeeldingen weergeven, alleen tekst."
489
 
490
+ #: contextual-related-posts.php:313
491
  #, fuzzy
492
  msgid "Thumbnail height"
493
  msgstr "Berichtopties miniatuurafbeelding:"
494
 
495
+ #: contextual-related-posts.php:318
496
  #, fuzzy
497
  msgid "Thumbnail width"
498
  msgstr "Berichtopties miniatuurafbeelding:"
499
 
500
+ #: contextual-related-posts.php:393
501
  msgid "<h3>Related Posts:</h3>"
502
  msgstr "<h3>Gerelateerde Berichten:</h3>"
503
 
504
+ #: contextual-related-posts.php:394
505
  #, fuzzy
506
+ msgid "No related posts found"
507
  msgstr "Geen gerelateerde berichten gevonden"
508
 
509
+ #: contextual-related-posts.php:648
510
  msgid "Settings"
511
  msgstr "Instellingen"
512
 
513
+ #: contextual-related-posts.php:663
514
  msgid "Donate"
515
  msgstr "Doneren"
516
 
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: 2013-01-06 12:33-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,92 +12,102 @@ 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.5.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:93
19
  msgid "Options saved successfully."
20
  msgstr "Настройки сохранены успешно."
21
 
22
- #: admin.inc.php:109
23
  msgid "Options set to Default."
24
  msgstr "Опции возвращены к стандартным"
25
 
26
- #: admin.inc.php:124
27
  msgid "Index recreated"
28
  msgstr "Индекс воссоздан"
29
 
30
- #: admin.inc.php:137
31
  msgid "Support the development"
32
  msgstr "Поддержка развития проекта"
33
 
34
- #: admin.inc.php:145
35
  msgid "Enter amount in USD: "
36
  msgstr "Введите сумму в долларах США:"
37
 
38
- #: admin.inc.php:149
39
  msgid "Send your donation to the author of"
40
  msgstr "Отправить пожертвование автору"
41
 
42
- #: admin.inc.php:160
43
  #, fuzzy
44
  msgid "Quick Links"
45
  msgstr "Быстрые ссылки"
46
 
47
- #: admin.inc.php:162
48
  #, fuzzy
49
  msgid "Contextual Related Posts plugin page"
50
  msgstr "Контекстные похожие посты"
51
 
52
- #: admin.inc.php:163
53
  msgid "Other plugins"
54
  msgstr "Другие плагины"
55
 
56
- #: admin.inc.php:164
57
  msgid "Ajay's blog"
58
  msgstr "Блог автора (Ajay, английский язык)"
59
 
60
- #: admin.inc.php:165 contextual-related-posts.php:608
61
  msgid "Support"
62
  msgstr "Поддержка"
63
 
64
- #: admin.inc.php:166
65
  msgid "Reviews"
66
  msgstr ""
67
 
68
- #: admin.inc.php:170
69
  msgid "Recent developments"
70
  msgstr "Последние разработки"
71
 
72
- #: admin.inc.php:180
73
  msgid "General options"
74
  msgstr ""
75
 
76
- #: admin.inc.php:182 admin.inc.php:354
 
 
 
 
 
 
 
 
 
 
77
  msgid "Number of related posts to display: "
78
  msgstr "Количество отображаемых похожих постов:"
79
 
80
- #: admin.inc.php:185
81
  msgid "Related posts should be newer than:"
82
  msgstr ""
83
 
84
- #: admin.inc.php:186
85
  msgid "days"
86
  msgstr ""
87
 
88
- #: admin.inc.php:188
89
  msgid "Post types to include in results (including custom post types)"
90
  msgstr ""
91
 
92
- #: admin.inc.php:199
93
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
94
  msgstr ""
95
 
96
- #: admin.inc.php:202
97
  msgid "Find related posts based on content as well as title"
98
  msgstr ""
99
 
100
- #: admin.inc.php:203
101
  #, fuzzy
102
  msgid ""
103
  "If unchecked, only posts titles are used. (I recommend using a caching "
@@ -108,48 +118,55 @@ msgstr ""
108
  "сообщений. (Я рекомендую использовать плагин кэширования, если вы включите "
109
  "опцию)"
110
 
111
- #: admin.inc.php:205
112
  msgid "List of post or page IDs to exclude from the results: "
113
  msgstr ""
114
 
115
- #: admin.inc.php:208
116
  msgid "Categories to exclude from the results: "
117
  msgstr ""
118
 
119
- #: admin.inc.php:226
 
 
 
 
 
 
 
120
  #, fuzzy
121
  msgid "Add related posts to:"
122
  msgstr "Добавить похожие посты в фид"
123
 
124
- #: admin.inc.php:228
125
  msgid "Posts"
126
  msgstr ""
127
 
128
- #: admin.inc.php:229
129
  msgid "Pages"
130
  msgstr ""
131
 
132
- #: admin.inc.php:230
133
  msgid "Home page"
134
  msgstr ""
135
 
136
- #: admin.inc.php:231
137
  msgid "Feeds"
138
  msgstr ""
139
 
140
- #: admin.inc.php:232
141
  msgid "Category archives"
142
  msgstr ""
143
 
144
- #: admin.inc.php:233
145
  msgid "Tag archives"
146
  msgstr ""
147
 
148
- #: admin.inc.php:234
149
  msgid "Other archives"
150
  msgstr ""
151
 
152
- #: admin.inc.php:235
153
  #, fuzzy
154
  msgid ""
155
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
@@ -161,150 +178,150 @@ msgstr ""
161
  "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code>, в отображаемый шаблон на "
162
  "вашем сайте"
163
 
164
- #: admin.inc.php:238
165
  msgid "Add a link to the plugin page as a final item in the list"
166
  msgstr ""
167
 
168
- #: admin.inc.php:239
169
  msgid " <em>Optional</em>"
170
  msgstr ""
171
 
172
- #: admin.inc.php:246
173
  #, fuzzy
174
  msgid "Output options"
175
  msgstr "Опции вывода:"
176
 
177
- #: admin.inc.php:248
178
  msgid "Title of related posts: "
179
  msgstr "Названия связанных постов:"
180
 
181
- #: admin.inc.php:251
182
  msgid "When there are no posts, what should be shown?"
183
  msgstr "Когда нет сообщений, что должно быть показано?"
184
 
185
- #: admin.inc.php:255
186
  msgid "Blank Output"
187
  msgstr "Пустой выход"
188
 
189
- #: admin.inc.php:259
190
  msgid "Display:"
191
  msgstr ""
192
 
193
- #: admin.inc.php:263 admin.inc.php:357
194
  msgid "Show post excerpt in list?"
195
  msgstr "Показать выдержки из поста в списке?"
196
 
197
- #: admin.inc.php:266
198
  msgid "Length of excerpt (in words): "
199
  msgstr "Длина выдержки (в словах):"
200
 
201
- #: admin.inc.php:269
202
  msgid "Limit post title length (in characters)"
203
  msgstr ""
204
 
205
- #: admin.inc.php:272
206
  msgid "Open links in new window"
207
  msgstr ""
208
 
209
- #: admin.inc.php:275
210
  msgid "Add nofollow attribute to links in the list"
211
  msgstr ""
212
 
213
- #: admin.inc.php:278
214
  #, fuzzy
215
  msgid "Exclude display of related posts on these posts / pages"
216
  msgstr "Добавить похожие посты в фид"
217
 
218
- #: admin.inc.php:281
219
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
220
  msgstr ""
221
 
222
- #: admin.inc.php:284
223
  msgid "Customize the output:"
224
  msgstr "Настройки выхода:"
225
 
226
- #: admin.inc.php:286
227
  msgid "HTML to display before the list of posts: "
228
  msgstr "HTML для показа перед списком сообщений: "
229
 
230
- #: admin.inc.php:289
231
  msgid "HTML to display before each list item: "
232
  msgstr "HTML для показа перед каждым элементом списка: "
233
 
234
- #: admin.inc.php:292
235
  msgid "HTML to display after each list item: "
236
  msgstr "HTML для отображения после каждого элемента списка: "
237
 
238
- #: admin.inc.php:295
239
  msgid "HTML to display after the list of posts: "
240
  msgstr "HTML для отображения после списка сообщений: "
241
 
242
- #: admin.inc.php:298
243
  msgid "Post thumbnail options:"
244
  msgstr "Опции изображения поста:"
245
 
246
- #: admin.inc.php:300 admin.inc.php:360
247
  msgid "Location of post thumbnail:"
248
  msgstr ""
249
 
250
- #: admin.inc.php:304 admin.inc.php:364
251
  #, fuzzy
252
  msgid "Display thumbnails inline with posts, before title"
253
  msgstr "Показать эскизы в соответствии с сообщениями"
254
 
255
- #: admin.inc.php:308 admin.inc.php:368
256
  #, fuzzy
257
  msgid "Display thumbnails inline with posts, after title"
258
  msgstr "Показать эскизы в соответствии с сообщениями"
259
 
260
- #: admin.inc.php:312 admin.inc.php:372
261
  msgid "Display only thumbnails, no text"
262
  msgstr "Показывать только изображения, без текста"
263
 
264
- #: admin.inc.php:316 admin.inc.php:376
265
  msgid "Do not display thumbnails, only text."
266
  msgstr "Не показывать изображения, только текст"
267
 
268
- #: admin.inc.php:320 admin.inc.php:380
269
  msgid "Maximum width of the thumbnail: "
270
  msgstr ""
271
 
272
- #: admin.inc.php:323 admin.inc.php:383
273
  msgid "Maximum height of the thumbnail: "
274
  msgstr ""
275
 
276
- #: admin.inc.php:326
277
  msgid "Use timthumb to generate thumbnails? "
278
  msgstr ""
279
 
280
- #: admin.inc.php:327
281
  msgid ""
282
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
283
  "\">timthumb</a> will be used to generate thumbnails"
284
  msgstr ""
285
 
286
- #: admin.inc.php:329
287
  msgid "Quality of thumbnails generated by timthumb"
288
  msgstr ""
289
 
290
- #: admin.inc.php:332
291
  msgid ""
292
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
293
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
294
  msgstr ""
295
 
296
- #: admin.inc.php:335
297
  #, fuzzy
298
  msgid "Post thumbnail meta field name: "
299
  msgstr "Опции изображения поста:"
300
 
301
- #: admin.inc.php:336
302
  msgid ""
303
  "The value of this field should contain the image source and is set in the "
304
  "<em>Add New Post</em> screen"
305
  msgstr ""
306
 
307
- #: admin.inc.php:338
308
  #, fuzzy
309
  msgid ""
310
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -313,7 +330,7 @@ msgstr ""
313
  "Если postmeta не установлен, то плагин скачает первое изображение поста. Это "
314
  "может замедлить загрузку сообщения (если изображение слишком велико)"
315
 
316
- #: admin.inc.php:339
317
  #, fuzzy
318
  msgid ""
319
  "This can slow down the loading of your page if the first image in the "
@@ -322,21 +339,21 @@ msgstr ""
322
  "Если postmeta не установлен, то плагин скачает первое изображение поста. Это "
323
  "может замедлить загрузку сообщения (если изображение слишком велико)"
324
 
325
- #: admin.inc.php:341
326
  msgid "Use default thumbnail? "
327
  msgstr ""
328
 
329
- #: admin.inc.php:342
330
  msgid ""
331
  "If checked, when no thumbnail is found, show a default one from the URL "
332
  "below. If not checked and no thumbnail is found, no image will be shown."
333
  msgstr ""
334
 
335
- #: admin.inc.php:344
336
  msgid "Default thumbnail: "
337
  msgstr ""
338
 
339
- #: admin.inc.php:345
340
  #, fuzzy
341
  msgid ""
342
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -347,149 +364,149 @@ msgstr ""
347
  "обнаружатся, то плагин проверит мета-данные. Если они будут недоступны, то "
348
  "плагин будет показывать изображение по умолчанию, как указано ниже:"
349
 
350
- #: admin.inc.php:350
351
  #, fuzzy
352
  msgid "Feed options"
353
  msgstr "Опции:"
354
 
355
- #: admin.inc.php:352
356
  msgid ""
357
  "Below options override the related posts settings for your blog feed. These "
358
  "only apply if you have selected to add related posts to Feeds in the General "
359
  "Options tab."
360
  msgstr ""
361
 
362
- #: admin.inc.php:389
363
  msgid "Custom Styles"
364
  msgstr ""
365
 
366
- #: admin.inc.php:391
367
  msgid "Custom CSS to add to header:"
368
  msgstr ""
369
 
370
- #: admin.inc.php:394
371
  msgid ""
372
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
373
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
374
  "\">FAQ</a> for available CSS classes to style."
375
  msgstr ""
376
 
377
- #: admin.inc.php:398
378
  #, fuzzy
379
  msgid "Save Options"
380
  msgstr "Опции:"
381
 
382
- #: admin.inc.php:399
383
  #, fuzzy
384
  msgid "Default Options"
385
  msgstr "Опции вывода:"
386
 
387
- #: admin.inc.php:399
388
  msgid "Do you want to set options to Default?"
389
  msgstr "Вы хотите задать параметры по умолчанию?"
390
 
391
- #: admin.inc.php:400
392
  msgid "Recreate Index"
393
  msgstr ""
394
 
395
- #: admin.inc.php:400
396
  msgid "Are you sure you want to recreate the index?"
397
  msgstr "Вы уверены, что хотите воссоздать индекс?"
398
 
399
- #: admin.inc.php:417
400
  msgid "Contextual Related Posts"
401
  msgstr "Контекстные похожие посты"
402
 
403
- #: admin.inc.php:417 contextual-related-posts.php:240
404
  msgid "Related Posts"
405
  msgstr "Похожие посты"
406
 
407
- #: admin.inc.php:425
408
  #, fuzzy
409
  msgid "plugin settings page"
410
  msgstr "Страница плагина"
411
 
412
- #: admin.inc.php:430
413
  msgid ""
414
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
415
  "visit the "
416
  msgstr ""
417
 
418
- #: admin.inc.php:430
419
  msgid " to configure."
420
  msgstr ""
421
 
422
- #: contextual-related-posts.php:162
423
  msgid "Powered by"
424
  msgstr "Автор:"
425
 
426
- #: contextual-related-posts.php:239
427
  #, fuzzy
428
  msgid "Display Related Posts"
429
  msgstr "Показывать \"Нет похожих постов\""
430
 
431
- #: contextual-related-posts.php:252
432
  msgid "Title"
433
  msgstr ""
434
 
435
- #: contextual-related-posts.php:257
436
  msgid "No. of posts"
437
  msgstr ""
438
 
439
- #: contextual-related-posts.php:262
440
  #, fuzzy
441
  msgid " Show excerpt?"
442
  msgstr "Показать выдержки из поста в списке?"
443
 
444
- #: contextual-related-posts.php:266
445
  #, fuzzy
446
  msgid "Thumbnail options"
447
  msgstr "Опции изображения поста:"
448
 
449
- #: contextual-related-posts.php:268
450
  #, fuzzy
451
  msgid "Thumbnails inline, before title"
452
  msgstr "Показать эскизы в соответствии с сообщениями"
453
 
454
- #: contextual-related-posts.php:269
455
  #, fuzzy
456
  msgid "Thumbnails inline, after title"
457
  msgstr "Показать эскизы в соответствии с сообщениями"
458
 
459
- #: contextual-related-posts.php:270
460
  #, fuzzy
461
  msgid "Only thumbnails, no text"
462
  msgstr "Показывать только изображения, без текста"
463
 
464
- #: contextual-related-posts.php:271
465
  #, fuzzy
466
  msgid "No thumbnails, only text."
467
  msgstr "Не показывать изображения, только текст"
468
 
469
- #: contextual-related-posts.php:276
470
  #, fuzzy
471
  msgid "Thumbnail height"
472
  msgstr "Опции изображения поста:"
473
 
474
- #: contextual-related-posts.php:281
475
  #, fuzzy
476
  msgid "Thumbnail width"
477
  msgstr "Опции изображения поста:"
478
 
479
- #: contextual-related-posts.php:340
480
  msgid "<h3>Related Posts:</h3>"
481
  msgstr "<h3>Похожие посты:</h3>"
482
 
483
- #: contextual-related-posts.php:341
484
  #, fuzzy
485
- msgid "No related posts founds"
486
  msgstr "Не найдены похожие посты"
487
 
488
- #: contextual-related-posts.php:594
489
  msgid "Settings"
490
  msgstr "Настройки"
491
 
492
- #: contextual-related-posts.php:609
493
  msgid "Donate"
494
  msgstr "Пожертвование"
495
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-04-07 23: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
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e;_c;__ngettext\n"
14
  "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.5.5\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:96
19
  msgid "Options saved successfully."
20
  msgstr "Настройки сохранены успешно."
21
 
22
+ #: admin.inc.php:112
23
  msgid "Options set to Default."
24
  msgstr "Опции возвращены к стандартным"
25
 
26
+ #: admin.inc.php:127
27
  msgid "Index recreated"
28
  msgstr "Индекс воссоздан"
29
 
30
+ #: admin.inc.php:140
31
  msgid "Support the development"
32
  msgstr "Поддержка развития проекта"
33
 
34
+ #: admin.inc.php:148
35
  msgid "Enter amount in USD: "
36
  msgstr "Введите сумму в долларах США:"
37
 
38
+ #: admin.inc.php:152
39
  msgid "Send your donation to the author of"
40
  msgstr "Отправить пожертвование автору"
41
 
42
+ #: admin.inc.php:163
43
  #, fuzzy
44
  msgid "Quick Links"
45
  msgstr "Быстрые ссылки"
46
 
47
+ #: admin.inc.php:165
48
  #, fuzzy
49
  msgid "Contextual Related Posts plugin page"
50
  msgstr "Контекстные похожие посты"
51
 
52
+ #: admin.inc.php:166
53
  msgid "Other plugins"
54
  msgstr "Другие плагины"
55
 
56
+ #: admin.inc.php:167
57
  msgid "Ajay's blog"
58
  msgstr "Блог автора (Ajay, английский язык)"
59
 
60
+ #: admin.inc.php:168 contextual-related-posts.php:662
61
  msgid "Support"
62
  msgstr "Поддержка"
63
 
64
+ #: admin.inc.php:169
65
  msgid "Reviews"
66
  msgstr ""
67
 
68
+ #: admin.inc.php:173
69
  msgid "Recent developments"
70
  msgstr "Последние разработки"
71
 
72
+ #: admin.inc.php:183
73
  msgid "General options"
74
  msgstr ""
75
 
76
+ #: admin.inc.php:185
77
+ msgid "Cache output?"
78
+ msgstr ""
79
+
80
+ #: admin.inc.php:187
81
+ msgid ""
82
+ "Enabling this option will cache the related posts output when the post is "
83
+ "visited the first time. The cache is cleaned when you save this page."
84
+ msgstr ""
85
+
86
+ #: admin.inc.php:190 admin.inc.php:363
87
  msgid "Number of related posts to display: "
88
  msgstr "Количество отображаемых похожих постов:"
89
 
90
+ #: admin.inc.php:193
91
  msgid "Related posts should be newer than:"
92
  msgstr ""
93
 
94
+ #: admin.inc.php:194
95
  msgid "days"
96
  msgstr ""
97
 
98
+ #: admin.inc.php:196
99
  msgid "Post types to include in results (including custom post types)"
100
  msgstr ""
101
 
102
+ #: admin.inc.php:207
103
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
104
  msgstr ""
105
 
106
+ #: admin.inc.php:210
107
  msgid "Find related posts based on content as well as title"
108
  msgstr ""
109
 
110
+ #: admin.inc.php:211
111
  #, fuzzy
112
  msgid ""
113
  "If unchecked, only posts titles are used. (I recommend using a caching "
118
  "сообщений. (Я рекомендую использовать плагин кэширования, если вы включите "
119
  "опцию)"
120
 
121
+ #: admin.inc.php:213
122
  msgid "List of post or page IDs to exclude from the results: "
123
  msgstr ""
124
 
125
+ #: admin.inc.php:216
126
  msgid "Categories to exclude from the results: "
127
  msgstr ""
128
 
129
+ #: admin.inc.php:232
130
+ msgid ""
131
+ "Comma separated list of category slugs. The field above has an autocomplete "
132
+ "so simply start typing in the starting letters and it will prompt you with "
133
+ "options"
134
+ msgstr ""
135
+
136
+ #: admin.inc.php:235
137
  #, fuzzy
138
  msgid "Add related posts to:"
139
  msgstr "Добавить похожие посты в фид"
140
 
141
+ #: admin.inc.php:237
142
  msgid "Posts"
143
  msgstr ""
144
 
145
+ #: admin.inc.php:238
146
  msgid "Pages"
147
  msgstr ""
148
 
149
+ #: admin.inc.php:239
150
  msgid "Home page"
151
  msgstr ""
152
 
153
+ #: admin.inc.php:240
154
  msgid "Feeds"
155
  msgstr ""
156
 
157
+ #: admin.inc.php:241
158
  msgid "Category archives"
159
  msgstr ""
160
 
161
+ #: admin.inc.php:242
162
  msgid "Tag archives"
163
  msgstr ""
164
 
165
+ #: admin.inc.php:243
166
  msgid "Other archives"
167
  msgstr ""
168
 
169
+ #: admin.inc.php:244
170
  #, fuzzy
171
  msgid ""
172
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
178
  "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code>, в отображаемый шаблон на "
179
  "вашем сайте"
180
 
181
+ #: admin.inc.php:247
182
  msgid "Add a link to the plugin page as a final item in the list"
183
  msgstr ""
184
 
185
+ #: admin.inc.php:248
186
  msgid " <em>Optional</em>"
187
  msgstr ""
188
 
189
+ #: admin.inc.php:255
190
  #, fuzzy
191
  msgid "Output options"
192
  msgstr "Опции вывода:"
193
 
194
+ #: admin.inc.php:257
195
  msgid "Title of related posts: "
196
  msgstr "Названия связанных постов:"
197
 
198
+ #: admin.inc.php:260
199
  msgid "When there are no posts, what should be shown?"
200
  msgstr "Когда нет сообщений, что должно быть показано?"
201
 
202
+ #: admin.inc.php:264
203
  msgid "Blank Output"
204
  msgstr "Пустой выход"
205
 
206
+ #: admin.inc.php:268
207
  msgid "Display:"
208
  msgstr ""
209
 
210
+ #: admin.inc.php:272 admin.inc.php:366
211
  msgid "Show post excerpt in list?"
212
  msgstr "Показать выдержки из поста в списке?"
213
 
214
+ #: admin.inc.php:275
215
  msgid "Length of excerpt (in words): "
216
  msgstr "Длина выдержки (в словах):"
217
 
218
+ #: admin.inc.php:278
219
  msgid "Limit post title length (in characters)"
220
  msgstr ""
221
 
222
+ #: admin.inc.php:281
223
  msgid "Open links in new window"
224
  msgstr ""
225
 
226
+ #: admin.inc.php:284
227
  msgid "Add nofollow attribute to links in the list"
228
  msgstr ""
229
 
230
+ #: admin.inc.php:287
231
  #, fuzzy
232
  msgid "Exclude display of related posts on these posts / pages"
233
  msgstr "Добавить похожие посты в фид"
234
 
235
+ #: admin.inc.php:290
236
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
237
  msgstr ""
238
 
239
+ #: admin.inc.php:293
240
  msgid "Customize the output:"
241
  msgstr "Настройки выхода:"
242
 
243
+ #: admin.inc.php:295
244
  msgid "HTML to display before the list of posts: "
245
  msgstr "HTML для показа перед списком сообщений: "
246
 
247
+ #: admin.inc.php:298
248
  msgid "HTML to display before each list item: "
249
  msgstr "HTML для показа перед каждым элементом списка: "
250
 
251
+ #: admin.inc.php:301
252
  msgid "HTML to display after each list item: "
253
  msgstr "HTML для отображения после каждого элемента списка: "
254
 
255
+ #: admin.inc.php:304
256
  msgid "HTML to display after the list of posts: "
257
  msgstr "HTML для отображения после списка сообщений: "
258
 
259
+ #: admin.inc.php:307
260
  msgid "Post thumbnail options:"
261
  msgstr "Опции изображения поста:"
262
 
263
+ #: admin.inc.php:309 admin.inc.php:369
264
  msgid "Location of post thumbnail:"
265
  msgstr ""
266
 
267
+ #: admin.inc.php:313 admin.inc.php:373
268
  #, fuzzy
269
  msgid "Display thumbnails inline with posts, before title"
270
  msgstr "Показать эскизы в соответствии с сообщениями"
271
 
272
+ #: admin.inc.php:317 admin.inc.php:377
273
  #, fuzzy
274
  msgid "Display thumbnails inline with posts, after title"
275
  msgstr "Показать эскизы в соответствии с сообщениями"
276
 
277
+ #: admin.inc.php:321 admin.inc.php:381
278
  msgid "Display only thumbnails, no text"
279
  msgstr "Показывать только изображения, без текста"
280
 
281
+ #: admin.inc.php:325 admin.inc.php:385
282
  msgid "Do not display thumbnails, only text."
283
  msgstr "Не показывать изображения, только текст"
284
 
285
+ #: admin.inc.php:329 admin.inc.php:389
286
  msgid "Maximum width of the thumbnail: "
287
  msgstr ""
288
 
289
+ #: admin.inc.php:332 admin.inc.php:392
290
  msgid "Maximum height of the thumbnail: "
291
  msgstr ""
292
 
293
+ #: admin.inc.php:335
294
  msgid "Use timthumb to generate thumbnails? "
295
  msgstr ""
296
 
297
+ #: admin.inc.php:336
298
  msgid ""
299
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
300
  "\">timthumb</a> will be used to generate thumbnails"
301
  msgstr ""
302
 
303
+ #: admin.inc.php:338
304
  msgid "Quality of thumbnails generated by timthumb"
305
  msgstr ""
306
 
307
+ #: admin.inc.php:341
308
  msgid ""
309
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
310
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
311
  msgstr ""
312
 
313
+ #: admin.inc.php:344
314
  #, fuzzy
315
  msgid "Post thumbnail meta field name: "
316
  msgstr "Опции изображения поста:"
317
 
318
+ #: admin.inc.php:345
319
  msgid ""
320
  "The value of this field should contain the image source and is set in the "
321
  "<em>Add New Post</em> screen"
322
  msgstr ""
323
 
324
+ #: admin.inc.php:347
325
  #, fuzzy
326
  msgid ""
327
  "If the postmeta is not set, then should the plugin extract the first image "
330
  "Если postmeta не установлен, то плагин скачает первое изображение поста. Это "
331
  "может замедлить загрузку сообщения (если изображение слишком велико)"
332
 
333
+ #: admin.inc.php:348
334
  #, fuzzy
335
  msgid ""
336
  "This can slow down the loading of your page if the first image in the "
339
  "Если postmeta не установлен, то плагин скачает первое изображение поста. Это "
340
  "может замедлить загрузку сообщения (если изображение слишком велико)"
341
 
342
+ #: admin.inc.php:350
343
  msgid "Use default thumbnail? "
344
  msgstr ""
345
 
346
+ #: admin.inc.php:351
347
  msgid ""
348
  "If checked, when no thumbnail is found, show a default one from the URL "
349
  "below. If not checked and no thumbnail is found, no image will be shown."
350
  msgstr ""
351
 
352
+ #: admin.inc.php:353
353
  msgid "Default thumbnail: "
354
  msgstr ""
355
 
356
+ #: admin.inc.php:354
357
  #, fuzzy
358
  msgid ""
359
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
364
  "обнаружатся, то плагин проверит мета-данные. Если они будут недоступны, то "
365
  "плагин будет показывать изображение по умолчанию, как указано ниже:"
366
 
367
+ #: admin.inc.php:359
368
  #, fuzzy
369
  msgid "Feed options"
370
  msgstr "Опции:"
371
 
372
+ #: admin.inc.php:361
373
  msgid ""
374
  "Below options override the related posts settings for your blog feed. These "
375
  "only apply if you have selected to add related posts to Feeds in the General "
376
  "Options tab."
377
  msgstr ""
378
 
379
+ #: admin.inc.php:398
380
  msgid "Custom Styles"
381
  msgstr ""
382
 
383
+ #: admin.inc.php:400
384
  msgid "Custom CSS to add to header:"
385
  msgstr ""
386
 
387
+ #: admin.inc.php:403
388
  msgid ""
389
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
390
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
391
  "\">FAQ</a> for available CSS classes to style."
392
  msgstr ""
393
 
394
+ #: admin.inc.php:407
395
  #, fuzzy
396
  msgid "Save Options"
397
  msgstr "Опции:"
398
 
399
+ #: admin.inc.php:408
400
  #, fuzzy
401
  msgid "Default Options"
402
  msgstr "Опции вывода:"
403
 
404
+ #: admin.inc.php:408
405
  msgid "Do you want to set options to Default?"
406
  msgstr "Вы хотите задать параметры по умолчанию?"
407
 
408
+ #: admin.inc.php:409
409
  msgid "Recreate Index"
410
  msgstr ""
411
 
412
+ #: admin.inc.php:409
413
  msgid "Are you sure you want to recreate the index?"
414
  msgstr "Вы уверены, что хотите воссоздать индекс?"
415
 
416
+ #: admin.inc.php:426
417
  msgid "Contextual Related Posts"
418
  msgstr "Контекстные похожие посты"
419
 
420
+ #: admin.inc.php:426 contextual-related-posts.php:277
421
  msgid "Related Posts"
422
  msgstr "Похожие посты"
423
 
424
+ #: admin.inc.php:434
425
  #, fuzzy
426
  msgid "plugin settings page"
427
  msgstr "Страница плагина"
428
 
429
+ #: admin.inc.php:439
430
  msgid ""
431
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
432
  "visit the "
433
  msgstr ""
434
 
435
+ #: admin.inc.php:439
436
  msgid " to configure."
437
  msgstr ""
438
 
439
+ #: contextual-related-posts.php:136
440
  msgid "Powered by"
441
  msgstr "Автор:"
442
 
443
+ #: contextual-related-posts.php:276
444
  #, fuzzy
445
  msgid "Display Related Posts"
446
  msgstr "Показывать \"Нет похожих постов\""
447
 
448
+ #: contextual-related-posts.php:289
449
  msgid "Title"
450
  msgstr ""
451
 
452
+ #: contextual-related-posts.php:294
453
  msgid "No. of posts"
454
  msgstr ""
455
 
456
+ #: contextual-related-posts.php:299
457
  #, fuzzy
458
  msgid " Show excerpt?"
459
  msgstr "Показать выдержки из поста в списке?"
460
 
461
+ #: contextual-related-posts.php:303
462
  #, fuzzy
463
  msgid "Thumbnail options"
464
  msgstr "Опции изображения поста:"
465
 
466
+ #: contextual-related-posts.php:305
467
  #, fuzzy
468
  msgid "Thumbnails inline, before title"
469
  msgstr "Показать эскизы в соответствии с сообщениями"
470
 
471
+ #: contextual-related-posts.php:306
472
  #, fuzzy
473
  msgid "Thumbnails inline, after title"
474
  msgstr "Показать эскизы в соответствии с сообщениями"
475
 
476
+ #: contextual-related-posts.php:307
477
  #, fuzzy
478
  msgid "Only thumbnails, no text"
479
  msgstr "Показывать только изображения, без текста"
480
 
481
+ #: contextual-related-posts.php:308
482
  #, fuzzy
483
  msgid "No thumbnails, only text."
484
  msgstr "Не показывать изображения, только текст"
485
 
486
+ #: contextual-related-posts.php:313
487
  #, fuzzy
488
  msgid "Thumbnail height"
489
  msgstr "Опции изображения поста:"
490
 
491
+ #: contextual-related-posts.php:318
492
  #, fuzzy
493
  msgid "Thumbnail width"
494
  msgstr "Опции изображения поста:"
495
 
496
+ #: contextual-related-posts.php:393
497
  msgid "<h3>Related Posts:</h3>"
498
  msgstr "<h3>Похожие посты:</h3>"
499
 
500
+ #: contextual-related-posts.php:394
501
  #, fuzzy
502
+ msgid "No related posts found"
503
  msgstr "Не найдены похожие посты"
504
 
505
+ #: contextual-related-posts.php:648
506
  msgid "Settings"
507
  msgstr "Настройки"
508
 
509
+ #: contextual-related-posts.php:663
510
  msgid "Donate"
511
  msgstr "Пожертвование"
512
 
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: 2013-01-06 12:33-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: \n"
@@ -12,140 +12,157 @@ 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.5.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:93
19
  msgid "Options saved successfully."
20
  msgstr "成功保存设置。"
21
 
22
- #: admin.inc.php:109
23
  msgid "Options set to Default."
24
  msgstr "已重置设置。"
25
 
26
- #: admin.inc.php:124
27
  msgid "Index recreated"
28
  msgstr "已重新创建索引"
29
 
30
- #: admin.inc.php:137
31
  msgid "Support the development"
32
  msgstr "支持开发"
33
 
34
- #: admin.inc.php:145
35
  msgid "Enter amount in USD: "
36
  msgstr "输入美元金额:"
37
 
38
- #: admin.inc.php:149
39
  msgid "Send your donation to the author of"
40
  msgstr "捐赠给作者"
41
 
42
- #: admin.inc.php:160
43
  #, fuzzy
44
  msgid "Quick Links"
45
  msgstr "快捷链接"
46
 
47
- #: admin.inc.php:162
48
  #, fuzzy
49
  msgid "Contextual Related Posts plugin page"
50
  msgstr "相关日志"
51
 
52
- #: admin.inc.php:163
53
  msgid "Other plugins"
54
  msgstr "其他插件"
55
 
56
- #: admin.inc.php:164
57
  msgid "Ajay's blog"
58
  msgstr "Ajay 的博客"
59
 
60
- #: admin.inc.php:165 contextual-related-posts.php:608
61
  msgid "Support"
62
  msgstr "技术支持"
63
 
64
- #: admin.inc.php:166
65
  msgid "Reviews"
66
  msgstr ""
67
 
68
- #: admin.inc.php:170
69
  msgid "Recent developments"
70
  msgstr "最新开发"
71
 
72
- #: admin.inc.php:180
73
  msgid "General options"
74
  msgstr "一般设置"
75
 
76
- #: admin.inc.php:182 admin.inc.php:354
 
 
 
 
 
 
 
 
 
 
77
  msgid "Number of related posts to display: "
78
  msgstr "相关日志数量:"
79
 
80
- #: admin.inc.php:185
81
  msgid "Related posts should be newer than:"
82
  msgstr ""
83
 
84
- #: admin.inc.php:186
85
  msgid "days"
86
  msgstr ""
87
 
88
- #: admin.inc.php:188
89
  msgid "Post types to include in results (including custom post types)"
90
  msgstr "被索引的日志类型(包含自定义日志类型)"
91
 
92
- #: admin.inc.php:199
93
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
94
  msgstr "在 Windows 上使用 CTRL ,或在 Mac 上使用 COMMAND 进行多选"
95
 
96
- #: admin.inc.php:202
97
  msgid "Find related posts based on content as well as title"
98
  msgstr "根据标题和正文内容索引"
99
 
100
- #: admin.inc.php:203
101
  msgid ""
102
  "If unchecked, only posts titles are used. (I recommend using a caching "
103
  "plugin if you enable this)"
104
  msgstr "假如没有勾选此项,则只从标题索引。(推荐已经开启缓存的用户勾选使用)"
105
 
106
- #: admin.inc.php:205
107
  msgid "List of post or page IDs to exclude from the results: "
108
  msgstr "排除的文章或页面 ID:"
109
 
110
- #: admin.inc.php:208
111
  #, fuzzy
112
  msgid "Categories to exclude from the results: "
113
  msgstr "排除的文章或页面 ID:"
114
 
115
- #: admin.inc.php:226
 
 
 
 
 
 
 
116
  #, fuzzy
117
  msgid "Add related posts to:"
118
  msgstr "添加相关日志到 feed 里"
119
 
120
- #: admin.inc.php:228
121
  msgid "Posts"
122
  msgstr ""
123
 
124
- #: admin.inc.php:229
125
  msgid "Pages"
126
  msgstr ""
127
 
128
- #: admin.inc.php:230
129
  msgid "Home page"
130
  msgstr ""
131
 
132
- #: admin.inc.php:231
133
  msgid "Feeds"
134
  msgstr ""
135
 
136
- #: admin.inc.php:232
137
  msgid "Category archives"
138
  msgstr ""
139
 
140
- #: admin.inc.php:233
141
  msgid "Tag archives"
142
  msgstr ""
143
 
144
- #: admin.inc.php:234
145
  msgid "Other archives"
146
  msgstr ""
147
 
148
- #: admin.inc.php:235
149
  msgid ""
150
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
151
  "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where "
@@ -154,121 +171,121 @@ msgstr ""
154
  "假如没有勾选此项,请在模板文件中找到需要显示的地方,添加代码 <code>&lt;?php "
155
  "if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code>"
156
 
157
- #: admin.inc.php:238
158
  msgid "Add a link to the plugin page as a final item in the list"
159
  msgstr "在相关日志后添加插件页面的链接"
160
 
161
- #: admin.inc.php:239
162
  msgid " <em>Optional</em>"
163
  msgstr " <em>可选</em>"
164
 
165
- #: admin.inc.php:246
166
  #, fuzzy
167
  msgid "Output options"
168
  msgstr "显示设置"
169
 
170
- #: admin.inc.php:248
171
  msgid "Title of related posts: "
172
  msgstr "相关日志的标题:"
173
 
174
- #: admin.inc.php:251
175
  msgid "When there are no posts, what should be shown?"
176
  msgstr "当不存在相关日志时,显示什么?"
177
 
178
- #: admin.inc.php:255
179
  msgid "Blank Output"
180
  msgstr "不显示"
181
 
182
- #: admin.inc.php:259
183
  msgid "Display:"
184
  msgstr ""
185
 
186
- #: admin.inc.php:263 admin.inc.php:357
187
  msgid "Show post excerpt in list?"
188
  msgstr "是否显示日志摘要?"
189
 
190
- #: admin.inc.php:266
191
  msgid "Length of excerpt (in words): "
192
  msgstr "摘要长度(词数):"
193
 
194
- #: admin.inc.php:269
195
  msgid "Limit post title length (in characters)"
196
  msgstr ""
197
 
198
- #: admin.inc.php:272
199
  msgid "Open links in new window"
200
  msgstr ""
201
 
202
- #: admin.inc.php:275
203
  msgid "Add nofollow attribute to links in the list"
204
  msgstr ""
205
 
206
- #: admin.inc.php:278
207
  #, fuzzy
208
  msgid "Exclude display of related posts on these posts / pages"
209
  msgstr "添加相关日志到页面里"
210
 
211
- #: admin.inc.php:281
212
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
213
  msgstr ""
214
 
215
- #: admin.inc.php:284
216
  msgid "Customize the output:"
217
  msgstr "自定义显示:"
218
 
219
- #: admin.inc.php:286
220
  msgid "HTML to display before the list of posts: "
221
  msgstr "显示在每篇日志后面的 HTML 标签:"
222
 
223
- #: admin.inc.php:289
224
  msgid "HTML to display before each list item: "
225
  msgstr "显示在每篇日志后面的 HTML 标签:"
226
 
227
- #: admin.inc.php:292
228
  msgid "HTML to display after each list item: "
229
  msgstr "显示在日志列表前面的 HTML 标签:"
230
 
231
- #: admin.inc.php:295
232
  msgid "HTML to display after the list of posts: "
233
  msgstr "显示在日志列表后面的 HTML 标签:"
234
 
235
- #: admin.inc.php:298
236
  msgid "Post thumbnail options:"
237
  msgstr "日志缩略图设置:"
238
 
239
- #: admin.inc.php:300 admin.inc.php:360
240
  msgid "Location of post thumbnail:"
241
  msgstr "日志缩略图位置:"
242
 
243
- #: admin.inc.php:304 admin.inc.php:364
244
  msgid "Display thumbnails inline with posts, before title"
245
  msgstr "在标题前显示缩略图"
246
 
247
- #: admin.inc.php:308 admin.inc.php:368
248
  msgid "Display thumbnails inline with posts, after title"
249
  msgstr "在标题后显示缩略图"
250
 
251
- #: admin.inc.php:312 admin.inc.php:372
252
  msgid "Display only thumbnails, no text"
253
  msgstr "不显示文本,只显示缩略图"
254
 
255
- #: admin.inc.php:316 admin.inc.php:376
256
  msgid "Do not display thumbnails, only text."
257
  msgstr "不显示缩略图,只显示文本"
258
 
259
- #: admin.inc.php:320 admin.inc.php:380
260
  msgid "Maximum width of the thumbnail: "
261
  msgstr "缩略图最大宽度"
262
 
263
- #: admin.inc.php:323 admin.inc.php:383
264
  msgid "Maximum height of the thumbnail: "
265
  msgstr "缩略图最大高度"
266
 
267
- #: admin.inc.php:326
268
  msgid "Use timthumb to generate thumbnails? "
269
  msgstr "是否使用 timthumb 生成缩略图?"
270
 
271
- #: admin.inc.php:327
272
  msgid ""
273
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
274
  "\">timthumb</a> will be used to generate thumbnails"
@@ -276,54 +293,54 @@ msgstr ""
276
  "勾选此项,将使用 <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
277
  "\">timthumb</a> 生成缩略图"
278
 
279
- #: admin.inc.php:329
280
  msgid "Quality of thumbnails generated by timthumb"
281
  msgstr ""
282
 
283
- #: admin.inc.php:332
284
  msgid ""
285
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
286
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
287
  msgstr ""
288
 
289
- #: admin.inc.php:335
290
  msgid "Post thumbnail meta field name: "
291
  msgstr "日志缩略图自定义栏目的名称:"
292
 
293
- #: admin.inc.php:336
294
  msgid ""
295
  "The value of this field should contain the image source and is set in the "
296
  "<em>Add New Post</em> screen"
297
  msgstr "该栏目的值在 <em>文章编辑 » 自定义栏目</em> 填写,需填写图像地址"
298
 
299
- #: admin.inc.php:338
300
  msgid ""
301
  "If the postmeta is not set, then should the plugin extract the first image "
302
  "from the post?"
303
  msgstr "假如缩略图自定义栏目没有填写,是否使用日志的第一张图片?"
304
 
305
- #: admin.inc.php:339
306
  msgid ""
307
  "This can slow down the loading of your page if the first image in the "
308
  "related posts is large in file-size"
309
  msgstr "勾选此项,若相关的日志中第一张图片过大,则页面载入速度会减慢。"
310
 
311
- #: admin.inc.php:341
312
  msgid "Use default thumbnail? "
313
  msgstr "是否使用默认缩略图?"
314
 
315
- #: admin.inc.php:342
316
  msgid ""
317
  "If checked, when no thumbnail is found, show a default one from the URL "
318
  "below. If not checked and no thumbnail is found, no image will be shown."
319
  msgstr ""
320
  "勾选此项,当不存在缩略图时,显示以下默认缩略图,不勾选则不显示任何图像。"
321
 
322
- #: admin.inc.php:344
323
  msgid "Default thumbnail: "
324
  msgstr "默认缩略图:"
325
 
326
- #: admin.inc.php:345
327
  msgid ""
328
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
329
  "then it will check the meta field. If this is not available, then it will "
@@ -332,27 +349,27 @@ msgstr ""
332
  "本插件按先后顺序检测日志本身、缩略图自定义栏目是否含有缩略图,若不存在,则显"
333
  "示上面默认图像"
334
 
335
- #: admin.inc.php:350
336
  #, fuzzy
337
  msgid "Feed options"
338
  msgstr "一般设置"
339
 
340
- #: admin.inc.php:352
341
  msgid ""
342
  "Below options override the related posts settings for your blog feed. These "
343
  "only apply if you have selected to add related posts to Feeds in the General "
344
  "Options tab."
345
  msgstr ""
346
 
347
- #: admin.inc.php:389
348
  msgid "Custom Styles"
349
  msgstr "自定义样式"
350
 
351
- #: admin.inc.php:391
352
  msgid "Custom CSS to add to header:"
353
  msgstr "添加自定义 CSS 到 header:"
354
 
355
- #: admin.inc.php:394
356
  #, fuzzy
357
  msgid ""
358
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
@@ -362,112 +379,112 @@ msgstr ""
362
  "不要使用 <code>style</code> 标签。请查看 <a href=\"http://wordpress.org/"
363
  "extend/plugins/contextual-related-posts/faq/\">FAQ</a> 中可用的 CSS classes。"
364
 
365
- #: admin.inc.php:398
366
  msgid "Save Options"
367
  msgstr "保存设置"
368
 
369
- #: admin.inc.php:399
370
  msgid "Default Options"
371
  msgstr "默认设置"
372
 
373
- #: admin.inc.php:399
374
  msgid "Do you want to set options to Default?"
375
  msgstr "是否要重置设置?"
376
 
377
- #: admin.inc.php:400
378
  msgid "Recreate Index"
379
  msgstr "重建索引"
380
 
381
- #: admin.inc.php:400
382
  msgid "Are you sure you want to recreate the index?"
383
  msgstr "是否要重建索引?"
384
 
385
- #: admin.inc.php:417
386
  msgid "Contextual Related Posts"
387
  msgstr "Contextual Related Posts"
388
 
389
- #: admin.inc.php:417 contextual-related-posts.php:240
390
  msgid "Related Posts"
391
  msgstr "相关日志"
392
 
393
- #: admin.inc.php:425
394
  msgid "plugin settings page"
395
  msgstr "插件设置页面"
396
 
397
- #: admin.inc.php:430
398
  msgid ""
399
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
400
  "visit the "
401
  msgstr "Contextual Related Posts 插件已经安装/升级完毕。请访问"
402
 
403
- #: admin.inc.php:430
404
  msgid " to configure."
405
  msgstr "设置插件。"
406
 
407
- #: contextual-related-posts.php:162
408
  msgid "Powered by"
409
  msgstr "插件作者:"
410
 
411
- #: contextual-related-posts.php:239
412
  msgid "Display Related Posts"
413
  msgstr "显示相关日志"
414
 
415
- #: contextual-related-posts.php:252
416
  msgid "Title"
417
  msgstr "标题"
418
 
419
- #: contextual-related-posts.php:257
420
  msgid "No. of posts"
421
  msgstr "日志数量"
422
 
423
- #: contextual-related-posts.php:262
424
  msgid " Show excerpt?"
425
  msgstr "是否显示日志摘要?"
426
 
427
- #: contextual-related-posts.php:266
428
  msgid "Thumbnail options"
429
  msgstr "缩略图设置:"
430
 
431
- #: contextual-related-posts.php:268
432
  msgid "Thumbnails inline, before title"
433
  msgstr "在标题前显示缩略图"
434
 
435
- #: contextual-related-posts.php:269
436
  msgid "Thumbnails inline, after title"
437
  msgstr "在标题后显示缩略图"
438
 
439
- #: contextual-related-posts.php:270
440
  msgid "Only thumbnails, no text"
441
  msgstr "不显示文本,只显示缩略图"
442
 
443
- #: contextual-related-posts.php:271
444
  msgid "No thumbnails, only text."
445
  msgstr "不显示缩略图,只显示文本"
446
 
447
- #: contextual-related-posts.php:276
448
  #, fuzzy
449
  msgid "Thumbnail height"
450
  msgstr "缩略图设置:"
451
 
452
- #: contextual-related-posts.php:281
453
  #, fuzzy
454
  msgid "Thumbnail width"
455
  msgstr "缩略图设置:"
456
 
457
- #: contextual-related-posts.php:340
458
  msgid "<h3>Related Posts:</h3>"
459
  msgstr "<h3>相关日志:</h3>"
460
 
461
- #: contextual-related-posts.php:341
462
  #, fuzzy
463
- msgid "No related posts founds"
464
  msgstr "没有发现相关日志"
465
 
466
- #: contextual-related-posts.php:594
467
  msgid "Settings"
468
  msgstr "设置"
469
 
470
- #: contextual-related-posts.php:609
471
  msgid "Donate"
472
  msgstr "捐赠"
473
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-04-07 23:42-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.5.5\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:96
19
  msgid "Options saved successfully."
20
  msgstr "成功保存设置。"
21
 
22
+ #: admin.inc.php:112
23
  msgid "Options set to Default."
24
  msgstr "已重置设置。"
25
 
26
+ #: admin.inc.php:127
27
  msgid "Index recreated"
28
  msgstr "已重新创建索引"
29
 
30
+ #: admin.inc.php:140
31
  msgid "Support the development"
32
  msgstr "支持开发"
33
 
34
+ #: admin.inc.php:148
35
  msgid "Enter amount in USD: "
36
  msgstr "输入美元金额:"
37
 
38
+ #: admin.inc.php:152
39
  msgid "Send your donation to the author of"
40
  msgstr "捐赠给作者"
41
 
42
+ #: admin.inc.php:163
43
  #, fuzzy
44
  msgid "Quick Links"
45
  msgstr "快捷链接"
46
 
47
+ #: admin.inc.php:165
48
  #, fuzzy
49
  msgid "Contextual Related Posts plugin page"
50
  msgstr "相关日志"
51
 
52
+ #: admin.inc.php:166
53
  msgid "Other plugins"
54
  msgstr "其他插件"
55
 
56
+ #: admin.inc.php:167
57
  msgid "Ajay's blog"
58
  msgstr "Ajay 的博客"
59
 
60
+ #: admin.inc.php:168 contextual-related-posts.php:662
61
  msgid "Support"
62
  msgstr "技术支持"
63
 
64
+ #: admin.inc.php:169
65
  msgid "Reviews"
66
  msgstr ""
67
 
68
+ #: admin.inc.php:173
69
  msgid "Recent developments"
70
  msgstr "最新开发"
71
 
72
+ #: admin.inc.php:183
73
  msgid "General options"
74
  msgstr "一般设置"
75
 
76
+ #: admin.inc.php:185
77
+ msgid "Cache output?"
78
+ msgstr ""
79
+
80
+ #: admin.inc.php:187
81
+ msgid ""
82
+ "Enabling this option will cache the related posts output when the post is "
83
+ "visited the first time. The cache is cleaned when you save this page."
84
+ msgstr ""
85
+
86
+ #: admin.inc.php:190 admin.inc.php:363
87
  msgid "Number of related posts to display: "
88
  msgstr "相关日志数量:"
89
 
90
+ #: admin.inc.php:193
91
  msgid "Related posts should be newer than:"
92
  msgstr ""
93
 
94
+ #: admin.inc.php:194
95
  msgid "days"
96
  msgstr ""
97
 
98
+ #: admin.inc.php:196
99
  msgid "Post types to include in results (including custom post types)"
100
  msgstr "被索引的日志类型(包含自定义日志类型)"
101
 
102
+ #: admin.inc.php:207
103
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
104
  msgstr "在 Windows 上使用 CTRL ,或在 Mac 上使用 COMMAND 进行多选"
105
 
106
+ #: admin.inc.php:210
107
  msgid "Find related posts based on content as well as title"
108
  msgstr "根据标题和正文内容索引"
109
 
110
+ #: admin.inc.php:211
111
  msgid ""
112
  "If unchecked, only posts titles are used. (I recommend using a caching "
113
  "plugin if you enable this)"
114
  msgstr "假如没有勾选此项,则只从标题索引。(推荐已经开启缓存的用户勾选使用)"
115
 
116
+ #: admin.inc.php:213
117
  msgid "List of post or page IDs to exclude from the results: "
118
  msgstr "排除的文章或页面 ID:"
119
 
120
+ #: admin.inc.php:216
121
  #, fuzzy
122
  msgid "Categories to exclude from the results: "
123
  msgstr "排除的文章或页面 ID:"
124
 
125
+ #: admin.inc.php:232
126
+ msgid ""
127
+ "Comma separated list of category slugs. The field above has an autocomplete "
128
+ "so simply start typing in the starting letters and it will prompt you with "
129
+ "options"
130
+ msgstr ""
131
+
132
+ #: admin.inc.php:235
133
  #, fuzzy
134
  msgid "Add related posts to:"
135
  msgstr "添加相关日志到 feed 里"
136
 
137
+ #: admin.inc.php:237
138
  msgid "Posts"
139
  msgstr ""
140
 
141
+ #: admin.inc.php:238
142
  msgid "Pages"
143
  msgstr ""
144
 
145
+ #: admin.inc.php:239
146
  msgid "Home page"
147
  msgstr ""
148
 
149
+ #: admin.inc.php:240
150
  msgid "Feeds"
151
  msgstr ""
152
 
153
+ #: admin.inc.php:241
154
  msgid "Category archives"
155
  msgstr ""
156
 
157
+ #: admin.inc.php:242
158
  msgid "Tag archives"
159
  msgstr ""
160
 
161
+ #: admin.inc.php:243
162
  msgid "Other archives"
163
  msgstr ""
164
 
165
+ #: admin.inc.php:244
166
  msgid ""
167
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
168
  "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where "
171
  "假如没有勾选此项,请在模板文件中找到需要显示的地方,添加代码 <code>&lt;?php "
172
  "if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code>"
173
 
174
+ #: admin.inc.php:247
175
  msgid "Add a link to the plugin page as a final item in the list"
176
  msgstr "在相关日志后添加插件页面的链接"
177
 
178
+ #: admin.inc.php:248
179
  msgid " <em>Optional</em>"
180
  msgstr " <em>可选</em>"
181
 
182
+ #: admin.inc.php:255
183
  #, fuzzy
184
  msgid "Output options"
185
  msgstr "显示设置"
186
 
187
+ #: admin.inc.php:257
188
  msgid "Title of related posts: "
189
  msgstr "相关日志的标题:"
190
 
191
+ #: admin.inc.php:260
192
  msgid "When there are no posts, what should be shown?"
193
  msgstr "当不存在相关日志时,显示什么?"
194
 
195
+ #: admin.inc.php:264
196
  msgid "Blank Output"
197
  msgstr "不显示"
198
 
199
+ #: admin.inc.php:268
200
  msgid "Display:"
201
  msgstr ""
202
 
203
+ #: admin.inc.php:272 admin.inc.php:366
204
  msgid "Show post excerpt in list?"
205
  msgstr "是否显示日志摘要?"
206
 
207
+ #: admin.inc.php:275
208
  msgid "Length of excerpt (in words): "
209
  msgstr "摘要长度(词数):"
210
 
211
+ #: admin.inc.php:278
212
  msgid "Limit post title length (in characters)"
213
  msgstr ""
214
 
215
+ #: admin.inc.php:281
216
  msgid "Open links in new window"
217
  msgstr ""
218
 
219
+ #: admin.inc.php:284
220
  msgid "Add nofollow attribute to links in the list"
221
  msgstr ""
222
 
223
+ #: admin.inc.php:287
224
  #, fuzzy
225
  msgid "Exclude display of related posts on these posts / pages"
226
  msgstr "添加相关日志到页面里"
227
 
228
+ #: admin.inc.php:290
229
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
230
  msgstr ""
231
 
232
+ #: admin.inc.php:293
233
  msgid "Customize the output:"
234
  msgstr "自定义显示:"
235
 
236
+ #: admin.inc.php:295
237
  msgid "HTML to display before the list of posts: "
238
  msgstr "显示在每篇日志后面的 HTML 标签:"
239
 
240
+ #: admin.inc.php:298
241
  msgid "HTML to display before each list item: "
242
  msgstr "显示在每篇日志后面的 HTML 标签:"
243
 
244
+ #: admin.inc.php:301
245
  msgid "HTML to display after each list item: "
246
  msgstr "显示在日志列表前面的 HTML 标签:"
247
 
248
+ #: admin.inc.php:304
249
  msgid "HTML to display after the list of posts: "
250
  msgstr "显示在日志列表后面的 HTML 标签:"
251
 
252
+ #: admin.inc.php:307
253
  msgid "Post thumbnail options:"
254
  msgstr "日志缩略图设置:"
255
 
256
+ #: admin.inc.php:309 admin.inc.php:369
257
  msgid "Location of post thumbnail:"
258
  msgstr "日志缩略图位置:"
259
 
260
+ #: admin.inc.php:313 admin.inc.php:373
261
  msgid "Display thumbnails inline with posts, before title"
262
  msgstr "在标题前显示缩略图"
263
 
264
+ #: admin.inc.php:317 admin.inc.php:377
265
  msgid "Display thumbnails inline with posts, after title"
266
  msgstr "在标题后显示缩略图"
267
 
268
+ #: admin.inc.php:321 admin.inc.php:381
269
  msgid "Display only thumbnails, no text"
270
  msgstr "不显示文本,只显示缩略图"
271
 
272
+ #: admin.inc.php:325 admin.inc.php:385
273
  msgid "Do not display thumbnails, only text."
274
  msgstr "不显示缩略图,只显示文本"
275
 
276
+ #: admin.inc.php:329 admin.inc.php:389
277
  msgid "Maximum width of the thumbnail: "
278
  msgstr "缩略图最大宽度"
279
 
280
+ #: admin.inc.php:332 admin.inc.php:392
281
  msgid "Maximum height of the thumbnail: "
282
  msgstr "缩略图最大高度"
283
 
284
+ #: admin.inc.php:335
285
  msgid "Use timthumb to generate thumbnails? "
286
  msgstr "是否使用 timthumb 生成缩略图?"
287
 
288
+ #: admin.inc.php:336
289
  msgid ""
290
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
291
  "\">timthumb</a> will be used to generate thumbnails"
293
  "勾选此项,将使用 <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
294
  "\">timthumb</a> 生成缩略图"
295
 
296
+ #: admin.inc.php:338
297
  msgid "Quality of thumbnails generated by timthumb"
298
  msgstr ""
299
 
300
+ #: admin.inc.php:341
301
  msgid ""
302
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
303
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
304
  msgstr ""
305
 
306
+ #: admin.inc.php:344
307
  msgid "Post thumbnail meta field name: "
308
  msgstr "日志缩略图自定义栏目的名称:"
309
 
310
+ #: admin.inc.php:345
311
  msgid ""
312
  "The value of this field should contain the image source and is set in the "
313
  "<em>Add New Post</em> screen"
314
  msgstr "该栏目的值在 <em>文章编辑 » 自定义栏目</em> 填写,需填写图像地址"
315
 
316
+ #: admin.inc.php:347
317
  msgid ""
318
  "If the postmeta is not set, then should the plugin extract the first image "
319
  "from the post?"
320
  msgstr "假如缩略图自定义栏目没有填写,是否使用日志的第一张图片?"
321
 
322
+ #: admin.inc.php:348
323
  msgid ""
324
  "This can slow down the loading of your page if the first image in the "
325
  "related posts is large in file-size"
326
  msgstr "勾选此项,若相关的日志中第一张图片过大,则页面载入速度会减慢。"
327
 
328
+ #: admin.inc.php:350
329
  msgid "Use default thumbnail? "
330
  msgstr "是否使用默认缩略图?"
331
 
332
+ #: admin.inc.php:351
333
  msgid ""
334
  "If checked, when no thumbnail is found, show a default one from the URL "
335
  "below. If not checked and no thumbnail is found, no image will be shown."
336
  msgstr ""
337
  "勾选此项,当不存在缩略图时,显示以下默认缩略图,不勾选则不显示任何图像。"
338
 
339
+ #: admin.inc.php:353
340
  msgid "Default thumbnail: "
341
  msgstr "默认缩略图:"
342
 
343
+ #: admin.inc.php:354
344
  msgid ""
345
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
346
  "then it will check the meta field. If this is not available, then it will "
349
  "本插件按先后顺序检测日志本身、缩略图自定义栏目是否含有缩略图,若不存在,则显"
350
  "示上面默认图像"
351
 
352
+ #: admin.inc.php:359
353
  #, fuzzy
354
  msgid "Feed options"
355
  msgstr "一般设置"
356
 
357
+ #: admin.inc.php:361
358
  msgid ""
359
  "Below options override the related posts settings for your blog feed. These "
360
  "only apply if you have selected to add related posts to Feeds in the General "
361
  "Options tab."
362
  msgstr ""
363
 
364
+ #: admin.inc.php:398
365
  msgid "Custom Styles"
366
  msgstr "自定义样式"
367
 
368
+ #: admin.inc.php:400
369
  msgid "Custom CSS to add to header:"
370
  msgstr "添加自定义 CSS 到 header:"
371
 
372
+ #: admin.inc.php:403
373
  #, fuzzy
374
  msgid ""
375
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
379
  "不要使用 <code>style</code> 标签。请查看 <a href=\"http://wordpress.org/"
380
  "extend/plugins/contextual-related-posts/faq/\">FAQ</a> 中可用的 CSS classes。"
381
 
382
+ #: admin.inc.php:407
383
  msgid "Save Options"
384
  msgstr "保存设置"
385
 
386
+ #: admin.inc.php:408
387
  msgid "Default Options"
388
  msgstr "默认设置"
389
 
390
+ #: admin.inc.php:408
391
  msgid "Do you want to set options to Default?"
392
  msgstr "是否要重置设置?"
393
 
394
+ #: admin.inc.php:409
395
  msgid "Recreate Index"
396
  msgstr "重建索引"
397
 
398
+ #: admin.inc.php:409
399
  msgid "Are you sure you want to recreate the index?"
400
  msgstr "是否要重建索引?"
401
 
402
+ #: admin.inc.php:426
403
  msgid "Contextual Related Posts"
404
  msgstr "Contextual Related Posts"
405
 
406
+ #: admin.inc.php:426 contextual-related-posts.php:277
407
  msgid "Related Posts"
408
  msgstr "相关日志"
409
 
410
+ #: admin.inc.php:434
411
  msgid "plugin settings page"
412
  msgstr "插件设置页面"
413
 
414
+ #: admin.inc.php:439
415
  msgid ""
416
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
417
  "visit the "
418
  msgstr "Contextual Related Posts 插件已经安装/升级完毕。请访问"
419
 
420
+ #: admin.inc.php:439
421
  msgid " to configure."
422
  msgstr "设置插件。"
423
 
424
+ #: contextual-related-posts.php:136
425
  msgid "Powered by"
426
  msgstr "插件作者:"
427
 
428
+ #: contextual-related-posts.php:276
429
  msgid "Display Related Posts"
430
  msgstr "显示相关日志"
431
 
432
+ #: contextual-related-posts.php:289
433
  msgid "Title"
434
  msgstr "标题"
435
 
436
+ #: contextual-related-posts.php:294
437
  msgid "No. of posts"
438
  msgstr "日志数量"
439
 
440
+ #: contextual-related-posts.php:299
441
  msgid " Show excerpt?"
442
  msgstr "是否显示日志摘要?"
443
 
444
+ #: contextual-related-posts.php:303
445
  msgid "Thumbnail options"
446
  msgstr "缩略图设置:"
447
 
448
+ #: contextual-related-posts.php:305
449
  msgid "Thumbnails inline, before title"
450
  msgstr "在标题前显示缩略图"
451
 
452
+ #: contextual-related-posts.php:306
453
  msgid "Thumbnails inline, after title"
454
  msgstr "在标题后显示缩略图"
455
 
456
+ #: contextual-related-posts.php:307
457
  msgid "Only thumbnails, no text"
458
  msgstr "不显示文本,只显示缩略图"
459
 
460
+ #: contextual-related-posts.php:308
461
  msgid "No thumbnails, only text."
462
  msgstr "不显示缩略图,只显示文本"
463
 
464
+ #: contextual-related-posts.php:313
465
  #, fuzzy
466
  msgid "Thumbnail height"
467
  msgstr "缩略图设置:"
468
 
469
+ #: contextual-related-posts.php:318
470
  #, fuzzy
471
  msgid "Thumbnail width"
472
  msgstr "缩略图设置:"
473
 
474
+ #: contextual-related-posts.php:393
475
  msgid "<h3>Related Posts:</h3>"
476
  msgstr "<h3>相关日志:</h3>"
477
 
478
+ #: contextual-related-posts.php:394
479
  #, fuzzy
480
+ msgid "No related posts found"
481
  msgstr "没有发现相关日志"
482
 
483
+ #: contextual-related-posts.php:648
484
  msgid "Settings"
485
  msgstr "设置"
486
 
487
+ #: contextual-related-posts.php:663
488
  msgid "Donate"
489
  msgstr "捐赠"
490
 
readme.txt CHANGED
@@ -7,7 +7,7 @@ Requires at least: 3.0
7
  Tested up to: 3.6
8
  License: GPLv2 or later
9
 
10
- Increase reader retention and reduce bounce rates by displaying a set of related posts on your website or in your feed
11
 
12
  == Description ==
13
 
@@ -15,51 +15,60 @@ Increase reader retention and reduce bounce rates by displaying a set of related
15
 
16
  The list is based on the content of the title and/or content of the posts which makes them more relevant and more likely to be of interest to your readers. This allows you to retain visitors, reduce bounce rates and refresh old entries.
17
 
 
18
 
19
  = Key features =
20
 
21
- * Display Related Posts automatically after the content on your website or in the feed without the need to edit template files
22
- * Manual install available to select the exact placement of the posts. This will require you to edit your theme files
23
- * Relevancy matching based on title and/or content of the post
24
- * Exclude posts from categories from being displayed in the list. Or you can exclude posts or pages by ID
25
- * Widget support
26
- * Support for Custom Post Types
27
- * Thumbnail support
 
 
28
  * Support for WordPress post thumbnails
29
  * Auto-extract the first image in your post to be displayed as a thumbnail
30
  * Manually enter the URL of the thumbnail via <a href="http://codex.wordpress.org/Custom_Fields">WordPress meta fields</a>
31
  * Use timthumb to resize images or use your own filter function to resize post images
32
- * Display excerpts in post. You can select the length of the excerpt in words
33
- * Output wrapped in CSS classes that allows you to style the list. You can enter your custom CSS styles from within WordPress Admin area
34
- * Customise which HTML tags to use for displaying the output in case you don't prefer the default `list` format
 
 
35
 
36
  == Upgrade Notice ==
37
 
38
- = 1.8.5 =
39
- * New options to open links in new window and add `rel="nofollow"`;
40
- quality setting for thumbnails when using timthumb;
41
- custom text for no related posts;
42
- new options for related posts in feeds;
43
- thumbnail height and width can be configured for widgets;
44
  Refer to Changelog for more information
45
 
46
 
47
  == Changelog ==
48
 
 
 
 
 
 
 
 
 
49
  = 1.8.5 =
50
- * Added: Option to open links in new window - Find this under Output Options
51
- * Added: Option to add <code>rel="nofollow"</code> to links - Find this under Output Options
52
- * Added: Option to set quality of thumbnails - Find this under Output Options
53
- * Added: Custom text to display if no related posts are found - Find this under Output Options
54
- * Added: Thumbnail height and width can now be configured for the widget
55
  * Fixed: Filter (<code>crp_postimage</code>) added for WordPress Post Thumbnails to allow you to modify your image with your own script. Plugin comes inbuilt with thumbnail resizing using timthumb
56
  * Fixed: PHP notices when WP_DEBUG is set to true
57
 
58
  = 1.8.4 =
59
- * Added: Option to exclude display of related posts on certain posts/pages. This option is available under "Output Options"
60
- * Added: Options to display related posts on home page, category archives, tag archives and other archives
61
- * Added: Option to set how recent the related posts should be
62
- * Added: Option to limit post title length
63
  * Modified: Filter (<code>crp_postimage</code>) added for WordPress Post Thumbnails to allow you to modify your image with your own script. Plugin comes inbuilt with thumbnail resizing using timthumb
64
  * Modified: If the option to scan for the first image in the post is set to ON, then only images from the same domain as your blog are used as thumbnails. External images are ignored.
65
  * Modified: Updated to latest version of timthumb
@@ -76,19 +85,19 @@ Refer to Changelog for more information
76
  * Fixed: PHP warning errors for sites with PHP error reporting turn on in strict mode
77
 
78
  = 1.8.1 =
79
- * Added: Widget support. Widget display follows the same settings as having the related posts after content.
80
- * Added: Exclude posts and pages by ID
81
  * Modified: Optimised performance when automatic insertion into content is turned off
82
  * Modified: Plugin uses the default excerpt if it is set, else it creates one based on content. Both settings respect the excerpt length set in the plugin
83
  * Modified: Fixed some language related issues. If you would like to translate the plugin or update a translation, please <a href="http://ajaydsouza.com/contact/">contact me</a>.
84
  * Deleted: Redundant option to exclude display of the related posts on pages. You can use the custom post types feature instead
85
- * Added: Chinese language file
86
 
87
  = 1.8 =
88
  * Modified: Replaced `id` attribute with `class` tag on non-singular pages. On singular pages it will display both `id` and `class`
89
- * Added: Option to use timthumb to create thumbnail images (turned ON by default)
90
- * Added: Support for WordPress Custom Post Types
91
- * Added: New `Custom Styles` tab to allow you to easily style the output
92
  * Modified: New "default.png" file based on from KDE’s <a href="http://www.oxygen-icons.org/">Oxygen icon set</a>
93
 
94
  = 1.7.3 =
@@ -102,18 +111,18 @@ Refer to Changelog for more information
102
  * Fixed: Minor bug fix for location of thumbnail
103
 
104
  = 1.7 =
105
- * Added: New function <code>related posts()</code> that allows you to manually add posts to your theme
106
- * Added: Support for <a href="https://wordpress.org/extend/plugins/video-thumbnails/">Video Thumbnails</a> plugin
107
- * Added: Thumbnail settings now reflect max width and max height instead of fixed width and height
108
- * Added: Option to display thumbnails before or after the title
109
- * Added: Option to not display thumbnails instead of the default thumbnail
110
- * Added: Plugin now uses InnoDB instead of MyISAM if your server is running mySQL v5.6 or higher
111
  * Modified: Cleaner Settings page interface
112
  * Modified: Updated <a href="http://wordpress.org/extend/plugins/contextual-related-posts/faq/">FAQ page</a>
113
 
114
  = 1.6.5 =
115
  * Fixed: Few code tweaks to optimise MySQL performance
116
- * Added: Dutch and Spanish language files
117
 
118
  = 1.6.4 =
119
  * Fixed: Undefined constants PHP errors
@@ -189,6 +198,14 @@ Refer to Changelog for more information
189
 
190
  == Installation ==
191
 
 
 
 
 
 
 
 
 
192
  1. Download the plugin
193
 
194
  2. Extract the contents of contextual-related-posts.zip to wp-content/plugins/ folder. You should get a folder called contextual-related-posts.
@@ -249,9 +266,41 @@ The plugin uses <a href="http://www.binarymoon.co.uk/projects/timthumb/">timthum
249
 
250
  = Manual install =
251
 
 
 
 
 
252
  If you disable automatic display of related posts please add `<?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?>` to your template file where you want the related posts to be displayed.
253
  You can also use this function to display related posts on any type of page generated by WordPress including homepage and archive pages.
254
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
255
  == Wishlist ==
256
 
257
  Below are a few features that I plan on implementing in future versions of the plugin. However, there is no fixed time-frame for this and largely depends on how much time I can contribute to development.
7
  Tested up to: 3.6
8
  License: GPLv2 or later
9
 
10
+ Display related posts on your WordPress blog and feed. Supports thumbnails, shortcodes, widgets and custom post types!
11
 
12
  == Description ==
13
 
15
 
16
  The list is based on the content of the title and/or content of the posts which makes them more relevant and more likely to be of interest to your readers. This allows you to retain visitors, reduce bounce rates and refresh old entries.
17
 
18
+ Contextual Related Posts is one of the most feature rich related posts plugins for WordPress with support for thumbnails, shortcodes, widgets, custom post types, caching and CSS styles.
19
 
20
  = Key features =
21
 
22
+ * **Automatic**: CRP will start displaying related posts on your site and feed automatically after the content when you activate the plugin. No need to edit template files
23
+ * **Manual install**: Want more control over placement? Check the <a href="http://wordpress.org/extend/plugins/contextual-related-posts/faq/">FAQ</a> on which functions are available for manual install.
24
+ * **Widgets**: Add related posts to widgetized area of your theme. Lots of options available
25
+ * **Shortcode**: Use `[crp]` to display the posts anywhere you want in the post content
26
+ * **The algorithm**: Find related posts by title and/or content of the current post
27
+ * **Caching**: Related posts output is automatically cached as visitors browse through your site
28
+ * **Exclusions**: Exclude posts from categories from being displayed in the list. Or you can exclude posts or pages by ID
29
+ * **Custom post types**: The related posts list lets you include posts, pages, attachments or any other custom post type!
30
+ * **Thumbnail support**:
31
  * Support for WordPress post thumbnails
32
  * Auto-extract the first image in your post to be displayed as a thumbnail
33
  * Manually enter the URL of the thumbnail via <a href="http://codex.wordpress.org/Custom_Fields">WordPress meta fields</a>
34
  * Use timthumb to resize images or use your own filter function to resize post images
35
+ * **Styles**: The output is wrapped in CSS classes which allows you to easily style the list. You can enter your custom CSS styles from within WordPress Admin area
36
+ * **Customisable output**:
37
+ * Display excerpts in post. You can select the length of the excerpt in words
38
+ * Customise which HTML tags to use for displaying the output in case you don't prefer the default `list` format
39
+
40
 
41
  == Upgrade Notice ==
42
 
43
+ = 1.8.6 =
44
+ * New caching option; new function to return related posts; New shortcode; bug fixes and performance improvements
 
 
 
 
45
  Refer to Changelog for more information
46
 
47
 
48
  == Changelog ==
49
 
50
+ = 1.8.6 =
51
+ * New: Related posts are now cached
52
+ * New: New function <code>get_crp_posts</code> to get only the list of posts in an array. Check the <a href="http://wordpress.org/extend/plugins/contextual-related-posts/faq/">FAQ</a> on how to use it.
53
+ * New: Timthumb will now resize images on wordpress.org, wordpress.com and wp.com. The latter two are useful if you're running Jetpack
54
+ * New: Shortcode functionality. You can use the shortcode `[crp]` to display the related posts. Check the FAQ for further details.
55
+ * Fixed: Exclude category option missed the last category in the list
56
+ * Fixed: Open links in new window option was not working
57
+
58
  = 1.8.5 =
59
+ * New: Option to open links in new window - Find this under Output Options
60
+ * New: Option to add <code>rel="nofollow"</code> to links - Find this under Output Options
61
+ * New: Option to set quality of thumbnails - Find this under Output Options
62
+ * New: Custom text to display if no related posts are found - Find this under Output Options
63
+ * New: Thumbnail height and width can now be configured for the widget
64
  * Fixed: Filter (<code>crp_postimage</code>) added for WordPress Post Thumbnails to allow you to modify your image with your own script. Plugin comes inbuilt with thumbnail resizing using timthumb
65
  * Fixed: PHP notices when WP_DEBUG is set to true
66
 
67
  = 1.8.4 =
68
+ * New: Option to exclude display of related posts on certain posts/pages. This option is available under "Output Options"
69
+ * New: Options to display related posts on home page, category archives, tag archives and other archives
70
+ * New: Option to set how recent the related posts should be
71
+ * New: Option to limit post title length
72
  * Modified: Filter (<code>crp_postimage</code>) added for WordPress Post Thumbnails to allow you to modify your image with your own script. Plugin comes inbuilt with thumbnail resizing using timthumb
73
  * Modified: If the option to scan for the first image in the post is set to ON, then only images from the same domain as your blog are used as thumbnails. External images are ignored.
74
  * Modified: Updated to latest version of timthumb
85
  * Fixed: PHP warning errors for sites with PHP error reporting turn on in strict mode
86
 
87
  = 1.8.1 =
88
+ * New: Widget support. Widget display follows the same settings as having the related posts after content.
89
+ * New: Exclude posts and pages by ID
90
  * Modified: Optimised performance when automatic insertion into content is turned off
91
  * Modified: Plugin uses the default excerpt if it is set, else it creates one based on content. Both settings respect the excerpt length set in the plugin
92
  * Modified: Fixed some language related issues. If you would like to translate the plugin or update a translation, please <a href="http://ajaydsouza.com/contact/">contact me</a>.
93
  * Deleted: Redundant option to exclude display of the related posts on pages. You can use the custom post types feature instead
94
+ * New: Chinese language file
95
 
96
  = 1.8 =
97
  * Modified: Replaced `id` attribute with `class` tag on non-singular pages. On singular pages it will display both `id` and `class`
98
+ * New: Option to use timthumb to create thumbnail images (turned ON by default)
99
+ * New: Support for WordPress Custom Post Types
100
+ * New: New `Custom Styles` tab to allow you to easily style the output
101
  * Modified: New "default.png" file based on from KDE’s <a href="http://www.oxygen-icons.org/">Oxygen icon set</a>
102
 
103
  = 1.7.3 =
111
  * Fixed: Minor bug fix for location of thumbnail
112
 
113
  = 1.7 =
114
+ * New: New function <code>related posts()</code> that allows you to manually add posts to your theme
115
+ * New: Support for <a href="https://wordpress.org/extend/plugins/video-thumbnails/">Video Thumbnails</a> plugin
116
+ * New: Thumbnail settings now reflect max width and max height instead of fixed width and height
117
+ * New: Option to display thumbnails before or after the title
118
+ * New: Option to not display thumbnails instead of the default thumbnail
119
+ * New: Plugin now uses InnoDB instead of MyISAM if your server is running mySQL v5.6 or higher
120
  * Modified: Cleaner Settings page interface
121
  * Modified: Updated <a href="http://wordpress.org/extend/plugins/contextual-related-posts/faq/">FAQ page</a>
122
 
123
  = 1.6.5 =
124
  * Fixed: Few code tweaks to optimise MySQL performance
125
+ * New: Dutch and Spanish language files
126
 
127
  = 1.6.4 =
128
  * Fixed: Undefined constants PHP errors
198
 
199
  == Installation ==
200
 
201
+ = WordPress install =
202
+ 1. Navigate to Plugins within your WordPress Admin Area
203
+
204
+ 2. Click "Add new" and in the search box enter "Contextual Related Posts" and select "Keyword" from the dropdown
205
+
206
+ 3. Find the plugin in the list (usually the first result) and click "Install Now"
207
+
208
+ = Manual install =
209
  1. Download the plugin
210
 
211
  2. Extract the contents of contextual-related-posts.zip to wp-content/plugins/ folder. You should get a folder called contextual-related-posts.
266
 
267
  = Manual install =
268
 
269
+ The following functions are available in case you wish to do a manual install of the posts by editing the theme files.
270
+
271
+ **echo_ald_crp()**
272
+
273
  If you disable automatic display of related posts please add `<?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?>` to your template file where you want the related posts to be displayed.
274
  You can also use this function to display related posts on any type of page generated by WordPress including homepage and archive pages.
275
 
276
+ **get_crp_posts()**
277
+
278
+ Takes a post ID and returns an array of related post IDs.
279
+
280
+ Usage: `<?php if(function_exists('get_crp_posts')) get_crp_posts($postid, $limit) ?>`
281
+
282
+ Parameters:
283
+
284
+ *$postid* : The ID of the post you'd like to fetch. By default the current post is fetched. Use within the Loop for best results.
285
+
286
+ *$limit* : Maximum number of posts to return. The actual number displayed may be lower depending on the matching algorithm and the category / post exclusion settings.
287
+
288
+ = Shortcodes =
289
+
290
+ You can insert the related posts anywhere in your post using the `[crp]` shortcode. The plugin takes two optional attributes `limit` and `heading` as follows:
291
+
292
+ `[crp limit="5" heading="1"]`
293
+
294
+ *limit* : Maximum number of posts to return. The actual number displayed may be lower depending on the matching algorithm and the category / post exclusion settings.
295
+
296
+ *heading* : By default, the heading you specify in **Title of related posts:** under **Output options** will be displayed. You can override this by specifying your own heading e.g.
297
+
298
+ `
299
+ <h3>Similar posts</h3>
300
+ [crp limit="2" heading="0"]
301
+ `
302
+
303
+
304
  == Wishlist ==
305
 
306
  Below are a few features that I plan on implementing in future versions of the plugin. However, there is no fixed time-frame for this and largely depends on how much time I can contribute to development.
screenshot-1.png CHANGED
Binary file
timthumb/timthumb.php CHANGED
@@ -133,6 +133,9 @@ if(! isset($ALLOWED_SITES)){
133
  'imgur.com',
134
  'imageshack.us',
135
  'tinypic.com',
 
 
 
136
  );
137
  }
138
  // -------------------------------------------------------------
133
  'imgur.com',
134
  'imageshack.us',
135
  'tinypic.com',
136
+ 'wordpress.com',
137
+ 'wordpress.org',
138
+ 'wp.com',
139
  );
140
  }
141
  // -------------------------------------------------------------